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:[-118.10714577367965,51.17645229280437],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":[-123.120972,49.282739],"type":"start"};markerData[1][1]={"lonLat":[-114.065601,51.047693],"type":"finish"};markerData[1][2]={"lonLat":[-117.4569115119169,51.50737508991663],"type":"star","c":{"popup":{"title":"Banff Route","text":"970 km (10 hours 20 minutes*)"}}};markerData[1][3]={"lonLat":[-116.9253679111115,49.106186620640514],"type":"star","c":{"popup":{"title":"Crowsnest Route","text":"1,230 km (13 hours 40 minutes*)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-123.1207724","49.2833408"],["-123.120113","49.283773"],["-123.1200526","49.2837389"],["-123.1199133","49.283648"],["-123.1191334","49.2831415"],["-123.1171334","49.2818625"],["-123.1154436","49.2829677"],["-123.1135797","49.284218"],["-123.1133169","49.2843924"],["-123.1128936","49.2846651"],["-123.1107687","49.2832956"],["-123.1106286","49.2832048"],["-123.1096785","49.2825872"],["-123.1095753","49.2825163"],["-123.109507","49.2824704"],["-123.1094529","49.2824399"],["-123.1093159","49.2823901"],["-123.1043462","49.2814806"],["-123.1042885","49.2814724"],["-123.1041993","49.28146"],["-123.1040056","49.2814376"],["-123.1036153","49.2814177"],["-123.0822341","49.2810188"],["-123.0813816","49.2810038"],["-123.0806788","49.280996"],["-123.0800434","49.2809909"],["-123.079532","49.281041"],["-123.0791846","49.2811115"],["-123.0790239","49.2811071"],["-123.078855","49.2811511"],["-123.0786972","49.2811918"],["-123.0785163","49.2812293"],["-123.0782586","49.2812623"],["-123.0780405","49.2812745"],["-123.0776604","49.2812718"],["-123.0767017","49.281261"],["-123.0742611","49.2812401"],["-123.0741072","49.2812808"],["-123.0739589","49.2812807"],["-123.0726889","49.2812655"],["-123.0724832","49.2812239"],["-123.0718721","49.2812058"],["-123.0704165","49.2811839"],["-123.069366","49.2811727"],["-123.0683493","49.2811718"],["-123.0680814","49.2812082"],["-123.0388414","49.2811281"],["-123.0343053","49.2811359"],["-123.0339672","49.2810837"],["-123.0324593","49.2810606"],["-123.0321232","49.2810096"],["-123.0319053","49.2810006"],["-123.0317781","49.2809659"],["-123.0316893","49.2808922"],["-123.0316648","49.2807701"],["-123.0316395","49.2806905"],["-123.0316582","49.2801727"],["-123.0317939","49.2793162"],["-123.0318069","49.2791392"],["-123.031816","49.2783681"],["-123.0318156","49.2775904"],["-123.0317793","49.2769519"],["-123.0317066","49.276324"],["-123.0315562","49.2760126"],["-123.031118","49.2749107"],["-123.0308654","49.2744785"],["-123.0306617","49.2741715"],["-123.0302802","49.2736543"],["-123.0298087","49.2729523"],["-123.0290305","49.2717823"],["-123.0286909","49.271265"],["-123.0283328","49.2705831"],["-123.0279452","49.2698418"],["-123.0266333","49.2671432"],["-123.0264215","49.2665817"],["-123.0262879","49.2660139"],["-123.026208","49.2655498"],["-123.0261529","49.2650859"],["-123.0260943","49.264602"],["-123.026023","49.2640509"],["-123.0259586","49.2637425"],["-123.0259038","49.2635245"],["-123.0257627","49.2631268"],["-123.0254205","49.2625542"],["-123.0251674","49.2621993"],["-123.0249912","49.2619946"],["-123.0248127","49.2618241"],["-123.0246108","49.2616414"],["-123.0243797","49.2614575"],["-123.0240999","49.2612512"],["-123.0199045","49.2583837"],["-123.0195021","49.2581329"],["-123.0190473","49.2579041"],["-123.0186625","49.2577471"],["-123.0182853","49.2576257"],["-123.0178857","49.2575231"],["-123.0174444","49.2574434"],["-123.0169981","49.2573904"],["-123.0165616","49.2573682"],["-123.015995","49.2573757"],["-123.0127895","49.2575582"],["-123.0007958","49.2575458"],["-122.9955513","49.2577166"],["-122.9934002","49.2577499"],["-122.9856228","49.25774"],["-122.9845893","49.2576823"],["-122.9839735","49.2576063"],["-122.9834504","49.25752"],["-122.9829888","49.2574337"],["-122.982564","49.2573256"],["-122.9819347","49.257146"],["-122.9811783","49.2568849"],["-122.9805619","49.2566067"],["-122.9799806","49.2563194"],["-122.979504","49.2560434"],["-122.9786753","49.2554725"],["-122.9782994","49.2551601"],["-122.9779864","49.2548589"],["-122.9769063","49.2536538"],["-122.9761787","49.2528134"],["-122.9708456","49.2467913"],["-122.9702766","49.2461004"],["-122.9695825","49.2453735"],["-122.969039","49.244787"],["-122.9686643","49.2444176"],["-122.968009","49.2438609"],["-122.9672745","49.2433571"],["-122.9668037","49.2430708"],["-122.9663802","49.2428487"],["-122.9658306","49.2425921"],["-122.9654129","49.2424205"],["-122.9649289","49.2422377"],["-122.9643307","49.2420444"],["-122.9636023","49.2418247"],["-122.9626485","49.2416284"],["-122.9601012","49.2411429"],["-122.9591688","49.240946"],["-122.9574058","49.2405251"],["-122.9483609","49.2378539"],["-122.9477375","49.2376959"],["-122.9470182","49.237532"],["-122.9457704","49.2372909"],["-122.9446919","49.2371321"],["-122.9440422","49.2370575"],["-122.9326639","49.2362789"],["-122.9318269","49.236261"],["-122.9310981","49.2362726"],["-122.9303668","49.2363007"],["-122.9296572","49.2363508"],["-122.9289277","49.2364274"],["-122.9280531","49.2365468"],["-122.9272217","49.2366898"],["-122.9263779","49.236868"],["-122.9257872","49.2370121"],["-122.9251471","49.2371934"],["-122.9244398","49.2374149"],["-122.9236589","49.2376953"],["-122.9224166","49.2382189"],["-122.9220086","49.2384179"],["-122.9205371","49.2392012"],["-122.9199836","49.2395019"],["-122.9187321","49.2402452"],["-122.9123865","49.24395"],["-122.9112542","49.244591"],["-122.9107284","49.2448503"],["-122.9103242","49.2450245"],["-122.9098954","49.2451922"],["-122.9094728","49.2453409"],["-122.9089701","49.2454943"],["-122.9085129","49.2456206"],["-122.9080519","49.2457292"],["-122.9076022","49.2458198"],["-122.9070709","49.2459058"],["-122.9065654","49.2459751"],["-122.9061698","49.2460183"],["-122.9056292","49.2460559"],["-122.9047987","49.2460691"],["-122.9040489","49.2460371"],["-122.9037609","49.2460154"],["-122.903021","49.2459294"],["-122.9025156","49.2458465"],["-122.9016845","49.2456757"],["-122.9009164","49.2455054"],["-122.8999866","49.2452834"],["-122.8991934","49.2450682"],["-122.898492","49.2448585"],["-122.8977836","49.2446183"],["-122.8965443","49.2441338"],["-122.895306","49.2435677"],["-122.8939716","49.2429128"],["-122.8934915","49.2426506"],["-122.892943","49.2423427"],["-122.8846297","49.2372475"],["-122.8836285","49.2366727"],["-122.8828856","49.2361966"],["-122.8821592","49.2357682"],["-122.8815774","49.2354738"],["-122.8810875","49.2352552"],["-122.8804236","49.2350092"],["-122.879469","49.2347115"],["-122.8781252","49.2343672"],["-122.8769522","49.2341122"],["-122.8760197","49.233946"],["-122.8739729","49.2336444"],["-122.8535821","49.2313273"],["-122.8477775","49.230846"],["-122.8460526","49.2306772"],["-122.8442384","49.2304686"],["-122.8414603","49.2300895"],["-122.840428","49.2299313"],["-122.832107","49.2289986"],["-122.8249391","49.2280309"],["-122.8242359","49.2279204"],["-122.823476","49.2277745"],["-122.8218377","49.2274084"],["-122.8210986","49.2272226"],["-122.8204445","49.2270309"],["-122.8199291","49.2268599"],["-122.8194506","49.2266822"],["-122.8189019","49.2264539"],["-122.8183673","49.2262087"],["-122.8179872","49.2260132"],["-122.8175684","49.2257819"],["-122.8171114","49.225505"],["-122.8166962","49.2252168"],["-122.8163599","49.224954"],["-122.8160492","49.224679"],["-122.8157372","49.2243763"],["-122.8154853","49.2241048"],["-122.8152174","49.2237924"],["-122.8149623","49.2234528"],["-122.8147167","49.2230825"],["-122.8143899","49.2224998"],["-122.8141846","49.2220527"],["-122.8131986","49.2195211"],["-122.8117021","49.2158475"],["-122.8107104","49.2135435"],["-122.8105463","49.2131941"],["-122.8103451","49.2128433"],["-122.810077","49.2124546"],["-122.8097734","49.2120944"],["-122.8095098","49.2118223"],["-122.8091966","49.2115458"],["-122.8081842","49.2107409"],["-122.8066539","49.2095489"],["-122.80585","49.2089046"],["-122.8048132","49.2080213"],["-122.803816","49.207122"],["-122.8019099","49.2053087"],["-122.7972532","49.200542"],["-122.7966455","49.1999524"],["-122.7950379","49.1985023"],["-122.7940074","49.1976227"],["-122.7934901","49.1972152"],["-122.7929032","49.1967968"],["-122.7923826","49.1964581"],["-122.7918214","49.1961372"],["-122.7912811","49.1958481"],["-122.7907422","49.1955847"],["-122.7900439","49.1952724"],["-122.789471","49.1950402"],["-122.7888112","49.1948075"],["-122.7880673","49.1945953"],["-122.7871115","49.194389"],["-122.785928","49.1941364"],["-122.7843865","49.1937805"],["-122.7395549","49.182591"],["-122.711808","49.1753114"],["-122.7106244","49.1750235"],["-122.7100061","49.1748715"],["-122.7075326","49.1742212"],["-122.7054078","49.1736246"],["-122.6791241","49.1667218"],["-122.6673149","49.1636854"],["-122.6660465","49.1633024"],["-122.6645338","49.1628501"],["-122.6184327","49.1504865"],["-122.6173719","49.1501425"],["-122.6157793","49.1495674"],["-122.4962402","49.1027036"],["-122.3911821","49.0613304"],["-122.3866532","49.0596106"],["-122.3768944","49.0557917"],["-122.3738729","49.0544758"],["-122.3662637","49.0511148"],["-122.3544787","49.046017"],["-122.3489466","49.0434602"],["-122.3377715","49.037631"],["-122.3372673","49.0374176"],["-122.3363612","49.0370777"],["-122.335281","49.0367392"],["-122.3342153","49.0364892"],["-122.3331961","49.0363076"],["-122.3320869","49.036194"],["-122.2934711","49.0340353"],["-122.2876219","49.0337472"],["-122.2798182","49.0334094"],["-122.2569909","49.0333368"],["-122.253301","49.0332586"],["-122.2417161","49.0332592"],["-122.2388523","49.0334013"],["-122.2363914","49.0336344"],["-122.2352767","49.0337812"],["-122.2333893","49.0340776"],["-122.2322842","49.034292"],["-122.2311647","49.0345333"],["-122.2301125","49.034787"],["-122.2291716","49.0350477"],["-122.2282425","49.0353252"],["-122.2270985","49.0357255"],["-122.2256558","49.0362854"],["-122.2197226","49.0389136"],["-122.2172036","49.0400079"],["-122.2140659","49.041254"],["-122.1731632","49.0597949"],["-122.1703002","49.0613793"],["-122.1311831","49.0852809"],["-122.126709","49.0879982"],["-122.1258257","49.0885442"],["-122.1249335","49.0892766"],["-122.1239227","49.0902759"],["-122.1226508","49.091813"],["-122.1026926","49.1181261"],["-122.1010589","49.120244"],["-122.1006727","49.1206555"],["-122.1002315","49.1210263"],["-122.0998603","49.1212943"],["-122.099577","49.1214863"],["-122.0992625","49.1216653"],["-122.0987856","49.1219068"],["-122.0981322","49.1221829"],["-122.096941","49.1226251"],["-122.0889794","49.1252412"],["-122.0881085","49.1255685"],["-122.0874381","49.1258607"],["-122.0869881","49.126075"],["-122.0860941","49.1265409"],["-122.0853076","49.1270241"],["-122.0764056","49.1336006"],["-122.0739968","49.1353796"],["-122.0734702","49.1356935"],["-122.072911","49.1359838"],["-122.0724768","49.136182"],["-122.0720195","49.1363578"],["-122.0714321","49.1365402"],["-122.0705886","49.1367359"],["-122.0677805","49.1371933"],["-122.0342431","49.1416877"],["-122.0267474","49.1426852"],["-122.0260346","49.1428407"],["-122.0253833","49.1430004"],["-122.0231854","49.1436341"],["-122.0222998","49.1438797"],["-122.0217006","49.1440245"],["-122.0206467","49.1442221"],["-122.0194869","49.1443521"],["-122.0183591","49.1443997"],["-121.9693838","49.1435269"],["-121.9687326","49.1435466"],["-121.9676239","49.1436114"],["-121.966905","49.1436899"],["-121.9665658","49.1437347"],["-121.9657234","49.1438581"],["-121.9653674","49.1439197"],["-121.9649803","49.1439973"],["-121.9211361","49.1548443"],["-121.9194386","49.155109"],["-121.9185422","49.1551668"],["-121.9156922","49.1551812"],["-121.8274966","49.1547387"],["-121.8249869","49.1548119"],["-121.8237864","49.1549445"],["-121.8224755","49.1551596"],["-121.820967","49.1555072"],["-121.8185209","49.1563419"],["-121.8168084","49.1571152"],["-121.8146528","49.1581951"],["-121.8124501","49.1592819"],["-121.8109667","49.1599515"],["-121.8095475","49.1603967"],["-121.8084195","49.1605714"],["-121.8074818","49.1606347"],["-121.8064474","49.1606364"],["-121.8054255","49.1605138"],["-121.8044619","49.1603255"],["-121.8033411","49.1601011"],["-121.8023194","49.159971"],["-121.8013412","49.1599217"],["-121.8001645","49.1600416"],["-121.7990592","49.160288"],["-121.7977581","49.1608728"],["-121.7921819","49.1639965"],["-121.7874657","49.1666626"],["-121.785863","49.1677623"],["-121.7832533","49.169978"],["-121.7820693","49.1708601"],["-121.7807458","49.1714584"],["-121.7783729","49.1722417"],["-121.7775313","49.1725487"],["-121.7772277","49.1726969"],["-121.7769528","49.1728615"],["-121.7765967","49.1730946"],["-121.776131","49.1734973"],["-121.7747103","49.1748375"],["-121.7736905","49.1756097"],["-121.7719999","49.1764947"],["-121.7661176","49.1789514"],["-121.7464217","49.1870705"],["-121.7440225","49.1882383"],["-121.742084","49.1893979"],["-121.7401012","49.1906975"],["-121.7382942","49.1920331"],["-121.7359052","49.1939724"],["-121.7347115","49.1947516"],["-121.7269757","49.1989802"],["-121.7193024","49.2034585"],["-121.7175119","49.2043335"],["-121.7118889","49.206328"],["-121.7107066","49.2068825"],["-121.7100456","49.2072981"],["-121.7094203","49.2078008"],["-121.7062929","49.2109203"],["-121.7052241","49.2118939"],["-121.7038089","49.2128406"],["-121.7023877","49.2135533"],["-121.7009907","49.2140719"],["-121.6994055","49.2145351"],["-121.6967775","49.2150785"],["-121.6958944","49.2152782"],["-121.6951673","49.2155186"],["-121.6945034","49.2157805"],["-121.6937739","49.2161489"],["-121.6929869","49.2166565"],["-121.691961","49.217636"],["-121.6896242","49.2206514"],["-121.6882054","49.2229491"],["-121.6874864","49.2241843"],["-121.6869547","49.2250175"],["-121.6862957","49.2258259"],["-121.6855902","49.2264452"],["-121.6844677","49.2273459"],["-121.6839143","49.2278548"],["-121.6834605","49.2283731"],["-121.6830558","49.2289807"],["-121.6826769","49.2300445"],["-121.6816088","49.2336282"],["-121.681075","49.2366415"],["-121.6808557","49.2373134"],["-121.6805558","49.2378872"],["-121.6802864","49.2382799"],["-121.6786639","49.2401592"],["-121.6780186","49.2411195"],["-121.6777157","49.2418294"],["-121.6775206","49.2424837"],["-121.6773578","49.2435587"],["-121.6772817","49.2471874"],["-121.6773492","49.248196"],["-121.6778777","49.2502269"],["-121.6786453","49.2530266"],["-121.6787515","49.2538541"],["-121.6787054","49.2544069"],["-121.6786077","49.2549201"],["-121.6782326","49.2557946"],["-121.6758098","49.2608443"],["-121.67553","49.261614"],["-121.6754667","49.2622941"],["-121.6755179","49.2636871"],["-121.6754615","49.2645194"],["-121.6751598","49.2659471"],["-121.675072","49.2667157"],["-121.6751487","49.2673428"],["-121.6755778","49.2686779"],["-121.6757343","49.2694132"],["-121.6757623","49.2700873"],["-121.6756011","49.2707647"],["-121.675262","49.2714616"],["-121.6745798","49.2722997"],["-121.6723862","49.2747113"],["-121.6718183","49.275485"],["-121.6715271","49.2761747"],["-121.6713632","49.2772372"],["-121.671193","49.2804007"],["-121.6710252","49.2811442"],["-121.6706479","49.2818776"],["-121.6694274","49.2836622"],["-121.6690457","49.2844175"],["-121.6689301","49.2849789"],["-121.668763","49.2879364"],["-121.6685464","49.2887287"],["-121.6680691","49.2895218"],["-121.6672658","49.2903106"],["-121.6665221","49.2908093"],["-121.6653573","49.2913203"],["-121.6609073","49.2928361"],["-121.659358","49.2934377"],["-121.6583287","49.2939891"],["-121.6574296","49.2946294"],["-121.6557491","49.2961514"],["-121.6538181","49.297969"],["-121.6529786","49.2987056"],["-121.6524788","49.2990071"],["-121.6519152","49.2992934"],["-121.6505223","49.2997883"],["-121.6482583","49.3004398"],["-121.6467854","49.3009747"],["-121.6456715","49.3015299"],["-121.6444738","49.3023065"],["-121.6396799","49.3060991"],["-121.6358124","49.3092319"],["-121.6352704","49.3097451"],["-121.6347302","49.3103843"],["-121.6317806","49.3141707"],["-121.6309715","49.3150971"],["-121.6297005","49.3162843"],["-121.6189909","49.3247793"],["-121.6117548","49.3303792"],["-121.5903201","49.3463871"],["-121.5861759","49.3495046"],["-121.5825291","49.3522047"],["-121.5783981","49.3552344"],["-121.5771666","49.3561142"],["-121.575807","49.3568401"],["-121.5744618","49.3574766"],["-121.5734423","49.3579513"],["-121.5670097","49.3609749"],["-121.5650824","49.3617013"],["-121.5629244","49.3622461"],["-121.5608406","49.3624937"],["-121.5527778","49.3631669"],["-121.5485218","49.3637767"],["-121.5463127","49.3640426"],["-121.544488","49.3640014"],["-121.5403893","49.363801"],["-121.5345882","49.3639752"],["-121.5284837","49.3645368"],["-121.5249892","49.3648624"],["-121.5238893","49.3647932"],["-121.5226147","49.364573"],["-121.5212546","49.364124"],["-121.5179286","49.362362"],["-121.5168439","49.3618382"],["-121.5158881","49.3614807"],["-121.514725","49.3612544"],["-121.5140118","49.3611826"],["-121.5132455","49.3611521"],["-121.5123086","49.3611756"],["-121.4878694","49.3641206"],["-121.4715298","49.3646955"],["-121.469024","49.3648806"],["-121.4621313","49.3653398"],["-121.457878","49.3656266"],["-121.457177","49.3657002"],["-121.4567022","49.3657994"],["-121.4561297","49.3659285"],["-121.4557299","49.366048"],["-121.4550528","49.3662741"],["-121.4547606","49.3663918"],["-121.4544489","49.3665564"],["-121.4537699","49.3669788"],["-121.4523431","49.3679302"],["-121.449108","49.3702608"],["-121.4477684","49.3711602"],["-121.447074","49.3715289"],["-121.4463501","49.3718737"],["-121.4457197","49.3721397"],["-121.4453937","49.3722639"],["-121.4449221","49.372423"],["-121.4445758","49.3725299"],["-121.4440899","49.3726666"],["-121.4432184","49.3728666"],["-121.4424838","49.3729939"],["-121.4401878","49.373262"],["-121.439576","49.3732833"],["-121.4388669","49.3732913"],["-121.4382689","49.3732795"],["-121.4377529","49.373248"],["-121.4373072","49.3732032"],["-121.4368318","49.3731453"],["-121.4297583","49.371862"],["-121.4259215","49.3712528"],["-121.424074","49.3710825"],["-121.4217848","49.3712457"],["-121.4194989","49.3716455"],["-121.4185599","49.3717969"],["-121.4175426","49.3719144"],["-121.4160726","49.3720632"],["-121.4154797","49.3720784"],["-121.4147106","49.3720776"],["-121.4142291","49.3720518"],["-121.4138668","49.3720147"],["-121.413547","49.371967"],["-121.4128595","49.3718244"],["-121.4053583","49.369957"],["-121.4043039","49.3695874"],["-121.4038157","49.3693921"],["-121.4032735","49.3691531"],["-121.4027375","49.3689044"],["-121.4016551","49.3683364"],["-121.4011706","49.3681004"],["-121.4007415","49.3679009"],["-121.4003511","49.3677511"],["-121.3992369","49.367456"],["-121.3978654","49.3671483"],["-121.3960236","49.3667622"],["-121.3941808","49.3664169"],["-121.3929039","49.3662095"],["-121.3920756","49.3661207"],["-121.3876155","49.3659319"],["-121.3865772","49.3658772"],["-121.3855324","49.3657548"],["-121.3850386","49.3656605"],["-121.3844271","49.3655125"],["-121.3791527","49.3639366"],["-121.3784014","49.3637465"],["-121.3776249","49.3635704"],["-121.3746496","49.3629846"],["-121.3735561","49.3628078"],["-121.3729369","49.3627329"],["-121.3708205","49.3624965"],["-121.3701495","49.3624129"],["-121.3657569","49.3618497"],["-121.3651172","49.3617975"],["-121.3635714","49.3617123"],["-121.3617563","49.3616873"],["-121.3612518","49.3616957"],["-121.3609669","49.3617094"],["-121.3607984","49.3617238"],["-121.3606389","49.3617417"],["-121.3600573","49.3618259"],["-121.3598843","49.3618585"],["-121.3596933","49.3619"],["-121.359451","49.3619609"],["-121.3592249","49.3620201"],["-121.3588732","49.3621291"],["-121.3587194","49.3621813"],["-121.3584176","49.3622953"],["-121.3582618","49.3623601"],["-121.3579773","49.3624904"],["-121.3576565","49.3626565"],["-121.3575069","49.3627412"],["-121.3573623","49.3628295"],["-121.3570034","49.3630726"],["-121.3568707","49.3631699"],["-121.3567447","49.3632713"],["-121.3566327","49.3633654"],["-121.3565286","49.3634582"],["-121.3564399","49.3635436"],["-121.356362","49.3636254"],["-121.3561362","49.3638771"],["-121.3560539","49.3639848"],["-121.355839","49.3643072"],["-121.3557863","49.3643965"],["-121.3557379","49.3644903"],["-121.3556758","49.3646312"],["-121.3556481","49.3647037"],["-121.355629","49.3647689"],["-121.3556073","49.3648731"],["-121.3555889","49.3649815"],["-121.3555815","49.3650456"],["-121.3555776","49.3651099"],["-121.3555769","49.3651919"],["-121.3555804","49.3653453"],["-121.3555895","49.3655394"],["-121.3556578","49.3663751"],["-121.3556688","49.3664662"],["-121.3556818","49.3665537"],["-121.3556979","49.3666337"],["-121.3557311","49.3667832"],["-121.3557699","49.3670475"],["-121.3558984","49.3672928"],["-121.3560335","49.367486"],["-121.3561777","49.3676535"],["-121.3563926","49.367879"],["-121.356584","49.3680898"],["-121.3568002","49.3682996"],["-121.3570549","49.3685205"],["-121.3572817","49.3686809"],["-121.3575603","49.3688606"],["-121.3583098","49.3692714"],["-121.3598004","49.3699919"],["-121.3611114","49.3706328"],["-121.3623199","49.3712577"],["-121.3627847","49.3715385"],["-121.3631147","49.3718002"],["-121.3633945","49.3720382"],["-121.3636825","49.3723215"],["-121.3638362","49.3725411"],["-121.3639908","49.3727773"],["-121.3641396","49.3730438"],["-121.3643151","49.3734734"],["-121.3644026","49.3738184"],["-121.3644527","49.3741354"],["-121.3644634","49.374494"],["-121.3644333","49.3747775"],["-121.3643682","49.3750614"],["-121.364301","49.3753007"],["-121.3641804","49.375559"],["-121.3640604","49.3757801"],["-121.3639214","49.3759902"],["-121.3637943","49.3761903"],["-121.3635901","49.376432"],["-121.3633583","49.3766521"],["-121.363082","49.3768747"],["-121.3627427","49.3771372"],["-121.3623616","49.377397"],["-121.3621222","49.3775341"],["-121.3618847","49.3776701"],["-121.3615262","49.3778297"],["-121.3611402","49.3779837"],["-121.3607393","49.3781214"],["-121.3603399","49.3782322"],["-121.3599342","49.378325"],["-121.3593751","49.3784076"],["-121.3588496","49.3784734"],["-121.3558186","49.3786523"],["-121.3545511","49.3786916"],["-121.3534384","49.3786963"],["-121.3523129","49.3785668"],["-121.3513073","49.3783433"],["-121.3502444","49.3779969"],["-121.3491781","49.3776439"],["-121.3486697","49.3775051"],["-121.3478894","49.3773751"],["-121.3475535","49.3773492"],["-121.347177","49.3773357"],["-121.3463454","49.3773713"],["-121.3459321","49.3774058"],["-121.3452787","49.3774964"],["-121.3388169","49.3784984"],["-121.3368685","49.3787849"],["-121.3355347","49.3789157"],["-121.3347171","49.3789293"],["-121.3319169","49.3788753"],["-121.3237806","49.3787408"],["-121.3229132","49.3788309"],["-121.3222071","49.3789838"],["-121.3215722","49.3791798"],["-121.3209381","49.3794491"],["-121.3203405","49.3797506"],["-121.3198635","49.3801362"],["-121.3193733","49.3806022"],["-121.3190946","49.3810118"],["-121.3188571","49.3815313"],["-121.3187516","49.3820356"],["-121.3187264","49.382489"],["-121.3186159","49.3893878"],["-121.3186502","49.3900907"],["-121.3192046","49.3923912"],["-121.3194716","49.393452"],["-121.319624","49.3941596"],["-121.3196082","49.3946772"],["-121.3195136","49.3952445"],["-121.319311","49.3957739"],["-121.3189177","49.3964015"],["-121.3181072","49.397437"],["-121.3171598","49.3986896"],["-121.3164557","49.3996603"],["-121.3160585","49.4003744"],["-121.3158105","49.4010796"],["-121.315617","49.4021405"],["-121.3156228","49.4024156"],["-121.3156505","49.4026943"],["-121.3156862","49.4029736"],["-121.3157512","49.4032388"],["-121.3159009","49.4037138"],["-121.3161195","49.4044333"],["-121.3171557","49.4072884"],["-121.3173937","49.4081526"],["-121.3175149","49.4087371"],["-121.3175457","49.4089708"],["-121.3175768","49.4091751"],["-121.3176378","49.4099335"],["-121.3176355","49.4104401"],["-121.3175941","49.4114946"],["-121.3174979","49.4131478"],["-121.3173444","49.4145424"],["-121.3172651","49.4154327"],["-121.3171712","49.4160286"],["-121.3169562","49.4166279"],["-121.3167242","49.4171485"],["-121.3164377","49.4176368"],["-121.3160542","49.4181578"],["-121.315428","49.4188959"],["-121.3125679","49.4220389"],["-121.3121469","49.4225809"],["-121.3117648","49.4233009"],["-121.3115699","49.4237961"],["-121.3114351","49.4248415"],["-121.3113692","49.4261426"],["-121.3112838","49.4274646"],["-121.3111201","49.4280522"],["-121.3107433","49.4287383"],["-121.310314","49.4292535"],["-121.3093289","49.430258"],["-121.3089473","49.4307421"],["-121.3086934","49.431346"],["-121.3085931","49.4318823"],["-121.3085083","49.4326598"],["-121.3084182","49.4334758"],["-121.3082845","49.4339955"],["-121.3080162","49.4345196"],["-121.3076591","49.4350318"],["-121.307248","49.4354084"],["-121.3065725","49.4359051"],["-121.3037208","49.4378036"],["-121.3029363","49.4382484"],["-121.3021524","49.438646"],["-121.3016098","49.4388863"],["-121.3011033","49.4390644"],["-121.3002675","49.4393018"],["-121.299462","49.4394981"],["-121.298645","49.4396519"],["-121.2977999","49.4397596"],["-121.2969024","49.4398107"],["-121.2959971","49.4398252"],["-121.2939958","49.4397782"],["-121.2931243","49.4397649"],["-121.2922889","49.4397933"],["-121.291447","49.4398804"],["-121.2859997","49.440762"],["-121.2833095","49.4412219"],["-121.2820995","49.4414957"],["-121.2805539","49.4419393"],["-121.2800765","49.4421263"],["-121.2793723","49.4424285"],["-121.2778182","49.443216"],["-121.2756787","49.4443702"],["-121.2745912","49.4449784"],["-121.2694364","49.4478922"],["-121.2686663","49.4483308"],["-121.2679639","49.4487258"],["-121.2677101","49.4488621"],["-121.2646483","49.4506114"],["-121.2636835","49.4512438"],["-121.2630115","49.4517104"],["-121.2625551","49.4520551"],["-121.2617767","49.4527164"],["-121.2610646","49.4533521"],["-121.2606448","49.4537704"],["-121.2602533","49.4541829"],["-121.2595078","49.4549529"],["-121.2567692","49.4590274"],["-121.2564151","49.4595562"],["-121.2559883","49.4602057"],["-121.2555969","49.4608136"],["-121.2552284","49.461392"],["-121.2549316","49.4618438"],["-121.2547319","49.4621942"],["-121.2545026","49.4628118"],["-121.2542436","49.4637058"],["-121.2541646","49.4643357"],["-121.2541384","49.4649288"],["-121.2541404","49.4655007"],["-121.2543126","49.4674112"],["-121.2544224","49.4685398"],["-121.2544316","49.4692646"],["-121.2543572","49.4705003"],["-121.254222","49.4715673"],["-121.2537068","49.4755101"],["-121.2533838","49.4779296"],["-121.2531793","49.4793022"],["-121.2528404","49.480227"],["-121.2523752","49.4810302"],["-121.2521275","49.481372"],["-121.2518108","49.4817894"],["-121.2504761","49.4834761"],["-121.2500472","49.4840353"],["-121.2497668","49.4845519"],["-121.2494548","49.4852883"],["-121.249338","49.4861992"],["-121.2492361","49.4872879"],["-121.2491478","49.4881018"],["-121.2489769","49.4886077"],["-121.2487293","49.4891102"],["-121.2483916","49.4895646"],["-121.2479283","49.4900282"],["-121.2460942","49.4917681"],["-121.2451078","49.4926558"],["-121.244603","49.4930604"],["-121.2441931","49.4933287"],["-121.2433851","49.4937418"],["-121.2426374","49.4940246"],["-121.2419216","49.4941964"],["-121.2411167","49.4943565"],["-121.2404226","49.4944125"],["-121.239728","49.4944357"],["-121.2381566","49.4943282"],["-121.2367592","49.4942121"],["-121.2356622","49.4941745"],["-121.2351381","49.4942016"],["-121.2344928","49.4942501"],["-121.2335185","49.4944046"],["-121.231773","49.4947853"],["-121.2310806","49.4949502"],["-121.2296709","49.4952226"],["-121.228227","49.4953963"],["-121.2274567","49.4954658"],["-121.2267634","49.4955157"],["-121.2259437","49.4955615"],["-121.2251849","49.4955715"],["-121.2244162","49.4955516"],["-121.2227006","49.495425"],["-121.2215905","49.4952869"],["-121.2168821","49.4945596"],["-121.2161627","49.4944431"],["-121.2154031","49.494348"],["-121.2146688","49.4942783"],["-121.2139171","49.4942462"],["-121.2123593","49.4942426"],["-121.2119381","49.4942709"],["-121.2108493","49.4944111"],["-121.2093649","49.4947235"],["-121.2086864","49.4949044"],["-121.2080287","49.4951106"],["-121.2073918","49.4953865"],["-121.2067545","49.49569"],["-121.2061901","49.4960037"],["-121.2056264","49.4963468"],["-121.2051029","49.4967471"],["-121.2040865","49.4977035"],["-121.2029942","49.4988062"],["-121.2024517","49.4993811"],["-121.2019192","49.4999753"],["-121.2015823","49.5004623"],["-121.2013026","49.5009778"],["-121.2009964","49.5016341"],["-121.200755","49.5022308"],["-121.1989492","49.50697"],["-121.1988564","49.5078152"],["-121.1988325","49.5081405"],["-121.19889","49.5083396"],["-121.199019","49.5087755"],["-121.1992628","49.509305"],["-121.1996045","49.5098483"],["-121.202437","49.5136118"],["-121.2028624","49.5144897"],["-121.2033267","49.5155008"],["-121.2035222","49.5158911"],["-121.2040905","49.5167247"],["-121.2056978","49.5185154"],["-121.2059472","49.5188393"],["-121.2062139","49.5192321"],["-121.2064475","49.5195944"],["-121.2067676","49.5201945"],["-121.2070977","49.5213087"],["-121.2071432","49.52185"],["-121.2071209","49.5222692"],["-121.2070917","49.5226536"],["-121.2070363","49.523029"],["-121.2068922","49.5235618"],["-121.2059631","49.5259631"],["-121.2057732","49.5266086"],["-121.20561","49.5273445"],["-121.2050757","49.5302552"],["-121.204947","49.5308295"],["-121.20482","49.5312797"],["-121.2046615","49.5317452"],["-121.2044403","49.5322644"],["-121.2041715","49.5328012"],["-121.2029517","49.5348978"],["-121.2023707","49.5358491"],["-121.2020112","49.5363692"],["-121.2012922","49.5373085"],["-121.2008439","49.5378315"],["-121.2004483","49.5382555"],["-121.2001061","49.5386069"],["-121.1999472","49.5387556"],["-121.1989443","49.5397264"],["-121.1981752","49.5405166"],["-121.1976237","49.5412043"],["-121.1971656","49.5418393"],["-121.1968035","49.5423845"],["-121.1962819","49.5433988"],["-121.1952807","49.5460205"],["-121.1947951","49.5470447"],["-121.194065","49.5485221"],["-121.1937906","49.5491994"],["-121.1931774","49.5513125"],["-121.1929677","49.5517917"],["-121.1927034","49.5522316"],["-121.1923996","49.5527315"],["-121.1920907","49.553202"],["-121.1914864","49.5540861"],["-121.1911124","49.554738"],["-121.1909021","49.5552044"],["-121.1906914","49.5557336"],["-121.1904318","49.5563921"],["-121.1898634","49.5573233"],["-121.1888292","49.5585215"],["-121.1880629","49.5594147"],["-121.1874545","49.5604884"],["-121.1872463","49.5609445"],["-121.1867168","49.5621651"],["-121.1864857","49.5626128"],["-121.186122","49.5630823"],["-121.1856661","49.5635484"],["-121.1851011","49.5640811"],["-121.1844553","49.5646834"],["-121.1840276","49.5651569"],["-121.1837134","49.5655606"],["-121.1834042","49.5659947"],["-121.1831778","49.5665109"],["-121.1829975","49.5669968"],["-121.1828871","49.5677261"],["-121.1826172","49.5702606"],["-121.1825663","49.5712232"],["-121.1825111","49.5718561"],["-121.1824208","49.572395"],["-121.1823197","49.5728445"],["-121.1821847","49.5732417"],["-121.1820079","49.5736258"],["-121.1815853","49.574273"],["-121.1810798","49.5748614"],["-121.1799227","49.5759213"],["-121.1785017","49.5770062"],["-121.1765553","49.5784151"],["-121.1757324","49.5790779"],["-121.1660172","49.5867558"],["-121.1655398","49.5872521"],["-121.1650486","49.5878334"],["-121.16465","49.5883236"],["-121.1641422","49.5892846"],["-121.1639659","49.5897091"],["-121.1637432","49.5906796"],["-121.1634049","49.592315"],["-121.1632247","49.5929569"],["-121.1629526","49.5935575"],["-121.1625069","49.5941673"],["-121.1620277","49.5947466"],["-121.1616806","49.5949919"],["-121.1613208","49.5952574"],["-121.1607957","49.5955744"],["-121.1602167","49.5958984"],["-121.1595568","49.5961826"],["-121.1589531","49.5964283"],["-121.1575371","49.5968225"],["-121.1563876","49.5970145"],["-121.1513583","49.5976704"],["-121.1497924","49.5978103"],["-121.146044","49.5980604"],["-121.1448338","49.5981747"],["-121.1434772","49.5983278"],["-121.1425109","49.598468"],["-121.1400178","49.5989176"],["-121.1389105","49.5991025"],["-121.1382545","49.5991672"],["-121.1374994","49.599219"],["-121.1368327","49.5991949"],["-121.1360556","49.599148"],["-121.1353965","49.5990643"],["-121.1346503","49.5988814"],["-121.1340242","49.5986774"],["-121.1332999","49.5984133"],["-121.1315425","49.597663"],["-121.1306852","49.5973027"],["-121.129902","49.5969756"],["-121.1290652","49.5966609"],["-121.1283367","49.5964432"],["-121.1274894","49.596206"],["-121.1260531","49.5958589"],["-121.1256004","49.5957706"],["-121.1234895","49.5954168"],["-121.122665","49.5953206"],["-121.1209998","49.5951887"],["-121.120246","49.5951507"],["-121.1194319","49.5951458"],["-121.1151724","49.5952536"],["-121.1144054","49.5952808"],["-121.1123764","49.5953596"],["-121.1106981","49.5953947"],["-121.1098581","49.5953623"],["-121.1090985","49.5953114"],["-121.1082316","49.5952158"],["-121.107443","49.5950833"],["-121.1064095","49.5948383"],["-121.1012717","49.5931561"],["-121.09965","49.5926951"],["-121.0987931","49.5925018"],["-121.0979799","49.592335"],["-121.0971224","49.5921902"],["-121.0963493","49.5920838"],["-121.0939518","49.591852"],["-121.0925874","49.5918456"],["-121.0916932","49.5918756"],["-121.0908953","49.5919421"],["-121.0900583","49.5920497"],["-121.0892352","49.592171"],["-121.0883746","49.5923251"],["-121.0874658","49.5925343"],["-121.0863722","49.5928467"],["-121.0852129","49.5932388"],["-121.0839246","49.5938232"],["-121.0832646","49.5941739"],["-121.0824273","49.5946583"],["-121.0776951","49.5975711"],["-121.0771139","49.5978866"],["-121.0765108","49.5982164"],["-121.0757452","49.5985846"],["-121.0750325","49.5989063"],["-121.0716933","49.6002995"],["-121.0701946","49.600962"],["-121.0693528","49.6013736"],["-121.0686641","49.6017749"],["-121.0679426","49.602256"],["-121.0670989","49.6028371"],["-121.0652515","49.6041924"],["-121.0635055","49.6052131"],["-121.0624747","49.6056979"],["-121.0558888","49.6085664"],["-121.054898","49.6090171"],["-121.0539689","49.6094892"],["-121.0530867","49.6099988"],["-121.0524599","49.6104191"],["-121.0511142","49.611492"],["-121.0484318","49.6138282"],["-121.0470647","49.6150271"],["-121.0436373","49.6180414"],["-121.0420721","49.6193548"],["-121.0408183","49.620299"],["-121.0398428","49.6209869"],["-121.0388449","49.6215703"],["-121.037419","49.6223413"],["-121.0337904","49.6240928"],["-121.0323334","49.6247616"],["-121.0315879","49.6250697"],["-121.0299764","49.6256005"],["-121.0216321","49.6280818"],["-121.019871","49.6286438"],["-121.01907","49.6289486"],["-121.0165994","49.6300857"],["-121.0117643","49.6325268"],["-121.0105751","49.6331606"],["-121.0094555","49.633923"],["-121.0090046","49.6342482"],["-121.008434","49.634701"],["-121.0075258","49.6356003"],["-121.0033525","49.6401018"],["-121.0027227","49.640868"],["-121.0020037","49.6419195"],["-121.0018652","49.6422861"],["-121.0017635","49.6427677"],["-121.0017053","49.643199"],["-121.0017053","49.6436422"],["-121.0017643","49.6440915"],["-121.0018863","49.6446757"],["-121.0025115","49.6467639"],["-121.0027573","49.6476054"],["-121.0029685","49.6483085"],["-121.0031561","49.648976"],["-121.003539","49.6502906"],["-121.0037193","49.6508816"],["-121.0038811","49.6514497"],["-121.0040134","49.651901"],["-121.0041575","49.6523549"],["-121.0046181","49.6534762"],["-121.0047526","49.6537693"],["-121.005719","49.6554547"],["-121.0067356","49.6566199"],["-121.0096762","49.659455"],["-121.0106418","49.6604525"],["-121.0120993","49.6619777"],["-121.0125308","49.6626587"],["-121.0128544","49.6633054"],["-121.013031","49.6638359"],["-121.0132466","49.6646146"],["-121.0134698","49.6660685"],["-121.0139892","49.6695821"],["-121.0145289","49.6727633"],["-121.0146467","49.6734644"],["-121.0147326","49.6741723"],["-121.0147453","49.6747284"],["-121.0147441","49.675946"],["-121.014663","49.6767011"],["-121.0144941","49.6776082"],["-121.0142053","49.6786891"],["-121.0139776","49.6796742"],["-121.0135252","49.6815011"],["-121.0134164","49.6820797"],["-121.0133347","49.6826176"],["-121.0132649","49.6831458"],["-121.0132189","49.6841531"],["-121.0131855","49.6850567"],["-121.0131665","49.686425"],["-121.0131859","49.6876086"],["-121.01319","49.6892415"],["-121.0131978","49.6901575"],["-121.0132104","49.6914283"],["-121.0131541","49.6919677"],["-121.0129622","49.6925853"],["-121.0126398","49.693192"],["-121.0122891","49.6937039"],["-121.0119134","49.6942443"],["-121.0115002","49.6948329"],["-121.0111468","49.6954016"],["-121.0109945","49.6959514"],["-121.0109499","49.6965406"],["-121.0110221","49.6971649"],["-121.0110999","49.6977392"],["-121.0114983","49.6990244"],["-121.0118478","49.6997262"],["-121.0121796","49.7003329"],["-121.0126167","49.7010647"],["-121.013403","49.7023304"],["-121.0141701","49.7035499"],["-121.0151088","49.7050143"],["-121.0157829","49.7060328"],["-121.0160896","49.7066134"],["-121.0163191","49.7071515"],["-121.0164254","49.7077602"],["-121.0164535","49.7082887"],["-121.016338","49.7088352"],["-121.0161833","49.7093667"],["-121.0158714","49.709875"],["-121.0150216","49.7108743"],["-121.0145338","49.7113499"],["-121.0139154","49.7119639"],["-121.0133544","49.7125121"],["-121.012959","49.7129982"],["-121.0125874","49.7134918"],["-121.0123593","49.7140742"],["-121.0121781","49.7146028"],["-121.0120942","49.7151995"],["-121.0122223","49.7157366"],["-121.0126411","49.7169494"],["-121.0131755","49.7183129"],["-121.0133363","49.718884"],["-121.0134273","49.7194001"],["-121.0134703","49.7199871"],["-121.013502","49.7205985"],["-121.0134875","49.7211618"],["-121.0133666","49.723249"],["-121.0132825","49.7245093"],["-121.0131903","49.7255285"],["-121.013109","49.7260455"],["-121.0129573","49.7266136"],["-121.01274","49.7273925"],["-121.0125169","49.7284003"],["-121.012373","49.7292086"],["-121.0122526","49.7298622"],["-121.0121702","49.7305353"],["-121.0121361","49.7312126"],["-121.0123239","49.7393609"],["-121.012331","49.7403328"],["-121.0123321","49.740869"],["-121.012369","49.7414521"],["-121.0124481","49.7443642"],["-121.0123728","49.7452867"],["-121.0121098","49.7477369"],["-121.0118612","49.7500899"],["-121.0117478","49.7511694"],["-121.0116562","49.7518217"],["-121.011524","49.7523993"],["-121.0110361","49.7537042"],["-121.0107358","49.7541906"],["-121.0103962","49.7546991"],["-121.0094888","49.7556669"],["-121.0089936","49.7561221"],["-121.00843","49.7565294"],["-121.0077762","49.756958"],["-121.0071293","49.7573331"],["-121.0048297","49.7583883"],["-121.0036761","49.7589514"],["-121.0028112","49.7595193"],["-121.0022063","49.7600719"],["-120.9969212","49.765295"],["-120.9958316","49.7663469"],["-120.9952997","49.7668804"],["-120.9947959","49.7674128"],["-120.9944137","49.7679302"],["-120.994079","49.7684131"],["-120.9937967","49.7689361"],["-120.9936066","49.7694442"],["-120.9934187","49.7699856"],["-120.9932937","49.7705297"],["-120.9931122","49.771073"],["-120.9929515","49.7716578"],["-120.9927405","49.7721662"],["-120.992381","49.7727255"],["-120.9920585","49.7732031"],["-120.9915901","49.7737192"],["-120.9911356","49.774219"],["-120.9905956","49.774671"],["-120.9899576","49.7751553"],["-120.9859081","49.7776932"],["-120.984096","49.7789152"],["-120.9832716","49.7794942"],["-120.9781591","49.7831736"],["-120.977339","49.7837536"],["-120.9764895","49.7843888"],["-120.975812","49.7848369"],["-120.9749262","49.7854492"],["-120.9732218","49.7867034"],["-120.9727168","49.7871802"],["-120.9722158","49.7876803"],["-120.971612","49.7885596"],["-120.9713763","49.7892083"],["-120.9710936","49.7900432"],["-120.9706934","49.7915606"],["-120.9704622","49.7923017"],["-120.9702244","49.7929207"],["-120.9699729","49.7934467"],["-120.9696321","49.7939885"],["-120.9692291","49.7945447"],["-120.9685801","49.7952343"],["-120.9680527","49.7957532"],["-120.9675137","49.7962395"],["-120.966902","49.7966867"],["-120.9663369","49.7970668"],["-120.9657106","49.7974281"],["-120.9640437","49.7982648"],["-120.9609158","49.7997564"],["-120.9584258","49.8010847"],["-120.9572253","49.8018245"],["-120.9560354","49.8025998"],["-120.9550524","49.803288"],["-120.953126","49.80479"],["-120.9524463","49.8053968"],["-120.9512969","49.8065159"],["-120.9498024","49.8081053"],["-120.9459228","49.8127088"],["-120.943971","49.8150612"],["-120.9428938","49.8163599"],["-120.9401197","49.8197406"],["-120.9396965","49.8202759"],["-120.9393756","49.8207861"],["-120.9390472","49.8213955"],["-120.9388342","49.8219455"],["-120.9386895","49.8225464"],["-120.9386529","49.8231903"],["-120.9386018","49.8240762"],["-120.9385409","49.8249712"],["-120.9384705","49.8256471"],["-120.9383569","49.8262218"],["-120.9381031","49.826835"],["-120.9374732","49.8278678"],["-120.9370588","49.8283331"],["-120.9365359","49.8288197"],["-120.9344592","49.8305664"],["-120.9340254","49.8310222"],["-120.9336373","49.8315126"],["-120.9333589","49.832028"],["-120.9331642","49.832602"],["-120.9330604","49.8331199"],["-120.93303","49.8336639"],["-120.9331472","49.8353048"],["-120.9331632","49.8361998"],["-120.9330795","49.8367245"],["-120.9329174","49.8372891"],["-120.9326567","49.8378357"],["-120.9322667","49.8385424"],["-120.9307873","49.8410433"],["-120.929783","49.8427788"],["-120.9292256","49.8436806"],["-120.9289227","49.844221"],["-120.9285979","49.8447374"],["-120.9278083","49.8457547"],["-120.9274114","49.8462006"],["-120.9269029","49.8466977"],["-120.9263007","49.8471082"],["-120.9256857","49.8474891"],["-120.919873","49.8507252"],["-120.9190416","49.8512928"],["-120.9184851","49.8517326"],["-120.9180294","49.8521591"],["-120.9176364","49.8525713"],["-120.9171911","49.8530693"],["-120.9168626","49.8535459"],["-120.9165456","49.8540631"],["-120.9163235","49.8545808"],["-120.9161536","49.8551108"],["-120.9160173","49.8556533"],["-120.915943","49.8561998"],["-120.9159029","49.8567317"],["-120.915956","49.8572661"],["-120.9160562","49.8577947"],["-120.9162099","49.8583704"],["-120.916397","49.8589341"],["-120.9177415","49.8618939"],["-120.9184885","49.8635507"],["-120.9186913","49.8641324"],["-120.9188554","49.8646568"],["-120.9189095","49.8652115"],["-120.9188779","49.8657359"],["-120.9187453","49.866299"],["-120.9185709","49.8668078"],["-120.9175733","49.8693553"],["-120.916944","49.8709823"],["-120.9163673","49.8724484"],["-120.9161221","49.8729488"],["-120.9158024","49.8734332"],["-120.915393","49.8739488"],["-120.915079","49.8744255"],["-120.9146715","49.8748761"],["-120.9142437","49.8753142"],["-120.9137314","49.875756"],["-120.9132791","49.8761287"],["-120.912649","49.8765839"],["-120.9120429","49.8769904"],["-120.9088413","49.8788268"],["-120.9080577","49.8792205"],["-120.9070359","49.87975"],["-120.9061697","49.8802012"],["-120.9053171","49.8806554"],["-120.903067","49.8819684"],["-120.9016954","49.8828561"],["-120.9009192","49.8835638"],["-120.9003666","49.8841122"],["-120.8999792","49.884705"],["-120.8997162","49.8853024"],["-120.8994763","49.8859047"],["-120.8993107","49.887348"],["-120.8993805","49.8878508"],["-120.8995662","49.8884859"],["-120.8997561","49.889058"],["-120.9003476","49.890091"],["-120.900953","49.8912221"],["-120.9018036","49.8927649"],["-120.9022739","49.8936871"],["-120.9026421","49.8946025"],["-120.9027953","49.8951652"],["-120.9029978","49.8970554"],["-120.9036655","49.901795"],["-120.9038198","49.9028895"],["-120.9039619","49.9039543"],["-120.9040437","49.9049114"],["-120.9039625","49.9057273"],["-120.9037865","49.9066166"],["-120.9035664","49.9075839"],["-120.90331","49.9085521"],["-120.9031689","49.9093528"],["-120.9032017","49.9100411"],["-120.9034668","49.9107841"],["-120.9037928","49.9114512"],["-120.9042055","49.9120054"],["-120.904639","49.9124119"],["-120.9052363","49.9128039"],["-120.9081456","49.9143689"],["-120.9087721","49.9147483"],["-120.9093443","49.9151833"],["-120.9099639","49.9157756"],["-120.9104178","49.9163587"],["-120.9108321","49.9170524"],["-120.9109967","49.9175556"],["-120.911097","49.9180333"],["-120.9114225","49.923783"],["-120.9112995","49.9247381"],["-120.9110485","49.9255838"],["-120.9105585","49.9265029"],["-120.9101096","49.9273093"],["-120.9082657","49.9305433"],["-120.907939","49.9313245"],["-120.9074152","49.9328603"],["-120.9068815","49.9344774"],["-120.9058196","49.9375453"],["-120.9054403","49.9387871"],["-120.9050737","49.9399801"],["-120.9045451","49.9427555"],["-120.9044744","49.9440388"],["-120.9045266","49.9454047"],["-120.9048249","49.947293"],["-120.9050901","49.9482576"],["-120.9054694","49.9492684"],["-120.9059426","49.9504013"],["-120.9064414","49.9515114"],["-120.9070651","49.9526617"],["-120.908452","49.9545527"],["-120.9110191","49.9578363"],["-120.9135395","49.9610783"],["-120.9141889","49.9620903"],["-120.9146522","49.9629642"],["-120.9149269","49.9638015"],["-120.9151143","49.9646795"],["-120.9151468","49.965665"],["-120.9151089","49.9665773"],["-120.9144653","49.9682536"],["-120.9139198","49.9691589"],["-120.9133003","49.969953"],["-120.9126536","49.9706673"],["-120.9118752","49.9714129"],["-120.9109455","49.9721417"],["-120.9095996","49.9731099"],["-120.9085089","49.9739398"],["-120.9077606","49.9746339"],["-120.9071786","49.9752713"],["-120.9066356","49.9759457"],["-120.9054386","49.9776054"],["-120.9035314","49.9800894"],["-120.9029274","49.9807277"],["-120.9022728","49.9812416"],["-120.9016202","49.9816896"],["-120.8990634","49.9829756"],["-120.8976289","49.9837253"],["-120.8966432","49.9842939"],["-120.8959352","49.9847976"],["-120.8946167","49.9860408"],["-120.8936734","49.9875603"],["-120.8931181","49.9891065"],["-120.8925873","49.990486"],["-120.8921571","49.9912012"],["-120.8914737","49.9919873"],["-120.890546","49.9928005"],["-120.8882089","49.9946208"],["-120.8858193","49.9965449"],["-120.8843337","49.9977281"],["-120.883011","49.9987969"],["-120.8816966","49.9998324"],["-120.8802501","50.0009679"],["-120.8790517","50.0018568"],["-120.8778105","50.0027195"],["-120.8764467","50.0035936"],["-120.8731545","50.0056726"],["-120.8720128","50.0064435"],["-120.8714353","50.0069988"],["-120.871048","50.0075172"],["-120.8707275","50.0081949"],["-120.8703988","50.0089995"],["-120.8699993","50.0099816"],["-120.8698639","50.0102198"],["-120.8697516","50.0104518"],["-120.8695836","50.0107143"],["-120.8693707","50.0109834"],["-120.8691599","50.0111976"],["-120.8689724","50.0113711"],["-120.8687726","50.0115468"],["-120.8685666","50.0117048"],["-120.8683234","50.0118825"],["-120.8680842","50.0120478"],["-120.8678184","50.0121977"],["-120.867564","50.0123307"],["-120.8673093","50.0124523"],["-120.8669913","50.0125918"],["-120.8665863","50.0127363"],["-120.866143","50.0128821"],["-120.8634204","50.0135983"],["-120.8628785","50.0137562"],["-120.8615489","50.0142352"],["-120.8598833","50.0149016"],["-120.8588477","50.0152969"],["-120.8582809","50.0154788"],["-120.8576882","50.0156461"],["-120.857173","50.0157503"],["-120.8565186","50.0158701"],["-120.8559245","50.0159602"],["-120.8553275","50.0160198"],["-120.8502672","50.0163752"],["-120.8495455","50.016493"],["-120.8485639","50.0166909"],["-120.8453517","50.0173994"],["-120.8440132","50.0176513"],["-120.8428739","50.0177873"],["-120.8422605","50.0178374"],["-120.8415988","50.0178717"],["-120.8409034","50.0178836"],["-120.8402831","50.0178794"],["-120.8393981","50.0178415"],["-120.8277109","50.0169779"],["-120.8268617","50.0169617"],["-120.8261709","50.0169795"],["-120.8256051","50.0170434"],["-120.8248764","50.017164"],["-120.8242447","50.0172983"],["-120.8237527","50.0174426"],["-120.8232886","50.017606"],["-120.8228435","50.0177982"],["-120.8224614","50.0180014"],["-120.8220463","50.0182479"],["-120.8215766","50.0185496"],["-120.8213016","50.0187874"],["-120.8208883","50.0192008"],["-120.8202848","50.0199893"],["-120.8201955","50.0201852"],["-120.8201118","50.0203704"],["-120.8200119","50.0206277"],["-120.8198741","50.0212408"],["-120.8196223","50.0231568"],["-120.8194856","50.0243101"],["-120.8193266","50.0255435"],["-120.8189271","50.0281692"],["-120.8188158","50.0291822"],["-120.8187509","50.0295067"],["-120.8186473","50.0298749"],["-120.8185487","50.0301517"],["-120.8184713","50.0303335"],["-120.81825","50.0306652"],["-120.8180167","50.0309906"],["-120.8177005","50.0313268"],["-120.8173188","50.0317108"],["-120.8169458","50.0320662"],["-120.8164151","50.0325595"],["-120.8144465","50.0343022"],["-120.8136698","50.0349369"],["-120.8127965","50.0355432"],["-120.8116683","50.03626"],["-120.8103689","50.0370691"],["-120.8089115","50.0380138"],["-120.8083287","50.038565"],["-120.8078584","50.039222"],["-120.8075596","50.0399601"],["-120.8074747","50.0405191"],["-120.8073992","50.0413759"],["-120.8073409","50.0423086"],["-120.8072418","50.0428844"],["-120.806842","50.0438853"],["-120.8064832","50.0443979"],["-120.8059782","50.0449475"],["-120.8052395","50.0455463"],["-120.8042726","50.0462529"],["-120.8015886","50.0482712"],["-120.7992114","50.0503511"],["-120.7973267","50.05256"],["-120.7957974","50.0545741"],["-120.7952995","50.0554033"],["-120.7948499","50.0562364"],["-120.7944853","50.056964"],["-120.7941237","50.0578124"],["-120.7937697","50.0586571"],["-120.7923701","50.0627146"],["-120.7920682","50.0635285"],["-120.7918138","50.0642309"],["-120.7914892","50.0649983"],["-120.7911304","50.0657671"],["-120.7906324","50.0666995"],["-120.7900639","50.0674587"],["-120.7888192","50.068848"],["-120.7870243","50.0703659"],["-120.785772","50.0711778"],["-120.7844182","50.0718891"],["-120.7833635","50.0723988"],["-120.7819822","50.0728951"],["-120.7710132","50.0764468"],["-120.7690652","50.0770697"],["-120.7657849","50.0781782"],["-120.7580612","50.0815917"],["-120.7565873","50.0822304"],["-120.7552807","50.0828048"],["-120.753961","50.0834408"],["-120.7528543","50.0840981"],["-120.7521251","50.0846472"],["-120.751347","50.085324"],["-120.7504213","50.0863446"],["-120.750077","50.0867839"],["-120.7497341","50.0872891"],["-120.7495152","50.0876477"],["-120.7488728","50.0892873"],["-120.7487615","50.0899398"],["-120.7486841","50.0907852"],["-120.7486695","50.0916302"],["-120.7486721","50.092495"],["-120.7486817","50.0943412"],["-120.7486922","50.0992052"],["-120.7487318","50.0996039"],["-120.7487773","50.0998777"],["-120.7488333","50.1001872"],["-120.7489175","50.1005232"],["-120.7490246","50.1009137"],["-120.7491591","50.1012369"],["-120.7492834","50.1015263"],["-120.7494327","50.1018296"],["-120.7495937","50.1021324"],["-120.7498277","50.1025267"],["-120.7502048","50.1030016"],["-120.7510567","50.104027"],["-120.7596842","50.1139316"],["-120.760027","50.1143719"],["-120.7602938","50.1147786"],["-120.760473","50.1150978"],["-120.7606186","50.1154066"],["-120.7607444","50.1157232"],["-120.7608612","50.1160409"],["-120.7609518","50.1163723"],["-120.7610836","50.1171064"],["-120.7610838","50.1174432"],["-120.761061","50.1177589"],["-120.7609873","50.1183363"],["-120.7609308","50.1186555"],["-120.7608627","50.1188896"],["-120.7608067","50.1190804"],["-120.7607181","50.1192924"],["-120.7606293","50.1194773"],["-120.7604416","50.1198194"],["-120.7601056","50.1203478"],["-120.7598423","50.1207047"],["-120.7596694","50.1209246"],["-120.7595388","50.1210675"],["-120.759431","50.1211851"],["-120.7591836","50.1214248"],["-120.7589987","50.1215908"],["-120.7586821","50.1218421"],["-120.7583104","50.1221145"],["-120.7580907","50.1222813"],["-120.7576904","50.1225471"],["-120.7574707","50.1226837"],["-120.7571968","50.1228364"],["-120.7568314","50.1230136"],["-120.7563537","50.1232373"],["-120.7559611","50.1234073"],["-120.7492915","50.1260415"],["-120.7463287","50.1271921"],["-120.7455031","50.1275289"],["-120.7451322","50.127719"],["-120.7444874","50.1280884"],["-120.7434729","50.128805"],["-120.7431344","50.1290992"],["-120.742758","50.129436"],["-120.7425082","50.1296849"],["-120.7422534","50.1299787"],["-120.7419949","50.1303171"],["-120.7413404","50.1315012"],["-120.7401858","50.1343557"],["-120.7397417","50.1351949"],["-120.7390105","50.1360743"],["-120.7369825","50.1377689"],["-120.7277502","50.1434203"],["-120.7249934","50.1452511"],["-120.7238239","50.1461271"],["-120.7228054","50.1470677"],["-120.7207496","50.1492522"],["-120.7191695","50.1511869"],["-120.717512","50.1532676"],["-120.7160496","50.1550794"],["-120.7144577","50.1569961"],["-120.7137233","50.1582378"],["-120.7132513","50.1591028"],["-120.7128023","50.1599236"],["-120.7123959","50.1605166"],["-120.7119688","50.1609568"],["-120.7114835","50.1613763"],["-120.7108989","50.1618596"],["-120.7101269","50.1623676"],["-120.7077937","50.1637339"],["-120.7070412","50.1644535"],["-120.7065792","50.1651684"],["-120.7055291","50.1670933"],["-120.704194","50.1684034"],["-120.7022409","50.1693866"],["-120.6999897","50.1702048"],["-120.6979526","50.1712077"],["-120.6971573","50.1718022"],["-120.69423","50.1754136"],["-120.6925898","50.1774263"],["-120.6909989","50.1787704"],["-120.6895905","50.1795848"],["-120.6850828","50.1813735"],["-120.6828262","50.1826911"],["-120.6815694","50.1837489"],["-120.6802277","50.1854602"],["-120.6795107","50.1870569"],["-120.6788669","50.1901719"],["-120.6786978","50.1907207"],["-120.6786042","50.1909821"],["-120.6785083","50.1911622"],["-120.6783942","50.1913714"],["-120.6782731","50.1915882"],["-120.6780757","50.1918722"],["-120.6778537","50.1921899"],["-120.6776159","50.1924613"],["-120.677358","50.1927473"],["-120.6770693","50.1930311"],["-120.6765798","50.1934736"],["-120.6758574","50.1939775"],["-120.675001","50.1944935"],["-120.6734587","50.1951599"],["-120.672754","50.1954171"],["-120.6717536","50.1957044"],["-120.6709466","50.1958703"],["-120.6676456","50.1965305"],["-120.665502","50.1971432"],["-120.66364","50.1978219"],["-120.6612309","50.1990392"],["-120.6578737","50.2010721"],["-120.6556128","50.20263"],["-120.6530573","50.2047571"],["-120.6521476","50.2055732"],["-120.6510909","50.2066155"],["-120.6493719","50.2084385"],["-120.6486825","50.2092941"],["-120.6478623","50.2104824"],["-120.6475935","50.2109369"],["-120.6472905","50.2115141"],["-120.6469593","50.2122267"],["-120.6466744","50.2129103"],["-120.6464252","50.213598"],["-120.6462411","50.2142067"],["-120.6460912","50.2147732"],["-120.6459949","50.215352"],["-120.6458962","50.2160707"],["-120.6457612","50.2177909"],["-120.6457003","50.2182495"],["-120.6455183","50.2190336"],["-120.6453488","50.2195549"],["-120.6451815","50.2199844"],["-120.6449716","50.2204101"],["-120.6445595","50.2210964"],["-120.6443394","50.2213879"],["-120.6440612","50.2217421"],["-120.6437286","50.222112"],["-120.6434024","50.2224578"],["-120.6429915","50.222842"],["-120.6425596","50.2232276"],["-120.6419367","50.2237416"],["-120.6412603","50.2241669"],["-120.639295","50.2252059"],["-120.6348299","50.2272089"],["-120.6343203","50.2274705"],["-120.6338809","50.2277182"],["-120.6334637","50.2279661"],["-120.6330129","50.2282523"],["-120.6321964","50.2288378"],["-120.6318153","50.2291539"],["-120.6313472","50.2295832"],["-120.6309092","50.2300257"],["-120.6305896","50.2304069"],["-120.6302991","50.2307843"],["-120.6300159","50.2311872"],["-120.6297614","50.2315952"],["-120.6295441","50.231991"],["-120.6292959","50.2326096"],["-120.6291814","50.2329547"],["-120.6290641","50.2333931"],["-120.6289786","50.2338103"],["-120.6289341","50.2341755"],["-120.628896","50.2344819"],["-120.6288858","50.234801"],["-120.6288821","50.2350901"],["-120.6288938","50.2353652"],["-120.6289754","50.2359261"],["-120.6290953","50.2364568"],["-120.6292296","50.2368665"],["-120.629567","50.237888"],["-120.6301113","50.2395454"],["-120.6302328","50.2400536"],["-120.6303517","50.2406913"],["-120.6304608","50.2416304"],["-120.6304612","50.2431556"],["-120.6302147","50.2449463"],["-120.6295165","50.2478143"],["-120.6294398","50.2481609"],["-120.6293629","50.2485454"],["-120.6293093","50.2488893"],["-120.6292589","50.2491945"],["-120.6291539","50.2503646"],["-120.6291594","50.2511676"],["-120.6291756","50.2520379"],["-120.6292692","50.2529969"],["-120.6294654","50.2540129"],["-120.629708","50.2551989"],["-120.6303347","50.2571437"],["-120.630613","50.2580217"],["-120.63073","50.2589265"],["-120.6306761","50.2597604"],["-120.630278","50.2611688"],["-120.6295207","50.2624451"],["-120.6286852","50.2633972"],["-120.6272223","50.2649251"],["-120.626443","50.2660887"],["-120.6260212","50.2670644"],["-120.6257538","50.2683757"],["-120.6257418","50.2690526"],["-120.6259572","50.2701827"],["-120.626345","50.2711706"],["-120.6268829","50.272034"],["-120.6282312","50.2735617"],["-120.6298795","50.2750008"],["-120.6308959","50.2759215"],["-120.6313828","50.2763546"],["-120.6316136","50.2765871"],["-120.6318059","50.2768188"],["-120.6321501","50.2772975"],["-120.6324557","50.2777446"],["-120.6327091","50.2781349"],["-120.6328228","50.2783387"],["-120.6329833","50.2787048"],["-120.6330862","50.2789741"],["-120.6331894","50.279261"],["-120.6333082","50.279726"],["-120.6340223","50.2844183"],["-120.6351948","50.2929874"],["-120.6354272","50.2947694"],["-120.635663","50.2961917"],["-120.6360501","50.2975872"],["-120.6368083","50.2992705"],["-120.6379743","50.3011654"],["-120.6403356","50.3040675"],["-120.641215","50.3054618"],["-120.6415373","50.3064829"],["-120.6415987","50.3077154"],["-120.64129","50.309033"],["-120.6406687","50.3107847"],["-120.6402474","50.3119457"],["-120.6385317","50.3166993"],["-120.6320045","50.334792"],["-120.6309662","50.3373929"],["-120.6297065","50.3406819"],["-120.6279487","50.3460325"],["-120.6265586","50.3501453"],["-120.6262703","50.3530748"],["-120.627161","50.3629862"],["-120.6274252","50.3665987"],["-120.6272776","50.368135"],["-120.6254122","50.3758456"],["-120.6248853","50.3787097"],["-120.6227074","50.4079443"],["-120.6220281","50.412798"],["-120.6213604","50.4149431"],["-120.62015","50.4178956"],["-120.618718","50.4204318"],["-120.6162713","50.4238895"],["-120.6134043","50.4269977"],["-120.6061037","50.4338836"],["-120.6021439","50.4374771"],["-120.5967166","50.4415337"],["-120.5950376","50.4430445"],["-120.5939443","50.4442015"],["-120.5932775","50.4452369"],["-120.5924563","50.4466265"],["-120.592315","50.4469209"],["-120.5922109","50.4471685"],["-120.591744","50.4487103"],["-120.5914958","50.4507327"],["-120.5914511","50.4573977"],["-120.5910304","50.4595639"],["-120.5901894","50.4613217"],["-120.5890295","50.4629657"],["-120.5875035","50.4646242"],["-120.5840583","50.467165"],["-120.5627255","50.4819827"],["-120.5607926","50.4832045"],["-120.5588284","50.4840644"],["-120.5569978","50.4845541"],["-120.5547231","50.4848994"],["-120.5161388","50.4898514"],["-120.505234","50.4924806"],["-120.5027442","50.4934871"],["-120.5008798","50.4945675"],["-120.4992358","50.4960477"],["-120.4896075","50.5079566"],["-120.4878908","50.5107599"],["-120.4800654","50.5292849"],["-120.4792304","50.5307048"],["-120.4782786","50.5319309"],["-120.4772881","50.5329496"],["-120.4758228","50.5341576"],["-120.4746249","50.5349307"],["-120.4719236","50.5363299"],["-120.4630289","50.5403444"],["-120.4600325","50.5420706"],["-120.4578403","50.5439603"],["-120.4567301","50.5452045"],["-120.4553536","50.5467972"],["-120.4533386","50.5491525"],["-120.4511946","50.5517146"],["-120.4500789","50.5532534"],["-120.4493662","50.5547988"],["-120.4490643","50.555861"],["-120.448861","50.557284"],["-120.4489012","50.5583774"],["-120.4491591","50.5597619"],["-120.4505119","50.5646369"],["-120.4511255","50.5661292"],["-120.4519137","50.5672381"],["-120.452746","50.5680959"],["-120.4540771","50.5690479"],["-120.4578366","50.5711822"],["-120.4593424","50.5723042"],["-120.4602312","50.5732096"],["-120.4609094","50.5742048"],["-120.462222","50.5768913"],["-120.4629071","50.5780682"],["-120.4645125","50.5797181"],["-120.4741483","50.5885627"],["-120.4762669","50.5907392"],["-120.476919","50.591828"],["-120.4773062","50.5928938"],["-120.477524","50.5942451"],["-120.4772835","50.5961509"],["-120.4723262","50.6145459"],["-120.471699","50.617241"],["-120.471636","50.6188674"],["-120.4718229","50.6200945"],["-120.4720472","50.6210553"],["-120.472454","50.6221294"],["-120.4729296","50.6230453"],["-120.4740645","50.6246613"],["-120.4754565","50.6261198"],["-120.4763532","50.626857"],["-120.4768697","50.6272617"],["-120.4776608","50.6278566"],["-120.4790776","50.6289414"],["-120.4805348","50.6303512"],["-120.4818562","50.6319821"],["-120.4831348","50.6341009"],["-120.4842498","50.6363729"],["-120.4854149","50.6396512"],["-120.4860135","50.6428823"],["-120.4862559","50.6462234"],["-120.4861318","50.6478247"],["-120.4856849","50.6493161"],["-120.484645","50.6510066"],["-120.48331","50.6523737"],["-120.4812625","50.6537391"],["-120.4591238","50.664167"],["-120.457094","50.6650668"],["-120.4560994","50.6654131"],["-120.4541839","50.6659301"],["-120.4528159","50.6662014"],["-120.4505521","50.6665036"],["-120.449251","50.6665479"],["-120.4467755","50.6665136"],["-120.4324692","50.6657669"],["-120.4222836","50.6659578"],["-120.4204828","50.6658046"],["-120.4179312","50.6654254"],["-120.4061654","50.6625483"],["-120.3957837","50.660066"],["-120.3952201","50.659915"],["-120.3944575","50.6596519"],["-120.3939968","50.6594362"],["-120.3936436","50.6592598"],["-120.3933409","50.6590806"],["-120.3929899","50.6588424"],["-120.392578","50.6585217"],["-120.3919762","50.6579917"],["-120.391449","50.6575155"],["-120.3909233","50.6570568"],["-120.3903915","50.6566401"],["-120.389791","50.6563168"],["-120.3891527","50.6560276"],["-120.3886331","50.655842"],["-120.3880435","50.6556741"],["-120.387189","50.6554827"],["-120.3848072","50.6550103"],["-120.3840416","50.6548269"],["-120.3834133","50.6546327"],["-120.382882","50.654451"],["-120.3808528","50.6536246"],["-120.3805303","50.653493"],["-120.3799442","50.6532678"],["-120.3793732","50.6530588"],["-120.3790402","50.6529538"],["-120.378451","50.6528141"],["-120.3780882","50.6527383"],["-120.3776933","50.6526654"],["-120.3773143","50.652612"],["-120.3769151","50.6525727"],["-120.3761357","50.6525326"],["-120.3758124","50.6525297"],["-120.375494","50.652536"],["-120.3747201","50.6525793"],["-120.3744083","50.6526116"],["-120.3732289","50.6527931"],["-120.3708243","50.6533139"],["-120.3657055","50.6542975"],["-120.3651178","50.6544489"],["-120.3645713","50.6546386"],["-120.3640903","50.6548524"],["-120.3637761","50.655048"],["-120.3634627","50.6552805"],["-120.3631836","50.655562"],["-120.36294","50.6558986"],["-120.3626617","50.6563496"],["-120.3620107","50.6575175"],["-120.3617377","50.6579353"],["-120.3615005","50.6582427"],["-120.3612349","50.6585084"],["-120.3609518","50.6587662"],["-120.3606804","50.6589716"],["-120.360336","50.6592029"],["-120.3599822","50.6594313"],["-120.3595227","50.659667"],["-120.3585482","50.6600903"],["-120.3575259","50.6605188"],["-120.3567616","50.6608109"],["-120.3562499","50.6609915"],["-120.355911","50.6610784"],["-120.3556183","50.6611457"],["-120.3552097","50.6612244"],["-120.3507883","50.6619075"],["-120.3494716","50.66208"],["-120.3487244","50.6621473"],["-120.3480331","50.6621908"],["-120.3474237","50.6622135"],["-120.3464755","50.6622212"],["-120.3458499","50.6622043"],["-120.3359784","50.6617805"],["-120.3241839","50.66182"],["-120.3234352","50.6618563"],["-120.3228709","50.6618998"],["-120.3222557","50.6619638"],["-120.3216583","50.6620419"],["-120.3204997","50.6622306"],["-120.3198496","50.6623609"],["-120.3192693","50.6624947"],["-120.3186834","50.6626457"],["-120.3180568","50.6628272"],["-120.3174543","50.6630233"],["-120.3169531","50.6631964"],["-120.3163981","50.6634086"],["-120.3158487","50.6636367"],["-120.3153747","50.6638528"],["-120.3148497","50.6641138"],["-120.3143659","50.6643823"],["-120.3139503","50.6646442"],["-120.3135243","50.6649477"],["-120.3130106","50.6653553"],["-120.3118255","50.6663501"],["-120.3114871","50.6666196"],["-120.3112037","50.6668214"],["-120.3107585","50.6670962"],["-120.3101673","50.6674264"],["-120.3096994","50.6676434"],["-120.3091757","50.667857"],["-120.3062254","50.6690041"],["-120.3055371","50.6692908"],["-120.3046356","50.6697171"],["-120.303877","50.6701134"],["-120.3022135","50.6710561"],["-120.3012969","50.6715352"],["-120.3005765","50.6718215"],["-120.2958526","50.6731898"],["-120.2949233","50.6735857"],["-120.2940784","50.6740858"],["-120.2929854","50.6747859"],["-120.2924437","50.6751401"],["-120.2908677","50.6761071"],["-120.290218","50.6764791"],["-120.2895704","50.6767963"],["-120.2887928","50.6771321"],["-120.2877684","50.6774917"],["-120.2870663","50.6777136"],["-120.2863855","50.6778915"],["-120.2850853","50.6781613"],["-120.2761467","50.6798949"],["-120.2740132","50.6802489"],["-120.2722521","50.6804184"],["-120.2711455","50.6804582"],["-120.2692228","50.6804725"],["-120.2682333","50.6804112"],["-120.2670621","50.6803163"],["-120.2654058","50.6800515"],["-120.2629899","50.6795878"],["-120.2507792","50.6770246"],["-120.2495085","50.6767519"],["-120.2220695","50.6709785"],["-120.2217196","50.6709298"],["-120.2214027","50.6709021"],["-120.2210188","50.6708805"],["-120.2205209","50.6708837"],["-120.2198708","50.6709171"],["-120.2191428","50.6709992"],["-120.2181384","50.671184"],["-120.2163083","50.6715576"],["-120.2153645","50.671692"],["-120.2143017","50.6717449"],["-120.213303","50.6717098"],["-120.2124765","50.6715882"],["-120.2110775","50.6712907"],["-120.2049472","50.6698648"],["-120.2038534","50.6696256"],["-120.2025484","50.6694294"],["-120.2007539","50.66918"],["-120.197954","50.6689988"],["-120.1964659","50.6689726"],["-120.1953792","50.6689969"],["-120.1865093","50.6692996"],["-120.1831336","50.6693249"],["-120.181547","50.6694241"],["-120.179653","50.6695637"],["-120.1786875","50.6696128"],["-120.1781938","50.6696242"],["-120.1773587","50.6696039"],["-120.1741873","50.6693552"],["-120.1636321","50.6684011"],["-120.1573008","50.6677896"],["-120.1554179","50.6676245"],["-120.1528548","50.6673792"],["-120.1515928","50.667195"],["-120.1510475","50.6671066"],["-120.1504967","50.6670018"],["-120.1453819","50.6659325"],["-120.1422831","50.6652812"],["-120.1300552","50.6626711"],["-120.1293694","50.6624964"],["-120.1283586","50.6621704"],["-120.127243","50.6617385"],["-120.1250736","50.6607722"],["-120.1235334","50.6601627"],["-120.1222367","50.6597641"],["-120.1207971","50.6594252"],["-120.119833","50.659267"],["-120.1192386","50.6591973"],["-120.118244","50.6591105"],["-120.117311","50.6590536"],["-120.1168309","50.6590355"],["-120.115754","50.6590643"],["-120.1148409","50.659132"],["-120.1121424","50.6594039"],["-120.1107853","50.6594931"],["-120.1092323","50.6595252"],["-120.1076233","50.6594738"],["-120.1061348","50.6593789"],["-120.10494","50.6592513"],["-120.0818922","50.65611"],["-120.0779336","50.6553736"],["-120.072623","50.6545965"],["-120.067593","50.6535588"],["-120.0670162","50.6534493"],["-120.0660874","50.6533531"],["-120.0651651","50.6533566"],["-120.06403","50.6534326"],["-120.0608153","50.653882"],["-120.0589619","50.6540665"],["-120.0562388","50.6540724"],["-120.0290186","50.6531268"],["-120.0272215","50.6529579"],["-120.0095859","50.6504293"],["-120.0080988","50.6501435"],["-120.0067845","50.6497955"],["-120.0020688","50.6480498"],["-120.0008159","50.6476389"],["-120.0000496","50.647445"],["-119.9991153","50.6472696"],["-119.9976607","50.6471385"],["-119.9870033","50.6472092"],["-119.985726","50.6473389"],["-119.9835282","50.6477164"],["-119.9799307","50.6485072"],["-119.9791212","50.6486642"],["-119.9780868","50.6488269"],["-119.9753454","50.6491672"],["-119.9649168","50.6503906"],["-119.9635637","50.6505077"],["-119.9625037","50.6505242"],["-119.9612828","50.6504915"],["-119.9604561","50.6504361"],["-119.959717","50.6503519"],["-119.9590652","50.6502376"],["-119.9573694","50.6498628"],["-119.9545187","50.6492291"],["-119.9535632","50.6490455"],["-119.9526282","50.6489003"],["-119.9284102","50.6463683"],["-119.9264878","50.6461538"],["-119.9251832","50.6459721"],["-119.9238689","50.6456622"],["-119.9204648","50.6447509"],["-119.9195854","50.644538"],["-119.9183154","50.6443504"],["-119.9172036","50.6442505"],["-119.9161488","50.6442822"],["-119.9082452","50.6449765"],["-119.9073607","50.6450924"],["-119.9062617","50.6453126"],["-119.9052543","50.6456029"],["-119.9042871","50.645951"],["-119.9023166","50.6467208"],["-119.9002686","50.6475409"],["-119.8972371","50.6487408"],["-119.8964434","50.6489983"],["-119.8824313","50.6526684"],["-119.8806842","50.6531447"],["-119.879844","50.6534557"],["-119.8789986","50.6538476"],["-119.8784627","50.6541304"],["-119.855387","50.6681125"],["-119.8542915","50.6687652"],["-119.8532277","50.6692875"],["-119.8516517","50.6698739"],["-119.8503468","50.670263"],["-119.846875","50.6710569"],["-119.839989","50.6727491"],["-119.8382847","50.6731862"],["-119.8375182","50.6734413"],["-119.8364385","50.6738376"],["-119.8352506","50.6743403"],["-119.8344962","50.6746843"],["-119.8337911","50.675078"],["-119.8330644","50.6755195"],["-119.8324727","50.6759206"],["-119.8312441","50.6768553"],["-119.8299135","50.6778712"],["-119.8282757","50.6791264"],["-119.8277081","50.6795198"],["-119.82715","50.6798575"],["-119.8262063","50.6803553"],["-119.8243879","50.6812019"],["-119.8210854","50.6827291"],["-119.8198795","50.6833277"],["-119.8188368","50.6839216"],["-119.8180955","50.68441"],["-119.8173307","50.685015"],["-119.8169321","50.6853665"],["-119.8162881","50.6859772"],["-119.8159663","50.6863044"],["-119.8156679","50.6866442"],["-119.8153362","50.6870748"],["-119.8148961","50.6877974"],["-119.8144813","50.6885615"],["-119.8141311","50.6893746"],["-119.8138655","50.6899017"],["-119.8136412","50.6903213"],["-119.8134395","50.6906205"],["-119.8130841","50.6910336"],["-119.8127419","50.691351"],["-119.8112915","50.6925835"],["-119.8090255","50.6943344"],["-119.8076317","50.6952578"],["-119.8061376","50.6960913"],["-119.8053523","50.6965047"],["-119.8017108","50.698056"],["-119.7998341","50.6989869"],["-119.798874","50.6995187"],["-119.7979139","50.7001295"],["-119.7968131","50.7009283"],["-119.7956727","50.7018879"],["-119.7949995","50.7025108"],["-119.7943623","50.7031789"],["-119.7931428","50.7047979"],["-119.7926316","50.7055766"],["-119.7920208","50.7066844"],["-119.7908649","50.7090078"],["-119.7903942","50.7097946"],["-119.7898602","50.7104898"],["-119.7892481","50.7111474"],["-119.7884777","50.7118065"],["-119.7874496","50.7125281"],["-119.7799829","50.717364"],["-119.7769543","50.719398"],["-119.7716626","50.7227362"],["-119.7690796","50.7241067"],["-119.768004","50.7247142"],["-119.7675989","50.7250097"],["-119.7672548","50.7253058"],["-119.76688","50.7257046"],["-119.7665485","50.7261271"],["-119.7662423","50.7266339"],["-119.7659375","50.7273386"],["-119.7651661","50.729869"],["-119.7649129","50.7305486"],["-119.7646411","50.7310873"],["-119.7642557","50.7318133"],["-119.7639142","50.732487"],["-119.7635124","50.733432"],["-119.7633579","50.734072"],["-119.7631094","50.7353746"],["-119.762915","50.7361457"],["-119.7626072","50.736772"],["-119.7622435","50.7372419"],["-119.7618039","50.7376639"],["-119.7609911","50.7382202"],["-119.759807","50.7388649"],["-119.7590456","50.7393233"],["-119.758423","50.7398386"],["-119.7576383","50.7405602"],["-119.7568111","50.7416299"],["-119.7549312","50.7445668"],["-119.7543372","50.7456231"],["-119.751329","50.7517602"],["-119.7503731","50.7535157"],["-119.7486949","50.7554424"],["-119.7420684","50.762755"],["-119.7402083","50.7638869"],["-119.7361049","50.7652753"],["-119.731519","50.7669194"],["-119.7276652","50.7688218"],["-119.7250101","50.7708281"],["-119.7230643","50.7724382"],["-119.7213881","50.7738704"],["-119.7189216","50.7759915"],["-119.7164875","50.7780839"],["-119.7155927","50.7789288"],["-119.7146196","50.7800142"],["-119.7142396","50.780495"],["-119.7138602","50.7810372"],["-119.7134334","50.7817097"],["-119.7121864","50.7838701"],["-119.7107192","50.786134"],["-119.7103901","50.7865027"],["-119.7099406","50.7868841"],["-119.7089033","50.7876867"],["-119.7083476","50.787903"],["-119.7079474","50.7879805"],["-119.7075345","50.7881238"],["-119.7070878","50.7883393"],["-119.7056408","50.7888816"],["-119.7048069","50.7893279"],["-119.7042743","50.7897538"],["-119.7037519","50.7903005"],["-119.7032027","50.7909828"],["-119.7028911","50.791406"],["-119.7026754","50.791825"],["-119.7025051","50.792323"],["-119.7022336","50.7933985"],["-119.7019644","50.7945738"],["-119.7016318","50.7963153"],["-119.7013544","50.7976281"],["-119.7011423","50.7983636"],["-119.7009021","50.7990296"],["-119.7005635","50.7998005"],["-119.7002118","50.8006787"],["-119.7000457","50.8013853"],["-119.6999614","50.8020303"],["-119.6999459","50.8026191"],["-119.6999775","50.8033765"],["-119.6999715","50.804072"],["-119.6998625","50.8045968"],["-119.6996867","50.8050875"],["-119.6994224","50.8056086"],["-119.6990717","50.8059343"],["-119.6985732","50.8063193"],["-119.6975725","50.8070268"],["-119.6971211","50.8073931"],["-119.6876827","50.8137081"],["-119.6811104","50.8182426"],["-119.6757107","50.8220261"],["-119.6739777","50.82322"],["-119.6725243","50.8244535"],["-119.6716329","50.8254073"],["-119.6711009","50.8259612"],["-119.6707775","50.8262749"],["-119.670495","50.8265045"],["-119.6701367","50.826756"],["-119.6698752","50.826894"],["-119.6694261","50.8270919"],["-119.6686202","50.8273783"],["-119.6618469","50.8288272"],["-119.6601938","50.8290537"],["-119.6592072","50.8292013"],["-119.6575542","50.8296068"],["-119.6567496","50.8298186"],["-119.655535","50.8301084"],["-119.6550176","50.8302002"],["-119.6543136","50.8302911"],["-119.6513166","50.8305505"],["-119.6506898","50.8306209"],["-119.6496593","50.830781"],["-119.6491525","50.8308912"],["-119.6486283","50.8310265"],["-119.6481826","50.831159"],["-119.6474613","50.831423"],["-119.6470784","50.8316158"],["-119.6437857","50.8331442"],["-119.6426402","50.833789"],["-119.6419413","50.8342274"],["-119.6395097","50.83589"],["-119.6391389","50.8361276"],["-119.6388189","50.8363011"],["-119.6383602","50.8364983"],["-119.6380031","50.8366306"],["-119.6361129","50.8372785"],["-119.6356476","50.837487"],["-119.6352124","50.8377006"],["-119.6347839","50.8379393"],["-119.6331588","50.8389599"],["-119.6303618","50.8407043"],["-119.6290595","50.8414718"],["-119.6286258","50.8416434"],["-119.6255729","50.8428205"],["-119.6252536","50.8429579"],["-119.6249334","50.84311"],["-119.6244322","50.8434295"],["-119.6235725","50.8439929"],["-119.6228766","50.8443892"],["-119.622556","50.8445515"],["-119.6222098","50.8446988"],["-119.6213331","50.8450504"],["-119.6209082","50.8452265"],["-119.6205263","50.8453962"],["-119.620083","50.8456073"],["-119.6195057","50.8459176"],["-119.6117204","50.8506054"],["-119.6106831","50.8511883"],["-119.6102138","50.8514141"],["-119.6097961","50.8515942"],["-119.6083432","50.8521685"],["-119.6076644","50.8523928"],["-119.6069373","50.8526738"],["-119.606247","50.8529861"],["-119.605622","50.8533071"],["-119.6051753","50.8535579"],["-119.6047537","50.8538326"],["-119.604378","50.8540903"],["-119.6040117","50.8543648"],["-119.6036725","50.8546555"],["-119.6033409","50.8549627"],["-119.6029874","50.85533"],["-119.6026639","50.8557161"],["-119.602334","50.8561291"],["-119.6019689","50.8566065"],["-119.601428","50.8573279"],["-119.6006096","50.8583653"],["-119.5998372","50.8593909"],["-119.5988688","50.8606589"],["-119.5979773","50.8617271"],["-119.5973351","50.8625319"],["-119.5970221","50.8628176"],["-119.5967754","50.8630082"],["-119.5965495","50.8631405"],["-119.5962924","50.8632806"],["-119.5960451","50.8633995"],["-119.5957669","50.8635315"],["-119.5950823","50.8637852"],["-119.5945851","50.8639161"],["-119.5930343","50.8642949"],["-119.5922336","50.8644984"],["-119.5915621","50.8646866"],["-119.5911012","50.8648539"],["-119.5901847","50.8652243"],["-119.589763","50.8654099"],["-119.5893546","50.865609"],["-119.5887465","50.8659364"],["-119.5852156","50.868229"],["-119.5845847","50.8686488"],["-119.5839769","50.8689585"],["-119.5834526","50.8692033"],["-119.5829956","50.8694015"],["-119.5825267","50.8695897"],["-119.5819031","50.8698032"],["-119.5809647","50.8700902"],["-119.579742","50.8705199"],["-119.5790692","50.8707479"],["-119.578645","50.870888"],["-119.5782872","50.8710799"],["-119.5776338","50.8714375"],["-119.5769475","50.871853"],["-119.5766306","50.8720744"],["-119.5761194","50.8722645"],["-119.5757143","50.8723656"],["-119.5750318","50.8724468"],["-119.5741992","50.8724814"],["-119.5729056","50.8725108"],["-119.572045","50.8726501"],["-119.5714669","50.8728558"],["-119.5710926","50.8730607"],["-119.5707567","50.8732624"],["-119.570508","50.8735118"],["-119.570195","50.8738954"],["-119.5694956","50.8750265"],["-119.5693186","50.875248"],["-119.5689083","50.8756463"],["-119.5684407","50.8760098"],["-119.5677557","50.8764375"],["-119.5668515","50.8769863"],["-119.5659503","50.8775191"],["-119.5655214","50.8777225"],["-119.5647808","50.878001"],["-119.5644247","50.878107"],["-119.562628","50.8785083"],["-119.5622551","50.8786214"],["-119.5619783","50.8787261"],["-119.5593992","50.8801707"],["-119.5571108","50.881061"],["-119.5547363","50.8816392"],["-119.5517165","50.8820836"],["-119.5497776","50.8825392"],["-119.5479938","50.8831656"],["-119.5464177","50.8837009"],["-119.5425136","50.8846971"],["-119.5412789","50.8853272"],["-119.5405127","50.8860022"],["-119.5395796","50.8866497"],["-119.5390071","50.8869422"],["-119.5382683","50.8871095"],["-119.5372888","50.8872384"],["-119.5364957","50.8874293"],["-119.5357336","50.887792"],["-119.5348061","50.8882769"],["-119.5343516","50.8886272"],["-119.5340979","50.8889106"],["-119.5338477","50.889332"],["-119.5336597","50.8898111"],["-119.5334504","50.8910197"],["-119.5332225","50.8914005"],["-119.532845","50.8917207"],["-119.5321284","50.8920872"],["-119.5317179","50.8921808"],["-119.531","50.8922177"],["-119.5304997","50.8921907"],["-119.5300474","50.8921142"],["-119.5295198","50.8920361"],["-119.5290552","50.8920393"],["-119.5285478","50.8920557"],["-119.527747","50.8921588"],["-119.5269177","50.8922765"],["-119.5258359","50.8924124"],["-119.5251557","50.8924453"],["-119.5245016","50.8924376"],["-119.5237243","50.8924187"],["-119.5230151","50.8924198"],["-119.5222127","50.8924305"],["-119.521343","50.8924846"],["-119.5197086","50.8927106"],["-119.5185844","50.8926352"],["-119.517704","50.892484"],["-119.5116135","50.8898102"],["-119.51085","50.8893984"],["-119.5097966","50.8886698"],["-119.5078447","50.887117"],["-119.5048562","50.8847773"],["-119.5045222","50.8845694"],["-119.5031531","50.8839407"],["-119.5021331","50.883527"],["-119.5010856","50.8831912"],["-119.5000005","50.8829204"],["-119.4984352","50.8826225"],["-119.4963585","50.8822805"],["-119.4945036","50.8819737"],["-119.4930001","50.8817212"],["-119.4884359","50.8809765"],["-119.4869247","50.8806657"],["-119.4851261","50.8802668"],["-119.4731136","50.8771893"],["-119.4726507","50.8770914"],["-119.4713679","50.8769238"],["-119.4633809","50.8769189"],["-119.4615968","50.8769248"],["-119.4338334","50.8770569"],["-119.4308511","50.8772529"],["-119.4290179","50.8773872"],["-119.4280597","50.8774801"],["-119.426891","50.8776178"],["-119.4211801","50.8784289"],["-119.4207911","50.8784652"],["-119.4203858","50.8784823"],["-119.4197971","50.8784765"],["-119.4178445","50.8783509"],["-119.4151543","50.8782057"],["-119.4146598","50.878203"],["-119.4142659","50.8782157"],["-119.413879","50.8782507"],["-119.4128885","50.8784079"],["-119.4082075","50.8793974"],["-119.407691","50.8794607"],["-119.4070362","50.8794965"],["-119.4065679","50.8794872"],["-119.4062274","50.8794528"],["-119.4058194","50.8793762"],["-119.4050634","50.8791983"],["-119.4041954","50.879045"],["-119.4032853","50.8789063"],["-119.4023365","50.878883"],["-119.4013974","50.8789061"],["-119.4001566","50.8789793"],["-119.3991231","50.8790329"],["-119.3983208","50.8790681"],["-119.3976538","50.8790687"],["-119.3969887","50.8790345"],["-119.3962422","50.8789692"],["-119.3955657","50.8788658"],["-119.3948671","50.8787081"],["-119.3941717","50.878512"],["-119.3936612","50.8783232"],["-119.393213","50.8781334"],["-119.3927766","50.8779172"],["-119.3923277","50.8776564"],["-119.3919376","50.8774125"],["-119.391369","50.8770048"],["-119.3895269","50.8756416"],["-119.3884245","50.8748123"],["-119.387768","50.8743153"],["-119.3873213","50.8739713"],["-119.3869958","50.8736947"],["-119.3867374","50.8734588"],["-119.3863762","50.8729656"],["-119.3862024","50.8726798"],["-119.3854839","50.8712918"],["-119.3852652","50.8709098"],["-119.3849844","50.8705386"],["-119.3847262","50.8702741"],["-119.3843638","50.8699419"],["-119.3839982","50.8696645"],["-119.3834525","50.8693245"],["-119.3828685","50.8689729"],["-119.3823346","50.8686473"],["-119.382082","50.868467"],["-119.3818274","50.8682639"],["-119.3811661","50.8675687"],["-119.3807411","50.8671113"],["-119.3804475","50.8668309"],["-119.3801396","50.8665757"],["-119.3797734","50.8662876"],["-119.3788789","50.8657301"],["-119.3773196","50.8648769"],["-119.3755862","50.863911"],["-119.3747977","50.8634272"],["-119.3743929","50.8631536"],["-119.3739656","50.8628514"],["-119.3730363","50.8621412"],["-119.372588","50.8617451"],["-119.3718573","50.8610731"],["-119.371369","50.8605326"],["-119.3708451","50.859932"],["-119.3702501","50.8591913"],["-119.3697924","50.8585772"],["-119.369489","50.8581486"],["-119.3692547","50.8578053"],["-119.3690756","50.8575573"],["-119.3688891","50.8573432"],["-119.3686119","50.8570573"],["-119.3682565","50.856737"],["-119.3679437","50.8564585"],["-119.3676593","50.8562682"],["-119.3673111","50.8560691"],["-119.3667817","50.8558114"],["-119.3661295","50.8555682"],["-119.364153","50.855011"],["-119.3551027","50.8526138"],["-119.3545436","50.8524715"],["-119.3474323","50.8506145"],["-119.3462894","50.850277"],["-119.3327486","50.8451283"],["-119.3319658","50.8447646"],["-119.3311819","50.8443053"],["-119.3303346","50.843699"],["-119.3298509","50.8432454"],["-119.329244","50.8425673"],["-119.328987","50.842255"],["-119.328696","50.8419149"],["-119.3284019","50.8415426"],["-119.3281094","50.8411451"],["-119.3278063","50.8407639"],["-119.3273969","50.8401848"],["-119.3271122","50.8397356"],["-119.3265605","50.8387885"],["-119.3258585","50.8375702"],["-119.3247828","50.8356722"],["-119.3242437","50.8346141"],["-119.3230699","50.8325865"],["-119.3219365","50.8305924"],["-119.3215818","50.8299696"],["-119.3209691","50.8288057"],["-119.320766","50.8284522"],["-119.3206136","50.8281925"],["-119.3204763","50.8279643"],["-119.3203528","50.8276837"],["-119.3202682","50.8274457"],["-119.3200699","50.8266773"],["-119.3200356","50.8264984"],["-119.3199993","50.8263368"],["-119.3199774","50.8260021"],["-119.3199734","50.8257232"],["-119.3199726","50.8254322"],["-119.3199578","50.8239039"],["-119.3199246","50.8131153"],["-119.3199316","50.8124356"],["-119.3199371","50.8118061"],["-119.3199619","50.8103298"],["-119.3199878","50.8098186"],["-119.3200129","50.8095684"],["-119.3200737","50.8092186"],["-119.3201154","50.8090272"],["-119.3202375","50.8086243"],["-119.3203032","50.8084503"],["-119.3204411","50.8081163"],["-119.3206205","50.8077295"],["-119.3208439","50.8073329"],["-119.3211914","50.8068439"],["-119.321512","50.8064282"],["-119.3219631","50.8059623"],["-119.3224584","50.805485"],["-119.3229637","50.8050231"],["-119.3233698","50.8046352"],["-119.3238872","50.8041226"],["-119.3244721","50.8035492"],["-119.3248105","50.8031948"],["-119.3249865","50.8029318"],["-119.3251839","50.8025857"],["-119.3253181","50.8021799"],["-119.3254044","50.8017358"],["-119.3254244","50.7996889"],["-119.3254564","50.7991709"],["-119.3255181","50.7988618"],["-119.3256337","50.7984572"],["-119.3258394","50.7979861"],["-119.3261116","50.7974603"],["-119.3263875","50.7969622"],["-119.3264642","50.7967996"],["-119.3265193","50.7966637"],["-119.3265958","50.7963958"],["-119.3266571","50.796013"],["-119.3266752","50.7955348"],["-119.3266383","50.7951025"],["-119.326574","50.7945337"],["-119.326572","50.7941191"],["-119.3266024","50.7937019"],["-119.3267182","50.7932501"],["-119.32906","50.7878871"],["-119.3292671","50.7875018"],["-119.3295371","50.7871456"],["-119.3298671","50.7867731"],["-119.3302446","50.7864202"],["-119.3307769","50.7859711"],["-119.3332115","50.7839605"],["-119.3339302","50.783398"],["-119.3344267","50.7829623"],["-119.3352272","50.7821038"],["-119.3363339","50.7809027"],["-119.3371842","50.7800777"],["-119.3384374","50.7789578"],["-119.3393107","50.7781581"],["-119.3397949","50.7775926"],["-119.3400698","50.7771314"],["-119.3402731","50.7767398"],["-119.3403895","50.7763889"],["-119.3404662","50.7759486"],["-119.3405183","50.7753345"],["-119.3405582","50.7744647"],["-119.340544","50.7742205"],["-119.3404694","50.7737747"],["-119.3403194","50.7733373"],["-119.3400658","50.7728012"],["-119.3395511","50.7718405"],["-119.338474","50.7699213"],["-119.3380958","50.7692692"],["-119.3379496","50.7689644"],["-119.3378676","50.768681"],["-119.337805","50.7683774"],["-119.3377943","50.7679128"],["-119.3378077","50.7671304"],["-119.3377403","50.7668404"],["-119.3376486","50.7665202"],["-119.3375149","50.7662282"],["-119.3372564","50.7659154"],["-119.3367597","50.7655675"],["-119.335818","50.7649729"],["-119.334954","50.7644283"],["-119.3344337","50.7640078"],["-119.3333117","50.7630224"],["-119.3327676","50.7625197"],["-119.3321869","50.7619702"],["-119.3310723","50.7611582"],["-119.3306113","50.7609051"],["-119.3299796","50.7606358"],["-119.3291401","50.7602488"],["-119.3283976","50.7599061"],["-119.3280748","50.7597325"],["-119.326949","50.7589656"],["-119.326518","50.7586084"],["-119.3260666","50.7582048"],["-119.3257192","50.7578442"],["-119.3255127","50.7576042"],["-119.3253715","50.7573562"],["-119.3252474","50.7570828"],["-119.3251458","50.7567901"],["-119.3250974","50.7564523"],["-119.3249767","50.7542996"],["-119.324983","50.7536033"],["-119.3250437","50.7531951"],["-119.3251729","50.7526698"],["-119.3253631","50.7519547"],["-119.3254852","50.7513651"],["-119.3255085","50.7509369"],["-119.3254452","50.7504886"],["-119.3252973","50.7500726"],["-119.3251755","50.7497744"],["-119.3250176","50.7495246"],["-119.3248144","50.7492129"],["-119.3244804","50.748798"],["-119.3236784","50.7478679"],["-119.3234092","50.747464"],["-119.3232695","50.7471565"],["-119.3231185","50.7468472"],["-119.3230069","50.7464491"],["-119.3229372","50.745933"],["-119.3228832","50.7424336"],["-119.3227376","50.7415697"],["-119.3225371","50.7408135"],["-119.3221172","50.739826"],["-119.3216965","50.7390743"],["-119.3212788","50.7384481"],["-119.3208193","50.7378315"],["-119.319931","50.7367205"],["-119.3163071","50.7320714"],["-119.3161377","50.731799"],["-119.316016","50.7315615"],["-119.3158796","50.7312259"],["-119.3157509","50.7308624"],["-119.3156855","50.7305769"],["-119.3156599","50.7303157"],["-119.315641","50.7300733"],["-119.3156482","50.7297875"],["-119.3156896","50.7294714"],["-119.3162523","50.7264785"],["-119.3178686","50.718034"],["-119.3181771","50.716104"],["-119.3183272","50.7152386"],["-119.3184345","50.7149114"],["-119.3186096","50.7145516"],["-119.3188307","50.7142186"],["-119.3191958","50.7137755"],["-119.3200754","50.7128745"],["-119.3295674","50.703416"],["-119.3300847","50.702831"],["-119.3303711","50.7024462"],["-119.330591","50.7020859"],["-119.3308137","50.7016623"],["-119.3310428","50.7011938"],["-119.3311774","50.7008284"],["-119.3312478","50.7005903"],["-119.3312914","50.7004045"],["-119.3313188","50.7002145"],["-119.3314481","50.6991014"],["-119.3314837","50.6978805"],["-119.3313608","50.6974019"],["-119.3312084","50.6969959"],["-119.331006","50.6965871"],["-119.3305133","50.6957921"],["-119.3302823","50.6954519"],["-119.3300951","50.6951962"],["-119.3298323","50.6949213"],["-119.3294275","50.6945409"],["-119.3290123","50.6941914"],["-119.3284746","50.6938333"],["-119.3276148","50.6933978"],["-119.3272202","50.6932326"],["-119.326654","50.6930578"],["-119.3258717","50.692872"],["-119.3242008","50.6926204"],["-119.3230832","50.6925399"],["-119.320131","50.6925374"],["-119.3198739","50.6925384"],["-119.3125985","50.6925484"],["-119.3109192","50.6925658"],["-119.31037","50.6926018"],["-119.3100585","50.6926409"],["-119.3094022","50.6927715"],["-119.308837","50.6929035"],["-119.3083909","50.6930324"],["-119.3080695","50.6931437"],["-119.3076289","50.693323"],["-119.3070481","50.6935781"],["-119.3061633","50.6939723"],["-119.3008328","50.6961851"],["-119.3003451","50.6963638"],["-119.294393","50.6988027"],["-119.2937382","50.6990579"],["-119.2932638","50.6992217"],["-119.2928556","50.6993405"],["-119.2924746","50.699437"],["-119.2921165","50.6995008"],["-119.2913835","50.6996011"],["-119.2909859","50.6996359"],["-119.2902761","50.6996617"],["-119.2883295","50.6996469"],["-119.2876929","50.6996448"],["-119.2872649","50.6996471"],["-119.2867548","50.6996501"],["-119.2864538","50.6996551"],["-119.2861356","50.6996621"],["-119.285833","50.6996794"],["-119.2855348","50.6997067"],["-119.2851435","50.6997612"],["-119.2845148","50.6999004"],["-119.2838305","50.7000994"],["-119.2794348","50.7018314"],["-119.2788995","50.7020293"],["-119.2785001","50.7021225"],["-119.2782325","50.7021627"],["-119.2779234","50.7021918"],["-119.2775839","50.7022"],["-119.2772305","50.7022009"],["-119.2721055","50.7022186"],["-119.2717196","50.7022278"],["-119.2713979","50.7022549"],["-119.2710829","50.7022951"],["-119.2704501","50.7024205"],["-119.2701466","50.7025067"],["-119.2698221","50.7026192"],["-119.2693933","50.7028138"],["-119.2690949","50.7029779"],["-119.2688345","50.7031466"],["-119.268588","50.7033425"],["-119.2683943","50.7035306"],["-119.2678091","50.7042062"],["-119.2668969","50.7053752"],["-119.266578","50.7057332"],["-119.2663291","50.7059682"],["-119.2660802","50.7061551"],["-119.2658432","50.7063216"],["-119.2654861","50.7065057"],["-119.2651477","50.7066541"],["-119.2647944","50.7067757"],["-119.2644883","50.7068704"],["-119.2641449","50.706952"],["-119.2637589","50.7070159"],["-119.2632038","50.7070708"],["-119.2624452","50.7070873"],["-119.2618524","50.7070909"],["-119.2607142","50.7070955"],["-119.2603989","50.707101"],["-119.2506308","50.7071123"],["-119.2490393","50.7071193"],["-119.2374706","50.7071593"],["-119.236448","50.7071945"],["-119.2358526","50.707258"],["-119.2351691","50.7073667"],["-119.2344668","50.7075287"],["-119.2337538","50.7077544"],["-119.2331644","50.7079836"],["-119.2324141","50.7083547"],["-119.231472","50.708942"],["-119.2297927","50.7100912"],["-119.2296277","50.7102266"],["-119.2292484","50.7105331"],["-119.2287385","50.7109323"],["-119.2283673","50.7112858"],["-119.2280083","50.7116822"],["-119.2276561","50.7122118"],["-119.2274806","50.7126018"],["-119.2273513","50.7129746"],["-119.2272713","50.7134567"],["-119.2272337","50.7140179"],["-119.227222","50.7151646"],["-119.2272439","50.7166141"],["-119.2272753","50.718914"],["-119.2273287","50.7297384"],["-119.2273351","50.7421697"],["-119.2273137","50.7447496"],["-119.2273001","50.7450607"],["-119.2272617","50.7453376"],["-119.2271564","50.7457469"],["-119.2270299","50.7460471"],["-119.2269442","50.7462196"],["-119.2267754","50.7464781"],["-119.2265826","50.7467612"],["-119.2263397","50.7470447"],["-119.2260999","50.7472734"],["-119.2258155","50.7475211"],["-119.2254472","50.7478056"],["-119.2250948","50.7480525"],["-119.2245361","50.748396"],["-119.2226224","50.7495172"],["-119.2214","50.7502651"],["-119.2186649","50.7520265"],["-119.2134305","50.7550443"],["-119.2127107","50.7555949"],["-119.2121632","50.7560984"],["-119.2114211","50.7568834"],["-119.2103392","50.7579703"],["-119.2094196","50.7586182"],["-119.208281","50.7591761"],["-119.2079319","50.7593955"],["-119.2059799","50.7612461"],["-119.2042026","50.762979"],["-119.2030675","50.7641195"],["-119.2016099","50.7651679"],["-119.1976167","50.766891"],["-119.1952335","50.7678129"],["-119.1929453","50.7687428"],["-119.1891778","50.7700108"],["-119.1863306","50.7710507"],["-119.1839402","50.772125"],["-119.1791718","50.7747209"],["-119.1743367","50.7783232"],["-119.1711196","50.7813479"],["-119.1696211","50.7822015"],["-119.1680232","50.7828251"],["-119.1669624","50.7833929"],["-119.1651907","50.7844802"],["-119.164438","50.784744"],["-119.1623776","50.7850817"],["-119.1550936","50.7865457"],["-119.1506663","50.7875496"],["-119.1463135","50.7889585"],["-119.145151","50.7892153"],["-119.1435385","50.7894706"],["-119.1407046","50.7896651"],["-119.139772","50.7897781"],["-119.1382785","50.7901928"],["-119.1374424","50.7902292"],["-119.1366017","50.7901763"],["-119.1351898","50.7899742"],["-119.1343924","50.7899568"],["-119.1336067","50.7900093"],["-119.1329802","50.7902476"],["-119.1324722","50.7905085"],["-119.131866","50.7910248"],["-119.1298944","50.7937779"],["-119.1292476","50.7942444"],["-119.1286464","50.7945481"],["-119.1279041","50.7947404"],["-119.1271484","50.7948793"],["-119.1262384","50.7949617"],["-119.1253737","50.7949618"],["-119.1245988","50.7949177"],["-119.1238672","50.7948217"],["-119.1232078","50.7946713"],["-119.1226197","50.7944668"],["-119.1220892","50.7940827"],["-119.1216685","50.7936682"],["-119.1205635","50.7929031"],["-119.1189194","50.7921462"],["-119.1165839","50.7913468"],["-119.1147334","50.7908166"],["-119.1128206","50.7906619"],["-119.1104529","50.7908667"],["-119.1089166","50.7908802"],["-119.1073047","50.7906775"],["-119.105098","50.7900779"],["-119.1033887","50.7897797"],["-119.1000489","50.7897151"],["-119.0962884","50.789651"],["-119.0943719","50.7894149"],["-119.0924209","50.7891623"],["-119.0902541","50.7891691"],["-119.0891301","50.7891458"],["-119.0870614","50.7888054"],["-119.0860822","50.7887384"],["-119.0849763","50.7887712"],["-119.0833771","50.7888713"],["-119.0820392","50.7889962"],["-119.080805","50.7891907"],["-119.0799111","50.7894388"],["-119.079125","50.7897921"],["-119.0768883","50.7911153"],["-119.0746028","50.7921082"],["-119.0733082","50.7929647"],["-119.0726059","50.7939935"],["-119.0717665","50.7958801"],["-119.0705748","50.7976652"],["-119.0684677","50.799691"],["-119.0669345","50.8009399"],["-119.0654265","50.8017978"],["-119.0641127","50.8027284"],["-119.0625817","50.8043756"],["-119.0617376","50.8052768"],["-119.0607421","50.8058016"],["-119.0596436","50.8059724"],["-119.0583088","50.806061"],["-119.0568508","50.8062715"],["-119.0557088","50.8068516"],["-119.0507189","50.8098861"],["-119.0494493","50.8105684"],["-119.0490584","50.8108818"],["-119.0487024","50.8112823"],["-119.0482932","50.8116819"],["-119.0476506","50.812161"],["-119.0470001","50.8126521"],["-119.0459632","50.8133881"],["-119.0453296","50.8139621"],["-119.0450469","50.8142077"],["-119.044262","50.8146724"],["-119.0433433","50.8152698"],["-119.0429291","50.8156144"],["-119.0425661","50.8160368"],["-119.0421154","50.8166816"],["-119.0417619","50.8170197"],["-119.0412106","50.8173862"],["-119.0404308","50.8177768"],["-119.0399144","50.8179993"],["-119.0395275","50.818167"],["-119.0389666","50.8183876"],["-119.0383539","50.8186795"],["-119.0380199","50.8188594"],["-119.0377528","50.8190622"],["-119.0373885","50.819387"],["-119.036856","50.8198948"],["-119.0363563","50.8202993"],["-119.0354464","50.8208506"],["-119.0346605","50.8212759"],["-119.0343075","50.8214941"],["-119.0340613","50.8216959"],["-119.0337975","50.8220112"],["-119.0334274","50.8224039"],["-119.033116","50.8226528"],["-119.0308812","50.8239742"],["-119.030437","50.8241732"],["-119.0299973","50.8243524"],["-119.0289156","50.824674"],["-119.02811","50.8249438"],["-119.0268894","50.8253841"],["-119.025287","50.8260103"],["-119.0232467","50.8268146"],["-119.0226201","50.827082"],["-119.02222","50.827305"],["-119.0215746","50.827645"],["-119.0209549","50.8279659"],["-119.0205589","50.8282017"],["-119.0200701","50.8284914"],["-119.0191964","50.8289689"],["-119.0187146","50.829305"],["-119.0183172","50.829577"],["-119.0178666","50.8297914"],["-119.0173935","50.8300057"],["-119.0168455","50.8302452"],["-119.0163606","50.8303775"],["-119.0157079","50.8305186"],["-119.0150612","50.83065"],["-119.0145116","50.8306955"],["-119.0132472","50.8307213"],["-119.0098997","50.8307476"],["-119.0091276","50.8308084"],["-119.0086375","50.8308894"],["-119.0082216","50.8309686"],["-119.0079331","50.8310401"],["-119.0075631","50.8311626"],["-119.005813","50.8319669"],["-119.0053718","50.8321291"],["-119.0050344","50.8322314"],["-119.0043202","50.8323784"],["-119.0027861","50.8326848"],["-119.00209","50.8328534"],["-119.0008422","50.8332771"],["-118.9992184","50.8341723"],["-118.998525","50.8344725"],["-118.997812","50.8347192"],["-118.9970816","50.8349291"],["-118.995567","50.8352842"],["-118.9941649","50.8359476"],["-118.9929831","50.8365045"],["-118.9915691","50.8371517"],["-118.987653","50.8387052"],["-118.9862898","50.8392167"],["-118.9857105","50.8393982"],["-118.9852653","50.8395109"],["-118.9849233","50.839585"],["-118.9844727","50.8396585"],["-118.9838859","50.8397311"],["-118.9833102","50.8397699"],["-118.9827962","50.8397884"],["-118.9824355","50.839786"],["-118.9816284","50.8397347"],["-118.9802013","50.8394331"],["-118.9796632","50.839282"],["-118.9790614","50.8390634"],["-118.9779166","50.8385432"],["-118.9774763","50.8383547"],["-118.9771348","50.8382383"],["-118.9768262","50.8381465"],["-118.9764901","50.8380604"],["-118.9759089","50.8379387"],["-118.9751176","50.837839"],["-118.9744968","50.8378253"],["-118.9702258","50.8378773"],["-118.9682484","50.8379155"],["-118.9679505","50.8379351"],["-118.9673591","50.8380107"],["-118.9669565","50.8380895"],["-118.9666135","50.8381671"],["-118.9660716","50.8383124"],["-118.9657587","50.8384209"],["-118.9654424","50.8385411"],["-118.9651678","50.8386648"],["-118.9648664","50.8388082"],["-118.9645459","50.8389933"],["-118.9566267","50.8440404"],["-118.9493044","50.8486992"],["-118.9474662","50.8500499"],["-118.9470968","50.8503723"],["-118.946458","50.8510077"],["-118.9461549","50.8513376"],["-118.945917","50.8516848"],["-118.9456061","50.8521632"],["-118.9452004","50.8528366"],["-118.9449454","50.8533245"],["-118.9446317","50.8538825"],["-118.94425","50.8545132"],["-118.9439271","50.8549443"],["-118.9433944","50.8554824"],["-118.9427366","50.8560058"],["-118.9420302","50.8565092"],["-118.9352262","50.8606165"],["-118.9302932","50.8636459"],["-118.929051","50.8645776"],["-118.9286199","50.8650507"],["-118.9283286","50.8654809"],["-118.9279613","50.8659857"],["-118.9277187","50.8665073"],["-118.9273282","50.8677272"],["-118.9268886","50.8690918"],["-118.9266081","50.8696479"],["-118.9263768","50.8702092"],["-118.926032","50.8708961"],["-118.9257373","50.8714111"],["-118.925419","50.8719412"],["-118.9248861","50.8726334"],["-118.9244133","50.8732722"],["-118.9240858","50.8736643"],["-118.923702","50.8741187"],["-118.9232703","50.8745964"],["-118.9225854","50.8752062"],["-118.921735","50.8758986"],["-118.9207406","50.8767231"],["-118.9187126","50.8782526"],["-118.9174271","50.8791594"],["-118.9158345","50.880149"],["-118.9148049","50.8808354"],["-118.9138898","50.8814185"],["-118.9131188","50.8819631"],["-118.9123583","50.8823595"],["-118.9107509","50.8829538"],["-118.9087812","50.8835734"],["-118.9076173","50.8838699"],["-118.9055125","50.8843641"],["-118.8922884","50.8864716"],["-118.8875501","50.8872851"],["-118.8730272","50.8906172"],["-118.8684814","50.8915688"],["-118.8676479","50.891705"],["-118.8669414","50.8917858"],["-118.8661522","50.8918237"],["-118.8655203","50.8918045"],["-118.864722","50.8916717"],["-118.8638566","50.8914624"],["-118.8591951","50.8897383"],["-118.857703","50.8892577"],["-118.8566117","50.8889981"],["-118.8553469","50.88877"],["-118.8520117","50.8884421"],["-118.8413767","50.8886342"],["-118.8403817","50.8886719"],["-118.839459","50.8887875"],["-118.8382208","50.8890234"],["-118.8368405","50.8893332"],["-118.8353528","50.8897928"],["-118.8338092","50.8904636"],["-118.8325122","50.891147"],["-118.8281512","50.8936867"],["-118.8256894","50.8950586"],["-118.8234212","50.896441"],["-118.821774","50.8975387"],["-118.8204377","50.8984967"],["-118.819169","50.899493"],["-118.8173492","50.9011138"],["-118.7966068","50.9221318"],["-118.7954003","50.9235379"],["-118.7947193","50.9246102"],["-118.7945127","50.9251516"],["-118.7943496","50.9256187"],["-118.7942252","50.9261198"],["-118.7941838","50.9270099"],["-118.7941497","50.9280932"],["-118.7940599","50.9288777"],["-118.79392","50.9292945"],["-118.793748","50.9296573"],["-118.7935545","50.9300014"],["-118.7932409","50.9303651"],["-118.7925363","50.9310787"],["-118.7787146","50.9433882"],["-118.7782464","50.9438121"],["-118.7753043","50.9464836"],["-118.7746132","50.9469146"],["-118.7735163","50.9474984"],["-118.7730638","50.9477224"],["-118.7723605","50.948036"],["-118.7700335","50.9490714"],["-118.7536692","50.9564597"],["-118.7454211","50.960307"],["-118.7445433","50.9607338"],["-118.7406657","50.9624645"],["-118.7400215","50.9627177"],["-118.7393686","50.9629559"],["-118.7384133","50.9632458"],["-118.7371538","50.9636029"],["-118.7362714","50.9638988"],["-118.7353508","50.9643031"],["-118.7343947","50.9650655"],["-118.7339765","50.9655234"],["-118.7336184","50.9660097"],["-118.7332883","50.9663581"],["-118.7329046","50.9671876"],["-118.7326817","50.967595"],["-118.7323453","50.9681841"],["-118.7317655","50.9689122"],["-118.7310854","50.9695013"],["-118.7307992","50.9697628"],["-118.7303456","50.9701052"],["-118.7298448","50.9704663"],["-118.7294713","50.9707672"],["-118.7288139","50.9711238"],["-118.7275433","50.9719057"],["-118.7269198","50.9723783"],["-118.7259118","50.973323"],["-118.7256136","50.9736845"],["-118.725056","50.9744433"],["-118.7242296","50.9756454"],["-118.7233964","50.9768852"],["-118.7229994","50.9775651"],["-118.7229062","50.9777538"],["-118.7221913","50.9788239"],["-118.7204167","50.9814796"],["-118.7194548","50.9825599"],["-118.7184417","50.9832709"],["-118.7173835","50.9838877"],["-118.712439","50.9863414"],["-118.7083729","50.9883683"],["-118.7021961","50.9914709"],["-118.7006433","50.9922769"],["-118.6965251","50.9942818"],["-118.6903418","50.9974062"],["-118.6896405","50.9977128"],["-118.6866571","50.9988782"],["-118.6852128","50.9993995"],["-118.6818388","51.0006267"],["-118.6798433","51.0013629"],["-118.6782439","51.001783"],["-118.6763382","51.0022012"],["-118.6709271","51.003079"],["-118.6690505","51.0033186"],["-118.6684974","51.0033523"],["-118.6678163","51.0033822"],["-118.6672076","51.0033818"],["-118.6662947","51.0033549"],["-118.6658112","51.0033248"],["-118.6645209","51.0031789"],["-118.6568544","51.0021312"],["-118.6563598","51.0020501"],["-118.655213","51.0017979"],["-118.6548167","51.0016943"],["-118.654459","51.0015929"],["-118.6533689","51.0012208"],["-118.6530188","51.0010898"],["-118.6526004","51.0009128"],["-118.6510206","51.0001057"],["-118.6456721","50.9972984"],["-118.6448175","50.9966908"],["-118.6442131","50.9962468"],["-118.6418025","50.9943117"],["-118.6402697","50.9930738"],["-118.636749","50.9902204"],["-118.6353498","50.9891325"],["-118.6349404","50.9888697"],["-118.6344879","50.9886456"],["-118.6339074","50.9883934"],["-118.6331472","50.9881106"],["-118.6308048","50.9872011"],["-118.6300505","50.9868304"],["-118.6292739","50.9862832"],["-118.6288266","50.9859463"],["-118.6273976","50.9847852"],["-118.6265065","50.9843433"],["-118.6256533","50.9840329"],["-118.6251586","50.9839009"],["-118.6239807","50.9836839"],["-118.6233562","50.9835837"],["-118.6226468","50.9834998"],["-118.6220513","50.9834285"],["-118.6215076","50.9833383"],["-118.6210619","50.9832424"],["-118.6206865","50.9831367"],["-118.6173576","50.9820325"],["-118.6161445","50.9815389"],["-118.6155706","50.9812495"],["-118.615062","50.9809361"],["-118.6146108","50.9806015"],["-118.6138838","50.9798995"],["-118.6129329","50.9789764"],["-118.6126761","50.9787299"],["-118.612292","50.9784019"],["-118.6117077","50.9779717"],["-118.6112706","50.9777279"],["-118.610828","50.9774938"],["-118.6095842","50.9769815"],["-118.6082577","50.9764392"],["-118.6074975","50.9761114"],["-118.6058332","50.9751786"],["-118.6048925","50.9746844"],["-118.6044563","50.9744896"],["-118.604083","50.9743318"],["-118.6036021","50.9741511"],["-118.6024732","50.97384"],["-118.601902","50.9737182"],["-118.5985588","50.9732751"],["-118.5977713","50.9731306"],["-118.5971955","50.9729641"],["-118.5965009","50.9727003"],["-118.5957351","50.9724093"],["-118.593999","50.9719759"],["-118.5910676","50.9713882"],["-118.5894831","50.971102"],["-118.5870205","50.971013"],["-118.5851326","50.9709463"],["-118.577542","50.9705382"],["-118.5765395","50.9703607"],["-118.5743157","50.9699089"],["-118.5737498","50.9698346"],["-118.5731196","50.969795"],["-118.572512","50.9697914"],["-118.5719211","50.9698215"],["-118.570864","50.9699508"],["-118.5698787","50.9701473"],["-118.5693496","50.9703016"],["-118.5689493","50.9704611"],["-118.5676053","50.9711764"],["-118.5661331","50.9720291"],["-118.5650205","50.9726822"],["-118.5645529","50.9729532"],["-118.5634868","50.9734929"],["-118.5631811","50.9736285"],["-118.5628379","50.9737521"],["-118.5625407","50.9738332"],["-118.5531505","50.9758049"],["-118.5527962","50.9758524"],["-118.5524453","50.9758865"],["-118.5521412","50.9758911"],["-118.5518348","50.9758746"],["-118.5515112","50.9758488"],["-118.5512279","50.9758136"],["-118.5509271","50.9757678"],["-118.5504526","50.9756398"],["-118.5492504","50.975253"],["-118.5487657","50.9751163"],["-118.548437","50.9750442"],["-118.5480386","50.9749943"],["-118.5475792","50.9749497"],["-118.5471736","50.9749322"],["-118.5467725","50.9749367"],["-118.5463811","50.974964"],["-118.5459385","50.9750149"],["-118.5346475","50.9767626"],["-118.5324964","50.9771038"],["-118.5316752","50.9772166"],["-118.5307142","50.9773025"],["-118.5302315","50.9773181"],["-118.5298207","50.9773011"],["-118.5292125","50.9772603"],["-118.5288459","50.9772036"],["-118.5282344","50.9770865"],["-118.5257934","50.9765191"],["-118.5251922","50.9763559"],["-118.5247668","50.9762181"],["-118.5243165","50.976047"],["-118.5238696","50.9758482"],["-118.5234189","50.9755958"],["-118.5230489","50.9753727"],["-118.5227465","50.975141"],["-118.5224473","50.9748922"],["-118.521754","50.9741516"],["-118.520487","50.9728668"],["-118.5200275","50.9724662"],["-118.5197973","50.9722906"],["-118.5194401","50.9720902"],["-118.5190081","50.971876"],["-118.5187033","50.971765"],["-118.5183448","50.9716483"],["-118.5179551","50.9715352"],["-118.5175541","50.9714379"],["-118.5158224","50.9711303"],["-118.5137151","50.970758"],["-118.5133285","50.9706681"],["-118.5129398","50.9705665"],["-118.5125533","50.9704417"],["-118.5120873","50.970251"],["-118.510364","50.969428"],["-118.5098181","50.9691942"],["-118.5086435","50.9687595"],["-118.5080744","50.9685088"],["-118.5075383","50.9682271"],["-118.5070246","50.9679124"],["-118.5056666","50.9670199"],["-118.5050835","50.966558"],["-118.5043882","50.965968"],["-118.5036564","50.9653243"],["-118.5032521","50.9648623"],["-118.5029587","50.9643968"],["-118.5025526","50.9635937"],["-118.502345","50.9632274"],["-118.5021539","50.962988"],["-118.5010042","50.9617158"],["-118.5000199","50.9606397"],["-118.4991982","50.9597904"],["-118.4988076","50.9594263"],["-118.4984164","50.9591273"],["-118.4980312","50.9588553"],["-118.4975143","50.9585449"],["-118.4942251","50.9568287"],["-118.4938255","50.9566159"],["-118.4926613","50.9560042"],["-118.492031","50.955567"],["-118.491749","50.9553049"],["-118.4915333","50.9550463"],["-118.4912829","50.9546599"],["-118.4909192","50.9540636"],["-118.4906584","50.9536193"],["-118.4904159","50.953375"],["-118.490144","50.9531197"],["-118.4895649","50.9526769"],["-118.4892687","50.9525337"],["-118.4887929","50.9523398"],["-118.4882534","50.952147"],["-118.4856937","50.9515283"],["-118.4852512","50.951384"],["-118.4847384","50.951186"],["-118.4843551","50.951024"],["-118.4838987","50.9507489"],["-118.4835335","50.9504577"],["-118.4832305","50.950153"],["-118.4829275","50.9497787"],["-118.4826338","50.9493542"],["-118.4812795","50.9470443"],["-118.4811331","50.9467064"],["-118.4810492","50.9464116"],["-118.4810174","50.9460637"],["-118.4810546","50.9456368"],["-118.48111","50.9453931"],["-118.4811847","50.9451163"],["-118.4812813","50.9448855"],["-118.48143","50.9446166"],["-118.4818768","50.9439966"],["-118.4826138","50.9428768"],["-118.4833551","50.9417514"],["-118.4835958","50.9411366"],["-118.4836159","50.9408404"],["-118.4836391","50.9405341"],["-118.4836105","50.9393912"],["-118.4836045","50.9388163"],["-118.483628","50.938521"],["-118.4836828","50.9382206"],["-118.4837715","50.937973"],["-118.4838497","50.9377205"],["-118.4840621","50.9373655"],["-118.4844566","50.9366522"],["-118.4845269","50.9364659"],["-118.4845687","50.9362846"],["-118.4846032","50.9360834"],["-118.4846013","50.9358595"],["-118.4845308","50.9355387"],["-118.484474","50.9353976"],["-118.4843841","50.9352105"],["-118.4842765","50.9350158"],["-118.4822895","50.9321366"],["-118.4816468","50.9313654"],["-118.4804939","50.9306523"],["-118.4760517","50.9282176"],["-118.4755818","50.9280117"],["-118.4750169","50.9278329"],["-118.474595","50.9277286"],["-118.4741251","50.9276962"],["-118.4735592","50.9276856"],["-118.4729442","50.9277067"],["-118.4684684","50.9281"],["-118.4668406","50.9282293"],["-118.463084","50.9285465"],["-118.4621783","50.9285906"],["-118.4610798","50.9287036"],["-118.4603265","50.9288689"],["-118.4596408","50.9290934"],["-118.4589715","50.9293813"],["-118.4582683","50.929777"],["-118.4567473","50.9302072"],["-118.4546538","50.930704"],["-118.4524971","50.9312236"],["-118.4506708","50.9316298"],["-118.4486787","50.9320712"],["-118.4480561","50.9322461"],["-118.4474494","50.9324888"],["-118.446967","50.9327165"],["-118.4454366","50.9334277"],["-118.4448667","50.9336603"],["-118.4445616","50.9337703"],["-118.4431393","50.9340586"],["-118.4421479","50.9342783"],["-118.4410646","50.9346031"],["-118.4398286","50.9349768"],["-118.4378004","50.9355015"],["-118.4366923","50.9357388"],["-118.4354306","50.936006"],["-118.4334311","50.9364811"],["-118.4328814","50.9366447"],["-118.4323965","50.9368162"],["-118.4319018","50.9369893"],["-118.4304287","50.937607"],["-118.4292826","50.9382126"],["-118.4289467","50.9384104"],["-118.4286451","50.938628"],["-118.4283409","50.9389085"],["-118.4280604","50.939182"],["-118.4278005","50.9394737"],["-118.4273598","50.9400342"],["-118.4271692","50.9403943"],["-118.4269036","50.9409489"],["-118.4265763","50.9416109"],["-118.426353","50.9419646"],["-118.4260868","50.9423226"],["-118.4257847","50.9426148"],["-118.4252655","50.9430711"],["-118.4248575","50.9433528"],["-118.4244603","50.9436015"],["-118.4240589","50.9438223"],["-118.4237102","50.9439973"],["-118.4229886","50.9442656"],["-118.419133","50.9452344"],["-118.4175648","50.9456594"],["-118.4164784","50.9461043"],["-118.4153277","50.946761"],["-118.4147241","50.9471811"],["-118.4144479","50.947392"],["-118.4141848","50.9476198"],["-118.4138683","50.9478712"],["-118.4135603","50.9481203"],["-118.4132532","50.9483145"],["-118.4129776","50.9484687"],["-118.4125058","50.9486334"],["-118.4110957","50.9490223"],["-118.4099553","50.9493249"],["-118.409132","50.9495948"],["-118.4084468","50.9498818"],["-118.4071455","50.9506406"],["-118.4066157","50.9510313"],["-118.4060664","50.9514721"],["-118.4048537","50.9525364"],["-118.4034384","50.9540138"],["-118.4020846","50.9554966"],["-118.401481","50.9562188"],["-118.4010755","50.9566646"],["-118.4003366","50.9572156"],["-118.3995962","50.9575841"],["-118.3986604","50.9579222"],["-118.3962656","50.958572"],["-118.3950676","50.9590099"],["-118.3939908","50.9594983"],["-118.3914769","50.9603906"],["-118.385217","50.9625651"],["-118.384699","50.9627117"],["-118.3842879","50.9628052"],["-118.3837762","50.9628954"],["-118.3831529","50.9629751"],["-118.3827295","50.9629986"],["-118.3821743","50.9629905"],["-118.3772936","50.9628206"],["-118.3762811","50.9628231"],["-118.3754969","50.9628412"],["-118.3745439","50.9629016"],["-118.374114","50.9629479"],["-118.3736861","50.9630146"],["-118.373251","50.9631171"],["-118.3727581","50.9632944"],["-118.3720563","50.963628"],["-118.3713884","50.9639405"],["-118.3705356","50.9643204"],["-118.3696629","50.9646715"],["-118.3665347","50.9656947"],["-118.3657524","50.9658941"],["-118.3651878","50.9660127"],["-118.3646355","50.9661113"],["-118.3631414","50.9663397"],["-118.3622521","50.9665472"],["-118.3619146","50.9666539"],["-118.3614165","50.9668381"],["-118.3609324","50.9670429"],["-118.3605082","50.967249"],["-118.3601646","50.9674669"],["-118.3597594","50.9677755"],["-118.3589204","50.9684917"],["-118.3580657","50.9692168"],["-118.3576867","50.9695124"],["-118.3573809","50.9697041"],["-118.356822","50.9699873"],["-118.3563161","50.9702241"],["-118.3557909","50.9704274"],["-118.3551713","50.9706079"],["-118.3545378","50.9707469"],["-118.3537034","50.9708647"],["-118.351999","50.9710713"],["-118.3510715","50.97117"],["-118.3503299","50.9712198"],["-118.3485821","50.9712866"],["-118.3478334","50.9712913"],["-118.3468002","50.9712621"],["-118.3399247","50.9709592"],["-118.3392386","50.9709704"],["-118.3385816","50.9710236"],["-118.3379894","50.9710898"],["-118.3372314","50.9712158"],["-118.3341118","50.9719119"],["-118.3332434","50.9721589"],["-118.3310693","50.9727345"],["-118.3300646","50.9730092"],["-118.3293727","50.9732072"],["-118.3289172","50.9733734"],["-118.3284645","50.9735899"],["-118.3242504","50.9760978"],["-118.3231902","50.9767569"],["-118.3217925","50.9775753"],["-118.3212457","50.9778152"],["-118.3206364","50.9780437"],["-118.3191464","50.9784948"],["-118.3170958","50.9789898"],["-118.3147489","50.979631"],["-118.3141723","50.9797542"],["-118.3137061","50.9798375"],["-118.3133067","50.9798837"],["-118.3128584","50.9799156"],["-118.3123625","50.9799277"],["-118.3118611","50.9799222"],["-118.3113015","50.9798807"],["-118.3102257","50.9797321"],["-118.3095851","50.9796343"],["-118.3088916","50.9795414"],["-118.3083643","50.9794862"],["-118.3078747","50.9794569"],["-118.3072838","50.9794373"],["-118.3066921","50.9794502"],["-118.3061183","50.9794887"],["-118.3054659","50.9795666"],["-118.3047354","50.979703"],["-118.3040153","50.9798823"],["-118.3033858","50.9800683"],["-118.3029132","50.9802247"],["-118.3024648","50.9803869"],["-118.3019212","50.9806361"],["-118.3013377","50.9809277"],["-118.3004308","50.9814487"],["-118.2991619","50.9822211"],["-118.2957015","50.9843775"],["-118.2952103","50.9846403"],["-118.2947526","50.9848658"],["-118.2943327","50.9850646"],["-118.2932486","50.9854987"],["-118.2911828","50.9861649"],["-118.2882579","50.9869988"],["-118.2762236","50.9903584"],["-118.2751625","50.9906338"],["-118.2727007","50.9912365"],["-118.2719676","50.991372"],["-118.2711244","50.9915139"],["-118.2704291","50.9916031"],["-118.2694198","50.9916703"],["-118.2683362","50.9917175"],["-118.2649921","50.991747"],["-118.2615036","50.991756"],["-118.2602665","50.9917783"],["-118.259504","50.991835"],["-118.2581042","50.9919884"],["-118.2574661","50.992071"],["-118.2543657","50.9925612"],["-118.2488295","50.9934012"],["-118.2468241","50.9937078"],["-118.2459323","50.9938706"],["-118.2454485","50.9940012"],["-118.2449875","50.9941514"],["-118.244448","50.9943979"],["-118.2439454","50.9946825"],["-118.2435289","50.9949866"],["-118.2430401","50.9955406"],["-118.2416388","50.997716"],["-118.2412234","50.9982253"],["-118.2408275","50.9986104"],["-118.2403308","50.9990148"],["-118.2398708","50.9993257"],["-118.239455","50.9995676"],["-118.2389986","50.999805"],["-118.238261","51.0001405"],["-118.2340457","51.0019746"],["-118.2330832","51.0023767"],["-118.2323607","51.0025975"],["-118.2315837","51.0027727"],["-118.2307661","51.0028803"],["-118.2266119","51.0032419"],["-118.2256148","51.0033862"],["-118.2252652","51.0034632"],["-118.2247792","51.0036054"],["-118.224304","51.003765"],["-118.2239159","51.0039145"],["-118.2233893","51.0041856"],["-118.2228508","51.0045282"],["-118.2225288","51.0047544"],["-118.2218318","51.0051188"],["-118.2197753","51.0066469"],["-118.2180763","51.0078981"],["-118.2177282","51.0080979"],["-118.2168411","51.0087223"],["-118.2156987","51.0095048"],["-118.2152306","51.0097615"],["-118.2147938","51.0099512"],["-118.2142341","51.010149"],["-118.2137186","51.0102883"],["-118.2132308","51.010391"],["-118.2127633","51.0104625"],["-118.212304","51.010503"],["-118.2118762","51.0105309"],["-118.2114552","51.0105275"],["-118.2100179","51.0104301"],["-118.2092969","51.0102963"],["-118.2083097","51.0099712"],["-118.2080355","51.0099226"],["-118.2074591","51.0096462"],["-118.2068418","51.0092333"],["-118.2062594","51.0086974"],["-118.2057716","51.0082145"],["-118.2050827","51.007589"],["-118.2046954","51.0073378"],["-118.2042412","51.0071295"],["-118.2036787","51.0069512"],["-118.2032153","51.0068653"],["-118.2026538","51.0068165"],["-118.2014862","51.0067938"],["-118.2006177","51.0067705"],["-118.2000796","51.0067394"],["-118.1996094","51.0066656"],["-118.1991794","51.0065726"],["-118.1986331","51.0064169"],["-118.1981544","51.0062322"],["-118.1977133","51.0060318"],["-118.1974043","51.0058664"],["-118.1970448","51.0056192"],["-118.1914706","51.0016493"],["-118.1905688","51.001055"],["-118.1900276","51.0007583"],["-118.1893896","51.0004858"],["-118.1887202","51.0002529"],["-118.1879916","51.0000535"],["-118.187067","50.9998707"],["-118.1862671","50.999782"],["-118.185292","50.9997351"],["-118.1720593","50.9999807"],["-118.1713383","50.9999609"],["-118.170687","50.9999167"],["-118.1700653","50.9998497"],["-118.1693967","50.9997529"],["-118.1685182","50.9995981"],["-118.1677098","50.9993896"],["-118.1669881","50.9991705"],["-118.1659472","50.9988142"],["-118.1654762","50.9986208"],["-118.1651076","50.9984422"],["-118.1646411","50.9981808"],["-118.164132","50.9978788"],["-118.1635866","50.9974895"],["-118.1628517","50.9968777"],["-118.1621475","50.9962796"],["-118.161739","50.9959589"],["-118.1613686","50.9957168"],["-118.1609855","50.9954912"],["-118.1606211","50.9953143"],["-118.1599957","50.995052"],["-118.1590784","50.9946759"],["-118.1582003","50.9943195"],["-118.1560895","50.993469"],["-118.1552263","50.9931672"],["-118.1543488","50.9928768"],["-118.153501","50.9926296"],["-118.1526307","50.9924052"],["-118.1517807","50.9922246"],["-118.1510236","50.9920946"],["-118.1501084","50.9919736"],["-118.1492584","50.991877"],["-118.1481685","50.9917949"],["-118.1470582","50.9917346"],["-118.1456427","50.9917385"],["-118.1442803","50.9918055"],["-118.1430398","50.9918915"],["-118.1419545","50.9920266"],["-118.1407654","50.9922316"],["-118.139221","50.9925523"],["-118.1367657","50.9932905"],["-118.1354791","50.9937177"],["-118.1347509","50.9940054"],["-118.1341115","50.9943027"],["-118.133584","50.9946007"],["-118.133068","50.9949335"],["-118.1325549","50.9953282"],["-118.1309608","50.9967195"],["-118.1304446","50.9971566"],["-118.1300211","50.9974479"],["-118.1295972","50.9976755"],["-118.12925","50.9978229"],["-118.1288915","50.9979658"],["-118.1285635","50.9980827"],["-118.1255453","50.9990667"],["-118.122572","51.0000643"],["-118.1219311","51.000377"],["-118.1206769","51.0011407"],["-118.1165894","51.0043573"],["-118.1148418","51.0056505"],["-118.1139339","51.0061877"],["-118.1126352","51.006746"],["-118.1110262","51.0072891"],["-118.1095642","51.0075914"],["-118.1040127","51.0084805"],["-118.1019157","51.0088177"],["-118.100985","51.0090567"],["-118.0999337","51.0094272"],["-118.0959998","51.0111359"],["-118.094714","51.0115774"],["-118.0921635","51.0123498"],["-118.0910969","51.0127072"],["-118.0900857","51.0130922"],["-118.0890863","51.0135193"],["-118.0879351","51.0140587"],["-118.0841288","51.0159584"],["-118.0833962","51.0162654"],["-118.0826417","51.016551"],["-118.081773","51.016834"],["-118.0807497","51.0171197"],["-118.0795421","51.0173957"],["-118.07041","51.0192311"],["-118.0690223","51.0195135"],["-118.0683524","51.0196791"],["-118.0677894","51.0198552"],["-118.0673593","51.0200243"],["-118.0669447","51.020206"],["-118.0655769","51.0208782"],["-118.0650677","51.0211123"],["-118.0646345","51.0212778"],["-118.0641447","51.0214501"],["-118.0635712","51.0216047"],["-118.0627688","51.0217859"],["-118.0562297","51.0229424"],["-118.0554285","51.0231314"],["-118.0548544","51.0233246"],["-118.0539761","51.0237326"],["-118.0524651","51.0245359"],["-118.051529","51.0250081"],["-118.0509294","51.025271"],["-118.0502785","51.0255342"],["-118.0495976","51.0257858"],["-118.04885","51.0260321"],["-118.0471901","51.0265005"],["-118.0459934","51.0267831"],["-118.0444149","51.0271146"],["-118.0420743","51.0274759"],["-118.0394898","51.0277511"],["-118.0373459","51.0280824"],["-118.0346609","51.0286882"],["-118.0297437","51.0300218"],["-118.0259279","51.0310474"],["-118.0210442","51.0323802"],["-118.0195618","51.032888"],["-118.0162047","51.0346183"],["-118.0153709","51.0349671"],["-118.0147041","51.0351809"],["-118.0139986","51.0353611"],["-118.0111293","51.0358213"],["-118.0079015","51.0362855"],["-118.0036467","51.0369053"],["-118.00252","51.0371159"],["-118.0013395","51.037456"],["-117.997247","51.0388665"],["-117.9928892","51.0404197"],["-117.9926191","51.0405041"],["-117.9915146","51.0408149"],["-117.9908877","51.0409397"],["-117.9903894","51.0409976"],["-117.9899196","51.0410339"],["-117.9893571","51.0410483"],["-117.9845892","51.0409145"],["-117.9828772","51.0409561"],["-117.9817457","51.0410806"],["-117.9801383","51.0413746"],["-117.977773","51.0419453"],["-117.9762102","51.0422481"],["-117.9749762","51.0423647"],["-117.9736965","51.0422462"],["-117.9711471","51.0418436"],["-117.9698781","51.0417316"],["-117.9688271","51.0417714"],["-117.9676024","51.0419569"],["-117.9662858","51.0422887"],["-117.9653311","51.0427421"],["-117.9624438","51.0443817"],["-117.960906","51.0449479"],["-117.9584754","51.0455096"],["-117.9527868","51.0468751"],["-117.9509667","51.0474456"],["-117.9482405","51.0487036"],["-117.9447527","51.0503581"],["-117.942966","51.0511289"],["-117.9418351","51.0515245"],["-117.9394141","51.0521323"],["-117.9385515","51.05233"],["-117.9375967","51.052598"],["-117.9369521","51.0528489"],["-117.9366687","51.052981"],["-117.9364545","51.0531345"],["-117.936283","51.053276"],["-117.9361109","51.0534336"],["-117.9359383","51.0536995"],["-117.9355762","51.0543679"],["-117.9354797","51.0546832"],["-117.9354908","51.054992"],["-117.9355439","51.0553292"],["-117.9356844","51.0557026"],["-117.935824","51.0561258"],["-117.9358487","51.056724"],["-117.9358166","51.0569934"],["-117.9357331","51.0572923"],["-117.9356015","51.0576079"],["-117.9350768","51.058563"],["-117.9348774","51.0590302"],["-117.9347484","51.0593676"],["-117.9346715","51.0596514"],["-117.9346051","51.0603892"],["-117.9346051","51.0617862"],["-117.9345445","51.0622937"],["-117.9343919","51.0626814"],["-117.9342373","51.0629988"],["-117.9339636","51.0633564"],["-117.9335781","51.0637643"],["-117.9327875","51.0645778"],["-117.9326379","51.0647885"],["-117.9325218","51.0650308"],["-117.9324163","51.0652228"],["-117.9322629","51.065468"],["-117.9321467","51.0657011"],["-117.9320368","51.0659403"],["-117.931979","51.0661599"],["-117.9319012","51.0664469"],["-117.9318389","51.0672007"],["-117.9317806","51.0676327"],["-117.9316935","51.0680092"],["-117.9315799","51.0683715"],["-117.931337","51.068974"],["-117.9310613","51.0694567"],["-117.9308619","51.0697423"],["-117.9306824","51.0698954"],["-117.9300638","51.0702501"],["-117.9291322","51.0708921"],["-117.9285617","51.0711759"],["-117.9282833","51.0713324"],["-117.928057","51.0714844"],["-117.9277672","51.0717338"],["-117.9274832","51.0720272"],["-117.9271152","51.0723206"],["-117.9266984","51.0726293"],["-117.9265494","51.0728377"],["-117.9264766","51.0730389"],["-117.9264186","51.0733498"],["-117.9264228","51.0736829"],["-117.9264914","51.0741058"],["-117.9268463","51.0747466"],["-117.9279993","51.076417"],["-117.9283365","51.0771268"],["-117.9285565","51.077837"],["-117.9285974","51.0786657"],["-117.9284289","51.079375"],["-117.9281909","51.0800079"],["-117.9277556","51.0806476"],["-117.9256399","51.0829233"],["-117.9211903","51.0876789"],["-117.9200313","51.08895"],["-117.9193244","51.0897486"],["-117.9166867","51.0925975"],["-117.8991254","51.111373"],["-117.8974915","51.1131235"],["-117.896785","51.1137677"],["-117.8960254","51.1143979"],["-117.8955434","51.114754"],["-117.8948367","51.1151667"],["-117.8935955","51.1158209"],["-117.8922718","51.1164248"],["-117.8913225","51.1168536"],["-117.8899021","51.117525"],["-117.8892853","51.1178329"],["-117.8886259","51.1182605"],["-117.8880025","51.1187712"],["-117.8874058","51.1193918"],["-117.8869323","51.1199894"],["-117.8865347","51.1205646"],["-117.8862692","51.1211045"],["-117.8860824","51.1217391"],["-117.8860375","51.1221721"],["-117.8860561","51.1226106"],["-117.8861416","51.1231322"],["-117.8862591","51.1237377"],["-117.8864405","51.124331"],["-117.8865384","51.1247379"],["-117.8865479","51.1250496"],["-117.8864868","51.1253597"],["-117.8863476","51.1256614"],["-117.8860956","51.1260092"],["-117.8856561","51.126383"],["-117.8848459","51.126874"],["-117.8839333","51.1274165"],["-117.883515","51.127765"],["-117.8832764","51.1281237"],["-117.8830914","51.1285917"],["-117.8830615","51.1291833"],["-117.8832895","51.1306037"],["-117.8832522","51.1311151"],["-117.8829222","51.1320068"],["-117.8826063","51.132743"],["-117.8824951","51.1332166"],["-117.8824306","51.1342579"],["-117.8823333","51.1347944"],["-117.8821157","51.1353445"],["-117.8817999","51.1358255"],["-117.8812369","51.136425"],["-117.8810333","51.1365929"],["-117.8808353","51.1367447"],["-117.880539","51.1369413"],["-117.8802439","51.1371013"],["-117.8799424","51.1372514"],["-117.8795949","51.1374016"],["-117.8789863","51.1376214"],["-117.8786862","51.1377086"],["-117.8783098","51.1378015"],["-117.8777654","51.1379026"],["-117.8728496","51.13864"],["-117.8710225","51.1389046"],["-117.8702308","51.1390209"],["-117.8697628","51.1390662"],["-117.8689417","51.1391065"],["-117.8602032","51.1388029"],["-117.8585252","51.1389374"],["-117.8572806","51.1391885"],["-117.8561943","51.1394978"],["-117.8525692","51.1406816"],["-117.8398016","51.14479"],["-117.8387749","51.1452485"],["-117.8382495","51.1456251"],["-117.8376396","51.1462761"],["-117.8372965","51.1469509"],["-117.8369475","51.1480051"],["-117.836252","51.1500252"],["-117.8358763","51.1508268"],["-117.8354323","51.1513105"],["-117.834775","51.1518123"],["-117.8338392","51.1521998"],["-117.8329501","51.1524547"],["-117.8317603","51.1526157"],["-117.8301591","51.1527102"],["-117.8292433","51.1527986"],["-117.8280915","51.153024"],["-117.8263539","51.1533804"],["-117.8244812","51.153755"],["-117.8229998","51.1538973"],["-117.8209845","51.1540135"],["-117.8200803","51.1542142"],["-117.8194734","51.1545203"],["-117.8189838","51.1548609"],["-117.8185062","51.155384"],["-117.818109","51.1557733"],["-117.8176336","51.1561177"],["-117.815862","51.156934"],["-117.8134781","51.157959"],["-117.8115979","51.1586557"],["-117.8096659","51.1592324"],["-117.806727","51.1599243"],["-117.8035434","51.160667"],["-117.8013872","51.1612538"],["-117.798846","51.1622681"],["-117.7952099","51.1639993"],["-117.7917916","51.1655914"],["-117.789346","51.1666022"],["-117.7867278","51.1675389"],["-117.7838794","51.1688322"],["-117.7719938","51.1751347"],["-117.7690086","51.1767071"],["-117.764595","51.1790901"],["-117.7618641","51.1808426"],["-117.7604659","51.1819262"],["-117.7583715","51.1836249"],["-117.7567785","51.1849787"],["-117.7555993","51.185715"],["-117.7539798","51.1862805"],["-117.7521467","51.1868421"],["-117.7511958","51.1872254"],["-117.7504991","51.1877138"],["-117.7499951","51.1883249"],["-117.7497353","51.1889031"],["-117.7493004","51.19035"],["-117.7487501","51.1919555"],["-117.7485988","51.1923388"],["-117.7484138","51.1926363"],["-117.7480077","51.1932391"],["-117.7477253","51.1936145"],["-117.7460007","51.1957678"],["-117.7454753","51.1965097"],["-117.7452505","51.1969443"],["-117.7451542","51.1973411"],["-117.7451829","51.197978"],["-117.745495","51.1995374"],["-117.745587","51.2000593"],["-117.7456188","51.2003349"],["-117.7456012","51.2006602"],["-117.74556","51.2009253"],["-117.7454382","51.2012202"],["-117.745212","51.201574"],["-117.7449963","51.2018327"],["-117.7447107","51.2021034"],["-117.7437165","51.2027286"],["-117.7430506","51.2030289"],["-117.7421636","51.2033802"],["-117.74107","51.2037591"],["-117.7393333","51.2043491"],["-117.7359306","51.2055281"],["-117.7351476","51.2057285"],["-117.7343733","51.2058885"],["-117.7336086","51.2060005"],["-117.7327734","51.2060819"],["-117.7317131","51.2061206"],["-117.7290174","51.2061195"],["-117.7284646","51.206127"],["-117.7279171","51.2061601"],["-117.7268049","51.2063051"],["-117.7262112","51.2064231"],["-117.7256721","51.2065898"],["-117.725135","51.206784"],["-117.7220625","51.2083778"],["-117.7204857","51.2090481"],["-117.7191162","51.2093702"],["-117.717318","51.2095878"],["-117.7152172","51.209723"],["-117.7140316","51.2098783"],["-117.7129931","51.2100982"],["-117.7093071","51.2111632"],["-117.7078833","51.2114784"],["-117.7039781","51.2120035"],["-117.7022284","51.2122025"],["-117.7010722","51.2123857"],["-117.6997317","51.2127274"],["-117.6982484","51.2132207"],["-117.6972536","51.2135818"],["-117.6940385","51.2146956"],["-117.6902367","51.2158623"],["-117.6885018","51.2164733"],["-117.6871985","51.2170708"],["-117.684459","51.2186662"],["-117.6825416","51.2198379"],["-117.6819194","51.2202983"],["-117.6806637","51.2213826"],["-117.6764593","51.2252828"],["-117.675404","51.2261752"],["-117.674994","51.2264884"],["-117.674694","51.2266779"],["-117.6739343","51.2271156"],["-117.6734598","51.2273702"],["-117.6712409","51.2285048"],["-117.6707891","51.228779"],["-117.6704194","51.2290161"],["-117.6700067","51.2293048"],["-117.6695984","51.2296417"],["-117.669113","51.2300744"],["-117.6684106","51.2308616"],["-117.6675875","51.231993"],["-117.666699","51.2333306"],["-117.6654704","51.2350074"],["-117.6648027","51.2357085"],["-117.6642504","51.2361712"],["-117.6634419","51.2366569"],["-117.6625212","51.2370405"],["-117.6605241","51.2376258"],["-117.65005","51.2403352"],["-117.6477402","51.240932"],["-117.6463518","51.2414167"],["-117.6438078","51.2425848"],["-117.6379789","51.2453204"],["-117.6371008","51.2456941"],["-117.6361579","51.2459447"],["-117.6353241","51.2460369"],["-117.6347871","51.2460634"],["-117.6338548","51.2459851"],["-117.6326591","51.2457297"],["-117.6315048","51.245502"],["-117.630403","51.2454288"],["-117.6292435","51.2454942"],["-117.6282447","51.2457102"],["-117.6239639","51.2466348"],["-117.6212186","51.2472329"],["-117.6205966","51.2473616"],["-117.6201121","51.2474535"],["-117.617363","51.2479026"],["-117.6160985","51.2481623"],["-117.6152323","51.2484513"],["-117.6137561","51.2491433"],["-117.6122165","51.2499475"],["-117.6115312","51.2502498"],["-117.6109991","51.2504568"],["-117.6101688","51.2507212"],["-117.6089287","51.2509499"],["-117.6064719","51.2510509"],["-117.6041258","51.2511144"],["-117.6015974","51.2512681"],["-117.5996151","51.2515433"],["-117.5977905","51.2518705"],["-117.596481","51.2522159"],["-117.595344","51.2525878"],["-117.5930385","51.2534847"],["-117.5856","51.256857"],["-117.5836923","51.2577006"],["-117.5830063","51.2579246"],["-117.5821622","51.258149"],["-117.5806408","51.2584868"],["-117.5661981","51.2613834"],["-117.5641222","51.261766"],["-117.5632496","51.2618697"],["-117.5619527","51.2619628"],["-117.5519691","51.2622661"],["-117.5509814","51.2622497"],["-117.5501716","51.2621592"],["-117.5493779","51.2619919"],["-117.548194","51.2615972"],["-117.5426052","51.25956"],["-117.5420131","51.2594076"],["-117.5414645","51.2593125"],["-117.5409357","51.2592673"],["-117.540436","51.2592402"],["-117.5399875","51.2592528"],["-117.5395562","51.2592902"],["-117.5390784","51.2593665"],["-117.5385733","51.2594725"],["-117.5348985","51.2606623"],["-117.5268358","51.2632649"],["-117.5176655","51.2657265"],["-117.5159305","51.2662806"],["-117.5142673","51.2669643"],["-117.5118705","51.2680252"],["-117.5113135","51.2682223"],["-117.5105022","51.2683479"],["-117.5097015","51.2684537"],["-117.5071238","51.2685894"],["-117.5060296","51.2686398"],["-117.5056586","51.2686683"],["-117.5050201","51.2687903"],["-117.5044294","51.2689818"],["-117.5038065","51.2693701"],["-117.5036305","51.2695467"],["-117.5033599","51.2699646"],["-117.5032846","51.2703408"],["-117.5033416","51.2707702"],["-117.5035106","51.2711118"],["-117.503837","51.2714865"],["-117.5042775","51.2718713"],["-117.5049984","51.2722336"],["-117.5066184","51.272892"],["-117.507203","51.2731974"],["-117.5077142","51.2736562"],["-117.5081851","51.2743025"],["-117.5129483","51.2817756"],["-117.513322","51.2825651"],["-117.513426","51.283357"],["-117.5129536","51.2857009"],["-117.5129996","51.2863152"],["-117.5132733","51.2870863"],["-117.5158313","51.291806"],["-117.5169939","51.2936297"],["-117.5193894","51.2979445"],["-117.5198335","51.2990611"],["-117.5199939","51.2998967"],["-117.5201359","51.3017397"],["-117.5202887","51.3037106"],["-117.5202875","51.3042807"],["-117.5202202","51.3047009"],["-117.5201386","51.3051004"],["-117.5200285","51.3054023"],["-117.5198001","51.3058659"],["-117.5196138","51.3062249"],["-117.5191835","51.3068175"],["-117.515953","51.3108349"],["-117.5142477","51.3126201"],["-117.5131612","51.3134051"],["-117.512699","51.3136767"],["-117.5121003","51.3139183"],["-117.5111084","51.3142524"],["-117.4955014","51.3183466"],["-117.4943544","51.3185964"],["-117.4919633","51.3192103"],["-117.4909668","51.3195459"],["-117.490078","51.319778"],["-117.4891612","51.319954"],["-117.4878817","51.3201161"],["-117.4834359","51.3206285"],["-117.4831456","51.3206533"],["-117.4826178","51.3207659"],["-117.4820048","51.3209179"],["-117.4812696","51.3211506"],["-117.4792153","51.3218711"],["-117.4765784","51.3228494"],["-117.4758567","51.3230684"],["-117.475232","51.3232188"],["-117.4742244","51.3233713"],["-117.4708903","51.323607"],["-117.467517","51.3240532"],["-117.4660932","51.3243341"],["-117.4648509","51.3247861"],["-117.4637321","51.3252414"],["-117.4625317","51.3256586"],["-117.4601897","51.326297"],["-117.4548136","51.3278121"],["-117.4531801","51.3283363"],["-117.4524476","51.3285656"],["-117.451876","51.3287279"],["-117.451419","51.3288223"],["-117.4501816","51.3290067"],["-117.4495409","51.3291174"],["-117.448862","51.3292655"],["-117.4476219","51.3295662"],["-117.4470731","51.329717"],["-117.4465928","51.3298992"],["-117.4461042","51.3301378"],["-117.4455838","51.3304608"],["-117.4451355","51.3308132"],["-117.4437164","51.3323948"],["-117.4424681","51.3338156"],["-117.4418847","51.334477"],["-117.441222","51.3352369"],["-117.4406126","51.3359573"],["-117.4402018","51.3364779"],["-117.4394744","51.3375543"],["-117.4390395","51.3382631"],["-117.4386859","51.3389007"],["-117.4383246","51.3395524"],["-117.4380125","51.3400835"],["-117.43771","51.3405545"],["-117.4356775","51.3432863"],["-117.4346819","51.344683"],["-117.4344799","51.3451336"],["-117.4343615","51.345614"],["-117.4343602","51.3458949"],["-117.4343844","51.3461519"],["-117.4344383","51.3463786"],["-117.4345405","51.3466384"],["-117.4346765","51.3468984"],["-117.4348986","51.3472185"],["-117.4354779","51.3479302"],["-117.4357628","51.3483585"],["-117.4359041","51.3486799"],["-117.4360027","51.3490154"],["-117.4360689","51.3494932"],["-117.4364317","51.3524134"],["-117.4365376","51.3528737"],["-117.4366845","51.3533062"],["-117.436821","51.3536205"],["-117.4370006","51.3539644"],["-117.437737","51.3551602"],["-117.4379423","51.3555264"],["-117.4380733","51.3557863"],["-117.4381628","51.3560364"],["-117.4382752","51.3564991"],["-117.4383884","51.357903"],["-117.4385059","51.3592215"],["-117.4385596","51.3598008"],["-117.4386421","51.3602955"],["-117.4388166","51.3608699"],["-117.439008","51.3613757"],["-117.4392333","51.3618437"],["-117.4394915","51.3622855"],["-117.4399907","51.3630088"],["-117.4430648","51.3671028"],["-117.443331","51.3674088"],["-117.4436861","51.3677623"],["-117.4441219","51.3681306"],["-117.4456444","51.3692841"],["-117.4462908","51.3697773"],["-117.4466854","51.3701417"],["-117.4470788","51.3705255"],["-117.4477619","51.3713036"],["-117.4495723","51.3734901"],["-117.4501877","51.3743007"],["-117.4507324","51.3751708"],["-117.4526114","51.3784305"],["-117.45284","51.378915"],["-117.4529132","51.379357"],["-117.4529419","51.3798111"],["-117.4528844","51.3801831"],["-117.4527158","51.3807308"],["-117.4524446","51.3812093"],["-117.4518615","51.3818947"],["-117.4488294","51.3845736"],["-117.448348","51.3851666"],["-117.4481303","51.3858"],["-117.4481202","51.3863334"],["-117.4482564","51.3868361"],["-117.44872","51.3874476"],["-117.4494093","51.3880363"],["-117.4527384","51.3904696"],["-117.4569179","51.3942728"],["-117.4581718","51.3951801"],["-117.4589512","51.3957293"],["-117.4596205","51.3962717"],["-117.4602185","51.3968401"],["-117.4608922","51.3975909"],["-117.4617493","51.3987217"],["-117.4643375","51.4022802"],["-117.4648782","51.4029162"],["-117.465401","51.4033629"],["-117.4662455","51.4038898"],["-117.4676105","51.4046835"],["-117.4683609","51.4051572"],["-117.4687944","51.4055094"],["-117.469264","51.4060036"],["-117.4697191","51.4065537"],["-117.4701904","51.4072324"],["-117.4705775","51.4078906"],["-117.4709001","51.4085424"],["-117.4711314","51.4090921"],["-117.4713422","51.4097137"],["-117.4752911","51.4260617"],["-117.4755844","51.42684"],["-117.4758764","51.427378"],["-117.4764211","51.4281818"],["-117.4784563","51.4308977"],["-117.4789812","51.4319971"],["-117.479196","51.4329498"],["-117.4791353","51.4337863"],["-117.4789533","51.4345356"],["-117.4785789","51.4353786"],["-117.4776343","51.4369135"],["-117.4772289","51.4378463"],["-117.4770163","51.4385192"],["-117.4769378","51.439257"],["-117.476976","51.4401794"],["-117.4771607","51.4409468"],["-117.4774129","51.4416959"],["-117.4776973","51.4424414"],["-117.4778881","51.4430078"],["-117.4780322","51.4435588"],["-117.4781002","51.4441513"],["-117.4782218","51.4462201"],["-117.4782813","51.4481659"],["-117.4782459","51.4505057"],["-117.4783012","51.4510884"],["-117.4783866","51.4514952"],["-117.4785592","51.451975"],["-117.4790098","51.4531179"],["-117.4791743","51.4536773"],["-117.4792265","51.4541983"],["-117.4791856","51.4548008"],["-117.4790723","51.4559763"],["-117.4790335","51.4573549"],["-117.4791316","51.4603213"],["-117.4791964","51.4612708"],["-117.4793288","51.4618154"],["-117.4795358","51.4623336"],["-117.4802925","51.4639918"],["-117.4806315","51.4650786"],["-117.4808857","51.4661062"],["-117.481223","51.4677308"],["-117.4814742","51.4692529"],["-117.4818016","51.4709696"],["-117.4822079","51.4730606"],["-117.4824179","51.4744213"],["-117.482321","51.4756782"],["-117.4819777","51.4767055"],["-117.4812668","51.4778695"],["-117.4763645","51.4849375"],["-117.4746212","51.4875358"],["-117.4732422","51.4895034"],["-117.4714737","51.4912986"],["-117.4665529","51.4955292"],["-117.4649402","51.4971959"],["-117.4621888","51.5009371"],["-117.4615578","51.5017459"],["-117.4612233","51.5020521"],["-117.460892","51.5022837"],["-117.4605712","51.5024713"],["-117.4602132","51.5026336"],["-117.45991","51.5027532"],["-117.4595802","51.5028658"],["-117.4590927","51.5030064"],["-117.4543995","51.5040127"],["-117.4517071","51.5045981"],["-117.4508825","51.5048132"],["-117.4502033","51.5050548"],["-117.4495756","51.5053465"],["-117.4491097","51.5056434"],["-117.4487494","51.5059308"],["-117.4483348","51.5063093"],["-117.4478613","51.5068642"],["-117.4469451","51.5080279"],["-117.4458211","51.5094074"],["-117.4453856","51.5098863"],["-117.445005","51.5102214"],["-117.4445527","51.5105535"],["-117.4439264","51.5109307"],["-117.4433331","51.5112246"],["-117.4427807","51.5114721"],["-117.4421931","51.5116744"],["-117.4414889","51.5118569"],["-117.4408696","51.5119994"],["-117.4403189","51.5121038"],["-117.4397878","51.5121796"],["-117.4392015","51.5122249"],["-117.4385694","51.5122473"],["-117.4378833","51.512228"],["-117.4372957","51.5121944"],["-117.4367478","51.51214"],["-117.4361494","51.5120547"],["-117.4354754","51.5119054"],["-117.4332833","51.5112975"],["-117.4300506","51.5104053"],["-117.4274058","51.5097355"],["-117.4262096","51.5094155"],["-117.4252976","51.509126"],["-117.4246627","51.5088862"],["-117.424033","51.5086074"],["-117.4228059","51.5079378"],["-117.400804","51.495045"],["-117.3986606","51.4937993"],["-117.3956001","51.4923187"],["-117.3860372","51.4884184"],["-117.3620797","51.4787843"],["-117.3614124","51.478557"],["-117.3608353","51.4784232"],["-117.3599645","51.4783363"],["-117.3594066","51.478343"],["-117.3590481","51.478369"],["-117.3587163","51.4784126"],["-117.3582804","51.478499"],["-117.3577629","51.4786223"],["-117.3572365","51.4788156"],["-117.3564285","51.4791749"],["-117.3555916","51.4795399"],["-117.3547789","51.479855"],["-117.3535866","51.4801883"],["-117.33659","51.4843526"],["-117.3341319","51.4849395"],["-117.3286496","51.4863369"],["-117.3241529","51.4874172"],["-117.3211719","51.4882083"],["-117.3008428","51.4931438"],["-117.2983914","51.4937001"],["-117.297525","51.4938107"],["-117.2965858","51.4938817"],["-117.2956159","51.4938807"],["-117.2946651","51.4937943"],["-117.2936729","51.4936577"],["-117.2627666","51.4872363"],["-117.2600116","51.4865707"],["-117.258961","51.4862876"],["-117.2578288","51.4858968"],["-117.2567063","51.4855032"],["-117.2301351","51.4761741"],["-117.22782","51.4754121"],["-117.2267167","51.4751366"],["-117.2256549","51.4749391"],["-117.2248822","51.4748925"],["-117.2241224","51.4748861"],["-117.2232014","51.4749647"],["-117.2224813","51.4750867"],["-117.2218218","51.4752147"],["-117.2213777","51.4753367"],["-117.2200932","51.4759151"],["-117.2191515","51.4766267"],["-117.2186813","51.4771291"],["-117.218346","51.477568"],["-117.2180708","51.4782005"],["-117.2179859","51.4787718"],["-117.2180183","51.4795112"],["-117.2181754","51.4800825"],["-117.2185623","51.4807139"],["-117.2190716","51.4812926"],["-117.2197921","51.4819403"],["-117.2230627","51.4845499"],["-117.2267146","51.4874906"],["-117.2275499","51.4882794"],["-117.2278737","51.4887177"],["-117.2280782","51.489208"],["-117.2282158","51.4897267"],["-117.2282127","51.4903625"],["-117.2280407","51.4910785"],["-117.2265059","51.4942605"],["-117.2261019","51.4948648"],["-117.2255273","51.4953558"],["-117.2249947","51.495662"],["-117.2242124","51.4959421"],["-117.223256","51.4961202"],["-117.2224528","51.4961737"],["-117.2215627","51.4961361"],["-117.2185695","51.4954134"],["-117.2076704","51.4927304"],["-117.2060077","51.4921973"],["-117.20486","51.4917466"],["-117.2036994","51.4911945"],["-117.2014773","51.4899185"],["-117.2001483","51.4892387"],["-117.1985218","51.488593"],["-117.1894566","51.4853641"],["-117.1885467","51.4849869"],["-117.1881356","51.4848398"],["-117.187484","51.4846699"],["-117.1866961","51.4844818"],["-117.1858543","51.4843165"],["-117.1849336","51.4841915"],["-117.1841317","51.4841135"],["-117.1836485","51.4840913"],["-117.1828792","51.4841053"],["-117.1815962","51.4842173"],["-117.1802239","51.4843716"],["-117.178676","51.4846325"],["-117.1779789","51.4848046"],["-117.1771313","51.485065"],["-117.1764374","51.4852937"],["-117.1751579","51.4856974"],["-117.173353","51.4861338"],["-117.172711","51.4862551"],["-117.1714637","51.4863882"],["-117.1707308","51.4864354"],["-117.1696014","51.4864623"],["-117.1690628","51.4864592"],["-117.1684852","51.4864414"],["-117.167801","51.4863922"],["-117.1669919","51.4863184"],["-117.1662715","51.4862341"],["-117.1655309","51.4861183"],["-117.1646805","51.4859664"],["-117.1630278","51.4855731"],["-117.1627106","51.4854665"],["-117.1623136","51.4853259"],["-117.1618106","51.4851372"],["-117.1608667","51.4847295"],["-117.1596973","51.4841647"],["-117.1455369","51.4766221"],["-117.142624","51.4751032"],["-117.1400665","51.4737572"],["-117.1390319","51.4732383"],["-117.1377173","51.4726291"],["-117.130132","51.4692892"],["-117.1287231","51.4686684"],["-117.1282719","51.4684513"],["-117.1272016","51.4678312"],["-117.1264756","51.4674295"],["-117.1222722","51.4647462"],["-117.1146121","51.4598592"],["-117.1108842","51.4578965"],["-117.1094375","51.4569878"],["-117.1075481","51.4557501"],["-117.1071389","51.4555005"],["-117.106294","51.4550305"],["-117.105509","51.4545957"],["-117.1025891","51.4529021"],["-117.0961913","51.4490047"],["-117.09598","51.448858"],["-117.0957978","51.4487075"],["-117.0955604","51.4484763"],["-117.095246","51.4481163"],["-117.094558","51.4472289"],["-117.0942726","51.4468855"],["-117.0940806","51.44669"],["-117.0938506","51.446485"],["-117.0935819","51.4462684"],["-117.0932223","51.4460234"],["-117.0928691","51.4457985"],["-117.083685","51.4409609"],["-117.0762672","51.4359952"],["-117.0752321","51.4353288"],["-117.0745034","51.4348905"],["-117.0719706","51.4335216"],["-117.0647673","51.4298121"],["-117.062782","51.4287719"],["-117.0622399","51.4284681"],["-117.0616643","51.4281029"],["-117.0614","51.4278987"],["-117.0609411","51.4274664"],["-117.0600206","51.4265337"],["-117.0588049","51.4252582"],["-117.0323181","51.3975536"],["-117.0298086","51.3949316"],["-117.0293298","51.3943982"],["-117.0289931","51.3940076"],["-117.0287115","51.3936327"],["-117.0284876","51.3932909"],["-117.0282434","51.3928912"],["-117.0279943","51.3924469"],["-117.0278179","51.3920781"],["-117.0275275","51.3912675"],["-117.0255225","51.3854969"],["-117.0250815","51.3844943"],["-117.0242577","51.3836041"],["-117.0240071","51.3832887"],["-117.0237849","51.3829525"],["-117.0234712","51.3824458"],["-117.0210573","51.378359"],["-117.0208419","51.3779642"],["-117.0207223","51.3776965"],["-117.0206142","51.3774206"],["-117.0205339","51.377111"],["-117.0205032","51.376852"],["-117.0204792","51.3766085"],["-117.0204789","51.3763433"],["-117.020518","51.3760148"],["-117.0206334","51.3753181"],["-117.0207283","51.3747472"],["-117.0207863","51.374341"],["-117.0207745","51.3741534"],["-117.0207348","51.3739234"],["-117.0206622","51.3736902"],["-117.0205632","51.3734677"],["-117.0204292","51.3732658"],["-117.0202815","51.3730941"],["-117.0200799","51.3728882"],["-117.0196157","51.372481"],["-117.0191114","51.3720378"],["-117.0189755","51.3718608"],["-117.0188454","51.3716598"],["-117.0187176","51.3713697"],["-117.0183895","51.3704656"],["-117.0182721","51.3702106"],["-117.018165","51.3700058"],["-117.0179042","51.3696463"],["-117.01716","51.3686599"],["-117.0168781","51.3682391"],["-117.0166189","51.3677232"],["-117.0162164","51.3669087"],["-117.0159305","51.3663538"],["-117.0157211","51.3660093"],["-117.01537","51.3655331"],["-117.0147737","51.3648236"],["-117.0141768","51.3641239"],["-117.0139547","51.3638609"],["-117.0136613","51.3633857"],["-117.013112","51.3624697"],["-117.0126168","51.3617343"],["-117.0123397","51.3613826"],["-117.012107","51.361106"],["-117.0116801","51.3606966"],["-117.009181","51.3583845"],["-117.0087343","51.3579338"],["-117.008487","51.3576059"],["-117.0078536","51.3566966"],["-117.0064497","51.3546805"],["-117.0062144","51.3543825"],["-117.0059509","51.3541139"],["-117.0057147","51.3538662"],["-117.005324","51.3535259"],["-117.0044741","51.3528314"],["-117.0039175","51.3523833"],["-117.0029585","51.35146"],["-117.0020107","51.3505122"],["-117.0013704","51.3498625"],["-117.0012615","51.3497385"],["-117.0011618","51.3495991"],["-117.001039","51.3494071"],["-116.999718","51.3468303"],["-116.9991419","51.3457074"],["-116.9990013","51.3454398"],["-116.9988502","51.3451729"],["-116.9973416","51.3427911"],["-116.9932669","51.3364175"],["-116.992893","51.3358659"],["-116.9926149","51.3355239"],["-116.9918973","51.334767"],["-116.9915032","51.3343366"],["-116.9913049","51.334045"],["-116.9909622","51.333454"],["-116.9905981","51.3329135"],["-116.9903098","51.3325809"],["-116.9900059","51.332288"],["-116.9884425","51.3310147"],["-116.9871954","51.3300042"],["-116.986217","51.329249"],["-116.9857033","51.3289414"],["-116.9840135","51.3280755"],["-116.9835612","51.32779"],["-116.9824537","51.3269751"],["-116.9771112","51.3234405"],["-116.976406","51.323023"],["-116.9760195","51.3226717"],["-116.9756206","51.3222546"],["-116.9753447","51.3219085"],["-116.9751142","51.3215549"],["-116.9748494","51.3209332"],["-116.9747787","51.3206427"],["-116.9747493","51.3203347"],["-116.9745462","51.3195997"],["-116.9742566","51.3186794"],["-116.9737424","51.3168844"],["-116.9728172","51.313821"],["-116.9726098","51.3132606"],["-116.972476","51.3130338"],["-116.9720881","51.3124843"],["-116.971657","51.3120305"],["-116.970191","51.3107456"],["-116.9677401","51.3086854"],["-116.965349","51.3066567"],["-116.9651705","51.3064662"],["-116.9650348","51.3062693"],["-116.9648969","51.3059358"],["-116.9647767","51.3055969"],["-116.9647239","51.3052823"],["-116.9647042","51.3048936"],["-116.9648146","51.3038782"],["-116.9648244","51.3034009"],["-116.964753","51.3031026"],["-116.9646553","51.3027789"],["-116.9645072","51.3024379"],["-116.9643673","51.3020738"],["-116.9642181","51.3017715"],["-116.9639845","51.3014199"],["-116.9636517","51.3011032"],["-116.9632878","51.3008297"],["-116.9628392","51.3006045"],["-116.9624646","51.3004883"],["-116.9619091","51.3003702"],["-116.9613643","51.3002825"],["-116.9607653","51.3002126"],["-116.9601532","51.3001963"],["-116.9594098","51.3002406"],["-116.9577965","51.300444"],["-116.9570106","51.3005655"],["-116.9538279","51.3011676"],["-116.9530828","51.3013379"],["-116.9525512","51.3014668"],["-116.9513956","51.3017291"],["-116.9508444","51.301837"],["-116.9504308","51.3018995"],["-116.9502122","51.3019114"],["-116.9495475","51.3019564"],["-116.9491687","51.3019619"],["-116.9487164","51.3019614"],["-116.9482856","51.3019353"],["-116.9478944","51.3018944"],["-116.9474622","51.3018389"],["-116.9469256","51.3017399"],["-116.9444612","51.3011887"],["-116.9438545","51.3010972"],["-116.9429925","51.3010219"],["-116.9424996","51.3010057"],["-116.9419169","51.3010105"],["-116.9413297","51.3010229"],["-116.9408135","51.3010347"],["-116.9402864","51.3010313"],["-116.9398253","51.301003"],["-116.9392715","51.3009376"],["-116.9387589","51.3008435"],["-116.9383528","51.3007479"],["-116.9378925","51.3006114"],["-116.9373759","51.3004425"],["-116.9366683","51.3002"],["-116.9361023","51.3000234"],["-116.9356097","51.2998987"],["-116.9350927","51.2997876"],["-116.9345909","51.2997087"],["-116.9339572","51.2996316"],["-116.9332762","51.299554"],["-116.932635","51.2994737"],["-116.9321068","51.299385"],["-116.9314019","51.2992293"],["-116.929921","51.2988719"],["-116.9294401","51.2987751"],["-116.9287989","51.2986986"],["-116.928248","51.2986632"],["-116.9278218","51.2986526"],["-116.9273866","51.2986623"],["-116.9267013","51.2987029"],["-116.9259915","51.2987491"],["-116.92522","51.2988008"],["-116.9246642","51.2988163"],["-116.9240587","51.2987868"],["-116.9227525","51.2986836"],["-116.9221459","51.2986473"],["-116.9214938","51.2986428"],["-116.9207896","51.2986843"],["-116.9185529","51.2988701"],["-116.9180388","51.2988645"],["-116.9167637","51.2987828"],["-116.9161765","51.2987261"],["-116.915008","51.2985518"],["-116.914483","51.2985071"],["-116.9136524","51.2983699"],["-116.9129202","51.2982977"],["-116.9123789","51.29833"],["-116.911948","51.2983952"],["-116.9111026","51.2986158"],["-116.9106832","51.2986719"],["-116.9104666","51.2986802"],["-116.9102443","51.2986821"],["-116.9099745","51.298687"],["-116.909736","51.2987058"],["-116.9095354","51.2987494"],["-116.9088989","51.2989923"],["-116.9086641","51.2990835"],["-116.9084081","51.299226"],["-116.9082443","51.2993434"],["-116.9080235","51.2994787"],["-116.9074522","51.2998279"],["-116.9072971","51.3000009"],["-116.9072386","51.3001927"],["-116.9071879","51.3004139"],["-116.9070714","51.300577"],["-116.9069112","51.3007226"],["-116.9066759","51.3008324"],["-116.9063849","51.3008827"],["-116.9060001","51.3008702"],["-116.9056678","51.3008571"],["-116.9054002","51.300858"],["-116.9051732","51.3008813"],["-116.9033074","51.3013419"],["-116.9022074","51.3015542"],["-116.901262","51.301674"],["-116.9002434","51.3017301"],["-116.8983333","51.3017589"],["-116.897701","51.3018125"],["-116.8972889","51.3019137"],["-116.8968775","51.3020774"],["-116.8965411","51.3023102"],["-116.8961779","51.302701"],["-116.8959886","51.3028265"],["-116.8957256","51.3029004"],["-116.8951834","51.3029416"],["-116.8940911","51.3030009"],["-116.8934947","51.3030701"],["-116.8931904","51.3031376"],["-116.8929595","51.303216"],["-116.8927653","51.3033332"],["-116.8925816","51.3035111"],["-116.89217","51.3040392"],["-116.8919196","51.3042604"],["-116.8916437","51.3044759"],["-116.8913709","51.3046434"],["-116.8910858","51.304765"],["-116.8908715","51.3048319"],["-116.8905845","51.3049021"],["-116.8902484","51.3049509"],["-116.8896004","51.3049872"],["-116.8856737","51.3050445"],["-116.8840814","51.3050958"],["-116.8832938","51.3051815"],["-116.8802092","51.3058769"],["-116.8785359","51.3063619"],["-116.8780575","51.3064598"],["-116.8776564","51.3064796"],["-116.8768523","51.3064302"],["-116.8760201","51.3064755"],["-116.8751809","51.3065797"],["-116.8747444","51.3066053"],["-116.8744718","51.3065708"],["-116.8741555","51.306437"],["-116.8737352","51.3061303"],["-116.8735819","51.3059416"],["-116.873382","51.3055778"],["-116.8731239","51.3053409"],["-116.8727534","51.3051421"],["-116.8715409","51.3046699"],["-116.8710412","51.3044305"],["-116.8705684","51.3041188"],["-116.8698345","51.3033669"],["-116.8673578","51.3012942"],["-116.8645859","51.2994857"],["-116.8626383","51.2985869"],["-116.8556075","51.2959965"],["-116.8547907","51.2956018"],["-116.8535407","51.2950844"],["-116.8515129","51.2942437"],["-116.8509461","51.2940315"],["-116.8499781","51.2937403"],["-116.8484591","51.2933078"],["-116.8479704","51.2931536"],["-116.8474635","51.2929681"],["-116.8469565","51.2927555"],["-116.8461664","51.2923321"],["-116.8455696","51.2920215"],["-116.8450783","51.2918049"],["-116.8441524","51.2914184"],["-116.8432631","51.2910578"],["-116.842408","51.2907542"],["-116.8417058","51.2905552"],["-116.8409026","51.2904193"],["-116.8385139","51.2902248"],["-116.8374295","51.2901013"],["-116.835323","51.2896882"],["-116.8330812","51.2894388"],["-116.8321103","51.2893027"],["-116.8313929","51.2891256"],["-116.830327","51.2887896"],["-116.8292529","51.2884869"],["-116.8285903","51.2883592"],["-116.8278549","51.2882337"],["-116.8270237","51.2880449"],["-116.826118","51.2877839"],["-116.8251776","51.2874166"],["-116.8241607","51.2868903"],["-116.8221921","51.2857405"],["-116.818814","51.2840321"],["-116.8170663","51.2827646"],["-116.8152547","51.2812995"],["-116.813805","51.2802879"],["-116.8125049","51.2794784"],["-116.8116165","51.2791127"],["-116.810769","51.2788306"],["-116.8101393","51.2786855"],["-116.8093141","51.2785306"],["-116.8085382","51.2784537"],["-116.8077743","51.2783982"],["-116.8069147","51.2784157"],["-116.8058436","51.2785335"],["-116.8052081","51.278634"],["-116.8046091","51.2787809"],["-116.804103","51.2789171"],["-116.8035716","51.2790914"],["-116.8009524","51.2801597"],["-116.7998292","51.2805575"],["-116.7989618","51.2808165"],["-116.7975451","51.2811302"],["-116.7947013","51.2816467"],["-116.7934837","51.2817977"],["-116.7924985","51.2818463"],["-116.7909467","51.2817797"],["-116.7866296","51.2813677"],["-116.7848601","51.2811413"],["-116.7840228","51.280935"],["-116.7830521","51.280614"],["-116.7822802","51.2802863"],["-116.7814023","51.2798172"],["-116.7800279","51.2788938"],["-116.7791748","51.2784381"],["-116.7783471","51.2780749"],["-116.7775427","51.2778179"],["-116.7762693","51.2775321"],["-116.7736612","51.2771895"],["-116.7724735","51.27696"],["-116.7714896","51.2766775"],["-116.7706076","51.2763141"],["-116.7697922","51.2758729"],["-116.7687602","51.2752717"],["-116.7678964","51.2748265"],["-116.7669358","51.2744908"],["-116.766206","51.2742911"],["-116.7650581","51.2740637"],["-116.7631776","51.273815"],["-116.761065","51.2735023"],["-116.7564057","51.2725873"],["-116.7555229","51.2723904"],["-116.7547573","51.2721848"],["-116.7539003","51.2719358"],["-116.7529812","51.2716162"],["-116.7520657","51.2712597"],["-116.7511588","51.270843"],["-116.7499943","51.2702649"],["-116.7413484","51.2656977"],["-116.7384936","51.2643255"],["-116.7376604","51.2639627"],["-116.7370381","51.2637118"],["-116.7356308","51.2631733"],["-116.7338723","51.2625675"],["-116.7326269","51.2620956"],["-116.729642","51.2610772"],["-116.7291193","51.2609313"],["-116.728653","51.2608224"],["-116.7277141","51.2606375"],["-116.7271262","51.2605519"],["-116.7266026","51.2604866"],["-116.7259983","51.260434"],["-116.7252765","51.2604018"],["-116.7230581","51.260367"],["-116.7222079","51.2603347"],["-116.721652","51.2602905"],["-116.7209893","51.2602149"],["-116.711614","51.2586786"],["-116.7107647","51.2585888"],["-116.7099783","51.2585376"],["-116.7091669","51.2585344"],["-116.705416","51.2586003"],["-116.7046598","51.2585996"],["-116.7039639","51.2585733"],["-116.7033502","51.2585273"],["-116.7026378","51.2584424"],["-116.7019898","51.2583417"],["-116.701301","51.2582128"],["-116.7003768","51.257995"],["-116.6894197","51.2550328"],["-116.6881538","51.2546488"],["-116.686486","51.2540246"],["-116.6856964","51.2537048"],["-116.6846543","51.2532209"],["-116.6805357","51.2511116"],["-116.679227","51.2504779"],["-116.6779385","51.2499821"],["-116.6765636","51.2495402"],["-116.6742029","51.2489649"],["-116.6724287","51.248531"],["-116.6701748","51.2479623"],["-116.6689755","51.2475928"],["-116.6676542","51.2471277"],["-116.666674","51.2467387"],["-116.6658648","51.2463732"],["-116.6639524","51.2454103"],["-116.660745","51.2436385"],["-116.6589357","51.2426444"],["-116.6584331","51.2423606"],["-116.656183","51.2410958"],["-116.6551745","51.240528"],["-116.6530526","51.2393468"],["-116.6524962","51.2390219"],["-116.6516485","51.2385368"],["-116.644087","51.2338341"],["-116.6421306","51.2326447"],["-116.6414749","51.2322851"],["-116.6405178","51.2318378"],["-116.6206438","51.2230639"],["-116.6199394","51.2227676"],["-116.619403","51.2225823"],["-116.6189298","51.2224439"],["-116.6184869","51.2223539"],["-116.6180355","51.2222867"],["-116.6175504","51.2222486"],["-116.617025","51.2222416"],["-116.6165521","51.2222652"],["-116.6158692","51.2223431"],["-116.6117838","51.2229086"],["-116.6111516","51.222968"],["-116.6106233","51.2229764"],["-116.6100687","51.222959"],["-116.6095744","51.222914"],["-116.6090627","51.2228308"],["-116.6084773","51.2226999"],["-116.6078292","51.2225171"],["-116.5984049","51.2193191"],["-116.5975368","51.2190376"],["-116.5965386","51.2187668"],["-116.5955576","51.2185586"],["-116.593177","51.2182109"],["-116.584432","51.217046"],["-116.5836821","51.2169582"],["-116.583129","51.2169304"],["-116.5826081","51.2169235"],["-116.5821108","51.2169328"],["-116.581617","51.2169606"],["-116.5811862","51.2170101"],["-116.5808178","51.2170746"],["-116.5800384","51.2172426"],["-116.5796152","51.2173654"],["-116.5791497","51.2175388"],["-116.5780778","51.2180979"],["-116.5752037","51.2197821"],["-116.5742917","51.2204113"],["-116.5738553","51.2208234"],["-116.5735029","51.2212505"],["-116.5732422","51.2217625"],["-116.573082","51.2222279"],["-116.5730355","51.2227204"],["-116.5731159","51.2234297"],["-116.5733402","51.2239689"],["-116.5804179","51.2364319"],["-116.5805394","51.2367508"],["-116.580628","51.2370139"],["-116.5807011","51.2373528"],["-116.5807462","51.2376658"],["-116.5807431","51.2382152"],["-116.5807147","51.2384349"],["-116.580654","51.2387172"],["-116.5805525","51.2390293"],["-116.579503","51.2417035"],["-116.5793748","51.2422239"],["-116.5793543","51.2424692"],["-116.5793416","51.2427287"],["-116.5793501","51.2430557"],["-116.579373","51.2433531"],["-116.5794323","51.2436464"],["-116.5795171","51.243927"],["-116.579619","51.2442005"],["-116.5797297","51.2444391"],["-116.5798366","51.2446443"],["-116.5799499","51.2448356"],["-116.5800777","51.2450379"],["-116.5802195","51.2452253"],["-116.5804035","51.2454456"],["-116.580625","51.2456669"],["-116.5808728","51.2458874"],["-116.5849101","51.249217"],["-116.5857921","51.2499724"],["-116.5860392","51.2502265"],["-116.5862447","51.2504698"],["-116.5864291","51.2507239"],["-116.5865869","51.250974"],["-116.5867286","51.2512324"],["-116.5868493","51.2515048"],["-116.5869447","51.2517674"],["-116.5870164","51.2520384"],["-116.5870647","51.2523882"],["-116.5871881","51.2534546"],["-116.5872465","51.2539729"],["-116.5872978","51.2543115"],["-116.5873514","51.2545892"],["-116.5874364","51.2548538"],["-116.5875497","51.2551788"],["-116.5882536","51.2572849"],["-116.5883856","51.2577448"],["-116.5884975","51.2583649"],["-116.5886326","51.2591718"],["-116.5887364","51.259752"],["-116.5888756","51.2600904"],["-116.5891246","51.2606179"],["-116.5898399","51.2619529"],["-116.5900939","51.2623632"],["-116.590304","51.2626729"],["-116.5905135","51.2629313"],["-116.5907169","51.2631482"],["-116.5909256","51.2633497"],["-116.5911375","51.2635488"],["-116.5913606","51.2637607"],["-116.5916102","51.2639698"],["-116.591892","51.2641755"],["-116.5935032","51.2651476"],["-116.5942796","51.265597"],["-116.5946614","51.2658322"],["-116.5949404","51.2660474"],["-116.5961989","51.2671206"],["-116.5965669","51.2675051"],["-116.5969996","51.2679357"],["-116.5973486","51.2683047"],["-116.5976623","51.2686511"],["-116.5978443","51.2688797"],["-116.5979851","51.2691229"],["-116.5981038","51.2694012"],["-116.5981584","51.2696734"],["-116.5981845","51.2699387"],["-116.5981906","51.2702352"],["-116.5981643","51.2705102"],["-116.59811","51.2707673"],["-116.5980311","51.2710323"],["-116.5979324","51.2712827"],["-116.5977946","51.2715503"],["-116.5976466","51.2717684"],["-116.59745","51.2720009"],["-116.5972082","51.2722448"],["-116.5969753","51.2724399"],["-116.5966508","51.2726606"],["-116.5875438","51.2779251"],["-116.585485","51.2791279"],["-116.5850931","51.2793914"],["-116.5845095","51.2798342"],["-116.5839326","51.2803826"],["-116.5836271","51.2806835"],["-116.583414","51.2809174"],["-116.583234","51.2811673"],["-116.5830718","51.2814191"],["-116.5829242","51.2816767"],["-116.5827906","51.2819443"],["-116.5826812","51.2822046"],["-116.5825841","51.2824709"],["-116.5825016","51.2827449"],["-116.5824416","51.2830124"],["-116.5823967","51.2832848"],["-116.5823696","51.2835639"],["-116.5824141","51.2846501"],["-116.5824931","51.2884579"],["-116.5825382","51.2893277"],["-116.5825847","51.2900083"],["-116.5825934","51.2903711"],["-116.5825815","51.2906721"],["-116.5825444","51.291033"],["-116.5824849","51.2914073"],["-116.5823912","51.2917942"],["-116.5822541","51.2921997"],["-116.5821104","51.2925401"],["-116.5819065","51.2928777"],["-116.5815491","51.29347"],["-116.5810607","51.2942991"],["-116.5806648","51.2950025"],["-116.5803841","51.2955339"],["-116.580167","51.2959628"],["-116.5800462","51.2962889"],["-116.5799366","51.2965998"],["-116.5798312","51.2969324"],["-116.5797473","51.2972312"],["-116.5796893","51.2975287"],["-116.5796473","51.2977914"],["-116.5796253","51.2980448"],["-116.5796567","51.2991061"],["-116.5798694","51.3009329"],["-116.5800355","51.302402"],["-116.5801346","51.3036384"],["-116.5801521","51.3040835"],["-116.5801264","51.3045169"],["-116.5801075","51.3049727"],["-116.5800896","51.3054377"],["-116.580053","51.3057536"],["-116.5797929","51.306759"],["-116.579658","51.3073557"],["-116.5794922","51.3080827"],["-116.579168","51.3095279"],["-116.5790671","51.3099002"],["-116.5788136","51.310935"],["-116.5786035","51.3117105"],["-116.5784077","51.3124398"],["-116.5782069","51.3131353"],["-116.5777667","51.3144147"],["-116.5770732","51.3165103"],["-116.5751124","51.3219747"],["-116.5747326","51.3228607"],["-116.5742835","51.3236247"],["-116.5736425","51.324343"],["-116.5728418","51.3249965"],["-116.5718669","51.3255528"],["-116.5707963","51.3259996"],["-116.5696205","51.3263431"],["-116.5683536","51.3266228"],["-116.5592057","51.3284121"],["-116.5584763","51.3286004"],["-116.5576523","51.3288806"],["-116.5568828","51.3292172"],["-116.556173","51.3295979"],["-116.5555542","51.3300264"],["-116.5549681","51.3305094"],["-116.5543979","51.3311136"],["-116.5525818","51.3333165"],["-116.5520664","51.3339077"],["-116.5367098","51.3521355"],["-116.5323452","51.3572474"],["-116.5297168","51.3597787"],["-116.5223883","51.3667157"],["-116.5209018","51.3680368"],["-116.5198474","51.3688134"],["-116.5186229","51.3695893"],["-116.5170908","51.3704639"],["-116.5159312","51.3711263"],["-116.5149845","51.3716898"],["-116.5144575","51.3720441"],["-116.5139968","51.3724083"],["-116.513641","51.3727982"],["-116.5133743","51.3731685"],["-116.513203","51.3734741"],["-116.513073","51.3737914"],["-116.5129646","51.3741648"],["-116.5128753","51.3746656"],["-116.5127155","51.3758067"],["-116.5125989","51.3766177"],["-116.5125003","51.3773704"],["-116.5123959","51.3782512"],["-116.5123203","51.3788888"],["-116.5121742","51.3794795"],["-116.5118746","51.3800259"],["-116.5114453","51.380501"],["-116.5108273","51.3809647"],["-116.5100783","51.3813517"],["-116.507159","51.382425"],["-116.5061957","51.3827954"],["-116.5054965","51.3831336"],["-116.5048708","51.383502"],["-116.5042286","51.3839729"],["-116.5037406","51.3844511"],["-116.5017362","51.3868492"],["-116.4982928","51.3910102"],["-116.4975319","51.3921011"],["-116.4972047","51.3926456"],["-116.4954107","51.3958636"],["-116.4951299","51.3962587"],["-116.4948934","51.3965651"],["-116.4945791","51.3968767"],["-116.4940596","51.3972819"],["-116.493197","51.3978034"],["-116.4848673","51.402398"],["-116.4825358","51.4035852"],["-116.4806874","51.4044223"],["-116.4751127","51.4065385"],["-116.4529004","51.4158048"],["-116.4503516","51.417049"],["-116.447472","51.418455"],["-116.4460801","51.4190794"],["-116.4453375","51.4193522"],["-116.4447847","51.4194725"],["-116.4443329","51.4195462"],["-116.4437054","51.419604"],["-116.442968","51.4196203"],["-116.4400461","51.4196368"],["-116.4384141","51.4196776"],["-116.4377082","51.419745"],["-116.4357215","51.4200508"],["-116.4348726","51.4201614"],["-116.4342595","51.4202102"],["-116.4333751","51.4202498"],["-116.4315155","51.4203028"],["-116.4308505","51.4203627"],["-116.4303144","51.4204578"],["-116.4298746","51.4205836"],["-116.4294107","51.4207346"],["-116.4289408","51.420919"],["-116.4283394","51.4212162"],["-116.4272933","51.4217583"],["-116.4263484","51.4221879"],["-116.4252597","51.4226545"],["-116.424411","51.4230427"],["-116.421952","51.4243951"],["-116.4212834","51.4248188"],["-116.419936","51.4258751"],["-116.4180768","51.4273953"],["-116.4155109","51.4295014"],["-116.4149911","51.4298791"],["-116.4147408","51.4300243"],["-116.4143075","51.4302247"],["-116.4139187","51.4303722"],["-116.4135921","51.4304824"],["-116.4132527","51.4305766"],["-116.4129128","51.4306534"],["-116.4125268","51.4307093"],["-116.4121774","51.4307518"],["-116.4117213","51.4307843"],["-116.4104373","51.4307748"],["-116.4085822","51.4307502"],["-116.4069165","51.4307657"],["-116.4064089","51.4307933"],["-116.4008232","51.4313014"],["-116.3987875","51.4314432"],["-116.3971774","51.4315233"],["-116.3956622","51.4316046"],["-116.3946771","51.4317234"],["-116.3935999","51.4319216"],["-116.3926323","51.4321882"],["-116.3916705","51.432559"],["-116.3908531","51.433007"],["-116.389872","51.4336997"],["-116.3876624","51.4353773"],["-116.3871568","51.4356708"],["-116.3865237","51.4359682"],["-116.3859332","51.4361655"],["-116.3853647","51.4363015"],["-116.384738","51.4364324"],["-116.3841372","51.4365139"],["-116.3835837","51.4365464"],["-116.3829986","51.4365471"],["-116.3822014","51.436485"],["-116.3814325","51.4364259"],["-116.3806738","51.4363658"],["-116.3801164","51.4363384"],["-116.379591","51.4363543"],["-116.3791028","51.4363949"],["-116.3782453","51.4365252"],["-116.3768459","51.4367605"],["-116.3761036","51.4368742"],["-116.3756727","51.4369185"],["-116.3753215","51.4369468"],["-116.3748553","51.4369653"],["-116.3744215","51.4369605"],["-116.3739523","51.4369366"],["-116.3723486","51.4367538"],["-116.3715614","51.4366702"],["-116.3703479","51.4365364"],["-116.3697837","51.4364919"],["-116.3691954","51.4364861"],["-116.3684453","51.4365058"],["-116.3674557","51.4366105"],["-116.3663974","51.4367425"],["-116.3655496","51.4368392"],["-116.3649918","51.4368777"],["-116.3639996","51.4368967"],["-116.3624734","51.4369075"],["-116.3615636","51.4369313"],["-116.361048","51.4369707"],["-116.3606276","51.4370276"],["-116.3602354","51.4371085"],["-116.3597954","51.4372171"],["-116.3593884","51.4373548"],["-116.3589288","51.4375396"],["-116.3584586","51.4377601"],["-116.3580154","51.4380228"],["-116.3558795","51.4393778"],["-116.3547059","51.4401119"],["-116.3542113","51.4403746"],["-116.353698","51.4405846"],["-116.3532352","51.4407393"],["-116.3527315","51.4408717"],["-116.3521646","51.4409801"],["-116.3443164","51.4421448"],["-116.3403311","51.4427513"],["-116.339572","51.4429166"],["-116.3388046","51.4431323"],["-116.3381088","51.4433726"],["-116.3375837","51.4435822"],["-116.3360382","51.444415"],["-116.3326926","51.4462415"],["-116.3321225","51.4464933"],["-116.3313726","51.4467269"],["-116.3305745","51.4469168"],["-116.3163965","51.449684"],["-116.3157283","51.4498666"],["-116.3121727","51.4510609"],["-116.3104041","51.4516467"],["-116.3097192","51.4518253"],["-116.309058","51.4519567"],["-116.3083649","51.4520693"],["-116.3076874","51.4521274"],["-116.283325","51.4534909"],["-116.2826204","51.4535864"],["-116.2819201","51.4537163"],["-116.281261","51.4538617"],["-116.2806055","51.4540352"],["-116.2799394","51.4542449"],["-116.2793121","51.454478"],["-116.2785606","51.4548063"],["-116.2737707","51.457051"],["-116.2727214","51.4575225"],["-116.2722376","51.4576971"],["-116.2717507","51.4578516"],["-116.2711471","51.4580029"],["-116.2705355","51.4581121"],["-116.2699565","51.4581876"],["-116.2693188","51.4582397"],["-116.2687592","51.4582608"],["-116.2681663","51.4582502"],["-116.2675982","51.4582182"],["-116.267044","51.4581559"],["-116.2664376","51.458052"],["-116.2658732","51.4579335"],["-116.2653502","51.4577859"],["-116.2649369","51.457639"],["-116.2645265","51.4574798"],["-116.2641218","51.4572929"],["-116.2636992","51.4570699"],["-116.2625536","51.4563694"],["-116.2606893","51.4551878"],["-116.2587202","51.4539266"],["-116.2580455","51.4533866"],["-116.257751","51.4531342"],["-116.2564408","51.4518051"],["-116.2512958","51.4464993"],["-116.2508515","51.4460999"],["-116.250423","51.4457928"],["-116.2499662","51.4455298"],["-116.2494484","51.4452841"],["-116.248858","51.4450708"],["-116.2482688","51.4448828"],["-116.2476119","51.4447388"],["-116.2468764","51.4446331"],["-116.2461815","51.4445875"],["-116.2421057","51.4445519"],["-116.2387056","51.4445262"],["-116.2380861","51.4444893"],["-116.2375222","51.4444408"],["-116.2365959","51.444321"],["-116.234714","51.4439291"],["-116.227551","51.4424053"],["-116.2268006","51.4422975"],["-116.2260855","51.4422107"],["-116.2253015","51.4421437"],["-116.224342","51.4421097"],["-116.2230786","51.4421144"],["-116.2216315","51.4421567"],["-116.2200061","51.4421969"],["-116.2170212","51.4422684"],["-116.2085563","51.4425117"],["-116.2061836","51.4425551"],["-116.2055896","51.4425232"],["-116.2052647","51.4424926"],["-116.2047864","51.4424307"],["-116.2041941","51.4423281"],["-116.2037688","51.4422329"],["-116.2033486","51.4421168"],["-116.2029443","51.4419882"],["-116.2020798","51.4416451"],["-116.2012193","51.4412944"],["-116.1996062","51.4406389"],["-116.1983733","51.4400803"],["-116.197622","51.4396815"],["-116.1972876","51.4394727"],["-116.1969028","51.4391735"],["-116.1966262","51.4389385"],["-116.1963612","51.4386694"],["-116.1958143","51.4380547"],["-116.1951932","51.4372454"],["-116.1946833","51.4365582"],["-116.1942707","51.4359761"],["-116.1938088","51.4354062"],["-116.1934667","51.4350394"],["-116.1931565","51.4347205"],["-116.1925533","51.4341858"],["-116.1921326","51.4339114"],["-116.1917018","51.4336499"],["-116.1908208","51.433232"],["-116.1898185","51.4328551"],["-116.1876865","51.4322215"],["-116.1777354","51.4292714"],["-116.1772973","51.4291177"],["-116.1768208","51.4289319"],["-116.1760975","51.4286018"],["-116.1757574","51.4284045"],["-116.1754839","51.428231"],["-116.1748298","51.4277156"],["-116.1745731","51.427466"],["-116.1742424","51.4270713"],["-116.1739875","51.4266965"],["-116.1738058","51.4263911"],["-116.1737328","51.4262179"],["-116.1735473","51.4255771"],["-116.173239","51.4244446"],["-116.1729898","51.42353"],["-116.1727784","51.4227195"],["-116.1725547","51.4218615"],["-116.1722318","51.4209794"],["-116.1705262","51.4161063"],["-116.170187","51.4150764"],["-116.1699686","51.4144995"],["-116.1697833","51.4140926"],["-116.1694758","51.413563"],["-116.1691196","51.4130469"],["-116.1687536","51.4125824"],["-116.1683724","51.4121716"],["-116.1678687","51.4117447"],["-116.1672879","51.4112651"],["-116.1664524","51.4105794"],["-116.1640152","51.4086187"],["-116.1634708","51.4081706"],["-116.1624796","51.4073581"],["-116.1620058","51.4069071"],["-116.1578818","51.4028197"],["-116.1568587","51.4018036"],["-116.1563301","51.4012772"],["-116.1554668","51.4004761"],["-116.1549172","51.4000886"],["-116.1542734","51.3997214"],["-116.1533388","51.3992314"],["-116.1521968","51.3986791"],["-116.1514441","51.3984025"],["-116.1500892","51.3980593"],["-116.1482485","51.3976813"],["-116.1451657","51.3970543"],["-116.1434085","51.3966854"],["-116.1418118","51.3963167"],["-116.1407508","51.3960239"],["-116.1398627","51.3957009"],["-116.1391122","51.3953358"],["-116.1384026","51.3949546"],["-116.1371065","51.3940051"],["-116.1349814","51.3923914"],["-116.1317865","51.3898983"],["-116.125356","51.3847463"],["-116.1196998","51.3800092"],["-116.1184097","51.3791212"],["-116.1163974","51.3775832"],["-116.1143552","51.3761152"],["-116.1136123","51.3755997"],["-116.1133021","51.3753775"],["-116.1128054","51.3749935"],["-116.1121957","51.3745608"],["-116.1115825","51.3741217"],["-116.1109624","51.3736365"],["-116.1098216","51.3728076"],["-116.1093144","51.3724196"],["-116.1089456","51.3721212"],["-116.1085363","51.3717803"],["-116.1081993","51.3714822"],["-116.1071163","51.3703665"],["-116.1065582","51.3697935"],["-116.1057033","51.3688824"],["-116.1053162","51.3684662"],["-116.1048701","51.3679888"],["-116.1045298","51.3676129"],["-116.1042039","51.3671977"],["-116.1038988","51.3667886"],["-116.1036776","51.3664201"],["-116.10351","51.3661025"],["-116.103349","51.3657533"],["-116.1031917","51.3653359"],["-116.1028259","51.364064"],["-116.1025878","51.3631892"],["-116.1024098","51.3625792"],["-116.1022461","51.3621357"],["-116.1020851","51.3618148"],["-116.1018987","51.3615116"],["-116.1014381","51.3608717"],["-116.1011995","51.3605915"],["-116.1009724","51.3603425"],["-116.1007651","51.3601343"],["-116.1005053","51.3599295"],["-116.1000124","51.3595664"],["-116.099637","51.3592972"],["-116.0992201","51.3590225"],["-116.0987448","51.3587625"],["-116.0982869","51.358533"],["-116.0972166","51.3580243"],["-116.0965371","51.3577127"],["-116.0953048","51.3571345"],["-116.0949212","51.3569323"],["-116.0945312","51.3566944"],["-116.0934835","51.3559397"],["-116.0932784","51.3557708"],["-116.0926255","51.3550516"],["-116.0923738","51.3547945"],["-116.0918682","51.3544175"],["-116.0916953","51.354303"],["-116.0915611","51.3541831"],["-116.091278","51.353896"],["-116.0910547","51.3536878"],["-116.0908437","51.3535071"],["-116.090625","51.3533592"],["-116.0899855","51.3530039"],["-116.0896329","51.3527755"],["-116.0893171","51.3525799"],["-116.0890679","51.3524497"],["-116.0882173","51.3521242"],["-116.0875753","51.3517918"],["-116.0873295","51.351688"],["-116.087011","51.3515829"],["-116.0867426","51.3514897"],["-116.086479","51.351372"],["-116.0858645","51.3510668"],["-116.0854893","51.3509176"],["-116.0852198","51.3508207"],["-116.0849039","51.3507003"],["-116.0844054","51.3504683"],["-116.083935","51.3502582"],["-116.0834665","51.35008"],["-116.0831604","51.3499432"],["-116.0826108","51.349651"],["-116.0823186","51.3495187"],["-116.0819304","51.3493859"],["-116.0816957","51.349309"],["-116.081485","51.3492136"],["-116.0809713","51.3489507"],["-116.0806539","51.3488022"],["-116.0803751","51.3487048"],["-116.0800734","51.3486099"],["-116.0797178","51.3484374"],["-116.0791829","51.3481662"],["-116.0789236","51.3480524"],["-116.0787379","51.3479828"],["-116.0785155","51.3479036"],["-116.0781957","51.3477583"],["-116.0774335","51.3473895"],["-116.0767181","51.3470443"],["-116.0756384","51.3464167"],["-116.0751291","51.3461284"],["-116.074679","51.3458482"],["-116.0739584","51.3453343"],["-116.0730731","51.3447085"],["-116.0720593","51.344012"],["-116.0711987","51.343422"],["-116.070546","51.3429607"],["-116.0659106","51.3397441"],["-116.0650224","51.3391261"],["-116.0640549","51.3384516"],["-116.061873","51.3369256"],["-116.0606033","51.3360682"],["-116.0592817","51.3352112"],["-116.057387","51.3339025"],["-116.0569378","51.3335532"],["-116.05647","51.3331363"],["-116.0559463","51.3326191"],["-116.0555165","51.332141"],["-116.0551279","51.3316322"],["-116.0541024","51.3301698"],["-116.0536467","51.3295928"],["-116.05319","51.3291237"],["-116.0527273","51.3287334"],["-116.0522681","51.3283905"],["-116.0518711","51.3281194"],["-116.0512887","51.3277842"],["-116.0507118","51.3274827"],["-116.0499419","51.3270985"],["-116.0465514","51.3253539"],["-116.0450825","51.3245346"],["-116.0437438","51.3237181"],["-116.0427404","51.3230683"],["-116.0293021","51.3136516"],["-116.0286786","51.3132044"],["-116.0282868","51.3129025"],["-116.0279386","51.3125913"],["-116.0275269","51.3121797"],["-116.0270994","51.3117382"],["-116.0265635","51.3111582"],["-116.0253686","51.3097975"],["-116.0248383","51.3092186"],["-116.0243021","51.3087079"],["-116.0237361","51.3082216"],["-116.0231331","51.3077534"],["-116.0025936","51.2927273"],["-115.9992748","51.290208"],["-115.9981082","51.2894186"],["-115.9969672","51.288737"],["-115.995836","51.2881347"],["-115.9949668","51.2877174"],["-115.9939432","51.28727"],["-115.9928325","51.2868371"],["-115.9916538","51.2864391"],["-115.9905993","51.2861169"],["-115.9896292","51.2858623"],["-115.9883919","51.2855805"],["-115.9799411","51.283803"],["-115.978936","51.2835684"],["-115.9779956","51.2833061"],["-115.9772059","51.2830231"],["-115.9765128","51.2827591"],["-115.975055","51.2820599"],["-115.9613128","51.2751658"],["-115.9567282","51.2728615"],["-115.9515222","51.2702545"],["-115.9499107","51.2694687"],["-115.9488028","51.2689969"],["-115.9477489","51.2686049"],["-115.9465909","51.2682213"],["-115.9341473","51.2648291"],["-115.923378","51.2620461"],["-115.9014029","51.2560529"],["-115.8995498","51.25571"],["-115.8958234","51.2551963"],["-115.8946826","51.2549187"],["-115.8931808","51.2544572"],["-115.8918075","51.2539017"],["-115.8906958","51.2533131"],["-115.8894784","51.2523644"],["-115.8839276","51.2478241"],["-115.8827705","51.2472011"],["-115.8814547","51.2467734"],["-115.8786718","51.2462002"],["-115.8759728","51.2456537"],["-115.8741804","51.2452573"],["-115.8723896","51.2446976"],["-115.8694992","51.2436649"],["-115.8682819","51.2431658"],["-115.8667671","51.2426359"],["-115.8654075","51.2422972"],["-115.863316","51.2418645"],["-115.8609294","51.2413615"],["-115.8593127","51.2408692"],["-115.8577939","51.2402751"],["-115.8541063","51.2383491"],["-115.8482966","51.235225"],["-115.8436474","51.232898"],["-115.8410189","51.2317286"],["-115.8338137","51.229311"],["-115.8298125","51.2275723"],["-115.8271157","51.2263632"],["-115.824718","51.2256613"],["-115.8195952","51.2244806"],["-115.8152015","51.2234992"],["-115.7983606","51.2192529"],["-115.7975148","51.2189608"],["-115.7970315","51.2187457"],["-115.7965559","51.2184976"],["-115.7958821","51.2180911"],["-115.7793631","51.206647"],["-115.777788","51.2053203"],["-115.7765799","51.204074"],["-115.7755686","51.2029854"],["-115.7746464","51.2021346"],["-115.7735577","51.2013474"],["-115.7725748","51.2007335"],["-115.7704751","51.1996252"],["-115.7692992","51.1990288"],["-115.767008","51.1978381"],["-115.7653994","51.1969603"],["-115.7632021","51.1954264"],["-115.7608455","51.1937034"],["-115.7576115","51.1913169"],["-115.7530575","51.1880384"],["-115.7514283","51.1868249"],["-115.7497534","51.1854786"],["-115.7435783","51.1799687"],["-115.7305025","51.1686317"],["-115.7296803","51.1679646"],["-115.7287523","51.1673226"],["-115.7276172","51.1665911"],["-115.7205917","51.1627132"],["-115.7196708","51.1622395"],["-115.7188383","51.1619212"],["-115.7178928","51.161643"],["-115.715648","51.1611566"],["-115.7131551","51.160653"],["-115.7026085","51.1585206"],["-115.7016595","51.1583683"],["-115.6999616","51.1581701"],["-115.6981579","51.1579871"],["-115.6880026","51.1569745"],["-115.6864445","51.156849"],["-115.6855606","51.1568375"],["-115.6847461","51.1568658"],["-115.6838915","51.1569396"],["-115.6828297","51.1571062"],["-115.6817946","51.1573276"],["-115.6809827","51.1575687"],["-115.6802079","51.1578516"],["-115.6793734","51.158236"],["-115.6500766","51.1728825"],["-115.6476979","51.1739858"],["-115.6454535","51.1748651"],["-115.6444218","51.1752055"],["-115.643064","51.1755696"],["-115.6369971","51.1769569"],["-115.6363113","51.1770761"],["-115.6357002","51.177157"],["-115.6348559","51.1772152"],["-115.6339776","51.1772321"],["-115.6326756","51.1772329"],["-115.6309412","51.1772786"],["-115.6294935","51.1773505"],["-115.6281017","51.177458"],["-115.6267483","51.1776348"],["-115.624522","51.178034"],["-115.6200818","51.1791846"],["-115.6194075","51.1793372"],["-115.6188393","51.179433"],["-115.6181027","51.1794908"],["-115.6171487","51.1795216"],["-115.6146558","51.1795695"],["-115.6132867","51.1796415"],["-115.6122089","51.1797357"],["-115.6111989","51.1798881"],["-115.6099066","51.1801533"],["-115.6085522","51.1805101"],["-115.607462","51.1809087"],["-115.6016437","51.1832305"],["-115.601052","51.1834421"],["-115.6001559","51.1837074"],["-115.5992609","51.1838998"],["-115.5982907","51.1840441"],["-115.5970601","51.1842046"],["-115.5956266","51.1843994"],["-115.5948571","51.1845611"],["-115.5939762","51.1847885"],["-115.5761639","51.1901125"],["-115.5729919","51.191099"],["-115.571479","51.1915403"],["-115.5634345","51.1933319"],["-115.5538723","51.1953922"],["-115.551498","51.1959669"],["-115.5505695","51.1962432"],["-115.5497308","51.1965741"],["-115.5489669","51.196891"],["-115.5484208","51.1972164"],["-115.5476326","51.1977547"],["-115.5465277","51.198801"],["-115.5431795","51.2025106"],["-115.5418545","51.2039946"],["-115.5397137","51.2064108"],["-115.5392009","51.2069745"],["-115.5388788","51.2072745"],["-115.5385632","51.2075313"],["-115.5382174","51.2077651"],["-115.5378537","51.2079674"],["-115.5373973","51.2081997"],["-115.5369598","51.2083976"],["-115.5365804","51.2085477"],["-115.5362374","51.2086595"],["-115.5358733","51.2087599"],["-115.53551","51.2088469"],["-115.5350382","51.2089423"],["-115.5345988","51.2090095"],["-115.5341165","51.2090614"],["-115.53367","51.2090858"],["-115.5332004","51.2090953"],["-115.5327368","51.2090882"],["-115.5322823","51.2090618"],["-115.5318658","51.2090217"],["-115.5310843","51.2089024"],["-115.5307035","51.2088193"],["-115.529925","51.2085986"],["-115.5294795","51.2084407"],["-115.5237169","51.2060283"],["-115.5232101","51.2057763"],["-115.5228222","51.2055365"],["-115.5224777","51.2052992"],["-115.5220991","51.2050038"],["-115.5209899","51.2041079"],["-115.5200916","51.2034228"],["-115.5195904","51.2030865"],["-115.5191913","51.2028483"],["-115.5187805","51.202654"],["-115.5183494","51.2024825"],["-115.5180254","51.2023773"],["-115.5177037","51.2022807"],["-115.5171072","51.2021378"],["-115.516705","51.2020562"],["-115.5159905","51.2019557"],["-115.5092677","51.2011735"],["-115.5082235","51.2010328"],["-115.5074388","51.2009025"],["-115.5066258","51.2007265"],["-115.5026024","51.1997755"],["-115.5021421","51.1996523"],["-115.5014571","51.199435"],["-115.5008564","51.1992205"],["-115.5003163","51.1990076"],["-115.4998845","51.1988107"],["-115.4994687","51.1986"],["-115.4989707","51.1983276"],["-115.4984411","51.198004"],["-115.497954","51.1976712"],["-115.497517","51.19733"],["-115.4970932","51.1969768"],["-115.4966592","51.1965373"],["-115.4851194","51.183213"],["-115.4846602","51.1827186"],["-115.4842589","51.1823482"],["-115.4836382","51.1818504"],["-115.4829534","51.1813893"],["-115.4811111","51.1803457"],["-115.4729472","51.1757944"],["-115.4724718","51.1754986"],["-115.4719951","51.1751509"],["-115.4714644","51.1747401"],["-115.4710393","51.1743554"],["-115.4704086","51.1736698"],["-115.4679585","51.1709162"],["-115.4674574","51.1704075"],["-115.4669882","51.1700322"],["-115.4665305","51.1697374"],["-115.4659898","51.1694373"],["-115.4654375","51.1691911"],["-115.4648936","51.1689841"],["-115.4642508","51.1687947"],["-115.463568","51.1686382"],["-115.4626896","51.1685053"],["-115.4577973","51.1678955"],["-115.4561278","51.1676672"],["-115.4554339","51.1675351"],["-115.4547311","51.1673494"],["-115.4539121","51.1670859"],["-115.448561","51.1652479"],["-115.4472481","51.1647362"],["-115.4458933","51.1641337"],["-115.445088","51.1637342"],["-115.4441373","51.1632112"],["-115.4431153","51.1625963"],["-115.4420811","51.1619043"],["-115.4412193","51.1612545"],["-115.4403531","51.1605172"],["-115.4368024","51.1572296"],["-115.4359606","51.156381"],["-115.4350944","51.1554645"],["-115.4342547","51.1544963"],["-115.4321203","51.1519177"],["-115.4316561","51.1514311"],["-115.4311982","51.1510052"],["-115.4307274","51.1506497"],["-115.4119039","51.1383561"],["-115.4111162","51.1377933"],["-115.4107079","51.1374771"],["-115.4099602","51.1368586"],["-115.4085544","51.1354552"],["-115.4066902","51.1334557"],["-115.4062257","51.1330032"],["-115.4058654","51.1326874"],["-115.4055073","51.1324028"],["-115.405131","51.1321295"],["-115.4047107","51.1318543"],["-115.4042672","51.131587"],["-115.403893","51.131374"],["-115.402893","51.1309005"],["-115.4018073","51.1304816"],["-115.3904074","51.1263344"],["-115.3892667","51.1258787"],["-115.3886304","51.1255656"],["-115.3880762","51.1252556"],["-115.3872512","51.1247076"],["-115.381158","51.1200923"],["-115.3795361","51.1187595"],["-115.3755246","51.1153955"],["-115.3695643","51.1104835"],["-115.3668287","51.1082365"],["-115.3641883","51.1060986"],["-115.3416797","51.0876816"],["-115.3412881","51.0872893"],["-115.3409542","51.0869415"],["-115.3405417","51.0864569"],["-115.3401828","51.0860346"],["-115.339399","51.0850302"],["-115.3320156","51.0750775"],["-115.3310098","51.0737205"],["-115.322773","51.0625946"],["-115.3222536","51.0618703"],["-115.3212806","51.0604765"],["-115.320381","51.0595003"],["-115.3192725","51.0584476"],["-115.3187609","51.0579929"],["-115.3183241","51.057669"],["-115.3169826","51.0567744"],["-115.3164357","51.0564702"],["-115.315865","51.0561824"],["-115.2849408","51.0426927"],["-115.2836388","51.0421132"],["-115.2828538","51.0417993"],["-115.2820829","51.0415124"],["-115.2805254","51.0409924"],["-115.2797925","51.0407726"],["-115.2736919","51.0391414"],["-115.2728182","51.0389226"],["-115.2717374","51.0386898"],["-115.2706227","51.0385015"],["-115.269496","51.0383973"],["-115.2686786","51.038367"],["-115.2677508","51.0383686"],["-115.2647715","51.0385106"],["-115.2628959","51.0386209"],["-115.2596935","51.0388743"],["-115.2508865","51.0395719"],["-115.2482462","51.039748"],["-115.2469202","51.039828"],["-115.2394366","51.0402621"],["-115.238418","51.040462"],["-115.2379172","51.0405719"],["-115.2374768","51.0406995"],["-115.2369452","51.0408973"],["-115.2198571","51.0488003"],["-115.2167205","51.0501474"],["-115.2156402","51.0505626"],["-115.2151113","51.0507479"],["-115.2144566","51.0509508"],["-115.205776","51.0532214"],["-115.2004758","51.0545708"],["-115.2000487","51.054661"],["-115.1996203","51.0547356"],["-115.1987399","51.0548398"],["-115.1983841","51.0548633"],["-115.1979964","51.0548715"],["-115.1975525","51.0548668"],["-115.1970913","51.0548522"],["-115.1966896","51.0548243"],["-115.1962547","51.0547832"],["-115.1958197","51.0547184"],["-115.1951889","51.0545831"],["-115.1948404","51.0545058"],["-115.1944828","51.0544216"],["-115.1940605","51.0542805"],["-115.1930538","51.0538907"],["-115.192742","51.0537518"],["-115.1922264","51.0534658"],["-115.1918607","51.0532443"],["-115.1916809","51.0531121"],["-115.1913054","51.0527884"],["-115.1910495","51.0525475"],["-115.1898826","51.0512291"],["-115.1894405","51.0507006"],["-115.1891654","51.0504141"],["-115.1889046","51.0501875"],["-115.188545","51.0499427"],["-115.1878666","51.0495353"],["-115.1863262","51.0487811"],["-115.1843821","51.047913"],["-115.1837626","51.0477001"],["-115.1832837","51.0475763"],["-115.1826948","51.0474745"],["-115.1821839","51.0474087"],["-115.1816258","51.0473607"],["-115.1811891","51.0473508"],["-115.1807848","51.0473532"],["-115.1803359","51.0473734"],["-115.1796964","51.0474216"],["-115.1787628","51.047538"],["-115.1636625","51.0494314"],["-115.1612399","51.0498704"],["-115.1606409","51.0500054"],["-115.1455698","51.0539857"],["-115.1446642","51.054244"],["-115.1440724","51.0544264"],["-115.143622","51.054593"],["-115.1431809","51.0547887"],["-115.1427589","51.0549961"],["-115.1424424","51.0551786"],["-115.1421258","51.0553728"],["-115.1418126","51.0555687"],["-115.1415114","51.0558063"],["-115.1411652","51.0560801"],["-115.1408545","51.0564267"],["-115.1405479","51.0567837"],["-115.1392935","51.058477"],["-115.1390038","51.0588383"],["-115.1386955","51.0591943"],["-115.1383702","51.0595372"],["-115.1380672","51.0597985"],["-115.1373972","51.0603559"],["-115.1369893","51.0606641"],["-115.1358524","51.061408"],["-115.1349765","51.0618796"],["-115.1334956","51.0625893"],["-115.1265388","51.0658399"],["-115.1251707","51.0664833"],["-115.1236593","51.0672722"],["-115.1222979","51.0681524"],["-115.1213662","51.0686765"],["-115.1209838","51.0688606"],["-115.1206016","51.0690309"],["-115.1201792","51.0691756"],["-115.1198318","51.0692875"],["-115.1191105","51.0694874"],["-115.1183343","51.0696344"],["-115.1176575","51.0697239"],["-115.1172719","51.0697577"],["-115.1168136","51.0697783"],["-115.1159574","51.0697803"],["-115.1150976","51.0697112"],["-115.1146318","51.0696547"],["-115.1139323","51.0695331"],["-115.1082812","51.068318"],["-115.107786","51.0682317"],["-115.1063484","51.0680315"],["-115.0930699","51.0664978"],["-115.0924293","51.0664332"],["-115.0912187","51.0663461"],["-115.0907193","51.0663316"],["-115.0902328","51.066328"],["-115.0897335","51.0663389"],["-115.089273","51.0663589"],["-115.0888466","51.066388"],["-115.087574","51.0665173"],["-115.0871401","51.0665871"],["-115.0866359","51.0666795"],["-115.0860671","51.0668015"],["-115.0851791","51.0670316"],["-115.0846982","51.0671694"],["-115.080449","51.0686908"],["-115.0656094","51.0740293"],["-115.061853","51.0753744"],["-115.0608124","51.0757943"],["-115.0599516","51.0761957"],["-115.0591179","51.0766905"],["-115.0578485","51.0775533"],["-115.057242","51.0780339"],["-115.0565402","51.0788645"],["-115.05562","51.0803272"],["-115.0553544","51.0810746"],["-115.0541903","51.0863245"],["-115.0539248","51.0873865"],["-115.0535578","51.088281"],["-115.0530761","51.0890853"],["-115.0525757","51.0897455"],["-115.0521365","51.0901917"],["-115.0511485","51.091033"],["-115.0496602","51.0919713"],["-115.0436817","51.0944572"],["-114.9597172","51.1276132"],["-114.9580341","51.1280863"],["-114.9541769","51.1288683"],["-114.8875342","51.1404701"],["-114.8663083","51.1452818"],["-114.8649106","51.1455439"],["-114.8635085","51.145781"],["-114.861218","51.1460355"],["-114.8598479","51.1461665"],["-114.819937","51.1496291"],["-114.8173102","51.1499697"],["-114.8142491","51.1505631"],["-114.8088441","51.1522576"],["-114.791923","51.1579732"],["-114.789719","51.1585771"],["-114.7813284","51.1604969"],["-114.779791","51.160786"],["-114.7792363","51.1608727"],["-114.7773888","51.1610959"],["-114.7643143","51.1619359"],["-114.7638792","51.161951"],["-114.7632438","51.1619612"],["-114.7628014","51.1619526"],["-114.761863","51.1619118"],["-114.7613003","51.1618633"],["-114.7597157","51.1616427"],["-114.7590925","51.1615058"],["-114.7577985","51.1611472"],["-114.7572621","51.1609716"],["-114.7565926","51.1607271"],["-114.755748","51.1603482"],["-114.7549978","51.1599695"],["-114.7383497","51.1491544"],["-114.7376807","51.1487289"],["-114.7372491","51.148477"],["-114.7365681","51.1481152"],["-114.7354839","51.1475728"],["-114.7345951","51.1471667"],["-114.6505893","51.1135879"],["-114.6488081","51.1128942"],["-114.6477141","51.1124942"],["-114.647175","51.1123149"],["-114.5818646","51.0924311"],["-114.5790484","51.0916051"],["-114.5752994","51.0908933"],["-114.5739814","51.0907214"],["-114.5733512","51.0906506"],["-114.5727145","51.0905921"],["-114.5712922","51.0905023"],["-114.5703754","51.0904746"],["-114.5682541","51.090511"],["-114.5668832","51.0905729"],["-114.5652463","51.0907077"],["-114.5638721","51.0908888"],["-114.5529359","51.0928457"],["-114.5522552","51.0929508"],["-114.5512013","51.093042"],["-114.5507065","51.0930479"],["-114.5501583","51.0930357"],["-114.5490808","51.0929855"],["-114.5482253","51.0928811"],["-114.5477883","51.0928057"],["-114.5473161","51.092707"],["-114.5462724","51.0924445"],["-114.5457968","51.0922986"],["-114.5453613","51.0921345"],["-114.5426716","51.0909745"],["-114.5412069","51.0903172"],["-114.5372178","51.0886388"],["-114.5359704","51.0881923"],["-114.5352613","51.0880127"],["-114.5344613","51.0878489"],["-114.5322557","51.0875283"],["-114.5315472","51.0874792"],["-114.4553004","51.0864341"],["-114.4546002","51.0864389"],["-114.453457","51.0865006"],["-114.4520551","51.0866026"],["-114.451071","51.0867112"],["-114.4500997","51.0868388"],["-114.4476503","51.0872208"],["-114.4432421","51.0879359"],["-114.441755","51.0881383"],["-114.4399198","51.0883246"],["-114.4381612","51.0884151"],["-114.2995801","51.0884777"],["-114.2975536","51.0884117"],["-114.2946554","51.0882633"],["-114.2904306","51.0881821"],["-114.2555542","51.0885005"],["-114.2330756","51.0884423"],["-114.2316204","51.0884053"],["-114.2305562","51.0882969"],["-114.2294797","51.088163"],["-114.2285861","51.0879878"],["-114.2159204","51.0849431"],["-114.2106547","51.0834655"],["-114.2096142","51.0831994"],["-114.2072045","51.0826306"],["-114.2059402","51.082382"],["-114.2054749","51.0822985"],["-114.204389","51.0821416"],["-114.2038294","51.0820738"],["-114.202625","51.0819675"],["-114.2013703","51.0819085"],["-114.1970221","51.0818537"],["-114.195617","51.0817914"],["-114.194596","51.0816579"],["-114.1935663","51.0814492"],["-114.1928081","51.081274"],["-114.1912998","51.0808612"],["-114.1811017","51.0781433"],["-114.1802978","51.0779515"],["-114.175883","51.0767925"],["-114.1750351","51.0765073"],["-114.1708805","51.0753806"],["-114.1686383","51.0747546"],["-114.1677241","51.0744649"],["-114.1672302","51.074266"],["-114.1662229","51.0737931"],["-114.165795","51.0735756"],["-114.1653752","51.0733197"],["-114.1643632","51.072609"],["-114.1629841","51.0715672"],["-114.1627567","51.0714816"],["-114.1576836","51.0676988"],["-114.1572388","51.0674187"],["-114.1567012","51.0671389"],["-114.1562933","51.0669485"],["-114.1559082","51.0667907"],["-114.1554655","51.0666281"],["-114.1550491","51.0664885"],["-114.1547101","51.0663604"],["-114.1539024","51.0661779"],["-114.1534649","51.0660892"],["-114.153341","51.0660138"],["-114.1531507","51.0659399"],["-114.1529834","51.0658332"],["-114.1527569","51.0655487"],["-114.152636","51.0651162"],["-114.1525105","51.0648821"],["-114.1522544","51.0646716"],["-114.1508416","51.0640512"],["-114.1500539","51.0637275"],["-114.1496205","51.0635561"],["-114.1491952","51.0633802"],["-114.1490876","51.0633317"],["-114.1489444","51.0632683"],["-114.1486887","51.0631587"],["-114.1482391","51.0629763"],["-114.1464389","51.0622288"],["-114.1450654","51.061652"],["-114.1432334","51.0608816"],["-114.1425258","51.0605871"],["-114.1412213","51.0600473"],["-114.1410406","51.0599718"],["-114.1409065","51.0599096"],["-114.1407645","51.0598445"],["-114.1406353","51.0598237"],["-114.1343117","51.0566957"],["-114.1340868","51.056594"],["-114.1336428","51.0564372"],["-114.1322959","51.0560702"],["-114.1278666","51.0548862"],["-114.125552","51.0541836"],["-114.1252644","51.0540284"],["-114.1234792","51.0532494"],["-114.1220504","51.0525996"],["-114.121717","51.0524274"],["-114.1199771","51.0514832"],["-114.1195596","51.0512329"],["-114.1193518","51.0510663"],["-114.1191678","51.0508737"],["-114.1189398","51.0506034"],["-114.1188132","51.0504081"],["-114.1183958","51.0494694"],["-114.1182183","51.0491294"],["-114.1180938","51.0489697"],["-114.1179623","51.0488254"],["-114.1177111","51.0486318"],["-114.1173455","51.048483"],["-114.1169901","51.0483801"],["-114.1166984","51.0483213"],["-114.1164018","51.048287"],["-114.1161697","51.048284"],["-114.1159245","51.0482934"],["-114.1155965","51.0483319"],["-114.1132903","51.0486354"],["-114.1108552","51.0489328"],["-114.109186","51.0490188"],["-114.10447","51.0490291"],["-114.1034253","51.0489711"],["-114.1022578","51.0488967"],["-114.1010748","51.0488207"],["-114.1003777","51.048797"],["-114.0997962","51.0487994"],["-114.0992816","51.048838"],["-114.0965691","51.049121"],["-114.0956156","51.0491983"],["-114.0946077","51.04924"],["-114.0940009","51.0492754"],["-114.0938709","51.049297"],["-114.0937526","51.0493253"],["-114.0936505","51.0493657"],["-114.0935327","51.0494201"],["-114.0933989","51.0495007"],["-114.0920942","51.0503196"],["-114.0916535","51.0505876"],["-114.0914247","51.0506973"],["-114.0910754","51.0507796"],["-114.0871384","51.0516037"],["-114.0868108","51.0516835"],["-114.0864203","51.0517505"],["-114.0860493","51.0518206"],["-114.085939","51.0518213"],["-114.0858306","51.0518041"],["-114.0856801","51.0517696"],["-114.0853177","51.0514706"],["-114.0837358","51.0501794"],["-114.0835425","51.0499804"],["-114.0834869","51.0499036"],["-114.0834698","51.0498185"],["-114.0834997","51.0489828"],["-114.0832083","51.04897"],["-114.0701698","51.048598"],["-114.0691561","51.0485684"],["-114.065322","51.0484498"]]}};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':'#375492','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:[["-123.1207574","49.2833508"],["-123.1201121","49.2837733"],["-123.120055","49.2837402"],["-123.1199109","49.2836464"],["-123.1191322","49.2831407"],["-123.1171317","49.2818629"],["-123.1154423","49.2829685"],["-123.1135795","49.2842181"],["-123.1133169","49.2843925"],["-123.1128934","49.2846652"],["-123.1107586","49.2832893"],["-123.1106295","49.2832053"],["-123.1096831","49.2825903"],["-123.1095792","49.282519"],["-123.1095073","49.2824704"],["-123.109452","49.2824395"],["-123.1093174","49.2823904"],["-123.1043448","49.2814806"],["-123.1042876","49.2814724"],["-123.1041932","49.2814592"],["-123.1040094","49.2814379"],["-123.1035672","49.2814164"],["-123.082134","49.2810172"],["-123.0813815","49.2810037"],["-123.0806979","49.2809959"],["-123.0800495","49.2809909"],["-123.0795358","49.2810402"],["-123.079184","49.2811117"],["-123.0790231","49.2811072"],["-123.0788514","49.2811521"],["-123.0786951","49.2811922"],["-123.0785218","49.2812282"],["-123.0782599","49.2812623"],["-123.0780445","49.2812743"],["-123.0776999","49.2812721"],["-123.0767165","49.2812613"],["-123.0742526","49.2812405"],["-123.0741076","49.2812806"],["-123.0739743","49.2812807"],["-123.0726867","49.2812654"],["-123.0724859","49.2812241"],["-123.0718688","49.2812057"],["-123.0704128","49.2811839"],["-123.0694293","49.2811729"],["-123.0683513","49.2811718"],["-123.0680906","49.2812081"],["-123.0388405","49.281128"],["-123.0343021","49.2811357"],["-123.0339609","49.2810834"],["-123.032459","49.2810605"],["-123.0321242","49.2810099"],["-123.0319034","49.2810004"],["-123.0317791","49.2809663"],["-123.0316899","49.2808931"],["-123.0316648","49.2807707"],["-123.0316393","49.2806903"],["-123.0316588","49.2801665"],["-123.0317931","49.2793216"],["-123.0318069","49.2791494"],["-123.0318161","49.2783065"],["-123.0318152","49.2775787"],["-123.0317809","49.2769687"],["-123.0317059","49.2763227"],["-123.0315546","49.2760091"],["-123.0311163","49.2749066"],["-123.0308636","49.2744754"],["-123.0306633","49.2741738"],["-123.0302857","49.2736621"],["-123.0298173","49.2729651"],["-123.0289939","49.2717276"],["-123.0286897","49.2712633"],["-123.0283288","49.270575"],["-123.0279277","49.2698082"],["-123.0266416","49.2671635"],["-123.0264186","49.266574"],["-123.0262866","49.2660075"],["-123.0262055","49.2655296"],["-123.026156","49.2651104"],["-123.0260926","49.264589"],["-123.0260223","49.2640472"],["-123.0259571","49.2637364"],["-123.0259051","49.263529"],["-123.0257628","49.2631265"],["-123.0254175","49.2625489"],["-123.0251736","49.2622069"],["-123.0249929","49.2619959"],["-123.0247941","49.2618072"],["-123.0246122","49.2616429"],["-123.0243799","49.2614579"],["-123.0240947","49.2612472"],["-123.0199053","49.2583838"],["-123.0195028","49.2581335"],["-123.0190473","49.2579043"],["-123.0186606","49.2577463"],["-123.0183066","49.2576318"],["-123.0178765","49.2575214"],["-123.0174435","49.2574433"],["-123.017006","49.2573911"],["-123.0165548","49.2573681"],["-123.0159828","49.2573762"],["-123.0127591","49.2575587"],["-123.0009484","49.2575428"],["-122.9954304","49.2577204"],["-122.9933902","49.2577501"],["-122.9856201","49.2577401"],["-122.9846119","49.2576844"],["-122.9839855","49.257608"],["-122.9834356","49.2575175"],["-122.9829998","49.257436"],["-122.982535","49.2573181"],["-122.981934","49.2571458"],["-122.9811839","49.2568869"],["-122.9806047","49.2566273"],["-122.9799567","49.2563069"],["-122.9795006","49.2560414"],["-122.9786649","49.2554649"],["-122.9783061","49.2551658"],["-122.9779972","49.2548703"],["-122.9768859","49.25363"],["-122.9762025","49.2528405"],["-122.9708554","49.2468027"],["-122.9702721","49.2460958"],["-122.9695715","49.2453615"],["-122.9690312","49.2447788"],["-122.9686473","49.2444025"],["-122.9680125","49.2438637"],["-122.9672744","49.2433567"],["-122.9668188","49.243079"],["-122.9663643","49.2428409"],["-122.9658487","49.2426002"],["-122.9653598","49.2423997"],["-122.9649275","49.2422372"],["-122.9643074","49.2420371"],["-122.9635994","49.241824"],["-122.9625298","49.2416062"],["-122.9601185","49.2411464"],["-122.9591193","49.240935"],["-122.9574077","49.2405254"],["-122.9483476","49.2378502"],["-122.9477183","49.2376913"],["-122.9470514","49.2375389"],["-122.9457438","49.2372864"],["-122.9447047","49.2371337"],["-122.9440234","49.2370556"],["-122.9326906","49.2362797"],["-122.9318337","49.236261"],["-122.9310297","49.2362746"],["-122.9303418","49.2363021"],["-122.9296434","49.2363521"],["-122.9288884","49.2364323"],["-122.9280344","49.2365497"],["-122.9271737","49.2366992"],["-122.9264122","49.2368601"],["-122.9257509","49.2370218"],["-122.9251603","49.2371894"],["-122.9244006","49.2374283"],["-122.9236746","49.2376892"],["-122.9224183","49.2382181"],["-122.9220378","49.238403"],["-122.9205287","49.2392057"],["-122.9199599","49.2395159"],["-122.9185531","49.2403523"],["-122.912505","49.2438818"],["-122.9112388","49.2445993"],["-122.910736","49.2448468"],["-122.91031","49.2450305"],["-122.9099149","49.2451849"],["-122.9094712","49.2453414"],["-122.9090126","49.2454817"],["-122.908537","49.2456143"],["-122.9080656","49.2457262"],["-122.9075988","49.2458204"],["-122.9070726","49.2459056"],["-122.9065736","49.2459741"],["-122.9061672","49.2460185"],["-122.9056302","49.2460557"],["-122.9047991","49.2460693"],["-122.9040433","49.2460368"],["-122.9037438","49.246014"],["-122.9030246","49.2459298"],["-122.9024719","49.2458384"],["-122.9017274","49.245685"],["-122.9008091","49.2454806"],["-122.9000113","49.2452898"],["-122.8992035","49.2450711"],["-122.8984575","49.2448477"],["-122.8977565","49.2446084"],["-122.8965767","49.2441475"],["-122.895276","49.2435534"],["-122.8939798","49.2429173"],["-122.8934596","49.2426333"],["-122.8929565","49.24235"],["-122.884586","49.2372217"],["-122.8836292","49.236673"],["-122.8828851","49.2361962"],["-122.8821667","49.2357724"],["-122.8815647","49.2354675"],["-122.8810771","49.235251"],["-122.8804584","49.2350212"],["-122.8794916","49.2347178"],["-122.8781927","49.2343834"],["-122.8769948","49.2341202"],["-122.8759896","49.2339411"],["-122.8739925","49.2336467"],["-122.8535871","49.231328"],["-122.8479336","49.2308592"],["-122.8459354","49.2306646"],["-122.8442091","49.2304649"],["-122.8413746","49.2300765"],["-122.8404719","49.2299377"],["-122.8321213","49.229"],["-122.8250257","49.2280435"],["-122.8241992","49.227914"],["-122.8234454","49.227768"],["-122.8218769","49.2274178"],["-122.8210807","49.2272179"],["-122.8204663","49.2270378"],["-122.8199349","49.226862"],["-122.8194484","49.2266813"],["-122.8189092","49.2264572"],["-122.8183734","49.2262116"],["-122.8179788","49.2260085"],["-122.8175478","49.2257698"],["-122.8170953","49.2254948"],["-122.8167027","49.2252218"],["-122.8163546","49.2249493"],["-122.8160489","49.2246789"],["-122.8157525","49.2243918"],["-122.815467","49.2240839"],["-122.8152214","49.2237969"],["-122.8149722","49.2234671"],["-122.8147113","49.2230738"],["-122.81438","49.2224808"],["-122.8141773","49.2220354"],["-122.8132169","49.2195667"],["-122.8116049","49.2156163"],["-122.8107339","49.2135943"],["-122.8105469","49.213195"],["-122.810345","49.2128433"],["-122.8100691","49.2124444"],["-122.809764","49.2120838"],["-122.8095094","49.2118216"],["-122.8092165","49.2115625"],["-122.8081886","49.2107441"],["-122.8066935","49.2095801"],["-122.8057862","49.2088522"],["-122.8048618","49.2080641"],["-122.803711","49.2070259"],["-122.8019226","49.2053216"],["-122.7972851","49.2005744"],["-122.7966566","49.1999624"],["-122.7950284","49.1984936"],["-122.7940115","49.1976259"],["-122.7934676","49.1971982"],["-122.7928919","49.1967891"],["-122.7923675","49.1964491"],["-122.7918369","49.1961458"],["-122.7912886","49.195852"],["-122.7906948","49.1955628"],["-122.7900772","49.1952866"],["-122.7894468","49.195031"],["-122.7888266","49.1948122"],["-122.7880695","49.1945959"],["-122.7871365","49.1943939"],["-122.7859514","49.1941416"],["-122.7844119","49.193787"],["-122.739366","49.1825429"],["-122.7118823","49.1753297"],["-122.7105556","49.1750074"],["-122.7099834","49.1748662"],["-122.7075377","49.1742225"],["-122.705407","49.1736242"],["-122.6790905","49.1667137"],["-122.6671843","49.1636478"],["-122.6661171","49.1633243"],["-122.664522","49.1628469"],["-122.6184922","49.150505"],["-122.6174665","49.1501741"],["-122.6157967","49.1495738"],["-122.4962423","49.1027043"],["-122.3911618","49.061323"],["-122.3869441","49.059721"],["-122.3772049","49.0559198"],["-122.3737141","49.0544049"],["-122.3659041","49.0509592"],["-122.3541913","49.0458915"],["-122.3491409","49.0435587"],["-122.3377863","49.037638"],["-122.3372548","49.0374127"],["-122.3363628","49.0370781"],["-122.3352717","49.0367367"],["-122.3342107","49.0364881"],["-122.3332304","49.0363125"],["-122.33209","49.0361943"],["-122.2944635","49.0340919"],["-122.2879024","49.0337632"],["-122.2798249","49.0334094"],["-122.2570525","49.0333372"],["-122.2532887","49.0332585"],["-122.241696","49.0332597"],["-122.2387872","49.0334059"],["-122.2363039","49.0336451"],["-122.2353099","49.0337764"],["-122.2333126","49.0340914"],["-122.2322103","49.0343074"],["-122.23127","49.0345094"],["-122.2301387","49.0347801"],["-122.2291676","49.0350489"],["-122.2282785","49.0353136"],["-122.2272088","49.035685"],["-122.2256232","49.0362992"],["-122.2201871","49.0387086"],["-122.2172412","49.0399926"],["-122.214128","49.0412287"],["-122.1731334","49.0598097"],["-122.1703725","49.0613362"],["-122.1307963","49.0855164"],["-122.1266738","49.0880191"],["-122.1258072","49.088558"],["-122.1249332","49.089277"],["-122.1239184","49.090281"],["-122.1226424","49.0918233"],["-122.1025999","49.1182472"],["-122.1010655","49.1202362"],["-122.1006618","49.1206659"],["-122.1002293","49.1210281"],["-122.0998663","49.1212901"],["-122.0995794","49.1214849"],["-122.099287","49.1216519"],["-122.0987877","49.1219058"],["-122.0980973","49.1221971"],["-122.0968898","49.122643"],["-122.0890213","49.1252261"],["-122.0881028","49.1255709"],["-122.0874503","49.1258551"],["-122.0869933","49.1260724"],["-122.0861002","49.1265373"],["-122.0852998","49.1270295"],["-122.0761869","49.1337629"],["-122.0740027","49.1353757"],["-122.0734722","49.1356923"],["-122.0729106","49.135984"],["-122.0724589","49.1361896"],["-122.0720323","49.1363532"],["-122.071418","49.1365441"],["-122.0706138","49.1367306"],["-122.0676295","49.1372161"],["-122.0339554","49.1417253"],["-122.0267447","49.1426858"],["-122.026034","49.1428408"],["-122.0253755","49.1430025"],["-122.0232303","49.1436211"],["-122.0222711","49.143887"],["-122.0217067","49.1440231"],["-122.0206682","49.1442187"],["-122.0194543","49.1443551"],["-122.0183183","49.1443996"],["-121.969376","49.1435272"],["-121.9687497","49.1435458"],["-121.9676449","49.1436095"],["-121.9668966","49.1436909"],["-121.9666054","49.1437291"],["-121.9657222","49.1438583"],["-121.9653518","49.1439227"],["-121.9649815","49.1439971"],["-121.9211477","49.1548419"],["-121.9194471","49.155108"],["-121.918494","49.1551691"],["-121.9155111","49.1551809"],["-121.8277109","49.1547374"],["-121.8250368","49.154808"],["-121.8237798","49.1549455"],["-121.8224932","49.1551562"],["-121.8209779","49.1555038"],["-121.8184837","49.1563561"],["-121.8167797","49.1571294"],["-121.814628","49.1582076"],["-121.8124852","49.1592651"],["-121.8109796","49.1599466"],["-121.8095606","49.1603934"],["-121.8084165","49.1605716"],["-121.8074694","49.160635"],["-121.8064501","49.1606365"],["-121.8054417","49.1605163"],["-121.8043824","49.1603092"],["-121.8033374","49.1601004"],["-121.8023285","49.1599718"],["-121.8013353","49.159922"],["-121.800149","49.1600442"],["-121.7990543","49.1602897"],["-121.797753","49.1608756"],["-121.7928957","49.163595"],["-121.787441","49.1666768"],["-121.7858581","49.1677663"],["-121.7831936","49.1700275"],["-121.7820626","49.170864"],["-121.7807772","49.1714468"],["-121.7784039","49.1722312"],["-121.7775397","49.172545"],["-121.7772341","49.1726933"],["-121.7769366","49.1728718"],["-121.7765967","49.1730945"],["-121.7761563","49.1734734"],["-121.7747237","49.1748256"],["-121.7736926","49.1756083"],["-121.7720598","49.1764676"],["-121.7662575","49.1788938"],["-121.7462927","49.1871284"],["-121.7440207","49.1882393"],["-121.7419677","49.189471"],["-121.740171","49.190649"],["-121.7382438","49.192073"],["-121.7358964","49.1939793"],["-121.7347165","49.1947487"],["-121.7268005","49.199078"],["-121.7194237","49.2033878"],["-121.7175456","49.204321"],["-121.7118706","49.2063348"],["-121.7107153","49.2068775"],["-121.7100377","49.2073038"],["-121.7094275","49.2077942"],["-121.7062904","49.2109226"],["-121.705224","49.2118941"],["-121.7038125","49.2128385"],["-121.7023713","49.2135605"],["-121.7010145","49.214064"],["-121.6994327","49.2145283"],["-121.6967152","49.2150915"],["-121.6958958","49.2152777"],["-121.6951925","49.2155094"],["-121.6944832","49.2157897"],["-121.6937873","49.2161411"],["-121.6929848","49.2166581"],["-121.6919552","49.2176431"],["-121.6896312","49.2206418"],["-121.6881822","49.2229886"],["-121.6874914","49.2241764"],["-121.686951","49.2250227"],["-121.6862936","49.2258282"],["-121.6855871","49.2264477"],["-121.6844916","49.227326"],["-121.6839045","49.2278649"],["-121.6834688","49.228362"],["-121.6830596","49.2289731"],["-121.6826635","49.2300884"],["-121.6816148","49.2336057"],["-121.6810761","49.2366364"],["-121.6808554","49.2373145"],["-121.680548","49.2379002"],["-121.6802907","49.2382745"],["-121.6786503","49.2401764"],["-121.6780237","49.24111"],["-121.6777176","49.2418246"],["-121.6775215","49.2424807"],["-121.6773564","49.2435858"],["-121.6772816","49.24719"],["-121.6773472","49.2481846"],["-121.6778598","49.2501617"],["-121.6786494","49.2530437"],["-121.6787516","49.2538513"],["-121.678706","49.2544017"],["-121.6786074","49.2549213"],["-121.6782034","49.2558566"],["-121.6758039","49.2608579"],["-121.6755297","49.2616159"],["-121.6754668","49.2623051"],["-121.675518","49.2637068"],["-121.6754616","49.2645183"],["-121.6751609","49.2659413"],["-121.675072","49.2667212"],["-121.675148","49.2673395"],["-121.6755776","49.2686776"],["-121.6757347","49.2694193"],["-121.675762","49.2700896"],["-121.675604","49.2707563"],["-121.6752607","49.2714638"],["-121.6745598","49.2723221"],["-121.6723844","49.2747134"],["-121.6718189","49.2754838"],["-121.6715273","49.2761747"],["-121.6713658","49.277203"],["-121.6711947","49.2803809"],["-121.6710248","49.2811449"],["-121.6706516","49.2818721"],["-121.6694294","49.2836593"],["-121.6690445","49.2844219"],["-121.6689309","49.2849706"],["-121.6687646","49.2879256"],["-121.6685508","49.2887186"],["-121.6680768","49.2895124"],["-121.6672799","49.2902987"],["-121.6665109","49.2908158"],["-121.6653294","49.2913303"],["-121.6608576","49.2928535"],["-121.6593517","49.2934408"],["-121.6583513","49.2939752"],["-121.6574293","49.2946297"],["-121.6556673","49.2962277"],["-121.6538786","49.2979122"],["-121.6529793","49.298705"],["-121.6524861","49.299003"],["-121.651927","49.2992885"],["-121.6505309","49.2997856"],["-121.6482628","49.3004385"],["-121.6467683","49.3009829"],["-121.6456569","49.3015381"],["-121.644477","49.302304"],["-121.6395434","49.306208"],["-121.6358477","49.3092015"],["-121.63527","49.3097456"],["-121.6347199","49.3103973"],["-121.6318387","49.3140983"],["-121.6309611","49.3151078"],["-121.62976","49.3162334"],["-121.6194766","49.3243965"],["-121.6115439","49.3305372"],["-121.5898165","49.3467705"],["-121.585875","49.3497308"],["-121.5823156","49.3523592"],["-121.578322","49.3552903"],["-121.5771348","49.3561341"],["-121.5757653","49.356861"],["-121.5746403","49.3573943"],["-121.5734019","49.3579701"],["-121.5670675","49.3609488"],["-121.5650905","49.3616989"],["-121.562956","49.3622398"],["-121.56082","49.3624954"],["-121.5528357","49.3631597"],["-121.5485678","49.3637701"],["-121.5462811","49.3640445"],["-121.5445115","49.3640027"],["-121.5403111","49.3637999"],["-121.5344212","49.3639873"],["-121.5280385","49.364581"],["-121.5249972","49.3648623"],["-121.5238962","49.364794"],["-121.5226065","49.364571"],["-121.5212565","49.3641252"],["-121.5178956","49.3623448"],["-121.5168364","49.3618355"],["-121.5158935","49.3614823"],["-121.5147348","49.3612559"],["-121.5139838","49.3611808"],["-121.5132222","49.3611521"],["-121.512332","49.3611738"],["-121.4877504","49.3641324"],["-121.4715634","49.3646941"],["-121.4690366","49.3648797"],["-121.462267","49.3653306"],["-121.4578826","49.3656263"],["-121.4571758","49.3657004"],["-121.4566962","49.3658007"],["-121.4561412","49.3659255"],["-121.4557425","49.366044"],["-121.4550446","49.3662772"],["-121.4547593","49.3663924"],["-121.4544489","49.3665564"],["-121.453697","49.3670254"],["-121.4523195","49.3679467"],["-121.44909","49.3702733"],["-121.4477747","49.3711563"],["-121.4470741","49.3715288"],["-121.4463364","49.37188"],["-121.4457073","49.3721447"],["-121.4454109","49.3722574"],["-121.4449327","49.3724196"],["-121.4445871","49.3725265"],["-121.4440875","49.3726672"],["-121.4432128","49.3728677"],["-121.4424916","49.3729927"],["-121.4401852","49.3732621"],["-121.4395761","49.3732834"],["-121.4388771","49.3732913"],["-121.4382495","49.3732786"],["-121.437755","49.3732482"],["-121.4372587","49.3731979"],["-121.4368407","49.3731466"],["-121.4300303","49.3719086"],["-121.4260436","49.3712692"],["-121.42409","49.3710821"],["-121.42178","49.3712463"],["-121.4195816","49.3716302"],["-121.418602","49.3717911"],["-121.4175923","49.3719088"],["-121.4160668","49.3720637"],["-121.4154222","49.3720791"],["-121.4147345","49.3720782"],["-121.4142054","49.37205"],["-121.4138554","49.3720132"],["-121.4135395","49.3719658"],["-121.412832","49.3718182"],["-121.4053699","49.3699603"],["-121.4043004","49.3695863"],["-121.4038115","49.3693902"],["-121.4032347","49.369136"],["-121.4027241","49.3688975"],["-121.4016904","49.3683545"],["-121.4011814","49.3681053"],["-121.4007509","49.3679046"],["-121.4003527","49.3677515"],["-121.3992445","49.3674576"],["-121.3978452","49.3671437"],["-121.396224","49.3668015"],["-121.3941272","49.3664074"],["-121.3928916","49.3662079"],["-121.3920577","49.3661195"],["-121.3875404","49.3659289"],["-121.3865702","49.3658767"],["-121.3855355","49.3657553"],["-121.3850378","49.3656604"],["-121.3844293","49.3655129"],["-121.3791365","49.3639322"],["-121.3784384","49.3637551"],["-121.3775428","49.3635526"],["-121.3746063","49.3629767"],["-121.3735963","49.3628131"],["-121.3729638","49.362736"],["-121.3707781","49.3624915"],["-121.3701114","49.3624079"],["-121.3658035","49.3618539"],["-121.3650924","49.3617955"],["-121.36357","49.3617124"],["-121.3627358","49.3616809"],["-121.3618575","49.3616374"],["-121.3613427","49.3616313"],["-121.3609115","49.361641"],["-121.3605999","49.3616565"],["-121.360355","49.3616785"],["-121.3595469","49.3617992"],["-121.3591952","49.3618773"],["-121.3589051","49.3619556"],["-121.3562031","49.3627737"],["-121.3558915","49.3628583"],["-121.3551223","49.3630376"],["-121.3548157","49.3630979"],["-121.3545478","49.3631463"],["-121.3524717","49.3634367"],["-121.3509575","49.3635742"],["-121.3494939","49.3636744"],["-121.3491588","49.3636759"],["-121.3488296","49.3636645"],["-121.3484596","49.3636387"],["-121.3480747","49.3636015"],["-121.3476289","49.3635387"],["-121.3471848","49.3634505"],["-121.3467553","49.3633227"],["-121.3464011","49.3632073"],["-121.3460266","49.3630757"],["-121.3457192","49.3629501"],["-121.3453637","49.3628054"],["-121.3449808","49.3625742"],["-121.3430411","49.3613252"],["-121.3417868","49.3605891"],["-121.3394091","49.3593313"],["-121.3368459","49.3579374"],["-121.332192","49.3548972"],["-121.3309185","49.3541214"],["-121.3299011","49.3536347"],["-121.3283569","49.352987"],["-121.3219828","49.3504247"],["-121.3206658","49.3497572"],["-121.3195577","49.3490074"],["-121.3137858","49.3444643"],["-121.3125116","49.3435981"],["-121.3113382","49.3429824"],["-121.3042858","49.3401888"],["-121.3026549","49.3395127"],["-121.3017548","49.3390153"],["-121.3010862","49.3385286"],["-121.3004681","49.3379245"],["-121.2997114","49.3371334"],["-121.2989945","49.3364718"],["-121.2977501","49.3355532"],["-121.2970317","49.334929"],["-121.2965319","49.3342829"],["-121.2958502","49.3333149"],["-121.2950481","49.3323275"],["-121.2921033","49.3296414"],["-121.2900639","49.3278991"],["-121.2894224","49.3272948"],["-121.2891649","49.3269314"],["-121.2888955","49.3264413"],["-121.2887898","49.3260925"],["-121.2885253","49.3247689"],["-121.2883657","49.3243604"],["-121.2880823","49.3238978"],["-121.2877779","49.3235617"],["-121.2874088","49.3232337"],["-121.2868345","49.3228797"],["-121.2862327","49.3226004"],["-121.2854326","49.322354"],["-121.2833962","49.3218709"],["-121.2817547","49.3211857"],["-121.2789363","49.319605"],["-121.2785033","49.3192865"],["-121.2781372","49.3188933"],["-121.2779009","49.3185807"],["-121.2775341","49.3179846"],["-121.2771388","49.31747"],["-121.2766164","49.3169522"],["-121.2749642","49.3154686"],["-121.2696549","49.3101304"],["-121.2686275","49.3088889"],["-121.2684125","49.3085811"],["-121.268111","49.3081225"],["-121.2680018","49.3079224"],["-121.2679188","49.3077418"],["-121.2677449","49.3073612"],["-121.2676659","49.3071596"],["-121.2675686","49.3068175"],["-121.2674182","49.3061644"],["-121.2672954","49.3055119"],["-121.2670257","49.3016807"],["-121.2669397","49.3011167"],["-121.2668231","49.3008371"],["-121.2667066","49.3006097"],["-121.2665883","49.3004053"],["-121.2664636","49.3002006"],["-121.2662745","49.2999416"],["-121.2661043","49.2997481"],["-121.2656323","49.2992725"],["-121.2649154","49.2985848"],["-121.2492965","49.2839348"],["-121.2479665","49.2827696"],["-121.2469483","49.2820116"],["-121.2459881","49.2813759"],["-121.2453565","49.280987"],["-121.2436246","49.2800993"],["-121.225473","49.2719783"],["-121.2244357","49.2715784"],["-121.2232881","49.2711658"],["-121.2222627","49.2707676"],["-121.2214716","49.2704066"],["-121.219095","49.2691236"],["-121.2177433","49.2685048"],["-121.2165221","49.2680851"],["-121.2144809","49.2674561"],["-121.2127185","49.2668314"],["-121.2120029","49.2664085"],["-121.2098343","49.264798"],["-121.2085805","49.2639022"],["-121.2077631","49.2634528"],["-121.2066347","49.2629758"],["-121.2056863","49.2626945"],["-121.2035105","49.2621789"],["-121.1977813","49.2608722"],["-121.1966786","49.2605223"],["-121.1958745","49.2601271"],["-121.195293","49.2597748"],["-121.1947739","49.2593949"],["-121.1928046","49.2573845"],["-121.1910371","49.255845"],["-121.1897581","49.2547533"],["-121.1893035","49.2543559"],["-121.188613","49.2536066"],["-121.1872079","49.2518018"],["-121.1867075","49.2513467"],["-121.1861745","49.2509693"],["-121.1857523","49.2507635"],["-121.1852381","49.2505842"],["-121.1844375","49.2504046"],["-121.1832824","49.2502609"],["-121.1819997","49.2501356"],["-121.1806496","49.2500394"],["-121.1794817","49.2500085"],["-121.1792465","49.2500336"],["-121.1771755","49.2500846"],["-121.1757889","49.2500529"],["-121.1745213","49.2498758"],["-121.1725068","49.2494601"],["-121.1712412","49.2491041"],["-121.1695929","49.2485169"],["-121.1656033","49.2460003"],["-121.163541","49.2451986"],["-121.1627153","49.2448409"],["-121.1621593","49.2444938"],["-121.1616695","49.2440721"],["-121.1608175","49.2433851"],["-121.1590021","49.2425244"],["-121.1586097","49.2423261"],["-121.1581498","49.2421433"],["-121.157664","49.2419418"],["-121.1572249","49.2417536"],["-121.1569067","49.2416197"],["-121.156627","49.241537"],["-121.1561406","49.2414266"],["-121.1532891","49.2410608"],["-121.1471556","49.2404136"],["-121.1462889","49.2403298"],["-121.145597","49.2402623"],["-121.144909","49.2401626"],["-121.143072","49.2398158"],["-121.142286","49.2396678"],["-121.1414554","49.2395771"],["-121.1383691","49.2394181"],["-121.1367843","49.2393694"],["-121.1358227","49.2393114"],["-121.1347064","49.2392079"],["-121.1339509","49.2391487"],["-121.1333642","49.2391006"],["-121.1328567","49.2390264"],["-121.132415","49.2389319"],["-121.1319954","49.2388089"],["-121.1315673","49.2386579"],["-121.1311006","49.2384665"],["-121.1294505","49.2377869"],["-121.1283181","49.2372727"],["-121.127246","49.2367824"],["-121.1263764","49.2363614"],["-121.1237963","49.2352959"],["-121.1216073","49.2341831"],["-121.1206894","49.2337764"],["-121.1173164","49.2326967"],["-121.1153591","49.2319124"],["-121.1144205","49.2315758"],["-121.1135038","49.231352"],["-121.1123466","49.2309288"],["-121.1089828","49.2293227"],["-121.1061124","49.2275938"],["-121.1032128","49.2262861"],["-121.1023716","49.2256656"],["-121.1014293","49.2250799"],["-121.099111","49.2238785"],["-121.0969724","49.2229552"],["-121.0940575","49.2217535"],["-121.0930386","49.2212242"],["-121.0915247","49.2202323"],["-121.0907013","49.2196382"],["-121.0899985","49.2190871"],["-121.0896024","49.2187646"],["-121.0894896","49.2186692"],["-121.0893766","49.2185787"],["-121.0888194","49.2182141"],["-121.0885051","49.2180298"],["-121.0880297","49.2177959"],["-121.0845289","49.2162429"],["-121.0832051","49.2156554"],["-121.0821701","49.2151757"],["-121.0816005","49.2148589"],["-121.0812685","49.2146356"],["-121.0809771","49.2144057"],["-121.0803639","49.2137896"],["-121.0800174","49.2133871"],["-121.0795137","49.2127796"],["-121.0792817","49.2125453"],["-121.0790697","49.2123512"],["-121.0788986","49.212213"],["-121.0787521","49.2121132"],["-121.0785965","49.2120249"],["-121.0784409","49.2119445"],["-121.0780941","49.2118067"],["-121.0776876","49.2116471"],["-121.0774248","49.2115522"],["-121.0771623","49.2114634"],["-121.0768502","49.2113606"],["-121.0764746","49.2112382"],["-121.0751535","49.2108215"],["-121.0749388","49.2107656"],["-121.0746651","49.2107115"],["-121.0743624","49.2106786"],["-121.0740312","49.2106895"],["-121.0737319","49.2107375"],["-121.0735604","49.2107786"],["-121.0734076","49.2108248"],["-121.0732756","49.210883"],["-121.0731902","49.2109283"],["-121.0731221","49.210971"],["-121.073031","49.2110403"],["-121.0729498","49.2111216"],["-121.0728817","49.2112101"],["-121.0728322","49.2112861"],["-121.0728043","49.2113487"],["-121.0727791","49.2114356"],["-121.0727531","49.2115438"],["-121.072745","49.2116482"],["-121.0727502","49.2117768"],["-121.072825","49.2121862"],["-121.0728539","49.212411"],["-121.0728569","49.2125216"],["-121.0728452","49.2126614"],["-121.0727958","49.2129614"],["-121.0727159","49.2132502"],["-121.0725959","49.2135259"],["-121.0722511","49.2139869"],["-121.0716476","49.2147177"],["-121.0709265","49.2155405"],["-121.0682785","49.2185929"],["-121.0648175","49.2227953"],["-121.0642361","49.2236279"],["-121.0635713","49.2246469"],["-121.0627759","49.2258482"],["-121.0620317","49.2268692"],["-121.0613017","49.2278047"],["-121.060527","49.2287643"],["-121.0603616","49.2289326"],["-121.0602031","49.2290213"],["-121.0598889","49.2291429"],["-121.0595466","49.2292436"],["-121.0592531","49.229304"],["-121.0590786","49.2293292"],["-121.0589459","49.2293429"],["-121.0586977","49.2293369"],["-121.0583625","49.2292948"],["-121.0581292","49.2292445"],["-121.0579206","49.2291747"],["-121.057733","49.2291013"],["-121.0575584","49.2290217"],["-121.0573616","49.2289177"],["-121.0571709","49.228769"],["-121.0570362","49.2286443"],["-121.0569464","49.2285164"],["-121.0568696","49.2284025"],["-121.056813","49.22829"],["-121.0567674","49.2281345"],["-121.0567474","49.2279733"],["-121.0567334","49.2277794"],["-121.0567224","49.2275128"],["-121.0566834","49.2272251"],["-121.0566374","49.2270275"],["-121.0565363","49.2267297"],["-121.0564371","49.2265798"],["-121.0563178","49.2264176"],["-121.0561141","49.2261157"],["-121.056045","49.2259838"],["-121.0559799","49.2257966"],["-121.0558942","49.2253927"],["-121.0558354","49.2252413"],["-121.0557755","49.225114"],["-121.0557057","49.225012"],["-121.0556503","49.2249417"],["-121.055574","49.2248747"],["-121.0554459","49.2247856"],["-121.0551691","49.2246152"],["-121.0533475","49.2235677"],["-121.052962","49.2233668"],["-121.0527858","49.2232942"],["-121.0526073","49.2232385"],["-121.0524582","49.2231999"],["-121.0523154","49.2231731"],["-121.0518958","49.2231264"],["-121.0516311","49.2231227"],["-121.0514342","49.2231372"],["-121.0512321","49.2231673"],["-121.0510666","49.2232009"],["-121.0508885","49.2232495"],["-121.0506138","49.2233558"],["-121.0503294","49.223472"],["-121.0499735","49.2236212"],["-121.0496875","49.2237036"],["-121.0494085","49.2237429"],["-121.0491389","49.2237607"],["-121.0488704","49.2237529"],["-121.0485784","49.2237288"],["-121.0482779","49.2236927"],["-121.0479815","49.2236471"],["-121.0476343","49.2235861"],["-121.0471944","49.2234908"],["-121.0462857","49.2232717"],["-121.0460387","49.2232352"],["-121.04576","49.2232138"],["-121.0448455","49.2231937"],["-121.0446391","49.2231863"],["-121.0444154","49.223174"],["-121.0442185","49.2231506"],["-121.0440182","49.2231126"],["-121.0438238","49.2230673"],["-121.0436649","49.2230133"],["-121.0434377","49.2229084"],["-121.0430607","49.2227215"],["-121.0427278","49.222566"],["-121.0414712","49.2220394"],["-121.0410727","49.2219054"],["-121.0407742","49.2218158"],["-121.040566","49.2217824"],["-121.0403883","49.2217712"],["-121.0402507","49.221783"],["-121.0401049","49.2218053"],["-121.0399371","49.2218513"],["-121.0397212","49.2219445"],["-121.0395421","49.2220017"],["-121.0392997","49.2220628"],["-121.0391221","49.2220787"],["-121.0389548","49.2220718"],["-121.0386326","49.2220468"],["-121.0383492","49.2219933"],["-121.037727","49.2218597"],["-121.0374084","49.2217952"],["-121.0366013","49.2216897"],["-121.0347758","49.2214772"],["-121.0343462","49.2214161"],["-121.0340383","49.2213645"],["-121.0338621","49.221322"],["-121.0336945","49.2212673"],["-121.0335001","49.2211923"],["-121.0332818","49.221103"],["-121.0331063","49.2210016"],["-121.0328957","49.2208604"],["-121.0324982","49.2205578"],["-121.0307736","49.2191751"],["-121.030516","49.2189777"],["-121.0301102","49.2187244"],["-121.0298743","49.2185899"],["-121.0296225","49.2184552"],["-121.0293759","49.21833"],["-121.0275661","49.2175467"],["-121.0273661","49.2174528"],["-121.0271682","49.2173501"],["-121.0269086","49.2172055"],["-121.0266292","49.217027"],["-121.0257333","49.2163216"],["-121.0240991","49.2149911"],["-121.0228373","49.2139606"],["-121.0225169","49.213697"],["-121.0223104","49.2135599"],["-121.0221326","49.213465"],["-121.0217151","49.2132884"],["-121.0204052","49.212773"],["-121.0198297","49.2125274"],["-121.019488","49.2123502"],["-121.0192116","49.2121901"],["-121.0189657","49.2120257"],["-121.0182047","49.2113508"],["-121.0177319","49.2109725"],["-121.017533","49.2108422"],["-121.0172195","49.2106687"],["-121.0169075","49.2105095"],["-121.0165277","49.2103405"],["-121.016202","49.2102018"],["-121.0158116","49.210057"],["-121.015409","49.2099345"],["-121.0150234","49.2098489"],["-121.0146064","49.2097842"],["-121.0141618","49.2097371"],["-121.0137253","49.2097155"],["-121.0132641","49.2097376"],["-121.0118825","49.2098234"],["-121.0114242","49.2098338"],["-121.0110636","49.2098172"],["-121.0107225","49.2097865"],["-121.010325","49.2097229"],["-121.0099447","49.2096528"],["-121.009528","49.2095521"],["-121.0091526","49.2094315"],["-121.008807","49.2093011"],["-121.0085337","49.2091808"],["-121.0082692","49.2090249"],["-121.007868","49.2087533"],["-121.0075015","49.2084886"],["-121.0072471","49.2083143"],["-121.0069798","49.2081904"],["-121.0064535","49.2078865"],["-121.0058803","49.2076556"],["-121.0054537","49.2075034"],["-121.0050989","49.2073852"],["-121.0048038","49.2073227"],["-121.0044719","49.20726"],["-121.0041247","49.2072033"],["-121.0023751","49.2069845"],["-121.0018861","49.2069042"],["-121.0013702","49.206793"],["-121.0008965","49.2066821"],["-121.0004336","49.2065612"],["-120.9989449","49.206105"],["-120.998247","49.2058852"],["-120.9938384","49.2045518"],["-120.9934082","49.2044515"],["-120.9913801","49.204035"],["-120.9909876","49.2039475"],["-120.9907309","49.2038792"],["-120.9904396","49.2037764"],["-120.9901322","49.2036454"],["-120.9898878","49.2035162"],["-120.989663","49.2033697"],["-120.9894549","49.2031881"],["-120.989049","49.2027964"],["-120.9886741","49.2024253"],["-120.98832","49.2020834"],["-120.9880481","49.2018678"],["-120.9877504","49.2016825"],["-120.9874679","49.2015394"],["-120.987103","49.2014075"],["-120.9868045","49.2013285"],["-120.9864566","49.2012583"],["-120.9860758","49.2012133"],["-120.9856648","49.2011701"],["-120.9853405","49.2011315"],["-120.984797","49.201024"],["-120.9844805","49.2009323"],["-120.9841978","49.2008281"],["-120.9839509","49.2007252"],["-120.9836958","49.2005855"],["-120.9834681","49.2004276"],["-120.9832493","49.2002554"],["-120.9830512","49.2000426"],["-120.9829066","49.199857"],["-120.9827984","49.1996941"],["-120.982713","49.1994882"],["-120.982648","49.1992699"],["-120.982611","49.1990741"],["-120.9826096","49.1988662"],["-120.9826233","49.1986892"],["-120.9826455","49.1985188"],["-120.9828217","49.1980723"],["-120.98296","49.1977797"],["-120.9830426","49.1975827"],["-120.9830866","49.1974005"],["-120.9830975","49.1972322"],["-120.9830579","49.1970182"],["-120.9829869","49.1968529"],["-120.9828493","49.1966837"],["-120.982689","49.1965416"],["-120.9823562","49.196336"],["-120.9819695","49.1961318"],["-120.9816164","49.1959728"],["-120.981287","49.1958123"],["-120.9810287","49.195714"],["-120.9807579","49.1956331"],["-120.980501","49.1955774"],["-120.9801911","49.195542"],["-120.9789081","49.1954651"],["-120.9785646","49.1954229"],["-120.9783301","49.1953775"],["-120.978111","49.195326"],["-120.9778376","49.1952417"],["-120.977517","49.1951271"],["-120.9772583","49.1950046"],["-120.9770403","49.1948784"],["-120.9768344","49.1947435"],["-120.9766438","49.1945967"],["-120.9764551","49.1944152"],["-120.9762117","49.1941402"],["-120.9759359","49.1938266"],["-120.9738581","49.1914395"],["-120.9736355","49.1911908"],["-120.9734585","49.1910292"],["-120.9732514","49.1908626"],["-120.9730347","49.1907212"],["-120.9728305","49.1906104"],["-120.9725417","49.1904783"],["-120.9718529","49.1902159"],["-120.9716505","49.1901302"],["-120.9714675","49.1900426"],["-120.9713013","49.1899591"],["-120.9711637","49.1898624"],["-120.9710425","49.189764"],["-120.9709694","49.1896845"],["-120.9708375","49.1894799"],["-120.9698427","49.1876641"],["-120.9697544","49.1875173"],["-120.9696879","49.187408"],["-120.9695544","49.1872316"],["-120.9693836","49.1870161"],["-120.9692093","49.1868233"],["-120.9690558","49.1866516"],["-120.968956","49.1865041"],["-120.9688977","49.1863481"],["-120.9688889","49.1862322"],["-120.9689221","49.1861308"],["-120.9689734","49.1860324"],["-120.9690747","49.1859055"],["-120.9692464","49.185739"],["-120.9693782","49.185573"],["-120.9694554","49.1854276"],["-120.9695022","49.1852975"],["-120.9695174","49.1851662"],["-120.969392","49.1840328"],["-120.9692871","49.1832012"],["-120.9692064","49.1827479"],["-120.9689773","49.1821847"],["-120.96863","49.181806"],["-120.9677733","49.1811528"],["-120.9663871","49.1797093"],["-120.9660958","49.1793799"],["-120.9651831","49.1785727"],["-120.9649276","49.1783049"],["-120.9647362","49.1780216"],["-120.9644873","49.1773959"],["-120.9643259","49.1770956"],["-120.9640513","49.1768391"],["-120.9629608","49.1761582"],["-120.961914","49.1755791"],["-120.9617214","49.1755028"],["-120.9614496","49.1754229"],["-120.96092","49.1752941"],["-120.9605534","49.1752136"],["-120.9603142","49.1751621"],["-120.9601492","49.1751196"],["-120.9600127","49.1750688"],["-120.9599089","49.1750196"],["-120.9597978","49.1749503"],["-120.9595194","49.1747085"],["-120.9593177","49.1745425"],["-120.9590844","49.1743949"],["-120.9588189","49.1742679"],["-120.9585324","49.1741765"],["-120.9578784","49.1740738"],["-120.9577042","49.1740253"],["-120.9575396","49.173968"],["-120.9573651","49.1738737"],["-120.9572124","49.1737506"],["-120.9570172","49.1734989"],["-120.9566276","49.1728819"],["-120.95634","49.1724358"],["-120.9562005","49.1722507"],["-120.956031","49.1720862"],["-120.9556233","49.1717939"],["-120.9551152","49.1715221"],["-120.9546304","49.1712311"],["-120.9542212","49.1708986"],["-120.9539348","49.1705763"],["-120.9535522","49.1701504"],["-120.9524954","49.1690829"],["-120.9519674","49.1685353"],["-120.9515577","49.1681506"],["-120.9510248","49.1676832"],["-120.9508146","49.1675323"],["-120.9505618","49.1673884"],["-120.949814","49.1670496"],["-120.9465531","49.1657587"],["-120.9438555","49.1644009"],["-120.9434685","49.1642094"],["-120.9423547","49.1637229"],["-120.9417595","49.1635137"],["-120.9332384","49.1610133"],["-120.9311639","49.1604148"],["-120.9297329","49.1600221"],["-120.9293365","49.1598841"],["-120.9289656","49.1597492"],["-120.927948","49.1593215"],["-120.9265191","49.158702"],["-120.9259093","49.15845"],["-120.9253413","49.1582602"],["-120.9246927","49.1580898"],["-120.9240008","49.1579733"],["-120.9233033","49.1578943"],["-120.9214296","49.1577765"],["-120.9208558","49.1576951"],["-120.9202768","49.1575814"],["-120.918952","49.1571714"],["-120.912528","49.1551362"],["-120.9112892","49.1547284"],["-120.9105771","49.1544439"],["-120.9100031","49.1541917"],["-120.9094925","49.1539077"],["-120.9086961","49.1533713"],["-120.9078637","49.1528116"],["-120.9070063","49.1522791"],["-120.9062412","49.1519398"],["-120.9054865","49.1516674"],["-120.9038336","49.1510901"],["-120.9032871","49.1508789"],["-120.9030143","49.150748"],["-120.9023278","49.1503841"],["-120.9014354","49.1498121"],["-120.8995279","49.1485548"],["-120.8981062","49.1479136"],["-120.8952694","49.1467702"],["-120.8946754","49.1465685"],["-120.894136","49.1464344"],["-120.8926434","49.1461083"],["-120.8920765","49.1459804"],["-120.8914175","49.1457907"],["-120.8908275","49.1454856"],["-120.8901935","49.1449915"],["-120.889981","49.1447385"],["-120.8898631","49.1444674"],["-120.8898387","49.1440459"],["-120.889936","49.1435936"],["-120.8902267","49.1422486"],["-120.8903087","49.1416855"],["-120.8902744","49.1412396"],["-120.8901739","49.1408079"],["-120.88992","49.1402747"],["-120.8894314","49.1395541"],["-120.8891016","49.1391064"],["-120.8887682","49.1387548"],["-120.8882988","49.1383441"],["-120.8877971","49.1379192"],["-120.8869195","49.1373304"],["-120.8846131","49.1358253"],["-120.884061","49.1353525"],["-120.8837854","49.1349385"],["-120.8835471","49.1345084"],["-120.8833101","49.1338484"],["-120.8830729","49.1330956"],["-120.8827596","49.1322346"],["-120.8824229","49.1313384"],["-120.8822469","49.1310606"],["-120.882004","49.130809"],["-120.8787021","49.1280531"],["-120.8782443","49.12757"],["-120.8780482","49.1271366"],["-120.8779193","49.1266852"],["-120.8779259","49.1261665"],["-120.8779527","49.1256213"],["-120.8779749","49.1251583"],["-120.8779512","49.1247071"],["-120.8778784","49.1242825"],["-120.8778149","49.1240137"],["-120.8777211","49.1237925"],["-120.8776695","49.123663"],["-120.8775842","49.1235584"],["-120.8774188","49.1233133"],["-120.8756094","49.121136"],["-120.8752616","49.1207608"],["-120.8746585","49.1201726"],["-120.8741026","49.1197079"],["-120.8734946","49.1192579"],["-120.8728246","49.1187672"],["-120.8705201","49.1172001"],["-120.8695229","49.1166916"],["-120.8686117","49.1163943"],["-120.8512765","49.1122543"],["-120.8484681","49.1115551"],["-120.8478325","49.1113042"],["-120.8473027","49.1109922"],["-120.8468509","49.1106319"],["-120.8461516","49.1099052"],["-120.8445487","49.1076796"],["-120.8433739","49.1069673"],["-120.8414014","49.1064654"],["-120.8403189","49.1061521"],["-120.839853","49.1059654"],["-120.8393948","49.1057185"],["-120.8388092","49.1051931"],["-120.8358118","49.1018237"],["-120.8354975","49.1014165"],["-120.8350431","49.1006858"],["-120.8348749","49.1002356"],["-120.834736","49.0997892"],["-120.8344283","49.0968783"],["-120.8343315","49.09635"],["-120.8341848","49.0958978"],["-120.8339429","49.0954678"],["-120.8333765","49.0947627"],["-120.8310532","49.0923148"],["-120.8303197","49.0915487"],["-120.8299368","49.0911828"],["-120.8294055","49.0907969"],["-120.8282356","49.0900256"],["-120.8265665","49.0889695"],["-120.8250488","49.0880133"],["-120.8230836","49.0867983"],["-120.8132609","49.0797789"],["-120.8124254","49.078854"],["-120.8118726","49.0776075"],["-120.8114859","49.0769354"],["-120.8110897","49.0765021"],["-120.8106105","49.0761353"],["-120.8100736","49.0758324"],["-120.8091446","49.0754781"],["-120.8067656","49.0746247"],["-120.8059534","49.074241"],["-120.8052699","49.0737583"],["-120.8034804","49.0720032"],["-120.8023919","49.0714075"],["-120.7986875","49.0698869"],["-120.7976538","49.0695529"],["-120.7975637","49.0695277"],["-120.794507","49.0688608"],["-120.7933107","49.0684438"],["-120.7919912","49.0675922"],["-120.7908822","49.0666924"],["-120.7904646","49.0664004"],["-120.789999","49.0661552"],["-120.7827169","49.0629872"],["-120.7826855","49.0630877"],["-120.7899353","49.0662472"],["-120.7903925","49.0664668"],["-120.7908363","49.0667929"],["-120.792218","49.067896"],["-120.7928042","49.0683"],["-120.7933362","49.0685731"],["-120.7938519","49.0687712"],["-120.7943358","49.0689204"],["-120.7963244","49.0693402"],["-120.7970948","49.0695035"],["-120.7974434","49.0695871"],["-120.7977416","49.0696668"],["-120.798572","49.0699426"],["-120.799416","49.0702737"],["-120.8022952","49.0715066"],["-120.8030802","49.0719105"],["-120.8033663","49.0720909"],["-120.8037776","49.0724357"],["-120.8047598","49.0734575"],["-120.805193","49.0738642"],["-120.8054608","49.0740734"],["-120.8059091","49.0743494"],["-120.8067692","49.0747395"],["-120.809283","49.075614"],["-120.8100314","49.075923"],["-120.8105601","49.0762304"],["-120.8109958","49.0765768"],["-120.8113586","49.0769797"],["-120.8117705","49.0777096"],["-120.8122763","49.0788691"],["-120.8125873","49.0793329"],["-120.8129536","49.0797126"],["-120.8144345","49.0808174"],["-120.8227677","49.0867685"],["-120.8238168","49.0874445"],["-120.8264418","49.0890477"],["-120.8283053","49.090197"],["-120.8298421","49.0912492"],["-120.8302186","49.0916026"],["-120.8304195","49.0917988"],["-120.8319724","49.0934447"],["-120.8332646","49.0948178"],["-120.8337923","49.0954965"],["-120.834034","49.0959351"],["-120.8341816","49.0963678"],["-120.8342807","49.0969176"],["-120.8343737","49.0976502"],["-120.8344526","49.0983764"],["-120.8345701","49.0997966"],["-120.8347008","49.1002267"],["-120.8348843","49.1007137"],["-120.835354","49.1014672"],["-120.8356845","49.10187"],["-120.8386884","49.1052446"],["-120.8390122","49.1055429"],["-120.8392938","49.1057824"],["-120.8397706","49.1060444"],["-120.8402656","49.1062387"],["-120.8406229","49.1063485"],["-120.8414389","49.1065593"],["-120.8424224","49.1068085"],["-120.8429761","49.1069574"],["-120.8434086","49.1071402"],["-120.8438132","49.1073903"],["-120.8443075","49.1077763"],["-120.8446924","49.1082094"],["-120.8459278","49.1099103"],["-120.8464046","49.1104652"],["-120.8466934","49.1107485"],["-120.8469267","49.110939"],["-120.8472183","49.1111584"],["-120.8476813","49.111403"],["-120.8481829","49.1116171"],["-120.8485585","49.1117425"],["-120.8489016","49.1118438"],["-120.849177","49.1119219"],["-120.8670953","49.1161344"],["-120.8674069","49.1160894"],["-120.8676938","49.1159107"],["-120.8669964","49.1159885"],["-120.851184","49.112232"],["-120.8484724","49.1115564"],["-120.8478313","49.1113037"],["-120.8473086","49.1109965"],["-120.8468493","49.1106308"],["-120.8461614","49.1099178"],["-120.8445496","49.1076806"],["-120.84336","49.1069625"],["-120.8413625","49.1064559"],["-120.840323","49.1061536"],["-120.8398454","49.105962"],["-120.8393937","49.1057178"],["-120.8388122","49.1051964"],["-120.8358118","49.1018236"],["-120.8354889","49.101404"],["-120.835041","49.1006819"],["-120.8348736","49.1002321"],["-120.8347355","49.0997875"],["-120.8344277","49.0968726"],["-120.8343336","49.0963589"],["-120.8341845","49.0958972"],["-120.8339373","49.0954592"],["-120.8333636","49.0947489"],["-120.8310672","49.0923297"],["-120.8303171","49.0915462"],["-120.8299322","49.0911791"],["-120.8293512","49.0907589"],["-120.8281055","49.0899421"],["-120.8265872","49.0889825"],["-120.8250017","49.0879849"],["-120.8231343","49.0868314"],["-120.8133002","49.0798089"],["-120.8124247","49.0788532"],["-120.8118729","49.0776078"],["-120.8114878","49.0769378"],["-120.8110863","49.0764993"],["-120.8106072","49.0761334"],["-120.810078","49.0758346"],["-120.8090318","49.0754375"],["-120.8067645","49.0746243"],["-120.8059508","49.0742394"],["-120.8052497","49.0737396"],["-120.8034666","49.071992"],["-120.8023884","49.0714056"],["-120.7986721","49.0698812"],["-120.7976541","49.0695529"],["-120.7975626","49.0695275"],["-120.7945485","49.0688707"],["-120.7933174","49.0684473"],["-120.7919986","49.0675974"],["-120.790879","49.0666897"],["-120.7904635","49.0663996"],["-120.789993","49.0661524"],["-120.7807453","49.0621541"],["-120.7795801","49.0618069"],["-120.7786969","49.0615847"],["-120.7764786","49.0613478"],["-120.7614743","49.0603974"],["-120.7599855","49.0602671"],["-120.758629","49.0600712"],["-120.7575077","49.0597891"],["-120.7560071","49.0592357"],["-120.7509995","49.0570401"],["-120.7495801","49.0564914"],["-120.7489757","49.0563578"],["-120.7480632","49.0563149"],["-120.7472199","49.0563898"],["-120.7444334","49.056889"],["-120.7436559","49.056932"],["-120.7420167","49.0568627"],["-120.7404208","49.0568823"],["-120.733733","49.0577153"],["-120.732429","49.0579608"],["-120.7317354","49.058192"],["-120.7306415","49.0587007"],["-120.7298464","49.0592366"],["-120.7286942","49.0605902"],["-120.7243302","49.0661535"],["-120.7236387","49.0668828"],["-120.7228495","49.0675189"],["-120.7198856","49.0691869"],["-120.7145308","49.0720677"],["-120.7125206","49.0728493"],["-120.7107394","49.0731947"],["-120.7085101","49.0735392"],["-120.7069401","49.0738568"],["-120.7052014","49.0742853"],["-120.7032692","49.0748452"],["-120.7012563","49.0754564"],["-120.7003483","49.0758027"],["-120.6996094","49.0761884"],["-120.6989424","49.0766349"],["-120.6982575","49.0772136"],["-120.6975558","49.0780165"],["-120.6953186","49.0811185"],["-120.6945084","49.0820587"],["-120.6937119","49.0826386"],["-120.6909323","49.0839355"],["-120.6901413","49.0844597"],["-120.6896694","49.0850345"],["-120.6894125","49.0855053"],["-120.6891178","49.0862515"],["-120.6889533","49.0867196"],["-120.6888593","49.0869751"],["-120.68875","49.0871868"],["-120.6885258","49.0874647"],["-120.6882854","49.0877319"],["-120.6879844","49.0879893"],["-120.6875594","49.0882231"],["-120.6869231","49.0885321"],["-120.6862922","49.0887835"],["-120.6850363","49.089289"],["-120.6825892","49.0903218"],["-120.6807369","49.0911949"],["-120.6781252","49.0926024"],["-120.676818","49.0932415"],["-120.6745651","49.0942328"],["-120.6735405","49.0948157"],["-120.6727115","49.0955755"],["-120.6709352","49.0973519"],["-120.6705229","49.0978931"],["-120.6699576","49.0989323"],["-120.6693351","49.0996118"],["-120.668296","49.1001374"],["-120.6671363","49.1005827"],["-120.6662607","49.101029"],["-120.6654632","49.1017423"],["-120.6635857","49.1044045"],["-120.6627589","49.1053695"],["-120.6616279","49.1060915"],["-120.6593738","49.1071986"],["-120.6570803","49.1093613"],["-120.6562708","49.1099848"],["-120.655443","49.1103978"],["-120.654284","49.1107919"],["-120.6493626","49.1122431"],["-120.6480622","49.1127434"],["-120.6472503","49.1131931"],["-120.646171","49.1139244"],["-120.6441697","49.1154461"],["-120.6383334","49.1187818"],["-120.6376702","49.1190543"],["-120.6340284","49.1203333"],["-120.6307629","49.1214831"],["-120.6294726","49.1220348"],["-120.6288863","49.1223829"],["-120.6278399","49.1232565"],["-120.627039","49.1244081"],["-120.6246043","49.1285379"],["-120.6227275","49.1311674"],["-120.6196929","49.1348618"],["-120.6185162","49.1359945"],["-120.6177672","49.1365941"],["-120.6119037","49.1409044"],["-120.6115766","49.1411583"],["-120.6113644","49.1413478"],["-120.6111696","49.1415566"],["-120.6107358","49.1420728"],["-120.6104206","49.1425537"],["-120.6102694","49.1428562"],["-120.6101111","49.1432407"],["-120.6095501","49.1450343"],["-120.6092899","49.1455342"],["-120.6089829","49.1459733"],["-120.6081181","49.1468813"],["-120.6075976","49.147261"],["-120.6049808","49.1489213"],["-120.5995154","49.1522657"],["-120.5991573","49.152436"],["-120.5987818","49.1525973"],["-120.5983658","49.1527368"],["-120.5978776","49.1528803"],["-120.5975026","49.1529609"],["-120.5971238","49.1530279"],["-120.5966867","49.1530887"],["-120.5962529","49.1531251"],["-120.5958328","49.1531507"],["-120.5952812","49.1531624"],["-120.594222","49.1531499"],["-120.5904647","49.1530881"],["-120.5898949","49.1530836"],["-120.5897214","49.1530988"],["-120.5895398","49.1531118"],["-120.5892836","49.1531342"],["-120.589007","49.153164"],["-120.5887418","49.1532078"],["-120.5885216","49.1532609"],["-120.5882916","49.1533283"],["-120.5881044","49.1534107"],["-120.5879356","49.1535032"],["-120.5877539","49.1536204"],["-120.5875959","49.1537409"],["-120.5874467","49.1538777"],["-120.5873178","49.1540352"],["-120.587218","49.1541769"],["-120.5871305","49.1543567"],["-120.5868869","49.1550003"],["-120.5867663","49.1552693"],["-120.5866918","49.155398"],["-120.5865888","49.1555244"],["-120.5865087","49.1556005"],["-120.5863925","49.1556777"],["-120.5862352","49.1557516"],["-120.5860133","49.1558407"],["-120.5857833","49.1559392"],["-120.5852966","49.1561864"],["-120.5850523","49.1563257"],["-120.5848874","49.1564356"],["-120.5847075","49.1565731"],["-120.5845449","49.1567282"],["-120.5843867","49.1569067"],["-120.5842721","49.1570588"],["-120.5841553","49.1572811"],["-120.5839503","49.1577728"],["-120.5838591","49.1580339"],["-120.5837874","49.1582474"],["-120.5837492","49.1584142"],["-120.5836924","49.1587436"],["-120.5836543","49.1592313"],["-120.583678","49.1597502"],["-120.5838339","49.1603846"],["-120.584109","49.1614078"],["-120.5842065","49.1618351"],["-120.5842103","49.1620345"],["-120.5841999","49.1622235"],["-120.5841567","49.1624235"],["-120.5841042","49.1626305"],["-120.5840161","49.1628692"],["-120.5839132","49.1630609"],["-120.5837716","49.1632533"],["-120.5834245","49.1635886"],["-120.5824635","49.164465"],["-120.5821849","49.1646898"],["-120.5819999","49.164817"],["-120.5817918","49.1649357"],["-120.5815254","49.1650527"],["-120.5810653","49.1652322"],["-120.5800301","49.1655884"],["-120.5791864","49.1658755"],["-120.5786519","49.1660439"],["-120.5784232","49.166097"],["-120.5782011","49.1661319"],["-120.5779382","49.166154"],["-120.5777267","49.1661611"],["-120.5774963","49.1661506"],["-120.5772419","49.1661262"],["-120.576825","49.1660638"],["-120.5755486","49.1658171"],["-120.5751175","49.1657361"],["-120.5749304","49.1657158"],["-120.5748087","49.165715"],["-120.5746967","49.1657218"],["-120.5745775","49.1657486"],["-120.5744441","49.1657929"],["-120.5743353","49.1658442"],["-120.5742578","49.1658917"],["-120.5741953","49.1659396"],["-120.5741445","49.165989"],["-120.5740823","49.1660844"],["-120.5740362","49.1661803"],["-120.5740006","49.166242"],["-120.5739625","49.1663039"],["-120.5739161","49.16637"],["-120.5738545","49.1664334"],["-120.5737909","49.1664892"],["-120.5737266","49.1665431"],["-120.5736511","49.1665957"],["-120.573575","49.1666354"],["-120.5734704","49.1666754"],["-120.5733509","49.1667128"],["-120.5731703","49.1667549"],["-120.5727737","49.1668017"],["-120.5723824","49.1668316"],["-120.5722571","49.1668332"],["-120.5721663","49.1668244"],["-120.572076","49.1668097"],["-120.572004","49.1667932"],["-120.5719375","49.1667738"],["-120.5718579","49.1667482"],["-120.5717846","49.1667202"],["-120.5717096","49.1666749"],["-120.5716022","49.1665776"],["-120.57139","49.1663524"],["-120.5713036","49.1662745"],["-120.5712204","49.1662085"],["-120.5711295","49.1661537"],["-120.5709232","49.166054"],["-120.5706502","49.1659292"],["-120.5701882","49.1657378"],["-120.5699234","49.1656513"],["-120.5696949","49.165622"],["-120.5695029","49.1656211"],["-120.5692659","49.165665"],["-120.5689066","49.1657636"],["-120.5683865","49.16595"],["-120.56731","49.1664068"],["-120.567018","49.166551"],["-120.5668619","49.1666465"],["-120.5667043","49.1667675"],["-120.566579","49.1668859"],["-120.5664793","49.166998"],["-120.5663968","49.1671166"],["-120.5662983","49.1672903"],["-120.5662273","49.1674588"],["-120.5661564","49.1676576"],["-120.5661067","49.1679906"],["-120.5660586","49.1683816"],["-120.5660297","49.1685219"],["-120.5659959","49.1686321"],["-120.5659385","49.1687771"],["-120.5658313","49.1689711"],["-120.5656495","49.1692577"],["-120.5654961","49.1694244"],["-120.5653557","49.1695479"],["-120.5651821","49.1696548"],["-120.5649445","49.1697644"],["-120.5646995","49.1698482"],["-120.5644903","49.1698967"],["-120.5642923","49.1699237"],["-120.5641131","49.169928"],["-120.5640583","49.1699281"],["-120.563867","49.1699188"],["-120.5635685","49.169883"],["-120.5623612","49.169707"],["-120.5621129","49.1696942"],["-120.5619036","49.1696949"],["-120.561674","49.1697114"],["-120.5612861","49.1697674"],["-120.5606575","49.1698946"],["-120.5600794","49.1700198"],["-120.559678","49.1701147"],["-120.5593799","49.170195"],["-120.5591077","49.170283"],["-120.5587568","49.1704106"],["-120.5583469","49.1705608"],["-120.5580166","49.1706875"],["-120.5576832","49.1708273"],["-120.5574025","49.170961"],["-120.5573021","49.1710118"],["-120.5569832","49.1712085"],["-120.5565844","49.1715161"],["-120.5557867","49.1722024"],["-120.55478","49.173057"],["-120.5544806","49.1732884"],["-120.5540278","49.1736146"],["-120.5534559","49.1740011"],["-120.5529985","49.1743064"],["-120.5526702","49.1745381"],["-120.5524547","49.1747149"],["-120.5522701","49.1748725"],["-120.5521193","49.1750284"],["-120.5519572","49.1752273"],["-120.5518015","49.175449"],["-120.5517139","49.1756094"],["-120.5516458","49.1757669"],["-120.5515857","49.1759802"],["-120.5515519","49.1761571"],["-120.5515317","49.1763294"],["-120.5515402","49.1765825"],["-120.5515698","49.1769924"],["-120.551614","49.1775733"],["-120.5516583","49.1782868"],["-120.5517111","49.1788171"],["-120.5517501","49.1790165"],["-120.5518153","49.1792203"],["-120.5519202","49.1794575"],["-120.5520679","49.1797115"],["-120.5521872","49.1798755"],["-120.5523869","49.1800858"],["-120.554022","49.1815715"],["-120.5541925","49.1817593"],["-120.5542831","49.1818891"],["-120.5543442","49.1820225"],["-120.5543959","49.1821664"],["-120.5544397","49.182455"],["-120.554508","49.1830523"],["-120.5545789","49.183318"],["-120.5546677","49.1835364"],["-120.5547533","49.1837393"],["-120.5547926","49.1839339"],["-120.5548058","49.184279"],["-120.5548188","49.1845685"],["-120.5548488","49.1847131"],["-120.5552293","49.1859307"],["-120.5553497","49.1862502"],["-120.5554368","49.1864233"],["-120.5555611","49.1866204"],["-120.5562129","49.1874504"],["-120.5566531","49.1880614"],["-120.5567796","49.1882155"],["-120.5569039","49.1883325"],["-120.5570453","49.1884386"],["-120.5572536","49.1885576"],["-120.5574564","49.1886361"],["-120.5576922","49.188705"],["-120.55798","49.1887559"],["-120.5582631","49.1887893"],["-120.5585245","49.1888001"],["-120.558781","49.1887886"],["-120.5589706","49.1887705"],["-120.5592384","49.1887189"],["-120.5596571","49.1885929"],["-120.5599566","49.1885142"],["-120.5601489","49.1884962"],["-120.5603173","49.1885034"],["-120.5606104","49.1885312"],["-120.5608787","49.1886025"],["-120.5611917","49.1887159"],["-120.5614816","49.1888462"],["-120.5616425","49.1889656"],["-120.561708","49.1890535"],["-120.5617443","49.1891398"],["-120.5617707","49.1892691"],["-120.5617547","49.1894111"],["-120.5616718","49.1895571"],["-120.5615624","49.1896649"],["-120.5614082","49.1897608"],["-120.5612361","49.1898148"],["-120.5610188","49.1898504"],["-120.560689","49.1898681"],["-120.5604406","49.1898842"],["-120.5602544","49.1899051"],["-120.5600658","49.1899737"],["-120.5599117","49.1900424"],["-120.5598147","49.1901121"],["-120.5597224","49.1902355"],["-120.5596521","49.1903849"],["-120.5595703","49.1906357"],["-120.5594861","49.1909884"],["-120.5593892","49.1914588"],["-120.5593775","49.1916534"],["-120.5593997","49.1917865"],["-120.5594935","49.1920546"],["-120.5612274","49.196501"],["-120.5615223","49.1972898"],["-120.5615539","49.1974021"],["-120.5615661","49.1974989"],["-120.5615669","49.1976574"],["-120.5615451","49.1978936"],["-120.5614274","49.1982758"],["-120.5610355","49.1992951"],["-120.5606562","49.2001682"],["-120.5603651","49.2007885"],["-120.5601354","49.201232"],["-120.5599383","49.2015885"],["-120.5598509","49.2017696"],["-120.5597757","49.2019154"],["-120.5596179","49.202157"],["-120.5594692","49.202353"],["-120.5593643","49.2024552"],["-120.5590822","49.2027027"],["-120.5589649","49.2027864"],["-120.558866","49.2028442"],["-120.5586535","49.2029488"],["-120.5584731","49.2030347"],["-120.5582451","49.203151"],["-120.5579841","49.2032957"],["-120.5578565","49.2033832"],["-120.5577355","49.2034732"],["-120.5575974","49.2035831"],["-120.5575015","49.2036935"],["-120.5573448","49.2039576"],["-120.5567297","49.2051101"],["-120.5565371","49.2054563"],["-120.5564512","49.2055797"],["-120.5563128","49.2057467"],["-120.5556403","49.2064464"],["-120.555147","49.2069635"],["-120.5550242","49.2071127"],["-120.554966","49.2072112"],["-120.5549186","49.2073137"],["-120.554883","49.2074614"],["-120.5548833","49.2075973"],["-120.5549293","49.2078263"],["-120.555087","49.2084471"],["-120.5550859","49.2086106"],["-120.5550254","49.2087503"],["-120.5549661","49.2088248"],["-120.5549037","49.2088796"],["-120.5548005","49.2089474"],["-120.5546364","49.2090183"],["-120.5544807","49.2090682"],["-120.554146","49.2091419"],["-120.5528363","49.2094121"],["-120.5525597","49.209483"],["-120.5523481","49.2095545"],["-120.5521722","49.2096336"],["-120.5518755","49.2097904"],["-120.5516741","49.209925"],["-120.5515486","49.2100254"],["-120.5514513","49.2101243"],["-120.5513542","49.2102369"],["-120.5512763","49.2103501"],["-120.5511921","49.2105147"],["-120.5511388","49.2106657"],["-120.551105","49.2109335"],["-120.5511679","49.2130782"],["-120.5513325","49.2141317"],["-120.5516335","49.2149286"],["-120.5517286","49.2161118"],["-120.5512136","49.2166369"],["-120.5492309","49.2171862"],["-120.5484665","49.2176983"],["-120.5473316","49.2195535"],["-120.5471461","49.2218644"],["-120.5470323","49.2222724"],["-120.5464237","49.2230397"],["-120.546266","49.223425"],["-120.5462693","49.2246858"],["-120.5463329","49.2249805"],["-120.5465333","49.2252252"],["-120.5471543","49.2257122"],["-120.5481401","49.2263118"],["-120.5485835","49.226721"],["-120.5488356","49.2272579"],["-120.5487936","49.2277685"],["-120.548868","49.2282869"],["-120.5489774","49.2285885"],["-120.5493322","49.2291357"],["-120.5493355","49.2294395"],["-120.5491824","49.2298869"],["-120.5491195","49.2304101"],["-120.5492038","49.2309181"],["-120.5494669","49.2314635"],["-120.550225","49.2322051"],["-120.5521146","49.2337692"],["-120.5535524","49.2346303"],["-120.554346","49.234994"],["-120.5549192","49.235188"],["-120.5569124","49.235382"],["-120.5578597","49.2356024"],["-120.5586897","49.2359867"],["-120.5596445","49.2367848"],["-120.5617176","49.2386868"],["-120.5632714","49.2399567"],["-120.5663268","49.242081"],["-120.5675766","49.2428677"],["-120.5687053","49.2432504"],["-120.5698674","49.2435146"],["-120.5709424","49.2436242"],["-120.5719701","49.2436451"],["-120.5730562","49.2435561"],["-120.5742632","49.2434037"],["-120.5751742","49.2432589"],["-120.5761118","49.2431855"],["-120.5769054","49.2432277"],["-120.5778204","49.2433431"],["-120.5787733","49.2435463"],["-120.5797704","49.2438894"],["-120.5808735","49.2443935"],["-120.5817689","49.2449879"],["-120.5822246","49.2454871"],["-120.582761","49.2463041"],["-120.5831506","49.2470665"],["-120.5834144","49.2479128"],["-120.5834897","49.2487996"],["-120.5834869","49.2494106"],["-120.583465","49.2499448"],["-120.5834228","49.2506534"],["-120.583296","49.2531006"],["-120.5831534","49.2547522"],["-120.582749","49.2589324"],["-120.5827729","49.259764"],["-120.5830136","49.2604278"],["-120.5835998","49.2613836"],["-120.5844664","49.2623616"],["-120.5850574","49.2631902"],["-120.5853842","49.2639597"],["-120.5855087","49.2646034"],["-120.5855069","49.2652444"],["-120.5853387","49.2660176"],["-120.5849968","49.2669191"],["-120.5843856","49.267871"],["-120.5833336","49.2688308"],["-120.5807003","49.2706854"],["-120.5776861","49.2730218"],["-120.5770698","49.2738647"],["-120.5768584","49.2746513"],["-120.5767773","49.2753234"],["-120.5769014","49.2761097"],["-120.5772435","49.2768832"],["-120.5775845","49.2773438"],["-120.5787802","49.2785207"],["-120.5793036","49.2790745"],["-120.57977","49.2796076"],["-120.5801277","49.2804149"],["-120.5802221","49.281189"],["-120.5800859","49.2818417"],["-120.5798476","49.2823931"],["-120.5785491","49.2843713"],["-120.5782805","49.2853555"],["-120.5777487","49.2889795"],["-120.5778013","49.2892909"],["-120.577983","49.2895188"],["-120.5784038","49.2897191"],["-120.5789993","49.2898197"],["-120.5805994","49.289987"],["-120.5823476","49.2903027"],["-120.5830588","49.2906009"],["-120.5832419","49.2909164"],["-120.5831069","49.2913141"],["-120.5822798","49.2922802"],["-120.582184","49.2928668"],["-120.5827164","49.293937"],["-120.5833087","49.2945016"],["-120.5862189","49.2960098"],["-120.5892032","49.2965898"],["-120.5897729","49.2969374"],["-120.5898926","49.2972735"],["-120.5894438","49.2977561"],["-120.5859584","49.2993899"],["-120.584812","49.2996528"],["-120.5817724","49.2996948"],["-120.5800039","49.2998523"],["-120.5783466","49.3001187"],["-120.5768878","49.3000197"],["-120.575945","49.3000401"],["-120.5746002","49.3002031"],["-120.5737564","49.3005796"],["-120.5730878","49.3014627"],["-120.5724828","49.3023475"],["-120.5719668","49.3032979"],["-120.5717707","49.303945"],["-120.5716388","49.3050103"],["-120.5714496","49.3097214"],["-120.5714258","49.3113407"],["-120.5716359","49.3121384"],["-120.5720829","49.3128826"],["-120.5727109","49.313829"],["-120.5731246","49.3145602"],["-120.5734209","49.3154586"],["-120.5734925","49.3164074"],["-120.5733175","49.3172166"],["-120.5689859","49.3267096"],["-120.5687352","49.3288886"],["-120.5701648","49.3370395"],["-120.5701695","49.3384155"],["-120.5696097","49.3397543"],["-120.5689752","49.3411065"],["-120.5682853","49.3425365"],["-120.5677397","49.3440457"],["-120.5658947","49.3513973"],["-120.5664344","49.3563364"],["-120.5669541","49.357352"],["-120.5685313","49.3587106"],["-120.5689491","49.3593148"],["-120.5690816","49.3598023"],["-120.5689688","49.3603215"],["-120.5686873","49.3607793"],["-120.5683792","49.3611037"],["-120.5679386","49.3613707"],["-120.5672732","49.3616406"],["-120.5664856","49.3617871"],["-120.5658099","49.3618043"],["-120.5651369","49.3617388"],["-120.5644897","49.3615355"],["-120.5638934","49.3612605"],["-120.5634866","49.3609076"],["-120.5631485","49.3604601"],["-120.5624811","49.3594297"],["-120.5617172","49.3586687"],["-120.5606366","49.3582233"],["-120.5602319","49.3581502"],["-120.5596161","49.3580669"],["-120.5582151","49.3580381"],["-120.5572162","49.3582522"],["-120.5566177","49.3586786"],["-120.5564182","49.3593495"],["-120.5567496","49.3606164"],["-120.557136","49.3611205"],["-120.5576857","49.3614127"],["-120.5586678","49.3617507"],["-120.5595617","49.3622361"],["-120.5639768","49.3652145"],["-120.5653322","49.3658809"],["-120.5684142","49.3667353"],["-120.5712921","49.367395"],["-120.5723639","49.3675732"],["-120.5728092","49.3675744"],["-120.573862","49.3673895"],["-120.5743947","49.3673854"],["-120.5757372","49.3676203"],["-120.576566","49.3675991"],["-120.5780143","49.367141"],["-120.5783539","49.3671034"],["-120.5786492","49.3671772"],["-120.5789162","49.3673364"],["-120.5789987","49.3674678"],["-120.5789184","49.3679986"],["-120.5784075","49.3684272"],["-120.5765846","49.3690175"],["-120.5745195","49.3696485"],["-120.5730451","49.3702609"],["-120.5717836","49.3704564"],["-120.5697601","49.3705144"],["-120.5683855","49.3709593"],["-120.5650405","49.3740252"],["-120.5642048","49.3751968"],["-120.5638824","49.3765238"],["-120.5637034","49.3793345"],["-120.5628629","49.383507"],["-120.5630033","49.3904866"],["-120.5644266","49.3945577"],["-120.564718","49.3965608"],["-120.5644768","49.398665"],["-120.5638079","49.4044813"],["-120.5633182","49.4059645"],["-120.5622596","49.4079467"],["-120.5619692","49.4088828"],["-120.5619701","49.4099776"],["-120.5624169","49.411198"],["-120.5655751","49.4166054"],["-120.5660298","49.4179248"],["-120.5667615","49.4207869"],["-120.5668092","49.4215431"],["-120.5666342","49.4222717"],["-120.5659238","49.4235518"],["-120.5649424","49.4246633"],["-120.5639834","49.4253374"],["-120.562954","49.4258032"],["-120.5616848","49.4260995"],["-120.5605122","49.4262305"],["-120.5593567","49.4262071"],["-120.5574764","49.425952"],["-120.5563881","49.4258931"],["-120.5551862","49.4260194"],["-120.5541362","49.4263199"],["-120.5532852","49.4267497"],["-120.5524362","49.4273795"],["-120.547331","49.4320062"],["-120.5463711","49.4334331"],["-120.5458342","49.4353072"],["-120.5451529","49.4363563"],["-120.5441762","49.4372044"],["-120.5430379","49.4378147"],["-120.541621","49.4386152"],["-120.5399227","49.4401654"],["-120.5381453","49.440919"],["-120.5357235","49.4414472"],["-120.5327967","49.4425158"],["-120.5309736","49.4434315"],["-120.5304682","49.4437859"],["-120.5295081","49.4447283"],["-120.5284292","49.4472677"],["-120.5268966","49.4509874"],["-120.5266324","49.451438"],["-120.5264105","49.4517621"],["-120.5258807","49.452276"],["-120.5254259","49.452574"],["-120.5249731","49.4528412"],["-120.5232462","49.4535267"],["-120.5214794","49.4539491"],["-120.5206067","49.4539289"],["-120.5199657","49.4538729"],["-120.5195789","49.4538511"],["-120.5192009","49.4538591"],["-120.5188622","49.4538886"],["-120.5183987","49.4539589"],["-120.517739","49.4540684"],["-120.5170321","49.4541506"],["-120.5165275","49.4541828"],["-120.516045","49.4541605"],["-120.5153865","49.4540529"],["-120.5141017","49.4538127"],["-120.5135249","49.4537248"],["-120.5133193","49.4537126"],["-120.5128247","49.4537078"],["-120.5125298","49.4537345"],["-120.5122146","49.4537711"],["-120.5116045","49.4538891"],["-120.5112038","49.4540197"],["-120.5109053","49.454149"],["-120.5106186","49.4542974"],["-120.5104337","49.4544151"],["-120.5102899","49.4545319"],["-120.5100851","49.4547232"],["-120.5090823","49.4557185"],["-120.5088882","49.4558716"],["-120.5086834","49.4560263"],["-120.5067144","49.4572097"],["-120.5053283","49.458013"],["-120.5052136","49.4581058"],["-120.5042303","49.4586844"],["-120.5032714","49.4592223"],["-120.5031082","49.4593178"],["-120.5029654","49.4594138"],["-120.5027986","49.45954"],["-120.5026102","49.4597095"],["-120.5024816","49.4598649"],["-120.5023627","49.4600413"],["-120.5022433","49.4602532"],["-120.5019009","49.460948"],["-120.5017311","49.4611973"],["-120.501576","49.4613728"],["-120.5014701","49.4614704"],["-120.5012883","49.4616069"],["-120.5011283","49.4616994"],["-120.5009124","49.461808"],["-120.5004519","49.4619964"],["-120.5001668","49.4620742"],["-120.4997626","49.4621587"],["-120.4989523","49.4621856"],["-120.4982613","49.4621286"],["-120.497823","49.4620142"],["-120.4907641","49.4597774"],["-120.4904113","49.4596757"],["-120.4899981","49.4595917"],["-120.4885767","49.4595289"],["-120.4863071","49.4597868"],["-120.4841199","49.4602424"],["-120.4801832","49.4617747"],["-120.4791411","49.4620244"],["-120.4777872","49.4620461"],["-120.466715","49.4614438"],["-120.4598872","49.4603023"],["-120.4584289","49.4601511"],["-120.4568531","49.4601138"],["-120.454546","49.4604695"],["-120.4435677","49.4631252"],["-120.4425961","49.4632846"],["-120.44183","49.4633222"],["-120.441053","49.4632444"],["-120.4401955","49.462998"],["-120.4383997","49.4623461"],["-120.4367957","49.4618838"],["-120.4346313","49.4615027"],["-120.4330939","49.4612039"],["-120.4317703","49.4607927"],["-120.4284068","49.4595533"],["-120.4267677","49.4590968"],["-120.4257479","49.4589989"],["-120.4012789","49.4576053"],["-120.3982576","49.4573713"],["-120.3973118","49.4570973"],["-120.3908556","49.4546986"],["-120.389322","49.4542124"],["-120.3871886","49.4538707"],["-120.3851375","49.4536341"],["-120.3837439","49.4535917"],["-120.3813209","49.4538111"],["-120.375509","49.4545613"],["-120.3709506","49.455467"],["-120.3692586","49.4556176"],["-120.3469866","49.4556573"],["-120.3440188","49.4555162"],["-120.3418443","49.4549273"],["-120.3340809","49.4522196"],["-120.3276488","49.4497933"],["-120.3170695","49.4439882"],["-120.3072157","49.4363656"],["-120.3054161","49.4352216"],["-120.30419","49.434733"],["-120.3031004","49.4344404"],["-120.3022493","49.4342785"],["-120.3014005","49.4341863"],["-120.3004788","49.434151"],["-120.2991479","49.4342115"],["-120.2943202","49.4345113"],["-120.2819403","49.4344341"],["-120.2793894","49.4343444"],["-120.2784764","49.4341978"],["-120.2775836","49.4340125"],["-120.2767542","49.4337957"],["-120.2757153","49.4333516"],["-120.2746707","49.4328607"],["-120.2735501","49.432127"],["-120.2727229","49.4314161"],["-120.2721887","49.4307691"],["-120.2716951","49.4299849"],["-120.2704552","49.426784"],["-120.2700967","49.4260347"],["-120.2697837","49.4256291"],["-120.2692998","49.4252176"],["-120.2686823","49.4248044"],["-120.2669468","49.4239303"],["-120.265968","49.4235502"],["-120.2650427","49.4233032"],["-120.2638947","49.4231051"],["-120.2626142","49.4230268"],["-120.2615113","49.4229055"],["-120.2600041","49.4224346"],["-120.2588258","49.4217891"],["-120.2582896","49.4213876"],["-120.2579694","49.4209865"],["-120.2577229","49.420414"],["-120.2576206","49.4198734"],["-120.2577461","49.4191092"],["-120.2582174","49.418302"],["-120.2602836","49.4166501"],["-120.2605991","49.416235"],["-120.2608396","49.4157911"],["-120.2612501","49.414768"],["-120.2628206","49.4114976"],["-120.263466","49.4108622"],["-120.2643311","49.4101406"],["-120.2646852","49.409623"],["-120.2648299","49.4091701"],["-120.2648813","49.4086329"],["-120.2647993","49.4081292"],["-120.2645878","49.4076001"],["-120.264279","49.4071057"],["-120.2637191","49.4065872"],["-120.2606151","49.4042249"],["-120.2574861","49.4026048"],["-120.2560792","49.4020779"],["-120.253221","49.4017063"],["-120.234569","49.4008126"],["-120.2324835","49.4006083"],["-120.2317502","49.4003658"],["-120.2298121","49.3996418"],["-120.2286187","49.3993946"],["-120.2254973","49.3990151"],["-120.2235323","49.3987412"],["-120.2222185","49.3984146"],["-120.2188886","49.3972209"],["-120.212424","49.3947545"],["-120.210195","49.3936858"],["-120.2088653","49.3926602"],["-120.2075681","49.3913861"],["-120.2066389","49.3902896"],["-120.2062548","49.3898703"],["-120.2055454","49.3893162"],["-120.2034988","49.3879439"],["-120.2023852","49.3871291"],["-120.1994373","49.3850172"],["-120.1985704","49.3845224"],["-120.1966383","49.3839199"],["-120.1872488","49.3815024"],["-120.1848442","49.3811186"],["-120.1825832","49.3810856"],["-120.1740447","49.3817377"],["-120.1711321","49.3817504"],["-120.1690255","49.381362"],["-120.1600106","49.3789939"],["-120.1570001","49.3778568"],["-120.1557374","49.377598"],["-120.1545994","49.3775688"],["-120.1537148","49.3776608"],["-120.152216","49.3778082"],["-120.1514856","49.3778434"],["-120.1501904","49.3776869"],["-120.148714","49.3771787"],["-120.1434511","49.3748414"],["-120.1370787","49.3721109"],["-120.1316946","49.3682283"],["-120.130697","49.3676194"],["-120.1296854","49.3672473"],["-120.1286782","49.3670487"],["-120.1248575","49.3665207"],["-120.1242672","49.3664528"],["-120.1212379","49.3662194"],["-120.1207619","49.3661701"],["-120.1204735","49.3661221"],["-120.1196468","49.3659441"],["-120.1190298","49.3657886"],["-120.1187408","49.365696"],["-120.1185234","49.3655915"],["-120.1183488","49.3654648"],["-120.1179441","49.3650765"],["-120.1174151","49.3645858"],["-120.1163412","49.3635217"],["-120.1153258","49.3625123"],["-120.1147047","49.3619163"],["-120.1144646","49.3617265"],["-120.1142099","49.3615555"],["-120.1139514","49.3614155"],["-120.1136901","49.3612873"],["-120.1134616","49.361192"],["-120.1131469","49.3610954"],["-120.1128367","49.3610181"],["-120.1124438","49.3609522"],["-120.1120654","49.3608974"],["-120.11029","49.3607709"],["-120.108973","49.3606839"],["-120.1076787","49.3606117"],["-120.1072616","49.3606156"],["-120.106175","49.3606793"],["-120.1028906","49.360916"],["-120.102219","49.3609474"],["-120.1018199","49.3609374"],["-120.1014203","49.3608946"],["-120.1011677","49.3608404"],["-120.1009452","49.360774"],["-120.1007685","49.3607071"],["-120.1005705","49.3606104"],["-120.1004038","49.3604905"],["-120.100268","49.3603748"],["-120.1001358","49.3602136"],["-120.1000174","49.360047"],["-120.0998334","49.359754"],["-120.0996396","49.3594424"],["-120.0994618","49.3591717"],["-120.0992892","49.3589598"],["-120.0990957","49.3587495"],["-120.0989288","49.3585736"],["-120.0987786","49.3584314"],["-120.0986223","49.3582947"],["-120.0983932","49.3581139"],["-120.0980023","49.3578356"],["-120.0974747","49.3574665"],["-120.0970024","49.357143"],["-120.0966165","49.3568974"],["-120.0961889","49.3566637"],["-120.0957556","49.3564344"],["-120.0947889","49.3559986"],["-120.0943225","49.3558128"],["-120.0931679","49.355438"],["-120.0907647","49.3546765"],["-120.0901561","49.3544556"],["-120.088831","49.3539424"],["-120.0881336","49.3536741"],["-120.0878534","49.35359"],["-120.0875886","49.3535263"],["-120.0872619","49.3534748"],["-120.0869879","49.3534655"],["-120.0866646","49.3534752"],["-120.0863278","49.3535151"],["-120.085877","49.3536062"],["-120.0837903","49.3540767"],["-120.0835098","49.35415"],["-120.0832308","49.3542425"],["-120.0829303","49.3543672"],["-120.0826666","49.3544987"],["-120.0823686","49.3546771"],["-120.0810697","49.3554854"],["-120.0806968","49.3556972"],["-120.0804687","49.3558155"],["-120.0802185","49.3559247"],["-120.0799407","49.3560091"],["-120.0796446","49.3560746"],["-120.0793358","49.3561119"],["-120.0790932","49.3561257"],["-120.0788278","49.3561164"],["-120.0786141","49.3560831"],["-120.0782869","49.3559875"],["-120.0781453","49.3559219"],["-120.0780339","49.3558616"],["-120.0778949","49.3557636"],["-120.0778077","49.3556896"],["-120.0776922","49.3555721"],["-120.0775844","49.3554589"],["-120.0772571","49.3551247"],["-120.0770622","49.3549341"],["-120.0768794","49.3547566"],["-120.0767548","49.3546343"],["-120.0766571","49.3545231"],["-120.0765514","49.354376"],["-120.0765059","49.3542366"],["-120.0764877","49.3541312"],["-120.0764662","49.3536257"],["-120.0764883","49.3532931"],["-120.07652","49.3529991"],["-120.0765645","49.3527415"],["-120.0765869","49.3524934"],["-120.0765849","49.3522624"],["-120.0765701","49.3521593"],["-120.0765276","49.3519111"],["-120.0764706","49.3516546"],["-120.0763576","49.3512675"],["-120.0758909","49.3498948"],["-120.0754059","49.3485897"],["-120.0753086","49.3483588"],["-120.0752134","49.3481855"],["-120.0750127","49.3479293"],["-120.0747748","49.3477475"],["-120.0744044","49.3475346"],["-120.0698072","49.3452423"],["-120.0675273","49.3444606"],["-120.064785","49.3431043"],["-120.060947","49.3413852"],["-120.0574754","49.3394433"],["-120.0549471","49.3376084"],["-120.0539218","49.3367543"],["-120.0490093","49.3320912"],["-120.0470437","49.3280255"],["-120.0449019","49.3258548"],["-120.0435028","49.3249215"],["-120.0418922","49.3235041"],["-120.0409013","49.3221466"],["-120.0392262","49.3205798"],["-120.0378998","49.3189849"],["-120.0364425","49.3172777"],["-120.0330746","49.3146317"],["-120.0323144","49.3136852"],["-120.0321426","49.3119788"],["-120.031961","49.3111758"],["-120.0312191","49.310025"],["-120.0304702","49.3089929"],["-120.0300874","49.3085804"],["-120.0280096","49.3065845"],["-120.0277994","49.3062361"],["-120.0277214","49.3059979"],["-120.0276959","49.3057752"],["-120.027697","49.305569"],["-120.0277919","49.3048334"],["-120.0279335","49.303829"],["-120.0279497","49.3035623"],["-120.0278866","49.3030233"],["-120.0273581","49.2999719"],["-120.0267209","49.2914023"],["-120.026728","49.2909895"],["-120.0267625","49.2907485"],["-120.0268241","49.2905254"],["-120.0270569","49.2900835"],["-120.0279561","49.2885448"],["-120.0282824","49.287904"],["-120.0284124","49.2875683"],["-120.0285161","49.2872327"],["-120.0285975","49.2866245"],["-120.0286068","49.2860182"],["-120.0284005","49.2851972"],["-120.0267699","49.2808588"],["-120.0265196","49.2800249"],["-120.0263793","49.2789093"],["-120.026235","49.2784289"],["-120.0255024","49.2779131"],["-120.0232424","49.2764542"],["-120.0229152","49.2762212"],["-120.0227554","49.2760625"],["-120.022605","49.2758915"],["-120.0223928","49.2755745"],["-120.0215497","49.274136"],["-120.0208377","49.2722274"],["-120.0197096","49.2701582"],["-120.0193529","49.2693892"],["-120.0190152","49.2678818"],["-120.018816","49.267295"],["-120.0185254","49.2668564"],["-120.0180997","49.2664527"],["-120.0167455","49.2654097"],["-120.0162676","49.2649004"],["-120.01599","49.264417"],["-120.0154693","49.2629217"],["-120.0147073","49.2611797"],["-120.014601","49.2605156"],["-120.0148824","49.2586821"],["-120.0148907","49.2580802"],["-120.0142561","49.2557935"],["-120.0138635","49.2550107"],["-120.0133139","49.2542248"],["-120.0115803","49.2527184"],["-120.0050879","49.247407"],["-120.0039981","49.2462191"],["-120.0033756","49.244507"],["-120.0031714","49.2435798"],["-119.9962418","49.2383705"],["-119.9927875","49.2358703"],["-119.9914387","49.2351235"],["-119.9901933","49.2345693"],["-119.9887371","49.2341361"],["-119.98618","49.2335517"],["-119.9838845","49.2329773"],["-119.9833285","49.2327554"],["-119.9819662","49.2320658"],["-119.980069","49.2310179"],["-119.9790292","49.2305316"],["-119.9774073","49.230081"],["-119.9727078","49.229035"],["-119.9696406","49.2283414"],["-119.9691132","49.228145"],["-119.9685673","49.2278775"],["-119.9676277","49.2273584"],["-119.966705","49.2268958"],["-119.9656658","49.226558"],["-119.9640133","49.2260972"],["-119.9621751","49.2256654"],["-119.9605013","49.2251923"],["-119.9598796","49.2248605"],["-119.9593479","49.224496"],["-119.9588387","49.2239726"],["-119.95837","49.223447"],["-119.9575979","49.2224971"],["-119.9569034","49.2218682"],["-119.9562943","49.2214445"],["-119.9556735","49.2211429"],["-119.9547239","49.2208898"],["-119.9534361","49.2207124"],["-119.9486039","49.2203277"],["-119.9478772","49.2203067"],["-119.9470948","49.2203092"],["-119.9415192","49.2206744"],["-119.9386841","49.2205211"],["-119.9347355","49.2202009"],["-119.9322193","49.2194632"],["-119.9308387","49.2189311"],["-119.9295018","49.2183699"],["-119.9284515","49.2180299"],["-119.9271106","49.2179402"],["-119.9240662","49.2182305"],["-119.9219857","49.2181472"],["-119.9208161","49.217998"],["-119.9198762","49.2178509"],["-119.9190511","49.217741"],["-119.9175312","49.2176112"],["-119.9169447","49.2175337"],["-119.916367","49.2174044"],["-119.9156517","49.2172417"],["-119.9142463","49.2169319"],["-119.9139526","49.2168517"],["-119.9137306","49.21677"],["-119.913494","49.216669"],["-119.9130184","49.2164282"],["-119.9124206","49.2161227"],["-119.9119194","49.2158755"],["-119.910339","49.2152252"],["-119.9097824","49.2150267"],["-119.9093993","49.2149108"],["-119.9089707","49.2148163"],["-119.9070085","49.2143847"],["-119.9000188","49.2125989"],["-119.8962559","49.2111172"],["-119.8929175","49.209525"],["-119.8924105","49.209188"],["-119.891862","49.2086435"],["-119.890461","49.2067611"],["-119.8896852","49.206008"],["-119.8885748","49.2053294"],["-119.8875505","49.2049089"],["-119.8864587","49.2046334"],["-119.8852485","49.2044756"],["-119.8836864","49.2044909"],["-119.8748076","49.2052212"],["-119.8726761","49.2053805"],["-119.8721608","49.205371"],["-119.870833","49.2052675"],["-119.8667482","49.2048173"],["-119.8650676","49.2046735"],["-119.8644598","49.2046693"],["-119.8637352","49.2046916"],["-119.8560959","49.2052967"],["-119.8556268","49.205313"],["-119.823233","49.2051226"],["-119.8230483","49.2051272"],["-119.8230249","49.2059851"],["-119.8230059","49.2061738"],["-119.822944","49.206309"],["-119.8228278","49.2064335"],["-119.8226703","49.2065146"],["-119.8224427","49.2065611"],["-119.8216402","49.2066257"],["-119.819072","49.2068131"],["-119.8188203","49.2068024"],["-119.8186693","49.2067768"],["-119.8184664","49.2067246"],["-119.8182186","49.2066474"],["-119.8179148","49.2065266"],["-119.8164955","49.2058369"],["-119.8155241","49.2053882"],["-119.8152518","49.2052965"],["-119.8150719","49.2052435"],["-119.8149097","49.2052244"],["-119.8145964","49.2052216"],["-119.7897179","49.2052049"],["-119.7890042","49.2051545"],["-119.7885398","49.2050726"],["-119.7880428","49.2049548"],["-119.787558","49.2047795"],["-119.786809","49.2044152"],["-119.7811436","49.2013438"],["-119.7806492","49.2010104"],["-119.7400441","49.1629103"],["-119.7395867","49.1624193"],["-119.7389942","49.1616235"],["-119.7386599","49.161078"],["-119.7382444","49.1602375"],["-119.7378978","49.1592398"],["-119.7350515","49.1461847"],["-119.7349533","49.1454688"],["-119.7349201","49.1438428"],["-119.735232","49.1394829"],["-119.7352713","49.1378685"],["-119.7352191","49.1372628"],["-119.7350929","49.136501"],["-119.7324072","49.1233431"],["-119.7322511","49.1229806"],["-119.7320049","49.1226381"],["-119.7312078","49.1217942"],["-119.730913","49.1214203"],["-119.7306908","49.1210549"],["-119.7305256","49.1206892"],["-119.7304252","49.1202853"],["-119.7303813","49.1192111"],["-119.7302997","49.1187346"],["-119.730189","49.1183886"],["-119.7300111","49.1180623"],["-119.7298558","49.1178582"],["-119.7297484","49.1177253"],["-119.7294965","49.1174711"],["-119.7196081","49.1091338"],["-119.7182733","49.1079786"],["-119.717802","49.1074846"],["-119.7174761","49.107076"],["-119.7170972","49.1065181"],["-119.7169846","49.1063425"],["-119.7167632","49.1059191"],["-119.7165749","49.1054632"],["-119.7163031","49.1044161"],["-119.7160958","49.1029031"],["-119.715936","49.1019078"],["-119.7149939","49.0980577"],["-119.7147068","49.0971497"],["-119.7144282","49.0965788"],["-119.7140467","49.0959732"],["-119.7120882","49.0931895"],["-119.7116917","49.0925344"],["-119.7114817","49.0920492"],["-119.7113737","49.0917153"],["-119.7112859","49.0912094"],["-119.7110101","49.0884196"],["-119.7107455","49.0873112"],["-119.7082964","49.0795256"],["-119.7071432","49.0713952"],["-119.7071353","49.0710737"],["-119.70726","49.0701616"],["-119.7071921","49.069558"],["-119.7068113","49.0679788"],["-119.7065974","49.0674347"],["-119.7062231","49.06675"],["-119.7060654","49.0663614"],["-119.7060343","49.0660307"],["-119.706055","49.0646834"],["-119.705907","49.0634556"],["-119.7039882","49.0516931"],["-119.7037656","49.0506527"],["-119.7033536","49.0498656"],["-119.7021228","49.0476739"],["-119.7018018","49.046972"],["-119.7013969","49.0457673"],["-119.6996452","49.0401658"],["-119.6990902","49.0384408"],["-119.6988391","49.0378731"],["-119.6985771","49.0374784"],["-119.6980304","49.036863"],["-119.6967708","49.0356584"],["-119.694317","49.0328479"],["-119.6940417","49.0324327"],["-119.6935694","49.0313597"],["-119.6931901","49.0306593"],["-119.6926287","49.029916"],["-119.6880184","49.0249722"],["-119.6872312","49.0241566"],["-119.6869138","49.0239059"],["-119.6863899","49.0235794"],["-119.6857905","49.0232767"],["-119.6851534","49.0230453"],["-119.6844064","49.0228245"],["-119.6837589","49.0227101"],["-119.6777998","49.0219858"],["-119.6767656","49.0217838"],["-119.6760363","49.0215472"],["-119.6750923","49.0211379"],["-119.6736722","49.0204905"],["-119.6729364","49.020192"],["-119.6723371","49.020022"],["-119.6717131","49.0199131"],["-119.6710094","49.0198886"],["-119.6703156","49.0199471"],["-119.6695667","49.0201113"],["-119.6689185","49.0203439"],["-119.6684603","49.0205833"],["-119.6673623","49.0213542"],["-119.6592014","49.0273938"],["-119.6586264","49.0278625"],["-119.6579883","49.0284688"],["-119.6574658","49.0290835"],["-119.6550102","49.0322918"],["-119.6541935","49.0333607"],["-119.6451264","49.0451796"],["-119.6443827","49.0460563"],["-119.6437953","49.0466021"],["-119.6431244","49.0470811"],["-119.6253914","49.0561258"],["-119.6238998","49.0569295"],["-119.6232004","49.0573826"],["-119.62151","49.0586778"],["-119.6205888","49.059517"],["-119.619876","49.0603326"],["-119.6184218","49.0621169"],["-119.6178045","49.0627891"],["-119.6172496","49.0632595"],["-119.6161443","49.0639894"],["-119.6118052","49.0665953"],["-119.6110775","49.0671034"],["-119.610554","49.0675713"],["-119.60986","49.0683702"],["-119.6086617","49.0698709"],["-119.6058766","49.0723845"],["-119.6045533","49.0734755"],["-119.5993015","49.0774329"],["-119.5987033","49.0779324"],["-119.5982669","49.0784351"],["-119.5979375","49.079"],["-119.5977451","49.079541"],["-119.5974512","49.0808912"],["-119.5972702","49.0813571"],["-119.5970429","49.0817321"],["-119.5966807","49.082141"],["-119.5960709","49.0826443"],["-119.5935831","49.084482"],["-119.5903817","49.0868095"],["-119.5898194","49.0871533"],["-119.589283","49.087394"],["-119.5885336","49.0876334"],["-119.5878461","49.087766"],["-119.5870834","49.0878356"],["-119.5863166","49.0878278"],["-119.5856961","49.0877512"],["-119.585001","49.0876"],["-119.5789478","49.0857134"],["-119.5688876","49.0825301"],["-119.5670609","49.0818542"],["-119.5656799","49.0812192"],["-119.5640666","49.0803934"],["-119.5619159","49.0792742"],["-119.557575","49.0769429"],["-119.5561832","49.0761353"],["-119.555875","49.0759306"],["-119.5546523","49.0749246"],["-119.5506615","49.0716475"],["-119.5438434","49.0659562"],["-119.5429319","49.0651991"],["-119.5417101","49.06422"],["-119.5365125","49.0602694"],["-119.5360988","49.0599982"],["-119.5354157","49.0596668"],["-119.534059","49.0591444"],["-119.5333308","49.0588297"],["-119.5328983","49.0585634"],["-119.5325277","49.0582539"],["-119.5321661","49.0578094"],["-119.5308185","49.0556003"],["-119.5303909","49.0549921"],["-119.5300284","49.0546252"],["-119.5295295","49.0542119"],["-119.5288281","49.0538084"],["-119.5255648","49.0525625"],["-119.5135339","49.0481272"],["-119.5096802","49.0466198"],["-119.5088066","49.0461884"],["-119.5073495","49.0453628"],["-119.501796","49.0421332"],["-119.4888952","49.0345586"],["-119.4882431","49.0341875"],["-119.4878638","49.0340209"],["-119.4873973","49.0338533"],["-119.4870144","49.0337403"],["-119.4867249","49.0336683"],["-119.4864407","49.0336151"],["-119.4861099","49.0335691"],["-119.4858202","49.0335424"],["-119.4855536","49.033528"],["-119.4850589","49.0335279"],["-119.4846313","49.0335449"],["-119.4842847","49.0335781"],["-119.4838981","49.0336418"],["-119.483542","49.033724"],["-119.4830878","49.0338569"],["-119.4826852","49.0340085"],["-119.4821059","49.0342692"],["-119.4814446","49.0345835"],["-119.4808642","49.034864"],["-119.4805213","49.0350141"],["-119.4796268","49.0353992"],["-119.4792925","49.0355102"],["-119.4790263","49.0355721"],["-119.4788028","49.0356093"],["-119.4785779","49.0356313"],["-119.478315","49.0356412"],["-119.4780049","49.035647"],["-119.4775954","49.0356663"],["-119.4767833","49.0357179"],["-119.476405","49.0357237"],["-119.4761072","49.035697"],["-119.4759322","49.0356563"],["-119.4757666","49.0356028"],["-119.4747922","49.0352079"],["-119.4745237","49.0351319"],["-119.4739055","49.0348645"],["-119.473661","49.0347156"],["-119.4734233","49.0345151"],["-119.4733008","49.0343835"],["-119.4731107","49.0341267"],["-119.4728451","49.0338163"],["-119.4726164","49.033588"],["-119.472372","49.0334181"],["-119.4721235","49.033262"],["-119.4717016","49.0330475"],["-119.4714366","49.0329432"],["-119.4708088","49.0327831"],["-119.4702453","49.0326929"],["-119.4697769","49.0326692"],["-119.4686386","49.0327149"],["-119.4642933","49.0329678"],["-119.4639247","49.0329399"],["-119.4637711","49.0329075"],["-119.4636458","49.0328544"],["-119.4635611","49.0327983"],["-119.4634817","49.0327074"],["-119.4634276","49.0326276"],["-119.4632299","49.0312037"],["-119.4631162","49.030764"],["-119.4628329","49.0303746"],["-119.4625488","49.0301141"],["-119.4621125","49.0298192"],["-119.4611927","49.0292425"],["-119.4601106","49.0286218"],["-119.459669","49.0284419"],["-119.4592406","49.0283136"],["-119.4588649","49.028226"],["-119.4584616","49.0281661"],["-119.4582876","49.0281497"],["-119.4577761","49.028135"],["-119.4566183","49.0282161"],["-119.4497043","49.0288438"],["-119.4482146","49.0289752"],["-119.4475175","49.0290134"],["-119.4471938","49.0290065"],["-119.4469385","49.0289901"],["-119.4465921","49.0289482"],["-119.4461375","49.0288726"],["-119.4434271","49.0282156"],["-119.4425831","49.0280974"],["-119.4356046","49.0278919"],["-119.4345364","49.0278667"],["-119.4326987","49.0278399"],["-119.4322834","49.0279089"],["-119.432015","49.028015"],["-119.4317765","49.0281766"],["-119.4316367","49.028339"],["-119.4315349","49.0285909"],["-119.430104","49.0359487"],["-119.4300058","49.0362258"],["-119.4297858","49.0365924"],["-119.4293954","49.0369825"],["-119.428871","49.0373317"],["-119.4283295","49.0375565"],["-119.4277504","49.0377141"],["-119.4270266","49.0378001"],["-119.4263446","49.0377861"],["-119.4256589","49.0376879"],["-119.4250595","49.0375103"],["-119.424609","49.0372976"],["-119.4241697","49.0370067"],["-119.423703","49.0365647"],["-119.4213711","49.0328099"],["-119.4209469","49.0322959"],["-119.4176086","49.0288724"],["-119.4171786","49.0283581"],["-119.4169784","49.027954"],["-119.4168757","49.0274792"],["-119.4169188","49.0269386"],["-119.4170234","49.0262601"],["-119.4170259","49.0258511"],["-119.4169437","49.0253848"],["-119.4167038","49.0247806"],["-119.416361","49.0242474"],["-119.4159971","49.0238398"],["-119.4154705","49.0234008"],["-119.4104867","49.0199769"],["-119.4098902","49.0195207"],["-119.4096537","49.0192554"],["-119.4094692","49.0189401"],["-119.4093753","49.0186318"],["-119.4093659","49.018314"],["-119.4094399","49.0179712"],["-119.4096351","49.0175777"],["-119.409784","49.0173916"],["-119.410358","49.0166988"],["-119.4107107","49.0162141"],["-119.4110438","49.015737"],["-119.4110776","49.0156494"],["-119.4112055","49.0153807"],["-119.4114588","49.0145176"],["-119.4120307","49.0122154"],["-119.412082","49.0117035"],["-119.4120593","49.0114688"],["-119.4120343","49.0112701"],["-119.4119403","49.0109446"],["-119.4117449","49.0105486"],["-119.4111697","49.0097528"],["-119.4109295","49.009549"],["-119.4106448","49.0094204"],["-119.4103442","49.0093733"],["-119.4100599","49.0093927"],["-119.4098724","49.0094379"],["-119.4097478","49.0094919"],["-119.4095354","49.009619"],["-119.4094132","49.0097848"],["-119.4093851","49.0098731"],["-119.4093631","49.0100077"],["-119.4094343","49.0107038"],["-119.4094037","49.0109732"],["-119.409261","49.0112716"],["-119.4090411","49.0115271"],["-119.4086392","49.0118099"],["-119.4043728","49.0142697"],["-119.4038675","49.0145937"],["-119.4036924","49.0147588"],["-119.4035084","49.0149592"],["-119.4033681","49.0151784"],["-119.4032893","49.0153598"],["-119.4032391","49.0155524"],["-119.4031984","49.0157382"],["-119.4032025","49.0159376"],["-119.4032316","49.0161082"],["-119.403269","49.0162711"],["-119.4033811","49.0165329"],["-119.4038595","49.0173674"],["-119.4039687","49.017571"],["-119.4039874","49.0176882"],["-119.4039496","49.0177769"],["-119.4038252","49.0178949"],["-119.4036206","49.0179663"],["-119.4033752","49.0179736"],["-119.4031763","49.0179329"],["-119.4030856","49.0178734"],["-119.4030093","49.0178009"],["-119.4029747","49.0177156"],["-119.4029203","49.0172406"],["-119.4028744","49.0170382"],["-119.4028093","49.0168287"],["-119.4027348","49.0166403"],["-119.4025091","49.016288"],["-119.4014607","49.0150751"],["-119.4012709","49.0147377"],["-119.4012102","49.0144548"],["-119.401231","49.0141681"],["-119.4013368","49.0138808"],["-119.401493","49.013646"],["-119.4018222","49.0133392"],["-119.4029819","49.0124965"],["-119.4039398","49.0118765"],["-119.4041933","49.0117724"],["-119.4045456","49.0116343"],["-119.4049755","49.0114656"],["-119.4051193","49.0113942"],["-119.4051916","49.011329"],["-119.4052119","49.0112826"],["-119.405228","49.0112198"],["-119.4052249","49.0111626"],["-119.4052008","49.0111017"],["-119.4051728","49.0110591"],["-119.4051147","49.0110107"],["-119.405012","49.0109466"],["-119.4049078","49.0109132"],["-119.4047859","49.0109031"],["-119.4046025","49.0109118"],["-119.404355","49.0109596"],["-119.4042142","49.0110105"],["-119.4040371","49.0110874"],["-119.4037261","49.0112447"],["-119.4033855","49.0114236"],["-119.4031572","49.0115819"],["-119.4011281","49.0126544"],["-119.4007302","49.0128194"],["-119.4005014","49.0128768"],["-119.4002347","49.0129204"],["-119.3999815","49.0129331"],["-119.3997503","49.0129372"],["-119.3938314","49.0124018"],["-119.3929742","49.0124434"],["-119.3925752","49.0125317"],["-119.3920774","49.0127326"],["-119.3916987","49.0129648"],["-119.3914119","49.0132435"],["-119.3912033","49.0135365"],["-119.3911082","49.0138423"],["-119.3910973","49.0139367"],["-119.3911199","49.0142782"],["-119.3912122","49.0145565"],["-119.3913784","49.0148346"],["-119.3917399","49.0151702"],["-119.3927332","49.0159777"],["-119.392891","49.0161318"],["-119.3929769","49.0162636"],["-119.3930434","49.0164237"],["-119.3930807","49.0165272"],["-119.3931032","49.0166599"],["-119.393091","49.0168293"],["-119.3930604","49.016985"],["-119.3929753","49.0172142"],["-119.3928465","49.0174256"],["-119.3926914","49.0177426"],["-119.3925664","49.0180196"],["-119.3924993","49.0182462"],["-119.3924595","49.0185305"],["-119.3924556","49.0190795"],["-119.392512","49.0192755"],["-119.3925024","49.0195137"],["-119.3924772","49.0196359"],["-119.3921051","49.0208442"],["-119.3919321","49.0215689"],["-119.3918116","49.0224975"],["-119.3918262","49.0228437"],["-119.3919394","49.0232794"],["-119.392249","49.0239848"],["-119.3925872","49.0246303"],["-119.3927002","49.0250415"],["-119.392715","49.0253766"],["-119.3926384","49.0257222"],["-119.3924555","49.0260865"],["-119.3918222","49.0268992"],["-119.3915133","49.02733"],["-119.3914083","49.0276138"],["-119.391357","49.0280547"],["-119.3914302","49.0284521"],["-119.3917716","49.0292878"],["-119.3918802","49.0297324"],["-119.3920553","49.0312631"],["-119.3920342","49.0315447"],["-119.3919058","49.0317324"],["-119.3917109","49.0318653"],["-119.391403","49.0319524"],["-119.3911054","49.0319526"],["-119.3907032","49.0318329"],["-119.3878612","49.030284"],["-119.3864324","49.0296281"],["-119.3853344","49.0291809"],["-119.3840893","49.0287375"],["-119.3817503","49.0279976"],["-119.3809541","49.027667"],["-119.3806246","49.0275021"],["-119.3800357","49.0271653"],["-119.3795816","49.0268843"],["-119.3792124","49.0265983"],["-119.3787691","49.0261776"],["-119.3783732","49.0257006"],["-119.3780851","49.0252444"],["-119.3778691","49.0247914"],["-119.3777277","49.0243605"],["-119.3775896","49.0232954"],["-119.3775231","49.0230056"],["-119.377444","49.0227795"],["-119.3773721","49.0226202"],["-119.3772722","49.0224837"],["-119.3771092","49.0222779"],["-119.3768987","49.0220626"],["-119.376371","49.0216851"],["-119.3757531","49.0212156"],["-119.375481","49.0208931"],["-119.375308","49.0205481"],["-119.3751869","49.0200764"],["-119.3752164","49.0193213"],["-119.3752328","49.0186059"],["-119.3750926","49.0179752"],["-119.3746998","49.0173818"],["-119.372859","49.0154433"],["-119.3723422","49.0149724"],["-119.3718616","49.0147345"],["-119.3703608","49.0142878"],["-119.369938","49.0140542"],["-119.36916","49.0134275"],["-119.3687948","49.0132292"],["-119.3683938","49.0131506"],["-119.3681106","49.0131492"],["-119.367812","49.0132009"],["-119.3675108","49.0133128"],["-119.3672505","49.0135081"],["-119.3670901","49.0137514"],["-119.3670512","49.0141096"],["-119.367458","49.0177593"],["-119.3679591","49.0200515"],["-119.3679612","49.0203243"],["-119.3678747","49.0205275"],["-119.367712","49.0206754"],["-119.3674349","49.0207941"],["-119.3670738","49.0208229"],["-119.366749","49.0207703"],["-119.3665077","49.0206528"],["-119.366325","49.0204875"],["-119.3641182","49.0171763"],["-119.3638065","49.0168114"],["-119.3634721","49.0165206"],["-119.3630614","49.0162543"],["-119.3626892","49.0160697"],["-119.3623158","49.015925"],["-119.3618786","49.0157991"],["-119.3611912","49.0156789"],["-119.3598344","49.0155637"],["-119.3592015","49.0154577"],["-119.3587909","49.0153566"],["-119.3583186","49.015169"],["-119.357854","49.0149165"],["-119.356163","49.0138621"],["-119.3555679","49.0135297"],["-119.3545853","49.0130842"],["-119.3500949","49.0112784"],["-119.3495679","49.01101"],["-119.3490969","49.0106734"],["-119.3487611","49.0103419"],["-119.3485051","49.009987"],["-119.3479828","49.0090115"],["-119.3476738","49.0085614"],["-119.3472286","49.0080983"],["-119.346781","49.0077394"],["-119.3462801","49.0074267"],["-119.3458255","49.0071967"],["-119.3449851","49.0068715"],["-119.3442743","49.0066855"],["-119.3436132","49.0065639"],["-119.3427767","49.0064931"],["-119.3414939","49.0064346"],["-119.3406414","49.0064775"],["-119.3399634","49.0066052"],["-119.3392452","49.0068505"],["-119.3380969","49.0073389"],["-119.3375075","49.0074842"],["-119.3369245","49.0075623"],["-119.3362249","49.0075607"],["-119.3355231","49.0074531"],["-119.3336508","49.0069874"],["-119.3321826","49.0066691"],["-119.3308121","49.0065173"],["-119.3253358","49.0060522"],["-119.3248159","49.0059554"],["-119.3244062","49.0058166"],["-119.3239933","49.0056071"],["-119.3232961","49.0051026"],["-119.3228885","49.0048127"],["-119.3226358","49.0046952"],["-119.3223398","49.0046021"],["-119.3220606","49.0045408"],["-119.3216422","49.0044821"],["-119.3204843","49.0043772"],["-119.3190961","49.0042767"],["-119.3181373","49.0042915"],["-119.3172996","49.0043628"],["-119.3167699","49.0044469"],["-119.3160279","49.0046088"],["-119.3150984","49.0048855"],["-119.3142037","49.0052459"],["-119.3135153","49.0056128"],["-119.3133936","49.0056845"],["-119.3120587","49.0067384"],["-119.3107556","49.0081275"],["-119.3100687","49.0087155"],["-119.3095048","49.0091282"],["-119.3087049","49.009535"],["-119.3070364","49.0102415"],["-119.303786","49.0115855"],["-119.3030326","49.0118639"],["-119.3027505","49.0119351"],["-119.3022863","49.012004"],["-119.3017956","49.01201"],["-119.3014545","49.0119696"],["-119.3010639","49.0118915"],["-119.3006256","49.0117219"],["-119.3001475","49.0113958"],["-119.2993711","49.0106918"],["-119.2988446","49.0103085"],["-119.2984108","49.0101094"],["-119.2979084","49.0099695"],["-119.297381","49.0098982"],["-119.2970664","49.0098921"],["-119.2964768","49.0099514"],["-119.2911187","49.0108841"],["-119.2905119","49.010968"],["-119.2898816","49.0110159"],["-119.2890474","49.0110311"],["-119.2880063","49.0109694"],["-119.2866217","49.0107566"],["-119.2843667","49.0103836"],["-119.2825372","49.0101288"],["-119.2810893","49.009973"],["-119.2797392","49.009948"],["-119.2783766","49.0100258"],["-119.2762194","49.010363"],["-119.2563458","49.0138523"],["-119.2530441","49.0143319"],["-119.2507727","49.0143324"],["-119.245466","49.0138657"],["-119.2446635","49.0137562"],["-119.2437737","49.0135397"],["-119.2429697","49.0132532"],["-119.2423346","49.0129531"],["-119.2416685","49.012523"],["-119.2399715","49.0112537"],["-119.2394309","49.0109359"],["-119.2389121","49.0107488"],["-119.2383224","49.010637"],["-119.2377527","49.0106054"],["-119.2367656","49.0107033"],["-119.2333934","49.0112709"],["-119.2311148","49.011759"],["-119.2290311","49.0123764"],["-119.2188258","49.0160423"],["-119.2181947","49.0162259"],["-119.2174822","49.0163551"],["-119.216888","49.0164172"],["-119.2164435","49.0164073"],["-119.2137989","49.0162337"],["-119.2129433","49.0161951"],["-119.2123566","49.0161976"],["-119.2096054","49.0163829"],["-119.1950723","49.0176032"],["-119.1929657","49.0178838"],["-119.1900762","49.0184381"],["-119.1888398","49.0186318"],["-119.1879234","49.0186584"],["-119.1867088","49.0186335"],["-119.1860516","49.018656"],["-119.1854401","49.0187361"],["-119.1847762","49.0189226"],["-119.1835665","49.0193603"],["-119.1826086","49.0196217"],["-119.1809181","49.0200031"],["-119.1803803","49.0201682"],["-119.1800047","49.0203527"],["-119.1796844","49.0206088"],["-119.1794723","49.0208627"],["-119.1792938","49.0211806"],["-119.1789318","49.0220296"],["-119.1787929","49.0223432"],["-119.1783345","49.0230734"],["-119.1758102","49.0258333"],["-119.1707695","49.0312304"],["-119.1696565","49.032168"],["-119.1684628","49.0329718"],["-119.167084","49.0337234"],["-119.1659568","49.0342165"],["-119.1647556","49.0346493"],["-119.1633454","49.0350473"],["-119.1608512","49.0355848"],["-119.1559715","49.0365573"],["-119.1539316","49.0369474"],["-119.1532801","49.0370309"],["-119.1525613","49.0370926"],["-119.1511822","49.0371415"],["-119.1442895","49.0371708"],["-119.142883","49.0373482"],["-119.1415533","49.037732"],["-119.1384357","49.0390776"],["-119.126034","49.0444698"],["-119.1246299","49.0450858"],["-119.1238166","49.0454465"],["-119.1225819","49.0460657"],["-119.121994","49.0463868"],["-119.1210115","49.0469635"],["-119.1206122","49.047208"],["-119.1199971","49.047582"],["-119.1192617","49.0480686"],["-119.1185576","49.0486068"],["-119.1180855","49.0489881"],["-119.1178235","49.0491793"],["-119.1175937","49.0493204"],["-119.1172133","49.0495004"],["-119.1168545","49.0496624"],["-119.1164172","49.0498522"],["-119.1152166","49.0504803"],["-119.1148675","49.0506304"],["-119.1145533","49.0507508"],["-119.1138854","49.0509421"],["-119.1135357","49.0510334"],["-119.1131499","49.0510944"],["-119.1127659","49.0511424"],["-119.1117602","49.0511811"],["-119.1063838","49.0511677"],["-119.1055201","49.0511526"],["-119.1048441","49.0511081"],["-119.1041567","49.0510498"],["-119.1033643","49.0509562"],["-119.0911857","49.0490689"],["-119.0905958","49.0490038"],["-119.0900532","49.0489708"],["-119.0893175","49.0489454"],["-119.0887209","49.0489327"],["-119.0882205","49.0489304"],["-119.0877157","49.0489408"],["-119.0871423","49.0489721"],["-119.0862269","49.0490426"],["-119.0857404","49.0490982"],["-119.0849031","49.0492215"],["-119.0819539","49.0497438"],["-119.080819","49.0499068"],["-119.0803519","49.0499358"],["-119.0801079","49.049935"],["-119.0798932","49.0499142"],["-119.0795941","49.0498489"],["-119.0793412","49.0497787"],["-119.0790788","49.049689"],["-119.0787101","49.0495289"],["-119.0782834","49.0492403"],["-119.0769262","49.0478547"],["-119.0764192","49.0475328"],["-119.0758392","49.0473063"],["-119.0752196","49.0471738"],["-119.0745262","49.0471344"],["-119.0737521","49.0472196"],["-119.0712013","49.0477076"],["-119.0699903","49.0478123"],["-119.064951","49.0477238"],["-119.0640965","49.0476272"],["-119.063465","49.0474377"],["-119.0628402","49.0470648"],["-119.0624463","49.0466787"],["-119.061937","49.045838"],["-119.0615219","49.0452403"],["-119.0610285","49.0448318"],["-119.0604803","49.0445136"],["-119.0598366","49.0442554"],["-119.0591241","49.0440749"],["-119.0584431","49.0439797"],["-119.0576579","49.0439666"],["-119.0568635","49.0440436"],["-119.0562454","49.0441782"],["-119.0555798","49.0444004"],["-119.0552688","49.0445546"],["-119.0550224","49.0446881"],["-119.0544373","49.0451098"],["-119.0520977","49.0473767"],["-119.0518974","49.0475229"],["-119.0516607","49.047669"],["-119.0512883","49.0478042"],["-119.0508763","49.0478922"],["-119.0503722","49.0479179"],["-119.0499628","49.0478761"],["-119.0495165","49.0477622"],["-119.0483144","49.0472759"],["-119.047651","49.0471049"],["-119.0471421","49.0470383"],["-119.046645","49.047032"],["-119.0460666","49.0470836"],["-119.0455702","49.0471852"],["-119.0446788","49.047489"],["-119.02822","49.0536471"],["-119.0272698","49.0539042"],["-119.0262349","49.0540341"],["-119.0251457","49.0540594"],["-119.0237256","49.0539288"],["-119.0213154","49.0536837"],["-119.0198701","49.0536952"],["-119.0185908","49.0539363"],["-119.0175503","49.0543224"],["-119.0164507","49.0549978"],["-119.0155319","49.0560248"],["-119.0134701","49.0590394"],["-119.0125752","49.0608996"],["-119.0122512","49.0623673"],["-119.0120492","49.0651221"],["-119.0121709","49.066705"],["-119.0121092","49.0673417"],["-119.0119029","49.0679469"],["-119.0114902","49.0685872"],["-119.010913","49.0691831"],["-119.0098678","49.0701363"],["-119.0095766","49.0704751"],["-119.0094527","49.0707464"],["-119.0094013","49.0710717"],["-119.0094662","49.0716301"],["-119.0094438","49.0718054"],["-119.0093468","49.0719395"],["-119.0091568","49.0720322"],["-119.0089386","49.0720628"],["-119.008713","49.0720271"],["-119.0085393","49.0719247"],["-119.0084524","49.0717654"],["-119.0085125","49.0715292"],["-119.0092851","49.0701962"],["-119.0095958","49.0695482"],["-119.009751","49.0689521"],["-119.009815","49.0678485"],["-119.0098367","49.0664744"],["-119.0097246","49.0658261"],["-119.0092845","49.0649351"],["-119.0075708","49.0621904"],["-119.0070378","49.0615438"],["-119.006245","49.0608767"],["-119.0000777","49.0573394"],["-118.997022","49.0557417"],["-118.9952782","49.054863"],["-118.994621","49.0544834"],["-118.9936477","49.0536149"],["-118.9930271","49.0530622"],["-118.9918928","49.0522599"],["-118.9892774","49.0508431"],["-118.9879152","49.0502375"],["-118.9872022","49.0499683"],["-118.9852242","49.0493636"],["-118.9845559","49.0491887"],["-118.9837908","49.0490175"],["-118.9828623","49.0488845"],["-118.9819966","49.0488215"],["-118.9802008","49.0489144"],["-118.9739888","49.0494972"],["-118.9651702","49.0510589"],["-118.9619274","49.0515822"],["-118.9602033","49.0517487"],["-118.9436606","49.0528168"],["-118.9429965","49.0528076"],["-118.9420982","49.0527"],["-118.9367621","49.0514724"],["-118.9253658","49.0496302"],["-118.9216498","49.0491056"],["-118.9039138","49.0483144"],["-118.9025709","49.0482276"],["-118.9016537","49.0480865"],["-118.9004601","49.0477693"],["-118.8946869","49.0458453"],["-118.8927217","49.0452501"],["-118.890846","49.0448079"],["-118.8898073","49.0446068"],["-118.8764116","49.0424278"],["-118.8758452","49.042291"],["-118.8753793","49.0421421"],["-118.8749258","49.0419514"],["-118.8744802","49.0417138"],["-118.8740796","49.0414361"],["-118.8736719","49.0410711"],["-118.8723733","49.0398152"],["-118.8718596","49.0393966"],["-118.8700231","49.0381762"],["-118.8695036","49.0377695"],["-118.8691643","49.037414"],["-118.8688978","49.037029"],["-118.8686674","49.0365597"],["-118.8684628","49.0358241"],["-118.8680221","49.0334008"],["-118.867826","49.0327626"],["-118.8673212","49.0316965"],["-118.866686","49.0308211"],["-118.8659935","49.0300985"],["-118.8639017","49.0283948"],["-118.8631095","49.0279299"],["-118.8622003","49.0275794"],["-118.8598557","49.0270564"],["-118.8590931","49.0268171"],["-118.8585088","49.0265367"],["-118.8580034","49.0261552"],["-118.8575842","49.0257019"],["-118.8573327","49.025193"],["-118.8569455","49.023662"],["-118.8567578","49.0231747"],["-118.8564981","49.0227763"],["-118.8559947","49.0223257"],["-118.8535943","49.0205994"],["-118.8531874","49.0201625"],["-118.8526947","49.0192592"],["-118.8516553","49.0171337"],["-118.8507721","49.0159108"],["-118.8503725","49.01552"],["-118.8498107","49.0151812"],["-118.8491403","49.0149668"],["-118.846871","49.0143295"],["-118.8432043","49.0132962"],["-118.841946","49.0131068"],["-118.8275167","49.0127114"],["-118.8265303","49.0127882"],["-118.8183887","49.0144688"],["-118.8151522","49.0150595"],["-118.8099465","49.0157097"],["-118.8077753","49.0158295"],["-118.8056607","49.015833"],["-118.8004658","49.0155258"],["-118.799293","49.0153419"],["-118.7983873","49.0150797"],["-118.7973698","49.0146325"],["-118.7966793","49.0141781"],["-118.7950778","49.0128852"],["-118.794114","49.0122336"],["-118.7928769","49.0117446"],["-118.7919753","49.0115334"],["-118.7907122","49.0113905"],["-118.7737505","49.0104693"],["-118.7728495","49.0103666"],["-118.7719881","49.0102406"],["-118.7709721","49.0100151"],["-118.7695074","49.009633"],["-118.7687591","49.0094107"],["-118.76772","49.0089886"],["-118.7668066","49.0084815"],["-118.7661302","49.0079888"],["-118.7655283","49.0074239"],["-118.7642599","49.0058308"],["-118.7638298","49.0054308"],["-118.7633457","49.0051305"],["-118.7627709","49.0049144"],["-118.7621376","49.0047838"],["-118.7614057","49.0047544"],["-118.7607995","49.0048278"],["-118.7599757","49.0050668"],["-118.7593345","49.0053885"],["-118.7565178","49.0072491"],["-118.7555818","49.0080708"],["-118.752786","49.0109828"],["-118.7513742","49.0121805"],["-118.7511057","49.0126099"],["-118.7508745","49.0134681"],["-118.7504749","49.0142536"],["-118.749659","49.0152117"],["-118.7473159","49.0169899"],["-118.7464481","49.0174353"],["-118.7455464","49.0177131"],["-118.7445624","49.0180368"],["-118.7440801","49.0183106"],["-118.7436571","49.0186821"],["-118.741992","49.0205625"],["-118.7406307","49.021803"],["-118.7379693","49.0237219"],["-118.736493","49.0248962"],["-118.7353308","49.0265756"],["-118.7335573","49.0286262"],["-118.7303151","49.0306632"],["-118.7256577","49.0340202"],["-118.7189103","49.0378145"],["-118.7180666","49.0382177"],["-118.717077","49.0386067"],["-118.7157942","49.0390077"],["-118.7147328","49.0392604"],["-118.7134085","49.0394848"],["-118.7124084","49.0395833"],["-118.7113762","49.0396285"],["-118.7059022","49.039608"],["-118.7046532","49.039605"],["-118.7028919","49.0395869"],["-118.7016384","49.0396258"],["-118.7007378","49.0397435"],["-118.6998441","49.0400007"],["-118.699261","49.0402232"],["-118.6987275","49.0405049"],["-118.6978366","49.041201"],["-118.6967055","49.0425199"],["-118.695882","49.0435746"],["-118.6956243","49.0439464"],["-118.6947548","49.0450718"],["-118.6944363","49.0454896"],["-118.6940802","49.0459863"],["-118.693828","49.046409"],["-118.6936608","49.0467397"],["-118.693503","49.0471319"],["-118.6933446","49.0476419"],["-118.6931435","49.0483604"],["-118.6930037","49.0490519"],["-118.6930495","49.0494622"],["-118.6930303","49.049786"],["-118.6930879","49.0501226"],["-118.6931374","49.0503886"],["-118.693147","49.0506389"],["-118.6931051","49.0508735"],["-118.6929647","49.051376"],["-118.6928397","49.0518289"],["-118.6928694","49.0522025"],["-118.6929813","49.0525089"],["-118.6932254","49.0529451"],["-118.694719","49.0547092"],["-118.6949355","49.0550441"],["-118.6951465","49.0555627"],["-118.6952208","49.0559831"],["-118.6951812","49.0564634"],["-118.6950798","49.0569864"],["-118.6947284","49.0576485"],["-118.6941887","49.058305"],["-118.692001","49.0608355"],["-118.6912083","49.0618233"],["-118.6902114","49.0638314"],["-118.6886434","49.0656975"],["-118.6878879","49.0666392"],["-118.6875571","49.067229"],["-118.6873163","49.067882"],["-118.6866455","49.0700002"],["-118.6862294","49.0717533"],["-118.6857625","49.0739962"],["-118.6857452","49.0755875"],["-118.685759","49.076618"],["-118.685715","49.0779166"],["-118.6855769","49.0781774"],["-118.685419","49.0785316"],["-118.6851812","49.0788757"],["-118.6846897","49.0794117"],["-118.6839837","49.0799749"],["-118.683577","49.0802371"],["-118.6831087","49.0804743"],["-118.682457","49.0807186"],["-118.6811376","49.0810161"],["-118.6806704","49.0812129"],["-118.6803535","49.0814642"],["-118.6801515","49.0817828"],["-118.6801168","49.0820899"],["-118.6801058","49.0822295"],["-118.680207","49.0827764"],["-118.6801393","49.0832469"],["-118.6799267","49.0841995"],["-118.6797311","49.0851363"],["-118.679568","49.0853915"],["-118.6793265","49.0855522"],["-118.6785786","49.0859303"],["-118.6780057","49.086251"],["-118.6773922","49.086699"],["-118.677457","49.0950614"],["-118.6774531","49.0957517"],["-118.6773224","49.0959988"],["-118.6771425","49.0962082"],["-118.6769852","49.096376"],["-118.6768086","49.0965292"],["-118.6765812","49.0967003"],["-118.6764257","49.0968601"],["-118.6762868","49.0972172"],["-118.6762841","49.0984991"],["-118.6763171","49.1030391"],["-118.6764124","49.1059778"],["-118.6765383","49.106358"],["-118.6767547","49.1067897"],["-118.6778217","49.108184"],["-118.6779834","49.108475"],["-118.678124","49.1087973"],["-118.6781593","49.1089819"],["-118.6781776","49.1092981"],["-118.6781006","49.1097705"],["-118.6778974","49.1102023"],["-118.677564","49.1106235"],["-118.6772001","49.1110369"],["-118.6766167","49.1116564"],["-118.6763013","49.1119319"],["-118.6739949","49.1138527"],["-118.6730606","49.1146877"],["-118.6729004","49.1149241"],["-118.6726684","49.1154882"],["-118.6724918","49.1167638"],["-118.6722582","49.1172448"],["-118.6716966","49.1178326"],["-118.6705827","49.1187026"],["-118.6606541","49.1261488"],["-118.6598917","49.1266043"],["-118.6588655","49.1270454"],["-118.6577405","49.1273804"],["-118.6568137","49.127564"],["-118.6558979","49.1276664"],["-118.6549362","49.1277021"],["-118.6539371","49.1276476"],["-118.6524844","49.1275032"],["-118.6513558","49.1275352"],["-118.6385944","49.1303405"],["-118.6300575","49.1319533"],["-118.628311","49.1321125"],["-118.6226594","49.1320753"],["-118.6215563","49.1321436"],["-118.620412","49.1322786"],["-118.6192727","49.1325107"],["-118.6123584","49.1343319"],["-118.6112221","49.1345522"],["-118.6100222","49.1347031"],["-118.6086061","49.134791"],["-118.6011296","49.1345841"],["-118.5994107","49.1346129"],["-118.5985111","49.134732"],["-118.5975716","49.1349213"],["-118.5962426","49.1353715"],["-118.5927252","49.1369863"],["-118.5917104","49.1375289"],["-118.5897987","49.1392776"],["-118.5892777","49.139651"],["-118.5887299","49.1399138"],["-118.5877552","49.1401653"],["-118.5816605","49.1411734"],["-118.5808332","49.1412698"],["-118.5806591","49.1412841"],["-118.5794267","49.1412957"],["-118.5725724","49.1413519"],["-118.5711986","49.1415264"],["-118.570193","49.1418506"],["-118.5658779","49.1441285"],["-118.5650406","49.1446759"],["-118.5643934","49.1452342"],["-118.5630306","49.1468036"],["-118.5624773","49.1472959"],["-118.5618188","49.1477487"],["-118.5613451","49.1480089"],["-118.5610085","49.1481767"],["-118.5584844","49.1491157"],["-118.5576047","49.1495901"],["-118.5525587","49.1528226"],["-118.5514427","49.153419"],["-118.5504914","49.1537559"],["-118.5494986","49.1539985"],["-118.5483401","49.1541541"],["-118.5474779","49.1541863"],["-118.546081","49.1541297"],["-118.5452296","49.1539979"],["-118.544206","49.1537189"],["-118.5408096","49.1525702"],["-118.5389008","49.1519466"],["-118.5384034","49.151852"],["-118.537943","49.1518088"],["-118.5369616","49.1518573"],["-118.5334903","49.1520995"],["-118.5326225","49.1521161"],["-118.5322287","49.1520784"],["-118.5318088","49.1519885"],["-118.531112","49.1517544"],["-118.5306586","49.1515092"],["-118.5302931","49.1512335"],["-118.5299759","49.1508516"],["-118.5297869","49.1504392"],["-118.5297138","49.1500382"],["-118.5298057","49.1495085"],["-118.530708","49.1472045"],["-118.5310206","49.1466886"],["-118.5314063","49.1463414"],["-118.5320437","49.1459889"],["-118.5328219","49.1457567"],["-118.5338849","49.1455524"],["-118.5345619","49.1453722"],["-118.5349205","49.1452034"],["-118.5353409","49.1449991"],["-118.5358378","49.1445134"],["-118.5366108","49.1431066"],["-118.5376377","49.1420746"],["-118.5382218","49.1414781"],["-118.5383959","49.1411733"],["-118.5384759","49.140801"],["-118.5384547","49.1403218"],["-118.5383188","49.1399763"],["-118.5378749","49.139316"],["-118.5375869","49.1390008"],["-118.5373086","49.1385639"],["-118.5370657","49.1380311"],["-118.537059","49.1375888"],["-118.5372792","49.137045"],["-118.5396877","49.132474"],["-118.5404955","49.1310784"],["-118.5407534","49.1307385"],["-118.5410472","49.130444"],["-118.5414285","49.1301682"],["-118.541888","49.1299149"],["-118.5425335","49.1296043"],["-118.5437428","49.1290435"],["-118.544388","49.1285454"],["-118.5448169","49.1280028"],["-118.5451968","49.1272015"],["-118.5453775","49.1264762"],["-118.5453769","49.125956"],["-118.5452226","49.1253909"],["-118.5448158","49.1247994"],["-118.5441151","49.1242355"],["-118.5430466","49.1235348"],["-118.5415207","49.1225457"],["-118.5405678","49.1219589"],["-118.5380286","49.1206764"],["-118.5373106","49.1202218"],["-118.536831","49.1198295"],["-118.5363541","49.1193448"],["-118.5355937","49.1183557"],["-118.5352771","49.1178966"],["-118.5350119","49.1173569"],["-118.5334607","49.1131905"],["-118.5327105","49.109674"],["-118.5325351","49.1092372"],["-118.5320345","49.1085487"],["-118.5306798","49.1068798"],["-118.5295733","49.1053638"],["-118.5292803","49.1048963"],["-118.5286533","49.1034287"],["-118.528381","49.102351"],["-118.5283223","49.1012896"],["-118.5285589","49.0969017"],["-118.5288935","49.0960396"],["-118.5293432","49.095421"],["-118.5298618","49.0949348"],["-118.530443","49.0945226"],["-118.5325741","49.093599"],["-118.5421144","49.0898161"],["-118.5445758","49.0884118"],["-118.5458564","49.0869771"],["-118.5462103","49.085872"],["-118.5462963","49.0854903"],["-118.546323","49.0852211"],["-118.5462988","49.0845306"],["-118.5461685","49.0838329"],["-118.5445797","49.0798462"],["-118.5443935","49.0793721"],["-118.54398","49.0780367"],["-118.5435824","49.0750572"],["-118.5435756","49.0741671"],["-118.5437386","49.0736601"],["-118.5440749","49.0731546"],["-118.5451584","49.0720196"],["-118.545631","49.0713998"],["-118.5458772","49.0706798"],["-118.546098","49.0681389"],["-118.5465062","49.0668872"],["-118.5473326","49.0650787"],["-118.5476351","49.0640549"],["-118.5476788","49.0627501"],["-118.5470636","49.0564968"],["-118.5469403","49.0557279"],["-118.5466449","49.0545013"],["-118.5457244","49.0522119"],["-118.5441687","49.0495062"],["-118.5438964","49.0490233"],["-118.5437532","49.0485675"],["-118.5435642","49.0471142"],["-118.5433296","49.0464262"],["-118.5429812","49.0459131"],["-118.5423956","49.0453654"],["-118.540143","49.0436454"],["-118.5393864","49.0428467"],["-118.5388609","49.0418976"],["-118.5386361","49.0410856"],["-118.5386456","49.0399986"],["-118.5391659","49.0357204"],["-118.539216","49.0353356"],["-118.5410915","49.0218191"],["-118.540931","49.0200726"],["-118.5397547","49.013241"],["-118.5396445","49.0124919"],["-118.539499","49.0104962"],["-118.5394176","49.009421"],["-118.539305","49.0080315"],["-118.5390094","49.0071011"],["-118.538073","49.0057157"],["-118.5362323","49.0032917"],["-118.5356572","49.002811"],["-118.5348817","49.0023915"],["-118.5341024","49.0021422"],["-118.5332546","49.0020011"],["-118.5323718","49.001988"],["-118.5313766","49.0021271"],["-118.530476","49.0024042"],["-118.5298178","49.0027364"],["-118.5291713","49.0032514"],["-118.5287034","49.0039197"],["-118.5278203","49.0056399"],["-118.5273111","49.0063293"],["-118.5266459","49.0069599"],["-118.5257503","49.0075868"],["-118.5251951","49.0078823"],["-118.51976","49.0100985"],["-118.5187644","49.0104435"],["-118.5175713","49.0107379"],["-118.5162992","49.0108854"],["-118.5061762","49.0109213"],["-118.5055589","49.0109605"],["-118.5050869","49.0110304"],["-118.5046205","49.0111429"],["-118.5041659","49.0113306"],["-118.5037781","49.0115381"],["-118.5033563","49.0118567"],["-118.5019918","49.0132047"],["-118.4995736","49.0156089"],["-118.4989945","49.0160462"],["-118.4986388","49.0162208"],["-118.4982775","49.0163614"],["-118.4974526","49.0165416"],["-118.4938451","49.0171607"],["-118.4919346","49.0175688"],["-118.4880686","49.0188193"],["-118.4854897","49.0195073"],["-118.4753086","49.0220403"],["-118.4747724","49.0222203"],["-118.4645053","49.0267078"],["-118.4598675","49.0285236"],["-118.4588798","49.029007"],["-118.4585717","49.0291137"],["-118.4581186","49.029225"],["-118.4578187","49.0292942"],["-118.4572153","49.0293743"],["-118.4532065","49.0298517"],["-118.4526109","49.0299441"],["-118.4514807","49.0302221"],["-118.436777","49.0341268"],["-118.4352593","49.0344995"],["-118.4348346","49.0345098"],["-118.4344901","49.034423"],["-118.4341929","49.0342764"],["-118.4339554","49.0340653"],["-118.4336581","49.033721"],["-118.4323122","49.0319388"],["-118.4319844","49.0315365"],["-118.4313592","49.0310157"],["-118.4289435","49.0292686"],["-118.4277745","49.0285611"],["-118.4273389","49.0282801"],["-118.4268802","49.0279155"],["-118.4263017","49.0272738"],["-118.4259957","49.0269809"],["-118.425619","49.0267198"],["-118.424574","49.0263223"],["-118.4212423","49.0253422"],["-118.4142089","49.0234894"],["-118.4127535","49.023039"],["-118.4118309","49.0225685"],["-118.4113082","49.0223193"],["-118.4110477","49.0222201"],["-118.4106445","49.0221179"],["-118.410103","49.0220564"],["-118.4020652","49.0219775"],["-118.4008292","49.0219852"],["-118.4002254","49.0220246"],["-118.3993422","49.0221536"],["-118.398512","49.0223127"],["-118.3976422","49.0225739"],["-118.3967851","49.022886"],["-118.3956251","49.0235228"],["-118.3905809","49.0267715"],["-118.3886474","49.0279587"],["-118.3883225","49.0281277"],["-118.3875953","49.0284437"],["-118.3868372","49.0286929"],["-118.3858474","49.0289269"],["-118.3852261","49.0290322"],["-118.3847872","49.0290826"],["-118.383958","49.0291283"],["-118.3733474","49.0291342"],["-118.3721514","49.0290535"],["-118.3715064","49.0289005"],["-118.370915","49.0286925"],["-118.3704007","49.0284634"],["-118.3699856","49.0282247"],["-118.3697734","49.0280832"],["-118.3694846","49.0278731"],["-118.3690971","49.02745"],["-118.3680155","49.0260251"],["-118.3671722","49.0251603"],["-118.3646432","49.0232063"],["-118.3636196","49.0224689"],["-118.3629742","49.0221166"],["-118.3619525","49.0217697"],["-118.3576938","49.0205981"],["-118.3564414","49.0201925"],["-118.3553332","49.0197022"],["-118.3521282","49.0180593"],["-118.3514744","49.0177904"],["-118.3508149","49.017577"],["-118.3484338","49.0169923"],["-118.3478974","49.0168357"],["-118.3472922","49.0165866"],["-118.3465977","49.0161725"],["-118.3450787","49.0151096"],["-118.3446038","49.0148241"],["-118.3439882","49.0145511"],["-118.3433338","49.0143518"],["-118.3426964","49.0142312"],["-118.3419459","49.0141659"],["-118.3402102","49.0141396"],["-118.3388385","49.0140898"],["-118.3371693","49.0139118"],["-118.3361001","49.0137021"],["-118.3351635","49.013449"],["-118.3333355","49.0128146"],["-118.3325434","49.0126154"],["-118.3319172","49.0125271"],["-118.3313468","49.0124829"],["-118.3302267","49.0124937"],["-118.323274","49.0128339"],["-118.3225923","49.0128455"],["-118.3217841","49.0127828"],["-118.3085644","49.0104317"],["-118.3069778","49.0100586"],["-118.293292","49.0061418"],["-118.2922714","49.005953"],["-118.2912963","49.0058638"],["-118.2903686","49.0058453"],["-118.2660648","49.0075339"],["-118.2644726","49.0077893"],["-118.2630292","49.0081593"],["-118.2622414","49.0084274"],["-118.2614663","49.0087477"],["-118.2606959","49.0091111"],["-118.2596613","49.0097149"],["-118.2577516","49.0111031"],["-118.2564469","49.0119524"],["-118.2538239","49.0135587"],["-118.2526185","49.0142045"],["-118.2515377","49.0146805"],["-118.2509791","49.014873"],["-118.2476527","49.0157183"],["-118.2412102","49.017752"],["-118.2403781","49.0179437"],["-118.2394049","49.0180277"],["-118.2354818","49.018155"],["-118.234882","49.0181516"],["-118.2338963","49.0181065"],["-118.2280521","49.017534"],["-118.2271422","49.0175149"],["-118.2263808","49.0175793"],["-118.2254912","49.0177492"],["-118.2247863","49.017972"],["-118.2242503","49.0182033"],["-118.2229188","49.0190013"],["-118.2222731","49.0194645"],["-118.2219137","49.0197238"],["-118.221274","49.0202226"],["-118.220945","49.0205795"],["-118.2206876","49.0209395"],["-118.2204463","49.0214523"],["-118.2203092","49.0218794"],["-118.2202545","49.022533"],["-118.2203062","49.0229878"],["-118.2203205","49.0231202"],["-118.2203264","49.0236157"],["-118.2202186","49.0241256"],["-118.2200713","49.0244537"],["-118.218807","49.0261667"],["-118.208141","49.0402747"],["-118.2075601","49.0409882"],["-118.2070904","49.0416008"],["-118.2067202","49.0420962"],["-118.2065054","49.0424334"],["-118.2063639","49.0426413"],["-118.2062296","49.04288"],["-118.2060872","49.0431506"],["-118.2059186","49.0434885"],["-118.2057829","49.043815"],["-118.205684","49.0441483"],["-118.2055719","49.0445705"],["-118.2055142","49.0449657"],["-118.2054718","49.0452936"],["-118.2054723","49.0456463"],["-118.2055056","49.0460837"],["-118.2055431","49.046441"],["-118.2056128","49.0467922"],["-118.2057156","49.0472174"],["-118.2058656","49.0476216"],["-118.2059917","49.0479321"],["-118.2061395","49.0482371"],["-118.2064634","49.0487802"],["-118.2068559","49.0493001"],["-118.2071915","49.0496917"],["-118.2075419","49.0500606"],["-118.2080301","49.0504922"],["-118.2085329","49.0509391"],["-118.2090763","49.0514293"],["-118.2097778","49.0520375"],["-118.2126406","49.0545353"],["-118.2129584","49.0548317"],["-118.2131952","49.0551203"],["-118.2133523","49.0553864"],["-118.2135022","49.0556804"],["-118.2135687","49.0559477"],["-118.213589","49.056299"],["-118.2131543","49.0594889"],["-118.2129444","49.0606088"],["-118.2127207","49.0615156"],["-118.2121259","49.0635062"],["-118.211972","49.0640515"],["-118.2119389","49.0643232"],["-118.2119875","49.0647319"],["-118.2121501","49.0651963"],["-118.2126269","49.0660357"],["-118.2131586","49.0671307"],["-118.2134065","49.0683166"],["-118.2134239","49.0694369"],["-118.2129899","49.0713175"],["-118.212338","49.0739196"],["-118.2117528","49.0753112"],["-118.2108734","49.0767762"],["-118.210809","49.0779188"],["-118.2116088","49.0809351"],["-118.213895","49.0853213"],["-118.2158291","49.0877527"],["-118.2182529","49.0905824"],["-118.2187585","49.0912444"],["-118.2189338","49.0915918"],["-118.2190513","49.0918591"],["-118.2191661","49.0922512"],["-118.2199121","49.0952983"],["-118.220105","49.0962095"],["-118.2201131","49.0965832"],["-118.2200689","49.0969106"],["-118.2199853","49.0972078"],["-118.219733","49.0979056"],["-118.2196077","49.0982879"],["-118.2195792","49.0985343"],["-118.2195772","49.0987288"],["-118.2196402","49.0990058"],["-118.2197431","49.0992541"],["-118.2199583","49.0995741"],["-118.2201806","49.0998224"],["-118.2204289","49.1000419"],["-118.2206894","49.1002244"],["-118.2210325","49.1003946"],["-118.2214435","49.1005291"],["-118.222735","49.1008514"],["-118.2241373","49.1012014"],["-118.227679","49.1021183"],["-118.2281991","49.1022744"],["-118.2286279","49.1024484"],["-118.2289084","49.1025988"],["-118.2291376","49.1027556"],["-118.2293749","49.1029492"],["-118.2295864","49.1031489"],["-118.2297582","49.103362"],["-118.2298696","49.1035956"],["-118.2299861","49.1039137"],["-118.2300164","49.1041683"],["-118.2299934","49.1044115"],["-118.229909","49.104717"],["-118.2297694","49.1050642"],["-118.2295811","49.105316"],["-118.229323","49.1055629"],["-118.2289808","49.1058037"],["-118.2281106","49.1062097"],["-118.2270094","49.1067052"],["-118.2251462","49.1075376"],["-118.2245471","49.107865"],["-118.2236443","49.1084231"],["-118.2225658","49.10927"],["-118.2219982","49.1098357"],["-118.2213966","49.1105101"],["-118.2205536","49.1114199"],["-118.2201163","49.1117991"],["-118.2196057","49.1122538"],["-118.2189219","49.1129004"],["-118.2184166","49.1134153"],["-118.2180337","49.1138405"],["-118.2174961","49.1145541"],["-118.217043","49.1152229"],["-118.2166431","49.1158704"],["-118.2159216","49.117492"],["-118.2149425","49.1196438"],["-118.2126841","49.1226819"],["-118.2103046","49.1247146"],["-118.1961318","49.1331678"],["-118.1945093","49.133751"],["-118.1931113","49.1337506"],["-118.1904464","49.1332619"],["-118.1875683","49.1334756"],["-118.1850179","49.1338603"],["-118.1811685","49.1352078"],["-118.1789566","49.1361957"],["-118.1771","49.1368701"],["-118.1760232","49.136966"],["-118.1751266","49.136828"],["-118.1740829","49.1364336"],["-118.1732092","49.1359861"],["-118.1722908","49.1357809"],["-118.171486","49.1357446"],["-118.1691562","49.1359301"],["-118.1663725","49.1357898"],["-118.1632765","49.1349952"],["-118.161338","49.1346515"],["-118.1598373","49.1346954"],["-118.1583704","49.1350127"],["-118.1565881","49.1355886"],["-118.1545201","49.1360279"],["-118.1497697","49.1363946"],["-118.1485325","49.1364011"],["-118.1474766","49.1363205"],["-118.1468548","49.1363221"],["-118.1463111","49.1364138"],["-118.1460436","49.136507"],["-118.1457176","49.1366692"],["-118.1451155","49.1369996"],["-118.1445525","49.1372516"],["-118.1439564","49.1373916"],["-118.1432796","49.1373972"],["-118.1426431","49.1373242"],["-118.1420495","49.1372234"],["-118.1414218","49.1372406"],["-118.1408968","49.1373471"],["-118.1399054","49.1376408"],["-118.1383532","49.1380765"],["-118.1365137","49.1385134"],["-118.1348589","49.1388936"],["-118.1337381","49.139123"],["-118.1324043","49.1392803"],["-118.1311582","49.1394096"],["-118.1298412","49.1395551"],["-118.1290422","49.1397681"],["-118.128142","49.1401561"],["-118.1273017","49.1406417"],["-118.1250454","49.1420554"],["-118.1208651","49.1439513"],["-118.1198203","49.1444824"],["-118.1192833","49.1448818"],["-118.1186558","49.1454162"],["-118.1176459","49.1460279"],["-118.1067156","49.150952"],["-118.1034547","49.1526977"],["-118.101203","49.1546718"],["-118.0997435","49.1571066"],["-118.09934","49.1588181"],["-118.0993423","49.1602315"],["-118.0994604","49.1611134"],["-118.0997068","49.1620368"],["-118.1002161","49.1632787"],["-118.1047622","49.1730758"],["-118.1063441","49.1763457"],["-118.1067119","49.1768185"],["-118.1079846","49.1779874"],["-118.108271","49.1783611"],["-118.1090218","49.1796438"],["-118.1103696","49.1812424"],["-118.1114017","49.1838383"],["-118.1118492","49.1845174"],["-118.1121832","49.1847587"],["-118.1125987","49.1849793"],["-118.1131927","49.1851799"],["-118.1136359","49.1853317"],["-118.1139963","49.1854967"],["-118.1144493","49.1857869"],["-118.1148469","49.1861963"],["-118.1150355","49.1865587"],["-118.1151148","49.1867803"],["-118.1151815","49.1870226"],["-118.1151576","49.1874658"],["-118.1149654","49.1879858"],["-118.1147367","49.1883501"],["-118.1142508","49.1887719"],["-118.1136678","49.1892012"],["-118.1122219","49.1902007"],["-118.109913","49.1918623"],["-118.1093952","49.1923159"],["-118.1092699","49.1925004"],["-118.109204","49.192652"],["-118.1091929","49.1928"],["-118.109227","49.1929426"],["-118.1093279","49.1931448"],["-118.1095157","49.1933243"],["-118.1098088","49.1935465"],["-118.1101131","49.1937918"],["-118.1104008","49.1940692"],["-118.1105943","49.1943295"],["-118.1106876","49.1946273"],["-118.1107129","49.1950161"],["-118.1107163","49.1954628"],["-118.1107756","49.1960063"],["-118.1108555","49.1963578"],["-118.1110654","49.1966339"],["-118.1115299","49.1970371"],["-118.1121081","49.1975176"],["-118.1125257","49.197957"],["-118.1128278","49.1983912"],["-118.1130385","49.1988548"],["-118.1131369","49.1992123"],["-118.1131847","49.1995678"],["-118.1131682","49.1999489"],["-118.1131174","49.200395"],["-118.1129629","49.2008594"],["-118.1127653","49.2012781"],["-118.112484","49.2016285"],["-118.1121913","49.2019664"],["-118.1117154","49.2023632"],["-118.1112731","49.202776"],["-118.1107774","49.2032496"],["-118.1105206","49.2036931"],["-118.1103314","49.2041948"],["-118.110267","49.2045839"],["-118.1102268","49.2049479"],["-118.1102854","49.2052735"],["-118.1105564","49.2063231"],["-118.1106044","49.20672"],["-118.1105571","49.2070707"],["-118.1103909","49.2075944"],["-118.1100867","49.2084104"],["-118.1097206","49.2095954"],["-118.1094618","49.2104033"],["-118.1091991","49.2109221"],["-118.1088923","49.2113943"],["-118.1085028","49.2118353"],["-118.1080564","49.2122691"],["-118.107245","49.2128823"],["-118.1058419","49.2138748"],["-118.1044608","49.2148331"],["-118.1037427","49.2151917"],["-118.1029144","49.2153894"],["-118.1022061","49.2155131"],["-118.100128","49.215736"],["-118.0994664","49.2158259"],["-118.0990662","49.2159147"],["-118.0986336","49.2160773"],["-118.0979286","49.2164703"],["-118.0960702","49.2176119"],["-118.0956421","49.2179748"],["-118.0954263","49.2182787"],["-118.0952507","49.2186147"],["-118.0951814","49.219023"],["-118.0951737","49.2194263"],["-118.0959281","49.2241723"],["-118.0961988","49.2255416"],["-118.0964795","49.2263069"],["-118.097489","49.2275414"],["-118.0977513","49.2278983"],["-118.0979425","49.2282278"],["-118.098041","49.2286677"],["-118.097889","49.22911"],["-118.0975685","49.229472"],["-118.0970727","49.2297904"],["-118.0964703","49.2299314"],["-118.0959291","49.2299637"],["-118.0953426","49.229885"],["-118.094786","49.229653"],["-118.0941893","49.2292597"],["-118.0916754","49.2265401"],["-118.0911443","49.226001"],["-118.0904661","49.2254695"],["-118.0890771","49.2245099"],["-118.0816329","49.2193815"],["-118.0806961","49.2188529"],["-118.0798291","49.2185724"],["-118.0790474","49.2184487"],["-118.0782747","49.218375"],["-118.0774181","49.2184018"],["-118.0764266","49.2185705"],["-118.0752914","49.2189888"],["-118.0724047","49.2210093"],["-118.07173","49.2213941"],["-118.0705908","49.2218632"],["-118.0690239","49.2223327"],["-118.0636877","49.2239421"],["-118.0611924","49.2247061"],["-118.0601267","49.2251197"],["-118.0592762","49.2256693"],["-118.0586525","49.2262422"],["-118.0581979","49.2269484"],["-118.0579676","49.2276534"],["-118.0579303","49.2282792"],["-118.0580071","49.2288833"],["-118.0582173","49.2294386"],["-118.0608663","49.2348247"],["-118.0611128","49.2355481"],["-118.061135","49.236204"],["-118.0609559","49.2368465"],["-118.0604664","49.2375729"],["-118.0598756","49.2381451"],["-118.0589659","49.2386252"],["-118.058018","49.238919"],["-118.0570743","49.2391712"],["-118.055956","49.2394659"],["-118.0550622","49.2397967"],["-118.0543414","49.24027"],["-118.0539169","49.2407352"],["-118.0527666","49.2424455"],["-118.0521348","49.2434012"],["-118.0500968","49.2464842"],["-118.0486324","49.248717"],["-118.0475386","49.2504365"],["-118.0466039","49.2519796"],["-118.0461133","49.2529971"],["-118.0455428","49.2545783"],["-118.0452067","49.2558345"],["-118.044927","49.2564807"],["-118.0444648","49.2570811"],["-118.0438739","49.2575137"],["-118.0432504","49.2578077"],["-118.0425403","49.2580236"],["-118.0417641","49.2581529"],["-118.0409234","49.2581898"],["-118.0402193","49.2580971"],["-118.039376","49.2578689"],["-118.0386527","49.2575193"],["-118.0374311","49.2569763"],["-118.0363952","49.2566649"],["-118.0353126","49.2565595"],["-118.0337527","49.2566514"],["-118.0205169","49.2578239"],["-118.0193995","49.2578181"],["-118.0185554","49.2576758"],["-118.0176579","49.2574071"],["-118.0169258","49.2570574"],["-118.0163118","49.2566367"],["-118.0158521","49.256199"],["-118.0155521","49.2556886"],["-118.0153285","49.2550704"],["-118.0152792","49.2544696"],["-118.0154456","49.2537978"],["-118.0157264","49.2529123"],["-118.015965","49.2520359"],["-118.0160085","49.2509361"],["-118.0158429","49.2498939"],["-118.0153818","49.2487509"],["-118.0140464","49.2463641"],["-118.0133706","49.2454848"],["-118.0127728","49.244931"],["-118.0121557","49.2445542"],["-118.0114406","49.2442516"],["-118.0105313","49.2440558"],["-118.0092619","49.243956"],["-118.0041284","49.2441496"],["-117.999108","49.244356"],["-117.997613","49.2444303"],["-117.9958052","49.2445502"],["-117.9942353","49.244731"],["-117.9927559","49.2450299"],["-117.9915902","49.2454673"],["-117.9907597","49.2459018"],["-117.9899412","49.2463586"],["-117.9892136","49.2467883"],["-117.9883278","49.2471261"],["-117.9875269","49.247296"],["-117.9866397","49.247321"],["-117.9857008","49.2472119"],["-117.9848339","49.2469817"],["-117.9841442","49.2466452"],["-117.9830752","49.2459895"],["-117.9796986","49.2436961"],["-117.9783272","49.2427945"],["-117.9772556","49.2423284"],["-117.9763032","49.2420941"],["-117.9752734","49.2420452"],["-117.97428","49.2421612"],["-117.9734367","49.2424237"],["-117.9725966","49.242803"],["-117.9719031","49.2432763"],["-117.9712174","49.243776"],["-117.9702546","49.2443517"],["-117.9691117","49.2448991"],["-117.9674344","49.2454756"],["-117.9659455","49.2458886"],["-117.9645045","49.2463528"],["-117.9633402","49.2468615"],["-117.9619748","49.247597"],["-117.9463466","49.2564197"],["-117.9439349","49.2583229"],["-117.9426214","49.2597056"],["-117.9419103","49.2605739"],["-117.940381","49.2626649"],["-117.9388457","49.2643989"],["-117.9378944","49.2652851"],["-117.9356463","49.2667639"],["-117.9324792","49.2684219"],["-117.9205502","49.2740806"],["-117.9183809","49.2753718"],["-117.9152394","49.2780182"],["-117.912655","49.2812085"],["-117.9113804","49.2823875"],["-117.9103064","49.2831336"],["-117.9079117","49.2845433"],["-117.9063924","49.2857979"],["-117.9029942","49.2887068"],["-117.9018979","49.2894685"],["-117.9004445","49.2900394"],["-117.8983696","49.2904159"],["-117.896931","49.290429"],["-117.895436","49.2903559"],["-117.8939387","49.2904646"],["-117.8925711","49.2909689"],["-117.8915139","49.2918609"],["-117.8901079","49.2934595"],["-117.8890537","49.2943166"],["-117.8877059","49.2949768"],["-117.8861321","49.2954978"],["-117.8842784","49.2958106"],["-117.8741558","49.2958901"],["-117.8718301","49.2960904"],["-117.8698321","49.2963654"],["-117.8675296","49.2968317"],["-117.8653688","49.2972599"],["-117.8628426","49.2975387"],["-117.8537554","49.2983383"],["-117.8509672","49.2984954"],["-117.8481409","49.2985177"],["-117.8456959","49.2984841"],["-117.8431174","49.2983472"],["-117.8405331","49.298101"],["-117.8382337","49.2978066"],["-117.8274459","49.2961179"],["-117.8245578","49.2958841"],["-117.8189353","49.29568"],["-117.8166896","49.295759"],["-117.8143855","49.2961262"],["-117.8062505","49.2979031"],["-117.8037317","49.2984294"],["-117.8024224","49.298577"],["-117.8012276","49.2985027"],["-117.8000308","49.298244"],["-117.7986737","49.2977626"],["-117.7975776","49.2975307"],["-117.7961754","49.2974206"],["-117.7944893","49.2975722"],["-117.7933167","49.2978715"],["-117.7919673","49.2984461"],["-117.7905855","49.2990054"],["-117.7894456","49.2992972"],["-117.7883057","49.2994262"],["-117.787204","49.2994116"],["-117.7758632","49.2979817"],["-117.7740381","49.2977192"],["-117.7723138","49.2974015"],["-117.7681723","49.2964949"],["-117.7667046","49.2961165"],["-117.765228","49.2956812"],["-117.7637252","49.2952027"],["-117.7619328","49.2945669"],["-117.759766","49.2936848"],["-117.743354","49.2864697"],["-117.7413462","49.2853971"],["-117.7325846","49.2798407"],["-117.7312555","49.2790756"],["-117.7303667","49.2786901"],["-117.7292136","49.278364"],["-117.727176","49.2781496"],["-117.7242659","49.2779265"],["-117.7229604","49.2777595"],["-117.7218982","49.2774276"],["-117.7198095","49.2765289"],["-117.7190038","49.2763512"],["-117.7181536","49.2762535"],["-117.7155169","49.2762629"],["-117.7086388","49.2756271"],["-117.7064493","49.2753833"],["-117.7055103","49.2751032"],["-117.7031335","49.2740116"],["-117.699282","49.2723602"],["-117.6980782","49.2720141"],["-117.6966174","49.2719413"],["-117.6955712","49.2720289"],["-117.6943904","49.2722347"],["-117.6936342","49.2722978"],["-117.6929491","49.2722204"],["-117.6919464","49.2719273"],["-117.6913893","49.2718236"],["-117.6907814","49.2718248"],["-117.6899414","49.2720234"],["-117.6889892","49.2722436"],["-117.6880527","49.2722466"],["-117.6870672","49.2720104"],["-117.6842561","49.2711708"],["-117.6832347","49.2710328"],["-117.682563","49.2710181"],["-117.6816984","49.2711378"],["-117.6803692","49.2714397"],["-117.676093","49.2724954"],["-117.6746956","49.2727953"],["-117.6731816","49.2730523"],["-117.6720236","49.2732819"],["-117.6713111","49.2735517"],["-117.6705794","49.2739888"],["-117.670141","49.2744524"],["-117.6692897","49.2756787"],["-117.6685966","49.2764235"],["-117.667789","49.2771234"],["-117.6667025","49.2780058"],["-117.666397","49.2783185"],["-117.6661807","49.2786399"],["-117.666059","49.2789329"],["-117.6659673","49.2792275"],["-117.665922","49.2794738"],["-117.6659752","49.2798315"],["-117.6660412","49.2800994"],["-117.6661135","49.2803549"],["-117.6663285","49.2809306"],["-117.6667604","49.2821248"],["-117.6668383","49.2824316"],["-117.6668843","49.2828193"],["-117.6668685","49.2832641"],["-117.6668052","49.2835576"],["-117.6667091","49.2838797"],["-117.6664578","49.2844287"],["-117.6655073","49.2859444"],["-117.6645372","49.2874504"],["-117.6642962","49.2877381"],["-117.6639984","49.2880118"],["-117.6635931","49.2883221"],["-117.6626827","49.2887099"],["-117.661845","49.2889802"],["-117.6611431","49.2891362"],["-117.660883","49.2891683"],["-117.6604754","49.2892062"],["-117.659939","49.2892288"],["-117.6589217","49.2892766"],["-117.6585275","49.2893209"],["-117.6582131","49.2893962"],["-117.6578933","49.2895045"],["-117.6576808","49.2896019"],["-117.6574733","49.2897206"],["-117.657292","49.2898672"],["-117.6570917","49.2900823"],["-117.656958","49.2902887"],["-117.6568405","49.2906487"],["-117.6567087","49.2912351"],["-117.6565674","49.2917698"],["-117.6562575","49.2927446"],["-117.6561361","49.2931621"],["-117.6560998","49.2933977"],["-117.6560835","49.2938914"],["-117.6561175","49.2941488"],["-117.6561881","49.2943999"],["-117.6563179","49.2947619"],["-117.6568589","49.2956087"],["-117.6573623","49.2963938"],["-117.6575246","49.2967017"],["-117.6575862","49.2970075"],["-117.6575903","49.2973183"],["-117.6574476","49.2976517"],["-117.6573419","49.2978284"],["-117.6572349","49.2979791"],["-117.6571075","49.2981173"],["-117.6569673","49.298255"],["-117.6567963","49.2983914"],["-117.6566479","49.2984969"],["-117.6565266","49.2985673"],["-117.6562695","49.2986786"],["-117.6559729","49.2987792"],["-117.6555426","49.298862"],["-117.6554118","49.2988825"],["-117.6551643","49.2989168"],["-117.6550087","49.298929"],["-117.654812","49.2989358"],["-117.6546368","49.2989384"],["-117.6544771","49.2989305"],["-117.6542962","49.2989177"],["-117.6541629","49.2989044"],["-117.6540375","49.2988891"],["-117.6539132","49.2988705"],["-117.6537984","49.2988495"],["-117.6536827","49.2988249"],["-117.6535661","49.298796"],["-117.6534389","49.2987583"],["-117.6533097","49.2987164"],["-117.6531971","49.2986753"],["-117.6530868","49.2986318"],["-117.6529798","49.2985845"],["-117.652877","49.2985321"],["-117.6527578","49.2984661"],["-117.6526218","49.2983817"],["-117.6524901","49.298288"],["-117.6523647","49.298187"],["-117.6522423","49.2980651"],["-117.6521562","49.2979716"],["-117.6520708","49.2978653"],["-117.6516996","49.2973638"],["-117.6515033","49.2971194"],["-117.6513278","49.2969239"],["-117.6509661","49.2966186"],["-117.6505212","49.2963224"],["-117.6500844","49.2960664"],["-117.6495074","49.2958151"],["-117.6490774","49.2956599"],["-117.6487491","49.2955755"],["-117.6420832","49.2942235"],["-117.641043","49.2940105"],["-117.6404889","49.2939298"],["-117.6398882","49.2937885"],["-117.6394415","49.2936443"],["-117.6389913","49.2934598"],["-117.638551","49.2932657"],["-117.6381491","49.2930592"],["-117.6375547","49.2926657"],["-117.6372945","49.2924652"],["-117.6370361","49.2922486"],["-117.6364731","49.2917054"],["-117.6356812","49.2909141"],["-117.634674","49.2898947"],["-117.6336025","49.2888268"],["-117.6290671","49.2845096"],["-117.6265033","49.282037"],["-117.6258748","49.2813034"],["-117.6257564","49.2811438"],["-117.625643","49.2809787"],["-117.6255127","49.2807932"],["-117.6252497","49.2803877"],["-117.6249903","49.2798777"],["-117.6248718","49.2795064"],["-117.6247122","49.2790436"],["-117.624552","49.2785129"],["-117.6245122","49.278194"],["-117.624482","49.2777632"],["-117.6246177","49.2744213"],["-117.6246901","49.2732073"],["-117.6247105","49.2727867"],["-117.6247112","49.2723544"],["-117.6246022","49.2716719"],["-117.6245205","49.2712924"],["-117.6242871","49.2706549"],["-117.6238367","49.2694609"],["-117.6237139","49.269067"],["-117.6236073","49.2686856"],["-117.6235378","49.2676628"],["-117.6235722","49.2665893"],["-117.6236449","49.2655302"],["-117.6237358","49.264081"],["-117.6237056","49.2637499"],["-117.6236582","49.2634915"],["-117.6235511","49.2631285"],["-117.6234208","49.262729"],["-117.6229326","49.2617547"],["-117.6227017","49.261096"],["-117.6226333","49.2607491"],["-117.6225809","49.260306"],["-117.6225788","49.2599117"],["-117.6226282","49.2594732"],["-117.6227582","49.2589598"],["-117.6229022","49.2584668"],["-117.6230728","49.2580847"],["-117.6236328","49.2571407"],["-117.625011","49.2553336"],["-117.6252692","49.2549215"],["-117.6257066","49.2540376"],["-117.6262151","49.2531093"],["-117.6270677","49.2519232"],["-117.6275608","49.2514896"],["-117.6281311","49.2510142"],["-117.6288529","49.2505899"],["-117.6293449","49.2503541"],["-117.6299578","49.2501764"],["-117.6336896","49.2494446"],["-117.6345314","49.2492539"],["-117.6354711","49.248997"],["-117.6361695","49.2487345"],["-117.6370662","49.248248"],["-117.6378141","49.2476798"],["-117.6385108","49.2469717"],["-117.6388686","49.2464681"],["-117.6391896","49.2457819"],["-117.6393434","49.2452053"],["-117.6393973","49.2447927"],["-117.6393461","49.2443842"],["-117.639159","49.2436887"],["-117.6388699","49.242953"],["-117.63805","49.2414925"],["-117.6372807","49.2401598"],["-117.6367008","49.2391672"],["-117.6362754","49.2384332"],["-117.6359926","49.2380124"],["-117.6356828","49.237713"],["-117.6353801","49.2374403"],["-117.6349234","49.2371693"],["-117.6342863","49.2368734"],["-117.633905","49.2367241"],["-117.6334414","49.2366025"],["-117.6330264","49.2365195"],["-117.632613","49.2364594"],["-117.6303212","49.2362803"],["-117.6271728","49.2360693"],["-117.6262299","49.2360145"],["-117.6255301","49.2360066"],["-117.624854","49.2360418"],["-117.624294","49.2361088"],["-117.6236929","49.2362407"],["-117.6231502","49.2363714"],["-117.6224472","49.2366001"],["-117.621793","49.2368747"],["-117.6212562","49.2371554"],["-117.6207135","49.2375228"],["-117.6202816","49.2378794"],["-117.6197869","49.2383956"],["-117.6171859","49.2415202"],["-117.6164675","49.2423615"],["-117.6159894","49.2427671"],["-117.6156169","49.2430034"],["-117.6151368","49.2432329"],["-117.6147197","49.2434103"],["-117.614153","49.2435192"],["-117.6135767","49.243601"],["-117.6129927","49.2436415"],["-117.612517","49.243615"],["-117.6120415","49.2435766"],["-117.6115143","49.2434772"],["-117.6111052","49.2433611"],["-117.6105948","49.2431799"],["-117.6102858","49.2430322"],["-117.6099944","49.2428753"],["-117.6095878","49.2425907"],["-117.6081162","49.2414244"],["-117.607378","49.2409446"],["-117.6068698","49.2406413"],["-117.6062583","49.24037"],["-117.6055981","49.2401193"],["-117.6050225","49.2399159"],["-117.6044532","49.2397604"],["-117.6032476","49.239541"],["-117.6027439","49.2394897"],["-117.6020107","49.2394575"],["-117.5838902","49.2389026"],["-117.5828456","49.2389504"],["-117.5819409","49.2390851"],["-117.5809344","49.2393222"],["-117.5799008","49.2396427"],["-117.5791194","49.2399819"],["-117.5784307","49.2403538"],["-117.577471","49.2410875"],["-117.5767785","49.2416968"],["-117.5758968","49.2423887"],["-117.5753275","49.2427556"],["-117.57483","49.2429962"],["-117.5742616","49.2432475"],["-117.5736641","49.2434505"],["-117.5725212","49.2437422"],["-117.5717793","49.2438481"],["-117.571013","49.2439364"],["-117.569554","49.2439792"],["-117.5684591","49.2438613"],["-117.5678491","49.2437641"],["-117.5555535","49.2414533"],["-117.5536859","49.2410818"],["-117.5527355","49.2408269"],["-117.5506653","49.2401864"],["-117.5487957","49.239607"],["-117.5464937","49.2389145"],["-117.545754","49.2387585"],["-117.5450231","49.2386843"],["-117.5376196","49.2384253"],["-117.5356351","49.2382775"],["-117.5173552","49.2354278"],["-117.5142428","49.2349126"],["-117.5130188","49.2346418"],["-117.512379","49.2344229"],["-117.5114455","49.2339155"],["-117.5092424","49.23233"],["-117.5087326","49.2320209"],["-117.5083049","49.2318349"],["-117.5076982","49.2316611"],["-117.507249","49.231574"],["-117.5067956","49.2314941"],["-117.5046755","49.2313303"],["-117.5039023","49.2312389"],["-117.5034425","49.2311536"],["-117.5029833","49.231058"],["-117.5026423","49.2309522"],["-117.5022117","49.2307754"],["-117.5010541","49.2300796"],["-117.4992303","49.2288115"],["-117.4982851","49.2282627"],["-117.4974403","49.2278964"],["-117.4961779","49.2274429"],["-117.4942902","49.2269215"],["-117.492476","49.2264235"],["-117.4906779","49.2259032"],["-117.4891461","49.2252823"],["-117.4847714","49.2231058"],["-117.4775278","49.2193549"],["-117.4762344","49.2186411"],["-117.4725826","49.2167434"],["-117.4711227","49.215953"],["-117.4700378","49.2152439"],["-117.4690622","49.2144865"],["-117.4651829","49.2111465"],["-117.4645262","49.2104266"],["-117.4642116","49.2099081"],["-117.4639871","49.2093033"],["-117.4637132","49.2080941"],["-117.4624783","49.2013545"],["-117.4620686","49.2004305"],["-117.4615629","49.1996657"],["-117.4608218","49.1989051"],["-117.4601281","49.1983499"],["-117.4592991","49.1978102"],["-117.4583381","49.197348"],["-117.4570315","49.1968518"],["-117.4553139","49.1964593"],["-117.4538256","49.1963226"],["-117.4511155","49.1963539"],["-117.4464479","49.1964538"],["-117.4448449","49.196402"],["-117.4432581","49.1962357"],["-117.4413117","49.1959005"],["-117.4273287","49.192877"],["-117.4258282","49.1924801"],["-117.425181","49.192151"],["-117.4246694","49.1918005"],["-117.4237948","49.1910126"],["-117.4212641","49.1885688"],["-117.4203641","49.1877995"],["-117.4198852","49.1878518"],["-117.4194346","49.187905"],["-117.4186544","49.1879705"],["-117.4132404","49.1883656"],["-117.4088554","49.1882679"],["-117.404752","49.1880579"],["-117.4010556","49.1871017"],["-117.3972198","49.1858436"],["-117.3946377","49.1850224"],["-117.3923263","49.1842707"],["-117.3912894","49.1840045"],["-117.3903916","49.1838666"],["-117.3897598","49.1838458"],["-117.388721","49.1838151"],["-117.3875412","49.1839012"],["-117.3860408","49.1842248"],["-117.3841247","49.1846286"],["-117.3811707","49.1850832"],["-117.3794789","49.1852258"],["-117.3777212","49.1853182"],["-117.3732572","49.1855605"],["-117.3723436","49.1857"],["-117.3717206","49.1858801"],["-117.3710839","49.1861989"],["-117.3696436","49.1870861"],["-117.3690321","49.1874367"],["-117.3686447","49.1876241"],["-117.3683484","49.1877282"],["-117.3679095","49.1878497"],["-117.3663718","49.1881643"],["-117.3638731","49.188664"],["-117.3610373","49.189254"],["-117.354104","49.1913572"],["-117.353224","49.1915791"],["-117.3521981","49.1917577"],["-117.3513551","49.1918297"],["-117.3501452","49.1918499"],["-117.3492058","49.191825"],["-117.3483235","49.1917418"],["-117.3461777","49.1913494"],["-117.3451079","49.1911862"],["-117.344095","49.1910842"],["-117.3423794","49.1911592"],["-117.3314368","49.1922977"],["-117.3305016","49.192208"],["-117.3298982","49.1921104"],["-117.323534","49.1908453"],["-117.3181673","49.1897646"],["-117.3167656","49.1895554"],["-117.3157047","49.1895372"],["-117.3148601","49.1896134"],["-117.3138247","49.1897856"],["-117.3102737","49.1905324"],["-117.3080985","49.1910031"],["-117.3050739","49.1916578"],["-117.3024335","49.1922214"],["-117.3016384","49.1924337"],["-117.3006112","49.1927762"],["-117.3001731","49.1929548"],["-117.2990485","49.1933144"],["-117.2969698","49.1939825"],["-117.2958925","49.1941956"],["-117.2951023","49.1942615"],["-117.2943137","49.1942098"],["-117.2935255","49.1940813"],["-117.2889142","49.1928683"],["-117.2874015","49.1924415"],["-117.2866737","49.1921793"],["-117.286129","49.1918598"],["-117.2859564","49.1917141"],["-117.2857039","49.1914771"],["-117.2852666","49.1910379"],["-117.2849595","49.1905901"],["-117.2848106","49.1900852"],["-117.2844378","49.1888763"],["-117.2817281","49.1804093"],["-117.2815665","49.1794046"],["-117.2806708","49.1765349"],["-117.277304","49.1694643"],["-117.2727843","49.1588212"],["-117.2711056","49.1567459"],["-117.2668583","49.1542739"],["-117.2660033","49.1533903"],["-117.2654754","49.1526106"],["-117.2652776","49.1521687"],["-117.2651308","49.151736"],["-117.2650679","49.1512325"],["-117.2649853","49.149484"],["-117.2647514","49.1441951"],["-117.2615751","49.1327835"],["-117.2687574","49.1325903"],["-117.2618958","49.132496"],["-117.2608424","49.1304502"],["-117.260573","49.1294315"],["-117.2602552","49.1287527"],["-117.259809","49.1281257"],["-117.2593247","49.1276944"],["-117.2587114","49.1273209"],["-117.2575234","49.1268422"],["-117.2548586","49.1259543"],["-117.2535236","49.1254666"],["-117.252945","49.1250642"],["-117.2527255","49.1248951"],["-117.2526074","49.1247826"],["-117.2525016","49.1246626"],["-117.2524056","49.1245399"],["-117.2523185","49.1244218"],["-117.2522276","49.1242878"],["-117.2521489","49.1241618"],["-117.2520796","49.1240369"],["-117.2520166","49.1239091"],["-117.2519608","49.1237752"],["-117.2519153","49.1236406"],["-117.2518786","49.123507"],["-117.2518497","49.1233658"],["-117.251831","49.1232312"],["-117.2518213","49.1230993"],["-117.2518201","49.1229579"],["-117.2518293","49.1228193"],["-117.2518465","49.1226828"],["-117.2518728","49.1225504"],["-117.2519092","49.1224105"],["-117.2519501","49.1222833"],["-117.252148","49.1217435"],["-117.2547131","49.1149827"],["-117.2548613","49.1145693"],["-117.2549539","49.1142768"],["-117.255032","49.1140089"],["-117.2551657","49.1134834"],["-117.2552184","49.1132556"],["-117.2552552","49.1130682"],["-117.2552841","49.1128902"],["-117.2553832","49.1122463"],["-117.255428","49.1119828"],["-117.2554724","49.1117805"],["-117.2555173","49.111596"],["-117.255577","49.1113625"],["-117.2556322","49.1111685"],["-117.2556735","49.1110396"],["-117.2557229","49.1109058"],["-117.2557959","49.1107369"],["-117.2559013","49.1105099"],["-117.2560336","49.1102467"],["-117.2602447","49.1029512"],["-117.2603125","49.1028199"],["-117.2603756","49.1026925"],["-117.2604368","49.1025583"],["-117.2604922","49.1024228"],["-117.2605519","49.1022454"],["-117.2606147","49.1020458"],["-117.2606591","49.1018875"],["-117.2606942","49.1017471"],["-117.2607225","49.1016093"],["-117.2607442","49.1014808"],["-117.2607633","49.101344"],["-117.2607836","49.1011601"],["-117.2608143","49.100688"],["-117.2608918","49.0992649"],["-117.2609144","49.0989885"],["-117.2609391","49.0987429"],["-117.261007","49.0982161"],["-117.2610339","49.0980623"],["-117.2610641","49.0979256"],["-117.2611013","49.0977858"],["-117.2611425","49.097644"],["-117.2611825","49.0975165"],["-117.2612287","49.0973847"],["-117.2612762","49.0972582"],["-117.2613304","49.0971214"],["-117.2614475","49.0968579"],["-117.2615112","49.0967317"],["-117.2616093","49.0965539"],["-117.2616935","49.0964094"],["-117.2618138","49.0962085"],["-117.2618923","49.0960906"],["-117.2620327","49.0958953"],["-117.2623096","49.0955294"],["-117.2699625","49.0855608"],["-117.2702569","49.0851887"],["-117.2705611","49.0848633"],["-117.2706986","49.0847265"],["-117.2708145","49.0846199"],["-117.2709409","49.0845102"],["-117.2710746","49.084402"],["-117.2712147","49.0842931"],["-117.2723182","49.0834864"],["-117.2724568","49.0833771"],["-117.2725931","49.0832642"],["-117.2727213","49.0831513"],["-117.2728336","49.0830443"],["-117.272973","49.0829006"],["-117.2733653","49.0824524"],["-117.2762261","49.0791025"],["-117.276319","49.0789831"],["-117.2764047","49.0788625"],["-117.276488","49.078729"],["-117.2765579","49.0786017"],["-117.2766177","49.0784706"],["-117.2766642","49.0783407"],["-117.2767","49.0782023"],["-117.2767214","49.0780701"],["-117.2767308","49.0779287"],["-117.2767287","49.0777927"],["-117.2767177","49.0776556"],["-117.2766942","49.0775195"],["-117.2766602","49.0773871"],["-117.2766138","49.0772541"],["-117.2765528","49.0771187"],["-117.276485","49.0769934"],["-117.2764005","49.076864"],["-117.2763075","49.0767414"],["-117.2762062","49.0766219"],["-117.2760938","49.0765098"],["-117.2759698","49.0764024"],["-117.2758333","49.0762994"],["-117.2756805","49.0761958"],["-117.2755281","49.0761035"],["-117.2753733","49.0760163"],["-117.2752086","49.0759326"],["-117.2750351","49.0758565"],["-117.2748476","49.0757827"],["-117.274668","49.0757183"],["-117.2744799","49.075659"],["-117.2742974","49.075611"],["-117.2740997","49.0755689"],["-117.2738949","49.0755333"],["-117.273694","49.0755057"],["-117.2734732","49.0754832"],["-117.2732637","49.0754693"],["-117.2676324","49.0753738"],["-117.2674242","49.0753595"],["-117.2672269","49.0753422"],["-117.2666049","49.0752623"],["-117.2655653","49.0750991"],["-117.2649881","49.0749955"],["-117.2639952","49.0747446"],["-117.2592095","49.0734589"],["-117.2588185","49.0733502"],["-117.2587183","49.073312"],["-117.2586288","49.0732674"],["-117.2584793","49.0731756"],["-117.258339","49.0730774"],["-117.2582134","49.0729788"],["-117.2580772","49.0728649"],["-117.2579575","49.0727543"],["-117.257843","49.0726348"],["-117.2577048","49.0724683"],["-117.2574841","49.0721914"],["-117.2573502","49.0720355"],["-117.2572365","49.0719207"],["-117.2571127","49.0718132"],["-117.2569642","49.0717017"],["-117.2568286","49.071605"],["-117.2566807","49.0715143"],["-117.256511","49.0714311"],["-117.2563316","49.0713555"],["-117.2561581","49.0712928"],["-117.2559686","49.0712345"],["-117.2546151","49.0708849"],["-117.2544256","49.0708297"],["-117.2542193","49.070765"],["-117.2540236","49.0707036"],["-117.253854","49.0706508"],["-117.2488897","49.0692698"],["-117.2486943","49.0692059"],["-117.2483509","49.0690814"],["-117.24805","49.0689566"],["-117.2476528","49.0687619"],["-117.2473477","49.0685885"],["-117.2470568","49.0683992"],["-117.2467823","49.0681929"],["-117.2465358","49.0679813"],["-117.2460797","49.0675184"],["-117.2451156","49.0665265"],["-117.2448741","49.0663008"],["-117.2446229","49.0660841"],["-117.2443547","49.0658668"],["-117.2440877","49.0656666"],["-117.2437788","49.0654509"],["-117.2416889","49.0641166"],["-117.2410882","49.063711"],["-117.2405245","49.0633025"],["-117.2400104","49.0629023"],["-117.23925","49.06227"],["-117.2390176","49.0620647"],["-117.2387884","49.0618545"],["-117.2385204","49.0615993"],["-117.2336281","49.056694"],["-117.2333867","49.0564631"],["-117.233139","49.0562367"],["-117.2328876","49.0560179"],["-117.22956","49.0532377"],["-117.2293159","49.053047"],["-117.2290458","49.0528456"],["-117.2287226","49.0526183"],["-117.2284328","49.0524242"],["-117.2281497","49.0522439"],["-117.2278282","49.0520494"],["-117.2233547","49.0494962"],["-117.2230691","49.0493163"],["-117.222777","49.0491118"],["-117.2225054","49.0488999"],["-117.2222602","49.0486884"],["-117.2220266","49.0484638"],["-117.2145631","49.0409076"],["-117.2143213","49.0407059"],["-117.2140384","49.040488"],["-117.2122748","49.0392427"],["-117.212016","49.0390503"],["-117.2117584","49.0388485"],["-117.2045656","49.0328064"],["-117.2042839","49.0325959"],["-117.2039993","49.0324074"],["-117.2036869","49.0322247"],["-117.2033556","49.0320527"],["-117.2030106","49.0318959"],["-117.2002883","49.0308384"],["-117.1999254","49.0306886"],["-117.199583","49.0305317"],["-117.1992613","49.0303692"],["-117.1989349","49.0301857"],["-117.1986201","49.0299918"],["-117.1983429","49.029802"],["-117.1980767","49.0296018"],["-117.1967211","49.0284724"],["-117.1960207","49.0278776"],["-117.1957941","49.0276452"],["-117.1956029","49.027407"],["-117.1954351","49.0271515"],["-117.1953032","49.0268926"],["-117.1952021","49.0266261"],["-117.1951047","49.0262231"],["-117.1950091","49.0258234"],["-117.1949062","49.0253909"],["-117.1948171","49.0251212"],["-117.1947046","49.0248578"],["-117.1945634","49.0245896"],["-117.1944102","49.0243457"],["-117.1942232","49.0240908"],["-117.1940264","49.0238605"],["-117.1938027","49.0236286"],["-117.1935499","49.0233996"],["-117.1932956","49.0231952"],["-117.193004","49.0229878"],["-117.1893195","49.0206801"],["-117.188899","49.0204021"],["-117.1886519","49.0202285"],["-117.1883787","49.0200278"],["-117.1878363","49.0196142"],["-117.1875297","49.0193827"],["-117.1872365","49.0191864"],["-117.186927","49.0190048"],["-117.1865848","49.0188279"],["-117.1862607","49.0186816"],["-117.1858875","49.0185358"],["-117.1839681","49.0178924"],["-117.1836159","49.0177466"],["-117.1832809","49.0175778"],["-117.1829828","49.0173987"],["-117.1824405","49.0170066"],["-117.1815811","49.0163845"],["-117.1812706","49.0162037"],["-117.1809312","49.0160459"],["-117.1805725","49.0159164"],["-117.1801878","49.0158137"],["-117.1767073","49.0151759"],["-117.1762961","49.0151201"],["-117.175909","49.015079"],["-117.1755029","49.0150474"],["-117.1750646","49.0150274"],["-117.17143","49.0150389"],["-117.170872","49.0150563"],["-117.1704439","49.0150958"],["-117.1700524","49.0151556"],["-117.1696464","49.0152418"],["-117.1692727","49.0153457"],["-117.1688916","49.0154792"],["-117.1685432","49.0156269"],["-117.1682207","49.0157927"],["-117.1679221","49.0159736"],["-117.1675281","49.0162633"],["-117.1671564","49.0165401"],["-117.1666749","49.0168985"],["-117.1663786","49.0170882"],["-117.166059","49.017267"],["-117.1657178","49.0174341"],["-117.1639873","49.0181419"],["-117.1613892","49.0192066"],["-117.161044","49.0193686"],["-117.1607585","49.0195139"],["-117.1603648","49.0197392"],["-117.1601047","49.0199039"],["-117.1598284","49.0200951"],["-117.1516021","49.0265882"],["-117.1513391","49.0268126"],["-117.1429115","49.0345736"],["-117.1426957","49.0347985"],["-117.1424909","49.0350388"],["-117.1423019","49.0352884"],["-117.1421312","49.035547"],["-117.1419893","49.0357923"],["-117.1418592","49.0360596"],["-117.1417538","49.0363178"],["-117.1416628","49.0365952"],["-117.1412356","49.0383893"],["-117.141033","49.0392313"],["-117.1409305","49.0395028"],["-117.1408003","49.0397608"],["-117.1406404","49.0400138"],["-117.1404507","49.0402586"],["-117.1402384","49.0404896"],["-117.1399912","49.0407165"],["-117.1397276","49.040923"],["-117.1362159","49.0432231"],["-117.1353483","49.0437901"],["-117.1312981","49.0464252"],["-117.1309892","49.0465902"],["-117.1306389","49.0467512"],["-117.1302742","49.0468916"],["-117.1297853","49.047048"],["-117.1288411","49.0473478"],["-117.1284587","49.0474863"],["-117.1281118","49.0476311"],["-117.1277668","49.0477948"],["-117.1239986","49.0498246"],["-117.1236562","49.0499941"],["-117.1233288","49.0501429"],["-117.1229728","49.0502865"],["-117.1226122","49.0504165"],["-117.1222545","49.0505318"],["-117.1167041","49.0521443"],["-117.116336","49.0522668"],["-117.115964","49.0524066"],["-117.1115593","49.0542302"],["-117.1112383","49.054374"],["-117.1108883","49.0545439"],["-117.1105767","49.0547102"],["-117.1102596","49.054894"],["-117.1099401","49.0550956"],["-117.109657","49.0552905"],["-117.1080605","49.0564803"],["-117.1066338","49.0575473"],["-117.1063331","49.0577512"],["-117.1060321","49.0579403"],["-117.1057247","49.0581197"],["-117.1053905","49.0583013"],["-117.1040573","49.0589541"],["-117.1037103","49.0591084"],["-117.1033415","49.0592577"],["-117.1029802","49.0593914"],["-117.1026375","49.0595079"],["-117.1022506","49.0596257"],["-117.1007287","49.0600239"],["-117.1002953","49.0601207"],["-117.0998881","49.0601944"],["-117.0978138","49.0604827"],["-117.0973923","49.0605399"],["-117.0969815","49.0606145"],["-117.0965816","49.0607064"],["-117.0961991","49.0608121"],["-117.0958475","49.0609258"],["-117.0954387","49.0610686"],["-117.0950673","49.0612059"],["-117.0943781","49.0614928"],["-117.0939691","49.0616608"],["-117.0933514","49.0619159"],["-117.0929921","49.0620447"],["-117.0926237","49.0621603"],["-117.0922519","49.062262"],["-117.091799","49.0623673"],["-117.0908605","49.0625602"],["-117.0905102","49.0626153"],["-117.0900837","49.0626687"],["-117.0896612","49.0627063"],["-117.0892542","49.0627274"],["-117.0888613","49.062736"],["-117.0884297","49.0627345"],["-117.0880163","49.0627217"],["-117.0876432","49.0627014"],["-117.0871093","49.0626535"],["-117.0867513","49.0626095"],["-117.0863749","49.0625552"],["-117.0858618","49.062466"],["-117.0855495","49.0623987"],["-117.0851546","49.0623003"],["-117.0847949","49.0621977"],["-117.0844317","49.0620785"],["-117.0840048","49.0619195"],["-117.0835674","49.0617547"],["-117.0831424","49.0615992"],["-117.082769","49.0614841"],["-117.0823737","49.0613848"],["-117.0819746","49.061316"],["-117.081556","49.0612857"],["-117.0811307","49.0612932"],["-117.0807197","49.0613344"],["-117.0803217","49.0614057"],["-117.0799306","49.0615044"],["-117.0795643","49.0616274"],["-117.0792186","49.0617744"],["-117.078897","49.0619455"],["-117.076991","49.0630744"],["-117.0766817","49.0632415"],["-117.0763461","49.0633938"],["-117.075977","49.0635314"],["-117.0755875","49.0636483"],["-117.0752556","49.063727"],["-117.0745841","49.0638576"],["-117.0708576","49.0644937"],["-117.0701502","49.0645966"],["-117.0697888","49.0646345"],["-117.0693708","49.0646524"],["-117.068955","49.0646442"],["-117.0685463","49.0646097"],["-117.06813","49.0645535"],["-117.0677997","49.0644955"],["-117.062473","49.0633043"],["-117.0620977","49.0632019"],["-117.0617477","49.0630976"],["-117.0566758","49.0611996"],["-117.0562291","49.0609891"],["-117.0559228","49.0608169"],["-117.0555632","49.0605799"],["-117.0545174","49.0598517"],["-117.05408","49.0595587"],["-117.0537541","49.0593718"],["-117.0534372","49.0592121"],["-117.0530977","49.0590625"],["-117.0527153","49.0589168"],["-117.052361","49.0588014"],["-117.0519653","49.0586926"],["-117.051627","49.0586146"],["-117.0475508","49.0577054"],["-117.0471709","49.0576354"],["-117.046793","49.0575786"],["-117.0463733","49.0575313"],["-117.045962","49.0575001"],["-117.0455439","49.0574825"],["-117.0451682","49.0574805"],["-117.0447565","49.0574914"],["-117.0443655","49.0575167"],["-117.0439285","49.0575615"],["-117.0435197","49.0576191"],["-117.0431236","49.0576916"],["-117.0427423","49.0577754"],["-117.0423365","49.0578826"],["-117.0419644","49.0579975"],["-117.0415966","49.0581292"],["-117.0412718","49.0582585"],["-117.0409223","49.058416"],["-117.0405985","49.0585844"],["-117.0402745","49.0587707"],["-117.0399491","49.0589839"],["-117.0396875","49.0591773"],["-117.0394335","49.0593838"],["-117.0391876","49.0596104"],["-117.0389691","49.0598388"],["-117.0387699","49.0600734"],["-117.0385839","49.060327"],["-117.0384284","49.0605749"],["-117.0382892","49.0608358"],["-117.0381744","49.0611018"],["-117.038084","49.0613646"],["-117.0380147","49.0616385"],["-117.0379696","49.0619117"],["-117.0379494","49.0621803"],["-117.0379493","49.0624275"],["-117.0380127","49.063641"],["-117.0381195","49.0657212"],["-117.0381137","49.0659876"],["-117.0380871","49.0662685"],["-117.0380435","49.0665329"],["-117.0379797","49.0668034"],["-117.037896","49.0670712"],["-117.037793","49.0673378"],["-117.037669","49.0676062"],["-117.0375325","49.0678589"],["-117.0373749","49.0681096"],["-117.036146","49.0698336"],["-117.0357621","49.0703606"],["-117.0355752","49.0705909"],["-117.0353709","49.0708243"],["-117.0351344","49.0710738"],["-117.0349116","49.0712925"],["-117.0346683","49.0715148"],["-117.0252839","49.0792601"],["-117.0250248","49.0794861"],["-117.0247784","49.0797123"],["-117.0215897","49.0828192"],["-117.0213657","49.0830487"],["-117.0211421","49.0832884"],["-117.0209349","49.083522"],["-117.0207327","49.0837583"],["-117.0149985","49.0908944"],["-117.0133099","49.0929781"],["-117.013074","49.0932014"],["-117.0127978","49.0934186"],["-117.0125136","49.0936067"],["-117.0121931","49.0937848"],["-117.011841","49.0939477"],["-117.0114921","49.0940806"],["-117.0111068","49.0941998"],["-117.0107232","49.0942919"],["-117.0096311","49.094471"],["-116.9921566","49.0970479"],["-116.9901275","49.0973098"],["-116.9881315","49.0973523"],["-116.9824396","49.0973674"],["-116.9777471","49.0971244"],["-116.9640883","49.0960725"],["-116.9621172","49.0959483"],["-116.9615026","49.0959964"],["-116.960904","49.0960858"],["-116.9597325","49.0963209"],["-116.947475","49.0994247"],["-116.946308","49.0999542"],["-116.945244","49.1006113"],["-116.9431987","49.1019007"],["-116.9423826","49.1023077"],["-116.9418153","49.1025557"],["-116.9411139","49.1028094"],["-116.9397581","49.1031857"],["-116.9363463","49.1040288"],["-116.9351451","49.1042996"],["-116.9347201","49.1043422"],["-116.9343073","49.1043586"],["-116.9334093","49.1043073"],["-116.9305073","49.1039824"],["-116.9293235","49.1038568"],["-116.9286935","49.1038318"],["-116.9281112","49.1038592"],["-116.9273242","49.1039207"],["-116.9175588","49.1049594"],["-116.9161121","49.1050954"],["-116.9153318","49.1051352"],["-116.9149611","49.1051166"],["-116.9145283","49.1050799"],["-116.9140305","49.1050225"],["-116.9134458","49.1048889"],["-116.9124687","49.1046321"],["-116.9116671","49.1044174"],["-116.9113383","49.1043489"],["-116.9109828","49.1042892"],["-116.9106776","49.1042596"],["-116.9098571","49.104235"],["-116.8992576","49.1042051"],["-116.8975123","49.1041992"],["-116.8955898","49.1041688"],["-116.8952297","49.1041371"],["-116.8949029","49.1040944"],["-116.8945154","49.1040351"],["-116.8938677","49.1038761"],["-116.8910605","49.1030936"],["-116.8906892","49.1030206"],["-116.8903733","49.1029694"],["-116.890051","49.102926"],["-116.8895958","49.1029139"],["-116.8891809","49.1029229"],["-116.888821","49.1029664"],["-116.8881656","49.1030904"],["-116.8858073","49.1036522"],["-116.871136","49.1072609"],["-116.8593846","49.1102112"],["-116.8373344","49.1196711"],["-116.8357447","49.1200777"],["-116.8340118","49.1202751"],["-116.8311456","49.1204206"],["-116.8290157","49.1205648"],["-116.8280572","49.1207197"],["-116.8271072","49.1210483"],["-116.8261843","49.1213975"],["-116.8252763","49.1218347"],["-116.8224514","49.1236985"],["-116.8215376","49.1242511"],["-116.8185388","49.1263055"],["-116.8179454","49.1267311"],["-116.817624","49.1270013"],["-116.817005","49.1275928"],["-116.8167008","49.127839"],["-116.8163889","49.1280266"],["-116.8160644","49.1281956"],["-116.8157215","49.1283478"],["-116.8153657","49.1284794"],["-116.8149644","49.1285958"],["-116.8145746","49.1286917"],["-116.8140885","49.1287745"],["-116.8134496","49.1288727"],["-116.8129437","49.128961"],["-116.8125743","49.1290409"],["-116.8121746","49.1291444"],["-116.811801","49.1292729"],["-116.8114658","49.1294229"],["-116.8111369","49.1295886"],["-116.8108162","49.1297829"],["-116.8103308","49.130143"],["-116.8092306","49.1310054"],["-116.8087773","49.131333"],["-116.8083431","49.1315587"],["-116.8075443","49.1319357"],["-116.8070842","49.1321287"],["-116.8066982","49.1322639"],["-116.8057398","49.132515"],["-116.8007835","49.133738"],["-116.8000942","49.133933"],["-116.7997338","49.1340598"],["-116.7995312","49.1341418"],["-116.7993608","49.1342358"],["-116.7982893","49.1349503"],["-116.7978964","49.135194"],["-116.7975446","49.1353574"],["-116.7970455","49.1355158"],["-116.7826365","49.1393428"],["-116.7810262","49.1397377"],["-116.7806163","49.1397952"],["-116.7802185","49.1398302"],["-116.7798117","49.1398442"],["-116.7781285","49.1398336"],["-116.777696","49.1398525"],["-116.7772988","49.1398947"],["-116.7768924","49.1399755"],["-116.776535","49.1401123"],["-116.776165","49.1403173"],["-116.7756114","49.1406583"],["-116.7744152","49.141417"],["-116.7727684","49.142455"],["-116.7705789","49.14384"],["-116.769418","49.1445611"],["-116.7690783","49.1447253"],["-116.7687294","49.1448619"],["-116.768353","49.144988"],["-116.7679577","49.1451085"],["-116.7671802","49.1453205"],["-116.7668029","49.1454124"],["-116.7663862","49.145499"],["-116.763557","49.1459783"],["-116.7627511","49.146119"],["-116.7623529","49.1461773"],["-116.7619409","49.1462201"],["-116.7615317","49.1462487"],["-116.7611027","49.1462664"],["-116.7606751","49.1462651"],["-116.7602728","49.1462455"],["-116.7578737","49.1459995"],["-116.7552959","49.1457213"],["-116.7517683","49.1453334"],["-116.7513276","49.1452688"],["-116.7509381","49.1451971"],["-116.7505224","49.1451088"],["-116.743634","49.143204"],["-116.7426489","49.1429333"],["-116.742377","49.1428699"],["-116.7421776","49.1428297"],["-116.741986","49.1427957"],["-116.7417703","49.1427629"],["-116.7415806","49.1427396"],["-116.7413681","49.142722"],["-116.7405921","49.1426889"],["-116.7403148","49.1426859"],["-116.740107","49.142692"],["-116.7399002","49.1427031"],["-116.7380295","49.1428567"],["-116.7378142","49.1428658"],["-116.737631","49.14287"],["-116.7374206","49.1428674"],["-116.7372063","49.1428573"],["-116.7367841","49.1428175"],["-116.7366009","49.1427952"],["-116.7363914","49.1427657"],["-116.7361857","49.1427293"],["-116.7359914","49.1426884"],["-116.7357934","49.1426404"],["-116.7261802","49.1397706"],["-116.7258901","49.1396976"],["-116.7257013","49.1396563"],["-116.7254933","49.1396191"],["-116.7252977","49.1395911"],["-116.7250146","49.1395596"],["-116.7246949","49.1395307"],["-116.7242605","49.1394992"],["-116.7233984","49.1394679"],["-116.7189061","49.1393048"],["-116.7185363","49.1393035"],["-116.718025","49.1393202"],["-116.7175406","49.1393412"],["-116.7167576","49.1393896"],["-116.716547","49.1394107"],["-116.7163332","49.13944"],["-116.716072","49.1394898"],["-116.7138159","49.1399523"],["-116.7135373","49.1399993"],["-116.7133199","49.140029"],["-116.7131166","49.1400514"],["-116.7129171","49.1400695"],["-116.7120121","49.140113"],["-116.71021","49.1401753"],["-116.7081905","49.1401611"],["-116.7079061","49.1401651"],["-116.7077092","49.1401735"],["-116.7074886","49.1401905"],["-116.7072963","49.14021"],["-116.7070925","49.1402356"],["-116.7068248","49.1402771"],["-116.7057403","49.1404802"],["-116.7054738","49.1405241"],["-116.705266","49.1405514"],["-116.7050668","49.1405716"],["-116.7048418","49.140588"],["-116.7046329","49.1405966"],["-116.7044325","49.1406002"],["-116.7042219","49.1405971"],["-116.7040258","49.1405876"],["-116.7038138","49.1405683"],["-116.7036079","49.1405391"],["-116.7034098","49.1405008"],["-116.703219","49.1404574"],["-116.7029579","49.1403901"],["-116.7026067","49.1402882"],["-116.7022334","49.1401809"],["-116.7018485","49.1400721"],["-116.7014993","49.1399831"],["-116.7007686","49.13982"],["-116.7004943","49.1397659"],["-116.7002148","49.1397256"],["-116.6998581","49.1396852"],["-116.6994466","49.1396466"],["-116.6973901","49.1395371"],["-116.6970407","49.1395299"],["-116.696742","49.1395311"],["-116.6965437","49.1395397"],["-116.696332","49.139556"],["-116.6961313","49.1395792"],["-116.6959251","49.1396116"],["-116.6956897","49.1396631"],["-116.69517","49.1398082"],["-116.6938223","49.1402039"],["-116.6934293","49.1403073"],["-116.6930413","49.140398"],["-116.6926312","49.1404845"],["-116.6922454","49.1405556"],["-116.6902086","49.1408588"],["-116.6897636","49.1409098"],["-116.6893457","49.1409544"],["-116.6889546","49.1409983"],["-116.6780325","49.142653"],["-116.6777693","49.1426776"],["-116.6775667","49.1426914"],["-116.6773501","49.1427011"],["-116.676947","49.1427062"],["-116.6767298","49.1427033"],["-116.6763064","49.1426864"],["-116.6761032","49.1426718"],["-116.6758827","49.1426506"],["-116.6756792","49.1426269"],["-116.6754159","49.1425877"],["-116.6739202","49.1423327"],["-116.6735535","49.1422787"],["-116.6734532","49.1422679"],["-116.6733482","49.1422609"],["-116.673198","49.1422548"],["-116.672931","49.1422498"],["-116.6728296","49.1422518"],["-116.6727308","49.1422562"],["-116.6726163","49.142264"],["-116.6725115","49.1422733"],["-116.6724115","49.142287"],["-116.6723087","49.1423055"],["-116.6721509","49.1423467"],["-116.670704","49.1427317"],["-116.6704676","49.1427831"],["-116.6702602","49.1428157"],["-116.6700643","49.1428375"],["-116.6698536","49.1428519"],["-116.6696408","49.1428562"],["-116.6694401","49.1428514"],["-116.669196","49.1428325"],["-116.6686536","49.1427627"],["-116.667602","49.1426244"],["-116.667215","49.142581"],["-116.6669549","49.1425643"],["-116.6667515","49.1425588"],["-116.6665559","49.1425605"],["-116.6663447","49.1425724"],["-116.66613","49.1425933"],["-116.6659253","49.1426248"],["-116.6657319","49.1426623"],["-116.6655326","49.1427126"],["-116.6653557","49.1427735"],["-116.665178","49.1428478"],["-116.6650124","49.142934"],["-116.6648626","49.143028"],["-116.6647189","49.1431314"],["-116.6645827","49.1432266"],["-116.6644217","49.143328"],["-116.664266","49.1434154"],["-116.6641113","49.1434969"],["-116.6639279","49.1435865"],["-116.6637697","49.1436584"],["-116.6635857","49.1437339"],["-116.6634113","49.1437957"],["-116.663211","49.1438596"],["-116.6630192","49.1439144"],["-116.6628322","49.1439633"],["-116.662635","49.1440049"],["-116.6624354","49.1440345"],["-116.6622217","49.1440542"],["-116.6620147","49.1440622"],["-116.6618087","49.1440642"],["-116.6615897","49.1440589"],["-116.6613023","49.1440431"],["-116.6602414","49.1439647"],["-116.6599482","49.1439482"],["-116.6597364","49.1439429"],["-116.6595187","49.1439438"],["-116.6592292","49.1439552"],["-116.6586794","49.1439922"],["-116.6582467","49.1440199"],["-116.6576532","49.1440618"],["-116.6574404","49.1440661"],["-116.6572195","49.144063"],["-116.6570308","49.1440528"],["-116.6568159","49.1440355"],["-116.6566028","49.1440106"],["-116.6544279","49.1436652"],["-116.6541828","49.1436193"],["-116.6539815","49.1435738"],["-116.6537822","49.1435202"],["-116.6535989","49.1434631"],["-116.653415","49.1433958"],["-116.6530798","49.1432501"],["-116.6526551","49.1430567"],["-116.6522025","49.1428526"],["-116.6520241","49.1427868"],["-116.6518306","49.1427275"],["-116.6516453","49.1426779"],["-116.6457923","49.1413916"],["-116.645403","49.1412854"],["-116.6450377","49.141171"],["-116.6448557","49.1411071"],["-116.6446778","49.1410393"],["-116.6444955","49.1409642"],["-116.6439714","49.1407205"],["-116.6438163","49.1406414"],["-116.6436492","49.1405515"],["-116.6434939","49.1404623"],["-116.643347","49.1403718"],["-116.6431694","49.1402528"],["-116.6429122","49.1400682"],["-116.6371589","49.1357806"],["-116.6368609","49.1355344"],["-116.6367373","49.1354221"],["-116.6366225","49.1353046"],["-116.6365196","49.1351863"],["-116.6364263","49.1350705"],["-116.6363324","49.1349413"],["-116.636248","49.1348173"],["-116.6361745","49.1346882"],["-116.6361066","49.1345588"],["-116.6360408","49.1344214"],["-116.6359885","49.1343069"],["-116.6359241","49.1341584"],["-116.6358761","49.1340379"],["-116.6358239","49.1338985"],["-116.635775","49.1337391"],["-116.6357106","49.1334881"],["-116.6356361","49.1331096"],["-116.6353417","49.1314952"],["-116.6352448","49.1309815"],["-116.6351994","49.1307767"],["-116.6351559","49.1306411"],["-116.6351045","49.1305127"],["-116.635043","49.1303782"],["-116.6349773","49.13025"],["-116.6349031","49.1301219"],["-116.6348141","49.1299939"],["-116.6347152","49.1298682"],["-116.6346149","49.1297525"],["-116.6344996","49.1296337"],["-116.6343829","49.1295242"],["-116.6342528","49.1294209"],["-116.6340656","49.1292991"],["-116.6338249","49.1291501"],["-116.6336424","49.1290471"],["-116.6334862","49.1289733"],["-116.6332742","49.128889"],["-116.6331043","49.1288304"],["-116.6328784","49.1287599"],["-116.6318906","49.1284959"],["-116.609036","49.1228944"],["-116.5886926","49.1175031"],["-116.5884122","49.1174403"],["-116.5882158","49.1174021"],["-116.5880173","49.1173685"],["-116.5877976","49.1173376"],["-116.5876051","49.117314"],["-116.5871162","49.1172753"],["-116.586788","49.1172612"],["-116.5849539","49.1172447"],["-116.5471034","49.1170897"],["-116.5441437","49.1169918"],["-116.543817","49.1169458"],["-116.543631","49.1168985"],["-116.5434391","49.1168377"],["-116.5432","49.1167285"],["-116.5426185","49.1164395"],["-116.5425305","49.1164083"],["-116.542432","49.1163809"],["-116.5423235","49.1163667"],["-116.5411243","49.1163641"],["-116.5397559","49.1163609"],["-116.5384264","49.1163295"],["-116.5382129","49.1163051"],["-116.5380083","49.1162735"],["-116.5378112","49.1162319"],["-116.5376239","49.1161803"],["-116.5374337","49.1161181"],["-116.5372559","49.1160499"],["-116.5370592","49.1159617"],["-116.536406","49.1155817"],["-116.5326455","49.1132714"],["-116.5319567","49.1127655"],["-116.531506","49.1122976"],["-116.5311342","49.1117379"],["-116.527637","49.1055084"],["-116.5267995","49.1043416"],["-116.524816","49.1018988"],["-116.5243806","49.101357"],["-116.5239748","49.1008682"],["-116.5236048","49.1000821"],["-116.5234143","49.099338"],["-116.5235065","49.0986009"],["-116.5237962","49.0979158"],["-116.5241118","49.0973801"],["-116.5244122","49.0969416"],["-116.5246531","49.0964842"],["-116.5247655","49.0961171"],["-116.5247849","49.0957914"],["-116.5247461","49.0954829"],["-116.5246108","49.0951148"],["-116.5245056","49.094927"],["-116.5242544","49.0944293"],["-116.5241204","49.094162"],["-116.5236043","49.0931373"],["-116.5233276","49.0925711"],["-116.5231277","49.0921676"],["-116.5227308","49.0914288"],["-116.5225507","49.0910749"],["-116.5223635","49.0907047"],["-116.5221373","49.090184"],["-116.5221037","49.0895805"],["-116.522135","49.0882929"],["-116.4927827","49.0883245"],["-116.4921681","49.0883055"],["-116.4914149","49.0882564"],["-116.4886763","49.0882345"],["-116.4790679","49.0882609"],["-116.4779668","49.0882379"],["-116.477761","49.0881896"],["-116.4775763","49.088112"],["-116.4773398","49.087996"],["-116.4771054","49.0878839"],["-116.4769045","49.0878192"],["-116.4766655","49.0877802"],["-116.4762129","49.0877683"],["-116.4709085","49.0878209"],["-116.4701706","49.0878705"],["-116.4698735","49.0879184"],["-116.4696323","49.0880071"],["-116.4684576","49.0886859"],["-116.4674664","49.0892666"],["-116.4671333","49.0894977"],["-116.4667307","49.0898489"],["-116.4665263","49.090005"],["-116.4660783","49.090274"],["-116.4656832","49.0904219"],["-116.4654061","49.0904685"],["-116.4650156","49.0904534"],["-116.4647296","49.090441"],["-116.4644588","49.090454"],["-116.4641769","49.0904925"],["-116.4639056","49.090574"],["-116.4633631","49.0908185"],["-116.4601909","49.0923788"],["-116.4589487","49.0930412"],["-116.458431","49.0933705"],["-116.4579394","49.0937414"],["-116.4574748","49.0941326"],["-116.4570072","49.0945501"],["-116.4565109","49.0950934"],["-116.4560055","49.095667"],["-116.455695","49.0959697"],["-116.4554527","49.0961638"],["-116.4548462","49.0965249"],["-116.4544462","49.0967858"],["-116.4542045","49.0970045"],["-116.4539968","49.0972781"],["-116.4538795","49.0976053"],["-116.4538633","49.0979325"],["-116.4539223","49.0982999"],["-116.4540896","49.0988445"],["-116.454489","49.099975"],["-116.4545786","49.1004374"],["-116.4546364","49.1010571"],["-116.4546702","49.1024829"],["-116.4547341","49.1034859"],["-116.454765","49.103762"],["-116.4547887","49.1040243"],["-116.4547669","49.1042942"],["-116.4546567","49.1045556"],["-116.4544533","49.1047851"],["-116.4541596","49.1049727"],["-116.4537906","49.1050982"],["-116.4533866","49.105149"],["-116.4529773","49.1051833"],["-116.4525829","49.1052511"],["-116.4522173","49.1053657"],["-116.4518897","49.1055284"],["-116.451618","49.1057323"],["-116.4514228","49.1059653"],["-116.4512959","49.1062216"],["-116.4512135","49.1064831"],["-116.4511365","49.1067889"],["-116.4510319","49.10729"],["-116.4509439","49.1075878"],["-116.4508442","49.107845"],["-116.4507169","49.1081063"],["-116.4505654","49.108355"],["-116.4503958","49.1086012"],["-116.4502127","49.1088386"],["-116.4493658","49.109758"],["-116.4483507","49.1108404"],["-116.44735","49.1118959"],["-116.447103","49.112118"],["-116.4468749","49.1123168"],["-116.4463563","49.1127659"],["-116.4458143","49.1131983"],["-116.4455426","49.1134044"],["-116.4452485","49.1136134"],["-116.4449562","49.1138032"],["-116.4446368","49.1139729"],["-116.4442527","49.1141331"],["-116.443272","49.11451"],["-116.4429336","49.1146733"],["-116.4426386","49.1148563"],["-116.4423893","49.1150694"],["-116.4421896","49.1153054"],["-116.4420295","49.1155584"],["-116.4419196","49.115819"],["-116.4418487","49.1160864"],["-116.441792","49.1164204"],["-116.4417634","49.1166946"],["-116.4417661","49.116966"],["-116.4417897","49.1172314"],["-116.4418347","49.1175008"],["-116.4419108","49.1177728"],["-116.4420689","49.1181728"],["-116.4425287","49.119185"],["-116.4428623","49.1199"],["-116.4430076","49.1201685"],["-116.4431679","49.1204295"],["-116.4433209","49.120663"],["-116.4437291","49.1211992"],["-116.444665","49.1224008"],["-116.4448193","49.1226463"],["-116.4449299","49.1229062"],["-116.4449898","49.1231725"],["-116.4449936","49.1234436"],["-116.4449472","49.1237092"],["-116.4448721","49.123978"],["-116.4447646","49.1242446"],["-116.4446471","49.1244961"],["-116.4445162","49.1247525"],["-116.4443776","49.1249717"],["-116.4442665","49.1251298"],["-116.4439243","49.1254973"],["-116.4435259","49.1258879"],["-116.4419099","49.1275045"],["-116.4403997","49.128992"],["-116.4392876","49.1300053"],["-116.4384203","49.1306574"],["-116.4376068","49.1312271"],["-116.4368255","49.1317345"],["-116.4360092","49.1322116"],["-116.43506","49.1326983"],["-116.4338738","49.1332442"],["-116.4326818","49.1337438"],["-116.4316998","49.1341011"],["-116.4308034","49.1343896"],["-116.4298189","49.134683"],["-116.4284894","49.135015"],["-116.4002265","49.1411244"],["-116.3992544","49.1412485"],["-116.3983065","49.1413021"],["-116.3972067","49.1413192"],["-116.3963496","49.1413328"],["-116.3957769","49.1413834"],["-116.3947412","49.1415786"],["-116.3937742","49.1419379"],["-116.3926824","49.1425566"],["-116.3875399","49.1460013"],["-116.3860341","49.1469554"],["-116.3851175","49.1475446"],["-116.3843867","49.1480272"],["-116.3839385","49.1483143"],["-116.3834886","49.1485529"],["-116.3829563","49.1487911"],["-116.3823459","49.1490115"],["-116.3815724","49.1492142"],["-116.3808902","49.1493396"],["-116.3802853","49.149422"],["-116.3795932","49.149468"],["-116.3785746","49.1494435"],["-116.3718436","49.1490607"],["-116.3712633","49.1490694"],["-116.3704924","49.1491249"],["-116.3696752","49.1492303"],["-116.3688261","49.1494112"],["-116.3613612","49.151266"],["-116.3585574","49.1520149"],["-116.35637","49.1527734"],["-116.3544287","49.1534595"],["-116.3516016","49.1544734"],["-116.3507542","49.1547314"],["-116.3501252","49.1548834"],["-116.3479243","49.1553284"],["-116.3465368","49.1556027"],["-116.344816","49.1559639"],["-116.3436104","49.1562505"],["-116.342395","49.1565656"],["-116.3411654","49.15692"],["-116.338612","49.1577401"],["-116.3330817","49.1596815"],["-116.332078","49.1600162"],["-116.3312931","49.1602141"],["-116.3305867","49.1603606"],["-116.3299428","49.1604562"],["-116.3292702","49.1605316"],["-116.3006654","49.1620225"],["-116.2970357","49.1619871"],["-116.2624198","49.1614183"],["-116.2610648","49.161312"],["-116.2597281","49.1610874"],["-116.2574859","49.1604994"],["-116.2449583","49.1543714"],["-116.240736","49.1516523"],["-116.2344226","49.1475237"],["-116.2304501","49.1456683"],["-116.1945128","49.1324231"],["-116.1921634","49.131283"],["-116.1908396","49.1301642"],["-116.1879672","49.1274992"],["-116.1864753","49.1262055"],["-116.1834286","49.1244332"],["-116.1828312","49.1239449"],["-116.1825006","49.1233039"],["-116.1824467","49.1225791"],["-116.183578","49.1204029"],["-116.1837823","49.1196594"],["-116.1836231","49.1189975"],["-116.1834771","49.1186603"],["-116.1830432","49.1180842"],["-116.1797717","49.1158876"],["-116.1754879","49.1130152"],["-116.172746","49.1113171"],["-116.1689904","49.109167"],["-116.1680584","49.1086393"],["-116.1650183","49.1061655"],["-116.1598932","49.101885"],["-116.1593995","49.101336"],["-116.159267","49.1008549"],["-116.1592214","49.1001927"],["-116.1593879","49.0989289"],["-116.1591739","49.0980163"],["-116.1586955","49.096977"],["-116.1577502","49.0963136"],["-116.1566946","49.0957423"],["-116.1551956","49.0951722"],["-116.1531607","49.0948275"],["-116.1508682","49.0939771"],["-116.1497927","49.0932797"],["-116.1492793","49.0927754"],["-116.1488945","49.0922754"],["-116.1485432","49.091536"],["-116.1484227","49.0905982"],["-116.1483941","49.0868927"],["-116.1484434","49.085666"],["-116.1484685","49.084633"],["-116.1484831","49.0843793"],["-116.1484759","49.0841802"],["-116.1484186","49.0839354"],["-116.1483154","49.083706"],["-116.1482055","49.083477"],["-116.148047","49.0832365"],["-116.1478298","49.0829604"],["-116.1475808","49.0826609"],["-116.1472551","49.0823783"],["-116.1468824","49.0820958"],["-116.1462631","49.0817355"],["-116.1437758","49.080674"],["-116.1432991","49.080423"],["-116.1429161","49.080191"],["-116.1426182","49.0799054"],["-116.1423532","49.079546"],["-116.1421616","49.0790611"],["-116.1417517","49.0780622"],["-116.1412893","49.0767416"],["-116.1410313","49.0759846"],["-116.1409432","49.0757323"],["-116.1408582","49.0754554"],["-116.1405898","49.0750218"],["-116.1396294","49.0752152"],["-116.1329918","49.0769029"],["-116.1316123","49.0772534"],["-116.1310799","49.0773675"],["-116.1306207","49.0774516"],["-116.1299156","49.0775136"],["-116.1241178","49.0774067"],["-116.1235251","49.0774254"],["-116.1226854","49.0775358"],["-116.1214598","49.0778154"],["-116.120794","49.0780468"],["-116.1202554","49.0782164"],["-116.1182534","49.0790807"],["-116.1160407","49.0799848"],["-116.1151419","49.0803362"],["-116.1142731","49.0806561"],["-116.1132848","49.0809664"],["-116.1124261","49.0810888"],["-116.1117397","49.0811186"],["-116.11105","49.0810771"],["-116.110661","49.0810355"],["-116.1097407","49.0809117"],["-116.1090405","49.080829"],["-116.1080313","49.0807474"],["-116.1071092","49.0807425"],["-116.1063196","49.0807643"],["-116.0986823","49.0813763"],["-116.0982008","49.0814354"],["-116.097609","49.0815168"],["-116.0969648","49.0816649"],["-116.0963661","49.0818173"],["-116.0957527","49.0819831"],["-116.0953177","49.0821746"],["-116.0942755","49.0826811"],["-116.0936203","49.0830725"],["-116.0924875","49.0839"],["-116.0894145","49.0862718"],["-116.0888686","49.0866463"],["-116.0886202","49.0867499"],["-116.08841","49.0868029"],["-116.0881261","49.0868144"],["-116.0865193","49.0868076"],["-116.0850625","49.0868052"],["-116.0847212","49.0868537"],["-116.0842914","49.0869552"],["-116.08393","49.0871235"],["-116.0836625","49.0872931"],["-116.0833961","49.0875318"],["-116.0832701","49.0878"],["-116.0830462","49.0884135"],["-116.0827145","49.0893641"],["-116.082324","49.0905812"],["-116.0821878","49.0909238"],["-116.0820347","49.091176"],["-116.0818627","49.0914749"],["-116.0816621","49.091747"],["-116.0813159","49.092165"],["-116.0806964","49.0927536"],["-116.0800278","49.093289"],["-116.0796662","49.0935308"],["-116.0792325","49.0937662"],["-116.0755833","49.0955668"],["-116.0748299","49.0959498"],["-116.0744025","49.0961929"],["-116.0738036","49.0966336"],["-116.0730146","49.0972566"],["-116.0720962","49.0982136"],["-116.0708945","49.099492"],["-116.0702266","49.1001579"],["-116.0695425","49.1007567"],["-116.0684919","49.1015516"],["-116.0587642","49.1077091"],["-116.0555202","49.1098037"],["-116.0536544","49.1109673"],["-116.0524786","49.1117866"],["-116.0515734","49.1124846"],["-116.0509175","49.1130801"],["-116.0462935","49.1192712"],["-116.0458298","49.1197824"],["-116.0444973","49.120906"],["-116.0438109","49.1213098"],["-116.0431278","49.1216562"],["-116.0412515","49.1224363"],["-116.0401399","49.1227656"],["-116.0392878","49.1230009"],["-116.0384809","49.1233515"],["-116.0377723","49.1238577"],["-116.0373493","49.1243107"],["-116.0370959","49.1247281"],["-116.0357206","49.1276523"],["-116.0342535","49.1308024"],["-116.0336405","49.1320807"],["-116.0331358","49.1329479"],["-116.0325243","49.1338138"],["-116.0282372","49.1382273"],["-116.0186168","49.1478961"],["-116.0172581","49.149306"],["-116.015073","49.1514752"],["-116.0139142","49.1526256"],["-116.0129692","49.1535507"],["-116.0125646","49.1539642"],["-116.0107399","49.1558475"],["-116.010432","49.1562857"],["-116.0101783","49.1567136"],["-116.0099876","49.1572008"],["-116.0084988","49.1628799"],["-116.0081884","49.1640945"],["-116.0080635","49.1645877"],["-116.0077798","49.1657067"],["-116.0076138","49.1663948"],["-116.007352","49.1674471"],["-116.0072157","49.1679838"],["-116.00714","49.1684134"],["-116.0071019","49.1688484"],["-116.0071415","49.1692428"],["-116.0072366","49.1696164"],["-116.0073459","49.1699317"],["-116.0074997","49.1701973"],["-116.0076704","49.1704716"],["-116.0078856","49.1707434"],["-116.0086493","49.171554"],["-116.0098388","49.172776"],["-116.0126175","49.1755123"],["-116.0130959","49.1760456"],["-116.0133355","49.1764175"],["-116.0136377","49.1771283"],["-116.0140636","49.1783987"],["-116.0143808","49.1793395"],["-116.0145437","49.1798686"],["-116.0146508","49.1803286"],["-116.0146772","49.1807772"],["-116.0146833","49.1814111"],["-116.0146555","49.1818105"],["-116.0145957","49.1822274"],["-116.014486","49.1826822"],["-116.0143502","49.1830606"],["-116.014147","49.1835076"],["-116.0139441","49.1838899"],["-116.0136985","49.1842808"],["-116.013264","49.1848295"],["-116.0127751","49.1853731"],["-116.0123086","49.185828"],["-116.0118323","49.1862191"],["-116.011494","49.1864763"],["-116.0108868","49.1869508"],["-116.0082126","49.1891836"],["-116.007206","49.1900841"],["-116.0061902","49.1910922"],["-116.0054484","49.191885"],["-116.0050478","49.1923672"],["-116.0044043","49.1933565"],["-116.0021435","49.1970799"],["-116.0016672","49.1977535"],["-116.0011939","49.1983397"],["-115.9992751","49.2004358"],["-115.998095","49.2018588"],["-115.9974236","49.2026466"],["-115.9967977","49.2032113"],["-115.9961067","49.2036499"],["-115.9953194","49.204007"],["-115.9944384","49.2042923"],["-115.9928717","49.2045636"],["-115.9873021","49.205354"],["-115.9861334","49.2055023"],["-115.9832325","49.2057566"],["-115.9731547","49.2064238"],["-115.9716284","49.2065888"],["-115.9704466","49.206811"],["-115.9692252","49.2071382"],["-115.9682935","49.2074681"],["-115.9671774","49.2079709"],["-115.9628877","49.2101258"],["-115.9618928","49.2105445"],["-115.9358107","49.2189328"],["-115.9349787","49.2191335"],["-115.933641","49.2193195"],["-115.9294557","49.219765"],["-115.9288048","49.2198718"],["-115.9278192","49.2201108"],["-115.926456","49.2205983"],["-115.9236563","49.2216413"],["-115.9228478","49.2219098"],["-115.9133171","49.2242184"],["-115.9100905","49.2250206"],["-115.9096041","49.2252028"],["-115.9083058","49.2257691"],["-115.9077274","49.2259796"],["-115.9071148","49.2261422"],["-115.9065025","49.226238"],["-115.9036076","49.2265646"],["-115.9026741","49.2267119"],["-115.9020781","49.226873"],["-115.9018862","49.2269398"],["-115.9012512","49.2271983"],["-115.8996135","49.2281468"],["-115.8924082","49.2325718"],["-115.8915346","49.2330433"],["-115.8904657","49.2335163"],["-115.8895365","49.2338778"],["-115.8880579","49.2343419"],["-115.8865311","49.234686"],["-115.878636","49.2362091"],["-115.8742246","49.2368389"],["-115.87328","49.2370766"],["-115.8713816","49.2377972"],["-115.8703194","49.238117"],["-115.8680202","49.2387697"],["-115.867457","49.238973"],["-115.866983","49.2391973"],["-115.8665918","49.2394414"],["-115.8660347","49.239873"],["-115.8637236","49.2418234"],["-115.8629997","49.2423555"],["-115.8608574","49.2435797"],["-115.8601698","49.2440844"],["-115.858632","49.2454823"],["-115.8582044","49.2460067"],["-115.8580272","49.2463969"],["-115.8578984","49.2469752"],["-115.8575781","49.2496683"],["-115.8574942","49.2502826"],["-115.8573544","49.2514138"],["-115.8571041","49.253327"],["-115.8566975","49.2565543"],["-115.8566338","49.2568303"],["-115.8565681","49.2570353"],["-115.85645","49.2572713"],["-115.8563077","49.25744"],["-115.8561135","49.257643"],["-115.8559261","49.257824"],["-115.8554416","49.2581358"],["-115.855138","49.2582965"],["-115.8546231","49.2584581"],["-115.8539142","49.2585912"],["-115.8494782","49.2588817"],["-115.8489617","49.2589578"],["-115.8484855","49.259075"],["-115.8480366","49.259215"],["-115.847624","49.2593889"],["-115.8464722","49.2600305"],["-115.8452685","49.2607246"],["-115.8431936","49.261897"],["-115.8427846","49.262127"],["-115.8424202","49.2624093"],["-115.8421026","49.2626687"],["-115.8417803","49.2630058"],["-115.8414028","49.2634962"],["-115.8408562","49.2643017"],["-115.8403613","49.2649923"],["-115.8389541","49.2670263"],["-115.838747","49.2674848"],["-115.8385215","49.2679308"],["-115.8378893","49.2688765"],["-115.8374086","49.2695286"],["-115.8370546","49.2700079"],["-115.8368366","49.2703635"],["-115.8366639","49.2706639"],["-115.8365276","49.2709594"],["-115.8364262","49.2712431"],["-115.8361631","49.2721766"],["-115.8357999","49.2731255"],["-115.835645","49.2734406"],["-115.834971","49.2746853"],["-115.8344813","49.2755196"],["-115.8333576","49.277442"],["-115.8331601","49.2778844"],["-115.8328766","49.2786571"],["-115.832103","49.280848"],["-115.8317176","49.2819632"],["-115.8314908","49.2826614"],["-115.8313223","49.2832281"],["-115.8312753","49.2836042"],["-115.8313913","49.2843879"],["-115.8315589","49.2847861"],["-115.8317486","49.2851206"],["-115.8319575","49.2854112"],["-115.8322724","49.2858027"],["-115.8326902","49.2862301"],["-115.8332307","49.2870008"],["-115.8333236","49.2872047"],["-115.8334391","49.2875566"],["-115.8334969","49.2880062"],["-115.8334726","49.2888682"],["-115.8334544","49.2895603"],["-115.8333887","49.2900018"],["-115.833297","49.2902611"],["-115.8331769","49.2904255"],["-115.8329043","49.2906954"],["-115.8325981","49.2909824"],["-115.8321628","49.2913048"],["-115.8315787","49.2917716"],["-115.8311028","49.2922142"],["-115.8308477","49.2925833"],["-115.8298838","49.2944496"],["-115.828887","49.2964574"],["-115.828727","49.2968762"],["-115.8286388","49.2973871"],["-115.8287222","49.2981627"],["-115.8288225","49.2990761"],["-115.828868","49.2998143"],["-115.829374","49.3081945"],["-115.82943","49.3094131"],["-115.8293927","49.3098087"],["-115.8292798","49.3105141"],["-115.829033","49.3117252"],["-115.8286581","49.3132913"],["-115.8283244","49.3148455"],["-115.8281004","49.3158934"],["-115.8279499","49.3166444"],["-115.8278924","49.3175521"],["-115.8279508","49.3180097"],["-115.8280479","49.3187083"],["-115.8281675","49.3197486"],["-115.8282674","49.3206473"],["-115.8283415","49.3210599"],["-115.8284472","49.321437"],["-115.8286387","49.3219947"],["-115.8287733","49.3223772"],["-115.828849","49.3225823"],["-115.828967","49.3228671"],["-115.8292197","49.3234868"],["-115.8292993","49.3238489"],["-115.8293175","49.3241352"],["-115.8293148","49.3244464"],["-115.8292584","49.324799"],["-115.8291934","49.3250937"],["-115.8290469","49.3254016"],["-115.8288906","49.3256423"],["-115.8285406","49.326018"],["-115.8281639","49.3263622"],["-115.8277552","49.3266313"],["-115.8273341","49.3268807"],["-115.8266119","49.327181"],["-115.8256627","49.3275347"],["-115.8249607","49.3278104"],["-115.8244797","49.3281086"],["-115.8240543","49.3284063"],["-115.8236493","49.3287758"],["-115.8232621","49.3292212"],["-115.8229952","49.3296516"],["-115.8228498","49.3300959"],["-115.8225565","49.331208"],["-115.822347","49.331968"],["-115.8221264","49.3326344"],["-115.8218709","49.3334446"],["-115.8218343","49.3337296"],["-115.8218242","49.3340378"],["-115.8219207","49.3345472"],["-115.8220405","49.3348251"],["-115.822256","49.3353007"],["-115.8231454","49.3371906"],["-115.8239255","49.3393524"],["-115.8241023","49.3398748"],["-115.8244326","49.3408308"],["-115.8245255","49.3412724"],["-115.8245645","49.3417391"],["-115.8245311","49.343093"],["-115.8242941","49.3442138"],["-115.8242563","49.3446562"],["-115.8243882","49.3461027"],["-115.8243516","49.3464765"],["-115.824239","49.3468969"],["-115.8240472","49.3472785"],["-115.8237469","49.3477605"],["-115.8235297","49.3482672"],["-115.8234271","49.3486385"],["-115.8232902","49.3498275"],["-115.8231665","49.3502187"],["-115.8230485","49.350532"],["-115.8227574","49.3509676"],["-115.8218758","49.3521655"],["-115.8209363","49.3536109"],["-115.8207412","49.3540344"],["-115.8206124","49.3543744"],["-115.8206308","49.3551991"],["-115.8207291","49.3554967"],["-115.821234","49.3564975"],["-115.8215271","49.3570277"],["-115.8217609","49.3574466"],["-115.8218942","49.3577793"],["-115.8219117","49.3580327"],["-115.821897","49.358444"],["-115.8218201","49.3593604"],["-115.8218439","49.3597188"],["-115.8219593","49.3601311"],["-115.822092","49.3605197"],["-115.8224218","49.3609421"],["-115.8233105","49.3617501"],["-115.8238404","49.3622236"],["-115.8242746","49.3627133"],["-115.8245525","49.3632056"],["-115.8246643","49.3635797"],["-115.8247476","49.3638907"],["-115.8247964","49.3642673"],["-115.8247884","49.3652994"],["-115.8247531","49.3658676"],["-115.8247109","49.3663936"],["-115.824679","49.3668807"],["-115.8246464","49.3673623"],["-115.8245245","49.3678146"],["-115.8244214","49.3680983"],["-115.8242721","49.3684189"],["-115.8240079","49.3689415"],["-115.8238454","49.3693091"],["-115.8237705","49.3696261"],["-115.823732","49.3699125"],["-115.823754","49.3705045"],["-115.8238507","49.3710197"],["-115.8239681","49.3714394"],["-115.8240895","49.3719193"],["-115.8242037","49.3722787"],["-115.824352","49.3725539"],["-115.8245156","49.3727877"],["-115.8247497","49.3730898"],["-115.8252927","49.3736246"],["-115.825745","49.3740175"],["-115.8311398","49.3785301"],["-115.8317494","49.3790068"],["-115.8324488","49.3793757"],["-115.8328776","49.3795674"],["-115.8335262","49.3797976"],["-115.8366772","49.3807539"],["-115.8373222","49.3809262"],["-115.8378073","49.3810207"],["-115.8385015","49.3810921"],["-115.8394786","49.3811272"],["-115.8415135","49.3810674"],["-115.8431635","49.3809962"],["-115.8454816","49.3808221"],["-115.8460044","49.3808258"],["-115.8465143","49.3808647"],["-115.8470456","49.3809538"],["-115.8481192","49.3811737"],["-115.8488312","49.3813954"],["-115.8494691","49.3816728"],["-115.8500128","49.3819536"],["-115.8503715","49.3822403"],["-115.8506715","49.3824635"],["-115.8509009","49.3827175"],["-115.8514294","49.3833321"],["-115.8551937","49.3880032"],["-115.8557558","49.3885815"],["-115.8562051","49.3890144"],["-115.8578831","49.3903929"],["-115.8597015","49.3919294"],["-115.8600886","49.3923279"],["-115.8604166","49.3927405"],["-115.8606313","49.3931349"],["-115.8607981","49.3934696"],["-115.8609437","49.3938279"],["-115.8613219","49.3948529"],["-115.8614723","49.3952648"],["-115.8615753","49.3956449"],["-115.8616296","49.3959787"],["-115.861588","49.3966239"],["-115.8614838","49.396937"],["-115.8613906","49.3972197"],["-115.861212","49.3975128"],["-115.860995","49.397787"],["-115.8607561","49.3980332"],["-115.8603254","49.3983416"],["-115.8598467","49.3986291"],["-115.8591316","49.39894"],["-115.8574037","49.3995844"],["-115.8558896","49.4001354"],["-115.8550671","49.4004032"],["-115.8546297","49.400475"],["-115.8531752","49.4006629"],["-115.8523363","49.4007961"],["-115.8517891","49.4009775"],["-115.8513488","49.4011579"],["-115.8510226","49.4013377"],["-115.8505678","49.4016583"],["-115.8500882","49.4020682"],["-115.8497182","49.4024038"],["-115.8494805","49.4026804"],["-115.8492908","49.4029382"],["-115.8491144","49.403233"],["-115.8489247","49.4036064"],["-115.8488173","49.4039452"],["-115.8487631","49.4042346"],["-115.8487303","49.4045371"],["-115.848707","49.4049863"],["-115.8487629","49.405419"],["-115.8489466","49.4059299"],["-115.8491103","49.4063038"],["-115.8493598","49.4066888"],["-115.8497773","49.4071961"],["-115.8513578","49.4087792"],["-115.8540169","49.411958"],["-115.8543242","49.4122318"],["-115.8545892","49.4124326"],["-115.8549412","49.4126627"],["-115.8554171","49.4129129"],["-115.857708","49.4140638"],["-115.8596045","49.4150199"],["-115.8603338","49.4154421"],["-115.8608394","49.415785"],["-115.8618046","49.416559"],["-115.869768","49.4232217"],["-115.8711911","49.4244139"],["-115.8725992","49.4255972"],["-115.8740364","49.4270171"],["-115.8743661","49.427548"],["-115.8745333","49.4279434"],["-115.8746832","49.4283855"],["-115.8747988","49.4292136"],["-115.8752251","49.4327349"],["-115.8754677","49.434774"],["-115.8758203","49.4376596"],["-115.8759307","49.4385283"],["-115.8759112","49.4389417"],["-115.8758906","49.4392972"],["-115.8758295","49.4398834"],["-115.8757157","49.4403768"],["-115.8753595","49.4411843"],["-115.8742923","49.4426614"],["-115.873771","49.4431597"],["-115.8732154","49.4435804"],["-115.8726012","49.4440079"],["-115.8719451","49.4443904"],["-115.871096","49.4448083"],["-115.8696512","49.4455159"],["-115.8686644","49.4460036"],["-115.8667754","49.4469093"],["-115.8656389","49.4474606"],["-115.8636835","49.4488201"],["-115.8580591","49.452817"],["-115.8555569","49.4549732"],["-115.8549106","49.4555135"],["-115.8542373","49.4560006"],["-115.8526211","49.4571663"],["-115.8517408","49.4576627"],["-115.8502908","49.4584788"],["-115.8488405","49.4592902"],["-115.8465561","49.4602969"],["-115.8416635","49.4622805"],["-115.8409724","49.4625152"],["-115.8401982","49.462721"],["-115.8315147","49.4647401"],["-115.8306294","49.4650034"],["-115.8299635","49.465255"],["-115.8295838","49.4654472"],["-115.8291998","49.4656898"],["-115.8288533","49.4659433"],["-115.8280326","49.4666304"],["-115.824922","49.469228"],["-115.8194739","49.4734902"],["-115.8120385","49.4791746"],["-115.8108894","49.4802136"],["-115.8103077","49.4809133"],["-115.8098343","49.4815534"],["-115.8093984","49.4821746"],["-115.8089375","49.482828"],["-115.808302","49.4835069"],["-115.80259","49.4894504"],["-115.802042","49.4901302"],["-115.8015482","49.4907778"],["-115.8005863","49.4919833"],["-115.7998138","49.4930003"],["-115.7994216","49.4936552"],["-115.799212","49.4941988"],["-115.7991032","49.494498"],["-115.7988774","49.4948655"],["-115.7984806","49.4953939"],["-115.7979237","49.4959475"],["-115.7962085","49.4972835"],["-115.7956985","49.4976086"],["-115.7916997","49.5006968"],["-115.7899194","49.5020804"],["-115.7895429","49.502391"],["-115.7894318","49.5025809"],["-115.7888514","49.5030775"],["-115.7881536","49.5036264"],["-115.7872005","49.5042566"],["-115.7862623","49.5047415"],["-115.785248","49.5051554"],["-115.7814696","49.5063232"],["-115.7802177","49.506734"],["-115.7797822","49.5069552"],["-115.7795959","49.5070577"],["-115.776626","49.5088423"],["-115.7755297","49.509503"],["-115.7747938","49.5099338"],["-115.7744983","49.5101045"],["-115.774435","49.510138"],["-115.7742064","49.5102271"],["-115.7740505","49.5103093"],["-115.7740211","49.5103255"],["-115.7739104","49.5103888"],["-115.7737272","49.5105104"],["-115.7736136","49.5106189"],["-115.7728399","49.5110882"],["-115.7718158","49.5116695"],["-115.7715907","49.5117999"],["-115.7694809","49.5130287"],["-115.7687379","49.5135876"],["-115.7679399","49.5142222"],["-115.7673687","49.5147134"],["-115.7669269","49.5150764"],["-115.7667459","49.515218"],["-115.7662601","49.51552"],["-115.7657539","49.515794"],["-115.7653892","49.5159012"],["-115.7641119","49.5161603"],["-115.763914","49.5162405"],["-115.7636439","49.5163781"],["-115.7632384","49.516661"],["-115.7614906","49.5180354"],["-115.7570993","49.5216815"],["-115.7540024","49.5242496"],["-115.7538468","49.5243847"],["-115.7527548","49.5252584"],["-115.7519713","49.5259214"],["-115.74912","49.5282723"],["-115.7486921","49.5286171"],["-115.7443902","49.5321623"],["-115.7432754","49.5330775"],["-115.7428992","49.5333858"],["-115.7423715","49.5338182"],["-115.7416674","49.534398"],["-115.7410016","49.5349513"],["-115.7402666","49.5355683"],["-115.739869","49.5358883"],["-115.7395748","49.5362026"],["-115.7394215","49.5363875"],["-115.7393577","49.5365168"],["-115.7393159","49.5366184"],["-115.7392992","49.5367485"],["-115.7392952","49.5369976"],["-115.7392929","49.537377"],["-115.739287","49.5377402"],["-115.7392527","49.5380116"],["-115.7391781","49.5382478"],["-115.7390964","49.5384151"],["-115.7388787","49.5387564"],["-115.738765","49.5389163"],["-115.7385077","49.5392403"],["-115.7376452","49.5402931"],["-115.7375521","49.5404575"],["-115.7374099","49.5406745"],["-115.7371937","49.5410895"],["-115.7370024","49.5416366"],["-115.7368596","49.5419694"],["-115.7366024","49.5425561"],["-115.7363169","49.5430373"],["-115.7361266","49.5432791"],["-115.7358315","49.5437251"],["-115.735286","49.5444547"],["-115.7348337","49.5450768"],["-115.7339308","49.5462731"],["-115.7337461","49.5465062"],["-115.7336607","49.5465815"],["-115.73342","49.5468072"],["-115.7331267","49.5470746"],["-115.7328274","49.5473073"],["-115.7324065","49.5475959"],["-115.7320884","49.5477828"],["-115.7314066","49.5481331"],["-115.7309416","49.5483206"],["-115.7250257","49.5504128"],["-115.723511","49.5510209"],["-115.7222401","49.5516809"],["-115.7153344","49.5560971"],["-115.7146087","49.556507"],["-115.713409","49.5571273"],["-115.7129754","49.5573057"],["-115.7118335","49.5577356"],["-115.7113497","49.5578843"],["-115.7108068","49.5580341"],["-115.7088309","49.5584883"],["-115.7067821","49.5589029"],["-115.7049024","49.5593337"],["-115.7030197","49.5598604"],["-115.7013048","49.5604844"],["-115.6904984","49.5652363"],["-115.6894513","49.5657259"],["-115.6890189","49.5660174"],["-115.6883158","49.5666403"],["-115.6880168","49.5669858"],["-115.6877964","49.5672904"],["-115.6876117","49.5675773"],["-115.6874682","49.5678094"],["-115.6873374","49.5680429"],["-115.6872377","49.5683183"],["-115.6867689","49.5697991"],["-115.6865234","49.5704373"],["-115.6862479","49.5711745"],["-115.6859417","49.5719577"],["-115.6857873","49.5722922"],["-115.6856222","49.5725719"],["-115.6853188","49.5729363"],["-115.6850961","49.573145"],["-115.6848418","49.573379"],["-115.6844955","49.5736136"],["-115.683886","49.5739812"],["-115.6835693","49.5741383"],["-115.6831329","49.5743049"],["-115.6825823","49.5744795"],["-115.6819477","49.5746052"],["-115.6814099","49.5747051"],["-115.6806765","49.5747672"],["-115.6801978","49.5747947"],["-115.67956","49.574811"],["-115.6788158","49.5748087"],["-115.6779294","49.5746354"],["-115.6774107","49.5744838"],["-115.6766538","49.5742067"],["-115.6759028","49.5738619"],["-115.6750892","49.5733465"],["-115.6725617","49.5718555"],["-115.6714542","49.5712884"],["-115.6705336","49.5707615"],["-115.6692392","49.5699126"],["-115.6668858","49.5682411"],["-115.6636132","49.5658499"],["-115.6588396","49.5622929"],["-115.6574155","49.5611523"],["-115.6555098","49.5594263"],["-115.653948","49.5578259"],["-115.649657","49.5530205"],["-115.647657","49.5509243"],["-115.6468587","49.5502233"],["-115.6455606","49.5490664"],["-115.6252134","49.5313481"],["-115.6236956","49.5301189"],["-115.6221676","49.5289799"],["-115.6211304","49.5283167"],["-115.6200399","49.5276618"],["-115.5999707","49.5172562"],["-115.596768","49.5154032"],["-115.595254","49.5144684"],["-115.5929364","49.5129157"],["-115.586254","49.5084324"],["-115.5843646","49.5071486"],["-115.580267","49.5044554"],["-115.5768864","49.5024846"],["-115.5648075","49.4959091"],["-115.5639581","49.4953987"],["-115.5616665","49.4937682"],["-115.5521404","49.4865427"],["-115.5494816","49.4845604"],["-115.5479007","49.4835304"],["-115.5453277","49.4820941"],["-115.5442362","49.4815462"],["-115.5430249","49.4809978"],["-115.5419497","49.4805413"],["-115.5406938","49.480042"],["-115.5268952","49.4752206"],["-115.5248413","49.4745348"],["-115.522046","49.4737619"],["-115.5210736","49.4735347"],["-115.5181076","49.4729312"],["-115.517599","49.4728565"],["-115.517177","49.4728323"],["-115.5165164","49.4728248"],["-115.5155812","49.4728867"],["-115.5145265","49.4729834"],["-115.513499","49.4730698"],["-115.51287","49.4730581"],["-115.5123428","49.4730572"],["-115.5116721","49.4730086"],["-115.5110725","49.4729404"],["-115.5104417","49.4728465"],["-115.5085462","49.4723925"],["-115.507745","49.4721645"],["-115.5071969","49.47198"],["-115.5064882","49.471661"],["-115.5046605","49.4707183"],["-115.5029143","49.4700175"],["-115.5011498","49.4694478"],["-115.4993553","49.4690597"],["-115.4959073","49.4686428"],["-115.4905524","49.468097"],["-115.4882854","49.4679982"],["-115.4871924","49.4680587"],["-115.4861571","49.4681765"],["-115.4849512","49.4683201"],["-115.4836997","49.4684284"],["-115.4818969","49.4683946"],["-115.479554","49.4682094"],["-115.477941","49.468116"],["-115.4765794","49.4681538"],["-115.475355","49.4681907"],["-115.4743246","49.4681953"],["-115.4735047","49.4681571"],["-115.472495","49.4680292"],["-115.4713846","49.4677297"],["-115.4700525","49.4672238"],["-115.4690005","49.4666274"],["-115.4678231","49.4658667"],["-115.4648645","49.4639449"],["-115.4564975","49.4582374"],["-115.4528281","49.4557223"],["-115.4418318","49.4480654"],["-115.4407394","49.4470154"],["-115.4398754","49.4458968"],["-115.4368034","49.441613"],["-115.4355514","49.4400233"],["-115.4352577","49.4397075"],["-115.4347097","49.4392396"],["-115.4343723","49.4389715"],["-115.434079","49.4387604"],["-115.4337043","49.4385139"],["-115.4333183","49.4382766"],["-115.4325464","49.4378716"],["-115.4315943","49.4374362"],["-115.4311142","49.4372185"],["-115.4307991","49.4370821"],["-115.4302407","49.4368584"],["-115.4297778","49.4366817"],["-115.418992","49.4321015"],["-115.4185135","49.4318893"],["-115.4182442","49.4317763"],["-115.4173951","49.431419"],["-115.417148","49.4313133"],["-115.4165589","49.4310115"],["-115.3933329","49.4160302"],["-115.3923848","49.4154386"],["-115.391845","49.4150908"],["-115.3897382","49.4137001"],["-115.3885707","49.4128377"],["-115.3847722","49.4097738"],["-115.384109","49.409291"],["-115.3834804","49.4088604"],["-115.3818419","49.4078143"],["-115.3803067","49.4069127"],["-115.3797642","49.4065896"],["-115.3792761","49.4062947"],["-115.3776076","49.4052992"],["-115.377133","49.4050214"],["-115.3762645","49.4045074"],["-115.3753972","49.4040098"],["-115.3749569","49.4037443"],["-115.3745108","49.4034824"],["-115.3724259","49.4022767"],["-115.3719993","49.4020305"],["-115.3716424","49.4018334"],["-115.3712194","49.401618"],["-115.3711039","49.4015672"],["-115.3709138","49.4014873"],["-115.369285","49.4008239"],["-115.3624158","49.3980448"],["-115.3604011","49.3973195"],["-115.3576206","49.3966791"],["-115.3521734","49.3957418"],["-115.3483688","49.3951538"],["-115.3458979","49.3950394"],["-115.3432049","49.3950272"],["-115.3414448","49.394909"],["-115.3396253","49.3945862"],["-115.3381547","49.3941661"],["-115.3360471","49.3933385"],["-115.3276888","49.3895877"],["-115.3248033","49.3885717"],["-115.3217932","49.3875835"],["-115.3201347","49.3869614"],["-115.318938","49.3863339"],["-115.3173465","49.3852079"],["-115.3152451","49.3835356"],["-115.3123727","49.3812793"],["-115.30836","49.3782107"],["-115.3072353","49.3774634"],["-115.3064933","49.3771047"],["-115.3057226","49.3768228"],["-115.3049635","49.376565"],["-115.3043766","49.3764195"],["-115.3037784","49.3763057"],["-115.3032659","49.3762205"],["-115.3026155","49.3761577"],["-115.301996","49.376114"],["-115.3012159","49.3761074"],["-115.300472","49.3761409"],["-115.2997089","49.3762273"],["-115.2990152","49.3763378"],["-115.2983259","49.3764635"],["-115.2949429","49.3774087"],["-115.293384","49.3777835"],["-115.2922673","49.3780256"],["-115.2915455","49.3781604"],["-115.2908554","49.37827"],["-115.2801634","49.3796951"],["-115.2795504","49.3797219"],["-115.2785948","49.3797127"],["-115.2779178","49.3796664"],["-115.2766942","49.379503"],["-115.2760394","49.3793365"],["-115.2753394","49.3791332"],["-115.2743144","49.3786799"],["-115.2738412","49.3784174"],["-115.2732624","49.3780532"],["-115.272836","49.3777464"],["-115.2716591","49.3767869"],["-115.2711841","49.376437"],["-115.2693166","49.3749856"],["-115.2669158","49.3731418"],["-115.2664988","49.3728424"],["-115.2660757","49.3725798"],["-115.2657909","49.3724094"],["-115.2653348","49.3721562"],["-115.2650125","49.3719971"],["-115.2645295","49.3717804"],["-115.2640976","49.3716023"],["-115.2635764","49.371405"],["-115.2599278","49.3702552"],["-115.2594618","49.3701368"],["-115.2589968","49.3700392"],["-115.2584587","49.3699468"],["-115.2579608","49.3698718"],["-115.257524","49.3698238"],["-115.2571448","49.3697939"],["-115.2564199","49.3697712"],["-115.2559415","49.3697821"],["-115.2555229","49.3697996"],["-115.2549857","49.3698301"],["-115.2541365","49.3699192"],["-115.2494657","49.3705354"],["-115.2487409","49.3706113"],["-115.2482854","49.3706467"],["-115.2477972","49.3706687"],["-115.2468061","49.3706548"],["-115.2457164","49.3706297"],["-115.2453842","49.3706287"],["-115.2450607","49.3706358"],["-115.2448352","49.3706579"],["-115.2443735","49.3707285"],["-115.2441208","49.3707798"],["-115.2438444","49.3708515"],["-115.2435046","49.3709634"],["-115.2432753","49.3710535"],["-115.2430547","49.3711438"],["-115.2428034","49.3712495"],["-115.2424763","49.3713905"],["-115.2420633","49.3715567"],["-115.241727","49.3716751"],["-115.2414382","49.3717709"],["-115.2411874","49.37184"],["-115.2409021","49.3719039"],["-115.2405853","49.3719673"],["-115.2399863","49.3720563"],["-115.2348284","49.3726278"],["-115.2329367","49.3727758"],["-115.232269","49.3727834"],["-115.2315197","49.3727632"],["-115.2304533","49.3727035"],["-115.2295779","49.372599"],["-115.2288001","49.3724771"],["-115.2280231","49.3722889"],["-115.2273813","49.372113"],["-115.2266971","49.3719079"],["-115.2259745","49.3716379"],["-115.2254947","49.371434"],["-115.2248901","49.371165"],["-115.2242919","49.3708397"],["-115.2237268","49.3704808"],["-115.2231916","49.3701076"],["-115.2226529","49.3696975"],["-115.202529","49.3526407"],["-115.2021222","49.3522979"],["-115.2014539","49.3517277"],["-115.200311","49.3507365"],["-115.1998331","49.3502956"],["-115.199364","49.349833"],["-115.1985471","49.348967"],["-115.198132","49.3484672"],["-115.1944152","49.3437022"],["-115.1919704","49.3405293"],["-115.1894545","49.3372885"],["-115.1837432","49.3299122"],["-115.1816881","49.3272185"],["-115.1754607","49.3191954"],["-115.1747815","49.3183278"],["-115.1626309","49.3025886"],["-115.161672","49.3013206"],["-115.160433","49.2997965"],["-115.159735","49.2990563"],["-115.1592453","49.2985736"],["-115.1588371","49.2981743"],["-115.158381","49.2977913"],["-115.15783","49.2973639"],["-115.1572299","49.2969235"],["-115.1561609","49.2961814"],["-115.154492","49.2949873"],["-115.1527821","49.2937785"],["-115.1516626","49.292969"],["-115.1508832","49.2924202"],["-115.1502902","49.2920163"],["-115.1497899","49.2916948"],["-115.1493161","49.2914284"],["-115.1483131","49.2910213"],["-115.1471192","49.2906584"],["-115.1464094","49.2905094"],["-115.1457641","49.2904215"],["-115.1436319","49.2903533"],["-115.136867","49.2903025"],["-115.1361156","49.2903889"],["-115.1353176","49.29057"],["-115.1347371","49.290826"],["-115.1334902","49.2915481"],["-115.1325744","49.2921303"],["-115.1319907","49.2924106"],["-115.1316692","49.2925488"],["-115.1312097","49.2927031"],["-115.1302016","49.293001"],["-115.1289903","49.2932674"],["-115.127248","49.2935497"],["-115.1182016","49.2946818"],["-115.1171041","49.2948507"],["-115.1166965","49.2949561"],["-115.1163408","49.2950556"],["-115.116073","49.2951777"],["-115.1157016","49.2953846"],["-115.1154363","49.2955788"],["-115.1152276","49.2957875"],["-115.1150797","49.2960142"],["-115.1149859","49.296222"],["-115.1149143","49.2965147"],["-115.1149006","49.2968175"],["-115.114972","49.2972384"],["-115.115384","49.298436"],["-115.1157635","49.2994639"],["-115.115878","49.2997963"],["-115.1159177","49.2999691"],["-115.115908","49.3001574"],["-115.1158199","49.3005869"],["-115.1157367","49.3008383"],["-115.1156149","49.30107"],["-115.1154517","49.3012972"],["-115.115306","49.3014684"],["-115.1147578","49.301904"],["-115.114412","49.3021559"],["-115.1139715","49.3023398"],["-115.1132171","49.3025534"],["-115.1122562","49.3027489"],["-115.1096303","49.3031819"],["-115.1083391","49.3034647"],["-115.1078038","49.3036422"],["-115.1074109","49.3037845"],["-115.1070211","49.3039416"],["-115.1066387","49.3041339"],["-115.1062777","49.3043255"],["-115.1059085","49.3045381"],["-115.1043913","49.305543"],["-115.1037603","49.3059453"],["-115.1032997","49.3061857"],["-115.1027879","49.3063946"],["-115.1021449","49.3065844"],["-115.1016584","49.3066861"],["-115.1010008","49.3067674"],["-115.0997532","49.3068479"],["-115.098454","49.3069335"],["-115.0961301","49.3070989"],["-115.0954894","49.3072003"],["-115.0945672","49.3074446"],["-115.0935406","49.3077351"],["-115.0924637","49.3080353"],["-115.0916359","49.3082099"],["-115.0888121","49.3086761"],["-115.0872954","49.3089267"],["-115.0861385","49.3091633"],["-115.0851991","49.3094095"],["-115.0842807","49.3096314"],["-115.0805449","49.3106783"],["-115.0799974","49.3108877"],["-115.0795976","49.3110821"],["-115.0791867","49.311308"],["-115.0777549","49.3121409"],["-115.0772497","49.3124078"],["-115.0766127","49.312639"],["-115.0759448","49.3128221"],["-115.0750985","49.3129394"],["-115.0739124","49.3129976"],["-115.0702772","49.31313"],["-115.0688599","49.3132252"],["-115.0676822","49.3132986"],["-115.0669183","49.3132583"],["-115.0664103","49.3131796"],["-115.0658287","49.3130291"],["-115.0650436","49.3127463"],["-115.0627235","49.3118637"],["-115.0616787","49.3114581"],["-115.0612032","49.3113441"],["-115.0607933","49.3113126"],["-115.0603704","49.3113424"],["-115.05993","49.3114326"],["-115.0581155","49.3119535"],["-115.0574566","49.3120114"],["-115.0565856","49.3120028"],["-115.0554361","49.3119338"],["-115.0547989","49.3119568"],["-115.0542647","49.3120048"],["-115.053527","49.3122881"],["-115.052493","49.3127194"],["-115.0517815","49.3129605"],["-115.0511759","49.3131169"],["-115.0504823","49.3132438"],["-115.0486947","49.3134298"],["-115.0463299","49.3136912"],["-115.0450798","49.3138529"],["-115.0445817","49.3139435"],["-115.0439882","49.3141059"],["-115.0429311","49.3144924"],["-115.0405798","49.3155719"],["-115.0396661","49.3159079"],["-115.037708","49.3165033"],["-115.0369941","49.31679"],["-115.036539","49.3170045"],["-115.0360377","49.3172994"],["-115.0355465","49.3176445"],["-115.0348564","49.3183565"],["-115.0341826","49.3190729"],["-115.0336483","49.3196144"],["-115.0328834","49.3205189"],["-115.0324589","49.320906"],["-115.0320304","49.3212405"],["-115.0315107","49.3216046"],["-115.0310048","49.3218929"],["-115.0299209","49.3224077"],["-115.0273348","49.3236075"],["-115.0268109","49.323898"],["-115.0264209","49.3241548"],["-115.0259089","49.3246277"],["-115.0245405","49.3259902"],["-115.0232074","49.3271178"],["-115.0222525","49.3278009"],["-115.0212989","49.3284331"],["-115.0200492","49.3292738"],["-115.0191808","49.330127"],["-115.0181901","49.3313729"],["-115.0178261","49.3319477"],["-115.0176216","49.3323564"],["-115.017438","49.3328546"],["-115.0172827","49.3333412"],["-115.0171263","49.3340658"],["-115.0169705","49.3347784"],["-115.0167922","49.3356041"],["-115.016579","49.336817"],["-115.0164633","49.3372207"],["-115.016254","49.3376801"],["-115.0160359","49.3380712"],["-115.0156629","49.3385756"],["-115.01525","49.3389995"],["-115.0146664","49.3395641"],["-115.0142755","49.3399707"],["-115.0137353","49.3405312"],["-115.0135103","49.3408436"],["-115.0133387","49.3412705"],["-115.0132191","49.341658"],["-115.0132125","49.3420361"],["-115.0133366","49.3435924"],["-115.0133624","49.3441191"],["-115.0132888","49.3445636"],["-115.0131431","49.3449998"],["-115.0129753","49.3453793"],["-115.0127102","49.3457487"],["-115.011999","49.3465133"],["-115.0112578","49.3472144"],["-115.0108068","49.3476666"],["-115.0104224","49.3482079"],["-115.0102979","49.3485283"],["-115.0102517","49.3487202"],["-115.0102607","49.3488884"],["-115.0103341","49.349128"],["-115.0104497","49.3493881"],["-115.0106332","49.3496468"],["-115.0110551","49.3500971"],["-115.0115764","49.3506616"],["-115.0117931","49.3511552"],["-115.0118682","49.3521188"],["-115.0118619","49.3532519"],["-115.011575","49.3539719"],["-115.0110433","49.3549707"],["-115.0109921","49.355724"],["-115.0114493","49.3565752"],["-115.0122392","49.3574967"],["-115.0126043","49.358486"],["-115.0135518","49.362172"],["-115.0137394","49.363997"],["-115.0137662","49.3656844"],["-115.0138735","49.3668923"],["-115.0142538","49.3678177"],["-115.0145861","49.3682689"],["-115.0153044","49.368996"],["-115.0162513","49.3697926"],["-115.0169273","49.3704731"],["-115.0171936","49.3708833"],["-115.0173451","49.3713626"],["-115.0173271","49.3725235"],["-115.0166918","49.3760523"],["-115.0166075","49.3770872"],["-115.0167358","49.3776161"],["-115.0171764","49.3785173"],["-115.0180851","49.3795623"],["-115.0191972","49.3807752"],["-115.0201637","49.3819016"],["-115.0209837","49.3832436"],["-115.0216178","49.3846433"],["-115.0219863","49.3860929"],["-115.0224372","49.3886696"],["-115.022758","49.3905984"],["-115.0231265","49.3928088"],["-115.0238315","49.3970133"],["-115.024217","49.3986152"],["-115.024882","49.4000654"],["-115.0258769","49.4016354"],["-115.0269873","49.4029632"],["-115.0286464","49.4044601"],["-115.0385243","49.4115702"],["-115.0396318","49.4128901"],["-115.0401985","49.4140524"],["-115.0404618","49.4148643"],["-115.0407786","49.4164141"],["-115.0411449","49.417977"],["-115.0416516","49.4189434"],["-115.0423803","49.419741"],["-115.0427487","49.4200276"],["-115.0444762","49.4209784"],["-115.0464435","49.4219913"],["-115.0475635","49.422741"],["-115.048617","49.4237885"],["-115.0503486","49.4256725"],["-115.0515366","49.4270303"],["-115.0525782","49.4285235"],["-115.0536094","49.4301094"],["-115.0540155","49.4311398"],["-115.0541846","49.4323577"],["-115.0545565","49.4336448"],["-115.061934","49.4472774"],["-115.0626729","49.4482524"],["-115.0636781","49.449169"],["-115.0650669","49.450296"],["-115.066865","49.4518818"],["-115.0678157","49.4529842"],["-115.0699219","49.4557442"],["-115.0708616","49.4570422"],["-115.0712166","49.4579495"],["-115.0715717","49.4591424"],["-115.0718076","49.4600362"],["-115.0723271","49.4612796"],["-115.07277","49.4623332"],["-115.0732089","49.4633973"],["-115.0736126","49.4640975"],["-115.0756408","49.4693325"],["-115.0757647","49.4697942"],["-115.0757989","49.4702876"],["-115.0757633","49.4706363"],["-115.0757082","49.4708782"],["-115.0754254","49.4715349"],["-115.0733209","49.4744328"],["-115.072765","49.4753582"],["-115.0725395","49.4761645"],["-115.0725952","49.4768671"],["-115.0728304","49.4775932"],["-115.0734867","49.4787657"],["-115.0799545","49.4891351"],["-115.0810184","49.49093"],["-115.0811754","49.4914855"],["-115.0812551","49.4920418"],["-115.0812906","49.4926835"],["-115.0812522","49.4932614"],["-115.08117","49.4941559"],["-115.080938","49.4962609"],["-115.0808206","49.4969377"],["-115.0806739","49.4973042"],["-115.0803726","49.4977429"],["-115.080138","49.4980433"],["-115.0796106","49.4985925"],["-115.0792667","49.4988858"],["-115.078673","49.4992647"],["-115.0779833","49.4996467"],["-115.0766983","49.5003601"],["-115.0731904","49.5023024"],["-115.0716307","49.5031806"],["-115.0674574","49.5054676"],["-115.0668242","49.5058587"],["-115.0663379","49.5062057"],["-115.0659304","49.5065746"],["-115.0612839","49.5112055"],["-115.0604364","49.512037"],["-115.0596593","49.5127972"],["-115.0593178","49.5131928"],["-115.0591387","49.5134621"],["-115.0590008","49.5137119"],["-115.0589026","49.5140962"],["-115.0588961","49.5143531"],["-115.0589254","49.5146278"],["-115.0590624","49.5149564"],["-115.0592988","49.5153184"],["-115.059599","49.515634"],["-115.0599592","49.5160084"],["-115.0604571","49.5165283"],["-115.0610206","49.5171111"],["-115.0612885","49.5174852"],["-115.0614104","49.5177452"],["-115.0614859","49.5180173"],["-115.0615447","49.5183213"],["-115.0615681","49.518709"],["-115.061528","49.519166"],["-115.0614313","49.5196569"],["-115.0613801","49.5198258"],["-115.0611808","49.5203757"],["-115.0608397","49.5210747"],["-115.0605061","49.5215594"],["-115.0602408","49.5218233"],["-115.0599035","49.5221237"],["-115.0596281","49.5223303"],["-115.0593436","49.5225296"],["-115.0590786","49.5227051"],["-115.0586996","49.5229072"],["-115.0581476","49.523123"],["-115.0553802","49.5240321"],["-115.0517133","49.5250291"],["-115.0459771","49.5264976"],["-115.0453239","49.5266935"],["-115.0446454","49.5269295"],["-115.0440387","49.5271787"],["-115.0435251","49.5274001"],["-115.0424769","49.5279035"],["-115.0419159","49.5282107"],["-115.0411945","49.5286546"],["-115.0406395","49.5290467"],["-115.0398563","49.5296687"],["-115.038448","49.530864"],["-115.0352686","49.5335821"],["-115.0255878","49.5417958"],["-115.0238481","49.5431316"],["-115.0141805","49.549298"],["-115.0066349","49.5541016"],["-115.0052589","49.5550328"],["-115.0042263","49.5558933"],["-114.9917158","49.5678208"],["-114.9763529","49.5837324"],["-114.975849","49.5841544"],["-114.9753556","49.5844827"],["-114.9749049","49.5847181"],["-114.9745116","49.5848898"],["-114.974143","49.5850225"],["-114.9738027","49.5851336"],["-114.9681724","49.5863285"],["-114.9675101","49.5864913"],["-114.9668214","49.5867059"],["-114.9658661","49.5870654"],["-114.965534","49.5872244"],["-114.965166","49.5874207"],["-114.9647802","49.5876529"],["-114.9643298","49.5879474"],["-114.961095","49.5904867"],["-114.9603796","49.5911215"],["-114.9597861","49.5917852"],["-114.9590126","49.5928858"],["-114.9502466","49.6065645"],["-114.9495417","49.6075601"],["-114.9487635","49.6084557"],["-114.9479799","49.6092602"],["-114.9472479","49.6099676"],["-114.946501","49.6106724"],["-114.9288429","49.6274032"],["-114.9213693","49.6344714"],["-114.9196099","49.636159"],["-114.9186267","49.6371526"],["-114.918028","49.6378379"],["-114.9175266","49.6385237"],["-114.9093952","49.6513304"],["-114.9084458","49.6529517"],["-114.9080688","49.653602"],["-114.9077788","49.6542287"],["-114.9075911","49.6547304"],["-114.9074311","49.6551948"],["-114.9073335","49.6555494"],["-114.9072951","49.655948"],["-114.9072011","49.6564867"],["-114.9070588","49.6576913"],["-114.9069876","49.6579201"],["-114.9067036","49.6584977"],["-114.9063819","49.6588596"],["-114.9060632","49.659176"],["-114.9057731","49.659434"],["-114.9055253","49.6596002"],["-114.9052502","49.659764"],["-114.9048903","49.6599384"],["-114.9044851","49.6601211"],["-114.9017809","49.6612389"],["-114.9011116","49.6615805"],["-114.900737","49.6618061"],["-114.9004136","49.6620171"],["-114.9000277","49.6623539"],["-114.8963617","49.6657482"],["-114.895187","49.6667731"],["-114.8944835","49.6674494"],["-114.8941952","49.6677644"],["-114.8940182","49.6679817"],["-114.8938682","49.6682033"],["-114.8937254","49.6684283"],["-114.8935517","49.6687373"],["-114.8933778","49.6691234"],["-114.8932386","49.6695491"],["-114.8928281","49.6710046"],["-114.8926358","49.6716672"],["-114.8924937","49.6720619"],["-114.8923332","49.6724314"],["-114.8915816","49.6737269"],["-114.8909454","49.6747431"],["-114.8903713","49.675686"],["-114.8900588","49.6763122"],["-114.8898393","49.6768415"],["-114.8896855","49.6773058"],["-114.889501","49.677964"],["-114.8892982","49.6787895"],["-114.8891659","49.6795614"],["-114.8890628","49.6822839"],["-114.8891095","49.6827406"],["-114.8891834","49.6830984"],["-114.8893024","49.6835148"],["-114.8937726","49.6968499"],["-114.8939407","49.6975143"],["-114.8940973","49.6982693"],["-114.8941773","49.6989129"],["-114.894221","49.6995155"],["-114.8942105","49.7001239"],["-114.8938059","49.7082441"],["-114.8937278","49.709431"],["-114.8933321","49.7162144"],["-114.8931882","49.71687"],["-114.8928821","49.7179483"],["-114.8925847","49.7187772"],["-114.8922147","49.7195562"],["-114.8905271","49.7225241"],["-114.8893066","49.7246383"],["-114.8886377","49.7257314"],["-114.8873288","49.7278072"],["-114.8865442","49.7289382"],["-114.886022","49.729604"],["-114.8853742","49.7302425"],["-114.8839454","49.7311869"],["-114.8834589","49.7314661"],["-114.8832608","49.7315716"],["-114.8825039","49.7319479"],["-114.8816305","49.7322805"],["-114.8808347","49.7325528"],["-114.8798638","49.7328247"],["-114.8793697","49.7329499"],["-114.8788922","49.7330573"],["-114.8784697","49.7331363"],["-114.8779765","49.7331921"],["-114.8769338","49.7332636"],["-114.8763206","49.7332941"],["-114.8755354","49.733299"],["-114.8748775","49.7332776"],["-114.8743789","49.7332464"],["-114.8739629","49.7332014"],["-114.8735932","49.7331516"],["-114.8733042","49.7330919"],["-114.8730275","49.7330225"],["-114.8724325","49.7328127"],["-114.8718975","49.7326029"],["-114.8701986","49.7320379"],["-114.867364","49.7311285"],["-114.8648008","49.7302653"],["-114.8644233","49.7301418"],["-114.8641221","49.730052"],["-114.8637252","49.7299441"],["-114.8631605","49.7297955"],["-114.8626048","49.7296765"],["-114.862208","49.7296191"],["-114.8619075","49.7295923"],["-114.8615183","49.7295848"],["-114.8607494","49.7296144"],["-114.8594619","49.729742"],["-114.8582783","49.7299464"],["-114.8578343","49.7300089"],["-114.8574899","49.7300211"],["-114.857181","49.7300145"],["-114.8568621","49.729997"],["-114.8565537","49.7299606"],["-114.8562613","49.7299198"],["-114.8559574","49.7298682"],["-114.8556492","49.7298053"],["-114.8553164","49.7297207"],["-114.8549389","49.7295986"],["-114.8545169","49.7294387"],["-114.8537836","49.72912"],["-114.8533264","49.7288792"],["-114.8530776","49.7287296"],["-114.8528096","49.7285335"],["-114.8525522","49.7283374"],["-114.848856","49.7250424"],["-114.8473531","49.7237022"],["-114.8340741","49.7118803"],["-114.8337124","49.7114282"],["-114.8330878","49.7104702"],["-114.8319739","49.7087286"],["-114.8314951","49.7079666"],["-114.8308294","49.7071478"],["-114.8299245","49.7057977"],["-114.8293764","49.7049003"],["-114.8287329","49.7039374"],["-114.8267094","49.7008178"],["-114.8264785","49.7004987"],["-114.8262118","49.7001725"],["-114.8258232","49.6997348"],["-114.8253182","49.6992321"],["-114.8227064","49.6967357"],["-114.8222356","49.6962365"],["-114.8219943","49.6958829"],["-114.8217287","49.6952639"],["-114.8216293","49.6949162"],["-114.8213902","49.6940271"],["-114.8210665","49.6928724"],["-114.8209507","49.6925482"],["-114.8208422","49.6923584"],["-114.8207347","49.6921939"],["-114.8205838","49.6920388"],["-114.8204289","49.6918982"],["-114.8202277","49.6917487"],["-114.8199915","49.6916167"],["-114.8197362","49.6914984"],["-114.8193528","49.6913504"],["-114.8184224","49.6910451"],["-114.8172481","49.6906662"],["-114.8165869","49.6904362"],["-114.8161219","49.6901974"],["-114.8158004","49.6899833"],["-114.8140664","49.6887085"],["-114.8134062","49.6882568"],["-114.8129729","49.687994"],["-114.8126511","49.6878295"],["-114.8123707","49.6877104"],["-114.8120832","49.6876162"],["-114.8111191","49.6873745"],["-114.8104566","49.6872266"],["-114.8055323","49.686289"],["-114.8042923","49.6860605"],["-114.8025721","49.6857734"],["-114.8014614","49.6856291"],["-114.7967296","49.685242"],["-114.7960847","49.6851764"],["-114.7955944","49.6850865"],["-114.7953154","49.6850185"],["-114.7950419","49.6849222"],["-114.7947146","49.6847972"],["-114.7943963","49.684639"],["-114.7940836","49.68444"],["-114.7938632","49.6842717"],["-114.793669","49.6840993"],["-114.7934076","49.6838175"],["-114.7929033","49.6831341"],["-114.7924181","49.6824489"],["-114.7918819","49.681682"],["-114.7911118","49.6805639"],["-114.7901816","49.6792205"],["-114.7896628","49.6782388"],["-114.7892953","49.677716"],["-114.7890526","49.67744"],["-114.7888503","49.6772025"],["-114.7883827","49.6768097"],["-114.7872668","49.6760167"],["-114.7861163","49.6752013"],["-114.7841809","49.6736115"],["-114.7836441","49.6731572"],["-114.7831343","49.6728368"],["-114.7827298","49.6726556"],["-114.7815598","49.6722306"],["-114.7807192","49.6719221"],["-114.7793057","49.6714"],["-114.7781594","49.6710464"],["-114.7737529","49.6697986"],["-114.771958","49.669388"],["-114.7692736","49.6688926"],["-114.7652272","49.6679335"],["-114.7645786","49.6678096"],["-114.7639899","49.6677186"],["-114.7634302","49.6676794"],["-114.762864","49.6676743"],["-114.762258","49.6676758"],["-114.7616652","49.6676616"],["-114.7610706","49.6675889"],["-114.7602142","49.6674498"],["-114.7592498","49.6672437"],["-114.7569299","49.6666172"],["-114.756255","49.6664296"],["-114.7554097","49.6661707"],["-114.7547757","49.6659998"],["-114.7528633","49.6655648"],["-114.7516187","49.6653108"],["-114.7503701","49.6650725"],["-114.749595","49.6649216"],["-114.7491101","49.6648082"],["-114.7486533","49.6646797"],["-114.748137","49.6645137"],["-114.7458514","49.6636018"],["-114.745147","49.663346"],["-114.7446738","49.6632119"],["-114.7439304","49.66303"],["-114.7420095","49.6626083"],["-114.7415928","49.6624756"],["-114.7412588","49.6623478"],["-114.7408123","49.6621436"],["-114.7403498","49.6619239"],["-114.7399096","49.6616839"],["-114.7395151","49.6614105"],["-114.7390848","49.6610196"],["-114.738835","49.6607602"],["-114.7386319","49.6604942"],["-114.7384548","49.6602206"],["-114.738273","49.6597772"],["-114.7380894","49.6591933"],["-114.7378451","49.6584647"],["-114.7375751","49.6579193"],["-114.7373407","49.6575613"],["-114.7371106","49.657294"],["-114.7368909","49.6570647"],["-114.73634","49.6566505"],["-114.7357641","49.6562934"],["-114.7348323","49.6557469"],["-114.733868","49.655177"],["-114.7324728","49.6542774"],["-114.7320564","49.6539424"],["-114.7311362","49.6531094"],["-114.7303981","49.6524802"],["-114.7296465","49.6518744"],["-114.7290773","49.6515386"],["-114.7284222","49.6512651"],["-114.7277052","49.651033"],["-114.7241659","49.6501409"],["-114.7233964","49.6499811"],["-114.7224705","49.6498223"],["-114.7220576","49.6497664"],["-114.721279","49.6496839"],["-114.7207313","49.649648"],["-114.71839","49.6495557"],["-114.7180768","49.6495617"],["-114.7173388","49.649599"],["-114.717052","49.6496231"],["-114.7154821","49.6498032"],["-114.7068625","49.6507704"],["-114.7055348","49.650912"],["-114.7049755","49.6509458"],["-114.7044652","49.6509557"],["-114.7039547","49.6509287"],["-114.7034741","49.6508689"],["-114.7030063","49.6507666"],["-114.7027141","49.6506775"],["-114.7024409","49.6505826"],["-114.7021027","49.6504381"],["-114.7013131","49.6500116"],["-114.6981017","49.6482153"],["-114.6975434","49.6478688"],["-114.6970955","49.647541"],["-114.6967077","49.6471584"],["-114.6964217","49.6468242"],["-114.6962053","49.6464874"],["-114.6960702","49.6462335"],["-114.6959669","49.6459785"],["-114.6957181","49.6451662"],["-114.6927007","49.6346196"],["-114.6924006","49.6337765"],["-114.6918909","49.6324579"],["-114.6916375","49.6318633"],["-114.6914624","49.6315367"],["-114.6912807","49.6312543"],["-114.6910601","49.630981"],["-114.6906991","49.6305904"],["-114.6903452","49.6302679"],["-114.6900049","49.6300007"],["-114.6894439","49.6296503"],["-114.6891951","49.6295059"],["-114.688832","49.6293237"],["-114.6884441","49.6291412"],["-114.688099","49.6290009"],["-114.6875198","49.6287907"],["-114.6868019","49.6285982"],["-114.6863641","49.6285025"],["-114.6858615","49.6284121"],["-114.6851977","49.6283197"],["-114.6847383","49.6282692"],["-114.6843748","49.6282481"],["-114.6836601","49.6282384"],["-114.6824611","49.6282842"],["-114.6810465","49.6283579"],["-114.6806764","49.6283656"],["-114.6798465","49.6283519"],["-114.6794435","49.6283297"],["-114.6781029","49.6281941"],["-114.6776603","49.6281269"],["-114.6767738","49.6279436"],["-114.6759177","49.6277345"],["-114.6727556","49.6268496"],["-114.6716828","49.6265748"],["-114.6667182","49.6252154"],["-114.6661342","49.6250861"],["-114.6639182","49.6246598"],["-114.6631936","49.6245487"],["-114.6571137","49.6238106"],["-114.6565458","49.6237647"],["-114.6560791","49.6237473"],["-114.6554982","49.6237482"],["-114.6549222","49.6237701"],["-114.6544894","49.6237936"],["-114.6537441","49.6238736"],["-114.6530522","49.6239662"],["-114.6523099","49.6241416"],["-114.6509426","49.6245808"],["-114.6500362","49.6249891"],["-114.6486754","49.6256813"],["-114.6442434","49.6279253"],["-114.6435756","49.6282142"],["-114.6420719","49.6288003"],["-114.6382033","49.6300711"],["-114.6366348","49.6305347"],["-114.6353857","49.6309053"],["-114.6344256","49.6311995"],["-114.6338565","49.6313691"],["-114.6334968","49.6314586"],["-114.6331357","49.6315319"],["-114.6327057","49.6315953"],["-114.6314118","49.6317474"],["-114.6307652","49.6318035"],["-114.630229","49.6318268"],["-114.6297487","49.6318301"],["-114.6293697","49.6318127"],["-114.629086","49.6317934"],["-114.6281064","49.6316768"],["-114.6268255","49.631424"],["-114.6223181","49.6303805"],["-114.6216292","49.6302339"],["-114.621178","49.6301582"],["-114.6208386","49.6301136"],["-114.620486","49.6300817"],["-114.620083","49.6300533"],["-114.619513","49.6300348"],["-114.6190069","49.6300402"],["-114.6185337","49.6300644"],["-114.6179967","49.6301036"],["-114.6175447","49.6301626"],["-114.6162544","49.6304026"],["-114.6147517","49.6307244"],["-114.6138878","49.630895"],["-114.6124473","49.6311045"],["-114.6114212","49.6312062"],["-114.610736","49.631252"],["-114.606076","49.6315654"],["-114.6043566","49.6317717"],["-114.5967173","49.63305"],["-114.5959316","49.6331583"],["-114.595321","49.6332247"],["-114.5948956","49.6332554"],["-114.594521","49.6332696"],["-114.5940925","49.6332766"],["-114.5937206","49.6332675"],["-114.5927518","49.6332007"],["-114.5910621","49.6330028"],["-114.5797041","49.6316056"],["-114.5788139","49.6315157"],["-114.5781801","49.6314675"],["-114.5777169","49.6314537"],["-114.5772831","49.6314557"],["-114.5767935","49.6314732"],["-114.5763439","49.6314999"],["-114.5753806","49.6315989"],["-114.5748456","49.6316911"],["-114.5741564","49.6318364"],["-114.5735384","49.6320081"],["-114.5730692","49.6321518"],["-114.5727078","49.6322747"],["-114.5718797","49.632603"],["-114.5663723","49.6348837"],["-114.5655974","49.6351444"],["-114.5651504","49.6352723"],["-114.5645382","49.6354046"],["-114.56409","49.6354847"],["-114.5637136","49.6355281"],["-114.5633509","49.635559"],["-114.5629351","49.6355706"],["-114.5623983","49.6355709"],["-114.5615194","49.6355405"],["-114.5593031","49.6354299"],["-114.5587684","49.6354267"],["-114.5583162","49.6354491"],["-114.5577736","49.6355002"],["-114.5563953","49.6357161"],["-114.5462056","49.6374815"],["-114.5458285","49.6375323"],["-114.5454284","49.6375599"],["-114.5450445","49.6375733"],["-114.5445684","49.6375623"],["-114.5440644","49.6375223"],["-114.5436058","49.6374525"],["-114.543183","49.6373656"],["-114.5427474","49.6372342"],["-114.5423545","49.6371025"],["-114.5417427","49.6367916"],["-114.5401198","49.6358262"],["-114.5396035","49.6355302"],["-114.5394279","49.6354474"],["-114.5392373","49.6353665"],["-114.5389683","49.6352809"],["-114.5386468","49.6351872"],["-114.5382457","49.6350995"],["-114.5377101","49.6350021"],["-114.5369964","49.6348937"],["-114.5365839","49.6348441"],["-114.5362347","49.6348118"],["-114.5355337","49.6347878"],["-114.5337521","49.6347489"],["-114.5333914","49.6347621"],["-114.5328398","49.6348228"],["-114.5321966","49.6349229"],["-114.5313772","49.6350887"],["-114.5302561","49.6352829"],["-114.5287952","49.6354179"],["-114.525228","49.635694"],["-114.5248248","49.6357017"],["-114.5244608","49.6356966"],["-114.5240761","49.6356682"],["-114.5236426","49.6356094"],["-114.5207709","49.6351114"],["-114.5203753","49.6350676"],["-114.5199834","49.6350533"],["-114.5197846","49.635054"],["-114.5195733","49.6350655"],["-114.519128","49.6351241"],["-114.5188006","49.6351903"],["-114.518431","49.6352977"],["-114.5174206","49.6356556"],["-114.5156312","49.6363238"],["-114.5144895","49.6367372"],["-114.5141733","49.6368098"],["-114.5139018","49.6368459"],["-114.5136902","49.6368657"],["-114.5135147","49.6368704"],["-114.5133322","49.6368608"],["-114.5131388","49.6368404"],["-114.5127829","49.6367872"],["-114.5126052","49.6367456"],["-114.512409","49.6366859"],["-114.512169","49.6366001"],["-114.5118374","49.636433"],["-114.5113364","49.6361491"],["-114.5105602","49.635676"],["-114.5102874","49.6355386"],["-114.5101154","49.6354602"],["-114.5099953","49.6354147"],["-114.5098796","49.6353789"],["-114.509665","49.6353295"],["-114.5094539","49.6352918"],["-114.5092542","49.6352633"],["-114.5090559","49.6352448"],["-114.5088513","49.6352396"],["-114.5086508","49.6352458"],["-114.5082557","49.6352784"],["-114.5079914","49.6353158"],["-114.503875","49.6360133"],["-114.5034787","49.6360728"],["-114.5031888","49.636109"],["-114.5029172","49.6361362"],["-114.4982464","49.6364045"],["-114.4974228","49.6364364"],["-114.4944786","49.6364362"],["-114.4942082","49.6364232"],["-114.4939534","49.6364056"],["-114.4937917","49.6363826"],["-114.4933563","49.6362984"],["-114.4928662","49.636168"],["-114.4917076","49.6358153"],["-114.4877641","49.6345711"],["-114.4849704","49.6336365"],["-114.4838031","49.6331469"],["-114.4800135","49.6315022"],["-114.4763932","49.6299858"],["-114.4751271","49.6293989"],["-114.4746666","49.6291633"],["-114.4737049","49.6286171"],["-114.4731525","49.6282774"],["-114.4726257","49.6279009"],["-114.4719753","49.6273987"],["-114.4667024","49.6231029"],["-114.4660661","49.6226882"],["-114.4654147","49.6222951"],["-114.4632424","49.6211225"],["-114.4622969","49.6205528"],["-114.4587243","49.6181033"],["-114.4581457","49.6177213"],["-114.4578361","49.6175374"],["-114.4571366","49.6171626"],["-114.4567467","49.6169733"],["-114.4563476","49.6168025"],["-114.4559437","49.6166415"],["-114.455585","49.6165081"],["-114.4549501","49.6162961"],["-114.4545024","49.616172"],["-114.453103","49.6158398"],["-114.4521726","49.6156331"],["-114.4508986","49.6153403"],["-114.450125","49.6151217"],["-114.4496071","49.6149459"],["-114.448052","49.6143335"],["-114.447476","49.6140848"],["-114.4468933","49.6138264"],["-114.4462269","49.6135184"],["-114.4455147","49.6131942"],["-114.4448744","49.6129143"],["-114.4442963","49.6126876"],["-114.4437193","49.6124752"],["-114.4430765","49.6122631"],["-114.4424638","49.6120844"],["-114.4417862","49.6119103"],["-114.4410753","49.6117531"],["-114.4403983","49.6116212"],["-114.4397688","49.6115141"],["-114.4391269","49.6114207"],["-114.4366138","49.6111463"],["-114.4351211","49.6109817"],["-114.4346992","49.6109175"],["-114.4343464","49.6108507"],["-114.4340181","49.6107823"],["-114.4333645","49.6106035"],["-114.4330317","49.6104925"],["-114.4326565","49.6103541"],["-114.4320023","49.610079"],["-114.4312617","49.6097369"],["-114.4291072","49.6085839"],["-114.4276925","49.6076955"],["-114.4263397","49.6067763"],["-114.4257639","49.6064061"],["-114.4251825","49.6060749"],["-114.4248557","49.6059035"],["-114.4243389","49.6056922"],["-114.4237397","49.6054901"],["-114.4234492","49.6054038"],["-114.4226507","49.6052275"],["-114.4222578","49.6051537"],["-114.421846","49.6050934"],["-114.4213723","49.6050414"],["-114.4208352","49.6050055"],["-114.4198381","49.6049948"],["-114.4162012","49.6050263"],["-114.4148856","49.6050074"],["-114.4144533","49.6049707"],["-114.4140397","49.6049262"],["-114.4135875","49.6048625"],["-114.4127442","49.6047207"],["-114.4121687","49.604578"],["-114.411626","49.60442"],["-114.411307","49.6043168"],["-114.4109975","49.6042099"],["-114.4106106","49.604047"],["-114.4102703","49.6038922"],["-114.4099071","49.6037093"],["-114.4095668","49.6035212"],["-114.4093286","49.6033798"],["-114.4085218","49.6028238"],["-114.4053355","49.6005673"],["-114.4004369","49.5970924"],["-114.3999983","49.5967983"],["-114.3996377","49.5965768"],["-114.3993241","49.5963921"],["-114.3992025","49.5963191"],["-114.3987324","49.5960853"],["-114.3979482","49.5957302"],["-114.3898907","49.5923694"],["-114.3866011","49.5909432"],["-114.3861277","49.5907001"],["-114.3772249","49.5854127"],["-114.3765992","49.5849399"],["-114.3760568","49.5844907"],["-114.3753391","49.5838255"],["-114.3749427","49.5833783"],["-114.3745154","49.5828617"],["-114.3740859","49.582304"],["-114.3737488","49.581856"],["-114.3733013","49.5813148"],["-114.3730045","49.581004"],["-114.3726166","49.5806551"],["-114.3714625","49.5797211"],["-114.37072","49.5792745"],["-114.3697332","49.5787948"],["-114.3669987","49.5776077"],["-114.3660107","49.5771081"],["-114.3653963","49.5767314"],["-114.3649483","49.5764061"],["-114.3645329","49.576073"],["-114.3639662","49.5755227"],["-114.3632862","49.5747747"],["-114.3617603","49.5725133"],["-114.3539845","49.560743"],["-114.3535762","49.5601825"],["-114.3532894","49.5598311"],["-114.3527073","49.5592499"],["-114.3520227","49.5587368"],["-114.3514722","49.5583697"],["-114.3509074","49.5580536"],["-114.3503777","49.557808"],["-114.3498562","49.5575831"],["-114.3493086","49.5573931"],["-114.3484754","49.5571475"],["-114.3452683","49.5562869"],["-114.3443633","49.5560553"],["-114.3438845","49.5559627"],["-114.3430038","49.5558146"],["-114.3427406","49.5557783"],["-114.3417317","49.5556951"],["-114.3410616","49.5556671"],["-114.3404206","49.5556601"],["-114.3393008","49.5557002"],["-114.3387945","49.5557346"],["-114.3383399","49.5557777"],["-114.3306911","49.5568095"],["-114.3221199","49.5579043"],["-114.3204003","49.5580322"],["-114.3191557","49.5580443"],["-114.3182418","49.5579974"],["-114.3167492","49.5578387"],["-114.3094779","49.5569048"],["-114.3054438","49.5563582"],["-114.3030256","49.5560387"],["-114.3021671","49.5559465"],["-114.3016703","49.5559059"],["-114.3008048","49.555861"],["-114.3003585","49.555845"],["-114.298947","49.5558666"],["-114.2981781","49.5559017"],["-114.2975742","49.5559464"],["-114.2967261","49.5560285"],["-114.2958826","49.5561446"],["-114.2952496","49.5562621"],["-114.2941715","49.556483"],["-114.2936888","49.5565884"],["-114.2932009","49.5567201"],["-114.2925466","49.5569202"],["-114.2916331","49.557212"],["-114.2803407","49.5618647"],["-114.2773434","49.5631092"],["-114.2726313","49.5650789"],["-114.271263","49.5656386"],["-114.2686093","49.5667793"],["-114.2674115","49.5673488"],["-114.2664391","49.5678424"],["-114.2515498","49.5769992"],["-114.2506237","49.5775875"],["-114.2487592","49.5787668"],["-114.2479097","49.5793059"],["-114.2464954","49.5801953"],["-114.2463225","49.5802891"],["-114.2460895","49.5804047"],["-114.2454768","49.5806918"],["-114.2450238","49.5808803"],["-114.2445343","49.5810573"],["-114.2441186","49.5811876"],["-114.2436353","49.5813287"],["-114.2432301","49.581436"],["-114.2418353","49.5817425"],["-114.2414094","49.5818174"],["-114.2409459","49.5818749"],["-114.2405397","49.5819139"],["-114.2400865","49.5819419"],["-114.2395979","49.5819598"],["-114.2385774","49.5819776"],["-114.2281589","49.5817789"],["-114.2277279","49.5817785"],["-114.2273431","49.5817925"],["-114.2268851","49.5818213"],["-114.2259154","49.5819052"],["-114.2253233","49.5819929"],["-114.2242826","49.5821878"],["-114.2233926","49.5824116"],["-114.2122955","49.5857686"],["-114.2106013","49.5863055"],["-114.2088002","49.5868695"],["-114.1964839","49.5906262"],["-114.1964223","49.5907303"],["-114.1964952","49.590923"],["-114.1965657","49.5911226"],["-114.1966285","49.5913362"],["-114.1966658","49.5914952"],["-114.1966901","49.5916443"],["-114.1967055","49.5917918"],["-114.1967137","49.5919576"],["-114.1967115","49.5921294"],["-114.196699","49.5923128"],["-114.1966584","49.59259"],["-114.1966075","49.5928239"],["-114.1965611","49.5929868"],["-114.1965007","49.5931605"],["-114.1964318","49.5933255"],["-114.1963532","49.5934877"],["-114.1962562","49.5936614"],["-114.1961513","49.5938256"],["-114.1960295","49.5939993"],["-114.1958869","49.5941829"],["-114.1957463","49.5943474"],["-114.1955933","49.5945087"],["-114.1954173","49.5946755"],["-114.1952313","49.5948353"],["-114.1950349","49.5949873"],["-114.1948058","49.5951484"],["-114.1945749","49.5952981"],["-114.1942613","49.5954836"],["-114.1939687","49.5956438"],["-114.1864675","49.5993437"],["-114.1861362","49.5995196"],["-114.1858431","49.5996844"],["-114.1855538","49.599857"],["-114.1852996","49.6000201"],["-114.1848784","49.6003132"],["-114.1846426","49.6004909"],["-114.184387","49.6006967"],["-114.1841366","49.60091"],["-114.1839105","49.6011159"],["-114.1837479","49.601274"],["-114.1835612","49.6014681"],["-114.1833766","49.6016729"],["-114.1831766","49.6019098"],["-114.1829486","49.6022084"],["-114.1827598","49.6024801"],["-114.1826038","49.6027311"],["-114.1824804","49.6029518"],["-114.1823666","49.6031749"],["-114.1822418","49.6034482"],["-114.1821288","49.6037342"],["-114.1820354","49.6040178"],["-114.1819596","49.6042998"],["-114.181891","49.6046262"],["-114.1818521","49.6048893"],["-114.1818267","49.6051691"],["-114.1818151","49.6053946"],["-114.1818076","49.6058377"],["-114.1815739","49.7218706"],["-114.1815614","49.7222149"],["-114.1815306","49.7225714"],["-114.1814844","49.722895"],["-114.1814282","49.7231919"],["-114.1813586","49.7234934"],["-114.1812644","49.7238248"],["-114.1811699","49.7241071"],["-114.1810555","49.7244023"],["-114.1809427","49.7246658"],["-114.1807472","49.725071"],["-114.180588","49.7253599"],["-114.1803246","49.7257962"],["-114.1800852","49.7261525"],["-114.1798331","49.7264843"],["-114.1795854","49.7267828"],["-114.1793291","49.7270671"],["-114.1790004","49.7274039"],["-114.1787025","49.7276913"],["-114.1620494","49.742062"],["-114.1616567","49.7424285"],["-114.1612858","49.742802"],["-114.160934","49.7431953"],["-114.1606187","49.7435871"],["-114.1602948","49.7440327"],["-114.1599994","49.7444928"],["-114.159797","49.7448521"],["-114.1596529","49.7451339"],["-114.1594277","49.7456447"],["-114.159279","49.7460505"],["-114.1591559","49.7464535"],["-114.159058","49.7468552"],["-114.1589687","49.7473763"],["-114.1589217","49.7479026"],["-114.158887","49.7874946"],["-114.1588771","49.7901466"],["-114.1588446","49.7905647"],["-114.1587947","49.7908826"],["-114.158694","49.7912951"],["-114.1585488","49.7917448"],["-114.1583965","49.7921244"],["-114.1581788","49.7925708"],["-114.1579443","49.7929745"],["-114.1576579","49.7933891"],["-114.1572867","49.7938617"],["-114.1569289","49.7942509"],["-114.1566036","49.7945613"],["-114.156112","49.7949772"],["-114.1506903","49.7993183"],["-114.1502635","49.7996874"],["-114.1500381","49.7998942"],["-114.1498338","49.8000939"],["-114.1496271","49.8003094"],["-114.149429","49.8005279"],["-114.1492329","49.8007591"],["-114.1490136","49.8010405"],["-114.1488095","49.8013202"],["-114.1485695","49.8016908"],["-114.1483907","49.801996"],["-114.1482595","49.8022442"],["-114.1481295","49.8025196"],["-114.1479945","49.8028378"],["-114.1478536","49.8032337"],["-114.141859","49.8230946"],["-114.1416817","49.8237328"],["-114.1415482","49.8242951"],["-114.1414204","49.8249226"],["-114.1412869","49.8256685"],["-114.1411926","49.8263169"],["-114.1411416","49.8267578"],["-114.1410605","49.8277804"],["-114.1410395","49.828358"],["-114.1410802","49.8396665"],["-114.1410734","49.8401116"],["-114.1410487","49.8406782"],["-114.1410091","49.8412078"],["-114.1409545","49.8417448"],["-114.1408732","49.8423597"],["-114.1407714","49.8429789"],["-114.1406488","49.8436066"],["-114.1405049","49.8442364"],["-114.140321","49.8449391"],["-114.1401552","49.8455135"],["-114.1399521","49.8461443"],["-114.1397005","49.8468444"],["-114.136945","49.8541847"],["-114.1366275","49.8551659"],["-114.1363337","49.8561685"],["-114.1361156","49.857012"],["-114.135938","49.8577854"],["-114.1357883","49.8585137"],["-114.1355698","49.8597824"],["-114.1354757","49.8604426"],["-114.1354021","49.861062"],["-114.1353496","49.8616269"],["-114.1352762","49.8627737"],["-114.1352517","49.8634172"],["-114.1352587","49.883866"],["-114.1352632","49.8849098"],["-114.1352739","49.885138"],["-114.1352944","49.8853657"],["-114.1353307","49.885632"],["-114.1353767","49.8858667"],["-114.1354347","49.8860929"],["-114.1355096","49.88633"],["-114.1356007","49.8865705"],["-114.1357065","49.8868109"],["-114.1358156","49.8870269"],["-114.1359725","49.8872962"],["-114.1361487","49.8875565"],["-114.1363545","49.8878273"],["-114.1365828","49.8880969"],["-114.1368539","49.888382"],["-114.13716","49.8886639"],["-114.1375008","49.8889468"],["-114.1379602","49.8892865"],["-114.1391461","49.8901131"],["-114.1397936","49.8905712"],["-114.1400954","49.890808"],["-114.1403679","49.8910418"],["-114.1406292","49.8912874"],["-114.1408139","49.8914796"],["-114.141035","49.8917336"],["-114.1412722","49.8920369"],["-114.1425211","49.893754"],["-114.1426938","49.894017"],["-114.1428703","49.8943179"],["-114.1430142","49.8945972"],["-114.1431503","49.8949053"],["-114.1432507","49.8951832"],["-114.1433384","49.8954819"],["-114.1433962","49.8957365"],["-114.143441","49.8959977"],["-114.1440321","49.901206"],["-114.1440771","49.901479"],["-114.1441265","49.9017505"],["-114.1441905","49.9020738"],["-114.1442577","49.9023655"],["-114.144324","49.9026335"],["-114.1444137","49.902968"],["-114.1444937","49.9032394"],["-114.1445972","49.9035631"],["-114.1447055","49.9038751"],["-114.1449978","49.9046186"],["-114.1453941","49.9055678"],["-114.1455444","49.9059415"],["-114.1456436","49.9062181"],["-114.1457199","49.9064587"],["-114.1457948","49.906729"],["-114.1458644","49.9070046"],["-114.1459219","49.9072645"],["-114.1459638","49.9074956"],["-114.1460073","49.9077855"],["-114.1460438","49.9081022"],["-114.1460689","49.9084162"],["-114.1460845","49.9087694"],["-114.1460835","49.9091226"],["-114.1460685","49.9094565"],["-114.1460346","49.9098157"],["-114.1459819","49.9101883"],["-114.1459145","49.9105538"],["-114.1458296","49.91092"],["-114.1457177","49.9113195"],["-114.1456121","49.9116454"],["-114.1454945","49.9119685"],["-114.1453618","49.9122878"],["-114.1452169","49.9126054"],["-114.1450634","49.9129167"],["-114.1402487","49.9219864"],["-114.1401037","49.92229"],["-114.1399947","49.9225542"],["-114.1398882","49.9228669"],["-114.1398062","49.9231789"],["-114.1397518","49.9234675"],["-114.1397182","49.9237546"],["-114.139707","49.9240888"],["-114.1397222","49.9244465"],["-114.1397606","49.9247443"],["-114.1398165","49.9250232"],["-114.1399022","49.9253327"],["-114.1400172","49.9256556"],["-114.1401577","49.925976"],["-114.1403146","49.9262724"],["-114.1405334","49.9266167"],["-114.1411018","49.9273902"],["-114.1463716","49.9343303"],["-114.1465842","49.9346418"],["-114.1467555","49.934928"],["-114.1469203","49.9352467"],["-114.1470523","49.9355471"],["-114.147129","49.9357548"],["-114.1471995","49.9359819"],["-114.1472522","49.936189"],["-114.1473085","49.9364842"],["-114.1473481","49.9368841"],["-114.1473483","49.9373001"],["-114.1473116","49.9376908"],["-114.1472358","49.9380766"],["-114.1471198","49.9384723"],["-114.146958","49.9388917"],["-114.1467612","49.9393369"],["-114.1452986","49.9424186"],["-114.1450955","49.9428917"],["-114.1449661","49.9432711"],["-114.1448719","49.9436318"],["-114.1448136","49.9439601"],["-114.1447834","49.9442766"],["-114.1447822","49.9446085"],["-114.1448085","49.9449529"],["-114.1448605","49.9452845"],["-114.1449584","49.9457055"],["-114.1455554","49.9477153"],["-114.1456505","49.9480787"],["-114.145713","49.9483949"],["-114.1457514","49.9487029"],["-114.1457666","49.9489843"],["-114.1457596","49.9492519"],["-114.1457288","49.9495763"],["-114.1456662","49.9499393"],["-114.1455756","49.9502827"],["-114.1454617","49.9506037"],["-114.1452826","49.9510038"],["-114.1450751","49.9513783"],["-114.1448241","49.9517505"],["-114.144285","49.9524532"],["-114.1418775","49.9554914"],["-114.1414949","49.9559393"],["-114.1411975","49.9562519"],["-114.1409351","49.9565047"],["-114.1406771","49.9567328"],["-114.140386","49.9569732"],["-114.1401111","49.9571831"],["-114.1398213","49.957391"],["-114.1395565","49.9575691"],["-114.1392905","49.9577364"],["-114.1389996","49.9579078"],["-114.1386817","49.9580839"],["-114.1383352","49.9582642"],["-114.1379698","49.958441"],["-114.1375458","49.9586281"],["-114.1371467","49.9587882"],["-114.1367639","49.9589324"],["-114.136339","49.9590779"],["-114.1360078","49.9591839"],["-114.1356449","49.9592895"],["-114.1293179","49.9607788"],["-114.1288764","49.9608924"],["-114.1284768","49.9610085"],["-114.1281126","49.9611264"],["-114.1277453","49.9612597"],["-114.1273764","49.9614081"],["-114.126983","49.9615807"],["-114.1265838","49.9617749"],["-114.1262271","49.9619656"],["-114.125918","49.9621496"],["-114.1255467","49.9623925"],["-114.1252012","49.9626435"],["-114.1249229","49.9628663"],["-114.1246514","49.9631044"],["-114.1243919","49.9633544"],["-114.1241483","49.9636161"],["-114.1239218","49.9638898"],["-114.1237178","49.9641683"],["-114.1235243","49.9644733"],["-114.1233669","49.9647601"],["-114.1232674","49.9649708"],["-114.123179","49.9651898"],["-114.1230687","49.9655067"],["-114.1229885","49.9658154"],["-114.1229384","49.9660789"],["-114.1229119","49.9662952"],["-114.1228946","49.9665532"],["-114.1228963","49.9668432"],["-114.1229244","49.967159"],["-114.122971","49.9674413"],["-114.1230342","49.967729"],["-114.1231125","49.9680463"],["-114.1231835","49.9682888"],["-114.1232638","49.9686638"],["-114.1234589","49.9694986"],["-114.123516","49.9697065"],["-114.1235854","49.9699268"],["-114.123655","49.9701281"],["-114.1237325","49.9703198"],["-114.1238274","49.9705348"],["-114.1239282","49.97074"],["-114.1240399","49.9709466"],["-114.1241675","49.9711636"],["-114.1243111","49.9713909"],["-114.1244647","49.9716141"],["-114.1246209","49.9718251"],["-114.1247888","49.9720332"],["-114.1249821","49.9722572"],["-114.1252123","49.9725032"],["-114.1254301","49.9727174"],["-114.1256473","49.9729181"],["-114.127636","49.974614"],["-114.1278754","49.9748332"],["-114.128111","49.9750678"],["-114.1283232","49.9752994"],["-114.1285331","49.9755546"],["-114.128695","49.9757734"],["-114.1288521","49.9760111"],["-114.1290208","49.9763017"],["-114.1291858","49.9766326"],["-114.1292887","49.9768765"],["-114.1293772","49.9771263"],["-114.1294412","49.9773438"],["-114.1294938","49.9775623"],["-114.1295324","49.9777851"],["-114.129568","49.9781169"],["-114.1297376","49.9810097"],["-114.1297767","49.9813666"],["-114.1298274","49.9816388"],["-114.1298985","49.9819071"],["-114.129972","49.9821225"],["-114.1300665","49.9823597"],["-114.1301698","49.9825828"],["-114.1302805","49.9827956"],["-114.1303872","49.9829808"],["-114.1304881","49.9831446"],["-114.1306814","49.9834199"],["-114.1308642","49.9836512"],["-114.1311429","49.9839739"],["-114.1337156","49.9867875"],["-114.1338944","49.9869975"],["-114.1340526","49.9871956"],["-114.1342537","49.9874759"],["-114.134414","49.9877292"],["-114.134566","49.9880095"],["-114.1346796","49.9882538"],["-114.1347757","49.9884927"],["-114.1348683","49.9887657"],["-114.134947","49.9890585"],["-114.1350047","49.9893452"],["-114.1350401","49.9896171"],["-114.1350607","49.9898749"],["-114.1351679","49.991822"],["-114.1351863","49.9920923"],["-114.1352199","49.9923871"],["-114.1352658","49.9926436"],["-114.1353152","49.9928554"],["-114.135368","49.9930452"],["-114.1354292","49.9932328"],["-114.135501","49.9934213"],["-114.1355934","49.9936359"],["-114.1482502","50.0186667"],["-114.1483679","50.0189234"],["-114.1484586","50.0191381"],["-114.1486034","50.019524"],["-114.1487038","50.0198335"],["-114.1487919","50.020158"],["-114.1488674","50.0204999"],["-114.1489251","50.0208417"],["-114.1489647","50.0212143"],["-114.1489825","50.0216139"],["-114.1489663","50.0225071"],["-114.1489088","50.0250404"],["-114.1489118","50.0253368"],["-114.1489258","50.0256546"],["-114.1489517","50.0259713"],["-114.1489845","50.0262733"],["-114.1490248","50.0265721"],["-114.1504164","50.0334069"],["-114.1505338","50.0339423"],["-114.1506059","50.0342081"],["-114.1506942","50.0344765"],["-114.1507869","50.0347145"],["-114.1508986","50.0349568"],["-114.1510233","50.0351945"],["-114.1511722","50.0354429"],["-114.1513198","50.0356635"],["-114.151479","50.0358781"],["-114.1516752","50.0361141"],["-114.1518954","50.0363568"],["-114.1521191","50.0365798"],["-114.1523586","50.036797"],["-114.1528835","50.0372133"],["-114.1532002","50.0374335"],["-114.1535082","50.0376265"],["-114.1538559","50.0378267"],["-114.1542193","50.0380162"],["-114.154525","50.0381637"],["-114.1548572","50.0383154"],["-114.1558343","50.0386864"],["-114.1581708","50.0395619"],["-114.1586913","50.0397825"],["-114.1591209","50.0399892"],["-114.1594424","50.0401585"],["-114.1597219","50.040321"],["-114.1599915","50.0404883"],["-114.160273","50.0406771"],["-114.1605345","50.0408681"],["-114.1608351","50.0411079"],["-114.1611133","50.0413555"],["-114.161402","50.0416423"],["-114.16167","50.041938"],["-114.1619005","50.0422309"],["-114.1621052","50.0425242"],["-114.1623037","50.0428555"],["-114.1624674","50.0431896"],["-114.1626168","50.0435706"],["-114.1627121","50.0438845"],["-114.1627828","50.04417"],["-114.1700128","50.0802345"],["-114.17013","50.0808935"],["-114.1701801","50.0813262"],["-114.1702062","50.0817015"],["-114.1702185","50.082146"],["-114.1702116","50.0825191"],["-114.1701926","50.0828838"],["-114.1701628","50.0832235"],["-114.1701161","50.0835975"],["-114.1700604","50.0839468"],["-114.169989","50.0843072"],["-114.1698944","50.0847084"],["-114.1697475","50.0852362"],["-114.168257","50.0901988"],["-114.1681679","50.0905438"],["-114.1679836","50.0913507"],["-114.1678701","50.091938"],["-114.1677303","50.0928169"],["-114.1676346","50.093597"],["-114.1672088","50.0983105"],["-114.1671815","50.0987903"],["-114.1671772","50.099087"],["-114.167186","50.0993854"],["-114.1672049","50.0997319"],["-114.1672416","50.1001066"],["-114.1672916","50.1004853"],["-114.1673545","50.1008548"],["-114.1674346","50.1012302"],["-114.1675302","50.1016117"],["-114.1676409","50.1019998"],["-114.1677579","50.1023579"],["-114.167886","50.1027056"],["-114.1680034","50.1029917"],["-114.1681438","50.1033103"],["-114.1683563","50.1037401"],["-114.1744222","50.1149316"],["-114.1751239","50.1162707"],["-114.1758322","50.1176964"],["-114.1762472","50.118564"],["-114.1806947","50.1291015"],["-114.1811098","50.1301525"],["-114.1813836","50.1309372"],["-114.1815939","50.1316318"],["-114.1817382","50.1321524"],["-114.181876","50.1327066"],["-114.181992","50.1332358"],["-114.1820997","50.1338226"],["-114.1821902","50.1343768"],["-114.1822831","50.1350782"],["-114.182354","50.1358715"],["-114.1823931","50.1365892"],["-114.1824087","50.1372967"],["-114.1820082","50.1991338"],["-114.1820233","50.200611"],["-114.1820545","50.2011751"],["-114.1820793","50.2014893"],["-114.181884","50.2017362"],["-114.1777649","50.2012034"],["-114.1746364","50.2009195"],["-114.1694469","50.2012395"],["-114.1579894","50.2022493"],["-114.1525223","50.2029787"],["-114.1416393","50.2054885"],["-114.1387051","50.2066748"],["-114.133625","50.2091699"],["-114.129451","50.2104109"],["-114.1194915","50.2118989"],["-114.1152243","50.2122373"],["-114.0961916","50.212123"],["-114.0943669","50.2125351"],["-114.0927155","50.2133106"],["-114.0912159","50.2146134"],["-114.0896952","50.2159171"],["-114.0879549","50.2167636"],["-114.0849133","50.2178794"],["-114.0835234","50.2188337"],["-114.0693682","50.2364148"],["-114.0668413","50.2386898"],["-114.0644313","50.2399344"],["-114.0616944","50.2407407"],["-114.0570988","50.2417197"],["-114.0545784","50.2425518"],["-114.0525797","50.2435587"],["-114.0502656","50.2444345"],["-114.0469934","50.2452881"],["-114.0446441","50.2463796"],["-114.0404407","50.2491508"],["-114.0382247","50.250413"],["-114.0362592","50.2510023"],["-114.0339084","50.2511162"],["-114.031442","50.2511853"],["-114.0292722","50.2515968"],["-114.0276515","50.2523324"],["-114.026457","50.2534058"],["-114.0255924","50.254407"],["-114.0248157","50.2552734"],["-114.0239863","50.2559102"],["-114.0227673","50.2565844"],["-114.0206186","50.2573055"],["-113.9942524","50.2644251"],["-113.9923312","50.265137"],["-113.9852806","50.2688767"],["-113.9839833","50.2696778"],["-113.9819086","50.2716243"],["-113.9765111","50.2768095"],["-113.9744701","50.2783588"],["-113.9719015","50.2800072"],["-113.9706868","50.2808586"],["-113.9693181","50.2820391"],["-113.9646017","50.2873641"],["-113.963931","50.2880748"],["-113.9545932","50.2965644"],["-113.9481578","50.3051017"],["-113.9467624","50.3062782"],["-113.9447749","50.3071381"],["-113.9385118","50.3091695"],["-113.9265342","50.3124911"],["-113.9107807","50.3167953"],["-113.9077008","50.3171342"],["-113.9040573","50.3171995"],["-113.9015722","50.317682"],["-113.89955","50.3184953"],["-113.8979468","50.3198528"],["-113.8969955","50.321234"],["-113.8966985","50.3233398"],["-113.8964638","50.3286331"],["-113.8965294","50.333704"],["-113.8963175","50.3387553"],["-113.8520262","50.3390482"],["-113.8483359","50.3390512"],["-113.782088","50.3389913"],["-113.7818919","50.3416365"],["-113.78189","50.3424349"],["-113.7819108","50.3442355"],["-113.7819062","50.3444281"],["-113.7818814","50.3467887"],["-113.781914","50.3527854"],["-113.7819121","50.3551499"],["-113.7819089","50.3553891"],["-113.7829329","50.3558229"],["-113.7872183","50.357564"],["-113.7880728","50.3579246"],["-113.7884784","50.3581306"],["-113.7888296","50.3583316"],["-113.7891406","50.3585354"],["-113.7895656","50.3588438"],["-113.7899467","50.359168"],["-113.7902663","50.3595099"],["-113.7905019","50.3597898"],["-113.7907607","50.3601617"],["-113.7961512","50.3698821"],["-113.7981529","50.3726524"],["-113.7988493","50.3735845"],["-113.8001245","50.3752738"],["-113.8007466","50.3759803"],["-113.8011737","50.3764225"],["-113.8016523","50.3768861"],["-113.8026554","50.3777163"],["-113.814579","50.3870231"],["-113.8152585","50.3876224"],["-113.8160714","50.388372"],["-113.816659","50.3888996"],["-113.818712","50.3905692"],["-113.8204649","50.3921351"],["-113.8218598","50.3935538"],["-113.8231579","50.3951008"],["-113.8241252","50.3964049"],["-113.8249875","50.397767"],["-113.8255661","50.3988086"],["-113.826039","50.3997962"],["-113.8263844","50.4005938"],["-113.8267447","50.4015871"],["-113.8270892","50.4026536"],["-113.8273444","50.4037106"],["-113.8275426","50.4047506"],["-113.8276814","50.405782"],["-113.8277534","50.4069255"],["-113.8277998","50.408799"],["-113.8278887","50.4097425"],["-113.8279927","50.4105003"],["-113.8280537","50.4110251"],["-113.8280831","50.4132561"],["-113.8279595","50.5624658"],["-113.8280574","50.5704301"],["-113.8280812","50.571757"],["-113.8281115","50.5981043"],["-113.8282029","50.5989788"],["-113.8282893","50.5994824"],["-113.8283748","50.5999036"],["-113.8286565","50.6008895"],["-113.8288028","50.6013088"],["-113.829002","50.6018076"],["-113.8293486","50.6025671"],["-113.8297098","50.6032482"],["-113.8302561","50.6041399"],["-113.8351034","50.6114144"],["-113.8353818","50.6119053"],["-113.8356497","50.6124421"],["-113.8359908","50.6134332"],["-113.8361139","50.6138985"],["-113.8361889","50.6143422"],["-113.83624","50.6157215"],["-113.8362891","50.6298818"],["-113.8363571","50.6547002"],["-113.8364455","50.6556468"],["-113.8366345","50.6563391"],["-113.837067","50.65734"],["-113.8380661","50.6586881"],["-113.8384808","50.6591873"],["-113.8389087","50.6595986"],["-113.8394206","50.6600101"],["-113.8399491","50.6604136"],["-113.8406537","50.6608669"],["-113.8412126","50.6611809"],["-113.8417008","50.6614366"],["-113.8422975","50.6617188"],["-113.8456944","50.6630467"],["-113.863115","50.6697431"],["-113.8641097","50.6701483"],["-113.8648576","50.6704964"],["-113.8654929","50.6708347"],["-113.8660487","50.6711816"],["-113.8665661","50.6715315"],["-113.8670607","50.6719157"],["-113.8675133","50.6723182"],["-113.86799","50.6727752"],["-113.868562","50.6734259"],["-113.8696365","50.674715"],["-113.8801115","50.6875943"],["-113.8803907","50.6879797"],["-113.8806861","50.6884165"],["-113.8809435","50.6888606"],["-113.8811359","50.6892259"],["-113.8813316","50.6896509"],["-113.881439","50.6899518"],["-113.8815533","50.6903033"],["-113.8816424","50.6906639"],["-113.8817465","50.6911555"],["-113.8817934","50.6915324"],["-113.8818179","50.6919696"],["-113.8818344","50.6946807"],["-113.8818931","50.7104444"],["-113.8819018","50.7148209"],["-113.8819437","50.7231055"],["-113.8819698","50.7235408"],["-113.8820223","50.7239477"],["-113.8820771","50.7242616"],["-113.8821605","50.7246174"],["-113.8822626","50.7250185"],["-113.8823908","50.7254075"],["-113.8827136","50.7261766"],["-113.8828692","50.7264887"],["-113.8833685","50.7273572"],["-113.8836397","50.7277512"],["-113.8839581","50.7281603"],["-113.8842732","50.7285428"],["-113.8846312","50.728938"],["-113.8850992","50.729393"],["-113.8861331","50.7302935"],["-113.9760607","50.8057334"],["-113.9772698","50.8067787"],["-113.9778598","50.8073483"],["-113.9788601","50.8083949"],["-113.9805274","50.8103543"],["-113.9831088","50.8134636"],["-113.9835561","50.8141264"],["-113.9840595","50.8148167"],["-113.9845301","50.8155083"],["-113.984837","50.8160465"],["-113.9851216","50.8166097"],["-113.9853686","50.8172995"],["-113.9855489","50.8180912"],["-113.9856239","50.8188359"],["-113.9855698","50.8197338"],["-113.9854334","50.8205352"],["-113.9851849","50.8213422"],["-113.9848084","50.822238"],["-113.9841865","50.823281"],["-113.9825671","50.8258375"],["-113.9758485","50.8364088"],["-113.9755469","50.8369074"],["-113.97524","50.837435"],["-113.974879","50.8381252"],["-113.9742464","50.8395866"],["-113.9737207","50.8409014"],["-113.973572","50.8413985"],["-113.9734372","50.8418884"],["-113.9732887","50.8425441"],["-113.9731571","50.8431957"],["-113.9729997","50.8442113"],["-113.9727768","50.8462214"],["-113.9726413","50.8472953"],["-113.9724188","50.848481"],["-113.9721951","50.8494889"],["-113.9716901","50.8512056"],["-113.9709943","50.8530555"],["-113.9704143","50.8543523"],["-113.9700033","50.8552115"],["-113.9696418","50.8558824"],["-113.9688644","50.8571842"],["-113.9684121","50.8578846"],["-113.9679685","50.8585123"],["-113.9674418","50.8592353"],["-113.9670848","50.8597055"],["-113.9662468","50.8607228"],["-113.9649152","50.8623128"],["-113.9643365","50.8630389"],["-113.9638139","50.8637989"],["-113.9635746","50.864185"],["-113.9633599","50.8645565"],["-113.9630957","50.8650603"],["-113.9627998","50.8656694"],["-113.9624779","50.8664874"],["-113.9623609","50.8668112"],["-113.9622383","50.8672135"],["-113.9621082","50.8677236"],["-113.9619997","50.8682421"],["-113.961884","50.8688644"],["-113.9618014","50.8696018"],["-113.961755","50.8707547"],["-113.9618063","50.8716091"],["-113.9618703","50.8721824"],["-113.9619621","50.8727864"],["-113.9621509","50.8736444"],["-113.9626602","50.8751632"],["-113.9631441","50.8762286"],["-113.9637577","50.8773661"],["-113.9644285","50.8785379"],["-113.9678204","50.8842561"],["-113.9682879","50.8850249"],["-113.9687345","50.8857508"],["-113.9697903","50.8874988"],["-113.9729183","50.8927647"],["-113.9735452","50.8938396"],["-113.9739807","50.8946632"],["-113.9742885","50.8953454"],["-113.974535","50.8959765"],["-113.9747048","50.8964797"],["-113.9748526","50.8970301"],["-113.9750133","50.8977498"],["-113.9751404","50.8986016"],["-113.9752059","50.899386"],["-113.9752311","50.9005361"],["-113.9752437","50.9051829"],["-113.9752606","50.9083147"],["-113.9754358","50.9366402"],["-113.9754745","50.9372473"],["-113.9755305","50.9376521"],["-113.9755933","50.9379918"],["-113.9756536","50.9382638"],["-113.9757844","50.9386669"],["-113.9760798","50.9394111"],["-113.9763543","50.9399507"],["-113.9765593","50.940305"],["-113.9768027","50.9406739"],["-113.9770778","50.9410601"],["-113.9773503","50.9413902"],["-113.9777627","50.9418504"],["-113.9781083","50.9422001"],["-113.9785237","50.9425806"],["-113.9791478","50.9430916"],["-113.97964","50.9434629"],["-113.980199","50.9438374"],["-113.9804927","50.9440163"],["-113.9810504","50.9443423"],["-113.9813524","50.9445087"],["-113.9816582","50.9446656"],["-113.9820823","50.9448721"],["-113.9825567","50.9450781"],["-113.9836242","50.9455184"],["-113.984326","50.9457465"],["-113.9851774","50.9460005"],["-113.9860309","50.9462327"],["-113.986861","50.9464221"],["-113.9874545","50.9465367"],["-113.9880835","50.9466337"],["-113.9888227","50.9467305"],["-113.9972748","50.9476055"],["-113.998623","50.9477945"],["-113.9997374","50.9479802"],["-114.000848","50.9481939"],["-114.005278","50.9492675"],["-114.0136943","50.9514647"],["-114.0146154","50.9516645"],["-114.0156313","50.951863"],["-114.0169467","50.952053"],["-114.0212943","50.9525943"],["-114.0228187","50.9528364"],["-114.0234086","50.9529652"],["-114.0240554","50.9531235"],["-114.0248013","50.953361"],["-114.0249551","50.9534162"],["-114.025444","50.953606"],["-114.0256761","50.9537052"],["-114.0259324","50.9538185"],["-114.0261522","50.953921"],["-114.0264892","50.9540969"],["-114.0268952","50.9543367"],["-114.0272573","50.9545679"],["-114.0275704","50.9547975"],["-114.027741","50.9549307"],["-114.0279022","50.9550638"],["-114.028053","50.9551995"],["-114.0281945","50.9553332"],["-114.0283653","50.9555053"],["-114.0285602","50.9557163"],["-114.0287359","50.9559236"],["-114.0288901","50.9561193"],["-114.0290139","50.9562941"],["-114.0291513","50.9565061"],["-114.0292951","50.956767"],["-114.0294231","50.9570465"],["-114.0296316","50.9575881"],["-114.0299745","50.9586557"],["-114.0303043","50.9597205"],["-114.030432","50.9602092"],["-114.0309003","50.9617627"],["-114.0314011","50.9633789"],["-114.0317134","50.9641998"],["-114.0321036","50.9652214"],["-114.0325263","50.9660724"],["-114.0330277","50.9669213"],["-114.0336776","50.9678589"],["-114.0348126","50.9692331"],["-114.0355353","50.9699565"],["-114.0369893","50.9713277"],["-114.0385965","50.9728612"],["-114.0393935","50.9738246"],["-114.039848","50.9745876"],["-114.0401883","50.9755131"],["-114.0403198","50.9760779"],["-114.0403755","50.9766014"],["-114.0403766","50.9771606"],["-114.0403232","50.9775663"],["-114.0401062","50.9783562"],["-114.039966","50.9787562"],["-114.0397693","50.9791392"],["-114.0394712","50.9796617"],["-114.0392679","50.9799882"],["-114.0391104","50.9802291"],["-114.0389847","50.9804219"],["-114.0388383","50.9806325"],["-114.0386728","50.9808582"],["-114.0381947","50.9815113"],["-114.0379499","50.9818253"],["-114.0376917","50.9821482"],["-114.037432","50.9825335"],["-114.037218","50.9828223"],["-114.0368855","50.9832283"],["-114.0366619","50.9835632"],["-114.0364526","50.9839043"],["-114.0360663","50.9845644"],["-114.0357768","50.9850777"],["-114.0357021","50.9852481"],["-114.0356124","50.9854516"],["-114.0355124","50.985693"],["-114.0354084","50.9859622"],["-114.035321","50.9862283"],["-114.0352377","50.9865179"],["-114.0351651","50.9867452"],["-114.0351045","50.9869947"],["-114.0349726","50.9875897"],["-114.0349061","50.9880253"],["-114.0348461","50.9884912"],["-114.0348554","50.9887868"],["-114.0348677","50.9891087"],["-114.0348589","50.9898068"],["-114.0348913","50.9922853"],["-114.0348929","50.9927606"],["-114.0347888","50.9943425"],["-114.0347354","50.9947622"],["-114.0346395","50.9952976"],["-114.0345046","50.9957655"],["-114.0343503","50.9962512"],["-114.0341091","50.9968015"],["-114.033925","50.9971793"],["-114.0332577","50.9983696"],["-114.032966","50.9988107"],["-114.0296705","51.0035155"],["-114.0292839","51.0040384"],["-114.0287731","51.0047725"],["-114.0278487","51.0060987"],["-114.0277015","51.006295"],["-114.0272542","51.0067835"],["-114.0270256","51.0069923"],["-114.0268331","51.0071417"],["-114.0266221","51.0072974"],["-114.0260354","51.0076437"],["-114.025489","51.0079188"],["-114.0252752","51.0080013"],["-114.0250393","51.0080863"],["-114.0245464","51.0082457"],["-114.0240146","51.0083921"],["-114.0236929","51.0084564"],["-114.0231193","51.0085542"],["-114.0225797","51.0086133"],["-114.0222568","51.0086423"],["-114.0213363","51.0086496"],["-114.0210409","51.0086382"],["-114.0206858","51.0086121"],["-114.0181399","51.0083582"],["-114.0178399","51.0083393"],["-114.0172556","51.0083262"],["-114.0169663","51.0083282"],["-114.016386","51.008359"],["-114.0160879","51.0083826"],["-114.0157797","51.0084207"],["-114.0154303","51.008474"],["-114.0150365","51.0085523"],["-114.014631","51.0086442"],["-114.0142005","51.0087489"],["-114.0138112","51.0088562"],["-114.0123054","51.0093604"],["-114.0118583","51.009539"],["-114.0113585","51.0097582"],["-114.0108791","51.0099865"],["-114.0103261","51.0102763"],["-114.0098464","51.0105404"],["-114.0087198","51.0112404"],["-114.0081769","51.0116303"],["-114.0076008","51.0120795"],["-114.0070883","51.0125233"],["-114.0068619","51.0127329"],["-114.006705","51.0128851"],["-114.0064291","51.0131616"],["-114.0061714","51.0134464"],["-114.0058666","51.0138144"],["-114.0056123","51.0141393"],["-114.0053623","51.0144635"],["-114.0051434","51.0148077"],["-114.0049312","51.0151524"],["-114.0047012","51.0155382"],["-114.004378","51.0161561"],["-114.0040395","51.0168666"],["-114.0024093","51.0201209"],["-114.0018108","51.0213138"],["-114.0013663","51.0221624"],["-114.0005673","51.0237804"],["-113.9981175","51.0287071"],["-113.9979129","51.0291477"],["-113.9977764","51.029455"],["-113.9976814","51.0297061"],["-113.9975222","51.030334"],["-113.9974693","51.030603"],["-113.9974426","51.0308209"],["-113.9974545","51.0312523"],["-113.9974901","51.0316038"],["-113.9975499","51.0319354"],["-113.9977274","51.032362"],["-113.9978819","51.0327104"],["-113.9980464","51.0329804"],["-113.9982188","51.0332175"],["-113.9983931","51.0334316"],["-113.9985707","51.0336421"],["-113.9989746","51.0340331"],["-113.9993603","51.0343466"],["-113.9995988","51.0345215"],["-113.9998197","51.0346655"],["-114.00031","51.0349494"],["-114.0005763","51.0350806"],["-114.0011322","51.0353204"],["-114.0025171","51.0359061"],["-114.003057","51.0361432"],["-114.003554","51.0363789"],["-114.0038802","51.0365542"],["-114.0040672","51.0366574"],["-114.0044434","51.0369142"],["-114.0048303","51.0372211"],["-114.0051552","51.0375052"],["-114.0053134","51.0376705"],["-114.0054634","51.0378549"],["-114.0055956","51.0380278"],["-114.0056947","51.0381972"],["-114.0057852","51.0383617"],["-114.0058798","51.0385683"],["-114.0060464","51.0389271"],["-114.0062854","51.0394305"],["-114.0065169","51.0399208"],["-114.0069523","51.0408699"],["-114.0070878","51.0411527"],["-114.0072528","51.0415026"],["-114.0074522","51.0418974"],["-114.0076575","51.0422298"],["-114.007798","51.0424542"],["-114.0080196","51.0427481"],["-114.0082867","51.0430535"],["-114.008584","51.0433802"],["-114.0088559","51.0436039"],["-114.0090933","51.0437798"],["-114.0094925","51.044045"],["-114.0098153","51.0442482"],["-114.0101665","51.0444409"],["-114.0108191","51.0447171"],["-114.0134804","51.0458533"],["-114.013771","51.046029"],["-114.0140197","51.0462215"],["-114.0142387","51.0464795"],["-114.0143865","51.046772"],["-114.0146918","51.0475055"],["-114.0150797","51.0480746"],["-114.015313","51.0483008"],["-114.0156714","51.0485682"],["-114.0160359","51.0488301"],["-114.0167361","51.0491126"],["-114.0170183","51.0491459"],["-114.0172967","51.0491597"],["-114.0175085","51.0491647"],["-114.017656","51.0491613"],["-114.01783","51.049153"],["-114.0180596","51.0491328"],["-114.0183712","51.0490953"],["-114.018635","51.0490551"],["-114.0188154","51.0490196"],["-114.0190384","51.0489669"],["-114.0193209","51.0488915"],["-114.0198717","51.0487071"],["-114.0207164","51.0484214"],["-114.0216762","51.0480973"],["-114.0224515","51.0478779"],["-114.0231878","51.0477266"],["-114.0239623","51.0476099"],["-114.0246434","51.0475393"],["-114.0253084","51.0474962"],["-114.0260697","51.0474788"],["-114.0277549","51.0475631"],["-114.0285943","51.0476558"],["-114.0303012","51.0478657"],["-114.0309727","51.0479265"],["-114.031696","51.0479813"],["-114.0323612","51.0480052"],["-114.0351982","51.047939"],["-114.0357336","51.0479564"],["-114.0362727","51.0480148"],["-114.036643","51.048078"],["-114.0369814","51.0481593"],["-114.0375856","51.0483597"],["-114.038783","51.0488067"],["-114.0395445","51.0490342"],["-114.0399944","51.0491388"],["-114.0404674","51.0492271"],["-114.0409297","51.0492991"],["-114.0413647","51.0493449"],["-114.0417941","51.0493715"],["-114.042423","51.0493876"],["-114.0438418","51.0493591"],["-114.044364","51.0493657"],["-114.0449367","51.0493819"],["-114.0454024","51.0494322"],["-114.0458612","51.0494939"],["-114.0463059","51.0495834"],["-114.0468753","51.0497159"],["-114.0476761","51.0500184"],["-114.0481273","51.050233"],["-114.0487453","51.0505514"],["-114.0494528","51.0509259"],["-114.0496282","51.0509983"],["-114.0497886","51.0510484"],["-114.0499648","51.0510933"],["-114.0501119","51.0511249"],["-114.050239","51.0511434"],["-114.0505397","51.0511668"],["-114.0506876","51.0511734"],["-114.0508446","51.0511654"],["-114.0510221","51.051139"],["-114.0511888","51.0511104"],["-114.0513473","51.0510727"],["-114.0514971","51.05103"],["-114.0517128","51.050947"],["-114.0518133","51.0508959"],["-114.0519085","51.0508449"],["-114.0519999","51.0507906"],["-114.0520986","51.0507201"],["-114.0522087","51.0506206"],["-114.0524784","51.0503539"],["-114.0530178","51.0498073"],["-114.0532824","51.0496135"],["-114.0535613","51.0494575"],["-114.0539176","51.0493139"],["-114.0543418","51.049215"],["-114.0546791","51.0491748"],["-114.0550822","51.0491653"],["-114.0556639","51.049168"],["-114.056009","51.0491393"],["-114.0652374","51.0493964"],["-114.065314","51.0484538"]]}};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))); });