function genImgContent(p,m){p=JSON.parse(p);if(Array.isArray(p[0])){let d='carousel'+Math.random().toString(36).substr(2,9);b='';for(let i=0;i`;} let c=``;return c;}else{return genImg(p,m);}} function genImg(p,m){var c=m?'w-100 h-100 object-fit-cover':'img-fluid w-100';var a=p[0];var u=`https://cdn.lazytrips.com/photos/`+a.slice(0,2)+'/'+a.slice(2,4)+'/'+a;var r=``+p[1]+``;return r;} function getNewLngLat(m,o,f){var p=m.project(new mapboxgl.LngLat(o[0],o[1]));p.x+=f.x;p.y+=f.y;return m.unproject(p);} function onMapZoom(m){if(contentMaps[m]){contentMaps[m].on('zoom',function(){Object.keys(markerData[m]).forEach(function(i){var p=markerData[m][i];if(!mDev()&&p.cardInstance){var o={x:p.c.card.oX,y:p.c.card.oY};var n=getNewLngLat(contentMaps[m],p.lonLat,o);p.cardInstance.setLngLat([n.lng,n.lat]);}});});}} async function fetchRoute(d,m,i,c){const p={routeId:d};const r=await fetch('/api/request-route',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify(p)});if(r.ok){const j=await r.json();if(j.response&&j.response.route){const d=JSON.parse(j.response.route);markerData[m][i].c.route.json=d;updateMapWithRoute(m,i,d,c);}}} function updateMapWithRoute(m,i,r,c){const l='iconRoute_'+m+'_'+i;const g={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:r}};if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','visible');contentMaps[m].getSource(l).setData(g);}else{contentMaps[m].addLayer({id:l,type:'line',source:{type:'geojson',data:g},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':c,'line-width':5,'line-opacity':0.8}});}} function hideRouteLayer(m,i){const l='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(l)){contentMaps[m].setLayoutProperty(l,'visibility','none');}} window.toggleMapIconClick=function(m,i,e=true){if(markerData[m][i].a){return;} for(const[key,icon]of Object.entries(markerData[m])){if(parseInt(key)===i){continue;} if(icon.popupInstance){icon.popupInstance.remove();delete icon.popupInstance;} if(icon.c?.route&&contentMaps[m].getLayer('iconRoute_'+m+'_'+key)){hideRouteLayer(m,key);} if(icon.marker){icon.marker.getElement().classList.remove('markerSpanSelect');} if(icon.cardInstance){icon.cardInstance.remove();delete icon.cardInstance;} if(icon.cardOverlay){var o=icon.cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete icon.cardOverlay;}} icon.a=false;} if(!markerData[m][i].a){markerData[m][i].marker.getElement().classList.add('markerSpanSelect');if(markerData[m][i].c?.popup){const t=markerData[m][i].c.popup.title;const p=markerData[m][i].c.popup.text;let popupHTML='
';if(t){popupHTML+='

'+t+'

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

'+p+'

';} popupHTML+='
';var popup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'pointer'}).setLngLat(markerData[m][i].lonLat).setHTML(popupHTML).addTo(contentMaps[m]);markerData[m][i].popupInstance=popup;popup._content.addEventListener('click',function(){toggleMapIconClick(m,i);});markerData[m][i].marker.getElement().style.display='none';} if(markerData[m][i].c?.route){const layerId='iconRoute_'+m+'_'+i;if(contentMaps[m].getLayer(layerId)){contentMaps[m].setLayoutProperty(layerId,'visibility','visible');}else{fetchRoute(markerData[m][i].c.route.id,m,i,markerData[m][i].c.route.color);}} if(markerData[m][i].c?.card){var cardContent={n:markerData[m][i].c.card.title,d:markerData[m][i].c.card.d,t:markerData[m][i].c.card.t,p:markerData[m][i].c.card.p,};if(markerData[m][i].c.card.hasOwnProperty('link')){cardContent.l=markerData[m][i].c.card.link;} if(markerData[m][i].c.card.hasOwnProperty('linkText')){cardContent.s=markerData[m][i].c.card.linkText;} if(!mDev()){var cardContentHtml=createCardContentHtml(cardContent,false);var offsets={x:markerData[m][i].c.card.oX,y:markerData[m][i].c.card.oY};var newLngLat=getNewLngLat(contentMaps[m],markerData[m][i]['lonLat'],offsets);var cardPopup=new mapboxgl.Popup({anchor:'bottom',closeButton:false,closeOnClick:false,className:'mapPopupCard'}).setHTML(cardContentHtml).setLngLat([newLngLat.lng,newLngLat.lat]).addTo(contentMaps[m]);markerData[m][i].cardInstance=cardPopup;setTimeout(()=>{if(markerData[m][i].cardInstance&&markerData[m][i].cardInstance.isOpen()){markerData[m][i].c.card.height=markerData[m][i].cardInstance.getElement().offsetHeight;}},10);}else{var cardMobile=document.createElement('div');cardMobile.className='mapPopupCardMobile';cardMobile.innerHTML=createCardContentHtml(cardContent,true);var mapContainer=contentMaps[m].getContainer();mapContainer.appendChild(cardMobile);markerData[m][i].cardOverlay=cardMobile;}} markerData[m][i].a=true;if(e){updateMapBounds(m,i);}}else{resetMarkersAndCards(m);}} window.resetMarkersAndCards=function(m){Object.keys(markerData[m]).forEach((i)=>{if(markerData[m][i].marker){markerData[m][i].marker.getElement().classList.remove('markerSpanSelect');} if(markerData[m][i].popupInstance){markerData[m][i].popupInstance.remove();delete markerData[m][i].popupInstance;} if(markerData[m][i].c&&markerData[m][i].c.route){if(contentMaps[m].getLayer('iconRoute_'+m+'_'+i)){hideRouteLayer(m,i);}} if(markerData[m][i].c&&markerData[m][i].c.card){if(markerData[m][i].cardInstance){markerData[m][i].cardInstance.remove();delete markerData[m][i].cardInstance;}} if(markerData[m][i].cardOverlay){var o=markerData[m][i].cardOverlay;if(o&&o.parentNode){o.parentNode.removeChild(o);delete markerData[m][i].cardOverlay;}} markerData[m][i].marker.getElement().style.display='block';markerData[m][i].a=false;});} function formatTime(t){const h=Math.floor(t / 60);const m=t%60;return`⏱️ ${h > 0 ? h + " hour" + (h > 1 ? "s" : "") : ""}${h > 0 && m > 0 ? ", " : ""}${m > 0 ? m + " minute" + (m > 1 ? "s" : "") : ""}`;} function createCardContentHtml(c,m){cC='';if(m){cC=' d-flex flex-row';} let h='
';if(c.p){p=genImgContent(c.p,m);h+='
'+p+'
';} if(c.n||c.d||c.t||c.l){h+='
';if(c.n){h+='
'+c.n+'
';} if(c.d){h+='
';} if(c.d){h+='
🚗 '+c.d+'
';} if(c.t){h+='
'+formatTime(c.t)+'
';} if(!m){h+='
';} if(c.l){var z=c.s||'Read more';p='';if(m){p=' pt-2';} h+='';}} if(m){h+='
';} h+='
';return h;} document.addEventListener('shown.bs.modal',function(e){if(e.target.id.startsWith('contentMapModal_')){let m=e.target.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{e.target.style.borderBottom='1px solid #eee';setTimeout(()=>{e.target.style.borderBottom='';},1);},1);}}});window.addEventListener('resize',function(){document.querySelectorAll('[id^="contentMapModal_"]').forEach(p=>{if(p.classList.contains('show')){let m=p.id.replace('contentMapModal_','');let t=window.contentMaps[m];if(t){setTimeout(()=>{t.style.borderBottom='1px solid #eee';setTimeout(()=>{t.style.borderBottom='';},1);},1);}}});});function mDev(){return window.innerWidth<=768||window.innerHeight<=600;} async function updateMapBounds(m,n){const map=contentMaps[m];const oldBounds=contentMaps[m].getBounds();var T=contentMaps[m].getBounds();const D=contentMaps[m].getContainer().getBoundingClientRect();const x=markerData[m][n];const lngDiff=oldBounds.getNorthEast().lng-oldBounds.getSouthWest().lng;const latDiff=oldBounds.getNorthEast().lat-oldBounds.getSouthWest().lat;const lngPerPx=lngDiff / D.width;const latPerPx=latDiff / D.height;const U=[];var B=new mapboxgl.LngLatBounds(T.toArray());var R=new mapboxgl.LngLatBounds(T.toArray());if(!mDev()&&markerData[m][n].c.card&&markerData[m][n].a){const cP=new Promise(async(resolve)=>{const h=await new Promise(resolveHeight=>{const hInt=setInterval(()=>{let chk=markerData[m][n].c.card.height;if(chk){clearInterval(hInt);resolveHeight(chk);}},100);});const w=300;var p=15;const z=contentMaps[m].getZoom();var a=0;if(z<7){a=(8-z)*10;} const oX=markerData[m][n].c.card.oX;const oY=markerData[m][n].c.card.oY;const P=map.project(new mapboxgl.LngLat(x.lonLat[0],x.lonLat[1]));const tG=P.y+oY-h if(tG{const jR=await new Promise(resolve=>{const intervalId=setInterval(()=>{if(x.c.route.json&&Array.isArray(x.c.route.json)&&x.c.route.json.length>0){clearInterval(intervalId);resolve(true);}},100);});if(jR){const paddingRoutePixels=20;let extendWest=false,extendEast=false,extendNorth=false,extendSouth=false;x.c.route.json.forEach(coord=>{if(coord[0]R.getEast())extendEast=true;if(coord[1]>R.getNorth())extendNorth=true;if(coord[1]status)){T.extend(B.getSouthWest());T.extend(B.getNorthEast());T.extend(R.getSouthWest());T.extend(R.getNorthEast());map.fitBounds(T,{padding:0,duration:600,easing:(t)=>t*(2-t)});}}const markerConfig={'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:'☆',},'grey':{className:'mapMarkerNum markerSpanGrey',size:false,offset:[0,0],span:true,best:false,text:false,},};function addMarkersToMap(m,f=null){Object.values(markerData[m]).forEach((i,n)=>{if(f!==null&&n'+t+'';} if(mC.width&&mC.height){el.style.width=mC.width+'px';el.style.height=mC.height+'px';} var marker=new mapboxgl.Marker(el,{offset:mC.offset}).setLngLat(i.lonLat).addTo(window.contentMaps[m]);marker.markerType=i.iconType;if(f!==null){} i.marker=marker;window.bounds[m].extend(i.lonLat);if(i.c){marker.getElement().addEventListener('click',function(){event.stopPropagation();toggleMapIconClick(m,n,true);});}});}if(typeof window.contentMaps==='undefined'){window.contentMaps={};window.initialMapBounds={};} if(typeof window.bounds==='undefined'){window.bounds={};} 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:[-105.44315600950658,37.63214238380606],zoom:5,cooperativeGestures:true});window.contentMaps[1]=contentMap_1;if(typeof window.bounds[1]==='undefined'){window.bounds[1]=new mapboxgl.LngLatBounds();} markerData[1][0]={"lonLat":[-105.937835,35.686871],"type":"start"};markerData[1][1]={"lonLat":[-104.988809,39.740671],"type":"finish"};markerData[1][2]={"lonLat":[-104.76584650733233,37.647414217683405],"type":"star","c":{"popup":{"title":"Colorado Springs Route","text":"360 miles (6 hours*)"}}};markerData[1][3]={"lonLat":[-107.00981216766121,37.2694327618333],"type":"star","c":{"popup":{"title":"Breckenridge Route","text":"450 miles (8 hours 10 minutes*)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-105.9370429","35.6867023"],["-105.936893","35.6866773"],["-105.9368528","35.6867582"],["-105.9366887","35.6872972"],["-105.9375341","35.6875227"],["-105.9377114","35.6875655"],["-105.9374884","35.6881402"],["-105.9374168","35.6883155"],["-105.9372569","35.6886908"],["-105.9371587","35.6889206"],["-105.93707","35.6891305"],["-105.9370348","35.6892256"],["-105.9368413","35.6897383"],["-105.9366926","35.690121"],["-105.936639","35.6902719"],["-105.9365794","35.6904652"],["-105.9364165","35.6908713"],["-105.9363579","35.6910579"],["-105.9364619","35.6911684"],["-105.9365997","35.6912524"],["-105.9366708","35.6912895"],["-105.9367612","35.6913261"],["-105.9369048","35.6913749"],["-105.9370515","35.6914198"],["-105.9374643","35.6915481"],["-105.937666","35.6915929"],["-105.9384152","35.6918177"],["-105.9385659","35.6918855"],["-105.9387063","35.6919671"],["-105.9401939","35.6924079"],["-105.9406074","35.6925281"],["-105.9407548","35.6925661"],["-105.9409187","35.6925941"],["-105.9410995","35.692612"],["-105.9413054","35.6926215"],["-105.9414268","35.6926172"],["-105.9415358","35.6926054"],["-105.9416584","35.6925904"],["-105.9419371","35.6925139"],["-105.9423741","35.6923621"],["-105.9427413","35.6922364"],["-105.9435421","35.6919697"],["-105.9437885","35.6918961"],["-105.9439358","35.6918676"],["-105.9440758","35.6918537"],["-105.944267","35.6918455"],["-105.944424","35.6918505"],["-105.9446121","35.6918748"],["-105.9447988","35.6919114"],["-105.9449714","35.6919631"],["-105.9451233","35.6920134"],["-105.9452044","35.6920454"],["-105.9453261","35.6920941"],["-105.9454814","35.6921567"],["-105.9456556","35.6922131"],["-105.9459912","35.6923057"],["-105.9461792","35.6923381"],["-105.9463493","35.6923621"],["-105.9465403","35.6923682"],["-105.9467253","35.6923725"],["-105.946968","35.69239"],["-105.947154","35.6924081"],["-105.9472596","35.692442"],["-105.9473934","35.6924547"],["-105.9475109","35.6924865"],["-105.9477805","35.6927189"],["-105.950071","35.6946768"],["-105.9502532","35.6948487"],["-105.9504756","35.6950675"],["-105.9506642","35.6952751"],["-105.9508357","35.695476"],["-105.951019","35.6957278"],["-105.9512143","35.6960694"],["-105.9513375","35.6963333"],["-105.9513938","35.696469"],["-105.9514356","35.6965883"],["-105.9514955","35.6968018"],["-105.951519","35.6969032"],["-105.9515415","35.6970165"],["-105.9515625","35.6971583"],["-105.9515882","35.6974044"],["-105.9516058","35.6976819"],["-105.9516126","35.6978943"],["-105.951602","35.6980585"],["-105.9515688","35.6982733"],["-105.9515062","35.6985531"],["-105.9514199","35.6988669"],["-105.9513091","35.6991521"],["-105.9511731","35.699433"],["-105.9510291","35.6996813"],["-105.9508675","35.6999248"],["-105.9507336","35.7001115"],["-105.9506461","35.7002243"],["-105.95053","35.7003692"],["-105.9501093","35.7007494"],["-105.9496273","35.7011327"],["-105.9478251","35.702528"],["-105.945247","35.7046512"],["-105.9445181","35.7053148"],["-105.943673","35.7061236"],["-105.9430746","35.7067195"],["-105.9419416","35.7079268"],["-105.9413668","35.7085745"],["-105.9405447","35.709547"],["-105.9381002","35.7129142"],["-105.9355768","35.7170875"],["-105.9348321","35.718347"],["-105.9331789","35.7210297"],["-105.9326222","35.7219691"],["-105.9323169","35.7226297"],["-105.932191","35.7229859"],["-105.9320219","35.7236289"],["-105.9319274","35.7244121"],["-105.931911","35.7252985"],["-105.9319006","35.726186"],["-105.9318335","35.7333166"],["-105.9317459","35.7347129"],["-105.9315749","35.7375176"],["-105.9316296","35.7385636"],["-105.9317747","35.7392746"],["-105.9318826","35.7397238"],["-105.9320022","35.7400446"],["-105.9321748","35.7403094"],["-105.9323344","35.7406123"],["-105.9427438","35.7591415"],["-105.9436066","35.7607049"],["-105.9440183","35.7614717"],["-105.9442612","35.7620887"],["-105.9444476","35.7628288"],["-105.944509","35.7635028"],["-105.9444792","35.7642246"],["-105.9442741","35.7655935"],["-105.9437626","35.7686495"],["-105.9436606","35.7694971"],["-105.9436922","35.7701283"],["-105.943775","35.7705963"],["-105.9439192","35.7710846"],["-105.9441892","35.7717337"],["-105.9460246","35.7757989"],["-105.9474512","35.7789184"],["-105.9475602","35.7792287"],["-105.9476708","35.779592"],["-105.947785","35.7802154"],["-105.9478374","35.7807471"],["-105.9478469","35.7822542"],["-105.9478581","35.782873"],["-105.947884","35.7831331"],["-105.9479357","35.7834849"],["-105.9480519","35.7839533"],["-105.9481949","35.7843936"],["-105.9483836","35.784827"],["-105.9485938","35.7852477"],["-105.9489784","35.7858655"],["-105.9504294","35.7879915"],["-105.9612995","35.8027397"],["-105.9657165","35.8085018"],["-105.9699968","35.8145772"],["-105.9731376","35.8188915"],["-105.9748786","35.8210439"],["-105.9765226","35.8232201"],["-105.9769925","35.8238859"],["-105.9784602","35.8260703"],["-105.9791063","35.8270059"],["-105.9873969","35.8382939"],["-105.9882834","35.8394636"],["-105.989149","35.8405166"],["-105.9902002","35.8417526"],["-105.9910929","35.8428545"],["-105.9920081","35.8441253"],["-105.9927723","35.8452879"],["-105.993388","35.8462911"],["-105.9938347","35.8470761"],["-105.9942111","35.8478386"],["-106.00228","35.8666688"],["-106.0030142","35.8679813"],["-106.0086495","35.8774642"],["-106.0088144","35.8777331"],["-106.0091259","35.8781919"],["-106.0094099","35.8785759"],["-106.0094572","35.878639"],["-106.0105795","35.87981"],["-106.0113288","35.880493"],["-106.0139512","35.8826684"],["-106.014035","35.8827355"],["-106.0143137","35.88296"],["-106.0176764","35.8857551"],["-106.0180584","35.8860343"],["-106.0200036","35.8872801"],["-106.0206578","35.8877391"],["-106.02097","35.8879997"],["-106.0213506","35.8883591"],["-106.0216594","35.8886743"],["-106.0219622","35.8890701"],["-106.0222945","35.8895754"],["-106.0225558","35.8900849"],["-106.0227238","35.8904841"],["-106.0228577","35.89089"],["-106.0229613","35.8913392"],["-106.0229997","35.8917204"],["-106.0230277","35.8921011"],["-106.023013","35.892501"],["-106.0229009","35.8930473"],["-106.0227916","35.8935429"],["-106.02269","35.8938361"],["-106.022419","35.8944694"],["-106.0221255","35.8950887"],["-106.0217866","35.8958693"],["-106.0213159","35.8969085"],["-106.0212018","35.8971478"],["-106.0210893","35.8973921"],["-106.0207377","35.898252"],["-106.0206001","35.898625"],["-106.0205471","35.8987939"],["-106.020331","35.8994859"],["-106.0202088","35.899933"],["-106.0181827","35.9075066"],["-106.0180827","35.9079236"],["-106.0168579","35.9124955"],["-106.0166639","35.9133893"],["-106.0164479","35.9147269"],["-106.0163997","35.9153624"],["-106.0164024","35.916095"],["-106.0164748","35.9172911"],["-106.0170186","35.9233511"],["-106.0171191","35.9246148"],["-106.0172759","35.9263387"],["-106.0174788","35.9283362"],["-106.0175995","35.9290758"],["-106.017768","35.9298342"],["-106.0184755","35.9324335"],["-106.0187521","35.9333901"],["-106.0191496","35.9348249"],["-106.0196276","35.936633"],["-106.0197973","35.9372725"],["-106.0199917","35.9380216"],["-106.0201697","35.9388947"],["-106.0202655","35.9396678"],["-106.0203791","35.9416146"],["-106.0203798","35.9416957"],["-106.0203933","35.94203"],["-106.0204078","35.9423501"],["-106.0208648","35.9518088"],["-106.0209175","35.9524635"],["-106.0210648","35.9533408"],["-106.0212034","35.9538627"],["-106.021562","35.9548476"],["-106.0220957","35.9559265"],["-106.0224123","35.9564383"],["-106.0227822","35.9569444"],["-106.0233412","35.9576246"],["-106.023789","35.9581015"],["-106.0242848","35.9585662"],["-106.0247934","35.9589932"],["-106.0266851","35.9604871"],["-106.0275849","35.9612045"],["-106.0283191","35.9617802"],["-106.0294246","35.962625"],["-106.0312328","35.9640375"],["-106.0316184","35.9643343"],["-106.0319506","35.964603"],["-106.0337582","35.9660012"],["-106.035252","35.967134"],["-106.0376687","35.9690521"],["-106.0379455","35.9692756"],["-106.0381292","35.9694382"],["-106.0383241","35.9696109"],["-106.0386545","35.9698897"],["-106.0388071","35.9700288"],["-106.0389818","35.9702002"],["-106.0398837","35.971173"],["-106.0420533","35.9737448"],["-106.0461298","35.9785785"],["-106.0469931","35.979601"],["-106.0483119","35.9811756"],["-106.0490788","35.982101"],["-106.0504858","35.9837628"],["-106.0509988","35.9843174"],["-106.0514857","35.9847254"],["-106.0528017","35.9855901"],["-106.05406","35.9860499"],["-106.0548903","35.9862297"],["-106.057606","35.9868687"],["-106.0578093","35.9869073"],["-106.0609821","35.9876709"],["-106.0619337","35.9878574"],["-106.0634479","35.9881204"],["-106.0636353","35.988153"],["-106.0640462","35.9882239"],["-106.0645025","35.9883114"],["-106.0647487","35.988394"],["-106.0649159","35.9884811"],["-106.0654218","35.9887745"],["-106.0655964","35.988899"],["-106.0658247","35.9891428"],["-106.0662952","35.9896549"],["-106.0666342","35.9900255"],["-106.0674526","35.9909568"],["-106.0675963","35.9911453"],["-106.0677516","35.9913438"],["-106.0678672","35.9915267"],["-106.0679525","35.9916839"],["-106.0680065","35.9918226"],["-106.0680471","35.9919839"],["-106.0680676","35.9921104"],["-106.0680858","35.9922304"],["-106.0681361","35.9924549"],["-106.0678608","35.994152"],["-106.0678134","35.9943586"],["-106.0677036","35.9945964"],["-106.0675326","35.9948259"],["-106.067252","35.995076"],["-106.0667006","35.995406"],["-106.0660854","35.9957881"],["-106.0655477","35.9961452"],["-106.0651957","35.9964334"],["-106.0648019","35.9968359"],["-106.0646265","35.9970491"],["-106.0644649","35.9971587"],["-106.0642817","35.9973928"],["-106.064001","35.9978158"],["-106.0637436","35.9982044"],["-106.0636076","35.9984286"],["-106.0635134","35.9986489"],["-106.063431","35.9988261"],["-106.0633288","35.9990491"],["-106.0632298","35.9993233"],["-106.0630438","35.9998921"],["-106.062944","36.0002251"],["-106.0628975","36.0005063"],["-106.0628917","36.0008768"],["-106.0629141","36.0011826"],["-106.0629865","36.001473"],["-106.0631099","36.0018889"],["-106.0631992","36.0021333"],["-106.063457","36.0027838"],["-106.0637337","36.0035286"],["-106.0640658","36.0041558"],["-106.064307","36.0045589"],["-106.0646725","36.0052354"],["-106.0648544","36.0055297"],["-106.0649731","36.0057999"],["-106.0651071","36.006281"],["-106.0651351","36.0064739"],["-106.0651536","36.0066737"],["-106.06515","36.0067205"],["-106.0650746","36.0068575"],["-106.0650414","36.0071128"],["-106.0648739","36.0092501"],["-106.0648449","36.0095686"],["-106.064425","36.0155646"],["-106.0643676","36.0163363"],["-106.0641956","36.0186871"],["-106.0641633","36.019114"],["-106.0641298","36.019579"],["-106.0640215","36.0204468"],["-106.0637687","36.0222648"],["-106.0637523","36.0223958"],["-106.0636424","36.0232461"],["-106.0636207","36.0235993"],["-106.0636134","36.024052"],["-106.063657","36.0246589"],["-106.0636771","36.0248902"],["-106.0637099","36.0252206"],["-106.0637255","36.0254025"],["-106.0637532","36.0257168"],["-106.0638359","36.0266213"],["-106.0638654","36.026927"],["-106.0639258","36.0275592"],["-106.0639774","36.0281266"],["-106.064013","36.0284737"],["-106.0640386","36.0288391"],["-106.0640548","36.0289884"],["-106.0640623","36.0290823"],["-106.064065","36.029158"],["-106.0640718","36.0293185"],["-106.0640772","36.0294959"],["-106.0640615","36.0301202"],["-106.0640199","36.0303756"],["-106.0628627","36.0366382"],["-106.0612122","36.0456207"],["-106.058575","36.0596837"],["-106.0582711","36.0610403"],["-106.0490563","36.0902996"],["-106.0486364","36.0912509"],["-106.0482875","36.0918933"],["-106.0477217","36.0927644"],["-106.0472898","36.0933747"],["-106.04654","36.0942334"],["-106.0457256","36.0950114"],["-106.0431188","36.0971717"],["-106.0424383","36.0977084"],["-106.0183196","36.1172691"],["-105.9996961","36.1323646"],["-105.9922184","36.1384292"],["-105.9918054","36.1387662"],["-105.9894364","36.1406779"],["-105.9882963","36.1415498"],["-105.9875034","36.142135"],["-105.9815512","36.1460988"],["-105.9810127","36.1464213"],["-105.9800702","36.1470123"],["-105.9792571","36.1475894"],["-105.9742738","36.1508906"],["-105.9733182","36.1515194"],["-105.9722626","36.1522125"],["-105.9718629","36.1524725"],["-105.9712532","36.1529138"],["-105.9705755","36.1534508"],["-105.9700111","36.1539625"],["-105.9695702","36.1544157"],["-105.9691793","36.1548619"],["-105.9687567","36.1554278"],["-105.9683895","36.1560032"],["-105.9679333","36.1568555"],["-105.9677219","36.1573495"],["-105.9674952","36.1579588"],["-105.9673439","36.1584804"],["-105.9672259","36.1589634"],["-105.9671211","36.1595457"],["-105.9670726","36.160121"],["-105.9670529","36.1607649"],["-105.9670643","36.1612392"],["-105.9670867","36.1615073"],["-105.9671486","36.1619347"],["-105.9673076","36.162747"],["-105.9675903","36.1640242"],["-105.9677052","36.1645516"],["-105.9687813","36.1694449"],["-105.9688349","36.1696197"],["-105.9688705","36.169789"],["-105.9697137","36.1736775"],["-105.9697795","36.1739415"],["-105.969831","36.1742077"],["-105.9699379","36.1745546"],["-105.9700894","36.1749655"],["-105.9702386","36.1753247"],["-105.9703917","36.1756136"],["-105.9707112","36.1761501"],["-105.9710525","36.1766743"],["-105.9715057","36.1772279"],["-105.9718618","36.1775889"],["-105.9721501","36.1778504"],["-105.9723938","36.1780665"],["-105.9726118","36.1782493"],["-105.9733584","36.1788029"],["-105.9757575","36.1805722"],["-105.9778577","36.1822217"],["-105.9784059","36.1826773"],["-105.9787482","36.1830304"],["-105.9790336","36.1833768"],["-105.9792799","36.1837281"],["-105.9795702","36.1841737"],["-105.9797328","36.1844896"],["-105.9799021","36.1848605"],["-105.9799969","36.1851777"],["-105.9800776","36.1855442"],["-105.9801058","36.1858221"],["-105.9801059","36.1861099"],["-105.9800516","36.1864967"],["-105.9799983","36.1867721"],["-105.9798804","36.1871345"],["-105.9797293","36.1874531"],["-105.9792369","36.1883146"],["-105.979024","36.188895"],["-105.9788639","36.1895211"],["-105.9787751","36.1897741"],["-105.9786369","36.1900381"],["-105.9784409","36.1903744"],["-105.9782384","36.1907148"],["-105.9781243","36.1909639"],["-105.978025","36.1912413"],["-105.9779343","36.1915835"],["-105.9778212","36.1919213"],["-105.9777037","36.1921772"],["-105.977579","36.1923623"],["-105.9774127","36.1925609"],["-105.977146","36.1928121"],["-105.9766442","36.1932478"],["-105.9742188","36.1952946"],["-105.9731264","36.1961908"],["-105.9723214","36.1968213"],["-105.9720318","36.1970742"],["-105.9718218","36.197322"],["-105.9716612","36.1975784"],["-105.9715857","36.1977577"],["-105.9715157","36.1979908"],["-105.9713553","36.198632"],["-105.9712571","36.1988809"],["-105.9710948","36.199125"],["-105.9709189","36.1993614"],["-105.9706724","36.1995952"],["-105.9694593","36.2006493"],["-105.9692606","36.2008937"],["-105.9689926","36.2012974"],["-105.9685219","36.2019497"],["-105.9682967","36.2021981"],["-105.967943","36.202485"],["-105.9676251","36.2026909"],["-105.9673462","36.2028302"],["-105.9669179","36.2029794"],["-105.9660589","36.2032736"],["-105.9654858","36.2035244"],["-105.9635874","36.20461"],["-105.9606433","36.2063105"],["-105.9601483","36.2066018"],["-105.9599473","36.206744"],["-105.9597052","36.206948"],["-105.9594808","36.207204"],["-105.9592861","36.2074852"],["-105.9588557","36.2082119"],["-105.9586579","36.2084843"],["-105.9584213","36.2087334"],["-105.9582193","36.2088926"],["-105.9580189","36.209021"],["-105.9577386","36.2091608"],["-105.957351","36.2092967"],["-105.9567379","36.209459"],["-105.9560264","36.2096175"],["-105.9553006","36.2097407"],["-105.9550053","36.209753"],["-105.9546341","36.2097293"],["-105.9542685","36.2096464"],["-105.9536475","36.2094688"],["-105.9531276","36.2093253"],["-105.9528115","36.209271"],["-105.9523419","36.2092298"],["-105.9457873","36.2088724"],["-105.9454086","36.2088769"],["-105.9451085","36.2089071"],["-105.9447606","36.2089635"],["-105.9442891","36.209108"],["-105.9433675","36.2094232"],["-105.9422865","36.2098026"],["-105.9419397","36.2098903"],["-105.9415335","36.2099478"],["-105.9410739","36.2100094"],["-105.9406677","36.2100751"],["-105.9402744","36.2102007"],["-105.9393821","36.2106246"],["-105.9385962","36.211039"],["-105.9364985","36.2121132"],["-105.9361906","36.2122477"],["-105.9359039","36.2123412"],["-105.9354315","36.2124678"],["-105.9315354","36.2133698"],["-105.9311646","36.2134254"],["-105.9308497","36.2134367"],["-105.9306223","36.2134248"],["-105.9302869","36.2133658"],["-105.9299568","36.2132641"],["-105.9296532","36.2131285"],["-105.9292299","36.212922"],["-105.9287377","36.212708"],["-105.9284316","36.2126101"],["-105.928098","36.2125408"],["-105.9274593","36.2124485"],["-105.9256522","36.2122492"],["-105.9217875","36.2118176"],["-105.9190581","36.2115732"],["-105.9141626","36.2112209"],["-105.9133995","36.211193"],["-105.9131331","36.2112121"],["-105.9125924","36.2112773"],["-105.9118413","36.2113873"],["-105.9108483","36.2115343"],["-105.9084816","36.2118855"],["-105.9074959","36.2120468"],["-105.9065679","36.212277"],["-105.9045556","36.2129365"],["-105.9028536","36.2135185"],["-105.9026633","36.2135857"],["-105.9020331","36.2137936"],["-105.9010927","36.214079"],["-105.9004281","36.2142412"],["-105.8999867","36.2143296"],["-105.8994954","36.2144039"],["-105.8990771","36.2144496"],["-105.8982927","36.2144934"],["-105.8873715","36.2148419"],["-105.8869733","36.2148697"],["-105.8863956","36.2149314"],["-105.8860711","36.2149838"],["-105.8857974","36.2150341"],["-105.8702355","36.2187535"],["-105.8698914","36.2188444"],["-105.86956","36.2189378"],["-105.8689943","36.2191331"],["-105.8684612","36.2193595"],["-105.8682567","36.2194591"],["-105.8680315","36.21958"],["-105.8677612","36.2197352"],["-105.8674386","36.2199335"],["-105.8670933","36.2201622"],["-105.8668028","36.2203898"],["-105.8665083","36.2206364"],["-105.8661982","36.220942"],["-105.8658706","36.2212856"],["-105.8654261","36.2219074"],["-105.8641517","36.2237723"],["-105.8638769","36.2241542"],["-105.8634325","36.2246875"],["-105.8631648","36.2249676"],["-105.8628582","36.2252746"],["-105.862421","36.2256359"],["-105.8619224","36.2260175"],["-105.8596749","36.2275144"],["-105.8581497","36.22853"],["-105.8575478","36.2289036"],["-105.8569315","36.2292241"],["-105.855387","36.2298843"],["-105.8511857","36.2315281"],["-105.850644","36.2317723"],["-105.8502946","36.2319712"],["-105.8499648","36.2321764"],["-105.8487252","36.233012"],["-105.8484462","36.2331759"],["-105.8481527","36.2333342"],["-105.8427698","36.2359966"],["-105.8424459","36.2361724"],["-105.8417462","36.2365771"],["-105.8411956","36.2369363"],["-105.8407539","36.2372259"],["-105.8403705","36.237497"],["-105.8400102","36.2377832"],["-105.8395059","36.2382563"],["-105.8389892","36.2388387"],["-105.8387042","36.2391013"],["-105.8384176","36.239324"],["-105.8381098","36.2395285"],["-105.8377826","36.2397099"],["-105.8374874","36.2398431"],["-105.8371642","36.2399602"],["-105.8368506","36.2400526"],["-105.834798","36.2405438"],["-105.8340722","36.2406942"],["-105.8331645","36.2408976"],["-105.8327476","36.2410131"],["-105.8322821","36.2411806"],["-105.8313884","36.2416145"],["-105.8292128","36.2427202"],["-105.8280058","36.2433494"],["-105.8275504","36.2436139"],["-105.8270117","36.2439771"],["-105.826638","36.2442614"],["-105.8262239","36.2446275"],["-105.8257547","36.2450834"],["-105.8251996","36.245674"],["-105.8247312","36.2461461"],["-105.8243241","36.2465169"],["-105.8237048","36.2470066"],["-105.8209888","36.2489472"],["-105.8206924","36.2491301"],["-105.8203185","36.2493518"],["-105.8197555","36.2496202"],["-105.8191265","36.2498991"],["-105.8187558","36.2500871"],["-105.8185144","36.2502291"],["-105.8182799","36.250394"],["-105.8180546","36.2505684"],["-105.81787","36.2507311"],["-105.8176793","36.2509171"],["-105.8173202","36.2512954"],["-105.8167646","36.25189"],["-105.8164626","36.2521826"],["-105.8161998","36.2524174"],["-105.815632","36.2528777"],["-105.8149961","36.2533982"],["-105.8143548","36.2539486"],["-105.8138933","36.2543906"],["-105.8127056","36.2555672"],["-105.8122302","36.2560182"],["-105.8119489","36.256251"],["-105.8116502","36.2564824"],["-105.8080793","36.2590724"],["-105.8074878","36.2594581"],["-105.8070314","36.2597277"],["-105.8065612","36.2599937"],["-105.8055729","36.2604855"],["-105.7997832","36.2631426"],["-105.7991208","36.2634424"],["-105.7987015","36.2636271"],["-105.7980538","36.2639006"],["-105.7972646","36.264196"],["-105.7967578","36.2644023"],["-105.7964802","36.2645317"],["-105.7961778","36.2646884"],["-105.7957716","36.2649204"],["-105.7930948","36.2665243"],["-105.792446","36.2668871"],["-105.7921657","36.2670226"],["-105.791899","36.2671373"],["-105.7845344","36.2700388"],["-105.7826066","36.2708086"],["-105.7816553","36.2712253"],["-105.7799609","36.272084"],["-105.7789575","36.2726053"],["-105.777976","36.2731904"],["-105.7732328","36.2760004"],["-105.7716394","36.2769521"],["-105.7659523","36.2803091"],["-105.765534","36.2805635"],["-105.7653279","36.2807018"],["-105.7650996","36.2808776"],["-105.7648543","36.2810805"],["-105.7646286","36.2812912"],["-105.7642041","36.2817332"],["-105.7640087","36.2819742"],["-105.763248","36.282984"],["-105.7625954","36.2838664"],["-105.7622977","36.2842764"],["-105.759987","36.2873574"],["-105.7593849","36.2881746"],["-105.7592495","36.2883568"],["-105.7591153","36.2885191"],["-105.7589735","36.2886747"],["-105.7586097","36.289009"],["-105.7584286","36.289149"],["-105.7581918","36.2893115"],["-105.7579195","36.2894865"],["-105.7577314","36.2895872"],["-105.7574498","36.2897243"],["-105.7572301","36.2898121"],["-105.7569838","36.2898994"],["-105.7566051","36.29001"],["-105.7545467","36.2905194"],["-105.7540268","36.2906496"],["-105.7537052","36.2907374"],["-105.7535411","36.2907993"],["-105.753365","36.2908722"],["-105.7531712","36.2909635"],["-105.7529823","36.2910731"],["-105.7527635","36.2912194"],["-105.7525327","36.2913983"],["-105.7523774","36.2915339"],["-105.7518671","36.2920501"],["-105.7516616","36.2922325"],["-105.7514668","36.2923673"],["-105.7512423","36.2924893"],["-105.7506897","36.2927552"],["-105.7504446","36.2928747"],["-105.7502868","36.292972"],["-105.7501198","36.2930878"],["-105.7499391","36.2932448"],["-105.7498126","36.2933748"],["-105.7496947","36.293503"],["-105.7493785","36.2939999"],["-105.7489892","36.2946831"],["-105.7488354","36.2949245"],["-105.7486859","36.2951098"],["-105.7485318","36.2952606"],["-105.7483834","36.2953887"],["-105.7482477","36.2954889"],["-105.74807","36.2955998"],["-105.7478929","36.2956879"],["-105.7474575","36.2958581"],["-105.7471808","36.2959423"],["-105.7468262","36.2960582"],["-105.7465583","36.296165"],["-105.7463544","36.2962708"],["-105.7461689","36.2963893"],["-105.7459729","36.2965289"],["-105.7458463","36.2966408"],["-105.7457158","36.2967811"],["-105.7455506","36.2970015"],["-105.7454369","36.2971958"],["-105.7453367","36.2974252"],["-105.7452833","36.2975877"],["-105.7452573","36.2977311"],["-105.7452469","36.297963"],["-105.7452656","36.2981567"],["-105.7452865","36.2982899"],["-105.7453177","36.2984542"],["-105.7453771","36.2986074"],["-105.745473","36.2988126"],["-105.7456156","36.2990433"],["-105.7458264","36.2993619"],["-105.7459961","36.2996437"],["-105.7460973","36.2998372"],["-105.7461603","36.2999889"],["-105.7462009","36.3001176"],["-105.7462488","36.3003279"],["-105.7462721","36.3005558"],["-105.7462773","36.3007593"],["-105.7462613","36.3009278"],["-105.7462289","36.3010961"],["-105.7461891","36.3012611"],["-105.7461472","36.3013981"],["-105.7460811","36.3015635"],["-105.7460073","36.3017017"],["-105.745904","36.3018673"],["-105.7457813","36.3020477"],["-105.7455429","36.3023108"],["-105.7454078","36.3024296"],["-105.7452612","36.3025498"],["-105.7451147","36.3026547"],["-105.7426082","36.3042792"],["-105.7422198","36.3045039"],["-105.7419863","36.304617"],["-105.7417884","36.3046926"],["-105.7415949","36.3047569"],["-105.7413582","36.3048161"],["-105.7411613","36.30486"],["-105.7409928","36.3048823"],["-105.7408187","36.3048992"],["-105.740616","36.3049113"],["-105.7404292","36.3049112"],["-105.7402124","36.3049015"],["-105.7399775","36.304877"],["-105.7397023","36.3048319"],["-105.7393925","36.3047538"],["-105.7380902","36.3043755"],["-105.7377833","36.3042691"],["-105.7375426","36.3041662"],["-105.7373456","36.3040592"],["-105.7371581","36.3039432"],["-105.7369778","36.3038153"],["-105.7367556","36.3036206"],["-105.736609","36.3034619"],["-105.7364767","36.3032968"],["-105.7362832","36.3030236"],["-105.7360917","36.3027621"],["-105.7359359","36.3025808"],["-105.7357781","36.3024349"],["-105.7356072","36.3023038"],["-105.7354981","36.3022368"],["-105.7353453","36.302155"],["-105.7351732","36.3020764"],["-105.7349474","36.3019933"],["-105.7347203","36.3019258"],["-105.734513","36.3018817"],["-105.7343231","36.3018597"],["-105.7341152","36.3018439"],["-105.733885","36.3018424"],["-105.7337105","36.3018561"],["-105.7335261","36.3018766"],["-105.7333933","36.3019053"],["-105.7332397","36.3019437"],["-105.733007","36.302018"],["-105.7327206","36.3021522"],["-105.7325215","36.3022642"],["-105.7323289","36.3023948"],["-105.7321433","36.3025459"],["-105.7320046","36.3026773"],["-105.7318719","36.302856"],["-105.731494","36.3034287"],["-105.7313405","36.3036851"],["-105.7312254","36.3039239"],["-105.7311405","36.3041262"],["-105.7310762","36.3043562"],["-105.7310405","36.3045491"],["-105.7310143","36.3047875"],["-105.7310177","36.3050351"],["-105.7310292","36.3052305"],["-105.7310664","36.3056246"],["-105.7311227","36.3062848"],["-105.7311462","36.3066956"],["-105.7311549","36.3071265"],["-105.7311281","36.3074141"],["-105.7310811","36.3077709"],["-105.7309796","36.3082878"],["-105.7309066","36.3085761"],["-105.730826","36.3088672"],["-105.7307367","36.309131"],["-105.7306273","36.3094119"],["-105.7304739","36.3097436"],["-105.7301084","36.3103838"],["-105.7298737","36.310744"],["-105.7296208","36.3111056"],["-105.7294106","36.3113753"],["-105.7291904","36.3116299"],["-105.7289333","36.3118997"],["-105.7287226","36.3120977"],["-105.7284992","36.3122922"],["-105.7283056","36.31245"],["-105.7277005","36.3128996"],["-105.7273518","36.3131494"],["-105.7271062","36.3133199"],["-105.7267562","36.3135421"],["-105.7264829","36.3137037"],["-105.7261288","36.3138922"],["-105.7257118","36.314098"],["-105.7252344","36.314306"],["-105.7242965","36.3146654"],["-105.7041235","36.3221527"],["-105.7028798","36.322617"],["-105.6794449","36.3312883"],["-105.6448864","36.3440647"],["-105.6439648","36.3443988"],["-105.6391481","36.3461917"],["-105.6389344","36.3462473"],["-105.6370151","36.3469146"],["-105.6354831","36.3474914"],["-105.6350666","36.3476423"],["-105.6347346","36.3477578"],["-105.6342895","36.3479263"],["-105.6329186","36.3484701"],["-105.6328512","36.3485291"],["-105.6321937","36.348771"],["-105.6307149","36.3493006"],["-105.6299843","36.3495335"],["-105.629745","36.3496041"],["-105.6293842","36.3497044"],["-105.6290212","36.349807"],["-105.6280888","36.3501162"],["-105.6157683","36.3546507"],["-105.6152746","36.3548536"],["-105.6147082","36.3551168"],["-105.6135911","36.3556746"],["-105.6132432","36.3558704"],["-105.6128878","36.3560734"],["-105.6124815","36.3563173"],["-105.611989","36.3566458"],["-105.6112995","36.3571355"],["-105.6106946","36.3576065"],["-105.6101567","36.3580663"],["-105.60962","36.3585493"],["-105.6093218","36.3588322"],["-105.6091381","36.3590151"],["-105.6087879","36.3593683"],["-105.6081685","36.3599839"],["-105.6077107","36.3603609"],["-105.6072731","36.3606976"],["-105.6068825","36.3609846"],["-105.6063563","36.361383"],["-105.604506","36.3627651"],["-105.6038253","36.3632599"],["-105.6036417","36.3634015"],["-105.6023079","36.3644294"],["-105.6015986","36.3649955"],["-105.6006751","36.3657746"],["-105.6006093","36.3658274"],["-105.6002482","36.3661528"],["-105.5991224","36.3672314"],["-105.5981333","36.3682642"],["-105.5975607","36.3688991"],["-105.5969201","36.369671"],["-105.5963502","36.3703921"],["-105.5957468","36.3712044"],["-105.5950388","36.3722106"],["-105.5903262","36.3790019"],["-105.5895494","36.3801034"],["-105.5892793","36.380503"],["-105.5878071","36.3826424"],["-105.5871724","36.3835594"],["-105.5864591","36.3845824"],["-105.5845756","36.3873298"],["-105.582445","36.3906617"],["-105.582165","36.3910975"],["-105.5809792","36.3930128"],["-105.5797791","36.3949389"],["-105.5796306","36.3951827"],["-105.5775098","36.3985807"],["-105.5765297","36.4000348"],["-105.5760796","36.400651"],["-105.5754011","36.4017209"],["-105.5749547","36.4024289"],["-105.5746955","36.4028724"],["-105.5745637","36.4031694"],["-105.5744556","36.4034255"],["-105.5743776","36.4036816"],["-105.574276","36.404181"],["-105.5742308","36.4045934"],["-105.5742024","36.4049545"],["-105.5741768","36.4052078"],["-105.5741444","36.4054719"],["-105.5741149","36.4055899"],["-105.5740893","36.405658"],["-105.5740423","36.4057874"],["-105.5738049","36.4062982"],["-105.5737176","36.4065111"],["-105.573655","36.4066821"],["-105.5735718","36.4069279"],["-105.5734975","36.4071141"],["-105.5734427","36.4071931"],["-105.5733602","36.4072817"],["-105.572529","36.4083161"],["-105.5722384","36.4086832"],["-105.5718943","36.409089"],["-105.5715788","36.4094328"],["-105.570592","36.4104588"],["-105.5703992","36.4106452"],["-105.5700219","36.4109988"],["-105.5692837","36.4117546"],["-105.568364","36.4127759"],["-105.5680877","36.4131075"],["-105.567939","36.4133156"],["-105.5678412","36.4135279"],["-105.5677881","36.4137613"],["-105.5677626","36.4139462"],["-105.5678072","36.4142975"],["-105.5678702","36.4144876"],["-105.5680715","36.4148264"],["-105.5682287","36.4149903"],["-105.569265","36.4158408"],["-105.5696544","36.4162105"],["-105.5700198","36.4166932"],["-105.5704355","36.4173402"],["-105.5711653","36.4184671"],["-105.571487","36.4189968"],["-105.5723698","36.4204063"],["-105.5725122","36.420686"],["-105.5726501","36.4209979"],["-105.5727333","36.4213416"],["-105.5727585","36.4216795"],["-105.5727554","36.4219525"],["-105.5726997","36.4226869"],["-105.5727247","36.4231443"],["-105.5727684","36.4234876"],["-105.5728396","36.4237712"],["-105.5726812","36.424038"],["-105.5735124","36.4250629"],["-105.5740049","36.4259527"],["-105.5743985","36.4266767"],["-105.5748081","36.427448"],["-105.5751651","36.4281824"],["-105.5753319","36.4286305"],["-105.5753741","36.4290711"],["-105.5754408","36.4310376"],["-105.5754468","36.4315216"],["-105.5754814","36.4326956"],["-105.5754991","36.4330644"],["-105.5755238","36.4335029"],["-105.5755707","36.4339026"],["-105.5757117","36.4348356"],["-105.5757958","36.435289"],["-105.5758894","36.4357395"],["-105.5759594","36.4360226"],["-105.576095","36.4364323"],["-105.5762076","36.4367433"],["-105.5763346","36.4371028"],["-105.5767165","36.4379722"],["-105.5771077","36.4387473"],["-105.5774739","36.4394203"],["-105.5779136","36.4400841"],["-105.5785762","36.4409862"],["-105.5793196","36.4418598"],["-105.5803603","36.4428883"],["-105.5847796","36.4470223"],["-105.5952974","36.4568021"],["-105.5953598","36.456896"],["-105.5954183","36.4569678"],["-105.5955188","36.4570681"],["-105.5963333","36.4578211"],["-105.5965235","36.4579987"],["-105.5984493","36.4597772"],["-105.5986425","36.4599493"],["-105.5987858","36.4600624"],["-105.6002853","36.4614589"],["-105.6012234","36.4623263"],["-105.6058158","36.4666075"],["-105.6106493","36.4711165"],["-105.6110173","36.4714532"],["-105.6116199","36.471986"],["-105.6125223","36.4728417"],["-105.6411494","36.4993839"],["-105.6429309","36.5010556"],["-105.6554289","36.5127339"],["-105.6579507","36.5150433"],["-105.6587619","36.5158183"],["-105.6597839","36.5167486"],["-105.6602377","36.5171246"],["-105.6606823","36.5174074"],["-105.6610676","36.5176385"],["-105.6613519","36.51777"],["-105.6618335","36.5179929"],["-105.6628554","36.5182832"],["-105.6637258","36.5185302"],["-105.6644832","36.518772"],["-105.6651316","36.5190692"],["-105.6655656","36.5193326"],["-105.6660953","36.5198425"],["-105.6665234","36.5203375"],["-105.666791","36.5207548"],["-105.6669822","36.5212198"],["-105.6670786","36.5217659"],["-105.6671007","36.5230275"],["-105.6668514","36.5339761"],["-105.6668451","36.5342734"],["-105.6668203","36.534875"],["-105.6668042","36.5355977"],["-105.6668617","36.5362732"],["-105.6669743","36.5367559"],["-105.6671396","36.537195"],["-105.6673501","36.5375229"],["-105.6675652","36.5378225"],["-105.6678616","36.5381537"],["-105.668317","36.5386012"],["-105.6688735","36.5391336"],["-105.6691932","36.5394679"],["-105.6694034","36.5397128"],["-105.6695803","36.5399499"],["-105.6697727","36.5402483"],["-105.669927","36.5405176"],["-105.6700651","36.5407915"],["-105.6703124","36.5414986"],["-105.6704178","36.5420674"],["-105.6704613","36.5430008"],["-105.6705069","36.5441925"],["-105.6705924","36.5452175"],["-105.6707873","36.5463393"],["-105.6742183","36.5586379"],["-105.6743767","36.5593348"],["-105.6745168","36.5600374"],["-105.6746277","36.560899"],["-105.6746587","36.5616972"],["-105.6746564","36.5623535"],["-105.6746421","36.5628636"],["-105.6745645","36.5635202"],["-105.6743215","36.564823"],["-105.6728455","36.5701765"],["-105.6726252","36.5708684"],["-105.6723975","36.5714278"],["-105.6721238","36.5720182"],["-105.6716818","36.5728254"],["-105.6713196","36.5733864"],["-105.6708606","36.5740101"],["-105.6703612","36.5746214"],["-105.6699298","36.5750865"],["-105.6692167","36.5758292"],["-105.6684097","36.576674"],["-105.6680022","36.577167"],["-105.6677973","36.5774872"],["-105.6674629","36.5779649"],["-105.6671558","36.5784678"],["-105.6670525","36.5787078"],["-105.6669377","36.5789905"],["-105.6666972","36.5796356"],["-105.6659267","36.5817841"],["-105.6656986","36.5822815"],["-105.6655338","36.5825539"],["-105.6653013","36.5828533"],["-105.6650927","36.5830809"],["-105.6647807","36.5833661"],["-105.6644349","36.583652"],["-105.6640841","36.5838837"],["-105.6637432","36.5840627"],["-105.6631971","36.5843099"],["-105.6626995","36.5845327"],["-105.6622971","36.5847672"],["-105.6618757","36.5850541"],["-105.6615802","36.5853409"],["-105.6612719","36.5857081"],["-105.6609513","36.5861562"],["-105.6607531","36.5866049"],["-105.6606586","36.5869132"],["-105.6604189","36.5893669"],["-105.6603365","36.5904281"],["-105.6603184","36.5910619"],["-105.6603351","36.5916853"],["-105.66037","36.5922693"],["-105.6604659","36.5929233"],["-105.6606131","36.5937147"],["-105.6608874","36.5947872"],["-105.6627788","36.6016846"],["-105.6630058","36.6025972"],["-105.6631108","36.6031819"],["-105.6632117","36.6038206"],["-105.6632514","36.6044428"],["-105.6632734","36.6050549"],["-105.6632343","36.6063717"],["-105.6631833","36.6067762"],["-105.6630882","36.6072518"],["-105.6629805","36.6076696"],["-105.6628397","36.6080946"],["-105.6626916","36.6084726"],["-105.662471","36.6089615"],["-105.6622125","36.6094161"],["-105.6619436","36.6098315"],["-105.6615031","36.6104607"],["-105.6408796","36.6401348"],["-105.6399089","36.6416696"],["-105.639649","36.6423089"],["-105.6391925","36.6433415"],["-105.6279549","36.6773811"],["-105.6273149","36.6791518"],["-105.6269792","36.6799305"],["-105.6264807","36.6807896"],["-105.6256298","36.6821194"],["-105.6251185","36.6827852"],["-105.6244381","36.6835771"],["-105.6214069","36.6868489"],["-105.6202558","36.6880514"],["-105.6196446","36.6885705"],["-105.619133","36.6889495"],["-105.618501","36.6893511"],["-105.6178478","36.6897109"],["-105.6171984","36.6900672"],["-105.6161232","36.6906563"],["-105.6127473","36.6925097"],["-105.6122353","36.6928009"],["-105.6117691","36.6930598"],["-105.6112865","36.6933184"],["-105.6105481","36.6937266"],["-105.6096847","36.6941949"],["-105.6039264","36.6974004"],["-105.6029692","36.6979494"],["-105.6020792","36.6984587"],["-105.600795","36.6991488"],["-105.6004189","36.699338"],["-105.6000807","36.6995207"],["-105.5997086","36.6997288"],["-105.5987391","36.7002706"],["-105.5984241","36.7004672"],["-105.5976966","36.7011289"],["-105.597452","36.7013681"],["-105.5970713","36.7017841"],["-105.5965115","36.7025176"],["-105.5962865","36.702923"],["-105.5960432","36.7034601"],["-105.5957299","36.7043359"],["-105.5954572","36.7052351"],["-105.5953939","36.7062267"],["-105.5954794","36.7071596"],["-105.5955167","36.707297"],["-105.5955849","36.7075011"],["-105.5958883","36.7085088"],["-105.5959948","36.7088998"],["-105.5961017","36.709409"],["-105.5962","36.7101371"],["-105.5962262","36.7108942"],["-105.5961843","36.7116368"],["-105.5960991","36.7122948"],["-105.59588","36.7131774"],["-105.5956227","36.7141869"],["-105.5954187","36.7152065"],["-105.595303","36.7160462"],["-105.5952544","36.7170225"],["-105.5952638","36.7187447"],["-105.5952709","36.7202127"],["-105.5952624","36.7205012"],["-105.5952748","36.7212103"],["-105.595262","36.722089"],["-105.595276","36.7226954"],["-105.5952759","36.723213"],["-105.5952988","36.7269899"],["-105.5953186","36.7325433"],["-105.5953179","36.7335918"],["-105.5952243","36.7539492"],["-105.5950351","36.7563811"],["-105.5940061","36.7605455"],["-105.5926871","36.7637357"],["-105.5911909","36.7670847"],["-105.5893162","36.7712605"],["-105.5885968","36.7731001"],["-105.587694","36.7756857"],["-105.5869799","36.7782343"],["-105.5864256","36.7804823"],["-105.5860917","36.7822381"],["-105.5858142","36.7839399"],["-105.5855903","36.7857182"],["-105.5854317","36.7873391"],["-105.5853093","36.7893162"],["-105.5853007","36.8222064"],["-105.5852874","36.8229707"],["-105.5853336","36.8263816"],["-105.5853875","36.8350178"],["-105.5853779","36.8383428"],["-105.5853874","36.8434849"],["-105.5853658","36.8589401"],["-105.5852665","36.8618384"],["-105.5850688","36.8640404"],["-105.5848197","36.8658431"],["-105.5844577","36.8679913"],["-105.5838246","36.8708891"],["-105.5831923","36.8731638"],["-105.5825852","36.8751311"],["-105.5817964","36.8772155"],["-105.5788638","36.8837276"],["-105.5506437","36.9444409"],["-105.5492478","36.9474434"],["-105.5482912","36.9494892"],["-105.541846","36.9633208"],["-105.5402349","36.9667357"],["-105.5361454","36.9733143"],["-105.5334653","36.9775451"],["-105.5241776","36.987719"],["-105.5235977","36.9884511"],["-105.5231532","36.9892491"],["-105.5228336","36.9899872"],["-105.5225667","36.9908154"],["-105.5224998","36.9912294"],["-105.5224273","36.9918257"],["-105.5209234","37.0684781"],["-105.5208351","37.0729365"],["-105.5207368","37.0910651"],["-105.5214837","37.1368632"],["-105.5216656","37.146058"],["-105.5218436","37.1581334"],["-105.5218083","37.1591668"],["-105.5216989","37.1601269"],["-105.5214972","37.1611243"],["-105.5211817","37.1622368"],["-105.5209651","37.1628535"],["-105.5206975","37.1634708"],["-105.5201725","37.1645268"],["-105.5194952","37.1656356"],["-105.5187286","37.1666734"],["-105.5179755","37.1675511"],["-105.5081151","37.1772489"],["-105.5032577","37.1820069"],["-105.4988296","37.1862929"],["-105.4978329","37.1871453"],["-105.496771","37.1879573"],["-105.4959897","37.1884761"],["-105.4950926","37.189"],["-105.4940445","37.1894966"],["-105.4929272","37.1899902"],["-105.4916836","37.190443"],["-105.4902408","37.1908521"],["-105.4887837","37.1911811"],["-105.4876076","37.1913859"],["-105.4865789","37.1915129"],["-105.4858172","37.1915831"],["-105.4850567","37.1916307"],["-105.4830715","37.19164"],["-105.4595794","37.1916147"],["-105.4571878","37.1916617"],["-105.4564943","37.1917208"],["-105.4524829","37.1922032"],["-105.4518398","37.1922667"],["-105.4505068","37.1923288"],["-105.4497654","37.1923317"],["-105.4430146","37.1921465"],["-105.4413957","37.1921186"],["-105.441072","37.1921354"],["-105.4403053","37.1922025"],["-105.4399031","37.1922516"],["-105.4394869","37.1923246"],["-105.4389461","37.1924487"],["-105.4358364","37.19325"],["-105.4348055","37.1934953"],["-105.4344084","37.1935583"],["-105.433983","37.1935956"],["-105.4335517","37.1936169"],["-105.4329698","37.1936124"],["-105.4320363","37.1935798"],["-105.4318375","37.1935895"],["-105.4316208","37.1936099"],["-105.4314206","37.1936342"],["-105.4310232","37.1937099"],["-105.4308203","37.1937625"],["-105.4304618","37.1938657"],["-105.4302888","37.1939273"],["-105.4300886","37.1940045"],["-105.4299123","37.1940853"],["-105.4295759","37.1942844"],["-105.4292634","37.1945069"],["-105.4288347","37.1948547"],["-105.4287188","37.194968"],["-105.4286272","37.1950593"],["-105.4285549","37.1951328"],["-105.4285066","37.1951909"],["-105.4282128","37.1956964"],["-105.4276584","37.1966918"],["-105.4271549","37.1975915"],["-105.4269714","37.1978892"],["-105.4267364","37.1982058"],["-105.4266615","37.1983092"],["-105.4265075","37.1985206"],["-105.4263156","37.1988469"],["-105.4261026","37.1993559"],["-105.4260221","37.1996995"],["-105.4259217","37.2002646"],["-105.4255541","37.2022867"],["-105.4250581","37.2054126"],["-105.4254824","37.2168488"],["-105.4257005","37.2185435"],["-105.4316092","37.2524721"],["-105.4321491","37.2556801"],["-105.4322449","37.2562963"],["-105.4323636","37.2575351"],["-105.4323972","37.2580083"],["-105.4333538","37.2872432"],["-105.4331266","37.3168686"],["-105.4323549","37.3784698"],["-105.4323083","37.3825992"],["-105.4321948","37.3982322"],["-105.4320173","37.4196242"],["-105.4319661","37.4207349"],["-105.4317886","37.4218364"],["-105.43131","37.4246482"],["-105.4310549","37.426388"],["-105.4309627","37.4269582"],["-105.4307272","37.4271163"],["-105.4305668","37.4271239"],["-105.4304589","37.4271111"],["-105.4303672","37.4271186"],["-105.4301497","37.4270572"],["-105.4299044","37.4269649"],["-105.4285558","37.4264246"],["-105.4283273","37.4263467"],["-105.4280965","37.4262733"],["-105.4278598","37.4262131"],["-105.4275945","37.42616"],["-105.4273308","37.426129"],["-105.4270564","37.4261091"],["-105.4267886","37.4261076"],["-105.4260702","37.4261784"],["-105.4145537","37.427618"],["-105.4077519","37.4289563"],["-105.404647","37.4295957"],["-105.3999105","37.4306352"],["-105.3990248","37.4308802"],["-105.3982744","37.4311462"],["-105.3973047","37.4315964"],["-105.3961675","37.4322047"],["-105.3909575","37.4350438"],["-105.3889128","37.4361839"],["-105.3876276","37.4371315"],["-105.3572049","37.4618284"],["-105.3559105","37.4630941"],["-105.3546448","37.4646241"],["-105.3533693","37.4667532"],["-105.3400814","37.4914759"],["-105.3395905","37.4922169"],["-105.3389575","37.4929805"],["-105.3379066","37.4937471"],["-105.3370992","37.4941919"],["-105.3361905","37.4945756"],["-105.3354608","37.4948719"],["-105.3346118","37.4952149"],["-105.3337909","37.4955356"],["-105.3329274","37.4959657"],["-105.3322951","37.4963732"],["-105.3314812","37.4969801"],["-105.3305917","37.4981321"],["-105.3298229","37.4993156"],["-105.3291598","37.500124"],["-105.3288662","37.5004072"],["-105.3285786","37.5006684"],["-105.3262148","37.5024469"],["-105.319115","37.5077837"],["-105.3166001","37.5099506"],["-105.3148596","37.5115963"],["-105.313552","37.5128025"],["-105.3124902","37.5135382"],["-105.3115015","37.5140342"],["-105.3099231","37.5146027"],["-105.3095675","37.5147637"],["-105.3087125","37.5149141"],["-105.3057476","37.5153622"],["-105.3042832","37.5156413"],["-105.3035887","37.5158497"],["-105.3033244","37.5159583"],["-105.3029754","37.5161244"],["-105.3025744","37.5163418"],["-105.3022266","37.5165769"],["-105.301936","37.5168083"],["-105.3016119","37.5171109"],["-105.3013782","37.5173591"],["-105.3011472","37.5176674"],["-105.3009112","37.5180077"],["-105.3006735","37.5184738"],["-105.2968759","37.5288971"],["-105.2966202","37.5294939"],["-105.2961771","37.5302523"],["-105.2954892","37.5310806"],["-105.2946848","37.5318711"],["-105.2942549","37.5323469"],["-105.2939441","37.5327801"],["-105.2935361","37.5335333"],["-105.2929153","37.5348248"],["-105.2924071","37.5357603"],["-105.2912488","37.5374682"],["-105.2908115","37.5381027"],["-105.2898174","37.5394409"],["-105.2859529","37.5443708"],["-105.2851791","37.5453964"],["-105.2848565","37.5459329"],["-105.2846605","37.5463401"],["-105.2844763","37.5467892"],["-105.2842783","37.547478"],["-105.2841741","37.5484021"],["-105.2841762","37.5490352"],["-105.2842012","37.5495256"],["-105.2843626","37.5501431"],["-105.2846027","37.5508797"],["-105.2849722","37.5517336"],["-105.2857243","37.5534109"],["-105.2862016","37.554468"],["-105.2877037","37.5579351"],["-105.2878096","37.5582073"],["-105.2878966","37.5584598"],["-105.2879582","37.5588016"],["-105.288013","37.5591771"],["-105.2880224","37.5595654"],["-105.2879786","37.5599522"],["-105.2878024","37.5605661"],["-105.2876442","37.5609219"],["-105.2874036","37.5613163"],["-105.2872065","37.5615781"],["-105.2869889","37.5618317"],["-105.2791191","37.569289"],["-105.2787042","37.5696742"],["-105.2782447","37.5701532"],["-105.2776454","37.5708407"],["-105.2772535","37.5714056"],["-105.2762367","37.5730625"],["-105.2757661","37.5736494"],["-105.2752883","37.5741329"],["-105.2735687","37.5756015"],["-105.2729043","37.5762562"],["-105.2722831","37.5769226"],["-105.2712657","37.5781424"],["-105.2709333","37.5784969"],["-105.2705764","37.5787948"],["-105.2701384","37.5791072"],["-105.2697175","37.5793406"],["-105.2691442","37.579595"],["-105.2681333","37.5799307"],["-105.26681","37.5803579"],["-105.2660046","37.5806586"],["-105.2655064","37.5809164"],["-105.2650964","37.5811926"],["-105.264724","37.5815028"],["-105.2644401","37.5817942"],["-105.2637596","37.5826573"],["-105.2631658","37.5834759"],["-105.262603","37.5842223"],["-105.2621386","37.5847623"],["-105.2617231","37.5851496"],["-105.2611969","37.5855301"],["-105.2606967","37.585854"],["-105.2568923","37.5877493"],["-105.2555424","37.5883527"],["-105.2544837","37.5887676"],["-105.2535717","37.5890676"],["-105.2523328","37.589404"],["-105.2513745","37.589608"],["-105.2503124","37.5897899"],["-105.2488992","37.5900176"],["-105.2480883","37.5902016"],["-105.2474325","37.5904116"],["-105.2468115","37.5906784"],["-105.2462862","37.5909939"],["-105.2458126","37.5913179"],["-105.2453931","37.5916775"],["-105.2448174","37.5922787"],["-105.2444744","37.5927531"],["-105.2440008","37.5935289"],["-105.2436354","37.5939748"],["-105.2433309","37.5943272"],["-105.2429955","37.5946386"],["-105.2416997","37.5957176"],["-105.2411171","37.5962814"],["-105.2399251","37.5977087"],["-105.2395257","37.5981722"],["-105.2391096","37.5985231"],["-105.2387319","37.5987845"],["-105.238259","37.5990405"],["-105.2378001","37.5992372"],["-105.2370329","37.5995081"],["-105.2353094","37.6000473"],["-105.2329348","37.6008057"],["-105.2323529","37.6010326"],["-105.2317592","37.6013565"],["-105.2312965","37.6016922"],["-105.2309165","37.6020506"],["-105.2302938","37.6028266"],["-105.229757","37.6035764"],["-105.229343","37.6041247"],["-105.2288868","37.6045419"],["-105.2285269","37.6048292"],["-105.2279488","37.6051556"],["-105.2270581","37.6055613"],["-105.2210897","37.608121"],["-105.2169578","37.6098816"],["-105.2156141","37.6103632"],["-105.2147783","37.6105878"],["-105.2139843","37.6107631"],["-105.2131862","37.6109088"],["-105.208995","37.6114193"],["-105.2081675","37.6115515"],["-105.2075525","37.6117043"],["-105.2068877","37.6119436"],["-105.2061061","37.6123027"],["-105.2052792","37.612764"],["-105.1991994","37.61659"],["-105.198289","37.6171205"],["-105.1976229","37.6174021"],["-105.1970869","37.6175642"],["-105.1964958","37.6176851"],["-105.1958484","37.6177358"],["-105.1953209","37.6177374"],["-105.1947411","37.6176884"],["-105.1940795","37.6175515"],["-105.1934987","37.6173617"],["-105.1928328","37.6170721"],["-105.192071","37.6165552"],["-105.1917623","37.6162655"],["-105.1914307","37.615907"],["-105.1909993","37.6153615"],["-105.1905921","37.6147838"],["-105.1903339","37.6144534"],["-105.1901359","37.6141908"],["-105.1898803","37.6139012"],["-105.1896001","37.6136257"],["-105.1890802","37.6131722"],["-105.1885582","37.6128004"],["-105.18795","37.612438"],["-105.1870071","37.6119377"],["-105.1857494","37.6112904"],["-105.1849488","37.6108396"],["-105.1844343","37.6104842"],["-105.184026","37.610146"],["-105.1837558","37.6098952"],["-105.1835166","37.6096005"],["-105.1832916","37.6092957"],["-105.1830433","37.6089447"],["-105.1828689","37.6086186"],["-105.1827486","37.6083199"],["-105.1826468","37.6078552"],["-105.1825833","37.6073383"],["-105.1825785","37.6068819"],["-105.182615","37.6066041"],["-105.1826546","37.6063656"],["-105.1827598","37.6059729"],["-105.1829525","37.6055272"],["-105.1832166","37.6050303"],["-105.1837908","37.6042627"],["-105.184437","37.6035367"],["-105.1848371","37.6030401"],["-105.1851114","37.602577"],["-105.1852798","37.6021485"],["-105.1854039","37.6016707"],["-105.1854437","37.6011867"],["-105.1854411","37.6007036"],["-105.1853605","37.6002608"],["-105.185168","37.5995424"],["-105.1850348","37.5989462"],["-105.1849563","37.5983855"],["-105.1849244","37.5977982"],["-105.1849967","37.5970724"],["-105.185181","37.5956969"],["-105.1851783","37.5952236"],["-105.18514","37.594748"],["-105.1850739","37.594382"],["-105.184913","37.5939653"],["-105.1847257","37.5935667"],["-105.1845818","37.5933029"],["-105.1842504","37.5928663"],["-105.1837932","37.5923329"],["-105.1832318","37.5916977"],["-105.1827695","37.5911638"],["-105.1824072","37.5906935"],["-105.1821346","37.5902808"],["-105.1816454","37.5894287"],["-105.1810787","37.5883754"],["-105.1806839","37.5876634"],["-105.1799365","37.586463"],["-105.1794313","37.5857027"],["-105.1787555","37.5847969"],["-105.1776919","37.5834975"],["-105.1738442","37.5789864"],["-105.1724815","37.5774083"],["-105.1716577","37.5764582"],["-105.1707899","37.5754437"],["-105.1696923","37.5744837"],["-105.1690998","37.5740642"],["-105.1685466","37.5737109"],["-105.1675275","37.5732383"],["-105.1660542","37.5726024"],["-105.1597686","37.5699013"],["-105.155187","37.5679371"],["-105.1284813","37.5565304"],["-105.1261892","37.5555596"],["-105.1251016","37.5550963"],["-105.1229915","37.5542398"],["-105.1206712","37.5537864"],["-105.1153498","37.5536251"],["-105.1123104","37.5535068"],["-105.1114873","37.553417"],["-105.1108852","37.5533067"],["-105.1079752","37.5524451"],["-105.0957462","37.5486803"],["-105.0900335","37.5469207"],["-105.069307","37.5413889"],["-105.0685259","37.5412477"],["-105.0677383","37.5411512"],["-105.0667947","37.5411008"],["-105.0657446","37.5411436"],["-105.0096326","37.5441924"],["-105.0058441","37.5444271"],["-105.0048296","37.5445469"],["-105.0031696","37.5448761"],["-104.9863399","37.5487298"],["-104.9823339","37.5492424"],["-104.9604719","37.5516568"],["-104.9588379","37.5518397"],["-104.9577888","37.5519641"],["-104.9561112","37.5522457"],["-104.9554905","37.5523836"],["-104.9544172","37.5527555"],["-104.9373989","37.5597621"],["-104.9364797","37.5602803"],["-104.9354264","37.5609998"],["-104.9341794","37.5619811"],["-104.9308543","37.5644725"],["-104.9207267","37.5739705"],["-104.9199512","37.5746049"],["-104.918924","37.5752875"],["-104.9141646","37.5775132"],["-104.9012164","37.5834194"],["-104.899379","37.5842726"],["-104.8981801","37.584782"],["-104.8976532","37.5849783"],["-104.8972237","37.5850881"],["-104.8966364","37.5852145"],["-104.8959141","37.5853068"],["-104.8887325","37.5858087"],["-104.8874522","37.5858532"],["-104.8864122","37.585856"],["-104.879094","37.58579"],["-104.878695","37.5857957"],["-104.8784468","37.5858095"],["-104.8781599","37.5858334"],["-104.8778518","37.585875"],["-104.8775889","37.5859213"],["-104.8773138","37.5859873"],["-104.8770133","37.5860731"],["-104.8767527","37.5861564"],["-104.8764478","37.58627"],["-104.8761351","37.5863991"],["-104.8740223","37.5873206"],["-104.8736225","37.5875104"],["-104.873192","37.5877386"],["-104.8726621","37.5880425"],["-104.8721285","37.5883921"],["-104.8717304","37.5886712"],["-104.8713866","37.5889305"],["-104.8711064","37.5891619"],["-104.8636303","37.5957383"],["-104.8630015","37.5962722"],["-104.8626042","37.5965727"],["-104.8622663","37.5967888"],["-104.8619386","37.5969811"],["-104.8615714","37.5971583"],["-104.861238","37.5973049"],["-104.8608711","37.5974372"],["-104.8604684","37.5975607"],["-104.8600846","37.5976539"],["-104.859674","37.5977325"],["-104.8592723","37.5977975"],["-104.8587152","37.5978535"],["-104.8422385","37.5990356"],["-104.841234","37.5991333"],["-104.8393697","37.5993987"],["-104.838574","37.5995414"],["-104.8378895","37.5996819"],["-104.8372512","37.5998321"],["-104.836575","37.6000141"],["-104.8358252","37.6002511"],["-104.8351031","37.6004906"],["-104.8338357","37.6009492"],["-104.8332674","37.6011693"],["-104.831045","37.602206"],["-104.8289693","37.6033526"],["-104.8271719","37.6043779"],["-104.8255504","37.6052518"],["-104.8241258","37.6059482"],["-104.8226427","37.6065946"],["-104.8209085","37.6072872"],["-104.8141045","37.6098352"],["-104.8136256","37.6100046"],["-104.813261","37.6101177"],["-104.8129249","37.6102059"],["-104.8126532","37.6102619"],["-104.8123663","37.6103098"],["-104.8121134","37.6103389"],["-104.8117733","37.6103567"],["-104.8105092","37.6103807"],["-104.8101198","37.6103927"],["-104.8097977","37.6104099"],["-104.8095322","37.6104333"],["-104.8092526","37.6104686"],["-104.8090056","37.6105108"],["-104.8087425","37.6105612"],["-104.808497","37.6106217"],["-104.808271","37.6106866"],["-104.8080374","37.6107616"],["-104.8078172","37.6108397"],["-104.8075527","37.6109508"],["-104.8072396","37.6110984"],["-104.8007691","37.6143941"],["-104.8002169","37.6147308"],["-104.7984101","37.6159481"],["-104.7981206","37.6161386"],["-104.7971415","37.6168035"],["-104.7965671","37.6171933"],["-104.7963252","37.6173425"],["-104.7961095","37.6174695"],["-104.7959319","37.6175531"],["-104.7955996","37.6176715"],["-104.7803849","37.6227236"],["-104.7806648","37.6232718"],["-104.7810424","37.6239841"],["-104.7811792","37.6242399"],["-104.7814038","37.6246615"],["-104.7816218","37.6250804"],["-104.7817167","37.6252666"],["-104.7817463","37.6253258"],["-104.7818418","37.6255117"],["-104.7818797","37.6255845"],["-104.7828146","37.6273607"],["-104.7829585","37.6276286"],["-104.7830335","37.6277051"],["-104.7830811","37.6277421"],["-104.783137","37.6277791"],["-104.7831654","37.627796"],["-104.7832042","37.6278138"],["-104.7834652","37.6279198"],["-104.7835088","37.6279411"],["-104.7835445","37.6279633"],["-104.783627","37.6280382"],["-104.783664","37.628076"],["-104.7837737","37.6282039"],["-104.7839887","37.6284641"],["-104.7876384","37.6328565"],["-104.7886028","37.6340209"],["-104.7888495","37.6343033"],["-104.7889462","37.6344224"],["-104.7890153","37.6345118"],["-104.7891226","37.634674"],["-104.7892761","37.6349402"],["-104.789316","37.6350309"],["-104.7893431","37.635093"],["-104.7893629","37.6351459"],["-104.7893847","37.6352118"],["-104.7894113","37.6352972"],["-104.7894345","37.6353782"],["-104.7894491","37.635433"],["-104.7894564","37.6354717"],["-104.7894655","37.63552"],["-104.7894921","37.6357219"],["-104.7895034","37.63582"],["-104.7895105","37.6359019"],["-104.789976","37.645225"],["-104.7900824","37.6467864"],["-104.7901213","37.6470748"],["-104.7901419","37.6471933"],["-104.7901674","37.6473227"],["-104.7902005","37.6474739"],["-104.7902323","37.647602"],["-104.7902626","37.6477102"],["-104.7903316","37.6479294"],["-104.7903667","37.6480299"],["-104.7904688","37.6482984"],["-104.7905335","37.6484572"],["-104.7906008","37.6486151"],["-104.7910148","37.6494928"],["-104.7936681","37.6549328"],["-104.7937815","37.6552126"],["-104.7938343","37.655404"],["-104.7938594","37.65553"],["-104.7938665","37.6555953"],["-104.7938772","37.6557282"],["-104.7938805","37.6558036"],["-104.793873","37.65587"],["-104.7938534","37.6560088"],["-104.7938217","37.6561649"],["-104.7937516","37.6564194"],["-104.7936763","37.6566201"],["-104.7936146","37.6567629"],["-104.7934433","37.6571516"],["-104.7932237","37.6576715"],["-104.7931278","37.6579246"],["-104.7931137","37.6579739"],["-104.7930864","37.6580863"],["-104.7930743","37.6581579"],["-104.7930674","37.6582385"],["-104.7930665","37.6582962"],["-104.7930674","37.6583453"],["-104.7930721","37.6583978"],["-104.7930811","37.6584616"],["-104.7930932","37.6585346"],["-104.7931135","37.6586153"],["-104.7931434","37.6587168"],["-104.7932049","37.6588455"],["-104.7932483","37.6589299"],["-104.793282","37.6589916"],["-104.7933147","37.6590461"],["-104.7933462","37.6590941"],["-104.793385","37.6591451"],["-104.7934824","37.6592451"],["-104.7935604","37.6593162"],["-104.793639","37.6593824"],["-104.7937575","37.6594682"],["-104.7938587","37.6595322"],["-104.794005","37.6596155"],["-104.7944887","37.659861"],["-104.7949934","37.6601218"],["-104.795309","37.6603001"],["-104.7955935","37.6604879"],["-104.7958428","37.6606796"],["-104.7960198","37.6608312"],["-104.7962039","37.6609978"],["-104.7963818","37.6611874"],["-104.7965542","37.6613793"],["-104.7967736","37.6616384"],["-104.7971091","37.6622335"],["-104.7972497","37.6625081"],["-104.797413","37.6628503"],["-104.7978134","37.6637682"],["-104.8043888","37.6791784"],["-104.8049298","37.6804486"],["-104.8107942","37.6942216"],["-104.8117536","37.6964744"],["-104.8310997","37.7418253"],["-104.8338122","37.7482119"],["-104.8351607","37.7514785"],["-104.8353125","37.7518892"],["-104.8354244","37.7522598"],["-104.8355103","37.7526489"],["-104.8355784","37.7530517"],["-104.8356063","37.7534456"],["-104.8356122","37.7538523"],["-104.8354573","37.757399"],["-104.8350973","37.7646885"],["-104.8349451","37.7675851"],["-104.8349256","37.7679517"],["-104.834898","37.768358"],["-104.8348773","37.768563"],["-104.8348126","37.7690141"],["-104.8347727","37.7692519"],["-104.828637","37.8016895"],["-104.8285582","37.8021835"],["-104.8285293","37.8024044"],["-104.8285104","37.8025785"],["-104.8284987","37.8027321"],["-104.8284892","37.8029011"],["-104.8284826","37.803135"],["-104.8288522","37.9081836"],["-104.8287835","37.9092707"],["-104.8286184","37.9101717"],["-104.8284155","37.9109782"],["-104.8281344","37.9118826"],["-104.8275321","37.9133141"],["-104.8227558","37.9235299"],["-104.8177326","37.9343581"],["-104.8169102","37.9359584"],["-104.8165258","37.9364814"],["-104.8159316","37.9370336"],["-104.8153871","37.937411"],["-104.8148008","37.9377085"],["-104.8141952","37.9379692"],["-104.8133919","37.9382067"],["-104.8116968","37.938507"],["-104.8099079","37.9388206"],["-104.8089657","37.9390232"],["-104.8082965","37.939247"],["-104.8074345","37.9396796"],["-104.806863","37.9400909"],["-104.8063778","37.940547"],["-104.8060565","37.9409532"],["-104.8056187","37.9418232"],["-104.8040932","37.9458395"],["-104.8013203","37.9531695"],["-104.8002543","37.9559752"],["-104.7996619","37.9572595"],["-104.7991443","37.9580796"],["-104.7987363","37.958643"],["-104.7981768","37.9593251"],["-104.7976158","37.9599852"],["-104.7970497","37.9606043"],["-104.7964008","37.9612395"],["-104.7874033","37.9691063"],["-104.783766","37.9721774"],["-104.7809784","37.9746989"],["-104.7796529","37.9761161"],["-104.7778529","37.9786737"],["-104.7759286","37.9814137"],["-104.7743845","37.9832503"],["-104.7714252","37.9861633"],["-104.7690685","37.9884226"],["-104.7651229","37.9920101"],["-104.7579276","37.9981116"],["-104.7557749","38.0002509"],["-104.7372227","38.0221947"],["-104.7334386","38.026648"],["-104.7328449","38.0273811"],["-104.7322853","38.0281143"],["-104.7315676","38.0292756"],["-104.7310873","38.0301995"],["-104.7305797","38.0314766"],["-104.7302759","38.0325487"],["-104.7300794","38.0333244"],["-104.7299761","38.0340415"],["-104.7298846","38.0348562"],["-104.7297599","38.0362468"],["-104.7296327","38.0375031"],["-104.7294483","38.0385537"],["-104.7292392","38.0393873"],["-104.7289575","38.0401963"],["-104.7285528","38.041188"],["-104.7282465","38.0418166"],["-104.7278597","38.0425182"],["-104.7272806","38.0433918"],["-104.7264818","38.0444952"],["-104.725746","38.0455123"],["-104.7253153","38.046149"],["-104.7249557","38.0467792"],["-104.7245225","38.0476447"],["-104.7224802","38.0526959"],["-104.7220523","38.0536637"],["-104.7216366","38.0544106"],["-104.7211449","38.0551709"],["-104.7206392","38.0558896"],["-104.719815","38.0568761"],["-104.7173416","38.059726"],["-104.7157313","38.0614413"],["-104.7144245","38.0632984"],["-104.7061066","38.0781538"],["-104.7024794","38.0822572"],["-104.6881882","38.0977544"],["-104.6814297","38.1048949"],["-104.6793089","38.1072042"],["-104.6774453","38.109259"],["-104.6745949","38.1124268"],["-104.6733806","38.113902"],["-104.6723979","38.1155285"],["-104.6716887","38.1172961"],["-104.67143","38.1181578"],["-104.6698765","38.1278683"],["-104.6697074","38.1284489"],["-104.6692728","38.1293649"],["-104.6686238","38.1303934"],["-104.6545916","38.1484461"],["-104.6457977","38.1581407"],["-104.6429945","38.1610857"],["-104.6406772","38.1641601"],["-104.6364108","38.1703654"],["-104.6350978","38.1726405"],["-104.6343073","38.1748259"],["-104.633981","38.1767768"],["-104.6331604","38.1868169"],["-104.6325121","38.1944556"],["-104.6323164","38.196454"],["-104.6321105","38.1976623"],["-104.6288457","38.2071242"],["-104.6286306","38.2079409"],["-104.6282133","38.2091081"],["-104.628091","38.2094191"],["-104.6279572","38.2097061"],["-104.6278361","38.2099409"],["-104.6277172","38.2101519"],["-104.6274555","38.2105595"],["-104.6272874","38.2107996"],["-104.6271191","38.211027"],["-104.6269203","38.2112663"],["-104.6267178","38.2114934"],["-104.6264717","38.2117575"],["-104.6225804","38.2156653"],["-104.622144","38.2160656"],["-104.6218852","38.2162908"],["-104.6201653","38.2177032"],["-104.6193693","38.2183478"],["-104.618278","38.2192205"],["-104.6164175","38.2207327"],["-104.6161572","38.2209546"],["-104.6159223","38.2211668"],["-104.6157151","38.2213739"],["-104.6155311","38.2215753"],["-104.6153279","38.2218191"],["-104.6149679","38.2222976"],["-104.6147475","38.2226542"],["-104.6145942","38.2229391"],["-104.6144774","38.2231788"],["-104.6143697","38.2234283"],["-104.6142881","38.2236511"],["-104.6142217","38.223858"],["-104.6141617","38.2240737"],["-104.6141146","38.2242746"],["-104.6140778","38.2244719"],["-104.6140425","38.224716"],["-104.6140094","38.2250129"],["-104.6139788","38.2253823"],["-104.6139502","38.225916"],["-104.6139284","38.2279968"],["-104.6138763","38.2299657"],["-104.613829","38.2316178"],["-104.6137835","38.2319803"],["-104.6137357","38.2322595"],["-104.6136648","38.2325318"],["-104.6135682","38.2328213"],["-104.6134323","38.2331581"],["-104.613243","38.2335727"],["-104.6125777","38.2349044"],["-104.6123531","38.2353877"],["-104.6121675","38.235855"],["-104.6120742","38.2361241"],["-104.6120065","38.2363602"],["-104.6119434","38.2366171"],["-104.6118871","38.2369151"],["-104.6118376","38.2372392"],["-104.6118136","38.2374971"],["-104.6117954","38.237743"],["-104.6117865","38.2381886"],["-104.611787","38.2388002"],["-104.6117947","38.2395506"],["-104.6119175","38.2402762"],["-104.6122903","38.2416353"],["-104.6123344","38.2419535"],["-104.6123241","38.2422069"],["-104.6122969","38.2423821"],["-104.6122461","38.2425784"],["-104.6121016","38.2430149"],["-104.6119291","38.2435785"],["-104.6118443","38.2443996"],["-104.6118549","38.2451483"],["-104.6118663","38.2468822"],["-104.6118216","38.2473406"],["-104.6117243","38.2476933"],["-104.6116213","38.2479569"],["-104.6114478","38.2482415"],["-104.6109666","38.2488604"],["-104.6102269","38.2497914"],["-104.6101225","38.2499359"],["-104.6100356","38.2500664"],["-104.6099413","38.2502143"],["-104.609863","38.2503627"],["-104.6097946","38.2505197"],["-104.6097398","38.250667"],["-104.6096918","38.2508217"],["-104.6096548","38.2509762"],["-104.6096279","38.2511231"],["-104.6096082","38.2512832"],["-104.6095994","38.2514362"],["-104.6095917","38.2517642"],["-104.6095793","38.2522067"],["-104.6095591","38.2523909"],["-104.6095338","38.2525269"],["-104.6094983","38.252669"],["-104.6094571","38.2528046"],["-104.6093997","38.2529601"],["-104.6093328","38.2531126"],["-104.6092599","38.2532569"],["-104.609175","38.2534045"],["-104.6090806","38.2535491"],["-104.6089792","38.2536873"],["-104.6087574","38.2539462"],["-104.6075633","38.255281"],["-104.607035","38.2558459"],["-104.6062455","38.2567163"],["-104.6058903","38.2570991"],["-104.6055966","38.2574258"],["-104.6054511","38.2576776"],["-104.6053419","38.257891"],["-104.605273","38.2580588"],["-104.6052126","38.2582251"],["-104.6051699","38.2583791"],["-104.6051098","38.2586675"],["-104.6050574","38.2589356"],["-104.6050291","38.2591647"],["-104.6050057","38.2595444"],["-104.6050268","38.261412"],["-104.605011","38.2622961"],["-104.6049749","38.2628595"],["-104.6048205","38.2639908"],["-104.6046463","38.2650803"],["-104.6045109","38.2654672"],["-104.604459","38.2657441"],["-104.6044407","38.2661763"],["-104.6044207","38.2668843"],["-104.6044026","38.2675164"],["-104.6043192","38.2677275"],["-104.6041823","38.2678283"],["-104.6039648","38.2679716"],["-104.6039727","38.2693194"],["-104.60399","38.2697776"],["-104.604053","38.2707059"],["-104.6115972","38.2706268"],["-104.6116087","38.271053"],["-104.6116106","38.2711311"],["-104.6116134","38.2715398"],["-104.6111972","38.271547"],["-104.6110211","38.2715483"],["-104.6049019","38.2716277"],["-104.6041052","38.2716841"],["-104.6040743","38.2724401"],["-104.6040655","38.2727124"],["-104.6040366","38.2729171"],["-104.6040327","38.2729891"],["-104.6039474","38.2732764"],["-104.6038996","38.2734927"],["-104.6038702","38.2736859"],["-104.6038549","38.2740015"],["-104.6038882","38.2757209"],["-104.6039307","38.2762767"],["-104.6041624","38.2769331"],["-104.6042967","38.277236"],["-104.604756","38.2781678"],["-104.6048341","38.2783501"],["-104.6049175","38.2785598"],["-104.6049867","38.2787769"],["-104.605053","38.2790134"],["-104.6051044","38.2792201"],["-104.6051445","38.279405"],["-104.6051746","38.2795965"],["-104.6052001","38.2798234"],["-104.6052163","38.2800919"],["-104.6052153","38.2804779"],["-104.6051747","38.2816173"],["-104.6051716","38.2831116"],["-104.6052005","38.2843884"],["-104.6052592","38.2849713"],["-104.6053201","38.2852658"],["-104.6054149","38.2855718"],["-104.6067461","38.2892993"],["-104.6071007","38.2902637"],["-104.6072592","38.2906185"],["-104.609411","38.2946339"],["-104.6100075","38.2955317"],["-104.6109293","38.2968976"],["-104.6111971","38.2973474"],["-104.6113931","38.2976952"],["-104.6115317","38.2979761"],["-104.6116771","38.29835"],["-104.6118136","38.2987516"],["-104.611931","38.2991868"],["-104.6120323","38.2997157"],["-104.612448","38.3020975"],["-104.613752","38.3080796"],["-104.6145872","38.311959"],["-104.6149147","38.3137358"],["-104.6150851","38.3149177"],["-104.6151561","38.315567"],["-104.6153078","38.3178213"],["-104.615439","38.3230375"],["-104.6155047","38.323889"],["-104.6155729","38.3244568"],["-104.6157503","38.3254425"],["-104.6159543","38.3262942"],["-104.6161719","38.3270792"],["-104.6170125","38.3296422"],["-104.6175967","38.3314175"],["-104.6191931","38.3363702"],["-104.6194151","38.3371564"],["-104.6195621","38.337833"],["-104.6196523","38.3383398"],["-104.6197181","38.3389056"],["-104.6197635","38.3400297"],["-104.6197946","38.3441556"],["-104.6198181","38.3451539"],["-104.6205718","38.3590304"],["-104.6206978","38.3616324"],["-104.6207014","38.3643686"],["-104.6205151","38.3674574"],["-104.620255","38.3698741"],["-104.6194895","38.3757884"],["-104.6192855","38.3772981"],["-104.6190489","38.3791168"],["-104.618717","38.3817095"],["-104.6186959","38.3821959"],["-104.6186911","38.3828829"],["-104.6187693","38.3841642"],["-104.6188552","38.3848399"],["-104.6191078","38.3863322"],["-104.6197015","38.3897596"],["-104.6197667","38.3906955"],["-104.619761","38.3920119"],["-104.6196144","38.3933754"],["-104.6191665","38.3950604"],["-104.6181356","38.3979172"],["-104.6172805","38.4002092"],["-104.6152143","38.4056603"],["-104.6126365","38.412468"],["-104.6083475","38.4238426"],["-104.6079508","38.425188"],["-104.6077665","38.4261749"],["-104.6075023","38.4279048"],["-104.6065726","38.4352187"],["-104.606209","38.4385526"],["-104.6056794","38.4465953"],["-104.6056782","38.4482031"],["-104.6061615","38.4531895"],["-104.6063834","38.4543608"],["-104.6067136","38.4554988"],["-104.6077988","38.4581624"],["-104.6085147","38.4599337"],["-104.6147648","38.4751234"],["-104.6255829","38.4981028"],["-104.6258555","38.4987721"],["-104.6262257","38.4999013"],["-104.626494","38.5011402"],["-104.6268832","38.5032097"],["-104.6289389","38.5140104"],["-104.6292707","38.5155888"],["-104.6295181","38.5163997"],["-104.6299163","38.5174435"],["-104.6303518","38.5183838"],["-104.6459401","38.5490693"],["-104.646587","38.5503505"],["-104.6475008","38.5523718"],["-104.6500211","38.5580679"],["-104.6507024","38.5595939"],["-104.6511245","38.5605524"],["-104.6517236","38.5619189"],["-104.6529454","38.5646131"],["-104.6556343","38.5701308"],["-104.6563138","38.571401"],["-104.6566038","38.571829"],["-104.6569451","38.5722572"],["-104.6664388","38.5823482"],["-104.6668479","38.5828211"],["-104.6671448","38.5832142"],["-104.6674522","38.5837015"],["-104.6694578","38.5874067"],["-104.6698798","38.5881503"],["-104.6777565","38.6026131"],["-104.6788376","38.6043423"],["-104.6804577","38.6067148"],["-104.6842652","38.6119634"],["-104.6857435","38.6139667"],["-104.687068","38.6158714"],["-104.6875318","38.6167676"],["-104.6881567","38.6183188"],["-104.6885468","38.6195107"],["-104.6918703","38.6349219"],["-104.6935001","38.6425259"],["-104.693989","38.6445164"],["-104.7000596","38.6600155"],["-104.701176","38.6626576"],["-104.7020757","38.6642508"],["-104.7030809","38.6655844"],["-104.7124383","38.6776045"],["-104.7127429","38.6780546"],["-104.7129988","38.6784575"],["-104.7132029","38.6787997"],["-104.7133867","38.6791495"],["-104.7138012","38.6799891"],["-104.7198345","38.6930865"],["-104.7200502","38.6935979"],["-104.7202287","38.6940976"],["-104.7203619","38.694519"],["-104.7205101","38.6950411"],["-104.7230044","38.7054646"],["-104.7232385","38.7063191"],["-104.7234421","38.7069314"],["-104.7237964","38.7078328"],["-104.7256478","38.7123122"],["-104.7263188","38.7139406"],["-104.7286811","38.7195097"],["-104.7289548","38.7200597"],["-104.7292277","38.7205813"],["-104.7294321","38.7209274"],["-104.7295778","38.7211663"],["-104.7298112","38.7215113"],["-104.7301815","38.7220346"],["-104.7305419","38.7225217"],["-104.7308167","38.7228631"],["-104.7313203","38.7234232"],["-104.7320209","38.7241592"],["-104.732492","38.7246464"],["-104.733982","38.7260969"],["-104.7347517","38.7268435"],["-104.7624631","38.7541866"],["-104.7641901","38.7558668"],["-104.7649087","38.7564757"],["-104.7659925","38.7572931"],["-104.7700863","38.7602677"],["-104.7704409","38.7605195"],["-104.7708604","38.7608305"],["-104.7711129","38.7610244"],["-104.771597","38.7613744"],["-104.7731302","38.7625882"],["-104.7743907","38.7636969"],["-104.7756415","38.7649131"],["-104.7760057","38.7652892"],["-104.7771018","38.7665199"],["-104.7775304","38.7670262"],["-104.7780641","38.7677055"],["-104.7786077","38.768436"],["-104.7795002","38.7697205"],["-104.7798857","38.7703323"],["-104.7803997","38.7711815"],["-104.7810971","38.7725047"],["-104.7815615","38.7734869"],["-104.7817896","38.7739994"],["-104.7822965","38.7752582"],["-104.7825519","38.7758907"],["-104.7827702","38.7763657"],["-104.7829698","38.7767561"],["-104.7832795","38.7773142"],["-104.783589","38.7778374"],["-104.7838562","38.7782343"],["-104.7840636","38.7785232"],["-104.7844529","38.7790399"],["-104.7853233","38.780106"],["-104.7941486","38.7905747"],["-104.7948451","38.7914874"],["-104.7952514","38.7920744"],["-104.7957079","38.7928437"],["-104.7961189","38.7936375"],["-104.7969244","38.7952587"],["-104.7971684","38.7957589"],["-104.7983256","38.7980375"],["-104.7985534","38.7984788"],["-104.7992476","38.7998678"],["-104.800255","38.8018759"],["-104.8005034","38.8023327"],["-104.8007337","38.802733"],["-104.8009435","38.8030641"],["-104.8015421","38.8039284"],["-104.8018572","38.8043253"],["-104.8021922","38.8047333"],["-104.8025134","38.8050976"],["-104.8028384","38.8054506"],["-104.8030902","38.805703"],["-104.8035114","38.8060997"],["-104.804085","38.806611"],["-104.8046663","38.8070851"],["-104.8052507","38.8075283"],["-104.8120555","38.8124294"],["-104.8128477","38.8129222"],["-104.8138379","38.8134397"],["-104.8159337","38.814299"],["-104.8164635","38.814481"],["-104.8169592","38.8146313"],["-104.8183458","38.8150323"],["-104.8190754","38.815204"],["-104.8195884","38.8152891"],["-104.8201689","38.8153523"],["-104.8207593","38.815398"],["-104.8214045","38.8154102"],["-104.8214401","38.815411"],["-104.8223671","38.815428"],["-104.822285","38.8155514"],["-104.8222808","38.8155672"],["-104.8222785","38.8156097"],["-104.8223035","38.8163761"],["-104.822321","38.8169549"],["-104.8223365","38.817478"],["-104.8223573","38.8178691"],["-104.8224051","38.8182536"],["-104.8224732","38.8183767"],["-104.8224832","38.8184621"],["-104.8224874","38.8185086"],["-104.8225889","38.8194363"],["-104.8226026","38.8197996"],["-104.8225545","38.819958"],["-104.8225514","38.8203017"],["-104.8224951","38.8208801"],["-104.8221343","38.8237298"],["-104.8221072","38.8242628"],["-104.8220971","38.8244826"],["-104.821997","38.8263768"],["-104.8218893","38.8281811"],["-104.8218367","38.8293705"],["-104.8217562","38.8309079"],["-104.8217437","38.8310643"],["-104.8217271","38.8312985"],["-104.8217144","38.8315103"],["-104.8216708","38.8322706"],["-104.8216635","38.8324253"],["-104.8216355","38.8330135"],["-104.8216266","38.8332173"],["-104.8216117","38.8336253"],["-104.8216071","38.8337297"],["-104.8215931","38.833907"],["-104.8215658","38.8343542"],["-104.8215398","38.8352695"],["-104.8214791","38.8366405"],["-104.8249538","38.8367577"],["-104.8251148","38.8367658"],["-104.8253024","38.8367877"],["-104.8255082","38.8368147"],["-104.82592","38.836865"],["-104.8260544","38.8368748"],["-104.8262134","38.8368845"],["-104.8265357","38.8368824"],["-104.8269044","38.8368924"],["-104.8284539","38.8369694"],["-104.8294302","38.8369967"],["-104.8295442","38.8370433"],["-104.8296228","38.8370849"],["-104.8296789","38.8371162"],["-104.8297176","38.8371437"],["-104.8297509","38.8371697"],["-104.8297967","38.8372249"],["-104.8298314","38.8373334"],["-104.8297715","38.8381683"],["-104.8297229","38.8389389"],["-104.8297401","38.8407036"],["-104.8297669","38.841318"],["-104.829828","38.8419563"],["-104.829913","38.8424387"],["-104.8300094","38.843024"],["-104.8307028","38.8466798"],["-104.8310351","38.8478099"],["-104.8315231","38.8492385"],["-104.8318201","38.8503302"],["-104.8319938","38.8512062"],["-104.8321578","38.8522621"],["-104.8323257","38.8537391"],["-104.8324066","38.8541691"],["-104.8325948","38.8548519"],["-104.8327044","38.85515"],["-104.8329549","38.8556642"],["-104.8332301","38.8562144"],["-104.8335152","38.8567899"],["-104.833697","38.857281"],["-104.8338247","38.8576841"],["-104.8339205","38.8580296"],["-104.8339915","38.8584454"],["-104.8340317","38.8588996"],["-104.8340404","38.8596346"],["-104.8340375","38.8603864"],["-104.8339992","38.8610376"],["-104.8339108","38.8616494"],["-104.8337113","38.8624423"],["-104.8334524","38.8634129"],["-104.833348","38.8638575"],["-104.8332904","38.864244"],["-104.833251","38.8646678"],["-104.8332325","38.8651231"],["-104.833258","38.8677367"],["-104.833281","38.8686841"],["-104.8332891","38.8687863"],["-104.8333047","38.8689379"],["-104.8333512","38.8692922"],["-104.8333739","38.869452"],["-104.8333912","38.8695497"],["-104.8355614","38.8793404"],["-104.8356146","38.8795975"],["-104.8357781","38.8806497"],["-104.8358156","38.8810624"],["-104.8358279","38.8812777"],["-104.8358355","38.8814694"],["-104.8358448","38.881705"],["-104.8358339","38.8825605"],["-104.8358191","38.8827897"],["-104.8357925","38.8831011"],["-104.8357399","38.883577"],["-104.8356806","38.8839759"],["-104.83556","38.8845927"],["-104.8354759","38.8849699"],["-104.8353617","38.8853887"],["-104.8350747","38.8862491"],["-104.8348518","38.8868146"],["-104.8346128","38.8873533"],["-104.8342892","38.8880092"],["-104.8318193","38.8927705"],["-104.8311836","38.8941582"],["-104.8260392","38.9065983"],["-104.8257406","38.9072877"],["-104.8254626","38.9078736"],["-104.82522","38.9083023"],["-104.8249058","38.9087956"],["-104.8245793","38.9092332"],["-104.8242298","38.9096681"],["-104.8238923","38.9100432"],["-104.8224822","38.9112386"],["-104.8172583","38.9152215"],["-104.8167936","38.9156722"],["-104.8164347","38.9160776"],["-104.8161244","38.9164467"],["-104.815686","38.9170804"],["-104.815399","38.9175777"],["-104.8152451","38.9179146"],["-104.81505","38.9183849"],["-104.8148484","38.9189901"],["-104.8146779","38.9196981"],["-104.814433","38.9210958"],["-104.8124278","38.9332931"],["-104.812362","38.9339695"],["-104.8123316","38.9344916"],["-104.8123189","38.9349198"],["-104.8123269","38.9353951"],["-104.8123471","38.9359177"],["-104.8124006","38.9364782"],["-104.8124633","38.9369916"],["-104.812542","38.9374997"],["-104.8126185","38.9379148"],["-104.8128671","38.9392177"],["-104.8137543","38.9433569"],["-104.8138398","38.9439442"],["-104.8138668","38.9441995"],["-104.8138785","38.9445717"],["-104.8138741","38.9447522"],["-104.8138636","38.9449398"],["-104.8138449","38.9451548"],["-104.8138164","38.9453953"],["-104.8137884","38.9456064"],["-104.8137572","38.9457732"],["-104.8137243","38.9459288"],["-104.8136699","38.9461626"],["-104.8136031","38.9463928"],["-104.8135317","38.9466065"],["-104.8134633","38.946797"],["-104.8134006","38.946958"],["-104.8133265","38.9471367"],["-104.8132428","38.9473255"],["-104.8130408","38.947711"],["-104.8129074","38.9479452"],["-104.8127298","38.9482157"],["-104.8125387","38.9484947"],["-104.8123371","38.9487604"],["-104.8121384","38.9489957"],["-104.8119544","38.9492"],["-104.811737","38.9494234"],["-104.8115401","38.9496154"],["-104.8113082","38.9498282"],["-104.8108803","38.9501728"],["-104.8105133","38.9504409"],["-104.8099826","38.9507816"],["-104.8051264","38.9536941"],["-104.8044889","38.9540959"],["-104.8041951","38.9543027"],["-104.8038982","38.9545306"],["-104.8033839","38.9549609"],["-104.8031458","38.955192"],["-104.8027666","38.9555876"],["-104.8025545","38.9558417"],["-104.8023474","38.9561028"],["-104.802141","38.9563782"],["-104.8018662","38.9568265"],["-104.8017405","38.9570468"],["-104.8016044","38.9573082"],["-104.8013856","38.957821"],["-104.8012769","38.9581331"],["-104.8011692","38.9584764"],["-104.8010798","38.9588465"],["-104.8010035","38.9593104"],["-104.8009627","38.9596924"],["-104.8009505","38.9600992"],["-104.8009638","38.9604936"],["-104.8009893","38.9608661"],["-104.8010315","38.9611629"],["-104.8010779","38.9614282"],["-104.8011779","38.96184"],["-104.8013168","38.9622683"],["-104.80146","38.9626222"],["-104.8114932","38.9829697"],["-104.8121632","38.9843578"],["-104.8123639","38.9848306"],["-104.8179364","39.0001032"],["-104.8183582","39.0012237"],["-104.818559","39.0017019"],["-104.8190452","39.0026741"],["-104.8192434","39.0030304"],["-104.8218106","39.0072126"],["-104.8274923","39.0167415"],["-104.8277653","39.0171849"],["-104.8296158","39.0203045"],["-104.8319837","39.0242092"],["-104.8328916","39.025767"],["-104.8482149","39.0515895"],["-104.8530112","39.0596177"],["-104.8551736","39.0632635"],["-104.8553668","39.0636203"],["-104.8555717","39.0640521"],["-104.8557909","39.0645438"],["-104.8561131","39.0653671"],["-104.8562621","39.0658765"],["-104.8564891","39.0667747"],["-104.8594372","39.0792702"],["-104.8604497","39.0833855"],["-104.8633992","39.0961523"],["-104.8655635","39.1147777"],["-104.8656924","39.1159963"],["-104.8657099","39.1165553"],["-104.8657149","39.1171495"],["-104.8656633","39.1180328"],["-104.8655643","39.1187465"],["-104.8653551","39.1200185"],["-104.8632239","39.13284"],["-104.8630936","39.1336399"],["-104.8618947","39.140676"],["-104.8616565","39.1417146"],["-104.8615307","39.142217"],["-104.8613573","39.1428446"],["-104.8611873","39.1433854"],["-104.8605079","39.145296"],["-104.8511645","39.170375"],["-104.8508521","39.1715165"],["-104.8507367","39.1719804"],["-104.8506081","39.1725622"],["-104.8503725","39.1738016"],["-104.8502649","39.174498"],["-104.8501889","39.1751112"],["-104.850128","39.1758099"],["-104.8500497","39.1771164"],["-104.850039","39.1776612"],["-104.850176","39.1840141"],["-104.8502243","39.1858803"],["-104.8503125","39.1886681"],["-104.850341","39.1890765"],["-104.8503804","39.1894169"],["-104.8504325","39.1898015"],["-104.8504937","39.1901584"],["-104.8505849","39.1905868"],["-104.8506775","39.1909712"],["-104.850797","39.191423"],["-104.8509375","39.1918533"],["-104.8510796","39.19225"],["-104.8513743","39.192993"],["-104.8516273","39.1935298"],["-104.851768","39.1938112"],["-104.8519386","39.1941299"],["-104.8522254","39.1946093"],["-104.8580911","39.2038159"],["-104.8583292","39.2041747"],["-104.8585056","39.2044218"],["-104.8586664","39.2046256"],["-104.8588473","39.2048382"],["-104.8590045","39.2050155"],["-104.8594226","39.2054384"],["-104.8596606","39.2056537"],["-104.8599379","39.205887"],["-104.8602378","39.2061217"],["-104.86061","39.2063789"],["-104.8609801","39.2066139"],["-104.8717659","39.2130101"],["-104.8721159","39.2132331"],["-104.8724718","39.2134716"],["-104.8731983","39.2139886"],["-104.8735341","39.2142447"],["-104.8738792","39.214521"],["-104.8758493","39.2162285"],["-104.8762239","39.2165572"],["-104.876496","39.216816"],["-104.8767189","39.2170451"],["-104.8769698","39.2173149"],["-104.8773846","39.2178282"],["-104.8775622","39.2180756"],["-104.8777345","39.2183477"],["-104.8778989","39.2186325"],["-104.8780505","39.2189189"],["-104.8781901","39.2192172"],["-104.8782952","39.2194809"],["-104.8783921","39.2197438"],["-104.878515","39.2201689"],["-104.8785848","39.2204486"],["-104.8786929","39.2210978"],["-104.8787174","39.2214137"],["-104.8787136","39.2217734"],["-104.8786792","39.222253"],["-104.8774913","39.2319117"],["-104.877336","39.2334202"],["-104.8772672","39.2362521"],["-104.8772589","39.2399078"],["-104.8772739","39.2402179"],["-104.8772931","39.2404705"],["-104.8773296","39.2407407"],["-104.8773719","39.2409814"],["-104.8774245","39.2412349"],["-104.8774901","39.2414817"],["-104.8776654","39.2420095"],["-104.8777789","39.2422797"],["-104.8779062","39.242553"],["-104.8780472","39.2428355"],["-104.8782762","39.2432302"],["-104.878441","39.2434804"],["-104.8786072","39.243716"],["-104.8787696","39.2439256"],["-104.8789374","39.244129"],["-104.8791084","39.2443228"],["-104.8792859","39.2445127"],["-104.8796631","39.2448825"],["-104.8799943","39.2451773"],["-104.8822732","39.2471516"],["-104.8828141","39.2476401"],["-104.8832077","39.2480322"],["-104.8835813","39.2484345"],["-104.8839524","39.2488571"],["-104.8842955","39.2492756"],["-104.8846964","39.2498015"],["-104.8857532","39.251226"],["-104.8865313","39.2522815"],["-104.8920012","39.2596749"],["-104.8922332","39.2600225"],["-104.8927643","39.2608713"],["-104.8933553","39.2618479"],["-104.8940608","39.2631032"],["-104.8943778","39.2637111"],["-104.8947959","39.2646059"],["-104.8952818","39.2656261"],["-104.8959526","39.2675075"],["-104.8962863","39.2685701"],["-104.8965646","39.2695974"],["-104.8967515","39.2703437"],["-104.8968684","39.2708411"],["-104.8969584","39.2713252"],["-104.8970785","39.2721869"],["-104.8971819","39.2729056"],["-104.8973333","39.2741354"],["-104.8975352","39.2760467"],["-104.8975489","39.2770091"],["-104.8974563","39.2779794"],["-104.8958351","39.2874901"],["-104.8955657","39.2889358"],["-104.8954328","39.2894106"],["-104.8952093","39.2899405"],["-104.8945996","39.2910658"],["-104.893773","39.2925125"],["-104.8916042","39.2963095"],["-104.8908349","39.2976431"],["-104.8905366","39.2982347"],["-104.8902675","39.2988865"],["-104.8748635","39.3415301"],["-104.8743813","39.3429379"],["-104.8715612","39.350764"],["-104.8711604","39.3517394"],["-104.8709421","39.352188"],["-104.870473","39.3530824"],["-104.8689873","39.3558597"],["-104.8685879","39.3566406"],["-104.8683435","39.3571539"],["-104.8681157","39.3576749"],["-104.8678922","39.3582408"],["-104.8677361","39.3586608"],["-104.8675506","39.3591888"],["-104.8674177","39.3596284"],["-104.8672733","39.3601434"],["-104.867146","39.3606419"],["-104.8670263","39.3611633"],["-104.8669086","39.3617002"],["-104.8668069","39.3621746"],["-104.8666875","39.3626357"],["-104.8665757","39.3630392"],["-104.8664418","39.3634749"],["-104.865299","39.3668096"],["-104.8648556","39.3681406"],["-104.8628715","39.3745486"],["-104.8626329","39.3752784"],["-104.8625282","39.3755375"],["-104.8624155","39.3757892"],["-104.8622235","39.3761758"],["-104.861972","39.3766618"],["-104.8616223","39.3773211"],["-104.8614214","39.3777079"],["-104.8612575","39.3780322"],["-104.8610945","39.3783948"],["-104.8608471","39.3790447"],["-104.8607746","39.3792737"],["-104.8606805","39.3795811"],["-104.8606071","39.379881"],["-104.8604793","39.380536"],["-104.8604356","39.3808399"],["-104.8604023","39.3812441"],["-104.8603812","39.3816265"],["-104.8604263","39.3853376"],["-104.860413","39.3857098"],["-104.8603917","39.3860639"],["-104.8603669","39.3864079"],["-104.8602987","39.3869355"],["-104.8598829","39.3892249"],["-104.8597362","39.3902584"],["-104.859649","39.3917796"],["-104.8596447","39.3921587"],["-104.8596483","39.3926388"],["-104.8596762","39.393186"],["-104.8597159","39.3937571"],["-104.859825","39.3946741"],["-104.8598864","39.3950544"],["-104.859963","39.3954778"],["-104.8601128","39.3961468"],["-104.8604058","39.3972185"],["-104.8605516","39.3976665"],["-104.8607046","39.3980991"],["-104.8612883","39.3995497"],["-104.8615249","39.4000944"],["-104.8641586","39.4061601"],["-104.864658","39.4072624"],["-104.8649662","39.4078963"],["-104.8650355","39.408034"],["-104.8653097","39.4085677"],["-104.8655319","39.4089511"],["-104.8657916","39.4093924"],["-104.8664128","39.4103879"],["-104.873788","39.4213085"],["-104.8741429","39.4218199"],["-104.8779754","39.4274893"],["-104.8782411","39.4278836"],["-104.8783441","39.4280508"],["-104.8784272","39.4282005"],["-104.8785097","39.4283577"],["-104.8785802","39.4285057"],["-104.8786619","39.4286869"],["-104.8787278","39.4288443"],["-104.8787925","39.4290081"],["-104.8788527","39.429176"],["-104.8789273","39.4293971"],["-104.8790082","39.429684"],["-104.8791151","39.4301439"],["-104.8791729","39.4304629"],["-104.8792067","39.4307856"],["-104.8792232","39.4310649"],["-104.8792325","39.4313559"],["-104.8792255","39.4316147"],["-104.8791966","39.4319104"],["-104.8788551","39.4343939"],["-104.8788066","39.4347074"],["-104.8787511","39.4350011"],["-104.8787026","39.4352277"],["-104.8786434","39.4354634"],["-104.8785722","39.435714"],["-104.8784748","39.4360149"],["-104.8783436","39.4363639"],["-104.878089","39.4369675"],["-104.8779797","39.4372066"],["-104.8777491","39.4376089"],["-104.8764889","39.4396917"],["-104.876316","39.4399802"],["-104.8760946","39.4404307"],["-104.8759961","39.4406563"],["-104.8759049","39.4408913"],["-104.8758235","39.4411205"],["-104.8757385","39.4413885"],["-104.8756711","39.4416314"],["-104.8756084","39.4418774"],["-104.8755566","39.4421504"],["-104.8755233","39.4424075"],["-104.8754967","39.4426746"],["-104.8754778","39.4429507"],["-104.8754693","39.4432385"],["-104.8755709","39.4483795"],["-104.8755217","39.4499446"],["-104.8752403","39.4548935"],["-104.8751453","39.455741"],["-104.8749922","39.456778"],["-104.8726196","39.4712764"],["-104.8725018","39.4724798"],["-104.8724037","39.4737123"],["-104.8723674","39.4751478"],["-104.8723238","39.4846141"],["-104.8723357","39.4853686"],["-104.8723678","39.485987"],["-104.8724121","39.4866583"],["-104.8724922","39.4874641"],["-104.8726692","39.4887969"],["-104.874283","39.5002123"],["-104.8743365","39.5006252"],["-104.8743725","39.5011528"],["-104.8743773","39.5013164"],["-104.8743743","39.5015449"],["-104.8743553","39.5020404"],["-104.8743185","39.5023877"],["-104.8742922","39.5025872"],["-104.8742634","39.5027793"],["-104.8742095","39.50308"],["-104.8740855","39.503568"],["-104.8739548","39.5040139"],["-104.8737125","39.5046729"],["-104.8735726","39.5049762"],["-104.8677935","39.5164081"],["-104.8676326","39.5167601"],["-104.8674788","39.5171571"],["-104.867406","39.5173837"],["-104.8673239","39.5176547"],["-104.8672582","39.5179394"],["-104.8672182","39.5181416"],["-104.8671919","39.5182908"],["-104.8671506","39.5185932"],["-104.8671268","39.5188544"],["-104.8671172","39.5190721"],["-104.8671138","39.5193051"],["-104.8671156","39.5195103"],["-104.867276","39.5228168"],["-104.8672829","39.5229698"],["-104.8693291","39.548937"],["-104.8694989","39.5502728"],["-104.8696503","39.5512942"],["-104.8698059","39.5521498"],["-104.8711098","39.5598487"],["-104.8715714","39.562784"],["-104.8725395","39.5687425"],["-104.8727037","39.569733"],["-104.873047","39.5713612"],["-104.8733494","39.5723975"],["-104.8737559","39.5736567"],["-104.8749666","39.5774683"],["-104.8750582","39.5777345"],["-104.8751751","39.5780415"],["-104.8752901","39.5783177"],["-104.8753825","39.5785246"],["-104.875578","39.5789204"],["-104.8756948","39.5791354"],["-104.8806943","39.5878115"],["-104.8830494","39.5919075"],["-104.8847535","39.5950057"],["-104.8851437","39.5956534"],["-104.8865322","39.5978937"],["-104.8888381","39.6019324"],["-104.8894712","39.6030569"],["-104.8973188","39.6166408"],["-104.8992047","39.619991"],["-104.9044639","39.6290333"],["-104.9053493","39.630728"],["-104.9057001","39.6314617"],["-104.9062364","39.6327971"],["-104.906896","39.6343433"],["-104.907283","39.6350277"],["-104.9078935","39.6359297"],["-104.9089042","39.6372773"],["-104.909264","39.6377828"],["-104.9095115","39.6381489"],["-104.9098362","39.6386325"],["-104.9103341","39.6394289"],["-104.915507","39.648196"],["-104.9167698","39.6504058"],["-104.9171598","39.6510539"],["-104.9174427","39.6515246"],["-104.9177964","39.6521549"],["-104.9180913","39.6527394"],["-104.9182418","39.6530606"],["-104.9226243","39.6628977"],["-104.9230886","39.6638795"],["-104.9232969","39.6642659"],["-104.9235814","39.6647398"],["-104.9242128","39.6656896"],["-104.9302597","39.6744021"],["-104.9307968","39.6751282"],["-104.9314636","39.6759079"],["-104.9329842","39.6776522"],["-104.9335581","39.6783034"],["-104.9352307","39.6801776"],["-104.9354055","39.68036"],["-104.9355789","39.6805311"],["-104.9356892","39.6806345"],["-104.9358913","39.6808149"],["-104.9359993","39.680907"],["-104.9361855","39.6810567"],["-104.9363292","39.6811695"],["-104.9365058","39.681303"],["-104.9366846","39.6814276"],["-104.9369046","39.6815726"],["-104.9371692","39.68174"],["-104.9374002","39.6818795"],["-104.9380373","39.6822169"],["-104.9385691","39.6824605"],["-104.9388016","39.6825555"],["-104.9391338","39.682681"],["-104.9396326","39.6828537"],["-104.9397781","39.6828984"],["-104.9450201","39.684225"],["-104.9476779","39.6847042"],["-104.9488517","39.6848338"],["-104.9490477","39.6848509"],["-104.951411","39.6849174"],["-104.9539018","39.6848968"],["-104.956209","39.6848997"],["-104.9570482","39.6848973"],["-104.9605738","39.6849043"],["-104.9607945","39.6849096"],["-104.9610308","39.684922"],["-104.9615153","39.6849618"],["-104.9622676","39.6850674"],["-104.9625005","39.6851094"],["-104.9627994","39.6851724"],["-104.9630827","39.6852373"],["-104.9633709","39.6853095"],["-104.9636055","39.6853784"],["-104.9638777","39.6854677"],["-104.9641476","39.6855616"],["-104.9643778","39.6856478"],["-104.9646165","39.6857445"],["-104.9647972","39.6858231"],["-104.974703","39.6906825"],["-104.97527","39.6910247"],["-104.9757123","39.6913311"],["-104.9761984","39.6916845"],["-104.9767018","39.6921089"],["-104.9813254","39.6962406"],["-104.9820974","39.6969263"],["-104.9865228","39.7007455"],["-104.9876024","39.701576"],["-104.9881254","39.7019774"],["-104.9885844","39.7023302"],["-104.988725","39.7024311"],["-104.9888845","39.7025411"],["-104.989105","39.702682"],["-104.9893035","39.7027972"],["-104.9894868","39.7028955"],["-104.9896749","39.7029847"],["-104.9899178","39.7030889"],["-104.9901933","39.7031925"],["-104.9906295","39.7033425"],["-104.991132","39.703508"],["-104.9935989","39.704257"],["-104.9939381","39.7043904"],["-104.9940975","39.7044593"],["-104.9943859","39.7045988"],["-104.9946292","39.7047297"],["-104.9947489","39.7048006"],["-104.9950204","39.7049756"],["-104.9952928","39.7051719"],["-104.9954245","39.705276"],["-104.9956892","39.705504"],["-104.9957614","39.7055684"],["-104.995849","39.7056501"],["-104.9959297","39.7057329"],["-104.9960085","39.7058205"],["-104.9962534","39.7061263"],["-104.9963885","39.7063063"],["-104.9965231","39.7065094"],["-104.9965859","39.7066136"],["-104.9966348","39.7066998"],["-104.9967135","39.7068512"],["-104.9967832","39.7069908"],["-104.9977365","39.7090755"],["-104.9978359","39.7092788"],["-104.9979609","39.7095278"],["-104.998432","39.710383"],["-104.9985481","39.7105822"],["-105.0007559","39.7142352"],["-105.0010052","39.7146373"],["-105.0011805","39.7149071"],["-105.0013677","39.7151763"],["-105.001543","39.7154231"],["-105.0017063","39.7156483"],["-105.0018382","39.7158074"],["-105.0019693","39.7159587"],["-105.0020736","39.7160716"],["-105.0021812","39.7161801"],["-105.0022811","39.7162781"],["-105.002392","39.7163802"],["-105.0025197","39.7164885"],["-105.002639","39.7165852"],["-105.002767","39.7166839"],["-105.0029227","39.7167962"],["-105.0047266","39.7180176"],["-105.0051853","39.7183406"],["-105.0053956","39.7184981"],["-105.0058291","39.7188469"],["-105.0061686","39.7191477"],["-105.0089672","39.7217447"],["-105.0091911","39.7219242"],["-105.0095877","39.7222246"],["-105.0105493","39.7229175"],["-105.0109389","39.7232028"],["-105.011294","39.7234972"],["-105.0117936","39.723955"],["-105.0119434","39.7241059"],["-105.0122449","39.7244302"],["-105.0124532","39.7246797"],["-105.0126264","39.7248983"],["-105.0128251","39.7251582"],["-105.0131376","39.7255923"],["-105.0133119","39.7258571"],["-105.0137386","39.7265536"],["-105.0138228","39.7267196"],["-105.0140725","39.7272656"],["-105.0141616","39.7274778"],["-105.014251","39.7277068"],["-105.0144989","39.7283707"],["-105.0149192","39.7295335"],["-105.0151885","39.7303023"],["-105.0153838","39.7308917"],["-105.0154498","39.7311565"],["-105.0155325","39.7315493"],["-105.0155598","39.7317419"],["-105.0155984","39.7320859"],["-105.015604","39.732229"],["-105.0156007","39.7323689"],["-105.0155752","39.7327556"],["-105.0155192","39.733202"],["-105.0154989","39.7333034"],["-105.0153998","39.7336951"],["-105.015308","39.7339919"],["-105.0152548","39.7341432"],["-105.0152073","39.7342635"],["-105.0150189","39.7346883"],["-105.0146927","39.7351274"],["-105.0144502","39.7354963"],["-105.0142997","39.735752"],["-105.0142132","39.7359087"],["-105.0140753","39.7361806"],["-105.0140175","39.736312"],["-105.0139627","39.7364545"],["-105.0139143","39.7365887"],["-105.0138468","39.7368257"],["-105.0138092","39.7369767"],["-105.0137275","39.7373547"],["-105.0136708","39.7376586"],["-105.0136419","39.7377945"],["-105.0136156","39.737898"],["-105.0135793","39.7380068"],["-105.0135063","39.7381903"],["-105.0134644","39.7382812"],["-105.0134126","39.7383805"],["-105.0133517","39.7384798"],["-105.013283","39.738583"],["-105.0132099","39.738682"],["-105.0131326","39.7387718"],["-105.0130145","39.7388983"],["-105.0129157","39.739001"],["-105.0128017","39.739118"],["-105.0126446","39.7392868"],["-105.0125584","39.7393868"],["-105.0125211","39.7394438"],["-105.0125029","39.7394815"],["-105.012478","39.739553"],["-105.0124658","39.7396443"],["-105.0124467","39.7397937"],["-105.0124123","39.7400057"],["-105.0124","39.7400615"],["-105.0123762","39.7400992"],["-105.0123469","39.7401334"],["-105.0123067","39.7401716"],["-105.0122563","39.7402069"],["-105.0122042","39.7402352"],["-105.0121308","39.7402636"],["-105.0119885","39.7402839"],["-105.0053875","39.7401059"],["-105.0040832","39.7400294"],["-105.0039501","39.7400256"],["-105.0022986","39.7400219"],["-104.9991109","39.7400187"],["-104.998813","39.7400194"],["-104.9981294","39.7400167"],["-104.9980131","39.7400163"],["-104.9903977","39.7400025"],["-104.9901848","39.740001"],["-104.9900561","39.7400025"],["-104.9899821","39.7400064"],["-104.9899248","39.7400146"],["-104.9898755","39.7400246"],["-104.9898177","39.7400427"],["-104.9897611","39.740064"],["-104.9897032","39.740091"],["-104.9896472","39.7401209"],["-104.9895913","39.7401581"],["-104.9893257","39.7403603"],["-104.9892739","39.7403974"],["-104.9892264","39.7404263"],["-104.9891775","39.740451"],["-104.9891183","39.7404761"],["-104.98906","39.7404932"],["-104.9890065","39.7405035"],["-104.9889469","39.7405168"],["-104.9888861","39.7405445"],["-104.9888604","39.740565"],["-104.9888393","39.7405872"],["-104.9888232","39.7406123"]]}};const coordinates_1_0=geojson_1_0.geometry.coordinates;for(const coord of coordinates_1_0){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.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':'#0b7172','line-width':5,'line-opacity':0.80}});});contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});const geojson_1_1={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-105.9370385","35.6867015"],["-105.9368931","35.6866772"],["-105.9368517","35.686761"],["-105.9366908","35.6872978"],["-105.9375333","35.6875226"],["-105.9377112","35.6875656"],["-105.9374906","35.6881347"],["-105.9374169","35.6883154"],["-105.9372613","35.6886798"],["-105.9371548","35.6889299"],["-105.9370703","35.6891298"],["-105.9370358","35.6892228"],["-105.9368353","35.6897537"],["-105.9366944","35.6901162"],["-105.936638","35.690276"],["-105.9365801","35.6904635"],["-105.936415","35.6908747"],["-105.936358","35.6910591"],["-105.9364633","35.6911694"],["-105.9365998","35.6912522"],["-105.9366714","35.6912898"],["-105.9367593","35.6913255"],["-105.936905","35.691375"],["-105.9370687","35.691425"],["-105.9374688","35.6915494"],["-105.9376688","35.6915937"],["-105.9384104","35.6918159"],["-105.9385665","35.6918856"],["-105.9387104","35.6919687"],["-105.9402547","35.6924258"],["-105.9406066","35.6925279"],["-105.9407558","35.6925664"],["-105.9409192","35.6925941"],["-105.9411083","35.6926129"],["-105.9413051","35.6926216"],["-105.9414265","35.6926173"],["-105.9415546","35.6926034"],["-105.9416597","35.6925904"],["-105.9419363","35.6925142"],["-105.9423542","35.692369"],["-105.9427485","35.6922339"],["-105.9435556","35.6919656"],["-105.9437885","35.6918961"],["-105.943936","35.6918677"],["-105.9440718","35.6918539"],["-105.9442677","35.6918456"],["-105.9444242","35.6918504"],["-105.9446094","35.6918743"],["-105.9447981","35.6919115"],["-105.9449603","35.6919592"],["-105.9451268","35.6920149"],["-105.945203","35.6920449"],["-105.945328","35.6920948"],["-105.9454826","35.6921573"],["-105.9456619","35.6922148"],["-105.9459923","35.6923062"],["-105.9461726","35.692337"],["-105.9463489","35.6923619"],["-105.9465366","35.692368"],["-105.9467272","35.6923725"],["-105.9469633","35.6923895"],["-105.9471536","35.6924077"],["-105.9472584","35.6924417"],["-105.9473958","35.6924551"],["-105.9475123","35.6924877"],["-105.9477641","35.6927045"],["-105.9500689","35.6946747"],["-105.9502596","35.6948546"],["-105.950479","35.6950714"],["-105.9506615","35.6952721"],["-105.9508326","35.6954726"],["-105.9510185","35.6957264"],["-105.9512118","35.6960648"],["-105.9513329","35.6963233"],["-105.9513948","35.6964718"],["-105.9514352","35.6965881"],["-105.9514959","35.6968037"],["-105.9515211","35.6969116"],["-105.9515418","35.697018"],["-105.9515631","35.6971605"],["-105.951589","35.6974153"],["-105.9516059","35.6976837"],["-105.9516126","35.6978999"],["-105.9516016","35.6980606"],["-105.9515684","35.6982753"],["-105.9515088","35.6985432"],["-105.9514191","35.6988687"],["-105.9513124","35.6991441"],["-105.9511735","35.6994325"],["-105.951025","35.6996885"],["-105.9508651","35.6999283"],["-105.9507352","35.7001091"],["-105.9506454","35.7002253"],["-105.9505307","35.7003686"],["-105.9501211","35.7007391"],["-105.9496146","35.7011426"],["-105.9480136","35.7023818"],["-105.9451747","35.704716"],["-105.9445081","35.705324"],["-105.9436932","35.7061037"],["-105.9431061","35.7066872"],["-105.9419413","35.707927"],["-105.9412983","35.708654"],["-105.9405329","35.7095617"],["-105.9381378","35.7128564"],["-105.9355734","35.7170933"],["-105.9347965","35.7184051"],["-105.9331708","35.7210431"],["-105.9326161","35.7219807"],["-105.9323178","35.7226276"],["-105.9321917","35.7229832"],["-105.9320219","35.7236292"],["-105.9319278","35.7244098"],["-105.9319109","35.725312"],["-105.9319008","35.7261566"],["-105.9318339","35.7333068"],["-105.9317501","35.7346493"],["-105.9315747","35.7375291"],["-105.9316294","35.7385634"],["-105.9317658","35.739235"],["-105.931886","35.7397343"],["-105.9320023","35.7400447"],["-105.9321727","35.7403062"],["-105.9323322","35.7406077"],["-105.9427383","35.759132"],["-105.9436394","35.7607646"],["-105.9440187","35.7614723"],["-105.9442669","35.7621067"],["-105.9444479","35.7628308"],["-105.944509","35.763504"],["-105.9444796","35.7642212"],["-105.9442964","35.7654588"],["-105.9437594","35.7686707"],["-105.9436604","35.7694957"],["-105.943692","35.7701231"],["-105.9437733","35.7705905"],["-105.9439182","35.771082"],["-105.9441873","35.7717293"],["-105.9460639","35.7758848"],["-105.9474532","35.7789231"],["-105.9475683","35.7792532"],["-105.9476695","35.7795865"],["-105.9477816","35.7801948"],["-105.947838","35.7807605"],["-105.9478463","35.7821729"],["-105.9478585","35.7828808"],["-105.9478855","35.7831429"],["-105.9479372","35.7834923"],["-105.948047","35.7839348"],["-105.948199","35.7844051"],["-105.9483805","35.7848209"],["-105.9485994","35.7852578"],["-105.9489625","35.7858418"],["-105.9504398","35.7880063"],["-105.9613565","35.8028155"],["-105.9657042","35.8084844"],["-105.9698532","35.8143762"],["-105.9731002","35.8188435"],["-105.9749119","35.8210858"],["-105.9765042","35.8231938"],["-105.9769817","35.823871"],["-105.9784702","35.8260857"],["-105.9791038","35.827002"],["-105.9874454","35.838359"],["-105.9882668","35.8394424"],["-105.9892129","35.8405914"],["-105.9901332","35.8416739"],["-105.9910769","35.8428337"],["-105.9920063","35.8441227"],["-105.9927406","35.8452379"],["-105.9933508","35.8462281"],["-105.9938406","35.8470876"],["-105.9942212","35.8478603"],["-106.0022939","35.8666992"],["-106.0030424","35.8680288"],["-106.0086629","35.8774866"],["-106.0088101","35.877727"],["-106.0091239","35.8781888"],["-106.0094123","35.8785788"],["-106.0094574","35.8786394"],["-106.0105734","35.8798038"],["-106.0113135","35.8804798"],["-106.013951","35.8826679"],["-106.014032","35.882733"],["-106.0143072","35.882955"],["-106.0176715","35.885751"],["-106.0180584","35.8860339"],["-106.0200241","35.8872933"],["-106.0206642","35.8877443"],["-106.0209744","35.8880035"],["-106.0213474","35.8883557"],["-106.0216604","35.8886749"],["-106.0219599","35.8890668"],["-106.022295","35.8895762"],["-106.0225499","35.8900718"],["-106.0227261","35.8904897"],["-106.0228569","35.890886"],["-106.0229622","35.8913446"],["-106.0230026","35.8917539"],["-106.0230277","35.8921064"],["-106.0230126","35.8925033"],["-106.0229098","35.8930056"],["-106.0227912","35.8935442"],["-106.0226974","35.8938176"],["-106.0224335","35.8944368"],["-106.0221246","35.8950904"],["-106.0217678","35.8959119"],["-106.021323","35.8968932"],["-106.0211974","35.8971567"],["-106.0210872","35.897397"],["-106.020736","35.8982559"],["-106.0206027","35.8986175"],["-106.020548","35.8987911"],["-106.0203297","35.8994901"],["-106.0202037","35.8999527"],["-106.0181857","35.9074945"],["-106.0180757","35.9079511"],["-106.0168493","35.9125301"],["-106.0166591","35.9134161"],["-106.0164492","35.9147135"],["-106.0164002","35.9153548"],["-106.0164022","35.9160813"],["-106.0164745","35.9172858"],["-106.0170213","35.9233786"],["-106.0171257","35.924693"],["-106.0172735","35.9263132"],["-106.0174767","35.9283207"],["-106.0175971","35.9290641"],["-106.0177719","35.9298503"],["-106.0184739","35.9324278"],["-106.0187422","35.9333553"],["-106.0191462","35.9348124"],["-106.0196219","35.9366111"],["-106.0197872","35.937235"],["-106.0199958","35.938038"],["-106.0201688","35.9388872"],["-106.0202664","35.9396791"],["-106.020379","35.9416126"],["-106.0203797","35.9416951"],["-106.0203943","35.9420474"],["-106.0204082","35.942364"],["-106.0208642","35.9518012"],["-106.0209199","35.9524827"],["-106.0210664","35.9533472"],["-106.0212018","35.953859"],["-106.0215601","35.9548431"],["-106.022087","35.9559108"],["-106.0224119","35.9564382"],["-106.0228003","35.9569685"],["-106.023333","35.9576151"],["-106.0237862","35.9580987"],["-106.0243082","35.9585869"],["-106.024792","35.9589925"],["-106.0267721","35.9605557"],["-106.0275161","35.9611503"],["-106.0282993","35.9617644"],["-106.0294412","35.962638"],["-106.031199","35.9640115"],["-106.031627","35.9643415"],["-106.0319764","35.9646237"],["-106.0337244","35.9659753"],["-106.0352913","35.9671639"],["-106.0376631","35.9690473"],["-106.0379433","35.9692737"],["-106.0381256","35.9694346"],["-106.0383197","35.9696069"],["-106.0386569","35.969892"],["-106.0388211","35.970042"],["-106.0389699","35.9701876"],["-106.0398811","35.9711699"],["-106.0421133","35.9738165"],["-106.046266","35.9787406"],["-106.0470204","35.9796331"],["-106.0483171","35.9811823"],["-106.0490665","35.9820863"],["-106.0504919","35.9837701"],["-106.0509987","35.9843173"],["-106.0514877","35.9847266"],["-106.0528095","35.9855952"],["-106.0540492","35.9860467"],["-106.054862","35.9862235"],["-106.0576138","35.9868703"],["-106.0578054","35.9869065"],["-106.0609808","35.9876706"],["-106.0619249","35.9878557"],["-106.063456","35.9881218"],["-106.0636367","35.9881531"],["-106.0640467","35.9882241"],["-106.0644979","35.9883103"],["-106.0647486","35.9883936"],["-106.0649143","35.9884801"],["-106.0654232","35.9887757"],["-106.0656063","35.9888949"],["-106.0657948","35.9888495"],["-106.0658874","35.9887962"],["-106.0660349","35.9887415"],["-106.0661692","35.9887172"],["-106.0662867","35.9887009"],["-106.0664608","35.9886933"],["-106.0683931","35.9886482"],["-106.0687346","35.9886097"],["-106.0695469","35.9885768"],["-106.0702852","35.9885084"],["-106.0717673","35.9883493"],["-106.0796744","35.9879785"],["-106.0799241","35.9879915"],["-106.0800558","35.9880118"],["-106.0801473","35.9880452"],["-106.0802045","35.9880812"],["-106.0802595","35.9881348"],["-106.0803086","35.9882099"],["-106.0803691","35.9883318"],["-106.0804344","35.9885489"],["-106.0804487","35.9894439"],["-106.0804401","35.9897029"],["-106.0804242","35.9899858"],["-106.0803541","35.9901691"],["-106.0803482","35.9902859"],["-106.0803696","35.9903701"],["-106.080391","35.9904533"],["-106.0803962","35.9905121"],["-106.0803865","35.9905754"],["-106.0803696","35.990643"],["-106.0803481","35.9906975"],["-106.0803285","35.9907232"],["-106.0802782","35.9907696"],["-106.0802237","35.9908254"],["-106.0802925","35.9908869"],["-106.0804179","35.991002"],["-106.0806429","35.9912269"],["-106.0807647","35.9913738"],["-106.0813873","35.9921627"],["-106.0822614","35.9934118"],["-106.0827731","35.9942739"],["-106.082978","35.9946525"],["-106.0835436","35.9956679"],["-106.0838994","35.9962952"],["-106.0844353","35.9972508"],["-106.0848972","35.9981469"],["-106.0852084","35.998869"],["-106.0854026","35.99937"],["-106.0856144","35.9999769"],["-106.0860461","36.0015554"],["-106.0860872","36.0017104"],["-106.08619","36.0021259"],["-106.086326","36.002657"],["-106.0865157","36.0033508"],["-106.0866191","36.0037746"],["-106.0871024","36.0055944"],["-106.0872809","36.0062816"],["-106.0879672","36.0089231"],["-106.0882731","36.0102547"],["-106.0884401","36.0110039"],["-106.0900577","36.0172703"],["-106.0903417","36.0183637"],["-106.0935142","36.0305053"],["-106.0944927","36.034239"],["-106.0946164","36.0346953"],["-106.094719","36.0349647"],["-106.0948654","36.035287"],["-106.0949826","36.0355228"],["-106.0950989","36.0357204"],["-106.0952739","36.0359708"],["-106.0955206","36.0362999"],["-106.0959649","36.036757"],["-106.0962501","36.0370136"],["-106.102363","36.0419068"],["-106.1029173","36.042291"],["-106.1035648","36.0427971"],["-106.1040614","36.0431872"],["-106.1045616","36.0435834"],["-106.1047148","36.0437226"],["-106.106191","36.0448777"],["-106.106612","36.0452596"],["-106.108458","36.0467136"],["-106.1089355","36.0470951"],["-106.1093511","36.0474231"],["-106.1097692","36.0477496"],["-106.1114381","36.0490994"],["-106.112263","36.0498345"],["-106.112749","36.0503271"],["-106.1129526","36.050549"],["-106.1132964","36.0509404"],["-106.1139108","36.0516789"],["-106.1145558","36.0525898"],["-106.1152453","36.0538183"],["-106.1155369","36.0543607"],["-106.1157799","36.0548331"],["-106.1159263","36.0551371"],["-106.1159987","36.0552995"],["-106.1161624","36.0555764"],["-106.1163306","36.0558964"],["-106.1164933","36.0562085"],["-106.1169861","36.0571384"],["-106.117243","36.0576274"],["-106.1181118","36.0592649"],["-106.1192815","36.0614756"],["-106.1208503","36.0644607"],["-106.1210511","36.0648744"],["-106.1212219","36.0651862"],["-106.1214197","36.0655658"],["-106.1215442","36.0657701"],["-106.1218046","36.0662839"],["-106.1220893","36.0668012"],["-106.1229326","36.0684367"],["-106.1243148","36.0711874"],["-106.1243408","36.0713052"],["-106.1243547","36.071376"],["-106.1243791","36.0714603"],["-106.1359281","36.0934879"],["-106.1366328","36.0947676"],["-106.1367665","36.0949601"],["-106.1379274","36.0971476"],["-106.1382934","36.097709"],["-106.1386665","36.0982181"],["-106.1390897","36.0987048"],["-106.1398157","36.0993892"],["-106.1403647","36.0998067"],["-106.141059","36.1002696"],["-106.141905","36.1007229"],["-106.1472731","36.1032656"],["-106.1482409","36.1038149"],["-106.148876","36.1042293"],["-106.1493655","36.1046474"],["-106.1498589","36.1051128"],["-106.1507749","36.1061015"],["-106.1543127","36.1100852"],["-106.154912","36.1109344"],["-106.1552181","36.1114854"],["-106.1554514","36.112013"],["-106.1556227","36.1124712"],["-106.1557593","36.1129524"],["-106.1558746","36.1135957"],["-106.1559052","36.1140624"],["-106.1559146","36.1145057"],["-106.1559118","36.1150731"],["-106.1558991","36.11569"],["-106.1558934","36.1163586"],["-106.1559405","36.1170061"],["-106.1560273","36.1176628"],["-106.1561361","36.1181745"],["-106.1562812","36.1186945"],["-106.156459","36.1192326"],["-106.1566967","36.1197845"],["-106.1569498","36.1203102"],["-106.1572751","36.1208301"],["-106.157901","36.1217704"],["-106.1620696","36.1278674"],["-106.1631539","36.1294804"],["-106.164459","36.1314505"],["-106.1647791","36.1319792"],["-106.1650144","36.1324385"],["-106.1653636","36.1331764"],["-106.1656263","36.1338213"],["-106.1658957","36.1346072"],["-106.1660893","36.1352748"],["-106.1664421","36.1366345"],["-106.1667199","36.1377745"],["-106.1670515","36.1391257"],["-106.1672985","36.1400911"],["-106.1674998","36.1406693"],["-106.1676779","36.1411052"],["-106.1679117","36.1415978"],["-106.1681482","36.1420144"],["-106.1685118","36.1426099"],["-106.1688211","36.143044"],["-106.1808571","36.1564691"],["-106.1826655","36.1583974"],["-106.1838099","36.1593595"],["-106.1857236","36.1606958"],["-106.2126416","36.1772935"],["-106.2134008","36.1777689"],["-106.2153648","36.1789997"],["-106.2158465","36.1793104"],["-106.2181844","36.1807404"],["-106.219692","36.181679"],["-106.2235813","36.1840716"],["-106.2239197","36.184325"],["-106.2244405","36.184751"],["-106.224782","36.1850864"],["-106.2251683","36.1854875"],["-106.2255611","36.1859959"],["-106.2259089","36.1864794"],["-106.2267152","36.1879515"],["-106.2277566","36.1898711"],["-106.2279829","36.1902685"],["-106.2281934","36.1905779"],["-106.2284604","36.1909078"],["-106.2287118","36.1911748"],["-106.2289578","36.1913881"],["-106.2291966","36.1915796"],["-106.2295702","36.1918308"],["-106.2299817","36.1920552"],["-106.2302724","36.1921932"],["-106.2307073","36.1923631"],["-106.231541","36.1926339"],["-106.2339311","36.1933905"],["-106.2346518","36.1936637"],["-106.2351052","36.1938677"],["-106.2355693","36.1940945"],["-106.236113","36.1943906"],["-106.2367427","36.1947781"],["-106.2372733","36.1951267"],["-106.2378066","36.195535"],["-106.242248","36.1993737"],["-106.2441741","36.2011441"],["-106.2493719","36.2063553"],["-106.249604","36.2065982"],["-106.250107","36.2071009"],["-106.2506847","36.2076891"],["-106.252643","36.2096263"],["-106.2529848","36.2099125"],["-106.2533498","36.2101573"],["-106.253827","36.2104041"],["-106.2542457","36.2105734"],["-106.2548952","36.2107829"],["-106.2648539","36.2133319"],["-106.2654547","36.2135105"],["-106.2660515","36.213738"],["-106.2670688","36.2141329"],["-106.2675325","36.2143054"],["-106.2680073","36.2144615"],["-106.268514","36.2146072"],["-106.2689211","36.2147017"],["-106.269386","36.2147889"],["-106.2698734","36.2148631"],["-106.2721996","36.2150972"],["-106.2726911","36.2151193"],["-106.2730371","36.215104"],["-106.2733187","36.2150781"],["-106.2736925","36.2150251"],["-106.274113","36.2149324"],["-106.2848121","36.211301"],["-106.2866375","36.2106069"],["-106.2881086","36.2100699"],["-106.2892537","36.2097127"],["-106.2903018","36.2094382"],["-106.291279","36.2092406"],["-106.2923265","36.2090667"],["-106.2934605","36.2089431"],["-106.2945765","36.2088604"],["-106.2956063","36.2088312"],["-106.2965823","36.2088512"],["-106.2975572","36.2089114"],["-106.2986511","36.2089897"],["-106.2998905","36.2090653"],["-106.3013684","36.2090804"],["-106.3027119","36.2089808"],["-106.3047199","36.2086891"],["-106.3105634","36.2076714"],["-106.3115706","36.2075088"],["-106.3121526","36.20746"],["-106.3125579","36.2074559"],["-106.312977","36.2074759"],["-106.3134511","36.2075238"],["-106.3139501","36.207595"],["-106.3145591","36.2077364"],["-106.3151718","36.2079401"],["-106.3172823","36.20879"],["-106.3183055","36.2091682"],["-106.3186519","36.2092535"],["-106.3189755","36.2093208"],["-106.3192908","36.2093689"],["-106.3196268","36.2094"],["-106.3199749","36.2094223"],["-106.3204939","36.2094334"],["-106.3235142","36.2093915"],["-106.3250496","36.2093985"],["-106.3255442","36.2093913"],["-106.3271811","36.2093641"],["-106.3327978","36.2093098"],["-106.3334535","36.2093465"],["-106.3340774","36.2094156"],["-106.3346544","36.2095049"],["-106.335255","36.2096366"],["-106.3357839","36.2097858"],["-106.3362221","36.2099264"],["-106.3367936","36.2101378"],["-106.3495913","36.2161325"],["-106.3513378","36.2169831"],["-106.3545887","36.2187916"],["-106.3681103","36.2264005"],["-106.3687071","36.2267114"],["-106.3692146","36.2269441"],["-106.3702449","36.2273269"],["-106.3848236","36.23214"],["-106.3858843","36.232529"],["-106.3871066","36.2330556"],["-106.3898091","36.2342608"],["-106.3919068","36.2350929"],["-106.3927831","36.2354155"],["-106.3932342","36.2355287"],["-106.3936301","36.2355806"],["-106.3939932","36.2355792"],["-106.3943269","36.2355306"],["-106.3946782","36.2354576"],["-106.3950069","36.2353498"],["-106.3954071","36.2351351"],["-106.3959846","36.2347976"],["-106.3963499","36.2346239"],["-106.3967038","36.2345094"],["-106.3971256","36.2344243"],["-106.3975532","36.2343961"],["-106.3979706","36.2344125"],["-106.3983987","36.2344861"],["-106.3988487","36.2346024"],["-106.3992532","36.2347603"],["-106.3995876","36.2349421"],["-106.3998885","36.2351449"],["-106.4001616","36.2353838"],["-106.4003938","36.2356348"],["-106.4005468","36.2358495"],["-106.4007177","36.2361337"],["-106.4008268","36.2364277"],["-106.4008921","36.2367342"],["-106.4009213","36.2370375"],["-106.4009087","36.2373732"],["-106.4008245","36.2377421"],["-106.4006461","36.2381457"],["-106.40004","36.2391699"],["-106.3998535","36.2395433"],["-106.3997544","36.239823"],["-106.3996957","36.2401064"],["-106.3996745","36.2404218"],["-106.3996909","36.2407127"],["-106.3997581","36.2410208"],["-106.3998825","36.2413829"],["-106.400035","36.2416652"],["-106.4001979","36.2419109"],["-106.4003946","36.2421277"],["-106.4006304","36.2423405"],["-106.4009239","36.2425438"],["-106.4014157","36.2428406"],["-106.4023984","36.2433677"],["-106.4032485","36.2438326"],["-106.4037241","36.2441421"],["-106.4041258","36.2445062"],["-106.4044596","36.2448929"],["-106.4047128","36.2453139"],["-106.4049063","36.245714"],["-106.4051638","36.2466027"],["-106.4059052","36.2493031"],["-106.4060276","36.2496843"],["-106.4061591","36.2500225"],["-106.4063599","36.2503876"],["-106.406588","36.2507455"],["-106.4067719","36.2509919"],["-106.4072508","36.2515267"],["-106.4077999","36.2520402"],["-106.408854","36.2530268"],["-106.4213367","36.2646108"],["-106.4218133","36.2651151"],["-106.4222115","36.2655423"],["-106.4227263","36.266222"],["-106.423352","36.2671145"],["-106.4240068","36.268274"],["-106.4250894","36.2705562"],["-106.4262299","36.2730193"],["-106.4265375","36.2736879"],["-106.4268158","36.274297"],["-106.4272204","36.2751908"],["-106.4276404","36.276105"],["-106.4279673","36.2768253"],["-106.4309812","36.2833789"],["-106.4390957","36.300944"],["-106.4393288","36.3013505"],["-106.439612","36.3017812"],["-106.4398903","36.3021557"],["-106.4402567","36.3025888"],["-106.4406339","36.3029745"],["-106.4410404","36.3033339"],["-106.4417179","36.3038257"],["-106.4423752","36.304242"],["-106.443033","36.3045901"],["-106.4436163","36.3048513"],["-106.4442681","36.3050948"],["-106.4464029","36.305731"],["-106.4577831","36.3090334"],["-106.4585626","36.3092263"],["-106.4591507","36.3093234"],["-106.4597554","36.3093619"],["-106.4604881","36.309374"],["-106.4611144","36.3093101"],["-106.4616983","36.309209"],["-106.4624832","36.3090247"],["-106.4638789","36.3086033"],["-106.4648198","36.3083475"],["-106.465571","36.3082203"],["-106.4663455","36.308192"],["-106.4670422","36.3082276"],["-106.4676731","36.308318"],["-106.4682843","36.3084574"],["-106.47035","36.3091837"],["-106.4879253","36.3157928"],["-106.4999594","36.3203121"],["-106.5022821","36.3212136"],["-106.5028227","36.321493"],["-106.5035889","36.3219849"],["-106.5043767","36.3226167"],["-106.5050994","36.3233481"],["-106.5054723","36.3238603"],["-106.5061814","36.3249708"],["-106.5065127","36.3255215"],["-106.5201037","36.350158"],["-106.5210133","36.3518226"],["-106.5214733","36.3527074"],["-106.5216801","36.3532252"],["-106.5218887","36.3539097"],["-106.5220072","36.3545804"],["-106.5220688","36.3553379"],["-106.5220357","36.3560885"],["-106.5219116","36.3568664"],["-106.5217282","36.357496"],["-106.5214732","36.3581544"],["-106.521201","36.3586851"],["-106.5209712","36.3590751"],["-106.5208143","36.3593161"],["-106.5205244","36.3597008"],["-106.5201106","36.3601748"],["-106.5195862","36.3606914"],["-106.5187778","36.3613325"],["-106.5179898","36.3618562"],["-106.5172451","36.3622204"],["-106.5165716","36.3625198"],["-106.5159335","36.362749"],["-106.5147753","36.3630675"],["-106.5130638","36.3634948"],["-106.5115783","36.3638415"],["-106.510608","36.3641155"],["-106.509915","36.3643871"],["-106.5091144","36.3647636"],["-106.5082606","36.3652795"],["-106.5078104","36.3656284"],["-106.5074019","36.3660135"],["-106.5070082","36.3664141"],["-106.5066023","36.3669744"],["-106.506273","36.3675161"],["-106.5059011","36.3683956"],["-106.5056912","36.3696672"],["-106.5056388","36.3715379"],["-106.5055278","36.3722801"],["-106.5053863","36.3728456"],["-106.5050655","36.3736619"],["-106.5046501","36.3744016"],["-106.5042559","36.3750285"],["-106.5039601","36.3755574"],["-106.5038177","36.3760254"],["-106.503716","36.3764983"],["-106.503653","36.3770215"],["-106.5036604","36.3775438"],["-106.5037482","36.3781965"],["-106.5038895","36.3788693"],["-106.5040306","36.3795532"],["-106.504107","36.380169"],["-106.5041095","36.3806867"],["-106.5040556","36.3812197"],["-106.5039016","36.3818165"],["-106.5037047","36.3823721"],["-106.5034955","36.38286"],["-106.5031611","36.3834005"],["-106.5027867","36.3838904"],["-106.5023656","36.3843476"],["-106.5015055","36.3850624"],["-106.5007617","36.3855451"],["-106.5000689","36.3858952"],["-106.4992871","36.3861764"],["-106.4983186","36.3864599"],["-106.4972643","36.3866619"],["-106.4962921","36.3868328"],["-106.4951043","36.3870793"],["-106.4942329","36.3873889"],["-106.49359","36.3876907"],["-106.4931094","36.3879683"],["-106.4925517","36.3883702"],["-106.4921235","36.3887647"],["-106.4916598","36.3893042"],["-106.4913502","36.3897245"],["-106.4911496","36.3901009"],["-106.4909841","36.3905319"],["-106.4908318","36.3909628"],["-106.4907059","36.3916061"],["-106.4906752","36.3919615"],["-106.4906865","36.3923953"],["-106.4907496","36.3928124"],["-106.490822","36.3931249"],["-106.4909243","36.3934808"],["-106.4910816","36.3938953"],["-106.4912954","36.3943257"],["-106.4915521","36.3946898"],["-106.491839","36.3950464"],["-106.4922312","36.3955156"],["-106.4936023","36.3971299"],["-106.4940281","36.3976787"],["-106.4942416","36.3980043"],["-106.4944461","36.3983596"],["-106.4945968","36.39871"],["-106.4947256","36.3990541"],["-106.4948151","36.3994568"],["-106.4948758","36.3999053"],["-106.4948723","36.4003449"],["-106.4948369","36.4006952"],["-106.4947784","36.4010669"],["-106.4946746","36.4014613"],["-106.4945459","36.4018344"],["-106.4943416","36.4022601"],["-106.4941267","36.402661"],["-106.4937823","36.4031934"],["-106.4933473","36.4038299"],["-106.4927401","36.4044872"],["-106.4921199","36.4051153"],["-106.4912725","36.405794"],["-106.4903458","36.4064398"],["-106.4890678","36.407116"],["-106.4886974","36.4072909"],["-106.4880599","36.4076913"],["-106.4874499","36.4081667"],["-106.4871063","36.4085501"],["-106.4853791","36.410931"],["-106.4838844","36.4126887"],["-106.4824392","36.414393"],["-106.4820823","36.4150056"],["-106.4818142","36.4155842"],["-106.4815617","36.4164729"],["-106.4813528","36.41725"],["-106.4809618","36.4187021"],["-106.4807207","36.4196093"],["-106.4804616","36.4205806"],["-106.4804039","36.4212363"],["-106.4803563","36.4221263"],["-106.4803081","36.4225658"],["-106.4801849","36.4230559"],["-106.4800161","36.4235199"],["-106.4797831","36.4240269"],["-106.4791533","36.4250911"],["-106.4788531","36.425993"],["-106.478413","36.4289484"],["-106.4782511","36.4296779"],["-106.4781109","36.4301448"],["-106.4777501","36.4310075"],["-106.477247","36.4319528"],["-106.476475","36.4329546"],["-106.4747299","36.4349811"],["-106.4742841","36.4355809"],["-106.4740113","36.4360317"],["-106.4737417","36.4367837"],["-106.4736241","36.4373648"],["-106.473586","36.4379161"],["-106.4736323","36.4384612"],["-106.4739024","36.4399517"],["-106.4764093","36.4506629"],["-106.4767351","36.4522655"],["-106.4767881","36.4529725"],["-106.4767992","36.4536498"],["-106.4768101","36.4542724"],["-106.4769206","36.4549072"],["-106.4771923","36.45573"],["-106.4775376","36.4565607"],["-106.4781554","36.458034"],["-106.4788117","36.4596014"],["-106.4790495","36.4602336"],["-106.4791495","36.460726"],["-106.4791978","36.4611068"],["-106.4791962","36.4613928"],["-106.4791673","36.4616969"],["-106.4790586","36.4620807"],["-106.4788562","36.4629861"],["-106.4787968","36.4637501"],["-106.4788955","36.4644724"],["-106.4790608","36.4651033"],["-106.4792412","36.4655554"],["-106.4794013","36.4658556"],["-106.4795906","36.4661785"],["-106.4801335","36.4668808"],["-106.4806142","36.467465"],["-106.4809024","36.4677953"],["-106.4811469","36.4680256"],["-106.4816633","36.4684111"],["-106.4820336","36.4686451"],["-106.4825683","36.4689102"],["-106.4833631","36.4692247"],["-106.4859134","36.4701582"],["-106.4869067","36.4706478"],["-106.4874504","36.4710657"],["-106.4879661","36.471616"],["-106.488565","36.4723838"],["-106.488929","36.4727876"],["-106.4894601","36.4732451"],["-106.490578","36.4741221"],["-106.4913809","36.4748353"],["-106.4919246","36.4754284"],["-106.4923235","36.4760669"],["-106.4925899","36.4766847"],["-106.4927419","36.4772418"],["-106.4929143","36.4782813"],["-106.4931521","36.4797252"],["-106.4939626","36.4846001"],["-106.4941909","36.4861001"],["-106.4943095","36.4870104"],["-106.4943229","36.4876054"],["-106.4942755","36.4885293"],["-106.4941157","36.4892943"],["-106.493891","36.4901481"],["-106.4934648","36.4913306"],["-106.4927925","36.4929258"],["-106.4921643","36.4943993"],["-106.490882","36.4974293"],["-106.4900184","36.4995056"],["-106.4888576","36.5022693"],["-106.4852359","36.5109666"],["-106.483977","36.5140347"],["-106.4834151","36.5155044"],["-106.4829202","36.5171626"],["-106.4820053","36.5205721"],["-106.4818267","36.5215633"],["-106.4816988","36.5225024"],["-106.4816712","36.523318"],["-106.4817206","36.5241795"],["-106.4817911","36.5250394"],["-106.4818926","36.5256533"],["-106.4820031","36.526259"],["-106.4821153","36.5267915"],["-106.4823242","36.5274459"],["-106.4824798","36.5279239"],["-106.4847496","36.5337446"],["-106.4851001","36.5345858"],["-106.4858515","36.5365398"],["-106.4864121","36.538025"],["-106.4867175","36.5388208"],["-106.4904552","36.5483853"],["-106.491012","36.5498204"],["-106.4924563","36.5535244"],["-106.4929959","36.5547596"],["-106.4936122","36.5558782"],["-106.4939388","36.5563871"],["-106.4944503","36.5570698"],["-106.4968932","36.5599843"],["-106.497886","36.5611456"],["-106.499727","36.5632867"],["-106.4999833","36.5636009"],["-106.5001806","36.5638341"],["-106.5004591","36.5641485"],["-106.501702","36.5655471"],["-106.5021187","36.5659709"],["-106.5024558","36.5662344"],["-106.5028693","36.5664994"],["-106.5059359","36.5683255"],["-106.5071043","36.5690344"],["-106.5079015","36.5696125"],["-106.5083276","36.5700568"],["-106.5085947","36.57042"],["-106.5088365","36.5708123"],["-106.5090034","36.5712451"],["-106.5091297","36.5717617"],["-106.5095216","36.5734348"],["-106.5099244","36.5751393"],["-106.5102128","36.5758068"],["-106.5107654","36.5765824"],["-106.5112315","36.5771418"],["-106.5123401","36.578425"],["-106.5127684","36.5790476"],["-106.51325","36.5798035"],["-106.5147198","36.5823394"],["-106.5150974","36.5829718"],["-106.5154898","36.5837457"],["-106.5157811","36.5844361"],["-106.5158924","36.5852368"],["-106.5160016","36.5861838"],["-106.5161462","36.586766"],["-106.5164137","36.5873196"],["-106.5169349","36.5881885"],["-106.51743","36.5889723"],["-106.5178123","36.5896276"],["-106.5180475","36.5901249"],["-106.5184129","36.5909823"],["-106.5191609","36.5929055"],["-106.5203921","36.596204"],["-106.5207859","36.5972243"],["-106.5212904","36.598574"],["-106.5222199","36.6010316"],["-106.5224932","36.6017638"],["-106.5254433","36.6097156"],["-106.5257324","36.6104728"],["-106.5265306","36.6126128"],["-106.5315917","36.6261667"],["-106.5318858","36.6269379"],["-106.5323329","36.6280583"],["-106.5326791","36.6286305"],["-106.5328808","36.6289089"],["-106.5331992","36.6292795"],["-106.533544","36.6296094"],["-106.5339414","36.6299164"],["-106.5343462","36.6301847"],["-106.5348086","36.6304517"],["-106.5352848","36.6306885"],["-106.5356672","36.6308351"],["-106.5362202","36.630996"],["-106.5375231","36.6313193"],["-106.5417507","36.6323277"],["-106.5429753","36.6326389"],["-106.5436725","36.6328664"],["-106.5442926","36.6331237"],["-106.5448695","36.633411"],["-106.5454069","36.6337182"],["-106.545788","36.6339596"],["-106.5461604","36.6342089"],["-106.5471143","36.6349022"],["-106.5481619","36.6356485"],["-106.5492331","36.6364151"],["-106.553164","36.6391966"],["-106.5536894","36.639605"],["-106.5540709","36.6399525"],["-106.5543774","36.6402384"],["-106.5549308","36.6408944"],["-106.5551831","36.6412571"],["-106.5561352","36.6427988"],["-106.559453","36.6483429"],["-106.559742","36.6488635"],["-106.5598711","36.6491951"],["-106.5599712","36.649567"],["-106.5600264","36.6499308"],["-106.5600471","36.65023"],["-106.5600294","36.6505625"],["-106.5599968","36.6508121"],["-106.5597955","36.6515176"],["-106.5570169","36.6594229"],["-106.5569364","36.6598182"],["-106.5569118","36.6601552"],["-106.556933","36.6604665"],["-106.5569732","36.6608039"],["-106.5573285","36.6623631"],["-106.5574334","36.6628161"],["-106.5574881","36.6631555"],["-106.5574888","36.6635732"],["-106.5574457","36.6640283"],["-106.5573384","36.6645394"],["-106.5571617","36.665213"],["-106.557025","36.6657944"],["-106.5569883","36.6663483"],["-106.55701","36.6667394"],["-106.5571304","36.66744"],["-106.5574294","36.6690315"],["-106.5575483","36.6700039"],["-106.5577869","36.677177"],["-106.5578449","36.6789141"],["-106.5582283","36.6930116"],["-106.5580245","36.7047264"],["-106.5580268","36.7051899"],["-106.5580162","36.7057623"],["-106.5580486","36.706603"],["-106.5581411","36.7073763"],["-106.5582986","36.7082004"],["-106.558526","36.7091157"],["-106.5588513","36.7100924"],["-106.5601637","36.7131565"],["-106.560232","36.7133035"],["-106.5603197","36.7134633"],["-106.5611993","36.71548"],["-106.5623625","36.7180022"],["-106.5628464","36.7190916"],["-106.5636841","36.721053"],["-106.5639345","36.721638"],["-106.5641868","36.7221617"],["-106.5645619","36.7230267"],["-106.5649432","36.7239226"],["-106.5650549","36.7243146"],["-106.5654255","36.7256686"],["-106.5678186","36.7347661"],["-106.568325","36.7367305"],["-106.5684003","36.7372159"],["-106.5684427","36.7374871"],["-106.5685841","36.7385604"],["-106.5686588","36.7390911"],["-106.5689349","36.7413855"],["-106.5690563","36.7426518"],["-106.5690614","36.743211"],["-106.5690199","36.7436365"],["-106.5689197","36.7440187"],["-106.5688155","36.7443842"],["-106.5686056","36.7448589"],["-106.5683012","36.7453988"],["-106.566456","36.7479501"],["-106.5653216","36.7495018"],["-106.5650239","36.7498771"],["-106.562973","36.7527605"],["-106.5619806","36.7540985"],["-106.5614059","36.7549008"],["-106.5599903","36.7568633"],["-106.5593924","36.7576856"],["-106.5587394","36.7585983"],["-106.55823","36.7593924"],["-106.5578571","36.7601381"],["-106.5576123","36.7607283"],["-106.5574299","36.7612691"],["-106.5572586","36.7618569"],["-106.5571515","36.7623614"],["-106.556997","36.7639486"],["-106.5562497","36.7726712"],["-106.556138","36.7741103"],["-106.5560336","36.7754724"],["-106.5556762","36.7806607"],["-106.5556988","36.7817437"],["-106.5557924","36.782427"],["-106.5559146","36.7830415"],["-106.5561042","36.7836864"],["-106.5564101","36.7844552"],["-106.5567557","36.7851683"],["-106.5587036","36.7883769"],["-106.559565","36.7897768"],["-106.5604731","36.7912791"],["-106.5613651","36.7927589"],["-106.5620687","36.7939798"],["-106.5663522","36.8025928"],["-106.5666833","36.8034299"],["-106.5670212","36.8044733"],["-106.5673289","36.8058582"],["-106.5674591","36.8067888"],["-106.5675706","36.8076623"],["-106.5676737","36.8084382"],["-106.5677489","36.8089438"],["-106.5678196","36.8094191"],["-106.5678796","36.8099422"],["-106.5681505","36.811772"],["-106.5682357","36.8124457"],["-106.568501","36.8142227"],["-106.568638","36.8152099"],["-106.5687893","36.8167658"],["-106.5688171","36.8173394"],["-106.568915","36.8182313"],["-106.5690875","36.8204728"],["-106.5692735","36.82294"],["-106.5692089","36.8246653"],["-106.5690127","36.8281314"],["-106.5690217","36.828924"],["-106.5690332","36.8305872"],["-106.5690716","36.8330218"],["-106.5691217","36.8379355"],["-106.5691262","36.8386036"],["-106.5693242","36.8402301"],["-106.5694585","36.8409848"],["-106.569763","36.8420865"],["-106.5701331","36.8429781"],["-106.5706532","36.8441318"],["-106.5712744","36.8454654"],["-106.5713904","36.8456914"],["-106.5714638","36.8458734"],["-106.5718474","36.8467078"],["-106.5750806","36.8535415"],["-106.5768585","36.8573074"],["-106.5775506","36.8587495"],["-106.5780843","36.8598595"],["-106.5783683","36.8604896"],["-106.5787484","36.861285"],["-106.579874","36.8636887"],["-106.5801739","36.8643636"],["-106.5803057","36.8646941"],["-106.580454","36.8651149"],["-106.5805073","36.8653077"],["-106.5806608","36.8659307"],["-106.5833137","36.8768307"],["-106.5834619","36.8774613"],["-106.5842025","36.8805884"],["-106.5843967","36.8815127"],["-106.5845443","36.8825002"],["-106.5845854","36.8829103"],["-106.5869698","36.8829787"],["-106.5875253","36.882996"],["-106.5977247","36.8832226"],["-106.5989865","36.8832537"],["-106.6002441","36.883298"],["-106.6015062","36.8833621"],["-106.6026524","36.8834891"],["-106.6041075","36.8837343"],["-106.6153402","36.8860952"],["-106.6181117","36.8866905"],["-106.61862","36.8867951"],["-106.6193747","36.8869589"],["-106.6198939","36.8870666"],["-106.6268811","36.8885256"],["-106.6280217","36.8887822"],["-106.6287634","36.8888593"],["-106.629472","36.8888674"],["-106.6302737","36.8887873"],["-106.6314944","36.8885024"],["-106.632518","36.8881422"],["-106.6334313","36.8875988"],["-106.6397682","36.882537"],["-106.6421897","36.8805304"],["-106.6436463","36.8791361"],["-106.6451934","36.8776219"],["-106.6460498","36.8767887"],["-106.6464006","36.8764767"],["-106.6468487","36.8761538"],["-106.6477456","36.8757177"],["-106.6483927","36.8755201"],["-106.6505322","36.8751687"],["-106.6533589","36.8747183"],["-106.6550395","36.8744359"],["-106.6556058","36.8742958"],["-106.6566632","36.8739347"],["-106.6597942","36.8727752"],["-106.6604622","36.8725755"],["-106.6608285","36.8725131"],["-106.6615306","36.8724523"],["-106.6623396","36.8724217"],["-106.6629462","36.8724667"],["-106.663513","36.8725454"],["-106.6969318","36.8798682"],["-106.6991113","36.8803062"],["-106.7000614","36.8803984"],["-106.7058321","36.8805192"],["-106.7071805","36.8806375"],["-106.7090384","36.8809432"],["-106.7629367","36.8912371"],["-106.7639625","36.8914381"],["-106.7645504","36.8915702"],["-106.7652058","36.891789"],["-106.7723408","36.8947476"],["-106.7747989","36.8958573"],["-106.7759138","36.8964697"],["-106.7770933","36.8971789"],["-106.7783447","36.8978933"],["-106.7796995","36.8985141"],["-106.782356","36.8994098"],["-106.7834706","36.8998556"],["-106.7846969","36.9004424"],["-106.7863869","36.9015319"],["-106.7902489","36.9041844"],["-106.7912668","36.9049315"],["-106.7918037","36.9054108"],["-106.7924407","36.9061072"],["-106.7929091","36.9066712"],["-106.7934108","36.9074661"],["-106.793872","36.9082892"],["-106.7941386","36.9088397"],["-106.7945308","36.9098029"],["-106.7963827","36.9140368"],["-106.7973226","36.9162632"],["-106.797751","36.917702"],["-106.7978831","36.9184171"],["-106.7985556","36.9263886"],["-106.7985352","36.9274672"],["-106.7982291","36.9287614"],["-106.7977269","36.9298606"],["-106.7915016","36.9411766"],["-106.7904922","36.9431967"],["-106.7901791","36.9441177"],["-106.7899468","36.9449937"],["-106.7897333","36.9460467"],["-106.7896275","36.9472618"],["-106.7895319","36.9492974"],["-106.7894155","36.9505863"],["-106.7890506","36.9526941"],["-106.7886515","36.9541026"],["-106.7884187","36.9547436"],["-106.7876041","36.9565862"],["-106.7863103","36.9587231"],["-106.7836468","36.9624244"],["-106.7813926","36.9655931"],["-106.7809043","36.9665498"],["-106.7806471","36.9674758"],["-106.780503","36.9696325"],["-106.7803002","36.9757895"],["-106.7801934","36.9796566"],["-106.7801378","36.9828031"],["-106.7808513","36.9895247"],["-106.7810145","36.9908438"],["-106.7811563","36.9914558"],["-106.7813637","36.9918906"],["-106.7816334","36.9922522"],["-106.781947","36.9925861"],["-106.7833511","36.9938797"],["-106.7852113","36.99579"],["-106.7870947","36.9977323"],["-106.7888701","36.999787"],["-106.7898771","37.0010349"],["-106.7905041","37.0017193"],["-106.7915805","37.0027431"],["-106.7940751","37.0047544"],["-106.8013414","37.0104948"],["-106.8029363","37.011741"],["-106.8043738","37.0128684"],["-106.8053077","37.0136344"],["-106.8193394","37.0230885"],["-106.8301348","37.0321197"],["-106.8319209","37.0331363"],["-106.8336925","37.0337507"],["-106.8409989","37.035955"],["-106.8430621","37.0366499"],["-106.8435777","37.0369763"],["-106.8438748","37.0372566"],["-106.8442472","37.0377634"],["-106.8444325","37.0381583"],["-106.8445192","37.038753"],["-106.8444892","37.0391563"],["-106.8441564","37.0401749"],["-106.8416934","37.0474507"],["-106.8383625","37.0571725"],["-106.8374264","37.0590223"],["-106.8362167","37.0607169"],["-106.8288961","37.0687743"],["-106.8280961","37.0694284"],["-106.827168","37.0699401"],["-106.8261324","37.0706168"],["-106.8258544","37.0710129"],["-106.8257284","37.0714133"],["-106.8257389","37.0719443"],["-106.8258422","37.0723112"],["-106.8260818","37.0726879"],["-106.8264831","37.0730132"],["-106.8270618","37.0732709"],["-106.8282568","37.0734459"],["-106.8304608","37.0737153"],["-106.8328666","37.0738349"],["-106.8340877","37.074056"],["-106.8361681","37.0745399"],["-106.8376474","37.0748193"],["-106.8390572","37.0749907"],["-106.8407989","37.07506"],["-106.8456908","37.0750211"],["-106.8479556","37.0755983"],["-106.85651","37.0783842"],["-106.8630873","37.080515"],["-106.8640487","37.0807261"],["-106.8650969","37.0808358"],["-106.8665586","37.0808513"],["-106.8867261","37.0798457"],["-106.8886226","37.0800349"],["-106.889872","37.0803393"],["-106.8916888","37.0809836"],["-106.8934906","37.0816512"],["-106.8944849","37.0820633"],["-106.895447","37.0825902"],["-106.8963041","37.0831836"],["-106.9057814","37.0906257"],["-106.9095455","37.0936706"],["-106.9100808","37.0943174"],["-106.9103442","37.0948164"],["-106.9105588","37.0955982"],["-106.9108462","37.0971549"],["-106.9114449","37.098176"],["-106.9124118","37.0992777"],["-106.9144622","37.1013896"],["-106.9156443","37.1022951"],["-106.9171762","37.1030564"],["-106.9206579","37.1043952"],["-106.9218354","37.1048818"],["-106.922707","37.1054332"],["-106.9280118","37.109204"],["-106.9285263","37.1097076"],["-106.9287147","37.1102983"],["-106.9287261","37.1126971"],["-106.9286084","37.1132288"],["-106.9283355","37.1137974"],["-106.9278064","37.1143216"],["-106.925619","37.1158761"],["-106.9251084","37.1165766"],["-106.9250251","37.1172712"],["-106.924998","37.1190513"],["-106.9249276","37.119527"],["-106.9246107","37.1201135"],["-106.9241951","37.1205199"],["-106.9237251","37.1208106"],["-106.9229123","37.1210762"],["-106.9203057","37.1217217"],["-106.9195835","37.1221336"],["-106.919218","37.1226287"],["-106.9190521","37.1232648"],["-106.9187905","37.1261098"],["-106.9184931","37.126936"],["-106.9178609","37.128285"],["-106.9177119","37.1288741"],["-106.9176826","37.1293128"],["-106.9177944","37.1297647"],["-106.9179826","37.1302953"],["-106.9183983","37.1311485"],["-106.9188975","37.1322612"],["-106.9194811","37.1335523"],["-106.9195805","37.1340786"],["-106.9195046","37.1345964"],["-106.9193358","37.1354177"],["-106.9193616","37.1359892"],["-106.9194656","37.1365157"],["-106.919841","37.1376892"],["-106.9201539","37.1390969"],["-106.9203293","37.1395133"],["-106.9206283","37.1398485"],["-106.923236","37.1418405"],["-106.9242443","37.1426272"],["-106.9258641","37.1436916"],["-106.9317448","37.1473474"],["-106.9332925","37.1482447"],["-106.93512","37.1491761"],["-106.9364195","37.1499114"],["-106.9374203","37.1508309"],["-106.9387814","37.1522186"],["-106.9402373","37.1536132"],["-106.9455154","37.157109"],["-106.9457835","37.1573357"],["-106.9460487","37.1576256"],["-106.9463007","37.1579428"],["-106.9466076","37.1584202"],["-106.9467783","37.1588936"],["-106.9469098","37.1596814"],["-106.9468224","37.1602236"],["-106.9464366","37.1611739"],["-106.9455199","37.1631311"],["-106.9448423","37.1644867"],["-106.9436057","37.166367"],["-106.9433214","37.1668335"],["-106.9431211","37.1672982"],["-106.9429579","37.1679474"],["-106.942868","37.1693405"],["-106.9428076","37.1698596"],["-106.9426906","37.1702096"],["-106.9424869","37.1705473"],["-106.942","37.1710343"],["-106.9413219","37.1714441"],["-106.9400436","37.1721634"],["-106.939338","37.1726817"],["-106.9387469","37.1733171"],["-106.9382872","37.1738857"],["-106.937942","37.1744715"],["-106.9374721","37.1755045"],["-106.935973","37.1790176"],["-106.9356006","37.1800976"],["-106.9355284","37.1806363"],["-106.9354903","37.1811378"],["-106.9355088","37.1816111"],["-106.9356113","37.1823543"],["-106.9357741","37.1829944"],["-106.9361147","37.1838005"],["-106.9364923","37.184657"],["-106.9368869","37.1855481"],["-106.9372648","37.1863462"],["-106.9375791","37.1868394"],["-106.9390274","37.1886704"],["-106.9394963","37.1890976"],["-106.9400545","37.1894693"],["-106.9408435","37.1897895"],["-106.9419201","37.189872"],["-106.9436165","37.1897665"],["-106.9449466","37.1895558"],["-106.9459372","37.1893722"],["-106.9470195","37.1892013"],["-106.9486496","37.1890239"],["-106.9491743","37.189079"],["-106.9510273","37.1895396"],["-106.9517556","37.1898205"],["-106.9527253","37.1904686"],["-106.9533588","37.191033"],["-106.9547135","37.192453"],["-106.962838","37.2013152"],["-106.9635541","37.2020339"],["-106.9645733","37.2027974"],["-106.9655036","37.203347"],["-106.9663618","37.2037553"],["-106.9747884","37.2070452"],["-106.9760022","37.2076026"],["-106.9776395","37.2086603"],["-106.9793969","37.2098852"],["-106.9808128","37.2108878"],["-106.9818347","37.2116914"],["-106.9822902","37.212185"],["-106.9826075","37.212604"],["-106.9828648","37.2130625"],["-106.9830987","37.2135909"],["-106.9833105","37.2142219"],["-106.984612","37.2204765"],["-106.9849135","37.2220702"],["-106.9852689","37.224791"],["-106.985368","37.2256788"],["-106.9854223","37.2263367"],["-106.9854328","37.2270175"],["-106.9853487","37.2282938"],["-106.9851685","37.2302499"],["-106.9849838","37.2322683"],["-106.985029","37.2329462"],["-106.9851426","37.2336011"],["-106.9856365","37.2351155"],["-106.9864079","37.2373629"],["-106.9870321","37.2391143"],["-106.9875524","37.2403305"],["-106.9882565","37.2417709"],["-106.9888018","37.2427797"],["-106.9898297","37.2447225"],["-106.9934032","37.2513389"],["-106.9939531","37.2523639"],["-106.9944631","37.253339"],["-106.9947023","37.253888"],["-106.994883","37.2544257"],["-106.9949433","37.2549161"],["-106.9949541","37.2554101"],["-106.9948753","37.2559555"],["-106.9947745","37.2564401"],["-106.9945496","37.2569813"],["-106.9931669","37.2596427"],["-106.9927461","37.2604933"],["-106.9924172","37.2612526"],["-106.9922898","37.2617538"],["-106.9922078","37.2622246"],["-106.992157","37.2630794"],["-106.9920622","37.2661107"],["-106.9920379","37.2665077"],["-106.9920404","37.2671493"],["-106.9921416","37.2675691"],["-106.9924395","37.268111"],["-106.9927618","37.2685646"],["-106.9928796","37.268702"],["-106.9931063","37.2688394"],["-106.9934936","37.2692154"],["-106.9937777","37.2695743"],["-106.9941627","37.2695236"],["-106.9945774","37.2694511"],["-106.9949647","37.2694232"],["-106.9956791","37.2693931"],["-106.9964039","37.269432"],["-106.9969869","37.2694606"],["-106.9976861","37.2694902"],["-106.9984273","37.2695048"],["-106.9986104","37.2694959"],["-106.9989344","37.2694747"],["-106.999304","37.2694458"],["-107.0000367","37.2693671"],["-107.0022885","37.2690924"],["-107.0023325","37.2690882"],["-107.0030705","37.2690245"],["-107.0032013","37.2690148"],["-107.0084019","37.2686369"],["-107.0084862","37.2690864"],["-107.0085836","37.2695555"],["-107.0094869","37.2695229"],["-107.0097296","37.2694854"],["-107.0098596","37.2694406"],["-107.0099463","37.2693972"],["-107.0101005","37.2692704"],["-107.0108981","37.2684887"],["-107.0104603","37.2680956"],["-107.0099201","37.2677667"],["-107.0092004","37.2683559"],["-107.0088401","37.2685632"],["-107.0081504","37.2686315"],["-107.0033287","37.2690061"],["-107.0030456","37.2690267"],["-107.0023428","37.2690871"],["-107.0022782","37.2690937"],["-106.999983","37.2693736"],["-106.9993168","37.2694449"],["-106.9989096","37.2694762"],["-106.9986094","37.2694961"],["-106.99841","37.2695043"],["-106.9977154","37.269491"],["-106.9969901","37.2694608"],["-106.9964206","37.2694328"],["-106.9956778","37.2693948"],["-106.9949799","37.2694224"],["-106.9945728","37.2694515"],["-106.9942126","37.2695144"],["-106.993749","37.2696075"],["-106.9930205","37.2698706"],["-106.9926787","37.2700382"],["-106.9923798","37.2702166"],["-106.992074","37.2704264"],["-106.9915043","37.2708928"],["-106.9853415","37.276513"],["-106.9848662","37.2769526"],["-106.9844062","37.2773964"],["-106.9836626","37.2781254"],["-106.9829776","37.278836"],["-106.9824248","37.2795461"],["-106.9755184","37.2899395"],["-106.9750823","37.2905329"],["-106.9744651","37.2915641"],["-106.9731754","37.2943953"],["-106.9728868","37.2953832"],["-106.9696149","37.3030658"],["-106.9691458","37.3041821"],["-106.9687726","37.3050611"],["-106.9682628","37.3062714"],["-106.9676711","37.3075792"],["-106.967296","37.308126"],["-106.9663933","37.3092803"],["-106.9658504","37.3102908"],["-106.9655723","37.3112625"],["-106.9653753","37.3123821"],["-106.9652901","37.3130205"],["-106.9651314","37.3138081"],["-106.9646912","37.315261"],["-106.9621068","37.3227348"],["-106.9619288","37.3230805"],["-106.9618056","37.3234478"],["-106.961278","37.3242037"],["-106.9603164","37.3250877"],["-106.9594857","37.3258799"],["-106.957128","37.3280505"],["-106.9565405","37.3286386"],["-106.9549431","37.3301228"],["-106.9531184","37.3318473"],["-106.9504804","37.3341163"],["-106.9490844","37.3351299"],["-106.947284","37.3361563"],["-106.9457519","37.3369005"],["-106.9418991","37.3383699"],["-106.9271037","37.3442467"],["-106.9231771","37.3464167"],["-106.9220305","37.3472532"],["-106.9209089","37.3482048"],["-106.9201425","37.3490743"],["-106.9198339","37.3494605"],["-106.9189189","37.3507335"],["-106.9185133","37.3513138"],["-106.9180137","37.3519114"],["-106.9172674","37.3526689"],["-106.9162747","37.3535242"],["-106.9144371","37.3549285"],["-106.9129283","37.3560277"],["-106.9102993","37.3580593"],["-106.9089262","37.3593801"],["-106.9080075","37.3602633"],["-106.9050305","37.3634664"],["-106.9028712","37.3660323"],["-106.9010572","37.3693109"],["-106.899918","37.3734923"],["-106.8996162","37.3754093"],["-106.8994233","37.3775341"],["-106.899331","37.3788015"],["-106.8992043","37.3804588"],["-106.8978097","37.4031349"],["-106.8972424","37.4105192"],["-106.8970312","37.4119778"],["-106.8967117","37.4134443"],["-106.8962127","37.4152962"],["-106.8955531","37.4173685"],["-106.8943122","37.4200918"],["-106.8923238","37.4239489"],["-106.89123","37.4259741"],["-106.8906996","37.4269963"],["-106.8895028","37.4304121"],["-106.8887402","37.4325712"],["-106.8883393","37.4332342"],["-106.8879191","37.4337782"],["-106.8869969","37.4346723"],["-106.8859884","37.4355419"],["-106.884652","37.4364659"],["-106.881593","37.4382285"],["-106.8805449","37.4388699"],["-106.880165","37.4392223"],["-106.8798404","37.4396332"],["-106.8792318","37.4406019"],["-106.8788178","37.4410876"],["-106.8782437","37.4415228"],["-106.8780441","37.4416901"],["-106.877894","37.4418814"],["-106.8778132","37.4420383"],["-106.8777234","37.442225"],["-106.8776854","37.4424038"],["-106.8776816","37.442645"],["-106.8777282","37.4428379"],["-106.8778081","37.4430053"],["-106.877914","37.4431497"],["-106.8784448","37.4437155"],["-106.8786303","37.4439439"],["-106.8787577","37.4441726"],["-106.8787926","37.4444353"],["-106.8787527","37.445077"],["-106.8785805","37.4468256"],["-106.8786612","37.4473502"],["-106.878923","37.4478014"],["-106.8795846","37.4483778"],["-106.881925","37.4501059"],["-106.8825348","37.4505941"],["-106.8827892","37.4510295"],["-106.8828609","37.4514763"],["-106.8828024","37.4521673"],["-106.8829048","37.4526287"],["-106.883073","37.4532891"],["-106.8832192","37.4548896"],["-106.8832341","37.455603"],["-106.8831649","37.4560391"],["-106.8829812","37.4566887"],["-106.8830211","37.4570163"],["-106.883242","37.4573054"],["-106.8836472","37.4575253"],["-106.88409","37.4575765"],["-106.8845171","37.4574598"],["-106.8849002","37.4571456"],["-106.8856558","37.4559776"],["-106.8862796","37.4550039"],["-106.8866318","37.4541934"],["-106.8871679","37.4534833"],["-106.8873483","37.4530215"],["-106.8874168","37.4523006"],["-106.887431","37.4517619"],["-106.8873516","37.4510254"],["-106.887408","37.4506823"],["-106.887606","37.4504734"],["-106.8878436","37.4503798"],["-106.8881622","37.4503646"],["-106.8884274","37.4504458"],["-106.8885475","37.4505309"],["-106.888645","37.4507152"],["-106.8886462","37.4509719"],["-106.8884909","37.4515018"],["-106.888409","37.451889"],["-106.8884338","37.4522685"],["-106.8885493","37.4527149"],["-106.8886134","37.4530825"],["-106.8885864","37.4533982"],["-106.8884706","37.4536697"],["-106.8880831","37.4542595"],["-106.8879524","37.4545883"],["-106.8879527","37.4548742"],["-106.8880532","37.4554682"],["-106.8880559","37.4559381"],["-106.8879418","37.4561936"],["-106.8876205","37.4566212"],["-106.8874432","37.4569649"],["-106.887164","37.4576098"],["-106.8868908","37.4580021"],["-106.8862447","37.4587299"],["-106.885972","37.4591618"],["-106.8857734","37.4597667"],["-106.8855346","37.4605144"],["-106.8851202","37.461101"],["-106.8843927","37.4617749"],["-106.883523","37.462391"],["-106.882311","37.4632409"],["-106.880722","37.4643656"],["-106.8768131","37.4665748"],["-106.876328","37.4670465"],["-106.8758615","37.4678131"],["-106.8755633","37.4681406"],["-106.8751276","37.4684133"],["-106.8741921","37.4689078"],["-106.8735855","37.4692849"],["-106.8730134","37.4697358"],["-106.8726263","37.4702404"],["-106.8724734","37.4708185"],["-106.8723695","37.471649"],["-106.8721921","37.4721283"],["-106.871829","37.4726928"],["-106.8715323","37.4729154"],["-106.8709213","37.4732464"],["-106.8699954","37.4737381"],["-106.8690062","37.474531"],["-106.8683898","37.4749446"],["-106.8674926","37.4753151"],["-106.8666369","37.4755539"],["-106.8660193","37.4755681"],["-106.8650831","37.4753886"],["-106.8644121","37.4753384"],["-106.8625155","37.4755674"],["-106.8608579","37.4756974"],["-106.860174","37.4758616"],["-106.859597","37.4761636"],["-106.85913","37.4766394"],["-106.858306","37.477886"],["-106.858023","37.478217"],["-106.8574428","37.4785936"],["-106.8559473","37.4792696"],["-106.8543714","37.4798195"],["-106.8513126","37.480438"],["-106.8493669","37.480919"],["-106.8474503","37.4815945"],["-106.8464212","37.4820627"],["-106.8456491","37.4825833"],["-106.8444244","37.4835811"],["-106.8432078","37.4842589"],["-106.8418868","37.4848705"],["-106.8409417","37.4850229"],["-106.8389302","37.485233"],["-106.8374761","37.4856972"],["-106.836058","37.4863411"],["-106.8351738","37.4866272"],["-106.8343697","37.4867517"],["-106.8335801","37.4867445"],["-106.8326293","37.4866294"],["-106.8317035","37.4864571"],["-106.8310161","37.4863766"],["-106.8299356","37.4864762"],["-106.8260611","37.4874424"],["-106.8236808","37.4883746"],["-106.8228843","37.4884606"],["-106.8211393","37.4880935"],["-106.8201947","37.4880994"],["-106.8189013","37.4883664"],["-106.8179995","37.4884634"],["-106.8174566","37.4883756"],["-106.8165303","37.4880156"],["-106.8156186","37.4874144"],["-106.8146928","37.4867647"],["-106.8138924","37.4860172"],["-106.8134445","37.4856708"],["-106.8128134","37.4853961"],["-106.8113123","37.4849529"],["-106.8092455","37.4839098"],["-106.8087229","37.4836954"],["-106.8082105","37.4835309"],["-106.8073054","37.4833153"],["-106.8057221","37.4831549"],["-106.8014498","37.4831556"],["-106.7998913","37.4828799"],["-106.7986109","37.4826442"],["-106.7971123","37.4823177"],["-106.796343","37.4820279"],["-106.7951546","37.4813328"],["-106.7922558","37.4788561"],["-106.792002","37.4786269"],["-106.7918541","37.4784392"],["-106.7917837","37.4782753"],["-106.7917215","37.4781016"],["-106.7917039","37.477923"],["-106.791724","37.4777288"],["-106.7917699","37.4775337"],["-106.7918586","37.4773613"],["-106.7919877","37.4772089"],["-106.7921709","37.4770492"],["-106.7924562","37.4768293"],["-106.792794","37.4766062"],["-106.7931528","37.4763403"],["-106.7933043","37.4761765"],["-106.793407","37.476019"],["-106.7934649","37.4758705"],["-106.7935183","37.4756984"],["-106.7935052","37.4754281"],["-106.7934857","37.4752365"],["-106.7934145","37.4750904"],["-106.7933353","37.4749499"],["-106.793219","37.4748177"],["-106.7930531","37.4746835"],["-106.7928156","37.4745456"],["-106.7924882","37.4744307"],["-106.7923077","37.4743927"],["-106.7921085","37.4743779"],["-106.7918294","37.4743844"],["-106.7915115","37.4744494"],["-106.7904091","37.4748056"],["-106.782984","37.4770605"],["-106.7819843","37.4774021"],["-106.7815592","37.477665"],["-106.7811837","37.4779484"],["-106.7807545","37.4784432"],["-106.7803936","37.4789511"],["-106.7802286","37.4791491"],["-106.7800067","37.4793002"],["-106.7796608","37.4793917"],["-106.7791777","37.4794266"],["-106.778581","37.4794536"],["-106.7781365","37.479423"],["-106.777704","37.479337"],["-106.776534","37.4790724"],["-106.7761937","37.4790279"],["-106.7758662","37.4790177"],["-106.775549","37.4790419"],["-106.7751974","37.479102"],["-106.773577","37.4795744"],["-106.7726175","37.4798678"],["-106.772172","37.4800767"],["-106.7718145","37.480339"],["-106.7712016","37.4809257"],["-106.7705721","37.4816058"],["-106.7699796","37.4821829"],["-106.7693897","37.4828842"],["-106.7689946","37.4835225"],["-106.7682811","37.4859441"],["-106.7680421","37.4865908"],["-106.7659133","37.4907523"],["-106.7657433","37.491425"],["-106.7657423","37.491955"],["-106.7658547","37.4924281"],["-106.7660846","37.4929609"],["-106.7664472","37.4934605"],["-106.7668867","37.4940782"],["-106.7672621","37.4946154"],["-106.7675152","37.4950317"],["-106.7676923","37.4954679"],["-106.7677996","37.4958306"],["-106.7679323","37.4965757"],["-106.7680123","37.4969545"],["-106.7681219","37.4972831"],["-106.7682968","37.4976263"],["-106.7685159","37.4980037"],["-106.7690425","37.4986112"],["-106.7697783","37.499331"],["-106.7701214","37.4997027"],["-106.7703143","37.5000201"],["-106.7704262","37.5002432"],["-106.7708314","37.5011673"],["-106.7710016","37.5015304"],["-106.7713227","37.5020502"],["-106.7718228","37.5026796"],["-106.7735729","37.5045477"],["-106.7740911","37.505448"],["-106.7741234","37.5060154"],["-106.773872","37.5069984"],["-106.7736377","37.5075812"],["-106.7733957","37.5082445"],["-106.7733656","37.5087785"],["-106.7734762","37.509566"],["-106.7737636","37.5111367"],["-106.7737382","37.5116394"],["-106.7735358","37.5124038"],["-106.7731961","37.5135766"],["-106.7729337","37.5147758"],["-106.7726307","37.5155669"],["-106.7719267","37.5171895"],["-106.7717881","37.5179109"],["-106.7717813","37.5184989"],["-106.771855","37.519311"],["-106.7718606","37.520011"],["-106.7717583","37.5204397"],["-106.7715157","37.5208988"],["-106.7711702","37.5213735"],["-106.7703075","37.5223546"],["-106.7698874","37.5230554"],["-106.7696712","37.5236255"],["-106.7695895","37.5241025"],["-106.7696106","37.5247433"],["-106.7696938","37.5253245"],["-106.770196","37.5269426"],["-106.7706415","37.528491"],["-106.7707685","37.5293679"],["-106.770878","37.5311974"],["-106.771057","37.5348771"],["-106.7711382","37.5353104"],["-106.7712766","37.5357329"],["-106.7716475","37.5363856"],["-106.772188","37.5373176"],["-106.7724383","37.5379043"],["-106.7725521","37.5384297"],["-106.7725774","37.5389186"],["-106.7724973","37.5396417"],["-106.7722863","37.5409779"],["-106.7722047","37.5417156"],["-106.7721619","37.5424485"],["-106.7722104","37.54327"],["-106.7723303","37.5440692"],["-106.7726407","37.5453752"],["-106.7728483","37.5458709"],["-106.7730492","37.54633"],["-106.7735207","37.5469071"],["-106.7750756","37.5485331"],["-106.7752954","37.548855"],["-106.7754192","37.5491018"],["-106.7755574","37.5494498"],["-106.7758883","37.5504498"],["-106.7763023","37.5517002"],["-106.7765702","37.5525797"],["-106.7766541","37.5530702"],["-106.7766733","37.5534223"],["-106.7766346","37.5536986"],["-106.7765721","37.5539716"],["-106.7764503","37.5543374"],["-106.7762071","37.5547249"],["-106.7756111","37.5555261"],["-106.7753186","37.5558465"],["-106.7750069","37.5561318"],["-106.7747071","37.5563341"],["-106.7743903","37.556528"],["-106.7740905","37.5566766"],["-106.7735055","37.5568876"],["-106.772885","37.5571102"],["-106.772388","37.5573379"],["-106.7718361","37.5576991"],["-106.7715112","37.5580153"],["-106.771348","37.558288"],["-106.7711646","37.5585935"],["-106.771038","37.5588785"],["-106.7709238","37.559246"],["-106.7707738","37.5598968"],["-106.7706488","37.5602425"],["-106.7705127","37.5605607"],["-106.7702696","37.5609254"],["-106.7690711","37.5625212"],["-106.7688321","37.5628195"],["-106.7685545","37.5632333"],["-106.7679305","37.5640551"],["-106.7675503","37.5644553"],["-106.7668512","37.5650764"],["-106.7666046","37.5652663"],["-106.7663825","37.5654051"],["-106.7660742","37.5655131"],["-106.7656928","37.5655932"],["-106.7651843","37.5656694"],["-106.7648164","37.565754"],["-106.7644806","37.5658997"],["-106.7641495","37.5660868"],["-106.7636402","37.5664206"],["-106.7630805","37.5668334"],["-106.7621293","37.5676834"],["-106.7612809","37.5684521"],["-106.7608358","37.5688235"],["-106.7604287","37.5690777"],["-106.7598054","37.569433"],["-106.7591898","37.5697945"],["-106.7586921","37.5701241"],["-106.7583146","37.5704312"],["-106.758003","37.5707497"],["-106.7575547","37.5712487"],["-106.7566077","37.5723505"],["-106.7561077","37.5728875"],["-106.7557179","37.5732471"],["-106.7546709","37.5740182"],["-106.7497747","37.5773549"],["-106.7493788","37.5775909"],["-106.7487729","37.5778299"],["-106.7478783","37.5781671"],["-106.7475335","37.5783143"],["-106.7472537","37.5784598"],["-106.7468344","37.5787215"],["-106.7430866","37.5816304"],["-106.7419182","37.5825269"],["-106.7414431","37.5827673"],["-106.7410242","37.5829488"],["-106.7408046","37.5830648"],["-106.740553","37.5832559"],["-106.7402623","37.5834877"],["-106.7399426","37.5837773"],["-106.7394675","37.5841293"],["-106.7377318","37.5850368"],["-106.7349891","37.5869559"],["-106.7342073","37.5875864"],["-106.733631","37.5880605"],["-106.7330426","37.5883837"],["-106.7320443","37.5889095"],["-106.7316052","37.5892183"],["-106.731327","37.5895229"],["-106.7310261","37.5898808"],["-106.730233","37.5911716"],["-106.730104","37.5914253"],["-106.7300597","37.5916132"],["-106.7300399","37.5918196"],["-106.7300504","37.5920308"],["-106.7301446","37.5923517"],["-106.7302332","37.5927002"],["-106.7302614","37.5928895"],["-106.7302383","37.5931074"],["-106.7301817","37.5933063"],["-106.7300497","37.5935463"],["-106.7298496","37.5938494"],["-106.7295071","37.5942567"],["-106.7288409","37.5949437"],["-106.7285954","37.5952797"],["-106.7282353","37.595837"],["-106.727844","37.5965312"],["-106.7277279","37.5968932"],["-106.7276819","37.5972237"],["-106.7276588","37.5978001"],["-106.7276145","37.5981872"],["-106.7275544","37.5984515"],["-106.7274661","37.5987336"],["-106.7273457","37.5990769"],["-106.72691","37.6000775"],["-106.7268456","37.6003325"],["-106.7268197","37.6006707"],["-106.7268018","37.6012991"],["-106.7267693","37.6016143"],["-106.726704","37.60186"],["-106.7265587","37.6022166"],["-106.7262734","37.602833"],["-106.7260557","37.6034031"],["-106.725774","37.6040322"],["-106.7256713","37.604186"],["-106.7255008","37.6043659"],["-106.7251771","37.6045987"],["-106.7241845","37.6052737"],["-106.7205055","37.6082036"],["-106.7196306","37.6087564"],["-106.7189332","37.6090676"],["-106.7183571","37.6092663"],["-106.717839","37.6094017"],["-106.7172697","37.6095002"],["-106.7168463","37.6095339"],["-106.715779","37.6095768"],["-106.7120961","37.609714"],["-106.7113706","37.6097973"],["-106.7106565","37.6099064"],["-106.7085577","37.610347"],["-106.7069354","37.6107048"],["-106.7055639","37.6110381"],["-106.704854","37.6112602"],["-106.7041303","37.6115408"],["-106.7020886","37.6125097"],["-106.701296","37.6129334"],["-106.7005638","37.6133603"],["-106.6994293","37.614112"],["-106.6988021","37.6144586"],["-106.6982397","37.6146824"],["-106.6977262","37.6148465"],["-106.6969919","37.615003"],["-106.6954051","37.6151718"],["-106.6945053","37.6153039"],["-106.693836","37.6154641"],["-106.6931939","37.6157098"],["-106.6926746","37.6159734"],["-106.6921629","37.6162982"],["-106.6917363","37.6166758"],["-106.6913442","37.6170962"],["-106.6909346","37.6177105"],["-106.6903747","37.6186561"],["-106.6899628","37.6192546"],["-106.6896061","37.6196299"],["-106.6892123","37.6200153"],["-106.6862304","37.6224681"],["-106.6851989","37.6232366"],["-106.6839512","37.6240461"],["-106.6834375","37.6244365"],["-106.6829532","37.6249386"],["-106.6821995","37.6259681"],["-106.681857","37.6265048"],["-106.681531","37.6272817"],["-106.6812064","37.628068"],["-106.680915","37.6286039"],["-106.6805598","37.6290295"],["-106.6800259","37.6294872"],["-106.6794063","37.6298802"],["-106.6777552","37.630761"],["-106.6765585","37.6314392"],["-106.6757956","37.6320032"],["-106.6751176","37.6325669"],["-106.6745241","37.6331414"],["-106.6740716","37.6336578"],["-106.673026","37.635024"],["-106.6726628","37.6354175"],["-106.6720964","37.6359288"],["-106.6713435","37.6364342"],["-106.6693184","37.6377838"],["-106.6685556","37.6383571"],["-106.667849","37.6389985"],["-106.6671391","37.639723"],["-106.666418","37.6404667"],["-106.6658428","37.6410207"],["-106.6652223","37.6415076"],["-106.6643755","37.6420558"],["-106.6636485","37.6425294"],["-106.6631797","37.6429063"],["-106.662805","37.6433207"],["-106.6624899","37.6437856"],["-106.6622154","37.6444063"],["-106.6618691","37.6452707"],["-106.661614","37.6457514"],["-106.6613092","37.646132"],["-106.6601029","37.6473739"],["-106.6591657","37.648249"],["-106.6584125","37.6488907"],["-106.6568835","37.6500897"],["-106.6562956","37.6505793"],["-106.6558637","37.651073"],["-106.6555331","37.6515588"],["-106.6551811","37.652132"],["-106.6548263","37.6527015"],["-106.6531398","37.6546773"],["-106.6523178","37.6558228"],["-106.6519349","37.6564395"],["-106.6516458","37.6569333"],["-106.6496353","37.6602579"],["-106.6489972","37.6612253"],["-106.6486368","37.661727"],["-106.6482543","37.6622072"],["-106.6475454","37.6630632"],["-106.6472164","37.6634232"],["-106.6468708","37.6637843"],["-106.6447088","37.6659663"],["-106.6430505","37.667647"],["-106.6427574","37.6679326"],["-106.6425088","37.6681594"],["-106.6422288","37.6683726"],["-106.6419538","37.6685534"],["-106.6417102","37.6687034"],["-106.6413145","37.6689031"],["-106.6410501","37.6690082"],["-106.6407568","37.6691092"],["-106.6400601","37.6693132"],["-106.6397552","37.6693902"],["-106.6389286","37.6695326"],["-106.6341112","37.6701742"],["-106.6304573","37.6706199"],["-106.630261","37.6706445"],["-106.6291412","37.67088"],["-106.6268335","37.6712344"],["-106.6255923","37.6714832"],["-106.6250731","37.6715908"],["-106.6239748","37.6718341"],["-106.62164","37.6723837"],["-106.6205019","37.6726594"],["-106.6190969","37.6729731"],["-106.6180929","37.6732403"],["-106.6175773","37.6733585"],["-106.6091688","37.6753041"],["-106.6081991","37.6755193"],["-106.6069583","37.6758202"],["-106.604393","37.6764541"],["-106.6032599","37.6767226"],["-106.6001871","37.6773746"],["-106.5989111","37.677481"],["-106.5975716","37.6774374"],["-106.5896932","37.6763714"],["-106.5881256","37.6762679"],["-106.5736941","37.6761136"],["-106.5715791","37.676165"],["-106.5703274","37.6762578"],["-106.5694216","37.6763621"],["-106.5656786","37.676882"],["-106.5632597","37.6772154"],["-106.5476676","37.6793734"],["-106.5257363","37.6803962"],["-106.5191414","37.6805822"],["-106.516899","37.6804471"],["-106.5138925","37.6800655"],["-106.4997895","37.6777705"],["-106.4983154","37.6775704"],["-106.4960134","37.6773426"],["-106.4949355","37.6772769"],["-106.4360244","37.6767222"],["-106.433298","37.6766579"],["-106.4316647","37.6765274"],["-106.4305525","37.6763488"],["-106.4184836","37.6741064"],["-106.4145316","37.6733766"],["-106.4122601","37.6730534"],["-106.4109964","37.6729675"],["-106.4092211","37.67296"],["-106.4071461","37.6731296"],["-106.3971889","37.6747202"],["-106.3956443","37.6749771"],["-106.3880708","37.6762029"],["-106.3855562","37.6766096"],["-106.3695201","37.6792067"],["-106.3680327","37.6794357"],["-106.3679332","37.6794334"],["-106.3665325","37.6795873"],["-106.3654073","37.6796364"],["-106.3647918","37.6796397"],["-106.3643955","37.6796363"],["-106.3640771","37.679616"],["-106.3637539","37.679589"],["-106.3634763","37.6795594"],["-106.3613542","37.6794446"],["-106.3518981","37.6786716"],["-106.3518649","37.6788424"],["-106.3516313","37.6806252"],["-106.351549","37.6812374"],["-106.3512845","37.683335"],["-106.3512663","37.6834924"],["-106.3512117","37.6838737"],["-106.3511257","37.6844122"],["-106.351022","37.6848227"],["-106.3508964","37.6851948"],["-106.3503661","37.6863577"],["-106.3499951","37.6871494"],["-106.3499149","37.6872933"],["-106.3498241","37.6874232"],["-106.3497215","37.6875595"],["-106.3496176","37.6876762"],["-106.3493847","37.6878945"],["-106.3490075","37.6881968"],["-106.3394181","37.6942619"],["-106.2813618","37.7334616"],["-106.2783346","37.7355208"],["-106.2651888","37.7443584"],["-106.2637369","37.7452586"],["-106.2625648","37.7458284"],["-106.261396","37.7463622"],["-106.2603024","37.7467792"],["-106.2592298","37.7471732"],["-106.2580089","37.7474521"],["-106.2567277","37.747706"],["-106.2553125","37.7479325"],["-106.2542133","37.7480348"],["-106.2534288","37.7480818"],["-106.2526052","37.7481107"],["-106.1489801","37.7481663"],["-106.148187","37.7954836"],["-106.1481123","37.8006214"],["-106.1475123","37.8348622"],["-106.1463453","37.865183"],["-106.1462396","37.8683923"],["-106.1442534","37.963235"],["-106.1442098","37.9650281"],["-106.1433812","37.9988852"],["-106.143312","37.9996589"],["-106.1431407","38.0008045"],["-106.1428341","38.0029093"],["-106.1421296","38.0146848"],["-106.1419861","38.0377878"],["-106.142206","38.0803261"],["-106.1422115","38.0880533"],["-106.1421868","38.0881503"],["-106.1421679","38.0882002"],["-106.1421519","38.0882383"],["-106.1421304","38.0882789"],["-106.1421069","38.0883179"],["-106.1420839","38.0883489"],["-106.1420296","38.088414"],["-106.1419901","38.0884534"],["-106.1419551","38.0884861"],["-106.1419164","38.0885178"],["-106.1418661","38.0885534"],["-106.1418131","38.0885854"],["-106.1417612","38.0886148"],["-106.1417227","38.0886336"],["-106.1416836","38.0886504"],["-106.1415785","38.08869"],["-106.1414688","38.0887219"],["-106.1413452","38.0887468"],["-106.1373755","38.0887486"],["-106.1371934","38.0887576"],["-106.1368651","38.0887899"],["-106.1366512","38.0888377"],["-106.1363494","38.0889173"],["-106.1362323","38.088954"],["-106.1361161","38.0889936"],["-106.1360159","38.089031"],["-106.1359134","38.0890754"],["-106.1358228","38.0891177"],["-106.1355461","38.0892585"],["-106.1354085","38.0893475"],["-106.1352849","38.0894366"],["-106.1351852","38.0895134"],["-106.1350731","38.089603"],["-106.1349958","38.0896696"],["-106.1349294","38.0897338"],["-106.1340304","38.0906363"],["-106.1339227","38.0907355"],["-106.1337314","38.0908962"],["-106.1334885","38.0910864"],["-106.1333655","38.0911762"],["-106.1330522","38.0913839"],["-106.1326989","38.0915881"],["-106.1326009","38.0916407"],["-106.1323616","38.0917598"],["-106.1266487","38.0942815"],["-106.1262514","38.0944469"],["-106.1260795","38.0945112"],["-106.1258939","38.0945744"],["-106.1255592","38.0946728"],["-106.1252115","38.0947564"],["-106.12489","38.0948204"],["-106.1245838","38.0948708"],["-106.1242052","38.0949157"],["-106.062424","38.096664"],["-106.0618708","38.0966882"],["-106.0616275","38.0967039"],["-106.061371","38.0967307"],["-106.0608057","38.0968037"],["-106.0605336","38.0968485"],["-106.0602404","38.0969021"],["-106.0599581","38.0969646"],["-106.059377","38.0971092"],["-106.0590881","38.0971907"],["-106.0585652","38.097363"],["-106.0583252","38.0974511"],["-106.0580999","38.0975416"],["-106.0576447","38.0977398"],["-106.0571091","38.0980049"],["-105.9651019","38.1475932"],["-105.9643437","38.1480229"],["-105.9630515","38.1487958"],["-105.9624044","38.1492206"],["-105.9611403","38.1500866"],["-105.9605253","38.150547"],["-105.9596761","38.1512094"],["-105.9590524","38.1517102"],["-105.9577575","38.1528392"],["-105.9570838","38.1534722"],["-105.9555308","38.1550768"],["-105.9548856","38.155804"],["-105.9543285","38.1564657"],["-105.9535155","38.1575343"],["-105.9480121","38.1655238"],["-105.9471949","38.1666927"],["-105.9464103","38.1678311"],["-105.9448227","38.1701597"],["-105.9443834","38.1708561"],["-105.9439233","38.1716453"],["-105.9435021","38.1723979"],["-105.9432495","38.1728843"],["-105.9427875","38.1738435"],["-105.942336","38.1748787"],["-105.9421695","38.1752884"],["-105.9415615","38.177018"],["-105.9414366","38.1774248"],["-105.9412549","38.1780641"],["-105.9411825","38.178348"],["-105.9409281","38.1794667"],["-105.9406624","38.1809964"],["-105.9405647","38.1817861"],["-105.9405104","38.1823602"],["-105.9404659","38.1829907"],["-105.9404344","38.1844287"],["-105.9404452","38.1850797"],["-105.9404759","38.1860468"],["-105.9404908","38.1862897"],["-105.945704","38.2410004"],["-105.9457825","38.2415258"],["-105.9458727","38.2420399"],["-105.9459634","38.2424498"],["-105.9460513","38.2427877"],["-105.9462365","38.2434007"],["-105.9464074","38.24388"],["-105.9465966","38.2443784"],["-105.9467722","38.2447897"],["-105.9469953","38.2452776"],["-105.9471809","38.2456349"],["-105.9474765","38.2461478"],["-105.9475916","38.2463342"],["-105.9476909","38.2464903"],["-105.9478192","38.2467042"],["-105.9482321","38.2473016"],["-105.9512867","38.2518369"],["-105.9521101","38.2529854"],["-105.9525152","38.253517"],["-105.9825083","38.2916007"],["-106.0391632","38.3699454"],["-106.0398696","38.3708564"],["-106.0400163","38.3710299"],["-106.0404425","38.3714806"],["-106.0513525","38.3827118"],["-106.0517853","38.3831357"],["-106.053175","38.3846039"],["-106.0535794","38.3850598"],["-106.0541101","38.3857172"],["-106.054673","38.386439"],["-106.055977","38.388186"],["-106.0572205","38.3898504"],["-106.0583361","38.3912888"],["-106.0588611","38.3918604"],["-106.0598605","38.3928192"],["-106.0607857","38.3935978"],["-106.0639143","38.395933"],["-106.0642172","38.396165"],["-106.0643517","38.3962777"],["-106.0644582","38.3963706"],["-106.0645577","38.3964643"],["-106.0646502","38.3965597"],["-106.0647928","38.3967153"],["-106.0648607","38.3967963"],["-106.0649544","38.3969152"],["-106.0650391","38.3970265"],["-106.0651496","38.3971935"],["-106.0652572","38.3973714"],["-106.0653122","38.3974742"],["-106.0653545","38.3975615"],["-106.0653975","38.3976563"],["-106.0654419","38.3977645"],["-106.065484","38.3978799"],["-106.0655576","38.398106"],["-106.0688218","38.4088829"],["-106.0692522","38.4099105"],["-106.0697107","38.4107416"],["-106.0702402","38.411533"],["-106.0709389","38.4124622"],["-106.0715306","38.4132159"],["-106.0719069","38.4136336"],["-106.0723435","38.4140613"],["-106.0729811","38.4146355"],["-106.0735177","38.4150937"],["-106.0742801","38.4156884"],["-106.0746115","38.4159286"],["-106.0754272","38.4164554"],["-106.0758689","38.416722"],["-106.0763612","38.417005"],["-106.0768907","38.417286"],["-106.0775109","38.4175918"],["-106.0880949","38.422217"],["-106.088464","38.4223871"],["-106.088671","38.4224935"],["-106.0888793","38.4226063"],["-106.089067","38.4227192"],["-106.0892514","38.4228462"],["-106.0894585","38.4230048"],["-106.0896254","38.4231511"],["-106.0898008","38.4233362"],["-106.0899478","38.4235186"],["-106.0900738","38.4237102"],["-106.0901792","38.4239151"],["-106.0902468","38.4240859"],["-106.0903","38.4242675"],["-106.0903336","38.4244471"],["-106.0903525","38.4246367"],["-106.0903601","38.42484"],["-106.0903457","38.4250839"],["-106.0902984","38.4254313"],["-106.0901425","38.4261041"],["-106.0899308","38.4268047"],["-106.0899007","38.4269392"],["-106.0898884","38.4270224"],["-106.0898822","38.4272273"],["-106.0898939","38.427346"],["-106.0899428","38.4275591"],["-106.0899897","38.4276899"],["-106.0900736","38.4278559"],["-106.0901395","38.4279565"],["-106.090255","38.4281095"],["-106.0904334","38.4282647"],["-106.0906237","38.4283997"],["-106.0907661","38.4284801"],["-106.090923","38.4285505"],["-106.09107","38.4286082"],["-106.0912755","38.4286735"],["-106.0914704","38.4287124"],["-106.0916861","38.4287361"],["-106.091901","38.428738"],["-106.0921622","38.4287136"],["-106.094888","38.4283877"],["-106.095817","38.4282941"],["-106.09608","38.4282991"],["-106.0963306","38.4283161"],["-106.0965694","38.4283784"],["-106.0968022","38.42845"],["-106.0969397","38.4285103"],["-106.0971828","38.4286537"],["-106.0980016","38.4292531"],["-106.0986501","38.4297355"],["-106.0990381","38.43007"],["-106.0994893","38.430528"],["-106.1000128","38.4311105"],["-106.1013374","38.4326747"],["-106.101582","38.4329887"],["-106.1017038","38.4331759"],["-106.1018535","38.4335064"],["-106.1019267","38.4337878"],["-106.1019431","38.4340394"],["-106.1018535","38.4344128"],["-106.1016548","38.4350205"],["-106.1015514","38.435392"],["-106.1015338","38.4357389"],["-106.101573","38.4359649"],["-106.1016235","38.4360838"],["-106.10175","38.4362813"],["-106.1020121","38.4366301"],["-106.1022876","38.4370109"],["-106.1024535","38.4372599"],["-106.1025834","38.4375228"],["-106.1029497","38.4384913"],["-106.1031251","38.4388397"],["-106.1032712","38.4390482"],["-106.1034321","38.439256"],["-106.1038275","38.4397254"],["-106.1042699","38.4402623"],["-106.1044408","38.4405294"],["-106.1046822","38.4410031"],["-106.1052132","38.4421367"],["-106.1053935","38.4426144"],["-106.1054266","38.4428094"],["-106.1054279","38.4430172"],["-106.1053806","38.4432272"],["-106.1052801","38.4435408"],["-106.1051547","38.4438153"],["-106.1051028","38.4439817"],["-106.1050535","38.4441862"],["-106.105037","38.4443718"],["-106.1050246","38.444592"],["-106.1050241","38.4448218"],["-106.1050416","38.4450539"],["-106.1050871","38.4452146"],["-106.1051297","38.4453911"],["-106.1051888","38.445575"],["-106.1052706","38.445784"],["-106.1054534","38.4461425"],["-106.1056284","38.4464228"],["-106.1058361","38.4466741"],["-106.1061983","38.4470944"],["-106.1063451","38.4472926"],["-106.1064243","38.4474141"],["-106.1065371","38.447604"],["-106.1065938","38.4477344"],["-106.1066474","38.4478747"],["-106.1067002","38.4480246"],["-106.1067908","38.4483163"],["-106.106808","38.4484392"],["-106.1068139","38.4485403"],["-106.1068179","38.448624"],["-106.1068221","38.4487158"],["-106.1068071","38.448814"],["-106.1067804","38.4489374"],["-106.1067467","38.4490686"],["-106.1067031","38.4491959"],["-106.106655","38.4493156"],["-106.1066014","38.4494232"],["-106.1065463","38.4495267"],["-106.1064843","38.4496269"],["-106.1064124","38.4497239"],["-106.1063307","38.4498203"],["-106.106223","38.449936"],["-106.1060971","38.4500557"],["-106.1059544","38.4501733"],["-106.1055219","38.4504668"],["-106.1053027","38.4505987"],["-106.1031758","38.451792"],["-106.1027676","38.4520295"],["-106.1025435","38.4521761"],["-106.1023937","38.4522873"],["-106.1019995","38.4526167"],["-106.1017157","38.4528998"],["-106.1015792","38.453055"],["-106.1013863","38.4533112"],["-106.1008708","38.4540313"],["-106.1003425","38.4548034"],["-106.1002027","38.4550257"],["-106.1001018","38.4552031"],["-106.1000187","38.4553809"],["-106.0999544","38.4555425"],["-106.0998828","38.4557374"],["-106.0998393","38.4559009"],["-106.0997209","38.456453"],["-106.0995629","38.4573172"],["-106.0995021","38.4576402"],["-106.0994486","38.4578639"],["-106.0993931","38.4580302"],["-106.099345","38.4581506"],["-106.0992777","38.458277"],["-106.0991058","38.4585416"],["-106.0989685","38.458727"],["-106.0985474","38.4592853"],["-106.0984504","38.4594376"],["-106.0983663","38.4595813"],["-106.0983119","38.4596939"],["-106.0982572","38.459822"],["-106.098221","38.4599479"],["-106.0981873","38.4601036"],["-106.0981569","38.4602787"],["-106.0981403","38.4604533"],["-106.0981215","38.4607221"],["-106.0981152","38.4608277"],["-106.0981072","38.4609519"],["-106.0980876","38.4610736"],["-106.0980591","38.4611984"],["-106.0980227","38.4613144"],["-106.0979833","38.4614303"],["-106.0979375","38.4615364"],["-106.0978883","38.4616397"],["-106.0978257","38.4617541"],["-106.0977441","38.4618779"],["-106.0976601","38.4619997"],["-106.0975436","38.4621469"],["-106.0974188","38.4623013"],["-106.0971718","38.4626126"],["-106.0970965","38.4627178"],["-106.0970288","38.4628355"],["-106.0969687","38.4629564"],["-106.0969082","38.4630972"],["-106.095954","38.4655725"],["-106.0958807","38.4657367"],["-106.0957422","38.466012"],["-106.0956305","38.4662195"],["-106.0953954","38.4666282"],["-106.0952879","38.4667907"],["-106.0951783","38.4669461"],["-106.0950511","38.4671184"],["-106.0945422","38.4677375"],["-106.0944251","38.4678675"],["-106.0943094","38.4679863"],["-106.0939444","38.4683455"],["-106.0937329","38.4685748"],["-106.0936254","38.4686961"],["-106.0935239","38.468823"],["-106.0933883","38.4690194"],["-106.0932024","38.4693191"],["-106.0928603","38.4698913"],["-106.0924221","38.470565"],["-106.0923167","38.4707163"],["-106.0922382","38.4708179"],["-106.0921587","38.4709135"],["-106.0920621","38.4710151"],["-106.0916755","38.471386"],["-106.0914617","38.471589"],["-106.0912926","38.4717494"],["-106.0912378","38.4718076"],["-106.091173","38.4718804"],["-106.0910923","38.4719817"],["-106.0910205","38.4720856"],["-106.0909474","38.4721974"],["-106.0908848","38.472309"],["-106.0908221","38.4724382"],["-106.0907415","38.4726218"],["-106.0904625","38.4733117"],["-106.0904023","38.4734379"],["-106.0903341","38.4735584"],["-106.090253","38.47369"],["-106.0901627","38.4738196"],["-106.0899837","38.4740428"],["-106.0898701","38.4741637"],["-106.0897294","38.4742973"],["-106.0893912","38.4745713"],["-106.0888051","38.4750411"],["-106.0885216","38.4752953"],["-106.0883965","38.4754335"],["-106.0882778","38.4755808"],["-106.0881772","38.4757438"],["-106.0881183","38.4758773"],["-106.0880683","38.4760145"],["-106.0880396","38.4761584"],["-106.0880227","38.4763134"],["-106.0880167","38.4765059"],["-106.0880411","38.4767079"],["-106.0881131","38.4769583"],["-106.0882503","38.477427"],["-106.0883474","38.4778034"],["-106.0883689","38.4780499"],["-106.0883512","38.4783291"],["-106.0883103","38.4785106"],["-106.0882373","38.4787087"],["-106.0881466","38.4788775"],["-106.0879875","38.4790992"],["-106.0873964","38.4799149"],["-106.0872178","38.4801724"],["-106.0871177","38.4803529"],["-106.087025","38.4805613"],["-106.0869384","38.480816"],["-106.0869024","38.4810182"],["-106.0868948","38.4812285"],["-106.0869003","38.4814367"],["-106.0869647","38.4817891"],["-106.0871267","38.4826195"],["-106.0871525","38.4829308"],["-106.0871346","38.4832008"],["-106.0870828","38.4834212"],["-106.0870202","38.483591"],["-106.0869517","38.4837441"],["-106.0867848","38.4840126"],["-106.0859883","38.4851351"],["-106.0858711","38.4853451"],["-106.0857618","38.4855761"],["-106.0856673","38.4858589"],["-106.0855713","38.4862151"],["-106.0852633","38.4878058"],["-106.084901","38.4890823"],["-106.0836887","38.4932715"],["-106.0833046","38.4946512"],["-106.0831623","38.4952881"],["-106.0830735","38.4958972"],["-106.0824945","38.5016224"],["-106.0823443","38.5027338"],["-106.0822425","38.5030256"],["-106.0821336","38.5032709"],["-106.0820059","38.5035136"],["-106.0817925","38.5038545"],["-106.0815614","38.504155"],["-106.0809095","38.5049218"],["-106.080637","38.5052379"],["-106.0797552","38.5062605"],["-106.0790663","38.5069618"],["-106.0781623","38.5078371"],["-106.077716","38.5082473"],["-106.0774486","38.5084939"],["-106.0773454","38.5085946"],["-106.0772283","38.50872"],["-106.0770654","38.5089116"],["-106.0769607","38.5090807"],["-106.0768941","38.509202"],["-106.076803","38.5094223"],["-106.0767707","38.509525"],["-106.0767583","38.5095766"],["-106.0767477","38.5096289"],["-106.0767375","38.5096966"],["-106.0767268","38.5097854"],["-106.0767202","38.5098849"],["-106.0767125","38.5100328"],["-106.0766724","38.5112006"],["-106.0766375","38.5123891"],["-106.076595","38.5145414"],["-106.0766064","38.5148652"],["-106.0766394","38.5152145"],["-106.0766916","38.515495"],["-106.0767507","38.5157523"],["-106.0768332","38.5160097"],["-106.0769155","38.5162332"],["-106.0771892","38.5168488"],["-106.078044","38.518462"],["-106.0782505","38.5188079"],["-106.0785565","38.5191832"],["-106.0787429","38.5193829"],["-106.0789226","38.5195609"],["-106.0791906","38.5197996"],["-106.079425","38.519984"],["-106.079593","38.520111"],["-106.0797545","38.5202255"],["-106.0798843","38.5203038"],["-106.0800601","38.5204074"],["-106.0801319","38.5205212"],["-106.0801677","38.5205879"],["-106.0801847","38.5206344"],["-106.0801917","38.5206795"],["-106.0801886","38.5207268"],["-106.0801286","38.520965"],["-106.0800956","38.5210332"],["-106.0800362","38.5211439"],["-106.079925","38.5213458"],["-106.0798542","38.5215489"],["-106.0798038","38.521742"],["-106.0797845","38.5218976"],["-106.0797649","38.522144"],["-106.0797689","38.5224787"],["-106.0797561","38.5229884"],["-106.0797473","38.5235128"],["-106.0796209","38.5417671"],["-106.0796319","38.5428629"],["-106.0796302","38.543634"],["-106.0796469","38.5484958"],["-106.0796533","38.5487378"],["-106.0796875","38.5490735"],["-106.0797593","38.5494012"],["-106.0798456","38.5496887"],["-106.0799517","38.5499142"],["-106.080056","38.5501195"],["-106.0802065","38.5503411"],["-106.0804456","38.5506567"],["-106.0806869","38.5508896"],["-106.0809363","38.5511061"],["-106.081438","38.551483"],["-106.0819511","38.5518602"],["-106.0821885","38.5520602"],["-106.0823965","38.5522635"],["-106.0826952","38.5526113"],["-106.0827667","38.5527098"],["-106.0828629","38.5528427"],["-106.0829786","38.5530495"],["-106.0830774","38.5532768"],["-106.0831608","38.5535212"],["-106.0832495","38.5539068"],["-106.0832741","38.5542145"],["-106.0832671","38.5546333"],["-106.0832296","38.5548996"],["-106.0829937","38.5557873"],["-106.0827993","38.5564707"],["-106.0826239","38.5570763"],["-106.0825822","38.5572739"],["-106.0803988","38.5650768"],["-106.080166","38.5661092"],["-106.0800759","38.5667258"],["-106.0800029","38.5675057"],["-106.0799786","38.5684921"],["-106.0799977","38.5689971"],["-106.0800503","38.5695935"],["-106.0801758","38.5705006"],["-106.0810791","38.5748361"],["-106.0814854","38.5768067"],["-106.0829148","38.5835662"],["-106.0829666","38.5837809"],["-106.0834824","38.5862134"],["-106.083709","38.5872754"],["-106.0844348","38.5908151"],["-106.084549","38.591557"],["-106.0846311","38.5923643"],["-106.0846558","38.5930463"],["-106.0846487","38.5940647"],["-106.0845191","38.5953824"],["-106.0841831","38.5970773"],["-106.0838522","38.598421"],["-106.0832432","38.6009583"],["-106.0829961","38.6020808"],["-106.0827226","38.6032134"],["-106.0820051","38.606163"],["-106.0818758","38.6066707"],["-106.081418","38.6085693"],["-106.0812938","38.6090564"],["-106.081094","38.6099082"],["-106.0810091","38.6102362"],["-106.0808401","38.6109221"],["-106.080588","38.611952"],["-106.080365","38.6128553"],["-106.0800803","38.6140602"],["-106.0798108","38.6152603"],["-106.0795016","38.6166365"],["-106.079289","38.6175448"],["-106.0788844","38.6191872"],["-106.0783939","38.6211321"],["-106.0780686","38.6223966"],["-106.0777367","38.623699"],["-106.077583","38.624431"],["-106.0775287","38.6248792"],["-106.0775103","38.6253757"],["-106.077546","38.6260638"],["-106.0776824","38.6268498"],["-106.077784","38.6272547"],["-106.0780897","38.6283117"],["-106.0781625","38.6285269"],["-106.0785736","38.6299309"],["-106.0786511","38.6301674"],["-106.0790484","38.6315824"],["-106.0794077","38.632759"],["-106.0797209","38.63363"],["-106.0798377","38.6339944"],["-106.0801054","38.6345904"],["-106.0802473","38.6349103"],["-106.0813583","38.6368996"],["-106.0817146","38.6375747"],["-106.0820153","38.6382018"],["-106.0823406","38.6389356"],["-106.0824297","38.6392912"],["-106.0826783","38.6400768"],["-106.0827787","38.640363"],["-106.0828045","38.6405299"],["-106.0828735","38.6408193"],["-106.0831099","38.6420509"],["-106.0833366","38.6431584"],["-106.0835696","38.6443936"],["-106.085115","38.6517074"],["-106.0859682","38.6547986"],["-106.0862719","38.6558508"],["-106.086525","38.6566968"],["-106.0866106","38.6569485"],["-106.087051","38.6584188"],["-106.0874649","38.6597732"],["-106.0875794","38.6601082"],["-106.0888347","38.6644373"],["-106.0897821","38.6677002"],["-106.0900082","38.6684618"],["-106.0919458","38.6750566"],["-106.0919845","38.6753397"],["-106.0921134","38.6760706"],["-106.0921689","38.6765294"],["-106.0922021","38.6770729"],["-106.0922384","38.6780508"],["-106.0922168","38.6787155"],["-106.0922389","38.6788594"],["-106.0921643","38.6798"],["-106.0919977","38.6824698"],["-106.0919596","38.6831915"],["-106.0919175","38.6839265"],["-106.0918422","38.6846096"],["-106.0917055","38.6854195"],["-106.0908325","38.689364"],["-106.0906562","38.6901475"],["-106.0902944","38.6918488"],["-106.0901904","38.6925096"],["-106.0901353","38.6932096"],["-106.0901381","38.694611"],["-106.09023","38.7017942"],["-106.0903113","38.7037556"],["-106.0904349","38.7045529"],["-106.0906764","38.7056366"],["-106.0911929","38.7071836"],["-106.0913119","38.7075024"],["-106.091455","38.7078892"],["-106.091634","38.7083896"],["-106.0917705","38.7088573"],["-106.0918932","38.7094682"],["-106.0919197","38.7097149"],["-106.0919062","38.7101891"],["-106.0917955","38.7108691"],["-106.0916744","38.7112926"],["-106.0914154","38.7119026"],["-106.0911333","38.7123804"],["-106.090338","38.7133811"],["-106.0897678","38.7141252"],["-106.0883294","38.7158702"],["-106.0878961","38.7163866"],["-106.0871986","38.7172675"],["-106.0867526","38.7178525"],["-106.0864888","38.7182407"],["-106.0863552","38.7184587"],["-106.086272","38.7185865"],["-106.0859952","38.7193194"],["-106.0859269","38.7195733"],["-106.0858502","38.7200111"],["-106.0858034","38.7208146"],["-106.0858141","38.7308989"],["-106.0857733","38.7339444"],["-106.0857128","38.7347736"],["-106.0855492","38.735627"],["-106.0853817","38.7360813"],["-106.0850088","38.7368996"],["-106.0846186","38.737687"],["-106.0843512","38.738255"],["-106.0839738","38.7390198"],["-106.083611","38.7397469"],["-106.0830998","38.7408138"],["-106.0828909","38.7412898"],["-106.0826626","38.7417776"],["-106.0817771","38.7436106"],["-106.0815694","38.7440425"],["-106.0812987","38.7446357"],["-106.0811497","38.7450247"],["-106.0810199","38.7454131"],["-106.0809349","38.7457688"],["-106.0809047","38.7459398"],["-106.0808846","38.7460608"],["-106.0808859","38.7463016"],["-106.0808967","38.7467204"],["-106.0809423","38.7472802"],["-106.0814842","38.7516771"],["-106.0815814","38.7522537"],["-106.081685","38.752768"],["-106.081786","38.7530675"],["-106.081963","38.753501"],["-106.0821272","38.75382"],["-106.0822531","38.7540219"],["-106.0824081","38.7542508"],["-106.0826422","38.7545372"],["-106.0831845","38.7551412"],["-106.0890178","38.7607661"],["-106.0901927","38.7618081"],["-106.090975","38.7624332"],["-106.0918958","38.7631056"],["-106.0981761","38.767087"],["-106.1025975","38.7698282"],["-106.103177","38.7702631"],["-106.1037223","38.7707221"],["-106.1040946","38.7710967"],["-106.104435","38.7714681"],["-106.1047371","38.7718588"],["-106.1050394","38.7722858"],["-106.1053305","38.7727839"],["-106.1056445","38.7734299"],["-106.1062388","38.7751148"],["-106.106875","38.7769319"],["-106.1070535","38.7773924"],["-106.1071949","38.7776583"],["-106.1073953","38.7779893"],["-106.1076742","38.7783933"],["-106.1079981","38.7787755"],["-106.1082064","38.778986"],["-106.1085377","38.7792759"],["-106.1088283","38.7794908"],["-106.1095219","38.7799272"],["-106.1102525","38.7803187"],["-106.1108203","38.7806235"],["-106.1115415","38.7810275"],["-106.1120141","38.7813321"],["-106.112317","38.7815706"],["-106.1125864","38.7818076"],["-106.1128317","38.7820417"],["-106.1130739","38.7822969"],["-106.1132668","38.7825345"],["-106.1134898","38.7828309"],["-106.1136971","38.7831839"],["-106.1138885","38.783561"],["-106.1140101","38.7838312"],["-106.1141125","38.7841821"],["-106.114163","38.7844469"],["-106.1142138","38.7847527"],["-106.1142384","38.7851364"],["-106.1142111","38.7855946"],["-106.1141164","38.7861802"],["-106.1136248","38.7885133"],["-106.1135611","38.7888961"],["-106.1134866","38.7895885"],["-106.1134507","38.7902924"],["-106.1135683","38.7914062"],["-106.1136921","38.7921509"],["-106.1138042","38.792705"],["-106.1139088","38.7932159"],["-106.1140021","38.793732"],["-106.1140718","38.7941779"],["-106.1141104","38.7948336"],["-106.1140065","38.8007052"],["-106.1139957","38.8020538"],["-106.1140123","38.8023896"],["-106.1140395","38.8026712"],["-106.1140948","38.8029854"],["-106.1141746","38.8033289"],["-106.1142965","38.8037465"],["-106.1156837","38.8076147"],["-106.1157043","38.8076952"],["-106.1157228","38.8079932"],["-106.1157447","38.8082704"],["-106.1157295","38.8085252"],["-106.1157041","38.8086796"],["-106.1156349","38.8089291"],["-106.115577","38.8090724"],["-106.1155107","38.8091973"],["-106.1153213","38.8094622"],["-106.1150923","38.8096963"],["-106.114937","38.8098189"],["-106.1147776","38.8099222"],["-106.1145676","38.8100202"],["-106.1143314","38.8101216"],["-106.1140037","38.8102523"],["-106.1082788","38.811966"],["-106.1057098","38.8127336"],["-106.1043307","38.8131273"],["-106.0967994","38.8153482"],["-106.0961058","38.8155364"],["-106.095696","38.8156296"],["-106.0953725","38.8156827"],["-106.094976","38.8157346"],["-106.0945099","38.8157717"],["-106.0941208","38.8157761"],["-106.0937602","38.8157624"],["-106.0934168","38.8157379"],["-106.0931058","38.8157063"],["-106.092737","38.8156525"],["-106.0923702","38.8155806"],["-106.0919263","38.8154572"],["-106.0911417","38.8152029"],["-106.0896409","38.8146749"],["-106.0888238","38.814398"],["-106.0885176","38.8143232"],["-106.0882539","38.8142786"],["-106.0880088","38.8142591"],["-106.0877561","38.8142671"],["-106.0874765","38.8142962"],["-106.0871491","38.8143708"],["-106.0854427","38.814903"],["-106.0843627","38.8152483"],["-106.0826523","38.8158062"],["-106.0826044","38.8158227"],["-106.0812872","38.8162214"],["-106.0803542","38.8165046"],["-106.0759631","38.8178363"],["-106.0743118","38.8183081"],["-106.0653234","38.8204627"],["-106.0629303","38.8210162"],["-106.0624795","38.8211417"],["-106.0620469","38.8212747"],["-106.0610157","38.8216842"],["-106.0572295","38.8234036"],["-106.0568144","38.8236123"],["-106.0564248","38.8238229"],["-106.0560229","38.824064"],["-106.055471","38.8244286"],["-106.0549306","38.8248268"],["-106.054168","38.8254301"],["-106.0538808","38.8256377"],["-106.0532469","38.8259923"],["-106.0528515","38.8261691"],["-106.0523737","38.8263355"],["-106.0519476","38.8264414"],["-106.0516154","38.826502"],["-106.0511647","38.8265532"],["-106.0507061","38.8265856"],["-106.0469753","38.8266691"],["-106.045319","38.8267205"],["-106.0443544","38.8267636"],["-106.0436829","38.8268006"],["-106.0431511","38.8269276"],["-106.0424812","38.8272201"],["-106.0419348","38.8276083"],["-106.0412081","38.828067"],["-106.0407471","38.8282385"],["-106.0405009","38.8282866"],["-106.0402574","38.8283118"],["-106.0400052","38.8283154"],["-106.0395569","38.8282593"],["-106.0392592","38.8281681"],["-106.0384332","38.8278454"],["-106.0379134","38.8277152"],["-106.0376252","38.8276888"],["-106.0371619","38.8277025"],["-106.0368969","38.8277411"],["-106.0366527","38.8277961"],["-106.036422","38.8278676"],["-106.0361387","38.8279699"],["-106.0357334","38.8281309"],["-106.0353094","38.8283046"],["-106.0301008","38.8305489"],["-106.0286352","38.8311863"],["-106.0263506","38.8321739"],["-106.0258148","38.8324053"],["-106.0254792","38.832578"],["-106.0251563","38.8327626"],["-106.0248572","38.8329555"],["-106.0244501","38.8332956"],["-106.0234924","38.8342903"],["-106.0232721","38.8344484"],["-106.0230973","38.8345705"],["-106.0228602","38.8347144"],["-106.0224517","38.8349351"],["-106.019636","38.83603"],["-106.0183467","38.8367173"],["-106.0173441","38.8373959"],["-106.0166846","38.8378864"],["-106.0161154","38.8384091"],["-106.0151148","38.8394373"],["-106.0145403","38.8399305"],["-106.0139118","38.8403366"],["-106.01307","38.8407486"],["-106.0124667","38.840974"],["-106.0120321","38.8410983"],["-106.0113362","38.8412688"],["-106.0105834","38.8414279"],["-106.0096678","38.8416304"],["-106.0090078","38.8417008"],["-106.0084576","38.8417025"],["-106.0081227","38.8416725"],["-106.0068664","38.8414162"],["-106.0052855","38.8410888"],["-106.0045028","38.8409578"],["-106.0038574","38.8409232"],["-106.0024075","38.8409567"],["-106.0007684","38.8410225"],["-105.9997355","38.8410965"],["-105.9987602","38.8412516"],["-105.9968548","38.8416431"],["-105.9952792","38.8419935"],["-105.9947417","38.8421428"],["-105.9940472","38.8424137"],["-105.9927692","38.8429669"],["-105.992239","38.8432317"],["-105.9915976","38.8436035"],["-105.9910218","38.8439744"],["-105.9902196","38.8446316"],["-105.9893239","38.8454386"],["-105.9883958","38.8463132"],["-105.9877462","38.8469644"],["-105.9872858","38.8474523"],["-105.98651","38.8483007"],["-105.9843964","38.850619"],["-105.9839187","38.851157"],["-105.9836949","38.8515345"],["-105.9835177","38.8518889"],["-105.9834558","38.8520994"],["-105.9834084","38.8526474"],["-105.9834293","38.8528764"],["-105.9835196","38.8532628"],["-105.9836987","38.853643"],["-105.9840195","38.8540752"],["-105.9844822","38.8545453"],["-105.9849885","38.8550447"],["-105.9854854","38.8555425"],["-105.9856484","38.8557379"],["-105.985768","38.8559176"],["-105.9859371","38.8562423"],["-105.9860068","38.8564462"],["-105.9860756","38.8568848"],["-105.9861605","38.8578479"],["-105.9862246","38.8588793"],["-105.986235","38.8592649"],["-105.9862746","38.8599098"],["-105.9862789","38.8603015"],["-105.986182","38.8608512"],["-105.985932","38.8613929"],["-105.9853881","38.862308"],["-105.9852184","38.8626311"],["-105.9850907","38.8629394"],["-105.9849995","38.8632621"],["-105.984952","38.8634993"],["-105.9849072","38.8637741"],["-105.9849074","38.8641556"],["-105.984949","38.864542"],["-105.9850026","38.8649303"],["-105.985054","38.8653227"],["-105.9850712","38.8657014"],["-105.9850284","38.866351"],["-105.9844616","38.8704335"],["-105.9842603","38.8719323"],["-105.9842496","38.8722013"],["-105.9842568","38.8724128"],["-105.9842718","38.8726077"],["-105.9842976","38.8727999"],["-105.9843388","38.873005"],["-105.9843871","38.8732178"],["-105.9844659","38.873509"],["-105.9845488","38.873751"],["-105.9846821","38.874034"],["-105.9862373","38.8768979"],["-105.9867922","38.8778929"],["-105.9871322","38.8785875"],["-105.9877695","38.87985"],["-105.9881791","38.8806296"],["-105.9900061","38.8839554"],["-105.9901929","38.8842882"],["-105.9905811","38.8850346"],["-105.9908791","38.8856157"],["-105.9910945","38.8860853"],["-105.9913278","38.8866663"],["-105.9914551","38.887073"],["-105.9916477","38.8879619"],["-105.9917272","38.8884377"],["-105.9917684","38.8888079"],["-105.9917831","38.8891446"],["-105.9917903","38.8894766"],["-105.9917725","38.8898842"],["-105.9916533","38.8910862"],["-105.9910834","38.8963135"],["-105.9908799","38.89763"],["-105.9905399","38.8986218"],["-105.9901357","38.8997128"],["-105.9896546","38.9010477"],["-105.9893496","38.9019539"],["-105.9890814","38.9026681"],["-105.9886255","38.903752"],["-105.9884704","38.9040236"],["-105.988317","38.904211"],["-105.9880994","38.9044436"],["-105.9878489","38.9046451"],["-105.9875844","38.9048301"],["-105.9872604","38.9050102"],["-105.9869609","38.9051461"],["-105.986309","38.9053824"],["-105.9822205","38.9067296"],["-105.9807769","38.9072211"],["-105.9800705","38.9075053"],["-105.9795487","38.9077338"],["-105.9788696","38.908043"],["-105.9783445","38.9082978"],["-105.9775842","38.9087055"],["-105.9764448","38.9093383"],["-105.9756152","38.9097976"],["-105.9746878","38.9103294"],["-105.9739767","38.9107648"],["-105.9730564","38.9113248"],["-105.9722816","38.9117768"],["-105.9716104","38.9121978"],["-105.9713881","38.9123545"],["-105.9712051","38.912493"],["-105.9710694","38.9126042"],["-105.9706807","38.912987"],["-105.970473","38.9132013"],["-105.9702816","38.913431"],["-105.9701099","38.9136608"],["-105.9699621","38.9138972"],["-105.9698491","38.9141008"],["-105.9697379","38.9143271"],["-105.9696663","38.9144902"],["-105.9696063","38.9146388"],["-105.969552","38.9148435"],["-105.9694908","38.9150913"],["-105.9690643","38.9172389"],["-105.9672534","38.9265448"],["-105.9668021","38.9289283"],["-105.9586055","38.9720283"],["-105.9584798","38.9729456"],["-105.9584151","38.9737895"],["-105.9584377","38.9746798"],["-105.9595409","38.9948135"],["-105.9596242","38.9956949"],["-105.9597405","38.9962355"],["-105.9599807","38.9968599"],["-105.9601869","38.9972586"],["-105.9604284","38.9976352"],["-105.9609481","38.9982482"],["-105.9619632","38.9991848"],["-105.9655344","39.0023152"],["-105.9662438","39.0030175"],["-105.9669773","39.0038131"],["-105.9675695","39.0045592"],["-105.9679917","39.0051545"],["-105.9682698","39.0056101"],["-105.9685917","39.006187"],["-105.9691255","39.0072763"],["-105.9735197","39.0177677"],["-105.9738394","39.0186436"],["-105.9740405","39.0193031"],["-105.9742705","39.0201465"],["-105.9745085","39.0211279"],["-105.9748011","39.0227459"],["-105.9749672","39.0239955"],["-105.9750606","39.0250773"],["-105.9750839","39.0258728"],["-105.9750843","39.0268153"],["-105.9750327","39.0282712"],["-105.9747746","39.0320716"],["-105.9746523","39.033904"],["-105.9745629","39.0352886"],["-105.9741823","39.0410478"],["-105.9741181","39.0423416"],["-105.9741297","39.0432105"],["-105.9741723","39.043884"],["-105.9742379","39.0444071"],["-105.9743229","39.0448868"],["-105.9744707","39.0455036"],["-105.9746418","39.0461335"],["-105.974922","39.0469743"],["-105.9756489","39.0486748"],["-105.9758845","39.0492158"],["-105.9760734","39.0497009"],["-105.9762456","39.0502888"],["-105.9763638","39.0508203"],["-105.9764505","39.0514046"],["-105.9764846","39.0519986"],["-105.9764856","39.0524846"],["-105.976234","39.0548441"],["-105.9742382","39.0716548"],["-105.9740818","39.0729468"],["-105.9737686","39.0756851"],["-105.9737669","39.0764064"],["-105.9738133","39.0771179"],["-105.9739144","39.0776866"],["-105.9741243","39.0785404"],["-105.9744272","39.0793962"],["-105.9747559","39.0800717"],["-105.9751456","39.0807486"],["-105.9756932","39.0815151"],["-105.9838362","39.090864"],["-105.986212","39.0935718"],["-105.9868876","39.0944033"],["-105.9874304","39.0952469"],["-105.9879008","39.0960672"],["-105.9883641","39.0969471"],["-105.9887395","39.097875"],["-105.9889803","39.0985885"],["-105.9892738","39.0999898"],["-105.991654","39.1126855"],["-105.995431","39.1332217"],["-105.996118","39.1370057"],["-106.0010786","39.1639127"],["-106.0013974","39.1655966"],["-106.0016207","39.1668558"],["-106.0017558","39.1680553"],["-106.0017929","39.1687152"],["-106.0017743","39.1694269"],["-106.0016903","39.1702755"],["-106.0015306","39.1712178"],["-106.0013248","39.1722266"],["-106.0010565","39.1734515"],["-106.0000765","39.1778019"],["-105.997481","39.1894548"],["-105.9958016","39.1970233"],["-105.9956507","39.1981612"],["-105.9954852","39.199961"],["-105.9950641","39.205111"],["-105.9949172","39.2067798"],["-105.9938676","39.2196267"],["-105.9937786","39.2202493"],["-105.9937198","39.2205327"],["-105.9936518","39.2208103"],["-105.9935396","39.221172"],["-105.993691","39.2212153"],["-105.9957334","39.2213961"],["-105.9958956","39.221423"],["-105.9960731","39.221467"],["-105.996241","39.2215155"],["-105.9963924","39.2215783"],["-105.9967904","39.2217885"],["-105.9985523","39.2227759"],["-106.0033617","39.2254576"],["-106.0035302","39.2255474"],["-106.0037059","39.2256294"],["-106.0038274","39.2256781"],["-106.0039454","39.2257135"],["-106.0041257","39.2257582"],["-106.0043912","39.2258134"],["-106.0047516","39.2258808"],["-106.0050448","39.2259357"],["-106.0052907","39.2260017"],["-106.0055471","39.2261031"],["-106.0057617","39.2262085"],["-106.0059738","39.2263411"],["-106.0062426","39.2265324"],["-106.0110177","39.2304371"],["-106.0115603","39.2308626"],["-106.0116852","39.230939"],["-106.011808","39.2310042"],["-106.0119217","39.2310576"],["-106.0120527","39.2311131"],["-106.0124029","39.2312464"],["-106.0208187","39.2339526"],["-106.0223519","39.2345298"],["-106.0238348","39.2352325"],["-106.0255665","39.2361367"],["-106.0286332","39.2377788"],["-106.0294958","39.2382734"],["-106.0300944","39.2386651"],["-106.0308785","39.2392498"],["-106.0311781","39.2394858"],["-106.0314188","39.2396886"],["-106.0353772","39.2429653"],["-106.0365524","39.2440699"],["-106.0369488","39.2445745"],["-106.0372643","39.2450271"],["-106.0375838","39.2455797"],["-106.0378403","39.246121"],["-106.0380126","39.2465627"],["-106.0381097","39.2468651"],["-106.0381985","39.2472637"],["-106.0384385","39.2491435"],["-106.0388755","39.2533052"],["-106.039112","39.2547959"],["-106.0392998","39.2555636"],["-106.039545","39.2563041"],["-106.0398058","39.2569665"],["-106.0404329","39.2582164"],["-106.0409875","39.259228"],["-106.0435713","39.2638301"],["-106.044438","39.2653323"],["-106.0472616","39.2703794"],["-106.0476015","39.2709199"],["-106.0480149","39.2715046"],["-106.048738","39.2723893"],["-106.04901","39.2726906"],["-106.0496429","39.2733563"],["-106.0500459","39.2737512"],["-106.0504395","39.2741144"],["-106.0508544","39.2744622"],["-106.0512159","39.2747516"],["-106.0523892","39.2755823"],["-106.0590569","39.2801462"],["-106.059142","39.280207"],["-106.0591924","39.2802431"],["-106.059347","39.2803503"],["-106.0595289","39.280481"],["-106.0597192","39.2806264"],["-106.0599799","39.2808339"],["-106.0602345","39.2810475"],["-106.0604437","39.2812281"],["-106.0608076","39.2815729"],["-106.0611411","39.2819147"],["-106.0614423","39.2822409"],["-106.0616273","39.2824616"],["-106.063356","39.2846427"],["-106.0637724","39.2852191"],["-106.0658723","39.2884409"],["-106.0660457","39.2887174"],["-106.0661332","39.2888828"],["-106.0662312","39.2890796"],["-106.0662987","39.289226"],["-106.066348","39.2893464"],["-106.0663941","39.2894706"],["-106.0664351","39.2895971"],["-106.0664788","39.2897442"],["-106.0665175","39.2898987"],["-106.0665473","39.2900425"],["-106.0665888","39.2903314"],["-106.066602","39.2905181"],["-106.0666107","39.2907176"],["-106.0666147","39.2909062"],["-106.0666113","39.2910322"],["-106.0666036","39.291158"],["-106.066592","39.2912755"],["-106.0665674","39.2914359"],["-106.0665442","39.2915734"],["-106.0665111","39.2917286"],["-106.0664778","39.2918676"],["-106.066394","39.2921776"],["-106.0633074","39.3024486"],["-106.0630521","39.3032287"],["-106.0621169","39.3064177"],["-106.0614817","39.3084143"],["-106.0610433","39.3095432"],["-106.0606664","39.3103026"],["-106.0601359","39.3112021"],["-106.0588091","39.3134705"],["-106.0579777","39.3148795"],["-106.0551677","39.3196007"],["-106.054565","39.3207225"],["-106.05428","39.3214088"],["-106.0541403","39.3219042"],["-106.0539974","39.322252"],["-106.0535747","39.3229867"],["-106.0534612","39.3232564"],["-106.0533862","39.3235131"],["-106.0532664","39.3246033"],["-106.0531331","39.3250674"],["-106.0529455","39.3255742"],["-106.0525334","39.3264294"],["-106.0523778","39.3268076"],["-106.052181","39.3278056"],["-106.0519672","39.3290235"],["-106.0519133","39.3296581"],["-106.0519083","39.3308109"],["-106.0519448","39.3318967"],["-106.0519381","39.3322377"],["-106.0519154","39.332481"],["-106.0518334","39.3328424"],["-106.0515461","39.3336237"],["-106.0513991","39.3341165"],["-106.0513652","39.3344811"],["-106.0513989","39.3348466"],["-106.0515374","39.3353361"],["-106.0518314","39.3359117"],["-106.0524379","39.3368686"],["-106.0528922","39.3376601"],["-106.0534044","39.3384577"],["-106.0535354","39.3387453"],["-106.0535989","39.338999"],["-106.0536347","39.33925"],["-106.053654","39.3394628"],["-106.0536405","39.339745"],["-106.0535617","39.340147"],["-106.0533251","39.3411604"],["-106.0532032","39.3415764"],["-106.052334","39.3434669"],["-106.0522549","39.3437552"],["-106.0522284","39.3440358"],["-106.0522383","39.3442649"],["-106.0522982","39.3445313"],["-106.0524142","39.3447869"],["-106.0525818","39.3450674"],["-106.0530994","39.3456908"],["-106.0543295","39.3470823"],["-106.0545476","39.347382"],["-106.0546661","39.3476338"],["-106.0547661","39.3479153"],["-106.0548254","39.3481887"],["-106.054833","39.3485206"],["-106.0547723","39.3489201"],["-106.0546884","39.3493731"],["-106.0546608","39.3498159"],["-106.0547313","39.3501252"],["-106.054875","39.3504543"],["-106.0550975","39.3507451"],["-106.0554931","39.3510944"],["-106.0560341","39.3515218"],["-106.0562972","39.3517851"],["-106.0565029","39.352065"],["-106.0566227","39.3523041"],["-106.0567115","39.3526281"],["-106.0568023","39.3530184"],["-106.0568915","39.3533555"],["-106.0570107","39.3536481"],["-106.0571679","39.3539234"],["-106.0573702","39.3541804"],["-106.057647","39.3544327"],["-106.0579388","39.3546584"],["-106.058339","39.3549343"],["-106.0587478","39.35521"],["-106.0590344","39.3554503"],["-106.05929","39.3557004"],["-106.0594963","39.3559796"],["-106.0597155","39.3563621"],["-106.0598882","39.3567246"],["-106.0600523","39.3570588"],["-106.0603872","39.3576014"],["-106.0621567","39.3602344"],["-106.0624128","39.3606295"],["-106.0625255","39.3608776"],["-106.0625942","39.3611421"],["-106.0626388","39.3614934"],["-106.0626373","39.3617692"],["-106.0626294","39.3618875"],["-106.0625878","39.3621009"],["-106.0625219","39.3623991"],["-106.062433","39.3626926"],["-106.0622851","39.3629365"],["-106.0620642","39.3631531"],["-106.0618783","39.3632767"],["-106.0616363","39.3633753"],["-106.060747","39.3636123"],["-106.0604052","39.3637274"],["-106.060167","39.3638433"],["-106.0598745","39.3640443"],["-106.0589969","39.3647618"],["-106.0588524","39.3649164"],["-106.0588214","39.3649998"],["-106.0588259","39.3652027"],["-106.0589037","39.3653955"],["-106.0590681","39.3655646"],["-106.0591578","39.3656185"],["-106.0593265","39.3656727"],["-106.0594391","39.3656911"],["-106.0596348","39.3656915"],["-106.0598187","39.3656638"],["-106.0599141","39.3656304"],["-106.0601021","39.3655237"],["-106.0605124","39.3652295"],["-106.0606246","39.3651698"],["-106.0607831","39.3651282"],["-106.0608765","39.3651261"],["-106.0609573","39.3651447"],["-106.0610249","39.3651815"],["-106.0610955","39.3652717"],["-106.0611156","39.3653314"],["-106.0611092","39.3654056"],["-106.0610814","39.3654811"],["-106.0609787","39.3656298"],["-106.0607936","39.3658092"],["-106.060438","39.3660884"],["-106.0603206","39.3662413"],["-106.0602923","39.3663314"],["-106.0602961","39.3665301"],["-106.0604023","39.3671226"],["-106.0604364","39.3675086"],["-106.0604254","39.3677302"],["-106.0603784","39.3679326"],["-106.0602416","39.3682093"],["-106.0600042","39.3685226"],["-106.0597898","39.3687577"],["-106.0594831","39.3690013"],["-106.059246","39.3691325"],["-106.0590154","39.3692157"],["-106.0584646","39.369374"],["-106.058372","39.3694271"],["-106.0583405","39.3694779"],["-106.0583392","39.3695458"],["-106.0583816","39.3696083"],["-106.0585116","39.3696701"],["-106.0586983","39.3696983"],["-106.05892","39.3696879"],["-106.0595895","39.3696115"],["-106.0605306","39.3694458"],["-106.0607812","39.3694365"],["-106.0608669","39.3694658"],["-106.0609148","39.3695139"],["-106.0609346","39.3695682"],["-106.0609207","39.3696432"],["-106.0607392","39.3698083"],["-106.0591297","39.3706382"],["-106.0584233","39.3710402"],["-106.058064","39.3713026"],["-106.0577016","39.3716354"],["-106.0572071","39.3721266"],["-106.0570648","39.3723417"],["-106.0569941","39.3725533"],["-106.0569854","39.3727533"],["-106.0570223","39.3729528"],["-106.05725","39.3737678"],["-106.057411","39.3748907"],["-106.0575446","39.3755012"],["-106.0575928","39.3757952"],["-106.05759","39.3762006"],["-106.0574508","39.3768539"],["-106.0572957","39.3775559"],["-106.0572362","39.3779696"],["-106.0572639","39.3782428"],["-106.0574359","39.3790062"],["-106.0575294","39.379263"],["-106.0575817","39.3793483"],["-106.0576622","39.3794211"],["-106.0579811","39.3796298"],["-106.058131","39.3797541"],["-106.0582053","39.3798793"],["-106.0583065","39.3802076"],["-106.0584038","39.3803581"],["-106.0584755","39.3804189"],["-106.0586494","39.3805062"],["-106.0588694","39.3805665"],["-106.0591579","39.3806069"],["-106.0595375","39.3806137"],["-106.0616715","39.380509"],["-106.062714","39.3804349"],["-106.0632178","39.3804015"],["-106.0637064","39.3804106"],["-106.0641723","39.380447"],["-106.0643582","39.3805076"],["-106.0644119","39.3805544"],["-106.0644564","39.380668"],["-106.0644363","39.3807884"],["-106.064369","39.3808749"],["-106.064071","39.3811079"],["-106.0638712","39.3812223"],["-106.0634885","39.381383"],["-106.0629925","39.3815863"],["-106.0627618","39.3817166"],["-106.0626609","39.3818025"],["-106.0625028","39.3819976"],["-106.0623002","39.3823852"],["-106.0620997","39.3825551"],["-106.0618941","39.3826393"],["-106.0614854","39.3827537"],["-106.0612718","39.3828355"],["-106.0609891","39.3830182"],["-106.0606237","39.3833136"],["-106.0603742","39.383465"],["-106.0594478","39.3838518"],["-106.0590747","39.3840532"],["-106.0586741","39.3842996"],["-106.0583995","39.3844431"],["-106.0580121","39.3845862"],["-106.0572231","39.3848441"],["-106.0567782","39.3850117"],["-106.0564147","39.3851714"],["-106.055954","39.3854201"],["-106.0558215","39.3855174"],["-106.0556681","39.3857199"],["-106.0553646","39.3864732"],["-106.0551607","39.3869383"],["-106.0549985","39.3871593"],["-106.0548968","39.3872348"],["-106.0548018","39.3872689"],["-106.0547194","39.387274"],["-106.05463","39.3872587"],["-106.0545513","39.3872212"],["-106.0545031","39.3871736"],["-106.0544749","39.3871144"],["-106.0544936","39.3870236"],["-106.0547087","39.3866664"],["-106.0547432","39.3865823"],["-106.0547469","39.3865043"],["-106.0547139","39.3864402"],["-106.0546482","39.3863944"],["-106.0545637","39.3863774"],["-106.05448","39.3863884"],["-106.0544042","39.386424"],["-106.0543093","39.3864989"],["-106.054085","39.3867164"],["-106.0538361","39.3869117"],["-106.0531877","39.3873163"],["-106.053","39.3874652"],["-106.0528958","39.3875908"],["-106.0528162","39.3877479"],["-106.0527911","39.3878459"],["-106.0527881","39.3880949"],["-106.0528342","39.3882856"],["-106.0529204","39.3884955"],["-106.053158","39.3889077"],["-106.0535364","39.3894737"],["-106.0536527","39.3896726"],["-106.0537447","39.3899068"],["-106.053783","39.3901029"],["-106.0537816","39.3904459"],["-106.0537452","39.3909408"],["-106.0536981","39.3912728"],["-106.0533477","39.3921365"],["-106.0523217","39.3944754"],["-106.0521632","39.3949591"],["-106.0520407","39.3959268"],["-106.0519562","39.3965051"],["-106.0517132","39.3973387"],["-106.0509867","39.3996303"],["-106.0505266","39.4012142"],["-106.0503185","39.402031"],["-106.0502917","39.4021688"],["-106.0502659","39.4023761"],["-106.0502298","39.4026432"],["-106.0502014","39.4028421"],["-106.050176","39.4030119"],["-106.0501528","39.4031355"],["-106.0501177","39.4032775"],["-106.0500683","39.4034307"],["-106.0500107","39.4035901"],["-106.0499493","39.4037274"],["-106.0498594","39.4039153"],["-106.0494117","39.404809"],["-106.0492052","39.405193"],["-106.0491191","39.4053263"],["-106.0489268","39.4055856"],["-106.0487405","39.4058109"],["-106.0473801","39.4074437"],["-106.0453019","39.4102419"],["-106.0450017","39.4106575"],["-106.0449047","39.4108106"],["-106.0448401","39.4109309"],["-106.0448036","39.4110314"],["-106.044769","39.4111633"],["-106.0447431","39.411294"],["-106.044729","39.4114424"],["-106.0447186","39.4116499"],["-106.0447209","39.4119487"],["-106.0447329","39.4122747"],["-106.0447592","39.4125963"],["-106.0447932","39.4128766"],["-106.0448694","39.4133227"],["-106.0449794","39.4139198"],["-106.0452024","39.4150909"],["-106.0452616","39.4153934"],["-106.0452884","39.4155381"],["-106.0453138","39.4157002"],["-106.0453317","39.4158499"],["-106.04534","39.4159863"],["-106.0453351","39.4161004"],["-106.045319","39.4162184"],["-106.0452831","39.416334"],["-106.0451638","39.4165726"],["-106.0448961","39.4170824"],["-106.0447724","39.4173301"],["-106.044512","39.4180909"],["-106.0444404","39.4183389"],["-106.0444012","39.4185087"],["-106.0443726","39.4186616"],["-106.044355","39.4187864"],["-106.04434","39.4189342"],["-106.044332","39.4191445"],["-106.0443409","39.419797"],["-106.0443473","39.4203682"],["-106.0441783","39.4272459"],["-106.0441446","39.4277475"],["-106.0440097","39.4287111"],["-106.043882","39.4295215"],["-106.0437482","39.4303304"],["-106.0436928","39.4306762"],["-106.0436425","39.4310725"],["-106.0436384","39.4312018"],["-106.0436377","39.4313497"],["-106.0436399","39.4315271"],["-106.043648","39.4318652"],["-106.0436459","39.4319498"],["-106.0436227","39.4320747"],["-106.043577","39.4322758"],["-106.0434446","39.4328054"],["-106.0434101","39.4329728"],["-106.0433915","39.4331084"],["-106.0433902","39.4332384"],["-106.0434027","39.4334707"],["-106.0434602","39.4341248"],["-106.0436167","39.435679"],["-106.0436952","39.4364141"],["-106.0436933","39.4366099"],["-106.0436805","39.4367021"],["-106.0436345","39.43692"],["-106.0435726","39.4371118"],["-106.0434283","39.437485"],["-106.0431628","39.4380902"],["-106.0426958","39.4390665"],["-106.0424184","39.4396343"],["-106.0422197","39.440045"],["-106.0421506","39.4402049"],["-106.0420571","39.4404516"],["-106.0420059","39.4406164"],["-106.0417482","39.4416992"],["-106.0414506","39.4428398"],["-106.0413337","39.4432541"],["-106.0412896","39.4433855"],["-106.041193","39.4436472"],["-106.0411324","39.4437811"],["-106.041062","39.4439223"],["-106.0409944","39.444044"],["-106.0409362","39.4441346"],["-106.0408654","39.4442337"],["-106.0407079","39.4444218"],["-106.0396685","39.4455558"],["-106.0395051","39.4457424"],["-106.0394058","39.445867"],["-106.0393302","39.4459769"],["-106.0392546","39.446098"],["-106.0391931","39.4462031"],["-106.0391391","39.4463028"],["-106.0390881","39.4464117"],["-106.0390079","39.4466254"],["-106.03897","39.4467715"],["-106.0389367","39.4469182"],["-106.0389105","39.4470701"],["-106.0388903","39.4472049"],["-106.0388822","39.4473193"],["-106.0388818","39.4474376"],["-106.038887","39.4475594"],["-106.0389008","39.4477293"],["-106.038995","39.4484416"],["-106.0390176","39.4486194"],["-106.0390292","39.4487477"],["-106.0390329","39.4488674"],["-106.0390277","39.4489731"],["-106.0390198","39.4490727"],["-106.0390028","39.4491868"],["-106.0389817","39.4492997"],["-106.0389556","39.4494225"],["-106.0389232","39.4495425"],["-106.0388464","39.4497569"],["-106.0387887","39.4498814"],["-106.038718","39.4500201"],["-106.0370335","39.4529409"],["-106.0365532","39.4538195"],["-106.0364139","39.454548"],["-106.0365105","39.4553652"],["-106.0368541","39.4563721"],["-106.0371597","39.4572744"],["-106.0373537","39.4579636"],["-106.0373851","39.4585307"],["-106.0372546","39.4591747"],["-106.0369578","39.4602976"],["-106.0366878","39.4608227"],["-106.0360944","39.4614537"],["-106.03538","39.4621262"],["-106.0347244","39.462792"],["-106.0344632","39.4634644"],["-106.0342982","39.4643971"],["-106.0341928","39.465177"],["-106.0342038","39.4657911"],["-106.0344077","39.4664929"],["-106.0347906","39.4670885"],["-106.0353568","39.4678116"],["-106.035582","39.4681557"],["-106.0362033","39.4686771"],["-106.0365402","39.4688871"],["-106.0368774","39.4690354"],["-106.0372708","39.4691462"],["-106.0376155","39.4692082"],["-106.0390169","39.4693437"],["-106.0395021","39.4694299"],["-106.0399776","39.4695796"],["-106.0403432","39.4697274"],["-106.0406801","39.4699221"],["-106.0411412","39.4702311"],["-106.0413703","39.4704721"],["-106.0415419","39.4706978"],["-106.0417482","39.4709953"],["-106.0418562","39.4712375"],["-106.041959","39.4716048"],["-106.0419889","39.4718577"],["-106.0420001","39.4722061"],["-106.041977","39.4727512"],["-106.0419785","39.4735131"],["-106.0420121","39.4737377"],["-106.0420572","39.4739362"],["-106.0421916","39.4743264"],["-106.041766","39.474445"],["-106.0415824","39.4744867"],["-106.0412911","39.4744971"],["-106.0410862","39.4744732"],["-106.0408722","39.4744014"],["-106.0405308","39.4742581"],["-106.0401985","39.4746652"],["-106.0401272","39.4748027"],["-106.040101","39.4750058"],["-106.0401427","39.4752005"],["-106.0403742","39.4757988"],["-106.0405196","39.4760344"],["-106.0407165","39.476186"],["-106.0410635","39.4763427"],["-106.0424929","39.4768557"],["-106.0427131","39.4770033"],["-106.0428164","39.4772022"],["-106.0433886","39.4797272"],["-106.0436077","39.480686"],["-106.0441508","39.4834554"],["-106.0430632","39.4836081"],["-106.0424912","39.4836974"],["-106.0422656","39.4837918"],["-106.0420447","39.4839371"],["-106.0418634","39.4841026"],["-106.0416954","39.4842893"],["-106.0415805","39.4845021"],["-106.0412992","39.4854014"],["-106.0411545","39.48564"],["-106.040998","39.4857708"],["-106.0402278","39.4863739"],["-106.039902","39.4866941"],["-106.0392506","39.4863606"],["-106.0390183","39.4862749"],["-106.0386932","39.4861973"],["-106.0387582","39.485789"],["-106.0388676","39.4851709"],["-106.0388914","39.4829763"],["-106.0388834","39.4827621"],["-106.0385519","39.4803109"],["-106.0385618","39.480013"],["-106.0386402","39.4797449"],["-106.0387964","39.4793983"],["-106.0389915","39.4792279"],["-106.039178","39.4792465"],["-106.0393275","39.4794257"],["-106.0394842","39.4797015"],["-106.0396039","39.4799723"],["-106.0396834","39.4802925"],["-106.0399849","39.4828598"],["-106.039999","39.4834975"],["-106.0399732","39.4846217"],["-106.0399789","39.4850108"],["-106.04003","39.4852321"],["-106.0401605","39.4853947"],["-106.040772","39.4859061"],["-106.0409974","39.4857715"],["-106.0411553","39.4856391"],["-106.0412989","39.4854023"],["-106.0415826","39.4844955"],["-106.0416959","39.4842885"],["-106.0418607","39.4841053"],["-106.0420418","39.4839393"],["-106.0422671","39.4837911"],["-106.0424906","39.4836974"],["-106.043061","39.4836085"],["-106.0441469","39.4834612"],["-106.0449364","39.486521"],["-106.0450683","39.4867888"],["-106.04521","39.4869227"],["-106.0455099","39.4870617"],["-106.0456921","39.487101"],["-106.045872","39.4872123"],["-106.0460921","39.4872951"],["-106.0461844","39.4873862"],["-106.0461412","39.4876666"],["-106.046041","39.4879195"],["-106.0458023","39.4883988"],["-106.045647","39.4888654"],["-106.045553","39.4892147"],["-106.045542","39.4895556"],["-106.0455773","39.4900119"],["-106.0455333","39.4902128"],["-106.0454526","39.4903708"],["-106.0454082","39.4904149"],["-106.0453819","39.4904612"],["-106.0453769","39.4905094"],["-106.045393","39.4905578"],["-106.0454291","39.4905988"],["-106.045477","39.4906347"],["-106.0455028","39.4911214"],["-106.0456762","39.4952312"],["-106.0457281","39.4961532"],["-106.0457682","39.4964362"],["-106.0458293","39.4967574"],["-106.0468707","39.5008396"],["-106.0470134","39.501581"],["-106.0471295","39.5022319"],["-106.0476704","39.505514"],["-106.0478142","39.5066656"],["-106.048004","39.5084136"],["-106.048072","39.5088548"],["-106.0481597","39.5091842"],["-106.048718","39.5107604"],["-106.0488796","39.5113035"],["-106.0489377","39.5116533"],["-106.0489634","39.5119805"],["-106.0489634","39.5123345"],["-106.0489478","39.5126207"],["-106.0488831","39.5129716"],["-106.048788","39.5133539"],["-106.0486442","39.5138233"],["-106.0486089","39.5139458"],["-106.048164","39.5156306"],["-106.0478343","39.5169953"],["-106.0472993","39.5192993"],["-106.0467358","39.5213207"],["-106.0455128","39.5250503"],["-106.0454495","39.5252603"],["-106.0453924","39.5254875"],["-106.0453646","39.5255434"],["-106.0452893","39.5256328"],["-106.0452519","39.5256724"],["-106.0452088","39.5257131"],["-106.045191","39.5257216"],["-106.0451703","39.5257305"],["-106.0451424","39.5257545"],["-106.0451248","39.5257695"],["-106.0451041","39.5257916"],["-106.0450908","39.5258184"],["-106.0450757","39.5258694"],["-106.0450739","39.5259437"],["-106.045076","39.5259485"],["-106.0450833","39.5259717"],["-106.0451106","39.5262189"],["-106.045109","39.5263564"],["-106.0450898","39.5266289"],["-106.0449616","39.5276529"],["-106.0448615","39.5283012"],["-106.0446553","39.5291408"],["-106.0437476","39.5322562"],["-106.0435936","39.5327644"],["-106.0426318","39.5360052"],["-106.0422947","39.5373226"],["-106.0421395","39.5381083"],["-106.0419729","39.5391243"],["-106.0419029","39.5395897"],["-106.0417868","39.5402959"],["-106.0416675","39.5409094"],["-106.041449","39.5418332"],["-106.0413286","39.5422467"],["-106.0404922","39.5447292"],["-106.040387","39.5450741"],["-106.0403394","39.5452633"],["-106.0403008","39.5454459"],["-106.0402504","39.5457359"],["-106.0402317","39.5459105"],["-106.0402175","39.5460803"],["-106.0402077","39.546278"],["-106.0402086","39.5466807"],["-106.0402182","39.5468624"],["-106.0402427","39.5470705"],["-106.0402702","39.5472686"],["-106.0402982","39.5474238"],["-106.0403327","39.5475729"],["-106.0403674","39.5477"],["-106.0405189","39.5481332"],["-106.0406854","39.5485654"],["-106.040748","39.5487044"],["-106.0408206","39.5488499"],["-106.0409042","39.549002"],["-106.0410008","39.5491707"],["-106.0410914","39.549314"],["-106.0411792","39.5494461"],["-106.0412536","39.549553"],["-106.0414611","39.5498126"],["-106.0416474","39.5500321"],["-106.0419067","39.5503183"],["-106.044767","39.5531976"],["-106.0460115","39.5544071"],["-106.0463701","39.5547187"],["-106.0482348","39.5561993"],["-106.0487132","39.5565982"],["-106.0491162","39.5569815"],["-106.0494527","39.5573327"],["-106.0497397","39.5576734"],["-106.0500042","39.5580348"],["-106.0502093","39.5583528"],["-106.0504674","39.5588165"],["-106.0506921","39.5593202"],["-106.0507999","39.5595881"],["-106.0508954","39.5598086"],["-106.0510488","39.5602328"],["-106.0512388","39.5607767"],["-106.0514479","39.5614522"],["-106.051621","39.5620625"],["-106.0517586","39.5626041"],["-106.051845","39.5630438"],["-106.0520577","39.5644228"],["-106.0521263","39.5648017"],["-106.0521902","39.5650214"],["-106.052272","39.5652744"],["-106.0524369","39.5655862"],["-106.0526762","39.565967"],["-106.0529486","39.5662814"],["-106.0532752","39.5665706"],["-106.0535453","39.5667654"],["-106.0538698","39.5669796"],["-106.0548207","39.5675585"],["-106.055247","39.5678241"],["-106.0559988","39.5683283"],["-106.0561651","39.5684669"],["-106.0563098","39.568622"],["-106.0564585","39.5688585"],["-106.0566402","39.5692544"],["-106.0569442","39.5703481"],["-106.0573097","39.5717526"],["-106.0574668","39.5723284"],["-106.057601","39.5726499"],["-106.0577221","39.572888"],["-106.0578703","39.5730892"],["-106.0580596","39.5732865"],["-106.0583443","39.5735091"],["-106.0586124","39.5736658"],["-106.0588766","39.5738009"],["-106.0591888","39.573927"],["-106.0595489","39.5740218"],["-106.0599693","39.5741017"],["-106.0628996","39.574331"],["-106.063354","39.5742974"],["-106.0637387","39.5742377"],["-106.0642053","39.5741047"],["-106.0649304","39.5738412"],["-106.0676291","39.5727086"],["-106.0680933","39.5725506"],["-106.0684665","39.5724809"],["-106.0688365","39.5724506"],["-106.0692297","39.5724576"],["-106.0698376","39.5725399"],["-106.0705644","39.5726417"],["-106.0712429","39.5727293"],["-106.0719656","39.5727845"],["-106.0723834","39.5727629"],["-106.0725411","39.5727458"],["-106.072761","39.5727053"],["-106.0730841","39.5726298"],["-106.0736443","39.5724867"],["-106.0744681","39.5722568"],["-106.0748537","39.5721653"],["-106.0750878","39.5721226"],["-106.0753235","39.5720974"],["-106.0755771","39.5720821"],["-106.0759358","39.5720782"],["-106.0762139","39.572097"],["-106.0767117","39.5721708"],["-106.0839494","39.5733607"],["-106.0840882","39.5733812"],["-106.0842189","39.5733952"],["-106.0843083","39.5734007"],["-106.0844262","39.5734034"],["-106.084552","39.5734057"],["-106.0846915","39.5734097"],["-106.084767","39.5734268"],["-106.0848386","39.5734478"],["-106.0849073","39.5734922"],["-106.0849204","39.5735183"],["-106.0849385","39.5735449"],["-106.0849681","39.5735723"],["-106.0849969","39.5735895"],["-106.0850301","39.5736007"],["-106.0850648","39.5736079"],["-106.0851086","39.5736097"],["-106.0851475","39.5736056"],["-106.0851935","39.5735924"],["-106.0852414","39.5735767"],["-106.0853364","39.5735734"],["-106.0854322","39.5735784"],["-106.0855551","39.5735914"],["-106.086716","39.5738102"],["-106.0894152","39.574284"],["-106.0899983","39.5743845"],["-106.0902268","39.5744334"],["-106.090401","39.5744764"],["-106.0907397","39.5745754"],["-106.0908696","39.5746205"],["-106.091122","39.5747303"],["-106.091227","39.5747803"],["-106.0913035","39.574833"],["-106.0913456","39.5748821"],["-106.091374","39.5749465"],["-106.0913817","39.5750045"],["-106.091402","39.5750562"],["-106.0914423","39.5750905"],["-106.0914891","39.5751128"],["-106.0915722","39.5751392"],["-106.0917321","39.5751985"],["-106.0917675","39.5752184"],["-106.0918036","39.5752411"],["-106.0918572","39.5752903"],["-106.091934","39.5753771"],["-106.0920008","39.5754633"],["-106.0920544","39.5755355"],["-106.0921038","39.5756106"],["-106.0921691","39.5757378"],["-106.0922682","39.5759724"],["-106.0923952","39.5763367"],["-106.0927275","39.5776139"],["-106.092772","39.5778081"],["-106.092817","39.5779949"],["-106.0928619","39.5782546"],["-106.0928855","39.5784828"],["-106.0928959","39.5787356"],["-106.092914","39.5790213"],["-106.0929489","39.5792849"],["-106.0934328","39.5815066"],["-106.0934823","39.5817138"],["-106.0937138","39.5828612"],["-106.09388","39.5836525"],["-106.0947973","39.5879885"],["-106.0949385","39.5887292"],["-106.0950431","39.5892744"],["-106.0951896","39.5899818"],["-106.0954277","39.5910173"],["-106.0956816","39.5919649"],["-106.095713","39.5921788"],["-106.0957002","39.5923277"],["-106.0956355","39.5924275"],["-106.0942549","39.5944403"],["-106.0931566","39.5958828"],["-106.090791","39.5986318"],["-106.0896214","39.5999591"],["-106.0892697","39.6003234"],["-106.0889734","39.6005931"],["-106.0886679","39.6008512"],["-106.0883773","39.6010624"],["-106.0882492","39.6011657"],["-106.0847234","39.6034023"],["-106.0841083","39.6038305"],["-106.0836138","39.6042125"],["-106.0828177","39.6049334"],["-106.0822828","39.6056374"],["-106.0817726","39.6063244"],["-106.0805214","39.6080118"],["-106.0801875","39.6084432"],["-106.0798561","39.6088285"],["-106.0795463","39.6091713"],["-106.0792395","39.6094631"],["-106.0788687","39.609751"],["-106.078493","39.6100127"],["-106.0780653","39.6102843"],["-106.0774676","39.6106301"],["-106.0756734","39.6116414"],["-106.075221","39.6119338"],["-106.0748409","39.6122279"],["-106.0744196","39.6125988"],["-106.0740376","39.6129848"],["-106.0737172","39.6133515"],["-106.0734547","39.6137055"],["-106.0732309","39.6140557"],["-106.0730245","39.6144328"],["-106.0728667","39.6147957"],["-106.0727142","39.6152058"],["-106.0725941","39.6155942"],["-106.0725181","39.6160079"],["-106.0724787","39.6164851"],["-106.07247","39.6169104"],["-106.0724982","39.6173363"],["-106.0725391","39.6177276"],["-106.0726345","39.6182594"],["-106.0729073","39.6196991"],["-106.073047","39.6205192"],["-106.0730977","39.621071"],["-106.0731137","39.6215611"],["-106.0730929","39.6219033"],["-106.0730526","39.6222837"],["-106.0729771","39.622711"],["-106.0728192","39.6232776"],["-106.072634","39.6238034"],["-106.0724281","39.6242452"],["-106.0721445","39.6247509"],["-106.0717813","39.6252921"],["-106.0714317","39.6257302"],["-106.0711103","39.6260915"],["-106.0707921","39.6264177"],["-106.0704121","39.6267553"],["-106.0695422","39.627363"],["-106.0690767","39.627656"],["-106.0686692","39.6278955"],["-106.0682243","39.6281134"],["-106.0676129","39.6283851"],["-106.0664868","39.6288454"],["-106.0632089","39.630144"],["-106.0624724","39.6304406"],["-106.0541425","39.6337729"],["-106.0534349","39.6340688"],["-106.0530436","39.6342477"],["-106.0526844","39.634448"],["-106.0523056","39.634686"],["-106.0518798","39.6349926"],["-106.0513171","39.6354454"],["-106.0493189","39.6370925"],["-106.0484402","39.6377812"],["-106.0478957","39.6381655"],["-106.0472636","39.6385771"],["-106.0464732","39.6390375"],["-106.0455389","39.6395328"],["-106.0358","39.6441062"],["-106.0353463","39.6442693"],["-106.0347016","39.6444615"],["-106.0341345","39.6445728"],["-106.0334994","39.6446617"],["-106.0297297","39.6450106"],["-106.0288357","39.6451143"],["-106.0283784","39.6452085"],["-106.0280027","39.64532"],["-106.0276085","39.645465"],["-106.0271795","39.6456597"],["-106.0265933","39.6459936"],["-106.0229977","39.6483348"],["-106.0223575","39.6487302"],["-106.0220273","39.6489042"],["-106.0216655","39.6490572"],["-106.0211774","39.6492108"],["-106.0203688","39.6494282"],["-106.0189916","39.6497793"],["-106.0184828","39.6499517"],["-106.0179966","39.6501543"],["-106.0175743","39.6503856"],["-106.0160453","39.6513662"],["-106.0155958","39.6516291"],["-106.0152676","39.6517933"],["-106.0148463","39.6519635"],["-106.0144398","39.6520988"],["-106.0138293","39.652248"],["-106.0103104","39.6529354"],["-106.0096065","39.6530553"],["-106.0091383","39.653099"],["-106.0053801","39.6531922"],["-106.0044836","39.65325"],["-106.0037537","39.653354"],["-106.0029601","39.6535034"],["-106.0021388","39.6536861"],["-106.0006104","39.6540818"],["-105.9998159","39.6543629"],["-105.9991274","39.6546329"],["-105.998558","39.6548845"],["-105.9980567","39.6551329"],["-105.9972936","39.655537"],["-105.9962693","39.656094"],["-105.9956356","39.6564277"],["-105.9952126","39.6566018"],["-105.9946108","39.656826"],["-105.9929412","39.6573465"],["-105.9923548","39.6575562"],["-105.9919145","39.6577388"],["-105.9914205","39.657977"],["-105.9907129","39.6584114"],["-105.9887714","39.6596427"],["-105.9880493","39.6600699"],["-105.9874003","39.6603968"],["-105.9866857","39.6607002"],["-105.9859311","39.6609991"],["-105.9839209","39.6616879"],["-105.9828548","39.662053"],["-105.9823641","39.6622616"],["-105.9819361","39.6624764"],["-105.9815677","39.6626947"],["-105.9811784","39.6629504"],["-105.9777047","39.6655696"],["-105.9772069","39.6660344"],["-105.9768813","39.6664898"],["-105.9763293","39.6674846"],["-105.9757601","39.6685796"],["-105.9755331","39.6689607"],["-105.9752958","39.6693061"],["-105.9750322","39.6696319"],["-105.9746836","39.6699862"],["-105.9739958","39.6705872"],["-105.972825","39.6715547"],["-105.9715189","39.6726231"],["-105.9711948","39.6728489"],["-105.9709112","39.6730222"],["-105.9704573","39.6732235"],["-105.9699441","39.673418"],["-105.9694403","39.6735493"],["-105.9689788","39.6736342"],["-105.9685127","39.6736901"],["-105.9679996","39.673728"],["-105.9622025","39.6739824"],["-105.9614599","39.6740269"],["-105.9609688","39.6740911"],["-105.9604166","39.6742096"],["-105.9598154","39.6743983"],["-105.9588062","39.6748429"],["-105.9556259","39.6763772"],["-105.9550741","39.6766084"],["-105.9545793","39.6767649"],["-105.9540497","39.6768827"],["-105.9535452","39.6769539"],["-105.9530161","39.6769858"],["-105.9522949","39.6769987"],["-105.947794","39.676972"],["-105.946729","39.676902"],["-105.9440622","39.6766071"],["-105.9434512","39.6765832"],["-105.9428548","39.676593"],["-105.9422854","39.6766253"],["-105.9417981","39.6766922"],["-105.9412454","39.676806"],["-105.9406529","39.6769434"],["-105.9400747","39.6771078"],["-105.9390432","39.6774963"],["-105.9374775","39.6781235"],["-105.9367677","39.6783838"],["-105.9363551","39.6784907"],["-105.9360255","39.6785601"],["-105.935559","39.6786274"],["-105.9351112","39.6786694"],["-105.9319835","39.6786921"],["-105.9092789","39.678663"],["-105.9058211","39.6786303"],["-105.9050067","39.6786579"],["-105.9042025","39.6787496"],["-105.9033868","39.678911"],["-105.9027241","39.6791125"],["-105.9020414","39.6793846"],["-105.9016074","39.6795892"],["-105.8989884","39.680976"],["-105.8984731","39.6812188"],["-105.8981817","39.6813269"],["-105.8979133","39.6814154"],["-105.8975511","39.6815079"],["-105.8971665","39.6815788"],["-105.8967168","39.6816349"],["-105.8963823","39.6816527"],["-105.8922256","39.6816418"],["-105.8918288","39.6816652"],["-105.8913767","39.6817097"],["-105.890958","39.6817701"],["-105.890528","39.6818501"],["-105.89002","39.6819792"],["-105.8894702","39.6821666"],["-105.889129","39.682312"],["-105.8883017","39.6827212"],["-105.8878899","39.6829803"],["-105.8876694","39.6831529"],["-105.8875143","39.6832758"],["-105.8873431","39.6834163"],["-105.8870007","39.6837332"],["-105.8865991","39.6841179"],["-105.8859152","39.6848619"],["-105.8829009","39.6880121"],["-105.8820946","39.6887969"],["-105.8765047","39.69389"],["-105.8758116","39.6944686"],["-105.8750517","39.695039"],["-105.8743718","39.6955046"],["-105.8737063","39.6959222"],["-105.8651114","39.7005879"],["-105.8644272","39.7009031"],["-105.8637287","39.7011338"],["-105.8631259","39.7012793"],["-105.8626134","39.7013851"],["-105.8621487","39.701442"],["-105.8616546","39.7014766"],["-105.8611455","39.7014889"],["-105.8606167","39.7014951"],["-105.85979","39.7015306"],["-105.8459855","39.701952"],["-105.844819","39.7019591"],["-105.84402","39.7019196"],["-105.8433712","39.7018286"],["-105.8424492","39.7016275"],["-105.8386233","39.7004193"],["-105.8372965","39.6999927"],["-105.8353853","39.6993775"],["-105.8344301","39.699044"],["-105.8336839","39.6987082"],["-105.8329433","39.6983695"],["-105.8320755","39.6979339"],["-105.8241148","39.6940161"],["-105.8235184","39.6937964"],["-105.8225251","39.6935456"],["-105.8215517","39.6933729"],["-105.8198805","39.6931294"],["-105.8180029","39.69287"],["-105.8131428","39.6921535"],["-105.8122168","39.6919949"],["-105.811398","39.6918499"],["-105.8107581","39.6917517"],["-105.8103814","39.6917104"],["-105.8100232","39.6916989"],["-105.8096551","39.6916972"],["-105.8093335","39.6917152"],["-105.8088351","39.6917593"],["-105.8083071","39.691838"],["-105.8077279","39.6919506"],["-105.8027949","39.6930413"],["-105.8019229","39.6932579"],["-105.7950363","39.6954728"],["-105.794239","39.6956413"],["-105.7936584","39.6956797"],["-105.7931862","39.6957007"],["-105.7926505","39.6957028"],["-105.7922518","39.6956817"],["-105.7917866","39.695633"],["-105.7913234","39.6955589"],["-105.7908433","39.6954514"],["-105.790407","39.6953296"],["-105.7900349","39.6952074"],["-105.7897102","39.6950892"],["-105.7892728","39.6949244"],["-105.7889022","39.6947858"],["-105.7884416","39.6946244"],["-105.7880831","39.6945163"],["-105.7876503","39.6944072"],["-105.787233","39.6943297"],["-105.786887","39.6942861"],["-105.7865556","39.694259"],["-105.7861971","39.694247"],["-105.7857758","39.6942499"],["-105.7849244","39.6943092"],["-105.7729035","39.6949447"],["-105.7725438","39.6949736"],["-105.7721466","39.6950177"],["-105.7717115","39.6950869"],["-105.7712109","39.6951884"],["-105.767848","39.6960005"],["-105.7674671","39.696078"],["-105.767067","39.6961473"],["-105.7666792","39.6961957"],["-105.7663404","39.6962222"],["-105.7659914","39.6962341"],["-105.7656608","39.6962314"],["-105.7652392","39.6962109"],["-105.7648524","39.6961632"],["-105.764071","39.6960391"],["-105.7632366","39.6958992"],["-105.7625562","39.6957909"],["-105.7620276","39.6957412"],["-105.7616311","39.6957243"],["-105.7612101","39.6957231"],["-105.7608019","39.6957407"],["-105.7604483","39.6957743"],["-105.7577747","39.6961577"],["-105.7566898","39.6963056"],["-105.7562167","39.696355"],["-105.7475564","39.6966741"],["-105.7471554","39.6966774"],["-105.7467422","39.6966672"],["-105.7462797","39.6966441"],["-105.7458448","39.6966091"],["-105.7451219","39.6965153"],["-105.7366335","39.6952175"],["-105.7296533","39.6941829"],["-105.7292756","39.694146"],["-105.7289319","39.6941355"],["-105.728509","39.6941339"],["-105.7281102","39.6941508"],["-105.7277089","39.6941977"],["-105.7273309","39.6942585"],["-105.7270203","39.6943202"],["-105.7267705","39.6943815"],["-105.7264292","39.6944812"],["-105.7258874","39.6946743"],["-105.7252675","39.6949841"],["-105.7242437","39.6955373"],["-105.7238591","39.6957568"],["-105.7234988","39.6959546"],["-105.7226164","39.6964372"],["-105.7217851","39.696879"],["-105.7208797","39.6973603"],["-105.7203951","39.6975852"],["-105.7200848","39.6977097"],["-105.7198195","39.6977986"],["-105.719549","39.6978803"],["-105.7192298","39.6979604"],["-105.7188851","39.6980348"],["-105.7185737","39.6980922"],["-105.717735","39.6982154"],["-105.7160534","39.6984686"],["-105.7153829","39.6985966"],["-105.7145891","39.6987654"],["-105.7139076","39.6989321"],["-105.7111422","39.6997217"],["-105.7102775","39.6999816"],["-105.7100151","39.7000785"],["-105.7097517","39.7001879"],["-105.7094707","39.7003177"],["-105.7092052","39.700449"],["-105.7089811","39.7005728"],["-105.7087494","39.7007139"],["-105.7085113","39.7008721"],["-105.7080927","39.7011856"],["-105.7062456","39.7026383"],["-105.7055576","39.7031076"],["-105.7048758","39.7035521"],["-105.7042711","39.7039616"],["-105.703614","39.7044372"],["-105.702698","39.7051407"],["-105.6995173","39.7076939"],["-105.6988915","39.7082064"],["-105.6985796","39.7084802"],["-105.6983716","39.7086853"],["-105.6982011","39.7088734"],["-105.6979648","39.7091613"],["-105.6977563","39.709473"],["-105.6976313","39.7096897"],["-105.6975258","39.7099094"],["-105.6973801","39.7102945"],["-105.6972821","39.7105896"],["-105.6972166","39.7108828"],["-105.6971174","39.7114907"],["-105.6969854","39.7124283"],["-105.6968654","39.7133187"],["-105.6966164","39.7150052"],["-105.6955397","39.7218847"],["-105.6954401","39.722368"],["-105.6953684","39.722664"],["-105.6952965","39.7229333"],["-105.695212","39.7232031"],["-105.6950359","39.7237021"],["-105.692257","39.7310188"],["-105.6921387","39.7312633"],["-105.6920271","39.7314697"],["-105.6919102","39.7316677"],["-105.6917964","39.7318518"],["-105.6916314","39.7321023"],["-105.6914643","39.7323344"],["-105.6912805","39.7325673"],["-105.691068","39.7328169"],["-105.690779","39.7331311"],["-105.6872578","39.7367219"],["-105.6869042","39.7371169"],["-105.6866493","39.7374381"],["-105.6864413","39.7377232"],["-105.6862533","39.7380071"],["-105.6859182","39.7385887"],["-105.6846198","39.7409933"],["-105.6845035","39.7411939"],["-105.6842522","39.7415967"],["-105.6841175","39.7417874"],["-105.6839448","39.7420029"],["-105.6837859","39.7421858"],["-105.6835833","39.7423995"],["-105.6834087","39.7425649"],["-105.6831449","39.7427831"],["-105.6828429","39.7430129"],["-105.6825554","39.7432114"],["-105.681917","39.7435868"],["-105.6791936","39.7450183"],["-105.678857","39.7451787"],["-105.6783724","39.7453962"],["-105.6778911","39.7455976"],["-105.6633593","39.7513934"],["-105.6626108","39.7517026"],["-105.6622731","39.7518611"],["-105.6617831","39.7521171"],["-105.6615369","39.7522654"],["-105.6612508","39.7524514"],["-105.6609006","39.7527032"],["-105.6606736","39.7528804"],["-105.6604505","39.753072"],["-105.6602909","39.75322"],["-105.6601275","39.753378"],["-105.6599782","39.7535343"],["-105.6596983","39.7538536"],["-105.6593932","39.7542135"],["-105.6564785","39.7576434"],["-105.6562302","39.7578905"],["-105.6557756","39.7583205"],["-105.6555811","39.7584889"],["-105.6554484","39.7585946"],["-105.6547327","39.7590924"],["-105.6545239","39.7592229"],["-105.6543304","39.7593388"],["-105.6541167","39.7594585"],["-105.6536829","39.7596806"],["-105.6534582","39.7597863"],["-105.6532028","39.7599006"],["-105.6529529","39.7600064"],["-105.6527501","39.760085"],["-105.6522684","39.7602537"],["-105.6516874","39.7604315"],["-105.6341739","39.7641398"],["-105.6334311","39.7643009"],["-105.6331292","39.7643803"],["-105.6328647","39.7644565"],["-105.6325888","39.7645421"],["-105.6323481","39.7646239"],["-105.6319245","39.7647811"],["-105.6307065","39.7652831"],["-105.6304214","39.7653959"],["-105.6298731","39.765584"],["-105.6292979","39.7657506"],["-105.6283291","39.7659726"],["-105.6279963","39.7660276"],["-105.6278038","39.7660533"],["-105.6252463","39.7663272"],["-105.6242948","39.7664154"],["-105.6236366","39.7664484"],["-105.622943","39.7664671"],["-105.6221397","39.7664603"],["-105.6215902","39.7664449"],["-105.6208726","39.7664074"],["-105.6196373","39.7662963"],["-105.6188313","39.766191"],["-105.6147048","39.7655552"],["-105.613951","39.7654473"],["-105.6134601","39.765394"],["-105.612897","39.7653474"],["-105.6114572","39.7652684"],["-105.6071171","39.7650487"],["-105.6059528","39.7649741"],["-105.6052475","39.7648961"],["-105.6046472","39.7648196"],["-105.6003936","39.7641316"],["-105.5996648","39.7640312"],["-105.5992712","39.7639924"],["-105.5988319","39.7639694"],["-105.5983602","39.763958"],["-105.5978853","39.763961"],["-105.5966769","39.7640121"],["-105.5922341","39.7642372"],["-105.5910704","39.7642703"],["-105.5905411","39.7642588"],["-105.5901024","39.7642389"],["-105.581281","39.7633589"],["-105.5803955","39.7632595"],["-105.5797599","39.76316"],["-105.5792977","39.7630708"],["-105.5788923","39.7629786"],["-105.5784966","39.7628755"],["-105.5780755","39.7627476"],["-105.5775066","39.7625555"],["-105.5769145","39.7623304"],["-105.5763771","39.7620903"],["-105.5758965","39.7618538"],["-105.5716718","39.7595929"],["-105.5708353","39.7591773"],["-105.5682958","39.7580606"],["-105.5637433","39.7560621"],["-105.5631628","39.7558163"],["-105.5628389","39.7556951"],["-105.5624527","39.7555725"],["-105.5622003","39.7555117"],["-105.5619581","39.7554652"],["-105.5617282","39.7554324"],["-105.5614584","39.75541"],["-105.5610979","39.7553971"],["-105.5606988","39.7554101"],["-105.5598672","39.7554744"],["-105.559284","39.7555133"],["-105.5589162","39.7555203"],["-105.5586159","39.755505"],["-105.5583244","39.7554681"],["-105.5580204","39.7554113"],["-105.5576769","39.7553321"],["-105.5573936","39.7552409"],["-105.5571873","39.7551617"],["-105.5569877","39.7550724"],["-105.556796","39.7549728"],["-105.5565544","39.7548265"],["-105.5563754","39.754707"],["-105.5562196","39.7545905"],["-105.5560562","39.7544538"],["-105.5558766","39.7542839"],["-105.5556272","39.7540321"],["-105.5552278","39.7536238"],["-105.5542959","39.7526765"],["-105.5541332","39.7525274"],["-105.553856","39.752304"],["-105.553577","39.7521086"],["-105.55331","39.7519612"],["-105.5530522","39.751829"],["-105.5527801","39.7517158"],["-105.5523417","39.7515666"],["-105.5516822","39.7513597"],["-105.5511396","39.7511861"],["-105.5508689","39.7510781"],["-105.5505732","39.7509302"],["-105.5502952","39.7507662"],["-105.5500038","39.750575"],["-105.549776","39.7503983"],["-105.5492555","39.7499497"],["-105.5487072","39.7494811"],["-105.5482397","39.7491083"],["-105.5475114","39.7485801"],["-105.5469525","39.7482396"],["-105.5463811","39.7479151"],["-105.5458857","39.747662"],["-105.545451","39.7474559"],["-105.5450067","39.7472666"],["-105.5444893","39.7470595"],["-105.5440704","39.7469084"],["-105.5436454","39.7467727"],["-105.5428959","39.7465668"],["-105.5411502","39.7461017"],["-105.5407521","39.745984"],["-105.5404236","39.7458735"],["-105.5398156","39.7456394"],["-105.539102","39.7453592"],["-105.5383231","39.7450615"],["-105.5378268","39.7448912"],["-105.5373201","39.744745"],["-105.5364073","39.7445421"],["-105.5358866","39.7444377"],["-105.5347244","39.7441912"],["-105.5342313","39.744062"],["-105.5324614","39.7435613"],["-105.5319406","39.7434313"],["-105.5309123","39.7432567"],["-105.5292712","39.7430184"],["-105.5276647","39.7427895"],["-105.5272446","39.7427069"],["-105.5268894","39.7426234"],["-105.5259357","39.7423486"],["-105.5223077","39.7412456"],["-105.5218587","39.7411224"],["-105.5214308","39.7410269"],["-105.5206994","39.7408957"],["-105.5201209","39.7408194"],["-105.5197355","39.740779"],["-105.5193255","39.7407555"],["-105.5187893","39.7407423"],["-105.5181292","39.740755"],["-105.5166492","39.7408445"],["-105.5163429","39.7408734"],["-105.5159711","39.7409167"],["-105.5155856","39.740984"],["-105.5152171","39.7410602"],["-105.5147883","39.741152"],["-105.5142609","39.7412523"],["-105.5139352","39.7413009"],["-105.5136848","39.7413246"],["-105.5132803","39.7413405"],["-105.5107744","39.7413673"],["-105.5102508","39.7413538"],["-105.5098928","39.7413115"],["-105.5095756","39.7412615"],["-105.5092782","39.7412003"],["-105.508742","39.7410467"],["-105.5074364","39.7406493"],["-105.506796","39.7404734"],["-105.506529","39.7404174"],["-105.5061198","39.740364"],["-105.5049659","39.7403018"],["-105.5031332","39.7402391"],["-105.5011162","39.7401759"],["-105.5006584","39.7401797"],["-105.5002684","39.7401964"],["-105.4996747","39.7402461"],["-105.4990831","39.7403179"],["-105.4986553","39.7403882"],["-105.4980079","39.7405218"],["-105.4977109","39.7405959"],["-105.4973049","39.7407133"],["-105.4968937","39.7408414"],["-105.4966023","39.7409421"],["-105.496292","39.7410636"],["-105.4957705","39.7412928"],["-105.4950305","39.7416505"],["-105.4929356","39.7426414"],["-105.4904514","39.7437938"],["-105.4895236","39.7442121"],["-105.4891826","39.7443417"],["-105.4889478","39.7444157"],["-105.4887053","39.7444862"],["-105.4884724","39.7445379"],["-105.4882514","39.7445795"],["-105.4880108","39.7446086"],["-105.4876093","39.7446344"],["-105.48719","39.7446336"],["-105.4868658","39.7446075"],["-105.4866018","39.7445733"],["-105.4863065","39.7445214"],["-105.4859898","39.7444444"],["-105.4849798","39.7441712"],["-105.4840574","39.743935"],["-105.4837255","39.7438594"],["-105.4833811","39.7437968"],["-105.4830495","39.7437542"],["-105.4827355","39.74373"],["-105.4824457","39.7437168"],["-105.4821794","39.743716"],["-105.4819016","39.7437301"],["-105.4816021","39.7437578"],["-105.4809714","39.7438383"],["-105.4714172","39.7452052"],["-105.4712434","39.7452171"],["-105.4710718","39.7452246"],["-105.4708937","39.7452279"],["-105.4707485","39.7452259"],["-105.470592","39.7452172"],["-105.4704302","39.7452045"],["-105.4702674","39.7451878"],["-105.4697668","39.745106"],["-105.4689924","39.7449695"],["-105.4688354","39.7449506"],["-105.4686559","39.7449347"],["-105.4684818","39.7449275"],["-105.4682865","39.7449309"],["-105.468107","39.7449425"],["-105.4679307","39.7449658"],["-105.4677451","39.7449974"],["-105.4675716","39.7450416"],["-105.4673802","39.7451039"],["-105.4671841","39.7451833"],["-105.4670035","39.7452656"],["-105.4668446","39.7453497"],["-105.4667157","39.7454223"],["-105.466523","39.7455636"],["-105.4663634","39.7456918"],["-105.4660341","39.7459306"],["-105.4657832","39.746097"],["-105.465411","39.7462973"],["-105.4652286","39.7463889"],["-105.4650901","39.7464435"],["-105.4649095","39.7465021"],["-105.4646849","39.7465638"],["-105.4643061","39.7466375"],["-105.4641299","39.7466629"],["-105.4639768","39.7466741"],["-105.463716","39.7466836"],["-105.463565","39.7466856"],["-105.4632894","39.7466711"],["-105.4628531","39.7466314"],["-105.462041","39.7465161"],["-105.4612842","39.7464032"],["-105.4606804","39.7462879"],["-105.4603815","39.7462208"],["-105.459938","39.7460997"],["-105.4595897","39.745989"],["-105.4589799","39.7457521"],["-105.4587829","39.7456662"],["-105.4583232","39.7454486"],["-105.4580485","39.7453044"],["-105.4577185","39.7451163"],["-105.4573602","39.7449114"],["-105.4550655","39.7436814"],["-105.4548622","39.7435855"],["-105.4546812","39.7435083"],["-105.4545056","39.7434406"],["-105.4543269","39.7433799"],["-105.4541355","39.7433275"],["-105.4539367","39.7432798"],["-105.4537334","39.7432397"],["-105.4535187","39.7432073"],["-105.4533082","39.7431839"],["-105.4530685","39.743169"],["-105.4528491","39.7431722"],["-105.4526749","39.7431788"],["-105.4523056","39.7432007"],["-105.452145","39.7432198"],["-105.4517569","39.743289"],["-105.4512737","39.7434084"],["-105.448967","39.7442787"],["-105.4486734","39.7443772"],["-105.4484875","39.7444214"],["-105.4483338","39.7444524"],["-105.4481718","39.7444757"],["-105.4480047","39.7444923"],["-105.4477086","39.7444989"],["-105.4475859","39.7444931"],["-105.4474511","39.7444868"],["-105.4473105","39.7444694"],["-105.4470574","39.7444158"],["-105.4469197","39.7443786"],["-105.4467423","39.7443239"],["-105.4463867","39.7441873"],["-105.4457744","39.7439364"],["-105.4454063","39.7437805"],["-105.4452239","39.7437148"],["-105.4450494","39.7436556"],["-105.4448954","39.7436081"],["-105.4447299","39.7435657"],["-105.4445687","39.7435364"],["-105.4443962","39.7435067"],["-105.4442276","39.7434929"],["-105.4440527","39.7434844"],["-105.4438732","39.7434828"],["-105.4436891","39.743492"],["-105.4433689","39.7435306"],["-105.4430687","39.7435934"],["-105.4428245","39.7436564"],["-105.4427592","39.7436793"],["-105.4426255","39.7437383"],["-105.4424126","39.7438373"],["-105.4422624","39.743923"],["-105.4419717","39.7441072"],["-105.4412892","39.7445531"],["-105.4407639","39.7448814"],["-105.4405177","39.7450267"],["-105.4403517","39.7451189"],["-105.4401891","39.7451937"],["-105.4399953","39.7452768"],["-105.4399","39.745324"],["-105.4398194","39.7453631"],["-105.4396305","39.7454423"],["-105.4395422","39.7454745"],["-105.4394683","39.7454996"],["-105.4393979","39.7455213"],["-105.4393439","39.7455357"],["-105.4392771","39.7455518"],["-105.4392132","39.7455655"],["-105.4391387","39.7455788"],["-105.4390551","39.7455915"],["-105.4389739","39.7456025"],["-105.4387991","39.7456166"],["-105.4386748","39.7456241"],["-105.4385753","39.7456261"],["-105.4384585","39.7456251"],["-105.4383517","39.7456212"],["-105.4381293","39.7455989"],["-105.4380072","39.7455826"],["-105.4378746","39.7455584"],["-105.4377451","39.7455309"],["-105.4375974","39.7454915"],["-105.4374312","39.7454398"],["-105.4372579","39.7453796"],["-105.4370956","39.7453169"],["-105.4344303","39.744153"],["-105.4342813","39.7440812"],["-105.434147","39.7440057"],["-105.4340257","39.7439296"],["-105.4338965","39.7438412"],["-105.4337817","39.7437489"],["-105.4336783","39.7436567"],["-105.4335843","39.7435586"],["-105.4333609","39.7432931"],["-105.4332812","39.743148"],["-105.4332274","39.7430041"],["-105.4331679","39.7428183"],["-105.4331328","39.74258"],["-105.4331203","39.7423204"],["-105.4331151","39.7420306"],["-105.4331082","39.7417616"],["-105.4330903","39.7415505"],["-105.4330654","39.7413725"],["-105.4330063","39.7411887"],["-105.4329244","39.7409697"],["-105.432781","39.7406698"],["-105.4322166","39.739565"],["-105.4319208","39.73897"],["-105.4317025","39.7384992"],["-105.4315936","39.7382953"],["-105.4315027","39.7381473"],["-105.4313923","39.737985"],["-105.4308876","39.7373579"],["-105.4304925","39.7368713"],["-105.4289075","39.734881"],["-105.4280332","39.7337908"],["-105.4278667","39.7335522"],["-105.4277168","39.7333209"],["-105.4275421","39.7329984"],["-105.427154","39.7322455"],["-105.4269637","39.7318369"],["-105.4268157","39.7315232"],["-105.4266523","39.7311821"],["-105.4265294","39.730971"],["-105.4262928","39.7305855"],["-105.4261393","39.7303788"],["-105.4259493","39.7301597"],["-105.4257381","39.7299563"],["-105.425539","39.7297811"],["-105.4251539","39.7294887"],["-105.4248669","39.7292946"],["-105.4242559","39.7289092"],["-105.4239807","39.7287244"],["-105.4237803","39.7285613"],["-105.4235749","39.7283864"],["-105.4233639","39.7281664"],["-105.4227615","39.7274561"],["-105.4224961","39.7271585"],["-105.4222545","39.7269051"],["-105.4220635","39.7267179"],["-105.4218414","39.7265207"],["-105.4216292","39.7263515"],["-105.4214054","39.7261927"],["-105.4211147","39.7260126"],["-105.4207859","39.7258213"],["-105.4174425","39.7240054"],["-105.4167992","39.7236774"],["-105.4162833","39.723435"],["-105.4155953","39.7231336"],["-105.4133032","39.7222493"],["-105.4125457","39.7219833"],["-105.4118027","39.7217407"],["-105.4110984","39.7215433"],["-105.4089203","39.7209648"],["-105.4033129","39.7195753"],["-105.4028586","39.7194504"],["-105.4024595","39.7193223"],["-105.4021102","39.7191978"],["-105.4018113","39.7190647"],["-105.4014906","39.7189111"],["-105.4011937","39.7187517"],["-105.4007115","39.7184532"],["-105.3983726","39.7168831"],["-105.3977801","39.7165472"],["-105.3974837","39.7163975"],["-105.3971595","39.7162425"],["-105.3968864","39.7161196"],["-105.3965906","39.7160093"],["-105.3959236","39.715794"],["-105.3955336","39.7156816"],["-105.3951251","39.715581"],["-105.3944326","39.7154368"],["-105.3941074","39.7153891"],["-105.3937762","39.7153559"],["-105.3931882","39.7153208"],["-105.3928682","39.7153163"],["-105.3924502","39.7153185"],["-105.3920322","39.7153291"],["-105.3916554","39.7153474"],["-105.3877982","39.715702"],["-105.3868649","39.7157559"],["-105.3863451","39.7157711"],["-105.3859513","39.7157676"],["-105.3853845","39.7157292"],["-105.3850777","39.7157018"],["-105.3845086","39.7156288"],["-105.3840661","39.7155539"],["-105.3834523","39.7154169"],["-105.3813577","39.714867"],["-105.3809264","39.7147668"],["-105.3805565","39.7147055"],["-105.3801877","39.7146508"],["-105.3794783","39.7146205"],["-105.3791137","39.7146342"],["-105.3787606","39.7146594"],["-105.3784232","39.7146988"],["-105.378066","39.7147521"],["-105.3776899","39.7148248"],["-105.3770712","39.7149895"],["-105.3755333","39.7154088"],["-105.375054","39.7155292"],["-105.3747688","39.715584"],["-105.3744718","39.7156303"],["-105.3741774","39.7156589"],["-105.3738489","39.7156836"],["-105.3734771","39.7156977"],["-105.3727634","39.7156566"],["-105.3724416","39.7156286"],["-105.3721388","39.7155797"],["-105.3718637","39.7155272"],["-105.371556","39.7154563"],["-105.3712433","39.7153703"],["-105.3709198","39.7152604"],["-105.3706459","39.7151559"],["-105.3703772","39.715043"],["-105.3701497","39.7149331"],["-105.3699254","39.7148165"],["-105.3694502","39.7145164"],["-105.3688503","39.7140966"],["-105.3678012","39.7133899"],["-105.3675289","39.7132293"],["-105.3672333","39.7130793"],["-105.3669021","39.712926"],["-105.3663819","39.7127218"],["-105.3656343","39.7125223"],["-105.3652481","39.7124516"],["-105.3648642","39.7123921"],["-105.3644471","39.7123505"],["-105.3629521","39.7123241"],["-105.3582979","39.7122562"],["-105.3570944","39.7122238"],["-105.3564957","39.7121789"],["-105.3559216","39.7121131"],["-105.3553149","39.7120142"],["-105.3547241","39.7119041"],["-105.3541363","39.7117719"],["-105.3531477","39.7114812"],["-105.3524438","39.71125"],["-105.3520374","39.7110976"],["-105.3515866","39.7109016"],["-105.3510173","39.7106388"],["-105.3505304","39.7103944"],["-105.3500537","39.7101236"],["-105.3492585","39.7096165"],["-105.3487093","39.7092185"],["-105.3483111","39.7088967"],["-105.3475285","39.7081669"],["-105.3451639","39.7058341"],["-105.3447022","39.7054155"],["-105.3444262","39.7051991"],["-105.3441053","39.7049729"],["-105.3436127","39.7046516"],["-105.3432613","39.7044451"],["-105.342799","39.704199"],["-105.342504","39.7040529"],["-105.3421268","39.7038872"],["-105.3416915","39.703724"],["-105.3413223","39.7035896"],["-105.3397509","39.7030987"],["-105.3353576","39.7017606"],["-105.3349694","39.7016548"],["-105.334571","39.7015568"],["-105.3342208","39.7014899"],["-105.3339294","39.7014479"],["-105.3336039","39.7014134"],["-105.3332787","39.7013929"],["-105.3329168","39.7013871"],["-105.3325763","39.7013997"],["-105.3321789","39.7014341"],["-105.3317719","39.7014925"],["-105.331402","39.7015656"],["-105.3310628","39.7016456"],["-105.3307188","39.7017529"],["-105.3303869","39.7018775"],["-105.3300472","39.7020223"],["-105.3294258","39.702348"],["-105.3291251","39.7025212"],["-105.3287414","39.7027682"],["-105.3282879","39.7030662"],["-105.3276922","39.7034601"],["-105.3235158","39.7062012"],["-105.3225139","39.706847"],["-105.3205082","39.7082115"],["-105.3197495","39.7087651"],["-105.3188512","39.7094289"],["-105.3187119","39.7095662"],["-105.3177681","39.7103569"],["-105.3170162","39.7109945"],["-105.3165587","39.7113902"],["-105.3148163","39.7128827"],["-105.3143947","39.713232"],["-105.3141033","39.7134291"],["-105.3138946","39.7135435"],["-105.3136712","39.7136583"],["-105.3131677","39.7138603"],["-105.3128898","39.7139539"],["-105.3126149","39.7140244"],["-105.3123672","39.7140824"],["-105.3120665","39.7141273"],["-105.3117555","39.7141601"],["-105.3114829","39.7141769"],["-105.311234","39.7141767"],["-105.3109673","39.7141652"],["-105.3107208","39.7141378"],["-105.3104224","39.7140968"],["-105.3101188","39.7140368"],["-105.3021134","39.7119657"],["-105.294048","39.7098778"],["-105.292644","39.7095773"],["-105.2917234","39.7094223"],["-105.2908589","39.7093061"],["-105.2899411","39.7092143"],["-105.287504","39.7090803"],["-105.285929","39.7089897"],["-105.2843002","39.7088975"],["-105.2839285","39.708853"],["-105.2835297","39.7087813"],["-105.2832225","39.7087054"],["-105.2826492","39.7085354"],["-105.2818002","39.7082013"],["-105.2773044","39.7063427"],["-105.2768534","39.7061809"],["-105.2763711","39.7060228"],["-105.2759914","39.705917"],["-105.2756011","39.7058228"],["-105.2752016","39.7057369"],["-105.2632101","39.7039558"],["-105.2624058","39.7038619"],["-105.2615742","39.7038109"],["-105.2608244","39.7038005"],["-105.2600587","39.7038191"],["-105.258808","39.7039551"],["-105.2574011","39.7041358"],["-105.2557518","39.7043527"],["-105.2553515","39.7043857"],["-105.2545727","39.7044185"],["-105.2542971","39.70441"],["-105.2540156","39.7043905"],["-105.2536669","39.7043514"],["-105.2532117","39.7042839"],["-105.25229","39.70411"],["-105.2480005","39.7032199"],["-105.2467067","39.7029607"],["-105.2458705","39.7027924"],["-105.2453444","39.7026698"],["-105.2449662","39.7025663"],["-105.2444122","39.7024068"],["-105.2427886","39.7019196"],["-105.2421104","39.7017087"],["-105.2416198","39.7015264"],["-105.2413541","39.701413"],["-105.2411393","39.7013114"],["-105.2409212","39.701192"],["-105.2406787","39.7010336"],["-105.2404876","39.700885"],["-105.2402465","39.7006812"],["-105.2399483","39.7003891"],["-105.2396227","39.7000665"],["-105.2391802","39.6996394"],["-105.2388663","39.6993586"],["-105.2386937","39.6992168"],["-105.2385567","39.6991213"],["-105.2383409","39.6989922"],["-105.2379872","39.6988035"],["-105.2377396","39.6986946"],["-105.2374925","39.6986063"],["-105.2371135","39.6984961"],["-105.2366874","39.6984036"],["-105.2361793","39.6983395"],["-105.2328617","39.6982733"],["-105.2300181","39.6982188"],["-105.2276068","39.698169"],["-105.2273016","39.6981458"],["-105.2267975","39.6980735"],["-105.2264025","39.6979986"],["-105.2221794","39.6967736"],["-105.2203075","39.6962388"],["-105.2198671","39.696148"],["-105.2194288","39.6960716"],["-105.2190343","39.6960188"],["-105.2186617","39.6959783"],["-105.2183496","39.6959576"],["-105.2180111","39.695945"],["-105.2154558","39.6959597"],["-105.2149263","39.6959476"],["-105.2145877","39.695927"],["-105.2142857","39.6958923"],["-105.213991","39.6958473"],["-105.2136435","39.6957797"],["-105.212965","39.6956102"],["-105.2123216","39.6954524"],["-105.2117172","39.6953062"],["-105.2114064","39.6952471"],["-105.2110153","39.6952011"],["-105.2107449","39.6951812"],["-105.2104755","39.6951765"],["-105.2101948","39.6951875"],["-105.2099034","39.6952172"],["-105.2096015","39.6952604"],["-105.2092801","39.6953223"],["-105.208996","39.6953911"],["-105.2087316","39.6954736"],["-105.2084936","39.695561"],["-105.2082281","39.6956795"],["-105.2078821","39.6958595"],["-105.2076377","39.6960079"],["-105.2073366","39.6962221"],["-105.2070017","39.6965059"],["-105.204315","39.6991977"],["-105.2034068","39.7001552"],["-105.2022901","39.7015036"],["-105.2001876","39.7042043"],["-105.1905889","39.7166808"],["-105.190223","39.7171422"],["-105.1898057","39.7176331"],["-105.1896036","39.717852"],["-105.1890894","39.7183838"],["-105.1879471","39.7194221"],["-105.1872548","39.7199656"],["-105.1819609","39.7234543"],["-105.1807672","39.7241214"],["-105.1805636","39.7242236"],["-105.1803206","39.7243377"],["-105.1800312","39.7244581"],["-105.1797064","39.7245798"],["-105.1792991","39.7247125"],["-105.1788566","39.7248423"],["-105.1784627","39.7249412"],["-105.1779527","39.7250415"],["-105.1767006","39.7252038"],["-105.1759037","39.7252555"],["-105.0581695","39.7256153"],["-105.0577989","39.7256271"],["-105.0566153","39.7256481"],["-105.0487361","39.7256553"],["-105.0473373","39.7256216"],["-105.0339008","39.7255583"],["-105.0326574","39.7254835"],["-105.0321968","39.7254501"],["-105.0318153","39.7254236"],["-105.0315201","39.7254145"],["-105.0301935","39.7254027"],["-105.0274149","39.7254087"],["-105.0248745","39.7253699"],["-105.0203582","39.7251161"],["-105.0194414","39.7250906"],["-105.0175969","39.7250698"],["-105.0165944","39.7250671"],["-105.0164882","39.7250605"],["-105.0163978","39.7250503"],["-105.0163149","39.725034"],["-105.0161557","39.7249957"],["-105.016038","39.7249567"],["-105.0157984","39.7248711"],["-105.015521","39.72477"],["-105.0152852","39.7246741"],["-105.0151742","39.7246318"],["-105.0150741","39.7245982"],["-105.0149398","39.7245614"],["-105.0148246","39.7245405"],["-105.0146857","39.7245253"],["-105.0145343","39.7245202"],["-105.0143922","39.7245261"],["-105.0142492","39.7245397"],["-105.0141179","39.7245622"],["-105.0140141","39.724589"],["-105.0139232","39.7246172"],["-105.0138299","39.7246526"],["-105.0137228","39.7246998"],["-105.0136481","39.7247379"],["-105.0135795","39.7247786"],["-105.013517","39.7248196"],["-105.0134583","39.7248625"],["-105.0133989","39.7249109"],["-105.0133484","39.7249575"],["-105.0132976","39.7250083"],["-105.0132491","39.7250582"],["-105.013166","39.7251552"],["-105.0131199","39.7252168"],["-105.0130572","39.725304"],["-105.0130217","39.7253657"],["-105.0129845","39.725433"],["-105.0129549","39.7254954"],["-105.0129292","39.725555"],["-105.0129069","39.7256216"],["-105.0128886","39.725682"],["-105.0128765","39.7257358"],["-105.012863","39.725802"],["-105.0128519","39.725874"],["-105.0128415","39.7259704"],["-105.0128375","39.7260449"],["-105.0128376","39.7261099"],["-105.0128403","39.7261764"],["-105.0128517","39.7262493"],["-105.0128649","39.7263219"],["-105.0128811","39.7264014"],["-105.0129015","39.7264632"],["-105.0129278","39.7265326"],["-105.0129575","39.7265967"],["-105.0130051","39.7266882"],["-105.013126","39.7268944"],["-105.0133533","39.7272809"],["-105.0137865","39.7280163"],["-105.0145841","39.7292747"],["-105.0146701","39.7294206"],["-105.0147538","39.7295922"],["-105.0148881","39.729894"],["-105.0154955","39.7313758"],["-105.0155332","39.7315549"],["-105.0155585","39.7317317"],["-105.0155985","39.7320869"],["-105.0156039","39.7322308"],["-105.0156008","39.7323649"],["-105.0155752","39.7327522"],["-105.0155184","39.7332065"],["-105.0154998","39.7332993"],["-105.0153976","39.7337031"],["-105.0153086","39.7339903"],["-105.0152553","39.7341416"],["-105.0152074","39.7342633"],["-105.0150198","39.7346868"],["-105.0147039","39.7351114"],["-105.0144509","39.7354951"],["-105.0143137","39.7357266"],["-105.0142135","39.7359076"],["-105.0140774","39.7361758"],["-105.0140153","39.7363181"],["-105.013959","39.7364651"],["-105.0139137","39.7365913"],["-105.0138444","39.736835"],["-105.0138106","39.7369705"],["-105.0137291","39.7373471"],["-105.0136713","39.7376562"],["-105.0136412","39.737797"],["-105.0136156","39.7378988"],["-105.0135776","39.7380115"],["-105.0135069","39.738189"],["-105.0134643","39.7382816"],["-105.013414","39.7383778"],["-105.0133475","39.7384864"],["-105.0132847","39.7385806"],["-105.0132121","39.7386792"],["-105.0131279","39.7387771"],["-105.0130277","39.7388843"],["-105.0129051","39.7390119"],["-105.0128055","39.739114"],["-105.0126465","39.7392845"],["-105.0125576","39.7393877"],["-105.0125216","39.739443"],["-105.0125029","39.7394821"],["-105.0124779","39.7395527"],["-105.012467","39.7396354"],["-105.0124481","39.7397846"],["-105.0124116","39.7400104"],["-105.0124","39.7400614"],["-105.0123759","39.7400993"],["-105.0123468","39.7401336"],["-105.0123067","39.7401715"],["-105.0122575","39.740206"],["-105.0122047","39.7402349"],["-105.012131","39.7402635"],["-105.0119918","39.7402838"],["-105.0053847","39.7401058"],["-105.0040843","39.7400295"],["-105.0039457","39.7400255"],["-105.0023248","39.740022"],["-104.999105","39.7400188"],["-104.9988","39.7400193"],["-104.9981294","39.7400167"],["-104.998026","39.7400163"],["-104.9903917","39.7400025"],["-104.9901836","39.7400012"],["-104.9900589","39.7400024"],["-104.9899816","39.7400066"],["-104.9899266","39.7400142"],["-104.9898753","39.7400247"],["-104.989817","39.740043"],["-104.9897598","39.7400647"],["-104.9897042","39.7400905"],["-104.9896462","39.7401216"],["-104.9895894","39.7401595"],["-104.9893284","39.7403582"],["-104.9892731","39.7403981"],["-104.989226","39.7404266"],["-104.9891758","39.740452"],["-104.9891175","39.7404765"],["-104.9890594","39.7404935"],["-104.9890072","39.7405034"],["-104.9889469","39.7405168"],["-104.9888862","39.7405444"],["-104.9888601","39.7405652"],["-104.9888391","39.7405873"],["-104.9888233","39.740612"]]}};const coordinates_1_1=geojson_1_1.geometry.coordinates;for(const coord of coordinates_1_1){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.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(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});initialMapBounds[1]=new mapboxgl.LngLatBounds(window.bounds[1].getSouthWest(),window.bounds[1].getNorthEast());const visibleMapRoutes_1=[];contentMaps[1].on('click',(e)=>{resetMarkersAndCards(1);});addMarkersToMap(1);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} 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"); } }); })(); document.addEventListener('DOMContentLoaded', () => { const h = document.querySelector('header.fixed-top'), o = getComputedStyle(h).right; ['show.bs.modal', 'hidden.bs.modal'].forEach(e => document.querySelectorAll('.fullScreenModal').forEach(m => m.addEventListener(e, ev => h.style.right = ev.type === 'show.bs.modal' ? `${window.innerWidth - document.documentElement.clientWidth}px` : o))); });