WME Mapraid SL-NT E2 Overlay

Adds a Mapraid SL-NT Equipo 2 area overlay.

// ==UserScript==
// @name         WME Mapraid SL-NT E2 Overlay
// @namespace    https://gf.qytechs.cn/users/45389
// @version      1.1
// @description  Adds a Mapraid SL-NT Equipo 2 area overlay.
// @author       MapOMatic (edits by drysoft)
// @include      https://beta.waze.com/*editor/*
// @include      https://www.waze.com/*editor/*
// @exclude      https://www.waze.com/*user/editor/*
// @require      https://gf.qytechs.cn/scripts/24851-wazewrap/code/WazeWrap.js
// @license      GNU GPLv3
// @grant        none
// ==/UserScript==

(function() {
    'use strict';

    // Enter the state abbreviation:
    var _stateAbbr = "SL2";

    // Enter the MapRaid area names and the desired fill colors, in order they appear in the original map legend:
    var _areas = {
        'Equipo 2':{fillColor:'#ffea00'}
    };

    var _settingsStoreName = '_wme_' + _stateAbbr + '_mapraid';
    var _settings;
    var _features;
    var _kml;
    var _layerName = _stateAbbr + ' MapRaid';
    var _layer = null;
    var defaultFillOpacity = 0.2;

    function loadSettingsFromStorage() {
        _settings = $.parseJSON(localStorage.getItem(_settingsStoreName));
        if(!_settings) {
            _settings = {
                layerVisible: true,
                hiddenAreas: []
            };
        } else {
            _settings.layerVisible = (_settings.layerVisible === true);
            _settings.hiddenAreas = _settings.hiddenAreas || [];
        }
    }

    function saveSettingsToStorage() {
        if (localStorage) {
            var settings = {
                layerVisible: _layer.visibility,
                hiddenAreas: _settings.hiddenAreas
            };
            localStorage.setItem(_settingsStoreName, JSON.stringify(settings));
        }
    }

    function GetFeaturesFromKMLString(strKML) {
        var format = new OpenLayers.Format.KML({
            'internalProjection': Waze.map.baseLayer.projection,
            'externalProjection': new OpenLayers.Projection("EPSG:4326")
        });
        return format.read(strKML);
    }

    function updateDistrictNameDisplay(){
        $('.mapraid-region').remove();
        if (_layer !== null) {
            var mapCenter = new OpenLayers.Geometry.Point(W.map.center.lon,W.map.center.lat);
            for (var i=0;i<_layer.features.length;i++){
                var feature = _layer.features[i];
                var color;
                var text = '';
                var num;
                var url;
                if(feature.geometry.containsPoint(mapCenter)) {
                    text = feature.attributes.name;
                    color = '#00ffff';
                    var $div = $('<div>', {id:'mapraid', class:"mapraid-region", style:'display:inline-block;margin-left:10px;', title:'Click to toggle color on/off for this group'})
                    .css({color:color, cursor:"pointer"})
                    .click(toggleAreaFill);
                    var $span = $('<span>').css({display:'inline-block'});
                    $span.text('Mapraid SL-NT: ' + text).appendTo($div);
                    $('.location-info-region').parent().append($div);
                    if (color) {
                        break;
                    }
                }
            }
        }
    }

    function toggleAreaFill() {
        var text = $('#mapraid span').text();
        if (text) {
            var match = text.match(/Equipo (\d+)/);
            if (match.length > 1) {
                var group = parseInt(match[1]);
                var f = _layer.features[0];
                var hide = f.attributes.fillOpacity !== 0;
                f.attributes.fillOpacity = hide ? 0 : defaultFillOpacity;
                var idx = _settings.hiddenAreas.indexOf(group);
                if (hide) {
                    if (idx === -1) _settings.hiddenAreas.push(group);
                } else {
                    if (idx > -1) {
                        _settings.hiddenAreas.splice(idx,1);
                    }
                }
                saveSettingsToStorage();
                _layer.redraw();
            }
        }
    }


    function init() {
        InstallKML();
        loadSettingsFromStorage();
        var layerid = 'wme_' + _stateAbbr + '_mapraid';
        var _features = GetFeaturesFromKMLString(_kml);
        var i = 0;
        for(var areaName in _areas) {
            _features[i].attributes.name = areaName;
            _features[i].attributes.fillColor = _areas[areaName].fillColor;
            _features[i].attributes.fillOpacity = _settings.hiddenAreas.indexOf(i+1) > -1 ? 0 : defaultFillOpacity;
            i++;
        }
        var layerStyle = new OpenLayers.StyleMap({
            strokeDashstyle: 'solid',
            strokeColor: '#ff0000',
            strokeOpacity: 0.4,
            strokeWidth: 2,
            fillOpacity: '${fillOpacity}',
            fillColor: '${fillColor}'
        });
        _layer = new OL.Layer.Vector(_stateAbbr + " MapRaid", {
            rendererOptions: { zIndexing: true },
            uniqueName: layerid,
            shortcutKey: "S+" + 0,
            layerGroup: _stateAbbr + '_mapraid',
            zIndex: -9999,
            displayInLayerSwitcher: true,
            visibility: _settings.layerVisible,
            styleMap: layerStyle
        });
        I18n.translations[I18n.locale].layers.name[layerid] = _stateAbbr + " MapRaid";
        _layer.addFeatures(_features);
        W.map.addLayer(_layer);
        W.map.events.register("moveend", null, updateDistrictNameDisplay);
        window.addEventListener('beforeunload', function saveOnClose() { saveSettingsToStorage(); }, false);
        updateDistrictNameDisplay();

        // Add the layer checkbox to the Layers menu.
        WazeWrap.Interface.AddLayerCheckbox("display", "MapRaid Nayarit-Sinaloa E2", _settings.layerVisible, layerToggled);
    }

    function layerToggled(visible) {
        _layer.setVisibility(visible);
        saveSettingsToStorage();
    }

    function awaitLogin(e) {
        if (e && e.user === null) {
            return;
        }
        if (typeof Waze === 'undefined' ||
            typeof Waze.loginManager === 'undefined' ||
            typeof WazeWrap.Interface === 'undefined') {
            setTimeout(awaitLogin, 100);
            return;
        }
        // if (!Waze.loginManager.hasUser()) {
        //    Waze.loginManager.events.register("login", null, awaitLogin);
        //    Waze.loginManager.events.register("loginStatus", null, awaitLogin);
        //    return;
        //}
        // TODO: check whether this is actually useful to do
        if (typeof document.getElementById('WazeMap') === undefined) {
            setTimeout(awaitLogin, 100);
            return;
        }
        init();
    }

    awaitLogin();

    function InstallKML(){
        OpenLayers.Format.KML=OpenLayers.Class(OpenLayers.Format.XML,{namespaces:{kml:"http://www.opengis.net/kml/2.2",gx:"http://www.google.com/kml/ext/2.2"},kmlns:"http://earth.google.com/kml/2.0",placemarksDesc:"No description available",foldersName:"OpenLayers export",foldersDesc:"Exported on "+new Date,extractAttributes:!0,kvpAttributes:!1,extractStyles:!1,extractTracks:!1,trackAttributes:null,internalns:null,features:null,styles:null,styleBaseUrl:"",fetched:null,maxDepth:0,initialize:function(a){this.regExes=
            {trimSpace:/^\s*|\s*$/g,removeSpace:/\s*/g,splitSpace:/\s+/,trimComma:/\s*,\s*/g,kmlColor:/(\w{2})(\w{2})(\w{2})(\w{2})/,kmlIconPalette:/root:\/\/icons\/palette-(\d+)(\.\w+)/,straightBracket:/\$\[(.*?)\]/g};this.externalProjection=new OpenLayers.Projection("EPSG:4326");OpenLayers.Format.XML.prototype.initialize.apply(this,[a])},read:function(a){this.features=[];this.styles={};this.fetched={};return this.parseData(a,{depth:0,styleBaseUrl:this.styleBaseUrl})},parseData:function(a,b){"string"==typeof a&&
                (a=OpenLayers.Format.XML.prototype.read.apply(this,[a]));for(var c=["Link","NetworkLink","Style","StyleMap","Placemark"],d=0,e=c.length;d<e;++d){var f=c[d],g=this.getElementsByTagNameNS(a,"*",f);if(0!=g.length)switch(f.toLowerCase()){case "link":case "networklink":this.parseLinks(g,b);break;case "style":this.extractStyles&&this.parseStyles(g,b);break;case "stylemap":this.extractStyles&&this.parseStyleMaps(g,b);break;case "placemark":this.parseFeatures(g,b)}}return this.features},parseLinks:function(a,
b){if(b.depth>=this.maxDepth)return!1;var c=OpenLayers.Util.extend({},b);c.depth++;for(var d=0,e=a.length;d<e;d++){var f=this.parseProperty(a[d],"*","href");f&&!this.fetched[f]&&(this.fetched[f]=!0,(f=this.fetchLink(f))&&this.parseData(f,c))}},fetchLink:function(a){if(a=OpenLayers.Request.GET({url:a,async:!1}))return a.responseText},parseStyles:function(a,b){for(var c=0,d=a.length;c<d;c++){var e=this.parseStyle(a[c]);e&&(this.styles[(b.styleBaseUrl||"")+"#"+e.id]=e)}},parseKmlColor:function(a){var b=
                null;a&&(a=a.match(this.regExes.kmlColor))&&(b={color:"#"+a[4]+a[3]+a[2],opacity:parseInt(a[1],16)/255});return b},parseStyle:function(a){for(var b={},c=["LineStyle","PolyStyle","IconStyle","BalloonStyle","LabelStyle"],d,e,f=0,g=c.length;f<g;++f)if(d=c[f],e=this.getElementsByTagNameNS(a,"*",d)[0])switch(d.toLowerCase()){case "linestyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.strokeColor=d.color,b.strokeOpacity=d.opacity;(d=this.parseProperty(e,"*","width"))&&(b.strokeWidth=
d);break;case "polystyle":d=this.parseProperty(e,"*","color");if(d=this.parseKmlColor(d))b.fillOpacity=d.opacity,b.fillColor=d.color;"0"==this.parseProperty(e,"*","fill")&&(b.fillColor="none");"0"==this.parseProperty(e,"*","outline")&&(b.strokeWidth="0");break;case "iconstyle":var h=parseFloat(this.parseProperty(e,"*","scale")||1);d=32*h;var i=32*h,j=this.getElementsByTagNameNS(e,"*","Icon")[0];if(j){var k=this.parseProperty(j,"*","href");if(k){var l=this.parseProperty(j,"*","w"),m=this.parseProperty(j,
"*","h");OpenLayers.String.startsWith(k,"http://maps.google.com/mapfiles/kml")&&(!l&&!m)&&(m=l=64,h/=2);l=l||m;m=m||l;l&&(d=parseInt(l)*h);m&&(i=parseInt(m)*h);if(m=k.match(this.regExes.kmlIconPalette))l=m[1],m=m[2],k=this.parseProperty(j,"*","x"),j=this.parseProperty(j,"*","y"),k="http://maps.google.com/mapfiles/kml/pal"+l+"/icon"+(8*(j?7-j/32:7)+(k?k/32:0))+m;b.graphicOpacity=1;b.externalGraphic=k}}if(e=this.getElementsByTagNameNS(e,"*","hotSpot")[0])k=parseFloat(e.getAttribute("x")),j=parseFloat(e.getAttribute("y")),
                    l=e.getAttribute("xunits"),"pixels"==l?b.graphicXOffset=-k*h:"insetPixels"==l?b.graphicXOffset=-d+k*h:"fraction"==l&&(b.graphicXOffset=-d*k),e=e.getAttribute("yunits"),"pixels"==e?b.graphicYOffset=-i+j*h+1:"insetPixels"==e?b.graphicYOffset=-(j*h)+1:"fraction"==e&&(b.graphicYOffset=-i*(1-j)+1);b.graphicWidth=d;b.graphicHeight=i;break;case "balloonstyle":(e=OpenLayers.Util.getXmlNodeValue(e))&&(b.balloonStyle=e.replace(this.regExes.straightBracket,"${$1}"));break;case "labelstyle":if(d=this.parseProperty(e,
"*","color"),d=this.parseKmlColor(d))b.fontColor=d.color,b.fontOpacity=d.opacity}!b.strokeColor&&b.fillColor&&(b.strokeColor=b.fillColor);if((a=a.getAttribute("id"))&&b)b.id=a;return b},parseStyleMaps:function(a,b){for(var c=0,d=a.length;c<d;c++)for(var e=a[c],f=this.getElementsByTagNameNS(e,"*","Pair"),e=e.getAttribute("id"),g=0,h=f.length;g<h;g++){var i=f[g],j=this.parseProperty(i,"*","key");(i=this.parseProperty(i,"*","styleUrl"))&&"normal"==j&&(this.styles[(b.styleBaseUrl||"")+"#"+e]=this.styles[(b.styleBaseUrl||
"")+i])}},parseFeatures:function(a,b){for(var c=[],d=0,e=a.length;d<e;d++){var f=a[d],g=this.parseFeature.apply(this,[f]);if(g){this.extractStyles&&(g.attributes&&g.attributes.styleUrl)&&(g.style=this.getStyle(g.attributes.styleUrl,b));if(this.extractStyles){var h=this.getElementsByTagNameNS(f,"*","Style")[0];if(h&&(h=this.parseStyle(h)))g.style=OpenLayers.Util.extend(g.style,h)}if(this.extractTracks){if((f=this.getElementsByTagNameNS(f,this.namespaces.gx,"Track"))&&0<f.length)g={features:[],feature:g},
                    this.readNode(f[0],g),0<g.features.length&&c.push.apply(c,g.features)}else c.push(g)}else throw"Bad Placemark: "+d;}this.features=this.features.concat(c)},readers:{kml:{when:function(a,b){b.whens.push(OpenLayers.Date.parse(this.getChildValue(a)))},_trackPointAttribute:function(a,b){var c=a.nodeName.split(":").pop();b.attributes[c].push(this.getChildValue(a))}},gx:{Track:function(a,b){var c={whens:[],points:[],angles:[]};if(this.trackAttributes){var d;c.attributes={};for(var e=0,f=this.trackAttributes.length;e<
f;++e)d=this.trackAttributes[e],c.attributes[d]=[],d in this.readers.kml||(this.readers.kml[d]=this.readers.kml._trackPointAttribute)}this.readChildNodes(a,c);if(c.whens.length!==c.points.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:coord ("+c.points.length+") elements.");var g=0<c.angles.length;if(g&&c.whens.length!==c.angles.length)throw Error("gx:Track with unequal number of when ("+c.whens.length+") and gx:angles ("+c.angles.length+") elements.");for(var h,
i,e=0,f=c.whens.length;e<f;++e){h=b.feature.clone();h.fid=b.feature.fid||b.feature.id;i=c.points[e];h.geometry=i;"z"in i&&(h.attributes.altitude=i.z);this.internalProjection&&this.externalProjection&&h.geometry.transform(this.externalProjection,this.internalProjection);if(this.trackAttributes){i=0;for(var j=this.trackAttributes.length;i<j;++i)h.attributes[d]=c.attributes[this.trackAttributes[i]][e]}h.attributes.when=c.whens[e];h.attributes.trackId=b.feature.id;g&&(i=c.angles[e],h.attributes.heading=
parseFloat(i[0]),h.attributes.tilt=parseFloat(i[1]),h.attributes.roll=parseFloat(i[2]));b.features.push(h)}},coord:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/),d=new OpenLayers.Geometry.Point(c[0],c[1]);2<c.length&&(d.z=parseFloat(c[2]));b.points.push(d)},angles:function(a,b){var c=this.getChildValue(a).replace(this.regExes.trimSpace,"").split(/\s+/);b.angles.push(c)}}},parseFeature:function(a){for(var b=["MultiGeometry","Polygon","LineString","Point"],
c,d,e,f=0,g=b.length;f<g;++f)if(c=b[f],this.internalns=a.namespaceURI?a.namespaceURI:this.kmlns,d=this.getElementsByTagNameNS(a,this.internalns,c),0<d.length){if(b=this.parseGeometry[c.toLowerCase()])e=b.apply(this,[d[0]]),this.internalProjection&&this.externalProjection&&e.transform(this.externalProjection,this.internalProjection);else throw new TypeError("Unsupported geometry type: "+c);break}var h;this.extractAttributes&&(h=this.parseAttributes(a));c=new OpenLayers.Feature.Vector(e,h);a=a.getAttribute("id")||
                    a.getAttribute("name");null!=a&&(c.fid=a);return c},getStyle:function(a,b){var c=OpenLayers.Util.removeTail(a),d=OpenLayers.Util.extend({},b);d.depth++;d.styleBaseUrl=c;!this.styles[a]&&!OpenLayers.String.startsWith(a,"#")&&d.depth<=this.maxDepth&&!this.fetched[c]&&(c=this.fetchLink(c))&&this.parseData(c,d);return OpenLayers.Util.extend({},this.styles[a])},parseGeometry:{point:function(a){var b=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),a=[];if(0<b.length)var c=b[0].firstChild.nodeValue,
                    c=c.replace(this.regExes.removeSpace,""),a=c.split(",");b=null;if(1<a.length)2==a.length&&(a[2]=null),b=new OpenLayers.Geometry.Point(a[0],a[1],a[2]);else throw"Bad coordinate string: "+c;return b},linestring:function(a,b){var c=this.getElementsByTagNameNS(a,this.internalns,"coordinates"),d=null;if(0<c.length){for(var c=this.getChildValue(c[0]),c=c.replace(this.regExes.trimSpace,""),c=c.replace(this.regExes.trimComma,","),d=c.split(this.regExes.splitSpace),e=d.length,f=Array(e),g,h,i=0;i<e;++i)if(g=
d[i].split(","),h=g.length,1<h)2==g.length&&(g[2]=null),f[i]=new OpenLayers.Geometry.Point(g[0],g[1],g[2]);else throw"Bad LineString point coordinates: "+d[i];if(e)d=b?new OpenLayers.Geometry.LinearRing(f):new OpenLayers.Geometry.LineString(f);else throw"Bad LineString coordinates: "+c;}return d},polygon:function(a){var a=this.getElementsByTagNameNS(a,this.internalns,"LinearRing"),b=a.length,c=Array(b);if(0<b)for(var d=0,e=a.length;d<e;++d)if(b=this.parseGeometry.linestring.apply(this,[a[d],!0]))c[d]=
                        b;else throw"Bad LinearRing geometry: "+d;return new OpenLayers.Geometry.Polygon(c)},multigeometry:function(a){for(var b,c=[],d=a.childNodes,e=0,f=d.length;e<f;++e)a=d[e],1==a.nodeType&&(b=this.parseGeometry[(a.prefix?a.nodeName.split(":")[1]:a.nodeName).toLowerCase()])&&c.push(b.apply(this,[a]));return new OpenLayers.Geometry.Collection(c)}},parseAttributes:function(a){var b={},c=a.getElementsByTagName("ExtendedData");c.length&&(b=this.parseExtendedData(c[0]));for(var d,e,f,a=a.childNodes,c=0,g=
a.length;c<g;++c)if(d=a[c],1==d.nodeType&&(e=d.childNodes,1<=e.length&&3>=e.length)){switch(e.length){case 1:f=e[0];break;case 2:f=e[0];e=e[1];f=3==f.nodeType||4==f.nodeType?f:e;break;default:f=e[1]}if(3==f.nodeType||4==f.nodeType)if(d=d.prefix?d.nodeName.split(":")[1]:d.nodeName,f=OpenLayers.Util.getXmlNodeValue(f))f=f.replace(this.regExes.trimSpace,""),b[d]=f}return b},parseExtendedData:function(a){var b={},c,d,e,f,g=a.getElementsByTagName("Data");c=0;for(d=g.length;c<d;c++){e=g[c];f=e.getAttribute("name");
var h={},i=e.getElementsByTagName("value");i.length&&(h.value=this.getChildValue(i[0]));this.kvpAttributes?b[f]=h.value:(e=e.getElementsByTagName("displayName"),e.length&&(h.displayName=this.getChildValue(e[0])),b[f]=h)}a=a.getElementsByTagName("SimpleData");c=0;for(d=a.length;c<d;c++)h={},e=a[c],f=e.getAttribute("name"),h.value=this.getChildValue(e),this.kvpAttributes?b[f]=h.value:(h.displayName=f,b[f]=h);return b},parseProperty:function(a,b,c){var d,a=this.getElementsByTagNameNS(a,b,c);try{d=OpenLayers.Util.getXmlNodeValue(a[0])}catch(e){d=
    null}return d},write:function(a){OpenLayers.Util.isArray(a)||(a=[a]);for(var b=this.createElementNS(this.kmlns,"kml"),c=this.createFolderXML(),d=0,e=a.length;d<e;++d)c.appendChild(this.createPlacemarkXML(a[d]));b.appendChild(c);return OpenLayers.Format.XML.prototype.write.apply(this,[b])},createFolderXML:function(){var a=this.createElementNS(this.kmlns,"Folder");if(this.foldersName){var b=this.createElementNS(this.kmlns,"name"),c=this.createTextNode(this.foldersName);b.appendChild(c);a.appendChild(b)}this.foldersDesc&&
        (b=this.createElementNS(this.kmlns,"description"),c=this.createTextNode(this.foldersDesc),b.appendChild(c),a.appendChild(b));return a},createPlacemarkXML:function(a){var b=this.createElementNS(this.kmlns,"name");b.appendChild(this.createTextNode(a.style&&a.style.label?a.style.label:a.attributes.name||a.id));var c=this.createElementNS(this.kmlns,"description");c.appendChild(this.createTextNode(a.attributes.description||this.placemarksDesc));var d=this.createElementNS(this.kmlns,"Placemark");null!=
        a.fid&&d.setAttribute("id",a.fid);d.appendChild(b);d.appendChild(c);b=this.buildGeometryNode(a.geometry);d.appendChild(b);a.attributes&&(a=this.buildExtendedData(a.attributes))&&d.appendChild(a);return d},buildGeometryNode:function(a){var b=a.CLASS_NAME,b=this.buildGeometry[b.substring(b.lastIndexOf(".")+1).toLowerCase()],c=null;b&&(c=b.apply(this,[a]));return c},buildGeometry:{point:function(a){var b=this.createElementNS(this.kmlns,"Point");b.appendChild(this.buildCoordinatesNode(a));return b},multipoint:function(a){return this.buildGeometry.collection.apply(this,
[a])},linestring:function(a){var b=this.createElementNS(this.kmlns,"LineString");b.appendChild(this.buildCoordinatesNode(a));return b},multilinestring:function(a){return this.buildGeometry.collection.apply(this,[a])},linearring:function(a){var b=this.createElementNS(this.kmlns,"LinearRing");b.appendChild(this.buildCoordinatesNode(a));return b},polygon:function(a){for(var b=this.createElementNS(this.kmlns,"Polygon"),a=a.components,c,d,e=0,f=a.length;e<f;++e)c=0==e?"outerBoundaryIs":"innerBoundaryIs",
        c=this.createElementNS(this.kmlns,c),d=this.buildGeometry.linearring.apply(this,[a[e]]),c.appendChild(d),b.appendChild(c);return b},multipolygon:function(a){return this.buildGeometry.collection.apply(this,[a])},collection:function(a){for(var b=this.createElementNS(this.kmlns,"MultiGeometry"),c,d=0,e=a.components.length;d<e;++d)(c=this.buildGeometryNode.apply(this,[a.components[d]]))&&b.appendChild(c);return b}},buildCoordinatesNode:function(a){var b=this.createElementNS(this.kmlns,"coordinates"),
        c;if(c=a.components){for(var d=c.length,e=Array(d),f=0;f<d;++f)a=c[f],e[f]=this.buildCoordinates(a);c=e.join(" ")}else c=this.buildCoordinates(a);c=this.createTextNode(c);b.appendChild(c);return b},buildCoordinates:function(a){this.internalProjection&&this.externalProjection&&(a=a.clone(),a.transform(this.internalProjection,this.externalProjection));return a.x+","+a.y},buildExtendedData:function(a){var b=this.createElementNS(this.kmlns,"ExtendedData"),c;for(c in a)if(a[c]&&"name"!=c&&"description"!=
c&&"styleUrl"!=c){var d=this.createElementNS(this.kmlns,"Data");d.setAttribute("name",c);var e=this.createElementNS(this.kmlns,"value");if("object"==typeof a[c]){if(a[c].value&&e.appendChild(this.createTextNode(a[c].value)),a[c].displayName){var f=this.createElementNS(this.kmlns,"displayName");f.appendChild(this.getXMLDoc().createCDATASection(a[c].displayName));d.appendChild(f)}}else e.appendChild(this.createTextNode(a[c]));d.appendChild(e);b.appendChild(d)}return this.isSimpleContent(b)?null:b},
                                                                      CLASS_NAME:"OpenLayers.Format.KML"});

        _kml = `<?xml version="1.0" encoding="UTF-8"?>
<kml xmlns="http://www.opengis.net/kml/2.2">
  <Document>
    <name>Teams</name>
    <Style id="poly-097138-1000-189-nodesc-normal">
      <LineStyle>
        <color>ff387109</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bd387109</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-097138-1000-189-nodesc-highlight">
      <LineStyle>
        <color>ff387109</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bd387109</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-097138-1000-189-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-097138-1000-189-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-097138-1000-189-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-1A237E-1000-189-nodesc-normal">
      <LineStyle>
        <color>ff7e231a</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bd7e231a</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-1A237E-1000-189-nodesc-highlight">
      <LineStyle>
        <color>ff7e231a</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bd7e231a</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-1A237E-1000-189-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-1A237E-1000-189-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-1A237E-1000-189-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
    <Style id="poly-F48FB1-1000-191-nodesc-normal">
      <LineStyle>
        <color>ffb18ff4</color>
        <width>1</width>
      </LineStyle>
      <PolyStyle>
        <color>bfb18ff4</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <Style id="poly-F48FB1-1000-191-nodesc-highlight">
      <LineStyle>
        <color>ffb18ff4</color>
        <width>1.5</width>
      </LineStyle>
      <PolyStyle>
        <color>bfb18ff4</color>
        <fill>1</fill>
        <outline>1</outline>
      </PolyStyle>
      <BalloonStyle>
        <text><![CDATA[<h3>$[name]</h3>]]></text>
      </BalloonStyle>
    </Style>
    <StyleMap id="poly-F48FB1-1000-191-nodesc">
      <Pair>
        <key>normal</key>
        <styleUrl>#poly-F48FB1-1000-191-nodesc-normal</styleUrl>
      </Pair>
      <Pair>
        <key>highlight</key>
        <styleUrl>#poly-F48FB1-1000-191-nodesc-highlight</styleUrl>
      </Pair>
    </StyleMap>
      
    <Placemark>
      <name>Equipo 2</name>
      <styleUrl>#poly-1A237E-1000-189-nodesc</styleUrl>
      <Polygon>
        <outerBoundaryIs>
          <LinearRing>
            <tessellate>1</tessellate>
            <coordinates>
              -105.355228,23.040934,0
              -105.355324,23.041052,0
              -105.355459,23.041444,0
              -105.355506,23.041553,0
              -105.355665,23.041759,0
              -105.355609,23.042153,0
              -105.35557,23.042461,0
              -105.355569,23.042692,0
              -105.355629,23.042946,0
              -105.35589,23.043242,0
              -105.355963,23.043417,0
              -105.356038,23.043667,0
              -105.356048,23.04383,0
              -105.356082,23.044174,0
              -105.356356,23.044404,0
              -105.356701,23.044589,0
              -105.3572,23.044786,0
              -105.357545,23.044982,0
              -105.358239,23.045308,0
              -105.358598,23.045623,0
              -105.358788,23.045929,0
              -105.358779,23.046258,0
              -105.358554,23.046501,0
              -105.358136,23.046794,0
              -105.357513,23.047027,0
              -105.357227,23.046933,0
              -105.356849,23.046954,0
              -105.356412,23.047007,0
              -105.356027,23.047046,0
              -105.355672,23.047047,0
              -105.355459,23.046971,0
              -105.355102,23.047114,0
              -105.354748,23.047389,0
              -105.35443,23.047784,0
              -105.354193,23.048301,0
              -105.35385,23.048718,0
              -105.353708,23.049048,0
              -105.353769,23.049399,0
              -105.353897,23.04979,0
              -105.354052,23.050021,0
              -105.354124,23.050152,0
              -105.354017,23.050273,0
              -105.353458,23.050428,0
              -105.352392,23.050551,0
              -105.351597,23.050563,0
              -105.351182,23.050707,0
              -105.350874,23.050939,0
              -105.350757,23.051355,0
              -105.350697,23.05185,0
              -105.350817,23.052321,0
              -105.351367,23.052989,0
              -105.351983,23.053493,0
              -105.352542,23.053974,0
              -105.352754,23.054281,0
              -105.352799,23.054813,0
              -105.35286,23.055293,0
              -105.352586,23.055728,0
              -105.352342,23.055966,0
              -105.351891,23.056467,0
              -105.35105,23.057664,0
              -105.350661,23.05836,0
              -105.350416,23.059262,0
              -105.350346,23.060176,0
              -105.350471,23.060575,0
              -105.35088,23.061042,0
              -105.351494,23.061507,0
              -105.351949,23.061772,0
              -105.352544,23.062033,0
              -105.353023,23.062146,0
              -105.353351,23.06217,0
              -105.353742,23.062128,0
              -105.354779,23.061971,0
              -105.355158,23.062035,0
              -105.355558,23.062124,0
              -105.355832,23.062287,0
              -105.356202,23.062567,0
              -105.356468,23.062715,0
              -105.356655,23.062805,0
              -105.356911,23.062837,0
              -105.357319,23.062868,0
              -105.357691,23.062975,0
              -105.35794,23.063195,0
              -105.358117,23.063498,0
              -105.358161,23.063784,0
              -105.358129,23.064046,0
              -105.357992,23.064265,0
              -105.357638,23.064634,0
              -105.357401,23.064757,0
              -105.35717,23.06493,0
              -105.356967,23.06507,0
              -105.356753,23.06507,0
              -105.356576,23.064923,0
              -105.356424,23.064751,0
              -105.35624,23.064752,0
              -105.356134,23.064924,0
              -105.356125,23.065137,0
              -105.356294,23.065366,0
              -105.356621,23.065677,0
              -105.356959,23.065929,0
              -105.357252,23.066044,0
              -105.357571,23.066068,0
              -105.358088,23.066062,0
              -105.358291,23.066118,0
              -105.358524,23.066281,0
              -105.35879,23.066715,0
              -105.358869,23.066937,0
              -105.358968,23.067075,0
              -105.358949,23.067191,0
              -105.358845,23.067354,0
              -105.358607,23.067928,0
              -105.358581,23.068067,0
              -105.358359,23.068281,0
              -105.358314,23.068379,0
              -105.358325,23.068519,0
              -105.358431,23.068739,0
              -105.358538,23.068878,0
              -105.358787,23.069054,0
              -105.358992,23.069271,0
              -105.359027,23.069489,0
              -105.358827,23.069732,0
              -105.358677,23.069997,0
              -105.358373,23.070123,0
              -105.358137,23.070388,0
              -105.35792,23.070716,0
              -105.357565,23.071263,0
              -105.357465,23.071573,0
              -105.357348,23.071903,0
              -105.35745,23.072338,0
              -105.357604,23.072775,0
              -105.35798,23.073081,0
              -105.35812,23.073472,0
              -105.358264,23.073579,0
              -105.358316,23.073923,0
              -105.358555,23.073898,0
              -105.35903,23.073838,0
              -105.359527,23.073726,0
              -105.361109,23.073392,0
              -105.361308,23.073397,0
              -105.361956,23.073545,0
              -105.362103,23.07383,0
              -105.36244,23.074235,0
              -105.362677,23.074468,0
              -105.363133,23.07467,0
              -105.363573,23.074981,0
              -105.364045,23.075197,0
              -105.364485,23.075244,0
              -105.364938,23.075008,0
              -105.365191,23.074446,0
              -105.365679,23.07404,0
              -105.36632,23.073945,0
              -105.367197,23.073897,0
              -105.367888,23.074051,0
              -105.368445,23.07433,0
              -105.368801,23.074563,0
              -105.369221,23.074874,0
              -105.369526,23.074904,0
              -105.369914,23.074934,0
              -105.370303,23.074841,0
              -105.370655,23.074917,0
              -105.37096,23.075322,0
              -105.371182,23.075851,0
              -105.371353,23.076381,0
              -105.371623,23.076693,0
              -105.372231,23.076862,0
              -105.372786,23.076892,0
              -105.373241,23.076829,0
              -105.373715,23.07703,0
              -105.374213,23.077599,0
              -105.375118,23.078555,0
              -105.375236,23.078839,0
              -105.37545,23.079035,0
              -105.375758,23.079133,0
              -105.375989,23.079123,0
              -105.376162,23.078989,0
              -105.376404,23.078757,0
              -105.376557,23.078497,0
              -105.377057,23.078095,0
              -105.377501,23.077879,0
              -105.377927,23.077763,0
              -105.378167,23.077824,0
              -105.378468,23.07801,0
              -105.378711,23.07817,0
              -105.378903,23.078384,0
              -105.37903,23.07858,0
              -105.379338,23.078812,0
              -105.379629,23.078865,0
              -105.379889,23.078864,0
              -105.380376,23.078913,0
              -105.380599,23.079073,0
              -105.380579,23.079279,0
              -105.380385,23.079484,0
              -105.380175,23.079789,0
              -105.379914,23.08004,0
              -105.3798,23.080262,0
              -105.37977,23.080575,0
              -105.379878,23.080931,0
              -105.380441,23.081663,0
              -105.380819,23.082036,0
              -105.381186,23.082196,0
              -105.381621,23.082221,0
              -105.38214,23.081983,0
              -105.382756,23.081673,0
              -105.383277,23.081616,0
              -105.383567,23.081742,0
              -105.383729,23.08205,0
              -105.383731,23.082192,0
              -105.383645,23.082381,0
              -105.383364,23.082525,0
              -105.383082,23.082738,0
              -105.383042,23.082873,0
              -105.383059,23.083101,0
              -105.383366,23.083283,0
              -105.383555,23.083368,0
              -105.383906,23.083581,0
              -105.384121,23.08381,0
              -105.384368,23.084181,0
              -105.384712,23.08448,0
              -105.384978,23.084503,0
              -105.385276,23.084383,0
              -105.385438,23.084067,0
              -105.385572,23.083767,0
              -105.385863,23.083631,0
              -105.385914,23.083308,0
              -105.385715,23.082914,0
              -105.385406,23.082258,0
              -105.385345,23.081792,0
              -105.385423,23.081563,0
              -105.385685,23.081387,0
              -105.386095,23.081379,0
              -105.386576,23.081544,0
              -105.387379,23.081786,0
              -105.388005,23.082347,0
              -105.388804,23.082992,0
              -105.389062,23.083182,0
              -105.389514,23.083338,0
              -105.389985,23.083385,0
              -105.390413,23.083359,0
              -105.390848,23.083366,0
              -105.391327,23.083475,0
              -105.391695,23.083688,0
              -105.392245,23.084082,0
              -105.392464,23.084436,0
              -105.39222,23.085157,0
              -105.392314,23.085331,0
              -105.39276,23.085413,0
              -105.393078,23.085447,0
              -105.39355,23.085552,0
              -105.393907,23.085704,0
              -105.394187,23.085892,0
              -105.394765,23.086091,0
              -105.395339,23.086302,0
              -105.395798,23.086489,0
              -105.396015,23.086677,0
              -105.396985,23.087252,0
              -105.397393,23.087545,0
              -105.397763,23.087791,0
              -105.398251,23.088207,0
              -105.398826,23.088806,0
              -105.399261,23.089276,0
              -105.399568,23.089746,0
              -105.399531,23.090312,0
              -105.399379,23.090689,0
              -105.399167,23.091036,0
              -105.399016,23.091814,0
              -105.399132,23.09232,0
              -105.399255,23.092587,0
              -105.399917,23.092661,0
              -105.400277,23.092864,0
              -105.40019,23.093324,0
              -105.399963,23.093717,0
              -105.399878,23.094085,0
              -105.399837,23.094457,0
              -105.40005,23.09474,0
              -105.400239,23.094957,0
              -105.400711,23.095,0
              -105.400971,23.09513,0
              -105.401232,23.095696,0
              -105.401233,23.096175,0
              -105.401092,23.096394,0
              -105.400716,23.096634,0
              -105.400505,23.097005,0
              -105.400742,23.097419,0
              -105.400838,23.09792,0
              -105.400673,23.098073,0
              -105.400391,23.098291,0
              -105.400274,23.098553,0
              -105.400323,23.099163,0
              -105.400349,23.100013,0
              -105.400138,23.100406,0
              -105.399832,23.100581,0
              -105.399431,23.100604,0
              -105.39929,23.100691,0
              -105.39922,23.101171,0
              -105.399033,23.10152,0
              -105.398963,23.101978,0
              -105.398796,23.102211,0
              -105.398972,23.10238,0
              -105.400078,23.103287,0
              -105.401419,23.103477,0
              -105.402045,23.10342,0
              -105.403117,23.103224,0
              -105.403831,23.102892,0
              -105.404636,23.102779,0
              -105.405232,23.102833,0
              -105.405769,23.10319,0
              -105.406656,23.103426,0
              -105.407341,23.103231,0
              -105.407936,23.102954,0
              -105.408533,23.1032,0
              -105.409191,23.104053,0
              -105.409552,23.105155,0
              -105.41015,23.105649,0
              -105.410808,23.106392,0
              -105.41078,23.107136,0
              -105.411408,23.107713,0
              -105.412633,23.108647,0
              -105.413112,23.109528,0
              -105.413205,23.110465,0
              -105.412969,23.11143,0
              -105.413032,23.112505,0
              -105.413243,23.113056,0
              -105.414049,23.113495,0
              -105.414588,23.114293,0
              -105.415892,23.116897,0
              -105.418552,23.117789,0
              -105.419767,23.117528,0
              -105.42123,23.118521,0
              -105.422339,23.119774,0
              -105.424427,23.120292,0
              -105.426344,23.120018,0
              -105.429089,23.119914,0
              -105.430549,23.119974,0
              -105.431548,23.120551,0
              -105.434081,23.120461,0
              -105.437117,23.119102,0
              -105.438184,23.117335,0
              -105.440366,23.116696,0
              -105.442723,23.117462,0
              -105.443947,23.117982,0
              -105.445143,23.119164,0
              -105.446188,23.119629,0
              -105.447559,23.11968,0
              -105.449484,23.119172,0
              -105.451539,23.118835,0
              -105.454188,23.117615,0
              -105.455319,23.117336,0
              -105.474676,23.121994,0
              -105.501978,23.128012,0
              -105.504034,23.127729,0
              -105.50644,23.125544,0
              -105.507775,23.125062,0
              -105.508997,23.125059,0
              -105.510189,23.125,0
              -105.511292,23.125272,0
              -105.512365,23.125158,0
              -105.512989,23.124632,0
              -105.513881,23.124023,0
              -105.514924,23.124019,0
              -105.51587,23.124734,0
              -105.516683,23.125027,0
              -105.51786,23.124914,0
              -105.519157,23.124365,0
              -105.519996,23.123498,0
              -105.521162,23.122242,0
              -105.52241,23.121359,0
              -105.523863,23.120546,0
              -105.525109,23.119889,0
              -105.526313,23.1195,0
              -105.527104,23.119651,0
              -105.527497,23.119943,0
              -105.528393,23.119493,0
              -105.52889,23.118992,0
              -105.529307,23.119067,0
              -105.530303,23.118564,0
              -105.531216,23.118061,0
              -105.531712,23.117175,0
              -105.531585,23.116561,0
              -105.531748,23.115868,0
              -105.532453,23.115135,0
              -105.532326,23.114597,0
              -105.53186,23.113996,0
              -105.531761,23.113697,0
              -105.531624,23.113363,0
              -105.531944,23.112885,0
              -105.53214,23.112517,0
              -105.532737,23.112434,0
              -105.53333,23.112161,0
              -105.533768,23.111696,0
              -105.534133,23.109922,0
              -105.534983,23.109487,0
              -105.535739,23.10902,0
              -105.536422,23.108658,0
              -105.537158,23.108139,0
              -105.537444,23.107648,0
              -105.537084,23.10679,0
              -105.537478,23.10614,0
              -105.537275,23.105665,0
              -105.537074,23.104541,0
              -105.53751,23.104485,0
              -105.538091,23.104587,0
              -105.538479,23.104051,0
              -105.538926,23.10374,0
              -105.53963,23.103565,0
              -105.540044,23.103724,0
              -105.540789,23.103944,0
              -105.541055,23.104235,0
              -105.541417,23.104317,0
              -105.541915,23.104441,0
              -105.542367,23.104356,0
              -105.542955,23.10427,0
              -105.543317,23.104143,0
              -105.543723,23.103933,0
              -105.544039,23.103806,0
              -105.544491,23.103679,0
              -105.544943,23.10351,0
              -105.545622,23.103424,0
              -105.546209,23.103296,0
              -105.546888,23.103378,0
              -105.54725,23.103293,0
              -105.547567,23.103292,0
              -105.547975,23.1035,0
              -105.548112,23.10375,0
              -105.548249,23.104168,0
              -105.548612,23.104418,0
              -105.548973,23.104165,0
              -105.549017,23.103747,0
              -105.549241,23.103202,0
              -105.549466,23.102909,0
              -105.549508,23.102197,0
              -105.549415,23.101654,0
              -105.549323,23.101152,0
              -105.549284,23.100473,0
              -105.549336,23.100371,0
              -105.549693,23.10039,0
              -105.549872,23.100288,0
              -105.550141,23.100021,0
              -105.550414,23.099692,0
              -105.550996,23.099193,0
              -105.551441,23.099305,0
              -105.551857,23.099405,0
              -105.552102,23.099275,0
              -105.552379,23.099068,0
              -105.552665,23.098952,0
              -105.553177,23.098898,0
              -105.554309,23.098887,0
              -105.555068,23.098991,0
              -105.555542,23.099296,0
              -105.555911,23.099809,0
              -105.556348,23.10017,0
              -105.557196,23.100579,0
              -105.557758,23.101272,0
              -105.558254,23.10183,0
              -105.558496,23.102505,0
              -105.558666,23.10324,0
              -105.558941,23.103689,0
              -105.559485,23.103737,0
              -105.560002,23.10367,0
              -105.560438,23.103739,0
              -105.560944,23.103764,0
              -105.561677,23.104054,0
              -105.562249,23.104563,0
              -105.563056,23.104982,0
              -105.56353,23.105472,0
              -105.564171,23.106332,0
              -105.564621,23.106941,0
              -105.564913,23.107491,0
              -105.565292,23.107901,0
              -105.565691,23.108305,0
              -105.566814,23.108871,0
              -105.567079,23.108731,0
              -105.567431,23.10862,0
              -105.567651,23.108748,0
              -105.567896,23.109052,0
              -105.568182,23.109434,0
              -105.568736,23.109725,0
              -105.569097,23.109948,0
              -105.569343,23.110058,0
              -105.569824,23.109864,0
              -105.570063,23.109725,0
              -105.570503,23.109448,0
              -105.570816,23.109025,0
              -105.57105,23.108691,0
              -105.570983,23.108426,0
              -105.570905,23.108209,0
              -105.570719,23.107891,0
              -105.570653,23.107607,0
              -105.57009,23.107218,0
              -105.569954,23.107069,0
              -105.569988,23.106874,0
              -105.570168,23.106718,0
              -105.570648,23.106656,0
              -105.571308,23.10652,0
              -105.57195,23.106432,0
              -105.572661,23.106464,0
              -105.573885,23.106198,0
              -105.574157,23.106021,0
              -105.574439,23.10579,0
              -105.574651,23.10533,0
              -105.57494,23.105086,0
              -105.575187,23.105014,0
              -105.575377,23.104967,0
              -105.575663,23.105094,0
              -105.575909,23.10521,0
              -105.576288,23.106085,0
              -105.5763,23.106516,0
              -105.576217,23.107584,0
              -105.575997,23.107978,0
              -105.575467,23.108306,0
              -105.575214,23.108664,0
              -105.5747,23.109085,0
              -105.574511,23.109406,0
              -105.574469,23.109801,0
              -105.574706,23.110057,0
              -105.575189,23.110179,0
              -105.575607,23.110066,0
              -105.576176,23.109632,0
              -105.576534,23.109289,0
              -105.577015,23.10906,0
              -105.577712,23.108837,0
              -105.57815,23.109066,0
              -105.579766,23.109322,0
              -105.580358,23.109355,0
              -105.580771,23.109588,0
              -105.581018,23.110202,0
              -105.581334,23.111127,0
              -105.581949,23.111751,0
              -105.582512,23.11192,0
              -105.583402,23.1123,0
              -105.584248,23.11286,0
              -105.584791,23.112757,0
              -105.585172,23.112511,0
              -105.585132,23.112181,0
              -105.585442,23.111725,0
              -105.585926,23.111416,0
              -105.586427,23.111209,0
              -105.587792,23.110818,0
              -105.588336,23.110538,0
              -105.588624,23.11022,0
              -105.589209,23.109745,0
              -105.590327,23.109294,0
              -105.591369,23.109253,0
              -105.592518,23.109706,0
              -105.593293,23.110067,0
              -105.5938,23.110328,0
              -105.594124,23.11088,0
              -105.594565,23.111167,0
              -105.595285,23.111053,0
              -105.595622,23.11062,0
              -105.595871,23.110035,0
              -105.596411,23.109615,0
              -105.596999,23.109225,0
              -105.597641,23.10915,0
              -105.598364,23.10979,0
              -105.598768,23.110176,0
              -105.599341,23.110685,0
              -105.599601,23.11108,0
              -105.599634,23.111751,0
              -105.600086,23.112196,0
              -105.600541,23.112948,0
              -105.600611,23.113341,0
              -105.60142,23.114093,0
              -105.601804,23.114138,0
              -105.602012,23.113883,0
              -105.602194,23.113351,0
              -105.602794,23.113052,0
              -105.603315,23.112962,0
              -105.603773,23.112926,0
              -105.604077,23.113073,0
              -105.604475,23.113746,0
              -105.604797,23.114854,0
              -105.605154,23.115423,0
              -105.605834,23.115987,0
              -105.606491,23.116093,0
              -105.607406,23.116225,0
              -105.608514,23.116412,0
              -105.609046,23.116635,0
              -105.609189,23.117054,0
              -105.60913,23.117324,0
              -105.60898,23.117704,0
              -105.608592,23.118124,0
              -105.608179,23.118396,0
              -105.607741,23.118509,0
              -105.607247,23.118334,0
              -105.606851,23.118184,0
              -105.606561,23.118138,0
              -105.606023,23.118146,0
              -105.605872,23.118188,0
              -105.605791,23.118247,0
              -105.605743,23.118449,0
              -105.605835,23.118668,0
              -105.606033,23.119049,0
              -105.606362,23.119827,0
              -105.606512,23.12074,0
              -105.60696,23.121789,0
              -105.607783,23.121723,0
              -105.608311,23.121842,0
              -105.609096,23.122193,0
              -105.609975,23.122228,0
              -105.610512,23.122362,0
              -105.611534,23.122554,0
              -105.612721,23.122549,0
              -105.614184,23.122415,0
              -105.615775,23.122008,0
              -105.616983,23.121988,0
              -105.617514,23.122214,0
              -105.617741,23.123182,0
              -105.617617,23.123824,0
              -105.617023,23.124046,0
              -105.616798,23.124051,0
              -105.616498,23.124351,0
              -105.616197,23.124901,0
              -105.616434,23.12565,0
              -105.617055,23.126128,0
              -105.617667,23.12626,0
              -105.618755,23.126303,0
              -105.619198,23.125841,0
              -105.619721,23.125205,0
              -105.620561,23.124437,0
              -105.621872,23.123466,0
              -105.622804,23.122961,0
              -105.623529,23.122336,0
              -105.62397,23.122388,0
              -105.624352,23.122785,0
              -105.624709,23.123509,0
              -105.625036,23.124344,0
              -105.625132,23.124794,0
              -105.625655,23.125374,0
              -105.62579,23.125535,0
              -105.626726,23.125483,0
              -105.626821,23.125889,0
              -105.626861,23.12628,0
              -105.627031,23.126548,0
              -105.627163,23.126791,0
              -105.627183,23.127007,0
              -105.627222,23.127224,0
              -105.627364,23.127554,0
              -105.627591,23.127865,0
              -105.627742,23.128099,0
              -105.628225,23.128658,0
              -105.628527,23.128986,0
              -105.628848,23.129376,0
              -105.629085,23.129713,0
              -105.629227,23.129973,0
              -105.629359,23.130198,0
              -105.629501,23.130345,0
              -105.629708,23.130527,0
              -105.629831,23.130726,0
              -105.629945,23.130882,0
              -105.630429,23.131206,0
              -105.630722,23.131517,0
              -105.631005,23.131855,0
              -105.631353,23.131966,0
              -105.631748,23.132138,0
              -105.632022,23.132354,0
              -105.632343,23.132744,0
              -105.632795,23.133011,0
              -105.633078,23.133323,0
              -105.633394,23.133638,0
              -105.633893,23.13394,0
              -105.634335,23.134147,0
              -105.634665,23.13431,0
              -105.634872,23.134362,0
              -105.635491,23.134949,0
              -105.636146,23.135687,0
              -105.637087,23.136203,0
              -105.637433,23.136872,0
              -105.637779,23.137342,0
              -105.638409,23.137965,0
              -105.639691,23.138535,0
              -105.640144,23.139104,0
              -105.640936,23.140137,0
              -105.642134,23.140667,0
              -105.643107,23.141053,0
              -105.643991,23.141768,0
              -105.644797,23.14283,0
              -105.645259,23.143696,0
              -105.645372,23.14472,0
              -105.645261,23.145421,0
              -105.645366,23.146486,0
              -105.645553,23.147544,0
              -105.645875,23.148197,0
              -105.646179,23.148891,0
              -105.646131,23.149354,0
              -105.646137,23.150124,0
              -105.645988,23.150883,0
              -105.645942,23.151016,0
              -105.645805,23.151502,0
              -105.64513,23.151802,0
              -105.644455,23.151844,0
              -105.643782,23.151948,0
              -105.643378,23.152178,0
              -105.642913,23.152549,0
              -105.642308,23.152713,0
              -105.641665,23.153022,0
              -105.64089,23.153577,0
              -105.640359,23.153976,0
              -105.639816,23.154323,0
              -105.638617,23.154828,0
              -105.637949,23.155134,0
              -105.637671,23.155396,0
              -105.63723,23.155626,0
              -105.636876,23.155916,0
              -105.636796,23.156476,0
              -105.6368,23.156978,0
              -105.636769,23.157568,0
              -105.637168,23.158539,0
              -105.637577,23.15955,0
              -105.637833,23.160497,0
              -105.637917,23.161137,0
              -105.638215,23.161244,0
              -105.638414,23.161574,0
              -105.638558,23.162262,0
              -105.638618,23.163421,0
              -105.63873,23.165051,0
              -105.638869,23.165962,0
              -105.63901,23.166918,0
              -105.638867,23.167616,0
              -105.638401,23.168125,0
              -105.637842,23.168903,0
              -105.637272,23.169303,0
              -105.636671,23.169346,0
              -105.636141,23.169807,0
              -105.635553,23.170234,0
              -105.635054,23.170512,0
              -105.63437,23.170898,0
              -105.633754,23.171018,0
              -105.633641,23.171407,0
              -105.633483,23.171895,0
              -105.633172,23.172751,0
              -105.633039,23.173449,0
              -105.633215,23.173973,0
              -105.633447,23.174803,0
              -105.633879,23.175562,0
              -105.63416,23.176453,0
              -105.634628,23.176781,0
              -105.635687,23.178234,0
              -105.636792,23.179576,0
              -105.637583,23.180287,0
              -105.638553,23.18157,0
              -105.638798,23.182541,0
              -105.639609,23.18359,0
              -105.640401,23.184688,0
              -105.640718,23.185451,0
              -105.640531,23.185931,0
              -105.640203,23.186484,0
              -105.639819,23.186686,0
              -105.639526,23.187124,0
              -105.63908,23.187187,0
              -105.638409,23.187522,0
              -105.637884,23.187472,0
              -105.637249,23.187602,0
              -105.636618,23.187854,0
              -105.63615,23.188489,0
              -105.63553,23.188543,0
              -105.63515,23.188939,0
              -105.634832,23.189131,0
              -105.634335,23.189776,0
              -105.634165,23.190822,0
              -105.634433,23.191924,0
              -105.634731,23.193061,0
              -105.635105,23.194156,0
              -105.635158,23.195395,0
              -105.635226,23.196923,0
              -105.634902,23.19759,0
              -105.634714,23.198017,0
              -105.634583,23.198477,0
              -105.63415,23.198645,0
              -105.63386,23.198937,0
              -105.633937,23.199313,0
              -105.633676,23.199856,0
              -105.63303,23.199932,0
              -105.632762,23.200238,0
              -105.632533,23.200616,0
              -105.631777,23.201531,0
              -105.630897,23.202105,0
              -105.629713,23.202295,0
              -105.629778,23.203304,0
              -105.63017,23.204759,0
              -105.630168,23.206383,0
              -105.630341,23.207496,0
              -105.631161,23.208519,0
              -105.632169,23.209516,0
              -105.632961,23.21054,0
              -105.633446,23.211223,0
              -105.634218,23.212264,0
              -105.634596,23.212844,0
              -105.635677,23.214054,0
              -105.635744,23.214747,0
              -105.635401,23.215441,0
              -105.634824,23.215921,0
              -105.634085,23.216505,0
              -105.633071,23.216704,0
              -105.632716,23.216968,0
              -105.632218,23.217225,0
              -105.631708,23.217362,0
              -105.630949,23.21771,0
              -105.630065,23.218516,0
              -105.629673,23.219236,0
              -105.629534,23.220177,0
              -105.629826,23.220829,0
              -105.630369,23.221485,0
              -105.630716,23.222136,0
              -105.631444,23.22364,0
              -105.631562,23.224956,0
              -105.631442,23.227532,0
              -105.631527,23.229634,0
              -105.631024,23.231319,0
              -105.630712,23.23296,0
              -105.63048,23.234487,0
              -105.630317,23.235581,0
              -105.630701,23.236536,0
              -105.63188,23.237386,0
              -105.632679,23.237579,0
              -105.634397,23.238107,0
              -105.636781,23.23794,0
              -105.638619,23.237491,0
              -105.640729,23.237477,0
              -105.642344,23.238076,0
              -105.642636,23.238958,0
              -105.642402,23.240036,0
              -105.641316,23.241758,0
              -105.63988,23.242984,0
              -105.638948,23.243591,0
              -105.639182,23.245017,0
              -105.640094,23.245934,0
              -105.640749,23.24675,0
              -105.642349,23.248084,0
              -105.643302,23.249252,0
              -105.646098,23.251775,0
              -105.646843,23.253366,0
              -105.646911,23.254423,0
              -105.647051,23.256156,0
              -105.6471,23.257093,0
              -105.64737,23.258479,0
              -105.647685,23.259396,0
              -105.647748,23.260311,0
              -105.647473,23.26155,0
              -105.647057,23.262538,0
              -105.646316,23.263681,0
              -105.645361,23.264353,0
              -105.644186,23.264719,0
              -105.643256,23.265238,0
              -105.642794,23.26597,0
              -105.64302,23.266467,0
              -105.643625,23.267102,0
              -105.64443,23.267635,0
              -105.645281,23.268777,0
              -105.645461,23.269368,0
              -105.645149,23.270274,0
              -105.645159,23.271692,0
              -105.645005,23.272407,0
              -105.644049,23.273422,0
              -105.64365,23.273983,0
              -105.64319,23.274768,0
              -105.642871,23.275433,0
              -105.643208,23.276479,0
              -105.644931,23.277616,0
              -105.646917,23.278717,0
              -105.647682,23.278485,0
              -105.64887,23.278609,0
              -105.650113,23.279291,0
              -105.651065,23.2799,0
              -105.65246,23.281018,0
              -105.653665,23.281719,0
              -105.654375,23.281969,0
              -105.655054,23.281776,0
              -105.655871,23.281685,0
              -105.657285,23.281822,0
              -105.658285,23.282194,0
              -105.658719,23.282635,0
              -105.659417,23.283117,0
              -105.660375,23.283957,0
              -105.661107,23.284263,0
              -105.661522,23.284797,0
              -105.662175,23.285734,0
              -105.662554,23.28649,0
              -105.662737,23.286775,0
              -105.663107,23.287056,0
              -105.663397,23.287288,0
              -105.663708,23.28742,0
              -105.664263,23.287402,0
              -105.664736,23.287285,0
              -105.665131,23.287147,0
              -105.665225,23.286649,0
              -105.665365,23.286322,0
              -105.664871,23.284963,0
              -105.663785,23.284339,0
              -105.663557,23.283938,0
              -105.66356,23.28361,0
              -105.663914,23.283329,0
              -105.664264,23.283058,0
              -105.66459,23.282899,0
              -105.664843,23.28266,0
              -105.665188,23.282473,0
              -105.665945,23.282192,0
              -105.666287,23.28254,0
              -105.666733,23.282794,0
              -105.667364,23.282945,0
              -105.668171,23.282934,0
              -105.669125,23.282771,0
              -105.669903,23.282587,0
              -105.670334,23.282601,0
              -105.670757,23.282528,0
              -105.670971,23.282464,0
              -105.671364,23.282271,0
              -105.671864,23.281862,0
              -105.672646,23.281637,0
              -105.673278,23.281655,0
              -105.674092,23.281645,0
              -105.675127,23.282161,0
              -105.675532,23.283082,0
              -105.675718,23.284006,0
              -105.676238,23.285269,0
              -105.677045,23.285776,0
              -105.678181,23.286014,0
              -105.679045,23.285881,0
              -105.679675,23.285746,0
              -105.680306,23.285666,0
              -105.68121,23.285702,0
              -105.682765,23.285708,0
              -105.68481,23.285742,0
              -105.685456,23.286115,0
              -105.686187,23.286586,0
              -105.687084,23.28752,0
              -105.687638,23.288433,0
              -105.688272,23.289572,0
              -105.688577,23.290226,0
              -105.688828,23.290898,0
              -105.689095,23.291434,0
              -105.689535,23.292102,0
              -105.689639,23.292769,0
              -105.690328,23.293681,0
              -105.690771,23.294616,0
              -105.690635,23.295311,0
              -105.690408,23.296198,0
              -105.690231,23.297048,0
              -105.690161,23.297803,0
              -105.690577,23.298485,0
              -105.691013,23.298714,0
              -105.691495,23.298934,0
              -105.692681,23.299369,0
              -105.693218,23.299781,0
              -105.693816,23.300305,0
              -105.693918,23.30073,0
              -105.693972,23.301312,0
              -105.693605,23.301818,0
              -105.693226,23.30219,0
              -105.69262,23.302772,0
              -105.691692,23.303268,0
              -105.6913,23.303655,0
              -105.690717,23.303975,0
              -105.690024,23.304165,0
              -105.689575,23.304482,0
              -105.688881,23.304999,0
              -105.688482,23.305141,0
              -105.688021,23.305611,0
              -105.687642,23.306085,0
              -105.68736,23.306426,0
              -105.687317,23.3067,0
              -105.687303,23.306904,0
              -105.68738,23.307144,0
              -105.687598,23.307361,0
              -105.687862,23.307448,0
              -105.688074,23.307508,0
              -105.688445,23.307443,0
              -105.688888,23.30747,0
              -105.68986,23.306964,0
              -105.69074,23.306262,0
              -105.690875,23.306064,0
              -105.691078,23.305822,0
              -105.691151,23.305547,0
              -105.691407,23.305281,0
              -105.691746,23.305136,0
              -105.692159,23.305217,0
              -105.692725,23.305214,0
              -105.693397,23.305443,0
              -105.694337,23.306009,0
              -105.695607,23.306422,0
              -105.696595,23.306815,0
              -105.697214,23.306995,0
              -105.698305,23.307145,0
              -105.698711,23.30724,0
              -105.699006,23.307441,0
              -105.69916,23.307511,0
              -105.699367,23.307548,0
              -105.699471,23.307719,0
              -105.699478,23.308,0
              -105.699514,23.308314,0
              -105.699307,23.308944,0
              -105.699125,23.309486,0
              -105.69885,23.309922,0
              -105.698339,23.310232,0
              -105.69759,23.310374,0
              -105.696855,23.310392,0
              -105.696177,23.310507,0
              -105.695181,23.310456,0
              -105.694325,23.310443,0
              -105.69395,23.310188,0
              -105.693658,23.309996,0
              -105.692998,23.309813,0
              -105.692584,23.310071,0
              -105.692488,23.310429,0
              -105.692331,23.310975,0
              -105.692513,23.311707,0
              -105.692699,23.312579,0
              -105.692903,23.313161,0
              -105.692975,23.314415,0
              -105.692968,23.315457,0
              -105.692915,23.31612,0
              -105.693223,23.317162,0
              -105.693159,23.31809,0
              -105.693275,23.319014,0
              -105.693445,23.319646,0
              -105.693716,23.320368,0
              -105.694567,23.321571,0
              -105.695587,23.322134,0
              -105.696681,23.322786,0
              -105.697716,23.323139,0
              -105.698481,23.323559,0
              -105.699521,23.323559,0
              -105.700407,23.323836,0
              -105.700777,23.32424,0
              -105.700707,23.324929,0
              -105.700559,23.325403,0
              -105.700017,23.326291,0
              -105.699178,23.327055,0
              -105.698723,23.327479,0
              -105.698843,23.328229,0
              -105.69934,23.328984,0
              -105.699878,23.329608,0
              -105.700412,23.330447,0
              -105.701365,23.331123,0
              -105.702194,23.331881,0
              -105.702179,23.332651,0
              -105.701952,23.333194,0
              -105.701448,23.334138,0
              -105.700863,23.335012,0
              -105.700163,23.335964,0
              -105.698987,23.336923,0
              -105.697572,23.337949,0
              -105.695942,23.338976,0
              -105.695578,23.339423,0
              -105.694788,23.339732,0
              -105.694056,23.340154,0
              -105.694005,23.340569,0
              -105.694391,23.340916,0
              -105.695028,23.341522,0
              -105.695914,23.341807,0
              -105.697079,23.341763,0
              -105.69826,23.341363,0
              -105.699316,23.340974,0
              -105.700463,23.340418,0
              -105.700806,23.340187,0
              -105.701658,23.339893,0
              -105.702474,23.33989,0
              -105.702986,23.339911,0
              -105.703511,23.340097,0
              -105.703961,23.340484,0
              -105.704105,23.341134,0
              -105.704669,23.34214,0
              -105.704523,23.343229,0
              -105.704272,23.344513,0
              -105.704461,23.345501,0
              -105.704716,23.346873,0
              -105.704839,23.347764,0
              -105.705171,23.348732,0
              -105.705796,23.349271,0
              -105.707439,23.350153,0
              -105.708396,23.350395,0
              -105.709452,23.350295,0
              -105.710383,23.350256,0
              -105.711232,23.349978,0
              -105.711995,23.349643,0
              -105.712862,23.349627,0
              -105.713489,23.349604,0
              -105.714001,23.349617,0
              -105.714482,23.34982,0
              -105.715156,23.350218,0
              -105.715478,23.350777,0
              -105.71568,23.351294,0
              -105.715582,23.351958,0
              -105.715418,23.352622,0
              -105.714632,23.353189,0
              -105.713838,23.353423,0
              -105.713051,23.353942,0
              -105.712301,23.354842,0
              -105.711893,23.355973,0
              -105.712126,23.356841,0
              -105.712461,23.357562,0
              -105.712013,23.359456,0
              -105.711828,23.360185,0
              -105.711668,23.361348,0
              -105.711771,23.362752,0
              -105.71187,23.363412,0
              -105.712009,23.363881,0
              -105.712245,23.364281,0
              -105.712628,23.364488,0
              -105.713178,23.364722,0
              -105.713944,23.364967,0
              -105.714458,23.36508,0
              -105.715094,23.365213,0
              -105.715561,23.365525,0
              -105.715517,23.365882,0
              -105.715472,23.366181,0
              -105.715335,23.366416,0
              -105.715379,23.36682,0
              -105.715969,23.367297,0
              -105.717808,23.368334,0
              -105.719064,23.369414,0
              -105.719894,23.369963,0
              -105.720664,23.370398,0
              -105.721606,23.370973,0
              -105.722503,23.371554,0
              -105.723249,23.372126,0
              -105.724203,23.372387,0
              -105.725311,23.372455,0
              -105.72618,23.372529,0
              -105.726752,23.372978,0
              -105.727537,23.373559,0
              -105.728156,23.373643,0
              -105.729007,23.373896,0
              -105.729946,23.37401,0
              -105.730307,23.374275,0
              -105.730438,23.374497,0
              -105.73069,23.374897,0
              -105.73074,23.375464,0
              -105.730644,23.376405,0
              -105.730517,23.376951,0
              -105.730219,23.377477,0
              -105.729923,23.377731,0
              -105.729534,23.37788,0
              -105.729217,23.378107,0
              -105.728625,23.378223,0
              -105.728062,23.37822,0
              -105.727655,23.378024,0
              -105.727267,23.377737,0
              -105.726981,23.37746,0
              -105.726357,23.377089,0
              -105.725872,23.376996,0
              -105.72516,23.376854,0
              -105.724459,23.376681,0
              -105.723452,23.376568,0
              -105.723286,23.376572,0
              -105.718858,23.377665,0
              -105.718027,23.378147,0
              -105.717332,23.378595,0
              -105.71709,23.378999,0
              -105.716973,23.379326,0
              -105.716996,23.379634,0
              -105.717293,23.380037,0
              -105.718183,23.380468,0
              -105.718811,23.380485,0
              -105.719285,23.380705,0
              -105.719793,23.380913,0
              -105.720267,23.381134,0
              -105.720585,23.381484,0
              -105.721425,23.382482,0
              -105.721872,23.382966,0
              -105.722465,23.383762,0
              -105.722802,23.384795,0
              -105.722622,23.385421,0
              -105.722419,23.386036,0
              -105.721999,23.386794,0
              -105.721632,23.387428,0
              -105.721306,23.388015,0
              -105.720698,23.388394,0
              -105.720334,23.388844,0
              -105.71961,23.389461,0
              -105.718942,23.390045,0
              -105.718659,23.390526,0
              -105.718469,23.391088,0
              -105.718008,23.391924,0
              -105.717674,23.392195,0
              -105.717094,23.392693,0
              -105.716454,23.393034,0
              -105.715761,23.393167,0
              -105.715456,23.393258,0
              -105.715091,23.393256,0
              -105.714539,23.393112,0
              -105.714114,23.392996,0
              -105.713439,23.392549,0
              -105.713057,23.392348,0
              -105.712605,23.392276,0
              -105.71208,23.39255,0
              -105.711893,23.392914,0
              -105.71175,23.393496,0
              -105.711812,23.394894,0
              -105.711888,23.395711,0
              -105.711855,23.396331,0
              -105.711912,23.396865,0
              -105.711801,23.397782,0
              -105.711567,23.398388,0
              -105.711331,23.399085,0
              -105.71097,23.399463,0
              -105.710638,23.399855,0
              -105.710197,23.400015,0
              -105.709964,23.400252,0
              -105.709867,23.400444,0
              -105.709728,23.400763,0
              -105.709415,23.40183,0
              -105.709428,23.402303,0
              -105.709305,23.40279,0
              -105.708905,23.403567,0
              -105.708594,23.40388,0
              -105.708601,23.404122,0
              -105.708788,23.404712,0
              -105.70897,23.405473,0
              -105.709295,23.406109,0
              -105.709765,23.406603,0
              -105.710409,23.407583,0
              -105.710253,23.408134,0
              -105.709995,23.408666,0
              -105.709687,23.409084,0
              -105.70915,23.409475,0
              -105.708528,23.40968,0
              -105.708102,23.409932,0
              -105.70766,23.410037,0
              -105.706571,23.410263,0
              -105.706214,23.410358,0
              -105.705241,23.410676,0
              -105.704576,23.410965,0
              -105.704002,23.411263,0
              -105.703695,23.411712,0
              -105.703395,23.412403,0
              -105.703005,23.413461,0
              -105.702579,23.414303,0
              -105.702436,23.415295,0
              -105.702012,23.416489,0
              -105.701593,23.417425,0
              -105.701098,23.418089,0
              -105.700321,23.419686,0
              -105.700289,23.420171,0
              -105.700449,23.420563,0
              -105.700721,23.420915,0
              -105.701459,23.42157,0
              -105.702197,23.421847,0
              -105.702865,23.422063,0
              -105.703278,23.422158,0
              -105.703639,23.422302,0
              -105.70384,23.42296,0
              -105.703993,23.423567,0
              -105.70422,23.424319,0
              -105.704577,23.424847,0
              -105.705051,23.425067,0
              -105.7055,23.425203,0
              -105.706192,23.425276,0
              -105.707109,23.425853,0
              -105.707786,23.425964,0
              -105.708934,23.42581,0
              -105.710186,23.425675,0
              -105.711137,23.425431,0
              -105.712128,23.425515,0
              -105.713036,23.425746,0
              -105.714571,23.426361,0
              -105.715388,23.426584,0
              -105.716389,23.426875,0
              -105.717235,23.427067,0
              -105.719036,23.426992,0
              -105.719927,23.426634,0
              -105.720924,23.426347,0
              -105.721976,23.426448,0
              -105.722625,23.426682,0
              -105.722987,23.427087,0
              -105.723494,23.427643,0
              -105.724031,23.428072,0
              -105.725066,23.428558,0
              -105.725683,23.428564,0
              -105.7266,23.42871,0
              -105.727285,23.428726,0
              -105.727963,23.428899,0
              -105.728331,23.428984,0
              -105.729215,23.429984,0
              -105.729567,23.430322,0
              -105.729612,23.4307,0
              -105.730035,23.431518,0
              -105.730223,23.432092,0
              -105.730528,23.432811,0
              -105.730558,23.433452,0
              -105.730562,23.434009,0
              -105.730534,23.43462,0
              -105.730054,23.435091,0
              -105.729456,23.435736,0
              -105.728928,23.436443,0
              -105.728492,23.437148,0
              -105.728288,23.437627,0
              -105.728179,23.438218,0
              -105.728039,23.438895,0
              -105.728403,23.439588,0
              -105.729232,23.440231,0
              -105.729972,23.440582,0
              -105.730884,23.44096,0
              -105.731701,23.441193,0
              -105.733416,23.441955,0
              -105.733886,23.442427,0
              -105.73465,23.442798,0
              -105.735373,23.44297,0
              -105.73648,23.443622,0
              -105.737128,23.443922,0
              -105.737778,23.444327,0
              -105.738392,23.444638,0
              -105.738865,23.445206,0
              -105.738774,23.445629,0
              -105.738902,23.446158,0
              -105.738979,23.44643,0
              -105.738903,23.446968,0
              -105.738856,23.447359,0
              -105.738691,23.447952,0
              -105.738337,23.448381,0
              -105.737865,23.448764,0
              -105.736933,23.449302,0
              -105.736573,23.449469,0
              -105.736428,23.449609,0
              -105.736264,23.449855,0
              -105.73565,23.449933,0
              -105.735119,23.450613,0
              -105.734779,23.451116,0
              -105.734062,23.451996,0
              -105.733885,23.452179,0
              -105.73296,23.452307,0
              -105.732305,23.452544,0
              -105.732032,23.452582,0
              -105.731882,23.452922,0
              -105.73149,23.452784,0
              -105.730837,23.452695,0
              -105.730417,23.452698,0
              -105.730149,23.452843,0
              -105.729992,23.453115,0
              -105.729728,23.453504,0
              -105.729317,23.453893,0
              -105.729318,23.454766,0
              -105.729568,23.455528,0
              -105.729848,23.456126,0
              -105.729837,23.456537,0
              -105.729631,23.456941,0
              -105.729516,23.457323,0
              -105.729349,23.457853,0
              -105.729095,23.458164,0
              -105.72873,23.458583,0
              -105.728161,23.458768,0
              -105.727755,23.458925,0
              -105.726945,23.459093,0
              -105.725375,23.459892,0
              -105.725151,23.460093,0
              -105.724922,23.460466,0
              -105.724657,23.460809,0
              -105.724549,23.461409,0
              -105.724968,23.462114,0
              -105.725623,23.462656,0
              -105.726313,23.462839,0
              -105.726747,23.463348,0
              -105.727123,23.464024,0
              -105.727646,23.465354,0
              -105.728063,23.466817,0
              -105.727995,23.467411,0
              -105.727609,23.46853,0
              -105.727387,23.469549,0
              -105.726918,23.470411,0
              -105.72683,23.470857,0
              -105.726514,23.471411,0
              -105.725685,23.47216,0
              -105.725247,23.472643,0
              -105.724876,23.473026,0
              -105.724281,23.473524,0
              -105.723966,23.47393,0
              -105.723632,23.474354,0
              -105.723445,23.47484,0
              -105.723591,23.475235,0
              -105.723921,23.475703,0
              -105.724275,23.476061,0
              -105.724693,23.476451,0
              -105.725382,23.477016,0
              -105.726293,23.477561,0
              -105.726987,23.478103,0
              -105.727532,23.478515,0
              -105.727749,23.47881,0
              -105.727772,23.479335,0
              -105.727939,23.480062,0
              -105.727932,23.480454,0
              -105.728245,23.480972,0
              -105.728636,23.481363,0
              -105.729068,23.481602,0
              -105.729541,23.481999,0
              -105.729804,23.482327,0
              -105.730242,23.482483,0
              -105.730847,23.482537,0
              -105.731162,23.482455,0
              -105.731589,23.482545,0
              -105.732378,23.482601,0
              -105.732835,23.482765,0
              -105.733351,23.482761,0
              -105.733679,23.482566,0
              -105.734154,23.482383,0
              -105.734669,23.482679,0
              -105.735147,23.482918,0
              -105.73555,23.483425,0
              -105.735689,23.483872,0
              -105.73645,23.484377,0
              -105.736944,23.484565,0
              -105.737631,23.48484,0
              -105.73828,23.485108,0
              -105.738837,23.48527,0
              -105.739355,23.485341,0
              -105.739738,23.485735,0
              -105.739885,23.486157,0
              -105.739915,23.48689,0
              -105.739974,23.487372,0
              -105.740094,23.488641,0
              -105.740492,23.489273,0
              -105.741127,23.48965,0
              -105.741812,23.489884,0
              -105.742491,23.489901,0
              -105.743048,23.489918,0
              -105.74333,23.490131,0
              -105.743669,23.490828,0
              -105.744079,23.491585,0
              -105.74472,23.492145,0
              -105.745575,23.492487,0
              -105.746843,23.492864,0
              -105.747793,23.493183,0
              -105.74863,23.493672,0
              -105.74856,23.494074,0
              -105.748355,23.4945,0
              -105.748164,23.495097,0
              -105.748428,23.495816,0
              -105.748911,23.496246,0
              -105.749615,23.496813,0
              -105.750314,23.497501,0
              -105.750691,23.498026,0
              -105.750835,23.498639,0
              -105.750789,23.499282,0
              -105.751038,23.500275,0
              -105.751238,23.500408,0
              -105.751606,23.500528,0
              -105.75268,23.500818,0
              -105.753384,23.500862,0
              -105.753851,23.50086,0
              -105.754257,23.500889,0
              -105.755013,23.500984,0
              -105.75607,23.501343,0
              -105.75656,23.501668,0
              -105.756838,23.50196,0
              -105.757039,23.502265,0
              -105.757218,23.502489,0
              -105.757467,23.502483,0
              -105.757779,23.502466,0
              -105.758116,23.502563,0
              -105.758823,23.502527,0
              -105.759627,23.502345,0
              -105.760048,23.502507,0
              -105.760339,23.502959,0
              -105.760407,23.503201,0
              -105.760407,23.503393,0
              -105.760388,23.503937,0
              -105.760313,23.505792,0
              -105.760348,23.507441,0
              -105.760104,23.508622,0
              -105.760078,23.509139,0
              -105.759911,23.509586,0
              -105.75958,23.510177,0
              -105.759237,23.510718,0
              -105.75875,23.511499,0
              -105.758485,23.512167,0
              -105.757903,23.51308,0
              -105.757634,23.51379,0
              -105.757098,23.51469,0
              -105.756809,23.515102,0
              -105.756709,23.515388,0
              -105.756625,23.515549,0
              -105.756917,23.515866,0
              -105.75711,23.51591,0
              -105.757362,23.516032,0
              -105.757473,23.516274,0
              -105.757495,23.516507,0
              -105.7574,23.516769,0
              -105.757445,23.517136,0
              -105.757478,23.517868,0
              -105.757556,23.518398,0
              -105.757526,23.518948,0
              -105.757645,23.51948,0
              -105.757539,23.520027,0
              -105.757517,23.520687,0
              -105.757443,23.52153,0
              -105.757274,23.522725,0
              -105.757026,23.523168,0
              -105.757027,23.523602,0
              -105.757002,23.523922,0
              -105.756944,23.524137,0
              -105.756798,23.524476,0
              -105.756867,23.524897,0
              -105.756943,23.52531,0
              -105.757027,23.525529,0
              -105.757241,23.525896,0
              -105.757286,23.5261,0
              -105.757394,23.526213,0
              -105.75755,23.526284,0
              -105.757815,23.526342,0
              -105.75813,23.52635,0
              -105.758446,23.526476,0
              -105.758815,23.52644,0
              -105.759232,23.526507,0
              -105.759477,23.526693,0
              -105.759652,23.526876,0
              -105.759758,23.527399,0
              -105.759885,23.527806,0
              -105.759848,23.528358,0
              -105.759929,23.528747,0
              -105.759961,23.529061,0
              -105.759717,23.52945,0
              -105.759552,23.529937,0
              -105.759295,23.530252,0
              -105.759266,23.530658,0
              -105.758993,23.531236,0
              -105.758912,23.531625,0
              -105.758934,23.532008,0
              -105.759252,23.532409,0
              -105.759364,23.532755,0
              -105.759435,23.533233,0
              -105.75957,23.533641,0
              -105.759772,23.53413,0
              -105.760376,23.535106,0
              -105.760724,23.535476,0
              -105.76106,23.53568,0
              -105.761556,23.536202,0
              -105.762112,23.536669,0
              -105.762579,23.536952,0
              -105.762937,23.537305,0
              -105.763428,23.537723,0
              -105.763964,23.5384,0
              -105.764161,23.53874,0
              -105.764361,23.538862,0
              -105.764805,23.539084,0
              -105.765338,23.539224,0
              -105.76587,23.539426,0
              -105.766301,23.539684,0
              -105.766834,23.539927,0
              -105.767344,23.540169,0
              -105.767789,23.540473,0
              -105.768724,23.541325,0
              -105.769124,23.541939,0
              -105.769216,23.542576,0
              -105.769261,23.543149,0
              -105.769361,23.543571,0
              -105.769312,23.543889,0
              -105.768876,23.544321,0
              -105.768431,23.544635,0
              -105.76811,23.545226,0
              -105.768006,23.545662,0
              -105.768285,23.546206,0
              -105.768557,23.546816,0
              -105.768913,23.54714,0
              -105.769183,23.547582,0
              -105.769342,23.548028,0
              -105.76927,23.548548,0
              -105.76914,23.54896,0
              -105.768806,23.549792,0
              -105.768312,23.550137,0
              -105.767911,23.550694,0
              -105.76768,23.551102,0
              -105.76756,23.551545,0
              -105.767639,23.552079,0
              -105.767707,23.552385,0
              -105.768064,23.552592,0
              -105.768447,23.55285,0
              -105.768905,23.553105,0
              -105.768998,23.553581,0
              -105.768982,23.553851,0
              -105.769029,23.554167,0
              -105.769003,23.554487,0
              -105.768821,23.554883,0
              -105.768694,23.555261,0
              -105.768832,23.555651,0
              -105.769035,23.555963,0
              -105.769302,23.556465,0
              -105.769992,23.557342,0
              -105.770284,23.557664,0
              -105.770551,23.557718,0
              -105.770817,23.557721,0
              -105.771269,23.557552,0
              -105.771663,23.557482,0
              -105.772015,23.557493,0
              -105.772293,23.557581,0
              -105.772655,23.557857,0
              -105.772833,23.558101,0
              -105.772695,23.558354,0
              -105.772501,23.558578,0
              -105.772352,23.558913,0
              -105.772366,23.559379,0
              -105.772503,23.55985,0
              -105.772676,23.560237,0
              -105.772718,23.560641,0
              -105.772912,23.560998,0
              -105.773138,23.561059,0
              -105.773539,23.560935,0
              -105.773835,23.56068,0
              -105.774121,23.560797,0
              -105.774492,23.56102,0
              -105.774959,23.561344,0
              -105.775294,23.561832,0
              -105.775775,23.562617,0
              -105.77658,23.563919,0
              -105.776812,23.564167,0
              -105.777046,23.564272,0
              -105.777273,23.564257,0
              -105.778001,23.564104,0
              -105.778295,23.564135,0
              -105.778546,23.564478,0
              -105.778589,23.564652,0
              -105.778721,23.565024,0
              -105.778822,23.565425,0
              -105.778966,23.565877,0
              -105.779138,23.566216,0
              -105.779408,23.566496,0
              -105.779666,23.56683,0
              -105.779948,23.566943,0
              -105.780542,23.567225,0
              -105.781068,23.567603,0
              -105.781483,23.567644,0
              -105.781902,23.567647,0
              -105.782214,23.56784,0
              -105.782476,23.568072,0
              -105.782809,23.568159,0
              -105.783374,23.568076,0
              -105.783554,23.568367,0
              -105.783779,23.568628,0
              -105.783985,23.568799,0
              -105.784262,23.56901,0
              -105.784573,23.569151,0
              -105.784877,23.569127,0
              -105.78519,23.569122,0
              -105.785633,23.569169,0
              -105.785904,23.569471,0
              -105.785916,23.569662,0
              -105.785792,23.569903,0
              -105.785564,23.570128,0
              -105.785213,23.570528,0
              -105.78501,23.570901,0
              -105.784787,23.571439,0
              -105.78463,23.571871,0
              -105.784549,23.572702,0
              -105.784332,23.573242,0
              -105.784651,23.573763,0
              -105.78487,23.574225,0
              -105.785148,23.574597,0
              -105.78538,23.57499,0
              -105.78584,23.57516,0
              -105.786371,23.575432,0
              -105.786897,23.575682,0
              -105.787164,23.575824,0
              -105.787521,23.576169,0
              -105.789838,23.578524,0
              -105.790215,23.578583,0
              -105.790614,23.578561,0
              -105.790852,23.578371,0
              -105.791102,23.578108,0
              -105.791354,23.577901,0
              -105.79181,23.577809,0
              -105.792604,23.577939,0
              -105.79298,23.577916,0
              -105.793424,23.578036,0
              -105.793625,23.578219,0
              -105.793959,23.578625,0
              -105.794116,23.578931,0
              -105.794355,23.579362,0
              -105.794374,23.579703,0
              -105.794488,23.579873,0
              -105.794781,23.580064,0
              -105.795046,23.580042,0
              -105.795378,23.579918,0
              -105.796077,23.58058,0
              -105.796728,23.583392,0
              -105.797185,23.583656,0
              -105.797992,23.583652,0
              -105.798854,23.583429,0
              -105.80067,23.584744,0
              -105.801461,23.585522,0
              -105.802321,23.586499,0
              -105.802098,23.587713,0
              -105.803268,23.587864,0
              -105.805334,23.587882,0
              -105.806647,23.588873,0
              -105.80735,23.590634,0
              -105.811644,23.611029,0
              -105.820167,23.608927,0
              -105.824832,23.60779,0
              -105.845516,23.603256,0
              -105.845373,23.596491,0
              -105.845234,23.589872,0
              -105.845186,23.583695,0
              -105.853596,23.597288,0
              -105.884318,23.590394,0
              -105.892655,23.552645,0
              -105.907193,23.58454,0
              -105.908905,23.58827,0
              -105.90903,23.590189,0
              -105.920734,23.655836,0
              -105.926634,23.684136,0
              -105.916556,23.715356,0
              -105.915906,23.726425,0
              -105.906203,23.737071,0
              -105.906134,23.737146,0
              -105.906093,23.739399,0
              -105.91066,23.741397,0
              -105.923063,23.747754,0
              -105.922948,23.75224,0
              -105.922033,23.752987,0
              -105.921769,23.753715,0
              -105.921399,23.754563,0
              -105.92113,23.754929,0
              -105.920763,23.756104,0
              -105.920351,23.756971,0
              -105.919747,23.757807,0
              -105.92053,23.75855,0
              -105.92127,23.759633,0
              -105.922348,23.760094,0
              -105.922846,23.760433,0
              -105.923318,23.7613,0
              -105.925153,23.76142,0
              -105.926668,23.761522,0
              -105.927277,23.76202,0
              -105.928131,23.762906,0
              -105.928869,23.764406,0
              -105.929482,23.765517,0
              -105.929369,23.766576,0
              -105.928404,23.767195,0
              -105.926956,23.768039,0
              -105.926474,23.768377,0
              -105.925813,23.769241,0
              -105.925154,23.77036,0
              -105.924799,23.771476,0
              -105.924937,23.773815,0
              -105.92567,23.774814,0
              -105.926344,23.775813,0
              -105.927018,23.776923,0
              -105.927389,23.777924,0
              -105.927878,23.778645,0
              -105.928367,23.779255,0
              -105.928735,23.779866,0
              -105.929043,23.780532,0
              -105.929531,23.780965,0
              -105.928692,23.782014,0
              -105.928334,23.782852,0
              -105.928222,23.784022,0
              -105.928415,23.785637,0
              -105.928785,23.786582,0
              -105.929263,23.787717,0
              -105.930016,23.788793,0
              -105.930665,23.789748,0
              -105.931237,23.790579,0
              -105.93146,23.791557,0
              -105.931693,23.792615,0
              -105.931803,23.793528,0
              -105.931988,23.794084,0
              -105.932175,23.794696,0
              -105.93933,23.79143,0
              -105.951881,23.81965,0
              -105.951945,23.819793,0
              -105.961266,23.840742,0
              -105.957783,23.871825,0
              -105.953662,23.908585,0
              -105.951522,23.907679,0
              -105.885202,23.879575,0
              -105.883298,23.878549,0
              -105.882274,23.878542,0
              -105.867241,23.875243,0
              -105.864773,23.875156,0
              -105.864097,23.875613,0
              -105.863967,23.875931,0
              -105.863969,23.876245,0
              -105.863852,23.876725,0
              -105.863715,23.877223,0
              -105.863416,23.877575,0
              -105.862905,23.877922,0
              -105.862864,23.878273,0
              -105.86301,23.878526,0
              -105.863186,23.878757,0
              -105.863553,23.879051,0
              -105.864003,23.879141,0
              -105.864449,23.879008,0
              -105.865069,23.87946,0
              -105.865352,23.879864,0
              -105.865463,23.880151,0
              -105.865494,23.880719,0
              -105.865324,23.880865,0
              -105.864863,23.880905,0
              -105.864401,23.880963,0
              -105.863818,23.881083,0
              -105.863239,23.881098,0
              -105.8631,23.881357,0
              -105.863021,23.881832,0
              -105.862922,23.882545,0
              -105.863186,23.882816,0
              -105.863312,23.882876,0
              -105.863438,23.883055,0
              -105.863394,23.883307,0
              -105.863327,23.883496,0
              -105.863225,23.883643,0
              -105.863272,23.883758,0
              -105.863478,23.883893,0
              -105.863523,23.884081,0
              -105.863504,23.884229,0
              -105.863561,23.884406,0
              -105.863311,23.88447,0
              -105.86305,23.884506,0
              -105.862848,23.884708,0
              -105.862769,23.884919,0
              -105.86265,23.885275,0
              -105.862425,23.884988,0
              -105.862206,23.884876,0
              -105.862083,23.884713,0
              -105.861891,23.884636,0
              -105.861819,23.884495,0
              -105.861871,23.884302,0
              -105.861567,23.884354,0
              -105.861289,23.884582,0
              -105.8611,23.88483,0
              -105.861044,23.885102,0
              -105.861114,23.885495,0
              -105.861093,23.885771,0
              -105.861148,23.886051,0
              -105.860737,23.886423,0
              -105.860892,23.886785,0
              -105.861011,23.88709,0
              -105.861095,23.887419,0
              -105.861336,23.887757,0
              -105.861493,23.887997,0
              -105.8616,23.888308,0
              -105.861971,23.888548,0
              -105.862251,23.888793,0
              -105.862423,23.888958,0
              -105.862666,23.889164,0
              -105.863269,23.889448,0
              -105.863148,23.889658,0
              -105.86278,23.889879,0
              -105.862564,23.89023,0
              -105.862382,23.890466,0
              -105.862183,23.890803,0
              -105.861899,23.890919,0
              -105.861776,23.891314,0
              -105.861467,23.891563,0
              -105.861173,23.891818,0
              -105.86083,23.891926,0
              -105.86039,23.892329,0
              -105.860183,23.89235,0
              -105.860024,23.892249,0
              -105.859908,23.892132,0
              -105.859647,23.892151,0
              -105.859597,23.892429,0
              -105.859439,23.892595,0
              -105.859199,23.89267,0
              -105.858899,23.892819,0
              -105.858646,23.892905,0
              -105.858512,23.893086,0
              -105.858426,23.893367,0
              -105.858617,23.893554,0
              -105.858725,23.893721,0
              -105.858771,23.893916,0
              -105.858829,23.894111,0
              -105.85899,23.894273,0
              -105.859093,23.89443,0
              -105.859093,23.894626,0
              -105.859038,23.894924,0
              -105.858904,23.895076,0
              -105.858712,23.895229,0
              -105.858439,23.895419,0
              -105.85824,23.8957,0
              -105.858293,23.896149,0
              -105.858221,23.896639,0
              -105.858078,23.897303,0
              -105.858032,23.89767,0
              -105.857743,23.898075,0
              -105.85777,23.898804,0
              -105.857588,23.899296,0
              -105.857753,23.899822,0
              -105.858043,23.900429,0
              -105.858239,23.900615,0
              -105.858523,23.900751,0
              -105.858618,23.901329,0
              -105.858521,23.901745,0
              -105.858844,23.902135,0
              -105.859292,23.902369,0
              -105.859603,23.902553,0
              -105.860084,23.902546,0
              -105.860426,23.902607,0
              -105.860903,23.902583,0
              -105.861245,23.902768,0
              -105.861487,23.902963,0
              -105.861535,23.903211,0
              -105.861356,23.903613,0
              -105.861587,23.904396,0
              -105.861782,23.904555,0
              -105.862012,23.904709,0
              -105.862464,23.904706,0
              -105.862986,23.904598,0
              -105.863548,23.904251,0
              -105.863688,23.904476,0
              -105.86414,23.905324,0
              -105.864674,23.90656,0
              -105.864999,23.907605,0
              -105.865277,23.908222,0
              -105.86506,23.908879,0
              -105.864714,23.909503,0
              -105.864272,23.910021,0
              -105.864514,23.911327,0
              -105.863886,23.912824,0
              -105.864353,23.913525,0
              -105.864617,23.914106,0
              -105.865976,23.916071,0
              -105.868343,23.918644,0
              -105.87228,23.920168,0
              -105.875312,23.922524,0
              -105.876329,23.923381,0
              -105.878992,23.926066,0
              -105.880257,23.928778,0
              -105.881554,23.93282,0
              -105.899919,23.943921,0
              -105.945415,23.948026,0
              -105.935851,23.957191,0
              -105.935761,23.957277,0
              -105.908462,23.983427,0
              -105.908404,23.984816,0
              -105.908718,23.98663,0
              -105.909744,23.987603,0
              -105.910721,23.988311,0
              -105.912215,23.990273,0
              -105.912925,23.992008,0
              -105.913049,23.994323,0
              -105.91244,23.995913,0
              -105.912094,23.997239,0
              -105.912136,23.997534,0
              -105.913114,23.998628,0
              -105.914615,23.999512,0
              -105.916183,23.999935,0
              -105.917086,24.0001,0
              -105.917456,23.999842,0
              -105.917973,23.999807,0
              -105.918593,23.999435,0
              -105.919132,23.999543,0
              -105.919853,23.999511,0
              -105.920468,23.999644,0
              -105.921188,23.999524,0
              -105.922007,23.999018,0
              -105.922247,23.998759,0
              -105.922464,23.998241,0
              -105.922715,23.998121,0
              -105.923014,23.998046,0
              -105.923291,23.998074,0
              -105.923534,23.998067,0
              -105.924043,23.998017,0
              -105.924433,23.998139,0
              -105.924813,23.998385,0
              -105.92522,23.998444,0
              -105.925627,23.998605,0
              -105.926464,23.998758,0
              -105.926702,23.998927,0
              -105.927093,23.999045,0
              -105.927412,23.999182,0
              -105.927929,23.999115,0
              -105.928309,23.999126,0
              -105.928597,23.999178,0
              -105.92887,23.999288,0
              -105.929066,23.999498,0
              -105.929141,23.999818,0
              -105.929116,24.000048,0
              -105.929133,24.000256,0
              -105.929244,24.000503,0
              -105.929407,24.000694,0
              -105.929573,24.000743,0
              -105.929869,24.00074,0
              -105.930062,24.000715,0
              -105.930331,24.000699,0
              -105.930506,24.000714,0
              -105.930726,24.000633,0
              -105.930948,24.00061,0
              -105.931124,24.000625,0
              -105.931345,24.0006,0
              -105.931649,24.000632,0
              -105.931834,24.000729,0
              -105.932016,24.000931,0
              -105.932209,24.001255,0
              -105.932205,24.001666,0
              -105.932125,24.002092,0
              -105.932147,24.002331,0
              -105.932218,24.002445,0
              -105.932343,24.002559,0
              -105.932513,24.00274,0
              -105.932751,24.002724,0
              -105.93301,24.002678,0
              -105.93325,24.002546,0
              -105.933388,24.002396,0
              -105.933521,24.002213,0
              -105.934046,24.002044,0
              -105.934284,24.00212,0
              -105.934671,24.002354,0
              -105.935072,24.002706,0
              -105.935507,24.003119,0
              -105.93586,24.003365,0
              -105.936044,24.003788,0
              -105.936327,24.004118,0
              -105.93673,24.004337,0
              -105.937099,24.004584,0
              -105.937632,24.004991,0
              -105.937675,24.005379,0
              -105.937463,24.005735,0
              -105.937304,24.00594,0
              -105.937288,24.006111,0
              -105.937373,24.006319,0
              -105.937615,24.006484,0
              -105.937857,24.006556,0
              -105.938119,24.006647,0
              -105.9384,24.006755,0
              -105.938895,24.006899,0
              -105.939243,24.007036,0
              -105.939449,24.007321,0
              -105.939579,24.007641,0
              -105.939594,24.00794,0
              -105.939514,24.008263,0
              -105.939369,24.008573,0
              -105.939181,24.00903,0
              -105.939082,24.009314,0
              -105.939185,24.009509,0
              -105.939442,24.009585,0
              -105.939726,24.009685,0
              -105.939944,24.009704,0
              -105.940139,24.00966,0
              -105.94038,24.009756,0
              -105.940637,24.009832,0
              -105.940928,24.010175,0
              -105.941018,24.010427,0
              -105.941101,24.010814,0
              -105.941183,24.011127,0
              -105.941225,24.011348,0
              -105.941308,24.011624,0
              -105.94141,24.0119,0
              -105.941434,24.012168,0
              -105.941484,24.012415,0
              -105.941459,24.012738,0
              -105.941481,24.012977,0
              -105.941523,24.013198,0
              -105.941617,24.013484,0
              -105.941696,24.013657,0
              -105.941813,24.013858,0
              -105.942035,24.014126,0
              -105.942343,24.014318,0
              -105.942735,24.014318,0
              -105.943134,24.014361,0
              -105.943635,24.014285,0
              -105.944054,24.014085,0
              -105.944397,24.013568,0
              -105.944616,24.013271,0
              -105.944835,24.013012,0
              -105.944913,24.012772,0
              -105.945152,24.012475,0
              -105.945269,24.012261,0
              -105.945446,24.012164,0
              -105.945541,24.012133,0
              -105.945749,24.012171,0
              -105.945983,24.012199,0
              -105.94614,24.012302,0
              -105.946176,24.012467,0
              -105.94625,24.012616,0
              -105.946402,24.013094,0
              -105.946304,24.013427,0
              -105.946246,24.013741,0
              -105.946027,24.014074,0
              -105.945969,24.014369,0
              -105.945952,24.014683,0
              -105.945953,24.014886,0
              -105.946034,24.015033,0
              -105.946296,24.015086,0
              -105.946576,24.015171,0
              -105.946904,24.015158,0
              -105.947132,24.014972,0
              -105.947242,24.014765,0
              -105.947256,24.014527,0
              -105.947414,24.014231,0
              -105.947535,24.013915,0
              -105.947717,24.013278,0
              -105.947813,24.012751,0
              -105.94787,24.012345,0
              -105.948062,24.01201,0
              -105.948396,24.011817,0
              -105.948713,24.011775,0
              -105.949028,24.011859,0
              -105.949414,24.012003,0
              -105.949676,24.012415,0
              -105.94975,24.013019,0
              -105.949645,24.013403,0
              -105.949668,24.013808,0
              -105.949751,24.01414,0
              -105.949994,24.01447,0
              -105.950096,24.014672,0
              -105.950258,24.014819,0
              -105.950487,24.014884,0
              -105.950696,24.014885,0
              -105.950878,24.014899,0
              -105.951016,24.01495,0
              -105.951134,24.01502,0
              -105.951399,24.015138,0
              -105.951684,24.015329,0
              -105.952116,24.015482,0
              -105.952528,24.015618,0
              -105.952785,24.015675,0
              -105.953318,24.015849,0
              -105.953616,24.015957,0
              -105.954081,24.015935,0
              -105.954355,24.015916,0
              -105.954606,24.015876,0
              -105.954962,24.01583,0
              -105.955408,24.015764,0
              -105.955783,24.015646,0
              -105.956018,24.015604,0
              -105.956343,24.01562,0
              -105.956771,24.015757,0
              -105.957088,24.015835,0
              -105.95727,24.016036,0
              -105.957394,24.01612,0
              -105.957569,24.016362,0
              -105.957706,24.016591,0
              -105.957852,24.016884,0
              -105.957963,24.017304,0
              -105.958184,24.017395,0
              -105.958308,24.01753,0
              -105.958649,24.017631,0
              -105.958967,24.017678,0
              -105.959547,24.017471,0
              -105.959811,24.017403,0
              -105.960161,24.017642,0
              -105.960371,24.017884,0
              -105.960478,24.018229,0
              -105.960551,24.018485,0
              -105.960818,24.020264,0
              -105.960954,24.020985,0
              -105.960971,24.021923,0
              -105.960687,24.022249,0
              -105.960312,24.022447,0
              -105.959937,24.022542,0
              -105.959754,24.022649,0
              -105.959551,24.022843,0
              -105.959372,24.023002,0
              -105.959493,24.023418,0
              -105.959812,24.023835,0
              -105.96028,24.02435,0
              -105.960716,24.024935,0
              -105.961791,24.025853,0
              -105.96219,24.026213,0
              -105.962564,24.026466,0
              -105.962872,24.026663,0
              -105.96323,24.026757,0
              -105.963461,24.026734,0
              -105.963688,24.026725,0
              -105.963958,24.026673,0
              -105.964401,24.026641,0
              -105.964581,24.026671,0
              -105.964804,24.026741,0
              -105.964976,24.02677,0
              -105.965254,24.026952,0
              -105.965413,24.027069,0
              -105.965476,24.027419,0
              -105.965559,24.027676,0
              -105.965601,24.027953,0
              -105.965602,24.028174,0
              -105.965736,24.028808,0
              -105.96588,24.029231,0
              -105.966043,24.029562,0
              -105.966145,24.029856,0
              -105.966228,24.030151,0
              -105.966271,24.030501,0
              -105.966234,24.030925,0
              -105.966256,24.031257,0
              -105.966399,24.031532,0
              -105.966513,24.031704,0
              -105.966553,24.031836,0
              -105.966737,24.031919,0
              -105.966948,24.03205,0
              -105.96715,24.032187,0
              -105.967364,24.032203,0
              -105.96758,24.03218,0
              -105.967707,24.032033,0
              -105.967903,24.031911,0
              -105.968153,24.031843,0
              -105.968495,24.031793,0
              -105.968899,24.03179,0
              -105.969657,24.031967,0
              -105.970023,24.031968,0
              -105.970426,24.031964,0
              -105.970906,24.032051,0
              -105.971313,24.032288,0
              -105.97162,24.03242,0
              -105.972004,24.032569,0
              -105.972389,24.032604,0
              -105.972727,24.03265,0
              -105.973043,24.032738,0
              -105.973228,24.033092,0
              -105.973251,24.033438,0
              -105.97325,24.033914,0
              -105.973404,24.034427,0
              -105.973709,24.034673,0
              -105.974296,24.035084,0
              -105.975036,24.03566,0
              -105.976113,24.036756,0
              -105.976597,24.037408,0
              -105.976565,24.037987,0
              -105.976762,24.038338,0
              -105.97708,24.038615,0
              -105.978,24.038977,0
              -105.978531,24.039558,0
              -105.978446,24.040178,0
              -105.97864,24.040973,0
              -105.97892,24.041287,0
              -105.979026,24.04158,0
              -105.979236,24.041818,0
              -105.979506,24.041962,0
              -105.979816,24.042037,0
              -105.980072,24.041996,0
              -105.980373,24.04193,0
              -105.980604,24.041822,0
              -105.980898,24.041717,0
              -105.981577,24.041675,0
              -105.981856,24.041561,0
              -105.982057,24.041351,0
              -105.982326,24.040776,0
              -105.982421,24.03986,0
              -105.982769,24.039368,0
              -105.983239,24.038882,0
              -105.984267,24.038678,0
              -105.985771,24.038896,0
              -105.98707,24.03961,0
              -105.987601,24.040353,0
              -105.988058,24.040863,0
              -105.98833,24.041358,0
              -105.988782,24.041875,0
              -105.989031,24.042,0
              -105.989226,24.042051,0
              -105.989484,24.042015,0
              -105.989923,24.041885,0
              -105.990468,24.041346,0
              -105.991174,24.04112,0
              -105.991853,24.041449,0
              -105.992613,24.042209,0
              -105.992854,24.04269,0
              -105.993397,24.044265,0
              -105.994102,24.044581,0
              -105.994531,24.0447,0
              -105.994932,24.044783,0
              -105.995318,24.044618,0
              -105.995362,24.043837,0
              -105.995975,24.043332,0
              -105.996602,24.042889,0
              -105.997881,24.04252,0
              -105.99872,24.043383,0
              -105.998891,24.044293,0
              -105.999253,24.044955,0
              -105.999798,24.045863,0
              -106.000074,24.046523,0
              -106.00002,24.046846,0
              -105.999819,24.047221,0
              -105.999396,24.047611,0
              -105.999208,24.048074,0
              -105.999351,24.048586,0
              -105.999537,24.049124,0
              -105.999537,24.049484,0
              -105.999501,24.049709,0
              -105.999286,24.04991,0
              -105.999067,24.050071,0
              -105.998851,24.05032,0
              -105.998688,24.050538,0
              -105.998499,24.050976,0
              -105.998425,24.051328,0
              -105.998428,24.051805,0
              -105.998395,24.052089,0
              -105.998259,24.052511,0
              -105.998119,24.052797,0
              -105.997606,24.053139,0
              -105.997371,24.053355,0
              -105.997165,24.053515,0
              -105.996927,24.053792,0
              -105.996717,24.054222,0
              -105.996989,24.05463,0
              -105.997828,24.054503,0
              -105.998469,24.05442,0
              -105.999173,24.054391,0
              -105.999864,24.055066,0
              -105.999926,24.055712,0
              -106.000156,24.056687,0
              -106.000102,24.057394,0
              -106.000233,24.058083,0
              -106.000568,24.058023,0
              -106.000975,24.058122,0
              -106.00135,24.058181,0
              -106.001733,24.058551,0
              -106.00211,24.058932,0
              -106.002487,24.059464,0
              -106.002312,24.059664,0
              -106.002187,24.059765,0
              -106.00187,24.059831,0
              -106.001451,24.060037,0
              -106.001321,24.060324,0
              -106.000948,24.061713,0
              -106.001182,24.063093,0
              -106.001306,24.063334,0
              -106.00144,24.063535,0
              -106.001597,24.06384,0
              -106.00204,24.064463,0
              -106.002415,24.064935,0
              -106.002908,24.065782,0
              -106.002948,24.066061,0
              -106.003203,24.066164,0
              -106.003662,24.066252,0
              -106.004094,24.066263,0
              -106.004443,24.066309,0
              -106.0047,24.06637,0
              -106.004999,24.066421,0
              -106.005745,24.066758,0
              -106.006414,24.067052,0
              -106.006608,24.067186,0
              -106.006888,24.067693,0
              -106.007138,24.068641,0
              -106.007508,24.070216,0
              -106.007908,24.071757,0
              -106.007883,24.072507,0
              -106.007602,24.073108,0
              -106.007236,24.073293,0
              -106.00668,24.073549,0
              -106.005762,24.073716,0
              -106.00514,24.073776,0
              -106.004637,24.074651,0
              -106.0041,24.075918,0
              -106.00364,24.076172,0
              -106.003064,24.076132,0
              -106.00245,24.075748,0
              -106.001758,24.075591,0
              -106.001001,24.075561,0
              -106.000709,24.076056,0
              -106.000782,24.076582,0
              -106.00078,24.077243,0
              -106.000655,24.077742,0
              -106.000542,24.07831,0
              -106.000711,24.078719,0
              -106.001545,24.079303,0
              -106.001678,24.079799,0
              -106.001679,24.08019,0
              -106.001587,24.080692,0
              -106.001473,24.081135,0
              -106.001159,24.081339,0
              -106.001571,24.081896,0
              -106.001812,24.082124,0
              -106.002294,24.082497,0
              -106.002636,24.082791,0
              -106.0027,24.083167,0
              -106.002537,24.083495,0
              -106.002323,24.083844,0
              -106.001963,24.08408,0
              -106.001474,24.084661,0
              -106.001108,24.085273,0
              -106.0008,24.086005,0
              -106.000598,24.086391,0
              -106.000901,24.086808,0
              -106.000983,24.087015,0
              -106.001162,24.087118,0
              -106.00152,24.087398,0
              -106.001992,24.087721,0
              -106.002069,24.088087,0
              -106.001972,24.088364,0
              -106.001762,24.088583,0
              -106.001415,24.088784,0
              -106.00078,24.088849,0
              -106.000304,24.088957,0
              -105.9999,24.089527,0
              -105.999683,24.089767,0
              -105.999416,24.09011,0
              -105.998682,24.09014,0
              -105.998344,24.090012,0
              -105.997782,24.089758,0
              -105.997085,24.08957,0
              -105.99632,24.08936,0
              -105.995698,24.09026,0
              -105.995513,24.090917,0
              -105.995299,24.091235,0
              -105.99481,24.091446,0
              -105.994463,24.091832,0
              -105.99438,24.09198,0
              -105.994365,24.092281,0
              -105.994268,24.092771,0
              -105.994007,24.093567,0
              -105.994211,24.094015,0
              -105.994539,24.094334,0
              -105.994969,24.094788,0
              -105.995088,24.095022,0
              -105.995061,24.095233,0
              -105.994962,24.09564,0
              -105.995009,24.096089,0
              -105.995291,24.09654,0
              -105.995587,24.097206,0
              -105.995738,24.097892,0
              -105.995628,24.098294,0
              -105.995403,24.098518,0
              -105.994903,24.09861,0
              -105.994127,24.098734,0
              -105.993643,24.09896,0
              -105.993467,24.099169,0
              -105.993486,24.099466,0
              -105.993724,24.099754,0
              -105.993878,24.100027,0
              -105.993833,24.100413,0
              -105.993554,24.100834,0
              -105.993203,24.101225,0
              -105.992557,24.101407,0
              -105.991637,24.101577,0
              -105.990634,24.101687,0
              -105.989732,24.102019,0
              -105.989441,24.102358,0
              -105.989697,24.102704,0
              -105.990122,24.102701,0
              -105.990338,24.103084,0
              -105.990362,24.103337,0
              -105.990406,24.103896,0
              -105.99062,24.10426,0
              -105.991069,24.10532,0
              -105.991078,24.105644,0
              -105.99104,24.105848,0
              -105.990666,24.106045,0
              -105.990358,24.106447,0
              -105.990136,24.106988,0
              -105.989761,24.107469,0
              -105.989077,24.107998,0
              -105.989194,24.108444,0
              -105.989293,24.10873,0
              -105.989668,24.109188,0
              -105.989848,24.10938,0
              -105.989721,24.10968,0
              -105.989516,24.109931,0
              -105.98934,24.110228,0
              -105.989519,24.110933,0
              -105.989483,24.112536,0
              -105.989575,24.113931,0
              -105.989724,24.11439,0
              -105.990261,24.114773,0
              -105.990855,24.115014,0
              -105.991931,24.11484,0
              -105.993341,24.114501,0
              -105.994089,24.114582,0
              -105.994881,24.11479,0
              -105.995687,24.114541,0
              -105.99665,24.114456,0
              -105.99702,24.114634,0
              -105.997459,24.114861,0
              -105.997814,24.115247,0
              -105.998042,24.115453,0
              -105.998275,24.115623,0
              -105.99843,24.11564,0
              -105.998716,24.115759,0
              -105.998816,24.115777,0
              -105.998929,24.115855,0
              -105.999228,24.11601,0
              -105.999374,24.116113,0
              -105.999585,24.11623,0
              -105.999716,24.116348,0
              -105.99983,24.116496,0
              -105.999896,24.116718,0
              -105.999947,24.116985,0
              -105.999949,24.117281,0
              -105.999898,24.117621,0
              -105.999836,24.118333,0
              -106.000132,24.118417,0
              -106.000391,24.118526,0
              -106.000918,24.118556,0
              -106.001235,24.11852,0
              -106.001395,24.118688,0
              -106.001597,24.118786,0
              -106.001824,24.118883,0
              -106.001869,24.119286,0
              -106.001968,24.119522,0
              -106.00213,24.119655,0
              -106.00228,24.119805,0
              -106.002755,24.120084,0
              -106.003305,24.120294,0
              -106.003585,24.120324,0
              -106.003949,24.12041,0
              -106.004046,24.120533,0
              -106.004146,24.120814,0
              -106.004148,24.121111,0
              -106.004119,24.121497,0
              -106.003959,24.121825,0
              -106.003735,24.122049,0
              -106.003477,24.122229,0
              -106.003333,24.122467,0
              -106.003271,24.122779,0
              -106.00304,24.123051,0
              -106.002931,24.123484,0
              -106.002965,24.123869,0
              -106.003098,24.124189,0
              -106.003309,24.124563,0
              -106.003462,24.124818,0
              -106.003508,24.125083,0
              -106.003673,24.125272,0
              -106.003568,24.125559,0
              -106.00331,24.125769,0
              -106.00274,24.126089,0
              -106.002477,24.126138,0
              -106.002189,24.12621,0
              -106.002085,24.126326,0
              -106.002004,24.12663,0
              -106.00188,24.126859,0
              -106.001787,24.127086,0
              -106.001557,24.127146,0
              -106.001414,24.127369,0
              -106.00135,24.127548,0
              -106.001254,24.127944,0
              -106.00124,24.128315,0
              -106.001291,24.128641,0
              -106.001662,24.128955,0
              -106.002044,24.129243,0
              -106.002643,24.129319,0
              -106.003027,24.129471,0
              -106.003413,24.129433,0
              -106.003549,24.129451,0
              -106.003798,24.129578,0
              -106.004034,24.129783,0
              -106.004198,24.129958,0
              -106.004201,24.130359,0
              -106.004107,24.130716,0
              -106.003915,24.130969,0
              -106.003706,24.131208,0
              -106.003579,24.131521,0
              -106.003695,24.131787,0
              -106.003955,24.131993,0
              -106.0042,24.132273,0
              -106.004218,24.132496,0
              -106.00406,24.132874,0
              -106.003835,24.133069,0
              -106.003758,24.133529,0
              -106.003593,24.13417,0
              -106.003497,24.134555,0
              -106.003429,24.134897,0
              -106.003301,24.13518,0
              -106.003368,24.135446,0
              -106.003518,24.135733,0
              -106.003806,24.135881,0
              -106.004039,24.135987,0
              -106.00409,24.136298,0
              -106.004045,24.136744,0
              -106.004017,24.137234,0
              -106.003988,24.137664,0
              -106.003747,24.137904,0
              -106.003424,24.13798,0
              -106.003239,24.138164,0
              -106.002903,24.138229,0
              -106.00252,24.138239,0
              -106.002308,24.138336,0
              -106.002198,24.138487,0
              -106.002077,24.13856,0
              -106.001989,24.138687,0
              -106.002007,24.138939,0
              -106.002202,24.139086,0
              -106.002446,24.139144,0
              -106.002721,24.139231,0
              -106.00287,24.139386,0
              -106.003143,24.139555,0
              -106.003765,24.139799,0
              -106.003971,24.140026,0
              -106.003965,24.140179,0
              -106.003927,24.140336,0
              -106.003471,24.140507,0
              -106.003281,24.140589,0
              -106.003115,24.140685,0
              -106.002993,24.140803,0
              -106.003012,24.141436,0
              -106.003115,24.142251,0
              -106.003072,24.142949,0
              -106.003061,24.143528,0
              -106.003241,24.143883,0
              -106.003778,24.144236,0
              -106.004198,24.14447,0
              -106.004318,24.144896,0
              -106.003915,24.145125,0
              -106.003561,24.14541,0
              -106.003272,24.145679,0
              -106.003112,24.145902,0
              -106.003098,24.146208,0
              -106.003198,24.146563,0
              -106.003211,24.146841,0
              -106.0036,24.147028,0
              -106.003928,24.147217,0
              -106.004284,24.147313,0
              -106.004608,24.147354,0
              -106.00487,24.147309,0
              -106.005082,24.147426,0
              -106.005195,24.1475,0
              -106.005391,24.147677,0
              -106.00557,24.147779,0
              -106.005733,24.147912,0
              -106.005911,24.147985,0
              -106.00619,24.148414,0
              -106.006531,24.148705,0
              -106.006654,24.149108,0
              -106.006489,24.149638,0
              -106.006319,24.150003,0
              -106.006074,24.150151,0
              -106.006066,24.150532,0
              -106.006166,24.150932,0
              -106.006315,24.151257,0
              -106.006592,24.151508,0
              -106.006933,24.151669,0
              -106.007193,24.151801,0
              -106.007357,24.152082,0
              -106.00744,24.152423,0
              -106.007493,24.152897,0
              -106.007464,24.153432,0
              -106.007467,24.153773,0
              -106.007733,24.153916,0
              -106.008107,24.154195,0
              -106.008449,24.15449,0
              -106.00863,24.154815,0
              -106.008762,24.155185,0
              -106.009071,24.155272,0
              -106.009411,24.155389,0
              -106.009672,24.155565,0
              -106.009722,24.155758,0
              -106.009758,24.156277,0
              -106.009824,24.156455,0
              -106.009955,24.156632,0
              -106.010295,24.156689,0
              -106.010571,24.156687,0
              -106.010814,24.156715,0
              -106.010976,24.156848,0
              -106.01093,24.157071,0
              -106.010834,24.157279,0
              -106.010724,24.157636,0
              -106.01066,24.157814,0
              -106.010598,24.158052,0
              -106.010631,24.15823,0
              -106.010778,24.158363,0
              -106.010815,24.158618,0
              -106.010922,24.158818,0
              -106.011261,24.159058,0
              -106.011348,24.159268,0
              -106.011377,24.159545,0
              -106.011621,24.159954,0
              -106.011629,24.160212,0
              -106.011716,24.16044,0
              -106.011843,24.160626,0
              -106.012032,24.16087,0
              -106.012053,24.161238,0
              -106.012384,24.161507,0
              -106.012737,24.161535,0
              -106.012947,24.161491,0
              -106.01319,24.161505,0
              -106.013497,24.161458,0
              -106.01403,24.161395,0
              -106.014135,24.161439,0
              -106.014717,24.161916,0
              -106.015512,24.162852,0
              -106.015581,24.163092,0
              -106.015712,24.163284,0
              -106.015924,24.163475,0
              -106.016136,24.163637,0
              -106.016396,24.163799,0
              -106.016769,24.163915,0
              -106.017102,24.164153,0
              -106.017478,24.164245,0
              -106.01783,24.164226,0
              -106.018067,24.164277,0
              -106.018198,24.164455,0
              -106.018232,24.164722,0
              -106.018154,24.165063,0
              -106.018125,24.165494,0
              -106.018111,24.165791,0
              -106.018275,24.165983,0
              -106.018584,24.166218,0
              -106.01877,24.166643,0
              -106.018823,24.167207,0
              -106.019005,24.167651,0
              -106.0193,24.168154,0
              -106.019645,24.168775,0
              -106.019926,24.1695,0
              -106.020503,24.170847,0
              -106.020766,24.171365,0
              -106.020915,24.171735,0
              -106.021002,24.172054,0
              -106.021021,24.172425,0
              -106.021008,24.172841,0
              -106.021075,24.173182,0
              -106.021303,24.173373,0
              -106.021644,24.173415,0
              -106.022227,24.173501,0
              -106.022438,24.173588,0
              -106.022649,24.173691,0
              -106.022861,24.173867,0
              -106.02309,24.174103,0
              -106.023222,24.174429,0
              -106.023403,24.174843,0
              -106.02352,24.175288,0
              -106.023539,24.175644,0
              -106.023542,24.175985,0
              -106.023742,24.176007,0
              -106.02405,24.176005,0
              -106.024373,24.175943,0
              -106.024713,24.175896,0
              -106.024891,24.175969,0
              -106.024925,24.176132,0
              -106.024894,24.176311,0
              -106.02488,24.176563,0
              -106.024898,24.176845,0
              -106.024986,24.177099,0
              -106.0253,24.177164,0
              -106.025424,24.177253,0
              -106.025488,24.177381,0
              -106.025633,24.177516,0
              -106.02595,24.177655,0
              -106.026037,24.177865,0
              -106.026106,24.178083,0
              -106.026157,24.178395,0
              -106.026338,24.178735,0
              -106.026422,24.179135,0
              -106.026425,24.179536,0
              -106.026621,24.179727,0
              -106.026913,24.179785,0
              -106.027157,24.179881,0
              -106.027551,24.179926,0
              -106.027754,24.179986,0
              -106.028055,24.17995,0
              -106.028208,24.17988,0
              -106.028372,24.180072,0
              -106.028557,24.180332,0
              -106.028641,24.180688,0
              -106.028579,24.181045,0
              -106.028356,24.181417,0
              -106.028099,24.181671,0
              -106.027988,24.182013,0
              -106.02791,24.182355,0
              -106.027669,24.182639,0
              -106.027526,24.182907,0
              -106.027609,24.183218,0
              -106.027806,24.183528,0
              -106.02797,24.183824,0
              -106.028103,24.184209,0
              -106.028025,24.18467,0
              -106.027834,24.184983,0
              -106.027398,24.185486,0
              -106.027077,24.18574,0
              -106.026852,24.185935,0
              -106.026789,24.186187,0
              -106.026808,24.186529,0
              -106.02702,24.186779,0
              -106.027265,24.186986,0
              -106.027622,24.187087,0
              -106.028238,24.187276,0
              -106.028887,24.187405,0
              -106.029326,24.187595,0
              -106.029976,24.187991,0
              -106.030676,24.188447,0
              -106.031393,24.189021,0
              -106.032243,24.190084,0
              -106.032515,24.190596,0
              -106.032859,24.191054,0
              -106.033314,24.191318,0
              -106.033688,24.191479,0
              -106.033982,24.191892,0
              -106.033987,24.192486,0
              -106.033976,24.19305,0
              -106.033966,24.193852,0
              -106.033904,24.194253,0
              -106.034037,24.194593,0
              -106.034364,24.195036,0
              -106.034511,24.195213,0
              -106.034695,24.195503,0
              -106.034811,24.195829,0
              -106.034783,24.196304,0
              -106.034721,24.196705,0
              -106.034822,24.19712,0
              -106.035196,24.197355,0
              -106.035683,24.197545,0
              -106.035992,24.197765,0
              -106.036206,24.198179,0
              -106.036145,24.19861,0
              -106.035889,24.199027,0
              -106.035568,24.199371,0
              -106.035328,24.199744,0
              -106.035249,24.200098,0
              -106.035253,24.200588,0
              -106.035436,24.201091,0
              -106.035698,24.201564,0
              -106.036027,24.2022,0
              -106.036339,24.202718,0
              -106.03636,24.203267,0
              -106.036382,24.204023,0
              -106.036791,24.204525,0
              -106.037134,24.204864,0
              -106.037592,24.20547,0
              -106.037838,24.205884,0
              -106.038197,24.206178,0
              -106.038461,24.206286,0
              -106.038852,24.206492,0
              -106.03965,24.207109,0
              -106.04017,24.207314,0
              -106.040559,24.2074,0
              -106.040884,24.207576,0
              -106.041374,24.208092,0
              -106.042596,24.209785,0
              -106.044,24.211587,0
              -106.04416,24.211705,0
              -106.044359,24.212223,0
              -106.04463,24.213492,0
              -106.044207,24.215408,0
              -106.044317,24.21621,0
              -106.044093,24.217132,0
              -106.043775,24.21809,0
              -106.044194,24.218804,0
              -106.04431,24.219798,0
              -106.043884,24.22085,0
              -106.067982,24.22025,0
              -106.069948,24.220201,0
              -106.071296,24.249573,0
              -106.072015,24.253892,0
              -106.072022,24.254127,0
              -106.072168,24.254435,0
              -106.072176,24.254715,0
              -106.07206,24.254998,0
              -106.072167,24.25549,0
              -106.072254,24.255737,0
              -106.072067,24.256271,0
              -106.072244,24.256495,0
              -106.072275,24.256764,0
              -106.072452,24.256999,0
              -106.072704,24.257459,0
              -106.07281,24.257945,0
              -106.072775,24.258638,0
              -106.072657,24.258859,0
              -106.072667,24.259171,0
              -106.072694,24.259668,0
              -106.072781,24.259936,0
              -106.073003,24.260138,0
              -106.07302,24.260324,0
              -106.073008,24.260647,0
              -106.072867,24.260879,0
              -106.073019,24.26101,0
              -106.073149,24.261183,0
              -106.073312,24.261324,0
              -106.073384,24.261468,0
              -106.073583,24.26166,0
              -106.073717,24.261957,0
              -106.073744,24.262441,0
              -106.073794,24.262606,0
              -106.073803,24.262886,0
              -106.073768,24.263209,0
              -106.073662,24.263471,0
              -106.073675,24.263513,0
              -106.073694,24.263772,0
              -106.073787,24.263821,0
              -106.073796,24.264132,0
              -106.07377,24.264372,0
              -106.07409,24.264447,0
              -106.074189,24.264725,0
              -106.074359,24.26472,0
              -106.074379,24.26501,0
              -106.074387,24.26528,0
              -106.074242,24.265686,0
              -106.074413,24.266086,0
              -106.074673,24.266422,0
              -106.074789,24.266897,0
              -106.07483,24.267114,0
              -106.074658,24.267409,0
              -106.074555,24.267744,0
              -106.074471,24.268338,0
              -106.074572,24.268653,0
              -106.074639,24.268983,0
              -106.07454,24.269422,0
              -106.074819,24.269664,0
              -106.075107,24.269812,0
              -106.075427,24.269897,0
              -106.075627,24.270131,0
              -106.075637,24.270442,0
              -106.075479,24.270841,0
              -106.075843,24.271389,0
              -106.076323,24.27182,0
              -106.076791,24.272153,0
              -106.077154,24.272563,0
              -106.07754,24.272594,0
              -106.078002,24.272713,0
              -106.078548,24.27297,0
              -106.079123,24.272852,0
              -106.079748,24.273066,0
              -106.080261,24.27311,0
              -106.080845,24.273136,0
              -106.081318,24.273353,0
              -106.081558,24.273569,0
              -106.081696,24.273656,0
              -106.081854,24.273849,0
              -106.082023,24.274083,0
              -106.082276,24.274367,0
              -106.082436,24.274601,0
              -106.082507,24.274862,0
              -106.082766,24.27511,0
              -106.082845,24.275363,0
              -106.083051,24.27562,0
              -106.08335,24.275736,0
              -106.083618,24.275704,0
              -106.08393,24.275614,0
              -106.084334,24.275636,0
              -106.084785,24.275891,0
              -106.085452,24.276555,0
              -106.085643,24.276928,0
              -106.085738,24.277378,0
              -106.086021,24.277543,0
              -106.086419,24.277647,0
              -106.086905,24.277692,0
              -106.087173,24.277956,0
              -106.08695,24.278297,0
              -106.087167,24.278644,0
              -106.087249,24.278946,0
              -106.087347,24.27924,0
              -106.087736,24.279616,0
              -106.08813,24.279885,0
              -106.088183,24.280138,0
              -106.088583,24.280576,0
              -106.089197,24.281554,0
              -106.089294,24.281798,0
              -106.089264,24.282291,0
              -106.089424,24.282842,0
              -106.089439,24.283302,0
              -106.089289,24.283692,0
              -106.089062,24.283903,0
              -106.088877,24.284409,0
              -106.08899,24.284468,0
              -106.08963,24.284847,0
              -106.089817,24.285362,0
              -106.090073,24.285577,0
              -106.090749,24.285822,0
              -106.090933,24.286104,0
              -106.091246,24.286502,0
              -106.091632,24.286933,0
              -106.092052,24.287113,0
              -106.09251,24.287374,0
              -106.118457,24.309597,0
              -106.15254,24.33877,0
              -106.169975,24.33365,0
              -106.173581,24.336327,0
              -106.176988,24.338857,0
              -106.194406,24.351785,0
              -106.268869,24.374755,0
              -106.327848,24.361063,0
              -106.333645,24.357262,0
              -106.335232,24.356404,0
              -106.33633,24.355695,0
              -106.344101,24.348806,0
              -106.346145,24.344934,0
              -106.347859,24.338271,0
              -106.348204,24.336926,0
              -106.351029,24.325941,0
              -106.351584,24.323778,0
              -106.352624,24.316468,0
              -106.356258,24.311441,0
              -106.359198,24.30747,0
              -106.363013,24.304173,0
              -106.367545,24.301941,0
              -106.374536,24.299818,0
              -106.383256,24.29793,0
              -106.40313,24.293095,0
              -106.409978,24.291114,0
              -106.42947,24.285074,0
              -106.432084,24.284626,0
              -106.437535,24.2839,0
              -106.447955,24.282081,0
              -106.450726,24.281654,0
              -106.457723,24.280574,0
              -106.46144,24.279851,0
              -106.465793,24.278873,0
              -106.469655,24.277857,0
              -106.508303,24.290872,0
              -106.509097,24.291139,0
              -106.517094,24.286984,0
              -106.527991,24.295124,0
              -106.533244,24.302673,0
              -106.534089,24.309548,0
              -106.585959,24.379,0
              -106.583466,24.39027,0
              -106.583667,24.390594,0
              -106.595288,24.409472,0
              -106.601588,24.414566,0
              -106.569276,24.437021,0
              -106.568458,24.438502,0
              -106.568685,24.442048,0
              -106.567632,24.442173,0
              -106.569267,24.446191,0
              -106.568754,24.449358,0
              -106.568405,24.451035,0
              -106.568322,24.453099,0
              -106.566751,24.453899,0
              -106.566446,24.455873,0
              -106.562838,24.458784,0
              -106.562428,24.461179,0
              -106.559947,24.467464,0
              -106.559453,24.469645,0
              -106.560016,24.472711,0
              -106.563561,24.473106,0
              -106.564097,24.473167,0
              -106.564831,24.473397,0
              -106.565695,24.474278,0
              -106.566351,24.474207,0
              -106.566612,24.474232,0
              -106.566842,24.474262,0
              -106.567023,24.474493,0
              -106.567093,24.474606,0
              -106.567078,24.474691,0
              -106.56703,24.474743,0
              -106.566967,24.474766,0
              -106.566792,24.474701,0
              -106.566704,24.474682,0
              -106.566683,24.474734,0
              -106.566714,24.475112,0
              -106.566789,24.475463,0
              -106.566912,24.475679,0
              -106.567113,24.475879,0
              -106.567199,24.475792,0
              -106.567342,24.47559,0
              -106.567473,24.475544,0
              -106.567603,24.475624,0
              -106.567801,24.475624,0
              -106.568129,24.47567,0
              -106.568306,24.475617,0
              -106.56869,24.475314,0
              -106.568869,24.475436,0
              -106.568972,24.475694,0
              -106.56899,24.47582,0
              -106.568938,24.476005,0
              -106.569132,24.476322,0
              -106.569532,24.476645,0
              -106.569811,24.476807,0
              -106.570024,24.476847,0
              -106.570203,24.476805,0
              -106.570401,24.476719,0
              -106.570599,24.476795,0
              -106.570814,24.476936,0
              -106.570844,24.477034,0
              -106.571134,24.477074,0
              -106.571295,24.477154,0
              -106.571473,24.477294,0
              -106.571699,24.477511,0
              -106.572014,24.477459,0
              -106.572316,24.477309,0
              -106.57265,24.477473,0
              -106.572871,24.47752,0
              -106.57317,24.477627,0
              -106.573209,24.477704,0
              -106.573249,24.477918,0
              -106.573314,24.47801,0
              -106.573534,24.478149,0
              -106.573775,24.478459,0
              -106.573959,24.478525,0
              -106.574083,24.478913,0
              -106.574287,24.478956,0
              -106.574563,24.479312,0
              -106.574625,24.479423,0
              -106.574753,24.479774,0
              -106.574758,24.479935,0
              -106.574874,24.480262,0
              -106.57499,24.480524,0
              -106.575096,24.480588,0
              -106.575451,24.480702,0
              -106.575508,24.480837,0
              -106.575614,24.481054,0
              -106.575742,24.481171,0
              -106.575927,24.481292,0
              -106.576187,24.481363,0
              -106.57627,24.481505,0
              -106.576272,24.481629,0
              -106.576171,24.481763,0
              -106.576196,24.481878,0
              -106.576273,24.48192,0
              -106.57658,24.481949,0
              -106.576956,24.481942,0
              -106.577496,24.481944,0
              -106.577864,24.482103,0
              -106.578174,24.482077,0
              -106.578477,24.482098,0
              -106.578662,24.482224,0
              -106.578668,24.482394,0
              -106.578815,24.482583,0
              -106.578895,24.482886,0
              -106.579035,24.483031,0
              -106.579152,24.483193,0
              -106.57916,24.483418,0
              -106.579099,24.484067,0
              -106.579312,24.484337,0
              -106.579594,24.484553,0
              -106.579736,24.484901,0
              -106.579844,24.485189,0
              -106.57984,24.48547,0
              -106.579983,24.485707,0
              -106.580154,24.48594,0
              -106.580201,24.486223,0
              -106.580177,24.486473,0
              -106.580084,24.486734,0
              -106.580014,24.486987,0
              -106.580065,24.487244,0
              -106.580255,24.487497,0
              -106.580567,24.487902,0
              -106.580928,24.488155,0
              -106.581213,24.48832,0
              -106.581507,24.488416,0
              -106.581913,24.488207,0
              -106.582143,24.488595,0
              -106.58278,24.489545,0
              -106.583358,24.489892,0
              -106.583396,24.490391,0
              -106.583759,24.49076,0
              -106.584849,24.490934,0
              -106.585751,24.49152,0
              -106.586097,24.491811,0
              -106.586214,24.492318,0
              -106.586609,24.492535,0
              -106.587124,24.49264,0
              -106.587591,24.492311,0
              -106.588403,24.492202,0
              -106.588987,24.491763,0
              -106.589923,24.491376,0
              -106.590448,24.491502,0
              -106.590758,24.491323,0
              -106.591222,24.491342,0
              -106.591574,24.491431,0
              -106.591796,24.491701,0
              -106.592049,24.491923,0
              -106.592144,24.492836,0
              -106.592383,24.493051,0
              -106.592621,24.493415,0
              -106.592813,24.493524,0
              -106.593355,24.493728,0
              -106.593295,24.49461,0
              -106.593653,24.495059,0
              -106.594039,24.494237,0
              -106.594416,24.494223,0
              -106.594887,24.494152,0
              -106.595359,24.493886,0
              -106.595873,24.493826,0
              -106.595901,24.493598,0
              -106.596089,24.493216,0
              -106.596143,24.493096,0
              -106.596174,24.492949,0
              -106.596045,24.492567,0
              -106.596175,24.492397,0
              -106.596387,24.492405,0
              -106.596599,24.492505,0
              -106.59673,24.49255,0
              -106.596889,24.492539,0
              -106.596989,24.49256,0
              -106.597086,24.4926,0
              -106.597172,24.492488,0
              -106.597182,24.4924,0
              -106.597125,24.492302,0
              -106.597053,24.492126,0
              -106.597004,24.492042,0
              -106.596989,24.491916,0
              -106.597228,24.491726,0
              -106.597117,24.491581,0
              -106.597067,24.491369,0
              -106.597171,24.491121,0
              -106.59737,24.490925,0
              -106.597772,24.490989,0
              -106.598434,24.491011,0
              -106.598624,24.491039,0
              -106.59883,24.491081,0
              -106.598963,24.491098,0
              -106.599092,24.490995,0
              -106.599141,24.490878,0
              -106.599163,24.490735,0
              -106.5991,24.490652,0
              -106.599049,24.490511,0
              -106.598903,24.490427,0
              -106.598804,24.490327,0
              -106.598786,24.490121,0
              -106.598703,24.490006,0
              -106.598698,24.48987,0
              -106.59871,24.489671,0
              -106.598802,24.489435,0
              -106.598855,24.489213,0
              -106.598962,24.489001,0
              -106.599029,24.488718,0
              -106.598681,24.488287,0
              -106.598698,24.488027,0
              -106.598883,24.487888,0
              -106.598888,24.487701,0
              -106.598567,24.487391,0
              -106.598456,24.487118,0
              -106.598766,24.48691,0
              -106.598819,24.486595,0
              -106.599044,24.486506,0
              -106.599263,24.48668,0
              -106.599454,24.486808,0
              -106.599753,24.48683,0
              -106.599856,24.486786,0
              -106.599967,24.486765,0
              -106.600066,24.486711,0
              -106.600115,24.486614,0
              -106.600078,24.48651,0
              -106.59997,24.486409,0
              -106.599644,24.486057,0
              -106.599591,24.485943,0
              -106.599517,24.485742,0
              -106.599561,24.485505,0
              -106.599716,24.485337,0
              -106.599657,24.485168,0
              -106.59949,24.485078,0
              -106.599356,24.484979,0
              -106.599336,24.484842,0
              -106.599378,24.48465,0
              -106.599544,24.484597,0
              -106.599607,24.484479,0
              -106.599672,24.484293,0
              -106.599786,24.484019,0
              -106.599795,24.483862,0
              -106.599972,24.483812,0
              -106.60016,24.483735,0
              -106.600222,24.48358,0
              -106.600271,24.483391,0
              -106.600362,24.483211,0
              -106.609995,24.497851,0
              -106.622318,24.49984,0
              -106.624775,24.500236,0
              -106.625458,24.501016,0
              -106.627363,24.503228,0
              -106.630067,24.506503,0
              -106.622607,24.524897,0
              -106.62286,24.525062,0
              -106.626034,24.527141,0
              -106.632238,24.52999,0
              -106.637782,24.530312,0
              -106.641433,24.529794,0
              -106.645461,24.528979,0
              -106.659744,24.554749,0
              -106.662822,24.5603,0
              -106.666609,24.567131,0
              -106.668652,24.571673,0
              -106.683609,24.59853,0
              -106.684173,24.601149,0
              -106.68905,24.623754,0
              -106.699146,24.648555,0
              -106.705948,24.665262,0
              -106.707212,24.666557,0
              -106.711493,24.670305,0
              -106.715125,24.672082,0
              -106.719264,24.676239,0
              -106.76421,24.721347,0
              -107.802185,24.489577,0
              -107.802032,24.489469,0
              -107.801633,24.489331,0
              -107.801452,24.489211,0
              -107.801276,24.489117,0
              -107.801163,24.488969,0
              -107.800726,24.488568,0
              -107.800085,24.487999,0
              -107.799242,24.487452,0
              -107.795695,24.485473,0
              -107.787046,24.482486,0
              -107.779766,24.479842,0
              -107.777972,24.479373,0
              -107.776519,24.478828,0
              -107.774987,24.478373,0
              -107.772051,24.477122,0
              -107.76967,24.476091,0
              -107.766225,24.474729,0
              -107.764286,24.47384,0
              -107.760045,24.471892,0
              -107.755037,24.46949,0
              -107.753313,24.468626,0
              -107.751245,24.467558,0
              -107.747112,24.465532,0
              -107.744678,24.464153,0
              -107.7425,24.462939,0
              -107.737749,24.460358,0
              -107.732658,24.457421,0
              -107.727166,24.454492,0
              -107.71717,24.448425,0
              -107.712593,24.445947,0
              -107.706718,24.442297,0
              -107.702962,24.440066,0
              -107.693593,24.434276,0
              -107.69053,24.432427,0
              -107.688271,24.431042,0
              -107.684497,24.428768,0
              -107.679563,24.425749,0
              -107.677749,24.424535,0
              -107.675387,24.423151,0
              -107.668363,24.418712,0
              -107.665402,24.416863,0
              -107.661967,24.414832,0
              -107.65501,24.410483,0
              -107.64945,24.406996,0
              -107.647277,24.40556,0
              -107.645773,24.404572,0
              -107.644861,24.404058,0
              -107.619093,24.387588,0
              -107.613079,24.383672,0
              -107.604147,24.377824,0
              -107.586547,24.366296,0
              -107.575106,24.358655,0
              -107.5557,24.3458,0
              -107.542324,24.337401,0
              -107.5259,24.3264,0
              -107.5134,24.3182,0
              -107.4961,24.3064,0
              -107.4878,24.3007,0
              -107.480202,24.295123,0
              -107.47501,24.2922,0
              -107.473235,24.290624,0
              -107.471679,24.289466,0
              -107.471169,24.288954,0
              -107.470855,24.288686,0
              -107.470709,24.288294,0
              -107.470554,24.288062,0
              -107.469916,24.287603,0
              -107.469111,24.286934,0
              -107.468496,24.286531,0
              -107.4675,24.2858,0
              -107.4593,24.2795,0
              -107.4401,24.26558,0
              -107.431156,24.258448,0
              -107.423037,24.251694,0
              -107.41934,24.248415,0
              -107.418022,24.246852,0
              -107.416702,24.245671,0
              -107.415428,24.244985,0
              -107.414808,24.244939,0
              -107.414371,24.245128,0
              -107.411474,24.24229,0
              -107.410834,24.241662,0
              -107.411152,24.240966,0
              -107.411195,24.239941,0
              -107.41096,24.238372,0
              -107.41044,24.237015,0
              -107.409795,24.235986,0
              -107.407482,24.233561,0
              -107.395424,24.226107,0
              -107.385943,24.220948,0
              -107.351388,24.201357,0
              -107.330219,24.18919,0
              -107.318204,24.181607,0
              -107.317525,24.18111,0
              -107.310757,24.176716,0
              -107.303787,24.172633,0
              -107.295786,24.167397,0
              -107.288126,24.162432,0
              -107.275152,24.15375,0
              -107.271372,24.151181,0
              -107.243348,24.13275,0
              -107.235536,24.12788,0
              -107.233983,24.126911,0
              -107.230573,24.124785,0
              -107.219151,24.118067,0
              -107.212599,24.113864,0
              -107.207136,24.11036,0
              -107.203735,24.108475,0
              -107.20167,24.107425,0
              -107.200454,24.106914,0
              -107.199534,24.106849,0
              -107.193992,24.102,0
              -107.195039,24.099896,0
              -107.195402,24.09819,0
              -107.194801,24.096384,0
              -107.19259,24.094388,0
              -107.19003,24.091544,0
              -107.183759,24.087091,0
              -107.174998,24.081888,0
              -107.167675,24.076814,0
              -107.1469,24.0616,0
              -107.1384,24.055,0
              -107.119539,24.040121,0
              -107.116139,24.03736,0
              -107.1148,24.0363,0
              -107.1038,24.0276,0
              -107.095176,24.020794,0
              -107.083,24.0112,0
              -107.0771,24.0068,0
              -107.072,24.0023,0
              -107.0693,24.0004,0
              -107.0678,23.9991,0
              -107.0662,23.9978,0
              -107.061542,23.994057,0
              -107.0584,23.9917,0
              -107.0558,23.9897,0
              -107.0514,23.986,0
              -107.0487,23.9838,0
              -107.0415,23.9778,0
              -107.0387,23.9753,0
              -107.0356,23.9728,0
              -107.0285,23.9665,0
              -107.0257,23.964,0
              -107.0236,23.9626,0
              -107.0226,23.9616,0
              -107.0205,23.96,0
              -107.0189,23.9586,0
              -107.0164,23.9566,0
              -107.0151,23.9556,0
              -107.0116,23.9528,0
              -107.0097,23.951,0
              -107.0064,23.9482,0
              -107.0031,23.9451,0
              -107.0008,23.943,0
              -106.9991,23.9417,0
              -106.9969,23.9395,0
              -106.986,23.9295,0
              -106.9836,23.927,0
              -106.9748,23.9185,0
              -106.9702,23.9143,0
              -106.9624,23.9075,0
              -106.9596,23.9047,0
              -106.9563,23.9017,0
              -106.9483,23.8945,0
              -106.946,23.8922,0
              -106.9434,23.8897,0
              -106.9381,23.8845,0
              -106.933623,23.880335,0
              -106.93141,23.878249,0
              -106.928233,23.875303,0
              -106.924932,23.871898,0
              -106.9222,23.869,0
              -106.919371,23.86627,0
              -106.9172,23.8643,0
              -106.9034,23.8516,0
              -106.8933,23.8417,0
              -106.8909,23.8388,0
              -106.88964,23.836148,0
              -106.8884,23.8334,0
              -106.8874,23.83,0
              -106.8868,23.8266,0
              -106.885887,23.823453,0
              -106.885514,23.820825,0
              -106.885454,23.819772,0
              -106.885005,23.816058,0
              -106.885059,23.81192,0
              -106.883799,23.809467,0
              -106.883133,23.807656,0
              -106.882901,23.806672,0
              -106.882705,23.805602,0
              -106.882568,23.804889,0
              -106.882563,23.804354,0
              -106.882604,23.802954,0
              -106.88359,23.801906,0
              -106.883784,23.801009,0
              -106.883307,23.799956,0
              -106.882633,23.798809,0
              -106.882026,23.797429,0
              -106.881879,23.796651,0
              -106.882039,23.795773,0
              -106.881765,23.795285,0
              -106.880777,23.794558,0
              -106.878005,23.79199,0
              -106.875072,23.789373,0
              -106.873192,23.787681,0
              -106.871694,23.786099,0
              -106.867991,23.78187,0
              -106.8664,23.7796,0
              -106.8656,23.7787,0
              -106.864462,23.777331,0
              -106.862945,23.775447,0
              -106.8624,23.7748,0
              -106.8613,23.77375,0
              -106.860095,23.772174,0
              -106.859358,23.771141,0
              -106.85885,23.77045,0
              -106.858453,23.769902,0
              -106.857642,23.769053,0
              -106.856674,23.767975,0
              -106.85494,23.766283,0
              -106.853466,23.765018,0
              -106.851638,23.763165,0
              -106.8504,23.7618,0
              -106.849464,23.760853,0
              -106.847723,23.75926,0
              -106.84698,23.75831,0
              -106.845719,23.756545,0
              -106.844781,23.755267,0
              -106.844432,23.754461,0
              -106.844105,23.753954,0
              -106.843849,23.753028,0
              -106.843116,23.750882,0
              -106.84324,23.749634,0
              -106.843597,23.749063,0
              -106.843679,23.748466,0
              -106.843702,23.748092,0
              -106.843693,23.748002,0
              -106.843697,23.747769,0
              -106.84367,23.747515,0
              -106.843666,23.747251,0
              -106.843691,23.746895,0
              -106.843682,23.746416,0
              -106.843784,23.745967,0
              -106.84388,23.745601,0
              -106.844172,23.744082,0
              -106.8444,23.7426,0
              -106.8455,23.7418,0
              -106.8464,23.7412,0
              -106.846981,23.740599,0
              -106.847004,23.740091,0
              -106.846305,23.739562,0
              -106.845079,23.738716,0
              -106.843823,23.737585,0
              -106.841186,23.735471,0
              -106.8387,23.733,0
              -106.8351,23.73,0
              -106.8315,23.7267,0
              -106.827058,23.722472,0
              -106.822348,23.718077,0
              -106.818472,23.713635,0
              -106.815385,23.710135,0
              -106.813683,23.708003,0
              -106.812499,23.706342,0
              -106.811826,23.704918,0
              -106.810935,23.702394,0
              -106.80981,23.701144,0
              -106.809167,23.700008,0
              -106.807474,23.698734,0
              -106.803578,23.694846,0
              -106.801207,23.69162,0
              -106.799849,23.689324,0
              -106.798032,23.686418,0
              -106.796527,23.684113,0
              -106.795397,23.681884,0
              -106.794874,23.680537,0
              -106.794354,23.677867,0
              -106.795056,23.671705,0
              -106.795631,23.670022,0
              -106.796552,23.668187,0
              -106.79769,23.66664,0
              -106.79901,23.665962,0
              -106.800654,23.665743,0
              -106.801899,23.665945,0
              -106.802212,23.666296,0
              -106.802223,23.666959,0
              -106.802301,23.667309,0
              -106.802478,23.667579,0
              -106.802635,23.667919,0
              -106.802995,23.668178,0
              -106.804267,23.667586,0
              -106.804489,23.667137,0
              -106.803966,23.666124,0
              -106.803378,23.665419,0
              -106.803542,23.663142,0
              -106.804305,23.660429,0
              -106.805239,23.659465,0
              -106.807422,23.659678,0
              -106.810401,23.659087,0
              -106.8116,23.6581,0
              -106.8112,23.655094,0
              -106.809947,23.653633,0
              -106.810949,23.65279,0
              -106.8105,23.6525,0
              -106.810081,23.651722,0
              -106.80953,23.651824,0
              -106.808452,23.651962,0
              -106.808031,23.651732,0
              -106.80764,23.651311,0
              -106.808523,23.650358,0
              -106.807493,23.649328,0
              -106.806469,23.648001,0
              -106.804462,23.647204,0
              -106.804152,23.648109,0
              -106.803827,23.648411,0
              -106.8021,23.6482,0
              -106.7937,23.6432,0
              -106.790063,23.640461,0
              -106.788969,23.639352,0
              -106.789212,23.638261,0
              -106.789313,23.637919,0
              -106.789325,23.637569,0
              -106.789028,23.637233,0
              -106.788771,23.636979,0
              -106.788455,23.637175,0
              -106.78799,23.637218,0
              -106.7872,23.6371,0
              -106.787173,23.636462,0
              -106.786927,23.636281,0
              -106.786641,23.636134,0
              -106.786335,23.635891,0
              -106.78589,23.635695,0
              -106.785611,23.635903,0
              -106.785066,23.635355,0
              -106.784784,23.634699,0
              -106.785291,23.633556,0
              -106.784928,23.632553,0
              -106.784415,23.631641,0
              -106.78365,23.631498,0
              -106.783119,23.631898,0
              -106.7812,23.6312,0
              -106.7784,23.6293,0
              -106.7744,23.6264,0
              -106.771266,23.624017,0
              -106.768781,23.621456,0
              -106.768047,23.619948,0
              -106.766674,23.617512,0
              -106.765853,23.616035,0
              -106.764656,23.614033,0
              -106.764175,23.613224,0
              -106.763434,23.613069,0
              -106.761532,23.611909,0
              -106.758474,23.61099,0
              -106.7536,23.6091,0
              -106.749,23.6066,0
              -106.7337,23.5977,0
              -106.7301,23.5957,0
              -106.72985,23.59549,0
              -106.729159,23.595157,0
              -106.728768,23.594748,0
              -106.7283,23.5946,0
              -106.723,23.5909,0
              -106.7103,23.5818,0
              -106.7044,23.5776,0
              -106.6994,23.5735,0
              -106.6952,23.5694,0
              -106.6939,23.5678,0
              -106.6922,23.5649,0
              -106.691361,23.563727,0
              -106.69058,23.562012,0
              -106.690292,23.562037,0
              -106.689468,23.561663,0
              -106.688283,23.56077,0
              -106.68794,23.560457,0
              -106.686803,23.559195,0
              -106.686514,23.558859,0
              -106.6852,23.5568,0
              -106.6851,23.5568,0
              -106.6845,23.5552,0
              -106.683882,23.553535,0
              -106.684026,23.552128,0
              -106.684526,23.551375,0
              -106.6855,23.551115,0
              -106.6858,23.550638,0
              -106.685821,23.550212,0
              -106.68559,23.549847,0
              -106.685231,23.549562,0
              -106.684432,23.548542,0
              -106.6841,23.5468,0
              -106.684039,23.546422,0
              -106.683985,23.546141,0
              -106.683596,23.545925,0
              -106.6834,23.5458,0
              -106.6827,23.5451,0
              -106.682017,23.543893,0
              -106.682442,23.542237,0
              -106.68241,23.541532,0
              -106.68176,23.540591,0
              -106.679881,23.539615,0
              -106.678232,23.53899,0
              -106.677091,23.53889,0
              -106.676249,23.538344,0
              -106.675641,23.537966,0
              -106.674718,23.537259,0
              -106.6722,23.5354,0
              -106.6703,23.5332,0
              -106.669685,23.532265,0
              -106.668656,23.531468,0
              -106.6675,23.531,0
              -106.6652,23.5288,0
              -106.6595,23.5244,0
              -106.6558,23.5212,0
              -106.6541,23.5193,0
              -106.6533,23.5182,0
              -106.6523,23.5176,0
              -106.6512,23.5176,0
              -106.6496,23.5167,0
              -106.646,23.5142,0
              -106.641462,23.510375,0
              -106.63907,23.508189,0
              -106.6364,23.506,0
              -106.6343,23.5034,0
              -106.632119,23.501354,0
              -106.6303,23.499,0
              -106.627549,23.496921,0
              -106.626541,23.493922,0
              -106.626281,23.491957,0
              -106.6285,23.4913,0
              -106.6299,23.4899,0
              -106.6302,23.4882,0
              -106.6293,23.4865,0
              -106.6294,23.4853,0
              -106.6301,23.4837,0
              -106.629498,23.481635,0
              -106.6283,23.4799,0
              -106.6267,23.4781,0
              -106.626322,23.477702,0
              -106.625123,23.477729,0
              -106.624498,23.47798,0
              -106.6231,23.4777,0
              -106.6204,23.4753,0
              -106.6194,23.4744,0
              -106.618369,23.473508,0
              -106.6112,23.4673,0
              -106.608571,23.464606,0
              -106.60582,23.462592,0
              -106.6016,23.4589,0
              -106.597744,23.455281,0
              -106.594923,23.451686,0
              -106.593782,23.450476,0
              -106.593608,23.449655,0
              -106.590566,23.448148,0
              -106.5871,23.4447,0
              -106.585,23.4434,0
              -106.583249,23.442096,0
              -106.5817,23.4411,0
              -106.5792,23.4391,0
              -106.5697,23.4313,0
              -106.5664,23.428,0
              -106.563049,23.425392,0
              -106.559398,23.422114,0
              -106.555549,23.418498,0
              -106.552896,23.416034,0
              -106.549284,23.412576,0
              -106.544697,23.408181,0
              -106.540135,23.40355,0
              -106.538084,23.401305,0
              -106.5371,23.4004,0
              -106.5363,23.3994,0
              -106.535369,23.398328,0
              -106.529036,23.391403,0
              -106.528781,23.391123,0
              -106.523908,23.385076,0
              -106.522531,23.383116,0
              -106.521499,23.381425,0
              -106.518841,23.377908,0
              -106.5165,23.3746,0
              -106.5146,23.3717,0
              -106.512555,23.36839,0
              -106.5094,23.3644,0
              -106.50669,23.361508,0
              -106.50524,23.360171,0
              -106.5042,23.3589,0
              -106.50335,23.3572,0
              -106.50238,23.354084,0
              -106.498925,23.350682,0
              -106.495694,23.347434,0
              -106.494938,23.346533,0
              -106.494626,23.346065,0
              -106.4926,23.3425,0
              -106.491386,23.340348,0
              -106.49033,23.338449,0
              -106.4887,23.337,0
              -106.486901,23.335512,0
              -106.4847,23.3328,0
              -106.483583,23.331269,0
              -106.483029,23.330383,0
              -106.482642,23.329567,0
              -106.482439,23.329217,0
              -106.482055,23.328602,0
              -106.48165,23.327751,0
              -106.481484,23.327284,0
              -106.481263,23.326923,0
              -106.480792,23.325733,0
              -106.4802,23.3232,0
              -106.479835,23.320426,0
              -106.479679,23.318682,0
              -106.479726,23.31742,0
              -106.479721,23.317264,0
              -106.479761,23.316921,0
              -106.479897,23.316281,0
              -106.480052,23.315744,0
              -106.480165,23.315257,0
              -106.480206,23.31504,0
              -106.48034,23.314544,0
              -106.480561,23.313949,0
              -106.480706,23.313458,0
              -106.481018,23.312703,0
              -106.481385,23.311931,0
              -106.481641,23.311462,0
              -106.482105,23.310782,0
              -106.482362,23.310256,0
              -106.482797,23.30967,0
              -106.483231,23.309116,0
              -106.483785,23.308738,0
              -106.484212,23.308536,0
              -106.484419,23.308515,0
              -106.484533,23.308594,0
              -106.484752,23.308704,0
              -106.484958,23.308791,0
              -106.485191,23.308844,0
              -106.485357,23.308899,0
              -106.485566,23.308885,0
              -106.485714,23.308844,0
              -106.485818,23.308728,0
              -106.486137,23.30844,0
              -106.486536,23.308136,0
              -106.486759,23.307946,0
              -106.487017,23.307818,0
              -106.487407,23.307645,0
              -106.487945,23.307494,0
              -106.488193,23.3075,0
              -106.488401,23.307446,0
              -106.488589,23.307521,0
              -106.488819,23.307489,0
              -106.488966,23.307413,0
              -106.489101,23.307401,0
              -106.489267,23.307465,0
              -106.489447,23.30761,0
              -106.489576,23.307759,0
              -106.489687,23.307827,0
              -106.489769,23.307915,0
              -106.489902,23.307968,0
              -106.49011,23.307922,0
              -106.49027,23.30793,0
              -106.490453,23.307975,0
              -106.490669,23.308075,0
              -106.490842,23.308176,0
              -106.49094,23.308256,0
              -106.490979,23.308389,0
              -106.491026,23.308396,0
              -106.491144,23.308494,0
              -106.491264,23.30848,0
              -106.491364,23.308417,0
              -106.491454,23.308417,0
              -106.491599,23.308363,0
              -106.491701,23.308304,0
              -106.491843,23.308308,0
              -106.491916,23.308257,0
              -106.491984,23.308275,0
              -106.492119,23.308254,0
              -106.492278,23.308173,0
              -106.492419,23.30805,0
              -106.492372,23.307925,0
              -106.492381,23.307862,0
              -106.492788,23.307944,0
              -106.492997,23.308041,0
              -106.493136,23.308014,0
              -106.493269,23.307888,0
              -106.493323,23.307692,0
              -106.493342,23.307536,0
              -106.493278,23.30742,0
              -106.493356,23.307102,0
              -106.493464,23.307063,0
              -106.493524,23.30698,0
              -106.493635,23.306769,0
              -106.493619,23.30663,0
              -106.493656,23.306484,0
              -106.49375,23.306293,0
              -106.493924,23.306077,0
              -106.494081,23.305896,0
              -106.494164,23.305569,0
              -106.494116,23.305386,0
              -106.494042,23.305235,0
              -106.493881,23.305118,0
              -106.493784,23.305021,0
              -106.493741,23.30493,0
              -106.493653,23.30488,0
              -106.493727,23.304696,0
              -106.493737,23.304575,0
              -106.493717,23.304417,0
              -106.493621,23.304291,0
              -106.493432,23.304157,0
              -106.493482,23.303955,0
              -106.493392,23.303958,0
              -106.493392,23.303906,0
              -106.493565,23.303736,0
              -106.49353,23.303671,0
              -106.493471,23.303629,0
              -106.493356,23.303617,0
              -106.493199,23.303558,0
              -106.493061,23.303739,0
              -106.493106,23.303839,0
              -106.493026,23.303896,0
              -106.493074,23.303981,0
              -106.492984,23.304089,0
              -106.492928,23.304084,0
              -106.49277,23.303985,0
              -106.492658,23.303946,0
              -106.492451,23.304009,0
              -106.492323,23.304037,0
              -106.492233,23.304041,0
              -106.49214,23.304024,0
              -106.491905,23.304047,0
              -106.491759,23.304044,0
              -106.491576,23.303999,0
              -106.491339,23.303839,0
              -106.491266,23.303798,0
              -106.491115,23.303745,0
              -106.491019,23.303597,0
              -106.490843,23.303475,0
              -106.490722,23.303439,0
              -106.490668,23.303402,0
              -106.4906,23.303316,0
              -106.490544,23.303168,0
              -106.490435,23.30302,0
              -106.490367,23.302946,0
              -106.49025,23.302849,0
              -106.4901,23.302755,0
              -106.490029,23.302665,0
              -106.490001,23.302589,0
              -106.489954,23.30253,0
              -106.489829,23.302435,0
              -106.489736,23.302323,0
              -106.489672,23.302221,0
              -106.489616,23.302165,0
              -106.48949,23.302086,0
              -106.489402,23.301899,0
              -106.489257,23.301812,0
              -106.489162,23.301695,0
              -106.488967,23.301526,0
              -106.4889,23.301446,0
              -106.488633,23.301214,0
              -106.488477,23.30112,0
              -106.48834,23.301023,0
              -106.488232,23.300922,0
              -106.488178,23.300841,0
              -106.487974,23.300712,0
              -106.487901,23.300656,0
              -106.48785,23.300584,0
              -106.487605,23.300365,0
              -106.487463,23.300186,0
              -106.487245,23.299952,0
              -106.487097,23.29988,0
              -106.486786,23.299709,0
              -106.486665,23.299624,0
              -106.486555,23.299464,0
              -106.486378,23.299242,0
              -106.486188,23.298954,0
              -106.485991,23.298753,0
              -106.485633,23.298365,0
              -106.485522,23.298253,0
              -106.48502,23.297805,0
              -106.484749,23.29761,0
              -106.484639,23.2974,0
              -106.484368,23.297142,0
              -106.484188,23.296868,0
              -106.48408,23.296757,0
              -106.48395,23.296605,0
              -106.483738,23.296448,0
              -106.483659,23.296296,0
              -106.483481,23.296121,0
              -106.483307,23.295971,0
              -106.48317,23.295828,0
              -106.483078,23.295711,0
              -106.482978,23.295629,0
              -106.482933,23.295541,0
              -106.482844,23.295473,0
              -106.482717,23.295351,0
              -106.482674,23.295263,0
              -106.482592,23.295151,0
              -106.482481,23.29508,0
              -106.482431,23.294999,0
              -106.48229,23.294901,0
              -106.48214,23.294834,0
              -106.482064,23.294708,0
              -106.48198,23.29463,0
              -106.481845,23.294464,0
              -106.481653,23.294341,0
              -106.481524,23.294134,0
              -106.480994,23.29367,0
              -106.480808,23.293519,0
              -106.480688,23.293386,0
              -106.480375,23.293079,0
              -106.480267,23.292981,0
              -106.480171,23.292808,0
              -106.480076,23.29271,0
              -106.4799,23.2926,0
              -106.479805,23.292502,0
              -106.479533,23.29217,0
              -106.47937,23.29201,0
              -106.479274,23.291875,0
              -106.479039,23.291602,0
              -106.478732,23.29128,0
              -106.478549,23.291081,0
              -106.47846,23.290942,0
              -106.478356,23.290826,0
              -106.478277,23.290693,0
              -106.478152,23.290604,0
              -106.477872,23.290304,0
              -106.477669,23.2901,0
              -106.477522,23.28992,0
              -106.477252,23.28961,0
              -106.477176,23.289514,0
              -106.477071,23.289439,0
              -106.477008,23.289338,0
              -106.476952,23.289297,0
              -106.476697,23.289008,0
              -106.476577,23.288843,0
              -106.476447,23.288723,0
              -106.476196,23.288382,0
              -106.476053,23.288208,0
              -106.475907,23.288114,0
              -106.475844,23.288007,0
              -106.47563,23.287824,0
              -106.475494,23.287624,0
              -106.475252,23.287393,0
              -106.475077,23.287179,0
              -106.474823,23.286933,0
              -106.474619,23.286703,0
              -106.474441,23.286478,0
              -106.474326,23.286368,0
              -106.47421,23.286191,0
              -106.473946,23.285869,0
              -106.4738,23.285709,0
              -106.473643,23.285463,0
              -106.473457,23.285189,0
              -106.473091,23.284722,0
              -106.472945,23.284441,0
              -106.472894,23.284394,0
              -106.472868,23.284329,0
              -106.472745,23.284276,0
              -106.472567,23.284122,0
              -106.472537,23.283907,0
              -106.472445,23.283798,0
              -106.472241,23.283599,0
              -106.472145,23.283521,0
              -106.472013,23.283368,0
              -106.47202,23.28323,0
              -106.471784,23.282906,0
              -106.471658,23.282771,0
              -106.471648,23.282678,0
              -106.471598,23.282558,0
              -106.471489,23.28247,0
              -106.47136,23.282301,0
              -106.471204,23.282054,0
              -106.471058,23.28179,0
              -106.4709,23.281466,0
              -106.470769,23.281261,0
              -106.470639,23.281024,0
              -106.470435,23.280792,0
              -106.47027,23.280472,0
              -106.470177,23.280252,0
              -106.470036,23.280061,0
              -106.469998,23.279934,0
              -106.469914,23.279777,0
              -106.469823,23.279691,0
              -106.469812,23.279621,0
              -106.469756,23.279533,0
              -106.469667,23.279359,0
              -106.469626,23.279246,0
              -106.46956,23.279146,0
              -106.469487,23.279066,0
              -106.469404,23.278902,0
              -106.469334,23.278652,0
              -106.469187,23.278466,0
              -106.469073,23.278251,0
              -106.468788,23.277849,0
              -106.468646,23.277407,0
              -106.468386,23.277015,0
              -106.468196,23.27675,0
              -106.468099,23.276367,0
              -106.46797,23.276042,0
              -106.467853,23.275726,0
              -106.467618,23.27543,0
              -106.467535,23.275149,0
              -106.467339,23.274779,0
              -106.467287,23.274692,0
              -106.467241,23.27454,0
              -106.46718,23.274438,0
              -106.467173,23.27434,0
              -106.467119,23.274234,0
              -106.467047,23.273975,0
              -106.46697,23.273801,0
              -106.466918,23.273571,0
              -106.466575,23.272732,0
              -106.466517,23.272459,0
              -106.466499,23.272295,0
              -106.466459,23.272109,0
              -106.466343,23.271938,0
              -106.466247,23.271625,0
              -106.46608,23.270366,0
              -106.466201,23.269903,0
              -106.466982,23.269913,0
              -106.467224,23.269951,0
              -106.467451,23.269975,0
              -106.467723,23.269845,0
              -106.467921,23.269719,0
              -106.468216,23.269508,0
              -106.468507,23.269227,0
              -106.468513,23.269091,0
              -106.468409,23.26898,0
              -106.468264,23.269054,0
              -106.468148,23.269138,0
              -106.467938,23.268107,0
              -106.467961,23.26719,0
              -106.468072,23.267285,0
              -106.468244,23.267361,0
              -106.468429,23.267292,0
              -106.468585,23.267275,0
              -106.468596,23.267136,0
              -106.468627,23.266999,0
              -106.468552,23.266878,0
              -106.468406,23.266785,0
              -106.468455,23.266686,0
              -106.468459,23.266597,0
              -106.46854,23.266532,0
              -106.468463,23.266439,0
              -106.468369,23.266369,0
              -106.468002,23.266231,0
              -106.467991,23.266136,0
              -106.467908,23.265975,0
              -106.467808,23.266002,0
              -106.467739,23.266143,0
              -106.467675,23.266185,0
              -106.467508,23.266222,0
              -106.467313,23.266087,0
              -106.467095,23.265986,0
              -106.466961,23.265737,0
              -106.466844,23.265393,0
              -106.466883,23.265159,0
              -106.466935,23.265003,0
              -106.466908,23.264877,0
              -106.466972,23.264777,0
              -106.466932,23.264515,0
              -106.466929,23.264126,0
              -106.46684,23.263981,0
              -106.466867,23.263854,0
              -106.466923,23.263738,0
              -106.466894,23.263362,0
              -106.466922,23.26319,0
              -106.466983,23.262997,0
              -106.467022,23.262965,0
              -106.467072,23.262867,0
              -106.467258,23.262736,0
              -106.467226,23.262638,0
              -106.467047,23.262601,0
              -106.466974,23.262531,0
              -106.466881,23.262224,0
              -106.46675,23.26205,0
              -106.466677,23.261918,0
              -106.466551,23.261774,0
              -106.466478,23.261735,0
              -106.4664,23.261653,0
              -106.466432,23.261495,0
              -106.466394,23.261357,0
              -106.466433,23.261279,0
              -106.466549,23.261144,0
              -106.466545,23.261046,0
              -106.466454,23.260913,0
              -106.466364,23.260861,0
              -106.466477,23.260728,0
              -106.466505,23.260608,0
              -106.466331,23.260438,0
              -106.466085,23.260255,0
              -106.46593,23.260071,0
              -106.465717,23.259881,0
              -106.465555,23.25968,0
              -106.465382,23.259529,0
              -106.465293,23.259376,0
              -106.465063,23.259323,0
              -106.464927,23.259281,0
              -106.464786,23.259207,0
              -106.464702,23.259095,0
              -106.464647,23.258967,0
              -106.464501,23.258815,0
              -106.464401,23.258668,0
              -106.464346,23.258479,0
              -106.464238,23.258208,0
              -106.464044,23.258052,0
              -106.463855,23.25792,0
              -106.463747,23.258056,0
              -106.463617,23.25818,0
              -106.463428,23.258186,0
              -106.463239,23.258181,0
              -106.463168,23.258124,0
              -106.46305,23.258063,0
              -106.462865,23.257916,0
              -106.462672,23.257977,0
              -106.462523,23.257833,0
              -106.462304,23.257653,0
              -106.462222,23.257507,0
              -106.462072,23.257406,0
              -106.461998,23.257249,0
              -106.461865,23.257124,0
              -106.461685,23.256897,0
              -106.461585,23.25681,0
              -106.461487,23.256824,0
              -106.461321,23.256654,0
              -106.461014,23.256425,0
              -106.46073,23.256144,0
              -106.460522,23.256001,0
              -106.460202,23.255598,0
              -106.460014,23.255392,0
              -106.459912,23.255246,0
              -106.459551,23.254877,0
              -106.459398,23.254689,0
              -106.459232,23.254561,0
              -106.459063,23.254351,0
              -106.458942,23.25427,0
              -106.458886,23.254166,0
              -106.458766,23.254004,0
              -106.458658,23.25384,0
              -106.458513,23.253697,0
              -106.458448,23.253543,0
              -106.458281,23.253373,0
              -106.458175,23.253285,0
              -106.458083,23.253149,0
              -106.457875,23.252813,0
              -106.457727,23.252645,0
              -106.457594,23.252425,0
              -106.457322,23.25216,0
              -106.457278,23.252007,0
              -106.457236,23.25192,0
              -106.457087,23.251675,0
              -106.456983,23.251447,0
              -106.456865,23.251247,0
              -106.45672,23.25105,0
              -106.456579,23.250814,0
              -106.456522,23.250641,0
              -106.456434,23.250481,0
              -106.456339,23.250354,0
              -106.456255,23.250196,0
              -106.456122,23.249705,0
              -106.456072,23.249505,0
              -106.456009,23.249338,0
              -106.456048,23.249297,0
              -106.456049,23.249144,0
              -106.45598,23.24894,0
              -106.455845,23.24868,0
              -106.455797,23.248517,0
              -106.455732,23.248354,0
              -106.455636,23.247967,0
              -106.455539,23.247437,0
              -106.45549,23.247339,0
              -106.455418,23.247112,0
              -106.455346,23.246789,0
              -106.455249,23.246466,0
              -106.455201,23.246341,0
              -106.455186,23.24622,0
              -106.45512,23.246012,0
              -106.455042,23.245701,0
              -106.454976,23.24554,0
              -106.454974,23.245398,0
              -106.454936,23.245276,0
              -106.454922,23.245097,0
              -106.454897,23.244997,0
              -106.45482,23.244802,0
              -106.45477,23.244507,0
              -106.454689,23.244359,0
              -106.454742,23.244231,0
              -106.45463,23.244098,0
              -106.454609,23.243962,0
              -106.454534,23.243826,0
              -106.454511,23.243691,0
              -106.454445,23.243503,0
              -106.454308,23.24334,0
              -106.454158,23.243242,0
              -106.454048,23.243141,0
              -106.453992,23.242992,0
              -106.453857,23.242801,0
              -106.453809,23.242701,0
              -106.453733,23.242631,0
              -106.453592,23.242356,0
              -106.453437,23.242173,0
              -106.453383,23.242002,0
              -106.453301,23.241864,0
              -106.453316,23.241611,0
              -106.453241,23.241487,0
              -106.453016,23.241556,0
              -106.452869,23.241547,0
              -106.452806,23.241523,0
              -106.452687,23.241436,0
              -106.452581,23.241399,0
              -106.452441,23.24137,0
              -106.452132,23.241273,0
              -106.451918,23.241174,0
              -106.451105,23.2409,0
              -106.451016,23.240885,0
              -106.450955,23.24085,0
              -106.450694,23.240734,0
              -106.450238,23.240436,0
              -106.449605,23.240279,0
              -106.44852,23.239842,0
              -106.447758,23.239419,0
              -106.447467,23.239196,0
              -106.447071,23.238924,0
              -106.446939,23.238788,0
              -106.446738,23.238627,0
              -106.446629,23.238418,0
              -106.446541,23.238333,0
              -106.446643,23.23812,0
              -106.446579,23.237932,0
              -106.446439,23.237759,0
              -106.446255,23.237763,0
              -106.446096,23.237816,0
              -106.445998,23.237832,0
              -106.44594,23.237803,0
              -106.445933,23.23765,0
              -106.445808,23.237706,0
              -106.445723,23.237712,0
              -106.445635,23.237745,0
              -106.445563,23.237735,0
              -106.445494,23.237696,0
              -106.445363,23.237667,0
              -106.445435,23.237535,0
              -106.445392,23.237441,0
              -106.445209,23.237504,0
              -106.445112,23.23758,0
              -106.444897,23.237626,0
              -106.444394,23.237476,0
              -106.444045,23.237379,0
              -106.443146,23.23714,0
              -106.442063,23.23655,0
              -106.439972,23.23535,0
              -106.438664,23.234537,0
              -106.438043,23.234145,0
              -106.437003,23.23343,0
              -106.436223,23.232877,0
              -106.4353,23.232098,0
              -106.434111,23.231097,0
              -106.433087,23.230262,0
              -106.432862,23.23017,0
              -106.432247,23.229651,0
              -106.431563,23.229082,0
              -106.430989,23.228656,0
              -106.430518,23.228229,0
              -106.429958,23.227626,0
              -106.429491,23.22717,0
              -106.429036,23.22684,0
              -106.428475,23.226322,0
              -106.427824,23.225744,0
              -106.427263,23.225164,0
              -106.426844,23.224631,0
              -106.426634,23.224437,0
              -106.426555,23.224264,0
              -106.426427,23.224192,0
              -106.426271,23.22413,0
              -106.426225,23.224051,0
              -106.42603,23.223799,0
              -106.425765,23.223561,0
              -106.425536,23.223205,0
              -106.425166,23.222746,0
              -106.424845,23.222283,0
              -106.424675,23.222117,0
              -106.424571,23.221944,0
              -106.424358,23.221663,0
              -106.424241,23.221401,0
              -106.424099,23.221171,0
              -106.423883,23.220858,0
              -106.423772,23.220722,0
              -106.423716,23.220622,0
              -106.423366,23.219955,0
              -106.422967,23.219072,0
              -106.422838,23.218669,0
              -106.422517,23.217972,0
              -106.422169,23.217044,0
              -106.422055,23.216758,0
              -106.421708,23.215716,0
              -106.42161,23.215269,0
              -106.421519,23.214735,0
              -106.421517,23.214417,0
              -106.421451,23.213963,0
              -106.421495,23.213576,0
              -106.421522,23.213386,0
              -106.421566,23.213233,0
              -106.421561,23.213076,0
              -106.421596,23.212917,0
              -106.421602,23.212784,0
              -106.421643,23.2126,0
              -106.421687,23.21235,0
              -106.421709,23.21207,0
              -106.421859,23.211708,0
              -106.421929,23.211353,0
              -106.422211,23.210587,0
              -106.422321,23.210349,0
              -106.422457,23.209994,0
              -106.422689,23.209576,0
              -106.423182,23.208931,0
              -106.42347,23.20856,0
              -106.423938,23.208186,0
              -106.424391,23.207905,0
              -106.424734,23.207755,0
              -106.424981,23.207686,0
              -106.425295,23.207648,0
              -106.42554,23.207647,0
              -106.425806,23.207727,0
              -106.425971,23.207866,0
              -106.426112,23.208132,0
              -106.425989,23.208269,0
              -106.425981,23.208521,0
              -106.42589,23.208609,0
              -106.425891,23.208666,0
              -106.425939,23.208697,0
              -106.425989,23.208811,0
              -106.425993,23.20886,0
              -106.426186,23.208927,0
              -106.426221,23.209055,0
              -106.426224,23.20913,0
              -106.426177,23.209187,0
              -106.42616,23.209272,0
              -106.426209,23.209379,0
              -106.426272,23.209555,0
              -106.426321,23.209612,0
              -106.426457,23.20956,0
              -106.426633,23.209413,0
              -106.426718,23.209386,0
              -106.426816,23.209279,0
              -106.426816,23.209254,0
              -106.426975,23.20917,0
              -106.42696,23.209045,0
              -106.426968,23.208865,0
              -106.427049,23.208676,0
              -106.427021,23.208607,0
              -106.42719,23.208508,0
              -106.427423,23.208437,0
              -106.427617,23.208355,0
              -106.42778,23.208371,0
              -106.427931,23.208356,0
              -106.428194,23.208413,0
              -106.428392,23.208502,0
              -106.428425,23.208575,0
              -106.428589,23.208616,0
              -106.428702,23.208621,0
              -106.428818,23.20857,0
              -106.42901,23.20842,0
              -106.429067,23.208363,0
              -106.429166,23.208301,0
              -106.429101,23.208194,0
              -106.429109,23.208132,0
              -106.42902,23.207983,0
              -106.428859,23.207905,0
              -106.428892,23.207854,0
              -106.42889,23.207665,0
              -106.429038,23.20767,0
              -106.429077,23.207503,0
              -106.428795,23.207478,0
              -106.428738,23.20745,0
              -106.428674,23.20734,0
              -106.428766,23.20724,0
              -106.4288,23.207165,0
              -106.428914,23.207125,0
              -106.42899,23.207082,0
              -106.428899,23.207009,0
              -106.428923,23.206877,0
              -106.428884,23.206778,0
              -106.428803,23.206639,0
              -106.428667,23.206616,0
              -106.428659,23.206179,0
              -106.428617,23.20582,0
              -106.428635,23.205579,0
              -106.428687,23.205453,0
              -106.428751,23.205398,0
              -106.428779,23.205319,0
              -106.428971,23.205153,0
              -106.429037,23.205062,0
              -106.429047,23.204987,0
              -106.429122,23.204812,0
              -106.429216,23.204697,0
              -106.429379,23.204477,0
              -106.42954,23.204332,0
              -106.429618,23.204382,0
              -106.429619,23.204489,0
              -106.429735,23.204386,0
              -106.42977,23.204303,0
              -106.429902,23.204307,0
              -106.429963,23.204261,0
              -106.430112,23.2042,0
              -106.430134,23.204113,0
              -106.430181,23.20404,0
              -106.430272,23.203997,0
              -106.430309,23.203914,0
              -106.430372,23.203852,0
              -106.430483,23.203582,0
              -106.430588,23.203489,0
              -106.430629,23.203401,0
              -106.430605,23.203323,0
              -106.430646,23.203173,0
              -106.430655,23.202977,0
              -106.430642,23.202879,0
              -106.430659,23.2028,0
              -106.430605,23.202699,0
              -106.430538,23.2025,0
              -106.430388,23.202401,0
              -106.430486,23.202332,0
              -106.430394,23.202217,0
              -106.430279,23.202172,0
              -106.430342,23.202071,0
              -106.430661,23.202034,0
              -106.430729,23.201942,0
              -106.430927,23.201702,0
              -106.430986,23.201526,0
              -106.430941,23.2014,0
              -106.430949,23.201211,0
              -106.430915,23.201157,0
              -106.430829,23.201087,0
              -106.430712,23.200914,0
              -106.430635,23.200865,0
              -106.430558,23.200905,0
              -106.430421,23.200813,0
              -106.430386,23.200565,0
              -106.430458,23.200404,0
              -106.430423,23.20033,0
              -106.430314,23.200272,0
              -106.430248,23.200154,0
              -106.430243,23.200102,0
              -106.430285,23.200071,0
              -106.430284,23.199984,0
              -106.43025,23.199911,0
              -106.430193,23.199879,0
              -106.430296,23.199803,0
              -106.430218,23.199745,0
              -106.430246,23.199703,0
              -106.43024,23.199633,0
              -106.430143,23.199603,0
              -106.43009,23.19963,0
              -106.430046,23.199612,0
              -106.429998,23.199673,0
              -106.42987,23.199765,0
              -106.429785,23.1998,0
              -106.429611,23.199756,0
              -106.429495,23.199671,0
              -106.429458,23.19958,0
              -106.429453,23.199495,0
              -106.4296,23.19946,0
              -106.42964,23.199425,0
              -106.429636,23.19935,0
              -106.429564,23.199329,0
              -106.429486,23.199358,0
              -106.429391,23.19943,0
              -106.429374,23.199385,0
              -106.429405,23.199329,0
              -106.429479,23.199318,0
              -106.429527,23.199227,0
              -106.429403,23.19917,0
              -106.429343,23.199205,0
              -106.429234,23.199237,0
              -106.429112,23.199209,0
              -106.429025,23.199158,0
              -106.428971,23.199094,0
              -106.428999,23.199034,0
              -106.429003,23.198948,0
              -106.429069,23.198773,0
              -106.429183,23.198663,0
              -106.429173,23.198613,0
              -106.429055,23.198629,0
              -106.429061,23.198552,0
              -106.428909,23.1985,0
              -106.428819,23.198484,0
              -106.428539,23.198512,0
              -106.428394,23.198488,0
              -106.428317,23.198542,0
              -106.42821,23.198653,0
              -106.427963,23.198557,0
              -106.427809,23.198487,0
              -106.427573,23.198231,0
              -106.427471,23.198024,0
              -106.427302,23.197767,0
              -106.427244,23.197576,0
              -106.427037,23.197144,0
              -106.427029,23.197027,0
              -106.426983,23.196876,0
              -106.426892,23.196655,0
              -106.426797,23.196365,0
              -106.426744,23.196175,0
              -106.426669,23.195992,0
              -106.426654,23.195882,0
              -106.426632,23.1955,0
              -106.426789,23.195227,0
              -106.426997,23.195015,0
              -106.427108,23.194911,0
              -106.427456,23.194653,0
              -106.427606,23.194501,0
              -106.427731,23.194329,0
              -106.427904,23.194076,0
              -106.427961,23.193936,0
              -106.428001,23.193919,0
              -106.428045,23.193844,0
              -106.428111,23.193833,0
              -106.428187,23.193861,0
              -106.428389,23.193603,0
              -106.428391,23.193485,0
              -106.428367,23.193353,0
              -106.428425,23.193239,0
              -106.428578,23.193105,0
              -106.428598,23.192931,0
              -106.428542,23.19284,0
              -106.428409,23.192759,0
              -106.428276,23.19273,0
              -106.42821,23.192771,0
              -106.428111,23.192783,0
              -106.428044,23.192712,0
              -106.42803,23.192533,0
              -106.427963,23.192462,0
              -106.427896,23.192361,0
              -106.427894,23.192218,0
              -106.427849,23.192076,0
              -106.427935,23.192027,0
              -106.427913,23.191917,0
              -106.427933,23.191849,0
              -106.427984,23.191796,0
              -106.427748,23.191573,0
              -106.427674,23.191463,0
              -106.427674,23.191406,0
              -106.427741,23.191343,0
              -106.427713,23.191233,0
              -106.427717,23.191122,0
              -106.427762,23.190887,0
              -106.427819,23.190896,0
              -106.427855,23.190843,0
              -106.427963,23.190775,0
              -106.427973,23.190722,0
              -106.427941,23.190679,0
              -106.427874,23.190675,0
              -106.427842,23.190637,0
              -106.427959,23.190507,0
              -106.427912,23.190363,0
              -106.42791,23.190177,0
              -106.428042,23.189865,0
              -106.428197,23.18976,0
              -106.428314,23.189506,0
              -106.428288,23.189455,0
              -106.428177,23.189405,0
              -106.428168,23.189292,0
              -106.428095,23.189199,0
              -106.428002,23.189235,0
              -106.427921,23.189212,0
              -106.427836,23.189119,0
              -106.427835,23.189053,0
              -106.427733,23.189034,0
              -106.427758,23.188976,0
              -106.427727,23.188882,0
              -106.427907,23.188856,0
              -106.427823,23.188696,0
              -106.427712,23.188604,0
              -106.427666,23.188528,0
              -106.427547,23.188529,0
              -106.427572,23.188343,0
              -106.427635,23.188249,0
              -106.427625,23.18814,0
              -106.427579,23.188081,0
              -106.427468,23.188014,0
              -106.427367,23.187981,0
              -106.427321,23.187906,0
              -106.42721,23.187822,0
              -106.427109,23.187806,0
              -106.426945,23.187841,0
              -106.4268,23.188012,0
              -106.426718,23.188038,0
              -106.426654,23.188022,0
              -106.426699,23.187945,0
              -106.426634,23.187873,0
              -106.42656,23.187874,0
              -106.426469,23.187913,0
              -106.426323,23.18794,0
              -106.426131,23.187916,0
              -106.426083,23.187706,0
              -106.426009,23.187647,0
              -106.425981,23.187571,0
              -106.425853,23.187598,0
              -106.42577,23.187573,0
              -106.425633,23.187642,0
              -106.425478,23.187635,0
              -106.425377,23.187664,0
              -106.42526,23.187635,0
              -106.42509,23.187471,0
              -106.425019,23.187325,0
              -106.424921,23.1872,0
              -106.425001,23.187095,0
              -106.42515,23.186979,0
              -106.425094,23.186861,0
              -106.425066,23.186768,0
              -106.425055,23.18665,0
              -106.424974,23.186695,0
              -106.424853,23.186702,0
              -106.424764,23.186562,0
              -106.424658,23.186281,0
              -106.424628,23.186124,0
              -106.424617,23.185988,0
              -106.42465,23.185855,0
              -106.424923,23.184869,0
              -106.424979,23.184573,0
              -106.425018,23.184522,0
              -106.425254,23.184571,0
              -106.425545,23.184219,0
              -106.425996,23.184172,0
              -106.426146,23.184136,0
              -106.426316,23.184136,0
              -106.426657,23.184083,0
              -106.426852,23.183978,0
              -106.426844,23.183752,0
              -106.426731,23.183606,0
              -106.426597,23.183457,0
              -106.426525,23.18325,0
              -106.426476,23.182898,0
              -106.426567,23.18246,0
              -106.426643,23.182175,0
              -106.42678,23.181781,0
              -106.42689,23.181602,0
              -106.427018,23.181491,0
              -106.427071,23.18141,0
              -106.427109,23.181312,0
              -106.427195,23.181174,0
              -106.427217,23.181039,0
              -106.427308,23.180918,0
              -106.427354,23.180811,0
              -106.427348,23.180716,0
              -106.427296,23.180657,0
              -106.427392,23.180485,0
              -106.427599,23.180252,0
              -106.427693,23.180133,0
              -106.427866,23.17997,0
              -106.427897,23.179838,0
              -106.427768,23.179663,0
              -106.427846,23.17956,0
              -106.427924,23.179427,0
              -106.42797,23.179265,0
              -106.428111,23.179044,0
              -106.428155,23.178764,0
              -106.428233,23.178602,0
              -106.428391,23.178542,0
              -106.429533,23.17824,0
              -106.43003,23.177762,0
              -106.430252,23.177045,0
              -106.42999,23.176578,0
              -106.42963,23.176229,0
              -106.429009,23.176012,0
              -106.428439,23.17589,0
              -106.428138,23.176161,0
              -106.427943,23.176664,0
              -106.427627,23.176742,0
              -106.427436,23.176628,0
              -106.426607,23.176742,0
              -106.425898,23.176892,0
              -106.425461,23.177061,0
              -106.425812,23.176623,0
              -106.425721,23.17646,0
              -106.425157,23.176931,0
              -106.42524,23.177138,0
              -106.424893,23.177413,0
              -106.424724,23.177167,0
              -106.424583,23.177298,0
              -106.424659,23.177521,0
              -106.424491,23.17771,0
              -106.424455,23.178079,0
              -106.424297,23.178464,0
              -106.424296,23.178918,0
              -106.424403,23.179387,0
              -106.424082,23.179553,0
              -106.420364,23.179454,0
              -106.418621,23.178619,0
              -106.418418,23.178502,0
              -106.418591,23.178473,0
              -106.418667,23.178401,0
              -106.418695,23.178318,0
              -106.418721,23.178157,0
              -106.418826,23.178112,0
              -106.418993,23.178122,0
              -106.419112,23.177958,0
              -106.41907,23.177873,0
              -106.418942,23.177777,0
              -106.418794,23.177834,0
              -106.418471,23.177897,0
              -106.417233,23.178375,0
              -106.41611,23.178887,0
              -106.41581,23.178993,0
              -106.415519,23.178831,0
              -106.4154,23.178724,0
              -106.415239,23.178431,0
              -106.415143,23.17831,0
              -106.414952,23.178106,0
              -106.41421,23.178003,0
              -106.413714,23.178424,0
              -106.41199,23.179972,0
              -106.411702,23.18056,0
              -106.411686,23.180976,0
              -106.411841,23.181334,0
              -106.412023,23.18146,0
              -106.41227,23.181575,0
              -106.412348,23.181746,0
              -106.412319,23.181887,0
              -106.412301,23.182074,0
              -106.412329,23.182284,0
              -106.412489,23.182333,0
              -106.412584,23.182239,0
              -106.412556,23.182085,0
              -106.412514,23.181931,0
              -106.412528,23.181771,0
              -106.41267,23.181515,0
              -106.413075,23.181506,0
              -106.413268,23.18154,0
              -106.413648,23.181703,0
              -106.413382,23.182134,0
              -106.413222,23.182429,0
              -106.41308,23.182803,0
              -106.412987,23.183083,0
              -106.412915,23.183351,0
              -106.412817,23.183637,0
              -106.412777,23.183907,0
              -106.412586,23.184366,0
              -106.412484,23.184634,0
              -106.41242,23.184865,0
              -106.412295,23.185196,0
              -106.412256,23.185349,0
              -106.412114,23.185685,0
              -106.411914,23.185976,0
              -106.411774,23.186352,0
              -106.411623,23.186478,0
              -106.411471,23.186516,0
              -106.411285,23.1865,0
              -106.411132,23.186616,0
              -106.410933,23.186673,0
              -106.409997,23.186988,0
              -106.409593,23.18711,0
              -106.409308,23.187176,0
              -106.408969,23.187207,0
              -106.408616,23.187289,0
              -106.408489,23.187303,0
              -106.408243,23.187288,0
              -106.408011,23.187237,0
              -106.407675,23.187261,0
              -106.407405,23.187221,0
              -106.406543,23.187291,0
              -106.406208,23.187208,0
              -106.405577,23.187104,0
              -106.405199,23.187009,0
              -106.404621,23.186819,0
              -106.40421,23.186697,0
              -106.403926,23.1866,0
              -106.403507,23.186491,0
              -106.403182,23.18637,0
              -106.402631,23.186126,0
              -106.402358,23.186013,0
              -106.402116,23.185862,0
              -106.401923,23.185725,0
              -106.400981,23.185321,0
              -106.4,23.185089,0
              -106.397386,23.184219,0
              -106.396761,23.183899,0
              -106.39633,23.183727,0
              -106.395378,23.183341,0
              -106.394008,23.182707,0
              -106.392253,23.181679,0
              -106.390586,23.180655,0
              -106.388833,23.179233,0
              -106.386812,23.177747,0
              -106.38465,23.17602,0
              -106.382804,23.17451,0
              -106.380917,23.172872,0
              -106.379475,23.171771,0
              -106.378013,23.170508,0
              -106.376008,23.168849,0
              -106.37405,23.167255,0
              -106.373102,23.166482,0
              -106.37078,23.164681,0
              -106.367602,23.162109,0
              -106.366994,23.161613,0
              -106.365554,23.160442,0
              -106.364302,23.159398,0
              -106.362872,23.158208,0
              -106.361896,23.157394,0
              -106.355589,23.152319,0
              -106.354166,23.151162,0
              -106.352497,23.149807,0
              -106.349265,23.147142,0
              -106.345063,23.143639,0
              -106.343594,23.142415,0
              -106.341359,23.140551,0
              -106.339244,23.138776,0
              -106.33738,23.137213,0
              -106.333527,23.133955,0
              -106.330795,23.131535,0
              -106.330733,23.131481,0
              -106.324318,23.125534,0
              -106.319836,23.121621,0
              -106.315435,23.11742,0
              -106.315364,23.117351,0
              -106.3137,23.1158,0
              -106.313377,23.115441,0
              -106.302173,23.103868,0
              -106.297305,23.098013,0
              -106.296141,23.096871,0
              -106.294908,23.095731,0
              -106.293898,23.094753,0
              -106.292591,23.093059,0
              -106.292199,23.092686,0
              -106.291783,23.092598,0
              -106.291298,23.092652,0
              -106.290413,23.091814,0
              -106.290421,23.091379,0
              -106.290209,23.09101,0
              -106.28993,23.090921,0
              -106.289642,23.090946,0
              -106.279236,23.08389,0
              -106.271555,23.078509,0
              -106.270121,23.077429,0
              -106.267561,23.075657,0
              -106.2615,23.0712,0
              -106.2601,23.07005,0
              -106.259522,23.06959,0
              -106.257895,23.068443,0
              -106.256788,23.067622,0
              -106.255301,23.066509,0
              -106.254069,23.06547,0
              -106.251017,23.063025,0
              -106.24837,23.060886,0
              -106.245396,23.058408,0
              -106.244958,23.058,0
              -106.244313,23.057456,0
              -106.242672,23.056033,0
              -106.236465,23.050656,0
              -106.236265,23.050432,0
              -106.235653,23.049847,0
              -106.235341,23.049564,0
              -106.234913,23.049126,0
              -106.234531,23.048876,0
              -106.234147,23.048452,0
              -106.233844,23.048229,0
              -106.233672,23.048087,0
              -106.233415,23.047905,0
              -106.233236,23.047737,0
              -106.233031,23.047524,0
              -106.232718,23.047276,0
              -106.232148,23.046761,0
              -106.23187,23.046481,0
              -106.231469,23.046125,0
              -106.23023,23.044965,0
              -106.229931,23.044717,0
              -106.229328,23.044169,0
              -106.229274,23.044148,0
              -106.228922,23.043801,0
              -106.22864,23.043577,0
              -106.228321,23.043247,0
              -106.227268,23.042246,0
              -106.22685,23.041959,0
              -106.226508,23.041579,0
              -106.225672,23.040787,0
              -106.224988,23.040215,0
              -106.224689,23.039918,0
              -106.224166,23.039392,0
              -106.2234,23.03882,0
              -106.222909,23.038388,0
              -106.222579,23.038073,0
              -106.219566,23.035233,0
              -106.217047,23.032865,0
              -106.215978,23.031794,0
              -106.215181,23.031181,0
              -106.214906,23.030756,0
              -106.214497,23.030608,0
              -106.214087,23.03026,0
              -106.213727,23.029534,0
              -106.213099,23.029187,0
              -106.21258,23.02884,0
              -106.212387,23.028414,0
              -106.211866,23.02784,0
              -106.211346,23.027492,0
              -106.210773,23.02707,0
              -106.210442,23.02657,0
              -106.209759,23.026073,0
              -106.209349,23.025724,0
              -106.209156,23.025449,0
              -106.208936,23.025099,0
              -106.207403,23.023729,0
              -106.206528,23.023083,0
              -106.206252,23.022507,0
              -106.205403,23.02176,0
              -106.204226,23.020639,0
              -106.2022,23.01877,0
              -106.196761,23.013344,0
              -106.193915,23.010753,0
              -106.191641,23.008459,0
              -106.187918,23.004895,0
              -106.186876,23.003798,0
              -106.181634,22.998515,0
              -106.178456,22.995172,0
              -106.176102,22.993004,0
              -106.174788,22.991708,0
              -106.174073,22.990683,0
              -106.17317,22.989786,0
              -106.171445,22.98804,0
              -106.17076,22.987392,0
              -106.167296,22.983757,0
              -106.164009,22.980315,0
              -106.162858,22.979067,0
              -106.162531,22.978869,0
              -106.161846,22.97812,0
              -106.160968,22.976996,0
              -106.160091,22.976048,0
              -106.15812,22.974053,0
              -106.155454,22.971167,0
              -106.154221,22.969869,0
              -106.153345,22.968971,0
              -106.152579,22.968274,0
              -106.152249,22.967723,0
              -106.15173,22.967325,0
              -106.151347,22.967027,0
              -106.150852,22.966277,0
              -106.150361,22.965953,0
              -106.150003,22.965353,0
              -106.147455,22.962702,0
              -106.142637,22.957383,0
              -106.135117,22.948841,0
              -106.131964,22.945463,0
              -106.125614,22.938669,0
              -106.118054,22.930286,0
              -106.11285,22.924492,0
              -106.108301,22.919403,0
              -106.102478,22.91276,0
              -106.099638,22.9095,0
              -106.096212,22.905492,0
              -106.092205,22.900844,0
              -106.088129,22.896245,0
              -106.085453,22.893131,0
              -106.08055,22.887548,0
              -106.076784,22.883377,0
              -106.072034,22.877949,0
              -106.068904,22.87434,0
              -106.065539,22.870519,0
              -106.062524,22.867022,0
              -106.057315,22.860637,0
              -106.055347,22.858041,0
              -106.051637,22.853141,0
              -106.048274,22.848606,0
              -106.043986,22.84241,0
              -106.041979,22.839804,0
              -106.040546,22.837358,0
              -106.0401,22.836474,0
              -106.039778,22.836048,0
              -105.355228,23.040934,0
            </coordinates>
          </LinearRing>
        </outerBoundaryIs>
      </Polygon>
    </Placemark>
        <outerBoundaryIs>
          <LinearRing>
            <tessellate>1</tessellate>
            <coordinates>
              -106.039778,22.836048,0
              -106.039554,22.835753,0
              -106.037801,22.835276,0
              -106.037447,22.834039,0
              -106.035469,22.832155,0
              -106.033462,22.831474,0
              -106.034491,22.829713,0
              -106.027937,22.831645,0
              -106.024237,22.829358,0
              -106.011848,22.822028,0
              -106.002922,22.816194,0
              -106.001439,22.815382,0
              -105.997973,22.813099,0
              -105.99118,22.808841,0
              -105.98978,22.807834,0
              -105.982585,22.80327,0
              -105.979659,22.801334,0
              -105.974527,22.797535,0
              -105.970585,22.79498,0
              -105.966135,22.791885,0
              -105.964014,22.790603,0
              -105.958205,22.786103,0
              -105.946133,22.776609,0
              -105.9376,22.769545,0
              -105.934318,22.766745,0
              -105.927949,22.761085,0
              -105.917916,22.752429,0
              -105.910568,22.745582,0
              -105.907706,22.743163,0
              -105.904454,22.740247,0
              -105.897295,22.733375,0
              -105.889804,22.726055,0
              -105.878695,22.715657,0
              -105.875851,22.712956,0
              -105.870863,22.708447,0
              -105.859728,22.697464,0
              -105.853486,22.690894,0
              -105.843917,22.680577,0
              -105.835156,22.670363,0
              -105.827863,22.661651,0
              -105.821681,22.654023,0
              -105.814029,22.6439,0
              -105.808805,22.636568,0
              -105.802899,22.627831,0
              -105.799022,22.621899,0
              -105.796088,22.617282,0
              -105.78624,22.600952,0
              -105.778,22.5857,0
              -105.774029,22.57805,0
              -105.771605,22.572926,0
              -105.76932,22.567594,0
              -105.767142,22.561117,0
              -105.766397,22.558382,0
              -105.765501,22.556513,0
              -105.763983,22.554633,0
              -105.763224,22.551907,0
              -105.762611,22.550598,0
              -105.761198,22.549818,0
              -105.760221,22.550077,0
              -105.757586,22.541459,0
              -105.758537,22.539432,0
              -105.758295,22.537677,0
              -105.758913,22.534254,0
              -105.760306,22.531038,0
              -105.760273,22.530122,0
              -105.759167,22.52772,0
              -105.757533,22.526167,0
              -105.755044,22.52181,0
              -105.752402,22.517893,0
              -105.750266,22.514514,0
              -105.746105,22.507387,0
              -105.743053,22.501713,0
              -105.738958,22.49439,0
              -105.736218,22.489346,0
              -105.734345,22.486149,0
              -105.731136,22.480375,0
              -105.728552,22.475607,0
              -105.723802,22.466647,0
              -105.721202,22.461555,0
              -105.714398,22.447657,0
              -105.709817,22.43787,0
              -105.705425,22.427843,0
              -105.703124,22.422307,0
              -105.701667,22.418623,0
              -105.698629,22.411328,0
              -105.69575,22.404217,0
              -105.69366,22.398893,0
              -105.689659,22.388212,0
              -105.686334,22.379039,0
              -105.684324,22.372544,0
              -105.682296,22.366638,0
              -105.680743,22.361564,0
              -105.679556,22.357984,0
              -105.678901,22.355586,0
              -105.675967,22.346192,0
              -105.674008,22.338762,0
              -105.67052,22.326042,0
              -105.668488,22.317705,0
              -105.667914,22.315789,0
              -105.665535,22.305803,0
              -105.664782,22.30223,0
              -105.66349,22.296613,0
              -105.663575,22.296249,0
              -105.661868,22.288649,0
              -105.660169,22.28025,0
              -105.659279,22.275477,0
              -105.658748,22.273066,0
              -105.657355,22.265472,0
              -105.656799,22.261864,0
              -105.655737,22.256725,0
              -105.654001,22.245959,0
              -105.653649,22.244026,0
              -105.652691,22.237049,0
              -105.652214,22.234214,0
              -105.651595,22.229638,0
              -105.650523,22.222343,0
              -105.650203,22.219505,0
              -105.648988,22.212328,0
              -105.648039,22.20795,0
              -105.645702,22.200904,0
              -105.64397,22.195199,0
              -105.64313,22.191998,0
              -105.641238,22.189591,0
              -105.638244,22.188159,0
              -105.636647,22.181873,0
              -105.638365,22.182018,0
              -105.639123,22.181863,0
              -105.641477,22.180502,0
              -105.64317,22.178666,0
              -105.644856,22.17526,0
              -105.645972,22.172003,0
              -105.646379,22.169709,0
              -105.646665,22.166951,0
              -105.646978,22.161999,0
              -105.647187,22.153685,0
              -105.647085,22.150948,0
              -105.646998,22.144816,0
              -105.647049,22.141759,0
              -105.647393,22.136715,0
              -105.647693,22.126124,0
              -105.647945,22.124599,0
              -105.648277,22.119997,0
              -105.648778,22.109736,0
              -105.649815,22.098656,0
              -105.650998,22.086697,0
              -105.65182,22.080684,0
              -105.652133,22.077722,0
              -105.653406,22.062647,0
              -105.653813,22.058431,0
              -105.65404,22.048798,0
              -105.653997,22.042899,0
              -105.653373,22.033714,0
              -105.652723,22.028499,0
              -105.651899,22.02302,0
              -105.650464,22.015617,0
              -105.648549,22.00743,0
              -105.647745,22.004467,0
              -105.645478,21.997317,0
              -105.644382,21.993686,0
              -105.641832,21.986598,0
              -105.638828,21.979259,0
              -105.634818,21.970522,0
              -105.631468,21.963801,0
              -105.628342,21.957721,0
              -105.621083,21.944792,0
              -105.613993,21.933017,0
              -105.611816,21.929172,0
              -105.608289,21.923379,0
              -105.606689,21.920601,0
              -105.604281,21.916772,0
              -105.603401,21.915163,0
              -105.599746,21.909278,0
              -105.594249,21.900745,0
              -105.591863,21.897142,0
              -105.584736,21.886549,0
              -105.580898,21.880914,0
              -105.575427,21.873091,0
              -105.573059,21.869781,0
              -105.567978,21.862886,0
              -105.56179,21.854658,0
              -105.560552,21.852291,0
              -105.55819,21.848513,0
              -105.553193,21.841639,0
              -105.54929,21.835951,0
              -105.541579,21.823907,0
              -105.540311,21.822275,0
              -105.538481,21.819137,0
              -105.538084,21.818188,0
              -105.53754,21.815947,0
              -105.536238,21.814788,0
              -105.53485,21.813257,0
              -105.533271,21.811869,0
              -105.53074,21.807894,0
              -105.531275,21.806968,0
              -105.530219,21.804052,0
              -105.527111,21.798356,0
              -105.524599,21.794275,0
              -105.522944,21.79103,0
              -105.518457,21.782809,0
              -105.5167,21.779346,0
              -105.515094,21.776395,0
              -105.512888,21.771903,0
              -105.507025,21.760479,0
              -105.50359,21.753645,0
              -105.5001,21.747405,0
              -105.499136,21.745027,0
              -105.497746,21.740058,0
              -105.497286,21.738875,0
              -105.496418,21.737492,0
              -105.495645,21.735772,0
              -105.493879,21.733746,0
              -105.492644,21.733342,0
              -105.49091,21.732421,0
              -105.489391,21.730902,0
              -105.488523,21.729676,0
              -105.488623,21.72659,0
              -105.48955,21.726231,0
              -105.489797,21.724891,0
              -105.489613,21.723899,0
              -105.488681,21.721709,0
              -105.4874,21.719994,0
              -105.486237,21.716929,0
              -105.486195,21.71608,0
              -105.484199,21.711606,0
              -105.481158,21.705361,0
              -105.477513,21.698211,0
              -105.475502,21.693813,0
              -105.471864,21.686649,0
              -105.468749,21.680829,0
              -105.463843,21.670856,0
              -105.462885,21.669539,0
              -105.459911,21.663769,0
              -105.453796,21.652846,0
              -105.452077,21.649216,0
              -105.449839,21.643562,0
              -105.447771,21.639976,0
              -105.44716,21.638561,0
              -105.446908,21.636341,0
              -105.447436,21.634119,0
              -105.444675,21.629444,0
              -105.445625,21.627978,0
              -105.445427,21.626894,0
              -105.444636,21.624719,0
              -105.443794,21.623802,0
              -105.439152,21.620096,0
              -105.4358,21.61797,0
              -105.430165,21.614129,0
              -105.425551,21.610883,0
              -105.423673,21.609691,0
              -105.419616,21.606659,0
              -105.418573,21.605987,0
              -105.410563,21.599993,0
              -105.40604,21.597178,0
              -105.403461,21.596139,0
              -105.401694,21.594888,0
              -105.395469,21.591161,0
              -105.390397,21.588328,0
              -105.386655,21.586103,0
              -105.384487,21.58469,0
              -105.383727,21.584484,0
              -105.376361,21.580345,0
              -105.372975,21.578377,0
              -105.366847,21.575142,0
              -105.365046,21.574069,0
              -105.358555,21.570689,0
              -105.354488,21.56842,0
              -105.346251,21.563955,0
              -105.341268,21.56101,0
              -105.339387,21.560087,0
              -105.333393,21.556478,0
              -105.330685,21.554953,0
              -105.324805,21.551376,0
              -105.316206,21.545762,0
              -105.314875,21.544988,0
              -105.305779,21.538767,0
              -105.3008,21.53516,0
              -105.299424,21.533974,0
              -105.29639,21.532111,0
              -105.292509,21.529221,0
              -105.290824,21.527695,0
              -105.289925,21.526467,0
              -105.286772,21.529455,0
              -105.283424,21.528086,0
              -105.278659,21.524539,0
              -105.27819,21.52443,0
              -105.274789,21.521843,0
              -105.271079,21.518762,0
              -105.26779,21.515586,0
              -105.267367,21.513599,0
              -105.265501,21.512065,0
              -105.264988,21.512127,0
              -105.264681,21.513031,0
              -105.263074,21.512732,0
              -105.262174,21.513251,0
              -105.262135,21.513762,0
              -105.260541,21.514788,0
              -105.259892,21.514724,0
              -105.257341,21.515787,0
              -105.254729,21.515284,0
              -105.253861,21.514954,0
              -105.25224,21.513816,0
              -105.252313,21.51286,0
              -105.25182,21.513147,0
              -105.250599,21.512549,0
              -105.250312,21.511805,0
              -105.250255,21.513276,0
              -105.249464,21.513443,0
              -105.24813,21.512679,0
              -105.248643,21.513472,0
              -105.248288,21.514502,0
              -105.247142,21.515114,0
              -105.246965,21.515778,0
              -105.247754,21.515767,0
              -105.24815,21.517005,0
              -105.248833,21.517903,0
              -105.249304,21.519606,0
              -105.24802,21.522018,0
              -105.248636,21.522833,0
              -105.248518,21.523502,0
              -105.247633,21.524604,0
              -105.246196,21.525679,0
              -105.244056,21.526495,0
              -105.241871,21.526878,0
              -105.237483,21.527102,0
              -105.234529,21.526642,0
              -105.232317,21.525945,0
              -105.227517,21.523378,0
              -105.224762,21.521337,0
              -105.220822,21.517667,0
              -105.218743,21.515625,0
              -105.211421,21.50808,0
              -105.205923,21.501874,0
              -105.202151,21.497492,0
              -105.198515,21.492782,0
              -105.197392,21.490128,0
              -105.197276,21.488812,0
              -105.197949,21.486795,0
              -105.199692,21.484239,0
              -105.200503,21.482425,0
              -105.201396,21.481147,0
              -105.198973,21.47805,0
              -105.194452,21.472078,0
              -105.192069,21.46877,0
              -105.189734,21.46513,0
              -105.188753,21.46296,0
              -105.188679,21.461341,0
              -105.188086,21.460123,0
              -105.187908,21.457798,0
              -105.188573,21.456552,0
              -105.188251,21.454514,0
              -105.188528,21.452879,0
              -105.189068,21.451281,0
              -105.18838,21.448204,0
              -105.188279,21.446086,0
              -105.188521,21.445162,0
              -105.189324,21.443667,0
              -105.19087,21.443214,0
              -105.191427,21.441021,0
              -105.192204,21.440389,0
              -105.193974,21.436982,0
              -105.195278,21.43619,0
              -105.196651,21.436288,0
              -105.199167,21.436864,0
              -105.200374,21.436873,0
              -105.202134,21.436032,0
              -105.203187,21.43468,0
              -105.203591,21.432203,0
              -105.204193,21.430358,0
              -105.205043,21.430282,0
              -105.20617,21.429345,0
              -105.206125,21.428698,0
              -105.205453,21.427391,0
              -105.205146,21.425738,0
              -105.205305,21.425118,0
              -105.206998,21.423586,0
              -105.207534,21.421516,0
              -105.20794,21.42106,0
              -105.208314,21.418798,0
              -105.208787,21.418228,0
              -105.210159,21.417415,0
              -105.212482,21.416491,0
              -105.213917,21.41542,0
              -105.214968,21.413795,0
              -105.215409,21.411969,0
              -105.216992,21.411044,0
              -105.21801,21.410732,0
              -105.218502,21.409702,0
              -105.218592,21.407761,0
              -105.218904,21.406693,0
              -105.219383,21.406486,0
              -105.220171,21.405376,0
              -105.220271,21.404633,0
              -105.219831,21.403403,0
              -105.219496,21.401582,0
              -105.218777,21.401217,0
              -105.21821,21.396981,0
              -105.218356,21.393597,0
              -105.219125,21.390165,0
              -105.220033,21.387882,0
              -105.221753,21.385394,0
              -105.222521,21.385053,0
              -105.223985,21.384964,0
              -105.225572,21.385215,0
              -105.227769,21.385933,0
              -105.229157,21.386865,0
              -105.230697,21.38641,0
              -105.230851,21.385921,0
              -105.22985,21.385145,0
              -105.229877,21.384555,0
              -105.228992,21.383445,0
              -105.229184,21.378729,0
              -105.229832,21.375784,0
              -105.230972,21.373425,0
              -105.231954,21.372129,0
              -105.232801,21.371912,0
              -105.235856,21.373072,0
              -105.237267,21.373297,0
              -105.238128,21.373065,0
              -105.23868,21.372451,0
              -105.238714,21.371341,0
              -105.237441,21.370736,0
              -105.236936,21.366139,0
              -105.237117,21.363943,0
              -105.238741,21.362811,0
              -105.239099,21.362041,0
              -105.238452,21.360976,0
              -105.23856,21.358439,0
              -105.239122,21.357631,0
              -105.238738,21.357173,0
              -105.238801,21.355747,0
              -105.23914,21.355249,0
              -105.239768,21.352796,0
              -105.240549,21.35198,0
              -105.242204,21.351499,0
              -105.243247,21.353046,0
              -105.243863,21.353038,0
              -105.244344,21.350946,0
              -105.247138,21.347896,0
              -105.248189,21.347291,0
              -105.24739,21.346893,0
              -105.246083,21.347163,0
              -105.244671,21.346991,0
              -105.244278,21.344364,0
              -105.242419,21.339569,0
              -105.239609,21.33289,0
              -105.237535,21.327753,0
              -105.235171,21.320695,0
              -105.232798,21.312982,0
              -105.230609,21.305245,0
              -105.22828,21.295775,0
              -105.226854,21.288586,0
              -105.225987,21.285025,0
              -105.22538,21.280662,0
              -105.224749,21.276963,0
              -105.223972,21.270439,0
              -105.221181,21.254651,0
              -105.220341,21.249575,0
              -105.219589,21.24449,0
              -105.219022,21.239502,0
              -105.218724,21.236229,0
              -105.218391,21.23109,0
              -105.217984,21.223604,0
              -105.216926,21.210909,0
              -105.216382,21.205007,0
              -105.216431,21.203756,0
              -105.21691,21.201825,0
              -105.217959,21.199525,0
              -105.219369,21.19906,0
              -105.220163,21.199322,0
              -105.221966,21.198058,0
              -105.223897,21.196316,0
              -105.223925,21.194557,0
              -105.224945,21.193812,0
              -105.22479,21.19245,0
              -105.227399,21.189837,0
              -105.228085,21.188956,0
              -105.22744,21.188315,0
              -105.228153,21.187288,0
              -105.230368,21.186982,0
              -105.231215,21.186489,0
              -105.231167,21.185215,0
              -105.231439,21.183958,0
              -105.232953,21.182485,0
              -105.233274,21.179976,0
              -105.233045,21.178254,0
              -105.23243,21.17695,0
              -105.23048,21.175558,0
              -105.230215,21.174843,0
              -105.229221,21.174268,0
              -105.228413,21.17238,0
              -105.22853,21.171588,0
              -105.229379,21.170294,0
              -105.229825,21.170076,0
              -105.231554,21.171536,0
              -105.232404,21.167749,0
              -105.231989,21.166949,0
              -105.232244,21.165023,0
              -105.231671,21.164304,0
              -105.22997,21.164584,0
              -105.229122,21.164348,0
              -105.228585,21.165096,0
              -105.227442,21.165735,0
              -105.22723,21.165014,0
              -105.225809,21.165182,0
              -105.224864,21.164082,0
              -105.223941,21.162027,0
              -105.223686,21.159047,0
              -105.223801,21.158167,0
              -105.225246,21.155714,0
              -105.225887,21.154236,0
              -105.227289,21.152775,0
              -105.227564,21.151497,0
              -105.22917,21.150939,0
              -105.229549,21.149853,0
              -105.230472,21.14946,0
              -105.231655,21.149818,0
              -105.231603,21.149121,0
              -105.232743,21.145807,0
              -105.235102,21.145783,0
              -105.235932,21.145166,0
              -105.234801,21.143785,0
              -105.236126,21.140104,0
              -105.234943,21.14085,0
              -105.234091,21.140103,0
              -105.231514,21.139497,0
              -105.231281,21.138754,0
              -105.231998,21.138554,0
              -105.234145,21.137336,0
              -105.233594,21.136264,0
              -105.236493,21.134275,0
              -105.238787,21.132996,0
              -105.23895,21.130681,0
              -105.238667,21.128794,0
              -105.238789,21.127568,0
              -105.237647,21.125482,0
              -105.237675,21.123756,0
              -105.238277,21.123645,0
              -105.23773,21.123138,0
              -105.23773,21.121629,0
              -105.236411,21.121767,0
              -105.235946,21.121458,0
              -105.234033,21.120981,0
              -105.233474,21.121153,0
              -105.23244,21.120456,0
              -105.231586,21.119239,0
              -105.230995,21.119062,0
              -105.230659,21.118323,0
              -105.229858,21.117763,0
              -105.228843,21.111564,0
              -105.228502,21.107974,0
              -105.228281,21.10357,0
              -105.228357,21.099719,0
              -105.228833,21.093346,0
              -105.229158,21.090798,0
              -105.2301,21.084706,0
              -105.231155,21.079383,0
              -105.232102,21.075371,0
              -105.233475,21.070821,0
              -105.234036,21.068592,0
              -105.23713,21.059892,0
              -105.238769,21.056364,0
              -105.241544,21.051258,0
              -105.243555,21.048194,0
              -105.244161,21.047794,0
              -105.245267,21.048052,0
              -105.245524,21.047227,0
              -105.247598,21.0452,0
              -105.248267,21.044317,0
              -105.249869,21.042835,0
              -105.255277,21.03852,0
              -105.255913,21.03818,0
              -105.256565,21.038512,0
              -105.25701,21.037622,0
              -105.258964,21.035709,0
              -105.260434,21.033982,0
              -105.265864,21.028268,0
              -105.267796,21.026334,0
              -105.271079,21.024054,0
              -105.273739,21.023083,0
              -105.275613,21.023109,0
              -105.27729,21.023771,0
              -105.278618,21.024867,0
              -105.278086,21.025595,0
              -105.277519,21.027253,0
              -105.280829,21.027196,0
              -105.280972,21.028054,0
              -105.282186,21.028369,0
              -105.284976,21.026625,0
              -105.287046,21.025816,0
              -105.292281,21.024949,0
              -105.293337,21.025761,0
              -105.295386,21.02585,0
              -105.295613,21.0266,0
              -105.296806,21.026821,0
              -105.297175,21.027256,0
              -105.297671,21.029482,0
              -105.298232,21.031265,0
              -105.298773,21.03191,0
              -105.300315,21.032819,0
              -105.302692,21.033178,0
              -105.303352,21.033802,0
              -105.303062,21.034297,0
              -105.30341,21.035343,0
              -105.30466,21.035148,0
              -105.305986,21.036336,0
              -105.308501,21.036649,0
              -105.310412,21.036328,0
              -105.313102,21.034942,0
              -105.313495,21.033478,0
              -105.313079,21.032675,0
              -105.313311,21.031011,0
              -105.312973,21.030147,0
              -105.313563,21.02709,0
              -105.314272,21.022552,0
              -105.3156,21.016282,0
              -105.317075,21.010329,0
              -105.318288,21.006479,0
              -105.318915,21.005002,0
              -105.320029,21.00349,0
              -105.320783,21.001559,0
              -105.321354,21.000676,0
              -105.322069,21.000759,0
              -105.323737,20.999601,0
              -105.324935,20.997558,0
              -105.326109,20.997327,0
              -105.326766,20.996534,0
              -105.326641,20.995417,0
              -105.327449,20.99399,0
              -105.327751,20.992311,0
              -105.329873,20.98844,0
              -105.331636,20.985747,0
              -105.33349,20.983947,0
              -105.334009,20.984348,0
              -105.334854,20.983826,0
              -105.334878,20.98338,0
              -105.335789,20.983001,0
              -105.336458,20.982101,0
              -105.337856,20.98078,0
              -105.338478,20.980516,0
              -105.339318,20.979509,0
              -105.340596,20.97866,0
              -105.341758,20.978602,0
              -105.34372,20.97956,0
              -105.345226,20.979083,0
              -105.346882,20.975561,0
              -105.348237,20.973664,0
              -105.348726,20.973412,0
              -105.34984,20.971343,0
              -105.350682,20.970674,0
              -105.350453,20.969852,0
              -105.351885,20.96715,0
              -105.35225,20.966085,0
              -105.354494,20.962065,0
              -105.356743,20.958271,0
              -105.358143,20.956297,0
              -105.359104,20.955258,0
              -105.36085,20.954173,0
              -105.362018,20.953941,0
              -105.363106,20.955096,0
              -105.363654,20.955133,0
              -105.366104,20.9543,0
              -105.36686,20.9546,0
              -105.367107,20.955539,0
              -105.367723,20.954468,0
              -105.368793,20.953206,0
              -105.36946,20.952833,0
              -105.37042,20.952997,0
              -105.371697,20.950567,0
              -105.372474,20.949982,0
              -105.373568,20.948388,0
              -105.374248,20.948037,0
              -105.37494,20.947063,0
              -105.376348,20.945651,0
              -105.378985,20.944761,0
              -105.380898,20.945126,0
              -105.381467,20.944619,0
              -105.382589,20.944697,0
              -105.383509,20.944226,0
              -105.383784,20.943507,0
              -105.384622,20.942813,0
              -105.385099,20.940871,0
              -105.386054,20.93906,0
              -105.387485,20.937244,0
              -105.388989,20.936447,0
              -105.390355,20.937346,0
              -105.391251,20.936851,0
              -105.391591,20.935436,0
              -105.39301,20.933961,0
              -105.394373,20.934025,0
              -105.395744,20.933633,0
              -105.397864,20.931965,0
              -105.398728,20.932188,0
              -105.401726,20.931377,0
              -105.401794,20.929847,0
              -105.402487,20.927739,0
              -105.402886,20.927439,0
              -105.403874,20.924791,0
              -105.405432,20.921664,0
              -105.406042,20.92163,0
              -105.405889,20.920933,0
              -105.407038,20.918915,0
              -105.407799,20.918714,0
              -105.408398,20.917556,0
              -105.409959,20.916882,0
              -105.410181,20.915351,0
              -105.41153,20.913117,0
              -105.411734,20.912031,0
              -105.411214,20.911725,0
              -105.413621,20.907004,0
              -105.415939,20.901764,0
              -105.416967,20.900556,0
              -105.417834,20.898758,0
              -105.418585,20.897627,0
              -105.419511,20.897002,0
              -105.420355,20.897687,0
              -105.421231,20.897949,0
              -105.421511,20.89729,0
              -105.420798,20.89659,0
              -105.421004,20.895899,0
              -105.422217,20.893951,0
              -105.423929,20.890443,0
              -105.425592,20.886803,0
              -105.428275,20.88241,0
              -105.429584,20.881664,0
              -105.430465,20.879945,0
              -105.432028,20.877703,0
              -105.434819,20.874398,0
              -105.437093,20.872633,0
              -105.439502,20.871908,0
              -105.440641,20.870932,0
              -105.441911,20.870226,0
              -105.444053,20.870136,0
              -105.445151,20.871527,0
              -105.445055,20.872544,0
              -105.445962,20.872893,0
              -105.446264,20.872384,0
              -105.447184,20.872136,0
              -105.448128,20.872295,0
              -105.44881,20.873044,0
              -105.449765,20.873508,0
              -105.449841,20.875302,0
              -105.451031,20.876343,0
              -105.452875,20.874195,0
              -105.452601,20.873779,0
              -105.453233,20.872565,0
              -105.453869,20.870665,0
              -105.453627,20.869344,0
              -105.454012,20.868069,0
              -105.454534,20.867967,0
              -105.455035,20.866479,0
              -105.454735,20.86621,0
              -105.455561,20.863426,0
              -105.455018,20.86269,0
              -105.456346,20.858575,0
              -105.45746,20.857804,0
              -105.457902,20.85631,0
              -105.458637,20.855501,0
              -105.459684,20.855536,0
              -105.461069,20.853939,0
              -105.461067,20.85326,0
              -105.461664,20.851797,0
              -105.462387,20.851595,0
              -105.462536,20.850731,0
              -105.461692,20.849587,0
              -105.462369,20.846885,0
              -105.463605,20.843725,0
              -105.463952,20.843487,0
              -105.464174,20.841611,0
              -105.465481,20.840592,0
              -105.464819,20.839288,0
              -105.465447,20.838061,0
              -105.46551,20.836349,0
              -105.466365,20.835395,0
              -105.466185,20.834887,0
              -105.467412,20.833416,0
              -105.467633,20.832662,0
              -105.468372,20.831825,0
              -105.469671,20.831209,0
              -105.468812,20.830224,0
              -105.471036,20.828104,0
              -105.471276,20.826682,0
              -105.472133,20.826375,0
              -105.472502,20.825164,0
              -105.473493,20.824738,0
              -105.472987,20.824066,0
              -105.47348,20.822349,0
              -105.474188,20.822354,0
              -105.474942,20.821763,0
              -105.4749,20.82078,0
              -105.476156,20.819917,0
              -105.476653,20.819955,0
              -105.477168,20.818712,0
              -105.476238,20.817927,0
              -105.476478,20.816684,0
              -105.477291,20.814518,0
              -105.478385,20.813583,0
              -105.478326,20.812886,0
              -105.47895,20.811978,0
              -105.479443,20.810168,0
              -105.481953,20.805873,0
              -105.484922,20.800232,0
              -105.486681,20.797321,0
              -105.488164,20.795504,0
              -105.491661,20.791657,0
              -105.493831,20.789565,0
              -105.496339,20.788119,0
              -105.496889,20.78834,0
              -105.498269,20.787549,0
              -105.499183,20.786357,0
              -105.500714,20.784996,0
              -105.502706,20.783905,0
              -105.507256,20.782314,0
              -105.508801,20.782336,0
              -105.510699,20.782724,0
              -105.512165,20.783463,0
              -105.512802,20.784379,0
              -105.513112,20.785794,0
              -105.51508,20.786226,0
              -105.516674,20.788078,0
              -105.518321,20.78882,0
              -105.519025,20.791861,0
              -105.52021,20.792085,0
              -105.521027,20.791154,0
              -105.522241,20.790514,0
              -105.523412,20.790698,0
              -105.526781,20.788985,0
              -105.527119,20.788162,0
              -105.52846,20.787869,0
              -105.52809,20.786784,0
              -105.528451,20.785627,0
              -105.529961,20.78488,0
              -105.530154,20.784295,0
              -105.52965,20.78394,0
              -105.530266,20.782316,0
              -105.531434,20.781485,0
              -105.530867,20.78046,0
              -105.531316,20.779318,0
              -105.532277,20.778421,0
              -105.533177,20.776929,0
              -105.534651,20.776547,0
              -105.53455,20.775509,0
              -105.535299,20.77451,0
              -105.536545,20.773668,0
              -105.537847,20.771913,0
              -105.538325,20.771902,0
              -105.539353,20.770779,0
              -105.538718,20.769678,0
              -105.538635,20.76845,0
              -105.53781,20.766831,0
              -105.537526,20.765021,0
              -105.537736,20.76364,0
              -105.538245,20.762315,0
              -105.537903,20.761668,0
              -105.536713,20.760983,0
              -105.53527,20.759143,0
              -105.53509,20.757806,0
              -105.534639,20.757414,0
              -105.532779,20.757557,0
              -105.532154,20.758085,0
              -105.531725,20.759264,0
              -105.531556,20.760629,0
              -105.530493,20.762504,0
              -105.528183,20.765006,0
              -105.527508,20.765224,0
              -105.524449,20.767354,0
              -105.523901,20.768197,0
              -105.521868,20.769482,0
              -105.519627,20.771226,0
              -105.515935,20.771348,0
              -105.514291,20.771786,0
              -105.512265,20.772081,0
              -105.511002,20.771966,0
              -105.507288,20.770666,0
              -105.504055,20.769339,0
              -105.501508,20.767549,0
              -105.500384,20.767744,0
              -105.498699,20.767149,0
              -105.497332,20.765941,0
              -105.494486,20.764057,0
              -105.492569,20.76345,0
              -105.492054,20.762936,0
              -105.490136,20.761847,0
              -105.488633,20.759769,0
              -105.486796,20.759379,0
              -105.486,20.758619,0
              -105.484716,20.758229,0
              -105.483156,20.757194,0
              -105.482144,20.75621,0
              -105.481871,20.754882,0
              -105.480728,20.754733,0
              -105.478894,20.754832,0
              -105.477602,20.754511,0
              -105.477484,20.753549,0
              -105.476781,20.753994,0
              -105.475824,20.752278,0
              -105.474758,20.753121,0
              -105.473765,20.753552,0
              -105.473546,20.754057,0
              -105.471377,20.755119,0
              -105.468876,20.754611,0
              -105.467983,20.755741,0
              -105.466604,20.755804,0
              -105.465432,20.755363,0
              -105.463927,20.755213,0
              -105.463268,20.753842,0
              -105.46253,20.753752,0
              -105.459611,20.751848,0
              -105.45891,20.752789,0
              -105.457051,20.752744,0
              -105.456091,20.752045,0
              -105.452925,20.751482,0
              -105.448988,20.749924,0
              -105.446949,20.749503,0
              -105.444614,20.747951,0
              -105.443574,20.748675,0
              -105.441677,20.748351,0
              -105.440338,20.749112,0
              -105.437648,20.748324,0
              -105.435448,20.74787,0
              -105.433125,20.747561,0
              -105.431764,20.746691,0
              -105.423004,20.742044,0
              -105.42008,20.740106,0
              -105.418542,20.738944,0
              -105.413671,20.736268,0
              -105.411829,20.735465,0
              -105.410905,20.736294,0
              -105.408854,20.736382,0
              -105.408337,20.736659,0
              -105.406655,20.736577,0
              -105.406248,20.737057,0
              -105.405487,20.737037,0
              -105.403524,20.736103,0
              -105.402354,20.736268,0
              -105.401652,20.735744,0
              -105.401937,20.734991,0
              -105.400395,20.735629,0
              -105.399162,20.734651,0
              -105.398642,20.735948,0
              -105.397584,20.73586,0
              -105.397579,20.73667,0
              -105.395773,20.73788,0
              -105.394683,20.737896,0
              -105.394251,20.738836,0
              -105.392456,20.739057,0
              -105.390579,20.740569,0
              -105.388732,20.74077,0
              -105.388316,20.740386,0
              -105.387398,20.742242,0
              -105.387467,20.743008,0
              -105.3867,20.744219,0
              -105.380516,20.746839,0
              -105.376864,20.747413,0
              -105.376378,20.749054,0
              -105.377086,20.747584,0
              -105.379106,20.747216,0
              -105.37947,20.747949,0
              -105.379863,20.747121,0
              -105.380867,20.747008,0
              -105.381236,20.748799,0
              -105.38051,20.749838,0
              -105.378976,20.750428,0
              -105.377239,20.750817,0
              -105.377267,20.751124,0
              -105.375598,20.75154,0
              -105.37306,20.751106,0
              -105.371616,20.75128,0
              -105.370756,20.752246,0
              -105.370992,20.753278,0
              -105.37061,20.754538,0
              -105.370139,20.755077,0
              -105.369828,20.756275,0
              -105.368656,20.75707,0
              -105.366163,20.758014,0
              -105.365798,20.75884,0
              -105.365576,20.760454,0
              -105.364183,20.761928,0
              -105.362776,20.762482,0
              -105.358787,20.762755,0
              -105.356553,20.761998,0
              -105.354131,20.761625,0
              -105.351911,20.761077,0
              -105.350749,20.760523,0
              -105.348121,20.759897,0
              -105.346797,20.759439,0
              -105.344693,20.758375,0
              -105.340955,20.755863,0
              -105.338715,20.753726,0
              -105.335709,20.751898,0
              -105.332743,20.749646,0
              -105.329102,20.746495,0
              -105.325215,20.742692,0
              -105.319173,20.736311,0
              -105.316202,20.732897,0
              -105.313479,20.729453,0
              -105.31235,20.727869,0
              -105.309899,20.724052,0
              -105.308635,20.721864,0
              -105.306552,20.717875,0
              -105.305122,20.714502,0
              -105.301271,20.705128,0
              -105.297421,20.694293,0
              -105.296141,20.691559,0
              -105.29521,20.689222,0
              -105.293691,20.687568,0
              -105.292475,20.685754,0
              -105.290021,20.681684,0
              -105.287108,20.676536,0
              -105.286376,20.675045,0
              -105.284677,20.672651,0
              -105.283783,20.671982,0
              -105.283025,20.672318,0
              -105.281,20.671966,0
              -105.281426,20.67306,0
              -105.280534,20.673253,0
              -105.279291,20.672369,0
              -105.278254,20.672415,0
              -105.276739,20.671909,0
              -105.275551,20.672404,0
              -105.274354,20.673712,0
              -105.274361,20.675622,0
              -105.276546,20.675534,0
              -105.278394,20.675876,0
              -105.279081,20.677882,0
              -105.27938,20.679897,0
              -105.278932,20.681335,0
              -105.278405,20.681982,0
              -105.27683,20.682517,0
              -105.27578,20.683146,0
              -105.27403,20.682736,0
              -105.272423,20.68384,0
              -105.271123,20.683072,0
              -105.266516,20.679867,0
              -105.265731,20.678858,0
              -105.264714,20.678745,0
              -105.261252,20.679816,0
              -105.260344,20.680784,0
              -105.260265,20.685628,0
              -105.260642,20.68667,0
              -105.262166,20.687818,0
              -105.262684,20.689192,0
              -105.261291,20.691729,0
              -105.259831,20.692965,0
              -105.257155,20.693914,0
              -105.256257,20.695337,0
              -105.256734,20.697585,0
              -105.256929,20.699487,0
              -105.256792,20.700596,0
              -105.255947,20.702766,0
              -105.253915,20.704435,0
              -105.252877,20.704908,0
              -105.250442,20.705013,0
              -105.248655,20.704757,0
              -105.244312,20.703448,0
              -105.24333,20.703525,0
              -105.242573,20.704242,0
              -105.242013,20.705658,0
              -105.242179,20.707776,0
              -105.243372,20.709818,0
              -105.245186,20.710936,0
              -105.245866,20.711886,0
              -105.246199,20.712941,0
              -105.246027,20.714322,0
              -105.24531,20.715055,0
              -105.244129,20.71743,0
              -105.243697,20.719741,0
              -105.245206,20.722254,0
              -105.245645,20.724116,0
              -105.245552,20.724749,0
              -105.244677,20.726593,0
              -105.243925,20.726826,0
              -105.242055,20.726504,0
              -105.24107,20.726127,0
              -105.238539,20.726048,0
              -105.237256,20.726888,0
              -105.236916,20.728235,0
              -105.237373,20.730132,0
              -105.238451,20.732264,0
              -105.238509,20.735226,0
              -105.237806,20.737519,0
              -105.237719,20.738727,0
              -105.238858,20.741559,0
              -105.239533,20.744116,0
              -105.239916,20.747351,0
              -105.238748,20.748141,0
              -105.237109,20.748026,0
              -105.235166,20.747418,0
              -105.234159,20.747551,0
              -105.232763,20.748718,0
              -105.231646,20.750294,0
              -105.230688,20.75132,0
              -105.229608,20.751835,0
              -105.228063,20.752073,0
              -105.226622,20.753218,0
              -105.22553,20.753611,0
              -105.223876,20.755361,0
              -105.222854,20.756165,0
              -105.221722,20.757851,0
              -105.221377,20.75946,0
              -105.220336,20.761195,0
              -105.217736,20.762604,0
              -105.216659,20.76273,0
              -105.214481,20.763397,0
              -105.212141,20.765488,0
              -105.210131,20.766536,0
              -105.208862,20.766081,0
              -105.207817,20.764563,0
              -105.206919,20.763897,0
              -105.205825,20.764145,0
              -105.204225,20.765508,0
              -105.202215,20.766785,0
              -105.201004,20.768904,0
              -105.200793,20.77307,0
              -105.198537,20.774731,0
              -105.196961,20.777171,0
              -105.196189,20.7768,0
              -105.187593,20.773334,0
              -105.178177,20.769633,0
              -105.17605,20.768638,0
              -105.173397,20.767711,0
              -105.170632,20.774013,0
              -105.167459,20.780838,0
              -105.162276,20.792519,0
              -105.170974,20.796109,0
              -105.167557,20.803744,0
              -105.172761,20.806038,0
              -105.171183,20.810234,0
              -105.171055,20.811212,0
              -105.17232,20.811193,0
              -105.173955,20.812739,0
              -105.173943,20.813943,0
              -105.172077,20.816033,0
              -105.171186,20.816802,0
              -105.171832,20.820161,0
              -105.171341,20.821084,0
              -105.169678,20.821525,0
              -105.167085,20.820349,0
              -105.165723,20.82055,0
              -105.165427,20.821177,0
              -105.165972,20.823824,0
              -105.165706,20.825425,0
              -105.165219,20.825989,0
              -105.165075,20.827469,0
              -105.165238,20.828413,0
              -105.164553,20.829669,0
              -105.162628,20.83012,0
              -105.161636,20.83114,0
              -105.162154,20.832617,0
              -105.163582,20.833631,0
              -105.16385,20.834315,0
              -105.163644,20.83591,0
              -105.162456,20.837124,0
              -105.161409,20.838721,0
              -105.161226,20.839988,0
              -105.161097,20.843624,0
              -105.161455,20.845127,0
              -105.162279,20.846509,0
              -105.16283,20.847896,0
              -105.162788,20.84869,0
              -105.161223,20.849867,0
              -105.159016,20.84989,0
              -105.15779,20.850108,0
              -105.156971,20.850668,0
              -105.155701,20.8523,0
              -105.155405,20.853065,0
              -105.155569,20.853888,0
              -105.157092,20.855482,0
              -105.157947,20.855442,0
              -105.160113,20.856212,0
              -105.160563,20.857415,0
              -105.159435,20.858726,0
              -105.155976,20.860905,0
              -105.154514,20.860844,0
              -105.152912,20.861667,0
              -105.152622,20.862624,0
              -105.153561,20.864736,0
              -105.153914,20.867001,0
              -105.153501,20.868395,0
              -105.152966,20.86894,0
              -105.151286,20.869198,0
              -105.150067,20.868388,0
              -105.149279,20.868307,0
              -105.148191,20.868669,0
              -105.146674,20.869938,0
              -105.145883,20.871598,0
              -105.144974,20.872559,0
              -105.143112,20.873533,0
              -105.141194,20.875606,0
              -105.139954,20.880255,0
              -105.139146,20.881939,0
              -105.139428,20.882265,0
              -105.141143,20.882942,0
              -105.142548,20.883772,0
              -105.14304,20.885241,0
              -105.142874,20.885956,0
              -105.141857,20.887167,0
              -105.133513,20.88826,0
              -105.133173,20.888818,0
              -105.132166,20.889252,0
              -105.13022,20.888632,0
              -105.12811,20.889242,0
              -105.125918,20.890569,0
              -105.123173,20.89312,0
              -105.120177,20.895386,0
              -105.117928,20.896433,0
              -105.117127,20.896972,0
              -105.116729,20.897903,0
              -105.117605,20.899009,0
              -105.117671,20.900312,0
              -105.117221,20.900813,0
              -105.115484,20.900884,0
              -105.114348,20.9002,0
              -105.113084,20.899881,0
              -105.111957,20.90043,0
              -105.11145,20.901892,0
              -105.112233,20.903954,0
              -105.112182,20.904783,0
              -105.111317,20.905556,0
              -105.110186,20.906089,0
              -105.107436,20.906899,0
              -105.105682,20.907917,0
              -105.104476,20.907846,0
              -105.103974,20.90842,0
              -105.10422,20.909332,0
              -105.104903,20.910104,0
              -105.104958,20.911557,0
              -105.104493,20.912322,0
              -105.103083,20.913066,0
              -105.100777,20.913606,0
              -105.098756,20.914599,0
              -105.097389,20.915859,0
              -105.09778,20.916536,0
              -105.098975,20.917131,0
              -105.099356,20.918765,0
              -105.098641,20.919434,0
              -105.09765,20.919716,0
              -105.096035,20.919467,0
              -105.094544,20.919517,0
              -105.093466,20.919894,0
              -105.092303,20.92075,0
              -105.089865,20.921914,0
              -105.08872,20.921844,0
              -105.088238,20.923062,0
              -105.086759,20.923137,0
              -105.085533,20.923881,0
              -105.083654,20.926832,0
              -105.081155,20.92985,0
              -105.08085,20.931085,0
              -105.080337,20.931471,0
              -105.078142,20.931109,0
              -105.076062,20.929984,0
              -105.075049,20.929659,0
              -105.073525,20.928074,0
              -105.072802,20.927995,0
              -105.071492,20.92898,0
              -105.070239,20.930685,0
              -105.069356,20.931411,0
              -105.066962,20.931828,0
              -105.065871,20.931215,0
              -105.065219,20.931321,0
              -105.063378,20.93288,0
              -105.061313,20.933379,0
              -105.059883,20.93345,0
              -105.059311,20.932002,0
              -105.058143,20.930931,0
              -105.057458,20.931049,0
              -105.056313,20.931979,0
              -105.05444,20.932849,0
              -105.053828,20.932819,0
              -105.051196,20.931778,0
              -105.050206,20.931704,0
              -105.04895,20.932449,0
              -105.048203,20.934256,0
              -105.046805,20.934284,0
              -105.04592,20.933426,0
              -105.044631,20.931441,0
              -105.043524,20.931293,0
              -105.042399,20.931628,0
              -105.041361,20.931367,0
              -105.03967,20.930245,0
              -105.039163,20.929432,0
              -105.038564,20.927512,0
              -105.037085,20.92605,0
              -105.036343,20.924887,0
              -105.036319,20.923813,0
              -105.037328,20.921179,0
              -105.038724,20.919146,0
              -105.039144,20.916746,0
              -105.039073,20.913115,0
              -105.036249,20.912029,0
              -105.035436,20.911105,0
              -105.031613,20.909171,0
              -105.03018,20.909045,0
              -105.028842,20.909753,0
              -105.028439,20.91117,0
              -105.027597,20.911424,0
              -105.026199,20.911411,0
              -105.023873,20.910785,0
              -105.022577,20.910873,0
              -105.021247,20.911457,0
              -105.020184,20.913454,0
              -105.020274,20.914674,0
              -105.020737,20.915663,0
              -105.020881,20.916854,0
              -105.019949,20.918232,0
              -105.018058,20.91846,0
              -105.015875,20.917712,0
              -105.014466,20.917934,0
              -105.012055,20.918615,0
              -105.009965,20.919911,0
              -105.006809,20.922393,0
              -105.005338,20.922154,0
              -105.003928,20.919606,0
              -105.002436,20.916182,0
              -105.002158,20.915919,0
              -105.002443,20.91416,0
              -105.002276,20.913076,0
              -105.004033,20.912177,0
              -105.003952,20.911263,0
              -105.002701,20.910628,0
              -105.001869,20.910588,0
              -105.00092,20.911018,0
              -105.00025,20.911706,0
              -104.9999,20.913623,0
              -104.998236,20.915811,0
              -104.99776,20.919135,0
              -104.996878,20.919949,0
              -104.995544,20.920332,0
              -104.992583,20.920628,0
              -104.991247,20.92151,0
              -104.988781,20.921429,0
              -104.9872,20.920378,0
              -104.986654,20.919268,0
              -104.984747,20.917819,0
              -104.981875,20.914736,0
              -104.977177,20.912687,0
              -104.973945,20.911661,0
              -104.971504,20.910277,0
              -104.96983,20.909107,0
              -104.968822,20.909026,0
              -104.967244,20.909508,0
              -104.966701,20.910296,0
              -104.966449,20.913234,0
              -104.96424,20.91727,0
              -104.963894,20.919126,0
              -104.961084,20.919579,0
              -104.96055,20.919877,0
              -104.959061,20.923686,0
              -104.958478,20.924726,0
              -104.957208,20.926041,0
              -104.953392,20.92926,0
              -104.953164,20.930134,0
              -104.951596,20.930223,0
              -104.949598,20.93073,0
              -104.947663,20.931022,0
              -104.945943,20.932309,0
              -104.944499,20.932778,0
              -104.943138,20.932699,0
              -104.941242,20.935107,0
              -104.939793,20.934961,0
              -104.935436,20.935036,0
              -104.934299,20.934489,0
              -104.933085,20.935735,0
              -104.932487,20.93722,0
              -104.93094,20.937738,0
              -104.929507,20.938536,0
              -104.92834,20.939516,0
              -104.927715,20.939719,0
              -104.926017,20.939577,0
              -104.923104,20.940111,0
              -104.916805,20.94237,0
              -104.915141,20.943191,0
              -104.91423,20.943394,0
              -104.913369,20.944177,0
              -104.912766,20.944293,0
              -104.912186,20.943758,0
              -104.910663,20.943075,0
              -104.906999,20.942118,0
              -104.906473,20.942179,0
              -104.904876,20.944854,0
              -104.904269,20.945572,0
              -104.902165,20.945394,0
              -104.901385,20.945657,0
              -104.899888,20.947103,0
              -104.899108,20.948514,0
              -104.898781,20.950327,0
              -104.898605,20.95244,0
              -104.898756,20.953622,0
              -104.89936,20.954564,0
              -104.900051,20.955029,0
              -104.901723,20.955536,0
              -104.902261,20.956068,0
              -104.902176,20.958508,0
              -104.901438,20.961054,0
              -104.900627,20.962747,0
              -104.899961,20.963509,0
              -104.897068,20.965235,0
              -104.895168,20.965926,0
              -104.893448,20.967057,0
              -104.891133,20.969936,0
              -104.890913,20.97105,0
              -104.891228,20.972422,0
              -104.889542,20.973759,0
              -104.888393,20.973705,0
              -104.886298,20.973222,0
              -104.883299,20.973278,0
              -104.882749,20.973658,0
              -104.88202,20.975424,0
              -104.88115,20.975572,0
              -104.88124,20.976742,0
              -104.882166,20.977933,0
              -104.882329,20.978908,0
              -104.880812,20.98091,0
              -104.878878,20.981346,0
              -104.8764,20.981682,0
              -104.874266,20.981807,0
              -104.873505,20.982358,0
              -104.870617,20.98751,0
              -104.869007,20.990707,0
              -104.867559,20.994589,0
              -104.866869,20.995201,0
              -104.864547,20.995838,0
              -104.863352,20.995949,0
              -104.861368,20.995293,0
              -104.859803,20.99387,0
              -104.857937,20.994357,0
              -104.855598,20.995962,0
              -104.854585,20.997025,0
              -104.853987,20.998041,0
              -104.852257,20.999199,0
              -104.851297,21.000161,0
              -104.851479,21.001518,0
              -104.85335,21.003453,0
              -104.853866,21.004518,0
              -104.853656,21.004958,0
              -104.851977,21.005473,0
              -104.850343,21.005116,0
              -104.847821,21.005565,0
              -104.845206,21.006425,0
              -104.843663,21.005839,0
              -104.842119,21.006061,0
              -104.84119,21.006723,0
              -104.839678,21.012179,0
              -104.839577,21.013002,0
              -104.838347,21.013989,0
              -104.837607,21.015037,0
              -104.837436,21.016105,0
              -104.83835,21.017837,0
              -104.838479,21.019651,0
              -104.837364,21.020059,0
              -104.835389,21.019393,0
              -104.834007,21.017695,0
              -104.832964,21.014713,0
              -104.831864,21.013947,0
              -104.830736,21.014331,0
              -104.829722,21.016676,0
              -104.828164,21.018072,0
              -104.827725,21.018068,0
              -104.825243,21.016638,0
              -104.824364,21.01594,0
              -104.822666,21.015217,0
              -104.821019,21.014824,0
              -104.818263,21.014463,0
              -104.816339,21.014751,0
              -104.815564,21.01545,0
              -104.814573,21.01513,0
              -104.812704,21.01316,0
              -104.810919,21.012041,0
              -104.809412,21.012071,0
              -104.80721,21.01403,0
              -104.804438,21.014866,0
              -104.803453,21.015741,0
              -104.803194,21.016513,0
              -104.802004,21.016515,0
              -104.800721,21.015864,0
              -104.799566,21.015729,0
              -104.796994,21.014429,0
              -104.795449,21.014129,0
              -104.793264,21.015106,0
              -104.79102,21.014849,0
              -104.789322,21.015417,0
              -104.788221,21.016268,0
              -104.787005,21.018061,0
              -104.785809,21.019227,0
              -104.783608,21.020242,0
              -104.783607,21.022771,0
              -104.782462,21.023359,0
              -104.780631,21.021937,0
              -104.779391,21.021182,0
              -104.778213,21.018922,0
              -104.777814,21.017519,0
              -104.775079,21.017531,0
              -104.774162,21.016,0
              -104.774354,21.013692,0
              -104.773312,21.010475,0
              -104.772904,21.009627,0
              -104.771712,21.008601,0
              -104.769209,21.009223,0
              -104.76693,21.010624,0
              -104.765768,21.00996,0
              -104.762575,21.008892,0
              -104.761752,21.009228,0
              -104.761015,21.011408,0
              -104.760288,21.011913,0
              -104.756753,21.012336,0
              -104.75535,21.012375,0
              -104.754025,21.012053,0
              -104.752499,21.01228,0
              -104.751412,21.011821,0
              -104.750893,21.011057,0
              -104.750527,21.009401,0
              -104.749902,21.00904,0
              -104.746245,21.008294,0
              -104.745319,21.008727,0
              -104.744842,21.007094,0
              -104.743608,21.006509,0
              -104.741395,21.006033,0
              -104.739241,21.006142,0
              -104.734964,21.007806,0
              -104.73419,21.007977,0
              -104.732023,21.010341,0
              -104.732072,21.01161,0
              -104.731371,21.012477,0
              -104.729989,21.012288,0
              -104.728473,21.011405,0
              -104.728553,21.009414,0
              -104.728228,21.007459,0
              -104.726129,21.006692,0
              -104.725616,21.006208,0
              -104.725149,21.004777,0
              -104.725761,21.003745,0
              -104.726874,21.003444,0
              -104.726955,21.001995,0
              -104.7257,21.001228,0
              -104.725205,21.000527,0
              -104.725148,20.9994,0
              -104.725506,20.997966,0
              -104.72674,20.99687,0
              -104.727982,20.99505,0
              -104.726705,20.993855,0
              -104.726224,20.992993,0
              -104.72617,20.99145,0
              -104.726974,20.990012,0
              -104.727738,20.987627,0
              -104.727834,20.986668,0
              -104.728465,20.985743,0
              -104.729381,20.985183,0
              -104.729686,20.984236,0
              -104.729363,20.983154,0
              -104.727426,20.982536,0
              -104.723209,20.982803,0
              -104.721606,20.982657,0
              -104.719877,20.981992,0
              -104.71781,20.981811,0
              -104.715076,20.979929,0
              -104.714438,20.979331,0
              -104.714142,20.978445,0
              -104.71451,20.977155,0
              -104.716158,20.974928,0
              -104.715001,20.973883,0
              -104.713432,20.97334,0
              -104.710531,20.974453,0
              -104.70889,20.974417,0
              -104.707465,20.973135,0
              -104.707017,20.971599,0
              -104.708591,20.970331,0
              -104.708298,20.969597,0
              -104.705711,20.966852,0
              -104.702543,20.967234,0
              -104.700781,20.966543,0
              -104.698479,20.965353,0
              -104.69765,20.965366,0
              -104.696941,20.964387,0
              -104.694886,20.962847,0
              -104.69262,20.961674,0
              -104.690278,20.961931,0
              -104.686158,20.961982,0
              -104.684123,20.961911,0
              -104.682768,20.961574,0
              -104.681058,20.960667,0
              -104.680168,20.959526,0
              -104.678947,20.957219,0
              -104.678667,20.954698,0
              -104.67892,20.95357,0
              -104.680207,20.952267,0
              -104.681531,20.952102,0
              -104.681735,20.951684,0
              -104.681545,20.949958,0
              -104.682658,20.949159,0
              -104.682462,20.947478,0
              -104.681841,20.945876,0
              -104.681778,20.944882,0
              -104.681,20.943841,0
              -104.677697,20.943066,0
              -104.67568,20.942797,0
              -104.672494,20.942949,0
              -104.670111,20.941651,0
              -104.669141,20.941308,0
              -104.667165,20.941439,0
              -104.665582,20.942319,0
              -104.664326,20.943264,0
              -104.662452,20.944027,0
              -104.661441,20.943977,0
              -104.661519,20.942159,0
              -104.662214,20.939386,0
              -104.661697,20.937763,0
              -104.660761,20.936555,0
              -104.659608,20.935487,0
              -104.658954,20.934018,0
              -104.658126,20.933226,0
              -104.656375,20.932391,0
              -104.65472,20.932019,0
              -104.652864,20.932169,0
              -104.651696,20.932719,0
              -104.649594,20.933078,0
              -104.648304,20.934215,0
              -104.647622,20.93449,0
              -104.647015,20.935411,0
              -104.645762,20.93527,0
              -104.644124,20.93458,0
              -104.6412,20.933983,0
              -104.639142,20.934224,0
              -104.638094,20.934125,0
              -104.636794,20.933398,0
              -104.634577,20.931852,0
              -104.633112,20.929029,0
              -104.633569,20.928551,0
              -104.632164,20.926687,0
              -104.630801,20.925597,0
              -104.629561,20.925041,0
              -104.629422,20.924335,0
              -104.628533,20.923866,0
              -104.627507,20.923931,0
              -104.624943,20.924958,0
              -104.622661,20.926335,0
              -104.620517,20.925451,0
              -104.619039,20.923794,0
              -104.617764,20.923617,0
              -104.616964,20.923142,0
              -104.61357,20.923037,0
              -104.611838,20.923212,0
              -104.610809,20.92439,0
              -104.610716,20.925568,0
              -104.610202,20.925884,0
              -104.607138,20.926232,0
              -104.603894,20.928891,0
              -104.601782,20.931067,0
              -104.600013,20.931518,0
              -104.59822,20.931189,0
              -104.597184,20.931344,0
              -104.595683,20.93202,0
              -104.594,20.931942,0
              -104.592225,20.931424,0
              -104.59151,20.931531,0
              -104.591151,20.93285,0
              -104.591215,20.934347,0
              -104.590736,20.934619,0
              -104.589011,20.933878,0
              -104.587124,20.933606,0
              -104.585388,20.934144,0
              -104.583482,20.934438,0
              -104.580712,20.933842,0
              -104.578854,20.933686,0
              -104.578166,20.933951,0
              -104.577417,20.933046,0
              -104.576292,20.930707,0
              -104.57419,20.929967,0
              -104.572976,20.929856,0
              -104.571663,20.930222,0
              -104.570896,20.930882,0
              -104.56983,20.93103,0
              -104.568589,20.93043,0
              -104.565737,20.927711,0
              -104.565344,20.926933,0
              -104.564526,20.926271,0
              -104.560208,20.92615,0
              -104.558251,20.924569,0
              -104.556922,20.924152,0
              -104.55691,20.923017,0
              -104.557556,20.9215,0
              -104.55697,20.9202,0
              -104.555943,20.920034,0
              -104.555676,20.919455,0
              -104.555711,20.918115,0
              -104.555032,20.917635,0
              -104.552688,20.91704,0
              -104.5521,20.91753,0
              -104.55114,20.917077,0
              -104.549968,20.915867,0
              -104.549735,20.915196,0
              -104.548723,20.914452,0
              -104.54687,20.91395,0
              -104.544989,20.912717,0
              -104.542852,20.91194,0
              -104.542584,20.911314,0
              -104.542737,20.90869,0
              -104.54398,20.905971,0
              -104.544967,20.903237,0
              -104.544572,20.900644,0
              -104.543756,20.899805,0
              -104.543733,20.898006,0
              -104.542647,20.897209,0
              -104.539616,20.897537,0
              -104.538066,20.897137,0
              -104.535719,20.895858,0
              -104.536026,20.893892,0
              -104.534585,20.891542,0
              -104.534123,20.890355,0
              -104.533289,20.889662,0
              -104.533621,20.888695,0
              -104.534594,20.888295,0
              -104.535083,20.886628,0
              -104.53408,20.885378,0
              -104.534625,20.884036,0
              -104.534072,20.88349,0
              -104.532289,20.883087,0
              -104.531765,20.882567,0
              -104.531065,20.882661,0
              -104.529318,20.884682,0
              -104.529028,20.885634,0
              -104.528199,20.885868,0
              -104.526496,20.885566,0
              -104.524442,20.885762,0
              -104.523459,20.884096,0
              -104.523195,20.882949,0
              -104.523441,20.882294,0
              -104.524642,20.880941,0
              -104.524763,20.880499,0
              -104.522564,20.879708,0
              -104.522226,20.878895,0
              -104.521896,20.876734,0
              -104.521618,20.876557,0
              -104.521898,20.875208,0
              -104.52123,20.873174,0
              -104.51956,20.870338,0
              -104.520011,20.870106,0
              -104.519492,20.869151,0
              -104.51824,20.867995,0
              -104.515378,20.867167,0
              -104.513727,20.866147,0
              -104.513289,20.863333,0
              -104.512588,20.861485,0
              -104.510606,20.859657,0
              -104.509007,20.859589,0
              -104.507251,20.861253,0
              -104.506394,20.860845,0
              -104.506029,20.8591,0
              -104.50476,20.855484,0
              -104.504222,20.851497,0
              -104.504155,20.850259,0
              -104.503749,20.848512,0
              -104.504259,20.846834,0
              -104.503638,20.846122,0
              -104.502345,20.8459,0
              -104.501582,20.845359,0
              -104.501749,20.844484,0
              -104.502837,20.843067,0
              -104.503217,20.841816,0
              -104.500321,20.839919,0
              -104.499806,20.838817,0
              -104.499938,20.838186,0
              -104.498181,20.838784,0
              -104.495907,20.838178,0
              -104.495239,20.838233,0
              -104.493899,20.838974,0
              -104.492095,20.837911,0
              -104.491646,20.836886,0
              -104.490138,20.835019,0
              -104.487067,20.834336,0
              -104.48484,20.832908,0
              -104.484226,20.831576,0
              -104.484526,20.82963,0
              -104.483363,20.826992,0
              -104.482434,20.826106,0
              -104.480874,20.825715,0
              -104.480083,20.824522,0
              -104.480319,20.823256,0
              -104.479076,20.822552,0
              -104.475852,20.823022,0
              -104.475591,20.821731,0
              -104.476365,20.82027,0
              -104.477055,20.819911,0
              -104.476425,20.819503,0
              -104.475189,20.819502,0
              -104.474247,20.819907,0
              -104.47138,20.818139,0
              -104.468973,20.817064,0
              -104.468426,20.816348,0
              -104.466816,20.815276,0
              -104.464306,20.813991,0
              -104.460025,20.813103,0
              -104.460167,20.811944,0
              -104.462956,20.811259,0
              -104.462805,20.8103,0
              -104.461978,20.809659,0
              -104.460141,20.809138,0
              -104.458404,20.808985,0
              -104.458049,20.80718,0
              -104.458409,20.806516,0
              -104.455479,20.806779,0
              -104.454247,20.80526,0
              -104.451483,20.804011,0
              -104.449866,20.803564,0
              -104.447902,20.803611,0
              -104.446596,20.804278,0
              -104.444374,20.80593,0
              -104.441677,20.807421,0
              -104.440954,20.807651,0
              -104.439596,20.806651,0
              -104.438613,20.805292,0
              -104.437099,20.80526,0
              -104.436635,20.805807,0
              -104.435736,20.805765,0
              -104.435395,20.805325,0
              -104.434961,20.80347,0
              -104.434987,20.802554,0
              -104.434481,20.801939,0
              -104.43434,20.800402,0
              -104.43208,20.798984,0
              -104.430711,20.797718,0
              -104.429315,20.796788,0
              -104.429099,20.796054,0
              -104.429305,20.793968,0
              -104.428845,20.791924,0
              -104.42726,20.791022,0
              -104.42551,20.790681,0
              -104.424538,20.790785,0
              -104.42337,20.791287,0
              -104.421504,20.792752,0
              -104.420132,20.794454,0
              -104.419442,20.795925,0
              -104.418583,20.79632,0
              -104.417673,20.796068,0
              -104.416979,20.795235,0
              -104.414125,20.79377,0
              -104.413813,20.793,0
              -104.412688,20.792226,0
              -104.412524,20.789952,0
              -104.412019,20.789631,0
              -104.409488,20.788967,0
              -104.407342,20.787718,0
              -104.404818,20.786462,0
              -104.403197,20.785801,0
              -104.402848,20.784024,0
              -104.400912,20.782561,0
              -104.39981,20.782133,0
              -104.398973,20.782235,0
              -104.397557,20.781673,0
              -104.396622,20.780837,0
              -104.395989,20.778907,0
              -104.395013,20.774425,0
              -104.392731,20.773362,0
              -104.391403,20.772561,0
              -104.391348,20.771653,0
              -104.390765,20.770161,0
              -104.388677,20.768004,0
              -104.387233,20.767841,0
              -104.384712,20.767009,0
              -104.384005,20.766111,0
              -104.384228,20.765595,0
              -104.385783,20.764273,0
              -104.385982,20.763212,0
              -104.384759,20.762156,0
              -104.383626,20.761691,0
              -104.382756,20.760751,0
              -104.381621,20.758109,0
              -104.379761,20.756395,0
              -104.378943,20.755192,0
              -104.378148,20.752664,0
              -104.377328,20.750915,0
              -104.376728,20.748694,0
              -104.37662,20.74691,0
              -104.378161,20.744086,0
              -104.378107,20.742933,0
              -104.376439,20.741675,0
              -104.375561,20.741348,0
              -104.373115,20.741275,0
              -104.371392,20.74146,0
              -104.368707,20.74327,0
              -104.367142,20.744737,0
              -104.364884,20.745035,0
              -104.36209,20.743436,0
              -104.361545,20.74283,0
              -104.360872,20.739348,0
              -104.360304,20.738421,0
              -104.359529,20.738035,0
              -104.358996,20.737145,0
              -104.358385,20.737184,0
              -104.356743,20.736516,0
              -104.356182,20.735847,0
              -104.35486,20.735588,0
              -104.354006,20.736043,0
              -104.353361,20.73595,0
              -104.353139,20.73441,0
              -104.353249,20.732625,0
              -104.353009,20.731724,0
              -104.351789,20.729073,0
              -104.350246,20.726925,0
              -104.350042,20.726029,0
              -104.350798,20.72534,0
              -104.349417,20.725243,0
              -104.348384,20.724478,0
              -104.346132,20.723908,0
              -104.344863,20.723398,0
              -104.343411,20.722514,0
              -104.341085,20.722263,0
              -104.340021,20.722437,0
              -104.339115,20.721387,0
              -104.337077,20.721769,0
              -104.335894,20.721455,0
              -104.334,20.720517,0
              -104.334158,20.719561,0
              -104.333406,20.718589,0
              -104.332738,20.718295,0
              -104.33246,20.71701,0
              -104.329337,20.716231,0
              -104.327561,20.716296,0
              -104.326585,20.717651,0
              -104.324967,20.717724,0
              -104.323764,20.717319,0
              -104.323115,20.716405,0
              -104.323284,20.714496,0
              -104.321853,20.713282,0
              -104.321183,20.713167,0
              -104.319567,20.713662,0
              -104.31851,20.713485,0
              -104.317807,20.712215,0
              -104.317543,20.711071,0
              -104.316651,20.710195,0
              -104.31593,20.708659,0
              -104.316389,20.706961,0
              -104.313531,20.705941,0
              -104.312741,20.705285,0
              -104.311169,20.704907,0
              -104.310294,20.704122,0
              -104.309039,20.703658,0
              -104.308968,20.702511,0
              -104.308407,20.701508,0
              -104.307319,20.700264,0
              -104.307349,20.699031,0
              -104.30783,20.698565,0
              -104.308102,20.697262,0
              -104.307795,20.696578,0
              -104.305886,20.695435,0
              -104.305646,20.69417,0
              -104.303574,20.692696,0
              -104.302552,20.693037,0
              -104.301447,20.692912,0
              -104.298873,20.692175,0
              -104.297918,20.691582,0
              -104.29604,20.692299,0
              -104.294928,20.692511,0
              -104.293244,20.691869,0
              -104.292185,20.691248,0
              -104.290223,20.690793,0
              -104.288258,20.688887,0
              -104.287073,20.687151,0
              -104.287661,20.684701,0
              -104.288921,20.683854,0
              -104.289137,20.681446,0
              -104.288016,20.679851,0
              -104.288499,20.678744,0
              -104.288476,20.677403,0
              -104.287898,20.676668,0
              -104.288429,20.6754,0
              -104.288167,20.674601,0
              -104.286627,20.672573,0
              -104.284918,20.671594,0
              -104.28456,20.670619,0
              -104.284863,20.66954,0
              -104.286426,20.668329,0
              -104.286004,20.667082,0
              -104.286399,20.665549,0
              -104.287091,20.664954,0
              -104.287694,20.66389,0
              -104.288026,20.662207,0
              -104.287956,20.660408,0
              -104.287269,20.65891,0
              -104.28624,20.658492,0
              -104.28514,20.658659,0
              -104.284252,20.658311,0
              -104.283105,20.657077,0
              -104.283088,20.655689,0
              -104.284873,20.653752,0
              -104.284769,20.652887,0
              -104.283828,20.651636,0
              -104.283285,20.650354,0
              -104.281421,20.648897,0
              -104.280577,20.646357,0
              -104.281265,20.644823,0
              -104.282325,20.644201,0
              -104.282399,20.642875,0
              -104.281743,20.642183,0
              -104.281582,20.640817,0
              -104.282475,20.639198,0
              -104.282464,20.636939,0
              -104.282799,20.636228,0
              -104.281064,20.635862,0
              -104.280893,20.634188,0
              -104.281366,20.632544,0
              -104.281816,20.632138,0
              -104.281338,20.631256,0
              -104.282011,20.628993,0
              -104.281041,20.628383,0
              -104.280104,20.628173,0
              -104.279829,20.627687,0
              -104.2798,20.62526,0
              -104.279164,20.624219,0
              -104.27785,20.62302,0
              -104.275766,20.622712,0
              -104.274994,20.622165,0
              -104.274988,20.621117,0
              -104.275493,20.619999,0
              -104.275147,20.619139,0
              -104.275097,20.617358,0
              -104.274458,20.616603,0
              -104.273047,20.615652,0
              -104.268483,20.614846,0
              -104.266998,20.614182,0
              -104.266423,20.613665,0
              -104.2651,20.611515,0
              -104.263691,20.609562,0
              -104.262786,20.608732,0
              -104.260438,20.607169,0
              -104.259517,20.60508,0
              -104.25871,20.604287,0
              -104.257236,20.603513,0
              -104.254146,20.603221,0
              -104.25364,20.603419,0
              -104.25357,20.604295,0
              -104.252657,20.606077,0
              -104.252908,20.607442,0
              -104.251754,20.607844,0
              -104.251505,20.608283,0
              -104.252172,20.608583,0
              -104.252119,20.60924,0
              -104.252701,20.609955,0
              -104.254056,20.610148,0
              -104.254377,20.610741,0
              -104.255441,20.610804,0
              -104.255314,20.612528,0
              -104.25308,20.612786,0
              -104.252757,20.613954,0
              -104.252498,20.613368,0
              -104.25193,20.614488,0
              -104.252424,20.614729,0
              -104.252372,20.616561,0
              -104.253047,20.618233,0
              -104.254064,20.617818,0
              -104.254748,20.61838,0
              -104.254346,20.621461,0
              -104.253943,20.625575,0
              -104.253908,20.628996,0
              -104.253767,20.630608,0
              -104.249865,20.629585,0
              -104.248023,20.629364,0
              -104.2476,20.629571,0
              -104.246924,20.631492,0
              -104.247179,20.63237,0
              -104.248229,20.632773,0
              -104.2496,20.634519,0
              -104.2505,20.635181,0
              -104.252876,20.635799,0
              -104.2546,20.636886,0
              -104.255822,20.63809,0
              -104.260242,20.641328,0
              -104.26039,20.642836,0
              -104.259333,20.644223,0
              -104.257932,20.644856,0
              -104.257129,20.645914,0
              -104.256768,20.649282,0
              -104.256237,20.651966,0
              -104.255307,20.653283,0
              -104.253627,20.654268,0
              -104.250322,20.65518,0
              -104.247013,20.656727,0
              -104.244384,20.658111,0
              -104.24085,20.65935,0
              -104.237994,20.66071,0
              -104.236662,20.662261,0
              -104.236383,20.663722,0
              -104.236982,20.665089,0
              -104.23788,20.665751,0
              -104.240904,20.667101,0
              -104.243431,20.668025,0
              -104.24458,20.66864,0
              -104.24578,20.669609,0
              -104.246902,20.670908,0
              -104.247221,20.671711,0
              -104.246154,20.671527,0
              -104.245789,20.673814,0
              -104.252292,20.680651,0
              -104.25316,20.682296,0
              -104.252381,20.683594,0
              -104.247896,20.686464,0
              -104.247891,20.687688,0
              -104.247078,20.688104,0
              -104.24799,20.689682,0
              -104.246041,20.690562,0
              -104.245593,20.691578,0
              -104.244493,20.692206,0
              -104.243298,20.691746,0
              -104.24278,20.694289,0
              -104.243702,20.69407,0
              -104.24418,20.695017,0
              -104.245238,20.696021,0
              -104.244765,20.69648,0
              -104.245748,20.696519,0
              -104.247518,20.697657,0
              -104.248149,20.699628,0
              -104.247497,20.700809,0
              -104.247749,20.701278,0
              -104.247207,20.701763,0
              -104.247552,20.70392,0
              -104.247378,20.705574,0
              -104.245272,20.707625,0
              -104.243955,20.707745,0
              -104.242507,20.708389,0
              -104.242111,20.709351,0
              -104.241429,20.709985,0
              -104.242234,20.710555,0
              -104.242404,20.711525,0
              -104.241843,20.712739,0
              -104.242223,20.715151,0
              -104.243804,20.715704,0
              -104.245479,20.716556,0
              -104.246576,20.718278,0
              -104.24697,20.720847,0
              -104.24684,20.722189,0
              -104.24704,20.723296,0
              -104.246835,20.724897,0
              -104.247633,20.726337,0
              -104.249954,20.728226,0
              -104.252481,20.729693,0
              -104.254181,20.730403,0
              -104.257503,20.733285,0
              -104.259155,20.734443,0
              -104.259861,20.735331,0
              -104.263315,20.743453,0
              -104.265549,20.749711,0
              -104.266402,20.751563,0
              -104.272781,20.767077,0
              -104.274475,20.769987,0
              -104.28002,20.768928,0
              -104.280848,20.772278,0
              -104.282856,20.783481,0
              -104.284507,20.782143,0
              -104.287859,20.781363,0
              -104.289911,20.781341,0
              -104.291974,20.77802,0
              -104.292282,20.776419,0
              -104.292173,20.774825,0
              -104.290199,20.773011,0
              -104.291547,20.770635,0
              -104.292847,20.771044,0
              -104.296112,20.771475,0
              -104.297617,20.770795,0
              -104.304416,20.776315,0
              -104.307347,20.779069,0
              -104.310583,20.781863,0
              -104.315224,20.786391,0
              -104.328322,20.798098,0
              -104.334123,20.791977,0
              -104.335646,20.789933,0
              -104.337796,20.789858,0
              -104.340656,20.790386,0
              -104.34429,20.790575,0
              -104.345397,20.790984,0
              -104.345016,20.792355,0
              -104.345828,20.793168,0
              -104.347752,20.79286,0
              -104.348824,20.792399,0
              -104.349498,20.791764,0
              -104.350887,20.791715,0
              -104.351192,20.791234,0
              -104.354844,20.79139,0
              -104.356648,20.791086,0
              -104.358249,20.790533,0
              -104.359397,20.788825,0
              -104.358923,20.788507,0
              -104.359617,20.788099,0
              -104.360882,20.786799,0
              -104.36144,20.785413,0
              -104.36317,20.784685,0
              -104.363897,20.784151,0
              -104.364981,20.783979,0
              -104.366976,20.782555,0
              -104.367025,20.781787,0
              -104.36754,20.781745,0
              -104.36773,20.781022,0
              -104.369292,20.779849,0
              -104.37198,20.778729,0
              -104.373211,20.777177,0
              -104.374069,20.776694,0
              -104.37522,20.775439,0
              -104.375892,20.784073,0
              -104.350402,20.811644,0
              -104.362495,20.814143,0
              -104.364059,20.813933,0
              -104.363003,20.815724,0
              -104.3608,20.818595,0
              -104.360269,20.819845,0
              -104.358525,20.819408,0
              -104.357105,20.819874,0
              -104.357157,20.821732,0
              -104.3578,20.822925,0
              -104.358827,20.823735,0
              -104.358713,20.825459,0
              -104.35895,20.826466,0
              -104.358965,20.829154,0
              -104.358609,20.830852,0
              -104.358907,20.831626,0
              -104.358356,20.834337,0
              -104.359405,20.835228,0
              -104.359564,20.836167,0
              -104.361739,20.838457,0
              -104.362218,20.840136,0
              -104.362008,20.840698,0
              -104.360964,20.841048,0
              -104.359552,20.840038,0
              -104.359121,20.840241,0
              -104.359937,20.84131,0
              -104.35999,20.841926,0
              -104.358745,20.841753,0
              -104.358521,20.842755,0
              -104.356971,20.84315,0
              -104.356011,20.843718,0
              -104.354214,20.842754,0
              -104.353568,20.842787,0
              -104.352356,20.843557,0
              -104.349994,20.845698,0
              -104.348971,20.84557,0
              -104.347159,20.844862,0
              -104.346215,20.846242,0
              -104.345241,20.846394,0
              -104.342482,20.845314,0
              -104.342438,20.844243,0
              -104.341027,20.844637,0
              -104.339949,20.844632,0
              -104.338777,20.84571,0
              -104.337124,20.845626,0
              -104.336355,20.84614,0
              -104.334728,20.846664,0
              -104.333382,20.846173,0
              -104.333254,20.844471,0
              -104.332204,20.843691,0
              -104.332067,20.84298,0
              -104.331168,20.842584,0
              -104.328111,20.842284,0
              -104.326821,20.841329,0
              -104.325903,20.841259,0
              -104.32463,20.84163,0
              -104.323691,20.841239,0
              -104.322521,20.841292,0
              -104.320974,20.839375,0
              -104.320316,20.839019,0
              -104.318417,20.838573,0
              -104.31709,20.839121,0
              -104.317028,20.839913,0
              -104.316247,20.840557,0
              -104.315037,20.840788,0
              -104.313878,20.839979,0
              -104.312617,20.840416,0
              -104.312695,20.841075,0
              -104.31218,20.841896,0
              -104.312673,20.842967,0
              -104.312343,20.84343,0
              -104.310414,20.844068,0
              -104.309271,20.845063,0
              -104.308846,20.845813,0
              -104.309028,20.846565,0
              -104.308105,20.846773,0
              -104.306771,20.84607,0
              -104.304782,20.847053,0
              -104.304041,20.845993,0
              -104.302089,20.845719,0
              -104.301036,20.846102,0
              -104.299787,20.847248,0
              -104.298231,20.847436,0
              -104.297036,20.846569,0
              -104.296987,20.846009,0
              -104.296051,20.845388,0
              -104.295416,20.845496,0
              -104.295028,20.84623,0
              -104.295431,20.847353,0
              -104.295119,20.847882,0
              -104.292426,20.847875,0
              -104.292339,20.848781,0
              -104.291106,20.848432,0
              -104.290209,20.849015,0
              -104.290374,20.849794,0
              -104.290737,20.855581,0
              -104.290693,20.862341,0
              -104.289753,20.862969,0
              -104.286719,20.864034,0
              -104.28126,20.864222,0
              -104.279979,20.864103,0
              -104.279111,20.864519,0
              -104.281853,20.868993,0
              -104.284169,20.873381,0
              -104.285553,20.875282,0
              -104.285845,20.877265,0
              -104.286253,20.878434,0
              -104.287005,20.878933,0
              -104.287366,20.88226,0
              -104.287853,20.882828,0
              -104.288408,20.885342,0
              -104.289498,20.886019,0
              -104.290904,20.887527,0
              -104.290741,20.887893,0
              -104.289541,20.888031,0
              -104.284038,20.887278,0
              -104.281833,20.887199,0
              -104.2775,20.88732,0
              -104.275894,20.88723,0
              -104.269833,20.887381,0
              -104.268451,20.887263,0
              -104.267036,20.88797,0
              -104.26425,20.890255,0
              -104.262446,20.891582,0
              -104.258447,20.894829,0
              -104.256208,20.896893,0
              -104.251161,20.902984,0
              -104.249885,20.904348,0
              -104.24823,20.906872,0
              -104.247086,20.909883,0
              -104.24667,20.914388,0
              -104.246798,20.915776,0
              -104.247216,20.916687,0
              -104.247433,20.918803,0
              -104.247251,20.919795,0
              -104.246452,20.921245,0
              -104.245166,20.922162,0
              -104.242327,20.923223,0
              -104.240618,20.924241,0
              -104.237731,20.925279,0
              -104.23652,20.926194,0
              -104.233906,20.929114,0
              -104.230085,20.931977,0
              -104.228753,20.935582,0
              -104.226649,20.936624,0
              -104.221072,20.941526,0
              -104.218756,20.940696,0
              -104.216903,20.94091,0
              -104.215406,20.940299,0
              -104.211697,20.938014,0
              -104.207201,20.935966,0
              -104.206588,20.936373,0
              -104.206072,20.938436,0
              -104.206567,20.939529,0
              -104.207761,20.940375,0
              -104.207486,20.941085,0
              -104.206751,20.941348,0
              -104.207478,20.942149,0
              -104.20662,20.946109,0
              -104.207035,20.946467,0
              -104.207684,20.95043,0
              -104.207974,20.951055,0
              -104.207426,20.951512,0
              -104.204616,20.951965,0
              -104.204526,20.954932,0
              -104.202731,20.955588,0
              -104.201059,20.95732,0
              -104.201306,20.959242,0
              -104.204842,20.959901,0
              -104.208865,20.959652,0
              -104.210669,20.960338,0
              -104.218559,20.96028,0
              -104.227142,20.964984,0
              -104.227887,20.967169,0
              -104.233129,20.968743,0
              -104.234083,20.971052,0
              -104.23431,20.974052,0
              -104.235919,20.975603,0
              -104.236538,20.97731,0
              -104.235964,20.980685,0
              -104.238101,20.984177,0
              -104.237535,20.985325,0
              -104.236939,20.989438,0
              -104.236664,20.990295,0
              -104.238525,20.991715,0
              -104.23762,20.993499,0
              -104.235529,20.994209,0
              -104.235536,20.994747,0
              -104.234807,20.996179,0
              -104.234159,20.996716,0
              -104.234261,20.997454,0
              -104.233871,20.998331,0
              -104.232736,20.998005,0
              -104.231963,20.998684,0
              -104.231186,20.998691,0
              -104.228039,20.996666,0
              -104.224975,20.996115,0
              -104.22529,20.997412,0
              -104.223196,21.001264,0
              -104.224317,21.004433,0
              -104.225268,21.005698,0
              -104.224589,21.006213,0
              -104.224272,21.007558,0
              -104.228894,21.013508,0
              -104.228642,21.013973,0
              -104.229593,21.01627,0
              -104.232681,21.017728,0
              -104.233337,21.017653,0
              -104.234983,21.020171,0
              -104.235869,21.02065,0
              -104.236131,21.020164,0
              -104.237076,21.021453,0
              -104.237647,21.021242,0
              -104.238974,21.02189,0
              -104.239546,21.021535,0
              -104.24073,21.02172,0
              -104.241641,21.023423,0
              -104.241355,21.025115,0
              -104.241998,21.025724,0
              -104.242713,21.027332,0
              -104.24184,21.028598,0
              -104.239697,21.027859,0
              -104.238314,21.028966,0
              -104.235955,21.031549,0
              -104.234941,21.033472,0
              -104.234645,21.035032,0
              -104.234803,21.036678,0
              -104.236151,21.038961,0
              -104.235798,21.04012,0
              -104.233945,21.041205,0
              -104.232861,21.0412,0
              -104.231209,21.041661,0
              -104.230153,21.042555,0
              -104.22807,21.042953,0
              -104.22655,21.044296,0
              -104.227365,21.045736,0
              -104.226969,21.047124,0
              -104.225335,21.048061,0
              -104.224868,21.049833,0
              -104.225164,21.050527,0
              -104.227442,21.050889,0
              -104.227995,21.050326,0
              -104.230776,21.051029,0
              -104.231053,21.04919,0
              -104.231619,21.050555,0
              -104.238395,21.052273,0
              -104.237814,21.056081,0
              -104.239236,21.057072,0
              -104.234793,21.067681,0
              -104.233124,21.067005,0
              -104.231603,21.067762,0
              -104.230863,21.066945,0
              -104.229128,21.066153,0
              -104.225407,21.067962,0
              -104.22181,21.070025,0
              -104.222605,21.07348,0
              -104.220571,21.075585,0
              -104.22043,21.076373,0
              -104.219853,21.076648,0
              -104.218717,21.078595,0
              -104.219852,21.080118,0
              -104.219238,21.080533,0
              -104.219132,21.08137,0
              -104.217533,21.08291,0
              -104.216719,21.085791,0
              -104.218299,21.087845,0
              -104.217879,21.088434,0
              -104.218461,21.089655,0
              -104.218096,21.089895,0
              -104.217895,21.091086,0
              -104.218407,21.09202,0
              -104.218062,21.092871,0
              -104.218836,21.093549,0
              -104.219718,21.095447,0
              -104.221423,21.097893,0
              -104.220843,21.101363,0
              -104.218774,21.102421,0
              -104.216933,21.104054,0
              -104.217617,21.104865,0
              -104.216472,21.10574,0
              -104.216163,21.106718,0
              -104.214749,21.107349,0
              -104.214498,21.108173,0
              -104.214857,21.108989,0
              -104.215718,21.109358,0
              -104.215577,21.110696,0
              -104.214393,21.111667,0
              -104.215368,21.113538,0
              -104.215305,21.114191,0
              -104.214539,21.11434,0
              -104.213359,21.113842,0
              -104.212144,21.114529,0
              -104.212689,21.115396,0
              -104.214741,21.116603,0
              -104.2133,21.117997,0
              -104.21147,21.118023,0
              -104.21086,21.118601,0
              -104.21127,21.119383,0
              -104.212484,21.119496,0
              -104.212709,21.120434,0
              -104.212299,21.120986,0
              -104.211429,21.120561,0
              -104.211332,21.121766,0
              -104.212277,21.122517,0
              -104.212334,21.12455,0
              -104.211716,21.125281,0
              -104.21129,21.127715,0
              -104.211737,21.128889,0
              -104.211586,21.129683,0
              -104.21057,21.130576,0
              -104.210841,21.131386,0
              -104.211783,21.131658,0
              -104.212718,21.132963,0
              -104.212688,21.133975,0
              -104.214674,21.133616,0
              -104.214932,21.135019,0
              -104.214316,21.136039,0
              -104.214883,21.136295,0
              -104.215138,21.139108,0
              -104.215765,21.139005,0
              -104.21634,21.137693,0
              -104.217506,21.138142,0
              -104.219003,21.137639,0
              -104.219633,21.138701,0
              -104.218735,21.139397,0
              -104.219123,21.140897,0
              -104.221487,21.140723,0
              -104.222002,21.141833,0
              -104.221856,21.142998,0
              -104.221182,21.14326,0
              -104.221178,21.144444,0
              -104.222878,21.145438,0
              -104.222106,21.146677,0
              -104.222873,21.14714,0
              -104.224287,21.149891,0
              -104.225059,21.15085,0
              -104.224978,21.151609,0
              -104.224024,21.151648,0
              -104.223565,21.152724,0
              -104.222049,21.153293,0
              -104.222275,21.154123,0
              -104.223868,21.154532,0
              -104.22419,21.156264,0
              -104.22478,21.157293,0
              -104.224805,21.158017,0
              -104.223593,21.158085,0
              -104.222943,21.159069,0
              -104.221876,21.158197,0
              -104.221767,21.159549,0
              -104.223334,21.159737,0
              -104.224234,21.160472,0
              -104.223657,21.161101,0
              -104.223506,21.161935,0
              -104.221975,21.163071,0
              -104.221669,21.163682,0
              -104.222255,21.164881,0
              -104.221475,21.165762,0
              -104.221615,21.167418,0
              -104.222119,21.168146,0
              -104.223583,21.168903,0
              -104.222718,21.169504,0
              -104.220826,21.169513,0
              -104.220213,21.172254,0
              -104.220514,21.173258,0
              -104.218404,21.172342,0
              -104.217878,21.172652,0
              -104.21868,21.174427,0
              -104.21763,21.174527,0
              -104.21753,21.175069,0
              -104.218722,21.175363,0
              -104.219412,21.176165,0
              -104.21918,21.176717,0
              -104.217954,21.176435,0
              -104.216855,21.177218,0
              -104.214187,21.179562,0
              -104.213404,21.180571,0
              -104.211779,21.185631,0
              -104.210966,21.186999,0
              -104.208702,21.189282,0
              -104.205858,21.190339,0
              -104.20401,21.192319,0
              -104.202794,21.192832,0
              -104.198823,21.193464,0
              -104.196367,21.193553,0
              -104.193533,21.192548,0
              -104.191023,21.192495,0
              -104.189072,21.191841,0
              -104.185974,21.190518,0
              -104.185028,21.189881,0
              -104.18315,21.189245,0
              -104.1817,21.189207,0
              -104.177153,21.188162,0
              -104.175185,21.188127,0
              -104.171272,21.189102,0
              -104.168892,21.18909,0
              -104.165814,21.188881,0
              -104.164929,21.188438,0
              -104.161835,21.185424,0
              -104.16056,21.18463,0
              -104.159514,21.18456,0
              -104.158051,21.18494,0
              -104.154484,21.187271,0
              -104.153204,21.188313,0
              -104.152046,21.188799,0
              -104.150171,21.189254,0
              -104.149143,21.190454,0
              -104.147272,21.19162,0
              -104.146061,21.19151,0
              -104.144648,21.190988,0
              -104.142719,21.189865,0
              -104.14029,21.188893,0
              -104.138674,21.188666,0
              -104.136909,21.188783,0
              -104.135922,21.189309,0
              -104.133166,21.189663,0
              -104.128556,21.190968,0
              -104.127422,21.191524,0
              -104.126546,21.192431,0
              -104.125209,21.195386,0
              -104.124743,21.196094,0
              -104.124046,21.196267,0
              -104.121028,21.19513,0
              -104.117579,21.192691,0
              -104.116801,21.191383,0
              -104.114412,21.189936,0
              -104.110845,21.188596,0
              -104.10949,21.188961,0
              -104.109052,21.190123,0
              -104.1089,21.19247,0
              -104.108957,21.194392,0
              -104.108763,21.195567,0
              -104.107367,21.196962,0
              -104.105608,21.197878,0
              -104.102532,21.198746,0
              -104.100037,21.200867,0
              -104.098941,21.201028,0
              -104.098177,21.200545,0
              -104.097472,21.198313,0
              -104.096149,21.196786,0
              -104.09418,21.195827,0
              -104.091565,21.195394,0
              -104.090132,21.195546,0
              -104.0888,21.196129,0
              -104.087822,21.197627,0
              -104.087682,21.199309,0
              -104.088086,21.200882,0
              -104.088456,21.203614,0
              -104.088114,21.204245,0
              -104.085659,21.205361,0
              -104.084005,21.205062,0
              -104.082358,21.204306,0
              -104.08091,21.201764,0
              -104.080754,21.199775,0
              -104.080875,21.198039,0
              -104.081709,21.193779,0
              -104.081619,21.192649,0
              -104.080997,21.191427,0
              -104.081069,21.189936,0
              -104.080578,21.189462,0
              -104.0776,21.188936,0
              -104.076136,21.190267,0
              -104.074803,21.190546,0
              -104.07238,21.190055,0
              -104.071575,21.188152,0
              -104.07082,21.187642,0
              -104.068887,21.186841,0
              -104.068287,21.186786,0
              -104.066095,21.189723,0
              -104.066552,21.191323,0
              -104.067394,21.192382,0
              -104.069167,21.193868,0
              -104.069438,21.194674,0
              -104.068547,21.19739,0
              -104.067386,21.198665,0
              -104.065623,21.199654,0
              -104.064541,21.199867,0
              -104.063618,21.200419,0
              -104.061894,21.200082,0
              -104.061247,21.19921,0
              -104.060707,21.197574,0
              -104.059828,21.196588,0
              -104.059745,21.194952,0
              -104.059081,21.193652,0
              -104.057785,21.193634,0
              -104.056275,21.19414,0
              -104.055329,21.195052,0
              -104.054793,21.196514,0
              -104.055072,21.197898,0
              -104.054909,21.199121,0
              -104.054222,21.201438,0
              -104.054941,21.203246,0
              -104.05491,21.204944,0
              -104.052839,21.205413,0
              -104.051954,21.205353,0
              -104.050163,21.204361,0
              -104.049992,21.203886,0
              -104.047074,21.201077,0
              -104.046098,21.200658,0
              -104.045857,21.199736,0
              -104.045179,21.199199,0
              -104.043376,21.200899,0
              -104.040911,21.202439,0
              -104.039825,21.202969,0
              -104.039291,21.204244,0
              -104.038424,21.204442,0
              -104.037519,21.203759,0
              -104.035728,21.201205,0
              -104.03587,21.198125,0
              -104.035297,21.195953,0
              -104.0338,21.195214,0
              -104.030397,21.1945,0
              -104.027969,21.194672,0
              -104.027054,21.195683,0
              -104.026465,21.198876,0
              -104.026399,21.200476,0
              -104.026931,21.200881,0
              -104.029423,21.201917,0
              -104.029761,21.202419,0
              -104.032078,21.201811,0
              -104.032871,21.202687,0
              -104.031613,21.205193,0
              -104.02941,21.208664,0
              -104.028033,21.209724,0
              -104.025752,21.211779,0
              -104.024981,21.212938,0
              -104.02376,21.212513,0
              -104.02266,21.211461,0
              -104.022332,21.210788,0
              -104.022565,21.209692,0
              -104.022383,21.208516,0
              -104.02232,21.205107,0
              -104.021405,21.204678,0
              -104.019958,21.204777,0
              -104.018639,21.205122,0
              -104.016479,21.206574,0
              -104.015755,21.208484,0
              -104.015925,21.209584,0
              -104.016833,21.210709,0
              -104.017187,21.211912,0
              -104.015139,21.213826,0
              -104.015754,21.214801,0
              -104.016408,21.21666,0
              -104.016824,21.218582,0
              -104.016099,21.219412,0
              -104.0147,21.219524,0
              -104.014641,21.220681,0
              -104.016122,21.223666,0
              -104.017531,21.226041,0
              -104.017489,21.227202,0
              -104.016118,21.22756,0
              -104.012643,21.226844,0
              -104.008551,21.227156,0
              -104.006088,21.228044,0
              -104.005236,21.228769,0
              -104.004665,21.230871,0
              -104.004631,21.233383,0
              -104.004967,21.234367,0
              -104.004254,21.2357,0
              -104.003568,21.236463,0
              -104.000784,21.238469,0
              -103.997695,21.238794,0
              -103.996361,21.239297,0
              -103.991895,21.24159,0
              -103.990357,21.242783,0
              -103.987857,21.244306,0
              -103.986414,21.246429,0
              -103.985956,21.248077,0
              -103.98531,21.249208,0
              -103.984778,21.249471,0
              -103.982264,21.249683,0
              -103.978828,21.250325,0
              -103.975405,21.251253,0
              -103.97397,21.252227,0
              -103.973852,21.252973,0
              -103.974198,21.255581,0
              -103.973454,21.256328,0
              -103.971276,21.256329,0
              -103.969254,21.256875,0
              -103.969274,21.25569,0
              -103.965667,21.254354,0
              -103.964597,21.25371,0
              -103.96386,21.254125,0
              -103.961842,21.252903,0
              -103.960567,21.251183,0
              -103.959854,21.251115,0
              -103.958885,21.251948,0
              -103.958388,21.252755,0
              -103.955379,21.250227,0
              -103.954908,21.249334,0
              -103.953694,21.248086,0
              -103.952265,21.247778,0
              -103.952355,21.24673,0
              -103.951705,21.244593,0
              -103.949846,21.243079,0
              -103.94853,21.241607,0
              -103.9475,21.238936,0
              -103.945867,21.238018,0
              -103.942538,21.238028,0
              -103.941382,21.238403,0
              -103.940162,21.238173,0
              -103.936558,21.238532,0
              -103.9325,21.236312,0
              -103.9304,21.235343,0
              -103.928535,21.234919,0
              -103.925514,21.234836,0
              -103.92402,21.234572,0
              -103.925915,21.23916,0
              -103.926578,21.240317,0
              -103.925509,21.241043,0
              -103.925612,21.242458,0
              -103.927112,21.243673,0
              -103.927042,21.245663,0
              -103.928377,21.246928,0
              -103.928635,21.24976,0
              -103.931797,21.251969,0
              -103.935145,21.253285,0
              -103.935462,21.254176,0
              -103.935219,21.255441,0
              -103.934541,21.25661,0
              -103.934275,21.25926,0
              -103.933845,21.259571,0
              -103.933518,21.261183,0
              -103.931057,21.262547,0
              -103.928382,21.260433,0
              -103.927647,21.25914,0
              -103.926834,21.257033,0
              -103.926872,21.256413,0
              -103.926373,21.254943,0
              -103.925398,21.253427,0
              -103.924418,21.252405,0
              -103.922434,21.251756,0
              -103.921434,21.250484,0
              -103.920942,21.249445,0
              -103.921103,21.247843,0
              -103.919527,21.247151,0
              -103.918578,21.245627,0
              -103.91812,21.244166,0
              -103.918461,21.24296,0
              -103.917583,21.241674,0
              -103.918199,21.240041,0
              -103.91932,21.238613,0
              -103.919259,21.236481,0
              -103.919696,21.234191,0
              -103.918675,21.233184,0
              -103.917899,21.231028,0
              -103.914275,21.230766,0
              -103.912331,21.231518,0
              -103.910894,21.232585,0
              -103.909996,21.232962,0
              -103.907561,21.23335,0
              -103.903063,21.233419,0
              -103.902417,21.232941,0
              -103.901054,21.230304,0
              -103.899731,21.227054,0
              -103.898363,21.22649,0
              -103.896887,21.226847,0
              -103.896405,21.227821,0
              -103.896003,21.230185,0
              -103.894876,21.234021,0
              -103.893503,21.236874,0
              -103.892306,21.238427,0
              -103.890324,21.238793,0
              -103.889456,21.239735,0
              -103.887985,21.239043,0
              -103.886857,21.239206,0
              -103.885041,21.241155,0
              -103.882609,21.24191,0
              -103.880201,21.241684,0
              -103.879026,21.23986,0
              -103.87786,21.24006,0
              -103.87691,21.239054,0
              -103.876201,21.239439,0
              -103.875439,21.238585,0
              -103.875106,21.239022,0
              -103.874974,21.241168,0
              -103.87372,21.242534,0
              -103.870097,21.243589,0
              -103.867244,21.245266,0
              -103.865022,21.245919,0
              -103.863227,21.246682,0
              -103.86189,21.248868,0
              -103.859128,21.247789,0
              -103.855693,21.246636,0
              -103.85299,21.246136,0
              -103.851136,21.24518,0
              -103.847512,21.242512,0
              -103.845004,21.240297,0
              -103.843239,21.24003,0
              -103.841898,21.240207,0
              -103.840019,21.23982,0
              -103.837718,21.240357,0
              -103.835747,21.240981,0
              -103.832259,21.242456,0
              -103.830475,21.243667,0
              -103.828203,21.245662,0
              -103.827132,21.246059,0
              -103.825277,21.24635,0
              -103.823278,21.246881,0
              -103.820535,21.247872,0
              -103.818547,21.249039,0
              -103.817249,21.25109,0
              -103.816966,21.254111,0
              -103.817122,21.256582,0
              -103.818346,21.258512,0
              -103.820984,21.261711,0
              -103.821365,21.263022,0
              -103.821091,21.265337,0
              -103.821143,21.266467,0
              -103.821533,21.267095,0
              -103.82399,21.269071,0
              -103.824666,21.270024,0
              -103.824985,21.271878,0
              -103.824427,21.272737,0
              -103.823462,21.27344,0
              -103.822681,21.274422,0
              -103.820528,21.275902,0
              -103.820091,21.276523,0
              -103.82078,21.278634,0
              -103.820346,21.281041,0
              -103.819028,21.282276,0
              -103.818252,21.283358,0
              -103.816439,21.284877,0
              -103.814672,21.287118,0
              -103.813578,21.287495,0
              -103.81189,21.287503,0
              -103.812719,21.286874,0
              -103.812125,21.286637,0
              -103.811216,21.287055,0
              -103.809189,21.288408,0
              -103.807847,21.28892,0
              -103.806156,21.291458,0
              -103.806151,21.292017,0
              -103.806881,21.293178,0
              -103.806754,21.293697,0
              -103.805884,21.294308,0
              -103.806432,21.295333,0
              -103.805559,21.296051,0
              -103.805201,21.297013,0
              -103.803682,21.299275,0
              -103.803573,21.300312,0
              -103.801884,21.300768,0
              -103.800774,21.30228,0
              -103.799051,21.303261,0
              -103.797788,21.303267,0
              -103.796678,21.303594,0
              -103.795551,21.303474,0
              -103.793077,21.304623,0
              -103.791962,21.305579,0
              -103.79087,21.305761,0
              -103.788971,21.30547,0
              -103.7864,21.306081,0
              -103.785483,21.305739,0
              -103.784831,21.307295,0
              -103.784021,21.307392,0
              -103.780636,21.308513,0
              -103.778059,21.310785,0
              -103.777501,21.312321,0
              -103.777648,21.313242,0
              -103.77725,21.314232,0
              -103.777557,21.314745,0
              -103.777548,21.315941,0
              -103.776822,21.316807,0
              -103.776656,21.318017,0
              -103.776145,21.319284,0
              -103.77631,21.320073,0
              -103.776123,21.32167,0
              -103.775583,21.321097,0
              -103.774009,21.320896,0
              -103.772534,21.32033,0
              -103.770225,21.322079,0
              -103.769406,21.322528,0
              -103.768286,21.322419,0
              -103.767838,21.323539,0
              -103.76718,21.324133,0
              -103.766829,21.326504,0
              -103.764479,21.327727,0
              -103.764162,21.328469,0
              -103.763056,21.328169,0
              -103.759837,21.328658,0
              -103.759109,21.3298,0
              -103.757399,21.329791,0
              -103.756981,21.330424,0
              -103.756648,21.331844,0
              -103.756825,21.334433,0
              -103.75743,21.335485,0
              -103.755674,21.336607,0
              -103.755611,21.337695,0
              -103.754322,21.337286,0
              -103.753097,21.335837,0
              -103.753111,21.336324,0
              -103.752116,21.335988,0
              -103.751263,21.336486,0
              -103.749352,21.336708,0
              -103.749585,21.336944,0
              -103.749668,21.339207,0
              -103.749431,21.340858,0
              -103.749638,21.341453,0
              -103.750432,21.341489,0
              -103.751918,21.340876,0
              -103.752389,21.341099,0
              -103.752272,21.343274,0
              -103.751529,21.344485,0
              -103.750093,21.345175,0
              -103.748317,21.345148,0
              -103.746414,21.348137,0
              -103.746421,21.349621,0
              -103.745851,21.351045,0
              -103.744756,21.351561,0
              -103.74432,21.352277,0
              -103.744825,21.353539,0
              -103.745779,21.354581,0
              -103.746461,21.355862,0
              -103.747133,21.357829,0
              -103.747077,21.359832,0
              -103.74569,21.363039,0
              -103.745197,21.364651,0
              -103.744468,21.368057,0
              -103.742881,21.371292,0
              -103.741784,21.372868,0
              -103.741333,21.374055,0
              -103.742911,21.376073,0
              -103.745735,21.378656,0
              -103.747397,21.379802,0
              -103.748638,21.381332,0
              -103.749762,21.382088,0
              -103.751995,21.382939,0
              -103.756392,21.383913,0
              -103.758436,21.384203,0
              -103.760307,21.384661,0
              -103.762259,21.385352,0
              -103.765419,21.386021,0
              -103.767333,21.388433,0
              -103.767769,21.390263,0
              -103.767601,21.391142,0
              -103.766544,21.39219,0
              -103.766126,21.393355,0
              -103.765208,21.394077,0
              -103.76336,21.396176,0
              -103.762312,21.39642,0
              -103.761527,21.396992,0
              -103.761171,21.397744,0
              -103.760064,21.398264,0
              -103.75957,21.399442,0
              -103.758302,21.399936,0
              -103.757203,21.399601,0
              -103.756903,21.399865,0
              -103.759164,21.402115,0
              -103.760877,21.404461,0
              -103.76268,21.406357,0
              -103.764402,21.407949,0
              -103.764403,21.410304,0
              -103.761832,21.410049,0
              -103.759381,21.409602,0
              -103.757046,21.40986,0
              -103.756103,21.410326,0
              -103.755765,21.411016,0
              -103.755283,21.414159,0
              -103.754787,21.415676,0
              -103.753551,21.416643,0
              -103.751307,21.417511,0
              -103.74661,21.417815,0
              -103.74245,21.417496,0
              -103.738638,21.41691,0
              -103.737552,21.416626,0
              -103.734953,21.416369,0
              -103.732553,21.415851,0
              -103.731272,21.4159,0
              -103.730163,21.416911,0
              -103.729396,21.418692,0
              -103.728277,21.420433,0
              -103.727288,21.42116,0
              -103.7234,21.421215,0
              -103.723075,21.423021,0
              -103.721289,21.423842,0
              -103.720896,21.425431,0
              -103.721234,21.426355,0
              -103.721831,21.426827,0
              -103.722081,21.42796,0
              -103.723005,21.429056,0
              -103.724447,21.43005,0
              -103.725746,21.431936,0
              -103.727671,21.433724,0
              -103.728244,21.43453,0
              -103.728648,21.435865,0
              -103.732269,21.437317,0
              -103.733239,21.436706,0
              -103.733741,21.436931,0
              -103.734543,21.438352,0
              -103.735638,21.438142,0
              -103.73702,21.439225,0
              -103.737078,21.439913,0
              -103.738458,21.440371,0
              -103.739452,21.441714,0
              -103.742031,21.441558,0
              -103.742383,21.4431,0
              -103.742431,21.444367,0
              -103.743034,21.44644,0
              -103.744375,21.447405,0
              -103.74448,21.450252,0
              -103.745253,21.451315,0
              -103.744548,21.452504,0
              -103.744533,21.45413,0
              -103.745571,21.45489,0
              -103.74573,21.456558,0
              -103.747217,21.457971,0
              -103.747427,21.45901,0
              -103.748182,21.459605,0
              -103.748162,21.462055,0
              -103.74868,21.462506,0
              -103.750071,21.4627,0
              -103.751423,21.46464,0
              -103.752937,21.466088,0
              -103.752108,21.466305,0
              -103.751144,21.467415,0
              -103.750985,21.468085,0
              -103.749785,21.468625,0
              -103.748753,21.469838,0
              -103.748131,21.471185,0
              -103.748773,21.472593,0
              -103.749365,21.474488,0
              -103.750138,21.475632,0
              -103.750915,21.476308,0
              -103.757586,21.479848,0
              -103.761343,21.481742,0
              -103.763373,21.482243,0
              -103.768721,21.482798,0
              -103.769335,21.483234,0
              -103.769612,21.48436,0
              -103.769628,21.486126,0
              -103.769969,21.487956,0
              -103.770666,21.488743,0
              -103.772088,21.489187,0
              -103.774003,21.489384,0
              -103.776363,21.490163,0
              -103.777001,21.490621,0
              -103.778192,21.492082,0
              -103.778427,21.493561,0
              -103.777703,21.494919,0
              -103.776357,21.495557,0
              -103.774551,21.495805,0
              -103.773879,21.496195,0
              -103.774247,21.497931,0
              -103.774913,21.49846,0
              -103.776764,21.498,0
              -103.778597,21.498331,0
              -103.777674,21.498402,0
              -103.777508,21.498992,0
              -103.780071,21.499982,0
              -103.781111,21.498876,0
              -103.781725,21.49886,0
              -103.782849,21.498103,0
              -103.783399,21.497338,0
              -103.7842,21.497567,0
              -103.784823,21.498493,0
              -103.785612,21.498272,0
              -103.786633,21.497341,0
              -103.787479,21.498,0
              -103.788177,21.497881,0
              -103.788269,21.497165,0
              -103.789916,21.496803,0
              -103.791134,21.497606,0
              -103.791123,21.496587,0
              -103.791559,21.495849,0
              -103.791491,21.49478,0
              -103.792078,21.49314,0
              -103.792657,21.492412,0
              -103.791457,21.492175,0
              -103.791272,21.49154,0
              -103.792157,21.491644,0
              -103.792162,21.48984,0
              -103.792628,21.489662,0
              -103.792989,21.488691,0
              -103.794092,21.489575,0
              -103.795924,21.489427,0
              -103.797585,21.489761,0
              -103.798281,21.488845,0
              -103.799339,21.488566,0
              -103.800639,21.48881,0
              -103.801576,21.489817,0
              -103.800928,21.488344,0
              -103.800148,21.487804,0
              -103.800421,21.487188,0
              -103.803333,21.489763,0
              -103.80465,21.490511,0
              -103.806895,21.491421,0
              -103.809217,21.492812,0
              -103.812393,21.494045,0
              -103.814013,21.494484,0
              -103.817037,21.494706,0
              -103.818363,21.49435,0
              -103.821478,21.492489,0
              -103.822907,21.492613,0
              -103.825777,21.494499,0
              -103.828159,21.498174,0
              -103.828647,21.500015,0
              -103.828868,21.501653,0
              -103.82771,21.502942,0
              -103.827921,21.505263,0
              -103.829543,21.507449,0
              -103.832009,21.509512,0
              -103.832363,21.511863,0
              -103.832127,21.513397,0
              -103.833539,21.513478,0
              -103.834601,21.512755,0
              -103.836608,21.512663,0
              -103.836988,21.512942,0
              -103.839644,21.513915,0
              -103.840856,21.513363,0
              -103.842295,21.513318,0
              -103.843078,21.513828,0
              -103.845712,21.514559,0
              -103.847755,21.514774,0
              -103.849295,21.514531,0
              -103.849812,21.514962,0
              -103.851483,21.515461,0
              -103.852159,21.516073,0
              -103.852425,21.517074,0
              -103.854795,21.519234,0
              -103.855518,21.520505,0
              -103.857176,21.521908,0
              -103.859384,21.524072,0
              -103.86011,21.525163,0
              -103.859926,21.52644,0
              -103.858713,21.528996,0
              -103.858496,21.530324,0
              -103.858013,21.531306,0
              -103.855398,21.532324,0
              -103.854009,21.533228,0
              -103.854187,21.534528,0
              -103.855041,21.535153,0
              -103.855165,21.535672,0
              -103.854487,21.536222,0
              -103.854561,21.536896,0
              -103.855228,21.536892,0
              -103.855886,21.53869,0
              -103.855238,21.540396,0
              -103.854305,21.541529,0
              -103.853612,21.541379,0
              -103.853378,21.541969,0
              -103.854591,21.542381,0
              -103.855093,21.543106,0
              -103.854027,21.54353,0
              -103.854731,21.544305,0
              -103.854722,21.54553,0
              -103.855787,21.545993,0
              -103.854895,21.546308,0
              -103.854524,21.546999,0
              -103.855202,21.547248,0
              -103.855535,21.548094,0
              -103.855058,21.548407,0
              -103.856212,21.550476,0
              -103.8557,21.550861,0
              -103.856001,21.552046,0
              -103.856415,21.55244,0
              -103.857553,21.552314,0
              -103.857765,21.551465,0
              -103.859383,21.550291,0
              -103.8614,21.549904,0
              -103.863153,21.550015,0
              -103.865209,21.550392,0
              -103.867498,21.550381,0
              -103.869307,21.550116,0
              -103.870751,21.548737,0
              -103.872561,21.549089,0
              -103.873642,21.549054,0
              -103.874975,21.54966,0
              -103.875433,21.550785,0
              -103.876635,21.551515,0
              -103.877528,21.551306,0
              -103.879176,21.551378,0
              -103.879882,21.552409,0
              -103.880706,21.552072,0
              -103.881646,21.552142,0
              -103.881028,21.55306,0
              -103.883119,21.55356,0
              -103.884412,21.55419,0
              -103.885292,21.554231,0
              -103.885712,21.554888,0
              -103.88709,21.555436,0
              -103.885997,21.55627,0
              -103.887055,21.556443,0
              -103.887144,21.557089,0
              -103.888208,21.557927,0
              -103.88814,21.558507,0
              -103.888896,21.55864,0
              -103.889481,21.560939,0
              -103.890452,21.56154,0
              -103.890984,21.562591,0
              -103.891838,21.56248,0
              -103.891798,21.563178,0
              -103.891072,21.56377,0
              -103.892736,21.566024,0
              -103.892034,21.566723,0
              -103.892427,21.567192,0
              -103.891217,21.567735,0
              -103.891273,21.568436,0
              -103.890587,21.568872,0
              -103.890464,21.569626,0
              -103.891326,21.569563,0
              -103.890241,21.571817,0
              -103.891548,21.572291,0
              -103.892253,21.573303,0
              -103.892702,21.57329,0
              -103.892578,21.574143,0
              -103.893376,21.574132,0
              -103.894251,21.574789,0
              -103.894882,21.574654,0
              -103.895938,21.575344,0
              -103.898065,21.575001,0
              -103.898446,21.575298,0
              -103.900688,21.574987,0
              -103.901338,21.574542,0
              -103.902981,21.574413,0
              -103.903739,21.575597,0
              -103.903813,21.577431,0
              -103.906709,21.577402,0
              -103.908427,21.57776,0
              -103.911183,21.578676,0
              -103.91305,21.578939,0
              -103.914748,21.579699,0
              -103.917369,21.579814,0
              -103.919235,21.581986,0
              -103.919914,21.584052,0
              -103.919467,21.584646,0
              -103.919733,21.585822,0
              -103.920273,21.586712,0
              -103.922618,21.589068,0
              -103.923183,21.590028,0
              -103.9228,21.591322,0
              -103.922003,21.592183,0
              -103.921065,21.594138,0
              -103.920195,21.594738,0
              -103.918143,21.597575,0
              -103.917153,21.597928,0
              -103.916318,21.600473,0
              -103.916541,21.602517,0
              -103.914138,21.605708,0
              -103.913991,21.606545,0
              -103.913371,21.606877,0
              -103.912365,21.608049,0
              -103.912597,21.608847,0
              -103.91352,21.610157,0
              -103.914795,21.611417,0
              -103.918798,21.613426,0
              -103.919262,21.614292,0
              -103.919229,21.615731,0
              -103.918776,21.61712,0
              -103.91784,21.618007,0
              -103.916903,21.618301,0
              -103.915976,21.618181,0
              -103.915854,21.617629,0
              -103.914999,21.617249,0
              -103.914842,21.616141,0
              -103.913191,21.6159,0
              -103.911346,21.614642,0
              -103.909821,21.614837,0
              -103.908923,21.615671,0
              -103.907638,21.617828,0
              -103.907699,21.618676,0
              -103.908423,21.620318,0
              -103.909522,21.621604,0
              -103.910141,21.622845,0
              -103.910259,21.626521,0
              -103.910886,21.62847,0
              -103.911835,21.629826,0
              -103.916866,21.633215,0
              -103.920388,21.634759,0
              -103.921132,21.636094,0
              -103.923226,21.63824,0
              -103.924269,21.639031,0
              -103.925988,21.639624,0
              -103.927943,21.64083,0
              -103.929893,21.641307,0
              -103.930249,21.641914,0
              -103.929251,21.64487,0
              -103.928245,21.649193,0
              -103.926235,21.653855,0
              -103.925126,21.656081,0
              -103.92439,21.657951,0
              -103.923039,21.660886,0
              -103.92253,21.662471,0
              -103.921606,21.667618,0
              -103.92079,21.668946,0
              -103.918759,21.669862,0
              -103.915268,21.670817,0
              -103.914733,21.670445,0
              -103.91406,21.668896,0
              -103.912401,21.668971,0
              -103.910462,21.671471,0
              -103.90884,21.673786,0
              -103.908802,21.675027,0
              -103.906962,21.68052,0
              -103.906162,21.682367,0
              -103.904626,21.682602,0
              -103.903148,21.682424,0
              -103.90265,21.682922,0
              -103.903605,21.684899,0
              -103.903302,21.685828,0
              -103.902591,21.686262,0
              -103.900955,21.686468,0
              -103.898621,21.687412,0
              -103.89807,21.687841,0
              -103.897134,21.689641,0
              -103.894605,21.693249,0
              -103.893433,21.694344,0
              -103.890318,21.695389,0
              -103.888391,21.696705,0
              -103.887746,21.697418,0
              -103.888134,21.698451,0
              -103.889222,21.698629,0
              -103.89044,21.69944,0
              -103.890623,21.69998,0
              -103.890366,21.701728,0
              -103.891396,21.705723,0
              -103.892038,21.706682,0
              -103.893621,21.708386,0
              -103.894636,21.70906,0
              -103.895405,21.710018,0
              -103.896571,21.71274,0
              -103.896239,21.716773,0
              -103.89576,21.718804,0
              -103.895161,21.723828,0
              -103.895263,21.72609,0
              -103.895581,21.727265,0
              -103.896371,21.728034,0
              -103.897481,21.728211,0
              -103.898539,21.727942,0
              -103.89896,21.727325,0
              -103.899492,21.725434,0
              -103.899909,21.722108,0
              -103.900731,21.719083,0
              -103.901366,21.717333,0
              -103.90241,21.716144,0
              -103.90335,21.716677,0
              -103.903973,21.718248,0
              -103.905012,21.718591,0
              -103.907126,21.718311,0
              -103.907736,21.718705,0
              -103.907907,21.720283,0
              -103.909189,21.722155,0
              -103.910773,21.725403,0
              -103.913014,21.726198,0
              -103.915622,21.727758,0
              -103.917861,21.729591,0
              -103.91842,21.731507,0
              -103.918883,21.732114,0
              -103.920508,21.732638,0
              -103.921319,21.7346,0
              -103.922459,21.734749,0
              -103.923737,21.736434,0
              -103.92502,21.736169,0
              -103.926516,21.736298,0
              -103.927413,21.736718,0
              -103.927992,21.737433,0
              -103.928044,21.739151,0
              -103.929062,21.740547,0
              -103.930121,21.741211,0
              -103.93117,21.74288,0
              -103.931728,21.743206,0
              -103.932245,21.745485,0
              -103.931988,21.74588,0
              -103.93222,21.746976,0
              -103.933648,21.748426,0
              -103.933534,21.749146,0
              -103.932582,21.750511,0
              -103.931202,21.751667,0
              -103.92816,21.751631,0
              -103.927171,21.751757,0
              -103.925301,21.751613,0
              -103.923296,21.750875,0
              -103.921456,21.751324,0
              -103.920119,21.750855,0
              -103.919056,21.751473,0
              -103.916885,21.754028,0
              -103.916557,21.755409,0
              -103.916129,21.755769,0
              -103.916369,21.75689,0
              -103.918232,21.757857,0
              -103.91766,21.758644,0
              -103.919457,21.758902,0
              -103.919379,21.759922,0
              -103.918777,21.760281,0
              -103.919053,21.7633,0
              -103.918644,21.766174,0
              -103.91917,21.766941,0
              -103.920085,21.767127,0
              -103.921041,21.768078,0
              -103.921317,21.769563,0
              -103.921746,21.77033,0
              -103.923939,21.772136,0
              -103.92567,21.77261,0
              -103.926618,21.773773,0
              -103.927464,21.774339,0
              -103.928629,21.774611,0
              -103.929515,21.774485,0
              -103.931433,21.773639,0
              -103.932599,21.774042,0
              -103.933514,21.774743,0
              -103.933827,21.775537,0
              -103.934496,21.775905,0
              -103.935611,21.775376,0
              -103.937748,21.775631,0
              -103.937843,21.776351,0
              -103.939036,21.775639,0
              -103.940798,21.775428,0
              -103.941787,21.775749,0
              -103.943602,21.776758,0
              -103.944511,21.776819,0
              -103.945249,21.77638,0
              -103.946319,21.776295,0
              -103.948305,21.775513,0
              -103.950121,21.775306,0
              -103.950588,21.774111,0
              -103.95136,21.773956,0
              -103.951784,21.774491,0
              -103.952117,21.775986,0
              -103.952858,21.776043,0
              -103.953268,21.774342,0
              -103.953645,21.773703,0
              -103.954672,21.77395,0
              -103.955417,21.77329,0
              -103.957442,21.773488,0
              -103.957279,21.772315,0
              -103.958766,21.772005,0
              -103.960643,21.772923,0
              -103.961475,21.772635,0
              -103.967442,21.772325,0
              -103.967686,21.771301,0
              -103.970609,21.770821,0
              -103.9725,21.771316,0
              -103.97396,21.770823,0
              -103.974576,21.770957,0
              -103.974728,21.772186,0
              -103.975782,21.772453,0
              -103.976502,21.771195,0
              -103.978333,21.771671,0
              -103.978846,21.772623,0
              -103.97986,21.77276,0
              -103.98045,21.773991,0
              -103.980926,21.774329,0
              -103.983946,21.772878,0
              -103.984645,21.772696,0
              -103.984935,21.775218,0
              -103.986505,21.775899,0
              -103.986796,21.77698,0
              -103.988519,21.778683,0
              -103.989149,21.779859,0
              -103.989849,21.779547,0
              -103.991541,21.779911,0
              -103.994416,21.779631,0
              -103.99655,21.779215,0
              -103.997487,21.779483,0
              -103.999115,21.781783,0
              -104.00033,21.782108,0
              -104.001621,21.782786,0
              -104.003071,21.782914,0
              -104.003957,21.782558,0
              -104.007506,21.782467,0
              -104.008428,21.781915,0
              -104.009384,21.781828,0
              -104.011257,21.782118,0
              -104.011607,21.782781,0
              -104.013181,21.783236,0
              -104.013886,21.783928,0
              -104.015958,21.785046,0
              -104.01818,21.785104,0
              -104.01977,21.785855,0
              -104.020923,21.787109,0
              -104.022702,21.786912,0
              -104.024092,21.788001,0
              -104.024905,21.788276,0
              -104.02554,21.787862,0
              -104.027017,21.787527,0
              -104.027964,21.787631,0
              -104.029432,21.788622,0
              -104.031955,21.789202,0
              -104.033236,21.79061,0
              -104.034472,21.790764,0
              -104.035867,21.789622,0
              -104.036664,21.789262,0
              -104.03751,21.789434,0
              -104.038153,21.789019,0
              -104.039213,21.789125,0
              -104.040158,21.789622,0
              -104.040679,21.790608,0
              -104.042094,21.791206,0
              -104.043307,21.791066,0
              -104.045816,21.79267,0
              -104.047957,21.792738,0
              -104.049716,21.793984,0
              -104.051439,21.79416,0
              -104.051826,21.794707,0
              -104.052615,21.794646,0
              -104.053157,21.793359,0
              -104.053657,21.79319,0
              -104.054061,21.793885,0
              -104.054866,21.793995,0
              -104.055927,21.792416,0
              -104.056611,21.792323,0
              -104.059424,21.7931,0
              -104.060926,21.792937,0
              -104.062189,21.793215,0
              -104.064603,21.794112,0
              -104.065784,21.794024,0
              -104.066387,21.793011,0
              -104.065823,21.790625,0
              -104.066434,21.789792,0
              -104.067456,21.790609,0
              -104.067982,21.790588,0
              -104.068452,21.789728,0
              -104.071346,21.790238,0
              -104.071907,21.790168,0
              -104.072818,21.789379,0
              -104.075184,21.789785,0
              -104.076238,21.789717,0
              -104.076857,21.787658,0
              -104.077731,21.78668,0
              -104.079763,21.785979,0
              -104.080089,21.784409,0
              -104.079477,21.782804,0
              -104.079856,21.782405,0
              -104.080809,21.782923,0
              -104.080967,21.783632,0
              -104.08369,21.785109,0
              -104.084488,21.785809,0
              -104.085441,21.785577,0
              -104.090454,21.785591,0
              -104.091483,21.784895,0
              -104.093319,21.784563,0
              -104.093723,21.784842,0
              -104.093966,21.785918,0
              -104.093156,21.789251,0
              -104.093251,21.791245,0
              -104.094041,21.791592,0
              -104.096359,21.791999,0
              -104.097542,21.792656,0
              -104.098437,21.792817,0
              -104.099969,21.792607,0
              -104.100613,21.790866,0
              -104.100983,21.790476,0
              -104.102398,21.790114,0
              -104.103776,21.790196,0
              -104.104823,21.791159,0
              -104.105955,21.791165,0
              -104.107094,21.790311,0
              -104.108846,21.787717,0
              -104.109455,21.787328,0
              -104.110979,21.787754,0
              -104.112158,21.787775,0
              -104.11633,21.789548,0
              -104.118069,21.789847,0
              -104.119044,21.789422,0
              -104.120998,21.790326,0
              -104.122102,21.790528,0
              -104.123104,21.790263,0
              -104.124447,21.790369,0
              -104.125816,21.790156,0
              -104.127131,21.790654,0
              -104.128306,21.790233,0
              -104.128921,21.79049,0
              -104.130382,21.790451,0
              -104.131088,21.791146,0
              -104.131893,21.791342,0
              -104.132496,21.792144,0
              -104.133517,21.792521,0
              -104.134773,21.793985,0
              -104.134741,21.794698,0
              -104.135265,21.795436,0
              -104.135702,21.79711,0
              -104.137441,21.798115,0
              -104.138366,21.799863,0
              -104.139349,21.800838,0
              -104.140229,21.80089,0
              -104.140796,21.801571,0
              -104.142043,21.801432,0
              -104.143804,21.802265,0
              -104.144267,21.802945,0
              -104.145156,21.805259,0
              -104.146531,21.80643,0
              -104.148751,21.807384,0
              -104.149963,21.807359,0
              -104.151795,21.807946,0
              -104.153281,21.80818,0
              -104.153533,21.807695,0
              -104.154298,21.807815,0
              -104.154943,21.809177,0
              -104.156179,21.810787,0
              -104.157092,21.810447,0
              -104.158994,21.810485,0
              -104.159549,21.810935,0
              -104.160697,21.809865,0
              -104.161748,21.809841,0
              -104.162216,21.810593,0
              -104.162001,21.812516,0
              -104.163777,21.812333,0
              -104.163768,21.813898,0
              -104.16462,21.815965,0
              -104.165245,21.816552,0
              -104.167154,21.819068,0
              -104.168326,21.820036,0
              -104.16991,21.820303,0
              -104.171264,21.822949,0
              -104.172015,21.823572,0
              -104.172282,21.825499,0
              -104.17375,21.826675,0
              -104.175033,21.828361,0
              -104.176613,21.832237,0
              -104.177539,21.833109,0
              -104.178459,21.833166,0
              -104.179725,21.834049,0
              -104.180721,21.834157,0
              -104.181867,21.836913,0
              -104.18424,21.837682,0
              -104.187194,21.837881,0
              -104.187511,21.840204,0
              -104.188358,21.842736,0
              -104.188032,21.844106,0
              -104.188644,21.846887,0
              -104.189083,21.847746,0
              -104.18917,21.849047,0
              -104.190494,21.850324,0
              -104.190713,21.851064,0
              -104.191756,21.851217,0
              -104.193503,21.850576,0
              -104.195532,21.850379,0
              -104.19664,21.850532,0
              -104.195571,21.850727,0
              -104.19461,21.852177,0
              -104.192981,21.853499,0
              -104.190819,21.854668,0
              -104.188375,21.855225,0
              -104.187315,21.855625,0
              -104.184425,21.857451,0
              -104.184135,21.857439,0
              -104.180728,21.859201,0
              -104.180099,21.859969,0
              -104.179281,21.860386,0
              -104.178695,21.86337,0
              -104.177766,21.865139,0
              -104.174918,21.867619,0
              -104.17351,21.868647,0
              -104.172616,21.869919,0
              -104.172233,21.871319,0
              -104.172952,21.871747,0
              -104.175556,21.871912,0
              -104.176274,21.871492,0
              -104.177191,21.870171,0
              -104.178265,21.868163,0
              -104.178803,21.86763,0
              -104.18151,21.867062,0
              -104.184441,21.867193,0
              -104.186385,21.868012,0
              -104.186775,21.868378,0
              -104.187269,21.870741,0
              -104.188208,21.87211,0
              -104.189082,21.872786,0
              -104.189184,21.874404,0
              -104.189887,21.87581,0
              -104.190892,21.877201,0
              -104.19235,21.878448,0
              -104.193833,21.879022,0
              -104.195716,21.879221,0
              -104.196705,21.880989,0
              -104.196875,21.883205,0
              -104.197388,21.884322,0
              -104.197859,21.884576,0
              -104.198069,21.887329,0
              -104.198649,21.888172,0
              -104.198687,21.888998,0
              -104.199901,21.889887,0
              -104.201041,21.891478,0
              -104.200534,21.893367,0
              -104.199968,21.894267,0
              -104.200923,21.896751,0
              -104.201417,21.8974,0
              -104.2015,21.898681,0
              -104.200932,21.899372,0
              -104.201013,21.901052,0
              -104.200153,21.901868,0
              -104.199694,21.903504,0
              -104.199429,21.906185,0
              -104.199649,21.907299,0
              -104.199439,21.908413,0
              -104.200244,21.909466,0
              -104.19929,21.911036,0
              -104.198163,21.911409,0
              -104.197506,21.911953,0
              -104.196452,21.913435,0
              -104.194221,21.913928,0
              -104.192838,21.915203,0
              -104.191211,21.915972,0
              -104.190303,21.917082,0
              -104.189868,21.918046,0
              -104.188802,21.918998,0
              -104.187909,21.92122,0
              -104.187792,21.92227,0
              -104.188308,21.922671,0
              -104.188476,21.924625,0
              -104.189281,21.925848,0
              -104.188666,21.927042,0
              -104.188432,21.928212,0
              -104.187574,21.928564,0
              -104.187118,21.929234,0
              -104.186452,21.931374,0
              -104.184818,21.933319,0
              -104.183522,21.934081,0
              -104.183542,21.93467,0
              -104.182403,21.935997,0
              -104.180707,21.937099,0
              -104.179717,21.937508,0
              -104.179332,21.938517,0
              -104.178718,21.939015,0
              -104.178612,21.940728,0
              -104.179095,21.942168,0
              -104.178955,21.943314,0
              -104.179496,21.945064,0
              -104.179325,21.945925,0
              -104.177695,21.947339,0
              -104.176916,21.948863,0
              -104.17709,21.949288,0
              -104.17708,21.951619,0
              -104.17665,21.952383,0
              -104.176655,21.955903,0
              -104.176443,21.957053,0
              -104.175694,21.95789,0
              -104.175415,21.959674,0
              -104.174914,21.960196,0
              -104.17502,21.961833,0
              -104.174771,21.962534,0
              -104.173699,21.963393,0
              -104.173926,21.964559,0
              -104.17441,21.965372,0
              -104.174077,21.966314,0
              -104.174309,21.967063,0
              -104.173961,21.967636,0
              -104.174568,21.96885,0
              -104.174577,21.969532,0
              -104.173655,21.970883,0
              -104.175544,21.972562,0
              -104.179734,21.977052,0
              -104.184598,21.979613,0
              -104.185562,21.98052,0
              -104.187228,21.981181,0
              -104.188922,21.982075,0
              -104.188689,21.982683,0
              -104.189423,21.983207,0
              -104.190229,21.982959,0
              -104.191535,21.983875,0
              -104.193319,21.98542,0
              -104.195702,21.986038,0
              -104.196635,21.98558,0
              -104.197254,21.985914,0
              -104.198229,21.985506,0
              -104.19883,21.984761,0
              -104.20109,21.983381,0
              -104.202657,21.982772,0
              -104.203633,21.982975,0
              -104.20445,21.983565,0
              -104.206383,21.983271,0
              -104.212021,21.98311,0
              -104.212743,21.982881,0
              -104.21549,21.980803,0
              -104.21737,21.98022,0
              -104.218569,21.979518,0
              -104.218829,21.979001,0
              -104.221107,21.97794,0
              -104.224885,21.975269,0
              -104.22595,21.974183,0
              -104.226473,21.973205,0
              -104.228391,21.972047,0
              -104.232176,21.970293,0
              -104.233902,21.969194,0
              -104.234848,21.969052,0
              -104.238539,21.969719,0
              -104.239679,21.969605,0
              -104.240687,21.970099,0
              -104.242156,21.969808,0
              -104.242768,21.969382,0
              -104.244367,21.967544,0
              -104.245257,21.966912,0
              -104.247289,21.967343,0
              -104.249146,21.968457,0
              -104.250509,21.968817,0
              -104.252473,21.969897,0
              -104.253465,21.970776,0
              -104.258504,21.97224,0
              -104.258906,21.972641,0
              -104.260748,21.976042,0
              -104.262021,21.976859,0
              -104.263288,21.977039,0
              -104.265982,21.97691,0
              -104.269014,21.97778,0
              -104.269891,21.978267,0
              -104.274772,21.980159,0
              -104.275447,21.980623,0
              -104.277151,21.982389,0
              -104.277753,21.983988,0
              -104.276892,21.984867,0
              -104.276206,21.986754,0
              -104.27618,21.987657,0
              -104.277726,21.990408,0
              -104.278296,21.993689,0
              -104.279701,21.997336,0
              -104.281382,21.999659,0
              -104.285615,22.000011,0
              -104.287669,21.998785,0
              -104.289377,21.998411,0
              -104.289948,21.998836,0
              -104.290863,22.00071,0
              -104.291735,22.002017,0
              -104.293108,22.002736,0
              -104.294845,22.002681,0
              -104.295792,22.00239,0
              -104.298532,22.00096,0
              -104.300902,21.999408,0
              -104.302295,21.998182,0
              -104.302815,21.997449,0
              -104.304207,21.994598,0
              -104.304897,21.99266,0
              -104.305511,21.991571,0
              -104.307211,21.989308,0
              -104.308138,21.988619,0
              -104.309604,21.988751,0
              -104.311717,21.990231,0
              -104.312999,21.990783,0
              -104.315056,21.990804,0
              -104.31637,21.989907,0
              -104.317254,21.988692,0
              -104.319403,21.984531,0
              -104.320419,21.983885,0
              -104.322224,21.983723,0
              -104.324229,21.984279,0
              -104.325403,21.983653,0
              -104.32566,21.982016,0
              -104.325041,21.979311,0
              -104.325092,21.977631,0
              -104.325457,21.976666,0
              -104.326863,21.975369,0
              -104.328236,21.975691,0
              -104.330877,21.977704,0
              -104.335121,21.979774,0
              -104.33667,21.979612,0
              -104.338842,21.978261,0
              -104.340328,21.978081,0
              -104.340871,21.977758,0
              -104.341479,21.976568,0
              -104.342743,21.975645,0
              -104.343577,21.974657,0
              -104.347031,21.973783,0
              -104.349695,21.973915,0
              -104.353673,21.972869,0
              -104.357149,21.972106,0
              -104.359046,21.972339,0
              -104.361736,21.973085,0
              -104.363105,21.973997,0
              -104.365126,21.974368,0
              -104.365849,21.97417,0
              -104.366242,21.973074,0
              -104.367091,21.972764,0
              -104.367294,21.973935,0
              -104.36842,21.974087,0
              -104.369057,21.974698,0
              -104.369863,21.974784,0
              -104.370693,21.976173,0
              -104.369943,21.976802,0
              -104.369801,21.977717,0
              -104.370988,21.97936,0
              -104.370601,21.98105,0
              -104.369512,21.98177,0
              -104.369393,21.98243,0
              -104.370086,21.9838,0
              -104.369359,21.984634,0
              -104.368383,21.985092,0
              -104.368036,21.986178,0
              -104.366981,21.986988,0
              -104.367205,21.987619,0
              -104.367851,21.987584,0
              -104.368207,21.989112,0
              -104.367824,21.990038,0
              -104.368194,21.990715,0
              -104.367524,21.99178,0
              -104.368708,21.992795,0
              -104.367629,21.993978,0
              -104.367644,21.99528,0
              -104.366985,21.996285,0
              -104.36759,21.997423,0
              -104.366345,21.998427,0
              -104.366385,22.001326,0
              -104.365426,22.001515,0
              -104.36509,22.002632,0
              -104.363962,22.003425,0
              -104.363721,22.00457,0
              -104.362477,22.006169,0
              -104.361967,22.008463,0
              -104.362165,22.009666,0
              -104.361911,22.010071,0
              -104.36051,22.009987,0
              -104.360029,22.010424,0
              -104.360374,22.012547,0
              -104.360273,22.013597,0
              -104.36064,22.0141,0
              -104.360039,22.015057,0
              -104.36123,22.017222,0
              -104.361618,22.018781,0
              -104.361313,22.019432,0
              -104.363296,22.01966,0
              -104.364164,22.020246,0
              -104.366079,22.019841,0
              -104.366809,22.020736,0
              -104.367977,22.021386,0
              -104.367805,22.022995,0
              -104.367253,22.023986,0
              -104.36901,22.024463,0
              -104.367862,22.025585,0
              -104.369026,22.026075,0
              -104.368714,22.027091,0
              -104.368906,22.028644,0
              -104.366589,22.029011,0
              -104.365916,22.030056,0
              -104.366365,22.031729,0
              -104.366265,22.033541,0
              -104.366626,22.034419,0
              -104.366105,22.035381,0
              -104.365233,22.035913,0
              -104.365086,22.036787,0
              -104.365741,22.038455,0
              -104.36539,22.039582,0
              -104.365444,22.040764,0
              -104.366591,22.0423,0
              -104.367136,22.042463,0
              -104.367045,22.04351,0
              -104.367706,22.044497,0
              -104.367671,22.045464,0
              -104.36544,22.047873,0
              -104.364484,22.04846,0
              -104.36154,22.052853,0
              -104.362778,22.055695,0
              -104.363214,22.057102,0
              -104.363488,22.060016,0
              -104.363455,22.063194,0
              -104.363749,22.064302,0
              -104.363652,22.067008,0
              -104.363846,22.067982,0
              -104.363523,22.069026,0
              -104.363299,22.070894,0
              -104.363477,22.074137,0
              -104.365539,22.077128,0
              -104.365566,22.07796,0
              -104.366687,22.079268,0
              -104.36746,22.080695,0
              -104.36854,22.084327,0
              -104.368273,22.085139,0
              -104.366824,22.086853,0
              -104.366648,22.087534,0
              -104.367476,22.089551,0
              -104.367554,22.091218,0
              -104.368297,22.09329,0
              -104.369445,22.09484,0
              -104.368952,22.095511,0
              -104.369235,22.096479,0
              -104.371245,22.099092,0
              -104.371154,22.099924,0
              -104.372538,22.100198,0
              -104.373224,22.101356,0
              -104.373192,22.102564,0
              -104.371854,22.104752,0
              -104.371416,22.105986,0
              -104.369818,22.108075,0
              -104.369141,22.108718,0
              -104.366046,22.110459,0
              -104.365513,22.112,0
              -104.364707,22.11244,0
              -104.364775,22.114332,0
              -104.364367,22.11551,0
              -104.364639,22.116399,0
              -104.364131,22.117705,0
              -104.364278,22.118197,0
              -104.36359,22.120623,0
              -104.363861,22.122143,0
              -104.362511,22.125193,0
              -104.361325,22.127338,0
              -104.361093,22.128552,0
              -104.361701,22.132373,0
              -104.361416,22.134428,0
              -104.361645,22.134907,0
              -104.361558,22.136699,0
              -104.360474,22.137653,0
              -104.359792,22.138772,0
              -104.359377,22.140656,0
              -104.359217,22.143178,0
              -104.35818,22.1446,0
              -104.35621,22.146614,0
              -104.354839,22.149856,0
              -104.354559,22.15121,0
              -104.354418,22.154001,0
              -104.35414,22.154678,0
              -104.35408,22.156687,0
              -104.354574,22.158582,0
              -104.355589,22.160907,0
              -104.355734,22.162193,0
              -104.355453,22.163663,0
              -104.356272,22.165435,0
              -104.355464,22.166319,0
              -104.354331,22.166899,0
              -104.351342,22.167494,0
              -104.350835,22.168614,0
              -104.350156,22.168659,0
              -104.34909,22.170511,0
              -104.349807,22.172383,0
              -104.350569,22.175893,0
              -104.349377,22.175784,0
              -104.348333,22.176336,0
              -104.348385,22.176795,0
              -104.347602,22.17713,0
              -104.347088,22.1789,0
              -104.346209,22.179319,0
              -104.346264,22.180135,0
              -104.34495,22.180687,0
              -104.344322,22.181688,0
              -104.340404,22.183451,0
              -104.339261,22.185661,0
              -104.337763,22.185139,0
              -104.336551,22.186722,0
              -104.336572,22.187563,0
              -104.335891,22.188332,0
              -104.335551,22.190065,0
              -104.336517,22.192591,0
              -104.336082,22.194213,0
              -104.334641,22.19645,0
              -104.333225,22.198091,0
              -104.332318,22.198788,0
              -104.331858,22.200491,0
              -104.332808,22.201547,0
              -104.333834,22.202136,0
              -104.336119,22.202331,0
              -104.337071,22.202802,0
              -104.338935,22.20477,0
              -104.340742,22.206413,0
              -104.341359,22.209563,0
              -104.341141,22.210819,0
              -104.340497,22.212494,0
              -104.339458,22.213477,0
              -104.336669,22.214921,0
              -104.333907,22.215822,0
              -104.334486,22.216081,0
              -104.333805,22.217055,0
              -104.333789,22.218383,0
              -104.332751,22.219245,0
              -104.333416,22.220749,0
              -104.332151,22.222272,0
              -104.332303,22.223433,0
              -104.331749,22.225516,0
              -104.331978,22.226333,0
              -104.332014,22.228353,0
              -104.331121,22.229189,0
              -104.3293,22.230047,0
              -104.328363,22.229734,0
              -104.328087,22.230513,0
              -104.326466,22.231105,0
              -104.325898,22.231792,0
              -104.326417,22.233064,0
              -104.327059,22.233902,0
              -104.327203,22.235999,0
              -104.327452,22.23687,0
              -104.327116,22.237759,0
              -104.328283,22.238307,0
              -104.328515,22.23898,0
              -104.328199,22.239741,0
              -104.328695,22.241882,0
              -104.328027,22.243198,0
              -104.328667,22.24418,0
              -104.328602,22.245486,0
              -104.326861,22.246621,0
              -104.327379,22.247792,0
              -104.326695,22.247917,0
              -104.325765,22.248999,0
              -104.324268,22.249722,0
              -104.323329,22.251173,0
              -104.323229,22.252025,0
              -104.322235,22.253942,0
              -104.319935,22.25547,0
              -104.319436,22.256382,0
              -104.318165,22.256908,0
              -104.316185,22.256275,0
              -104.313797,22.258043,0
              -104.312897,22.259165,0
              -104.311204,22.262769,0
              -104.310798,22.263306,0
              -104.309388,22.263224,0
              -104.307407,22.264875,0
              -104.306726,22.264954,0
              -104.306574,22.265751,0
              -104.304483,22.268511,0
              -104.303351,22.269498,0
              -104.302839,22.271727,0
              -104.301224,22.272935,0
              -104.300289,22.272917,0
              -104.300379,22.274137,0
              -104.300116,22.275871,0
              -104.298835,22.276412,0
              -104.29748,22.275756,0
              -104.296475,22.276167,0
              -104.29564,22.276908,0
              -104.295198,22.280495,0
              -104.294127,22.281043,0
              -104.29392,22.28236,0
              -104.293037,22.283559,0
              -104.292448,22.285032,0
              -104.291678,22.285277,0
              -104.290576,22.28493,0
              -104.289888,22.285515,0
              -104.288758,22.28564,0
              -104.290205,22.286718,0
              -104.289235,22.287446,0
              -104.289941,22.287931,0
              -104.290066,22.288959,0
              -104.289068,22.290457,0
              -104.289792,22.291809,0
              -104.289571,22.29263,0
              -104.289782,22.293561,0
              -104.288767,22.295218,0
              -104.28694,22.296198,0
              -104.285193,22.296693,0
              -104.284866,22.297094,0
              -104.284496,22.298801,0
              -104.284927,22.300002,0
              -104.284836,22.302652,0
              -104.285922,22.302933,0
              -104.2872,22.304573,0
              -104.287377,22.305285,0
              -104.288156,22.305578,0
              -104.288436,22.306315,0
              -104.289498,22.307125,0
              -104.290993,22.307224,0
              -104.292342,22.306957,0
              -104.292646,22.30739,0
              -104.292742,22.309268,0
              -104.293639,22.311938,0
              -104.294435,22.313187,0
              -104.294642,22.314134,0
              -104.293353,22.316028,0
              -104.292649,22.318139,0
              -104.293122,22.318791,0
              -104.292633,22.319702,0
              -104.293012,22.320377,0
              -104.294586,22.321639,0
              -104.296461,22.322463,0
              -104.297005,22.323278,0
              -104.297651,22.323269,0
              -104.29831,22.32467,0
              -104.299256,22.325775,0
              -104.299518,22.327464,0
              -104.299212,22.327925,0
              -104.298041,22.328124,0
              -104.297173,22.328768,0
              -104.296265,22.328795,0
              -104.295517,22.328211,0
              -104.294553,22.328325,0
              -104.293322,22.329162,0
              -104.293023,22.330733,0
              -104.293832,22.335943,0
              -104.295164,22.337262,0
              -104.295165,22.339557,0
              -104.296551,22.341279,0
              -104.297232,22.343444,0
              -104.298148,22.3454,0
              -104.298379,22.347811,0
              -104.29717,22.348159,0
              -104.295258,22.347546,0
              -104.294316,22.346828,0
              -104.293593,22.345248,0
              -104.292513,22.344417,0
              -104.292694,22.345338,0
              -104.291749,22.346545,0
              -104.288847,22.349132,0
              -104.288691,22.350409,0
              -104.289259,22.35178,0
              -104.288474,22.352637,0
              -104.288087,22.353831,0
              -104.286886,22.35476,0
              -104.28574,22.356366,0
              -104.286869,22.357362,0
              -104.289152,22.35763,0
              -104.291807,22.360468,0
              -104.292055,22.361575,0
              -104.293076,22.362999,0
              -104.292806,22.363989,0
              -104.293128,22.365131,0
              -104.325316,22.380749,0
              -104.328041,22.381162,0
              -104.350041,22.386405,0
              -104.351661,22.389193,0
              -104.353533,22.401315,0
              -104.351771,22.407758,0
              -104.348843,22.409717,0
              -104.371512,22.421659,0
              -104.39741,22.411917,0
              -104.422975,22.401798,0
              -104.431926,22.398048,0
              -104.445215,22.393086,0
              -104.459245,22.386843,0
              -104.494135,22.376255,0
              -104.49539,22.376324,0
              -104.495933,22.374511,0
              -104.495417,22.372611,0
              -104.494801,22.371954,0
              -104.493566,22.371692,0
              -104.493149,22.371289,0
              -104.491123,22.372335,0
              -104.489293,22.371321,0
              -104.488594,22.370645,0
              -104.48786,22.368905,0
              -104.488001,22.367037,0
              -104.488919,22.36538,0
              -104.491035,22.363822,0
              -104.492782,22.363805,0
              -104.493823,22.363479,0
              -104.494801,22.362711,0
              -104.49499,22.360532,0
              -104.49401,22.359895,0
              -104.493198,22.360845,0
              -104.492502,22.360807,0
              -104.491258,22.358912,0
              -104.490986,22.357504,0
              -104.489554,22.356111,0
              -104.488174,22.354078,0
              -104.487333,22.353189,0
              -104.485227,22.352436,0
              -104.483666,22.352839,0
              -104.481206,22.352728,0
              -104.48121,22.351617,0
              -104.482565,22.351102,0
              -104.48369,22.349433,0
              -104.484606,22.34926,0
              -104.485495,22.350592,0
              -104.486976,22.351312,0
              -104.488181,22.351493,0
              -104.489119,22.351278,0
              -104.491105,22.351233,0
              -104.491796,22.350988,0
              -104.493856,22.35117,0
              -104.49603,22.350236,0
              -104.497442,22.349029,0
              -104.499063,22.347223,0
              -104.499627,22.346184,0
              -104.502958,22.345822,0
              -104.503605,22.345981,0
              -104.505182,22.345745,0
              -104.506114,22.345096,0
              -104.507398,22.346032,0
              -104.507633,22.346731,0
              -104.508685,22.347686,0
              -104.51113,22.351144,0
              -104.512419,22.35245,0
              -104.513305,22.354048,0
              -104.514285,22.354354,0
              -104.51577,22.356482,0
              -104.517042,22.357169,0
              -104.517222,22.358455,0
              -104.518267,22.359376,0
              -104.518659,22.360604,0
              -104.522632,22.360378,0
              -104.526292,22.361346,0
              -104.527184,22.361443,0
              -104.528505,22.362245,0
              -104.530012,22.363648,0
              -104.530811,22.363916,0
              -104.531955,22.363488,0
              -104.533167,22.363998,0
              -104.53518,22.364226,0
              -104.53617,22.365067,0
              -104.537777,22.367026,0
              -104.538692,22.369983,0
              -104.539894,22.371733,0
              -104.541844,22.37276,0
              -104.543241,22.374231,0
              -104.544642,22.375089,0
              -104.546728,22.375705,0
              -104.547669,22.376293,0
              -104.549113,22.379175,0
              -104.549411,22.381732,0
              -104.550235,22.383109,0
              -104.550955,22.385621,0
              -104.550419,22.386445,0
              -104.550518,22.388082,0
              -104.551253,22.388867,0
              -104.552823,22.388345,0
              -104.554697,22.387053,0
              -104.555695,22.386804,0
              -104.556312,22.385881,0
              -104.556928,22.385657,0
              -104.557736,22.386066,0
              -104.557689,22.38767,0
              -104.557993,22.388548,0
              -104.557987,22.390839,0
              -104.558406,22.391602,0
              -104.558715,22.393439,0
              -104.560879,22.394779,0
              -104.564948,22.39504,0
              -104.565634,22.395277,0
              -104.567147,22.394747,0
              -104.570098,22.394088,0
              -104.571869,22.393938,0
              -104.572656,22.39412,0
              -104.573838,22.394885,0
              -104.574589,22.39476,0
              -104.576092,22.395803,0
              -104.577099,22.396786,0
              -104.579319,22.398063,0
              -104.580954,22.39932,0
              -104.582074,22.400448,0
              -104.582321,22.401499,0
              -104.583569,22.403763,0
              -104.583325,22.405024,0
              -104.583777,22.406073,0
              -104.585158,22.4064,0
              -104.586611,22.406271,0
              -104.58691,22.406761,0
              -104.586519,22.407761,0
              -104.5868,22.41017,0
              -104.58847,22.412654,0
              -104.590529,22.411957,0
              -104.591594,22.412216,0
              -104.592724,22.411829,0
              -104.593457,22.414116,0
              -104.594079,22.4152,0
              -104.593353,22.416725,0
              -104.592964,22.418562,0
              -104.59331,22.420779,0
              -104.594556,22.42281,0
              -104.594365,22.423944,0
              -104.593534,22.424765,0
              -104.59347,22.425606,0
              -104.59394,22.42612,0
              -104.595641,22.426714,0
              -104.595523,22.428591,0
              -104.597132,22.431084,0
              -104.59823,22.431268,0
              -104.598767,22.432018,0
              -104.597886,22.432673,0
              -104.597076,22.433872,0
              -104.596975,22.435211,0
              -104.597176,22.436755,0
              -104.597911,22.437715,0
              -104.599099,22.438688,0
              -104.599889,22.43839,0
              -104.601509,22.439168,0
              -104.602393,22.440554,0
              -104.602519,22.442541,0
              -104.603062,22.443321,0
              -104.604009,22.443884,0
              -104.604445,22.44486,0
              -104.605309,22.445191,0
              -104.605437,22.445738,0
              -104.605073,22.447114,0
              -104.603655,22.449405,0
              -104.603725,22.450126,0
              -104.604358,22.450649,0
              -104.603821,22.452411,0
              -104.602766,22.453691,0
              -104.60285,22.454318,0
              -104.602127,22.455437,0
              -104.602951,22.458765,0
              -104.602592,22.460515,0
              -104.63836,22.463419,0
              -104.655292,22.462155,0
              -104.653629,22.498119,0
              -104.654167,22.5,0
              -104.654584,22.523406,0
              -104.65368,22.524242,0
              -104.654051,22.525324,0
              -104.655402,22.526041,0
              -104.655653,22.526501,0
              -104.655345,22.527964,0
              -104.655759,22.528149,0
              -104.655297,22.529258,0
              -104.656291,22.529936,0
              -104.656463,22.530704,0
              -104.655999,22.531625,0
              -104.65627,22.532715,0
              -104.656791,22.533218,0
              -104.655696,22.533658,0
              -104.65561,22.534189,0
              -104.65647,22.535252,0
              -104.657078,22.535493,0
              -104.65689,22.536091,0
              -104.655939,22.536785,0
              -104.656512,22.537256,0
              -104.656346,22.538093,0
              -104.656692,22.539021,0
              -104.655893,22.539862,0
              -104.656495,22.541315,0
              -104.659002,22.542271,0
              -104.659174,22.542798,0
              -104.658714,22.544013,0
              -104.659232,22.546039,0
              -104.660015,22.54675,0
              -104.661578,22.546917,0
              -104.662745,22.547362,0
              -104.663725,22.549269,0
              -104.66235,22.550675,0
              -104.663311,22.551445,0
              -104.664614,22.553092,0
              -104.66618,22.555376,0
              -104.666675,22.55667,0
              -104.666668,22.558757,0
              -104.66687,22.559323,0
              -104.667854,22.560223,0
              -104.667622,22.562545,0
              -104.669217,22.564009,0
              -104.669998,22.565262,0
              -104.671685,22.564055,0
              -104.672539,22.564125,0
              -104.675944,22.561423,0
              -104.678571,22.560565,0
              -104.680958,22.559096,0
              -104.683464,22.558531,0
              -104.6858,22.557788,0
              -104.687493,22.558608,0
              -104.689794,22.558389,0
              -104.690683,22.557767,0
              -104.69285,22.557452,0
              -104.694998,22.556626,0
              -104.696718,22.556552,0
              -104.700036,22.555824,0
              -104.7013,22.555002,0
              -104.704299,22.554995,0
              -104.705036,22.55593,0
              -104.706571,22.555786,0
              -104.707205,22.554985,0
              -104.708737,22.554624,0
              -104.709876,22.555828,0
              -104.711052,22.556586,0
              -104.715164,22.555949,0
              -104.716552,22.558889,0
              -104.716853,22.560962,0
              -104.71735,22.561738,0
              -104.718591,22.562757,0
              -104.718624,22.563406,0
              -104.717802,22.564818,0
              -104.718513,22.565651,0
              -104.719359,22.568686,0
              -104.719797,22.569045,0
              -104.720734,22.568,0
              -104.721854,22.567208,0
              -104.72323,22.566973,0
              -104.723609,22.564685,0
              -104.725146,22.562987,0
              -104.72523,22.561521,0
              -104.727117,22.5604,0
              -104.727733,22.559343,0
              -104.728776,22.558743,0
              -104.730826,22.558471,0
              -104.731754,22.558552,0
              -104.733373,22.558235,0
              -104.734816,22.558528,0
              -104.736067,22.55795,0
              -104.737053,22.558096,0
              -104.740317,22.559947,0
              -104.740814,22.561036,0
              -104.742989,22.562198,0
              -104.745731,22.56348,0
              -104.74712,22.563504,0
              -104.750134,22.565221,0
              -104.751768,22.565026,0
              -104.755119,22.566103,0
              -104.757192,22.567088,0
              -104.758315,22.568059,0
              -104.759812,22.568718,0
              -104.76152,22.570083,0
              -104.763048,22.573399,0
              -104.76374,22.576238,0
              -104.764364,22.576989,0
              -104.765935,22.578011,0
              -104.767087,22.580853,0
              -104.768158,22.581691,0
              -104.769005,22.581549,0
              -104.770247,22.582501,0
              -104.77186,22.582234,0
              -104.774822,22.584187,0
              -104.775089,22.583975,0
              -104.775934,22.585123,0
              -104.775843,22.585759,0
              -104.774545,22.586966,0
              -104.774049,22.588756,0
              -104.772679,22.589869,0
              -104.772876,22.590711,0
              -104.772573,22.591898,0
              -104.77323,22.591927,0
              -104.773666,22.592716,0
              -104.775071,22.59305,0
              -104.775804,22.594226,0
              -104.775958,22.597622,0
              -104.776702,22.598496,0
              -104.778368,22.599357,0
              -104.777894,22.600572,0
              -104.777844,22.601768,0
              -104.779679,22.603024,0
              -104.779714,22.603742,0
              -104.77892,22.604134,0
              -104.778147,22.605267,0
              -104.778712,22.606459,0
              -104.777858,22.607734,0
              -104.777386,22.607619,0
              -104.776227,22.610064,0
              -104.776417,22.611655,0
              -104.775882,22.61344,0
              -104.776371,22.615475,0
              -104.775688,22.616494,0
              -104.775581,22.617222,0
              -104.776532,22.618231,0
              -104.776998,22.619832,0
              -104.776492,22.620867,0
              -104.776023,22.622568,0
              -104.777111,22.624996,0
              -104.775829,22.627337,0
              -104.775854,22.629341,0
              -104.776144,22.630475,0
              -104.774508,22.631738,0
              -104.774212,22.632821,0
              -104.775754,22.633786,0
              -104.776629,22.634723,0
              -104.77676,22.63622,0
              -104.777331,22.636628,0
              -104.778792,22.636862,0
              -104.778985,22.638241,0
              -104.778576,22.639406,0
              -104.777833,22.639681,0
              -104.778011,22.640924,0
              -104.778768,22.641277,0
              -104.779187,22.642931,0
              -104.779824,22.64334,0
              -104.781192,22.643522,0
              -104.783528,22.64465,0
              -104.784412,22.645804,0
              -104.787418,22.647071,0
              -104.78863,22.647882,0
              -104.789217,22.647944,0
              -104.791778,22.647414,0
              -104.793116,22.648456,0
              -104.793992,22.648711,0
              -104.796546,22.648171,0
              -104.798359,22.648575,0
              -104.800493,22.648408,0
              -104.802018,22.648876,0
              -104.804256,22.648744,0
              -104.80529,22.647394,0
              -104.805131,22.645844,0
              -104.80461,22.644914,0
              -104.803293,22.644109,0
              -104.802773,22.642405,0
              -104.8044,22.63983,0
              -104.80685,22.64007,0
              -104.807784,22.639827,0
              -104.808094,22.639241,0
              -104.809435,22.638754,0
              -104.811072,22.637853,0
              -104.811343,22.63662,0
              -104.811049,22.635043,0
              -104.811309,22.634765,0
              -104.814678,22.634249,0
              -104.815315,22.634424,0
              -104.815412,22.635221,0
              -104.816472,22.636091,0
              -104.815229,22.637209,0
              -104.815383,22.638319,0
              -104.816692,22.639683,0
              -104.818673,22.640465,0
              -104.82104,22.640386,0
              -104.822044,22.639671,0
              -104.823826,22.640016,0
              -104.824475,22.639813,0
              -104.825709,22.640126,0
              -104.827177,22.640857,0
              -104.82795,22.640223,0
              -104.829433,22.640226,0
              -104.832099,22.641399,0
              -104.833715,22.643146,0
              -104.835348,22.644318,0
              -104.837175,22.646031,0
              -104.838914,22.645677,0
              -104.840026,22.645861,0
              -104.840793,22.646588,0
              -104.840601,22.647936,0
              -104.841127,22.649395,0
              -104.840953,22.65013,0
              -104.840116,22.651139,0
              -104.858397,22.648327,0
              -104.862493,22.60707,0
              -104.960525,22.505311,0
              -104.987913,22.498727,0
              -105.007553,22.585672,0
              -105.072369,22.656499,0
              -105.068423,22.678414,0
              -105.057303,22.688094,0
              -104.89272,22.737409,0
              -104.912959,22.745569,0
              -104.913079,22.746095,0
              -104.914204,22.747471,0
              -104.91485,22.747549,0
              -104.915637,22.748538,0
              -104.915307,22.751459,0
              -104.914425,22.75262,0
              -104.91403,22.754985,0
              -104.914081,22.756117,0
              -104.914672,22.7573,0
              -104.914315,22.760265,0
              -104.913605,22.761712,0
              -104.912638,22.76273,0
              -104.912119,22.764379,0
              -104.912391,22.765484,0
              -104.911538,22.768986,0
              -104.911507,22.769738,0
              -104.912147,22.771643,0
              -104.9133,22.773159,0
              -104.913417,22.775294,0
              -104.912614,22.777554,0
              -104.911354,22.779488,0
              -104.910946,22.781155,0
              -104.910309,22.782028,0
              -104.910255,22.783098,0
              -104.90972,22.784895,0
              -104.910351,22.786407,0
              -104.911684,22.787739,0
              -104.91259,22.787782,0
              -104.913354,22.788938,0
              -104.913375,22.790486,0
              -104.913017,22.791704,0
              -104.911913,22.792911,0
              -104.911314,22.794002,0
              -104.909907,22.795378,0
              -104.908762,22.795129,0
              -104.90771,22.795327,0
              -104.906598,22.796237,0
              -104.905715,22.797592,0
              -104.905825,22.799084,0
              -104.905601,22.799817,0
              -104.907113,22.800491,0
              -104.910133,22.800657,0
              -104.911021,22.801332,0
              -104.911329,22.803192,0
              -104.91107,22.803576,0
              -104.909852,22.803917,0
              -104.908391,22.805354,0
              -104.908257,22.807601,0
              -104.909035,22.80831,0
              -104.910493,22.808622,0
              -104.911466,22.809334,0
              -104.911693,22.810061,0
              -104.911747,22.8119,0
              -104.9131,22.813782,0
              -104.914155,22.814376,0
              -104.917178,22.817194,0
              -104.917472,22.818428,0
              -104.918389,22.819781,0
              -104.919491,22.820626,0
              -104.921288,22.821368,0
              -104.924105,22.822751,0
              -104.925327,22.823058,0
              -104.927134,22.824247,0
              -104.928103,22.825432,0
              -104.929754,22.826429,0
              -104.932798,22.827309,0
              -104.934226,22.827311,0
              -104.936024,22.826504,0
              -104.938059,22.822388,0
              -104.938898,22.820404,0
              -104.94006,22.816977,0
              -104.940505,22.816163,0
              -104.941341,22.816137,0
              -104.942122,22.816607,0
              -104.945405,22.819247,0
              -104.948448,22.82113,0
              -104.950013,22.821775,0
              -104.951721,22.82183,0
              -104.952522,22.821405,0
              -104.953248,22.820494,0
              -104.953809,22.818511,0
              -104.954988,22.81625,0
              -104.957066,22.814232,0
              -104.958016,22.813646,0
              -104.958967,22.813605,0
              -104.960866,22.814171,0
              -104.962134,22.815102,0
              -104.964395,22.815177,0
              -104.965033,22.8156,0
              -104.965972,22.817089,0
              -104.966453,22.818507,0
              -104.967406,22.819308,0
              -104.968494,22.819677,0
              -104.969948,22.81963,0
              -104.971148,22.820586,0
              -104.971596,22.82321,0
              -104.971692,22.824662,0
              -104.973922,22.825722,0
              -104.977209,22.825776,0
              -104.978276,22.826201,0
              -104.9794,22.827898,0
              -104.980196,22.829589,0
              -104.980245,22.830578,0
              -104.981513,22.832446,0
              -104.983467,22.833612,0
              -104.984662,22.833971,0
              -104.986088,22.83401,0
              -104.988405,22.836049,0
              -104.988803,22.837587,0
              -104.989653,22.83886,0
              -104.989095,22.841683,0
              -104.987808,22.844119,0
              -104.987464,22.846184,0
              -104.987749,22.847086,0
              -104.989066,22.849232,0
              -104.990124,22.849857,0
              -104.99026,22.851543,0
              -104.990614,22.852145,0
              -104.989365,22.853907,0
              -104.988359,22.854609,0
              -104.98787,22.855515,0
              -104.988006,22.857652,0
              -104.98857,22.859395,0
              -104.988188,22.862124,0
              -104.988242,22.866469,0
              -104.988127,22.870289,0
              -104.988563,22.873912,0
              -104.988499,22.87504,0
              -104.989586,22.875697,0
              -104.9897,22.876552,0
              -104.989167,22.877476,0
              -104.988604,22.877495,0
              -104.987436,22.878568,0
              -104.987008,22.880807,0
              -104.987041,22.881506,0
              -104.988056,22.882751,0
              -104.987867,22.884062,0
              -104.987796,22.888252,0
              -104.988945,22.890883,0
              -104.98957,22.89143,0
              -104.990488,22.891613,0
              -104.993212,22.891491,0
              -104.995052,22.89298,0
              -104.997021,22.895229,0
              -104.997634,22.896539,0
              -104.99955,22.898601,0
              -105.000711,22.900663,0
              -105.002944,22.901878,0
              -105.005069,22.903552,0
              -105.005501,22.90492,0
              -105.005676,22.906742,0
              -105.005176,22.907256,0
              -105.004289,22.907257,0
              -105.002943,22.906709,0
              -105.002287,22.90598,0
              -105.001434,22.90598,0
              -104.999857,22.907196,0
              -105.000054,22.908897,0
              -105.001956,22.911949,0
              -105.004146,22.913776,0
              -105.004814,22.914562,0
              -105.005606,22.916954,0
              -105.0083,22.91981,0
              -105.00971,22.921482,0
              -105.010039,22.922363,0
              -105.009443,22.92527,0
              -105.009943,22.925765,0
              -105.009941,22.926542,0
              -105.008526,22.927982,0
              -105.007704,22.929095,0
              -105.005439,22.930493,0
              -105.004192,22.932013,0
              -105.004094,22.934079,0
              -105.004881,22.937555,0
              -105.00475,22.938619,0
              -105.003963,22.940654,0
              -105.003306,22.941536,0
              -105.000837,22.943868,0
              -105.000639,22.944355,0
              -105.000312,22.94721,0
              -104.999753,22.94797,0
              -104.997816,22.949883,0
              -104.996893,22.952002,0
              -104.997551,22.953791,0
              -104.998438,22.954551,0
              -104.998021,22.957173,0
              -104.998633,22.957795,0
              -105.000534,22.958509,0
              -105.00155,22.95934,0
              -105.003206,22.960102,0
              -105.004999,22.962923,0
              -105.005067,22.964131,0
              -105.005963,22.96558,0
              -105.007454,22.966887,0
              -105.008341,22.968459,0
              -105.008606,22.970186,0
              -105.008222,22.971496,0
              -105.006717,22.973458,0
              -105.003864,22.976165,0
              -105.003139,22.976983,0
              -105.013825,22.977673,0
              -105.076016,22.959639,0
              -105.163574,22.953872,0
              -105.254086,22.956272,0
              -105.297699,22.954162,0
              -105.32357,22.94133,0
              -105.328342,22.942988,0
              -105.328329,22.946157,0
              -105.328719,22.947418,0
              -105.329899,22.9475,0
              -105.33049,22.947983,0
              -105.330129,22.948846,0
              -105.328277,22.952019,0
              -105.328211,22.95264,0
              -105.329612,22.952872,0
              -105.332025,22.951706,0
              -105.333112,22.952252,0
              -105.334142,22.953409,0
              -105.334244,22.95445,0
              -105.33385,22.956114,0
              -105.332648,22.958769,0
              -105.331306,22.961178,0
              -105.330685,22.962692,0
              -105.330849,22.963173,0
              -105.331995,22.963392,0
              -105.333333,22.962081,0
              -105.334028,22.962039,0
              -105.33568,22.9626,0
              -105.336947,22.96345,0
              -105.337304,22.964137,0
              -105.336913,22.96614,0
              -105.337119,22.967689,0
              -105.337888,22.967506,0
              -105.338437,22.966478,0
              -105.341311,22.966713,0
              -105.342741,22.967478,0
              -105.343054,22.968998,0
              -105.342506,22.970416,0
              -105.340591,22.969861,0
              -105.338379,22.969699,0
              -105.337244,22.970419,0
              -105.336876,22.971685,0
              -105.338303,22.973447,0
              -105.339449,22.976397,0
              -105.337306,22.977382,0
              -105.336237,22.980028,0
              -105.336268,22.980474,0
              -105.337322,22.981251,0
              -105.338557,22.981415,0
              -105.340053,22.982004,0
              -105.339596,22.983503,0
              -105.337952,22.983957,0
              -105.336719,22.98474,0
              -105.336495,22.985694,0
              -105.335073,22.988426,0
              -105.335815,22.989434,0
              -105.338378,22.99115,0
              -105.338967,22.992052,0
              -105.338776,22.993498,0
              -105.337899,22.994221,0
              -105.336337,22.994226,0
              -105.33458,22.993415,0
              -105.333898,22.993779,0
              -105.333804,22.995225,0
              -105.334975,22.995944,0
              -105.336147,22.996033,0
              -105.337226,22.998289,0
              -105.338594,22.999641,0
              -105.339403,23.001592,0
              -105.340426,23.00352,0
              -105.340029,23.005674,0
              -105.341026,23.00837,0
              -105.34239,23.007798,0
              -105.342736,23.007229,0
              -105.344101,23.007794,0
              -105.344965,23.009946,0
              -105.344805,23.010391,0
              -105.343342,23.011275,0
              -105.34315,23.012342,0
              -105.343821,23.012886,0
              -105.347053,23.014504,0
              -105.349741,23.015124,0
              -105.349234,23.016438,0
              -105.349506,23.01718,0
              -105.350532,23.018109,0
              -105.352758,23.019614,0
              -105.35375,23.019438,0
              -105.353805,23.020256,0
              -105.353032,23.02142,0
              -105.352953,23.023075,0
              -105.352479,23.024764,0
              -105.35291,23.025505,0
              -105.353369,23.027156,0
              -105.35332,23.028542,0
              -105.352304,23.029782,0
              -105.351645,23.031006,0
              -105.351616,23.032482,0
              -105.351317,23.033959,0
              -105.350728,23.035083,0
              -105.350796,23.035634,0
              -105.351847,23.037422,0
              -105.352814,23.037748,0
              -105.354213,23.037564,0
              -105.355175,23.038451,0
              -105.355407,23.03917,0
              -105.354789,23.040383,0
              -105.355228,23.040934,0
              -106.039778,22.836048,0
            </coordinates>
          </LinearRing>
        </outerBoundaryIs>
      </Polygon>
  </Document>
</kml>

`;
}
})();

QingJ © 2025

镜像随时可能失效,请加Q群300939539或关注我们的公众号极客氢云获取最新地址