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:[-96.69605213418396,30.480331133174808],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":[-95.369863,29.760431],"type":"start"};markerData[1][1]={"lonLat":[-98.494593,29.425212],"type":"finish"};markerData[1][2]={"lonLat":[-97.1471191166277,31.550727941901616],"type":"star","c":{"popup":{"title":"Austin Route","text":"370 miles (6 hours 10 minutes)"}}};markerData[1][3]={"lonLat":[-96.01407378760948,28.768038476333945],"type":"star","c":{"popup":{"title":"Corpus Christi Route","text":"420 miles (7 hours)"}}};const geojson_1_0={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-95.3696003","29.7607312"],["-95.3695331","29.7608209"],["-95.3696101","29.7608715"],["-95.3699127","29.7610534"],["-95.3702067","29.7611674"],["-95.3704064","29.7612085"],["-95.3711945","29.7612859"],["-95.3714538","29.7613362"],["-95.3716224","29.7613986"],["-95.3717744","29.7614995"],["-95.3718625","29.7615966"],["-95.3719096","29.7616923"],["-95.3719316","29.7617977"],["-95.3719271","29.7619258"],["-95.3718804","29.7620601"],["-95.3718173","29.7621754"],["-95.3717096","29.7622998"],["-95.3712589","29.7626192"],["-95.3707752","29.7629442"],["-95.3692905","29.7636262"],["-95.3688474","29.7638467"],["-95.368527","29.7640162"],["-95.3684071","29.7640864"],["-95.3682546","29.7641855"],["-95.3679961","29.764373"],["-95.3678575","29.7644858"],["-95.3677257","29.7646072"],["-95.3676144","29.7647174"],["-95.3675135","29.7648265"],["-95.3673848","29.7649768"],["-95.3672471","29.7651608"],["-95.3671167","29.7653625"],["-95.3670012","29.7655647"],["-95.3668924","29.765767"],["-95.3667625","29.7660416"],["-95.3666266","29.7663444"],["-95.3654518","29.7689561"],["-95.3653039","29.7693138"],["-95.3652135","29.7695551"],["-95.3651637","29.76971"],["-95.3651174","29.7698728"],["-95.3650893","29.7700002"],["-95.3650698","29.770122"],["-95.3650587","29.7702337"],["-95.3650542","29.7703581"],["-95.3650556","29.7705015"],["-95.3650675","29.7706545"],["-95.3650874","29.7707927"],["-95.3651264","29.7709651"],["-95.3651727","29.7711146"],["-95.3652294","29.7712736"],["-95.3652933","29.7714258"],["-95.3653572","29.7715585"],["-95.3654777","29.7717669"],["-95.3657868","29.7722569"],["-95.3661778","29.7727452"],["-95.3670215","29.7738002"],["-95.367349","29.774301"],["-95.3674874","29.7745313"],["-95.3675995","29.7747544"],["-95.3682168","29.7757562"],["-95.3684904","29.7761663"],["-95.3687839","29.7765204"],["-95.3690322","29.7767698"],["-95.3692933","29.7769809"],["-95.3695529","29.7771811"],["-95.3698182","29.7773483"],["-95.3701042","29.7775016"],["-95.3705227","29.7776756"],["-95.370954","29.7778359"],["-95.3717405","29.778105"],["-95.3719929","29.778221"],["-95.3736104","29.7787098"],["-95.3744202","29.7789373"],["-95.3749061","29.779045"],["-95.3754023","29.7791196"],["-95.3759603","29.7791693"],["-95.3766268","29.779187"],["-95.3775551","29.7791274"],["-95.3784265","29.778879"],["-95.3788728","29.7787341"],["-95.3796114","29.7784471"],["-95.3806225","29.7780753"],["-95.3822245","29.7775958"],["-95.383598","29.7772862"],["-95.3842242","29.7771812"],["-95.3846847","29.7771141"],["-95.3860151","29.7769633"],["-95.3874313","29.7768864"],["-95.3890693","29.7768505"],["-95.3898882","29.7768481"],["-95.3907107","29.7767902"],["-95.3996536","29.7766055"],["-95.400805","29.7766297"],["-95.4020031","29.776702"],["-95.4026674","29.7767733"],["-95.4041847","29.7770111"],["-95.4065222","29.7773954"],["-95.4071263","29.7774745"],["-95.4077099","29.7775371"],["-95.4090811","29.7776358"],["-95.4103123","29.7776512"],["-95.4253967","29.7774231"],["-95.4264718","29.7774316"],["-95.4272265","29.7774507"],["-95.4279011","29.7774782"],["-95.4424484","29.7791046"],["-95.4434471","29.7791757"],["-95.4452327","29.7792802"],["-95.4458514","29.7793247"],["-95.4470649","29.7793655"],["-95.4487922","29.7793849"],["-95.4490904","29.7793842"],["-95.4494607","29.7793919"],["-95.4498489","29.7794215"],["-95.4503022","29.7795379"],["-95.4506072","29.7796762"],["-95.4509783","29.7799515"],["-95.4510915","29.7800489"],["-95.4511975","29.7801546"],["-95.4513098","29.7802808"],["-95.4513871","29.7803869"],["-95.4514512","29.780485"],["-95.4515151","29.7805956"],["-95.4515693","29.7807089"],["-95.4516273","29.7808837"],["-95.4516586","29.7809986"],["-95.4516799","29.7811076"],["-95.4516951","29.7812323"],["-95.4517017","29.781356"],["-95.4516863","29.7816902"],["-95.4516428","29.782396"],["-95.4516254","29.7827851"],["-95.451648","29.7832811"],["-95.4516243","29.7839273"],["-95.4515939","29.78465"],["-95.4515903","29.7853418"],["-95.4516773","29.7889857"],["-95.4515876","29.7903968"],["-95.4512683","29.7922326"],["-95.4504474","29.7953396"],["-95.4496837","29.7981965"],["-95.4496397","29.7986708"],["-95.4495966","29.7990061"],["-95.4495767","29.7996246"],["-95.4496568","29.8002345"],["-95.4497446","29.8006851"],["-95.4498588","29.8011765"],["-95.4501067","29.8018414"],["-95.4503679","29.8023847"],["-95.4505931","29.802748"],["-95.4507942","29.8030134"],["-95.4510414","29.8033169"],["-95.4513459","29.8036609"],["-95.4516442","29.804004"],["-95.4521467","29.8044569"],["-95.4536801","29.805884"],["-95.4549787","29.8071249"],["-95.461008","29.8127342"],["-95.4625903","29.8142007"],["-95.4636699","29.8151853"],["-95.4642799","29.8156134"],["-95.4661192","29.8173262"],["-95.4679333","29.8190383"],["-95.4706383","29.8215078"],["-95.4762036","29.8265714"],["-95.4764236","29.8267857"],["-95.4810562","29.8310413"],["-95.4815224","29.8314838"],["-95.4893613","29.8387896"],["-95.4900815","29.8394384"],["-95.4913403","29.840643"],["-95.4920613","29.8412727"],["-95.4928215","29.8418164"],["-95.4936449","29.8423754"],["-95.4946036","29.8429509"],["-95.495651","29.8435638"],["-95.4975564","29.8446556"],["-95.4995179","29.8457589"],["-95.5249687","29.8600981"],["-95.5263242","29.8608037"],["-95.5287394","29.8618888"],["-95.5299542","29.8624219"],["-95.5331652","29.86386"],["-95.5370602","29.8655173"],["-95.5421341","29.8677894"],["-95.54445","29.8688221"],["-95.5458716","29.8694411"],["-95.5485918","29.8705584"],["-95.5527772","29.8724027"],["-95.5537928","29.8728592"],["-95.5545917","29.8732144"],["-95.5649191","29.8778513"],["-95.5666633","29.8786174"],["-95.5672829","29.8789094"],["-95.5681028","29.8793152"],["-95.5691227","29.8798976"],["-95.5695196","29.8801603"],["-95.5703255","29.8807298"],["-95.5710208","29.8812182"],["-95.5785965","29.8864621"],["-95.5851448","29.8910944"],["-95.5856766","29.8914808"],["-95.5896627","29.8943156"],["-95.5911968","29.8954167"],["-95.5937116","29.8971767"],["-95.5953173","29.8982725"],["-95.5957477","29.8985359"],["-95.6036546","29.9040894"],["-95.6045739","29.9047455"],["-95.6088132","29.9077603"],["-95.6096073","29.9083309"],["-95.6101177","29.9087166"],["-95.6105307","29.9090596"],["-95.6109365","29.9094238"],["-95.6112865","29.909788"],["-95.6116638","29.9102179"],["-95.6120139","29.9106661"],["-95.6123767","29.9112156"],["-95.6130795","29.9123528"],["-95.6135647","29.9131309"],["-95.6154694","29.9161619"],["-95.616123","29.9172539"],["-95.6164851","29.9179314"],["-95.6169929","29.9185765"],["-95.618004","29.9195094"],["-95.6201036","29.921073"],["-95.6216125","29.9220791"],["-95.6227372","29.9226632"],["-95.6234838","29.9229449"],["-95.6242825","29.9231884"],["-95.6249379","29.9233405"],["-95.6253899","29.9234024"],["-95.6280515","29.923559"],["-95.6290024","29.9236229"],["-95.6297644","29.9237131"],["-95.6304301","29.9238425"],["-95.6310016","29.9239899"],["-95.6314818","29.9241411"],["-95.6319373","29.9243138"],["-95.632412","29.9245291"],["-95.6327795","29.9247063"],["-95.633193","29.9249291"],["-95.6336084","29.9251921"],["-95.6376877","29.9281514"],["-95.643904","29.9324041"],["-95.6465779","29.9343189"],["-95.6480685","29.9353816"],["-95.6516947","29.9379165"],["-95.6534521","29.9391239"],["-95.6661627","29.9479262"],["-95.6711619","29.9517072"],["-95.6718487","29.952203"],["-95.6749337","29.9543303"],["-95.6762072","29.9551669"],["-95.6792056","29.9571405"],["-95.6827198","29.9595781"],["-95.6837432","29.9602994"],["-95.6844464","29.96078"],["-95.6871091","29.9626152"],["-95.6880891","29.9633397"],["-95.6883485","29.963575"],["-95.688622","29.9638461"],["-95.6891492","29.9644149"],["-95.6893644","29.9647141"],["-95.6895714","29.9650149"],["-95.6898217","29.9654429"],["-95.6907602","29.9674002"],["-95.6910173","29.9679426"],["-95.6911805","29.9682748"],["-95.6913863","29.9686451"],["-95.6916597","29.9690694"],["-95.6921332","29.9697424"],["-95.6926787","29.9703468"],["-95.693273","29.9709073"],["-95.6937826","29.9713282"],["-95.6942377","29.9716664"],["-95.6947858","29.9720275"],["-95.6953009","29.9723382"],["-95.6958217","29.972608"],["-95.6963827","29.9728593"],["-95.696985","29.9731024"],["-95.6975606","29.9732976"],["-95.6981649","29.9734717"],["-95.7052771","29.9751322"],["-95.7068149","29.9755475"],["-95.7089441","29.9762788"],["-95.7201829","29.980488"],["-95.7432646","29.9893213"],["-95.7690745","29.9989742"],["-95.7694457","29.9991174"],["-95.7707885","29.999648"],["-95.7730515","30.0004736"],["-95.7753474","30.0013322"],["-95.7773172","30.0021053"],["-95.7875472","30.0058955"],["-95.8088392","30.0139316"],["-95.8103815","30.0145299"],["-95.8174577","30.0172311"],["-95.823879","30.0195675"],["-95.8263573","30.020533"],["-95.82871","30.0214789"],["-95.8346592","30.0238434"],["-95.8358834","30.0243633"],["-95.8365852","30.0247459"],["-95.8371784","30.0251553"],["-95.8374908","30.0254186"],["-95.8379113","30.0257687"],["-95.8387547","30.0266539"],["-95.8425775","30.0316374"],["-95.8435102","30.0326428"],["-95.8440111","30.0330914"],["-95.8445256","30.0334914"],["-95.845068","30.033871"],["-95.8456089","30.0342016"],["-95.8461941","30.0345305"],["-95.8468065","30.0348202"],["-95.8475563","30.0351289"],["-95.8501403","30.0360953"],["-95.8513473","30.0365489"],["-95.8613507","30.0403073"],["-95.8636575","30.0412691"],["-95.8644263","30.0416371"],["-95.8652398","30.0420531"],["-95.86619","30.0425656"],["-95.8673319","30.0432346"],["-95.8701382","30.0450728"],["-95.8842615","30.0544806"],["-95.8852917","30.0551204"],["-95.8862065","30.0556173"],["-95.8876503","30.0562636"],["-95.8886985","30.0566836"],["-95.9104366","30.0639291"],["-95.9112589","30.0642369"],["-95.9121061","30.0645785"],["-95.9130552","30.065008"],["-95.91883","30.0678704"],["-95.9201312","30.0684742"],["-95.921083","30.0688248"],["-95.9221183","30.0691115"],["-95.9227216","30.0692567"],["-95.9232498","30.0693593"],["-95.9246987","30.0695444"],["-95.9283098","30.0699606"],["-95.9401106","30.0711938"],["-95.9483139","30.0722131"],["-95.9544077","30.0735299"],["-95.9821911","30.0802937"],["-95.9832342","30.0804764"],["-95.9843765","30.0806069"],["-95.9940927","30.0808351"],["-95.9952793","30.0809211"],["-95.9962141","30.0810319"],["-95.997147","30.0811879"],["-95.9982596","30.0814346"],["-95.9996322","30.0818324"],["-96.0007242","30.0822237"],["-96.0018338","30.0827016"],["-96.0140629","30.088575"],["-96.0152267","30.0890875"],["-96.0169165","30.0896823"],["-96.0179978","30.0899895"],["-96.0191682","30.0902337"],["-96.0201911","30.0903927"],["-96.0211809","30.090511"],["-96.0228739","30.0905851"],["-96.0254291","30.0905848"],["-96.0263673","30.0906283"],["-96.0271926","30.0907109"],["-96.0281428","30.0908709"],["-96.0292121","30.0911391"],["-96.0297088","30.091298"],["-96.0300668","30.0914224"],["-96.0304948","30.0916143"],["-96.0323251","30.0925962"],["-96.0367115","30.095349"],["-96.0378608","30.0960945"],["-96.038696","30.096728"],["-96.0393484","30.0972472"],["-96.0398496","30.097698"],["-96.0439292","30.1021755"],["-96.0484035","30.1072848"],["-96.0494549","30.1084005"],["-96.0501197","30.1090369"],["-96.0508772","30.1096321"],["-96.0517181","30.1102671"],["-96.0526482","30.110819"],["-96.0533072","30.1111562"],["-96.0539528","30.111464"],["-96.054524","30.1117009"],["-96.0550518","30.111895"],["-96.0556168","30.1120816"],["-96.056259","30.1122641"],["-96.0568983","30.1124284"],["-96.0574861","30.1125444"],["-96.05813","30.1126512"],["-96.0591138","30.112766"],["-96.0701598","30.1138962"],["-96.0743211","30.1143486"],["-96.0766259","30.1146746"],["-96.0783668","30.1150461"],["-96.0826624","30.116113"],["-96.1384054","30.1298804"],["-96.1398629","30.1301456"],["-96.1407546","30.1302507"],["-96.1413995","30.130306"],["-96.1512269","30.1306388"],["-96.1782966","30.1301456"],["-96.1792163","30.1301149"],["-96.1807929","30.1299886"],["-96.1943945","30.128794"],["-96.1953524","30.1287408"],["-96.1963645","30.1287211"],["-96.197337","30.1287827"],["-96.1983144","30.1289861"],["-96.2012875","30.129849"],["-96.2031771","30.1303859"],["-96.204143","30.1306935"],["-96.2077667","30.1317522"],["-96.2094084","30.1321902"],["-96.2104329","30.1323663"],["-96.2108955","30.1323957"],["-96.2114119","30.1323877"],["-96.2136439","30.132407"],["-96.2163411","30.1321404"],["-96.2191832","30.1317887"],["-96.2250818","30.1310251"],["-96.225692","30.1309929"],["-96.2269629","30.1310449"],["-96.2314414","30.1315903"],["-96.2331406","30.1317991"],["-96.2351558","30.1320528"],["-96.2368184","30.1322784"],["-96.2382119","30.1324345"],["-96.2410698","30.1327776"],["-96.2420649","30.1330326"],["-96.2504981","30.1353037"],["-96.2510247","30.1354223"],["-96.2514577","30.1355034"],["-96.2519542","30.1355766"],["-96.2523847","30.1356282"],["-96.2533263","30.135694"],["-96.253758","30.1357103"],["-96.2544779","30.1356934"],["-96.2550149","30.1356565"],["-96.2597088","30.1350276"],["-96.2603121","30.1349451"],["-96.2613691","30.134808"],["-96.2617266","30.1347907"],["-96.2622169","30.1347692"],["-96.2628759","30.1347846"],["-96.2635804","30.1348245"],["-96.2642325","30.1348916"],["-96.2647396","30.1349619"],["-96.2652924","30.1350741"],["-96.2659857","30.1352497"],["-96.2674081","30.1357197"],["-96.2698908","30.136636"],["-96.2714175","30.1372263"],["-96.2768968","30.1393087"],["-96.2787523","30.1400033"],["-96.2797396","30.1403706"],["-96.2817577","30.1411325"],["-96.2822251","30.1412951"],["-96.282627","30.1414046"],["-96.282869","30.1414564"],["-96.2832783","30.1415088"],["-96.2836079","30.1415458"],["-96.2839914","30.1415649"],["-96.2843142","30.1415699"],["-96.2847614","30.1415443"],["-96.3039688","30.1399814"],["-96.3069588","30.139739"],["-96.334939","30.1366363"],["-96.3358898","30.1365367"],["-96.3363382","30.1365177"],["-96.3367719","30.1365109"],["-96.3373093","30.1365316"],["-96.3464732","30.1371554"],["-96.348427","30.137333"],["-96.3490873","30.1374435"],["-96.3495493","30.1375614"],["-96.3499627","30.1376814"],["-96.3502907","30.137798"],["-96.3524157","30.1386595"],["-96.3591714","30.1414103"],["-96.3602591","30.1418844"],["-96.360874","30.1422288"],["-96.3616311","30.1426699"],["-96.3621642","30.1429721"],["-96.3625063","30.1431233"],["-96.3628636","30.1432434"],["-96.3632275","30.1433563"],["-96.3633168","30.1434185"],["-96.3633561","30.1434539"],["-96.3634059","30.1435164"],["-96.3634367","30.1435882"],["-96.3634576","30.1436497"],["-96.363449","30.1437637"],["-96.363367","30.1438801"],["-96.3632479","30.1440051"],["-96.3627051","30.144522"],["-96.3625074","30.1447884"],["-96.3623943","30.1448979"],["-96.3621875","30.1450955"],["-96.3619079","30.1453858"],["-96.3617937","30.1455271"],["-96.3617193","30.1456455"],["-96.3616793","30.1457218"],["-96.361646","30.1457905"],["-96.3615973","30.1459243"],["-96.3615567","30.1460866"],["-96.3615381","30.1462349"],["-96.3615355","30.1463782"],["-96.3615501","30.1465252"],["-96.3617034","30.1468956"],["-96.3617781","30.1470379"],["-96.3619191","30.1472048"],["-96.3620617","30.1473681"],["-96.3622514","30.1475172"],["-96.3642056","30.1490817"],["-96.3646552","30.1494352"],["-96.3663939","30.1508531"],["-96.3668584","30.1512436"],["-96.3672007","30.1515808"],["-96.3675014","30.1519097"],["-96.3679207","30.1524781"],["-96.3683504","30.1530878"],["-96.3690564","30.1541848"],["-96.3696844","30.1551102"],["-96.3701229","30.1556765"],["-96.3704425","30.1560407"],["-96.3711925","30.1567039"],["-96.3721393","30.1574304"],["-96.3748638","30.1593845"],["-96.3767537","30.1607133"],["-96.3767973","30.1607438"],["-96.3789016","30.1622936"],["-96.3790965","30.1624848"],["-96.379175","30.1625651"],["-96.3793722","30.1627742"],["-96.3796338","30.1630755"],["-96.3800541","30.1636613"],["-96.3802068","30.1639201"],["-96.3802531","30.1640011"],["-96.3802825","30.1640567"],["-96.3803937","30.1642886"],["-96.3805764","30.1647502"],["-96.3807278","30.1652159"],["-96.3808123","30.1655386"],["-96.3808892","30.1660963"],["-96.3810484","30.1673949"],["-96.3812567","30.1693486"],["-96.3813805","30.1700626"],["-96.3831249","30.1697722"],["-96.3837925","30.169701"],["-96.3844199","30.1698023"],["-96.3850144","30.1698925"],["-96.3851855","30.1699166"],["-96.3852266","30.1699209"],["-96.385432","30.1699213"],["-96.3856141","30.169907"],["-96.3858284","30.169876"],["-96.3866798","30.1697191"],["-96.3875585","30.1695475"],["-96.3894417","30.1691503"],["-96.3948117","30.1680508"],["-96.3959005","30.1678206"],["-96.3966836","30.1676528"],["-96.3967772","30.1676342"],["-96.3968674","30.1676114"],["-96.3973741","30.1675017"],["-96.397616","30.1674528"],["-96.3981075","30.1673479"],["-96.3980768","30.1672464"],["-96.3979567","30.1668213"],["-96.3979326","30.1667398"],["-96.3972121","30.1668862"],["-96.3970676","30.1669165"],["-96.3964838","30.1670362"],["-96.3961137","30.1670964"],["-96.396284","30.1676909"],["-96.3964401","30.168284"],["-96.3965992","30.1688392"],["-96.3969722","30.1700235"],["-96.3971613","30.1706452"],["-96.3973982","30.1715385"],["-96.3974627","30.1717461"],["-96.3975148","30.1718426"],["-96.3975514","30.1718976"],["-96.3976061","30.1719576"],["-96.3976988","30.1720309"],["-96.3977747","30.1720781"],["-96.3978887","30.1721351"],["-96.3980739","30.172201"],["-96.3987067","30.1723488"],["-96.3993287","30.1724961"],["-96.3994853","30.1725802"],["-96.3995862","30.1726543"],["-96.3996903","30.1727418"],["-96.3997735","30.1728215"],["-96.3997942","30.1729196"],["-96.3999885","30.1746138"],["-96.4000781","30.1753347"],["-96.4001207","30.1756255"],["-96.4001601","30.1758992"],["-96.4002562","30.1762973"],["-96.4013034","30.179539"],["-96.4015479","30.1802366"],["-96.4018388","30.1809344"],["-96.4019743","30.1812285"],["-96.4037449","30.1850949"],["-96.4060363","30.1900883"],["-96.4065086","30.1911344"],["-96.4067892","30.1917343"],["-96.4069845","30.1920366"],["-96.4072659","30.1923425"],["-96.4074361","30.1924827"],["-96.4076751","30.1926587"],["-96.407877","30.1927714"],["-96.4082228","30.1929405"],["-96.4085925","30.1930579"],["-96.408742","30.1930879"],["-96.4088666","30.1931616"],["-96.4089626","30.1932407"],["-96.4090233","30.1933483"],["-96.4090611","30.1935132"],["-96.4090331","30.1937833"],["-96.4089877","30.1942565"],["-96.4089743","30.1946095"],["-96.4089718","30.1949351"],["-96.4089925","30.1952774"],["-96.4090317","30.1955621"],["-96.4091074","30.1959549"],["-96.4092188","30.19618"],["-96.4093505","30.1965816"],["-96.4095456","30.197107"],["-96.4101909","30.1982679"],["-96.4164282","30.2080275"],["-96.4184361","30.2111923"],["-96.4194392","30.2126782"],["-96.4210368","30.2149509"],["-96.4216366","30.215769"],["-96.430746","30.2281672"],["-96.4309505","30.228424"],["-96.4312585","30.2287691"],["-96.4316794","30.2292047"],["-96.4379076","30.2353353"],["-96.4386523","30.2360258"],["-96.4392969","30.23671"],["-96.4424517","30.2397937"],["-96.4429891","30.2403239"],["-96.4435248","30.2408693"],["-96.4502721","30.2482724"],["-96.4510385","30.2491498"],["-96.451796","30.249937"],["-96.4519823","30.2501346"],["-96.4568347","30.2550102"],["-96.4612145","30.2593676"],["-96.4635434","30.2616408"],["-96.4729486","30.270871"],["-96.4755091","30.2732814"],["-96.476051","30.2737532"],["-96.4807448","30.2778834"],["-96.4833556","30.2801152"],["-96.4854529","30.2818787"],["-96.4879267","30.2839581"],["-96.4889026","30.2848152"],["-96.4894462","30.2852609"],["-96.4912908","30.2868555"],["-96.4922617","30.2877072"],["-96.4959954","30.2909865"],["-96.4976004","30.2923998"],["-96.5049634","30.2982767"],["-96.5061335","30.2993487"],["-96.5067098","30.3000434"],["-96.5071627","30.3007521"],["-96.5076244","30.3016152"],["-96.5081979","30.3027657"],["-96.5087646","30.3039072"],["-96.5093176","30.3050496"],["-96.5105697","30.307832"],["-96.510775","30.3084725"],["-96.5108573","30.3091061"],["-96.5108441","30.3097588"],["-96.5107279","30.3104408"],["-96.5104607","30.3112731"],["-96.50995","30.3125268"],["-96.5093196","30.3141367"],["-96.5077723","30.3177246"],["-96.5075666","30.3183326"],["-96.5074684","30.3187422"],["-96.5073859","30.3191647"],["-96.5073316","30.3195716"],["-96.5073279","30.3199409"],["-96.5073461","30.3202965"],["-96.5073921","30.3206721"],["-96.5074595","30.321034"],["-96.5080369","30.3230307"],["-96.5083205","30.3236695"],["-96.5085964","30.3241543"],["-96.5089225","30.3245724"],["-96.5092396","30.3249315"],["-96.5097028","30.3253383"],["-96.510047","30.3255848"],["-96.5104173","30.3258236"],["-96.5105064","30.3258199"],["-96.5107866","30.3259593"],["-96.5111183","30.3261118"],["-96.5113502","30.3262089"],["-96.5115528","30.3262838"],["-96.5117676","30.3263648"],["-96.5118203","30.3264348"],["-96.5136201","30.3270108"],["-96.5144572","30.3273786"],["-96.5151604","30.3277505"],["-96.5157253","30.3281342"],["-96.5162866","30.3285727"],["-96.5168074","30.3291215"],["-96.5172683","30.3296569"],["-96.517574","30.3300769"],["-96.5189397","30.332092"],["-96.5206101","30.3345782"],["-96.522297","30.3370995"],["-96.5240417","30.3396809"],["-96.5258767","30.3424102"],["-96.526223","30.3428762"],["-96.5265256","30.3433046"],["-96.5267768","30.3436679"],["-96.527167","30.3441627"],["-96.5277045","30.3447797"],["-96.5283117","30.345471"],["-96.5312646","30.3488292"],["-96.531698","30.3493467"],["-96.5320321","30.3497695"],["-96.5323133","30.3500437"],["-96.53269","30.3505136"],["-96.5347892","30.3532352"],["-96.5353753","30.3539973"],["-96.5361056","30.3549424"],["-96.5367446","30.3557293"],["-96.5373209","30.3563782"],["-96.5380361","30.3570631"],["-96.5427531","30.3612326"],["-96.5437107","30.3620658"],["-96.5441718","30.362488"],["-96.5447135","30.3629849"],["-96.5457413","30.3639143"],["-96.5468551","30.3650087"],["-96.5551078","30.3743916"],["-96.5565126","30.3760762"],["-96.5573056","30.3772377"],["-96.5582599","30.3787418"],["-96.5599344","30.3815317"],["-96.5604619","30.3824241"],["-96.5609371","30.3832171"],["-96.5618268","30.384371"],["-96.5623286","30.3849091"],["-96.5650094","30.3879096"],["-96.5658319","30.3888446"],["-96.5661097","30.3891498"],["-96.5662365","30.389285"],["-96.5665171","30.3895854"],["-96.5675612","30.3908046"],["-96.5679356","30.3912063"],["-96.5683806","30.3916102"],["-96.5688633","30.39198"],["-96.5693056","30.3922722"],["-96.5696576","30.3924881"],["-96.5756609","30.3963757"],["-96.5757812","30.3964512"],["-96.5925872","30.4073134"],["-96.5940535","30.4082391"],["-96.6114672","30.4194101"],["-96.6129624","30.4201703"],["-96.619261","30.4233776"],["-96.6321131","30.4304218"],["-96.6354826","30.4322433"],["-96.6366544","30.4327058"],["-96.6480708","30.4364523"],["-96.6488335","30.4367265"],["-96.6496144","30.4371557"],["-96.6502486","30.4376046"],["-96.6507726","30.4380644"],["-96.6512522","30.4385575"],["-96.6516664","30.4391357"],["-96.6557569","30.4464063"],["-96.6572832","30.4493424"],["-96.6604247","30.4556637"],["-96.6616236","30.4580793"],["-96.6631242","30.4611594"],["-96.6649268","30.4648561"],["-96.6653514","30.4657333"],["-96.6656726","30.4664512"],["-96.6658778","30.4671401"],["-96.6660197","30.4679152"],["-96.6660674","30.4685787"],["-96.6660455","30.4692549"],["-96.6659556","30.4700337"],["-96.6646018","30.4767241"],["-96.6645179","30.4771011"],["-96.6644438","30.4776153"],["-96.6644294","30.4783307"],["-96.6644957","30.4790234"],["-96.6646049","30.479708"],["-96.664782","30.4802768"],["-96.6649486","30.4807611"],["-96.665135","30.4812417"],["-96.6657915","30.4823757"],["-96.6666628","30.483873"],["-96.6738891","30.4962103"],["-96.6750933","30.4983584"],["-96.6755331","30.4990577"],["-96.677724","30.5028755"],["-96.6792814","30.5054687"],["-96.6796595","30.5061697"],["-96.6801731","30.5070348"],["-96.6812274","30.5088085"],["-96.6816001","30.5094372"],["-96.682959","30.5117922"],["-96.68398","30.5136369"],["-96.68425","30.5142075"],["-96.6845016","30.5148546"],["-96.6848447","30.5158796"],["-96.6851879","30.5172897"],["-96.6853026","30.5180726"],["-96.6853592","30.518643"],["-96.6856139","30.5244949"],["-96.6856224","30.5248215"],["-96.6856372","30.5251944"],["-96.6856831","30.5258271"],["-96.6856918","30.5265763"],["-96.6857024","30.5268954"],["-96.6857856","30.5275902"],["-96.6860108","30.5285416"],["-96.6861417","30.5289336"],["-96.686266","30.5292145"],["-96.6865886","30.5298736"],["-96.6879131","30.5321268"],["-96.6883486","30.5327631"],["-96.6887366","30.5332068"],["-96.6899713","30.5342999"],["-96.6908115","30.5349862"],["-96.6943305","30.5378693"],["-96.6949758","30.5382909"],["-96.7051808","30.5438904"],["-96.7145411","30.5490262"],["-96.7158255","30.5497229"],["-96.7165119","30.5500902"],["-96.7171739","30.5505673"],["-96.7179414","30.5512033"],["-96.7190006","30.5522709"],["-96.773436","30.6094563"],["-96.7960605","30.6353542"],["-96.8055856","30.6456627"],["-96.8063184","30.6463594"],["-96.8069019","30.6468444"],["-96.8084565","30.6480019"],["-96.816561","30.6539667"],["-96.8173373","30.6546114"],["-96.8177227","30.6550431"],["-96.8181216","30.6555497"],["-96.8184424","30.65608"],["-96.8187686","30.6566587"],["-96.8190701","30.6573119"],["-96.8194357","30.6581857"],["-96.8201011","30.6597103"],["-96.820697","30.6610949"],["-96.8213337","30.662608"],["-96.8214482","30.6629864"],["-96.8215478","30.6633984"],["-96.8216309","30.6640124"],["-96.821805","30.6659549"],["-96.8221688","30.6699078"],["-96.8222994","30.6704856"],["-96.8224455","30.6709828"],["-96.8226314","30.6715006"],["-96.8228451","30.6719745"],["-96.823104","30.6724591"],["-96.8380246","30.6940487"],["-96.8410221","30.6983387"],["-96.8504122","30.7115592"],["-96.8523023","30.7141407"],["-96.8548411","30.7135185"],["-96.8554302","30.7133226"],["-96.8594373","30.7116746"],["-96.8602687","30.7113334"],["-96.8612962","30.7109899"],["-96.8628245","30.7105054"],["-96.8699288","30.7082179"],["-96.8708407","30.7078812"],["-96.8717721","30.7075139"],["-96.872159","30.707472"],["-96.8724821","30.7075066"],["-96.8727492","30.7076067"],["-96.873224","30.7080085"],["-96.8744751","30.7099679"],["-96.8751605","30.7109767"],["-96.8765881","30.7125267"],["-96.8806326","30.71655"],["-96.8812304","30.7170299"],["-96.8886716","30.7222222"],["-96.890149","30.7233767"],["-96.8907516","30.7240228"],["-96.8919866","30.7257767"],["-96.8929454","30.7271781"],["-96.8953605","30.7306629"],["-96.8972754","30.7334513"],["-96.8982313","30.7348441"],["-96.8997488","30.7371132"],["-96.9008765","30.7390763"],["-96.9018548","30.7408103"],["-96.9026922","30.742279"],["-96.9030241","30.7428668"],["-96.9032206","30.7432384"],["-96.9035195","30.7438353"],["-96.9057026","30.7488349"],["-96.9068298","30.7514137"],["-96.908061","30.7542302"],["-96.9084779","30.7552445"],["-96.9086698","30.755956"],["-96.9088284","30.7570569"],["-96.9091551","30.7602799"],["-96.909357","30.761762"],["-96.9097319","30.7633461"],["-96.9140013","30.7772693"],["-96.9146893","30.7796219"],["-96.9191011","30.8009035"],["-96.9194179","30.8020577"],["-96.9197706","30.8028492"],["-96.9203027","30.8037852"],["-96.920781","30.8043967"],["-96.9287755","30.8115343"],["-96.9320756","30.8144554"],["-96.9336576","30.8158722"],["-96.9342341","30.8164991"],["-96.9350624","30.817739"],["-96.9363772","30.8207594"],["-96.9366243","30.8214521"],["-96.9396968","30.8286106"],["-96.9404453","30.8297202"],["-96.9409222","30.8302426"],["-96.9414984","30.8308224"],["-96.9419715","30.8312402"],["-96.9434882","30.8325248"],["-96.9522022","30.8398467"],["-96.9550806","30.8422826"],["-96.9571037","30.8439833"],["-96.9580599","30.8446465"],["-96.9591016","30.8453227"],["-96.9606506","30.8460219"],["-96.9637411","30.8469366"],["-96.9653937","30.8474327"],["-96.969229","30.8485892"],["-96.9698225","30.8487867"],["-96.9704088","30.8490454"],["-96.9708234","30.8492913"],["-96.9711402","30.8495131"],["-96.9714076","30.8497439"],["-96.9717175","30.850055"],["-96.9720953","30.8505802"],["-96.9723337","30.8509619"],["-96.9727635","30.8516248"],["-96.973014","30.8519095"],["-96.9732237","30.8520748"],["-96.9735366","30.8521956"],["-96.9755805","30.8528317"],["-96.9770843","30.8532546"],["-96.9772365","30.8533168"],["-96.9767307","30.8546896"],["-96.976405","30.8555714"],["-96.9745566","30.8605335"],["-96.9742006","30.8614779"],["-96.9732756","30.86402"],["-96.9731378","30.8646021"],["-96.9730177","30.8651984"],["-96.9727451","30.8684035"],["-96.9725613","30.870862"],["-96.9725713","30.8718076"],["-96.9743105","30.880018"],["-96.9747989","30.8822034"],["-96.974812","30.882256"],["-96.9758004","30.8868945"],["-96.976148","30.8884957"],["-96.9764694","30.8900404"],["-96.9770833","30.8929435"],["-96.9772093","30.8934642"],["-96.9772956","30.8939669"],["-96.9783843","30.8987191"],["-96.9794216","30.9029861"],["-96.9799953","30.9055562"],["-96.9809881","30.9107399"],["-96.981702","30.9142737"],["-96.9818722","30.9147887"],["-96.9819078","30.9149214"],["-96.9819136","30.9149486"],["-96.9823945","30.9171934"],["-96.9826101","30.9183626"],["-96.9826653","30.9192301"],["-96.9834988","30.9484244"],["-96.9836192","30.9493212"],["-96.9838713","30.9502448"],["-96.98538","30.9548494"],["-96.9860105","30.9567298"],["-96.9871996","30.9604474"],["-96.9876269","30.9617297"],["-96.9879499","30.9627538"],["-96.9882806","30.9636838"],["-96.9892183","30.9665591"],["-96.9896776","30.9681358"],["-96.9899235","30.9694087"],["-96.9931341","30.9927197"],["-96.9935195","30.9955938"],["-96.9947217","31.0045195"],["-96.994958","31.0068705"],["-96.9950518","31.0078505"],["-96.9950019","31.0089795"],["-96.9949554","31.0096868"],["-96.9946311","31.0111557"],["-96.9943756","31.0121833"],["-96.9928579","31.0158291"],["-96.9921752","31.017509"],["-96.9899786","31.022866"],["-96.9886675","31.0260636"],["-96.9861735","31.0318933"],["-96.9734373","31.0601413"],["-96.9731829","31.0609968"],["-96.9730956","31.0614795"],["-96.9730064","31.0625715"],["-96.9730841","31.0635758"],["-96.9732525","31.0642464"],["-96.9735245","31.0651142"],["-96.9739249","31.0659612"],["-96.980079","31.0751751"],["-96.9803398","31.0755809"],["-96.9805153","31.0759003"],["-96.980674","31.0762416"],["-96.980802","31.0765766"],["-96.9809064","31.0769187"],["-96.9809853","31.0772636"],["-96.981042","31.0776192"],["-96.9810728","31.0780077"],["-96.9810758","31.078343"],["-96.9810026","31.081465"],["-96.9809624","31.0831325"],["-96.9806572","31.0976061"],["-96.9806165","31.1005443"],["-96.9806562","31.1009834"],["-96.9807013","31.1013361"],["-96.9807842","31.1017827"],["-96.9808974","31.1022806"],["-96.9810706","31.1028809"],["-96.9812167","31.1032917"],["-96.9813776","31.1036863"],["-96.9816371","31.1042394"],["-96.9828112","31.1062251"],["-96.9852536","31.110123"],["-97.0037011","31.1368319"],["-97.0044305","31.1379055"],["-97.0083873","31.1436365"],["-97.0087563","31.1442095"],["-97.0176296","31.1593462"],["-97.032889","31.1945207"],["-97.0340273","31.1971735"],["-97.0341494","31.1974753"],["-97.037342","31.204824"],["-97.0377467","31.2058192"],["-97.0378638","31.2061362"],["-97.0379331","31.2063482"],["-97.0379979","31.2065597"],["-97.0380503","31.2067647"],["-97.0380985","31.2069766"],["-97.0381347","31.207162"],["-97.0381642","31.2073184"],["-97.0381913","31.2074787"],["-97.0382161","31.2076751"],["-97.0382395","31.207919"],["-97.0382576","31.2082078"],["-97.0383155","31.2093839"],["-97.0383667","31.2100219"],["-97.0384408","31.2105406"],["-97.0385117","31.2109603"],["-97.0407467","31.2222295"],["-97.0412472","31.2235779"],["-97.0416091","31.2243386"],["-97.0418354","31.2247821"],["-97.0420437","31.2251692"],["-97.0423587","31.2256923"],["-97.0429251","31.2265473"],["-97.0513185","31.2386284"],["-97.0527656","31.2406967"],["-97.0579292","31.2481123"],["-97.070418","31.2678153"],["-97.0764328","31.2773788"],["-97.0772777","31.2789616"],["-97.0780046","31.2805294"],["-97.0786682","31.2822033"],["-97.0794341","31.2842244"],["-97.0800756","31.2858501"],["-97.0806223","31.2873651"],["-97.0808583","31.28827"],["-97.0825083","31.3016107"],["-97.0858689","31.3227567"],["-97.0860729","31.3242213"],["-97.0861584","31.3255299"],["-97.0860877","31.3268178"],["-97.0815271","31.3712744"],["-97.0815311","31.3719179"],["-97.0815609","31.3724049"],["-97.0816212","31.3728315"],["-97.0817249","31.3734167"],["-97.0818626","31.3740233"],["-97.0821243","31.3748727"],["-97.0824062","31.3758036"],["-97.0831861","31.3784049"],["-97.0834377","31.3791621"],["-97.0837509","31.3799066"],["-97.0843362","31.3811285"],["-97.0853849","31.3829091"],["-97.086615","31.3847914"],["-97.0898916","31.389971"],["-97.0906336","31.391433"],["-97.091189","31.3926423"],["-97.0916153","31.3936773"],["-97.0921531","31.395256"],["-97.0965257","31.4086216"],["-97.0971641","31.4106182"],["-97.0983948","31.4144785"],["-97.0992764","31.4169863"],["-97.1010413","31.4223766"],["-97.1015417","31.4239293"],["-97.1027693","31.4278274"],["-97.103539","31.430515"],["-97.1037855","31.4313178"],["-97.1040547","31.4320896"],["-97.1045714","31.4334781"],["-97.1046803","31.4337589"],["-97.1047982","31.4340806"],["-97.1051738","31.435192"],["-97.1054284","31.4359618"],["-97.1058277","31.4371088"],["-97.1063825","31.4388853"],["-97.1067186","31.4399174"],["-97.107642","31.4430049"],["-97.1077705","31.4434352"],["-97.1081267","31.4446855"],["-97.108564","31.4462894"],["-97.1088941","31.4480041"],["-97.1093111","31.450328"],["-97.1093292","31.4504596"],["-97.1096605","31.4521776"],["-97.1114971","31.4614253"],["-97.1118958","31.4627542"],["-97.1125623","31.4644677"],["-97.1133726","31.465767"],["-97.1169489","31.4709588"],["-97.1175892","31.472429"],["-97.1194227","31.4787971"],["-97.1197284","31.4800062"],["-97.1238095","31.4945916"],["-97.1239264","31.4950462"],["-97.1240653","31.4955835"],["-97.1242555","31.496223"],["-97.1244574","31.4970392"],["-97.1245156","31.4972275"],["-97.1247423","31.4980415"],["-97.1249775","31.4988322"],["-97.1256219","31.5011904"],["-97.125737","31.5015806"],["-97.126169","31.5031781"],["-97.126664","31.5049004"],["-97.126845","31.5056222"],["-97.126928","31.5059377"],["-97.1275381","31.5081343"],["-97.1286463","31.5081076"],["-97.1288103","31.5080799"],["-97.1290134","31.5080241"],["-97.1291339","31.5079802"],["-97.1292846","31.5079094"],["-97.1293953","31.5078473"],["-97.1295098","31.5077738"],["-97.1299508","31.5074198"],["-97.1315066","31.5060546"],["-97.1316713","31.5058986"],["-97.1317852","31.5058031"],["-97.1319154","31.5057127"],["-97.1320483","31.5056402"],["-97.1322437","31.5055573"],["-97.1323896","31.5055132"],["-97.1325307","31.5054821"],["-97.1327094","31.5054594"],["-97.132862","31.5054532"],["-97.1346122","31.5054425"],["-97.1351232","31.5054763"],["-97.1356927","31.5055498"],["-97.1360419","31.5056207"],["-97.1362521","31.5056728"],["-97.1365195","31.505749"],["-97.136896","31.5058812"],["-97.1419634","31.507817"],["-97.1421898","31.5080256"],["-97.1422388","31.5080959"],["-97.1422699","31.5081633"],["-97.1422787","31.5082179"],["-97.1422809","31.5083254"],["-97.1414402","31.5098449"],["-97.1411819","31.5103141"],["-97.1392604","31.5139446"],["-97.1390303","31.5143643"],["-97.1388177","31.5148326"],["-97.1384186","31.5155595"],["-97.1376131","31.5169431"],["-97.1368257","31.5183147"],["-97.1363163","31.5193215"],["-97.1354389","31.5212025"],["-97.1334436","31.52557"],["-97.1316344","31.5295751"],["-97.1313975","31.5301252"],["-97.1310653","31.5307981"],["-97.1306908","31.5318067"],["-97.1306137","31.5319823"],["-97.1303327","31.5325672"],["-97.130187","31.5328698"],["-97.130127","31.5330121"],["-97.130035","31.5332646"],["-97.1298555","31.5336309"],["-97.1297353","31.5338513"],["-97.129357","31.5347812"],["-97.1291367","31.5354815"],["-97.1290946","31.5356391"],["-97.1299045","31.5362925"],["-97.1388273","31.5437641"],["-97.1394894","31.5443287"],["-97.1412856","31.5458464"],["-97.141919","31.546373"],["-97.1441331","31.5482014"],["-97.1447081","31.5487018"],["-97.1448434","31.5488127"],["-97.144944","31.5489049"],["-97.1450379","31.5490033"],["-97.1451325","31.5491263"],["-97.1452088","31.5492543"],["-97.1452954","31.549404"],["-97.1454161","31.549579"],["-97.1455409","31.5497251"],["-97.145642","31.5498433"],["-97.145768","31.549961"],["-97.1459255","31.5500891"],["-97.1461078","31.5501917"],["-97.1466865","31.5496465"],["-97.147131","31.5492654"],["-97.1470481","31.549173"],["-97.1460394","31.5501165"],["-97.1461061","31.5501928"],["-97.1466922","31.5496418"],["-97.1471301","31.5492664"],["-97.1470052","31.5490978"],["-97.1466297","31.5487514"],["-97.1457149","31.5479556"],["-97.1428556","31.5455535"],["-97.142648","31.545381"],["-97.1422498","31.5450479"],["-97.1318864","31.5362916"],["-97.1303914","31.5351186"],["-97.1304819","31.5345563"],["-97.1305446","31.5341746"],["-97.1306792","31.5335972"],["-97.1307599","31.5332252"],["-97.1307901","31.5328978"],["-97.1308339","31.5326947"],["-97.1308871","31.5324787"],["-97.1310425","31.5319242"],["-97.1312514","31.5312786"],["-97.1313799","31.5309"],["-97.1315508","31.5302856"],["-97.1317881","31.5297085"],["-97.1328538","31.5273279"],["-97.1333934","31.526129"],["-97.1337869","31.5252805"],["-97.1339532","31.5249051"],["-97.1362426","31.5198699"],["-97.1367116","31.5189202"],["-97.1371332","31.518089"],["-97.1389828","31.5149342"],["-97.1395246","31.5140063"],["-97.1400404","31.513139"],["-97.1416347","31.5106153"],["-97.1419967","31.5100509"],["-97.1426257","31.5090325"],["-97.1427903","31.5087497"],["-97.1432615","31.50784"],["-97.1435535","31.5072259"],["-97.1440238","31.5061244"],["-97.1442919","31.5054982"],["-97.1455067","31.5028162"],["-97.146215","31.5014973"],["-97.1466297","31.5007614"],["-97.1470905","31.4999638"],["-97.151124","31.4932088"],["-97.1517249","31.4921584"],["-97.1519432","31.4917746"],["-97.1582463","31.4811107"],["-97.1597863","31.4787449"],["-97.160116","31.4782279"],["-97.1604929","31.4776176"],["-97.1696048","31.4628895"],["-97.1757113","31.4525049"],["-97.1873246","31.4338178"],["-97.1935064","31.4229524"],["-97.1940021","31.4221573"],["-97.1949261","31.4207228"],["-97.1970969","31.4174489"],["-97.198067","31.4159017"],["-97.2029926","31.4071552"],["-97.2052474","31.4029527"],["-97.2058987","31.4016253"],["-97.2101496","31.3918803"],["-97.2107807","31.390407"],["-97.2115851","31.3885403"],["-97.2118376","31.3879429"],["-97.2124666","31.3862998"],["-97.2127814","31.3852958"],["-97.212971","31.3845876"],["-97.213157","31.383827"],["-97.2159089","31.3701053"],["-97.2161176","31.3689424"],["-97.2166681","31.3660084"],["-97.2173032","31.3630786"],["-97.2182285","31.3585967"],["-97.2184002","31.3577851"],["-97.2191024","31.3545755"],["-97.2195614","31.3525165"],["-97.2214375","31.343699"],["-97.2217995","31.3418033"],["-97.2220115","31.3410161"],["-97.2222169","31.340292"],["-97.2224048","31.3396407"],["-97.2229537","31.338066"],["-97.223348","31.3370931"],["-97.2238101","31.3360303"],["-97.2248862","31.3337884"],["-97.2251498","31.3332145"],["-97.2265986","31.3302428"],["-97.2270096","31.3294327"],["-97.2277912","31.3280342"],["-97.2281606","31.3274438"],["-97.2289758","31.326287"],["-97.2293872","31.3257614"],["-97.2298753","31.3251674"],["-97.2302802","31.3247088"],["-97.2308706","31.3240709"],["-97.2314256","31.3235206"],["-97.2320047","31.3229868"],["-97.2323743","31.3226437"],["-97.2329329","31.3221529"],["-97.2352982","31.3203346"],["-97.2359937","31.3198115"],["-97.2365738","31.3193631"],["-97.2370231","31.3190049"],["-97.2374048","31.3186677"],["-97.2377552","31.318341"],["-97.2383717","31.3176624"],["-97.238671","31.3172975"],["-97.2390234","31.3168021"],["-97.2417286","31.3123483"],["-97.2423094","31.3113852"],["-97.245982","31.3053242"],["-97.2461592","31.3050425"],["-97.2465059","31.3044985"],["-97.2467599","31.3040862"],["-97.2470875","31.3035893"],["-97.2474765","31.3030057"],["-97.2480679","31.3020697"],["-97.2500294","31.2991734"],["-97.2516553","31.2966944"],["-97.2522497","31.2957465"],["-97.2528074","31.2947981"],["-97.2534673","31.2935075"],["-97.2537016","31.2929983"],["-97.2538964","31.2925581"],["-97.2541097","31.2920758"],["-97.2543917","31.2913691"],["-97.2547906","31.2903666"],["-97.2550311","31.2897188"],["-97.2554899","31.2884034"],["-97.255771","31.287644"],["-97.2562169","31.2864789"],["-97.2566277","31.2854895"],["-97.2568997","31.2849039"],["-97.2573662","31.2839954"],["-97.2578558","31.2830944"],["-97.2583064","31.2823154"],["-97.258674","31.281756"],["-97.259845","31.2800918"],["-97.2604877","31.2792248"],["-97.2643802","31.2744467"],["-97.2658582","31.2725578"],["-97.2674624","31.270069"],["-97.2828596","31.2436009"],["-97.2844841","31.2406968"],["-97.284938","31.2399539"],["-97.2857135","31.2385738"],["-97.2871445","31.2361024"],["-97.2876799","31.2351911"],["-97.2884183","31.233886"],["-97.2890762","31.232657"],["-97.2897059","31.2313377"],["-97.2904066","31.2298221"],["-97.2912161","31.2281232"],["-97.291886","31.2269682"],["-97.2926932","31.2256174"],["-97.2939991","31.2237743"],["-97.2958197","31.2212112"],["-97.2963581","31.2204222"],["-97.2972109","31.2190074"],["-97.2986098","31.2165809"],["-97.3002616","31.2136453"],["-97.3011038","31.2121081"],["-97.3018532","31.2105237"],["-97.3025586","31.2088377"],["-97.3029928","31.207685"],["-97.3043327","31.2038103"],["-97.3046385","31.2029467"],["-97.30488","31.2023654"],["-97.3052644","31.2015202"],["-97.3058481","31.200321"],["-97.3083475","31.1953856"],["-97.3092148","31.1933344"],["-97.3111263","31.1884507"],["-97.3123689","31.1853183"],["-97.3134702","31.1825467"],["-97.3138913","31.1813482"],["-97.3142376","31.1803659"],["-97.3144945","31.1796371"],["-97.3153548","31.1773981"],["-97.3157754","31.1761836"],["-97.3160305","31.1753544"],["-97.3165779","31.1736262"],["-97.3169295","31.1726449"],["-97.3179554","31.1700933"],["-97.3184527","31.1689545"],["-97.3196462","31.1663897"],["-97.3203687","31.1646766"],["-97.3227498","31.158569"],["-97.3232296","31.1573419"],["-97.3243132","31.1545323"],["-97.3248006","31.1531916"],["-97.3251554","31.152038"],["-97.3262988","31.1486703"],["-97.3312417","31.1358569"],["-97.3317181","31.1345745"],["-97.3334602","31.1301547"],["-97.3336809","31.1297523"],["-97.333942","31.1293423"],["-97.3342575","31.1288744"],["-97.3345409","31.1284749"],["-97.3349622","31.1279826"],["-97.3353954","31.1275687"],["-97.3358774","31.1271987"],["-97.3368228","31.1265934"],["-97.3383546","31.1259683"],["-97.3393308","31.1256986"],["-97.3411474","31.125327"],["-97.34207","31.1251659"],["-97.3430906","31.1249688"],["-97.3459323","31.1244473"],["-97.3472826","31.1241659"],["-97.347911","31.123995"],["-97.3485058","31.1237821"],["-97.3490535","31.1235655"],["-97.3497272","31.1232169"],["-97.3506942","31.1225852"],["-97.3513512","31.1220939"],["-97.3518","31.1216656"],["-97.3523253","31.1210646"],["-97.3527708","31.1204939"],["-97.3530474","31.1199907"],["-97.3532495","31.1196266"],["-97.3534052","31.1193198"],["-97.3535581","31.1189729"],["-97.3537745","31.1184223"],["-97.3539949","31.1178477"],["-97.3542311","31.1172462"],["-97.3548134","31.1156893"],["-97.3553848","31.1141701"],["-97.3559735","31.1125797"],["-97.3573174","31.108984"],["-97.3580983","31.1070309"],["-97.3584909","31.10601"],["-97.3589504","31.1047859"],["-97.3594847","31.1035417"],["-97.3597437","31.1030014"],["-97.3600648","31.1024081"],["-97.3605681","31.1015469"],["-97.3608973","31.1010381"],["-97.3610821","31.1007811"],["-97.3612759","31.1005376"],["-97.3618847","31.0998896"],["-97.3622172","31.0995905"],["-97.3626305","31.0992428"],["-97.3636529","31.0984771"],["-97.3648501","31.0977131"],["-97.3653184","31.0974573"],["-97.3655975","31.0973175"],["-97.3665468","31.0968836"],["-97.3671187","31.0966694"],["-97.3677211","31.0964821"],["-97.3685094","31.0962634"],["-97.3704415","31.0957818"],["-97.3741501","31.0947874"],["-97.3784227","31.093552"],["-97.3805939","31.0928646"],["-97.3817304","31.0924676"],["-97.3840262","31.0916553"],["-97.3853713","31.0912577"],["-97.3919452","31.0892026"],["-97.3927865","31.0889456"],["-97.4007815","31.0864763"],["-97.4057781","31.0849206"],["-97.4062524","31.0847594"],["-97.4067999","31.0845372"],["-97.4073471","31.0842783"],["-97.4078154","31.0840235"],["-97.4081219","31.0838363"],["-97.4084257","31.0836302"],["-97.4087369","31.0834032"],["-97.4092078","31.083026"],["-97.410463","31.0819717"],["-97.4111555","31.0813993"],["-97.4224695","31.0719191"],["-97.4346977","31.0617079"],["-97.4354344","31.061208"],["-97.4363254","31.0606663"],["-97.4369963","31.0603053"],["-97.4375447","31.0600296"],["-97.4380527","31.0597885"],["-97.4386406","31.0595381"],["-97.4394808","31.0592182"],["-97.4478709","31.0563729"],["-97.4499173","31.0555967"],["-97.4522133","31.0546605"],["-97.4534893","31.0541145"],["-97.4546524","31.053586"],["-97.4586515","31.0515482"],["-97.4594876","31.0511009"],["-97.4606368","31.0504945"],["-97.4618254","31.0498526"],["-97.4644544","31.0484119"],["-97.4647748","31.0482118"],["-97.4650736","31.0480107"],["-97.4654894","31.047694"],["-97.4657767","31.0474563"],["-97.4660327","31.0472264"],["-97.4662542","31.0470155"],["-97.4664742","31.0467909"],["-97.4666562","31.0465861"],["-97.4670249","31.0461192"],["-97.4671974","31.045877"],["-97.4673438","31.0456392"],["-97.4675467","31.0452859"],["-97.4682844","31.0438969"],["-97.4685142","31.0434579"],["-97.4698166","31.0409523"],["-97.4703723","31.0398085"],["-97.4707922","31.0388665"],["-97.4713551","31.0374459"],["-97.4719131","31.0360197"],["-97.4722478","31.035134"],["-97.473132","31.0328759"],["-97.4734141","31.032265"],["-97.4739991","31.0307355"],["-97.4751311","31.0280506"],["-97.4754434","31.0274231"],["-97.4762387","31.0259048"],["-97.476903","31.0246994"],["-97.4771362","31.0243194"],["-97.4796201","31.0204243"],["-97.4810294","31.0182806"],["-97.4816559","31.0173911"],["-97.48569","31.0113602"],["-97.4868433","31.009615"],["-97.4892476","31.0060983"],["-97.492537","31.0011645"],["-97.4944245","30.9983934"],["-97.4958845","30.9961834"],["-97.4983838","30.9924888"],["-97.4998555","30.9904674"],["-97.5010998","30.9888649"],["-97.5028179","30.9868218"],["-97.5035962","30.9859406"],["-97.5068328","30.9825528"],["-97.5080899","30.9813461"],["-97.5228249","30.9684254"],["-97.52353","30.9678058"],["-97.524306","30.9671478"],["-97.5253778","30.9662364"],["-97.5287901","30.9633348"],["-97.5299589","30.9622399"],["-97.530465","30.9617371"],["-97.5346035","30.9573627"],["-97.5348957","30.9570111"],["-97.5352084","30.9566152"],["-97.5354387","30.9562872"],["-97.5356428","30.9559859"],["-97.536005","30.9554244"],["-97.5361449","30.9551819"],["-97.5362692","30.9549602"],["-97.5364162","30.9547002"],["-97.536572","30.9543771"],["-97.5369795","30.9534414"],["-97.5375078","30.9522162"],["-97.5377845","30.9515115"],["-97.5379568","30.9510259"],["-97.538191","30.9503323"],["-97.5384991","30.9493654"],["-97.5389105","30.9478882"],["-97.5389867","30.9475462"],["-97.5390538","30.9472276"],["-97.5390698","30.9471497"],["-97.5391131","30.9469244"],["-97.5397183","30.9434829"],["-97.5399444","30.9421139"],["-97.5401441","30.9408593"],["-97.5405933","30.9374699"],["-97.5408707","30.9356645"],["-97.541293","30.9334385"],["-97.5420213","30.9305118"],["-97.5428173","30.9278879"],["-97.54514","30.9211918"],["-97.5454766","30.9204877"],["-97.5457753","30.9199422"],["-97.5460858","30.9193359"],["-97.5465473","30.918559"],["-97.5469725","30.9179201"],["-97.54899","30.9154212"],["-97.559452","30.9034465"],["-97.5645607","30.8976262"],["-97.5744537","30.8862552"],["-97.5755065","30.884985"],["-97.5766164","30.8835314"],["-97.5776689","30.8819008"],["-97.5785217","30.8803004"],["-97.5798213","30.8775265"],["-97.5807698","30.875457"],["-97.5870633","30.8618166"],["-97.5887983","30.8583672"],["-97.5908174","30.8540571"],["-97.5936631","30.8476118"],["-97.6002272","30.8333448"],["-97.6020061","30.8295687"],["-97.6030482","30.827798"],["-97.6038905","30.8265169"],["-97.6093708","30.818484"],["-97.609873","30.8176583"],["-97.6105951","30.8163893"],["-97.6163818","30.8039615"],["-97.6214677","30.7919002"],["-97.6216743","30.7913416"],["-97.6219118","30.7906521"],["-97.6221964","30.789713"],["-97.6256459","30.7778194"],["-97.6260968","30.7762718"],["-97.6289308","30.7669246"],["-97.6293696","30.765647"],["-97.6298426","30.7644402"],["-97.6335576","30.7555626"],["-97.6337808","30.754994"],["-97.634063","30.7542432"],["-97.6344457","30.7531629"],["-97.6374093","30.7435161"],["-97.6378288","30.7422628"],["-97.6379947","30.7417686"],["-97.6381418","30.7413407"],["-97.6384932","30.7403248"],["-97.6391625","30.7383941"],["-97.6393743","30.7377956"],["-97.6396233","30.7371318"],["-97.6484378","30.7116477"],["-97.6496278","30.7084388"],["-97.6501172","30.7071898"],["-97.6503879","30.7065185"],["-97.6509955","30.7049323"],["-97.6512658","30.7040783"],["-97.6532233","30.6985774"],["-97.6579617","30.686548"],["-97.6589589","30.6841288"],["-97.659697","30.6823644"],["-97.6603137","30.6810339"],["-97.6607831","30.6800696"],["-97.6614576","30.6789339"],["-97.6787722","30.6509158"],["-97.679036","30.6505491"],["-97.6792261","30.6502939"],["-97.6800235","30.6493012"],["-97.6805163","30.6487906"],["-97.6809603","30.6483458"],["-97.6813842","30.6479511"],["-97.681976","30.6474085"],["-97.6828603","30.6466364"],["-97.6854622","30.6444341"],["-97.6862158","30.6437418"],["-97.6866059","30.643351"],["-97.6869433","30.6430017"],["-97.6873621","30.6425211"],["-97.6878915","30.6418489"],["-97.6883272","30.6412302"],["-97.6886723","30.6407161"],["-97.6889664","30.6402226"],["-97.6892835","30.6396275"],["-97.6895538","30.6391097"],["-97.6898715","30.6383588"],["-97.690041","30.6379056"],["-97.690226","30.6373793"],["-97.6915659","30.6329777"],["-97.6917403","30.632335"],["-97.6918169","30.6319507"],["-97.6918758","30.6314969"],["-97.6919396","30.6308108"],["-97.6919504","30.6300709"],["-97.6919268","30.6294997"],["-97.691892","30.6291219"],["-97.6918508","30.628815"],["-97.6917203","30.628094"],["-97.6916516","30.6278151"],["-97.6911364","30.6260104"],["-97.6868515","30.6107482"],["-97.6867457","30.6102851"],["-97.6866608","30.6098707"],["-97.6865485","30.6091319"],["-97.6864828","30.608478"],["-97.6864576","30.6079642"],["-97.6864451","30.6074191"],["-97.6864567","30.6068473"],["-97.6865052","30.6061649"],["-97.6865623","30.6056819"],["-97.6866365","30.6051719"],["-97.6868002","30.6043584"],["-97.6869364","30.603804"],["-97.6871876","30.6030292"],["-97.6874731","30.6022541"],["-97.690453","30.5949848"],["-97.6908737","30.5937429"],["-97.6919937","30.5897964"],["-97.6923235","30.5884601"],["-97.6925916","30.5871096"],["-97.6927796","30.5859575"],["-97.6928752","30.5849246"],["-97.6929565","30.5825242"],["-97.6927837","30.5689098"],["-97.6927313","30.5655573"],["-97.6923474","30.5378419"],["-97.6923278","30.5372953"],["-97.6922692","30.5362286"],["-97.6920846","30.5345519"],["-97.6919661","30.5337615"],["-97.6918031","30.5328817"],["-97.6911448","30.5300203"],["-97.688257","30.5180181"],["-97.686712","30.5116017"],["-97.686508","30.5108542"],["-97.6862057","30.5098513"],["-97.6857605","30.5085624"],["-97.684927","30.5063515"],["-97.684739","30.5058968"],["-97.6845777","30.5055211"],["-97.6840492","30.5043403"],["-97.6833004","30.5029705"],["-97.6812154","30.4994158"],["-97.6804216","30.4980646"],["-97.6801242","30.497552"],["-97.6798102","30.4969758"],["-97.6795009","30.4963771"],["-97.6792178","30.4957959"],["-97.6787832","30.4948227"],["-97.6783045","30.493637"],["-97.6780942","30.4930772"],["-97.6778767","30.4924434"],["-97.6770833","30.4899062"],["-97.6764216","30.4878432"],["-97.6747687","30.4825175"],["-97.6700277","30.4676784"],["-97.668898","30.4640962"],["-97.668388","30.4624822"],["-97.6668427","30.4575142"],["-97.6667375","30.4571377"],["-97.6665532","30.4563355"],["-97.6664426","30.4556866"],["-97.6663732","30.4551121"],["-97.6663239","30.4545679"],["-97.6663019","30.4538656"],["-97.6663031","30.4533858"],["-97.6663145","30.4530119"],["-97.6663508","30.4525258"],["-97.6663996","30.4520625"],["-97.6665653","30.451032"],["-97.6674906","30.4460034"],["-97.6676485","30.4452623"],["-97.6721729","30.4215327"],["-97.6724302","30.4201529"],["-97.6740423","30.4116164"],["-97.6750111","30.4065001"],["-97.6751207","30.4058327"],["-97.6751622","30.4054557"],["-97.6751824","30.4051489"],["-97.675189","30.404748"],["-97.675157","30.4039618"],["-97.675113","30.4034763"],["-97.6750411","30.4030552"],["-97.6749432","30.4025671"],["-97.6748161","30.4021055"],["-97.6746858","30.4017001"],["-97.6745819","30.4014385"],["-97.6743631","30.4009015"],["-97.6742731","30.4006805"],["-97.6740618","30.4001999"],["-97.6728928","30.3978579"],["-97.6724331","30.396921"],["-97.6721092","30.3960557"],["-97.6719921","30.395661"],["-97.6718892","30.3952507"],["-97.6717982","30.3947863"],["-97.67174","30.3943695"],["-97.6716947","30.3938344"],["-97.6716772","30.3933856"],["-97.6716777","30.3930099"],["-97.6716984","30.3926089"],["-97.6717385","30.3922197"],["-97.6717818","30.3918754"],["-97.6718831","30.3913214"],["-97.6723605","30.3892915"],["-97.6735322","30.3842543"],["-97.6741287","30.3817663"],["-97.6743816","30.3808568"],["-97.6746493","30.3800018"],["-97.6748793","30.3793972"],["-97.6750518","30.3790072"],["-97.6752535","30.378603"],["-97.67551","30.378124"],["-97.6758584","30.3775239"],["-97.6767185","30.3762079"],["-97.6779869","30.3742329"],["-97.6887456","30.3572821"],["-97.6893361","30.3563569"],["-97.6955438","30.3465452"],["-97.6997609","30.3399355"],["-97.7001707","30.3392966"],["-97.7004793","30.3387828"],["-97.7010529","30.3378753"],["-97.7017038","30.3368254"],["-97.7025835","30.335459"],["-97.7040755","30.3331304"],["-97.7043383","30.3326815"],["-97.7045472","30.332307"],["-97.7047151","30.3319818"],["-97.7048583","30.3316883"],["-97.7049973","30.3313813"],["-97.7051334","30.3310255"],["-97.7054473","30.3301525"],["-97.7057373","30.3292181"],["-97.7058486","30.3288016"],["-97.7062074","30.3269816"],["-97.7063557","30.3260996"],["-97.7064999","30.3253106"],["-97.7067045","30.323673"],["-97.7067876","30.3230582"],["-97.706872","30.3224304"],["-97.7076998","30.3163371"],["-97.7077767","30.31583"],["-97.707865","30.3154208"],["-97.7079821","30.314934"],["-97.7080927","30.3145044"],["-97.7083101","30.3138256"],["-97.7087103","30.3128067"],["-97.7089431","30.3122476"],["-97.709187","30.3117289"],["-97.7096891","30.3107705"],["-97.7099408","30.310336"],["-97.7150241","30.3023575"],["-97.7152454","30.3021045"],["-97.7156897","30.3014411"],["-97.7159349","30.3010844"],["-97.7162849","30.3005339"],["-97.7164464","30.3002777"],["-97.7168991","30.2995695"],["-97.7185219","30.2968776"],["-97.7189453","30.2961708"],["-97.7199935","30.2944891"],["-97.7243561","30.2876963"],["-97.7250194","30.2866431"],["-97.7258458","30.2853829"],["-97.7262141","30.2848229"],["-97.7265075","30.2843784"],["-97.727063","30.2835258"],["-97.7272438","30.2832608"],["-97.7274662","30.2829502"],["-97.7283051","30.2817249"],["-97.7288791","30.2808404"],["-97.7292052","30.2802596"],["-97.729905","30.2788216"],["-97.7301425","30.2782475"],["-97.7307102","30.2770052"],["-97.7310176","30.2763056"],["-97.7311203","30.2760322"],["-97.7312307","30.2756948"],["-97.7313856","30.275166"],["-97.7315303","30.2746516"],["-97.7316983","30.2740898"],["-97.731994","30.2731597"],["-97.732749","30.2711014"],["-97.7329974","30.2705813"],["-97.7331803","30.2701084"],["-97.7332732","30.2698715"],["-97.7333205","30.2697713"],["-97.7335229","30.2694368"],["-97.7336453","30.2692346"],["-97.7337902","30.2689992"],["-97.7338389","30.2689113"],["-97.7338767","30.2688332"],["-97.7339583","30.268644"],["-97.7341226","30.2683209"],["-97.7350428","30.2658929"],["-97.7358716","30.2661223"],["-97.736104","30.2661912"],["-97.7361355","30.2662011"],["-97.7364347","30.2662835"],["-97.7379318","30.2667023"],["-97.7381832","30.2667746"],["-97.7400882","30.2673131"],["-97.7403078","30.2673741"],["-97.7404059","30.2674013"],["-97.7404921","30.2674251"],["-97.7406556","30.2674703"],["-97.7427999","30.2680647"],["-97.7431227","30.2672263"],["-97.7431282","30.2672114"],["-97.7431467","30.2671397"],["-97.7420052","30.2668176"],["-97.7419292","30.2667955"],["-97.7377275","30.2656245"],["-97.7375257","30.2655682"],["-97.7364982","30.265279"],["-97.7364541","30.2652669"],["-97.7353929","30.2649506"],["-97.7356664","30.2642049"],["-97.7357193","30.2640661"],["-97.7357276","30.2640422"],["-97.735744","30.2639983"],["-97.7357594","30.2639579"],["-97.7358093","30.2638244"],["-97.7372097","30.2600366"],["-97.7372494","30.2598336"],["-97.7372559","30.2597433"],["-97.7372441","30.2596271"],["-97.737238","30.2595289"],["-97.737239","30.2594427"],["-97.737254","30.2593281"],["-97.7373055","30.2589884"],["-97.7373281","30.2588095"],["-97.7373353","30.2586353"],["-97.7373352","30.258433"],["-97.7372361","30.2571101"],["-97.7371657","30.2567027"],["-97.7370724","30.256142"],["-97.7366543","30.253875"],["-97.7353442","30.2476388"],["-97.7351946","30.2469433"],["-97.7350883","30.2464336"],["-97.7350462","30.2461773"],["-97.7350234","30.2459642"],["-97.7350098","30.2457788"],["-97.7350033","30.2455715"],["-97.7350127","30.2453099"],["-97.7350267","30.2450874"],["-97.7350601","30.2448406"],["-97.7350976","30.244628"],["-97.7351653","30.244347"],["-97.7352412","30.2441058"],["-97.7353287","30.2438613"],["-97.7354278","30.243638"],["-97.7355355","30.2434144"],["-97.7356867","30.2431463"],["-97.736512","30.2417782"],["-97.7368719","30.2411579"],["-97.7390859","30.2375102"],["-97.7472081","30.223826"],["-97.7477279","30.2229889"],["-97.7493608","30.220063"],["-97.7504214","30.2182622"],["-97.7522242","30.215251"],["-97.7526062","30.2146195"],["-97.7549489","30.210776"],["-97.756043","30.2090091"],["-97.7578125","30.2064546"],["-97.7591791","30.2047354"],["-97.7613671","30.2020518"],["-97.7618405","30.2014486"],["-97.7657338","30.1966053"],["-97.7663453","30.1958737"],["-97.7704631","30.1906983"],["-97.771646","30.1891709"],["-97.7720139","30.1886509"],["-97.7752574","30.1837899"],["-97.7867553","30.1662423"],["-97.7871692","30.1655479"],["-97.7876525","30.1646841"],["-97.7879095","30.1641884"],["-97.7883409","30.1633161"],["-97.7886119","30.1627287"],["-97.7889427","30.1619792"],["-97.7892426","30.161201"],["-97.789563","30.1603366"],["-97.7898774","30.1593765"],["-97.7925357","30.1503268"],["-97.7963602","30.1396918"],["-97.8054513","30.1166889"],["-97.8055591","30.1164031"],["-97.8058435","30.1156987"],["-97.8060228","30.115244"],["-97.8062721","30.1146449"],["-97.8068853","30.1131088"],["-97.8080375","30.1105533"],["-97.8084675","30.1096035"],["-97.808789","30.1089017"],["-97.8093868","30.1075316"],["-97.8100375","30.1061275"],["-97.8108724","30.1044226"],["-97.8112363","30.1036908"],["-97.8132015","30.0994818"],["-97.8135639","30.0987968"],["-97.8150173","30.0956732"],["-97.8154316","30.0948333"],["-97.8163376","30.0932751"],["-97.8173491","30.0915812"],["-97.8182839","30.0899921"],["-97.819092","30.0885912"],["-97.8197595","30.08741"],["-97.8223555","30.0826489"],["-97.8466603","30.0334266"],["-97.8470803","30.0326495"],["-97.8476354","30.0317117"],["-97.8482727","30.030706"],["-97.8591277","30.0155094"],["-97.8598681","30.0144369"],["-97.8602787","30.0138011"],["-97.8607915","30.0129647"],["-97.8690783","29.9986156"],["-97.8693953","29.9980275"],["-97.8701183","29.9965291"],["-97.8703941","29.9958898"],["-97.8706673","29.9952136"],["-97.8709251","29.9945409"],["-97.8713302","29.9933353"],["-97.8715126","29.9927183"],["-97.8716687","29.9921552"],["-97.8718126","29.9916002"],["-97.871917","29.9911349"],["-97.8729396","29.9859648"],["-97.8736881","29.9819547"],["-97.8738262","29.9809172"],["-97.8748222","29.970784"],["-97.8749564","29.9695316"],["-97.8751201","29.9685015"],["-97.8752332","29.9678861"],["-97.8783062","29.9530717"],["-97.8785829","29.9519582"],["-97.8789387","29.9507675"],["-97.8794348","29.9493472"],["-97.8796735","29.9487503"],["-97.8799444","29.9481015"],["-97.8802538","29.9474065"],["-97.8806988","29.9465113"],["-97.9017484","29.9057322"],["-97.9020848","29.9051637"],["-97.9027956","29.9040371"],["-97.9032279","29.9034049"],["-97.9039388","29.902435"],["-97.9046465","29.9015244"],["-97.905157","29.9009187"],["-97.9062058","29.8997774"],["-97.9210606","29.8836551"],["-97.9217727","29.8828972"],["-97.9221509","29.8825162"],["-97.9226579","29.8820249"],["-97.9235566","29.8812016"],["-97.9240833","29.8807475"],["-97.9246307","29.880295"],["-97.9370184","29.8711141"],["-97.9388183","29.8696632"],["-97.9783188","29.8344044"],["-97.9890922","29.8247002"],["-97.9894125","29.824417"],["-98.0202187","29.7966665"],["-98.0207224","29.7961676"],["-98.0232222","29.7935043"],["-98.0248041","29.7917689"],["-98.0290016","29.7871995"],["-98.0294248","29.7866971"],["-98.029791","29.7862118"],["-98.0404806","29.7716386"],["-98.0415066","29.7702376"],["-98.041871","29.769735"],["-98.0420505","29.7694893"],["-98.042303","29.7691283"],["-98.0585727","29.7461525"],["-98.0588696","29.7457891"],["-98.0591244","29.7454928"],["-98.0595778","29.7449952"],["-98.0599116","29.7446674"],["-98.0604022","29.7442128"],["-98.0621514","29.7427162"],["-98.0626834","29.7422505"],["-98.0807077","29.726953"],["-98.0819328","29.7259143"],["-98.0831175","29.7248929"],["-98.0834218","29.7246049"],["-98.0838022","29.724227"],["-98.0846247","29.7233823"],["-98.0851493","29.7227619"],["-98.0853896","29.7224579"],["-98.0857387","29.7219898"],["-98.0860718","29.72152"],["-98.0863312","29.7211302"],["-98.0868379","29.7202857"],["-98.0873345","29.7193667"],["-98.0877173","29.718524"],["-98.0880665","29.7176687"],["-98.088222","29.7172187"],["-98.0884131","29.7166342"],["-98.088546","29.7161741"],["-98.0886463","29.7157781"],["-98.0887631","29.7152651"],["-98.0893903","29.712051"],["-98.0895499","29.711182"],["-98.0902653","29.7074055"],["-98.0903793","29.7068864"],["-98.0905001","29.7064345"],["-98.0906355","29.7059692"],["-98.0908018","29.705477"],["-98.0909738","29.705021"],["-98.0911747","29.7045408"],["-98.0914287","29.7039955"],["-98.0916731","29.7035116"],["-98.0919167","29.7030572"],["-98.0921751","29.7026287"],["-98.0924952","29.7021359"],["-98.0930453","29.7013644"],["-98.0932884","29.7010512"],["-98.0936598","29.7006129"],["-98.0941601","29.7000456"],["-98.0943523","29.6998469"],["-98.0945717","29.6996326"],["-98.0948942","29.6993215"],["-98.0951772","29.6990625"],["-98.0955113","29.6987724"],["-98.0962795","29.6981582"],["-98.0966658","29.6978778"],["-98.0970717","29.6975986"],["-98.0975287","29.6973045"],["-98.0979379","29.6970539"],["-98.0987489","29.6966071"],["-98.099163","29.6963986"],["-98.0996695","29.6961621"],["-98.1001917","29.695937"],["-98.1024081","29.6950538"],["-98.1041383","29.6943754"],["-98.1049005","29.6940422"],["-98.114757","29.6900907"],["-98.1162979","29.6894703"],["-98.121644","29.6873104"],["-98.1227398","29.6868974"],["-98.1239886","29.6864979"],["-98.1245688","29.6863397"],["-98.1256114","29.6860855"],["-98.1267643","29.6858747"],["-98.1366154","29.6841557"],["-98.1378587","29.6839473"],["-98.1396237","29.6836024"],["-98.1403976","29.6834325"],["-98.1409818","29.6832636"],["-98.1412461","29.6831783"],["-98.1416605","29.6830253"],["-98.1426153","29.6826382"],["-98.1433907","29.6822182"],["-98.1438942","29.6819322"],["-98.1442171","29.6817279"],["-98.1542333","29.6746788"],["-98.1604689","29.6701887"],["-98.1689756","29.6638963"],["-98.16932","29.6636686"],["-98.1697279","29.6634138"],["-98.1701245","29.6631895"],["-98.1705033","29.6629878"],["-98.1708823","29.6628087"],["-98.1816908","29.6582891"],["-98.1822642","29.6580394"],["-98.1825869","29.6578783"],["-98.1829417","29.6576924"],["-98.183339","29.6574728"],["-98.183764","29.6572012"],["-98.1867851","29.6550772"],["-98.2081565","29.6418507"],["-98.2088659","29.6414446"],["-98.2584198","29.6161629"],["-98.2587579","29.6159745"],["-98.2591266","29.6157591"],["-98.2595086","29.6155233"],["-98.2598926","29.6152729"],["-98.2602767","29.6150111"],["-98.2605388","29.6148231"],["-98.2610792","29.6144076"],["-98.2660732","29.6101783"],["-98.2669853","29.6093741"],["-98.2751786","29.601468"],["-98.2755238","29.6011639"],["-98.2759546","29.6007986"],["-98.2763554","29.600482"],["-98.2769694","29.6000277"],["-98.2778528","29.5994493"],["-98.2782339","29.5992194"],["-98.2786851","29.5989697"],["-98.2866216","29.5949462"],["-98.2878543","29.5943284"],["-98.2999023","29.5882232"],["-98.3003492","29.5879833"],["-98.3006713","29.5877964"],["-98.3010646","29.5875453"],["-98.3052272","29.5847045"],["-98.3077988","29.5829398"],["-98.3080691","29.5827653"],["-98.3088533","29.5822975"],["-98.3091507","29.5821372"],["-98.3096005","29.5819197"],["-98.3098559","29.5818006"],["-98.3103599","29.5815928"],["-98.3191871","29.578465"],["-98.319864","29.578211"],["-98.3205436","29.5779252"],["-98.3211023","29.5776684"],["-98.3219848","29.5772124"],["-98.3224693","29.5769397"],["-98.3229113","29.5766691"],["-98.3234237","29.5763282"],["-98.3239274","29.5759798"],["-98.3243925","29.575629"],["-98.3248336","29.5752734"],["-98.3283191","29.5722879"],["-98.3291082","29.5716069"],["-98.3403258","29.5619095"],["-98.3412659","29.5611079"],["-98.3422181","29.5602842"],["-98.346528","29.5565833"],["-98.3473077","29.5559756"],["-98.3479482","29.5555288"],["-98.3487496","29.5550111"],["-98.3497835","29.5544464"],["-98.3511801","29.553783"],["-98.3518948","29.5534581"],["-98.3524556","29.5532237"],["-98.352957","29.5530326"],["-98.3535239","29.552837"],["-98.3547462","29.5524734"],["-98.3562548","29.5520309"],["-98.3581414","29.5514778"],["-98.3588213","29.5512387"],["-98.3595318","29.5509513"],["-98.3602412","29.5506416"],["-98.3610405","29.5502445"],["-98.3620349","29.5496962"],["-98.374245","29.5428137"],["-98.3743769","29.5427408"],["-98.383881","29.537364"],["-98.3844678","29.5370367"],["-98.3854931","29.5364598"],["-98.3860213","29.5361432"],["-98.3869891","29.5355028"],["-98.3877221","29.5349536"],["-98.3879896","29.5347361"],["-98.3886484","29.5341617"],["-98.3889358","29.5338932"],["-98.3892405","29.53359"],["-98.3898764","29.5329164"],["-98.3901327","29.5326156"],["-98.3904512","29.5322273"],["-98.3907265","29.5318645"],["-98.391092","29.5313553"],["-98.3913611","29.5309482"],["-98.3916766","29.5304275"],["-98.3919657","29.5299179"],["-98.3923867","29.5290713"],["-98.3925559","29.5286784"],["-98.3926787","29.5283776"],["-98.3927997","29.528061"],["-98.3930608","29.5272835"],["-98.3953236","29.5194802"],["-98.3954444","29.5191434"],["-98.3955831","29.5187989"],["-98.3957769","29.5183704"],["-98.3960088","29.5178822"],["-98.3963719","29.5170661"],["-98.3965716","29.5164847"],["-98.396642","29.516227"],["-98.3967202","29.5159098"],["-98.3969783","29.5146597"],["-98.397159","29.5137234"],["-98.3979103","29.5100703"],["-98.3979904","29.5097204"],["-98.3981202","29.5091249"],["-98.398458","29.5075664"],["-98.4003651","29.4982968"],["-98.4008031","29.4962004"],["-98.4011371","29.4945433"],["-98.4025279","29.4878335"],["-98.4028975","29.4861244"],["-98.4031642","29.4848217"],["-98.403702","29.4820339"],["-98.4038709","29.4811107"],["-98.404033","29.480331"],["-98.4041448","29.47973"],["-98.4042029","29.4793417"],["-98.4042782","29.4786335"],["-98.4043022","29.4782779"],["-98.4043203","29.4777991"],["-98.4043644","29.4755384"],["-98.4043761","29.4751772"],["-98.404396","29.4749643"],["-98.4044301","29.4747042"],["-98.4044753","29.4744243"],["-98.4045413","29.4741107"],["-98.4045936","29.473901"],["-98.4046582","29.4736691"],["-98.4047196","29.4734753"],["-98.4048124","29.4732197"],["-98.4049731","29.472825"],["-98.4062267","29.4702948"],["-98.4064097","29.4699186"],["-98.4096662","29.4634353"],["-98.4121341","29.4585399"],["-98.4129167","29.4570004"],["-98.4131382","29.4566164"],["-98.4133917","29.4562219"],["-98.4136617","29.455836"],["-98.4138765","29.4555599"],["-98.4140754","29.4553203"],["-98.4143156","29.4550444"],["-98.4145778","29.4547684"],["-98.4149295","29.4544254"],["-98.4151942","29.4541828"],["-98.4156238","29.4538262"],["-98.415885","29.4536246"],["-98.4162381","29.4533713"],["-98.4165662","29.4531514"],["-98.4168818","29.4529547"],["-98.4171728","29.4527871"],["-98.4177001","29.452506"],["-98.4179846","29.4523672"],["-98.4183828","29.4521871"],["-98.4241729","29.4496958"],["-98.4248887","29.4493643"],["-98.4384298","29.4417763"],["-98.4388794","29.4415328"],["-98.4393818","29.4412746"],["-98.4397086","29.4411163"],["-98.4401498","29.4409124"],["-98.4408752","29.4406146"],["-98.4412117","29.4404876"],["-98.4427128","29.4400008"],["-98.4431277","29.4398923"],["-98.4436166","29.4397716"],["-98.4440789","29.4396692"],["-98.4445311","29.4395816"],["-98.4450398","29.4394972"],["-98.4455297","29.4394293"],["-98.4460981","29.4393645"],["-98.4465865","29.4393157"],["-98.4471276","29.4392816"],["-98.4477723","29.4392537"],["-98.4493463","29.4392687"],["-98.4507941","29.4392647"],["-98.452421","29.4392778"],["-98.4532051","29.4392603"],["-98.4542281","29.4392038"],["-98.454716","29.4391589"],["-98.4555013","29.4390603"],["-98.4586062","29.4386572"],["-98.4590432","29.4386194"],["-98.4595898","29.4385894"],["-98.4601826","29.438572"],["-98.4620621","29.4385565"],["-98.4660636","29.4385645"],["-98.4708276","29.4385524"],["-98.4717697","29.4386347"],["-98.4741933","29.4388853"],["-98.4744552","29.4388983"],["-98.4747114","29.4389015"],["-98.4749358","29.4388932"],["-98.4751523","29.438879"],["-98.4753804","29.4388533"],["-98.475557","29.4388214"],["-98.4757074","29.438779"],["-98.4758657","29.438726"],["-98.4760201","29.4386588"],["-98.4762224","29.4385566"],["-98.476408","29.4384408"],["-98.476543","29.4383384"],["-98.476666","29.4382307"],["-98.476902","29.4379469"],["-98.4770732","29.4376589"],["-98.4772246","29.4372353"],["-98.4775576","29.4359008"],["-98.477831","29.4350396"],["-98.4780346","29.4346711"],["-98.4782091","29.4342422"],["-98.4784122","29.4338155"],["-98.4786705","29.433315"],["-98.4790383","29.4327654"],["-98.4808314","29.4302772"],["-98.4810752","29.4299184"],["-98.4812657","29.429594"],["-98.4814841","29.4290787"],["-98.4815682","29.4288277"],["-98.4816585","29.4284631"],["-98.4817146","29.4278843"],["-98.4817471","29.4269604"],["-98.4817292","29.4258333"],["-98.4816813","29.4249156"],["-98.4816896","29.4243764"],["-98.4816428","29.4235502"],["-98.4815963","29.423239"],["-98.4814841","29.422718"],["-98.4815014","29.4225867"],["-98.4815548","29.4225093"],["-98.4816871","29.4224572"],["-98.4818457","29.4224242"],["-98.4822539","29.4225118"],["-98.4842799","29.4229432"],["-98.4848652","29.4230713"],["-98.4872682","29.4236144"],["-98.487335","29.4236318"],["-98.4873816","29.423645"],["-98.4874843","29.4236689"],["-98.4876227","29.4237024"],["-98.4877916","29.4237459"],["-98.487835","29.4237573"],["-98.4885007","29.4239058"],["-98.4890495","29.4240127"],["-98.4893569","29.4240706"],["-98.4898585","29.4241653"],["-98.4909052","29.4244063"],["-98.4912606","29.4244866"],["-98.4915066","29.4245395"],["-98.4918922","29.4246258"],["-98.4930201","29.4249013"],["-98.4937539","29.4250445"],["-98.4944615","29.4251746"],["-98.4945221","29.425176"]]}};const coordinates_1_0=geojson_1_0.geometry.coordinates;for(const coord of coordinates_1_0){window.bounds[1].extend(coord);contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});} contentMap_1.on('load',()=>{contentMap_1.addLayer({id:'route1_0',type:'line',source:{type:'geojson',data:geojson_1_0},layout:{'line-join':'round','line-cap':'round'},paint:{'line-color':'#0b7172','line-width':5,'line-opacity':0.80}});});contentMap_1.fitBounds(window.bounds[1],{padding:{top:60,bottom:60,left:60,right:60}});const geojson_1_1={type:'Feature',properties:{},geometry:{type:'LineString',coordinates:[["-95.3700191","29.7601904"],["-95.3701006","29.760092"],["-95.3702092","29.7599634"],["-95.3705725","29.7594638"],["-95.3706812","29.7593192"],["-95.3709634","29.7589675"],["-95.371287","29.7585866"],["-95.3713681","29.7585457"],["-95.3719163","29.7579402"],["-95.372013","29.7578716"],["-95.3722003","29.7578375"],["-95.3725483","29.7578245"],["-95.3725891","29.757824"],["-95.3726691","29.7578221"],["-95.3726796","29.7578219"],["-95.3728022","29.7578191"],["-95.3729536","29.7578569"],["-95.373314","29.7578523"],["-95.3741176","29.7578114"],["-95.3742507","29.7578043"],["-95.3743432","29.757767"],["-95.3758272","29.7577571"],["-95.3759404","29.7577571"],["-95.3762626","29.7577595"],["-95.3762713","29.758031"],["-95.3762563","29.7581253"],["-95.3762441","29.7582351"],["-95.3762559","29.7593098"],["-95.3762687","29.7598518"],["-95.3762586","29.7599299"],["-95.3761775","29.759963"],["-95.3752723","29.7599901"],["-95.3750896","29.7599704"],["-95.3749444","29.7599238"],["-95.3748443","29.7598578"],["-95.3748089","29.7597952"],["-95.3747843","29.7597075"],["-95.3747782","29.7595585"],["-95.3747824","29.7592928"],["-95.3747898","29.7588638"],["-95.3747777","29.7581061"],["-95.3747778","29.7575188"],["-95.3747354","29.7536846"],["-95.3747061","29.7531737"],["-95.3746622","29.7529276"],["-95.3745594","29.7524788"],["-95.3744577","29.7521685"],["-95.374312","29.7518504"],["-95.374216","29.7516739"],["-95.3741093","29.7515098"],["-95.3739681","29.7513184"],["-95.373742","29.7510535"],["-95.3734587","29.7507521"],["-95.3731863","29.7505233"],["-95.3722176","29.7498976"],["-95.3654627","29.7458513"],["-95.3649435","29.7455523"],["-95.3639761","29.7449612"],["-95.3632693","29.7445631"],["-95.3625225","29.7441911"],["-95.3615677","29.7438029"],["-95.3607781","29.7435354"],["-95.3599134","29.7432302"],["-95.3591475","29.742929"],["-95.3588177","29.7427631"],["-95.3585765","29.7426243"],["-95.3583911","29.7425038"],["-95.3568181","29.7414991"],["-95.3543536","29.739897"],["-95.3459231","29.7345147"],["-95.3436489","29.7327449"],["-95.341651","29.731157"],["-95.3406102","29.7303936"],["-95.3335227","29.7258189"],["-95.329147","29.7230049"],["-95.3259759","29.7209933"],["-95.3255842","29.7207822"],["-95.3238836","29.719888"],["-95.3189093","29.717255"],["-95.3164402","29.7156512"],["-95.3150744","29.7147977"],["-95.3119517","29.71276"],["-95.3092138","29.7109318"],["-95.3080801","29.7101678"],["-95.3007061","29.7052613"],["-95.2942748","29.7011098"],["-95.2937242","29.7007295"],["-95.2930589","29.7002359"],["-95.2902172","29.6980443"],["-95.2895955","29.6975454"],["-95.2891828","29.6971765"],["-95.2886808","29.6967156"],["-95.2828946","29.6905435"],["-95.2808864","29.6885052"],["-95.279204","29.686856"],["-95.2765051","29.6841303"],["-95.2754685","29.6830893"],["-95.2742804","29.6819099"],["-95.2731751","29.6808062"],["-95.2723938","29.6800028"],["-95.2670622","29.6745806"],["-95.2655114","29.6729964"],["-95.2648275","29.6722902"],["-95.2645728","29.671972"],["-95.2643651","29.6717135"],["-95.2641013","29.6713695"],["-95.2637593","29.6708971"],["-95.263137","29.6700054"],["-95.2612929","29.6672076"],["-95.260499","29.6660078"],["-95.2597493","29.6648918"],["-95.2576302","29.6616745"],["-95.2508835","29.6514327"],["-95.2502797","29.6505577"],["-95.2495619","29.6494393"],["-95.2490075","29.6485721"],["-95.2483456","29.6475485"],["-95.2473132","29.6460103"],["-95.2461931","29.6443412"],["-95.2458764","29.643862"],["-95.2451586","29.6427851"],["-95.2446618","29.6421434"],["-95.244249","29.641636"],["-95.2437575","29.6411376"],["-95.2425207","29.6399488"],["-95.2241947","29.6232635"],["-95.2122215","29.6123397"],["-95.2113879","29.6115806"],["-95.2089267","29.6094182"],["-95.2071956","29.6078051"],["-95.2026081","29.6035618"],["-95.1944867","29.5955534"],["-95.1929864","29.594055"],["-95.1890984","29.5906309"],["-95.1824811","29.5847437"],["-95.1807203","29.5829877"],["-95.177824","29.579728"],["-95.1719406","29.5729629"],["-95.1694904","29.5700697"],["-95.1637368","29.5635455"],["-95.1614455","29.561025"],["-95.156668","29.5560049"],["-95.1554693","29.5547786"],["-95.1538584","29.5531232"],["-95.1484443","29.5474196"],["-95.1439932","29.5427321"],["-95.1421016","29.5407983"],["-95.1404559","29.5390499"],["-95.1396268","29.5381025"],["-95.1386341","29.5369527"],["-95.1354986","29.5334404"],["-95.1350913","29.5330272"],["-95.1343548","29.5322305"],["-95.13414","29.5320093"],["-95.1337941","29.5316453"],["-95.1322929","29.5300971"],["-95.1312963","29.529072"],["-95.1274939","29.5250439"],["-95.1268211","29.5241294"],["-95.1250829","29.5214026"],["-95.1213328","29.5151345"],["-95.1204044","29.5135975"],["-95.1180726","29.5094896"],["-95.1166846","29.5072312"],["-95.1153916","29.5050634"],["-95.114826","29.5041197"],["-95.1139926","29.5027109"],["-95.1134879","29.5018655"],["-95.1109052","29.4975341"],["-95.1091543","29.4946014"],["-95.1075291","29.4919067"],["-95.1049764","29.4876766"],["-95.1039686","29.485895"],["-95.1019506","29.4824965"],["-95.1012359","29.4813433"],["-95.09715","29.4744522"],["-95.0956051","29.4719726"],["-95.0947659","29.4708029"],["-95.0937541","29.469574"],["-95.0878534","29.4623244"],["-95.0872679","29.4615842"],["-95.0851472","29.4588968"],["-95.0831716","29.4564621"],["-95.0805437","29.4531777"],["-95.0798145","29.4522759"],["-95.0791933","29.4515281"],["-95.077494","29.4494956"],["-95.0745803","29.4458947"],["-95.0733826","29.4443609"],["-95.0705088","29.4407433"],["-95.0703457","29.4405717"],["-95.070137","29.4403426"],["-95.0694179","29.4394974"],["-95.0685272","29.4385574"],["-95.0380984","29.4076319"],["-95.0367153","29.4062286"],["-95.0345462","29.4040482"],["-95.0334436","29.4029927"],["-95.0325521","29.4020821"],["-95.0313442","29.4007717"],["-95.0213263","29.3905948"],["-95.0208105","29.3900686"],["-95.020581","29.3898353"],["-95.0200295","29.3892733"],["-95.015805","29.3849986"],["-95.0146793","29.3838711"],["-95.0139004","29.3831695"],["-95.0124517","29.3819427"],["-94.9863203","29.3608223"],["-94.9850329","29.3599876"],["-94.9836594","29.3593541"],["-94.9534852","29.3460585"],["-94.9528985","29.3457145"],["-94.9522455","29.3452941"],["-94.9512443","29.3445518"],["-94.9392515","29.3350177"],["-94.9376748","29.3336451"],["-94.9366416","29.3327116"],["-94.9347902","29.331101"],["-94.9322526","29.3290962"],["-94.9300241","29.3276228"],["-94.9297152","29.3274256"],["-94.9292709","29.3271288"],["-94.928382","29.3265009"],["-94.917147","29.317649"],["-94.9110539","29.3128558"],["-94.9098236","29.3118432"],["-94.9090749","29.3111106"],["-94.9085215","29.3104714"],["-94.9081122","29.3099086"],["-94.9070096","29.3080924"],["-94.9055254","29.3056545"],["-94.9049546","29.3050025"],["-94.9047679","29.3048216"],["-94.9045859","29.3046537"],["-94.9043864","29.3044949"],["-94.9041229","29.3043065"],["-94.9034787","29.3039169"],["-94.9031025","29.3037269"],["-94.9028278","29.3036012"],["-94.9024548","29.3034572"],["-94.9018587","29.3032312"],["-94.9012324","29.3029832"],["-94.9006894","29.3027486"],["-94.8996137","29.3022209"],["-94.8743978","29.2898952"],["-94.873949","29.2896565"],["-94.8713198","29.2881903"],["-94.8708805","29.2879639"],["-94.870443","29.2877415"],["-94.867297","29.2861682"],["-94.8662678","29.2857685"],["-94.8655361","29.2855826"],["-94.8651067","29.285494"],["-94.864766","29.2854278"],["-94.8644906","29.2853799"],["-94.8642077","29.2853361"],["-94.8638766","29.2852929"],["-94.8634787","29.2852618"],["-94.8631447","29.28524"],["-94.8628834","29.2852341"],["-94.8623711","29.2852315"],["-94.8620763","29.2852403"],["-94.8617921","29.2852546"],["-94.8614196","29.2852892"],["-94.8605963","29.2854034"],["-94.8602333","29.2854645"],["-94.8599133","29.2855416"],["-94.8595692","29.2856266"],["-94.8590077","29.2857922"],["-94.8567906","29.2865274"],["-94.8531855","29.2877237"],["-94.8524943","29.2879359"],["-94.8515819","29.2881751"],["-94.8511333","29.2882773"],["-94.8505256","29.2883922"],["-94.8499897","29.2884817"],["-94.8490343","29.2886133"],["-94.8485509","29.2886607"],["-94.8480526","29.2886939"],["-94.8470828","29.2887189"],["-94.8460805","29.2887065"],["-94.8452377","29.2886516"],["-94.8443677","29.2885037"],["-94.8438791","29.288442"],["-94.8429518","29.28836"],["-94.8421347","29.288318"],["-94.8409387","29.2882447"],["-94.8391445","29.2881745"],["-94.8382488","29.2882108"],["-94.8379114","29.2882188"],["-94.8377577","29.2880051"],["-94.8370738","29.2867367"],["-94.8365726","29.2858712"],["-94.8362061","29.2852319"],["-94.8359814","29.284799"],["-94.8355935","29.2841195"],["-94.8335605","29.2803786"],["-94.8328315","29.279033"],["-94.832534","29.2782993"],["-94.8324304","29.2780047"],["-94.8323308","29.2777365"],["-94.8321954","29.2774024"],["-94.8319544","29.2769485"],["-94.8315621","29.2762147"],["-94.8311931","29.2755152"],["-94.830986","29.2752508"],["-94.8306748","29.2748647"],["-94.8306104","29.2747751"],["-94.8305207","29.2746229"],["-94.8293962","29.2725135"],["-94.8293135","29.2723218"],["-94.8292776","29.2722066"],["-94.8292127","29.2719821"],["-94.8291357","29.2717311"],["-94.8290626","29.271559"],["-94.828158","29.2698576"],["-94.8265467","29.2668311"],["-94.8265113","29.2666647"],["-94.826522","29.2665674"],["-94.8265477","29.2665093"],["-94.8265762","29.2664583"],["-94.82674","29.2662621"],["-94.8295928","29.2647115"],["-94.829884","29.2645545"],["-94.8301663","29.2643967"],["-94.8301936","29.2643815"],["-94.8304565","29.2642406"],["-94.8304882","29.2642236"],["-94.8338306","29.2624342"],["-94.833996","29.262344"],["-94.8342247","29.2622171"],["-94.8343816","29.262122"],["-94.8392232","29.2594992"],["-94.8449696","29.2560975"],["-94.8450175","29.2560692"],["-94.8470365","29.2548744"],["-94.8614298","29.2463365"],["-94.8616934","29.2462381"],["-94.86235","29.2458777"],["-94.8630261","29.2455309"],["-94.8633879","29.2453595"],["-94.8637446","29.245199"],["-94.8641529","29.2450236"],["-94.8645607","29.2448645"],["-94.865408","29.2445647"],["-94.8658076","29.2444356"],["-94.8662612","29.2443029"],["-94.866738","29.2441757"],["-94.8671127","29.2440853"],["-94.8675638","29.2439859"],["-94.8688926","29.2437512"],["-94.8692916","29.2436722"],["-94.8697358","29.2435594"],["-94.8707652","29.2432724"],["-94.8718288","29.2428837"],["-94.8864315","29.2369757"],["-94.8883766","29.2360649"],["-94.8886369","29.2359255"],["-94.8888627","29.2358008"],["-94.8890976","29.235666"],["-94.8893854","29.2354964"],["-94.8897424","29.2352779"],["-94.890274","29.234935"],["-94.8913034","29.2341743"],["-94.8922918","29.2333392"],["-94.8926811","29.2329572"],["-94.8932112","29.2324191"],["-94.8940969","29.2315231"],["-94.8982226","29.2273687"],["-94.8989481","29.226665"],["-94.8994149","29.2262558"],["-94.9002378","29.2256104"],["-94.9006875","29.225295"],["-94.9013581","29.2248547"],["-94.9022085","29.2243531"],["-94.9028575","29.2240097"],["-94.9250047","29.213208"],["-94.9363887","29.2084958"],["-94.9367249","29.2083605"],["-94.9383438","29.207698"],["-94.9407146","29.2067142"],["-94.9413083","29.2064317"],["-94.9415408","29.2063089"],["-94.9419573","29.2060748"],["-94.9426587","29.2056029"],["-94.9430344","29.2052906"],["-94.9436221","29.2047606"],["-94.9440179","29.2043929"],["-94.9448594","29.2036169"],["-94.9454218","29.2030921"],["-94.9475146","29.2011797"],["-94.9487591","29.2002277"],["-94.9495051","29.1997204"],["-94.9518242","29.1983422"],["-94.9630347","29.1916721"],["-94.9638623","29.1910885"],["-94.964247","29.1907688"],["-94.965077","29.1899864"],["-94.9655288","29.1894785"],["-94.9664133","29.1883524"],["-94.9667669","29.1878778"],["-94.9677513","29.1866541"],["-94.9682393","29.1860954"],["-94.9685893","29.1857568"],["-94.9691844","29.1852445"],["-94.9697818","29.1847741"],["-94.983793","29.1763966"],["-94.9930674","29.170701"],["-95.0097771","29.1605241"],["-95.0106251","29.1600029"],["-95.0143944","29.1576677"],["-95.0162644","29.1565107"],["-95.046831","29.1370585"],["-95.061958","29.1271305"],["-95.0798946","29.1147898"],["-95.0809642","29.1141045"],["-95.0813898","29.1138301"],["-95.081645","29.1136706"],["-95.0818831","29.1135345"],["-95.0821187","29.1134165"],["-95.0823787","29.1133057"],["-95.0826604","29.1131997"],["-95.0829337","29.11312"],["-95.0832427","29.1130442"],["-95.0834879","29.112994"],["-95.0837377","29.1129578"],["-95.0840411","29.1129372"],["-95.084359","29.1129258"],["-95.0846549","29.1129329"],["-95.0849254","29.1129386"],["-95.0849353","29.1128231"],["-95.0846434","29.1127988"],["-95.0843432","29.1127903"],["-95.0839881","29.1128058"],["-95.0837264","29.1128279"],["-95.083527","29.1128573"],["-95.0832827","29.1128992"],["-95.0830508","29.1129504"],["-95.0828307","29.1130081"],["-95.0826164","29.1130783"],["-95.0826683","29.1131877"],["-95.0829476","29.1131165"],["-95.0832285","29.1130473"],["-95.0835019","29.1129918"],["-95.0837381","29.1129578"],["-95.0840283","29.1129378"],["-95.0843557","29.1129258"],["-95.0846472","29.1129326"],["-95.0849642","29.112951"],["-95.0858977","29.1130253"],["-95.0862821","29.1130492"],["-95.0864954","29.1130442"],["-95.0867244","29.1130292"],["-95.0869735","29.113003"],["-95.0872167","29.1129632"],["-95.0878237","29.1128292"],["-95.0882891","29.112685"],["-95.0887179","29.112497"],["-95.0892044","29.1122414"],["-95.0896346","29.1119405"],["-95.0899896","29.111626"],["-95.0913189","29.1102421"],["-95.0916945","29.1098684"],["-95.0921483","29.109504"],["-95.0925487","29.1092192"],["-95.0929086","29.1089883"],["-95.0932612","29.1087941"],["-95.0940083","29.1083987"],["-95.0943257","29.1082069"],["-95.0946854","29.1079731"],["-95.0951581","29.1076075"],["-95.0957767","29.1070692"],["-95.095935","29.1069025"],["-95.0961476","29.1066665"],["-95.0978753","29.1045587"],["-95.0979877","29.104438"],["-95.0982113","29.1042233"],["-95.0984729","29.1039834"],["-95.0987903","29.1037063"],["-95.0991169","29.103448"],["-95.0995146","29.1031752"],["-95.0998707","29.1029467"],["-95.1001582","29.1027825"],["-95.1004676","29.1026138"],["-95.1009548","29.1023815"],["-95.1023424","29.1017864"],["-95.1026749","29.1016319"],["-95.1030008","29.1014578"],["-95.1034094","29.1012198"],["-95.1039677","29.1008692"],["-95.1041165","29.1007509"],["-95.1044792","29.1004514"],["-95.1049282","29.1000767"],["-95.1054082","29.0995923"],["-95.1057501","29.0991988"],["-95.1060952","29.0987421"],["-95.1063137","29.0984097"],["-95.1065515","29.0980028"],["-95.1069407","29.0972351"],["-95.1071781","29.0967418"],["-95.1074832","29.0961013"],["-95.1076071","29.0958623"],["-95.107834","29.0955027"],["-95.1080007","29.0952731"],["-95.1082324","29.0950285"],["-95.1086171","29.0946436"],["-95.1090788","29.0942351"],["-95.1092274","29.0941124"],["-95.1093121","29.0940457"],["-95.1095355","29.0938753"],["-95.1105704","29.0931023"],["-95.1111565","29.0926286"],["-95.1115464","29.0922399"],["-95.1116233","29.0922019"],["-95.1116945","29.0921354"],["-95.1117556","29.0920737"],["-95.1125543","29.0912732"],["-95.1275898","29.076843"],["-95.1280268","29.0764025"],["-95.1281382","29.0762368"],["-95.1283089","29.0758395"],["-95.1283826","29.0755307"],["-95.1283595","29.075072"],["-95.1283086","29.0745"],["-95.1282345","29.0739038"],["-95.1281712","29.0729411"],["-95.1282061","29.072556"],["-95.1282684","29.0720966"],["-95.1283797","29.0717346"],["-95.1284657","29.0714746"],["-95.1286423","29.0710692"],["-95.1289059","29.0705285"],["-95.1292223","29.0699669"],["-95.1296264","29.0693265"],["-95.1300394","29.0687781"],["-95.1303033","29.0685002"],["-95.1305777","29.0682678"],["-95.1308311","29.0680788"],["-95.1311412","29.0678772"],["-95.1314648","29.0677025"],["-95.1318482","29.0675198"],["-95.1324257","29.0672628"],["-95.1328747","29.0670356"],["-95.1333901","29.0667098"],["-95.1338905","29.0663461"],["-95.1343266","29.0659439"],["-95.1348037","29.0653987"],["-95.1355415","29.064446"],["-95.1365042","29.0631121"],["-95.1371995","29.0622922"],["-95.1385074","29.0612515"],["-95.145821","29.0556957"],["-95.1469925","29.0548395"],["-95.1473332","29.0546246"],["-95.1476254","29.0544643"],["-95.1480807","29.0542422"],["-95.149017","29.0538458"],["-95.1496023","29.0535868"],["-95.1499013","29.0534243"],["-95.1506735","29.0529124"],["-95.1643651","29.0435188"],["-95.1655893","29.0426614"],["-95.1664949","29.0420513"],["-95.1669777","29.0416171"],["-95.1673116","29.0412835"],["-95.167579","29.0409734"],["-95.1678482","29.0406644"],["-95.1681851","29.0402984"],["-95.1684622","29.0400457"],["-95.1688119","29.0397656"],["-95.1693274","29.0393849"],["-95.1700929","29.0388589"],["-95.1709298","29.0382944"],["-95.1713704","29.0380413"],["-95.1719147","29.0377693"],["-95.1728996","29.0372978"],["-95.175858","29.0358365"],["-95.1771841","29.0351665"],["-95.17783","29.0348178"],["-95.1781777","29.034606"],["-95.1784652","29.0343867"],["-95.1787338","29.0341624"],["-95.1789782","29.0339345"],["-95.1792129","29.0336667"],["-95.1795572","29.0332315"],["-95.1798698","29.0328352"],["-95.1804528","29.03214"],["-95.1806703","29.0319077"],["-95.1809097","29.0316791"],["-95.181212","29.0314479"],["-95.1816244","29.0311594"],["-95.1823744","29.0306678"],["-95.2047051","29.0156046"],["-95.2091933","29.0126137"],["-95.2105753","29.0116946"],["-95.2169536","29.0074416"],["-95.2304581","28.9976255"],["-95.2308523","28.9972633"],["-95.2312226","28.9968675"],["-95.2314571","28.9965442"],["-95.2317862","28.9960507"],["-95.2320136","28.9957168"],["-95.2323149","28.9953126"],["-95.2326246","28.9949559"],["-95.2329022","28.9946799"],["-95.2332371","28.9943926"],["-95.2342737","28.9935858"],["-95.2531912","28.9793091"],["-95.2535009","28.9790687"],["-95.2539532","28.9786952"],["-95.2582451","28.9753844"],["-95.2587215","28.9750168"],["-95.2593525","28.9745146"],["-95.2598583","28.9741208"],["-95.2621761","28.9723272"],["-95.2632893","28.9714788"],["-95.2663823","28.9690189"],["-95.2682801","28.967402"],["-95.2687401","28.9670131"],["-95.2692326","28.9666189"],["-95.2694973","28.9663931"],["-95.2697711","28.9661592"],["-95.2702195","28.9657514"],["-95.2733363","28.9630826"],["-95.2737915","28.9626977"],["-95.276009","28.9607617"],["-95.2764225","28.9603795"],["-95.2773798","28.9595496"],["-95.2778273","28.9591497"],["-95.2788911","28.9581917"],["-95.2790952","28.9580509"],["-95.2793498","28.9579603"],["-95.2797277","28.9578685"],["-95.2810815","28.9576348"],["-95.281363","28.9575768"],["-95.2816114","28.9575038"],["-95.2817771","28.9574196"],["-95.2819346","28.957315"],["-95.2820773","28.9571932"],["-95.2822079","28.9570706"],["-95.2871234","28.9521052"],["-95.2873037","28.9519626"],["-95.2873757","28.9519302"],["-95.2874289","28.9519116"],["-95.2874846","28.9519034"],["-95.2875782","28.9519072"],["-95.2877771","28.9519305"],["-95.2879344","28.952053"],["-95.2881472","28.952229"],["-95.2886884","28.9526738"],["-95.2899094","28.9536375"],["-95.2974901","28.9594053"],["-95.3011423","28.962053"],["-95.3104909","28.9691424"],["-95.3109505","28.9695151"],["-95.31197","28.9702902"],["-95.3122542","28.9704727"],["-95.3124941","28.9706234"],["-95.3136342","28.9712338"],["-95.3226249","28.9752974"],["-95.3237083","28.9757853"],["-95.3407712","28.9834577"],["-95.3531472","28.9894637"],["-95.3738718","28.9995254"],["-95.3758411","29.0004011"],["-95.3812737","29.0030155"],["-95.3816895","29.0032919"],["-95.3833058","29.0040942"],["-95.384651","29.0047427"],["-95.3851766","29.0049011"],["-95.3856967","29.0050363"],["-95.3862295","29.0050909"],["-95.3880465","29.0051041"],["-95.389225","29.0050769"],["-95.3904953","29.0050223"],["-95.3908926","29.0050248"],["-95.3912604","29.00505"],["-95.3915693","29.0050853"],["-95.3919119","29.005138"],["-95.392645","29.0053032"],["-95.3929089","29.0053992"],["-95.3931996","29.0054971"],["-95.3934747","29.0056092"],["-95.3961336","29.0066859"],["-95.3997736","29.0082068"],["-95.4010692","29.0087373"],["-95.4015541","29.0089409"],["-95.4024377","29.0093131"],["-95.4030823","29.0095602"],["-95.4034933","29.0096767"],["-95.4040256","29.0098062"],["-95.4048174","29.0099572"],["-95.4052625","29.0100137"],["-95.4057121","29.0100511"],["-95.4064476","29.0100555"],["-95.4130895","29.0099646"],["-95.4152236","29.0099176"],["-95.4171437","29.0098845"],["-95.417639","29.009891"],["-95.4180505","29.0099122"],["-95.418573","29.0099724"],["-95.4192119","29.01007"],["-95.4196128","29.0101657"],["-95.4201428","29.0103134"],["-95.4212521","29.0106834"],["-95.4227316","29.0112259"],["-95.4258543","29.0123513"],["-95.4266617","29.0126605"],["-95.4270941","29.0128241"],["-95.4283965","29.0133287"],["-95.4289635","29.0135894"],["-95.4294012","29.0138346"],["-95.429959","29.0141868"],["-95.4304531","29.0145484"],["-95.4311739","29.0151912"],["-95.431455","29.0154834"],["-95.4317837","29.0158565"],["-95.4320231","29.0161979"],["-95.4333697","29.0183396"],["-95.434393","29.0199753"],["-95.4355835","29.0220211"],["-95.4363051","29.0234484"],["-95.4368469","29.0244823"],["-95.4370916","29.024983"],["-95.4374336","29.0257663"],["-95.4380917","29.027087"],["-95.4385309","29.0280072"],["-95.4388455","29.0285862"],["-95.4390606","29.028942"],["-95.4392954","29.0292908"],["-95.4396118","29.0297257"],["-95.4397725","29.0299188"],["-95.4399752","29.0301468"],["-95.440151","29.0303323"],["-95.4403834","29.0305547"],["-95.4406711","29.0308175"],["-95.4409636","29.0310766"],["-95.4412194","29.031281"],["-95.4414996","29.0314963"],["-95.4419447","29.0317999"],["-95.4444346","29.0334227"],["-95.4457248","29.0342222"],["-95.4467205","29.034817"],["-95.4470449","29.0349976"],["-95.4474622","29.0352272"],["-95.4484645","29.0357321"],["-95.4492279","29.0361442"],["-95.4497101","29.0364216"],["-95.450685","29.037027"],["-95.4514232","29.0375785"],["-95.4518677","29.037932"],["-95.4523203","29.0383389"],["-95.4527124","29.0388057"],["-95.4530431","29.0392086"],["-95.4532876","29.0395577"],["-95.4535121","29.0399351"],["-95.4538114","29.0405591"],["-95.4539511","29.0410242"],["-95.4540763","29.0415191"],["-95.4541226","29.0418697"],["-95.4542371","29.0426689"],["-95.4544951","29.044298"],["-95.4550203","29.0476426"],["-95.4554886","29.0509214"],["-95.4556262","29.052226"],["-95.4556623","29.052901"],["-95.4556434","29.05408"],["-95.4555459","29.055089"],["-95.4554905","29.0555175"],["-95.4554197","29.0558602"],["-95.4552688","29.0564731"],["-95.4552099","29.0566849"],["-95.4550842","29.0569651"],["-95.4548947","29.057284"],["-95.4544305","29.0581222"],["-95.4539759","29.0590561"],["-95.4536039","29.0598946"],["-95.4535838","29.0600235"],["-95.4535801","29.0600808"],["-95.4535926","29.0601353"],["-95.4536171","29.0601796"],["-95.4536572","29.0602209"],["-95.4536871","29.0602418"],["-95.45372","29.0602557"],["-95.4537657","29.060261"],["-95.4540397","29.0601919"],["-95.4564418","29.0582089"],["-95.4568717","29.0577432"],["-95.4572952","29.0572395"],["-95.4576452","29.056825"],["-95.457984","29.0564649"],["-95.4584234","29.0560263"],["-95.4589608","29.0555614"],["-95.4592344","29.0553432"],["-95.4596528","29.055035"],["-95.459997","29.0548352"],["-95.461212","29.054234"],["-95.4620694","29.053808"],["-95.4678976","29.0507482"],["-95.4680726","29.0509082"],["-95.4684829","29.0507151"],["-95.4684845","29.0507144"],["-95.4680729","29.0509083"],["-95.4679545","29.0507192"],["-95.4684073","29.050457"],["-95.4687937","29.0502361"],["-95.469114","29.0500391"],["-95.4693379","29.0498851"],["-95.469609","29.0496667"],["-95.4698449","29.0494601"],["-95.4702618","29.0490567"],["-95.4704414","29.0488575"],["-95.4706384","29.0486142"],["-95.4709945","29.0480981"],["-95.4711627","29.0478251"],["-95.4712529","29.0476736"],["-95.4715348","29.0477285"],["-95.4720538","29.047873"],["-95.4723383","29.0479765"],["-95.4750538","29.0490458"],["-95.4753911","29.0491429"],["-95.4758032","29.0492311"],["-95.4760445","29.0492423"],["-95.4763248","29.0492491"],["-95.4766293","29.0492525"],["-95.4800192","29.0492041"],["-95.4801515","29.0492038"],["-95.4813728","29.0491881"],["-95.4861713","29.0490961"],["-95.4868369","29.0490776"],["-95.487218","29.0490897"],["-95.487736","29.0491692"],["-95.4881035","29.0492526"],["-95.4885001","29.0493847"],["-95.4954473","29.0534012"],["-95.4955988","29.0534845"],["-95.4958507","29.0536069"],["-95.4960883","29.0537172"],["-95.4963058","29.0538113"],["-95.4965667","29.0538925"],["-95.4968566","29.0539497"],["-95.4971535","29.0539826"],["-95.4974746","29.0539938"],["-95.5061951","29.0538597"],["-95.5071442","29.0538387"],["-95.5144","29.0537195"],["-95.5147709","29.0537339"],["-95.5153326","29.0537788"],["-95.5158259","29.0538383"],["-95.5163273","29.0539092"],["-95.5169762","29.0540019"],["-95.518282","29.0541671"],["-95.5305219","29.0557444"],["-95.530553","29.0557488"],["-95.5370194","29.0565959"],["-95.5377926","29.0567367"],["-95.5385363","29.0568964"],["-95.5405435","29.05737"],["-95.5501058","29.0591879"],["-95.5506163","29.0592765"],["-95.5509978","29.0593147"],["-95.5513758","29.0593239"],["-95.5517327","29.0593058"],["-95.5520891","29.059262"],["-95.5524238","29.059202"],["-95.5527433","29.0591199"],["-95.5530502","29.0590186"],["-95.5533574","29.0588963"],["-95.5536312","29.0587643"],["-95.5539096","29.0586062"],["-95.5541654","29.0584342"],["-95.5544056","29.0582499"],["-95.5546381","29.0580418"],["-95.5548443","29.0578334"],["-95.5550284","29.0576107"],["-95.5551761","29.0574136"],["-95.5556466","29.0566474"],["-95.5561426","29.0558456"],["-95.5567189","29.0549444"],["-95.55763","29.0534369"],["-95.5578908","29.0530315"],["-95.558032","29.0528431"],["-95.5582196","29.0526046"],["-95.5583227","29.0524076"],["-95.5593426","29.0513399"],["-95.5595091","29.05115"],["-95.5597763","29.050924"],["-95.5601416","29.0506347"],["-95.5605204","29.0503682"],["-95.5608967","29.0501615"],["-95.5616199","29.0498112"],["-95.562582","29.049511"],["-95.5627684","29.0494597"],["-95.5629754","29.0494114"],["-95.5631747","29.0493736"],["-95.5639948","29.0492525"],["-95.5688482","29.0489342"],["-95.5703754","29.0487997"],["-95.5694402","29.0402206"],["-95.5693083","29.0393646"],["-95.5691174","29.0384401"],["-95.5688897","29.037677"],["-95.5686922","29.0370304"],["-95.5686452","29.0360234"],["-95.5686002","29.0358925"],["-95.5683514","29.0254114"],["-95.5684351","29.0249573"],["-95.568566","29.0244695"],["-95.5697316","29.0223911"],["-95.5701374","29.0216339"],["-95.5704325","29.0210197"],["-95.5708575","29.0200645"],["-95.5719013","29.0173939"],["-95.5722263","29.0167178"],["-95.5724601","29.0162935"],["-95.5740066","29.0147056"],["-95.5747207","29.014018"],["-95.5753863","29.013558"],["-95.5759134","29.0132761"],["-95.5765477","29.0130083"],["-95.577204","29.0128029"],["-95.5783883","29.0125953"],["-95.5817041","29.0120568"],["-95.583684","29.0117246"],["-95.5843936","29.0116368"],["-95.5852584","29.0115032"],["-95.587002","29.0112445"],["-95.589334","29.0108554"],["-95.5912189","29.0105223"],["-95.6041879","29.0083986"],["-95.6048625","29.0083121"],["-95.6054661","29.0082608"],["-95.617692","29.0084863"],["-95.6226007","29.0091224"],["-95.6238335","29.009267"],["-95.6242423","29.0092815"],["-95.6246191","29.0092664"],["-95.6250093","29.0092131"],["-95.6254062","29.0091143"],["-95.6260245","29.0089137"],["-95.6268786","29.0085656"],["-95.6274073","29.008339"],["-95.6382526","29.0038477"],["-95.6445911","29.0006013"],["-95.6454944","29.0000838"],["-95.6458043","28.9998687"],["-95.6459473","28.9997442"],["-95.6463603","28.9993791"],["-95.6506665","28.9954678"],["-95.6514686","28.9948935"],["-95.6572021","28.9919868"],["-95.6593949","28.9909114"],["-95.6604151","28.9903894"],["-95.66116","28.9899884"],["-95.6614448","28.9897992"],["-95.6617144","28.9895963"],["-95.6620973","28.9893038"],["-95.6719874","28.9812552"],["-95.6886002","28.9660294"],["-95.6889796","28.9657304"],["-95.6909709","28.9643506"],["-95.6918045","28.9637383"],["-95.6940386","28.9622374"],["-95.6969821","28.9603097"],["-95.6976","28.9599559"],["-95.698137","28.9596551"],["-95.6984784","28.9594592"],["-95.7031822","28.9567688"],["-95.7087052","28.9536436"],["-95.7092595","28.9533506"],["-95.7097567","28.9530468"],["-95.7106537","28.952365"],["-95.7110901","28.9518849"],["-95.7135576","28.9482727"],["-95.7143589","28.9472541"],["-95.7146237","28.9469757"],["-95.7148797","28.9467343"],["-95.715713","28.9460906"],["-95.7189407","28.943704"],["-95.7192661","28.9434503"],["-95.7244074","28.9397149"],["-95.7310463","28.9350252"],["-95.7317381","28.9344068"],["-95.7388872","28.9278733"],["-95.73939","28.9275249"],["-95.7399986","28.9271485"],["-95.7405287","28.9269074"],["-95.7410386","28.9267126"],["-95.7415242","28.9265711"],["-95.7420533","28.9264663"],["-95.7430605","28.926221"],["-95.743646","28.9260359"],["-95.7441811","28.9257719"],["-95.7447743","28.9254312"],["-95.7457817","28.9245743"],["-95.7513275","28.9193657"],["-95.7678408","28.9042933"],["-95.7834277","28.8915944"],["-95.7850856","28.89017"],["-95.7854387","28.8898435"],["-95.8189354","28.8593949"],["-95.8201756","28.8583159"],["-95.8207408","28.8579611"],["-95.8212486","28.8576682"],["-95.8222385","28.8572136"],["-95.8229234","28.8569906"],["-95.8235135","28.8568131"],["-95.8246141","28.8565066"],["-95.8344651","28.8536351"],["-95.8351934","28.8533827"],["-95.835905","28.8530804"],["-95.8366987","28.8527203"],["-95.8383957","28.8518122"],["-95.8428771","28.8493127"],["-95.843601","28.8488712"],["-95.844159","28.8484465"],["-95.8445682","28.8480941"],["-95.845163","28.8474931"],["-95.8506793","28.8415159"],["-95.8521168","28.8400093"],["-95.85272","28.8393988"],["-95.8529328","28.8391855"],["-95.8536268","28.8385249"],["-95.853938","28.8382813"],["-95.8542357","28.8381056"],["-95.8579935","28.8365904"],["-95.8584331","28.8364541"],["-95.8589673","28.8363723"],["-95.8610513","28.8363253"],["-95.8684821","28.8361219"],["-95.870254","28.835897"],["-95.8750956","28.8351432"],["-95.8768074","28.8348964"],["-95.8776933","28.8347561"],["-95.8820786","28.8341098"],["-95.8827611","28.8340838"],["-95.8839434","28.8340907"],["-95.8863735","28.8340742"],["-95.8869575","28.8340596"],["-95.8873446","28.8340569"],["-95.8875889","28.8341049"],["-95.887986","28.8342644"],["-95.8883352","28.8344768"],["-95.8885954","28.8347275"],["-95.8887268","28.834934"],["-95.8889499","28.8355072"],["-95.8889805","28.8372457"],["-95.8890008","28.8378693"],["-95.8890068","28.8379364"],["-95.8891571","28.8382769"],["-95.8893563","28.838545"],["-95.8895803","28.8387507"],["-95.8898417","28.8389042"],["-95.890092","28.8390229"],["-95.8903649","28.8390967"],["-95.8908252","28.8391548"],["-95.9263224","28.838308"],["-95.9269371","28.8382441"],["-95.9276091","28.8380829"],["-95.9283183","28.8378497"],["-95.9287659","28.8376971"],["-95.9307981","28.8370605"],["-95.9319528","28.836696"],["-95.9331355","28.8363065"],["-95.9364676","28.8352032"],["-95.9362983","28.8347666"],["-95.9351107","28.8320189"],["-95.9343773","28.8302462"],["-95.9341994","28.8298195"],["-95.9338767","28.8289068"],["-95.9337022","28.8284096"],["-95.9335287","28.8277215"],["-95.9334372","28.826993"],["-95.9333395","28.8261071"],["-95.9332158","28.8236737"],["-95.9331477","28.8222726"],["-95.9330477","28.8199786"],["-95.9329117","28.8169023"],["-95.9328367","28.8151433"],["-95.9328329","28.814702"],["-95.9329041","28.8145545"],["-95.9329578","28.8144797"],["-95.9330721","28.8143927"],["-95.9333023","28.8142987"],["-95.9346414","28.8137672"],["-95.9522822","28.8067562"],["-95.9530303","28.806458"],["-95.9541257","28.8060299"],["-95.9632076","28.8024403"],["-95.9648798","28.8017773"],["-95.9846569","28.7939197"],["-95.990832","28.7915888"],["-95.9918449","28.7912323"],["-95.9993901","28.7883154"],["-96.0006126","28.7879061"],["-96.001194","28.787756"],["-96.0016556","28.7876447"],["-96.0024081","28.787494"],["-96.0031951","28.7873707"],["-96.003913","28.7872819"],["-96.0047029","28.7872038"],["-96.0057694","28.7871441"],["-96.0070204","28.7870912"],["-96.0212863","28.7869614"],["-96.022252","28.7869556"],["-96.0240409","28.7869154"],["-96.0248611","28.7869222"],["-96.0255968","28.7869754"],["-96.0262116","28.787072"],["-96.0267111","28.7871815"],["-96.0273047","28.7873446"],["-96.027842","28.7875292"],["-96.0285753","28.7878496"],["-96.029207","28.7881866"],["-96.0297578","28.7885391"],["-96.0304117","28.7890516"],["-96.0308664","28.7894693"],["-96.0311296","28.7897492"],["-96.0314951","28.7901925"],["-96.0318499","28.7906643"],["-96.0321871","28.7912452"],["-96.0323877","28.791657"],["-96.0326206","28.7922455"],["-96.0327549","28.7926787"],["-96.0328517","28.7931031"],["-96.0329385","28.7936082"],["-96.0329982","28.794613"],["-96.0330873","28.7967466"],["-96.0331677","28.7979709"],["-96.0332951","28.7987306"],["-96.0335011","28.7995711"],["-96.0337173","28.8002286"],["-96.0339436","28.8007889"],["-96.0342469","28.8014206"],["-96.0345818","28.8020117"],["-96.034945","28.8025801"],["-96.0353342","28.8031128"],["-96.0357058","28.8035602"],["-96.0360956","28.8039975"],["-96.0365989","28.8045182"],["-96.0371165","28.8049957"],["-96.0375574","28.805379"],["-96.0380021","28.8057288"],["-96.0384295","28.8060486"],["-96.0389633","28.8064005"],["-96.0396556","28.80682"],["-96.0403922","28.8072225"],["-96.0413051","28.8076594"],["-96.0421211","28.8079869"],["-96.0429203","28.8082688"],["-96.0437727","28.8085144"],["-96.0446198","28.8087151"],["-96.0455428","28.8088847"],["-96.0464963","28.8090103"],["-96.04721","28.8090702"],["-96.0482868","28.8091055"],["-96.0521374","28.8090761"],["-96.0533737","28.8090958"],["-96.0545266","28.8090489"],["-96.0552396","28.8090078"],["-96.0560374","28.8089269"],["-96.0568964","28.8087982"],["-96.0577042","28.8086411"],["-96.0583653","28.8084685"],["-96.0591668","28.8082282"],["-96.0599094","28.8079618"],["-96.0607465","28.8076145"],["-96.0613532","28.8073259"],["-96.0621644","28.8068851"],["-96.062964","28.8063881"],["-96.0638012","28.8057805"],["-96.0645355","28.8051781"],["-96.0649801","28.8047621"],["-96.065443","28.8042891"],["-96.0658435","28.8038441"],["-96.0662097","28.8033985"],["-96.0665232","28.8029875"],["-96.0727066","28.7935254"],["-96.0742573","28.7911741"],["-96.0745712","28.7907758"],["-96.0748944","28.7903901"],["-96.0753245","28.7899423"],["-96.0756801","28.789602"],["-96.0761178","28.7892233"],["-96.0767075","28.7887661"],["-96.0771496","28.7884576"],["-96.0777543","28.7880902"],["-96.0785367","28.7876776"],["-96.0793835","28.7873066"],["-96.0801237","28.7870381"],["-96.0813807","28.7867111"],["-96.0819656","28.7865863"],["-96.0825655","28.7864934"],["-96.0832007","28.7864259"],["-96.0844388","28.7863886"],["-96.1068347","28.7859891"],["-96.1082694","28.7859744"],["-96.1142252","28.7859484"],["-96.1178047","28.7859198"],["-96.1185257","28.7858646"],["-96.11905","28.7857926"],["-96.1194613","28.7857099"],["-96.1201752","28.785519"],["-96.1214906","28.7851366"],["-96.1225291","28.784861"],["-96.1236665","28.784625"],["-96.1249943","28.7844517"],["-96.1257894","28.7843816"],["-96.126733","28.7843357"],["-96.1440643","28.7842593"],["-96.1449547","28.7842757"],["-96.1456686","28.7843129"],["-96.1461222","28.784384"],["-96.1467231","28.7845505"],["-96.1471475","28.7846927"],["-96.147708","28.7849405"],["-96.1481767","28.785198"],["-96.1487637","28.7856029"],["-96.1510748","28.7874579"],["-96.1516622","28.7879043"],["-96.1520539","28.7881563"],["-96.15241","28.7883531"],["-96.1527244","28.7885015"],["-96.1530383","28.7886265"],["-96.1534067","28.7887458"],["-96.1538355","28.7888587"],["-96.1543352","28.7889635"],["-96.1548021","28.7890125"],["-96.1667898","28.7891867"],["-96.1831234","28.7890781"],["-96.1837359","28.7890743"],["-96.1935619","28.7889367"],["-96.1975149","28.788981"],["-96.2099293","28.7884552"],["-96.2105293","28.7718566"],["-96.2496284","28.7720715"],["-96.2533788","28.7720571"],["-96.2649901","28.7719942"],["-96.2665706","28.7708006"],["-96.2668329","28.7706159"],["-96.2670151","28.7705826"],["-96.2671832","28.7706089"],["-96.2676291","28.7709083"],["-96.3063134","28.799272"],["-96.3316026","28.7772526"],["-96.3336603","28.775398"],["-96.3340071","28.775052"],["-96.3343304","28.7746956"],["-96.3346404","28.7742973"],["-96.3349911","28.7737724"],["-96.3355285","28.7727496"],["-96.3363521","28.7711753"],["-96.3365495","28.7708509"],["-96.3367671","28.7705301"],["-96.3369898","28.7702409"],["-96.3372572","28.7699161"],["-96.3374827","28.7696665"],["-96.3377913","28.7693682"],["-96.3380777","28.7691017"],["-96.3444559","28.7634142"],["-96.3449178","28.7629714"],["-96.3452144","28.7626671"],["-96.3454749","28.7623743"],["-96.3457406","28.7620243"],["-96.3459977","28.7616369"],["-96.3619058","28.7344766"],["-96.3634701","28.7318648"],["-96.3649727","28.7293046"],["-96.3655225","28.7287567"],["-96.3659032","28.7285201"],["-96.3663314","28.7283138"],["-96.3668589","28.7281625"],["-96.3672993","28.7281068"],["-96.3677822","28.7281134"],["-96.3684492","28.728272"],["-96.3695507","28.7287696"],["-96.3834312","28.7372053"],["-96.3844698","28.7377559"],["-96.3856136","28.7382352"],["-96.3867263","28.7386666"],["-96.3876404","28.7389346"],["-96.3884999","28.7391596"],["-96.3897058","28.7394058"],["-96.3907169","28.7395503"],["-96.3924539","28.7396855"],["-96.3935319","28.7396734"],["-96.3946465","28.7396176"],["-96.3958279","28.7394816"],["-96.3967282","28.7393336"],["-96.4004779","28.7385165"],["-96.401478","28.7383085"],["-96.4025416","28.7381616"],["-96.403684","28.7380209"],["-96.4047896","28.7378758"],["-96.4056931","28.7376701"],["-96.4064819","28.7374185"],["-96.4079097","28.7368515"],["-96.4096698","28.7360389"],["-96.4117168","28.7350867"],["-96.4125082","28.7347713"],["-96.4132844","28.7345231"],["-96.4148101","28.734151"],["-96.4158619","28.7339783"],["-96.4207846","28.7334685"],["-96.4213044","28.7334145"],["-96.4331105","28.7322149"],["-96.4366803","28.731881"],["-96.4379948","28.7317504"],["-96.4391193","28.7315714"],["-96.4401837","28.7313215"],["-96.4411324","28.7310301"],["-96.4426528","28.7304473"],["-96.4436014","28.7300038"],["-96.4594979","28.7205552"],["-96.4704236","28.7149197"],["-96.4726867","28.7138052"],["-96.473039","28.713658"],["-96.4734304","28.7135195"],["-96.4824211","28.7104484"],["-96.4843594","28.7097275"],["-96.5522361","28.6774942"],["-96.552748","28.6772337"],["-96.5535714","28.6768485"],["-96.5564845","28.6754926"],["-96.5575525","28.6750868"],["-96.5584303","28.674829"],["-96.5595207","28.6745016"],["-96.5606496","28.674097"],["-96.5619275","28.6735803"],["-96.5700711","28.6693456"],["-96.5749185","28.6670019"],["-96.5770927","28.6657356"],["-96.5799467","28.6638871"],["-96.5811536","28.66288"],["-96.5826712","28.6614582"],["-96.5834232","28.6608027"],["-96.5838387","28.6605045"],["-96.586226","28.658785"],["-96.5870966","28.6581645"],["-96.6120877","28.6401817"],["-96.6132562","28.6393861"],["-96.6137584","28.6390765"],["-96.6138778","28.6390248"],["-96.6148309","28.6386102"],["-96.617194","28.6378278"],["-96.6226449","28.6360289"],["-96.623904","28.6356232"],["-96.6251513","28.6352182"],["-96.6258998","28.6349453"],["-96.6282876","28.6341714"],["-96.6287113","28.6340257"],["-96.6289482","28.6339313"],["-96.629249","28.6337983"],["-96.6295282","28.6336671"],["-96.6298056","28.6335283"],["-96.6302886","28.6332453"],["-96.6305279","28.6330958"],["-96.6307839","28.6329195"],["-96.6310092","28.6327488"],["-96.6315481","28.6323074"],["-96.6317859","28.6320929"],["-96.6319671","28.6319352"],["-96.6323774","28.6314723"],["-96.6326229","28.6311759"],["-96.6327886","28.6309586"],["-96.6329538","28.6307209"],["-96.6371363","28.6242639"],["-96.6374413","28.6238066"],["-96.6378765","28.6231299"],["-96.6380301","28.6228708"],["-96.6381773","28.6225912"],["-96.6382799","28.6223744"],["-96.6383746","28.6221537"],["-96.6384503","28.6219508"],["-96.6385327","28.6217129"],["-96.6386011","28.6214727"],["-96.6386767","28.621185"],["-96.6387263","28.6209257"],["-96.6387568","28.6207427"],["-96.6387662","28.6206792"],["-96.6392197","28.6176249"],["-96.6392549","28.6174495"],["-96.6393075","28.6172242"],["-96.6393698","28.6170123"],["-96.639445","28.6167957"],["-96.6395259","28.6165853"],["-96.6395607","28.616504"],["-96.6395686","28.6164859"],["-96.6397126","28.6161885"],["-96.6398087","28.6160113"],["-96.6399174","28.6158282"],["-96.6400385","28.6156499"],["-96.6401859","28.6154469"],["-96.6403437","28.6152464"],["-96.6404882","28.6150806"],["-96.6407741","28.6147884"],["-96.6409605","28.6146139"],["-96.6411565","28.6144426"],["-96.6413823","28.6142689"],["-96.6416347","28.6140891"],["-96.6422013","28.6137493"],["-96.6444899","28.6124123"],["-96.6446507","28.6123195"],["-96.6452455","28.6119646"],["-96.6459632","28.6115273"],["-96.646578","28.6111065"],["-96.6489892","28.6093278"],["-96.649481","28.6089171"],["-96.6502518","28.6082825"],["-96.6505783","28.6080552"],["-96.6509642","28.6077996"],["-96.6519746","28.6071452"],["-96.6523964","28.6068563"],["-96.6661952","28.5982209"],["-96.6670838","28.5976657"],["-96.6742529","28.5931765"],["-96.6941889","28.5822188"],["-96.6955928","28.5814102"],["-96.6963213","28.5809672"],["-96.6970817","28.5804654"],["-96.7018864","28.5770965"],["-96.7032407","28.5761581"],["-96.7050287","28.5749444"],["-96.706979","28.5736418"],["-96.7159848","28.5685798"],["-96.7168116","28.5680992"],["-96.7278879","28.5619199"],["-96.7292889","28.5610871"],["-96.730257","28.5604291"],["-96.7320546","28.5589846"],["-96.7325751","28.5586109"],["-96.7332415","28.5581651"],["-96.7338118","28.5578497"],["-96.7349917","28.557208"],["-96.7365967","28.5565102"],["-96.7375975","28.5561632"],["-96.7395876","28.5553401"],["-96.7565304","28.5459034"],["-96.7581929","28.5449832"],["-96.7589398","28.5445687"],["-96.7598961","28.5440267"],["-96.7901966","28.5271175"],["-96.7915103","28.526388"],["-96.7918036","28.5262286"],["-96.8059967","28.5182616"],["-96.8120461","28.5148581"],["-96.8129944","28.5143078"],["-96.8132361","28.5141391"],["-96.8148555","28.5128838"],["-96.8151673","28.5126738"],["-96.8156827","28.5123673"],["-96.8402137","28.4986504"],["-96.8407126","28.4983462"],["-96.8409985","28.4981504"],["-96.8413061","28.4978916"],["-96.8570336","28.4822854"],["-96.8582833","28.4810761"],["-96.858593","28.4808238"],["-96.8589298","28.4805804"],["-96.8592668","28.4803574"],["-96.8597372","28.4800787"],["-96.8625784","28.4785708"],["-96.8625852","28.478567"],["-96.8627132","28.4784996"],["-96.8700785","28.474592"],["-96.8754654","28.4717139"],["-96.8765746","28.470971"],["-96.8776357","28.4701823"],["-96.8803518","28.4680511"],["-96.8818571","28.4668592"],["-96.8842122","28.4649947"],["-96.8851156","28.4642507"],["-96.8853943","28.4639247"],["-96.8856185","28.4636131"],["-96.885758","28.4633274"],["-96.8860014","28.462559"],["-96.8879933","28.4553318"],["-96.8880083","28.4552776"],["-96.8885078","28.453519"],["-96.8885514","28.453347"],["-96.8886252","28.4528363"],["-96.8887","28.4521516"],["-96.8887224","28.451457"],["-96.8886819","28.4497849"],["-96.8886776","28.4486452"],["-96.8887152","28.4479164"],["-96.8888874","28.4471206"],["-96.8943393","28.4278562"],["-96.8970108","28.4209665"],["-96.9140236","28.3782707"],["-96.9145005","28.3769217"],["-96.9154358","28.374658"],["-96.9326555","28.3312663"],["-96.9365057","28.3215447"],["-96.9520218","28.282562"],["-96.9523726","28.281688"],["-96.9526814","28.2809573"],["-96.9529","28.2804735"],["-96.9531808","28.2799029"],["-96.9541279","28.2783755"],["-96.9545001","28.2778686"],["-96.9549701","28.277285"],["-96.9554765","28.2767162"],["-96.9559646","28.2761961"],["-96.9562716","28.2758915"],["-96.9564353","28.2757414"],["-96.9565932","28.2755836"],["-96.9571101","28.2751619"],["-96.9578788","28.2745701"],["-96.9605417","28.2725978"],["-96.9649188","28.2692872"],["-96.9654647","28.2688502"],["-96.9657093","28.2686302"],["-96.965986","28.2683524"],["-96.9663093","28.2680121"],["-96.9666702","28.267566"],["-96.9668937","28.2672553"],["-96.9670929","28.2669393"],["-96.9672695","28.2666291"],["-96.9800906","28.2411649"],["-96.9802683","28.2408173"],["-96.9846738","28.2320314"],["-96.9852665","28.230715"],["-96.9853882","28.2303087"],["-96.9854465","28.2300659"],["-96.9855831","28.2293966"],["-96.9886124","28.2136461"],["-96.9962497","28.1733464"],["-96.9964696","28.1724488"],["-97.0006468","28.158724"],["-97.0036066","28.1489827"],["-97.0038405","28.1481435"],["-97.0040406","28.1475529"],["-97.0040901","28.1472308"],["-97.0041169","28.1466854"],["-97.0041572","28.1449781"],["-97.0041861","28.1445335"],["-97.0042721","28.1440097"],["-97.0043695","28.1436129"],["-97.0044824","28.1432749"],["-97.0045899","28.1429944"],["-97.0047643","28.1426655"],["-97.0049185","28.1423996"],["-97.0050568","28.1421903"],["-97.0055787","28.1414863"],["-97.006403","28.1402484"],["-97.0067201","28.1397709"],["-97.0074457","28.1386939"],["-97.0075619","28.1385031"],["-97.007781","28.1380652"],["-97.0078957","28.1378032"],["-97.0080241","28.1375047"],["-97.0082332","28.1370197"],["-97.0083402","28.136791"],["-97.0084953","28.1364962"],["-97.0087259","28.1361276"],["-97.0256956","28.1120855"],["-97.0260463","28.1116509"],["-97.0264843","28.1111556"],["-97.0265424","28.1110755"],["-97.0265901","28.1110172"],["-97.0266868","28.1109037"],["-97.0267855","28.110788"],["-97.0268758","28.1106844"],["-97.0269529","28.1105955"],["-97.0271911","28.1102894"],["-97.027504","28.1098739"],["-97.0279986","28.1089998"],["-97.0295286","28.1057675"],["-97.0298647","28.1050481"],["-97.0302182","28.104315"],["-97.030414","28.1039067"],["-97.0323173","28.0999623"],["-97.033561","28.0974084"],["-97.0370047","28.0902331"],["-97.0371564","28.0898453"],["-97.0372853","28.089437"],["-97.0374032","28.0889782"],["-97.0398178","28.0776253"],["-97.041259","28.070725"],["-97.0413288","28.0702457"],["-97.0413427","28.0699281"],["-97.0413447","28.0695831"],["-97.0412155","28.0629747"],["-97.0411897","28.0618137"],["-97.0412829","28.061643"],["-97.0413481","28.0615773"],["-97.0414231","28.0615273"],["-97.0415556","28.0614727"],["-97.0457173","28.0613937"],["-97.046661","28.0613331"],["-97.0472662","28.0612817"],["-97.0480327","28.0612967"],["-97.0490451","28.0613768"],["-97.0529075","28.0619931"],["-97.0538972","28.062152"],["-97.0551808","28.06237"],["-97.0603665","28.0631998"],["-97.060484","28.0632477"],["-97.0609722","28.0633395"],["-97.0622738","28.0635643"],["-97.0625926","28.0636418"],["-97.0628167","28.0637145"],["-97.063009","28.0637871"],["-97.0631021","28.0636901"],["-97.0640381","28.0616112"],["-97.0644475","28.0607019"],["-97.0647669","28.0599331"],["-97.065119","28.0591462"],["-97.0653952","28.0585923"],["-97.0656869","28.0580781"],["-97.0678229","28.055032"],["-97.0759559","28.0435363"],["-97.0764965","28.0426692"],["-97.0775104","28.0407774"],["-97.0780069","28.039741"],["-97.0808001","28.0329266"],["-97.0816535","28.0307994"],["-97.0843185","28.0240442"],["-97.0849153","28.0226346"],["-97.0853545","28.0217175"],["-97.0857391","28.0210418"],["-97.0860933","28.0205393"],["-97.0864995","28.0200388"],["-97.0886334","28.0172008"],["-97.0959948","28.0075507"],["-97.0974725","28.0057762"],["-97.0980404","28.0050582"],["-97.098723","28.0041243"],["-97.1000614","28.0020446"],["-97.1012428","28.0001533"],["-97.1018569","27.9992086"],["-97.1025513","27.9981549"],["-97.103248","27.9971668"],["-97.1308347","27.9605613"],["-97.1324362","27.9584335"],["-97.1501026","27.935"],["-97.1510575","27.9337209"],["-97.1553195","27.9280406"],["-97.1564192","27.9266307"],["-97.15687","27.9261593"],["-97.1575696","27.9255012"],["-97.1581064","27.9251019"],["-97.1585377","27.9248184"],["-97.1590792","27.9245358"],["-97.1599973","27.9241004"],["-97.1617397","27.9234096"],["-97.1622762","27.9232279"],["-97.1628088","27.9230919"],["-97.1633296","27.9229911"],["-97.1639231","27.9229064"],["-97.1644716","27.9228694"],["-97.1650491","27.9228648"],["-97.1656595","27.9229307"],["-97.1664461","27.9230486"],["-97.1669301","27.9231742"],["-97.1673919","27.9233277"],["-97.1677228","27.923465"],["-97.1680342","27.9236056"],["-97.168398","27.9237821"],["-97.1707405","27.9250334"],["-97.1735557","27.9265402"],["-97.1776574","27.928755"],["-97.1784261","27.9290691"],["-97.1791846","27.9293461"],["-97.1798282","27.9295141"],["-97.1805669","27.9296911"],["-97.181188","27.9297338"],["-97.1818903","27.9297574"],["-97.1908587","27.9292954"],["-97.2055708","27.9283386"],["-97.212257","27.9279622"],["-97.2618769","27.9274567"],["-97.2658837","27.9273132"],["-97.2671361","27.9271798"],["-97.2678067","27.9270166"],["-97.2685323","27.9268088"],["-97.2694948","27.9264243"],["-97.270653","27.9257442"],["-97.2710758","27.9254236"],["-97.2718909","27.9247123"],["-97.2720957","27.9245044"],["-97.2723431","27.9242255"],["-97.2727269","27.9237263"],["-97.2749498","27.9211628"],["-97.2765435","27.9196613"],["-97.2777211","27.9187084"],["-97.2789164","27.9180016"],["-97.2805794","27.9171265"],["-97.281932","27.9165392"],["-97.2829246","27.9161443"],["-97.2845254","27.9157204"],["-97.28614","27.915381"],["-97.2879918","27.9151779"],["-97.2904375","27.9149611"],["-97.2926465","27.9147738"],["-97.2945118","27.9146425"],["-97.2953048","27.914521"],["-97.295593","27.9144497"],["-97.2960513","27.9142943"],["-97.2965803","27.9140429"],["-97.2970598","27.9137156"],["-97.2975567","27.9133149"],["-97.297844","27.912996"],["-97.2981031","27.9126333"],["-97.2983453","27.9122519"],["-97.2985673","27.9116602"],["-97.2987813","27.9110239"],["-97.2989626","27.9105449"],["-97.2993367","27.9097466"],["-97.2997828","27.9088614"],["-97.3006321","27.907473"],["-97.3019942","27.9054045"],["-97.3025525","27.9046481"],["-97.3034252","27.9036224"],["-97.303858","27.9030861"],["-97.3045134","27.9022073"],["-97.3112617","27.8921069"],["-97.3116148","27.8914861"],["-97.3124301","27.8898609"],["-97.3137866","27.8877515"],["-97.3154465","27.8851065"],["-97.3160301","27.8842305"],["-97.3166767","27.8833948"],["-97.3174019","27.8826262"],["-97.3183603","27.8817296"],["-97.3206856","27.8799884"],["-97.3250085","27.8768382"],["-97.3263709","27.8758305"],["-97.3266216","27.8756383"],["-97.3276369","27.8749141"],["-97.3418069","27.8647849"],["-97.3487427","27.8597568"],["-97.3819857","27.8356825"],["-97.3825474","27.83526"],["-97.3829582","27.8349152"],["-97.383426","27.8344919"],["-97.383959","27.8339116"],["-97.3843852","27.8334227"],["-97.384929","27.83267"],["-97.3872056","27.8294027"],["-97.3872945","27.8292621"],["-97.3873848","27.8290928"],["-97.387458","27.8289487"],["-97.3880988","27.8275446"],["-97.3881869","27.8273643"],["-97.3882986","27.8271723"],["-97.3887259","27.8265475"],["-97.389719","27.8251185"],["-97.3897983","27.8249873"],["-97.3898753","27.8248426"],["-97.3899409","27.8247031"],["-97.390002","27.8245588"],["-97.3900732","27.8243641"],["-97.3901376","27.8241568"],["-97.3901807","27.8239769"],["-97.390213","27.8237753"],["-97.390237","27.8235534"],["-97.3902461","27.8232211"],["-97.3902389","27.8224619"],["-97.3902356","27.8219494"],["-97.3902424","27.8217638"],["-97.3902699","27.8215626"],["-97.3903224","27.8212652"],["-97.3904426","27.8208156"],["-97.3905664","27.8204636"],["-97.3907535","27.8200921"],["-97.3909565","27.8197239"],["-97.3963504","27.8108928"],["-97.3967237","27.8102445"],["-97.3969449","27.8097826"],["-97.3971256","27.8093129"],["-97.397285","27.8088272"],["-97.3973946","27.8084234"],["-97.3974919","27.8079685"],["-97.3975625","27.8075255"],["-97.3975954","27.8070754"],["-97.3976071","27.8066799"],["-97.3976095","27.8062543"],["-97.3975658","27.8057515"],["-97.3974938","27.8052249"],["-97.3974265","27.8047907"],["-97.3973383","27.804393"],["-97.3972076","27.8038259"],["-97.3970749","27.8030719"],["-97.3969791","27.8023923"],["-97.3969829","27.8018855"],["-97.3971248","27.801508"],["-97.3974764","27.8011512"],["-97.3976879","27.8019791"],["-97.3955577","27.802333"],["-97.3953234","27.8014651"],["-97.3956625","27.8011169"],["-97.3958711","27.8009493"],["-97.3960969","27.8008147"],["-97.399564","27.7991822"],["-97.40011","27.7989193"],["-97.4007417","27.7986267"],["-97.4012073","27.7984292"],["-97.4014918","27.7983231"],["-97.4021454","27.7981297"],["-97.4024571","27.7980697"],["-97.4027864","27.7980172"],["-97.4031873","27.797976"],["-97.4043528","27.7978944"],["-97.4051555","27.7978186"],["-97.4055662","27.7977898"],["-97.406487","27.7977685"],["-97.4120851","27.7979109"],["-97.4124167","27.7979364"],["-97.4126331","27.7979585"],["-97.4128444","27.7979751"],["-97.4134808","27.797999"],["-97.4157752","27.7980778"],["-97.4171012","27.7981922"],["-97.4174932","27.7982248"],["-97.4178203","27.7982554"],["-97.418171","27.7983065"],["-97.4185199","27.798363"],["-97.418808","27.7984303"],["-97.4195839","27.7986325"],["-97.4198816","27.7987406"],["-97.4202806","27.7988973"],["-97.4207483","27.799123"],["-97.4225412","27.8001746"],["-97.4232829","27.8005993"],["-97.4241184","27.801009"],["-97.4247377","27.8012675"],["-97.4251451","27.8014229"],["-97.42571","27.8016176"],["-97.4262317","27.8017829"],["-97.4268143","27.8019423"],["-97.4272919","27.8020602"],["-97.4277401","27.8021563"],["-97.4281489","27.8022333"],["-97.4285325","27.8022999"],["-97.4290078","27.8023574"],["-97.4295031","27.8024072"],["-97.4418295","27.8028875"],["-97.4447826","27.803114"],["-97.4556342","27.8042036"],["-97.4568171","27.8043238"],["-97.4585289","27.8044407"],["-97.4593595","27.8044541"],["-97.4639314","27.80431"],["-97.4647123","27.8043788"],["-97.4659874","27.8045662"],["-97.4665892","27.8046073"],["-97.4672772","27.8046103"],["-97.4724225","27.8043495"],["-97.4800462","27.8048081"],["-97.484219","27.8051435"],["-97.4860243","27.8053823"],["-97.487044","27.8055932"],["-97.4887795","27.8059733"],["-97.490821","27.8064955"],["-97.4929517","27.8072181"],["-97.505434","27.8124967"],["-97.5073154","27.8134411"],["-97.5156275","27.8189848"],["-97.5180398","27.8205296"],["-97.5197546","27.8214504"],["-97.52052","27.8217561"],["-97.5330575","27.8263481"],["-97.5354563","27.8274702"],["-97.5383314","27.8291511"],["-97.5407082","27.8305515"],["-97.5423853","27.831528"],["-97.5444591","27.8327393"],["-97.5621946","27.8430963"],["-97.5627813","27.8434074"],["-97.5640274","27.8439355"],["-97.5670287","27.8450007"],["-97.5771854","27.8485088"],["-97.6105082","27.8600723"],["-97.6121465","27.860602"],["-97.6138547","27.8610651"],["-97.6169946","27.8617851"],["-97.6191656","27.8622993"],["-97.6199421","27.8625404"],["-97.6204535","27.8627781"],["-97.6210085","27.86315"],["-97.6213102","27.863403"],["-97.6218029","27.8638932"],["-97.6221919","27.8644096"],["-97.6224864","27.8649737"],["-97.6226676","27.8655265"],["-97.6227913","27.8661799"],["-97.6232538","27.8714652"],["-97.6237745","27.8800908"],["-97.6239731","27.8812304"],["-97.6242816","27.8821551"],["-97.6247745","27.8835499"],["-97.6254071","27.8852972"],["-97.6259619","27.8868616"],["-97.6267444","27.8890733"],["-97.627121","27.8903423"],["-97.6274743","27.8914012"],["-97.6299352","27.8983864"],["-97.6304805","27.8999344"],["-97.6308694","27.9010656"],["-97.6311148","27.9016724"],["-97.63136","27.9024629"],["-97.6314368","27.9027067"],["-97.6316562","27.9032763"],["-97.6324562","27.9052414"],["-97.6328526","27.9062114"],["-97.633024","27.9066827"],["-97.6332029","27.9071986"],["-97.636125","27.9156234"],["-97.6366197","27.9169631"],["-97.6369605","27.9177862"],["-97.6378303","27.9193575"],["-97.6444293","27.9298053"],["-97.6458464","27.9320478"],["-97.6670168","27.9655102"],["-97.6675839","27.9666616"],["-97.6680124","27.9677124"],["-97.6684177","27.9686295"],["-97.6702744","27.9716243"],["-97.6727872","27.9755749"],["-97.6738062","27.9771245"],["-97.674383","27.9778598"],["-97.6750335","27.9785692"],["-97.6755658","27.9790519"],["-97.6762794","27.9795707"],["-97.6771866","27.9801718"],["-97.6782824","27.9808119"],["-97.6791661","27.9813477"],["-97.6800682","27.9819894"],["-97.6810363","27.9828126"],["-97.6845435","27.9856955"],["-97.7517046","28.0407604"],["-97.7529783","28.0417889"],["-97.75371","28.0423556"],["-97.756179","28.0440817"],["-97.7705081","28.0541485"],["-97.7717878","28.055196"],["-97.7733515","28.0565583"],["-97.7746761","28.0577418"],["-97.8042686","28.0848362"],["-97.8074082","28.0877631"],["-97.8081324","28.0885297"],["-97.8089741","28.0898121"],["-97.8094446","28.0907034"],["-97.8097322","28.0914353"],["-97.8100411","28.092344"],["-97.8105617","28.0956957"],["-97.8110909","28.0992097"],["-97.8113974","28.1011037"],["-97.8118346","28.1039044"],["-97.8120809","28.1047732"],["-97.8123469","28.1055075"],["-97.8127291","28.1062874"],["-97.8131342","28.1069482"],["-97.813544","28.1075633"],["-97.814769","28.1091854"],["-97.8155589","28.1101811"],["-97.8166984","28.1116458"],["-97.8175234","28.1126111"],["-97.8188862","28.114358"],["-97.8285497","28.1265919"],["-97.8312331","28.1297913"],["-97.8525676","28.1543955"],["-97.8613187","28.1644762"],["-97.8624168","28.1657642"],["-97.8679497","28.1721289"],["-97.868949","28.1733606"],["-97.8698041","28.1747674"],["-97.8701786","28.1754582"],["-97.8704582","28.1759706"],["-97.8708801","28.1767064"],["-97.8715059","28.1776289"],["-97.8753636","28.1819899"],["-97.8832297","28.1909102"],["-97.8838344","28.1916378"],["-97.8851326","28.1931481"],["-97.8858855","28.1941506"],["-97.8867236","28.1955256"],["-97.9070126","28.2323726"],["-97.907438","28.2330007"],["-97.9083134","28.234104"],["-97.915411","28.2430088"],["-97.9163396","28.244152"],["-97.916934","28.244967"],["-97.9173672","28.245671"],["-97.9177911","28.2463974"],["-97.9182388","28.2472206"],["-97.9186949","28.2483352"],["-97.9205048","28.253389"],["-97.9212367","28.2548293"],["-97.9217049","28.2555331"],["-97.9224319","28.2564279"],["-97.9231049","28.2571061"],["-97.9237317","28.2576665"],["-97.9246727","28.2583552"],["-97.9396116","28.2677871"],["-97.9403228","28.2682921"],["-97.9428275","28.2703089"],["-97.9599997","28.284164"],["-97.9665651","28.288912"],["-97.9674301","28.2896779"],["-97.9682339","28.2904849"],["-97.9692573","28.2916936"],["-97.9708462","28.2936525"],["-97.9721062","28.2952319"],["-97.9727418","28.2960284"],["-97.9732456","28.2966543"],["-97.9744833","28.2982061"],["-97.975527","28.2994001"],["-97.976316","28.3001928"],["-97.9771426","28.3009374"],["-97.9786499","28.3020903"],["-97.9803654","28.3033629"],["-97.9833913","28.3056069"],["-98.0227628","28.3345235"],["-98.0252644","28.3364134"],["-98.0268568","28.3379663"],["-98.027353","28.3385339"],["-98.0279931","28.3394353"],["-98.0288933","28.340786"],["-98.0297552","28.3420939"],["-98.0308346","28.3436314"],["-98.0603139","28.3876779"],["-98.062838","28.3912574"],["-98.0640984","28.3929344"],["-98.0667458","28.3964828"],["-98.068045","28.3984351"],["-98.0721235","28.4057032"],["-98.0820888","28.4206095"],["-98.0956109","28.4392086"],["-98.1058292","28.4517428"],["-98.1085293","28.4551118"],["-98.1094162","28.4564709"],["-98.1104455","28.4580241"],["-98.1177577","28.4689746"],["-98.1187316","28.4702527"],["-98.11954","28.471116"],["-98.1205745","28.4720914"],["-98.1368991","28.4852153"],["-98.1378699","28.4859117"],["-98.1406236","28.4876986"],["-98.1424621","28.4889013"],["-98.143303","28.4895604"],["-98.1444329","28.4906084"],["-98.1460155","28.4922753"],["-98.1474297","28.4936754"],["-98.1488191","28.4949025"],["-98.1819289","28.5215706"],["-98.1845214","28.5237733"],["-98.1852395","28.5246038"],["-98.1860825","28.5258597"],["-98.1863589","28.5264498"],["-98.1871411","28.5287304"],["-98.1884638","28.5336652"],["-98.1891506","28.5364032"],["-98.199755","28.575621"],["-98.200051","28.5766634"],["-98.2004593","28.5780088"],["-98.2009543","28.5791978"],["-98.2014143","28.5800934"],["-98.2018469","28.580832"],["-98.2022728","28.5814869"],["-98.2039935","28.5837933"],["-98.2062465","28.5864743"],["-98.2084763","28.5891458"],["-98.2341404","28.6201817"],["-98.2353678","28.6219089"],["-98.2360252","28.6231996"],["-98.2366071","28.6246684"],["-98.237016","28.6261092"],["-98.2372248","28.6272952"],["-98.2373409","28.6285839"],["-98.237312","28.638295"],["-98.2374353","28.6406151"],["-98.2377039","28.6423007"],["-98.2380239","28.6434744"],["-98.238446","28.6445812"],["-98.239045","28.645843"],["-98.2396987","28.647002"],["-98.2404896","28.6481466"],["-98.2597406","28.6693643"],["-98.2616709","28.6715682"],["-98.2628527","28.6730841"],["-98.2711903","28.6849141"],["-98.2720929","28.6862476"],["-98.2727395","28.6874224"],["-98.2735328","28.6892033"],["-98.2983102","28.7600923"],["-98.2992718","28.7623166"],["-98.3002905","28.7641172"],["-98.3102388","28.7790724"],["-98.310926","28.7799935"],["-98.3114116","28.7805127"],["-98.3118878","28.7809477"],["-98.3124003","28.7813491"],["-98.312961","28.7817098"],["-98.3135597","28.7820426"],["-98.314165","28.782332"],["-98.32717","28.78789"],["-98.3292709","28.7890883"],["-98.330416","28.7898338"],["-98.3314011","28.7905979"],["-98.3325613","28.7915879"],["-98.3606969","28.8199647"],["-98.3672525","28.8283105"],["-98.3690258","28.8309762"],["-98.3780385","28.8455599"],["-98.3894","28.8640439"],["-98.391416","28.8672395"],["-98.3922628","28.8683666"],["-98.3949008","28.87123"],["-98.395854","28.8724293"],["-98.3971578","28.8745355"],["-98.402304","28.8828613"],["-98.4039236","28.8853836"],["-98.4048272","28.8864582"],["-98.4060454","28.887708"],["-98.4171197","28.8977996"],["-98.4193716","28.8995639"],["-98.426623","28.9041557"],["-98.4297395","28.9061253"],["-98.4312693","28.9070934"],["-98.4323595","28.9080391"],["-98.4331171","28.9089586"],["-98.433719","28.9099775"],["-98.4341402","28.9110473"],["-98.4343102","28.9118624"],["-98.4344334","28.9129848"],["-98.434666","28.9171931"],["-98.4346819","28.9186624"],["-98.4346731","28.9211171"],["-98.4348729","28.9266174"],["-98.4354513","28.9369116"],["-98.435757","28.93942"],["-98.4378238","28.9546284"],["-98.4379486","28.9563904"],["-98.4379279","28.9573747"],["-98.4378325","28.9582591"],["-98.4376792","28.9591371"],["-98.4314512","28.9877952"],["-98.4310654","28.9899922"],["-98.4310264","28.9919178"],["-98.4309221","29.0205674"],["-98.4309247","29.0219008"],["-98.4310044","29.0234214"],["-98.4311091","29.024876"],["-98.4313922","29.0266627"],["-98.4318506","29.0290319"],["-98.4323331","29.0315047"],["-98.4324049","29.0326397"],["-98.4323992","29.0335036"],["-98.4323394","29.0341987"],["-98.4321168","29.0354541"],["-98.4316159","29.0382814"],["-98.4314387","29.0397608"],["-98.4313858","29.0408227"],["-98.4313557","29.0422879"],["-98.4327507","29.0655402"],["-98.4327677","29.0717352"],["-98.4328009","29.0838866"],["-98.4328299","29.0853929"],["-98.4328275","29.0861985"],["-98.4327567","29.0914423"],["-98.4322567","29.1049384"],["-98.4318268","29.1136834"],["-98.4316107","29.1165071"],["-98.4282516","29.1448264"],["-98.4273958","29.1519889"],["-98.4270517","29.1567956"],["-98.4271167","29.1702317"],["-98.4271031","29.1746039"],["-98.4270708","29.1750291"],["-98.4270057","29.1756397"],["-98.4258884","29.182519"],["-98.4256386","29.1835903"],["-98.4253553","29.1845298"],["-98.4247793","29.1860922"],["-98.4196925","29.1989589"],["-98.4128099","29.2170311"],["-98.4125401","29.2177459"],["-98.4122625","29.2184166"],["-98.4119588","29.2190342"],["-98.4115736","29.2198461"],["-98.4107413","29.2214179"],["-98.4098889","29.2229407"],["-98.4027309","29.2353844"],["-98.4017419","29.237077"],["-98.3964066","29.2462757"],["-98.3961363","29.2467909"],["-98.395748","29.2476748"],["-98.3955371","29.2482467"],["-98.3951124","29.2497138"],["-98.3949247","29.2506496"],["-98.3947551","29.2521307"],["-98.3947515","29.2532091"],["-98.3951849","29.2599963"],["-98.3957673","29.2690826"],["-98.3959367","29.2727066"],["-98.3948827","29.295869"],["-98.3948475","29.2978854"],["-98.3949077","29.2986553"],["-98.3951367","29.2999525"],["-98.3952444","29.300437"],["-98.3953755","29.3009454"],["-98.3958329","29.3023947"],["-98.3960495","29.3028959"],["-98.3963286","29.3034747"],["-98.3966534","29.3040945"],["-98.3970476","29.3047848"],["-98.3979823","29.3061087"],["-98.3987788","29.3070234"],["-98.4015287","29.3098027"],["-98.4026145","29.3108802"],["-98.4031374","29.3114343"],["-98.4039814","29.3123097"],["-98.4043896","29.3127632"],["-98.4047082","29.313162"],["-98.4050997","29.3136822"],["-98.405578","29.3143829"],["-98.4061374","29.3153516"],["-98.4071182","29.3172285"],["-98.4075084","29.3179128"],["-98.4079272","29.318586"],["-98.408505","29.3194428"],["-98.4095119","29.3207821"],["-98.4118469","29.3236723"],["-98.413837","29.3265131"],["-98.417206","29.3318376"],["-98.4179396","29.3331363"],["-98.4183656","29.334049"],["-98.4191906","29.3359717"],["-98.4200761","29.3382672"],["-98.4211163","29.34098"],["-98.421621","29.3421454"],["-98.4229398","29.3446644"],["-98.4300378","29.3560835"],["-98.4303718","29.3565485"],["-98.4306692","29.3569733"],["-98.430984","29.357322"],["-98.4315535","29.3578374"],["-98.4322048","29.3583553"],["-98.4331602","29.3589625"],["-98.433856","29.3593003"],["-98.4345261","29.3595636"],["-98.4386813","29.3609257"],["-98.4401736","29.3614828"],["-98.4413559","29.3619618"],["-98.4435471","29.3630136"],["-98.4443793","29.3634519"],["-98.4452625","29.3639438"],["-98.4476184","29.365469"],["-98.4487047","29.366246"],["-98.4502205","29.3674846"],["-98.4650161","29.3804191"],["-98.4659147","29.381228"],["-98.4684586","29.3834235"],["-98.4698439","29.3846149"],["-98.4712403","29.385829"],["-98.4725788","29.387041"],["-98.4732181","29.3876359"],["-98.4738367","29.3882676"],["-98.4744711","29.3889979"],["-98.4750913","29.3897633"],["-98.475469","29.3902588"],["-98.4758682","29.3908046"],["-98.4765569","29.3919125"],["-98.4768624","29.3924345"],["-98.4772318","29.3931627"],["-98.4786507","29.3963171"],["-98.4795969","29.3985158"],["-98.479826","29.3991148"],["-98.4799643","29.3994828"],["-98.4800943","29.3998188"],["-98.4803304","29.4003046"],["-98.48042","29.4005204"],["-98.4804985","29.4007351"],["-98.4805756","29.4009705"],["-98.4806644","29.4012945"],["-98.480721","29.401571"],["-98.4807682","29.4018496"],["-98.4808283","29.4022851"],["-98.4808447","29.4025084"],["-98.4808438","29.4027484"],["-98.480832","29.4029682"],["-98.4808156","29.4031171"],["-98.4807093","29.404235"],["-98.4806231","29.4046079"],["-98.4798575","29.4076404"],["-98.4797089","29.4082475"],["-98.4796704","29.4084462"],["-98.4796335","29.4086589"],["-98.4795924","29.4090732"],["-98.4795703","29.4095875"],["-98.4795947","29.4098342"],["-98.4796671","29.4102846"],["-98.4798602","29.4111752"],["-98.4799929","29.4117869"],["-98.4801233","29.4123923"],["-98.480178","29.4127307"],["-98.4802083","29.4130513"],["-98.4802301","29.4134103"],["-98.4802355","29.4144604"],["-98.4802416","29.4152025"],["-98.4802309","29.417462"],["-98.4800863","29.418375"],["-98.4800345","29.418607"],["-98.479922","29.4189358"],["-98.4797125","29.4195269"],["-98.4796235","29.4198732"],["-98.4795782","29.4202067"],["-98.4796874","29.4210719"],["-98.4797291","29.4212293"],["-98.4798167","29.4215392"],["-98.4798527","29.4216314"],["-98.4799162","29.4217311"],["-98.4800531","29.4218922"],["-98.4802164","29.4220476"],["-98.4815931","29.4223645"],["-98.48222","29.422504"],["-98.4842885","29.4229449"],["-98.4848578","29.4230697"],["-98.4872697","29.4236151"],["-98.4873343","29.4236318"],["-98.4873806","29.4236444"],["-98.4874699","29.4236653"],["-98.4876182","29.4237012"],["-98.487785","29.4237438"],["-98.4878349","29.4237571"],["-98.4885233","29.4239107"],["-98.4890535","29.4240134"],["-98.4893751","29.4240739"],["-98.4898579","29.4241651"],["-98.4909475","29.4244158"],["-98.4912428","29.4244826"],["-98.491503","29.4245386"],["-98.4918939","29.4246262"],["-98.4930238","29.4249024"],["-98.4937317","29.4250403"],["-98.494462","29.4251749"],["-98.4945207","29.4251759"]]}};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))); });