if (typeof window.contentMaps === 'undefined') { window.contentMaps = {}; window.initialMapBounds = {}; } if (typeof window.markerData === 'undefined') { window.markerData = {}; } if (!markerData[1]) { markerData[1] = {}; } function initMapbox_1(){ mapboxgl.accessToken = 'pk.eyJ1IjoibGF6eXRyaXBzIiwiYSI6ImNsaTJ4anh2MTA5NDYzZW85ODJmMm45ZzcifQ.9u5pN47V7SsoFwF6_Pw5bQ'; const contentMap_1 = new mapboxgl.Map({ container: 'contentMap_1', style: 'mapbox://styles/mapbox/streets-v11', center: [-113.62727715725875, 34.79504771046786], zoom: 5, cooperativeGestures: true }); window.contentMaps[1] = contentMap_1; var bounds_1 = new mapboxgl.LngLatBounds(); if (typeof markerData[1][0] === 'undefined') { markerData[1][0] = {}; } markerData[1][0]['lonLat'] = [-112.07758180610783, 33.44826711167292]; markerData[1][0]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][0]['lonLat'] }, 'properties': { 'title': 'start', 'description': 'start point' } }] }; for (const feature of markerData[1][0]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_start'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'start'; markerData[1][0]['marker'] = marker; bounds_1.extend(markerData[1][0]['lonLat']); } markerData[1][0]['popup'] = false; markerData[1][0]['route'] = false; markerData[1][0]['card'] = false; if (typeof markerData[1][1] === 'undefined') { markerData[1][1] = {}; } markerData[1][1]['lonLat'] = [-115.1727703145882, 36.107093351832674]; markerData[1][1]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][1]['lonLat'] }, 'properties': { 'title': 'finish', 'description': 'finish point' } }] }; for (const feature of markerData[1][1]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_finish'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'finish'; markerData[1][1]['marker'] = marker; bounds_1.extend(markerData[1][1]['lonLat']); } markerData[1][1]['popup'] = false; markerData[1][1]['route'] = false; markerData[1][1]['card'] = false; if (typeof markerData[1][2] === 'undefined') { markerData[1][2] = {}; } markerData[1][2]['lonLat'] = [ -114.322756, 34.484047]; markerData[1][2]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][2]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][2]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][2]['marker'] = marker; bounds_1.extend(markerData[1][2]['lonLat']); } var markerConfigJson = JSON.parse('{"finish":{"className":"marker_finish","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"start":{"className":"marker_start","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"star":{"className":"marker_star","size":[58,58],"offset":[0,-29],"span":false,"best":false,"text":false},"numbered":{"className":"mapMarkerNum","size":false,"offset":[0,0],"span":true,"best":true,"text":false},"star-plain":{"className":"mapMarkerNum markerSpanRed","size":false,"offset":[0,0],"span":true,"best":false,"text":"\u2606"}}'); function getNewLngLat(map, originalLngLat, offsets) { var pixel = map.project(new mapboxgl.LngLat(originalLngLat[0], originalLngLat[1])); pixel.x += offsets.x; pixel.y += offsets.y; return map.unproject(pixel); } Object.keys(contentMaps).forEach(function(mapNum) { contentMaps[mapNum].on('zoom', function() { Object.keys(markerData[mapNum]).forEach(function(iconNum) { var marker = markerData[mapNum][iconNum]; if (!isMobileDevice() && marker.cardInstance) { var offsets = { x: marker.cardOffsetX, y: marker.cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], marker.lonLat, offsets); marker.cardInstance.setLngLat([newLngLat.lng, newLngLat.lat]); } }); }); }); window.toggleMapIconClick = function(mapNum, iconNum) { clickWasOnMarkerOrCard = true; for (const [key, icon] of Object.entries(markerData[mapNum])) { if (parseInt(key) === iconNum) continue; if (icon['popupInstance']) { icon['popupInstance'].remove(); delete icon['popupInstance']; } if (icon['route'] === true && contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+key)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+key); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+key); } if(icon['marker']) { icon['marker'].getElement().classList.remove('markerSpanSelect'); } if(icon['marker'] && icon['marker'].getElement().style.display === 'none') { icon['marker'].getElement().style.display = 'block'; } if (icon['cardInstance']) { icon['cardInstance'].remove(); delete icon['cardInstance']; } if (icon['cardOverlay']) { var overlayToRemove = icon['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete icon['cardOverlay']; } } icon['clicked'] = false; } if (markerData[mapNum][iconNum]['clicked'] === false) { markerData[mapNum][iconNum]['marker'].getElement().classList.add('markerSpanSelect'); if (markerData[mapNum][iconNum]['popup'] === true) { const popupTitle = markerData[mapNum][iconNum]['popupTitle']; const popupText = markerData[mapNum][iconNum]['popupText']; let popupHTML = '
'; if (popupTitle) {popupHTML += '

' + popupTitle + '

';} if (popupText) {popupHTML += '

' + popupText + '

';} popupHTML += '
'; var popup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer' }) .setLngLat(markerData[mapNum][iconNum]['lonLat']) .setHTML(popupHTML) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['popupInstance'] = popup; popup._content.addEventListener('click', function() { toggleMapIconClick(mapNum, iconNum); }); markerData[mapNum][iconNum]['marker'].getElement().style.display = 'none'; } if (markerData[mapNum][iconNum]['route'] === true) { markerData[mapNum][iconNum]['routeGeoson'] = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: markerData[mapNum][iconNum]['routeJson'] } }; contentMaps[mapNum].addLayer({ id: 'iconRoute_'+mapNum+'_'+iconNum, type: 'line', source: { type: 'geojson', data: markerData[mapNum][iconNum]['routeGeoson'] }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': ''+markerData[mapNum][iconNum]['routeColor'], 'line-width': 5, 'line-opacity': 0.8 } }); } if (markerData[mapNum][iconNum]['card']) { var cardContent = { cardTitle: markerData[mapNum][iconNum]['cardTitle'], cardDistanceTime: markerData[mapNum][iconNum]['cardDistanceTime'], cardPhotoCode: markerData[mapNum][iconNum]['cardPhotoCode'], }; if (markerData[mapNum][iconNum].hasOwnProperty('cardLink')) { cardContent.cardLink = markerData[mapNum][iconNum]['cardLink']; } if (markerData[mapNum][iconNum].hasOwnProperty('cardLinkText')) { cardContent.cardLinkText = markerData[mapNum][iconNum]['cardLinkText']; } if (!isMobileDevice()) { var cardContentHtml = createCardContentHtml(cardContent,false); var offsets = { x: markerData[mapNum][iconNum].cardOffsetX, y: markerData[mapNum][iconNum].cardOffsetY }; var newLngLat = getNewLngLat(contentMaps[mapNum], markerData[mapNum][iconNum]['lonLat'], offsets); var cardPopup = new mapboxgl.Popup({ anchor: 'bottom', closeButton: false, closeOnClick: false, className: 'pointer mapPopupCard' }) .setHTML(cardContentHtml) .setLngLat([newLngLat.lng, newLngLat.lat]) .addTo(contentMaps[mapNum]); markerData[mapNum][iconNum]['cardInstance'] = cardPopup; } else { var cardMobile = document.createElement('div'); cardMobile.className = 'mapPopupCardMobile'; cardMobile.innerHTML = createCardContentHtml(cardContent,true); var mapContainer = contentMaps[mapNum].getContainer(); mapContainer.appendChild(cardMobile); markerData[mapNum][iconNum]['cardOverlay'] = cardMobile; } } markerData[mapNum][iconNum]['clicked'] = true; updateMapBounds(mapNum, iconNum); } else { resetMarkersAndCards(mapNum); } } let clickWasOnMarkerOrCard = false; function resetMarkersAndCards(mapNum) { Object.keys(markerData[mapNum]).forEach((iconNum) => { if (markerData[mapNum][iconNum]['marker']) { markerData[mapNum][iconNum]['marker'].getElement().classList.remove('markerSpanSelect'); } if (markerData[mapNum][iconNum]['popupInstance']) { markerData[mapNum][iconNum]['popupInstance'].remove(); delete markerData[mapNum][iconNum]['popupInstance']; } if (markerData[mapNum][iconNum]['route'] === true) { if (contentMaps[mapNum].getLayer('iconRoute_'+mapNum+'_'+iconNum)) { contentMaps[mapNum].removeLayer('iconRoute_'+mapNum+'_'+iconNum); contentMaps[mapNum].removeSource('iconRoute_'+mapNum+'_'+iconNum); } } if (markerData[mapNum][iconNum]['card']) { if (markerData[mapNum][iconNum]['cardInstance']) { markerData[mapNum][iconNum]['cardInstance'].remove(); delete markerData[mapNum][iconNum]['cardInstance']; } } if (markerData[mapNum][iconNum]['cardOverlay']) { var overlayToRemove = markerData[mapNum][iconNum]['cardOverlay']; if (overlayToRemove && overlayToRemove.parentNode) { overlayToRemove.parentNode.removeChild(overlayToRemove); delete markerData[mapNum][iconNum]['cardOverlay']; } } markerData[mapNum][iconNum]['marker'].getElement().style.display = 'block'; markerData[mapNum][iconNum]['clicked'] = false; updateMapBounds(mapNum, iconNum); }); } function createCardContentHtml(cardContent,isMobile) { let htmlContent = '
'; if (cardContent.cardPhotoCode) { htmlContent += '
' + cardContent.cardPhotoCode + '
'; } if (cardContent.cardTitle || cardContent.cardDistanceTime || cardContent.cardLink) { htmlContent += '
'; if (cardContent.cardTitle) { htmlContent += '
' + cardContent.cardTitle + '
'; } if (cardContent.cardDistanceTime) { if (isMobile) { const parts = cardContent.cardDistanceTime.split('⏱️'); htmlContent += '
' + parts[0].trim() + '
⏱️ ' + parts[1].trim() + '
'; } else { htmlContent += '
' + cardContent.cardDistanceTime + '
'; } } if (cardContent.cardLink) { var linkText = cardContent.cardLinkText || 'See full details'; htmlContent += '' + linkText + ''; } htmlContent += '
'; } htmlContent += '
'; return htmlContent; } function isMobileDevice() { return window.innerWidth <= 768 || window.innerHeight <= 600; } function updateMapBounds(mapNum, iconNum) { const oldBounds = contentMaps[mapNum].getBounds(); const newBounds = contentMaps[mapNum].getBounds(); const mapDimensions = contentMaps[mapNum].getContainer().getBoundingClientRect(); const clickedMarker = markerData[mapNum][iconNum]; const clickedMarkerLonLat = clickedMarker['lonLat']; const clickedMarkerRouteJson = clickedMarker['routeJson']; const lngDiff = oldBounds.getNorthEast().lng - oldBounds.getSouthWest().lng; const latDiff = oldBounds.getNorthEast().lat - oldBounds.getSouthWest().lat; const lngPerPx = lngDiff / mapDimensions.width; const latPerPx = latDiff / mapDimensions.height; if (clickedMarker['popup'] && clickedMarker['clicked']) { const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const tooCloseX = 100; const tooCloseT = 80; const tooCloseB = 10; const extendAmountXPixels = 120; const extendAmountTPixels = 120; const extendAmountBPixels = 20; const extendNWSE = [0,0,0,0]; if (pixelCoordinates.x < tooCloseX) { extendNWSE[3] = extendAmountXPixels- pixelCoordinates.x; } else if (pixelCoordinates.x > mapDimensions.width - tooCloseX) { extendNWSE[1] = extendAmountXPixels - (mapDimensions.width - pixelCoordinates.x); } if (pixelCoordinates.y < tooCloseT) { extendNWSE[0] = extendAmountTPixels- pixelCoordinates.y; } else if (pixelCoordinates.y > mapDimensions.height - tooCloseB) { extendNWSE[2] = extendAmountBPixels- (mapDimensions.height - pixelCoordinates.y); } for (let i = 0; i < extendNWSE.length; i++) { if (extendNWSE[i] > 0) { switch (i) { case 0: const extendNorthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getNorthEast().lat + extendNorthLat)); break; case 1: const extendEastLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getNorthEast().lng + extendEastLng, clickedMarkerLonLat[1])); break; case 2: const extendSouthLat = extendNWSE[i] * latPerPx; newBounds.extend(new mapboxgl.LngLat(clickedMarkerLonLat[0], oldBounds.getSouthWest().lat - extendSouthLat)); break; case 3: const extendWestLng = extendNWSE[i] * lngPerPx; newBounds.extend(new mapboxgl.LngLat(oldBounds.getSouthWest().lng - extendWestLng, clickedMarkerLonLat[1])); break; } } } if (Math.abs(newBounds.getSouthWest().lng - oldBounds.getSouthWest().lng) > 1e-6 || Math.abs(newBounds.getSouthWest().lat - oldBounds.getSouthWest().lat) > 1e-6 || Math.abs(newBounds.getNorthEast().lng - oldBounds.getNorthEast().lng) > 1e-6 || Math.abs(newBounds.getNorthEast().lat - oldBounds.getNorthEast().lat) > 1e-6) { contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } if (clickedMarker['route'] && clickedMarker['routeJson'] && clickedMarker['clicked']) { const paddingRoutePixels = 20; let extendWest = false, extendEast = false, extendNorth = false, extendSouth = false; clickedMarker['routeJson'].forEach(coord => { if (coord[0] < newBounds.getWest()) extendWest = true; if (coord[0] > newBounds.getEast()) extendEast = true; if (coord[1] > newBounds.getNorth()) extendNorth = true; if (coord[1] < newBounds.getSouth()) extendSouth = true; newBounds.extend(new mapboxgl.LngLat(coord[0], coord[1])); }); const mapContainer = contentMaps[mapNum].getContainer(); const lngDegreesPerPixel = (newBounds.getEast() - newBounds.getWest()) / mapContainer.offsetWidth; const latDegreesPerPixel = (newBounds.getNorth() - newBounds.getSouth()) / mapContainer.offsetHeight; const westBound = extendWest ? newBounds.getWest() - paddingRoutePixels * lngDegreesPerPixel : newBounds.getWest(); const eastBound = extendEast ? newBounds.getEast() + paddingRoutePixels * lngDegreesPerPixel : newBounds.getEast(); const northBound = extendNorth ? newBounds.getNorth() + paddingRoutePixels * latDegreesPerPixel : newBounds.getNorth(); const southBound = extendSouth ? newBounds.getSouth() - paddingRoutePixels * latDegreesPerPixel : newBounds.getSouth(); const paddedBounds = new mapboxgl.LngLatBounds( new mapboxgl.LngLat(westBound, southBound), new mapboxgl.LngLat(eastBound, northBound) ); contentMaps[mapNum].fitBounds(paddedBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } if (!isMobileDevice() && markerData[mapNum][iconNum]['card'] && markerData[mapNum][iconNum]['clicked']) { const cardWidth = 300; const cardHeight = 360; const cardPadding = 100; const pixelCoordinates = contentMaps[mapNum].project(clickedMarkerLonLat); const offsetX = markerData[mapNum][iconNum]['cardOffsetX']; const offsetY = markerData[mapNum][iconNum]['cardOffsetY']; const markerPixel = contentMaps[mapNum].project(clickedMarkerLonLat); const topLeftPixel = { x: markerPixel.x + offsetX - cardWidth/2 - cardPadding, y: markerPixel.y + offsetY - cardHeight - cardPadding }; const topRightPixel = { x: topLeftPixel.x + cardWidth + (2 * cardPadding), y: topLeftPixel.y }; const bottomLeftPixel = { x: topLeftPixel.x, y: topLeftPixel.y + cardHeight + (2 * cardPadding) }; const bottomRightPixel = { x: topRightPixel.x, y: bottomLeftPixel.y }; [topLeftPixel, topRightPixel, bottomLeftPixel, bottomRightPixel].forEach(pixel => { const lngLat = contentMaps[mapNum].unproject(pixel); newBounds.extend(lngLat); }); contentMaps[mapNum].fitBounds(newBounds, { padding: 0, duration: 600, easing: (t) => t * (2 - t) }); } } markerData[1][2]['clicked'] = false; markerData[1][2]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 2); }); markerData[1][2]['popup'] = true; markerData[1][2]['popupTitle'] = `California Route`; markerData[1][2]['popupText'] = `345 miles (5 hours 40 minutes*)`; markerData[1][2]['route'] = false; markerData[1][2]['card'] = false; if (typeof markerData[1][3] === 'undefined') { markerData[1][3] = {}; } markerData[1][3]['lonLat'] = [ -111.66591056938024, 35.17358894558698]; markerData[1][3]['geoson'] = { 'type': 'FeatureCollection', 'features': [{ 'type': 'Feature', 'geometry': { 'type': 'Point', 'coordinates': markerData[1][3]['lonLat'] }, 'properties': { 'title': 'star', 'description': 'star point' } }] }; for (const feature of markerData[1][3]['geoson'].features) { const el = document.createElement('div'); el.className = 'marker_star'; el.style.width = '58px'; el.style.height = '58px'; const marker = new mapboxgl.Marker(el, {offset: [0,-29]}) .setLngLat(feature.geometry.coordinates) .addTo(contentMap_1); marker.markerType = 'star'; markerData[1][3]['marker'] = marker; bounds_1.extend(markerData[1][3]['lonLat']); } markerData[1][3]['clicked'] = false; markerData[1][3]['marker'].getElement().addEventListener('click', function() { toggleMapIconClick(1, 3); }); markerData[1][3]['popup'] = true; markerData[1][3]['popupTitle'] = `Grand Canyon Route`; markerData[1][3]['popupText'] = `400 miles (6 hours 30 minutes*)`; markerData[1][3]['route'] = false; markerData[1][3]['card'] = false; const geojson_1_0 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-112.0777072","33.4482427"],["-112.0779565","33.4482392"],["-112.0788325","33.4482323"],["-112.0790835","33.4482368"],["-112.0801532","33.4482311"],["-112.0815763","33.4482317"],["-112.0847729","33.4482002"],["-112.0853617","33.4482018"],["-112.0915331","33.4481414"],["-112.0917004","33.4481401"],["-112.0920711","33.4481371"],["-112.0921138","33.4481394"],["-112.0923104","33.4481788"],["-112.09249","33.4482"],["-112.0926127","33.4482235"],["-112.0927137","33.4482644"],["-112.0929105","33.4483569"],["-112.092981","33.4483994"],["-112.0930527","33.4484454"],["-112.0931338","33.4485165"],["-112.0932401","33.4486151"],["-112.0935071","33.4488756"],["-112.0936499","33.4489964"],["-112.0938634","33.4491164"],["-112.09415","33.4492035"],["-112.094463","33.4492482"],["-112.0949496","33.4492433"],["-112.0951321","33.4492437"],["-112.0989743","33.4492073"],["-112.0991638","33.4492099"],["-112.1002474","33.4492071"],["-112.100336","33.4492066"],["-112.1006876","33.4492023"],["-112.1043466","33.4491738"],["-112.1046127","33.4491727"],["-112.1077684","33.4491714"],["-112.1078335","33.4494242"],["-112.1078869","33.4497892"],["-112.1079942","33.4506587"],["-112.1080378","33.4510418"],["-112.1080951","33.4514058"],["-112.1080539","33.4536314"],["-112.1079931","33.458483"],["-112.1080436","33.4602946"],["-112.108203","33.4614211"],["-112.1082834","33.4617924"],["-112.1083949","33.4622457"],["-112.1084857","33.4625787"],["-112.1087174","33.4632924"],["-112.1089614","33.4639816"],["-112.1093921","33.4650236"],["-112.1096172","33.4655241"],["-112.1101974","33.4667911"],["-112.1110888","33.4687933"],["-112.1119421","33.4707067"],["-112.1123376","33.4718124"],["-112.1125967","33.4726194"],["-112.1127312","33.473211"],["-112.1128431","33.4737676"],["-112.1129577","33.4747902"],["-112.1130127","33.4753246"],["-112.1130304","33.4757277"],["-112.1129694","33.4909683"],["-112.1128833","33.4976685"],["-112.1128768","33.4981025"],["-112.1128658","33.4986661"],["-112.1127299","33.5019229"],["-112.112375","33.5080596"],["-112.1123018","33.5096374"],["-112.112241","33.5132131"],["-112.1122225","33.5155954"],["-112.1122","33.5255397"],["-112.1122182","33.5338743"],["-112.1122327","33.5365933"],["-112.1122602","33.5420484"],["-112.1122547","33.5426181"],["-112.1122875","33.5490353"],["-112.1123206","33.5543493"],["-112.1123521","33.5549164"],["-112.1124729","33.5558426"],["-112.1126098","33.556415"],["-112.1127705","33.5569701"],["-112.1128417","33.5571907"],["-112.1128695","33.5573591"],["-112.1131172","33.5579346"],["-112.1136287","33.5588741"],["-112.1152283","33.5614697"],["-112.1155556","33.5620524"],["-112.1158927","33.5626829"],["-112.1161147","33.5631586"],["-112.1162536","33.5634571"],["-112.1163936","33.5638033"],["-112.116591","33.5643807"],["-112.1168006","33.5650681"],["-112.1169516","33.5657072"],["-112.117082","33.566394"],["-112.1171421","33.5668018"],["-112.1171878","33.567201"],["-112.1172328","33.5682839"],["-112.1172458","33.5688294"],["-112.1172164","33.5695769"],["-112.1171753","33.5703114"],["-112.1171237","33.5710827"],["-112.1170045","33.5727487"],["-112.1169804","33.5731684"],["-112.1168982","33.5757748"],["-112.1168816","33.5766815"],["-112.11688","33.5771876"],["-112.1168662","33.5787367"],["-112.1168569","33.5802321"],["-112.1168579","33.5810005"],["-112.116689","33.5996358"],["-112.1166125","33.6068418"],["-112.1165923","33.6086814"],["-112.1163454","33.6290143"],["-112.1161991","33.6311578"],["-112.11612","33.6320396"],["-112.1152177","33.6437457"],["-112.1151643","33.6443511"],["-112.115018","33.6460991"],["-112.1149608","33.6468081"],["-112.1149186","33.6473595"],["-112.114883","33.6480158"],["-112.1147681","33.6495291"],["-112.114622","33.6513796"],["-112.1145774","33.6519166"],["-112.1145237","33.6526398"],["-112.114045","33.658742"],["-112.1138271","33.6612712"],["-112.1133039","33.6677697"],["-112.1132588","33.6682945"],["-112.1123206","33.6810282"],["-112.1122758","33.6830368"],["-112.1122778","33.6836771"],["-112.1123053","33.6851841"],["-112.1123918","33.6873518"],["-112.1125635","33.6890624"],["-112.1127764","33.6908868"],["-112.1129115","33.6917683"],["-112.1130968","33.6927598"],["-112.1136026","33.6953376"],["-112.1136615","33.6956277"],["-112.1137546","33.6960147"],["-112.1145771","33.6998551"],["-112.114592","33.6999253"],["-112.1200178","33.7256276"],["-112.1200296","33.72568"],["-112.1203018","33.7269894"],["-112.120534","33.7281053"],["-112.1221061","33.7355797"],["-112.1244818","33.7468109"],["-112.1270996","33.7591758"],["-112.1272696","33.7601968"],["-112.1278411","33.763225"],["-112.1287929","33.7676539"],["-112.1292086","33.7694487"],["-112.1292356","33.7695719"],["-112.1295567","33.7710376"],["-112.1297657","33.7719983"],["-112.1303571","33.7748622"],["-112.1308632","33.7772657"],["-112.1320662","33.7827936"],["-112.1354956","33.7990014"],["-112.1358189","33.8004916"],["-112.1362818","33.8028009"],["-112.1363639","33.8032098"],["-112.1364712","33.8037332"],["-112.1373909","33.8079613"],["-112.1377928","33.8095371"],["-112.1379978","33.8103016"],["-112.13843","33.8117452"],["-112.1388004","33.8128586"],["-112.1404005","33.8173502"],["-112.1409448","33.8188536"],["-112.1434836","33.8259752"],["-112.1437747","33.8269349"],["-112.1439673","33.827748"],["-112.1443885","33.8299757"],["-112.1445446","33.831286"],["-112.1447339","33.833598"],["-112.1447414","33.8340316"],["-112.1447053","33.8351566"],["-112.1446382","33.8361376"],["-112.144582","33.8367331"],["-112.1445037","33.8373847"],["-112.1444095","33.8380384"],["-112.1440938","33.8399077"],["-112.1439789","33.8405455"],["-112.1434625","33.8435251"],["-112.1433844","33.8441591"],["-112.1433247","33.8448366"],["-112.1432885","33.8453578"],["-112.1432792","33.8460255"],["-112.1432884","33.8467223"],["-112.1433939","33.8481171"],["-112.1434469","33.8487096"],["-112.1435197","33.8494796"],["-112.1436101","33.8502311"],["-112.1450809","33.8629046"],["-112.1452006","33.8638753"],["-112.1452572","33.8643071"],["-112.1454504","33.8659725"],["-112.1458659","33.8695149"],["-112.146165","33.8723486"],["-112.1463711","33.8741773"],["-112.1464827","33.875131"],["-112.1465403","33.8755561"],["-112.1465886","33.8760136"],["-112.147139","33.8808591"],["-112.1473243","33.8830305"],["-112.1473546","33.8838261"],["-112.147426","33.8858081"],["-112.1473824","33.888196"],["-112.1472992","33.8902849"],["-112.1467371","33.8969271"],["-112.1466357","33.8980345"],["-112.1463145","33.9017967"],["-112.146317","33.9018809"],["-112.1462833","33.9021832"],["-112.1461804","33.9031965"],["-112.1460201","33.9049378"],["-112.1458802","33.9062702"],["-112.1454148","33.91135"],["-112.1453309","33.9122298"],["-112.145164","33.9139602"],["-112.145113","33.9143491"],["-112.1450333","33.9149505"],["-112.1447129","33.9171804"],["-112.1442254","33.9196028"],["-112.1438444","33.921091"],["-112.143444","33.9225289"],["-112.1427219","33.9248053"],["-112.1410156","33.9295255"],["-112.1404504","33.9310909"],["-112.1402405","33.931912"],["-112.1400645","33.932939"],["-112.1400315","33.9340299"],["-112.1402031","33.9358982"],["-112.1403998","33.9377976"],["-112.1404937","33.938746"],["-112.1405038","33.9391234"],["-112.1404937","33.9396406"],["-112.1404704","33.9400214"],["-112.1404503","33.9402049"],["-112.1404106","33.940441"],["-112.1403438","33.9407837"],["-112.1402436","33.9411983"],["-112.1401542","33.9414805"],["-112.1400852","33.9416669"],["-112.139912","33.9420774"],["-112.139816","33.9422867"],["-112.1394441","33.9430035"],["-112.1385957","33.9445995"],["-112.1382649","33.945367"],["-112.137906","33.9464699"],["-112.1374877","33.9487633"],["-112.1370091","33.9514788"],["-112.1367085","33.9528072"],["-112.1362495","33.9542687"],["-112.1349347","33.9577902"],["-112.1344825","33.9587432"],["-112.1341076","33.9593867"],["-112.1337457","33.9599272"],["-112.1335911","33.9601367"],["-112.1330313","33.9608181"],["-112.1323307","33.9616144"],["-112.1294823","33.964841"],["-112.1292355","33.9651359"],["-112.1289555","33.9654868"],["-112.1287322","33.9657806"],["-112.1285162","33.9660908"],["-112.1282012","33.9665973"],["-112.1280741","33.9668187"],["-112.1279642","33.9670236"],["-112.1278697","33.9672142"],["-112.1276541","33.9676847"],["-112.127514","33.9680322"],["-112.1273801","33.9683892"],["-112.1272691","33.9687382"],["-112.1271457","33.9692437"],["-112.1270489","33.9697044"],["-112.1269979","33.9700583"],["-112.1269338","33.9706492"],["-112.1269248","33.9709002"],["-112.1269232","33.971367"],["-112.1269476","33.9718489"],["-112.1269717","33.9721231"],["-112.1270265","33.9725149"],["-112.1270859","33.9728802"],["-112.1271213","33.9730835"],["-112.1271399","33.9731747"],["-112.1271769","33.9733307"],["-112.1272553","33.9735984"],["-112.1274713","33.9742268"],["-112.1279299","33.975285"],["-112.1293725","33.9782486"],["-112.1311542","33.9819228"],["-112.1315145","33.9826974"],["-112.1318475","33.9832849"],["-112.1324099","33.9844244"],["-112.1326517","33.984979"],["-112.1329773","33.9856703"],["-112.1332392","33.9865738"],["-112.1335559","33.9876779"],["-112.1337321","33.9887233"],["-112.1338354","33.9898058"],["-112.1338709","33.9908149"],["-112.1341468","34.0049116"],["-112.1342132","34.0055537"],["-112.1342936","34.0062091"],["-112.1344088","34.0068996"],["-112.1345359","34.007517"],["-112.1347234","34.0082704"],["-112.1349147","34.0089759"],["-112.1351521","34.0096795"],["-112.1354211","34.0103663"],["-112.1357109","34.0110462"],["-112.1362702","34.0121991"],["-112.1368236","34.0131792"],["-112.1371632","34.0137022"],["-112.1373916","34.0140512"],["-112.1375038","34.014214"],["-112.1379706","34.0148629"],["-112.1383973","34.0153973"],["-112.1388402","34.0159298"],["-112.1399128","34.0170868"],["-112.1413285","34.0185417"],["-112.141947","34.0192139"],["-112.1425366","34.0199381"],["-112.1430358","34.0206134"],["-112.1433876","34.0211387"],["-112.1437127","34.0216816"],["-112.1439886","34.0221734"],["-112.1442611","34.0227228"],["-112.1445157","34.0232893"],["-112.1447078","34.0237667"],["-112.1449053","34.0243434"],["-112.145084","34.0249603"],["-112.1452508","34.0256074"],["-112.1453518","34.0261024"],["-112.1454811","34.0269242"],["-112.1455576","34.0278755"],["-112.1455682","34.0285935"],["-112.1455884","34.0325173"],["-112.145662","34.0539695"],["-112.1456496","34.0546797"],["-112.1456215","34.0551784"],["-112.1455807","34.0556237"],["-112.1455521","34.0558459"],["-112.1454755","34.0563413"],["-112.145307","34.0571716"],["-112.1451519","34.057766"],["-112.1448156","34.0587989"],["-112.139873","34.0732466"],["-112.1397751","34.0735999"],["-112.1396955","34.0739495"],["-112.1395917","34.0745414"],["-112.1395501","34.0748763"],["-112.1395229","34.0752774"],["-112.1395067","34.0756415"],["-112.1395048","34.0759347"],["-112.1395184","34.0762226"],["-112.139541","34.0765687"],["-112.1395749","34.0768613"],["-112.1396214","34.0772021"],["-112.1396468","34.0773456"],["-112.1396792","34.0775089"],["-112.1397397","34.0777937"],["-112.1398146","34.0780896"],["-112.1399126","34.0784265"],["-112.1400251","34.0787645"],["-112.1401401","34.0790859"],["-112.1402683","34.0793984"],["-112.1403911","34.0796622"],["-112.1405288","34.0799428"],["-112.140679","34.0802212"],["-112.1410024","34.0807731"],["-112.1430978","34.0840559"],["-112.143436","34.084629"],["-112.1436227","34.0850024"],["-112.1437441","34.0852709"],["-112.1437528","34.0852914"],["-112.1437742","34.0853439"],["-112.1438334","34.0855064"],["-112.1439164","34.0857433"],["-112.1439865","34.0859663"],["-112.1440541","34.0862248"],["-112.1441149","34.0864876"],["-112.144165","34.0867543"],["-112.1441989","34.0870029"],["-112.1442259","34.0872539"],["-112.1442398","34.0874546"],["-112.1442481","34.0876933"],["-112.1442452","34.087909"],["-112.1442346","34.0881315"],["-112.1441963","34.088559"],["-112.144167","34.0887802"],["-112.1441118","34.0890811"],["-112.1439525","34.0897618"],["-112.1434429","34.0911117"],["-112.1432608","34.0916664"],["-112.1431182","34.0921486"],["-112.1429574","34.0928082"],["-112.1427733","34.0938551"],["-112.1426584","34.0950623"],["-112.1425785","34.0976429"],["-112.1424356","34.0984526"],["-112.1421891","34.0989925"],["-112.1416755","34.0998165"],["-112.1409537","34.1008844"],["-112.1407056","34.1013575"],["-112.1405347","34.1018728"],["-112.1404224","34.1023804"],["-112.1404237","34.1027253"],["-112.1404599","34.103119"],["-112.1405116","34.1034196"],["-112.1405908","34.1037349"],["-112.1408023","34.1042667"],["-112.141676","34.1062942"],["-112.1428817","34.1090997"],["-112.1430788","34.1097244"],["-112.1432256","34.1105242"],["-112.1433648","34.1115427"],["-112.1434869","34.1122182"],["-112.1435575","34.1125037"],["-112.1437027","34.1128348"],["-112.1439542","34.1133015"],["-112.1444227","34.1139877"],["-112.14506","34.1148724"],["-112.1453768","34.1154325"],["-112.1456566","34.1161075"],["-112.1457929","34.1165268"],["-112.1458581","34.1168895"],["-112.1459068","34.1175663"],["-112.1458889","34.1216204"],["-112.1458997","34.122324"],["-112.1459251","34.1227308"],["-112.146031","34.1232553"],["-112.1461974","34.1236872"],["-112.1464214","34.1240785"],["-112.1466212","34.1243807"],["-112.1469404","34.1247363"],["-112.1474805","34.1252142"],["-112.1482542","34.1258002"],["-112.1488994","34.1263162"],["-112.1494318","34.1268844"],["-112.149698","34.1272531"],["-112.1499259","34.1277035"],["-112.1500507","34.128057"],["-112.1501367","34.1284375"],["-112.1501695","34.1287635"],["-112.150186","34.1290833"],["-112.1501421","34.1294946"],["-112.1500711","34.1299018"],["-112.1499172","34.1302989"],["-112.149718","34.1306875"],["-112.1494202","34.1311268"],["-112.1488901","34.1317866"],["-112.1484077","34.1323833"],["-112.1480122","34.1329519"],["-112.1476461","34.1335688"],["-112.1472624","34.1345555"],["-112.1465678","34.137012"],["-112.1464048","34.1376169"],["-112.1461279","34.1383152"],["-112.1458872","34.1387756"],["-112.1455455","34.1392331"],["-112.1449351","34.1399964"],["-112.143115","34.1421065"],["-112.1425696","34.142732"],["-112.1414543","34.144015"],["-112.1411922","34.144405"],["-112.1409452","34.1448261"],["-112.1407909","34.1452373"],["-112.1407459","34.1453846"],["-112.1407198","34.1455086"],["-112.1406762","34.1458272"],["-112.1406517","34.1462239"],["-112.1406556","34.1464901"],["-112.1406813","34.146789"],["-112.1407133","34.1470161"],["-112.1407531","34.1472404"],["-112.1408366","34.1475168"],["-112.140957","34.1478069"],["-112.141125","34.1481684"],["-112.1413522","34.1486451"],["-112.1416242","34.1492468"],["-112.1417977","34.1497611"],["-112.1418813","34.150197"],["-112.1419122","34.1506237"],["-112.1418807","34.151065"],["-112.1418206","34.1514022"],["-112.1417201","34.1517227"],["-112.1415572","34.1521018"],["-112.1413158","34.1525192"],["-112.1410278","34.1529088"],["-112.1405493","34.1534045"],["-112.1401048","34.1538566"],["-112.1392026","34.1547743"],["-112.1390129","34.1550124"],["-112.1388028","34.1553199"],["-112.13862","34.1556618"],["-112.1384444","34.1560358"],["-112.1383462","34.1563896"],["-112.1382381","34.1568084"],["-112.1381792","34.1572314"],["-112.1380503","34.1599601"],["-112.1379897","34.16064"],["-112.1377519","34.1624728"],["-112.1374333","34.1641496"],["-112.1355628","34.1735339"],["-112.1347738","34.1775051"],["-112.1342632","34.1800678"],["-112.132978","34.1865442"],["-112.132823","34.1874392"],["-112.1326838","34.1882393"],["-112.1323547","34.1898129"],["-112.1322195","34.1903818"],["-112.1321183","34.1906649"],["-112.1319231","34.1913077"],["-112.1317385","34.1918549"],["-112.1313014","34.1930108"],["-112.1310945","34.1935288"],["-112.1305941","34.1945551"],["-112.1301885","34.1952991"],["-112.1297947","34.195962"],["-112.129464","34.1964444"],["-112.1291573","34.1969067"],["-112.1286599","34.1975931"],["-112.1280373","34.1983792"],["-112.1276417","34.1988422"],["-112.127196","34.1993977"],["-112.1264181","34.2001863"],["-112.1258894","34.2007396"],["-112.1139882","34.2126241"],["-112.1134061","34.2132508"],["-112.1129271","34.2138798"],["-112.1124642","34.2145092"],["-112.1120781","34.215106"],["-112.1118276","34.2155688"],["-112.111584","34.2160356"],["-112.1113119","34.2166833"],["-112.1111119","34.2172353"],["-112.1109542","34.2178337"],["-112.1107968","34.2184744"],["-112.1107038","34.219006"],["-112.1106384","34.2194555"],["-112.110602","34.2199133"],["-112.1105835","34.2204522"],["-112.110606","34.2210756"],["-112.1108758","34.2258794"],["-112.112436","34.2523884"],["-112.1123957","34.2538575"],["-112.1123331","34.2544817"],["-112.1122684","34.2550356"],["-112.111359","34.2604854"],["-112.1112005","34.2616284"],["-112.1110983","34.2624373"],["-112.1110276","34.2640682"],["-112.1110546","34.2652777"],["-112.1111821","34.2666202"],["-112.1112361","34.267128"],["-112.1113266","34.2676233"],["-112.1114402","34.2682918"],["-112.1116326","34.2690432"],["-112.1119119","34.270147"],["-112.1127654","34.2725548"],["-112.113032","34.2731886"],["-112.1132691","34.2736597"],["-112.1135236","34.2741825"],["-112.1139746","34.2750221"],["-112.1145005","34.2759464"],["-112.1150061","34.2767575"],["-112.1160277","34.2781703"],["-112.1170199","34.2794642"],["-112.1181301","34.2809122"],["-112.1199085","34.2833153"],["-112.1204106","34.2839928"],["-112.1223779","34.2866397"],["-112.1226681","34.2870953"],["-112.1230275","34.2877085"],["-112.1232483","34.2882203"],["-112.1235132","34.2890587"],["-112.1236433","34.2896318"],["-112.1237614","34.2912674"],["-112.1238412","34.2924236"],["-112.1240131","34.2935669"],["-112.1242631","34.2943957"],["-112.1248227","34.2955715"],["-112.1257363","34.2971504"],["-112.1264388","34.2984332"],["-112.1268374","34.2992702"],["-112.1270912","34.2999501"],["-112.1273239","34.3007055"],["-112.1275313","34.3016718"],["-112.1276488","34.3025649"],["-112.1276962","34.3035107"],["-112.12761","34.3046425"],["-112.1272891","34.3060003"],["-112.1269175","34.3072317"],["-112.1264417","34.3084881"],["-112.1257768","34.3100383"],["-112.124972","34.3120865"],["-112.1247455","34.3129644"],["-112.1244565","34.3141091"],["-112.1240034","34.3160675"],["-112.1234515","34.3184623"],["-112.1232747","34.3191411"],["-112.120163","34.3319275"],["-112.1198487","34.3332665"],["-112.1193643","34.3352131"],["-112.118678","34.3380344"],["-112.1183887","34.3392862"],["-112.1178649","34.3421617"],["-112.1174388","34.345724"],["-112.1172601","34.3485318"],["-112.1170362","34.3587873"],["-112.1169926","34.3599078"],["-112.1169134","34.3605698"],["-112.1167024","34.361595"],["-112.1165283","34.3622257"],["-112.1163398","34.3628377"],["-112.1160564","34.3635704"],["-112.1155688","34.3644412"],["-112.1150515","34.3652924"],["-112.1145506","34.3659683"],["-112.114094","34.3665417"],["-112.1084119","34.3730002"],["-112.1064857","34.3748547"],["-112.1054894","34.3757311"],["-112.1045143","34.376505"],["-112.1034745","34.377277"],["-112.1023233","34.3780585"],["-112.0888495","34.3861933"],["-112.0875619","34.3871618"],["-112.0861775","34.3882862"],["-112.0842767","34.3899811"],["-112.0834757","34.3908073"],["-112.0824608","34.3919019"],["-112.080313","34.3946293"],["-112.0749734","34.4015476"],["-112.0729422","34.4042634"],["-112.071967","34.4058716"],["-112.0716277","34.4065002"],["-112.0712539","34.4073148"],["-112.0710073","34.4078932"],["-112.0705748","34.4089945"],["-112.0702985","34.4097915"],["-112.0700955","34.4103373"],["-112.0699462","34.4106992"],["-112.0697944","34.4110119"],["-112.0696136","34.4113539"],["-112.0694507","34.4116224"],["-112.0692983","34.411875"],["-112.0691221","34.4121328"],["-112.0689746","34.4123163"],["-112.0688048","34.412515"],["-112.0685649","34.4127778"],["-112.0682228","34.413116"],["-112.0678879","34.413433"],["-112.0672321","34.4139737"],["-112.0668073","34.4142786"],["-112.0663225","34.4146224"],["-112.0655717","34.4151816"],["-112.0651954","34.4155138"],["-112.0648658","34.4158409"],["-112.0645369","34.4162283"],["-112.0643034","34.4165689"],["-112.0640008","34.4170727"],["-112.0637272","34.4175777"],["-112.0635126","34.4180193"],["-112.0631144","34.4188278"],["-112.0629127","34.4191519"],["-112.0624212","34.4197697"],["-112.0618643","34.4202821"],["-112.0612528","34.4207306"],["-112.0608486","34.4209677"],["-112.0602893","34.4212348"],["-112.059754","34.421448"],["-112.0591172","34.4216221"],["-112.0585715","34.4217203"],["-112.0580307","34.4217894"],["-112.0574233","34.4218226"],["-112.0566855","34.4217813"],["-112.055935","34.4217179"],["-112.0546986","34.4215713"],["-112.053909","34.4215098"],["-112.053237","34.4214817"],["-112.0527206","34.4214872"],["-112.0521946","34.4215215"],["-112.0513944","34.4216402"],["-112.050929","34.421732"],["-112.0505169","34.421822"],["-112.0499178","34.4219971"],["-112.0491049","34.4222885"],["-112.0409267","34.4255482"],["-112.0402304","34.4258872"],["-112.0393789","34.4263492"],["-112.0386254","34.4268046"],["-112.0378038","34.4273287"],["-112.0371222","34.427849"],["-112.0358987","34.4288965"],["-112.0353958","34.4293845"],["-112.0349569","34.4298406"],["-112.0340535","34.4309252"],["-112.0336182","34.4315253"],["-112.0332738","34.4320368"],["-112.0330069","34.4324928"],["-112.0327493","34.4329521"],["-112.0324572","34.4335308"],["-112.0322259","34.4340227"],["-112.0318035","34.4351356"],["-112.0316009","34.4357921"],["-112.031446","34.4364142"],["-112.0312685","34.4373148"],["-112.0311642","34.4381379"],["-112.0302909","34.4579449"],["-112.0302443","34.4585835"],["-112.0301873","34.4589424"],["-112.0300622","34.4594748"],["-112.0299257","34.459874"],["-112.0294645","34.4607295"],["-112.0289312","34.4614493"],["-112.026857","34.4641283"],["-112.0259564","34.4653769"],["-112.0252118","34.4665856"],["-112.0242187","34.4685534"],["-112.0235384","34.4699868"],["-112.020571","34.4771835"],["-112.0202826","34.4777951"],["-112.0200826","34.4781759"],["-112.0198456","34.4785984"],["-112.0195797","34.4790375"],["-112.0192949","34.4794761"],["-112.0190012","34.4798888"],["-112.0186807","34.480317"],["-112.0182937","34.4807787"],["-112.0176737","34.4814696"],["-112.01712","34.4820253"],["-112.0164898","34.482594"],["-112.0160085","34.4830086"],["-112.0155263","34.4833756"],["-112.0147706","34.4839162"],["-112.0125523","34.4854293"],["-112.0120227","34.4858011"],["-112.0115075","34.4861947"],["-112.010925","34.4866781"],["-112.0104896","34.4870718"],["-112.0100753","34.4874653"],["-112.009661","34.4878926"],["-112.0093128","34.488274"],["-112.0089244","34.4887364"],["-112.0084213","34.4893898"],["-112.0062206","34.4925204"],["-112.0059357","34.4929641"],["-112.0055287","34.4935725"],["-112.0037788","34.4960729"],["-112.0034011","34.4966801"],["-112.0030798","34.4972557"],["-112.0027784","34.4978475"],["-112.0025486","34.4983679"],["-112.0018628","34.4999911"],["-112.0016094","34.5005578"],["-112.0013181","34.5012258"],["-112.0007785","34.5024993"],["-112.0005232","34.5030083"],["-112.0003816","34.5032635"],["-112.0002097","34.503562"],["-111.9998075","34.5042055"],["-111.9994645","34.5046701"],["-111.998877","34.5053952"],["-111.9979615","34.5064395"],["-111.9970712","34.5074775"],["-111.9965644","34.5081587"],["-111.9961422","34.5087502"],["-111.9957339","34.5093811"],["-111.9951332","34.5102935"],["-111.9896063","34.5178486"],["-111.9826207","34.5272243"],["-111.9821212","34.5278729"],["-111.9815686","34.5286707"],["-111.9803823","34.5302919"],["-111.9800882","34.5306443"],["-111.9797393","34.5310238"],["-111.9792053","34.531511"],["-111.978837","34.5318113"],["-111.9784503","34.5320887"],["-111.9779366","34.5324187"],["-111.9774382","34.5326917"],["-111.9769206","34.5329359"],["-111.9762407","34.5332028"],["-111.9755359","34.533424"],["-111.9749085","34.5335819"],["-111.9741503","34.5337096"],["-111.9735861","34.533792"],["-111.9730986","34.5338198"],["-111.9725667","34.5338375"],["-111.9720625","34.5338237"],["-111.9712021","34.5337602"],["-111.9706084","34.5336828"],["-111.9665821","34.5329797"],["-111.9656855","34.5328802"],["-111.9646734","34.5328896"],["-111.9639917","34.5329498"],["-111.9635108","34.533014"],["-111.961124","34.5334714"],["-111.9602878","34.5335651"],["-111.9595642","34.5335507"],["-111.9589769","34.5334996"],["-111.958472","34.5334111"],["-111.9577799","34.5332185"],["-111.9569993","34.532874"],["-111.9559935","34.5322455"],["-111.9533157","34.5305402"],["-111.9526094","34.530113"],["-111.952183","34.5299162"],["-111.951595","34.5297083"],["-111.9510934","34.5295848"],["-111.950443","34.5294809"],["-111.9496477","34.5294477"],["-111.9490725","34.5294837"],["-111.9485359","34.5295719"],["-111.9480614","34.5296756"],["-111.9476412","34.5298077"],["-111.9469734","34.5300547"],["-111.9462583","34.5302912"],["-111.9454077","34.5305441"],["-111.9436376","34.530999"],["-111.9431187","34.5311611"],["-111.9424115","34.5314792"],["-111.9418213","34.5318144"],["-111.94096","34.5324512"],["-111.9401735","34.5330483"],["-111.9394282","34.5336019"],["-111.9389172","34.5339095"],["-111.9384269","34.5341716"],["-111.9378685","34.5343741"],["-111.9372486","34.5345484"],["-111.9365137","34.5346792"],["-111.9324511","34.5351918"],["-111.9309998","34.5354274"],["-111.9292859","34.5358957"],["-111.9280445","34.5363564"],["-111.9271421","34.5367515"],["-111.9258976","34.5372949"],["-111.92547","34.5374126"],["-111.9251424","34.5374775"],["-111.9247294","34.5375369"],["-111.9242776","34.5375901"],["-111.9238665","34.5376031"],["-111.9234411","34.5375937"],["-111.9229653","34.5375606"],["-111.9225179","34.5374794"],["-111.9219586","34.5373495"],["-111.9212081","34.5371276"],["-111.9200669","34.5368181"],["-111.9194563","34.536746"],["-111.9189052","34.5367144"],["-111.9182487","34.5367584"],["-111.9176352","34.5368196"],["-111.9166168","34.5370057"],["-111.9155439","34.5372036"],["-111.9144188","34.5374208"],["-111.9137627","34.5375733"],["-111.9133398","34.5376639"],["-111.9128548","34.5377744"],["-111.912368","34.5378894"],["-111.9118185","34.5380191"],["-111.9114263","34.5381637"],["-111.9111411","34.5383098"],["-111.9108726","34.538441"],["-111.9101182","34.5387099"],["-111.9096931","34.5389191"],["-111.9089152","34.5394704"],["-111.9087717","34.5395895"],["-111.9086049","34.5397543"],["-111.9078467","34.5404268"],["-111.9074702","34.5407994"],["-111.9072965","34.5410327"],["-111.9068029","34.5416945"],["-111.9065046","34.5421924"],["-111.906265","34.5426179"],["-111.9059772","34.5432375"],["-111.9058862","34.5435421"],["-111.9058213","34.5440558"],["-111.9056997","34.5446087"],["-111.9056664","34.5449559"],["-111.9056841","34.5455935"],["-111.9056631","34.5468334"],["-111.9056511","34.5501698"],["-111.905649","34.5508285"],["-111.9056464","34.5512792"],["-111.9056496","34.5518268"],["-111.9056414","34.5537898"],["-111.905607","34.5546081"],["-111.9055329","34.5556022"],["-111.9054543","34.5559633"],["-111.9050129","34.557559"],["-111.9047565","34.5582994"],["-111.9045455","34.5588309"],["-111.9042672","34.5594873"],["-111.9038642","34.5602293"],["-111.9034239","34.5609667"],["-111.9031018","34.5614637"],["-111.902245","34.5625763"],["-111.9017378","34.5631471"],["-111.9012076","34.5636941"],["-111.9007061","34.5641495"],["-111.9003228","34.5645075"],["-111.8999439","34.5647999"],["-111.8992455","34.5653466"],["-111.8984979","34.5658594"],["-111.8976694","34.5664325"],["-111.8957329","34.5677772"],["-111.8927221","34.5698179"],["-111.8918077","34.5704441"],["-111.890973","34.5710168"],["-111.8898482","34.5717888"],["-111.889178","34.572258"],["-111.8882707","34.5729311"],["-111.8875087","34.5735679"],["-111.8869536","34.574072"],["-111.8864647","34.574551"],["-111.8859048","34.5751476"],["-111.8853309","34.5758287"],["-111.8848128","34.5764993"],["-111.8843822","34.5771297"],["-111.8840275","34.5777553"],["-111.8839815","34.5778381"],["-111.8837138","34.5783307"],["-111.8814648","34.5825835"],["-111.8809361","34.5835833"],["-111.8740442","34.5964608"],["-111.8732302","34.5979658"],["-111.8715797","34.6010426"],["-111.8709939","34.6022618"],["-111.8706298","34.6030998"],["-111.8702714","34.603962"],["-111.8698685","34.6049036"],["-111.8695451","34.6055807"],["-111.8692338","34.6061758"],["-111.8689391","34.6066414"],["-111.8686416","34.6070265"],["-111.8683256","34.6074087"],["-111.8679393","34.6078139"],["-111.8675682","34.608184"],["-111.8672027","34.6084802"],["-111.8668343","34.6087551"],["-111.8656798","34.6095239"],["-111.8641398","34.6102064"],["-111.8523854","34.6137228"],["-111.8514944","34.6140704"],["-111.850603","34.6145178"],["-111.8496959","34.6150098"],["-111.8489506","34.6154952"],["-111.8483717","34.6159487"],["-111.8479082","34.6163325"],["-111.8463884","34.6179532"],["-111.8449442","34.61959"],["-111.8425646","34.6222124"],["-111.841755","34.6230393"],["-111.8413207","34.6234281"],["-111.8408893","34.6237495"],["-111.840194","34.6242121"],["-111.839288","34.6246925"],["-111.8382902","34.6252032"],["-111.8374741","34.6256363"],["-111.8368579","34.6260279"],["-111.8364378","34.6263348"],["-111.8359293","34.6267553"],["-111.8354478","34.6272173"],["-111.8351255","34.6275873"],["-111.8348371","34.6279729"],["-111.8343927","34.6286417"],["-111.8335538","34.6301716"],["-111.8328882","34.6312365"],["-111.8318251","34.6324815"],["-111.8303924","34.6337767"],["-111.8297464","34.6342517"],["-111.8291907","34.6345727"],["-111.8286528","34.6348522"],["-111.8280418","34.6350754"],["-111.8270096","34.6353743"],["-111.8246672","34.6359841"],["-111.8237637","34.6362976"],["-111.8230511","34.6366159"],["-111.8225037","34.636887"],["-111.8220751","34.6370963"],["-111.8216955","34.6372706"],["-111.8213361","34.6374512"],["-111.8209652","34.6376194"],["-111.8203414","34.6378578"],["-111.8195692","34.6381248"],["-111.8187604","34.6383244"],["-111.8179153","34.6385154"],["-111.8153301","34.6389607"],["-111.8141936","34.6392129"],["-111.81356","34.6394234"],["-111.8117396","34.6402359"],["-111.8106107","34.6409056"],["-111.8074304","34.6435136"],["-111.7973156","34.6519959"],["-111.7942375","34.6546384"],["-111.7935483","34.6555027"],["-111.7919991","34.6578226"],["-111.7912013","34.6586737"],["-111.7901902","34.6594745"],["-111.789069","34.6601777"],["-111.7877662","34.6609315"],["-111.7867845","34.6616254"],["-111.7856934","34.6626807"],["-111.7836437","34.6652278"],["-111.7826762","34.6662162"],["-111.7808169","34.6677534"],["-111.7800179","34.6685095"],["-111.7788143","34.6698046"],["-111.7779719","34.6706221"],["-111.7772155","34.6712157"],["-111.7762321","34.6718055"],["-111.7751219","34.6723068"],["-111.7737806","34.6727726"],["-111.7608704","34.6759561"],["-111.7591427","34.6764196"],["-111.7574104","34.6771774"],["-111.7559249","34.678188"],["-111.7521752","34.6812232"],["-111.75092","34.6821239"],["-111.7497738","34.6828202"],["-111.7478165","34.6839258"],["-111.7463604","34.684819"],["-111.744983","34.6861226"],["-111.7441842","34.687221"],["-111.74384","34.6878463"],["-111.7436387","34.6881287"],["-111.7427419","34.6899151"],["-111.7437311","34.6903126"],["-111.7439864","34.6903855"],["-111.7450779","34.6906286"],["-111.7485893","34.6912808"],["-111.7498121","34.691629"],["-111.7506493","34.692053"],["-111.7514347","34.692614"],["-111.7529933","34.6941549"],["-111.7535802","34.6945932"],["-111.7547612","34.6952439"],["-111.7615385","34.698472"],["-111.7628145","34.6991378"],["-111.7639226","34.6997632"],["-111.765438","34.7006971"],["-111.7660697","34.7011208"],["-111.7670436","34.7018261"],["-111.7686053","34.7030174"],["-111.7702776","34.7044328"],["-111.7717238","34.7058137"],["-111.7767986","34.7116956"],["-111.7774629","34.7124965"],["-111.7778154","34.713095"],["-111.7780857","34.7137224"],["-111.7782014","34.7142593"],["-111.7782483","34.7148134"],["-111.7782003","34.7153351"],["-111.7780954","34.715844"],["-111.777944","34.716345"],["-111.7775958","34.7170518"],["-111.7755732","34.7208925"],["-111.7751992","34.7218336"],["-111.7750165","34.7226692"],["-111.7749544","34.7236079"],["-111.7750471","34.7245624"],["-111.7753261","34.7254082"],["-111.7754334","34.7256691"],["-111.7756134","34.7261387"],["-111.7760612","34.7268932"],["-111.7766459","34.7279336"],["-111.7771207","34.7289395"],["-111.7774048","34.7299205"],["-111.7774952","34.730653"],["-111.7774958","34.7313528"],["-111.7774143","34.732055"],["-111.7772506","34.7326976"],["-111.7770619","34.7332278"],["-111.7767913","34.7337903"],["-111.7765346","34.7341994"],["-111.7741893","34.7376003"],["-111.7731317","34.7389651"],["-111.7713459","34.7408449"],["-111.7701214","34.742166"],["-111.7694018","34.7430498"],["-111.7687723","34.7439163"],["-111.7681134","34.7449325"],["-111.7677436","34.7455423"],["-111.7673199","34.746336"],["-111.7669278","34.7471966"],["-111.7665029","34.7482017"],["-111.7661577","34.7491307"],["-111.7658669","34.7501176"],["-111.7654465","34.751899"],["-111.7653462","34.7524689"],["-111.7650052","34.7549035"],["-111.764898","34.7555698"],["-111.764863","34.7560137"],["-111.7648773","34.7562989"],["-111.7649088","34.75663"],["-111.7649851","34.7569911"],["-111.7651034","34.7574164"],["-111.7653033","34.757868"],["-111.7655113","34.7582468"],["-111.7663232","34.7594118"],["-111.7666817","34.7600201"],["-111.7668203","34.7603989"],["-111.7668832","34.7607002"],["-111.7669109","34.7610463"],["-111.7669177","34.7613405"],["-111.766889","34.7616133"],["-111.7667593","34.7621552"],["-111.7664609","34.7632429"],["-111.7663851","34.7635526"],["-111.766342","34.7637628"],["-111.7662856","34.76401"],["-111.7658551","34.7656202"],["-111.7655554","34.7667429"],["-111.765078","34.7685583"],["-111.7648533","34.7694467"],["-111.7640744","34.7723773"],["-111.764004","34.7726797"],["-111.7639866","34.7727949"],["-111.7639613","34.7728915"],["-111.7639262","34.772955"],["-111.7638761","34.7730123"],["-111.7637974","34.7730519"],["-111.7637459","34.7731192"],["-111.7637438","34.7731369"],["-111.7637492","34.7731999"],["-111.7637865","34.773259"],["-111.7638039","34.7733433"],["-111.7637807","34.7734803"],["-111.763385","34.7749786"],["-111.7632603","34.7754727"],["-111.763124","34.7760662"],["-111.7630377","34.776548"],["-111.7629979","34.7768552"],["-111.7629951","34.7770039"],["-111.7630081","34.7771122"],["-111.7630073","34.7772049"],["-111.7629711","34.7773178"],["-111.762911","34.7773597"],["-111.7628762","34.7774193"],["-111.7628794","34.777477"],["-111.7628944","34.7774999"],["-111.7629164","34.7775327"],["-111.7629521","34.77763"],["-111.7629586","34.7778336"],["-111.7629764","34.7782798"],["-111.7629773","34.7783259"],["-111.7629803","34.7783958"],["-111.7629844","34.7785052"],["-111.7629948","34.7789611"],["-111.7630065","34.7795985"],["-111.7630321","34.7798527"],["-111.7630238","34.7799551"],["-111.7629717","34.7800501"],["-111.7629258","34.7800795"],["-111.7629061","34.780104"],["-111.7628857","34.7801323"],["-111.7628777","34.7801613"],["-111.7628831","34.7802098"],["-111.7628957","34.7802312"],["-111.7629203","34.7802653"],["-111.7629554","34.7802942"],["-111.7629774","34.7804185"],["-111.7629884","34.7805914"],["-111.7629833","34.785415"],["-111.7629829","34.7861291"],["-111.7629826","34.7864716"],["-111.7629782","34.7865644"],["-111.7629864","34.7884207"],["-111.7630055","34.7885879"],["-111.7629949","34.7887125"],["-111.762952","34.7888007"],["-111.7628974","34.7888361"],["-111.7628674","34.7888733"],["-111.7628545","34.7889246"],["-111.7628716","34.7889843"],["-111.7628985","34.7890121"],["-111.7629242","34.7890399"],["-111.7629643","34.7892661"],["-111.7629774","34.7903322"],["-111.7630119","34.7906209"],["-111.7630665","34.7909234"],["-111.76315","34.7912503"],["-111.7632603","34.791581"],["-111.7647632","34.7951295"],["-111.7651804","34.7960044"],["-111.765515","34.7965488"],["-111.7663091","34.7975436"],["-111.7674884","34.7989241"],["-111.7679228","34.7995494"],["-111.7681756","34.8001055"],["-111.7683572","34.8007459"],["-111.7683869","34.8013818"],["-111.7682787","34.8019877"],["-111.7680928","34.8025509"],["-111.7677236","34.8034134"],["-111.7676076","34.8038473"],["-111.7675532","34.8041894"],["-111.7675405","34.8045364"],["-111.7675738","34.8050603"],["-111.7676731","34.8057271"],["-111.7677128","34.8062134"],["-111.76774","34.806657"],["-111.7677324","34.8069587"],["-111.76764","34.8073274"],["-111.7675249","34.8076255"],["-111.7672313","34.8080817"],["-111.7650932","34.8103803"],["-111.7649021","34.8106491"],["-111.7648025","34.810896"],["-111.7647576","34.8110791"],["-111.7647498","34.811219"],["-111.7647738","34.8114459"],["-111.7648378","34.8116724"],["-111.7649845","34.8119533"],["-111.7653542","34.8124473"],["-111.7655365","34.8127885"],["-111.7663118","34.8147259"],["-111.7667494","34.8158237"],["-111.7669251","34.8161279"],["-111.7671039","34.8163706"],["-111.7673565","34.8166124"],["-111.7676847","34.8168666"],["-111.7680474","34.8170909"],["-111.7686787","34.8173392"],["-111.7711458","34.8180767"],["-111.7716839","34.818325"],["-111.7720557","34.8186149"],["-111.7722634","34.8189323"],["-111.7723654","34.8191389"],["-111.7724255","34.819434"],["-111.7724618","34.8200603"],["-111.7724751","34.8204487"],["-111.7725724","34.8208643"],["-111.7727039","34.8211418"],["-111.7728499","34.8213821"],["-111.7731497","34.8216975"],["-111.7742754","34.8227388"],["-111.7746398","34.8230205"],["-111.7750128","34.8232411"],["-111.7762507","34.823731"],["-111.7766679","34.823904"],["-111.7772219","34.824206"],["-111.7776483","34.8245376"],["-111.7779889","34.8248783"],["-111.7782083","34.825156"],["-111.7783738","34.825463"],["-111.7785454","34.8258857"],["-111.7786085","34.8261531"],["-111.7785804","34.8262873"],["-111.7785366","34.8263358"],["-111.7785161","34.8264043"],["-111.7785367","34.8264651"],["-111.7785852","34.8265144"],["-111.7786016","34.8266036"],["-111.7785868","34.8267829"],["-111.778556","34.8269691"],["-111.7784824","34.8271834"],["-111.7784026","34.827357"],["-111.7782613","34.8276017"],["-111.7781219","34.8278458"],["-111.7780161","34.8281265"],["-111.777942","34.8284602"],["-111.7779218","34.8289034"],["-111.7779047","34.8293408"],["-111.7778773","34.8296617"],["-111.77782","34.8299297"],["-111.7777278","34.830253"],["-111.7775246","34.8308314"],["-111.7772852","34.8315074"],["-111.7770199","34.8322197"],["-111.7769492","34.832492"],["-111.7769214","34.8325957"],["-111.7768772","34.832682"],["-111.7767685","34.8327844"],["-111.7767085","34.8328352"],["-111.7766989","34.832858"],["-111.7766864","34.8328994"],["-111.7766942","34.8329324"],["-111.7767014","34.8329622"],["-111.7766976","34.8330729"],["-111.7766591","34.83321"],["-111.7765232","34.8336104"],["-111.7764641","34.8338682"],["-111.776452","34.834091"],["-111.7764598","34.8342825"],["-111.7764948","34.8344949"],["-111.7765409","34.8346975"],["-111.7766233","34.8349204"],["-111.7768025","34.8352633"],["-111.77707","34.8357497"],["-111.7771648","34.8359547"],["-111.7772371","34.8361642"],["-111.7772764","34.8364209"],["-111.7772776","34.8365518"],["-111.7772665","34.8367037"],["-111.7772168","34.8369525"],["-111.7770528","34.8374526"],["-111.7761294","34.84011"],["-111.7760227","34.840475"],["-111.7759887","34.8406902"],["-111.7759901","34.8409627"],["-111.776045","34.8413163"],["-111.7760983","34.8416247"],["-111.7761033","34.8418021"],["-111.776054","34.8420789"],["-111.7759907","34.8422315"],["-111.775882","34.8423896"],["-111.7757442","34.8425236"],["-111.7755895","34.8426344"],["-111.7752356","34.8428295"],["-111.7736538","34.843649"],["-111.7733639","34.843747"],["-111.7731261","34.8437957"],["-111.7728237","34.8438231"],["-111.7722097","34.8438075"],["-111.7717051","34.8438013"],["-111.7714689","34.8438008"],["-111.7710727","34.8437959"],["-111.7707378","34.8438296"],["-111.7703282","34.8439171"],["-111.7698275","34.8441044"],["-111.7690216","34.8443889"],["-111.7681135","34.8446617"],["-111.7678277","34.8447843"],["-111.7675264","34.8449509"],["-111.7673182","34.8451272"],["-111.7671248","34.8453402"],["-111.7669827","34.8455867"],["-111.7668359","34.8459379"],["-111.7666201","34.8465156"],["-111.7664017","34.8471804"],["-111.7662877","34.847553"],["-111.7662551","34.8476809"],["-111.7662376","34.8477488"],["-111.766179","34.8477959"],["-111.7661065","34.8478507"],["-111.7660735","34.8478694"],["-111.7660508","34.8478835"],["-111.7660289","34.8479282"],["-111.7660196","34.8479663"],["-111.7660207","34.8479958"],["-111.7660318","34.8480326"],["-111.7660369","34.8481983"],["-111.7659285","34.8484466"],["-111.7657624","34.8487611"],["-111.7655658","34.8491"],["-111.7654206","34.8493599"],["-111.7653401","34.8495621"],["-111.7653014","34.8497881"],["-111.765297","34.8498598"],["-111.7652937","34.8500294"],["-111.7653342","34.8502541"],["-111.7655354","34.8509916"],["-111.7655646","34.8511979"],["-111.7655577","34.8513295"],["-111.7654727","34.8515902"],["-111.7653967","34.8517128"],["-111.7652411","34.8519103"],["-111.7650358","34.8521348"],["-111.7647227","34.8524674"],["-111.7644639","34.8527501"],["-111.7643509","34.8529314"],["-111.7642884","34.8530548"],["-111.7642606","34.853166"],["-111.7642426","34.8534071"],["-111.7642998","34.8546035"],["-111.7642804","34.8548904"],["-111.7641956","34.8551223"],["-111.7641276","34.8552925"],["-111.7641091","34.8553962"],["-111.7640526","34.8555645"],["-111.7639903","34.8555967"],["-111.7639721","34.8556167"],["-111.7639575","34.8556383"],["-111.7639527","34.8557241"],["-111.7639766","34.8557631"],["-111.7640135","34.8557949"],["-111.7640236","34.8558721"],["-111.7640235","34.855972"],["-111.7639663","34.8565418"],["-111.7637976","34.8581715"],["-111.7637593","34.8583536"],["-111.7636621","34.8585625"],["-111.763571","34.8587012"],["-111.7634697","34.8588276"],["-111.7632764","34.8590183"],["-111.7629512","34.85931"],["-111.7626082","34.8596135"],["-111.7624177","34.8598116"],["-111.7622881","34.8599802"],["-111.7621519","34.8601941"],["-111.7620616","34.8603777"],["-111.7618682","34.8608764"],["-111.7616505","34.8614469"],["-111.761622","34.8616098"],["-111.7616201","34.8617271"],["-111.7615872","34.8618062"],["-111.7615424","34.8618606"],["-111.7614941","34.8619079"],["-111.7614705","34.8619656"],["-111.7614756","34.8620185"],["-111.7615102","34.8620737"],["-111.7615753","34.8621134"],["-111.7616556","34.8621322"],["-111.7617633","34.8622083"],["-111.761824","34.8622618"],["-111.7620375","34.8624605"],["-111.7622709","34.8626077"],["-111.7625583","34.8627105"],["-111.7632132","34.8629172"],["-111.7634615","34.8630392"],["-111.7636328","34.863167"],["-111.7637207","34.8632759"],["-111.7638358","34.8636162"],["-111.7638737","34.8638361"],["-111.7638289","34.8642317"],["-111.7634087","34.865367"],["-111.7634034","34.8655212"],["-111.7634215","34.8656183"],["-111.7634261","34.8656574"],["-111.7634278","34.8656792"],["-111.7634279","34.8657009"],["-111.7634268","34.8657242"],["-111.7634151","34.8657986"],["-111.763403","34.8658504"],["-111.7633873","34.8658985"],["-111.7633767","34.8659319"],["-111.7633649","34.8659604"],["-111.7632972","34.866004"],["-111.7631987","34.8660779"],["-111.7631521","34.8661148"],["-111.7628435","34.8662795"],["-111.7626226","34.8664241"],["-111.7623181","34.866666"],["-111.7621062","34.8669826"],["-111.761865","34.867399"],["-111.7613822","34.868788"],["-111.7613386","34.8688616"],["-111.7612634","34.8689098"],["-111.7611224","34.8692244"],["-111.7609829","34.8695648"],["-111.76095","34.8696157"],["-111.7608911","34.8696604"],["-111.7608514","34.8696753"],["-111.7608187","34.8696961"],["-111.7607957","34.8697252"],["-111.7607838","34.8697579"],["-111.7607847","34.8697931"],["-111.7607943","34.8698275"],["-111.7607418","34.8698899"],["-111.7607078","34.869982"],["-111.7606295","34.8701085"],["-111.7602472","34.8705331"],["-111.7599551","34.8708445"],["-111.7594201","34.8713187"],["-111.7588153","34.8717881"],["-111.7586645","34.8718954"],["-111.758483","34.8720121"],["-111.7573212","34.8727781"],["-111.7569742","34.8730184"],["-111.7568015","34.8731233"],["-111.7566826","34.8731872"],["-111.7566419","34.8732007"],["-111.7566043","34.8732073"],["-111.7565833","34.8732032"],["-111.7565452","34.8732034"],["-111.756506","34.8732126"],["-111.7564751","34.8732285"],["-111.7564507","34.8732499"],["-111.7564346","34.873277"],["-111.7564249","34.873308"],["-111.7563819","34.8733521"],["-111.7562897","34.8734804"],["-111.7560905","34.8736523"],["-111.7558608","34.8738556"],["-111.7556361","34.8741584"],["-111.7555017","34.8744047"],["-111.7552169","34.874868"],["-111.7550731","34.8750924"],["-111.7547541","34.8755957"],["-111.7546019","34.8757923"],["-111.7542447","34.8761876"],["-111.7537673","34.8765907"],["-111.7524277","34.8773536"],["-111.7520448","34.8776098"],["-111.751848","34.8777675"],["-111.7514998","34.8781927"],["-111.751358","34.8783448"],["-111.7512213","34.8784614"],["-111.7510191","34.8785908"],["-111.7507264","34.878724"],["-111.7503756","34.878861"],["-111.7499928","34.8790148"],["-111.7496688","34.8792066"],["-111.7494619","34.8794138"],["-111.7493259","34.8796354"],["-111.7491629","34.8799217"],["-111.7490004","34.8801629"],["-111.7488321","34.8803254"],["-111.7486329","34.8805008"],["-111.7484026","34.8807602"],["-111.7482023","34.8810379"],["-111.7479472","34.8813542"],["-111.7476513","34.8817264"],["-111.7467432","34.8826873"],["-111.7462825","34.8831689"],["-111.7457841","34.8836983"],["-111.7453888","34.8841026"],["-111.7450681","34.8844199"],["-111.7447838","34.8846947"],["-111.7445001","34.8848884"],["-111.7442112","34.8850204"],["-111.7439224","34.8851302"],["-111.7436511","34.8852115"],["-111.7430875","34.885333"],["-111.7428822","34.8853506"],["-111.7426007","34.8853697"],["-111.7423098","34.8853848"],["-111.7420765","34.8853902"],["-111.7418579","34.885389"],["-111.7416734","34.8853822"],["-111.7414555","34.885362"],["-111.7409554","34.8852947"],["-111.7395671","34.8850995"],["-111.7387408","34.8850647"],["-111.7384197","34.8850953"],["-111.7378427","34.8852085"],["-111.7373335","34.8853921"],["-111.7368096","34.8856312"],["-111.7361877","34.885985"],["-111.7341956","34.8871674"],["-111.733829","34.8874002"],["-111.7336427","34.8876188"],["-111.7334738","34.8878796"],["-111.7333921","34.8882365"],["-111.73342","34.8887059"],["-111.7336325","34.8890883"],["-111.733866","34.8893689"],["-111.7341392","34.8896898"],["-111.7343364","34.8899639"],["-111.7344323","34.8901955"],["-111.7344577","34.8904308"],["-111.7343085","34.8909907"],["-111.7341823","34.8913796"],["-111.7339428","34.8919781"],["-111.7336106","34.8927195"],["-111.7333644","34.8931318"],["-111.7331561","34.893407"],["-111.7329533","34.893689"],["-111.7325623","34.8943106"],["-111.7323943","34.8947488"],["-111.7323178","34.895028"],["-111.7322975","34.895345"],["-111.7322916","34.8956746"],["-111.7322865","34.8959725"],["-111.7322777","34.8963385"],["-111.7321905","34.8965906"],["-111.7320114","34.8970364"],["-111.7319278","34.8976446"],["-111.7319214","34.8982046"],["-111.7318328","34.898762"],["-111.7317425","34.8990843"],["-111.7316486","34.8993634"],["-111.7314261","34.8997403"],["-111.731127","34.9002912"],["-111.7305447","34.9008008"],["-111.7302158","34.9010846"],["-111.7299078","34.9013996"],["-111.7296328","34.9018127"],["-111.7293794","34.9021974"],["-111.7291385","34.90256"],["-111.7288936","34.9029184"],["-111.728673","34.9032257"],["-111.7283679","34.9037222"],["-111.7281747","34.9041683"],["-111.7277304","34.9054537"],["-111.7276713","34.9058078"],["-111.7276998","34.9061071"],["-111.7277898","34.9063706"],["-111.7279857","34.9066282"],["-111.7281961","34.9069012"],["-111.7284613","34.9073058"],["-111.7286055","34.9076309"],["-111.7287022","34.9080727"],["-111.7287184","34.9082763"],["-111.72871","34.9084972"],["-111.7286243","34.9090477"],["-111.7285823","34.9093709"],["-111.7285335","34.909847"],["-111.728398","34.9104446"],["-111.7282841","34.9110216"],["-111.7282064","34.9115942"],["-111.7282537","34.9121202"],["-111.7283112","34.9124837"],["-111.7283176","34.912715"],["-111.7282214","34.9131753"],["-111.7281882","34.9135916"],["-111.7283331","34.913922"],["-111.7285697","34.9141918"],["-111.728842","34.9144853"],["-111.7292347","34.9148963"],["-111.7298261","34.9154757"],["-111.7299765","34.9157062"],["-111.7300425","34.915861"],["-111.730106","34.9160385"],["-111.7301398","34.9162802"],["-111.7301583","34.9164985"],["-111.730369","34.9170388"],["-111.7304713","34.9172662"],["-111.7307274","34.9177419"],["-111.7313207","34.9187259"],["-111.7315178","34.9190059"],["-111.7318271","34.9193212"],["-111.7322261","34.9196061"],["-111.7331548","34.9200693"],["-111.7334465","34.920283"],["-111.7336751","34.9205583"],["-111.7339191","34.9209244"],["-111.7343734","34.9215648"],["-111.7348046","34.9222888"],["-111.7352355","34.9229696"],["-111.7353813","34.9234041"],["-111.7354283","34.9238244"],["-111.7352999","34.9247484"],["-111.7350449","34.9254423"],["-111.7345801","34.9262046"],["-111.7344097","34.9265675"],["-111.7344042","34.9268736"],["-111.734502","34.9271313"],["-111.7346796","34.9273419"],["-111.7349092","34.9274686"],["-111.7351083","34.9275411"],["-111.7359803","34.927679"],["-111.7385298","34.9281909"],["-111.7388397","34.9282766"],["-111.7391242","34.9284371"],["-111.7393914","34.9286207"],["-111.739615","34.9288265"],["-111.739782","34.9290159"],["-111.7399839","34.9293357"],["-111.7405806","34.9302684"],["-111.7409571","34.930893"],["-111.7413506","34.931957"],["-111.7421932","34.9336589"],["-111.7423564","34.9339606"],["-111.7424959","34.9341484"],["-111.7426533","34.9343368"],["-111.742865","34.9345477"],["-111.7431763","34.9347774"],["-111.7437651","34.9350681"],["-111.7446309","34.9354357"],["-111.7456076","34.935846"],["-111.7465658","34.9363308"],["-111.7471826","34.9367646"],["-111.7475524","34.9371981"],["-111.7478618","34.9375325"],["-111.7482505","34.9379688"],["-111.7487053","34.9384915"],["-111.7490062","34.9389207"],["-111.7493744","34.9394325"],["-111.7498807","34.9399593"],["-111.7503181","34.9402914"],["-111.7507421","34.9406085"],["-111.751006","34.9409094"],["-111.7513395","34.9414245"],["-111.7519957","34.9425571"],["-111.7522792","34.9430468"],["-111.7524942","34.9434438"],["-111.7526023","34.943735"],["-111.7526954","34.944064"],["-111.7527657","34.9444075"],["-111.7528144","34.9447662"],["-111.7529079","34.9452656"],["-111.7529552","34.9455728"],["-111.7529806","34.9457901"],["-111.7528658","34.9463041"],["-111.752858","34.9464104"],["-111.7528741","34.9464964"],["-111.7529012","34.9466006"],["-111.7529584","34.9466858"],["-111.7532685","34.9470567"],["-111.753461","34.9473559"],["-111.7536378","34.9476672"],["-111.7537936","34.9480417"],["-111.7538513","34.9483151"],["-111.7538978","34.9485641"],["-111.7539117","34.9488105"],["-111.7538958","34.9491112"],["-111.75383","34.9496776"],["-111.753723","34.9504187"],["-111.7536582","34.9510575"],["-111.7536628","34.9513153"],["-111.7536804","34.9515009"],["-111.7537002","34.9516585"],["-111.7540422","34.9528593"],["-111.7540484","34.953111"],["-111.7540134","34.9534033"],["-111.7539852","34.9535603"],["-111.753971","34.9536931"],["-111.7539612","34.953807"],["-111.7539706","34.9538754"],["-111.7539806","34.9539228"],["-111.7540062","34.9540224"],["-111.7540657","34.9541374"],["-111.7541667","34.9542806"],["-111.7545771","34.9550622"],["-111.7546199","34.9552021"],["-111.7546563","34.9553223"],["-111.7546777","34.9554489"],["-111.7546961","34.9555848"],["-111.7547039","34.9557322"],["-111.7547024","34.9560374"],["-111.7546812","34.9563003"],["-111.7546061","34.956691"],["-111.7544391","34.9571123"],["-111.7541935","34.9575739"],["-111.7539412","34.957966"],["-111.7537644","34.9583019"],["-111.7535881","34.9587049"],["-111.7534354","34.9590844"],["-111.7533581","34.9593994"],["-111.7531983","34.9598113"],["-111.7530523","34.9600852"],["-111.7529802","34.9601995"],["-111.752915","34.9603614"],["-111.7528877","34.9604615"],["-111.7528728","34.960644"],["-111.7528956","34.9610646"],["-111.7530522","34.9627604"],["-111.7530329","34.9631469"],["-111.7529732","34.9635738"],["-111.7528583","34.9639358"],["-111.7527342","34.9642875"],["-111.752623","34.9645436"],["-111.7525171","34.9647188"],["-111.7522975","34.9648872"],["-111.7521065","34.9649893"],["-111.7518726","34.9650762"],["-111.7516467","34.9651561"],["-111.7514472","34.9652297"],["-111.7512738","34.96533"],["-111.7510566","34.9655307"],["-111.7508925","34.9657759"],["-111.750613","34.9662403"],["-111.7502862","34.966748"],["-111.749962","34.967349"],["-111.7497532","34.9678477"],["-111.7496445","34.9682073"],["-111.7495979","34.9684622"],["-111.7495802","34.9686858"],["-111.7496218","34.9688755"],["-111.7497112","34.9690715"],["-111.7498643","34.9692665"],["-111.7499822","34.9694195"],["-111.7501155","34.9695842"],["-111.7502353","34.9697444"],["-111.750315","34.9699018"],["-111.750366","34.9700619"],["-111.7503809","34.9701727"],["-111.750386","34.9702813"],["-111.7503851","34.9704355"],["-111.7503451","34.9706621"],["-111.7502295","34.9709145"],["-111.7500734","34.9711236"],["-111.7499349","34.9712678"],["-111.7496275","34.9715079"],["-111.749342","34.971688"],["-111.7488726","34.9720307"],["-111.7482575","34.9724944"],["-111.7480152","34.9727486"],["-111.7478078","34.973161"],["-111.7470511","34.9748222"],["-111.7468123","34.9753885"],["-111.7466592","34.9758578"],["-111.7464478","34.9765668"],["-111.7463448","34.9769568"],["-111.7463142","34.9770874"],["-111.7460552","34.9784123"],["-111.7459884","34.9788813"],["-111.7460054","34.9790773"],["-111.7461092","34.9793819"],["-111.7462382","34.9796098"],["-111.7463156","34.9797327"],["-111.7464137","34.9798518"],["-111.7465586","34.9800169"],["-111.7467922","34.9802708"],["-111.7469387","34.9803996"],["-111.7470353","34.980502"],["-111.7471266","34.9806036"],["-111.7472075","34.9807171"],["-111.7472885","34.9808559"],["-111.7473633","34.9810441"],["-111.7474263","34.9814937"],["-111.7473798","34.981785"],["-111.747314","34.9820956"],["-111.7471985","34.982434"],["-111.7464378","34.9847444"],["-111.7460466","34.9859115"],["-111.745834","34.9864435"],["-111.7455993","34.9869239"],["-111.7454202","34.9872152"],["-111.7451494","34.98763"],["-111.7444268","34.9885749"],["-111.7442026","34.9887926"],["-111.7440661","34.9889313"],["-111.7438684","34.9891292"],["-111.7436228","34.9893507"],["-111.7433095","34.9896374"],["-111.7431038","34.98983"],["-111.7428746","34.9900044"],["-111.7426055","34.9901217"],["-111.7423087","34.9901796"],["-111.7420031","34.9901728"],["-111.7417202","34.9901079"],["-111.7416041","34.9900624"],["-111.7415086","34.9900134"],["-111.7414177","34.9899571"],["-111.741301","34.9898637"],["-111.7409947","34.9895882"],["-111.7405782","34.9891767"],["-111.7404632","34.9890911"],["-111.7403676","34.9890354"],["-111.7402624","34.9889836"],["-111.7401532","34.988938"],["-111.7400423","34.9889017"],["-111.7399312","34.9888724"],["-111.7398087","34.9888487"],["-111.7396943","34.9888342"],["-111.7395692","34.9888272"],["-111.7394371","34.9888272"],["-111.7393138","34.9888369"],["-111.739186","34.9888556"],["-111.7390657","34.9888812"],["-111.73894","34.9889184"],["-111.7387121","34.989035"],["-111.7384977","34.9891619"],["-111.737835","34.9896183"],["-111.7375303","34.9898353"],["-111.7372238","34.990118"],["-111.7367198","34.9905516"],["-111.7364017","34.9907722"],["-111.7361491","34.9909279"],["-111.7359335","34.9911175"],["-111.7357893","34.9913472"],["-111.735734","34.9915256"],["-111.7357185","34.9917858"],["-111.7357448","34.9920574"],["-111.7357751","34.992288"],["-111.7358174","34.9924824"],["-111.7359667","34.992668"],["-111.7361958","34.9929097"],["-111.7364743","34.9931864"],["-111.7368049","34.9936271"],["-111.7371805","34.9942857"],["-111.7372875","34.9945396"],["-111.7374248","34.9949737"],["-111.7375543","34.9953898"],["-111.7376925","34.9958058"],["-111.7378143","34.9961462"],["-111.7379553","34.9965581"],["-111.7381653","34.9971075"],["-111.7383702","34.9976687"],["-111.7385621","34.9982135"],["-111.7386036","34.9984365"],["-111.7385925","34.9987181"],["-111.7385318","34.9989096"],["-111.7383974","34.99915"],["-111.7381403","34.9994299"],["-111.7378741","34.9996651"],["-111.7376485","34.9998758"],["-111.7374657","35.000103"],["-111.737251","35.0003873"],["-111.7370806","35.0006375"],["-111.7367728","35.0010358"],["-111.736572","35.0013478"],["-111.7364448","35.0015801"],["-111.7363277","35.0019088"],["-111.7361486","35.0022032"],["-111.7360033","35.0024139"],["-111.7357479","35.0026023"],["-111.7351645","35.0029718"],["-111.7348025","35.0032184"],["-111.7345078","35.0034493"],["-111.7342178","35.0038758"],["-111.7341571","35.0040304"],["-111.7341103","35.0042155"],["-111.7340626","35.0045171"],["-111.734081","35.0048183"],["-111.734133","35.0050388"],["-111.7342366","35.0053091"],["-111.7343879","35.005549"],["-111.7347224","35.0059745"],["-111.735112","35.0064284"],["-111.7354688","35.0068578"],["-111.7358842","35.0073278"],["-111.736381","35.0078661"],["-111.7366992","35.0081528"],["-111.7372703","35.0087141"],["-111.7374393","35.0089544"],["-111.7376382","35.0093401"],["-111.7377278","35.0095693"],["-111.7377787","35.0097057"],["-111.7378873","35.0100494"],["-111.7379533","35.010381"],["-111.7380142","35.0109715"],["-111.738015","35.0120788"],["-111.7379472","35.0127439"],["-111.7378725","35.0134333"],["-111.7378055","35.0138355"],["-111.737762","35.0141678"],["-111.7377364","35.0143133"],["-111.7377067","35.0144938"],["-111.7376752","35.0146771"],["-111.737632","35.0148636"],["-111.7375444","35.0151373"],["-111.7374205","35.0154824"],["-111.7373351","35.0159068"],["-111.7372126","35.0180392"],["-111.737173","35.0183888"],["-111.7371327","35.0187795"],["-111.7370795","35.019067"],["-111.7369984","35.0193658"],["-111.7367791","35.0200094"],["-111.7364543","35.0209865"],["-111.7362983","35.0216239"],["-111.7362158","35.0220823"],["-111.7362092","35.0224268"],["-111.7362215","35.0226832"],["-111.7362243","35.023053"],["-111.7361492","35.0237565"],["-111.7360449","35.0242712"],["-111.7359363","35.0245127"],["-111.7358203","35.0247186"],["-111.7357938","35.0247992"],["-111.7357858","35.0248855"],["-111.7357854","35.0249665"],["-111.7358117","35.0250369"],["-111.7358494","35.0251015"],["-111.7359101","35.0251646"],["-111.735997","35.025227"],["-111.7360914","35.0252657"],["-111.7361911","35.0252812"],["-111.736275","35.0252854"],["-111.7363802","35.0252771"],["-111.7364996","35.0252443"],["-111.7367618","35.0251218"],["-111.7369897","35.0250481"],["-111.7372159","35.0250345"],["-111.7374815","35.0251101"],["-111.7377498","35.0251974"],["-111.7379998","35.0252219"],["-111.7384911","35.0251479"],["-111.7387613","35.0251121"],["-111.7390136","35.0251389"],["-111.7392555","35.0252283"],["-111.7394441","35.0253268"],["-111.7396417","35.0254163"],["-111.7398285","35.0254607"],["-111.7399426","35.0254729"],["-111.740071","35.0254752"],["-111.7402115","35.0254629"],["-111.7403052","35.0254509"],["-111.7404019","35.0254221"],["-111.7404925","35.0253853"],["-111.7405838","35.0253389"],["-111.7406907","35.0252804"],["-111.7408251","35.0251885"],["-111.7409059","35.0251488"],["-111.7409977","35.0251146"],["-111.7411205","35.025114"],["-111.7411968","35.0251318"],["-111.7412816","35.0251717"],["-111.7413289","35.0252167"],["-111.7413543","35.0252697"],["-111.7413634","35.0253208"],["-111.7413674","35.0253815"],["-111.7413595","35.0254288"],["-111.7413401","35.0254724"],["-111.741265","35.0255474"],["-111.7411866","35.0255939"],["-111.741086","35.0256241"],["-111.740924","35.025642"],["-111.7401347","35.0256769"],["-111.7399197","35.0256926"],["-111.7396966","35.0257081"],["-111.739556","35.025697"],["-111.7394386","35.0256811"],["-111.7393413","35.0256621"],["-111.7392402","35.0256414"],["-111.7391092","35.0256251"],["-111.7390176","35.0256238"],["-111.7387924","35.0256514"],["-111.7385639","35.0256783"],["-111.7383004","35.0257101"],["-111.7381009","35.025734"],["-111.7379556","35.0257784"],["-111.7378563","35.0258532"],["-111.7377933","35.0259196"],["-111.7377454","35.0259918"],["-111.7377204","35.0260757"],["-111.7377021","35.0261588"],["-111.7377075","35.0263273"],["-111.7377643","35.0268225"],["-111.7377641","35.0268995"],["-111.7377477","35.0269699"],["-111.7377154","35.0270108"],["-111.7376031","35.0271169"],["-111.7374946","35.0272272"],["-111.7374582","35.0272879"],["-111.7374433","35.0273362"],["-111.7374389","35.0273922"],["-111.7374505","35.0274476"],["-111.7374924","35.0275125"],["-111.7375324","35.0275499"],["-111.7375886","35.0275787"],["-111.7376512","35.0276042"],["-111.7377121","35.0276175"],["-111.7377624","35.0276178"],["-111.7378158","35.027613"],["-111.7378892","35.0275902"],["-111.7379328","35.0275694"],["-111.7379655","35.0275381"],["-111.738006","35.0274724"],["-111.7380301","35.0274067"],["-111.7380469","35.0273244"],["-111.7380592","35.0270844"],["-111.7380763","35.0268134"],["-111.7381024","35.0265971"],["-111.7381552","35.0264688"],["-111.7382027","35.0263881"],["-111.7382733","35.0262855"],["-111.738405","35.0261893"],["-111.7385496","35.0261101"],["-111.7386895","35.0260644"],["-111.7388474","35.0260298"],["-111.7389772","35.0260149"],["-111.7391148","35.0260214"],["-111.7392453","35.026045"],["-111.7395537","35.0261248"],["-111.7396672","35.0261383"],["-111.7399263","35.0261364"],["-111.7400031","35.0261436"],["-111.7401487","35.0261859"],["-111.7403514","35.0262607"],["-111.7407273","35.0263673"],["-111.7411599","35.0264859"],["-111.7412872","35.0265424"],["-111.7413737","35.0266138"],["-111.7414742","35.0267453"],["-111.7415733","35.0269213"],["-111.741762","35.027358"],["-111.742013","35.0280062"],["-111.7420761","35.0281405"],["-111.7421378","35.0282548"],["-111.742185","35.0283155"],["-111.7422446","35.0283574"],["-111.7423543","35.028402"],["-111.7424616","35.0284273"],["-111.7425874","35.02845"],["-111.7427123","35.0284715"],["-111.7428071","35.0285092"],["-111.7428711","35.0285806"],["-111.7429054","35.0286587"],["-111.7429102","35.0286974"],["-111.7429034","35.0287327"],["-111.7428942","35.0287718"],["-111.7428715","35.0288178"],["-111.7428345","35.028852"],["-111.7427952","35.0288789"],["-111.7427412","35.0289025"],["-111.7426781","35.0289141"],["-111.7426107","35.0289224"],["-111.7425567","35.0289208"],["-111.7424468","35.0288938"],["-111.7422773","35.0288233"],["-111.7421353","35.0287431"],["-111.7420268","35.0286636"],["-111.7419286","35.0285758"],["-111.7418563","35.0284722"],["-111.7417572","35.0283192"],["-111.7416525","35.0280976"],["-111.7415383","35.0278985"],["-111.7413999","35.0277117"],["-111.7412768","35.0275288"],["-111.7411841","35.0273766"],["-111.7410503","35.0271156"],["-111.7409861","35.0270045"],["-111.7409129","35.0269294"],["-111.7408201","35.0268809"],["-111.7407051","35.0268416"],["-111.740339","35.0267798"],["-111.7400443","35.0266754"],["-111.7399213","35.0266571"],["-111.7398419","35.0266592"],["-111.7397362","35.0266773"],["-111.7396642","35.0266986"],["-111.7396074","35.0267264"],["-111.7395558","35.0267649"],["-111.7394875","35.0268317"],["-111.7394344","35.0269089"],["-111.7393411","35.0270903"],["-111.7392919","35.0272041"],["-111.7392655","35.0272933"],["-111.7392407","35.0273725"],["-111.7392318","35.0274414"],["-111.7392232","35.0275116"],["-111.7392324","35.0275827"],["-111.7392505","35.0276395"],["-111.7392784","35.0277019"],["-111.7393386","35.0277936"],["-111.7394718","35.0279004"],["-111.7398271","35.0280977"],["-111.7400644","35.0281958"],["-111.7402026","35.0282518"],["-111.7402782","35.0282764"],["-111.7403619","35.0283035"],["-111.7404662","35.02833"],["-111.7405869","35.0283561"],["-111.7407113","35.028386"],["-111.7408287","35.0284284"],["-111.7410277","35.0285682"],["-111.7411649","35.0286905"],["-111.7412726","35.0287931"],["-111.7414396","35.0289793"],["-111.7414802","35.0290348"],["-111.7415085","35.0290893"],["-111.7415234","35.0291541"],["-111.7415285","35.0292171"],["-111.7415303","35.0292668"],["-111.7415188","35.0293156"],["-111.7415064","35.0293605"],["-111.7414851","35.0294163"],["-111.7414626","35.0294627"],["-111.7414254","35.0295225"],["-111.7413826","35.0295915"],["-111.7413538","35.0296496"],["-111.7413275","35.0296992"],["-111.7413033","35.0297504"],["-111.7412851","35.0298062"],["-111.7412449","35.0299019"],["-111.7412017","35.0299865"],["-111.741143","35.0300742"],["-111.7410658","35.0301443"],["-111.7410046","35.0301807"],["-111.7409251","35.0302048"],["-111.7408284","35.0302054"],["-111.7407244","35.0301743"],["-111.740639","35.0301124"],["-111.7405746","35.0300414"],["-111.7405361","35.0299675"],["-111.7405011","35.0298906"],["-111.7404595","35.0297935"],["-111.7404091","35.0297049"],["-111.7403696","35.0296483"],["-111.740322","35.0296043"],["-111.7402793","35.0295644"],["-111.7402248","35.0295246"],["-111.740181","35.0294942"],["-111.7401189","35.0294669"],["-111.7400371","35.0294415"],["-111.7399356","35.0294264"],["-111.7396424","35.029423"],["-111.7384144","35.0295432"],["-111.7375083","35.029547"],["-111.7367395","35.0295537"],["-111.7354318","35.0295661"],["-111.7349983","35.0296261"],["-111.7347924","35.0297116"],["-111.7345587","35.0298377"],["-111.7343114","35.030049"],["-111.7341641","35.0302157"],["-111.7340411","35.0304422"],["-111.7339719","35.0306742"],["-111.7339456","35.0308698"],["-111.7339983","35.0312373"],["-111.7341142","35.0319288"],["-111.7342362","35.0325761"],["-111.734308","35.0331423"],["-111.7343778","35.0337364"],["-111.7343921","35.0342143"],["-111.7343264","35.0345983"],["-111.7342282","35.0350101"],["-111.7340304","35.0355063"],["-111.7337895","35.0360548"],["-111.7334884","35.0368549"],["-111.73336","35.0373979"],["-111.7333241","35.0380643"],["-111.733357","35.0385191"],["-111.7334612","35.0391267"],["-111.7337713","35.040285"],["-111.7338204","35.0406109"],["-111.733832","35.0411128"],["-111.7334828","35.0456468"],["-111.7333737","35.0465688"],["-111.7332813","35.0476098"],["-111.7330982","35.0498526"],["-111.7329472","35.0515221"],["-111.7327564","35.0539148"],["-111.7325331","35.0564858"],["-111.7323962","35.0579944"],["-111.7323672","35.05865"],["-111.7324068","35.0595805"],["-111.732441","35.0599828"],["-111.7325523","35.0607431"],["-111.7327059","35.0616084"],["-111.7329981","35.0631967"],["-111.7330921","35.0638482"],["-111.7331245","35.0642749"],["-111.7331103","35.0647378"],["-111.7328284","35.0661926"],["-111.732422","35.067449"],["-111.7321878","35.068356"],["-111.7318906","35.0694976"],["-111.7317323","35.0700403"],["-111.7313089","35.0717913"],["-111.730939","35.0732279"],["-111.7304353","35.0751302"],["-111.7303081","35.0756635"],["-111.7301262","35.0766571"],["-111.7295684","35.0814045"],["-111.7295307","35.0819666"],["-111.7295192","35.0824542"],["-111.7295404","35.0829847"],["-111.7295966","35.0836141"],["-111.7296592","35.0840779"],["-111.7297394","35.0845236"],["-111.729876","35.0851292"],["-111.7307501","35.0882311"],["-111.7309459","35.0889248"],["-111.7314721","35.090748"],["-111.7324929","35.0942952"],["-111.7326682","35.094934"],["-111.7328982","35.0957293"],["-111.7330096","35.0961845"],["-111.733098","35.0967979"],["-111.7330671","35.0973308"],["-111.7329673","35.097744"],["-111.732842","35.09815"],["-111.7326733","35.0985335"],["-111.7324625","35.0988597"],["-111.7322689","35.0991274"],["-111.7320273","35.0993822"],["-111.7315264","35.0998896"],["-111.7251835","35.1058725"],["-111.7239548","35.1069911"],["-111.7232968","35.1076349"],["-111.7228159","35.1080927"],["-111.7224211","35.1083615"],["-111.7220451","35.1085602"],["-111.7213602","35.1088391"],["-111.7209215","35.1089962"],["-111.7201413","35.1091529"],["-111.7193515","35.1092384"],["-111.7185726","35.1093884"],["-111.717947","35.109602"],["-111.7176999","35.1096732"],["-111.7169976","35.1100141"],["-111.7167651","35.1101332"],["-111.7162804","35.1104386"],["-111.7157869","35.1108197"],["-111.715147","35.1114697"],["-111.7143218","35.1124907"],["-111.7135023","35.1135069"],["-111.712603","35.1145927"],["-111.7116894","35.1157874"],["-111.7091173","35.1189811"],["-111.7085613","35.1196016"],["-111.7081104","35.119984"],["-111.7076776","35.1202715"],["-111.7072331","35.1205357"],["-111.7067728","35.1207557"],["-111.7058218","35.1210969"],["-111.7050581","35.1212909"],["-111.7032676","35.1216565"],["-111.7011454","35.1220699"],["-111.6997608","35.1223569"],["-111.6984194","35.122632"],["-111.6974789","35.1228866"],["-111.6967003","35.1231712"],["-111.6959454","35.1235139"],["-111.695307","35.1238522"],["-111.6946558","35.1242768"],["-111.6938625","35.1248784"],["-111.6934032","35.1253108"],["-111.6928874","35.1258318"],["-111.692693","35.1260612"],["-111.6923108","35.1265894"],["-111.6910903","35.128518"],["-111.6902809","35.1297699"],["-111.6900265","35.1301161"],["-111.6897756","35.1304381"],["-111.6893717","35.1309384"],["-111.6886217","35.1317439"],["-111.687272","35.1331171"],["-111.6869618","35.1334701"],["-111.686752","35.1337611"],["-111.6866209","35.1339723"],["-111.686517","35.1341626"],["-111.6864277","35.1343362"],["-111.6863501","35.134546"],["-111.6862524","35.1348288"],["-111.6861846","35.1350503"],["-111.6861429","35.1352803"],["-111.6861023","35.1355809"],["-111.686085","35.1359118"],["-111.6861077","35.1362717"],["-111.6861563","35.1366187"],["-111.6862292","35.136922"],["-111.6863078","35.1371719"],["-111.6863772","35.1373485"],["-111.6864714","35.1375578"],["-111.6868209","35.1383203"],["-111.6868679","35.1384486"],["-111.6868884","35.1385181"],["-111.6868927","35.1386164"],["-111.6869117","35.138724"],["-111.6869285","35.1388316"],["-111.6869386","35.1389685"],["-111.6869431","35.1390974"],["-111.6869404","35.1392191"],["-111.6869487","35.1393923"],["-111.6869667","35.1395213"],["-111.6869692","35.1395997"],["-111.6869559","35.1396576"],["-111.6869193","35.139733"],["-111.6868838","35.139791"],["-111.6868769","35.139796"],["-111.6868036","35.1398292"],["-111.6867078","35.1398577"],["-111.686597","35.139879"],["-111.6864689","35.1398873"],["-111.6860975","35.1398779"],["-111.6859289","35.1398446"],["-111.6857835","35.1397536"],["-111.6857661","35.139744"],["-111.6857421","35.1397334"],["-111.6856583","35.1397125"],["-111.6855686","35.1397183"],["-111.6854884","35.1397411"],["-111.6853599","35.139755"],["-111.6850042","35.1397579"],["-111.6844659","35.1397084"],["-111.6834842","35.1396116"],["-111.6831926","35.1396029"],["-111.6831836","35.1398875"],["-111.6832064","35.1402162"],["-111.6832609","35.1405051"],["-111.683686","35.1417275"],["-111.6837674","35.142108"],["-111.6838163","35.1424383"],["-111.6838287","35.1427237"],["-111.6838232","35.1430019"],["-111.6837834","35.1434054"],["-111.6837247","35.1437068"],["-111.6835506","35.1442634"],["-111.682938","35.14604"],["-111.6826086","35.147051"],["-111.6802513","35.1533462"],["-111.6800201","35.1538915"],["-111.6797319","35.1545374"],["-111.6795045","35.1550171"],["-111.6793315","35.1553627"],["-111.6791351","35.15574"],["-111.6786467","35.156636"],["-111.6779109","35.1578497"],["-111.6769169","35.1593192"],["-111.6765426","35.1598289"],["-111.6757714","35.1608126"],["-111.6749451","35.1617881"],["-111.6740975","35.1627121"],["-111.6736699","35.1631457"],["-111.6726351","35.1641491"],["-111.6710286","35.1655158"],["-111.6705472","35.165907"],["-111.6700667","35.1662644"],["-111.669635","35.1665688"],["-111.669243","35.1668289"],["-111.6684895","35.1672914"],["-111.6679086","35.1676159"],["-111.6675283","35.167818"],["-111.6673698","35.1679129"],["-111.6649387","35.1690903"],["-111.6643647","35.1694109"],["-111.6641331","35.1695567"],["-111.6639421","35.1696892"],["-111.6637677","35.169815"],["-111.6634827","35.170056"],["-111.6632291","35.1702929"],["-111.6629388","35.1705863"],["-111.6627413","35.1708238"],["-111.6625769","35.1710338"],["-111.6622856","35.1714501"],["-111.6620569","35.1718706"],["-111.661854","35.1723318"],["-111.6617557","35.1724632"],["-111.6614483","35.1731554"],["-111.6614317","35.173186"],["-111.661408","35.1732201"],["-111.6613679","35.1732702"],["-111.6613082","35.1733338"],["-111.6612341","35.1734004"],["-111.6611395","35.173469"],["-111.6610248","35.1735322"],["-111.6608912","35.1735852"],["-111.660736","35.1736232"],["-111.6605617","35.1736376"],["-111.6603899","35.1736297"],["-111.6602337","35.1736017"],["-111.6600967","35.1735578"],["-111.659981","35.1735045"],["-111.6598861","35.1734467"],["-111.6598055","35.1733867"],["-111.6597442","35.1733321"],["-111.6597003","35.1732871"],["-111.6596657","35.1732447"],["-111.6596575","35.1732334"],["-111.6596423","35.1732103"],["-111.6596192","35.1731705"],["-111.6595939","35.1731208"],["-111.6595684","35.1730569"],["-111.6595461","35.172981"],["-111.6595298","35.1728975"],["-111.6595238","35.1728047"],["-111.6595311","35.1727024"],["-111.6595548","35.172597"],["-111.6595966","35.1724929"],["-111.6596541","35.1724014"],["-111.6597234","35.1723208"],["-111.6597972","35.1722527"],["-111.6598746","35.1721956"],["-111.6599445","35.1721512"],["-111.6600099","35.1721157"],["-111.6600615","35.1720907"],["-111.6600969","35.1720749"],["-111.6601119","35.17207"],["-111.6601223","35.1720657"],["-111.6601506","35.1720572"],["-111.6601949","35.1720453"],["-111.6602487","35.1720323"],["-111.6603198","35.1720196"],["-111.6604052","35.1720088"],["-111.6605017","35.1720018"],["-111.6606095","35.1720004"],["-111.660728","35.1720092"],["-111.6608608","35.1720273"],["-111.6610013","35.1720477"],["-111.6612169","35.1720566"],["-111.6617305","35.1721574"],["-111.6623985","35.1723098"],["-111.663149","35.1725123"],["-111.6638655","35.1727234"],["-111.6644561","35.172931"],["-111.6655831","35.1733692"],["-111.6662283","35.1736461"],["-111.6675264","35.1742315"],["-111.6689889","35.1748963"],["-111.6706003","35.175628"],["-111.6711818","35.1758978"],["-111.6726248","35.1765552"],["-111.6741243","35.1771811"],["-111.6755381","35.1777062"],["-111.6776103","35.1783678"],["-111.6801245","35.1790396"],["-111.6903223","35.1812091"],["-111.694544","35.1820961"],["-111.7016832","35.1836242"],["-111.7036667","35.1841106"],["-111.7307148","35.1925053"],["-111.7325748","35.1930355"],["-111.7334338","35.1932988"],["-111.7342521","35.1936018"],["-111.7350503","35.1938973"],["-111.7359342","35.1941743"],["-111.7367101","35.1944551"],["-111.7372826","35.1947251"],["-111.7377955","35.1950044"],["-111.7383045","35.1953746"],["-111.739135","35.1960053"],["-111.7399409","35.1965275"],["-111.7408827","35.1970684"],["-111.7419157","35.1975641"],["-111.7432023","35.1980762"],["-111.7439597","35.1983328"],["-111.74478","35.1985588"],["-111.746238","35.1988841"],["-111.7482704","35.1991068"],["-111.7500362","35.1992891"],["-111.7521942","35.1995401"],["-111.7535391","35.1997988"],["-111.7550865","35.2001979"],["-111.763746","35.2029702"],["-111.7655754","35.2036039"],["-111.7665022","35.2040221"],["-111.7675328","35.2046146"],["-111.768411","35.2052449"],["-111.7692449","35.2059771"],["-111.769932","35.2067173"],["-111.7704472","35.2074235"],["-111.7716694","35.2093898"],["-111.7721831","35.2101716"],["-111.7727883","35.210889"],["-111.7733935","35.2114403"],["-111.7740959","35.2119894"],["-111.7749796","35.2125649"],["-111.7760352","35.2130948"],["-111.7773772","35.2135905"],["-111.7811251","35.214823"],["-111.7824706","35.215278"],["-111.7834378","35.2156442"],["-111.7847465","35.2162267"],["-111.7856295","35.2166854"],["-111.7865081","35.2172103"],["-111.7873629","35.2177639"],["-111.7883783","35.2185288"],["-111.7904176","35.2201399"],["-111.792076","35.2213283"],["-111.7940142","35.2226103"],["-111.7957446","35.223656"],["-111.7973564","35.224538"],["-111.8048256","35.228113"],["-111.8402593","35.2448528"],["-111.8420379","35.2455952"],["-111.8440841","35.2463876"],["-111.8459405","35.2470041"],["-111.847983","35.2476095"],["-111.8498204","35.2480793"],["-111.8518484","35.2485266"],["-111.8538026","35.2488774"],["-111.855764","35.2491693"],["-111.8577084","35.2493899"],["-111.8596597","35.2495356"],["-111.8614527","35.2496195"],["-111.8631961","35.2496552"],["-111.8651177","35.2496115"],["-111.8669996","35.2495197"],["-111.8691163","35.2493384"],["-111.8711196","35.2491003"],["-111.8731238","35.2487846"],["-111.8806102","35.2474258"],["-111.8819941","35.2472626"],["-111.8829576","35.2472205"],["-111.8839077","35.247206"],["-111.8851111","35.2472497"],["-111.8868987","35.2474306"],["-111.8880656","35.2476165"],["-111.8889618","35.2478004"],["-111.8898505","35.2480084"],["-111.8909099","35.248335"],["-111.8919364","35.2487113"],["-111.8931663","35.2492244"],["-111.8953442","35.2502688"],["-111.8972328","35.2511593"],["-111.898509","35.2516614"],["-111.8998516","35.2520605"],["-111.9009791","35.2523362"],["-111.9022468","35.2525918"],["-111.9034757","35.2527571"],["-111.9049942","35.2528707"],["-111.9068594","35.2529824"],["-111.9084597","35.2531232"],["-111.9098248","35.2533027"],["-111.9111293","35.2535314"],["-111.9134836","35.2541"],["-111.9219384","35.2561852"],["-111.9246003","35.2568225"],["-111.9258248","35.2570349"],["-111.9269619","35.2571789"],["-111.928144","35.2572622"],["-111.9294337","35.2573016"],["-111.9307716","35.2572517"],["-111.9320199","35.2571613"],["-111.9330488","35.2570185"],["-111.9340362","35.2568425"],["-111.9352313","35.2565938"],["-111.9446564","35.2543196"],["-111.9456828","35.2540855"],["-111.9680044","35.2488297"],["-111.9694119","35.2485623"],["-111.9709156","35.2483179"],["-111.97221","35.2481545"],["-111.9734475","35.2480281"],["-111.9756112","35.2478849"],["-111.9766342","35.2478613"],["-111.9777688","35.2478467"],["-111.9801518","35.2479297"],["-111.98154","35.248036"],["-111.9830426","35.2481952"],["-111.9857372","35.2486062"],["-111.9872928","35.2489174"],["-111.9887392","35.2492544"],["-111.9902356","35.2496742"],["-111.992695","35.2504817"],["-111.9981716","35.252406"],["-112.0025556","35.2536038"],["-112.0466915","35.2641653"],["-112.0483896","35.2645143"],["-112.0492573","35.2646608"],["-112.0508293","35.2648658"],["-112.0533404","35.2650799"],["-112.054314","35.2651103"],["-112.056151","35.2651305"],["-112.0574013","35.2650692"],["-112.058662","35.2649689"],["-112.0599354","35.2648344"],["-112.0609608","35.2647101"],["-112.0620536","35.2645397"],["-112.0629925","35.2643645"],["-112.064031","35.2641463"],["-112.065159","35.2638776"],["-112.0663345","35.2635483"],["-112.0675828","35.2631504"],["-112.0689403","35.2626754"],["-112.0704388","35.262063"],["-112.0758156","35.2597135"],["-112.0767042","35.2593819"],["-112.0775994","35.2590822"],["-112.0785976","35.2587938"],["-112.0796208","35.2585629"],["-112.0806035","35.2583676"],["-112.0815272","35.2582447"],["-112.0826183","35.2581323"],["-112.0835722","35.2580742"],["-112.0846395","35.258063"],["-112.0955269","35.2585661"],["-112.0973493","35.2586113"],["-112.0986829","35.2586203"],["-112.1192847","35.2583777"],["-112.1231157","35.2583784"],["-112.1258868","35.258328"],["-112.1404786","35.2581622"],["-112.1418932","35.2582367"],["-112.142949","35.2583274"],["-112.143867","35.2584512"],["-112.1445977","35.2585674"],["-112.1453328","35.2587108"],["-112.1461617","35.2589102"],["-112.1475552","35.2593404"],["-112.1584622","35.2633302"],["-112.159428","35.2635813"],["-112.1605159","35.2638072"],["-112.161655","35.2640082"],["-112.1628077","35.2641386"],["-112.1642732","35.2642352"],["-112.1661132","35.2642543"],["-112.1799526","35.2640544"],["-112.1809318","35.2639605"],["-112.1820672","35.2638049"],["-112.1831884","35.2635714"],["-112.1840534","35.2633495"],["-112.184781","35.263118"],["-112.1854123","35.2628911"],["-112.1860258","35.2626363"],["-112.1865775","35.2623917"],["-112.1938281","35.2588242"],["-112.1973857","35.2570725"],["-112.1992811","35.2561418"],["-112.2006064","35.255487"],["-112.201755","35.2549039"],["-112.2039067","35.2537668"],["-112.20587","35.2524939"],["-112.2079562","35.2509244"],["-112.209447","35.2497743"],["-112.2101708","35.2491971"],["-112.2129199","35.2470037"],["-112.2136192","35.246407"],["-112.214359","35.2457197"],["-112.2150707","35.2449866"],["-112.2154023","35.2446005"],["-112.2158117","35.2440958"],["-112.2163065","35.2434385"],["-112.216865","35.2426291"],["-112.2182315","35.2408231"],["-112.2185192","35.2404802"],["-112.2188496","35.2401465"],["-112.2193044","35.2397359"],["-112.2200942","35.2390507"],["-112.2206263","35.2386878"],["-112.2216166","35.2380753"],["-112.2228797","35.2374332"],["-112.2268636","35.2357577"],["-112.2275982","35.2354407"],["-112.2281617","35.2351913"],["-112.2288743","35.2348121"],["-112.2295391","35.2344448"],["-112.2301631","35.2340516"],["-112.2309035","35.2335543"],["-112.2316543","35.2329931"],["-112.2324698","35.2323095"],["-112.2330215","35.2317909"],["-112.2336631","35.231136"],["-112.2343262","35.2303642"],["-112.2353139","35.2290658"],["-112.2359318","35.2281116"],["-112.2363568","35.2275292"],["-112.2366919","35.2271336"],["-112.2370931","35.2267236"],["-112.2375574","35.2263117"],["-112.2381069","35.2258912"],["-112.2386869","35.2255151"],["-112.2394686","35.2250757"],["-112.2402207","35.2247575"],["-112.2408905","35.22452"],["-112.241507","35.2243312"],["-112.2421694","35.2241769"],["-112.2432908","35.2240165"],["-112.2445378","35.2239709"],["-112.2455119","35.2240304"],["-112.2467056","35.2242008"],["-112.2480202","35.2244005"],["-112.2491198","35.2245366"],["-112.2499396","35.2245882"],["-112.250754","35.2245646"],["-112.2514988","35.2244956"],["-112.2523074","35.2243565"],["-112.2530821","35.2241735"],["-112.2540352","35.2238622"],["-112.2557109","35.2232722"],["-112.2566758","35.2230149"],["-112.2575533","35.2228504"],["-112.2588369","35.2227102"],["-112.2647806","35.2223295"],["-112.2669193","35.2222422"],["-112.2682451","35.2222566"],["-112.2693889","35.2222905"],["-112.2703246","35.2222994"],["-112.2711508","35.2222615"],["-112.2719942","35.2221814"],["-112.2730019","35.2220288"],["-112.2740229","35.2218047"],["-112.2751475","35.2214746"],["-112.2759966","35.2211633"],["-112.2775238","35.2205509"],["-112.2784267","35.2202032"],["-112.2791093","35.2200029"],["-112.2798968","35.2198202"],["-112.2805792","35.2196763"],["-112.2811944","35.2195854"],["-112.2818394","35.2195296"],["-112.2825548","35.2195082"],["-112.2834463","35.2195302"],["-112.2846683","35.219645"],["-112.2855495","35.2198025"],["-112.2866755","35.2200635"],["-112.2885355","35.2206707"],["-112.2907369","35.2213822"],["-112.2924389","35.2218243"],["-112.2938906","35.2220491"],["-112.2952159","35.2220278"],["-112.2965552","35.2218761"],["-112.297677","35.2216588"],["-112.2986109","35.2213993"],["-112.2995397","35.2211001"],["-112.3003243","35.2208279"],["-112.3012436","35.2205446"],["-112.3023449","35.2202582"],["-112.3037015","35.2200366"],["-112.3051264","35.2199589"],["-112.3062689","35.2199876"],["-112.3073053","35.2200883"],["-112.3090109","35.2203917"],["-112.3120854","35.2210647"],["-112.3154487","35.2217912"],["-112.3211742","35.2230115"],["-112.3222997","35.2231895"],["-112.3233003","35.2232594"],["-112.3241016","35.2232957"],["-112.3249427","35.2232545"],["-112.3258687","35.2231788"],["-112.3268374","35.2230458"],["-112.3304147","35.2224348"],["-112.3317276","35.2221865"],["-112.3325559","35.2219695"],["-112.3334702","35.2216624"],["-112.3346843","35.2211692"],["-112.3355463","35.2207403"],["-112.3359156","35.2205509"],["-112.3359601","35.2205279"],["-112.3363893","35.2203051"],["-112.336768","35.2201133"],["-112.3374503","35.2197898"],["-112.3381883","35.2194862"],["-112.3389155","35.2192293"],["-112.3395705","35.2190279"],["-112.3403655","35.2188603"],["-112.3428348","35.2184329"],["-112.3454921","35.217971"],["-112.3475852","35.2175671"],["-112.3486185","35.2172929"],["-112.3498787","35.2168421"],["-112.3514222","35.2162482"],["-112.3525822","35.2158357"],["-112.3534842","35.2155554"],["-112.3541381","35.2153987"],["-112.3550926","35.2152202"],["-112.355813","35.2151217"],["-112.3565581","35.2150374"],["-112.3573505","35.2149846"],["-112.3583342","35.2149642"],["-112.3591762","35.2150009"],["-112.3600879","35.2150773"],["-112.3610189","35.2151958"],["-112.3627702","35.2155581"],["-112.3688073","35.2169166"],["-112.3696385","35.2170474"],["-112.3706407","35.2171377"],["-112.3714743","35.2171806"],["-112.3722466","35.2171586"],["-112.3732196","35.2170847"],["-112.3764465","35.2167005"],["-112.3799692","35.2162992"],["-112.3809128","35.2162242"],["-112.3876165","35.2159981"],["-112.3884066","35.2159988"],["-112.389108","35.2160259"],["-112.389911","35.2160894"],["-112.3908267","35.2162109"],["-112.3931488","35.216619"],["-112.394095","35.2167644"],["-112.3954136","35.2168373"],["-112.3964487","35.2168124"],["-112.3973502","35.2167411"],["-112.3980065","35.2166486"],["-112.3985846","35.2165425"],["-112.3993142","35.2163874"],["-112.4000337","35.2161947"],["-112.4007582","35.2159708"],["-112.403605","35.2148382"],["-112.4050959","35.2142561"],["-112.4061485","35.2139488"],["-112.4071412","35.2137205"],["-112.4082269","35.2135589"],["-112.4092082","35.213468"],["-112.4100269","35.2134339"],["-112.4109615","35.2134618"],["-112.4134313","35.2136477"],["-112.4222301","35.2143853"],["-112.4236496","35.214494"],["-112.4261467","35.2145953"],["-112.4286456","35.2146953"],["-112.4294222","35.2147706"],["-112.4301952","35.2148666"],["-112.4309951","35.2149962"],["-112.4318201","35.2151644"],["-112.4327911","35.2154096"],["-112.4360578","35.2163824"],["-112.4376786","35.2168796"],["-112.4388559","35.2172408"],["-112.442207","35.218241"],["-112.4477017","35.2194594"],["-112.4567349","35.2201463"],["-112.4597565","35.2203656"],["-112.4610766","35.2205338"],["-112.4640114","35.2210075"],["-112.4644763","35.2210755"],["-112.4661588","35.2213978"],["-112.4673936","35.2216158"],["-112.468286","35.2217132"],["-112.4690707","35.2217681"],["-112.4698581","35.2217924"],["-112.4707574","35.2217724"],["-112.4718232","35.2216951"],["-112.4730218","35.221529"],["-112.4745825","35.2211848"],["-112.4754541","35.2209409"],["-112.4761642","35.2207376"],["-112.4780876","35.2202079"],["-112.480166","35.2197605"],["-112.4827246","35.2193879"],["-112.4838785","35.2192781"],["-112.4851591","35.2192063"],["-112.4868305","35.2191693"],["-112.488619","35.2192447"],["-112.4902416","35.2193637"],["-112.4920529","35.2196135"],["-112.4935429","35.2198877"],["-112.4948088","35.2201168"],["-112.4979149","35.2205754"],["-112.4990646","35.2206873"],["-112.5011969","35.2208146"],["-112.5031849","35.2208876"],["-112.522798","35.2211281"],["-112.5278628","35.2211243"],["-112.5415432","35.221182"],["-112.5422005","35.2212123"],["-112.542844","35.2212686"],["-112.5438797","35.2214323"],["-112.5913906","35.2306297"],["-112.6488138","35.2373784"],["-112.6515312","35.2378211"],["-112.6570932","35.2389734"],["-112.6604531","35.2397933"],["-112.6635125","35.2406157"],["-112.6678187","35.2419737"],["-112.6770689","35.2453255"],["-112.7118972","35.2581095"],["-112.7137221","35.2588224"],["-112.7151918","35.2595024"],["-112.7178042","35.2609378"],["-112.7199261","35.2622475"],["-112.7212677","35.2632283"],["-112.7224802","35.2641805"],["-112.7269956","35.2681128"],["-112.7287352","35.269336"],["-112.7301589","35.2701503"],["-112.7311581","35.2706265"],["-112.7322619","35.2711098"],["-112.7332936","35.2714657"],["-112.7344894","35.2718215"],["-112.735414","35.2720678"],["-112.7368814","35.2723321"],["-112.7377805","35.2724541"],["-112.7389113","35.2725576"],["-112.7399322","35.2726113"],["-112.752027","35.2728293"],["-112.753809","35.2728918"],["-112.7552825","35.2730036"],["-112.7566991","35.2731406"],["-112.7597587","35.2735935"],["-112.7618458","35.2740538"],["-112.8132877","35.2886743"],["-112.8159135","35.2895061"],["-112.8182893","35.2903413"],["-112.8197797","35.2909174"],["-112.8212663","35.2915128"],["-112.8243777","35.2928765"],["-112.8261624","35.2937345"],["-112.828466","35.294928"],["-112.8302774","35.2959188"],["-112.8551743","35.3101677"],["-112.8559509","35.3106093"],["-112.8571413","35.3112922"],["-112.8586349","35.3120735"],["-112.8607534","35.3130785"],["-112.8624182","35.3137792"],["-112.8638508","35.3143179"],["-112.8652267","35.3147695"],["-112.8667408","35.3152161"],["-112.8682099","35.3155876"],["-112.8711006","35.3161952"],["-112.9001319","35.321671"],["-112.9115296","35.3228576"],["-112.9169821","35.3230473"],["-112.9205799","35.32313"],["-112.9251219","35.3230211"],["-112.9345538","35.3223278"],["-112.9381656","35.3219144"],["-112.9473479","35.3204216"],["-112.9558095","35.3184293"],["-112.9605566","35.3170704"],["-112.9644299","35.315789"],["-112.9945102","35.3052867"],["-112.9974024","35.3043184"],["-112.9985093","35.3040005"],["-112.9998289","35.3036856"],["-113.0012414","35.3033788"],["-113.0028124","35.3030889"],["-113.0040163","35.3029174"],["-113.0052193","35.3027722"],["-113.006608","35.3026344"],["-113.0085167","35.3025309"],["-113.0115766","35.3024073"],["-113.0136085","35.3023011"],["-113.0146754","35.30219"],["-113.0159652","35.3019903"],["-113.0171468","35.3017378"],["-113.0182365","35.301463"],["-113.0193198","35.301102"],["-113.0204887","35.3006623"],["-113.0215877","35.3001466"],["-113.0228582","35.2995212"],["-113.0243402","35.2985335"],["-113.0287406","35.2953074"],["-113.02971","35.2946256"],["-113.030467","35.2942062"],["-113.0311345","35.2938639"],["-113.0317866","35.2935702"],["-113.0324224","35.2933296"],["-113.0331439","35.2930881"],["-113.0338988","35.292905"],["-113.0347653","35.2927322"],["-113.0358139","35.2925789"],["-113.0365087","35.2925159"],["-113.0736564","35.2920334"],["-113.0751731","35.2919653"],["-113.0770842","35.2918129"],["-113.0788435","35.2915949"],["-113.0808562","35.2912681"],["-113.0822075","35.2909833"],["-113.083808","35.2906006"],["-113.0856357","35.2901115"],["-113.0863898","35.2898788"],["-113.0885617","35.2890998"],["-113.0901406","35.2884612"],["-113.0937399","35.2867943"],["-113.0948354","35.2863483"],["-113.0960129","35.2860336"],["-113.0975249","35.2858282"],["-113.0989259","35.2858171"],["-113.0998486","35.2858895"],["-113.1086056","35.2875529"],["-113.1099802","35.2877024"],["-113.1113715","35.2877823"],["-113.1130182","35.2877372"],["-113.1146844","35.2875564"],["-113.1161939","35.2872882"],["-113.1173709","35.2869896"],["-113.1183406","35.2866835"],["-113.1194593","35.2862685"],["-113.1214812","35.2853564"],["-113.1225606","35.284768"],["-113.1237521","35.2840238"],["-113.1252384","35.2828688"],["-113.1261334","35.2820641"],["-113.1274123","35.2808608"],["-113.1286292","35.2798289"],["-113.1296752","35.2790719"],["-113.1304578","35.2785738"],["-113.1308342","35.2783517"],["-113.1750653","35.2544731"],["-113.1866784","35.2481699"],["-113.1886513","35.2470963"],["-113.2091685","35.2360733"],["-113.2116222","35.23484"],["-113.2129961","35.2342432"],["-113.2146207","35.2336237"],["-113.2349371","35.2265954"],["-113.2368208","35.2257934"],["-113.2384041","35.2250928"],["-113.2398568","35.2243723"],["-113.2643977","35.2109839"],["-113.2659856","35.2102308"],["-113.2668826","35.2098964"],["-113.2679125","35.2095771"],["-113.2691503","35.2092738"],["-113.2699311","35.2091312"],["-113.2708659","35.209011"],["-113.271855","35.2089351"],["-113.272831","35.208903"],["-113.2737323","35.2089382"],["-113.2747279","35.2090172"],["-113.2784749","35.2094578"],["-113.2798703","35.2096067"],["-113.2810816","35.2096858"],["-113.2823313","35.2097199"],["-113.2834551","35.2096973"],["-113.2845807","35.2096359"],["-113.2856905","35.2095414"],["-113.2869062","35.2093911"],["-113.2879653","35.2092059"],["-113.2890363","35.208991"],["-113.2899761","35.2087667"],["-113.2909593","35.2084968"],["-113.2919799","35.2081798"],["-113.2929389","35.2078488"],["-113.2938955","35.2074663"],["-113.2949333","35.2070116"],["-113.2960598","35.2064473"],["-113.2968984","35.2059983"],["-113.2980965","35.2052846"],["-113.2991104","35.2046004"],["-113.3002068","35.203768"],["-113.3017363","35.2025012"],["-113.3020287","35.2022153"],["-113.3026733","35.201479"],["-113.3037349","35.2002755"],["-113.3075267","35.1959537"],["-113.3090474","35.1942656"],["-113.3099488","35.1934544"],["-113.3107036","35.1928745"],["-113.3115402","35.1923259"],["-113.3125424","35.1917484"],["-113.3137078","35.1912152"],["-113.3149298","35.1907635"],["-113.3160041","35.1904314"],["-113.3166874","35.1902471"],["-113.3173144","35.1901196"],["-113.3180315","35.1899989"],["-113.3189139","35.1898842"],["-113.3204652","35.1898052"],["-113.3221814","35.1898713"],["-113.3243788","35.1901652"],["-113.3284148","35.190845"],["-113.3305013","35.1910715"],["-113.3333211","35.1912508"],["-113.3382983","35.1912638"],["-113.3653234","35.1909971"],["-113.3654834","35.1909955"],["-113.3919149","35.1907214"],["-113.3950585","35.1908074"],["-113.3967186","35.1909392"],["-113.3980603","35.1911355"],["-113.3993211","35.1913649"],["-113.4004797","35.1916239"],["-113.401894","35.1920059"],["-113.4039384","35.1927022"],["-113.4083828","35.1944593"],["-113.4098006","35.1948804"],["-113.4106509","35.1949909"],["-113.4113878","35.1950015"],["-113.4120617","35.1949654"],["-113.4133073","35.1947277"],["-113.4139835","35.1944819"],["-113.4146378","35.1941877"],["-113.4157456","35.1934701"],["-113.4189975","35.1910866"],["-113.4199277","35.1905182"],["-113.4205084","35.1902383"],["-113.4211275","35.1900386"],["-113.4219066","35.1898633"],["-113.4226381","35.1897698"],["-113.4233191","35.1897389"],["-113.4242419","35.1898026"],["-113.4262959","35.1900299"],["-113.4284576","35.1902913"],["-113.4307449","35.1905309"],["-113.4353586","35.1910109"],["-113.4366282","35.1910907"],["-113.4376821","35.1910482"],["-113.4386914","35.1909618"],["-113.4398003","35.1907719"],["-113.4407696","35.1905505"],["-113.4416417","35.1902527"],["-113.4424001","35.1899483"],["-113.4499797","35.1866824"],["-113.4509581","35.1863275"],["-113.4521501","35.1859392"],["-113.4533677","35.1855835"],["-113.4546341","35.1852539"],["-113.4562088","35.1849356"],["-113.4579577","35.1846708"],["-113.4593488","35.1845088"],["-113.4614018","35.1843993"],["-113.4628306","35.1843725"],["-113.4652726","35.1844873"],["-113.4656951","35.1844922"],["-113.4664148","35.1844634"],["-113.4667636","35.1844317"],["-113.467193","35.1843709"],["-113.4678823","35.1842097"],["-113.4682136","35.1840967"],["-113.4686227","35.1839408"],["-113.4692432","35.1836561"],["-113.4698569","35.1833392"],["-113.4703129","35.1830966"],["-113.4718267","35.1823172"],["-113.4725144","35.1819888"],["-113.4731416","35.1817286"],["-113.4735123","35.1815812"],["-113.4741856","35.181331"],["-113.4759875","35.1807351"],["-113.4771955","35.1804071"],["-113.4789212","35.1800309"],["-113.4835577","35.1792023"],["-113.4849224","35.1790165"],["-113.4860443","35.1789473"],["-113.4875869","35.1789621"],["-113.4921522","35.1790835"],["-113.4932842","35.1790294"],["-113.4941214","35.1789113"],["-113.4949089","35.1787037"],["-113.4955494","35.1784495"],["-113.496604","35.1778909"],["-113.4980696","35.1770427"],["-113.4999253","35.1759683"],["-113.5017921","35.1749206"],["-113.5025788","35.1745993"],["-113.5031606","35.1744385"],["-113.5038217","35.1743057"],["-113.5046975","35.1741551"],["-113.5057508","35.1739516"],["-113.5064212","35.1737525"],["-113.5070025","35.1735183"],["-113.5075669","35.173225"],["-113.5089047","35.1724263"],["-113.509931","35.1718757"],["-113.5105139","35.1716618"],["-113.5111147","35.1714777"],["-113.5117684","35.171335"],["-113.5123448","35.1712528"],["-113.5129214","35.1711976"],["-113.513507","35.1711832"],["-113.5143662","35.1712228"],["-113.5153008","35.1713673"],["-113.5161624","35.1715021"],["-113.517026","35.1716077"],["-113.517763","35.171671"],["-113.5183985","35.1716818"],["-113.5189912","35.1716602"],["-113.519642","35.171589"],["-113.5204247","35.1714719"],["-113.5215353","35.1711898"],["-113.5226022","35.1708059"],["-113.5237217","35.1702295"],["-113.528264","35.1673786"],["-113.5297916","35.1665411"],["-113.5308945","35.1659569"],["-113.5316658","35.1655329"],["-113.5325185","35.164932"],["-113.5344217","35.1634329"],["-113.5353371","35.1628623"],["-113.5359232","35.1625555"],["-113.5365077","35.1623192"],["-113.5373411","35.1620352"],["-113.5381089","35.1618321"],["-113.538699","35.1617158"],["-113.5392666","35.1616418"],["-113.5398939","35.1616007"],["-113.5412141","35.1615742"],["-113.5433437","35.1615355"],["-113.5441297","35.1614942"],["-113.5451439","35.1613929"],["-113.5463595","35.1612196"],["-113.5562089","35.1592478"],["-113.557356","35.159055"],["-113.5583857","35.1589463"],["-113.5593927","35.1588827"],["-113.5602794","35.1588451"],["-113.5614539","35.1588768"],["-113.5622958","35.1589426"],["-113.5632553","35.1590348"],["-113.5642412","35.1591831"],["-113.5653386","35.1594159"],["-113.5664304","35.1596767"],["-113.5683509","35.1602011"],["-113.5708226","35.1608527"],["-113.5727417","35.1613145"],["-113.5750962","35.1617425"],["-113.5763817","35.1619325"],["-113.5775973","35.1620848"],["-113.57895","35.16221"],["-113.5805168","35.1623136"],["-113.582037","35.1623839"],["-113.58338","35.1624"],["-113.5854488","35.1623459"],["-113.5889069","35.1621093"],["-113.6064114","35.1607539"],["-113.6098642","35.1605774"],["-113.6138026","35.1604723"],["-113.6357358","35.1603202"],["-113.6363382","35.1603235"],["-113.6457251","35.1602843"],["-113.6477467","35.1603811"],["-113.6492031","35.1605215"],["-113.6518672","35.1609727"],["-113.6538791","35.1614219"],["-113.6562739","35.1619095"],["-113.6572469","35.1620802"],["-113.65834","35.1622265"],["-113.6603207","35.1624173"],["-113.6626247","35.1624913"],["-113.6644219","35.1624551"],["-113.6675233","35.1622089"],["-113.6940833","35.1594254"],["-113.6945978","35.1594041"],["-113.6950599","35.1593893"],["-113.6960822","35.1593737"],["-113.6976385","35.1594357"],["-113.6979452","35.1594586"],["-113.698672","35.1595242"],["-113.700453","35.159763"],["-113.7741785","35.1713286"],["-113.7773124","35.1719376"],["-113.7786241","35.1722543"],["-113.7803006","35.1727531"],["-113.781518","35.1731729"],["-113.7828275","35.1736474"],["-113.7842187","35.1742257"],["-113.8223876","35.1912583"],["-113.8245465","35.1920408"],["-113.8272993","35.1928796"],["-113.8291279","35.1933203"],["-113.832776","35.1939534"],["-113.8366041","35.1942851"],["-113.9018993","35.1977131"],["-113.9142121","35.1983931"],["-113.9159092","35.1985561"],["-113.9176018","35.1988005"],["-113.9191427","35.1990668"],["-113.9225446","35.1998443"],["-113.9913571","35.216536"],["-113.9929044","35.2168328"],["-113.9948961","35.2171239"],["-113.9968881","35.2173565"],["-113.9981048","35.2174486"],["-113.9994051","35.2175169"],["-114.0028917","35.2174828"],["-114.0091882","35.2173786"],["-114.0102611","35.2173543"],["-114.0228775","35.2171434"],["-114.0256059","35.2172414"],["-114.0264809","35.2172996"],["-114.0287877","35.2174457"],["-114.0303975","35.2175374"],["-114.0320851","35.2176037"],["-114.0335661","35.2175482"],["-114.0349259","35.217449"],["-114.036495","35.2172626"],["-114.0375478","35.2170913"],["-114.0436025","35.2158041"],["-114.0451995","35.2154105"],["-114.0468497","35.2149332"],["-114.0486218","35.2143607"],["-114.051061","35.2134001"],["-114.0538259","35.2121237"],["-114.0551129","35.2114311"],["-114.0562911","35.2106986"],["-114.0575055","35.2098389"],["-114.0586206","35.2089186"],["-114.0597256","35.2078706"],["-114.0643872","35.2027091"],["-114.065187","35.201802"],["-114.0658596","35.2009631"],["-114.0664048","35.2000123"],["-114.0667862","35.1989642"],["-114.0670155","35.1980169"],["-114.0670628","35.1970997"],["-114.0671186","35.196227"],["-114.0673004","35.1947043"],["-114.0678238","35.1915667"],["-114.0679005","35.1913441"],["-114.0680642","35.1912026"],["-114.0683239","35.1911467"],["-114.0685622","35.1911793"],["-114.068908","35.1912815"],["-114.0696219","35.1915725"],["-114.0699947","35.1917688"],["-114.0702025","35.1918943"],["-114.0707191","35.1922458"],["-114.0712467","35.1926832"],["-114.0725228","35.193824"],["-114.0740845","35.1951991"],["-114.0761555","35.1970703"],["-114.0768188","35.1976463"],["-114.0773373","35.1981134"],["-114.0774701","35.1982822"],["-114.0781879","35.198905"],["-114.0791286","35.1996517"],["-114.0809575","35.2009422"],["-114.0811737","35.201085"],["-114.0814196","35.2012453"],["-114.0816226","35.2013694"],["-114.0818077","35.2014699"],["-114.0822948","35.2017037"],["-114.0826675","35.201855"],["-114.0830666","35.2019998"],["-114.0835196","35.2021465"],["-114.0850953","35.2026366"],["-114.0858287","35.2029545"],["-114.0867789","35.2033934"],["-114.0877028","35.2037932"],["-114.0889527","35.2042126"],["-114.0954076","35.2062314"],["-114.0964434","35.206566"],["-114.0972747","35.206869"],["-114.0989876","35.2075548"],["-114.1000735","35.2079518"],["-114.104216","35.2093592"],["-114.1107738","35.2119642"],["-114.1118217","35.2124909"],["-114.1125949","35.2129506"],["-114.1130777","35.2132804"],["-114.1135408","35.2136681"],["-114.1160024","35.2162483"],["-114.1163108","35.2165177"],["-114.1175345","35.2174071"],["-114.1177568","35.2175502"],["-114.1179868","35.2176827"],["-114.1191271","35.2182466"],["-114.1210602","35.2191771"],["-114.1230034","35.2201452"],["-114.123462","35.2203619"],["-114.1237539","35.2205008"],["-114.1241611","35.2207211"],["-114.1255866","35.2215326"],["-114.1260857","35.2218239"],["-114.127998","35.2232211"],["-114.1334818","35.2273563"],["-114.1341752","35.2279592"],["-114.1346412","35.2284635"],["-114.1351028","35.2290228"],["-114.13581","35.2300717"],["-114.1361317","35.2306242"],["-114.1366354","35.2315058"],["-114.1369963","35.2320805"],["-114.1376724","35.2330862"],["-114.1384458","35.234017"],["-114.1389105","35.2345409"],["-114.1403767","35.2358744"],["-114.1421892","35.2374905"],["-114.1434978","35.2386175"],["-114.1444353","35.2394357"],["-114.145285","35.2402495"],["-114.1467368","35.2418455"],["-114.1476167","35.2429583"],["-114.1504005","35.2468081"],["-114.1521606","35.2492449"],["-114.1891719","35.3002212"],["-114.1928719","35.3053189"],["-114.202687","35.3188575"],["-114.2032967","35.3197004"],["-114.3326935","35.5013975"],["-114.4035976","35.6038197"],["-114.4050171","35.6056804"],["-114.4064313","35.6070089"],["-114.4081219","35.6082227"],["-114.4107569","35.6100803"],["-114.4114695","35.6106497"],["-114.412104","35.6112953"],["-114.4138998","35.6135902"],["-114.4337465","35.6402073"],["-114.4364587","35.6438743"],["-114.4484601","35.659936"],["-114.4496257","35.6613702"],["-114.4511823","35.6628161"],["-114.4537737","35.664556"],["-114.4547757","35.6653064"],["-114.4555163","35.6659576"],["-114.4565431","35.6670082"],["-114.4572305","35.6678642"],["-114.4649948","35.6786852"],["-114.4666158","35.6813893"],["-114.4673366","35.6828467"],["-114.4678009","35.6838947"],["-114.4680554","35.684529"],["-114.4683094","35.6852589"],["-114.4685536","35.6859271"],["-114.4689052","35.6871879"],["-114.4692392","35.688561"],["-114.4695061","35.6897141"],["-114.4698476","35.691038"],["-114.4702922","35.6922217"],["-114.4711493","35.6939165"],["-114.5153387","35.7757238"],["-114.5179174","35.7803566"],["-114.5195366","35.7828347"],["-114.5203751","35.7840083"],["-114.521542","35.7854891"],["-114.5725523","35.8426463"],["-114.5733227","35.8433599"],["-114.5742176","35.844029"],["-114.5751901","35.8446089"],["-114.5762762","35.8451162"],["-114.5779326","35.845688"],["-114.5867755","35.8486364"],["-114.5879191","35.8491268"],["-114.5890009","35.8497486"],["-114.5903764","35.8506772"],["-114.5910931","35.8511879"],["-114.5914599","35.8515188"],["-114.5917934","35.8518887"],["-114.5920827","35.8522906"],["-114.5930155","35.8540236"],["-114.5940556","35.8559603"],["-114.5945137","35.8567543"],["-114.5948008","35.8571099"],["-114.595146","35.8574437"],["-114.595531","35.857742"],["-114.5964613","35.8582939"],["-114.5979113","35.8591559"],["-114.5992988","35.8601267"],["-114.6004911","35.861193"],["-114.6013739","35.8621858"],["-114.6019211","35.8628903"],["-114.6096439","35.8732777"],["-114.6133345","35.8782456"],["-114.6158365","35.8816328"],["-114.6164368","35.8824425"],["-114.6183851","35.885064"],["-114.622908","35.8912173"],["-114.6239956","35.8927238"],["-114.6244007","35.8933691"],["-114.6247426","35.8940309"],["-114.625033","35.8946687"],["-114.6253306","35.8954071"],["-114.6256497","35.8964128"],["-114.6259729","35.8978971"],["-114.6286497","35.9121737"],["-114.6293057","35.9150407"],["-114.6295804","35.9159892"],["-114.630193","35.9178186"],["-114.6339469","35.9281896"],["-114.6347894","35.9302407"],["-114.6354008","35.9314611"],["-114.6361006","35.9327644"],["-114.6460435","35.9479668"],["-114.6464504","35.9485307"],["-114.6469972","35.9492325"],["-114.6478115","35.9501346"],["-114.6487938","35.9510717"],["-114.6495753","35.9517253"],["-114.6501836","35.9521831"],["-114.6510269","35.9527581"],["-114.6617051","35.959553"],["-114.6661125","35.9623515"],["-114.6736935","35.9671442"],["-114.6749334","35.9678805"],["-114.6759221","35.9683713"],["-114.6769831","35.9687779"],["-114.6776978","35.9690175"],["-114.6860019","35.971495"],["-114.6865113","35.9716691"],["-114.6869099","35.9718254"],["-114.6872715","35.9719852"],["-114.6877121","35.9721989"],["-114.688376","35.9725677"],["-114.689881","35.9735936"],["-114.6908811","35.9741954"],["-114.6938721","35.9755888"],["-114.6947385","35.9760816"],["-114.6956838","35.97679"],["-114.6964665","35.9775907"],["-114.6973294","35.9785379"],["-114.6980036","35.9792366"],["-114.6985684","35.979702"],["-114.6991113","35.9800408"],["-114.6996077","35.9803208"],["-114.7049715","35.9828831"],["-114.7063462","35.9834811"],["-114.7083584","35.9841712"],["-114.7099018","35.9846392"],["-114.7108334","35.9849243"],["-114.7112844","35.9850892"],["-114.711738","35.9852826"],["-114.7121992","35.9855229"],["-114.7130891","35.9860785"],["-114.7136341","35.9865447"],["-114.7141807","35.9871085"],["-114.714691","35.9877886"],["-114.7158425","35.9898063"],["-114.7202652","35.9977854"],["-114.720612","35.9984717"],["-114.7216261","36.000668"],["-114.721902","36.0012385"],["-114.7221777","36.0017555"],["-114.7224954","36.0023091"],["-114.7227741","36.00277"],["-114.7234756","36.0038014"],["-114.7238574","36.0043088"],["-114.7244462","36.0050252"],["-114.7253549","36.006065"],["-114.7263026","36.0070546"],["-114.7267747","36.0074708"],["-114.7271672","36.0077913"],["-114.7277296","36.0081876"],["-114.7280658","36.0083885"],["-114.7283823","36.0085696"],["-114.7286431","36.0087084"],["-114.7289305","36.0088536"],["-114.7292534","36.0090042"],["-114.7295759","36.0091366"],["-114.7299097","36.0092604"],["-114.7302768","36.0093848"],["-114.7310253","36.0095998"],["-114.7313807","36.0096824"],["-114.7321474","36.0098124"],["-114.7349176","36.0101729"],["-114.7355283","36.0102645"],["-114.7363445","36.0104325"],["-114.7367563","36.0105407"],["-114.7371566","36.0106655"],["-114.7375572","36.0108095"],["-114.738183","36.0110791"],["-114.7446186","36.0140971"],["-114.7458888","36.0145722"],["-114.7463843","36.0147436"],["-114.7468313","36.0148833"],["-114.7472859","36.0150094"],["-114.7479014","36.0151379"],["-114.7485158","36.0152485"],["-114.7490775","36.0153266"],["-114.750129","36.0154087"],["-114.7507382","36.0154291"],["-114.7514018","36.0154355"],["-114.7520174","36.0154086"],["-114.7523605","36.0153825"],["-114.7533389","36.0152659"],["-114.7540164","36.015144"],["-114.7547976","36.0149582"],["-114.7553215","36.0148175"],["-114.7561608","36.0145533"],["-114.7569149","36.014262"],["-114.7573867","36.0140501"],["-114.7578925","36.0137994"],["-114.7584326","36.0134985"],["-114.7589384","36.0131952"],["-114.7593513","36.0129228"],["-114.7616811","36.0111883"],["-114.7620902","36.0108909"],["-114.762343","36.0107395"],["-114.762656","36.0105726"],["-114.7630042","36.010415"],["-114.763371","36.010277"],["-114.7637599","36.0101554"],["-114.7641465","36.0100594"],["-114.7645342","36.0099847"],["-114.7649908","36.009934"],["-114.7653893","36.0099018"],["-114.7661292","36.0099224"],["-114.7664934","36.0099461"],["-114.766822","36.0100038"],["-114.7671074","36.0100708"],["-114.7674977","36.0101854"],["-114.769367","36.0108655"],["-114.7699605","36.0110697"],["-114.7704482","36.0112094"],["-114.7709258","36.0113187"],["-114.7714826","36.0114029"],["-114.7719734","36.0114674"],["-114.7724028","36.0114978"],["-114.7727863","36.0115112"],["-114.7731636","36.011504"],["-114.7735201","36.0114848"],["-114.7742066","36.0114201"],["-114.774657","36.0113559"],["-114.7748864","36.0113139"],["-114.7752355","36.0112399"],["-114.7756094","36.0111407"],["-114.776264","36.010934"],["-114.7765862","36.0108143"],["-114.7768833","36.0106846"],["-114.7772301","36.0105179"],["-114.7776416","36.0102686"],["-114.7785658","36.0096258"],["-114.7790056","36.0093089"],["-114.7793326","36.0090367"],["-114.7796603","36.0086569"],["-114.7814707","36.0060905"],["-114.7818749","36.0055681"],["-114.7821467","36.0053223"],["-114.7827618","36.0048494"],["-114.783092","36.0046069"],["-114.7834288","36.004372"],["-114.7836811","36.0042273"],["-114.783993","36.004066"],["-114.7845063","36.003845"],["-114.7851562","36.0036044"],["-114.7859395","36.0034212"],["-114.7864764","36.0033337"],["-114.7873028","36.0032925"],["-114.7895745","36.0032815"],["-114.791311","36.0032835"],["-114.7918225","36.0032563"],["-114.7922609","36.0031888"],["-114.7927397","36.0031018"],["-114.7930987","36.0030097"],["-114.7934686","36.0028893"],["-114.7939249","36.0027074"],["-114.7948676","36.0022941"],["-114.7952683","36.0020811"],["-114.7957129","36.0017815"],["-114.7961176","36.0014057"],["-114.7964077","36.0011081"],["-114.7967293","36.0007233"],["-114.7972297","36.0000641"],["-114.7977364","35.9993726"],["-114.7986698","35.9980389"],["-114.7988094","35.9978297"],["-114.7989283","35.9976168"],["-114.7990225","35.9974419"],["-114.7991298","35.9972357"],["-114.7992913","35.996892"],["-114.7995216","35.9963304"],["-114.7996623","35.9959402"],["-114.7998013","35.9955082"],["-114.7998848","35.9951319"],["-114.7999306","35.9946922"],["-114.7999573","35.9939013"],["-114.7999302","35.9932437"],["-114.7998836","35.9928395"],["-114.7998042","35.9924746"],["-114.7996609","35.9920084"],["-114.7995784","35.991758"],["-114.7993577","35.9911654"],["-114.7992407","35.99092"],["-114.7990402","35.9905856"],["-114.7984644","35.9897071"],["-114.7972874","35.9880358"],["-114.7956712","35.985514"],["-114.7938266","35.98258"],["-114.7935753","35.9821981"],["-114.7934905","35.9820487"],["-114.793393","35.9818593"],["-114.7932371","35.9815246"],["-114.7928135","35.9804604"],["-114.7925464","35.9795512"],["-114.7924191","35.9786105"],["-114.7923783","35.9778526"],["-114.7924013","35.9769545"],["-114.7926828","35.9756499"],["-114.7930741","35.9745924"],["-114.7937881","35.9730855"],["-114.800265","35.9605086"],["-114.8042102","35.9528815"],["-114.805914","35.9494781"],["-114.8099949","35.9417233"],["-114.8105634","35.9408013"],["-114.8113168","35.9397599"],["-114.8124146","35.9386287"],["-114.8131861","35.9379871"],["-114.8143886","35.9371367"],["-114.8155435","35.936496"],["-114.8168214","35.935879"],["-114.818422","35.9353826"],["-114.8199292","35.9350194"],["-114.8215177","35.9347833"],["-114.8232685","35.9346852"],["-114.8538507","35.9340805"],["-114.8553204","35.9341259"],["-114.8568543","35.9342171"],["-114.8587","35.9344153"],["-114.8607951","35.934743"],["-114.862664","35.9351497"],["-114.8638556","35.9354416"],["-114.8653849","35.9358869"],["-114.8674939","35.9366269"],["-114.869308","35.9373703"],["-114.8722918","35.9386984"],["-114.9010867","35.9519155"],["-114.9028541","35.9527461"],["-114.9033529","35.9530104"],["-114.9038622","35.9532898"],["-114.9043347","35.9535506"],["-114.9048287","35.9538338"],["-114.9051919","35.9540656"],["-114.9060371","35.9546557"],["-114.9069581","35.9553426"],["-114.9071917","35.9555427"],["-114.9074833","35.9558091"],["-114.9079413","35.9562591"],["-114.9087453","35.9571048"],["-114.9090269","35.9574697"],["-114.909328","35.9578931"],["-114.9098217","35.9586604"],["-114.9102468","35.9593843"],["-114.9105044","35.9599027"],["-114.9107359","35.9604288"],["-114.9109621","35.9609945"],["-114.911266","35.9619782"],["-114.9117579","35.9637926"],["-114.9141386","35.97311"],["-114.9148675","35.9757966"],["-114.9151808","35.9767113"],["-114.9154213","35.9773193"],["-114.9157148","35.9779709"],["-114.9164261","35.979381"],["-114.9171838","35.980679"],["-114.9181943","35.9821353"],["-114.9190102","35.9831862"],["-114.9194898","35.9837541"],["-114.9201111","35.9844499"],["-114.9208554","35.9852254"],["-114.9213999","35.9857555"],["-114.9229118","35.9871194"],["-114.9286112","35.9921751"],["-114.9305298","35.9937212"],["-114.9311473","35.9941388"],["-114.9321703","35.9946875"],["-114.9329236","35.9950649"],["-114.9386918","35.9974051"],["-114.9410024","35.998355"],["-114.9422687","35.9988089"],["-114.9435433","35.9991924"],["-114.9446028","35.9994693"],["-114.9456628","35.9996874"],["-114.9465269","35.99983"],["-114.9475199","35.9999541"],["-114.9484802","36.0000388"],["-114.9493156","36.00008"],["-114.9503899","36.0001015"],["-114.9557231","36.000085"],["-114.9625095","36.0000836"],["-114.9706033","36.0000642"],["-114.9717283","36.0001128"],["-114.9726627","36.0002049"],["-114.9736017","36.0003167"],["-114.9745233","36.0004686"],["-114.9753583","36.0006353"],["-114.9762382","36.0008423"],["-114.9769677","36.0010426"],["-114.9776289","36.0012481"],["-114.9785602","36.0015708"],["-114.980209","36.0022329"],["-114.9817596","36.003016"],["-114.9825186","36.0034595"],["-114.9833193","36.0039937"],["-114.9841632","36.0046368"],["-114.9848981","36.005222"],["-114.9856492","36.0059027"],["-114.9862868","36.0065454"],["-114.9869017","36.0071938"],["-114.9877759","36.0082922"],["-114.988097","36.008775"],["-114.9887583","36.0098614"],["-114.9903632","36.0125729"],["-114.9908686","36.0132874"],["-114.9912687","36.0137684"],["-114.991891","36.0143906"],["-115.0068083","36.0269018"],["-115.0087267","36.0287469"],["-115.0099082","36.0299506"],["-115.0104506","36.030477"],["-115.0122986","36.0322892"],["-115.0130136","36.0329779"],["-115.013304","36.0332551"],["-115.0135961","36.0334999"],["-115.013853","36.0336793"],["-115.0141435","36.0338301"],["-115.0144425","36.0339382"],["-115.0147867","36.0340321"],["-115.0151758","36.0340954"],["-115.015486","36.0341251"],["-115.0158063","36.0341164"],["-115.0161077","36.0340883"],["-115.0163066","36.0340606"],["-115.0165209","36.0340117"],["-115.0167958","36.0339235"],["-115.0173518","36.0337272"],["-115.017785","36.0335749"],["-115.0182943","36.0334348"],["-115.0186721","36.0333483"],["-115.0190385","36.0332872"],["-115.0232665","36.0328089"],["-115.025516","36.0325257"],["-115.0270878","36.0323188"],["-115.0285235","36.0321239"],["-115.0331335","36.031349"],["-115.0366511","36.0308066"],["-115.0552736","36.028462"],["-115.0628359","36.0275025"],["-115.0628491","36.0275005"],["-115.083134","36.0248826"],["-115.085051","36.0245841"],["-115.0851386","36.0245705"],["-115.0851517","36.0245679"],["-115.0891604","36.0239227"],["-115.0909353","36.0237036"],["-115.0927337","36.0236109"],["-115.1206927","36.0238764"],["-115.1218707","36.0239632"],["-115.1224417","36.0240355"],["-115.1229719","36.0241334"],["-115.124206","36.02444"],["-115.125281","36.0248053"],["-115.1256818","36.0249579"],["-115.1262242","36.0252051"],["-115.1266572","36.0254175"],["-115.1276525","36.0260378"],["-115.1282669","36.0264629"],["-115.1286676","36.0267669"],["-115.1290306","36.0270951"],["-115.1295598","36.0276118"],["-115.129939","36.0280472"],["-115.1305398","36.0288138"],["-115.1308279","36.0292509"],["-115.1311771","36.0298974"],["-115.131402","36.030388"],["-115.1318371","36.0316964"],["-115.1329494","36.0352506"],["-115.1330498","36.035597"],["-115.1332527","36.0363985"],["-115.1334785","36.0374911"],["-115.1336621","36.0386192"],["-115.1337761","36.0397307"],["-115.1338055","36.0409182"],["-115.1338242","36.0418264"],["-115.1338456","36.0426893"],["-115.1338472","36.042746"],["-115.1338789","36.0434713"],["-115.1339413","36.0441094"],["-115.134064","36.0450265"],["-115.134253","36.0461193"],["-115.1346229","36.0476623"],["-115.1347732","36.0481614"],["-115.135078","36.0489418"],["-115.1353822","36.0496819"],["-115.1356387","36.0502389"],["-115.136066","36.0510396"],["-115.1368068","36.052321"],["-115.1376256","36.0535592"],["-115.138515","36.0549668"],["-115.1400445","36.0572501"],["-115.1404992","36.0577774"],["-115.1408591","36.0581725"],["-115.1413414","36.0586528"],["-115.142862","36.0599187"],["-115.1435439","36.0604064"],["-115.1441123","36.0607518"],["-115.1446538","36.0610595"],["-115.14535","36.0614161"],["-115.1460522","36.061728"],["-115.1468444","36.0620367"],["-115.1487011","36.062645"],["-115.1492144","36.0627807"],["-115.1500165","36.0629801"],["-115.1508752","36.0631709"],["-115.1519552","36.0633774"],["-115.1530116","36.0635498"],["-115.1537234","36.0636541"],["-115.1546977","36.0637416"],["-115.1571747","36.06386"],["-115.1634176","36.0637574"],["-115.1640411","36.0638396"],["-115.1672493","36.0640017"],["-115.1675161","36.0640321"],["-115.1677899","36.0640778"],["-115.1682209","36.0641631"],["-115.1691478","36.0643756"],["-115.1693459","36.0644111"],["-115.1695053","36.0644359"],["-115.1696903","36.0644566"],["-115.1699572","36.0644676"],["-115.1700715","36.0644682"],["-115.1703268","36.064488"],["-115.1718515","36.0644622"],["-115.1720169","36.0645259"],["-115.1720707","36.0645557"],["-115.1721151","36.0645965"],["-115.1721433","36.0646679"],["-115.1721583","36.0647713"],["-115.1721461","36.0654114"],["-115.1722332","36.065673"],["-115.1722429","36.0665993"],["-115.1722769","36.0671326"],["-115.172265","36.0678653"],["-115.1722905","36.0710373"],["-115.1723611","36.0719992"],["-115.1724128","36.0727314"],["-115.1724265","36.0732961"],["-115.172436","36.0736346"],["-115.1724487","36.0742894"],["-115.172533","36.078739"],["-115.1725397","36.0790375"],["-115.1725476","36.0793284"],["-115.1725483","36.0793757"],["-115.1725878","36.0821975"],["-115.1726486","36.0836413"],["-115.17266","36.0839554"],["-115.1726959","36.0854432"],["-115.172694","36.0861526"],["-115.1726977","36.0863667"],["-115.1727121","36.0866424"],["-115.1727449","36.0897815"],["-115.1727543","36.0913898"],["-115.1727564","36.0917028"],["-115.1727873","36.0933354"],["-115.1727806","36.0935884"],["-115.172774","36.0951661"],["-115.1727969","36.0957823"],["-115.172809","36.0961971"],["-115.1728223","36.0973393"],["-115.1728155","36.0974953"],["-115.1728103","36.0976487"],["-115.172848","36.0987514"],["-115.1728547","36.0998564"],["-115.1728484","36.1004234"],["-115.172845","36.1007405"],["-115.1728131","36.1009563"],["-115.1727988","36.1012812"],["-115.1727889","36.1038835"],["-115.1727752","36.104036"],["-115.1727837","36.1048322"],["-115.1727876","36.1049318"],["-115.1728017","36.1064578"],["-115.1728032","36.1067115"],["-115.1728041","36.1068334"],["-115.1728051","36.1069634"]] } }; const coordinates_1_0 = geojson_1_0.geometry.coordinates; for (const coord of coordinates_1_0) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_0', type: 'line', source: { type: 'geojson', data: geojson_1_0 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#375492', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); const geojson_1_1 = { type: 'Feature', properties: {}, geometry: { type: 'LineString', coordinates: [["-112.0777039","33.4482457"],["-112.0777102","33.4485691"],["-112.0777244","33.4510679"],["-112.0777362","33.4515077"],["-112.0777325","33.4534392"],["-112.0777324","33.453523"],["-112.0777328","33.4535668"],["-112.0777325","33.4536349"],["-112.0777185","33.4571552"],["-112.0777197","33.4578483"],["-112.0777344","33.4581901"],["-112.0777487","33.4585031"],["-112.0777547","33.4586546"],["-112.0777698","33.4587546"],["-112.0777943","33.4589639"],["-112.0777911","33.459976"],["-112.077787","33.4600934"],["-112.0777892","33.4607954"],["-112.0778029","33.4610117"],["-112.0778217","33.4611629"],["-112.0778355","33.4612481"],["-112.0778745","33.4613906"],["-112.0779519","33.461638"],["-112.0781744","33.461632"],["-112.0785901","33.4615874"],["-112.0790656","33.4615227"],["-112.0797296","33.4614127"],["-112.0801352","33.4613369"],["-112.0815666","33.4610986"],["-112.0817732","33.4611054"],["-112.0821912","33.4610701"],["-112.0826643","33.4610328"],["-112.0828862","33.4610224"],["-112.0831385","33.4610185"],["-112.0838641","33.4610142"],["-112.0848061","33.4610776"],["-112.0862796","33.4612541"],["-112.0875214","33.4614842"],["-112.0907607","33.4618669"],["-112.09164","33.4619332"],["-112.0925071","33.4619755"],["-112.0939704","33.461976"],["-112.0944151","33.4619755"],["-112.0982618","33.4619596"],["-112.0995353","33.4619138"],["-112.1028618","33.4618977"],["-112.1164605","33.462065"],["-112.1176648","33.4620933"],["-112.1193654","33.4621215"],["-112.122856","33.4621789"],["-112.1234426","33.4621762"],["-112.1247622","33.4622044"],["-112.1268613","33.4622964"],["-112.1280672","33.4624272"],["-112.1292729","33.4625717"],["-112.1298556","33.462663"],["-112.1304072","33.4627571"],["-112.1311069","33.4628709"],["-112.1316625","33.4629488"],["-112.1333402","33.4630575"],["-112.1349994","33.4630228"],["-112.1361916","33.4629041"],["-112.1405888","33.4621948"],["-112.1413834","33.4621132"],["-112.1424942","33.4620466"],["-112.1462821","33.4619602"],["-112.1505157","33.4620838"],["-112.1610632","33.462668"],["-112.1626379","33.4627443"],["-112.1668539","33.4629289"],["-112.1835507","33.4630858"],["-112.1849232","33.4630841"],["-112.1861686","33.4630821"],["-112.1861921","33.4630818"],["-112.192483","33.4629894"],["-112.1942804","33.4629899"],["-112.1946879","33.4629891"],["-112.1969507","33.4629897"],["-112.2033697","33.4629291"],["-112.2034073","33.4629288"],["-112.2200202","33.4627879"],["-112.2230935","33.4628181"],["-112.2248958","33.4628103"],["-112.2267154","33.4628185"],["-112.2308186","33.4627075"],["-112.233383","33.4625939"],["-112.2381829","33.4624632"],["-112.2382149","33.4624627"],["-112.2396263","33.4624346"],["-112.2503893","33.4625399"],["-112.2530716","33.4625269"],["-112.2570803","33.4624351"],["-112.2582739","33.4623632"],["-112.2592416","33.4622962"],["-112.2709189","33.4617451"],["-112.2877657","33.4614862"],["-112.2941101","33.4613736"],["-112.2951956","33.4613241"],["-112.2957429","33.4612816"],["-112.296715","33.461188"],["-112.2984467","33.4609277"],["-112.3144222","33.4581051"],["-112.314759","33.4580623"],["-112.3156876","33.457959"],["-112.3175096","33.457851"],["-112.3183466","33.4578361"],["-112.3641614","33.4581217"],["-112.3658322","33.4581702"],["-112.3666518","33.45822"],["-112.3675689","33.4583266"],["-112.3697787","33.4587527"],["-112.3707066","33.4590086"],["-112.3725128","33.4595472"],["-112.3734296","33.4598246"],["-112.3753973","33.4604274"],["-112.3769116","33.4608438"],["-112.3780558","33.461066"],["-112.3784545","33.4611293"],["-112.3794487","33.4612746"],["-112.3803431","33.4613527"],["-112.382032","33.4614148"],["-112.3839124","33.4613981"],["-112.3925206","33.4614534"],["-112.3929101","33.4614521"],["-112.3933737","33.4614565"],["-112.3946547","33.4614517"],["-112.4035297","33.4615479"],["-112.4061462","33.4616152"],["-112.4086614","33.4617728"],["-112.4088176","33.4617873"],["-112.408886","33.4617915"],["-112.4131306","33.4620699"],["-112.414753","33.4621415"],["-112.4171672","33.4622581"],["-112.4189135","33.4622828"],["-112.4219313","33.4622016"],["-112.4266735","33.4620183"],["-112.4390945","33.4616218"],["-112.4418082","33.461623"],["-112.4435798","33.4616117"],["-112.4439372","33.4616128"],["-112.4443601","33.4616082"],["-112.4504681","33.4616106"],["-112.4552241","33.4615915"],["-112.4572453","33.4616049"],["-112.4578182","33.4616217"],["-112.4582548","33.4616482"],["-112.4592985","33.4617445"],["-112.4596468","33.4617863"],["-112.4638584","33.4623713"],["-112.4647014","33.4624434"],["-112.4654952","33.4624918"],["-112.4661581","33.4625117"],["-112.4668379","33.4625244"],["-112.4684046","33.462524"],["-112.478586","33.462547"],["-112.479426","33.4625438"],["-112.4834344","33.4625613"],["-112.4856355","33.4625526"],["-112.4942687","33.4625618"],["-112.4951623","33.4625499"],["-112.4965848","33.4625026"],["-112.4974241","33.4624491"],["-112.4984929","33.4623623"],["-112.499818","33.4622188"],["-112.5012241","33.4620312"],["-112.5026666","33.4617759"],["-112.505355","33.4611887"],["-112.5066967","33.4608355"],["-112.5085373","33.4602964"],["-112.5466233","33.4480305"],["-112.548151","33.4475408"],["-112.5622424","33.4429975"],["-112.5634287","33.4426228"],["-112.6090397","33.4281383"],["-112.6116261","33.4276629"],["-112.6132825","33.4274476"],["-112.6155955","33.427253"],["-112.6159328","33.4272083"],["-112.6164673","33.4271843"],["-112.6179725","33.4271392"],["-112.6192387","33.4271629"],["-112.6204621","33.4272121"],["-112.6229829","33.4274052"],["-112.6230093","33.4274083"],["-112.6242006","33.4275591"],["-112.6250089","33.427681"],["-112.6269681","33.4280306"],["-112.6324484","33.4292694"],["-112.6346216","33.4297968"],["-112.6356235","33.4300877"],["-112.6364833","33.4303756"],["-112.6374994","33.4307529"],["-112.6388862","33.4313496"],["-112.6403323","33.4319902"],["-112.6417702","33.4326272"],["-112.6425774","33.4329189"],["-112.6433762","33.4331701"],["-112.644219","33.4333772"],["-112.645236","33.4335734"],["-112.6470065","33.4337776"],["-112.6548889","33.4345282"],["-112.6569027","33.4348512"],["-112.6594938","33.4353844"],["-112.811457","33.4694889"],["-112.9888154","33.507164"],["-112.9938655","33.5080228"],["-113.01588","33.5117536"],["-113.0209572","33.5126162"],["-113.0556992","33.5185079"],["-113.0582233","33.5189374"],["-113.0854402","33.5235446"],["-113.0910566","33.5244944"],["-113.0970586","33.5254964"],["-113.1153794","33.5289175"],["-113.1543927","33.5377431"],["-113.1628447","33.539663"],["-113.1634422","33.5398004"],["-113.1709239","33.5414489"],["-113.3052527","33.5620422"],["-113.3477235","33.5684669"],["-113.348125","33.568522"],["-113.3501593","33.5688314"],["-113.3508854","33.5689426"],["-113.3570335","33.5698824"],["-113.3585061","33.5701153"],["-113.3626467","33.570733"],["-113.3648723","33.5710687"],["-113.3686913","33.5716448"],["-113.3699164","33.5718367"],["-113.3775737","33.5729767"],["-113.4250049","33.5801414"],["-113.5240793","33.5950254"],["-113.539802","33.5973868"],["-113.6380827","33.6120447"],["-113.6394282","33.6122652"],["-113.6415452","33.6125772"],["-113.6876045","33.6194187"],["-113.7390248","33.6270432"],["-113.7403522","33.6272318"],["-113.74999","33.6286709"],["-113.7501737","33.6286886"],["-113.8124298","33.6378915"],["-113.813685","33.6380636"],["-113.8168892","33.638523"],["-113.8184173","33.6387415"],["-113.8235746","33.6394225"],["-113.827242","33.6398725"],["-113.8606624","33.6439217"],["-113.8875914","33.6471669"],["-113.973236","33.657505"],["-113.9747193","33.6576755"],["-114.0113058","33.6620574"],["-114.0132038","33.6622851"],["-114.0216333","33.6633028"],["-114.0241424","33.6635936"],["-114.0244089","33.6636283"],["-114.027094","33.6639599"],["-114.0282256","33.6641179"],["-114.0292175","33.6642909"],["-114.0307786","33.6646426"],["-114.0317414","33.6648887"],["-114.0324468","33.6650934"],["-114.0334129","33.6654087"],["-114.0342692","33.6657099"],["-114.0350022","33.6659865"],["-114.0373768","33.667009"],["-114.0383975","33.6675096"],["-114.03943","33.6680399"],["-114.0422834","33.6697103"],["-114.0485208","33.673514"],["-114.0496471","33.6741809"],["-114.0503418","33.6745572"],["-114.0511923","33.6749948"],["-114.0519715","33.67536"],["-114.052699","33.6756852"],["-114.0543238","33.6763106"],["-114.0557188","33.6767748"],["-114.0575981","33.6772861"],["-114.0584911","33.6774838"],["-114.0591905","33.6776249"],["-114.0601182","33.6777889"],["-114.0608073","33.6778943"],["-114.0615236","33.6779798"],["-114.0625692","33.6780843"],["-114.0633403","33.6781401"],["-114.0650007","33.6782821"],["-114.0768434","33.6791566"],["-114.0813504","33.6793333"],["-114.0815503","33.6793395"],["-114.0877926","33.6794169"],["-114.0886075","33.6794086"],["-114.0896701","33.6794121"],["-114.0940707","33.6793148"],["-114.1071291","33.6785585"],["-114.1235474","33.676524"],["-114.1252141","33.676229"],["-114.1266254","33.675997"],["-114.1300345","33.6753954"],["-114.1311951","33.6752072"],["-114.1520911","33.6715763"],["-114.1546024","33.6711585"],["-114.1588565","33.6704889"],["-114.1661195","33.6695086"],["-114.1929028","33.6664912"],["-114.1992244","33.6661484"],["-114.1997195","33.666143"],["-114.1997229","33.6667482"],["-114.1997334","33.6676571"],["-114.1999135","33.6676622"],["-114.2003039","33.6676614"],["-114.2005548","33.6676498"],["-114.2007143","33.6676352"],["-114.2009253","33.6676024"],["-114.2011604","33.6675414"],["-114.2014052","33.6674532"],["-114.2015624","33.6673826"],["-114.2018284","33.667215"],["-114.202398","33.6668358"],["-114.2027295","33.6666208"],["-114.2028283","33.6665689"],["-114.202932","33.6665227"],["-114.2030336","33.6664835"],["-114.2031511","33.6664418"],["-114.2034156","33.6663821"],["-114.2035407","33.6663626"],["-114.2036723","33.6663488"],["-114.2038023","33.6663424"],["-114.2039307","33.6663443"],["-114.2040605","33.6663494"],["-114.2048769","33.6664284"],["-114.2118354","33.6670805"],["-114.2120176","33.6670917"],["-114.2123741","33.6671047"],["-114.212523","33.6671092"],["-114.2127864","33.6671177"],["-114.2132497","33.667112"],["-114.2135462","33.6671034"],["-114.2136436","33.6670969"],["-114.2142203","33.6670453"],["-114.2170294","33.6666954"],["-114.2170268","33.6689836"],["-114.2170221","33.6750771"],["-114.2170167","33.6803922"],["-114.2170105","33.686539"],["-114.2170097","33.6870493"],["-114.217009","33.6893473"],["-114.2170071","33.6894431"],["-114.2170106","33.6901805"],["-114.2170611","33.6904908"],["-114.2170631","33.700456"],["-114.2170506","33.7392541"],["-114.2170516","33.7507618"],["-114.2170495","33.7516685"],["-114.2170317","33.7683694"],["-114.2170294","33.7961483"],["-114.2170427","33.7970956"],["-114.2170251","33.8175247"],["-114.2170184","33.8189168"],["-114.2170015","33.8208852"],["-114.2169763","33.8469409"],["-114.2169821","33.8482915"],["-114.2169849","33.8491507"],["-114.2169223","33.9690443"],["-114.2169257","33.972484"],["-114.2169251","33.975432"],["-114.2168989","33.9914392"],["-114.216878","33.9915317"],["-114.2168587","33.9933921"],["-114.2168516","33.9944967"],["-114.2168439","33.9947186"],["-114.2168362","33.9947847"],["-114.2168364","33.9948686"],["-114.2169514","33.9948996"],["-114.2178013","33.9951374"],["-114.2232533","33.9967262"],["-114.2236519","33.9968182"],["-114.2255743","33.9973851"],["-114.2265461","33.9977073"],["-114.2271388","33.9979502"],["-114.2276626","33.9982689"],["-114.2284432","33.9988229"],["-114.2288729","33.9992206"],["-114.2294413","33.9999689"],["-114.2302295","34.0008655"],["-114.2305002","34.0011114"],["-114.2309279","34.0014542"],["-114.2321478","34.0022181"],["-114.2412782","34.0074954"],["-114.2415186","34.007651"],["-114.2417271","34.0077945"],["-114.24197","34.0079842"],["-114.2421782","34.0081662"],["-114.2423482","34.0083382"],["-114.2424931","34.0085039"],["-114.2426379","34.0086897"],["-114.2427962","34.0089085"],["-114.2430016","34.0092777"],["-114.2431887","34.009741"],["-114.2432528","34.0099985"],["-114.2433123","34.0102572"],["-114.2434173","34.0108809"],["-114.2434481","34.0112163"],["-114.2435013","34.0114138"],["-114.2435717","34.0116076"],["-114.2436373","34.0117699"],["-114.2437913","34.0120943"],["-114.2438867","34.0122631"],["-114.2440013","34.0124424"],["-114.2446359","34.0132286"],["-114.2457563","34.014605"],["-114.2465031","34.0155941"],["-114.2468758","34.0161087"],["-114.2480656","34.0176926"],["-114.2486408","34.0184848"],["-114.2490925","34.0190988"],["-114.2499566","34.0202717"],["-114.2501787","34.0205757"],["-114.25131","34.0221215"],["-114.2515774","34.0224798"],["-114.2545739","34.0264789"],["-114.2558695","34.0282027"],["-114.2566182","34.0291835"],["-114.2570248","34.0297344"],["-114.2575191","34.0304582"],["-114.2577986","34.0309786"],["-114.2580449","34.0315024"],["-114.2582086","34.0319208"],["-114.2582989","34.0322233"],["-114.2583838","34.0325616"],["-114.2584841","34.0331502"],["-114.2585167","34.0335144"],["-114.2585524","34.0342554"],["-114.2585367","34.0348448"],["-114.2584199","34.0380432"],["-114.2575618","34.0610371"],["-114.2575009","34.0633443"],["-114.2575381","34.0642806"],["-114.2576373","34.0650716"],["-114.2577808","34.0658367"],["-114.258041","34.0668122"],["-114.2583226","34.0676501"],["-114.2585275","34.0681723"],["-114.2587425","34.0686679"],["-114.2589496","34.069093"],["-114.2591427","34.0694598"],["-114.2593609","34.0698561"],["-114.2597908","34.0705505"],["-114.2601201","34.0710284"],["-114.2605224","34.0715792"],["-114.2742276","34.0893762"],["-114.2747308","34.090108"],["-114.2749964","34.0905279"],["-114.2752762","34.0910286"],["-114.2755315","34.0915074"],["-114.2760542","34.0926464"],["-114.2762209","34.093057"],["-114.2763706","34.0935004"],["-114.2765108","34.0939491"],["-114.2766352","34.0944127"],["-114.2767742","34.09501"],["-114.2768608","34.0954628"],["-114.2770483","34.0973556"],["-114.2798364","34.1311566"],["-114.2800008","34.1330677"],["-114.2801399","34.1339769"],["-114.2803499","34.1349379"],["-114.2804797","34.1354223"],["-114.2807052","34.136081"],["-114.2809712","34.1368101"],["-114.2810903","34.1370771"],["-114.2811999","34.1373013"],["-114.2814477","34.1378297"],["-114.2816983","34.1382981"],["-114.2826081","34.1398086"],["-114.2842569","34.1424965"],["-114.2871237","34.1471547"],["-114.2874852","34.1477343"],["-114.2884696","34.1493159"],["-114.2891441","34.1503882"],["-114.2760554","34.1560015"],["-114.2758317","34.1560938"],["-114.2756687","34.1561598"],["-114.2708204","34.1581785"],["-114.2570851","34.163726"],["-114.2564624","34.1640164"],["-114.2559944","34.1642636"],["-114.2556076","34.1645018"],["-114.2550119","34.1649638"],["-114.2545583","34.1653103"],["-114.2539615","34.1658034"],["-114.2534315","34.1663223"],["-114.2528643","34.1669565"],["-114.2519103","34.1683273"],["-114.2514861","34.1689709"],["-114.2510222","34.1697116"],["-114.2503967","34.1706312"],["-114.2499493","34.1711793"],["-114.2496735","34.1715043"],["-114.2493848","34.1718321"],["-114.248917","34.1723456"],["-114.2485716","34.1726971"],["-114.24804","34.1732085"],["-114.2474741","34.1737006"],["-114.2470226","34.1740538"],["-114.2455199","34.1750939"],["-114.2443342","34.1757765"],["-114.2435864","34.1761663"],["-114.2426974","34.1765816"],["-114.242547","34.1766238"],["-114.2413933","34.1770664"],["-114.238487","34.178191"],["-114.2378116","34.1784334"],["-114.2367159","34.1788128"],["-114.2358036","34.1791143"],["-114.2353082","34.1792885"],["-114.2349527","34.1794128"],["-114.2343678","34.1796106"],["-114.2335864","34.1798876"],["-114.2309578","34.1808472"],["-114.2302894","34.1811266"],["-114.2296337","34.1814325"],["-114.2258595","34.1833876"],["-114.2247811","34.1839638"],["-114.2241771","34.1841993"],["-114.2239011","34.184314"],["-114.2236289","34.184417"],["-114.2233623","34.1844946"],["-114.222945","34.184565"],["-114.2226409","34.1845977"],["-114.2223308","34.1846144"],["-114.2221367","34.1846204"],["-114.221816","34.1846262"],["-114.2205889","34.184635"],["-114.220316","34.1846487"],["-114.219838","34.1846519"],["-114.2192446","34.1846991"],["-114.2190578","34.1847206"],["-114.2182452","34.1849008"],["-114.2178383","34.1850216"],["-114.217455","34.1851852"],["-114.2168783","34.1855014"],["-114.2162287","34.1860206"],["-114.2159519","34.1862723"],["-114.2155382","34.1867794"],["-114.2151914","34.1871682"],["-114.2148143","34.1875883"],["-114.214351","34.1881036"],["-114.2140296","34.1883978"],["-114.2136867","34.1886812"],["-114.213334","34.188942"],["-114.2129688","34.1891716"],["-114.2116164","34.1898821"],["-114.2101948","34.1906125"],["-114.2097694","34.1909312"],["-114.2092955","34.1913645"],["-114.2090522","34.1916126"],["-114.2089222","34.1917895"],["-114.2087756","34.1920012"],["-114.2086131","34.1923115"],["-114.2084414","34.1927224"],["-114.2083799","34.1929715"],["-114.2083382","34.1932171"],["-114.2082736","34.1937341"],["-114.2082517","34.1939726"],["-114.2082824","34.1942315"],["-114.2083508","34.1946009"],["-114.2085916","34.1952696"],["-114.2094163","34.1972457"],["-114.2097378","34.1980636"],["-114.209808","34.1983328"],["-114.2098478","34.1986032"],["-114.2098687","34.1989047"],["-114.2098588","34.1991249"],["-114.2098201","34.1993683"],["-114.2097215","34.1997377"],["-114.2095985","34.2000407"],["-114.2094646","34.2002912"],["-114.2092538","34.2005808"],["-114.2089905","34.2009187"],["-114.2087197","34.2012269"],["-114.2084147","34.2015818"],["-114.2081439","34.2019315"],["-114.2079192","34.202253"],["-114.2077323","34.2025468"],["-114.2076098","34.2027647"],["-114.2075074","34.2029961"],["-114.2072009","34.2037935"],["-114.2070405","34.2044319"],["-114.2068793","34.2052263"],["-114.2066983","34.2060123"],["-114.206525","34.2066614"],["-114.2063296","34.2071337"],["-114.206134","34.2075431"],["-114.2059149","34.2079478"],["-114.2056699","34.2083352"],["-114.2054109","34.2087001"],["-114.2051462","34.2090393"],["-114.204828","34.2093949"],["-114.2044736","34.209749"],["-114.2041378","34.2100621"],["-114.2037514","34.210374"],["-114.2034338","34.210593"],["-114.2031891","34.2107403"],["-114.2028747","34.2109208"],["-114.2017616","34.2115489"],["-114.2010895","34.2119137"],["-114.199767","34.2126787"],["-114.1988111","34.213317"],["-114.1979829","34.2139864"],["-114.1969476","34.2148086"],["-114.196542","34.2151356"],["-114.1961621","34.2154655"],["-114.1923755","34.2185341"],["-114.1919253","34.2189102"],["-114.1911739","34.2195279"],["-114.1906355","34.219969"],["-114.187917","34.2221513"],["-114.1856866","34.223989"],["-114.1851396","34.2244594"],["-114.1847078","34.2248547"],["-114.1843326","34.2252197"],["-114.1841912","34.2253423"],["-114.1839364","34.2256101"],["-114.183669","34.2258979"],["-114.1834205","34.2261706"],["-114.1831207","34.2265097"],["-114.1826471","34.2270833"],["-114.1822718","34.227568"],["-114.1816838","34.2283918"],["-114.181516","34.2286373"],["-114.1813422","34.2289015"],["-114.1811656","34.2291881"],["-114.1809798","34.2295039"],["-114.1808143","34.2297932"],["-114.1806833","34.2300268"],["-114.1805603","34.2302479"],["-114.1803762","34.230607"],["-114.1801825","34.2309966"],["-114.180044","34.2312923"],["-114.1792316","34.232908"],["-114.1770819","34.2371689"],["-114.176842","34.2376343"],["-114.176485","34.2383395"],["-114.1763736","34.2385593"],["-114.1762006","34.2388276"],["-114.1759285","34.2391966"],["-114.1756488","34.2395383"],["-114.1750802","34.2400367"],["-114.1747701","34.2402883"],["-114.1744744","34.2404907"],["-114.174168","34.2406754"],["-114.1737715","34.2408706"],["-114.1723935","34.2415349"],["-114.1710721","34.2421342"],["-114.1705004","34.2424001"],["-114.1695431","34.2428541"],["-114.1691383","34.2430377"],["-114.1682981","34.2434104"],["-114.1675905","34.2437441"],["-114.1672693","34.2439076"],["-114.1668807","34.2441302"],["-114.1664698","34.2443772"],["-114.1661024","34.2446247"],["-114.1657024","34.2449185"],["-114.1650895","34.2454694"],["-114.1647771","34.2457843"],["-114.1645923","34.2459955"],["-114.1644109","34.2462163"],["-114.1642876","34.2463795"],["-114.1641714","34.2465276"],["-114.1640661","34.2466975"],["-114.1638799","34.2470246"],["-114.1636486","34.247462"],["-114.1634155","34.2479409"],["-114.1630662","34.2488841"],["-114.16259","34.2503575"],["-114.1624096","34.2509231"],["-114.1620773","34.251962"],["-114.1619273","34.2524394"],["-114.1617999","34.2528355"],["-114.1617014","34.2530903"],["-114.1615903","34.253326"],["-114.1614499","34.2535884"],["-114.1613496","34.2537416"],["-114.1612485","34.2538854"],["-114.1610965","34.2540542"],["-114.1609043","34.2542584"],["-114.1603524","34.2546807"],["-114.1599907","34.2549024"],["-114.1596865","34.2550594"],["-114.159171","34.2552491"],["-114.1573638","34.2557778"],["-114.1547135","34.2565514"],["-114.1537964","34.2568173"],["-114.1532769","34.2569365"],["-114.1529287","34.2570054"],["-114.1525024","34.2570706"],["-114.1521433","34.2571079"],["-114.1517314","34.2571417"],["-114.151214","34.2571623"],["-114.1506769","34.2571596"],["-114.1501219","34.257142"],["-114.1495575","34.2570922"],["-114.1488633","34.2569766"],["-114.1483109","34.2568496"],["-114.1478221","34.2567154"],["-114.1470422","34.2564466"],["-114.1464346","34.2562013"],["-114.1420753","34.2542236"],["-114.1412344","34.2538728"],["-114.1407728","34.2537123"],["-114.1402872","34.2535916"],["-114.1395851","34.2534781"],["-114.1392254","34.2534456"],["-114.1385882","34.2534226"],["-114.1379271","34.2534462"],["-114.137702","34.2534627"],["-114.1374315","34.253503"],["-114.1369905","34.2535871"],["-114.1364261","34.25375"],["-114.1360231","34.253888"],["-114.1356166","34.2540457"],["-114.1352404","34.2542385"],["-114.1350106","34.2543657"],["-114.1348182","34.2544885"],["-114.1345968","34.2546389"],["-114.1343868","34.2547927"],["-114.1341713","34.2549593"],["-114.1318407","34.2569281"],["-114.1313753","34.2573184"],["-114.1310526","34.2575923"],["-114.1303878","34.2581862"],["-114.1301479","34.2584121"],["-114.1299874","34.2585875"],["-114.1298726","34.2587299"],["-114.1297947","34.2588356"],["-114.12973","34.258942"],["-114.1296645","34.2590681"],["-114.1295969","34.259206"],["-114.1295333","34.259354"],["-114.1294597","34.2595221"],["-114.129377","34.2598151"],["-114.1293672","34.2601143"],["-114.129364","34.2603867"],["-114.1293951","34.2605093"],["-114.1294101","34.2612302"],["-114.1294353","34.262288"],["-114.1294589","34.2626813"],["-114.1295254","34.263035"],["-114.1296057","34.2633599"],["-114.1296817","34.2635719"],["-114.1297224","34.2636674"],["-114.1297768","34.2637904"],["-114.1298711","34.2639701"],["-114.1300514","34.2642713"],["-114.1327677","34.2680014"],["-114.1329634","34.2683209"],["-114.1331144","34.2686784"],["-114.1331796","34.2689059"],["-114.1332259","34.269156"],["-114.1332407","34.2694471"],["-114.1332226","34.2696606"],["-114.1331978","34.2698124"],["-114.133166","34.2699545"],["-114.1331142","34.2701278"],["-114.1330525","34.2703113"],["-114.1329844","34.2704735"],["-114.1328826","34.2707129"],["-114.132542","34.271493"],["-114.1323952","34.2718198"],["-114.1321491","34.2723782"],["-114.1315959","34.2736375"],["-114.131434","34.2739997"],["-114.1309097","34.2752116"],["-114.13082","34.2754422"],["-114.1307417","34.2756822"],["-114.1306731","34.2759109"],["-114.1306245","34.2761097"],["-114.1305781","34.2763161"],["-114.13055","34.2764702"],["-114.1305226","34.276651"],["-114.1304775","34.2771027"],["-114.1304683","34.2772833"],["-114.1304694","34.2774814"],["-114.1304752","34.2777301"],["-114.1305001","34.2780441"],["-114.1305639","34.2784562"],["-114.1306568","34.2788341"],["-114.1307879","34.2792693"],["-114.1309316","34.2796511"],["-114.1310718","34.279948"],["-114.1312165","34.2802361"],["-114.1313878","34.2805261"],["-114.1315665","34.2808074"],["-114.1317081","34.2810004"],["-114.1318758","34.2812108"],["-114.1320664","34.2814404"],["-114.1326267","34.2819979"],["-114.1334544","34.2827762"],["-114.133636","34.282979"],["-114.1337691","34.2831406"],["-114.133941","34.2833678"],["-114.1340416","34.2835137"],["-114.1341667","34.2837055"],["-114.1342539","34.2838489"],["-114.1343664","34.2840512"],["-114.1344243","34.2842595"],["-114.1344727","34.2844123"],["-114.13451","34.2845489"],["-114.1345403","34.2846992"],["-114.1345628","34.2848457"],["-114.1345867","34.2849859"],["-114.1345929","34.2851366"],["-114.1345866","34.2852741"],["-114.1345706","34.2854378"],["-114.1345341","34.2856227"],["-114.1344888","34.2858116"],["-114.1344393","34.28594"],["-114.134379","34.2861053"],["-114.1342915","34.2862756"],["-114.1342029","34.2864112"],["-114.1340954","34.2865952"],["-114.1340061","34.2866927"],["-114.1339099","34.2867949"],["-114.1337748","34.2869291"],["-114.1336347","34.2870438"],["-114.1334878","34.2871604"],["-114.1320293","34.2881291"],["-114.1317859","34.2883096"],["-114.13166","34.2884221"],["-114.1315429","34.2885419"],["-114.1314352","34.2886669"],["-114.1313343","34.2887991"],["-114.1312444","34.2889364"],["-114.1311653","34.2890738"],["-114.1310946","34.2892198"],["-114.1310422","34.2893483"],["-114.1309975","34.2894831"],["-114.1309621","34.2896153"],["-114.1309256","34.2898012"],["-114.1308571","34.2902449"],["-114.1307806","34.2907904"],["-114.1307326","34.2910879"],["-114.1306903","34.2912478"],["-114.1306366","34.2914185"],["-114.1305686","34.2916085"],["-114.1304882","34.2917869"],["-114.1304054","34.291954"],["-114.1302972","34.2921286"],["-114.1301537","34.2923237"],["-114.1300424","34.292451"],["-114.1298853","34.2926097"],["-114.1295996","34.2928571"],["-114.1294179","34.2929905"],["-114.1292267","34.2931102"],["-114.129022","34.2932284"],["-114.1288247","34.2933326"],["-114.1284429","34.2934846"],["-114.1282482","34.2935439"],["-114.1280727","34.2935954"],["-114.1278473","34.293646"],["-114.1276407","34.2936791"],["-114.1274243","34.2937109"],["-114.1272307","34.2937321"],["-114.1270411","34.2937382"],["-114.1267124","34.2937302"],["-114.1265014","34.2937158"],["-114.1262739","34.2936864"],["-114.1260674","34.2936483"],["-114.1257302","34.2935665"],["-114.1213934","34.2923066"],["-114.1198952","34.2918865"],["-114.1191124","34.2917253"],["-114.1181996","34.2915634"],["-114.1173467","34.2914289"],["-114.1167585","34.2913247"],["-114.1162383","34.2912042"],["-114.1157352","34.2910727"],["-114.1152748","34.2909046"],["-114.1135018","34.2900755"],["-114.1126576","34.2896774"],["-114.1121882","34.2894636"],["-114.1117559","34.2892845"],["-114.1114861","34.2891844"],["-114.1112545","34.2891069"],["-114.111015","34.2890353"],["-114.1107643","34.2889674"],["-114.1105227","34.2889107"],["-114.1102708","34.2888595"],["-114.1100384","34.2888188"],["-114.1097659","34.2887791"],["-114.1095048","34.2887501"],["-114.1092461","34.2887294"],["-114.1089928","34.2887159"],["-114.1087324","34.2887093"],["-114.108318","34.2887106"],["-114.1081598","34.2887174"],["-114.1079929","34.2887317"],["-114.1078189","34.2887543"],["-114.1069339","34.2889108"],["-114.1063526","34.2890595"],["-114.1060697","34.2891444"],["-114.1057003","34.2892739"],["-114.1051846","34.2895183"],["-114.1045172","34.2898631"],["-114.1028853","34.2908068"],["-114.1023352","34.2911265"],["-114.101867","34.2914063"],["-114.0997006","34.2927273"],["-114.09912","34.2931216"],["-114.0986551","34.2934522"],["-114.0981597","34.293854"],["-114.0971592","34.294692"],["-114.0968432","34.2949519"],["-114.0957297","34.2959056"],["-114.0948129","34.2967121"],["-114.0946184","34.2969364"],["-114.094472","34.2971283"],["-114.0943637","34.2973128"],["-114.0942697","34.2974885"],["-114.0941963","34.2976783"],["-114.094142","34.297835"],["-114.0940825","34.2981147"],["-114.0939131","34.2992304"],["-114.0937744","34.300135"],["-114.093772","34.3001498"],["-114.093627","34.3009213"],["-114.0935402","34.3013613"],["-114.0935134","34.3015291"],["-114.093499","34.3016895"],["-114.0934952","34.3018414"],["-114.0935015","34.3020023"],["-114.0935182","34.3021585"],["-114.093546","34.3023177"],["-114.0935856","34.302481"],["-114.0936373","34.3026461"],["-114.0937","34.3028081"],["-114.0937704","34.3029584"],["-114.0938646","34.3031285"],["-114.0940534","34.3033963"],["-114.0941564","34.3035136"],["-114.0942606","34.3036185"],["-114.0943652","34.3037143"],["-114.0944697","34.3038005"],["-114.0945901","34.3038892"],["-114.0947062","34.303967"],["-114.0948274","34.3040417"],["-114.0952837","34.3042725"],["-114.0967544","34.3049977"],["-114.0974566","34.3054118"],["-114.0979616","34.3057903"],["-114.0985064","34.3063331"],["-114.099728","34.3077258"],["-114.1001786","34.3081701"],["-114.100563","34.3084836"],["-114.1033588","34.3103427"],["-114.1103546","34.3149287"],["-114.1133942","34.3169762"],["-114.114313","34.3176715"],["-114.1167006","34.3196814"],["-114.1176104","34.3203579"],["-114.1186537","34.3210859"],["-114.1203784","34.3221005"],["-114.1214994","34.3226816"],["-114.1225044","34.3231341"],["-114.1240607","34.3237476"],["-114.1254494","34.3242747"],["-114.1278899","34.3252601"],["-114.1289615","34.3257652"],["-114.1296106","34.3261352"],["-114.1302459","34.3265334"],["-114.1309546","34.3270457"],["-114.131593","34.3275558"],["-114.1323863","34.3282875"],["-114.1331327","34.3290743"],["-114.1351946","34.331529"],["-114.1365185","34.3331136"],["-114.1387144","34.3357361"],["-114.139926","34.3371477"],["-114.1404757","34.3377331"],["-114.141055","34.3382477"],["-114.1416101","34.3386556"],["-114.1435787","34.3398483"],["-114.1442954","34.3403362"],["-114.144885","34.3408635"],["-114.1474005","34.3436039"],["-114.1537423","34.3507361"],["-114.1543009","34.351556"],["-114.1546667","34.3521987"],["-114.1549728","34.3529267"],["-114.1551857","34.353532"],["-114.1555343","34.3545809"],["-114.1581995","34.3616699"],["-114.1584031","34.3621731"],["-114.1586","34.3626401"],["-114.158797","34.3631506"],["-114.1589359","34.3635642"],["-114.1590476","34.3638845"],["-114.1592244","34.3642936"],["-114.159453","34.3649006"],["-114.159631","34.3654053"],["-114.1598204","34.3659054"],["-114.1605445","34.3677895"],["-114.1678604","34.3871391"],["-114.16831","34.3882316"],["-114.1690703","34.3897756"],["-114.1697676","34.3910162"],["-114.170278","34.39186"],["-114.1714183","34.3935433"],["-114.172168","34.3944969"],["-114.172865","34.3953481"],["-114.1736334","34.396203"],["-114.1748489","34.3974849"],["-114.1753019","34.3979173"],["-114.1759291","34.3984871"],["-114.1779649","34.4002931"],["-114.1802593","34.402304"],["-114.2033535","34.4225942"],["-114.2075378","34.4262208"],["-114.2085432","34.4269953"],["-114.2099583","34.4280099"],["-114.2135192","34.4303217"],["-114.233552","34.4431711"],["-114.2359984","34.4447352"],["-114.2412688","34.4480763"],["-114.2423088","34.4487119"],["-114.2431439","34.4491457"],["-114.2436448","34.44937"],["-114.2452636","34.450008"],["-114.246094","34.4502901"],["-114.2468995","34.450529"],["-114.2480483","34.4508073"],["-114.249315","34.4510061"],["-114.2507285","34.4512058"],["-114.25211","34.4513068"],["-114.2538303","34.4512519"],["-114.2592682","34.4509711"],["-114.2603701","34.4509945"],["-114.2612789","34.4510936"],["-114.2619991","34.4512122"],["-114.2627752","34.451405"],["-114.2638719","34.451797"],["-114.2645111","34.4520578"],["-114.2647871","34.4521869"],["-114.265373","34.4525301"],["-114.2657763","34.4527882"],["-114.266449","34.4532849"],["-114.266737","34.4535166"],["-114.267179","34.4539123"],["-114.2682088","34.4547996"],["-114.2686534","34.4551637"],["-114.2691566","34.4555351"],["-114.2695732","34.4557806"],["-114.2702818","34.4561432"],["-114.2710518","34.4564854"],["-114.2718353","34.4567473"],["-114.2724069","34.4569108"],["-114.2737745","34.4572203"],["-114.2752247","34.4574768"],["-114.276141","34.4575921"],["-114.2770398","34.4576531"],["-114.2779168","34.4576874"],["-114.2786687","34.4576794"],["-114.2794183","34.4576305"],["-114.2801249","34.4575659"],["-114.2811998","34.4574202"],["-114.2853938","34.4567171"],["-114.2865304","34.456511"],["-114.2938929","34.4552297"],["-114.2962705","34.4548225"],["-114.2976034","34.4545932"],["-114.2980397","34.4561158"],["-114.298132","34.4564426"],["-114.2982342","34.4566776"],["-114.298353","34.4568894"],["-114.2984709","34.4570666"],["-114.2985835","34.4572101"],["-114.2987082","34.4573528"],["-114.2988554","34.4574959"],["-114.3095577","34.4661537"],["-114.3097257","34.4662913"],["-114.3098917","34.4664268"],["-114.3100561","34.4665589"],["-114.3103592","34.4668025"],["-114.310603","34.4669985"],["-114.3108501","34.4672096"],["-114.3109456","34.4673102"],["-114.3110013","34.4673693"],["-114.3110351","34.4674161"],["-114.3110698","34.4674722"],["-114.3111512","34.4676256"],["-114.3112161","34.4678057"],["-114.3112493","34.4680036"],["-114.3112564","34.468364"],["-114.3112624","34.4687245"],["-114.3112837","34.4688926"],["-114.3113173","34.4690236"],["-114.3113652","34.4691506"],["-114.3114239","34.4692704"],["-114.311498","34.4693774"],["-114.3116146","34.4695201"],["-114.3117442","34.469631"],["-114.3118581","34.4697213"],["-114.3120174","34.4698224"],["-114.313573","34.4706629"],["-114.3137671","34.4708033"],["-114.3139073","34.4709326"],["-114.3140225","34.4710822"],["-114.3141118","34.4712205"],["-114.3141913","34.4713847"],["-114.3142419","34.4715823"],["-114.3142532","34.4717884"],["-114.3142287","34.4720247"],["-114.3141534","34.4722433"],["-114.3140181","34.4724845"],["-114.3127198","34.4740084"],["-114.3125413","34.4742663"],["-114.3124498","34.4744711"],["-114.3124061","34.4746752"],["-114.3123954","34.4748398"],["-114.3124091","34.4749952"],["-114.3124369","34.4751396"],["-114.3124844","34.4752855"],["-114.3125939","34.4754825"],["-114.3127044","34.475636"],["-114.3128321","34.4757552"],["-114.3129923","34.4758826"],["-114.3132225","34.4760095"],["-114.3134034","34.47609"],["-114.3136418","34.4761544"],["-114.3154701","34.4764544"],["-114.3158356","34.4764887"],["-114.3160864","34.4764624"],["-114.3162969","34.4764187"],["-114.3164991","34.4763475"],["-114.3167211","34.4762466"],["-114.3169616","34.4760716"],["-114.3188535","34.4743723"],["-114.3190797","34.4742082"],["-114.3192764","34.4741169"],["-114.31953","34.474033"],["-114.3197935","34.4739913"],["-114.3200451","34.4739853"],["-114.3202427","34.4740059"],["-114.3204234","34.4740487"],["-114.3206343","34.4741187"],["-114.3208434","34.4742281"],["-114.3211375","34.4744489"],["-114.3243676","34.4772276"],["-114.3246067","34.4774447"],["-114.324752","34.4776187"],["-114.3248785","34.477804"],["-114.3249714","34.4779991"],["-114.3250455","34.4782092"],["-114.3250868","34.4784175"],["-114.325097","34.4785303"],["-114.325105","34.4786617"],["-114.3250862","34.4788692"],["-114.3250448","34.4790579"],["-114.3249461","34.4793107"],["-114.3248399","34.4795559"],["-114.3247801","34.4797134"],["-114.3247388","34.479861"],["-114.3246908","34.4800704"],["-114.3246687","34.4802896"],["-114.3246694","34.4805331"],["-114.324691","34.4807935"],["-114.3247585","34.4810898"],["-114.3252677","34.4827289"],["-114.3244099","34.4831429"],["-114.3226689","34.4839625"],["-114.3228221","34.4842812"],["-114.3227694","34.4845232"],["-114.3225756","34.4848374"],["-114.3227704","34.4845209"],["-114.3228189","34.4842767"],["-114.322683","34.4839669"],["-114.324428","34.4831347"],["-114.3252954","34.4827929"],["-114.3262964","34.4855662"],["-114.3265414","34.4862461"],["-114.3266148","34.4864185"],["-114.3267229","34.4866127"],["-114.3268254","34.4867648"],["-114.3303546","34.4913171"],["-114.3305528","34.4915137"],["-114.330737","34.4916542"],["-114.3308929","34.4917396"],["-114.3310225","34.4917949"],["-114.3311698","34.491843"],["-114.3313594","34.491889"],["-114.3315248","34.4919134"],["-114.3317164","34.4919283"],["-114.3327687","34.4919271"],["-114.3330191","34.4919509"],["-114.3332105","34.49199"],["-114.333388","34.4920421"],["-114.3335666","34.4921105"],["-114.3337187","34.4921989"],["-114.3338534","34.4922912"],["-114.3339721","34.4923858"],["-114.3340676","34.4924818"],["-114.3341641","34.492582"],["-114.3342408","34.4926846"],["-114.33431","34.4928041"],["-114.3343634","34.4929344"],["-114.3344148","34.4931679"],["-114.3344188","34.4933051"],["-114.3344049","34.493433"],["-114.3343713","34.4935658"],["-114.3342804","34.4938103"],["-114.3339166","34.4947448"],["-114.3337614","34.4951569"],["-114.3337068","34.495346"],["-114.3336898","34.4954732"],["-114.3336843","34.4956101"],["-114.3336974","34.4957452"],["-114.3337205","34.4958684"],["-114.3337738","34.4960212"],["-114.3338458","34.4961748"],["-114.3339649","34.4963734"],["-114.3340853","34.4965731"],["-114.3341886","34.4967256"],["-114.3343114","34.4968418"],["-114.334416","34.4969121"],["-114.3345378","34.4969643"],["-114.33467","34.497002"],["-114.334815","34.4970216"],["-114.3349741","34.497014"],["-114.3352656","34.4969405"],["-114.336036","34.4967047"],["-114.3365978","34.4965353"],["-114.3371062","34.496439"],["-114.338144","34.4962732"],["-114.3387421","34.496187"],["-114.339084","34.4961688"],["-114.3412391","34.4961544"],["-114.3418338","34.4961548"],["-114.3470145","34.4961343"],["-114.3471382","34.4961339"],["-114.3479497","34.496131"],["-114.3489503","34.4961308"],["-114.3493602","34.4961843"],["-114.3493881","34.5013171"],["-114.3494101","34.5028557"],["-114.3494127","34.5035142"],["-114.3493662","34.5038542"],["-114.3493868","34.5055367"],["-114.3494278","34.5058175"],["-114.3495018","34.5180061"],["-114.3495675","34.5262341"],["-114.3495915","34.5272207"],["-114.3496502","34.5281768"],["-114.349722","34.5289121"],["-114.3497832","34.5294229"],["-114.3499357","34.530447"],["-114.350111","34.531383"],["-114.3502257","34.5319128"],["-114.3503407","34.5323904"],["-114.3504652","34.5328643"],["-114.3508239","34.5340489"],["-114.3524449","34.5387779"],["-114.3532194","34.5409034"],["-114.3536145","34.5420162"],["-114.3536486","34.5422773"],["-114.3542643","34.5439951"],["-114.3544949","34.5446442"],["-114.3547848","34.5454924"],["-114.354883","34.5457366"],["-114.3550894","34.5463302"],["-114.3672421","34.5802455"],["-114.3676014","34.5811334"],["-114.3692996","34.5862589"],["-114.3695147","34.587263"],["-114.3697437","34.5892651"],["-114.3697775","34.5905596"],["-114.3697506","34.5913948"],["-114.3697001","34.5921029"],["-114.3696149","34.5928009"],["-114.3695194","34.5934168"],["-114.3692686","34.5946002"],["-114.3691045","34.5952275"],["-114.3689002","34.5958865"],["-114.3685891","34.5967548"],["-114.3682261","34.5976165"],["-114.3678517","34.5984514"],["-114.3673458","34.5993918"],["-114.3672114","34.5996262"],["-114.3670045","34.5999502"],["-114.3664247","34.6008328"],["-114.3658737","34.6015951"],["-114.3653661","34.6022562"],["-114.3648054","34.6029057"],["-114.364237","34.6035103"],["-114.363247","34.6044591"],["-114.3627562","34.604901"],["-114.3622179","34.605356"],["-114.36151","34.6059097"],["-114.3332572","34.6254429"],["-114.3325426","34.6259825"],["-114.3316968","34.6266905"],["-114.3310722","34.6272271"],["-114.3304796","34.6277844"],["-114.3301773","34.6281002"],["-114.3300484","34.6282308"],["-114.3296985","34.6286127"],["-114.3293203","34.629044"],["-114.3286638","34.6298602"],["-114.3278992","34.6308904"],["-114.3273009","34.6318543"],["-114.327","34.6323652"],["-114.3266089","34.6331095"],["-114.3261253","34.6341348"],["-114.3256616","34.6353485"],["-114.3252837","34.6365116"],["-114.3250929","34.6372176"],["-114.3240153","34.6411355"],["-114.3235245","34.6425217"],["-114.323064","34.6436597"],["-114.3142119","34.6628113"],["-114.3039549","34.684999"],["-114.3035567","34.6859066"],["-114.302867","34.6878593"],["-114.302524","34.6890906"],["-114.3022338","34.6903234"],["-114.301997","34.6915382"],["-114.3018374","34.6925529"],["-114.3017314","34.6936638"],["-114.3016678","34.6945861"],["-114.3016509","34.6963601"],["-114.3017152","34.6975071"],["-114.3018303","34.6988758"],["-114.3020456","34.700222"],["-114.3023343","34.7016953"],["-114.3026455","34.7028879"],["-114.3030147","34.7041378"],["-114.303499","34.7054825"],["-114.3040289","34.706774"],["-114.3046191","34.7079819"],["-114.3053486","34.7093095"],["-114.3096072","34.7162866"],["-114.3102405","34.7173018"],["-114.3162228","34.7270042"],["-114.3164803","34.7276731"],["-114.3165554","34.7279631"],["-114.3166064","34.7284869"],["-114.3166156","34.7287559"],["-114.3166266","34.7289929"],["-114.3166462","34.7294038"],["-114.3166709","34.7298564"],["-114.316719","34.7301662"],["-114.3170631","34.7301659"],["-114.3176634","34.7301244"],["-114.3199449","34.7297637"],["-114.3203788","34.7297321"],["-114.3230899","34.7295937"],["-114.3246966","34.7295213"],["-114.3929543","34.7271091"],["-114.4293986","34.7229721"],["-114.4658912","34.718757"],["-114.4670064","34.7186694"],["-114.4696461","34.718534"],["-114.4722162","34.71846"],["-114.472405","34.7184584"],["-114.4739706","34.7184411"],["-114.4750456","34.7184123"],["-114.4757911","34.7183698"],["-114.4766251","34.7182841"],["-114.4822494","34.7176257"],["-114.4829264","34.7175489"],["-114.4849186","34.717394"],["-114.4915082","34.717042"],["-114.4919378","34.7170468"],["-114.4924536","34.7170766"],["-114.4930883","34.717137"],["-114.4952153","34.7175057"],["-114.4971999","34.7178432"],["-114.4986584","34.7180246"],["-114.499907","34.7181042"],["-114.501978","34.7180535"],["-114.5220657","34.7172766"],["-114.5231363","34.7172813"],["-114.5239952","34.7173152"],["-114.5249027","34.7173873"],["-114.5256719","34.7174966"],["-114.5265458","34.717641"],["-114.5274578","34.7178563"],["-114.5282906","34.7180713"],["-114.5289873","34.7182956"],["-114.5297951","34.7185914"],["-114.5303188","34.7187957"],["-114.5309007","34.7190333"],["-114.5324022","34.7198611"],["-114.5402367","34.7242791"],["-114.5416299","34.725086"],["-114.5422432","34.7254942"],["-114.5429992","34.726076"],["-114.5436353","34.7266413"],["-114.5443877","34.7274308"],["-114.547752","34.7314383"],["-114.5510738","34.7353894"],["-114.5638495","34.7505656"],["-114.5644994","34.7515306"],["-114.5653018","34.7525313"],["-114.5656511","34.752908"],["-114.5661294","34.7533229"],["-114.566596","34.7538086"],["-114.5692896","34.7569935"],["-114.5709518","34.7589662"],["-114.5752602","34.7640945"],["-114.5761432","34.7651647"],["-114.5771294","34.7664748"],["-114.5782329","34.7681902"],["-114.5786955","34.7689998"],["-114.5793036","34.770203"],["-114.5803073","34.7726581"],["-114.5847428","34.7866339"],["-114.5934687","34.8141949"],["-114.5943365","34.8168025"],["-114.596566","34.8235122"],["-114.5967042","34.8239147"],["-114.596814","34.8241935"],["-114.5969482","34.8244912"],["-114.5972922","34.8251281"],["-114.5975744","34.8256093"],["-114.5982815","34.8266238"],["-114.5986232","34.8271203"],["-114.5995435","34.8284182"],["-114.6002537","34.8294164"],["-114.6006121","34.8298793"],["-114.6009754","34.8303046"],["-114.6013489","34.8307273"],["-114.6021367","34.8314253"],["-114.602861","34.8319501"],["-114.6034821","34.8323128"],["-114.6041946","34.8326824"],["-114.6046765","34.8329283"],["-114.6058124","34.8334702"],["-114.6063463","34.8337329"],["-114.6070598","34.8341024"],["-114.6080387","34.8347933"],["-114.6085055","34.8352018"],["-114.6090421","34.8356925"],["-114.6095238","34.8362415"],["-114.6098927","34.8367926"],["-114.6101576","34.8372336"],["-114.6109185","34.8388005"],["-114.6120495","34.8413503"],["-114.6126579","34.8426707"],["-114.613784","34.8450359"],["-114.6142109","34.8457984"],["-114.61455","34.8462204"],["-114.6150101","34.8467055"],["-114.6157978","34.8473103"],["-114.6169256","34.8480176"],["-114.6193995","34.8495572"],["-114.621215","34.8507017"],["-114.6240686","34.8525391"],["-114.6535125","34.8724589"],["-114.6563639","34.8743694"],["-114.6655882","34.8805239"],["-114.6668195","34.8812769"],["-114.6678948","34.8818761"],["-114.6689266","34.882382"],["-114.6700814","34.8829198"],["-114.6713369","34.8834625"],["-114.6727346","34.8839729"],["-114.6947553","34.8911323"],["-114.6956493","34.8913716"],["-114.6965791","34.8915474"],["-114.6973447","34.8916486"],["-114.6980775","34.891715"],["-114.6988052","34.8917406"],["-114.6995952","34.891731"],["-114.7005081","34.8916567"],["-114.7012572","34.8915616"],["-114.7018803","34.8914659"],["-114.7023053","34.8913713"],["-114.7026756","34.8912768"],["-114.7163538","34.8871578"],["-114.7236745","34.8851878"],["-114.7493522","34.8793893"],["-114.7502109","34.8792329"],["-114.7521437","34.8789459"],["-114.7527613","34.8788656"],["-114.7530907","34.8788553"],["-114.7534263","34.8788758"],["-114.753746","34.8789196"],["-114.7541707","34.8790343"],["-114.7547726","34.8792898"],["-114.7550815","34.8795075"],["-114.7553678","34.8797316"],["-114.7555699","34.8799319"],["-114.7558056","34.8802676"],["-114.7560312","34.8806508"],["-114.7561538","34.8809853"],["-114.7566354","34.8822244"],["-114.7577951","34.8852348"],["-114.7597942","34.8905288"],["-114.7599816","34.8909002"],["-114.7602201","34.8912203"],["-114.7608447","34.8918029"],["-114.7642165","34.8945671"],["-114.7648329","34.8951163"],["-114.7650995","34.8954311"],["-114.7654139","34.8959258"],["-114.7675637","34.9002554"],["-114.7677242","34.9006594"],["-114.7678519","34.9010149"],["-114.7679291","34.9013408"],["-114.7680229","34.901905"],["-114.7680912","34.9027403"],["-114.7681717","34.9036955"],["-114.7684607","34.9046257"],["-114.770363","34.9096361"],["-114.7724108","34.9139592"],["-114.7759138","34.920473"],["-114.7763806","34.9211461"],["-114.7768257","34.9215946"],["-114.7784025","34.9227325"],["-114.7872525","34.9287425"],["-114.7886042","34.9295052"],["-114.7901217","34.9301691"],["-114.7937137","34.9316531"],["-114.8053107","34.935735"],["-114.8055337","34.9358195"],["-114.8059128","34.9359801"],["-114.8060778","34.9360569"],["-114.8062338","34.9361387"],["-114.806376","34.9362173"],["-114.8065522","34.9363235"],["-114.8097673","34.9384871"],["-114.8100364","34.9386515"],["-114.8103126","34.9388068"],["-114.8105881","34.9389534"],["-114.8118251","34.9395737"],["-114.8121929","34.939748"],["-114.8131871","34.940176"],["-114.813875","34.9404504"],["-114.814099","34.9405313"],["-114.814312","34.9406023"],["-114.8145235","34.9406657"],["-114.8147736","34.9407285"],["-114.8150112","34.9407832"],["-114.8152596","34.9408301"],["-114.8157299","34.9409025"],["-114.8159576","34.9409246"],["-114.8164103","34.9409509"],["-114.8166105","34.9409546"],["-114.816847","34.9409489"],["-114.8170915","34.9409381"],["-114.8173468","34.9409189"],["-114.817576","34.9408967"],["-114.8178454","34.9408641"],["-114.8180576","34.9408304"],["-114.8182664","34.9407885"],["-114.8204632","34.9402531"],["-114.820943","34.9401438"],["-114.8211281","34.9401178"],["-114.8212857","34.9401006"],["-114.8214464","34.9400933"],["-114.8215899","34.9400904"],["-114.8217591","34.9400983"],["-114.821925","34.9401131"],["-114.822085","34.9401358"],["-114.8222517","34.9401684"],["-114.8224204","34.9402112"],["-114.822613","34.940268"],["-114.8227716","34.9403259"],["-114.8229311","34.940392"],["-114.8230925","34.940474"],["-114.8232601","34.9405732"],["-114.8234083","34.9406727"],["-114.8235707","34.9407947"],["-114.8237124","34.9409224"],["-114.8238358","34.9410597"],["-114.8239424","34.9411853"],["-114.8240529","34.9413314"],["-114.8241356","34.9414775"],["-114.8242233","34.9416826"],["-114.8245477","34.9427484"],["-114.8252451","34.9455573"],["-114.8254396","34.9462039"],["-114.8329526","34.9671688"],["-114.8330394","34.9674526"],["-114.8331039","34.9676903"],["-114.8331429","34.9679007"],["-114.833171","34.9680934"],["-114.8331848","34.9682709"],["-114.8331913","34.9684642"],["-114.8330251","34.973948"],["-114.8313687","35.0255423"],["-114.8312615","35.0261354"],["-114.8309774","35.0268404"],["-114.8296327","35.0288731"],["-114.8279259","35.0312928"],["-114.8249244","35.0355432"],["-114.8246754","35.0359889"],["-114.8244939","35.0365031"],["-114.8243927","35.0369523"],["-114.8243485","35.0374989"],["-114.8243775","35.0379733"],["-114.8244717","35.0384657"],["-114.8248158","35.0393573"],["-114.8270217","35.0444568"],["-114.8274372","35.045531"],["-114.8275424","35.0464572"],["-114.8299106","35.1395552"],["-114.8299628","35.1405731"],["-114.8300527","35.1412142"],["-114.8301406","35.1415265"],["-114.8304519","35.1422829"],["-114.8357094","35.1501404"],["-114.8462206","35.1658764"],["-114.8469699","35.1672832"],["-114.8474515","35.1684906"],["-114.8479335","35.1701142"],["-114.8502037","35.1797071"],["-114.8505775","35.1813175"],["-114.8531856","35.1919141"],["-114.8534457","35.1929917"],["-114.8539675","35.1952535"],["-114.8543579","35.1969053"],["-114.8546984","35.1984133"],["-114.8602142","35.2217439"],["-114.8643511","35.2391857"],["-114.8753875","35.2854546"],["-114.8867679","35.3333226"],["-114.9131876","35.4440745"],["-114.914135","35.4479417"],["-114.9145798","35.4496716"],["-114.9148752","35.4509476"],["-114.9152385","35.452014"],["-114.9155048","35.4526335"],["-114.9158221","35.4533366"],["-114.9173622","35.4568298"],["-114.9182413","35.458821"],["-114.9186736","35.4599565"],["-114.9190049","35.4611439"],["-114.9190808","35.4615282"],["-114.9191471","35.4618589"],["-114.9191634","35.461952"],["-114.9192252","35.4622923"],["-114.9194641","35.4635823"],["-114.9195347","35.463908"],["-114.919695","35.4644117"],["-114.9198524","35.4648783"],["-114.9200229","35.4652847"],["-114.9202361","35.4656886"],["-114.9204615","35.4661064"],["-114.920858","35.4666813"],["-114.9210447","35.4669277"],["-114.9222366","35.4682058"],["-114.9226053","35.4686241"],["-114.923067","35.469222"],["-114.9233759","35.4697271"],["-114.9237981","35.4705595"],["-114.9239375","35.4709041"],["-114.9240026","35.4710726"],["-114.9240832","35.47136"],["-114.9241826","35.4717062"],["-114.9242432","35.472072"],["-114.9243185","35.4726603"],["-114.9243652","35.4731825"],["-114.9243527","35.4738646"],["-114.9228456","35.4829668"],["-114.9223725","35.4847884"],["-114.9185703","35.4937656"],["-114.9177498","35.4957661"],["-114.9171763","35.4972836"],["-114.9167701","35.4990856"],["-114.9164769","35.5006402"],["-114.9163581","35.5019221"],["-114.9158317","35.512097"],["-114.915464","35.5171799"],["-114.9151094","35.5203927"],["-114.912915","35.5580506"],["-114.9130788","35.5621528"],["-114.9139007","35.5717051"],["-114.9142386","35.5755488"],["-114.9159353","35.5947857"],["-114.9165612","35.6012751"],["-114.9168422","35.6027806"],["-114.9171866","35.6040014"],["-114.9176547","35.6054347"],["-114.9180903","35.6065747"],["-114.918559","35.6076026"],["-114.9192811","35.6089762"],["-114.9212906","35.6120236"],["-114.9371412","35.6345503"],["-114.9378787","35.6356139"],["-114.9511321","35.6544264"],["-114.9557885","35.6611269"],["-114.9565872","35.6624258"],["-114.957175","35.6635863"],["-114.9577963","35.6649819"],["-114.9582338","35.6661486"],["-114.9585807","35.6672087"],["-114.9588857","35.6683284"],["-114.9591088","35.6694187"],["-114.9594012","35.6719095"],["-114.9611438","35.7116418"],["-114.9611964","35.715454"],["-114.9607381","35.718561"],["-114.9187978","35.9127446"],["-114.9185506","35.9140456"],["-114.9181376","35.9172663"],["-114.9180392","35.9180062"],["-114.9176927","35.9196593"],["-114.917455","35.9205751"],["-114.9172652","35.9212309"],["-114.9170165","35.9219848"],["-114.9166649","35.9229398"],["-114.9160363","35.9243714"],["-114.9150799","35.9262861"],["-114.901971","35.9512697"],["-114.9017424","35.9517074"],["-114.901101","35.9526585"],["-114.9010052","35.9527694"],["-114.9009183","35.9528344"],["-114.9008269","35.9528799"],["-114.9007129","35.9529148"],["-114.9005795","35.9529228"],["-114.9004561","35.9529174"],["-114.9003187","35.9528818"],["-114.9002071","35.9528228"],["-114.9001001","35.9527375"],["-114.9000333","35.9526491"],["-114.8999869","35.9525515"],["-114.8999696","35.9524384"],["-114.8999835","35.9523362"],["-114.9000142","35.9522377"],["-114.9000709","35.9521466"],["-114.9001371","35.9520754"],["-114.9002204","35.9520163"],["-114.9003386","35.9519593"],["-114.9004357","35.9519296"],["-114.9005501","35.9519139"],["-114.9006734","35.9519153"],["-114.9007955","35.9519378"],["-114.9009518","35.9519903"],["-114.9012331","35.9520958"],["-114.9024349","35.9526023"],["-114.9032406","35.9529691"],["-114.9038973","35.9533089"],["-114.9042931","35.9535269"],["-114.90483","35.9538347"],["-114.9051931","35.954066"],["-114.9060389","35.9546571"],["-114.9069535","35.9553389"],["-114.9072084","35.9555576"],["-114.9074893","35.9558145"],["-114.9079444","35.9562619"],["-114.9087417","35.9571004"],["-114.9090149","35.9574533"],["-114.9093483","35.9579241"],["-114.9098164","35.9586519"],["-114.9102525","35.9593945"],["-114.9105011","35.959896"],["-114.9107308","35.9604169"],["-114.9109598","35.960989"],["-114.9112626","35.9619666"],["-114.9117526","35.9637715"],["-114.9141705","35.9732304"],["-114.9148663","35.9757921"],["-114.9151694","35.9766801"],["-114.9154273","35.9773338"],["-114.9157132","35.977967"],["-114.9164404","35.9794081"],["-114.9171846","35.9806802"],["-114.9181855","35.9821237"],["-114.9190255","35.9832057"],["-114.919488","35.9837524"],["-114.9201276","35.9844679"],["-114.9208519","35.985222"],["-114.9213746","35.9857318"],["-114.9230319","35.9872271"],["-114.9286849","35.992239"],["-114.9305559","35.9937404"],["-114.9311395","35.9941343"],["-114.9321993","35.9947028"],["-114.932912","35.9950593"],["-114.9387114","35.9974132"],["-114.940993","35.9983514"],["-114.9422884","35.9988155"],["-114.9435955","35.9992072"],["-114.9445939","35.9994674"],["-114.9456391","35.9996831"],["-114.946564","35.9998353"],["-114.9475133","35.9999535"],["-114.948496","36.0000399"],["-114.9493938","36.0000829"],["-114.9503929","36.0001015"],["-114.9557206","36.0000849"],["-114.9624741","36.0000835"],["-114.9706069","36.0000642"],["-114.971748","36.0001142"],["-114.9726986","36.0002089"],["-114.9736156","36.0003187"],["-114.9744936","36.0004632"],["-114.9753382","36.0006307"],["-114.9762625","36.0008486"],["-114.9769963","36.0010515"],["-114.977622","36.0012458"],["-114.9786085","36.0015891"],["-114.9802085","36.0022328"],["-114.9817809","36.0030276"],["-114.9825115","36.0034551"],["-114.9833082","36.0039861"],["-114.9840462","36.0045458"],["-114.9848778","36.005205"],["-114.9856263","36.0058806"],["-114.9863346","36.0065947"],["-114.9869045","36.0071965"],["-114.9877721","36.0082872"],["-114.9881306","36.0088268"],["-114.9887965","36.0099259"],["-114.9903752","36.0125911"],["-114.9908696","36.0132884"],["-114.9912885","36.013791"],["-114.9919157","36.0144123"],["-115.0067649","36.0268646"],["-115.0087357","36.0287557"],["-115.0099288","36.0299712"],["-115.0104387","36.0304658"],["-115.0123712","36.0323598"],["-115.0130004","36.0329648"],["-115.0133074","36.0332584"],["-115.0135977","36.0335011"],["-115.0138517","36.0336788"],["-115.0141395","36.0338281"],["-115.0144464","36.0339396"],["-115.0147874","36.0340322"],["-115.0151752","36.0340953"],["-115.0154888","36.0341251"],["-115.015814","36.034116"],["-115.016108","36.0340883"],["-115.0163065","36.0340606"],["-115.016521","36.0340116"],["-115.0167843","36.0339274"],["-115.0173046","36.0337439"],["-115.0177964","36.0335716"],["-115.0183017","36.033433"],["-115.0186688","36.0333489"],["-115.0190249","36.0332889"],["-115.0231818","36.0328186"],["-115.0255336","36.0325235"],["-115.0270952","36.0323179"],["-115.0285623","36.0321182"],["-115.0330464","36.0313639"],["-115.0366046","36.030813"],["-115.055256","36.0284644"],["-115.0628354","36.0275025"],["-115.0628494","36.0275004"],["-115.0831209","36.0248845"],["-115.085052","36.0245839"],["-115.085138","36.0245706"],["-115.0851513","36.0245681"],["-115.0893144","36.0238996"],["-115.0908748","36.0237085"],["-115.0927318","36.0236109"],["-115.1207239","36.023878"],["-115.1218427","36.0239602"],["-115.1224333","36.0240343"],["-115.1229467","36.0241278"],["-115.124201","36.0244384"],["-115.1253054","36.0248142"],["-115.1256788","36.0249565"],["-115.1261994","36.025193"],["-115.1266549","36.0254162"],["-115.127638","36.0260279"],["-115.1282823","36.026474"],["-115.1286737","36.0267724"],["-115.1290175","36.0270831"],["-115.1295574","36.027609"],["-115.1299403","36.0280489"],["-115.1305465","36.0288233"],["-115.130824","36.0292441"],["-115.1311829","36.029909"],["-115.1314007","36.0303847"],["-115.1318232","36.0316531"],["-115.13295","36.0352529"],["-115.1330596","36.0356331"],["-115.1332526","36.0363974"],["-115.1334869","36.0375349"],["-115.1336627","36.0386242"],["-115.1337763","36.039732"],["-115.1338037","36.0408102"],["-115.1338241","36.0418336"],["-115.1338453","36.0426898"],["-115.1338474","36.0427481"],["-115.1338781","36.0434566"],["-115.1339457","36.0441443"],["-115.1340679","36.0450518"],["-115.1342555","36.0461315"],["-115.134628","36.0476818"],["-115.1347754","36.0481667"],["-115.135095","36.0489838"],["-115.1353714","36.0496565"],["-115.1356383","36.0502387"],["-115.1360485","36.051008"],["-115.1367926","36.0522995"],["-115.1375997","36.0535187"],["-115.1385123","36.0549626"],["-115.1400454","36.0572508"],["-115.140472","36.0577461"],["-115.1408473","36.0581604"],["-115.1413569","36.0586668"],["-115.1428607","36.0599173"],["-115.143531","36.0603978"],["-115.1440965","36.0607424"],["-115.1446268","36.0610445"],["-115.1453498","36.061416"],["-115.1460346","36.0617207"],["-115.1468499","36.0620389"],["-115.1487052","36.0626459"],["-115.1492262","36.0627839"],["-115.1500773","36.0629944"],["-115.1508088","36.0631568"],["-115.1519813","36.0633818"],["-115.1530145","36.0635503"],["-115.1537358","36.0636556"],["-115.1547446","36.063745"],["-115.1571709","36.0638602"],["-115.1634199","36.0637577"],["-115.1640432","36.0638397"],["-115.1672447","36.0640013"],["-115.1675079","36.064031"],["-115.1678122","36.0640819"],["-115.1682343","36.0641662"],["-115.169145","36.0643749"],["-115.16934","36.06441"],["-115.1695104","36.0644367"],["-115.1696938","36.0644569"],["-115.1699566","36.0644675"],["-115.1700721","36.0644681"],["-115.1703341","36.0644881"],["-115.1718478","36.0644618"],["-115.1720157","36.0645253"],["-115.1720711","36.0645556"],["-115.1721148","36.0645961"],["-115.1721435","36.064667"],["-115.1721584","36.064771"],["-115.1721457","36.0654085"],["-115.1722328","36.0656677"],["-115.1722431","36.066599"],["-115.1722766","36.0671226"],["-115.172264","36.0678645"],["-115.17229","36.0710331"],["-115.1723643","36.0720409"],["-115.1724126","36.07273"],["-115.1724265","36.0732998"],["-115.1724356","36.0736176"],["-115.1724488","36.0742954"],["-115.1725335","36.0787482"],["-115.1725394","36.0790221"],["-115.1725474","36.0793287"],["-115.1725483","36.0793777"],["-115.1725879","36.082202"],["-115.1726484","36.0836416"],["-115.1726599","36.0839503"],["-115.1726959","36.0854484"],["-115.1726939","36.0861441"],["-115.1726977","36.0863708"],["-115.1727108","36.0866393"],["-115.1727451","36.0897806"],["-115.1727453","36.0899669"],["-115.1727544","36.0913935"],["-115.1727559","36.0916609"],["-115.1727845","36.0932962"],["-115.1727843","36.0935066"],["-115.1727795","36.0935867"],["-115.1727738","36.0951603"],["-115.1727978","36.0958073"],["-115.1728088","36.0961892"],["-115.1728222","36.0973461"],["-115.1728152","36.0974998"],["-115.1728103","36.0976429"],["-115.1728479","36.0987583"],["-115.1728548","36.0998862"],["-115.1728484","36.1004229"],["-115.1728451","36.1007369"],["-115.172813","36.1009571"],["-115.1727983","36.1012949"],["-115.1727846","36.1048387"],["-115.1727875","36.1049302"],["-115.172803","36.1067"],["-115.1728032","36.106833"]] } }; const coordinates_1_1 = geojson_1_1.geometry.coordinates; for (const coord of coordinates_1_1) { bounds_1.extend(coord); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); } contentMap_1.on('load', () => { contentMap_1.addLayer({ id: 'route1_1', type: 'line', source: { type: 'geojson', data: geojson_1_1 }, layout: { 'line-join': 'round', 'line-cap': 'round' }, paint: { 'line-color': '#522A7A', 'line-width': 5, 'line-opacity': 0.80 } }); }); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom: 60, left: 60, right: 60}}); contentMap_1.fitBounds(bounds_1, {padding: {top: 60, bottom:60, left: 60, right: 60}}); var boundsSouthWest = bounds_1.getSouthWest(); var boundsNorthEast = bounds_1.getNorthEast(); initialMapBounds[1] = new mapboxgl.LngLatBounds(boundsSouthWest, boundsNorthEast); const visibleMapRoutes_1 = []; contentMaps[1].on('click', (e) => { if (!clickWasOnMarkerOrCard) { resetMarkersAndCards(1); } else { clickWasOnMarkerOrCard = false; } }); } var mapScriptCreated = 0; var mapCssCreated = 0; var mapScriptLoaded = 0; var mapCssLoaded = 0; var mapLoadList = []; function showLazyMap(fname) { if (mapScriptLoaded == 1 && mapCssLoaded == 1) { if (!mapLoadList.includes(fname)) { window[fname](); mapLoadList.push(fname); } } } (function fn() { var pics = document.querySelectorAll('.no-js-hide'); pics.forEach(function(pic) { pic.classList.toggle('no-js-hide'); }); var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); if ("IntersectionObserver" in window) { const config = { root: null, rootMargin: '1000px', threshold: 0 }; let lazyImageObserver = new IntersectionObserver(function(entries, observer) { entries.forEach(function(entry) { if (entry.isIntersecting) { let lazyImage = entry.target; if (lazyImage.dataset.src) {lazyImage.src = lazyImage.dataset.src;} if (lazyImage.dataset.srcset) {lazyImage.srcset = lazyImage.dataset.srcset;} if (lazyImage.dataset.map) { const fname = "initMapbox_"+lazyImage.dataset.map; if (mapScriptLoaded == 0) { let script = document.createElement('script'); script.async=true; script.defer=true; script.src = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.js"; script.onload = function(){ mapScriptLoaded = 1; showLazyMap(fname); } document.head.appendChild(script); mapScriptCreated = 1; let css = document.createElement('link'); css.rel = "stylesheet"; css.href = "https://api.mapbox.com/mapbox-gl-js/v3.0.0/mapbox-gl.css"; css.onload = function(){ mapCssLoaded = 1; showLazyMap(fname); } document.head.appendChild(css); mapCssCreated = 1; } else { if (typeof window[fname] === 'function') { window[fname](); } showLazyMap(fname); } } lazyImage.classList.remove("no-js-hide"); lazyImage.classList.remove("lazeeload"); lazyImageObserver.unobserve(lazyImage); } }); }, config); lazyImages.forEach(function(lazyImage) { lazyImageObserver.observe(lazyImage); lazyImage.classList.add("lazeeload-activated"); }); } else { let active = false; const lazyLoad = function() { if (active === false) { active = true; setTimeout(function() { lazyImages.forEach(function(lazyImage) { if ((lazyImage.getBoundingClientRect().top <= window.innerHeight+1000 && lazyImage.getBoundingClientRect().bottom >= 0) && getComputedStyle(lazyImage).display !== "none") { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; if (lazyImage.dataset.onload) lazyImage.onload = lazyImage.dataset.onload; lazyImage.classList.remove("lazeeload"); lazyImages = lazyImages.filter(function(image) { return image !== lazyImage; }); if (lazyImages.length === 0) { document.removeEventListener("scroll", lazyLoad); window.removeEventListener("resize", lazyLoad); window.removeEventListener("orientationchange", lazyLoad); } } }); active = false; }, 200); } }; document.addEventListener("scroll", lazyLoad); window.addEventListener("resize", lazyLoad); window.addEventListener("orientationchange", lazyLoad); } var lazyImages = [].slice.call(document.querySelectorAll(".lazeeload")); i=1; lazyImages.forEach(function(lazyImage) { if (!(lazyImage.classList.contains("lazeeload-activated"))) { if (lazyImage.dataset.src) lazyImage.src = lazyImage.dataset.src; if (lazyImage.dataset.srcset) lazyImage.srcset = lazyImage.dataset.srcset; lazyImage.classList.remove("lazeeload"); } }); })();