WME MapRaid MX-SLP Overlay

Creates polygons for Regions

// ==UserScript==
// @name			WME MapRaid MX-SLP Overlay
// @author          Tom 'Glodenox' Puttemans
// @namespace		http://tomputtemans.com
// @description		Creates polygons for Regions
// @include			/^https:\/\/(www|beta)\.waze\.com\/(?!user\/)(.{2,6}\/)?editor.*$/
// @version			1.4
// @grant			none
// @copyright		2017 Glodenox, based on work by 2015 rickzabel, based on work by 2014 davielde
// ==/UserScript==
setTimeout(initMapRaidOverlay, 1000);
var mapLayer,
	displayedArea = false;

function convertPoints(list) {
	return list.map(function(point) {
		return new OL.Geometry.Point(point[0], point[1]).transform(new OL.Projection("EPSG:4326"), W.map.getProjectionObject());
		
	});
}

function addRaidPolygon(raidLayer, groupPoints, color, name) {
	var style = {
		strokeColor: "Pink",
		strokeOpacity: 0.8,
		strokeWidth: 3,
		fillColor: '#FFFFFF', // Doesn't matter, opacity is set to 0
		fillOpacity: 0,
		label: name,
		labelOutlineColor: "Black",
		labelOutlineWidth: 3,
		fontSize: 14,
		fontColor: "Pink",
		fontOpacity: 0.85,
		fontWeight: "bold"
	};

	var ring = new OL.Geometry.LinearRing(convertPoints(groupPoints));
	var polygon = new OL.Geometry.Polygon([ ring ]);

	var feature = new OL.Feature.Vector(polygon, { name: name }, style);
	raidLayer.addFeatures([ feature ]);
}

function createLayerToggler(parentGroup, checked, name, toggleCallback) {
	var normalizedName = name.toLowerCase().replace(/\s/g, '');
	var group = document.createElement('li');
	var groupToggler = document.createElement('div');
	groupToggler.className = 'controls-container toggler';
	var groupSwitch = document.createElement('input');
	groupSwitch.id = 'layer-switcher-group_' + normalizedName;
	groupSwitch.className = 'layer-switcher-group_' + normalizedName + ' toggle';
	groupSwitch.type = 'checkbox';
	groupSwitch.checked = checked;
	groupSwitch.addEventListener('click', function() { toggleCallback(groupSwitch.checked); });
	groupToggler.appendChild(groupSwitch);
	var groupLabel = document.createElement('label');
	groupLabel.htmlFor = groupSwitch.id;
	groupLabel.style.display = 'block';
	var groupLabelText = document.createElement('div');
	groupLabelText.className = 'label-text';
	groupLabelText.style.textOverflow = 'ellipsis';
	groupLabelText.style.overflowX = 'hidden';
	groupLabelText.appendChild(document.createTextNode(name));
	groupLabel.appendChild(groupLabelText);
	groupToggler.appendChild(groupLabel);
	group.appendChild(groupToggler);
	if (parentGroup !== null) {
		parentGroup.querySelector('input.toggle').addEventListener('click', function(e) {
			groupSwitch.disabled = !e.target.checked;
			if (toggleCallback) {
				toggleCallback(groupSwitch.checked && e.target.checked);
			}
		});
		parentGroup.querySelector('ul.children').appendChild(group);
	} else {
		group.className = 'group';
		groupToggler.classList.add('main');
		var groupChildren = document.createElement('ul');
		groupChildren.className = 'children';
		group.appendChild(groupChildren);
		document.querySelector('.list-unstyled.togglers').appendChild(group);
	}
	return group;
}

function displayCurrentRaidLocation() {
	var raidMapCenter = W.map.getCenter();
	var raidCenterPoint = new OL.Geometry.Point(raidMapCenter.lon, raidMapCenter.lat);
	var locationDiv = document.querySelector('#topbar-container > div > div > div.location-info-region > div');
	var mapRaidDiv = locationDiv.querySelector('strong');
	if (mapRaidDiv === null) {
		mapRaidDiv = document.createElement('strong');
		mapRaidDiv.style.marginLeft = '5px';
		locationDiv.appendChild(mapRaidDiv);
	}

	for (i = 0; i < mapLayer.features.length; i++) {
		if (mapLayer.features[i].geometry.components[0].containsPoint(raidCenterPoint)) {
			mapRaidDiv.textContent = '[MapRaid SLP: ' + mapLayer.features[i].attributes.name + ']';
			displayedArea = true;
			return;
		}
	}
	if (displayedArea) {
		mapRaidDiv.textContent = '';
		displayedArea = false;
	}
}

function initMapRaidOverlay() {
	if (typeof Waze === 'undefined' || typeof W.map === 'undefined' || typeof W.loginManager === 'undefined' || !document.querySelector('#topbar-container > div > div > div.location-info-region > div') || !document.getElementById('layer-switcher-group_display')) {
		setTimeout(initMapRaidOverlay, 800);
		return;
	}
	if (!W.loginManager.user) {
		W.loginManager.events.register("login", null, initMapRaidOverlay);
		W.loginManager.events.register("loginStatus", null, initMapRaidOverlay);
		if (!W.loginManager.user) {
			return;
		}
	}

	if (localStorage.MapRaidChinaVisible === undefined) {
		localStorage.MapRaidChinaVisible = true;
	}

	createLayerToggler(document.getElementById('layer-switcher-group_display').parentNode.parentNode, localStorage.MapRaidChinaVisible == "true", 'Map Raid: SLP', function(checked) {
		localStorage.MapRaidChinaVisible = checked;
		mapLayer.setVisibility(checked);
	});

	mapLayer = new OL.Layer.Vector("MapRaid SLP Equipos", {
		uniqueName: "__SLPMapRaid"
	});

	addRaidPolygon(mapLayer, [
		[-100.603533,24.4013],[-100.642214,24.433696],[-100.685218,24.469743],[-100.71121,24.491522],[-100.742324,24.460435],[-100.742435,24.46033],[-100.743201,24.459559],[-100.764993,24.435445],[-100.772747,24.426863],[-100.809948,24.386963],[-100.807715,24.387328],[-100.809274,24.385929],[-100.811036,24.384405],[-100.818508,24.37787],[-100.850383,24.343539],[-100.850675,24.343397],[-100.851163,24.34289],[-100.870087,24.3306],[-100.877494,24.325769],[-100.877788,24.325577],[-100.879494,24.324464],[-100.881617,24.323079],[-100.893535,24.315302],[-100.895104,24.314278],[-100.901716,24.309962],[-100.906118,24.307092],[-100.907124,24.306436],[-100.917823,24.299457],[-100.918728,24.298866],[-100.92117,24.297274],[-100.922712,24.296267],[-100.922916,24.296134],[-100.924509,24.295095],[-100.92479,24.294912],[-100.925029,24.294755],[-100.92597,24.294142],[-100.926351,24.293893],[-100.931521,24.290524],[-100.93419,24.288782],[-100.935767,24.287704],[-100.945286,24.281196],[-101.006675,24.335835],[-101.006075,24.33752],[-101.005482,24.339185],[-101.00679,24.340243],[-101.006416,24.34149],[-101.006716,24.342623],[-101.006695,24.34435],[-101.006865,24.345522],[-101.008206,24.346722],[-101.009855,24.348427],[-101.010327,24.34963],[-101.010129,24.351822],[-101.010669,24.352501],[-101.010533,24.354361],[-101.010552,24.355566],[-101.010627,24.35682],[-101.011297,24.357959],[-101.010938,24.357938],[-101.010416,24.357787],[-101.009842,24.357784],[-101.009439,24.357873],[-101.008925,24.358018],[-101.00835,24.358152],[-101.007947,24.358196],[-101.007605,24.358138],[-101.007216,24.358177],[-101.006909,24.358337],[-101.006646,24.358556],[-101.006343,24.358598],[-101.006194,24.358597],[-101.005886,24.359176],[-101.00564,24.35956],[-101.005492,24.359737],[-101.005449,24.360612],[-101.005677,24.361049],[-101.005519,24.361566],[-101.005527,24.362201],[-101.00537,24.362588],[-101.005213,24.36294],[-101.005082,24.363281],[-101.004862,24.363538],[-101.004834,24.36382],[-101.004691,24.363996],[-101.004689,24.364325],[-101.004571,24.364631],[-101.004247,24.364993],[-101.004222,24.365448],[-101.004194,24.365802],[-101.004243,24.365982],[-101.004114,24.366271],[-101.004049,24.366498],[-101.003889,24.366717],[-101.003703,24.36688],[-101.003657,24.367078],[-101.003523,24.367234],[-101.003464,24.367454],[-101.003297,24.367702],[-101.003282,24.36801],[-101.00341,24.36825],[-101.003616,24.368589],[-101.003686,24.368824],[-101.0037,24.369066],[-101.003699,24.369169],[-101.00406,24.369209],[-101.004381,24.369116],[-101.004759,24.368847],[-101.005074,24.368622],[-101.005323,24.36855],[-101.005435,24.368571],[-101.00537,24.368806],[-101.005276,24.369095],[-101.005261,24.36954],[-101.005306,24.369943],[-101.005374,24.370277],[-101.005519,24.370452],[-101.005524,24.370909],[-101.005514,24.371166],[-101.005577,24.371537],[-101.005685,24.371821],[-101.005814,24.372068],[-101.006108,24.37257],[-101.006395,24.373065],[-101.00655,24.373287],[-101.006718,24.373588],[-101.006742,24.374107],[-101.006432,24.374807],[-101.006105,24.37562],[-101.005568,24.376338],[-101.004966,24.377114],[-101.004757,24.377502],[-101.004985,24.377522],[-101.005358,24.377509],[-101.005808,24.377496],[-101.006262,24.37752],[-101.007033,24.377583],[-101.007429,24.377616],[-101.007431,24.378306],[-101.00742,24.378848],[-101.007334,24.379551],[-101.007326,24.380121],[-101.007548,24.380187],[-101.007584,24.380585],[-101.006389,24.38051],[-101.007509,24.381377],[-101.008113,24.381984],[-101.008687,24.382535],[-101.008972,24.382952],[-101.009122,24.383508],[-101.009483,24.383875],[-101.009506,24.384181],[-101.009681,24.384479],[-101.009868,24.385117],[-101.00853,24.385242],[-101.007822,24.385158],[-101.007391,24.385114],[-101.007372,24.385868],[-101.007404,24.386362],[-101.007983,24.386872],[-101.008496,24.387574],[-101.006161,24.388714],[-101.006178,24.388949],[-101.005607,24.389453],[-101.005516,24.390051],[-101.005492,24.390134],[-101.005434,24.390277],[-101.005304,24.390368],[-101.005132,24.390431],[-101.005064,24.390547],[-101.004911,24.390852],[-101.004434,24.391213],[-101.001439,24.394768],[-101.001557,24.396593],[-101.00295,24.397543],[-101.002073,24.397819],[-101.001384,24.398079],[-101.000697,24.398266],[-101.000022,24.398442],[-101.00006,24.398574],[-101.000009,24.398892],[-100.999951,24.399095],[-100.999697,24.399376],[-100.999596,24.399435],[-100.999529,24.399713],[-100.99948,24.399912],[-100.999477,24.400276],[-100.999454,24.400415],[-100.999326,24.400609],[-100.999251,24.400804],[-100.999258,24.401055],[-100.999295,24.401228],[-100.999398,24.401451],[-100.999436,24.401551],[-100.999491,24.401754],[-100.99959,24.401974],[-100.999636,24.402217],[-100.999634,24.402392],[-100.999519,24.402662],[-100.999687,24.403222],[-100.999666,24.403631],[-100.999669,24.403871],[-100.998877,24.403916],[-100.997686,24.404168],[-100.99778,24.404936],[-100.997838,24.405478],[-100.997875,24.405995],[-100.997788,24.406568],[-100.997665,24.407304],[-100.99496,24.407393],[-100.994631,24.407368],[-100.994009,24.408218],[-100.993255,24.409176],[-100.993863,24.409355],[-100.993633,24.40983],[-100.993356,24.410355],[-100.993147,24.410767],[-100.99306,24.411349],[-100.988235,24.409552],[-100.988216,24.411979],[-100.98761,24.412542],[-100.987796,24.412842],[-100.988492,24.413404],[-100.989307,24.414306],[-100.9898,24.415596],[-100.9901,24.417976],[-100.989703,24.417994],[-100.987918,24.417793],[-100.987075,24.420009],[-100.986914,24.42099],[-100.986639,24.422256],[-100.986539,24.422506],[-100.986624,24.422534],[-100.986533,24.422988],[-100.986303,24.423675],[-100.986177,24.424063],[-100.985927,24.424254],[-100.986107,24.424466],[-100.986123,24.424694],[-100.985689,24.425099],[-100.985452,24.425367],[-100.985428,24.4257],[-100.985192,24.426131],[-100.984874,24.426809],[-100.984841,24.427268],[-100.98492,24.427442],[-100.985172,24.427683],[-100.985258,24.427863],[-100.985286,24.428257],[-100.985284,24.428537],[-100.98536,24.428841],[-100.985281,24.429057],[-100.985279,24.42931],[-100.985349,24.429512],[-100.985425,24.429704],[-100.985446,24.429835],[-100.985532,24.430058],[-100.985552,24.430305],[-100.985686,24.430588],[-100.985811,24.430752],[-100.98626,24.43121],[-100.986441,24.431378],[-100.986705,24.431495],[-100.986844,24.431718],[-100.986924,24.431976],[-100.987111,24.432217],[-100.987327,24.432519],[-100.996065,24.418155],[-100.998718,24.413794],[-101.006997,24.400181],[-101.007026,24.400133],[-101.009975,24.395282],[-101.010184,24.394939],[-101.011648,24.39253],[-101.012689,24.390819],[-101.024081,24.351315],[-101.026904,24.341484],[-101.027292,24.340125],[-101.029758,24.331442],[-101.032382,24.322392],[-101.03445,24.315195],[-101.040255,24.294986],[-101.042119,24.288344],[-101.047906,24.268236],[-101.065402,24.207021],[-101.070435,24.205021],[-101.085672,24.198968],[-101.165091,24.167378],[-101.173232,24.164137],[-101.216746,24.159732],[-101.213212,24.124452],[-101.212849,24.120764],[-101.209427,24.086865],[-101.206949,24.062315],[-101.205944,24.052261],[-101.205938,24.052203],[-101.205929,24.052113],[-101.205922,24.052046],[-101.205432,24.047143],[-101.201833,24.01104],[-101.199687,23.98978],[-101.195892,23.952153],[-101.192505,23.918559],[-101.19257,23.918564],[-101.19327,23.918161],[-101.194178,23.917417],[-101.196646,23.915557],[-101.197771,23.914664],[-101.198021,23.914408],[-101.198293,23.914273],[-101.198994,23.913839],[-101.199751,23.913291],[-101.200513,23.912694],[-101.202441,23.91121],[-101.204064,23.909985],[-101.20662,23.908037],[-101.209238,23.906123],[-101.211906,23.904191],[-101.21316,23.903169],[-101.215584,23.901334],[-101.220041,23.897924],[-101.222796,23.895789],[-101.227041,23.892561],[-101.229371,23.890863],[-101.237587,23.884592],[-101.241687,23.881424],[-101.248132,23.876434],[-101.248805,23.875902],[-101.250952,23.874182],[-101.256469,23.869704],[-101.262567,23.864884],[-101.267903,23.860691],[-101.276262,23.853914],[-101.285351,23.846535],[-101.288945,23.843618],[-101.294878,23.838832],[-101.295958,23.837954],[-101.297806,23.836452],[-101.312605,23.824422],[-101.326993,23.812669],[-101.340355,23.797153],[-101.340386,23.797117],[-101.340595,23.796845],[-101.340992,23.796487],[-101.342059,23.795734],[-101.345072,23.793006],[-101.352536,23.786888],[-101.356498,23.783551],[-101.359087,23.781419],[-101.361232,23.779684],[-101.366668,23.775233],[-101.372996,23.770054],[-101.381009,23.763449],[-101.389565,23.756375],[-101.390944,23.755236],[-101.393655,23.753028],[-101.395622,23.751362],[-101.397623,23.74968],[-101.399652,23.74804],[-101.401449,23.74655],[-101.404616,23.743942],[-101.406333,23.74249],[-101.408592,23.740614],[-101.417141,23.733569],[-101.426962,23.725471],[-101.437115,23.717031],[-101.444994,23.710812],[-101.452073,23.705224],[-101.466716,23.693662],[-101.509116,23.660164],[-101.517982,23.653156],[-101.540529,23.635327],[-101.560995,23.618986],[-101.572211,23.609887],[-101.582351,23.601658],[-101.588608,23.596839],[-101.595095,23.591588],[-101.598948,23.588538],[-101.602223,23.585884],[-101.609872,23.579815],[-101.622062,23.570057],[-101.626089,23.566794],[-101.628117,23.565192],[-101.630916,23.562944],[-101.633915,23.560559],[-101.639298,23.556309],[-101.642066,23.554085],[-101.644389,23.552224],[-101.654053,23.54449],[-101.659393,23.540214],[-101.66171,23.538316],[-101.667056,23.534015],[-101.670369,23.531248],[-101.677963,23.525381],[-101.690711,23.515107],[-101.695184,23.51159],[-101.6994,23.508149],[-101.706454,23.502499],[-101.710365,23.499384],[-101.7121,23.49794],[-101.717409,23.493684],[-101.722351,23.489721],[-101.775122,23.447629],[-101.800639,23.439583],[-101.817646,23.434217],[-101.827398,23.431139],[-101.839663,23.427266],[-101.895606,23.409589],[-101.953284,23.391338],[-102.011944,23.372749],[-102.014007,23.372411],[-102.037622,23.368519],[-102.043333,23.367577],[-102.070974,23.363006],[-102.100663,23.358176],[-102.105552,23.357212],[-102.122532,23.35386],[-102.122877,23.353914],[-102.124518,23.35417],[-102.125343,23.354298],[-102.130378,23.355069],[-102.13256,23.355403],[-102.135571,23.355882],[-102.137443,23.356171],[-102.139586,23.356504],[-102.143597,23.357125],[-102.157524,23.359281],[-102.159269,23.359552],[-102.162726,23.360086],[-102.168799,23.361026],[-102.168746,23.371863],[-102.168725,23.376429],[-102.168615,23.398908],[-102.174542,23.399554],[-102.191342,23.401388],[-102.19305,23.409548],[-102.193417,23.411306],[-102.193527,23.41183],[-102.194026,23.414464],[-102.194915,23.418782],[-102.195582,23.422118],[-102.19609,23.424559],[-102.19616,23.424894],[-102.195143,23.433893],[-102.194573,23.438935],[-102.194061,23.443461],[-102.194045,23.443604],[-102.194036,23.443683],[-102.19403,23.443753],[-102.193998,23.444051],[-102.193615,23.447599],[-102.204227,23.447434],[-102.206964,23.447391],[-102.231098,23.447013],[-102.23815,23.446901],[-102.23861,23.444673],[-102.239569,23.440029],[-102.241206,23.432098],[-102.2422,23.427284],[-102.24478,23.412624],[-102.245982,23.404199],[-102.245998,23.404088],[-102.246004,23.404056],[-102.246018,23.403983],[-102.246035,23.40389],[-102.250112,23.379961],[-102.250385,23.379246],[-102.250484,23.378986],[-102.250678,23.378475],[-102.250719,23.37829],[-102.252732,23.369009],[-102.253611,23.364956],[-102.255226,23.362466],[-102.256275,23.360847],[-102.258343,23.357657],[-102.263277,23.350121],[-102.268262,23.342278],[-102.269898,23.341],[-102.273927,23.33783],[-102.274429,23.337436],[-102.278468,23.334257],[-102.283514,23.330287],[-102.286331,23.32807],[-102.287649,23.327468],[-102.287866,23.327406],[-102.288095,23.327341],[-102.28833,23.327275],[-102.292897,23.323262],[-102.296038,23.320501],[-102.294479,23.318789],[-102.294356,23.318719],[-102.294255,23.318622],[-102.294085,23.318481],[-102.283553,23.308366],[-102.276377,23.30144],[-102.272236,23.297444],[-102.272163,23.297387],[-102.270045,23.29535],[-102.268001,23.293376],[-102.265093,23.290574],[-102.264579,23.290093],[-102.265209,23.288798],[-102.266268,23.286624],[-102.267209,23.28469],[-102.269041,23.280924],[-102.269534,23.279913],[-102.268986,23.27988],[-102.268447,23.27985],[-102.267691,23.279811],[-102.267048,23.279813],[-102.266435,23.279851],[-102.265831,23.279907],[-102.265172,23.279969],[-102.264474,23.280036],[-102.263743,23.280089],[-102.263326,23.280139],[-102.262628,23.280192],[-102.26221,23.2802],[-102.261828,23.280211],[-102.261001,23.280186],[-102.260405,23.280174],[-102.259572,23.280133],[-102.258406,23.280099],[-102.257804,23.280079],[-102.256392,23.28242],[-102.2547,23.280834],[-102.254488,23.281381],[-102.254087,23.282189],[-102.253979,23.282438],[-102.253733,23.282911],[-102.253412,23.283555],[-102.253098,23.284175],[-102.252636,23.28506],[-102.252164,23.286094],[-102.251956,23.286549],[-102.25193,23.286706],[-102.251387,23.287897],[-102.250856,23.288971],[-102.250309,23.290085],[-102.250126,23.290429],[-102.249853,23.291018],[-102.247171,23.292409],[-102.247074,23.292661],[-102.246878,23.293061],[-102.246756,23.293323],[-102.246724,23.293534],[-102.246566,23.294017],[-102.246481,23.294397],[-102.246352,23.294796],[-102.246296,23.295031],[-102.246206,23.295682],[-102.24617,23.295968],[-102.246061,23.296309],[-102.246017,23.296525],[-102.245948,23.297283],[-102.245806,23.297525],[-102.245412,23.298459],[-102.245214,23.298986],[-102.244976,23.299742],[-102.244811,23.30041],[-102.244607,23.300939],[-102.244373,23.302102],[-102.243856,23.303581],[-102.24372,23.303963],[-102.243565,23.304526],[-102.243366,23.305205],[-102.243225,23.305588],[-102.243194,23.305832],[-102.243097,23.306107],[-102.243072,23.306204],[-102.242935,23.306807],[-102.242847,23.307197],[-102.242463,23.308147],[-102.242247,23.308691],[-102.242108,23.309118],[-102.241998,23.309702],[-102.241894,23.310412],[-102.24179,23.311061],[-102.241765,23.311413],[-102.241589,23.311726],[-102.241541,23.312198],[-102.241413,23.312773],[-102.241357,23.312934],[-102.241189,23.313196],[-102.24113,23.313338],[-102.241163,23.313681],[-102.24116,23.314336],[-102.24125,23.314484],[-102.241069,23.314982],[-102.240765,23.314926],[-102.24048,23.314901],[-102.240267,23.314844],[-102.240023,23.314857],[-102.239752,23.314858],[-102.239546,23.314845],[-102.239278,23.314779],[-102.239058,23.314735],[-102.238731,23.314739],[-102.238391,23.314644],[-102.238104,23.314682],[-102.237674,23.314654],[-102.237248,23.314576],[-102.236738,23.314436],[-102.236195,23.314368],[-102.235438,23.314299],[-102.234854,23.31422],[-102.234019,23.314117],[-102.233617,23.31409],[-102.233349,23.314105],[-102.233244,23.314132],[-102.233183,23.314184],[-102.23228,23.315341],[-102.231957,23.315235],[-102.23182,23.315185],[-102.231597,23.315116],[-102.232679,23.312119],[-102.233503,23.309832],[-102.235993,23.302609],[-102.236552,23.300975],[-102.239084,23.293452],[-102.239788,23.291491],[-102.240469,23.289338],[-102.241705,23.285781],[-102.242326,23.28402],[-102.243008,23.281881],[-102.243303,23.280963],[-102.243663,23.28008],[-102.244392,23.277711],[-102.244672,23.276769],[-102.248022,23.27449],[-102.252796,23.271235],[-102.256996,23.271485],[-102.263101,23.271819],[-102.273221,23.272476],[-102.281891,23.273055],[-102.283687,23.273177],[-102.285825,23.27332],[-102.285845,23.27292],[-102.28623,23.268694],[-102.286487,23.26579],[-102.286738,23.262998],[-102.286758,23.262717],[-102.286887,23.260888],[-102.28705,23.258948],[-102.287374,23.255068],[-102.287873,23.249492],[-102.28801,23.247717],[-102.288137,23.246212],[-102.288357,23.243452],[-102.288497,23.241475],[-102.288598,23.240323],[-102.288826,23.238487],[-102.288964,23.236623],[-102.289146,23.234519],[-102.289369,23.231691],[-102.272075,23.22402],[-102.264711,23.220731],[-102.260872,23.219038],[-102.259875,23.218598],[-102.244227,23.211581],[-102.239458,23.209493],[-102.239417,23.208691],[-102.240597,23.179171],[-102.240965,23.173109],[-102.240974,23.16938],[-102.229925,23.151884],[-102.225525,23.146166],[-102.222288,23.14196],[-102.21965,23.138629],[-102.218303,23.136809],[-102.217779,23.136061],[-102.215835,23.133518],[-102.214155,23.13132],[-102.214274,23.130742],[-102.214668,23.130117],[-102.214944,23.129641],[-102.215213,23.129404],[-102.215604,23.128981],[-102.216164,23.128498],[-102.216714,23.127865],[-102.217263,23.127365],[-102.217951,23.1268],[-102.218992,23.125757],[-102.219883,23.124765],[-102.220462,23.124019],[-102.220884,23.123417],[-102.221061,23.123265],[-102.221496,23.12275],[-102.221859,23.122283],[-102.222047,23.121956],[-102.222066,23.121517],[-102.222031,23.121282],[-102.222053,23.121016],[-102.22231,23.120716],[-102.22258,23.120333],[-102.222897,23.12008],[-102.223347,23.119742],[-102.223731,23.119418],[-102.224554,23.118103],[-102.224352,23.117887],[-102.224733,23.117291],[-102.225087,23.1167],[-102.225676,23.115701],[-102.226113,23.114866],[-102.226503,23.114307],[-102.226805,23.11346],[-102.22718,23.112765],[-102.227231,23.112231],[-102.227477,23.111624],[-102.227793,23.110913],[-102.228476,23.110097],[-102.22882,23.109603],[-102.229192,23.109137],[-102.22959,23.108527],[-102.229915,23.108165],[-102.230221,23.107747],[-102.230635,23.106538],[-102.23076,23.106298],[-102.230807,23.106207],[-102.231059,23.105436],[-102.235108,23.099213],[-102.237472,23.095274],[-102.241539,23.086335],[-102.247821,23.078381],[-102.248004,23.077708],[-102.248428,23.077073],[-102.248731,23.076552],[-102.248873,23.076411],[-102.249033,23.076251],[-102.249479,23.075744],[-102.249731,23.075458],[-102.249874,23.075119],[-102.249914,23.075022],[-102.250198,23.074346],[-102.250793,23.073123],[-102.250801,23.0731],[-102.251319,23.071592],[-102.251531,23.07042],[-102.251836,23.068834],[-102.251975,23.068224],[-102.252368,23.067209],[-102.252538,23.066555],[-102.25249,23.066123],[-102.2528,23.065238],[-102.253238,23.064184],[-102.253612,23.0633],[-102.253684,23.06313],[-102.254143,23.061511],[-102.254272,23.061183],[-102.254354,23.060907],[-102.254394,23.060768],[-102.25453,23.060311],[-102.254994,23.059283],[-102.255306,23.058585],[-102.255319,23.058557],[-102.255618,23.058172],[-102.255763,23.057985],[-102.256041,23.057595],[-102.256112,23.057495],[-102.256205,23.056904],[-102.256326,23.056509],[-102.25645,23.056105],[-102.257315,23.054584],[-102.257632,23.054065],[-102.257834,23.053733],[-102.258355,23.052878],[-102.258853,23.052062],[-102.258871,23.051969],[-102.258941,23.051618],[-102.259048,23.05054],[-102.25909,23.049627],[-102.259147,23.048978],[-102.259169,23.048738],[-102.259198,23.048399],[-102.259211,23.048363],[-102.259537,23.047455],[-102.259624,23.047309],[-102.259831,23.046966],[-102.259852,23.046902],[-102.259927,23.046674],[-102.260051,23.045916],[-102.252279,23.046618],[-102.250606,23.046739],[-102.238082,23.047644],[-102.237203,23.042571],[-102.236814,23.040096],[-102.236276,23.036876],[-102.235551,23.032843],[-102.234314,23.028187],[-102.233801,23.026402],[-102.233524,23.024937],[-102.228152,22.996523],[-102.210536,22.932189],[-102.196982,22.882643],[-102.192132,22.864902],[-102.176131,22.843023],[-102.172648,22.839107],[-102.167657,22.833179],[-102.166091,22.831767],[-102.16565,22.831177],[-102.164042,22.829053],[-102.158629,22.822524],[-102.150754,22.812774],[-102.144486,22.805138],[-102.140668,22.800531],[-102.139113,22.798798],[-102.139095,22.798778],[-102.138035,22.797596],[-102.131527,22.790343],[-102.124897,22.782952],[-102.113431,22.774468],[-102.112604,22.773856],[-102.111934,22.773361],[-102.110766,22.772496],[-102.109811,22.77179],[-102.101823,22.765877],[-102.090472,22.757474],[-102.088596,22.756086],[-102.063152,22.737242],[-102.063071,22.737183],[-102.054141,22.730567],[-102.054109,22.730543],[-102.045102,22.723869],[-102.04502,22.723809],[-102.043463,22.722655],[-102.039569,22.71977],[-102.03496,22.716354],[-101.948214,22.652006],[-101.946065,22.65041],[-101.939756,22.645725],[-101.86755,22.654652],[-101.862494,22.655003],[-101.858031,22.65553],[-101.853284,22.656025],[-101.85664,22.639992],[-101.857406,22.636117],[-101.858159,22.631215],[-101.859474,22.625697],[-101.862192,22.61395],[-101.863214,22.608752],[-101.864072,22.605115],[-101.865343,22.598938],[-101.866581,22.593102],[-101.867391,22.588972],[-101.869996,22.576853],[-101.872958,22.563073],[-101.872779,22.563034],[-101.853836,22.55892],[-101.847332,22.557507],[-101.838233,22.554897],[-101.838036,22.554848],[-101.83459,22.55399],[-101.830169,22.553041],[-101.826283,22.552265],[-101.819892,22.551295],[-101.820691,22.548913],[-101.822118,22.544482],[-101.823117,22.541248],[-101.823667,22.540591],[-101.824326,22.538503],[-101.825655,22.534004],[-101.826927,22.527217],[-101.827872,22.521752],[-101.830043,22.513512],[-101.830438,22.512013],[-101.837141,22.499692],[-101.799276,22.470559],[-101.799138,22.470516],[-101.797792,22.47009],[-101.797708,22.470064],[-101.793663,22.468728],[-101.783361,22.465034],[-101.78294,22.466932],[-101.78239,22.469262],[-101.781795,22.471495],[-101.781291,22.473815],[-101.780552,22.476139],[-101.780005,22.478385],[-101.779802,22.479184],[-101.779471,22.480851],[-101.778495,22.484868],[-101.771535,22.488163],[-101.766017,22.486794],[-101.760883,22.485593],[-101.757285,22.484548],[-101.75405,22.483912],[-101.747064,22.482544],[-101.742945,22.481711],[-101.742759,22.481676],[-101.740671,22.481278],[-101.738679,22.480915],[-101.737547,22.480715],[-101.735361,22.480215],[-101.742682,22.499496],[-101.746175,22.508693],[-101.741245,22.509847],[-101.696018,22.520422],[-101.695849,22.52006],[-101.695513,22.5199],[-101.695337,22.519728],[-101.69535,22.5187],[-101.695251,22.518388],[-101.695061,22.517994],[-101.694902,22.517769],[-101.694716,22.517704],[-101.694547,22.517836],[-101.694512,22.518073],[-101.694439,22.518161],[-101.694266,22.518189],[-101.694171,22.517968],[-101.693995,22.517534],[-101.693884,22.517388],[-101.693841,22.517226],[-101.693699,22.517206],[-101.693333,22.517286],[-101.693088,22.517362],[-101.692859,22.517361],[-101.692625,22.517224],[-101.692391,22.517021],[-101.692157,22.516801],[-101.691861,22.516668],[-101.691688,22.516652],[-101.691481,22.516775],[-101.691045,22.516883],[-101.690413,22.516711],[-101.690047,22.516536],[-101.689701,22.516234],[-101.689702,22.516113],[-101.689756,22.515948],[-101.689908,22.515893],[-101.689886,22.515817],[-101.689562,22.515716],[-101.689157,22.515726],[-101.688751,22.515911],[-101.6883,22.51601],[-101.687969,22.515992],[-101.687941,22.515903],[-101.687931,22.515738],[-101.687726,22.515457],[-101.6875,22.515154],[-101.687105,22.514903],[-101.68716,22.514597],[-101.687436,22.514431],[-101.687502,22.514258],[-101.687211,22.513523],[-101.686873,22.513111],[-101.686559,22.513071],[-101.686347,22.512865],[-101.686094,22.51221],[-101.685467,22.511649],[-101.68495,22.511364],[-101.683965,22.511189],[-101.682701,22.510895],[-101.682294,22.510681],[-101.68176,22.510499],[-101.681366,22.510089],[-101.681134,22.51001],[-101.681017,22.510049],[-101.680847,22.510334],[-101.680757,22.510387],[-101.680525,22.510343],[-101.680319,22.509969],[-101.680225,22.509522],[-101.680178,22.509375],[-101.679978,22.509212],[-101.6798,22.508971],[-101.679457,22.508943],[-101.679131,22.509107],[-101.678906,22.509167],[-101.678745,22.509084],[-101.678588,22.508827],[-101.678344,22.508802],[-101.678258,22.508986],[-101.678087,22.509071],[-101.677903,22.508863],[-101.677864,22.508673],[-101.677463,22.508562],[-101.677239,22.508507],[-101.67718,22.508293],[-101.676812,22.508121],[-101.676385,22.507839],[-101.676228,22.507502],[-101.676085,22.507212],[-101.675777,22.50712],[-101.675757,22.507199],[-101.675555,22.507022],[-101.675365,22.506906],[-101.675201,22.507052],[-101.675089,22.507015],[-101.674959,22.506772],[-101.67475,22.50654],[-101.674409,22.506472],[-101.673737,22.506523],[-101.673502,22.506686],[-101.673326,22.506692],[-101.672987,22.506667],[-101.67283,22.506503],[-101.672446,22.506453],[-101.672158,22.506562],[-101.671799,22.506543],[-101.67129,22.506554],[-101.67112,22.50653],[-101.670802,22.506312],[-101.670627,22.506257],[-101.670348,22.506256],[-101.670023,22.506159],[-101.669536,22.506231],[-101.669269,22.506314],[-101.668827,22.506404],[-101.668439,22.506423],[-101.667713,22.506303],[-101.666851,22.506134],[-101.665809,22.505727],[-101.664904,22.505567],[-101.663897,22.505382],[-101.662479,22.505101],[-101.661079,22.505051],[-101.659906,22.50532],[-101.659526,22.505736],[-101.659542,22.5062],[-101.659938,22.506601],[-101.659613,22.507002],[-101.658988,22.507527],[-101.658125,22.507909],[-101.657743,22.508632],[-101.657415,22.50889],[-101.657487,22.509261],[-101.657329,22.509441],[-101.657111,22.509541],[-101.657051,22.510093],[-101.656786,22.510137],[-101.656508,22.510439],[-101.65664,22.510652],[-101.656531,22.510898],[-101.656422,22.511133],[-101.656626,22.511413],[-101.656456,22.511659],[-101.656272,22.511866],[-101.656307,22.51217],[-101.656215,22.512335],[-101.656123,22.512416],[-101.656206,22.512604],[-101.65615,22.512733],[-101.65609,22.51287],[-101.656134,22.512966],[-101.656197,22.513073],[-101.656304,22.513128],[-101.656399,22.513198],[-101.656477,22.513262],[-101.655994,22.513814],[-101.590083,22.589036],[-101.59039,22.591082],[-101.595313,22.623935],[-101.595287,22.624072],[-101.594928,22.624499],[-101.59481,22.62453],[-101.594654,22.624567],[-101.594542,22.62457],[-101.594477,22.624544],[-101.594136,22.624089],[-101.593844,22.623971],[-101.593501,22.624315],[-101.593481,22.624429],[-101.593444,22.624524],[-101.593171,22.624764],[-101.592943,22.624889],[-101.59274,22.624986],[-101.592487,22.625083],[-101.592286,22.625106],[-101.592025,22.625148],[-101.591629,22.625116],[-101.591325,22.625116],[-101.590966,22.625115],[-101.590739,22.625155],[-101.590581,22.625199],[-101.590381,22.625261],[-101.589944,22.625473],[-101.589879,22.625529],[-101.589628,22.625631],[-101.589211,22.625858],[-101.588934,22.625986],[-101.588795,22.626119],[-101.588427,22.626271],[-101.588007,22.626414],[-101.587732,22.626612],[-101.587325,22.621132],[-101.573821,22.612816],[-101.573778,22.612898],[-101.573636,22.613536],[-101.573568,22.614031],[-101.57348,22.614634],[-101.573486,22.615539],[-101.573585,22.61808],[-101.573666,22.621046],[-101.573674,22.624177],[-101.573603,22.625803],[-101.573476,22.6271],[-101.573412,22.62776],[-101.573174,22.628588],[-101.572797,22.630124],[-101.572898,22.631441],[-101.573367,22.632116],[-101.573608,22.632748],[-101.573795,22.633263],[-101.57388,22.633732],[-101.573715,22.634394],[-101.573294,22.634943],[-101.572928,22.635702],[-101.572448,22.63717],[-101.571792,22.640053],[-101.571488,22.641423],[-101.571208,22.642676],[-101.570829,22.644118],[-101.570512,22.64594],[-101.570439,22.646328],[-101.570444,22.646634],[-101.570401,22.647129],[-101.570307,22.647601],[-101.570136,22.64798],[-101.570067,22.648381],[-101.569998,22.648853],[-101.569907,22.649489],[-101.569864,22.649937],[-101.569747,22.650527],[-101.569467,22.652014],[-101.569375,22.65258],[-101.569306,22.653051],[-101.569212,22.653453],[-101.569139,22.653666],[-101.56904,22.653832],[-101.568893,22.65414],[-101.568795,22.654353],[-101.568647,22.654614],[-101.568549,22.65478],[-101.568353,22.655183],[-101.568102,22.655375],[-101.567879,22.655707],[-101.56773,22.655874],[-101.567531,22.656112],[-101.567411,22.656537],[-101.567398,22.656776],[-101.558871,22.662205],[-101.533926,22.678059],[-101.503069,22.697668],[-101.49999,22.699641],[-101.499976,22.699649],[-101.497004,22.701541],[-101.491175,22.741924],[-101.490965,22.742877],[-101.441915,22.745831],[-101.440622,22.745909],[-101.411077,22.747681],[-101.392798,22.738131],[-101.360058,22.714337],[-101.359699,22.714487],[-101.359497,22.71467],[-101.349234,22.711779],[-101.361557,22.696905],[-101.361897,22.696365],[-101.361958,22.696268],[-101.36572,22.69202],[-101.367043,22.690525],[-101.371346,22.685653],[-101.373756,22.682924],[-101.375277,22.681199],[-101.377024,22.679225],[-101.378968,22.677026],[-101.380018,22.675835],[-101.378644,22.674544],[-101.376765,22.67215],[-101.375582,22.670823],[-101.374548,22.669672],[-101.373316,22.668345],[-101.372437,22.667776],[-101.371251,22.666313],[-101.370666,22.665647],[-101.370053,22.665175],[-101.368951,22.663989],[-101.367544,22.662607],[-101.36627,22.661464],[-101.365126,22.660278],[-101.364107,22.65889],[-101.36224,22.656636],[-101.360664,22.65491],[-101.359376,22.653533],[-101.356533,22.654176],[-101.356492,22.654188],[-101.354769,22.654683],[-101.352011,22.655244],[-101.351472,22.655378],[-101.350806,22.655543],[-101.349125,22.655888],[-101.34766,22.65619],[-101.347191,22.656947],[-101.347009,22.657622],[-101.344793,22.658013],[-101.344445,22.657436],[-101.343908,22.657174],[-101.343477,22.65736],[-101.342759,22.657774],[-101.342035,22.657874],[-101.340877,22.657936],[-101.336937,22.658756],[-101.336286,22.65742],[-101.336124,22.656436],[-101.336005,22.656089],[-101.335362,22.654205],[-101.334954,22.652956],[-101.334844,22.652195],[-101.334883,22.651656],[-101.334722,22.650672],[-101.334569,22.650181],[-101.334609,22.649732],[-101.334634,22.649705],[-101.334552,22.649153],[-101.33473,22.648589],[-101.33458,22.648029],[-101.334667,22.647444],[-101.334559,22.646773],[-101.334402,22.646067],[-101.334371,22.644916],[-101.334122,22.643506],[-101.333968,22.642577],[-101.333874,22.642113],[-101.333114,22.642204],[-101.332494,22.64239],[-101.332033,22.642253],[-101.331721,22.642148],[-101.32965,22.642481],[-101.330412,22.641529],[-101.330185,22.641369],[-101.329232,22.641139],[-101.328468,22.640482],[-101.327798,22.639611],[-101.327201,22.639164],[-101.326989,22.638943],[-101.326885,22.638897],[-101.326743,22.638687],[-101.326402,22.638331],[-101.325735,22.637694],[-101.325486,22.636885],[-101.325456,22.636726],[-101.32527,22.635802],[-101.326029,22.6347],[-101.326281,22.633382],[-101.32612,22.631736],[-101.326134,22.630663],[-101.325829,22.629847],[-101.325784,22.62975],[-101.324759,22.629093],[-101.324542,22.62848],[-101.323409,22.628256],[-101.322103,22.628281],[-101.322063,22.62758],[-101.321642,22.626798],[-101.321583,22.626311],[-101.321043,22.625322],[-101.320587,22.624467],[-101.320362,22.624099],[-101.320048,22.623644],[-101.319119,22.623166],[-101.318739,22.622967],[-101.31846,22.622605],[-101.318441,22.622084],[-101.318465,22.621623],[-101.318549,22.62132],[-101.31843,22.620961],[-101.318246,22.62068],[-101.317966,22.620163],[-101.317664,22.619546],[-101.317218,22.619302],[-101.316889,22.619138],[-101.316746,22.618944],[-101.316737,22.618224],[-101.316531,22.617822],[-101.316219,22.617524],[-101.315862,22.617377],[-101.315475,22.617251],[-101.315191,22.61717],[-101.314997,22.617035],[-101.314918,22.616609],[-101.314787,22.616097],[-101.314446,22.615743],[-101.313984,22.615496],[-101.313702,22.615062],[-101.312067,22.613673],[-101.31198,22.613646],[-101.311218,22.613669],[-101.310571,22.613493],[-101.309984,22.613055],[-101.309109,22.612214],[-101.308526,22.611688],[-101.307945,22.611651],[-101.30767,22.611636],[-101.307424,22.611504],[-101.307097,22.611309],[-101.306728,22.610726],[-101.306502,22.610198],[-101.305988,22.610162],[-101.305894,22.609973],[-101.305709,22.60993],[-101.305503,22.609187],[-101.305031,22.60824],[-101.304996,22.606975],[-101.305009,22.606841],[-101.304312,22.605837],[-101.304226,22.60518],[-101.303947,22.604494],[-101.304067,22.60378],[-101.303622,22.60193],[-101.303461,22.601735],[-101.30225,22.60065],[-101.301795,22.599702],[-101.300867,22.597832],[-101.300481,22.596989],[-101.299939,22.596729],[-101.299499,22.595268],[-101.299116,22.594565],[-101.298613,22.593863],[-101.297953,22.593206],[-101.297806,22.592333],[-101.297503,22.591509],[-101.298219,22.590852],[-101.299152,22.58944],[-101.299216,22.588546],[-101.298854,22.587526],[-101.298583,22.587358],[-101.298058,22.586867],[-101.297656,22.58626],[-101.297162,22.585082],[-101.296784,22.584024],[-101.29681,22.583539],[-101.295102,22.583737],[-101.295205,22.584372],[-101.29359,22.584514],[-101.288848,22.564359],[-101.288338,22.56219],[-101.28777,22.560539],[-101.287697,22.560328],[-101.287519,22.559811],[-101.287629,22.559749],[-101.288011,22.558872],[-101.289086,22.558614],[-101.289077,22.558036],[-101.289087,22.556669],[-101.289305,22.554014],[-101.290142,22.551208],[-101.290666,22.549286],[-101.291435,22.546298],[-101.291543,22.545681],[-101.291533,22.545666],[-101.291637,22.545018],[-101.291901,22.544484],[-101.292276,22.54357],[-101.293167,22.542069],[-101.29358,22.541334],[-101.294085,22.540173],[-101.294139,22.539473],[-101.294251,22.538378],[-101.294428,22.537221],[-101.294608,22.536423],[-101.295389,22.536136],[-101.296324,22.535478],[-101.295713,22.534073],[-101.294912,22.532756],[-101.294553,22.53131],[-101.294415,22.529757],[-101.294515,22.529496],[-101.294598,22.529359],[-101.294282,22.529063],[-101.295111,22.52845],[-101.294889,22.528202],[-101.294061,22.52699],[-101.286909,22.515571],[-101.286612,22.514958],[-101.286279,22.513938],[-101.286206,22.512766],[-101.286413,22.51017],[-101.286276,22.509032],[-101.285726,22.507856],[-101.315383,22.469649],[-101.313726,22.45349],[-101.374786,22.456458],[-101.373948,22.444507],[-101.373918,22.444029],[-101.373588,22.439553],[-101.374796,22.42579],[-101.375589,22.416737],[-101.376622,22.408839],[-101.377595,22.401395],[-101.37765,22.401064],[-101.378429,22.394622],[-101.381911,22.357485],[-101.432972,22.363277],[-101.434721,22.345622],[-101.435125,22.341534],[-101.434839,22.338641],[-101.43441,22.33774],[-101.433611,22.336768],[-101.432666,22.335412],[-101.431966,22.334823],[-101.430799,22.333899],[-101.429776,22.333357],[-101.429078,22.332897],[-101.428934,22.332557],[-101.428367,22.331752],[-101.427623,22.328637],[-101.42624,22.328572],[-101.426265,22.32733],[-101.426201,22.326304],[-101.42587,22.325795],[-101.425397,22.325031],[-101.425477,22.324388],[-101.425104,22.324094],[-101.424414,22.324104],[-101.424407,22.323719],[-101.424448,22.323419],[-101.424126,22.323423],[-101.423899,22.323598],[-101.423551,22.322105],[-101.42298,22.321086],[-101.422501,22.31998],[-101.421891,22.319304],[-101.421755,22.319167],[-101.420907,22.318334],[-101.420344,22.317708],[-101.4196,22.317249],[-101.418718,22.316834],[-101.418435,22.316453],[-101.418428,22.316067],[-101.418837,22.315719],[-101.418996,22.315726],[-101.419694,22.315291],[-101.419732,22.315042],[-101.418389,22.314171],[-101.416854,22.313222],[-101.415233,22.312544],[-101.414812,22.312696],[-101.414787,22.312778],[-101.414272,22.312618],[-101.413575,22.312244],[-101.413021,22.312123],[-101.412383,22.312004],[-101.411734,22.311714],[-101.411405,22.311334],[-101.41076,22.311301],[-101.410574,22.311175],[-101.410384,22.310835],[-101.409822,22.310287],[-101.409498,22.310163],[-101.408891,22.309659],[-101.408648,22.308934],[-101.408404,22.308125],[-101.408299,22.307355],[-101.408378,22.306584],[-101.408413,22.305984],[-101.407529,22.305397],[-101.406507,22.304856],[-101.406177,22.304433],[-101.405942,22.304136],[-101.405516,22.303458],[-101.404624,22.303473],[-101.40394,22.303575],[-101.403252,22.303463],[-101.402695,22.30332],[-101.401944,22.303331],[-101.400966,22.303467],[-101.400579,22.303746],[-101.400025,22.303815],[-101.399504,22.303914],[-101.39921,22.303857],[-101.398745,22.303439],[-101.39805,22.302872],[-101.397321,22.302275],[-101.396067,22.301535],[-101.395048,22.301094],[-101.394422,22.300799],[-101.393796,22.300475],[-101.392648,22.300188],[-101.391435,22.299902],[-101.392029,22.298374],[-101.392903,22.297875],[-101.39355,22.297562],[-101.394034,22.297221],[-101.394974,22.296812],[-101.395365,22.296745],[-101.395521,22.296318],[-101.395779,22.296101],[-101.396393,22.295758],[-101.397069,22.295171],[-101.397874,22.294521],[-101.398549,22.293891],[-101.3989,22.2934],[-101.399204,22.292329],[-101.399178,22.290831],[-101.399132,22.289965],[-101.399619,22.289128],[-101.400383,22.288184],[-101.400753,22.286986],[-101.400449,22.285488],[-101.399877,22.284667],[-101.399083,22.283849],[-101.398344,22.282979],[-101.398,22.282414],[-101.397934,22.281793],[-101.39815,22.281427],[-101.399426,22.281097],[-101.400368,22.280772],[-101.40136,22.280135],[-101.402023,22.279763],[-101.402741,22.279389],[-101.403794,22.279063],[-101.404179,22.278798],[-101.404902,22.278683],[-101.405406,22.278831],[-101.405689,22.279138],[-101.405919,22.279498],[-101.406428,22.279956],[-101.407332,22.280669],[-101.407614,22.280872],[-101.408059,22.280865],[-101.408558,22.280702],[-101.408999,22.280437],[-101.409214,22.279967],[-101.409539,22.279392],[-101.409864,22.278869],[-101.410018,22.278089],[-101.410225,22.277205],[-101.410209,22.27622],[-101.410087,22.2756],[-101.410133,22.275081],[-101.41085,22.274656],[-101.411291,22.274338],[-101.411504,22.273765],[-101.411648,22.272415],[-101.412079,22.271579],[-101.412351,22.271161],[-101.413061,22.270372],[-101.413945,22.269945],[-101.414439,22.269471],[-101.414929,22.268841],[-101.415478,22.268315],[-101.416259,22.267346],[-101.413444,22.267152],[-101.411429,22.267],[-100.481297,23.199575],[-100.483869,23.208832],[-100.483608,23.214046],[-100.474166,23.268361],[-100.468827,23.29906],[-100.460533,23.346629],[-100.460413,23.347318],[-100.457083,23.36641],[-100.514017,23.415631],[-100.517211,23.421043],[-100.497617,23.494027],[-100.495691,23.513226],[-100.494169,23.528406],[-100.464416,23.512082],[-100.459176,23.511566],[-100.459169,23.51711],[-100.459165,23.5196],[-100.459147,23.533164],[-100.467516,23.543566],[-100.467776,23.546539],[-100.467793,23.546735],[-100.468609,23.556073],[-100.469219,23.563052],[-100.469224,23.563107],[-100.469242,23.563317],[-100.469272,23.563665],[-100.469296,23.563934],[-100.4693,23.563977],[-100.469302,23.563998],[-100.469344,23.56448],[-100.469347,23.564514],[-100.469348,23.564525],[-100.469349,23.564542],[-100.469387,23.564978],[-100.469391,23.565025],[-100.469393,23.565047],[-100.469429,23.565458],[-100.469464,23.565853],[-100.469464,23.565854],[-100.469471,23.565937],[-100.469478,23.56602],[-100.469545,23.566783],[-100.491637,23.568613],[-100.49087,23.577974],[-100.488653,23.605047],[-100.486649,23.604139],[-100.477379,23.633819],[-100.472411,23.640662],[-100.470391,23.643444],[-100.469791,23.644271],[-100.469136,23.645172],[-100.468547,23.645983],[-100.467583,23.647312],[-100.466919,23.648227],[-100.466072,23.649392],[-100.465603,23.650038],[-100.46525,23.650525],[-100.464775,23.651178],[-100.464149,23.652041],[-100.463351,23.65314],[-100.462184,23.652721],[-100.454355,23.649905],[-100.452763,23.652059],[-100.452329,23.652646],[-100.451672,23.653536],[-100.451646,23.653571],[-100.450714,23.654832],[-100.450321,23.655364],[-100.450299,23.655394],[-100.449845,23.656009],[-100.458328,23.660113],[-100.454596,23.665212],[-100.449002,23.672856],[-100.447802,23.674492],[-100.44572,23.677332],[-100.446362,23.686258],[-100.447099,23.696517],[-100.4471,23.696535],[-100.4509,23.696148],[-100.452916,23.695923],[-100.457489,23.695517],[-100.458213,23.695375],[-100.458776,23.695265],[-100.462038,23.694627],[-100.461405,23.692915],[-100.461022,23.69188],[-100.461687,23.691642],[-100.461744,23.691621],[-100.462215,23.691464],[-100.462531,23.691371],[-100.462522,23.691342],[-100.462208,23.690223],[-100.461862,23.689065],[-100.462646,23.688979],[-100.46305,23.688603],[-100.463107,23.68855],[-100.46387,23.688644],[-100.464487,23.688723],[-100.464633,23.689823],[-100.46465,23.690235],[-100.464667,23.690653],[-100.464758,23.690883],[-100.465226,23.690569],[-100.465591,23.690255],[-100.465731,23.690134],[-100.466037,23.689903],[-100.466064,23.689882],[-100.465959,23.689213],[-100.465864,23.688905],[-100.465859,23.68888],[-100.466483,23.688941],[-100.466534,23.68903],[-100.466704,23.689333],[-100.466915,23.689708],[-100.467009,23.689955],[-100.467562,23.691402],[-100.46802,23.692601],[-100.467187,23.69292],[-100.466263,23.693273],[-100.466371,23.693609],[-100.46668,23.69489],[-100.467848,23.699737],[-100.467933,23.700087],[-100.474147,23.706842],[-100.474147,23.706843],[-100.490302,23.739601],[-100.494058,23.737931],[-100.497706,23.73631],[-100.497772,23.739755],[-100.497773,23.739802],[-100.49781,23.741724],[-100.497824,23.742464],[-100.498055,23.754558],[-100.497948,23.764947],[-100.497602,23.798713],[-100.528791,23.816353],[-100.528622,23.817532],[-100.526253,23.834381],[-100.526118,23.835342],[-100.52553,23.839526],[-100.546878,23.841833],[-100.5472,23.841868],[-100.550299,23.842203],[-100.548105,23.851899],[-100.547834,23.853098],[-100.545449,23.863637],[-100.544922,23.865965],[-100.544627,23.867271],[-100.544307,23.868684],[-100.544116,23.869525],[-100.543641,23.871624],[-100.543156,23.873769],[-100.539846,23.888393],[-100.549434,23.889315],[-100.547672,23.907902],[-100.54744,23.910351],[-100.547352,23.911277],[-100.546768,23.917437],[-100.551723,23.918136],[-100.553621,23.918403],[-100.558241,23.919055],[-100.55912,23.919179],[-100.562402,23.919641],[-100.560017,23.931601],[-100.550864,23.977528],[-100.548664,23.988603],[-100.548776,23.988589],[-100.541283,24.025748],[-100.53925,24.033192],[-100.539194,24.033398],[-100.53159,24.052149],[-100.530712,24.054315],[-100.525914,24.066143],[-100.524521,24.069575],[-100.523759,24.071455],[-100.529516,24.089465],[-100.529999,24.090973],[-100.532441,24.09861],[-100.53242,24.09864],[-100.53461,24.105526],[-100.536451,24.111402],[-100.538683,24.118516],[-100.51958,24.118382],[-100.516827,24.139897],[-100.548771,24.146031],[-100.549624,24.148302],[-100.556223,24.150981],[-100.589152,24.16434],[-100.6134,24.173944],[-100.604221,24.175909],[-100.593513,24.1782],[-100.589485,24.200077],[-100.585251,24.223069],[-100.585093,24.223925],[-100.615794,24.225056],[-100.633066,24.22598],[-100.614536,24.296334],[-100.599936,24.348791],[-100.600613,24.372905],[-100.603533,24.4013],
	], '#000000', 'Equipo 1');
	addRaidPolygon(mapLayer, [
		[-100.220704,23.298047],[-100.276529,23.309962],[-100.278435,23.310368],[-100.281643,23.304672],[-100.306257,23.260942],[-100.325812,23.263093],[-100.331693,23.259092],[-100.374317,23.265324],[-100.363764,23.189005],[-100.323515,23.195627],[-100.326341,23.185024],[-100.331758,23.162683],[-100.344799,23.164808],[-100.348821,23.165463],[-100.349802,23.165623],[-100.350309,23.165706],[-100.350462,23.165741],[-100.360919,23.16815],[-100.390082,23.174622],[-100.405626,23.178068],[-100.418404,23.180901],[-100.432741,23.184032],[-100.448648,23.187504],[-100.451107,23.188041],[-100.451316,23.188086],[-100.454068,23.188687],[-100.454107,23.188695],[-100.455523,23.189004],[-100.455564,23.189013],[-100.457156,23.18936],[-100.457812,23.189504],[-100.457887,23.18952],[-100.47985,23.194365],[-100.481297,23.199575],[-101.411429,22.267],[-101.407314,22.26669],[-101.397136,22.265961],[-101.396936,22.265945],[-101.39666,22.265921],[-101.396054,22.265859],[-101.392143,22.265585],[-101.391222,22.265447],[-101.390906,22.265434],[-101.387991,22.265312],[-101.387535,22.265254],[-101.387363,22.265268],[-101.386884,22.265233],[-101.385675,22.265127],[-101.385354,22.265093],[-101.384989,22.26422],[-101.384667,22.263694],[-101.384577,22.263431],[-101.384014,22.262167],[-101.383183,22.261625],[-101.382057,22.26114],[-101.382019,22.261018],[-101.381687,22.260956],[-101.381061,22.260939],[-101.380407,22.261002],[-101.379269,22.261098],[-101.379,22.261037],[-101.377404,22.261125],[-101.377242,22.261425],[-101.376804,22.261656],[-101.376356,22.261289],[-101.376181,22.26047],[-101.375941,22.25961],[-101.375565,22.259271],[-101.374902,22.258777],[-101.374415,22.258573],[-101.37423,22.25778],[-101.37405,22.257227],[-101.373669,22.25657],[-101.373318,22.256019],[-101.372855,22.255575],[-101.372653,22.255342],[-101.371956,22.255563],[-101.371559,22.255354],[-101.371729,22.254807],[-101.371469,22.25431],[-101.371307,22.254239],[-101.371266,22.253594],[-101.371232,22.253564],[-101.370603,22.253294],[-101.370011,22.253276],[-101.36949,22.25326],[-101.369465,22.253211],[-101.368921,22.25328],[-101.368691,22.252814],[-101.368262,22.252715],[-101.367984,22.253038],[-101.367501,22.25315],[-101.367045,22.253103],[-101.366496,22.252661],[-101.366345,22.252107],[-101.366284,22.251896],[-101.365628,22.251826],[-101.365398,22.251723],[-101.365164,22.251303],[-101.364645,22.250966],[-101.364265,22.250362],[-101.363829,22.249838],[-101.363453,22.2495],[-101.363426,22.249441],[-101.362911,22.249492],[-101.363121,22.248777],[-101.363103,22.248738],[-101.36328,22.248141],[-101.364449,22.244416],[-101.361671,22.238484],[-101.358002,22.234632],[-101.356147,22.232512],[-101.352854,22.229204],[-101.348695,22.226046],[-101.345204,22.224304],[-101.340524,22.220524],[-101.338724,22.220164],[-101.336469,22.217462],[-101.336386,22.217351],[-101.334066,22.214396],[-101.333508,22.213795],[-101.332636,22.212788],[-101.332363,22.212215],[-101.33234,22.212042],[-101.324253,22.209893],[-101.332731,22.200059],[-101.34692,22.182319],[-101.351306,22.17676],[-101.341257,22.152133],[-101.337693,22.143523],[-101.327745,22.144112],[-101.329382,22.135605],[-101.338308,22.115619],[-101.338925,22.114246],[-101.342441,22.106382],[-101.343025,22.10515],[-101.344092,22.10262],[-101.345279,22.099963],[-101.346321,22.097545],[-101.347468,22.095064],[-101.348635,22.092466],[-101.349621,22.090063],[-101.350763,22.087759],[-101.350859,22.08732],[-101.352632,22.079167],[-101.35424,22.071735],[-101.354751,22.068914],[-101.352438,22.068085],[-101.351176,22.067554],[-101.351563,22.065567],[-101.351678,22.065009],[-101.351892,22.064101],[-101.352078,22.063209],[-101.352387,22.061671],[-101.352554,22.060799],[-101.352708,22.059954],[-101.352843,22.05916],[-101.353145,22.057461],[-101.35329,22.05657],[-101.353359,22.055925],[-101.352455,22.055652],[-101.351512,22.055351],[-101.350528,22.05504],[-101.349562,22.054745],[-101.348559,22.054426],[-101.347668,22.05416],[-101.346734,22.053866],[-101.345885,22.053606],[-101.346587,22.04969],[-101.347456,22.050033],[-101.347852,22.050188],[-101.351629,22.051599],[-101.35167,22.051613],[-101.352415,22.048088],[-101.353099,22.048307],[-101.354069,22.044827],[-101.354176,22.044704],[-101.355202,22.045141],[-101.356455,22.043555],[-101.356791,22.043488],[-101.358643,22.044172],[-101.36,22.044759],[-101.360614,22.042704],[-101.361012,22.041001],[-101.364203,22.041786],[-101.365968,22.042245],[-101.367356,22.042607],[-101.370026,22.04329],[-101.3723,22.043872],[-101.374198,22.04428],[-101.374784,22.044418],[-101.377078,22.044962],[-101.377609,22.042127],[-101.374464,22.041365],[-101.375028,22.037632],[-101.375538,22.035387],[-101.375727,22.034686],[-101.375898,22.033885],[-101.374192,22.033711],[-101.373283,22.033605],[-101.370616,22.033242],[-101.368573,22.033031],[-101.369001,22.030964],[-101.369529,22.028829],[-101.369738,22.027517],[-101.371293,22.027716],[-101.373283,22.028075],[-101.374655,22.028296],[-101.375669,22.02841],[-101.377169,22.028573],[-101.378375,22.028648],[-101.380691,22.028759],[-101.381855,22.024202],[-101.382755,22.020738],[-101.379598,22.020327],[-101.377087,22.019994],[-101.369097,22.018989],[-101.365785,22.018561],[-101.365692,22.018548],[-101.364967,22.022066],[-101.364004,22.02638],[-101.363899,22.026848],[-101.362667,22.032297],[-101.362393,22.033509],[-101.354621,22.030413],[-101.351675,22.043789],[-101.330901,22.035315],[-101.331468,22.031469],[-101.331948,22.028361],[-101.332036,22.027772],[-101.332135,22.027727],[-101.332452,22.024742],[-101.332467,22.024611],[-101.330435,22.023474],[-101.329282,22.022849],[-101.328641,22.022469],[-101.327851,22.021906],[-101.327208,22.021498],[-101.327416,22.019771],[-101.327942,22.016468],[-101.32939,22.016248],[-101.331562,22.015972],[-101.332731,22.015842],[-101.333662,22.015735],[-101.335773,22.015496],[-101.337839,22.015185],[-101.339235,22.014986],[-101.339209,22.015541],[-101.338321,22.021839],[-101.337783,22.024991],[-101.337765,22.025133],[-101.339329,22.024433],[-101.34271,22.025769],[-101.346019,22.027066],[-101.348572,22.028071],[-101.349831,22.023243],[-101.350481,22.020766],[-101.351139,22.018238],[-101.351395,22.017241],[-101.3518,22.015669],[-101.352439,22.013082],[-101.347588,22.013752],[-101.346556,22.013897],[-101.345817,22.014],[-101.344743,22.014142],[-101.345027,22.009972],[-101.345298,22.00588],[-101.342624,22.005962],[-101.339113,22.006012],[-101.338632,22.00603],[-101.338668,22.006186],[-101.337491,22.006171],[-101.337535,22.006797],[-101.335449,22.006764],[-101.335422,22.007116],[-101.33321,22.007015],[-101.329397,22.007169],[-101.329815,22.004819],[-101.326796,22.005079],[-101.32672,22.002621],[-101.326618,22.000825],[-101.32651,21.999728],[-101.327697,21.999698],[-101.327694,21.998918],[-101.327485,21.997026],[-101.32948,21.996965],[-101.331082,21.996809],[-101.332326,21.996638],[-101.333549,21.996608],[-101.334924,21.99653],[-101.338158,21.996363],[-101.34201,21.996058],[-101.345408,21.99603],[-101.348724,21.995773],[-101.349226,21.995789],[-101.349729,21.995805],[-101.352062,21.995658],[-101.353794,21.995574],[-101.354316,21.995549],[-101.355417,21.995558],[-101.358824,21.99533],[-101.36054,21.995241],[-101.36219,21.99029],[-101.36412,21.990201],[-101.363764,21.99128],[-101.363927,21.99124],[-101.364083,21.991184],[-101.365187,21.990783],[-101.366892,21.990353],[-101.367701,21.990089],[-101.368508,21.990642],[-101.369454,21.991295],[-101.370303,21.991452],[-101.370847,21.991478],[-101.371748,21.991229],[-101.372248,21.99085],[-101.37235,21.990795],[-101.373366,21.990249],[-101.373815,21.989818],[-101.374006,21.989572],[-101.374419,21.988897],[-101.374637,21.988317],[-101.374946,21.98734],[-101.375029,21.986428],[-101.375017,21.985729],[-101.374907,21.984972],[-101.374932,21.984546],[-101.375188,21.984238],[-101.375442,21.98384],[-101.375749,21.982711],[-101.376063,21.982008],[-101.376511,21.981485],[-101.37659,21.981184],[-101.384436,21.982296],[-101.384273,21.979646],[-101.384189,21.978115],[-101.384136,21.97709],[-101.384009,21.976041],[-101.38395,21.974803],[-101.383896,21.974121],[-101.383918,21.97412],[-101.383912,21.973991],[-101.385871,21.973903],[-101.386851,21.973865],[-101.388086,21.973847],[-101.388315,21.972931],[-101.38862,21.97136],[-101.390489,21.971149],[-101.390867,21.970436],[-101.391066,21.970098],[-101.391547,21.969919],[-101.391625,21.969823],[-101.392733,21.968771],[-101.393575,21.968093],[-101.393558,21.96809],[-101.393701,21.967892],[-101.395108,21.967868],[-101.395223,21.96789],[-101.395666,21.967874],[-101.395754,21.968055],[-101.395937,21.96806],[-101.396384,21.967951],[-101.396403,21.967797],[-101.397077,21.967774],[-101.39715,21.967762],[-101.397185,21.967344],[-101.397186,21.967046],[-101.397168,21.965803],[-101.39798,21.965526],[-101.398589,21.965155],[-101.399669,21.963708],[-101.399619,21.963147],[-101.399293,21.962348],[-101.40018,21.96159],[-101.400818,21.960624],[-101.40065,21.960149],[-101.400413,21.959438],[-101.400498,21.958587],[-101.400601,21.958037],[-101.400763,21.957352],[-101.40154,21.956775],[-101.402367,21.956404],[-101.403028,21.955973],[-101.403009,21.955969],[-101.403044,21.955075],[-101.403975,21.953533],[-101.404343,21.952698],[-101.404343,21.952634],[-101.404205,21.951862],[-101.404623,21.950478],[-101.405161,21.948492],[-101.406367,21.947891],[-101.407619,21.947369],[-101.408084,21.947218],[-101.40931,21.946619],[-101.409381,21.946632],[-101.409473,21.946586],[-101.410545,21.946036],[-101.411281,21.94561],[-101.412115,21.945117],[-101.412982,21.944545],[-101.413514,21.944156],[-101.413909,21.943571],[-101.414097,21.942629],[-101.414658,21.942128],[-101.415262,21.941778],[-101.415867,21.941894],[-101.41628,21.941625],[-101.416396,21.940862],[-101.4171,21.940332],[-101.418295,21.939976],[-101.419125,21.939486],[-101.419647,21.938966],[-101.42051,21.939009],[-101.42115,21.939577],[-101.422412,21.939461],[-101.422903,21.939159],[-101.423567,21.938519],[-101.424227,21.937543],[-101.424889,21.936777],[-101.425822,21.935965],[-101.426888,21.935109],[-101.428278,21.93471],[-101.429173,21.934361],[-101.42974,21.933302],[-101.430088,21.932827],[-101.430384,21.932299],[-101.428401,21.930797],[-101.428167,21.930651],[-101.427084,21.929849],[-101.424564,21.927921],[-101.421947,21.925924],[-101.420118,21.924544],[-101.417867,21.922774],[-101.41532,21.920944],[-101.413245,21.919579],[-101.411991,21.918656],[-101.412274,21.918014],[-101.412584,21.917128],[-101.412731,21.916154],[-101.412679,21.915031],[-101.412307,21.914057],[-101.412032,21.913339],[-101.410806,21.910137],[-101.410228,21.908694],[-101.410358,21.908643],[-101.41354,21.907165],[-101.415315,21.906381],[-101.41802,21.905394],[-101.423311,21.903497],[-101.42565,21.90244],[-101.427346,21.901771],[-101.427552,21.901624],[-101.428269,21.901113],[-101.42949,21.900248],[-101.430536,21.899664],[-101.431703,21.898964],[-101.431997,21.8988],[-101.432565,21.898481],[-101.433578,21.897774],[-101.434034,21.897457],[-101.434596,21.897065],[-101.435527,21.899249],[-101.436156,21.900969],[-101.437453,21.903972],[-101.438902,21.907112],[-101.439738,21.909332],[-101.440112,21.910265],[-101.441803,21.909338],[-101.443123,21.908443],[-101.444163,21.907807],[-101.444906,21.907274],[-101.445128,21.907118],[-101.445546,21.906823],[-101.445944,21.906507],[-101.446394,21.906256],[-101.446069,21.905318],[-101.444977,21.902637],[-101.44414,21.900674],[-101.442949,21.897739],[-101.442014,21.895521],[-101.440763,21.892896],[-101.440675,21.892716],[-101.442739,21.892465],[-101.442989,21.892432],[-101.443279,21.892402],[-101.443713,21.892349],[-101.444666,21.892231],[-101.445955,21.892052],[-101.445335,21.889978],[-101.446641,21.889109],[-101.44781,21.888263],[-101.449384,21.887218],[-101.450197,21.886713],[-101.452203,21.885386],[-101.452709,21.885086],[-101.453352,21.884825],[-101.454801,21.8843],[-101.456196,21.883776],[-101.456474,21.883734],[-101.457493,21.883449],[-101.459942,21.882509],[-101.46276,21.881554],[-101.465801,21.880406],[-101.466185,21.880349],[-101.466458,21.880225],[-101.466504,21.87978],[-101.466554,21.879119],[-101.466595,21.878645],[-101.466849,21.878639],[-101.466838,21.878142],[-101.467992,21.877988],[-101.467897,21.877131],[-101.468342,21.877117],[-101.468121,21.874336],[-101.468382,21.874321],[-101.468362,21.874021],[-101.468256,21.872819],[-101.468084,21.870266],[-101.468816,21.870241],[-101.468906,21.87107],[-101.46986,21.870815],[-101.470393,21.870703],[-101.470704,21.870622],[-101.470835,21.870587],[-101.472723,21.870101],[-101.474706,21.869673],[-101.476426,21.869194],[-101.479119,21.868588],[-101.480997,21.868168],[-101.483196,21.867681],[-101.483191,21.867583],[-101.48109,21.861356],[-101.481173,21.861332],[-101.480411,21.859258],[-101.484173,21.858145],[-101.483898,21.857212],[-101.483649,21.856453],[-101.488183,21.853428],[-101.487907,21.852398],[-101.48751,21.850785],[-101.487045,21.849003],[-101.486732,21.847943],[-101.486619,21.846682],[-101.486621,21.845611],[-101.486398,21.84444],[-101.486339,21.843166],[-101.486091,21.841887],[-101.487957,21.840627],[-101.489269,21.839608],[-101.490073,21.839113],[-101.491951,21.837818],[-101.495053,21.835704],[-101.503515,21.830124],[-101.502618,21.827515],[-101.500851,21.822662],[-101.498766,21.816717],[-101.496346,21.809987],[-101.496331,21.80994],[-101.492676,21.812735],[-101.485432,21.818247],[-101.484386,21.81908],[-101.47617,21.825423],[-101.473886,21.827257],[-101.473884,21.827298],[-101.473905,21.827365],[-101.473873,21.827391],[-101.470231,21.827177],[-101.465963,21.827059],[-101.46553,21.825842],[-101.46495,21.82421],[-101.4647,21.823505],[-101.464061,21.820225],[-101.461793,21.822571],[-101.460736,21.823906],[-101.46043,21.824147],[-101.459857,21.824878],[-101.459237,21.825462],[-101.458862,21.825873],[-101.458206,21.826165],[-101.457921,21.826473],[-101.457658,21.826819],[-101.457329,21.827251],[-101.455899,21.828913],[-101.455503,21.829436],[-101.455072,21.829959],[-101.454906,21.829507],[-101.454256,21.828043],[-101.45384,21.826998],[-101.453586,21.826692],[-101.453352,21.826693],[-101.45172,21.826712],[-101.45045,21.826687],[-101.449972,21.826676],[-101.44721,21.826551],[-101.443934,21.826522],[-101.443726,21.826541],[-101.438399,21.826136],[-101.435614,21.825919],[-101.432771,21.825653],[-101.432479,21.825686],[-101.426357,21.825215],[-101.424934,21.825128],[-101.423862,21.825059],[-101.423387,21.825024],[-101.422826,21.824972],[-101.422708,21.824965],[-101.422669,21.824963],[-101.422125,21.825204],[-101.420293,21.82594],[-101.413837,21.828651],[-101.412506,21.829201],[-101.407004,21.831455],[-101.40233,21.832458],[-101.401163,21.832699],[-101.400348,21.832867],[-101.398796,21.833164],[-101.394327,21.834168],[-101.390204,21.835054],[-101.388321,21.835463],[-101.387935,21.835551],[-101.385514,21.836006],[-101.384704,21.83614],[-101.384387,21.836195],[-101.383548,21.836349],[-101.382741,21.836484],[-101.379937,21.836929],[-101.378894,21.837106],[-101.377848,21.837258],[-101.373783,21.837919],[-101.371446,21.838341],[-101.37138,21.837725],[-101.371026,21.83791],[-101.370567,21.838156],[-101.370153,21.838341],[-101.369692,21.838669],[-101.369185,21.838773],[-101.365664,21.839362],[-101.365274,21.839417],[-101.36146,21.839121],[-101.360055,21.838998],[-101.351392,21.838089],[-101.350027,21.83796],[-101.339783,21.837001],[-101.333361,21.836465],[-101.319484,21.835334],[-101.319439,21.835308],[-101.314504,21.832394],[-101.311246,21.830374],[-101.306689,21.827511],[-101.306288,21.827259],[-101.305876,21.827015],[-101.296958,21.819267],[-101.296795,21.819059],[-101.296278,21.818403],[-101.2959,21.817914],[-101.295478,21.817599],[-101.295207,21.81703],[-101.294967,21.816612],[-101.294578,21.816366],[-101.294384,21.81611],[-101.294197,21.815909],[-101.294042,21.815636],[-101.293933,21.815296],[-101.293543,21.814863],[-101.293145,21.814557],[-101.292805,21.813896],[-101.291971,21.813417],[-101.291531,21.81287],[-101.291096,21.812624],[-101.290995,21.812618],[-101.290448,21.812583],[-101.290011,21.812287],[-101.289685,21.81214],[-101.289255,21.812195],[-101.288117,21.811963],[-101.287669,21.811847],[-101.287285,21.812078],[-101.286976,21.812627],[-101.286815,21.813387],[-101.286698,21.814247],[-101.286604,21.815104],[-101.286548,21.815692],[-101.286411,21.816275],[-101.286083,21.816974],[-101.285547,21.81793],[-101.28517,21.818486],[-101.284766,21.818946],[-101.284331,21.819155],[-101.284159,21.819392],[-101.283925,21.819622],[-101.283672,21.820205],[-101.283455,21.820635],[-101.282275,21.821054],[-101.281846,21.821211],[-101.281527,21.821468],[-101.28045,21.821634],[-101.279587,21.821597],[-101.279207,21.8215],[-101.279152,21.821399],[-101.27884,21.821197],[-101.278289,21.821194],[-101.27778,21.8215],[-101.277292,21.821932],[-101.27676,21.82215],[-101.276052,21.822055],[-101.275481,21.822135],[-101.275013,21.822364],[-101.274367,21.822423],[-101.273458,21.822234],[-101.272862,21.822091],[-101.27243,21.822048],[-101.272237,21.821929],[-101.271848,21.821881],[-101.270151,21.821703],[-101.268093,21.821544],[-101.266108,21.821524],[-101.265744,21.821962],[-101.265393,21.822403],[-101.264959,21.82257],[-101.264299,21.822966],[-101.263224,21.823281],[-101.26231,21.823444],[-101.261339,21.823458],[-101.260725,21.82345],[-101.260317,21.823391],[-101.259316,21.823329],[-101.258111,21.823185],[-101.25615,21.823006],[-101.25506,21.822916],[-101.254164,21.822793],[-101.253366,21.822734],[-101.252726,21.822643],[-101.250978,21.822486],[-101.25029,21.822374],[-101.248182,21.821935],[-101.247774,21.821648],[-101.246964,21.821792],[-101.246603,21.822199],[-101.245054,21.822092],[-101.244709,21.821915],[-101.243852,21.821433],[-101.242811,21.820975],[-101.242318,21.820647],[-101.241639,21.820493],[-101.23983,21.820136],[-101.239424,21.82002],[-101.23912,21.819947],[-101.235176,21.819117],[-101.231332,21.818295],[-101.229035,21.81783],[-101.226348,21.817452],[-101.226376,21.817397],[-101.217152,21.816077],[-101.217212,21.815813],[-101.218525,21.808852],[-101.219795,21.8022],[-101.204261,21.789423],[-101.198738,21.78494],[-101.194534,21.781492],[-101.192062,21.779297],[-101.190164,21.777478],[-101.189317,21.776873],[-101.182562,21.772225],[-101.163925,21.759048],[-101.161465,21.757643],[-101.161361,21.757571],[-101.161267,21.757506],[-101.149546,21.756398],[-101.14322,21.755557],[-101.136139,21.753226],[-101.11424,21.75608],[-101.104518,21.757446],[-101.08454,21.760502],[-101.082337,21.761494],[-101.080718,21.761749],[-101.069347,21.763538],[-101.062612,21.764597],[-101.06001,21.765007],[-101.059671,21.765061],[-101.05934,21.765421],[-101.059248,21.765521],[-101.049039,21.763898],[-101.048923,21.763889],[-101.048844,21.763883],[-101.03798,21.762219],[-101.034495,21.762968],[-101.031995,21.761463],[-101.031495,21.761305],[-101.031452,21.761299],[-101.030317,21.761089],[-101.028851,21.760832],[-101.026075,21.760372],[-101.022663,21.759847],[-101.011411,21.758122],[-101.010116,21.757938],[-101.007368,21.757543],[-101.006726,21.757451],[-101.005173,21.757231],[-101.005186,21.756905],[-101.005432,21.755581],[-101.00612,21.75191],[-101.005002,21.751564],[-101.003157,21.751047],[-101.002303,21.750817],[-101.001637,21.752811],[-101.000833,21.75459],[-101.000163,21.756063],[-101.000029,21.756407],[-100.994813,21.755581],[-100.991628,21.755071],[-100.99108,21.754908],[-100.986473,21.754239],[-100.985664,21.754097],[-100.98281,21.753587],[-100.981974,21.753527],[-100.981819,21.753422],[-100.981645,21.753303],[-100.98137,21.753085],[-100.977888,21.750325],[-100.977116,21.749778],[-100.972285,21.745885],[-100.971138,21.744895],[-100.967221,21.738076],[-100.965851,21.735448],[-100.965552,21.734926],[-100.965402,21.734858],[-100.954445,21.733773],[-100.950207,21.733286],[-100.949948,21.733297],[-100.949439,21.733244],[-100.949268,21.733226],[-100.94905,21.733203],[-100.946986,21.732987],[-100.943503,21.732622],[-100.938055,21.720535],[-100.933968,21.719278],[-100.933811,21.719264],[-100.931697,21.718672],[-100.9316,21.718647],[-100.929491,21.718052],[-100.929378,21.717961],[-100.929103,21.717876],[-100.928759,21.717762],[-100.928448,21.717704],[-100.928161,21.717595],[-100.927829,21.717487],[-100.927773,21.717465],[-100.927443,21.717339],[-100.927153,21.717231],[-100.926833,21.717134],[-100.926526,21.717051],[-100.926495,21.717042],[-100.926087,21.716905],[-100.922623,21.715855],[-100.921337,21.715428],[-100.920982,21.715358],[-100.918001,21.714455],[-100.912578,21.713649],[-100.912615,21.713568],[-100.913418,21.712312],[-100.91434,21.710898],[-100.915349,21.709333],[-100.915924,21.708463],[-100.91616,21.708087],[-100.917411,21.706155],[-100.917973,21.705319],[-100.918512,21.704437],[-100.919551,21.702898],[-100.920257,21.701749],[-100.920272,21.701721],[-100.921176,21.700337],[-100.921273,21.700274],[-100.921237,21.700114],[-100.921202,21.69996],[-100.920444,21.699733],[-100.920103,21.69939],[-100.919878,21.699132],[-100.919623,21.698872],[-100.919116,21.698304],[-100.918874,21.697752],[-100.91851,21.697293],[-100.918003,21.697156],[-100.917829,21.696962],[-100.91774,21.696267],[-100.917734,21.696203],[-100.917603,21.695866],[-100.917339,21.695569],[-100.916917,21.695342],[-100.916516,21.695261],[-100.916172,21.695156],[-100.91578,21.694569],[-100.915225,21.694191],[-100.914842,21.694107],[-100.914539,21.69376],[-100.914246,21.693624],[-100.913814,21.693405],[-100.913549,21.693161],[-100.913499,21.692886],[-100.913311,21.692679],[-100.913023,21.692465],[-100.912784,21.692317],[-100.912578,21.692243],[-100.912404,21.692089],[-100.91214,21.692034],[-100.911789,21.692106],[-100.911498,21.692051],[-100.911193,21.691972],[-100.910917,21.692046],[-100.910702,21.692072],[-100.910462,21.692063],[-100.910221,21.691936],[-100.909933,21.691923],[-100.909701,21.692125],[-100.909518,21.692251],[-100.909331,21.692266],[-100.909008,21.692163],[-100.908713,21.691954],[-100.908504,21.691807],[-100.908392,21.691665],[-100.908357,21.691499],[-100.908336,21.691322],[-100.908295,21.691056],[-100.908283,21.690722],[-100.908267,21.69047],[-100.908227,21.689392],[-100.908097,21.686179],[-100.907659,21.685236],[-100.907583,21.684961],[-100.907618,21.684814],[-100.907714,21.684728],[-100.907563,21.683888],[-100.907174,21.683013],[-100.907422,21.682422],[-100.907417,21.682012],[-100.907183,21.681637],[-100.9067,21.681359],[-100.90628,21.68132],[-100.906002,21.681377],[-100.905653,21.681349],[-100.905338,21.681266],[-100.90507,21.681279],[-100.904826,21.681228],[-100.90446,21.681125],[-100.904242,21.681129],[-100.903904,21.681138],[-100.903592,21.681107],[-100.903372,21.681034],[-100.902375,21.682018],[-100.888258,21.67785],[-100.870112,21.672494],[-100.869987,21.672698],[-100.869822,21.67297],[-100.869791,21.673277],[-100.869779,21.673398],[-100.868214,21.677954],[-100.86515,21.68708],[-100.865115,21.687049],[-100.864944,21.686899],[-100.862558,21.684804],[-100.862531,21.684777],[-100.861858,21.684199],[-100.861526,21.683834],[-100.859858,21.681899],[-100.859602,21.6816],[-100.856548,21.67813],[-100.853632,21.675002],[-100.853106,21.674371],[-100.85304,21.67429],[-100.852692,21.673861],[-100.852166,21.67335],[-100.841219,21.66744],[-100.834606,21.664653],[-100.834321,21.664559],[-100.842601,21.649027],[-100.845182,21.644264],[-100.850061,21.635072],[-100.857678,21.618987],[-100.857612,21.61896],[-100.835008,21.609821],[-100.816561,21.602653],[-100.814578,21.601378],[-100.809496,21.59205],[-100.809443,21.592071],[-100.806704,21.593166],[-100.805869,21.59386],[-100.803967,21.593777],[-100.802293,21.59399],[-100.801202,21.593965],[-100.795963,21.594463],[-100.794813,21.594582],[-100.793671,21.594795],[-100.792464,21.594822],[-100.792308,21.594834],[-100.790717,21.594071],[-100.790154,21.593816],[-100.789547,21.593554],[-100.788956,21.593397],[-100.787438,21.59297],[-100.786786,21.592765],[-100.783863,21.592028],[-100.783331,21.591805],[-100.780157,21.590307],[-100.779186,21.589942],[-100.778114,21.589579],[-100.777634,21.589369],[-100.776176,21.58863],[-100.775184,21.588546],[-100.773295,21.588122],[-100.772761,21.589364],[-100.772232,21.590664],[-100.772091,21.591246],[-100.771923,21.592612],[-100.771858,21.592986],[-100.773005,21.595358],[-100.772468,21.595452],[-100.772417,21.595423],[-100.770736,21.594814],[-100.769212,21.594252],[-100.768723,21.594051],[-100.7688,21.593722],[-100.76846,21.59301],[-100.768381,21.593125],[-100.768233,21.592956],[-100.76798,21.592655],[-100.767699,21.592485],[-100.767027,21.592286],[-100.766605,21.592283],[-100.766247,21.592226],[-100.766115,21.592144],[-100.766108,21.592098],[-100.766093,21.591992],[-100.766189,21.591631],[-100.766343,21.591238],[-100.766468,21.591017],[-100.766586,21.590877],[-100.766552,21.590719],[-100.766374,21.590528],[-100.766194,21.590467],[-100.765952,21.590492],[-100.765758,21.590512],[-100.765398,21.590542],[-100.765264,21.590476],[-100.765234,21.590412],[-100.765175,21.590288],[-100.765162,21.589946],[-100.765139,21.589577],[-100.765,21.589024],[-100.764789,21.588686],[-100.764671,21.588456],[-100.764532,21.588279],[-100.764292,21.588238],[-100.764172,21.58829],[-100.764029,21.588353],[-100.763792,21.588355],[-100.763623,21.588472],[-100.763482,21.588431],[-100.763467,21.588414],[-100.763326,21.588263],[-100.763203,21.587993],[-100.762965,21.587454],[-100.762925,21.586898],[-100.762593,21.586187],[-100.762463,21.58552],[-100.762348,21.585294],[-100.762024,21.585051],[-100.761763,21.584935],[-100.761144,21.584836],[-100.75901,21.584423],[-100.757599,21.58389],[-100.757127,21.583707],[-100.75665,21.583648],[-100.756143,21.58357],[-100.755683,21.583659],[-100.755198,21.583526],[-100.754879,21.583254],[-100.754517,21.582903],[-100.754157,21.582731],[-100.753882,21.582558],[-100.753157,21.581739],[-100.752547,21.58135],[-100.752077,21.581082],[-100.75157,21.580766],[-100.751342,21.580604],[-100.751053,21.580486],[-100.750976,21.580455],[-100.750459,21.580284],[-100.750182,21.580364],[-100.748673,21.580502],[-100.748181,21.58056],[-100.747635,21.5807],[-100.747246,21.580941],[-100.746822,21.581426],[-100.746566,21.581749],[-100.746047,21.581745],[-100.745411,21.58119],[-100.744905,21.580723],[-100.744188,21.580365],[-100.743445,21.580178],[-100.742152,21.579991],[-100.741347,21.579792],[-100.740831,21.579712],[-100.740044,21.579575],[-100.739708,21.579178],[-100.739456,21.578635],[-100.739037,21.578252],[-100.738434,21.57823],[-100.738075,21.578505],[-100.737726,21.57875],[-100.737285,21.578993],[-100.736713,21.579089],[-100.736249,21.579139],[-100.735862,21.579092],[-100.735029,21.578975],[-100.734344,21.578727],[-100.734073,21.578544],[-100.733969,21.578021],[-100.73354,21.577503],[-100.733068,21.577373],[-100.732728,21.577355],[-100.731796,21.57669],[-100.731307,21.576223],[-100.730883,21.575913],[-100.73036,21.575533],[-100.73005,21.575242],[-100.729518,21.575045],[-100.729087,21.574622],[-100.729082,21.574607],[-100.728957,21.574269],[-100.72891,21.573895],[-100.72901,21.573442],[-100.729003,21.572833],[-100.728956,21.572402],[-100.728972,21.572047],[-100.728906,21.571752],[-100.72865,21.571441],[-100.728416,21.571226],[-100.727998,21.57105],[-100.727744,21.570697],[-100.727609,21.570163],[-100.727571,21.56962],[-100.727614,21.569229],[-100.727756,21.568756],[-100.727555,21.568026],[-100.727026,21.567486],[-100.726611,21.567205],[-100.725735,21.56683],[-100.725144,21.566622],[-100.724856,21.566184],[-100.724775,21.565629],[-100.72465,21.565187],[-100.724557,21.564741],[-100.724354,21.564353],[-100.724183,21.56409],[-100.723835,21.563998],[-100.723331,21.563815],[-100.723069,21.563385],[-100.722709,21.563081],[-100.722204,21.562761],[-100.721932,21.562272],[-100.721524,21.562008],[-100.72088,21.561491],[-100.720859,21.561443],[-100.720661,21.560989],[-100.720504,21.560164],[-100.720369,21.559703],[-100.720492,21.559112],[-100.720485,21.558954],[-100.720357,21.558059],[-100.719196,21.556061],[-100.718431,21.553548],[-100.718336,21.553236],[-100.71763,21.550232],[-100.716283,21.549722],[-100.71473,21.549522],[-100.710965,21.5501],[-100.709963,21.550168],[-100.707383,21.548891],[-100.705983,21.548353],[-100.705244,21.54824],[-100.702594,21.548679],[-100.701864,21.550207],[-100.700717,21.552549],[-100.692098,21.546369],[-100.682358,21.547724],[-100.68159,21.547616],[-100.681168,21.547505],[-100.680694,21.547139],[-100.678815,21.544537],[-100.677714,21.542461],[-100.677184,21.541423],[-100.675132,21.54003],[-100.672511,21.53861],[-100.670007,21.537537],[-100.669513,21.536599],[-100.667973,21.536076],[-100.667168,21.535842],[-100.666396,21.535659],[-100.665973,21.535499],[-100.66579,21.535412],[-100.66562,21.535223],[-100.665542,21.53472],[-100.665538,21.534427],[-100.6654,21.533452],[-100.665275,21.532327],[-100.6656,21.527821],[-100.657456,21.524718],[-100.640594,21.527958],[-100.638542,21.528293],[-100.634664,21.537131],[-100.634518,21.537713],[-100.634669,21.538329],[-100.635116,21.53922],[-100.637035,21.541345],[-100.635447,21.543192],[-100.634138,21.542501],[-100.614299,21.533135],[-100.619156,21.522602],[-100.62191,21.518986],[-100.62043,21.510232],[-100.614955,21.505789],[-100.614575,21.506032],[-100.614195,21.506274],[-100.613137,21.50718],[-100.613033,21.507834],[-100.612864,21.508511],[-100.612455,21.509017],[-100.611961,21.509359],[-100.611392,21.509349],[-100.610112,21.508889],[-100.609549,21.508652],[-100.6092,21.508427],[-100.608922,21.508348],[-100.608782,21.508658],[-100.608508,21.508737],[-100.608077,21.508677],[-100.606955,21.50881],[-100.606517,21.508902],[-100.605946,21.508872],[-100.605439,21.508545],[-100.604231,21.508803],[-100.603953,21.508955],[-100.603109,21.509419],[-100.602032,21.509918],[-100.5996,21.511045],[-100.598337,21.511631],[-100.597235,21.512018],[-100.595737,21.513092],[-100.594287,21.514],[-100.594069,21.514123],[-100.592536,21.514983],[-100.592406,21.515054],[-100.591386,21.515606],[-100.590307,21.516355],[-100.589196,21.517842],[-100.589065,21.518053],[-100.588726,21.518599],[-100.58791,21.519903],[-100.586815,21.520972],[-100.585739,21.521595],[-100.584812,21.521958],[-100.584428,21.522306],[-100.584549,21.522747],[-100.584648,21.523214],[-100.584585,21.523578],[-100.584366,21.523999],[-100.584214,21.524334],[-100.584111,21.524474],[-100.583904,21.524534],[-100.58344,21.524525],[-100.583046,21.524587],[-100.582858,21.524689],[-100.582623,21.524936],[-100.58232,21.525164],[-100.582125,21.525372],[-100.582078,21.525551],[-100.582177,21.525954],[-100.581983,21.52612],[-100.581648,21.526201],[-100.581154,21.526167],[-100.580786,21.526078],[-100.580498,21.526097],[-100.580295,21.526256],[-100.580194,21.526578],[-100.580049,21.526732],[-100.579832,21.526788],[-100.579623,21.526738],[-100.579386,21.526539],[-100.579151,21.526237],[-100.578819,21.526003],[-100.578358,21.525674],[-100.578007,21.525507],[-100.577644,21.525439],[-100.577346,21.525489],[-100.57714,21.525682],[-100.577039,21.525959],[-100.576969,21.526327],[-100.576872,21.526724],[-100.576635,21.526924],[-100.576217,21.527211],[-100.575871,21.52749],[-100.575563,21.527647],[-100.575302,21.527732],[-100.575044,21.527742],[-100.574845,21.527678],[-100.574764,21.527595],[-100.574757,21.527439],[-100.574933,21.527244],[-100.574961,21.527098],[-100.574903,21.527002],[-100.574766,21.526961],[-100.574526,21.527017],[-100.574055,21.527227],[-100.573405,21.527475],[-100.573228,21.527637],[-100.573084,21.527905],[-100.573012,21.528248],[-100.572877,21.528517],[-100.57257,21.528808],[-100.571876,21.529213],[-100.571104,21.530063],[-100.570966,21.53014],[-100.57082,21.530104],[-100.570573,21.529897],[-100.570178,21.529307],[-100.569988,21.529097],[-100.569669,21.528992],[-100.569459,21.528994],[-100.569299,21.529101],[-100.569215,21.529321],[-100.569038,21.529589],[-100.568855,21.529719],[-100.568478,21.529863],[-100.568261,21.529885],[-100.568126,21.529808],[-100.568068,21.529629],[-100.567959,21.529437],[-100.56777,21.529224],[-100.567512,21.529103],[-100.56727,21.529073],[-100.567051,21.529218],[-100.566806,21.529414],[-100.566367,21.529881],[-100.566021,21.530241],[-100.565594,21.53055],[-100.565332,21.530724],[-100.564925,21.530815],[-100.564606,21.530789],[-100.564414,21.530658],[-100.564343,21.530463],[-100.564295,21.530123],[-100.564189,21.529879],[-100.563992,21.529655],[-100.563734,21.529536],[-100.563271,21.529507],[-100.562832,21.529622],[-100.562303,21.529805],[-100.561994,21.529939],[-100.561813,21.530101],[-100.561665,21.530133],[-100.561361,21.530001],[-100.560382,21.529129],[-100.559982,21.528808],[-100.559719,21.528586],[-100.559442,21.528515],[-100.559198,21.528583],[-100.558977,21.528731],[-100.558785,21.528737],[-100.558577,21.528731],[-100.558328,21.528864],[-100.557701,21.528922],[-100.557385,21.52902],[-100.557001,21.529278],[-100.556697,21.52956],[-100.556549,21.52981],[-100.556449,21.530281],[-100.556343,21.530564],[-100.556243,21.530688],[-100.556106,21.530696],[-100.555955,21.53055],[-100.555799,21.530331],[-100.555693,21.530307],[-100.555562,21.530404],[-100.555364,21.530393],[-100.555099,21.530356],[-100.55436,21.530445],[-100.554207,21.530389],[-100.55406,21.530369],[-100.553752,21.530433],[-100.55342,21.530467],[-100.553044,21.530538],[-100.552695,21.530729],[-100.552058,21.531218],[-100.551766,21.531411],[-100.551463,21.531798],[-100.551259,21.531977],[-100.551051,21.532126],[-100.550796,21.532195],[-100.550387,21.532229],[-100.549633,21.532399],[-100.548381,21.532579],[-100.547991,21.532734],[-100.547767,21.532773],[-100.547525,21.532713],[-100.547386,21.532569],[-100.54725,21.532354],[-100.547048,21.53221],[-100.546859,21.532205],[-100.546651,21.532291],[-100.54646,21.532473],[-100.546109,21.532908],[-100.545761,21.533457],[-100.545437,21.533967],[-100.545136,21.534324],[-100.544847,21.534599],[-100.544584,21.534781],[-100.544298,21.534815],[-100.543937,21.534747],[-100.5435,21.534656],[-100.543075,21.534687],[-100.542664,21.534752],[-100.542466,21.534881],[-100.542393,21.53506],[-100.542386,21.535392],[-100.542345,21.535712],[-100.542179,21.535944],[-100.541933,21.536115],[-100.541087,21.536428],[-100.540746,21.536663],[-100.540421,21.537012],[-100.53996,21.537812],[-100.539729,21.538098],[-100.539475,21.538326],[-100.539165,21.538523],[-100.538809,21.538608],[-100.538537,21.538588],[-100.538112,21.538492],[-100.537651,21.538463],[-100.537285,21.538498],[-100.536935,21.53865],[-100.53653,21.538855],[-100.536228,21.538916],[-100.535893,21.538956],[-100.535653,21.538971],[-100.535518,21.539012],[-100.535316,21.5392],[-100.535094,21.539397],[-100.534495,21.539872],[-100.534269,21.540156],[-100.53411,21.540428],[-100.534081,21.540562],[-100.534164,21.540768],[-100.534325,21.540963],[-100.534352,21.541214],[-100.534297,21.541574],[-100.53395,21.542327],[-100.520804,21.542088],[-100.51852,21.541838],[-100.51761,21.541731],[-100.515814,21.541747],[-100.513801,21.54182],[-100.513349,21.541872],[-100.510804,21.542448],[-100.50712,21.542566],[-100.504758,21.542587],[-100.500733,21.542684],[-100.489508,21.542836],[-100.483991,21.543036],[-100.482375,21.543144],[-100.480444,21.543118],[-100.472209,21.543139],[-100.471748,21.543129],[-100.468508,21.543054],[-100.465989,21.542914],[-100.464863,21.543078],[-100.464274,21.543168],[-100.46108,21.545335],[-100.460909,21.545808],[-100.460822,21.546852],[-100.460471,21.547621],[-100.460258,21.548141],[-100.459986,21.548789],[-100.459942,21.549013],[-100.459904,21.549272],[-100.459893,21.549783],[-100.460368,21.550533],[-100.461041,21.550992],[-100.461183,21.551224],[-100.461495,21.551323],[-100.462055,21.551304],[-100.462369,21.551622],[-100.462621,21.551983],[-100.462966,21.55224],[-100.46414,21.552973],[-100.464846,21.553622],[-100.464316,21.554064],[-100.462859,21.554003],[-100.461744,21.55439],[-100.461063,21.554716],[-100.460564,21.554976],[-100.459256,21.554784],[-100.458137,21.55488],[-100.456636,21.55562],[-100.455802,21.556167],[-100.455381,21.556256],[-100.458003,21.564447],[-100.459261,21.567417],[-100.460702,21.57121],[-100.462159,21.57387],[-100.462827,21.575184],[-100.463046,21.575671],[-100.463294,21.575999],[-100.464161,21.576895],[-100.464358,21.577203],[-100.465614,21.578301],[-100.466039,21.578642],[-100.466651,21.579382],[-100.466589,21.579977],[-100.466593,21.580401],[-100.467123,21.581117],[-100.467745,21.582087],[-100.468135,21.582425],[-100.468523,21.582697],[-100.468668,21.582705],[-100.469047,21.583032],[-100.469473,21.583294],[-100.469919,21.583827],[-100.469887,21.584374],[-100.469972,21.585315],[-100.470508,21.586067],[-100.470621,21.586703],[-100.471453,21.58757],[-100.472438,21.588154],[-100.472909,21.588511],[-100.473362,21.588793],[-100.473856,21.589002],[-100.47528,21.589257],[-100.475684,21.589626],[-100.476032,21.589875],[-100.476608,21.590004],[-100.477214,21.590067],[-100.477922,21.59026],[-100.478587,21.590381],[-100.479165,21.590729],[-100.47959,21.590817],[-100.480353,21.590713],[-100.480843,21.590858],[-100.481164,21.591077],[-100.481383,21.591239],[-100.482098,21.591744],[-100.482783,21.591965],[-100.483589,21.592347],[-100.483961,21.592691],[-100.484029,21.593054],[-100.484307,21.593498],[-100.484939,21.593753],[-100.485597,21.594052],[-100.485802,21.594404],[-100.485685,21.595277],[-100.485476,21.59632],[-100.485138,21.596599],[-100.484971,21.597124],[-100.48495,21.59719],[-100.484551,21.597618],[-100.483769,21.598117],[-100.482907,21.598104],[-100.482321,21.598604],[-100.481965,21.598698],[-100.481768,21.598749],[-100.481125,21.599179],[-100.480286,21.599293],[-100.479475,21.599874],[-100.479143,21.600541],[-100.478962,21.601461],[-100.478382,21.60219],[-100.477961,21.602488],[-100.4776,21.602799],[-100.477316,21.602898],[-100.476941,21.60309],[-100.4765,21.603476],[-100.475949,21.603749],[-100.475453,21.603957],[-100.475003,21.604183],[-100.47451,21.604084],[-100.473869,21.604291],[-100.472428,21.604347],[-100.47222,21.604673],[-100.471886,21.604993],[-100.471607,21.605408],[-100.471258,21.605721],[-100.470827,21.606192],[-100.47049,21.606465],[-100.470371,21.60676],[-100.470315,21.607627],[-100.470173,21.607932],[-100.470099,21.608698],[-100.470015,21.609036],[-100.470221,21.609685],[-100.469737,21.61009],[-100.469555,21.610494],[-100.469525,21.611044],[-100.468923,21.612116],[-100.468986,21.612777],[-100.468997,21.612883],[-100.468699,21.61292],[-100.468281,21.612865],[-100.468063,21.612771],[-100.467081,21.614234],[-100.46673,21.614849],[-100.466818,21.6154],[-100.466377,21.615967],[-100.466015,21.616156],[-100.465648,21.616867],[-100.464933,21.617888],[-100.464701,21.618491],[-100.464345,21.618825],[-100.463824,21.619128],[-100.463866,21.619434],[-100.463172,21.620439],[-100.462586,21.620787],[-100.462232,21.621558],[-100.462292,21.623328],[-100.462033,21.623573],[-100.461765,21.623576],[-100.460717,21.623702],[-100.460397,21.623991],[-100.460209,21.624747],[-100.460111,21.625434],[-100.46047,21.625812],[-100.460407,21.626612],[-100.460023,21.626531],[-100.45972,21.627721],[-100.459519,21.628266],[-100.459223,21.628619],[-100.459479,21.629246],[-100.460263,21.629824],[-100.460619,21.630872],[-100.460505,21.631452],[-100.460576,21.632256],[-100.460849,21.633307],[-100.460879,21.633536],[-100.460826,21.633762],[-100.460726,21.633962],[-100.460425,21.634283],[-100.460086,21.634457],[-100.459889,21.634676],[-100.459863,21.634911],[-100.459948,21.635152],[-100.460242,21.635455],[-100.46067,21.635698],[-100.46096,21.636349],[-100.461291,21.636758],[-100.461502,21.63705],[-100.461636,21.637345],[-100.461588,21.637579],[-100.461393,21.637729],[-100.461167,21.637829],[-100.460968,21.637803],[-100.460663,21.637892],[-100.460386,21.637885],[-100.460239,21.637981],[-100.460174,21.638127],[-100.460203,21.6383],[-100.460274,21.638524],[-100.460237,21.638718],[-100.460037,21.638978],[-100.459693,21.639095],[-100.459272,21.63913],[-100.458827,21.639072],[-100.458422,21.639091],[-100.458237,21.639321],[-100.458135,21.639624],[-100.458158,21.639923],[-100.458305,21.640156],[-100.458319,21.640451],[-100.458214,21.640606],[-100.457922,21.640916],[-100.457665,21.641145],[-100.457379,21.641476],[-100.45707,21.641708],[-100.456666,21.641971],[-100.456434,21.642311],[-100.456374,21.642518],[-100.456478,21.643064],[-100.45658,21.643286],[-100.456719,21.643359],[-100.457048,21.64334],[-100.457506,21.643331],[-100.45784,21.643444],[-100.457999,21.643525],[-100.458229,21.643779],[-100.458316,21.644006],[-100.458264,21.644239],[-100.458105,21.644468],[-100.458112,21.644631],[-100.457978,21.644999],[-100.457844,21.645304],[-100.457565,21.645674],[-100.456871,21.646155],[-100.456491,21.646277],[-100.456061,21.64645],[-100.456002,21.6465],[-100.456079,21.646614],[-100.456044,21.646895],[-100.455689,21.64801],[-100.455595,21.648303],[-100.455613,21.64861],[-100.455776,21.648845],[-100.455934,21.648926],[-100.456303,21.64889],[-100.456598,21.648875],[-100.456932,21.648962],[-100.457163,21.649334],[-100.457121,21.649933],[-100.457076,21.650075],[-100.456783,21.650302],[-100.456238,21.650627],[-100.455984,21.650871],[-100.455723,21.651318],[-100.455502,21.651672],[-100.455298,21.652109],[-100.455166,21.652345],[-100.455061,21.65264],[-100.454873,21.652967],[-100.454612,21.65312],[-100.454201,21.653602],[-100.453711,21.654065],[-100.453243,21.654388],[-100.452909,21.654835],[-100.452752,21.655171],[-100.452749,21.655352],[-100.452898,21.655427],[-100.45342,21.655462],[-100.453717,21.655575],[-100.453777,21.655954],[-100.453667,21.656262],[-100.453361,21.656641],[-100.45296,21.657122],[-100.452631,21.657587],[-100.452433,21.657977],[-100.452383,21.658229],[-100.45233,21.658676],[-100.45233,21.659313],[-100.45246,21.659675],[-100.452533,21.660143],[-100.452528,21.660554],[-100.452447,21.660903],[-100.452301,21.661226],[-100.452151,21.66134],[-100.451961,21.661324],[-100.451607,21.661291],[-100.451329,21.661327],[-100.451163,21.661436],[-100.451002,21.661607],[-100.45087,21.661915],[-100.450745,21.662048],[-100.450496,21.662137],[-100.449645,21.662109],[-100.449248,21.662077],[-100.448988,21.66217],[-100.448779,21.662424],[-100.44874,21.662675],[-100.448824,21.66301],[-100.449317,21.663936],[-100.449629,21.664438],[-100.44991,21.665002],[-100.450051,21.665378],[-100.450295,21.665641],[-100.45066,21.665941],[-100.4509,21.666166],[-100.451282,21.666349],[-100.45137,21.666468],[-100.451349,21.666599],[-100.451203,21.666694],[-100.451077,21.66674],[-100.450963,21.667041],[-100.450831,21.667251],[-100.45067,21.66738],[-100.450381,21.667531],[-100.449838,21.667752],[-100.449753,21.667881],[-100.449663,21.668105],[-100.449625,21.66842],[-100.44958,21.668685],[-100.449509,21.66893],[-100.449358,21.669123],[-100.449214,21.669183],[-100.44907,21.669197],[-100.448894,21.66918],[-100.448782,21.669226],[-100.448639,21.669364],[-100.448532,21.669531],[-100.448416,21.669823],[-100.448244,21.670117],[-100.447864,21.670403],[-100.447574,21.670687],[-100.447306,21.671024],[-100.447091,21.671204],[-100.446717,21.671382],[-100.446309,21.671516],[-100.445801,21.671675],[-100.445393,21.671804],[-100.445232,21.672006],[-100.44514,21.672267],[-100.445243,21.672485],[-100.445481,21.672703],[-100.44578,21.672902],[-100.446044,21.673055],[-100.446525,21.67321],[-100.446852,21.673298],[-100.447139,21.673399],[-100.447238,21.673551],[-100.447282,21.674009],[-100.447274,21.674464],[-100.447366,21.674746],[-100.447342,21.674923],[-100.447087,21.675197],[-100.446771,21.675455],[-100.446383,21.675623],[-100.445873,21.675816],[-100.445595,21.675974],[-100.445492,21.676098],[-100.445481,21.676236],[-100.445556,21.676424],[-100.445554,21.67658],[-100.445457,21.676762],[-100.445094,21.677086],[-100.444785,21.677219],[-100.444465,21.677433],[-100.444267,21.677591],[-100.442956,21.678519],[-100.442675,21.678638],[-100.442332,21.678758],[-100.442038,21.678782],[-100.441688,21.678714],[-100.441474,21.678585],[-100.441368,21.67831],[-100.441286,21.677948],[-100.441129,21.677733],[-100.440508,21.677462],[-100.440268,21.677274],[-100.439903,21.676939],[-100.439692,21.676664],[-100.439528,21.676559],[-100.439322,21.676566],[-100.439166,21.676726],[-100.439051,21.676965],[-100.439024,21.677253],[-100.439104,21.677564],[-100.439287,21.677884],[-100.439343,21.678036],[-100.439295,21.678181],[-100.439064,21.678324],[-100.438529,21.678575],[-100.4381,21.678818],[-100.43789,21.678998],[-100.437745,21.679221],[-100.437637,21.679575],[-100.437451,21.67982],[-100.437144,21.679994],[-100.436884,21.680163],[-100.436448,21.680317],[-100.436073,21.680503],[-100.435722,21.680702],[-100.435631,21.680905],[-100.435599,21.681324],[-100.435426,21.681688],[-100.435291,21.682095],[-100.435211,21.682465],[-100.435044,21.682718],[-100.434857,21.682813],[-100.434633,21.682807],[-100.434529,21.682193],[-100.434352,21.68175],[-100.434214,21.680822],[-100.434052,21.680723],[-100.433905,21.680666],[-100.433827,21.680578],[-100.433917,21.680454],[-100.434097,21.680408],[-100.434142,21.680321],[-100.434021,21.679952],[-100.4338,21.679523],[-100.433668,21.679121],[-100.433615,21.678663],[-100.433258,21.678404],[-100.432998,21.678297],[-100.432602,21.678165],[-100.431968,21.678275],[-100.431067,21.678787],[-100.430224,21.678709],[-100.429213,21.678318],[-100.428528,21.677881],[-100.427666,21.677276],[-100.426053,21.676084],[-100.425331,21.675634],[-100.42492,21.675511],[-100.423267,21.675109],[-100.423051,21.675057],[-100.421689,21.674904],[-100.419043,21.674737],[-100.417081,21.675061],[-100.414668,21.675718],[-100.412837,21.676488],[-100.411203,21.676879],[-100.410123,21.677193],[-100.40899,21.677298],[-100.407553,21.677215],[-100.406118,21.676633],[-100.405454,21.676363],[-100.403785,21.675765],[-100.403284,21.675467],[-100.402619,21.675068],[-100.401531,21.674583],[-100.399993,21.674479],[-100.398609,21.674655],[-100.398393,21.674711],[-100.397755,21.674875],[-100.397259,21.675633],[-100.396409,21.676392],[-100.395224,21.677529],[-100.394714,21.678155],[-100.394048,21.678301],[-100.392575,21.67837],[-100.39137,21.678503],[-100.390705,21.678838],[-100.390352,21.67928],[-100.390179,21.679794],[-100.390089,21.680606],[-100.389926,21.680938],[-100.389652,21.681337],[-100.389349,21.681411],[-100.388737,21.681257],[-100.388079,21.68134],[-100.387421,21.681193],[-100.386282,21.680612],[-100.385715,21.6797],[-100.385056,21.679221],[-100.3846,21.679275],[-100.383577,21.679163],[-100.38309,21.679285],[-100.382884,21.679593],[-100.382717,21.680323],[-100.382785,21.680559],[-100.382822,21.680851],[-100.382676,21.68099],[-100.382295,21.680951],[-100.381912,21.680699],[-100.381628,21.680585],[-100.381241,21.680655],[-100.380993,21.680863],[-100.379775,21.680938],[-100.379244,21.680755],[-100.378336,21.680692],[-100.377576,21.680274],[-100.376767,21.679951],[-100.37601,21.679817],[-100.375531,21.679821],[-100.375181,21.680014],[-100.3724,21.681548],[-100.371483,21.682054],[-100.370895,21.68238],[-100.368592,21.683953],[-100.366381,21.684965],[-100.366324,21.684994],[-100.366034,21.685144],[-100.365372,21.685483],[-100.363356,21.686003],[-100.362147,21.686357],[-100.361092,21.686914],[-100.360162,21.687403],[-100.357938,21.688385],[-100.356955,21.689091],[-100.355443,21.690036],[-100.354662,21.690553],[-100.353553,21.69093],[-100.352898,21.691261],[-100.352263,21.691327],[-100.351366,21.691671],[-100.349969,21.691556],[-100.349057,21.690868],[-100.347952,21.690265],[-100.347452,21.689991],[-100.34599,21.689614],[-100.344856,21.689237],[-100.343595,21.688791],[-100.342851,21.688696],[-100.342688,21.688674],[-100.341251,21.688013],[-100.339814,21.687261],[-100.339234,21.687097],[-100.337872,21.686484],[-100.336839,21.686319],[-100.336234,21.686037],[-100.335881,21.686085],[-100.334721,21.68606],[-100.334343,21.686226],[-100.333637,21.686155],[-100.333362,21.68606],[-100.331743,21.685727],[-100.330059,21.68521],[-100.327799,21.684451],[-100.326519,21.683965],[-100.324915,21.683142],[-100.323761,21.682681],[-100.322807,21.682269],[-100.322078,21.682094],[-100.320891,21.682174],[-100.317858,21.682514],[-100.312956,21.682925],[-100.308039,21.683269],[-100.301027,21.684146],[-100.296203,21.684417],[-100.29148,21.684711],[-100.28822,21.685023],[-100.283338,21.685766],[-100.277296,21.686492],[-100.277143,21.686516],[-100.273983,21.687014],[-100.272692,21.687247],[-100.272135,21.687347],[-100.271904,21.687174],[-100.271776,21.68694],[-100.271722,21.68673],[-100.271744,21.686315],[-100.271642,21.686151],[-100.271326,21.686135],[-100.271146,21.685966],[-100.271024,21.685657],[-100.270946,21.685592],[-100.270825,21.685489],[-100.270576,21.685227],[-100.270393,21.684917],[-100.270146,21.684347],[-100.270036,21.684152],[-100.269932,21.683946],[-100.269371,21.683337],[-100.269015,21.68311],[-100.26877,21.682705],[-100.268364,21.68253],[-100.267846,21.682055],[-100.26687,21.681477],[-100.266374,21.681637],[-100.266145,21.681668],[-100.265532,21.681355],[-100.265209,21.681125],[-100.265002,21.681093],[-100.264693,21.680616],[-100.264289,21.680171],[-100.264147,21.679556],[-100.264049,21.679365],[-100.263896,21.679226],[-100.263182,21.679177],[-100.262802,21.679063],[-100.262537,21.679012],[-100.262247,21.6789],[-100.262035,21.67877],[-100.26172,21.678561],[-100.261363,21.678305],[-100.261065,21.678055],[-100.260891,21.677839],[-100.260493,21.677456],[-100.260468,21.677409],[-100.260395,21.677245],[-100.260247,21.677006],[-100.260048,21.676814],[-100.259873,21.676718],[-100.259621,21.676645],[-100.259044,21.676449],[-100.258715,21.676211],[-100.258396,21.676108],[-100.258097,21.67599],[-100.257767,21.675821],[-100.25752,21.675691],[-100.257367,21.675506],[-100.257167,21.675318],[-100.256039,21.674663],[-100.255659,21.674345],[-100.25467,21.673514],[-100.254294,21.673321],[-100.254044,21.673223],[-100.253473,21.672557],[-100.253276,21.672224],[-100.253077,21.672009],[-100.252802,21.671817],[-100.252527,21.671672],[-100.252207,21.671554],[-100.251948,21.671377],[-100.251591,21.671031],[-100.25143,21.670861],[-100.251103,21.670454],[-100.250778,21.67013],[-100.25031,21.669505],[-100.249617,21.668711],[-100.249169,21.66828],[-100.248969,21.668183],[-100.248743,21.66811],[-100.248568,21.667989],[-100.248373,21.667539],[-100.247803,21.6668],[-100.247012,21.665681],[-100.246738,21.665442],[-100.246311,21.664933],[-100.244216,21.665154],[-100.243488,21.665278],[-100.242735,21.665363],[-100.239704,21.665326],[-100.223184,21.665635],[-100.222275,21.665652],[-100.220812,21.664588],[-100.218009,21.662996],[-100.215007,21.661259],[-100.212554,21.659928],[-100.211124,21.659121],[-100.210677,21.658867],[-100.209772,21.658618],[-100.208968,21.658396],[-100.207761,21.658123],[-100.207207,21.658021],[-100.20668,21.657848],[-100.20613,21.657534],[-100.205605,21.657174],[-100.203318,21.654833],[-100.20108,21.652633],[-100.197592,21.649661],[-100.196147,21.648441],[-100.195174,21.647743],[-100.194447,21.64738],[-100.193895,21.647183],[-100.192839,21.646958],[-100.192182,21.646891],[-100.192032,21.646876],[-100.191376,21.646915],[-100.190718,21.647071],[-100.190186,21.647205],[-100.18945,21.647502],[-100.18887,21.647829],[-100.188304,21.648149],[-100.187881,21.648412],[-100.187082,21.64891],[-100.185831,21.649908],[-100.185294,21.650398],[-100.18476,21.650673],[-100.184122,21.650716],[-100.183438,21.649697],[-100.183214,21.649362],[-100.182803,21.649402],[-100.182384,21.649441],[-100.181492,21.649524],[-100.181373,21.649536],[-100.180554,21.650208],[-100.180418,21.65032],[-100.179635,21.65079],[-100.177666,21.648918],[-100.177572,21.648829],[-100.177441,21.648649],[-100.174951,21.645244],[-100.174206,21.644225],[-100.172564,21.642066],[-100.172369,21.64181],[-100.170802,21.639751],[-100.170236,21.639007],[-100.170046,21.638748],[-100.169669,21.638283],[-100.169071,21.637545],[-100.167838,21.636024],[-100.167149,21.634118],[-100.167615,21.633796],[-100.168501,21.633185],[-100.171095,21.631394],[-100.172483,21.629331],[-100.172236,21.628788],[-100.172013,21.628155],[-100.171863,21.627879],[-100.171833,21.627838],[-100.171717,21.627684],[-100.171727,21.627469],[-100.171775,21.627238],[-100.171811,21.627021],[-100.171733,21.626647],[-100.171775,21.626247],[-100.171797,21.626048],[-100.171824,21.625844],[-100.171772,21.625345],[-100.171696,21.625007],[-100.171455,21.624802],[-100.171396,21.624334],[-100.171493,21.623967],[-100.171369,21.623413],[-100.171491,21.623144],[-100.171692,21.622851],[-100.171934,21.622703],[-100.172051,21.62253],[-100.172168,21.622346],[-100.172191,21.622152],[-100.17223,21.621838],[-100.17237,21.621296],[-100.172603,21.620138],[-100.172315,21.619512],[-100.172296,21.618935],[-100.172545,21.617889],[-100.172793,21.617263],[-100.173,21.616908],[-100.17327,21.616199],[-100.1737,21.615665],[-100.17409,21.615174],[-100.174213,21.613978],[-100.174425,21.613079],[-100.174496,21.612165],[-100.174346,21.61121],[-100.17446,21.610752],[-100.17459,21.6105],[-100.174451,21.610019],[-100.174161,21.609457],[-100.173922,21.609055],[-100.173545,21.608704],[-100.173447,21.608587],[-100.173268,21.60827],[-100.173182,21.608075],[-100.173079,21.607787],[-100.172981,21.607193],[-100.172813,21.606976],[-100.172493,21.606576],[-100.172406,21.60648],[-100.172151,21.606195],[-100.172199,21.605643],[-100.172073,21.605152],[-100.171774,21.604802],[-100.171431,21.60441],[-100.171098,21.604123],[-100.170981,21.603638],[-100.171223,21.602847],[-100.171283,21.602362],[-100.171237,21.601873],[-100.171321,21.601573],[-100.171443,21.601266],[-100.170812,21.601013],[-100.17051,21.600881],[-100.170056,21.600892],[-100.169758,21.600913],[-100.169198,21.600984],[-100.168283,21.601115],[-100.167411,21.601391],[-100.16533,21.602574],[-100.163304,21.603875],[-100.161973,21.604634],[-100.161508,21.604811],[-100.161294,21.604977],[-100.161131,21.605311],[-100.160881,21.605658],[-100.16064,21.605996],[-100.160526,21.606245],[-100.160511,21.606496],[-100.160499,21.606753],[-100.160523,21.60708],[-100.160496,21.607379],[-100.160287,21.60791],[-100.159967,21.608418],[-100.159368,21.609249],[-100.158953,21.609863],[-100.158566,21.610534],[-100.158122,21.611125],[-100.15788,21.611988],[-100.157849,21.612499],[-100.157733,21.613019],[-100.157522,21.613436],[-100.1572,21.61386],[-100.156137,21.615184],[-100.155554,21.615959],[-100.155282,21.616344],[-100.15502,21.616852],[-100.154366,21.617354],[-100.153608,21.61758],[-100.152968,21.617791],[-100.152538,21.617904],[-100.151995,21.618025],[-100.151447,21.61812],[-100.151077,21.618208],[-100.150933,21.618451],[-100.150752,21.61869],[-100.150178,21.618884],[-100.149786,21.618871],[-100.149529,21.618718],[-100.149439,21.618547],[-100.149386,21.618348],[-100.14916,21.618137],[-100.148983,21.618059],[-100.14871,21.617974],[-100.148364,21.617846],[-100.148057,21.617724],[-100.147845,21.617669],[-100.147634,21.617693],[-100.147405,21.617818],[-100.147285,21.617937],[-100.147195,21.618125],[-100.147028,21.617943],[-100.145158,21.615665],[-100.144909,21.61536],[-100.139453,21.60959],[-100.1348,21.604378],[-100.132617,21.601933],[-100.12493,21.594115],[-100.124635,21.593773],[-100.124905,21.593642],[-100.124978,21.593466],[-100.112454,21.587293],[-100.098598,21.576035],[-100.091877,21.5705],[-100.089033,21.568156],[-100.087348,21.566842],[-100.087248,21.566764],[-100.086325,21.566045],[-100.086221,21.565963],[-100.079676,21.560861],[-100.076849,21.558657],[-100.076507,21.55839],[-100.076345,21.558264],[-100.07608,21.558057],[-100.075911,21.557967],[-100.075844,21.557932],[-100.062276,21.523305],[-100.050849,21.524245],[-100.044103,21.525561],[-100.043646,21.525543],[-100.041444,21.525415],[-100.033224,21.525076],[-100.020754,21.524569],[-100.019616,21.524595],[-100.016999,21.52455],[-100.016729,21.524546],[-100.013839,21.524497],[-100.013778,21.524496],[-100.011576,21.524458],[-100.007946,21.524396],[-100.00437,21.524412],[-100.001121,21.524118],[-100.000029,21.524185],[-99.998669,21.524182],[-99.996878,21.524638],[-99.995869,21.52496],[-99.995264,21.525094],[-99.994786,21.525138],[-99.994157,21.525108],[-99.993605,21.525034],[-99.992726,21.524909],[-99.99197,21.524997],[-99.991568,21.524992],[-99.991116,21.524871],[-99.990589,21.524795],[-99.989155,21.524758],[-99.988714,21.524777],[-99.987671,21.524817],[-99.986941,21.524857],[-99.98538,21.524986],[-99.984625,21.525049],[-99.983011,21.525411],[-99.98291,21.525435],[-99.981877,21.525684],[-99.980188,21.526022],[-99.978953,21.526201],[-99.976912,21.526583],[-99.975174,21.526873],[-99.973612,21.527095],[-99.97238,21.527061],[-99.970594,21.527022],[-99.969841,21.527053],[-99.96921,21.52708],[-99.967985,21.527013],[-99.967626,21.526994],[-99.966395,21.526938],[-99.965138,21.526785],[-99.963579,21.526701],[-99.962197,21.526571],[-99.95996,21.526433],[-99.959652,21.5264],[-99.959608,21.526175],[-99.959362,21.526222],[-99.9591,21.526341],[-99.958803,21.526309],[-99.958528,21.526279],[-99.957019,21.526219],[-99.956822,21.526227],[-99.95688,21.526123],[-99.95692,21.525996],[-99.957034,21.525632],[-99.957031,21.525607],[-99.95696,21.525414],[-99.956654,21.525066],[-99.956489,21.524799],[-99.956551,21.524489],[-99.956634,21.523853],[-99.956718,21.523205],[-99.956752,21.522945],[-99.956927,21.521593],[-99.956974,21.521605],[-99.956975,21.521588],[-99.957042,21.521397],[-99.957055,21.521135],[-99.957094,21.520835],[-99.956864,21.520513],[-99.956667,21.520281],[-99.956219,21.519776],[-99.956109,21.51941],[-99.956212,21.518673],[-99.956316,21.518239],[-99.956672,21.518004],[-99.956885,21.517935],[-99.957078,21.51776],[-99.957141,21.517631],[-99.957266,21.517206],[-99.957366,21.516876],[-99.957391,21.516571],[-99.957415,21.516241],[-99.95754,21.51591],[-99.957641,21.515697],[-99.957817,21.515604],[-99.958018,21.51551],[-99.958446,21.51532],[-99.958672,21.515109],[-99.958898,21.514848],[-99.959198,21.514024],[-99.959198,21.513741],[-99.959317,21.512939],[-99.95945,21.512258],[-99.959554,21.511905],[-99.960223,21.510962],[-99.960548,21.510621],[-99.96088,21.510082],[-99.961186,21.509685],[-99.961492,21.509335],[-99.961924,21.508892],[-99.96228,21.50847],[-99.962435,21.508072],[-99.962558,21.507888],[-99.962792,21.507534],[-99.963047,21.507183],[-99.963635,21.506701],[-99.96399,21.506705],[-99.964405,21.50663],[-99.964786,21.506363],[-99.965078,21.505924],[-99.965111,21.505121],[-99.964264,21.504142],[-99.963709,21.503981],[-99.963165,21.503648],[-99.96283,21.503234],[-99.962538,21.50306],[-99.962259,21.503048],[-99.962152,21.503519],[-99.961936,21.503555],[-99.961305,21.503197],[-99.960926,21.502692],[-99.960793,21.502143],[-99.960772,21.501692],[-99.960239,21.50126],[-99.960016,21.500914],[-99.959871,21.500463],[-99.959454,21.500328],[-99.954128,21.496946],[-99.953225,21.496355],[-99.952956,21.49618],[-99.950815,21.494783],[-99.950655,21.494677],[-99.949445,21.495466],[-99.945705,21.497432],[-99.945921,21.493975],[-99.947943,21.490688],[-99.951743,21.487712],[-99.955533,21.485893],[-99.955861,21.485735],[-99.957675,21.484893],[-99.958242,21.484508],[-99.959346,21.483514],[-99.958692,21.483099],[-99.957952,21.482657],[-99.957392,21.482045],[-99.956968,21.481223],[-99.956588,21.479866],[-99.956322,21.479187],[-99.956007,21.478731],[-99.95573,21.478424],[-99.955096,21.478051],[-99.954672,21.477456],[-99.954304,21.476889],[-99.954034,21.47598],[-99.953761,21.475638],[-99.953387,21.475192],[-99.953174,21.474832],[-99.953071,21.474522],[-99.952959,21.474063],[-99.952836,21.473781],[-99.952423,21.473559],[-99.952186,21.473167],[-99.951612,21.472581],[-99.951477,21.472268],[-99.951461,21.471923],[-99.951687,21.471498],[-99.95243,21.470929],[-99.95298,21.47062],[-99.953199,21.470291],[-99.953214,21.469817],[-99.952902,21.469471],[-99.952612,21.469171],[-99.952456,21.468931],[-99.952402,21.468641],[-99.952282,21.468084],[-99.952055,21.467119],[-99.951897,21.466925],[-99.951585,21.466789],[-99.95121,21.466704],[-99.950732,21.466587],[-99.950291,21.466309],[-99.950123,21.466066],[-99.949989,21.46566],[-99.949868,21.465003],[-99.949793,21.4645],[-99.949773,21.463977],[-99.949605,21.463173],[-99.94963,21.462851],[-99.949887,21.462516],[-99.9503,21.46229],[-99.950592,21.462036],[-99.950648,21.461526],[-99.9502,21.461289],[-99.949803,21.46081],[-99.949614,21.460448],[-99.949602,21.460029],[-99.949544,21.459557],[-99.949465,21.459258],[-99.94919,21.458802],[-99.948691,21.458722],[-99.94816,21.458645],[-99.947784,21.458478],[-99.947603,21.458192],[-99.947451,21.45773],[-99.947647,21.457455],[-99.948037,21.457353],[-99.94852,21.457302],[-99.949043,21.457152],[-99.949411,21.456657],[-99.949252,21.456002],[-99.94817,21.455784],[-99.947155,21.455677],[-99.946738,21.455574],[-99.946672,21.455371],[-99.947047,21.455028],[-99.947488,21.454733],[-99.947597,21.454346],[-99.947302,21.45411],[-99.946414,21.453676],[-99.945895,21.453279],[-99.945133,21.452785],[-99.944656,21.45231],[-99.944109,21.451603],[-99.943569,21.450982],[-99.943074,21.450318],[-99.942702,21.449875],[-99.942333,21.44962],[-99.941816,21.449594],[-99.941188,21.44974],[-99.940892,21.449933],[-99.940271,21.450097],[-99.939467,21.44986],[-99.938964,21.449789],[-99.942139,21.456452],[-99.94316,21.459026],[-99.943591,21.460428],[-99.943766,21.461211],[-99.943706,21.461516],[-99.943328,21.461704],[-99.943169,21.461784],[-99.942669,21.461784],[-99.942414,21.461786],[-99.937992,21.460056],[-99.936874,21.459619],[-99.936538,21.459522],[-99.934083,21.458808],[-99.929414,21.456953],[-99.92645,21.456041],[-99.92302,21.454535],[-99.922309,21.454223],[-99.526504,22.613658],[-99.534692,22.612765],[-99.560638,22.64122],[-99.602787,22.654863],[-99.665993,22.675295],[-99.667125,22.67566],[-99.682535,22.681125],[-99.691981,22.676847],[-99.701765,22.673228],[-99.718369,22.664555],[-99.724085,22.659608],[-99.728951,22.659134],[-99.752725,22.656811],[-99.754779,22.656611],[-99.755189,22.656742],[-99.75534,22.65679],[-99.759021,22.657966],[-99.76025,22.658897],[-99.761222,22.659499],[-99.762221,22.66022],[-99.762454,22.660641],[-99.762841,22.661156],[-99.763302,22.661552],[-99.764121,22.662109],[-99.765589,22.66167],[-99.766749,22.66156],[-99.766983,22.661538],[-99.768331,22.66176],[-99.769402,22.66215],[-99.770191,22.662307],[-99.770728,22.662584],[-99.771976,22.662996],[-99.772178,22.663123],[-99.772374,22.663255],[-99.772457,22.663312],[-99.772726,22.663504],[-99.773,22.663716],[-99.773668,22.664322],[-99.774179,22.664623],[-99.774762,22.664523],[-99.775501,22.664821],[-99.776143,22.66538],[-99.776883,22.665554],[-99.77739,22.665674],[-99.7778,22.665976],[-99.778304,22.666525],[-99.77888,22.667143],[-99.779391,22.667397],[-99.780431,22.667316],[-99.782032,22.667488],[-99.7828,22.668046],[-99.783245,22.668417],[-99.785037,22.668509],[-99.78811,22.668302],[-99.788333,22.668287],[-99.794746,22.667703],[-99.797314,22.665049],[-99.798017,22.66665],[-99.805486,22.657773],[-99.812959,22.660402],[-99.814029,22.660766],[-99.847736,22.678337],[-99.847924,22.678435],[-99.847403,22.683756],[-99.84713,22.686543],[-99.847127,22.686576],[-99.846994,22.687927],[-99.846991,22.687958],[-99.846843,22.689474],[-99.846838,22.689519],[-99.846669,22.691244],[-99.846664,22.691297],[-99.846516,22.69281],[-99.846512,22.692848],[-99.846381,22.69419],[-99.846378,22.694216],[-99.846288,22.695137],[-99.846283,22.695194],[-99.84617,22.696342],[-99.846165,22.696391],[-99.845471,22.703481],[-99.845468,22.703515],[-99.844956,22.708739],[-99.844824,22.71009],[-99.844788,22.710453],[-99.842819,22.730557],[-99.872682,22.745453],[-99.882397,22.749862],[-99.883154,22.748239],[-99.88333,22.748262],[-99.88451,22.748422],[-99.892059,22.748446],[-99.898164,22.748636],[-99.898362,22.748642],[-99.926255,22.749503],[-99.933313,22.749698],[-99.937391,22.750183],[-99.939855,22.750732],[-99.945473,22.751421],[-99.947403,22.751454],[-99.953905,22.751617],[-99.956241,22.751647],[-99.956958,22.751667],[-99.958098,22.750311],[-99.958489,22.749777],[-99.958577,22.749813],[-99.959145,22.750044],[-99.960582,22.749496],[-99.960629,22.749478],[-99.983387,22.740796],[-99.983468,22.740765],[-99.983668,22.740689],[-100.008667,22.731147],[-100.009018,22.731013],[-100.022343,22.725925],[-100.06601,22.74135],[-100.0728,22.743751],[-100.075448,22.744687],[-100.09406,22.751265],[-100.095624,22.753558],[-100.10192,22.762793],[-100.097631,22.7664],[-100.097516,22.765804],[-100.070813,22.788756],[-100.06061,22.797536],[-100.060493,22.797636],[-100.049448,22.807138],[-100.04886,22.807644],[-100.029384,22.824394],[-100.02959,22.825776],[-100.040296,22.895545],[-100.044239,22.917892],[-100.109707,22.916726],[-100.110384,22.916714],[-100.110278,22.943445],[-100.110619,22.970178],[-100.110847,22.975719],[-100.110145,22.975512],[-100.089421,22.968757],[-100.099532,23.007931],[-100.099507,23.007993],[-100.097455,23.013091],[-100.094915,23.013841],[-100.094845,23.013644],[-100.094669,23.013679],[-100.09452,23.013582],[-100.094359,23.013601],[-100.094232,23.013442],[-100.094161,23.013387],[-100.094044,23.013444],[-100.093918,23.013434],[-100.093871,23.013334],[-100.093863,23.013239],[-100.093738,23.013196],[-100.093523,23.013126],[-100.093301,23.013045],[-100.093132,23.013084],[-100.092973,23.013073],[-100.092897,23.012907],[-100.092813,23.012888],[-100.092586,23.012784],[-100.092424,23.012672],[-100.092222,23.012574],[-100.09195,23.012226],[-100.091892,23.01199],[-100.091747,23.011738],[-100.091644,23.011552],[-100.091343,23.011412],[-100.091119,23.011542],[-100.090799,23.011358],[-100.0904,23.011246],[-100.09016,23.011188],[-100.090041,23.01111],[-100.089822,23.011082],[-100.089539,23.011081],[-100.08942,23.011058],[-100.089156,23.010829],[-100.089084,23.010769],[-100.088787,23.010823],[-100.088524,23.01083],[-100.088241,23.010788],[-100.087976,23.010872],[-100.087778,23.010846],[-100.087593,23.010869],[-100.087333,23.010741],[-100.087244,23.010846],[-100.087299,23.010965],[-100.087055,23.011461],[-100.086833,23.011294],[-100.086663,23.011189],[-100.086498,23.011068],[-100.086326,23.011068],[-100.086188,23.010944],[-100.085854,23.010067],[-100.085716,23.00946],[-100.085642,23.009046],[-100.085625,23.008714],[-100.08569,23.008568],[-100.08542,23.008238],[-100.08524,23.008115],[-100.085062,23.007939],[-100.085064,23.007754],[-100.084959,23.007661],[-100.084748,23.007612],[-100.084669,23.007466],[-100.084621,23.007304],[-100.084447,23.007273],[-100.084356,23.007102],[-100.084231,23.006908],[-100.084103,23.006844],[-100.084063,23.00664],[-100.084029,23.006441],[-100.084067,23.006357],[-100.083954,23.006163],[-100.083817,23.006042],[-100.083702,23.005748],[-100.083493,23.00559],[-100.083291,23.005351],[-100.083134,23.005136],[-100.082901,23.004936],[-100.082685,23.004775],[-100.082494,23.004619],[-100.082364,23.004395],[-100.082261,23.004122],[-100.081928,23.003794],[-100.081757,23.003682],[-100.081575,23.003465],[-100.081454,23.00321],[-100.081373,23.003071],[-100.080917,23.002847],[-100.080894,23.002812],[-100.080493,23.002007],[-100.079854,23.001626],[-100.078029,23.001813],[-100.078281,23.001133],[-100.078157,23.000492],[-100.077735,23.000093],[-100.077089,22.999567],[-100.076743,22.999525],[-100.074184,22.99667],[-100.072433,22.997043],[-100.071656,22.997357],[-100.071635,22.998259],[-100.071305,22.998828],[-100.070227,22.999737],[-100.070095,23.000665],[-100.070033,23.000998],[-100.06931,23.001132],[-100.068233,23.001323],[-100.067577,23.001487],[-100.066216,23.00181],[-100.066185,23.002896],[-100.067498,23.008107],[-100.066345,23.010384],[-100.064709,23.01237],[-100.061842,23.01198],[-100.066903,23.031446],[-100.066739,23.031835],[-100.066747,23.032063],[-100.066678,23.032303],[-100.066619,23.032569],[-100.066541,23.032798],[-100.066445,23.032955],[-100.066199,23.033256],[-100.066128,23.033465],[-100.066075,23.033655],[-100.066136,23.033853],[-100.066074,23.033997],[-100.066095,23.034083],[-100.066012,23.034191],[-100.066108,23.034861],[-100.065838,23.035193],[-100.065815,23.035358],[-100.06558,23.035482],[-100.065405,23.035604],[-100.065185,23.035639],[-100.064737,23.036119],[-100.064654,23.036271],[-100.064363,23.036578],[-100.064016,23.036912],[-100.063852,23.03711],[-100.063738,23.037227],[-100.063507,23.037338],[-100.063131,23.037755],[-100.062849,23.038186],[-100.063063,23.038726],[-100.062967,23.03874],[-100.062793,23.038661],[-100.062675,23.038677],[-100.062594,23.038777],[-100.06251,23.039265],[-100.062309,23.039545],[-100.062097,23.039844],[-100.06194,23.040008],[-100.061678,23.039926],[-100.061443,23.040018],[-100.061291,23.040074],[-100.06109,23.040054],[-100.061,23.040412],[-100.060926,23.040479],[-100.060763,23.040507],[-100.060673,23.04054],[-100.060579,23.040427],[-100.060539,23.04039],[-100.060404,23.040396],[-100.060359,23.040364],[-100.060211,23.040204],[-100.060061,23.040266],[-100.059801,23.04018],[-100.059683,23.040093],[-100.059419,23.040053],[-100.058841,23.039995],[-100.05859,23.039999],[-100.058398,23.040064],[-100.058309,23.040101],[-100.057956,23.040197],[-100.057697,23.040354],[-100.057532,23.040487],[-100.057349,23.040546],[-100.057058,23.040646],[-100.056721,23.040764],[-100.056485,23.040893],[-100.056285,23.040954],[-100.056222,23.040945],[-100.054214,23.041968],[-100.054105,23.042373],[-100.054199,23.042549],[-100.054105,23.042707],[-100.053937,23.0428],[-100.053719,23.04281],[-100.053616,23.042821],[-100.053499,23.042966],[-100.053468,23.043092],[-100.053442,23.043235],[-100.05351,23.043386],[-100.053481,23.043552],[-100.053601,23.043818],[-100.053743,23.044248],[-100.053438,23.04468],[-100.053174,23.044967],[-100.053188,23.045393],[-100.053042,23.045687],[-100.052929,23.045917],[-100.052736,23.046046],[-100.05246,23.046201],[-100.052193,23.046319],[-100.052083,23.046511],[-100.052012,23.046717],[-100.051916,23.046792],[-100.051744,23.046778],[-100.051611,23.046737],[-100.051562,23.04668],[-100.051444,23.046707],[-100.051342,23.046785],[-100.05131,23.046902],[-100.051277,23.047106],[-100.051226,23.047203],[-100.051035,23.047294],[-100.0509,23.047333],[-100.050843,23.047292],[-100.050668,23.047286],[-100.050551,23.04726],[-100.050397,23.047406],[-100.050345,23.047672],[-100.050305,23.048049],[-100.05024,23.048225],[-100.049905,23.048332],[-100.049591,23.048407],[-100.049169,23.048527],[-100.048826,23.048798],[-100.048471,23.049137],[-100.048315,23.049506],[-100.04822,23.049779],[-100.047965,23.050367],[-100.04751,23.050648],[-100.04724,23.050711],[-100.046957,23.050634],[-100.0467,23.050585],[-100.046245,23.050792],[-100.045895,23.051017],[-100.045612,23.051349],[-100.045534,23.051558],[-100.045144,23.051851],[-100.044942,23.051938],[-100.044672,23.051849],[-100.044367,23.051804],[-100.044079,23.051942],[-100.043942,23.05212],[-100.043708,23.052317],[-100.043415,23.052344],[-100.043006,23.052282],[-100.042723,23.052414],[-100.042635,23.052579],[-100.042588,23.052731],[-100.042313,23.052741],[-100.042077,23.052586],[-100.041709,23.05249],[-100.041328,23.052385],[-100.040758,23.052023],[-100.040735,23.051937],[-100.040453,23.051825],[-100.040184,23.051957],[-100.039842,23.052346],[-100.039721,23.052667],[-100.039527,23.052866],[-100.039261,23.052899],[-100.039182,23.052764],[-100.039154,23.052505],[-100.039163,23.052312],[-100.038997,23.052209],[-100.038774,23.052214],[-100.038569,23.052449],[-100.038288,23.05261],[-100.038152,23.052614],[-100.038025,23.052537],[-100.037934,23.052254],[-100.037494,23.052226],[-100.037129,23.052308],[-100.036895,23.052407],[-100.036808,23.052582],[-100.036883,23.052773],[-100.036947,23.052988],[-100.036541,23.052965],[-100.036342,23.052898],[-100.036113,23.052911],[-100.03603,23.052984],[-100.036032,23.053188],[-100.035874,23.053233],[-100.035687,23.053182],[-100.035557,23.053075],[-100.035401,23.053026],[-100.035171,23.05303],[-100.034958,23.053063],[-100.034824,23.053234],[-100.03471,23.053442],[-100.034486,23.053387],[-100.0343,23.053356],[-100.034108,23.05326],[-100.033887,23.053326],[-100.033671,23.053482],[-100.033648,23.053619],[-100.033533,23.053611],[-100.033464,23.053641],[-100.033251,23.053627],[-100.033202,23.05372],[-100.033065,23.053667],[-100.032908,23.053554],[-100.032701,23.053506],[-100.032542,23.053546],[-100.032383,23.053626],[-100.032345,23.053773],[-100.032096,23.053641],[-100.031944,23.053573],[-100.031874,23.05343],[-100.031724,23.053412],[-100.031572,23.053512],[-100.031473,23.053607],[-100.031515,23.053853],[-100.031591,23.054178],[-100.031356,23.054243],[-100.0311,23.054329],[-100.030904,23.054303],[-100.030818,23.054362],[-100.030789,23.054462],[-100.030675,23.054479],[-100.030543,23.054444],[-100.030429,23.054428],[-100.030097,23.054579],[-100.029891,23.054741],[-100.029644,23.054992],[-100.029526,23.055024],[-100.029418,23.055209],[-100.029276,23.055167],[-100.029172,23.055038],[-100.029118,23.054919],[-100.029149,23.054813],[-100.028969,23.054786],[-100.028815,23.054767],[-100.028646,23.055054],[-100.028553,23.055303],[-100.028406,23.055557],[-100.028252,23.055609],[-100.028078,23.055686],[-100.028043,23.055842],[-100.028009,23.055947],[-100.027874,23.056014],[-100.02775,23.056079],[-100.027639,23.055997],[-100.027603,23.055822],[-100.027563,23.055657],[-100.027523,23.055553],[-100.0274,23.055545],[-100.02729,23.055624],[-100.026997,23.055845],[-100.026889,23.055991],[-100.026916,23.056171],[-100.027138,23.056445],[-100.027188,23.056604],[-100.027346,23.056738],[-100.027438,23.056735],[-100.027564,23.056883],[-100.027676,23.056967],[-100.027723,23.057003],[-100.027666,23.057074],[-100.027425,23.057157],[-100.027245,23.057179],[-100.026994,23.057304],[-100.026934,23.057407],[-100.02686,23.057562],[-100.0266,23.057549],[-100.026426,23.057608],[-100.026417,23.057683],[-100.026481,23.057759],[-100.026797,23.058003],[-100.026949,23.057863],[-100.027108,23.057791],[-100.027253,23.057856],[-100.027258,23.058033],[-100.02713,23.058191],[-100.027064,23.058381],[-100.027234,23.058632],[-100.027186,23.058749],[-100.026981,23.058732],[-100.02666,23.058673],[-100.026382,23.058708],[-100.026176,23.058786],[-100.025959,23.058935],[-100.025935,23.059091],[-100.026037,23.059221],[-100.026026,23.059314],[-100.025911,23.05932],[-100.025731,23.059264],[-100.02537,23.059365],[-100.025156,23.059427],[-100.024864,23.059411],[-100.024803,23.059346],[-100.02467,23.059228],[-100.024486,23.059159],[-100.024367,23.059171],[-100.024278,23.059123],[-100.024167,23.059074],[-100.024075,23.059104],[-100.024081,23.059202],[-100.024114,23.0594],[-100.024155,23.059594],[-100.024157,23.059673],[-100.024029,23.059703],[-100.023818,23.05972],[-100.023799,23.059879],[-100.023874,23.060109],[-100.023859,23.060322],[-100.023782,23.060402],[-100.023681,23.060474],[-100.023568,23.06041],[-100.023334,23.060198],[-100.023309,23.059969],[-100.023299,23.059628],[-100.023133,23.059501],[-100.022892,23.059498],[-100.022624,23.059625],[-100.022554,23.059794],[-100.022567,23.060016],[-100.022532,23.060116],[-100.022385,23.060177],[-100.022295,23.060061],[-100.02217,23.059973],[-100.022051,23.059843],[-100.02195,23.059703],[-100.021844,23.059516],[-100.021609,23.05947],[-100.021499,23.059509],[-100.021331,23.059623],[-100.021257,23.059764],[-100.021253,23.059934],[-100.021241,23.060122],[-100.021208,23.060233],[-100.021101,23.060244],[-100.020914,23.060081],[-100.020846,23.059963],[-100.020705,23.05981],[-100.02065,23.059727],[-100.020495,23.059743],[-100.020269,23.059816],[-100.020027,23.059859],[-100.019905,23.059993],[-100.019733,23.060011],[-100.019618,23.060042],[-100.01955,23.060161],[-100.019364,23.060143],[-100.019224,23.060121],[-100.01909,23.060044],[-100.018951,23.060077],[-100.018963,23.060309],[-100.018968,23.060463],[-100.01875,23.060666],[-100.018405,23.060671],[-100.01811,23.060374],[-100.017949,23.060332],[-100.01749,23.059895],[-100.017498,23.059863],[-100.017368,23.059985],[-100.017239,23.060008],[-100.016974,23.059722],[-100.016826,23.059563],[-100.016811,23.059434],[-100.016591,23.059303],[-100.016448,23.059291],[-100.016221,23.059144],[-100.016187,23.05904],[-100.015816,23.058787],[-100.015776,23.058683],[-100.015585,23.058661],[-100.015502,23.058703],[-100.015466,23.05874],[-100.015361,23.058821],[-100.015187,23.058848],[-100.014711,23.058773],[-100.014313,23.058832],[-100.013986,23.058626],[-100.013546,23.058531],[-100.012692,23.058893],[-100.0124,23.059441],[-100.01246,23.060434],[-100.012141,23.060628],[-100.011878,23.060922],[-100.011883,23.061184],[-100.01201,23.061351],[-100.012076,23.06155],[-100.011764,23.062016],[-100.011929,23.062423],[-100.011934,23.062739],[-100.011719,23.062985],[-100.011409,23.063211],[-100.011434,23.063401],[-100.011465,23.063585],[-100.011252,23.063921],[-100.011324,23.064561],[-100.011355,23.065359],[-100.011578,23.065603],[-100.069029,23.095942],[-100.069379,23.096857],[-100.068743,23.121156],[-100.08926,23.123445],[-100.091004,23.123593],[-100.091878,23.123696],[-100.092472,23.123751],[-100.093009,23.123803],[-100.09352,23.123863],[-100.094063,23.123933],[-100.096441,23.124165],[-100.096497,23.124171],[-100.097876,23.124307],[-100.098051,23.124326],[-100.100726,23.124607],[-100.103035,23.12482],[-100.103131,23.124831],[-100.106612,23.125154],[-100.109734,23.125445],[-100.115597,23.12599],[-100.113121,23.137402],[-100.110155,23.15107],[-100.11899,23.152428],[-100.118307,23.199121],[-100.118286,23.200545],[-100.10974,23.199718],[-100.103813,23.231535],[-100.122407,23.235593],[-100.129851,23.236703],[-100.135541,23.237596],[-100.135893,23.237646],[-100.139871,23.238212],[-100.147227,23.239224],[-100.152899,23.240064],[-100.152974,23.240074],[-100.163288,23.241506],[-100.168988,23.242227],[-100.171207,23.242579],[-100.172341,23.242759],[-100.174761,23.2431],[-100.181662,23.244072],[-100.18872,23.245049],[-100.210461,23.248055],[-100.228237,23.250476],[-100.220363,23.270868],[-100.21913,23.274062],[-100.218406,23.275937],[-100.217127,23.279246],[-100.21661,23.280585],[-100.215429,23.283643],[-100.21357,23.288456],[-100.213484,23.28868],[-100.212921,23.290137],[-100.212244,23.291889],[-100.21118,23.294644],[-100.209489,23.299021],[-100.208634,23.301233],[-100.2069,23.305722],[-100.206364,23.307109],[-100.212693,23.308722],[-100.216082,23.309585],[-100.216887,23.30979],[-100.218238,23.310134],[-100.218519,23.308353],[-100.218686,23.307299],[-100.218949,23.305636],[-100.219494,23.302189],[-100.21981,23.300184],[-100.220166,23.297932],[-100.220704,23.298047]
	], '#000000', 'Equipo 2');
	addRaidPolygon(mapLayer, [
		[-99.442053,22.663616],[-99.448328,22.673437],[-99.477127,22.740637],[-99.47922,22.742053],[-99.48109,22.742363],[-99.483052,22.742273],[-99.490484,22.741427],[-99.492449,22.741948],[-99.496789,22.748498],[-99.544327,22.74414],[-99.527893,22.69558],[-99.525623,22.694525],[-99.525376,22.693617],[-99.525819,22.693546],[-99.516757,22.664437],[-99.515287,22.664667],[-99.505556,22.644133],[-99.501301,22.635122],[-99.494536,22.620869],[-99.495831,22.619924],[-99.513652,22.615061],[-99.526504,22.613658],[-99.922309,21.454223],[-99.921044,21.453667],[-99.911472,21.450183],[-99.906005,21.448137],[-99.905174,21.448159],[-99.903409,21.449025],[-99.889825,21.459343],[-99.885994,21.461776],[-99.880762,21.464661],[-99.875093,21.467837],[-99.871475,21.470652],[-99.868308,21.472749],[-99.866978,21.473392],[-99.867,21.473462],[-99.863775,21.47431],[-99.858692,21.47503],[-99.851649,21.475669],[-99.846022,21.47682],[-99.839735,21.47741],[-99.835793,21.477881],[-99.834929,21.478116],[-99.835434,21.476575],[-99.83724,21.471588],[-99.838981,21.464078],[-99.839059,21.463278],[-99.839284,21.462579],[-99.839181,21.462386],[-99.838736,21.463037],[-99.838239,21.463569],[-99.83719,21.464315],[-99.835159,21.464288],[-99.834035,21.464482],[-99.83272,21.465118],[-99.830842,21.465863],[-99.830021,21.466082],[-99.828655,21.466359],[-99.827318,21.466474],[-99.825292,21.466522],[-99.824421,21.46634],[-99.823531,21.465613],[-99.822749,21.464562],[-99.822299,21.463528],[-99.821754,21.463292],[-99.821092,21.463227],[-99.82003,21.46283],[-99.818094,21.461958],[-99.817074,21.461691],[-99.816349,21.461962],[-99.816046,21.462373],[-99.815761,21.463254],[-99.814849,21.464081],[-99.812614,21.465491],[-99.809356,21.467479],[-99.807929,21.468418],[-99.807184,21.469229],[-99.806853,21.469846],[-99.806778,21.47072],[-99.806531,21.471244],[-99.805708,21.471846],[-99.804936,21.47222],[-99.804462,21.472138],[-99.803742,21.471864],[-99.802323,21.471929],[-99.801594,21.472063],[-99.800639,21.472432],[-99.799676,21.47268],[-99.79747,21.472897],[-99.795302,21.473227],[-99.79395,21.473683],[-99.792822,21.474189],[-99.791565,21.474961],[-99.790037,21.476103],[-99.788362,21.4771],[-99.787988,21.477506],[-99.787635,21.478207],[-99.787528,21.479272],[-99.787961,21.480549],[-99.788456,21.481163],[-99.789911,21.482568],[-99.790774,21.483214],[-99.791135,21.483658],[-99.791471,21.484433],[-99.791621,21.485526],[-99.792204,21.486743],[-99.792345,21.487376],[-99.792128,21.488867],[-99.791569,21.490104],[-99.79104,21.490672],[-99.789185,21.491557],[-99.78814,21.491758],[-99.786864,21.49242],[-99.785232,21.493342],[-99.784045,21.493804],[-99.783032,21.49398],[-99.781607,21.494438],[-99.780562,21.494549],[-99.779596,21.494504],[-99.778785,21.494344],[-99.778154,21.49437],[-99.777515,21.494713],[-99.77735,21.495023],[-99.777352,21.495955],[-99.776781,21.498287],[-99.775829,21.500113],[-99.773974,21.502492],[-99.773277,21.502796],[-99.772429,21.503944],[-99.772079,21.5046],[-99.771439,21.506213],[-99.770985,21.506842],[-99.770502,21.507291],[-99.769891,21.507704],[-99.768581,21.508019],[-99.766913,21.508589],[-99.765804,21.509276],[-99.764089,21.510881],[-99.762919,21.512444],[-99.762037,21.513291],[-99.761046,21.513706],[-99.759605,21.513685],[-99.75862,21.513428],[-99.757863,21.513563],[-99.75736,21.513758],[-99.756683,21.514167],[-99.756346,21.514732],[-99.756003,21.516961],[-99.755582,21.51936],[-99.755004,21.520788],[-99.753674,21.521943],[-99.752534,21.52248],[-99.750929,21.522876],[-99.749292,21.523173],[-99.750064,21.526613],[-99.749733,21.526544],[-99.748621,21.52696],[-99.748585,21.529199],[-99.748715,21.529646],[-99.749232,21.530346],[-99.75032,21.529902],[-99.750964,21.529525],[-99.75263,21.531629],[-99.752595,21.532658],[-99.751807,21.53398],[-99.751323,21.533963],[-99.751449,21.533309],[-99.75121,21.532698],[-99.750584,21.532732],[-99.750324,21.532838],[-99.750164,21.533615],[-99.749691,21.533051],[-99.748943,21.531651],[-99.748249,21.531073],[-99.747577,21.531129],[-99.746735,21.531492],[-99.74662,21.532157],[-99.746663,21.532616],[-99.746441,21.53277],[-99.746199,21.533566],[-99.74683,21.53471],[-99.746445,21.53636],[-99.747268,21.536796],[-99.748467,21.536957],[-99.749205,21.537266],[-99.749712,21.536876],[-99.74979,21.535895],[-99.750475,21.535376],[-99.75094,21.535627],[-99.751005,21.53631],[-99.751315,21.536745],[-99.751847,21.537212],[-99.751785,21.537769],[-99.751983,21.538516],[-99.750876,21.538432],[-99.75043,21.53882],[-99.75046,21.539075],[-99.751304,21.539537],[-99.752136,21.539341],[-99.752534,21.542019],[-99.752755,21.543908],[-99.752708,21.544915],[-99.752472,21.545922],[-99.752438,21.546409],[-99.751472,21.554441],[-99.751486,21.554581],[-99.751099,21.557536],[-99.750434,21.55809],[-99.75017,21.558599],[-99.749872,21.558807],[-99.749971,21.559163],[-99.750807,21.559857],[-99.750798,21.560317],[-99.750475,21.56045],[-99.750311,21.561234],[-99.75015,21.561331],[-99.749378,21.562368],[-99.749158,21.562382],[-99.748841,21.563167],[-99.748901,21.563488],[-99.748859,21.564981],[-99.746743,21.578363],[-99.742459,21.577577],[-99.733292,21.576032],[-99.721369,21.573944],[-99.71728,21.573252],[-99.713609,21.572532],[-99.707273,21.571133],[-99.705534,21.57073],[-99.703058,21.571878],[-99.701412,21.57243],[-99.700275,21.572739],[-99.69975,21.572801],[-99.694728,21.572604],[-99.693087,21.572388],[-99.691452,21.572294],[-99.685778,21.572014],[-99.679875,21.570834],[-99.675536,21.570226],[-99.668348,21.56828],[-99.667623,21.568138],[-99.66723,21.568186],[-99.666446,21.567751],[-99.665594,21.568102],[-99.663841,21.568693],[-99.661809,21.567623],[-99.66146,21.568009],[-99.6614,21.568243],[-99.661061,21.568582],[-99.659542,21.567945],[-99.659673,21.567678],[-99.660163,21.567442],[-99.660229,21.567192],[-99.658137,21.564296],[-99.655156,21.560314],[-99.653051,21.557091],[-99.649721,21.551467],[-99.647127,21.546965],[-99.644085,21.542651],[-99.644928,21.541521],[-99.643379,21.534535],[-99.637883,21.526866],[-99.634761,21.525013],[-99.630393,21.519777],[-99.62561,21.511229],[-99.625801,21.507302],[-99.615927,21.49908],[-99.60989,21.493864],[-99.591983,21.486261],[-99.590284,21.477697],[-99.573185,21.46628],[-99.570608,21.462533],[-99.569385,21.460802],[-99.568001,21.458931],[-99.564973,21.454638],[-99.564353,21.453663],[-99.560287,21.453973],[-99.555698,21.449781],[-99.549345,21.447068],[-99.556596,21.436609],[-99.555071,21.433953],[-99.555221,21.432945],[-99.554293,21.431582],[-99.554214,21.430863],[-99.5529,21.429069],[-99.551976,21.428496],[-99.551931,21.428393],[-99.551026,21.428159],[-99.55046,21.42842],[-99.549617,21.42844],[-99.548068,21.428977],[-99.546622,21.429705],[-99.545615,21.429867],[-99.545158,21.429872],[-99.54444,21.430193],[-99.543949,21.430059],[-99.54309,21.429516],[-99.542529,21.429328],[-99.541862,21.429637],[-99.54138,21.429456],[-99.540774,21.429564],[-99.540344,21.429788],[-99.539855,21.430534],[-99.539498,21.43058],[-99.539158,21.430457],[-99.538541,21.430677],[-99.538574,21.431082],[-99.538332,21.431367],[-99.53783,21.431141],[-99.537256,21.431465],[-99.536832,21.431241],[-99.535366,21.430139],[-99.534596,21.42963],[-99.533405,21.429214],[-99.533059,21.429314],[-99.532804,21.429059],[-99.532262,21.42886],[-99.531648,21.42879],[-99.531501,21.428649],[-99.531055,21.428661],[-99.529902,21.428433],[-99.52903,21.428447],[-99.52867,21.428668],[-99.527421,21.428547],[-99.527019,21.428193],[-99.526652,21.428222],[-99.526347,21.428074],[-99.526106,21.428397],[-99.525195,21.428606],[-99.524886,21.428758],[-99.5243,21.428834],[-99.523245,21.428339],[-99.522259,21.42829],[-99.521703,21.427932],[-99.520933,21.427309],[-99.519606,21.426643],[-99.518267,21.426112],[-99.515424,21.425077],[-99.514233,21.424609],[-99.51376,21.424491],[-99.513209,21.42409],[-99.512338,21.423291],[-99.510076,21.421517],[-99.508878,21.420514],[-99.508221,21.420295],[-99.507605,21.419842],[-99.506595,21.41933],[-99.505611,21.41894],[-99.504624,21.418671],[-99.503814,21.418563],[-99.50308,21.418604],[-99.502642,21.418523],[-99.501312,21.418543],[-99.500112,21.418777],[-99.499205,21.419057],[-99.497521,21.419226],[-99.496505,21.419686],[-99.495033,21.420044],[-99.493862,21.420062],[-99.493091,21.420217],[-99.492229,21.420466],[-99.491111,21.420711],[-99.490018,21.421005],[-99.488943,21.421505],[-99.488363,21.421965],[-99.48795,21.422476],[-99.486976,21.424943],[-99.486502,21.426417],[-99.486203,21.427559],[-99.485337,21.430084],[-99.48488,21.431579],[-99.484354,21.432507],[-99.483921,21.432792],[-99.482405,21.433108],[-99.480904,21.433602],[-99.479836,21.433811],[-99.478429,21.433968],[-99.477474,21.433906],[-99.47526,21.434007],[-99.474125,21.434894],[-99.473353,21.435377],[-99.47128,21.436235],[-99.470772,21.436617],[-99.470541,21.437056],[-99.470495,21.437549],[-99.471131,21.438459],[-99.471908,21.438738],[-99.472895,21.439761],[-99.473277,21.440344],[-99.473573,21.441105],[-99.47333,21.441898],[-99.472494,21.442939],[-99.472283,21.443859],[-99.471994,21.444346],[-99.471061,21.445651],[-99.470533,21.446072],[-99.469822,21.446515],[-99.469129,21.446756],[-99.467573,21.4464],[-99.464514,21.446419],[-99.463523,21.446363],[-99.462353,21.446174],[-99.460588,21.445709],[-99.459349,21.445432],[-99.455804,21.44508],[-99.454115,21.444884],[-99.452312,21.44456],[-99.451365,21.444266],[-99.450155,21.443796],[-99.44799,21.443476],[-99.447351,21.443477],[-99.446983,21.443604],[-99.446335,21.444084],[-99.445289,21.444428],[-99.444753,21.444774],[-99.442942,21.445816],[-99.44197,21.446614],[-99.441186,21.447164],[-99.440191,21.447721],[-99.438697,21.448708],[-99.438235,21.449112],[-99.43761,21.449487],[-99.436974,21.449715],[-99.436276,21.449856],[-99.435708,21.449833],[-99.435057,21.449578],[-99.434488,21.449155],[-99.43276,21.447555],[-99.431627,21.446368],[-99.42974,21.444268],[-99.428467,21.443225],[-99.427388,21.442117],[-99.426937,21.441306],[-99.426223,21.440194],[-99.425326,21.439248],[-99.423471,21.437489],[-99.422483,21.436613],[-99.421513,21.435621],[-99.420047,21.433698],[-99.418785,21.432532],[-99.418227,21.431807],[-99.416797,21.430269],[-99.41552,21.429133],[-99.414859,21.428907],[-99.414126,21.428802],[-99.411274,21.429221],[-99.410447,21.429371],[-99.409438,21.429372],[-99.408281,21.429216],[-99.407402,21.428882],[-99.406922,21.428473],[-99.406374,21.428245],[-99.405435,21.428418],[-99.404646,21.428926],[-99.404385,21.429387],[-99.404209,21.430148],[-99.403567,21.4322],[-99.402562,21.434839],[-99.402085,21.435933],[-99.401746,21.436913],[-99.401522,21.437776],[-99.401514,21.43826],[-99.401652,21.438769],[-99.401679,21.439468],[-99.402021,21.439801],[-99.402531,21.441186],[-99.402459,21.441595],[-99.402182,21.441882],[-99.401531,21.442208],[-99.40083,21.442394],[-99.399937,21.442531],[-99.399123,21.442555],[-99.398487,21.442751],[-99.397289,21.443753],[-99.397147,21.444037],[-99.396903,21.445093],[-99.396781,21.446036],[-99.396832,21.446754],[-99.396997,21.447188],[-99.397691,21.447881],[-99.398007,21.448357],[-99.398108,21.448866],[-99.397262,21.45018],[-99.396092,21.452173],[-99.395891,21.452639],[-99.395595,21.454211],[-99.395644,21.454733],[-99.396073,21.456022],[-99.396628,21.456602],[-99.396875,21.457558],[-99.397097,21.458085],[-99.398161,21.459819],[-99.398553,21.460935],[-99.398681,21.462076],[-99.39856,21.463426],[-99.398225,21.463914],[-99.39788,21.464162],[-99.397352,21.464366],[-99.396083,21.464741],[-99.395396,21.464992],[-99.394671,21.465049],[-99.394036,21.464971],[-99.393547,21.464756],[-99.392584,21.464176],[-99.391866,21.46393],[-99.390894,21.46372],[-99.390255,21.46378],[-99.389771,21.464224],[-99.388876,21.464897],[-99.388771,21.46513],[-99.388675,21.465948],[-99.388988,21.466939],[-99.388851,21.468139],[-99.388383,21.469562],[-99.386606,21.472926],[-99.386182,21.474219],[-99.384975,21.475912],[-99.383337,21.478736],[-99.383075,21.479644],[-99.382382,21.480887],[-99.382303,21.481513],[-99.38298,21.48268],[-99.383494,21.483291],[-99.383682,21.483693],[-99.383751,21.484264],[-99.383809,21.486405],[-99.38421,21.488897],[-99.384708,21.490475],[-99.385242,21.49138],[-99.386116,21.492127],[-99.386482,21.492537],[-99.387273,21.494057],[-99.38734,21.495055],[-99.387212,21.496118],[-99.386946,21.49737],[-99.386993,21.498336],[-99.386847,21.499999],[-99.386708,21.500373],[-99.386349,21.500561],[-99.385841,21.500552],[-99.385383,21.500332],[-99.384802,21.499769],[-99.384453,21.499272],[-99.384031,21.498844],[-99.383594,21.49873],[-99.383114,21.498778],[-99.381959,21.499485],[-99.38127,21.499807],[-99.380324,21.500031],[-99.378857,21.500459],[-99.377427,21.501158],[-99.376264,21.50186],[-99.374915,21.502807],[-99.374377,21.503299],[-99.373059,21.505136],[-99.372302,21.506243],[-99.371976,21.507104],[-99.371963,21.507726],[-99.372158,21.50853],[-99.372189,21.509553],[-99.372361,21.511273],[-99.372603,21.512511],[-99.372885,21.513438],[-99.372905,21.51394],[-99.372805,21.514485],[-99.372177,21.515557],[-99.371886,21.516755],[-99.370452,21.519076],[-99.370074,21.520237],[-99.369973,21.521204],[-99.370106,21.52214],[-99.370289,21.522585],[-99.370904,21.523611],[-99.371673,21.524374],[-99.372162,21.524648],[-99.376566,21.526817],[-99.377106,21.527023],[-99.377905,21.527822],[-99.378462,21.528944],[-99.378661,21.529635],[-99.378581,21.530748],[-99.376948,21.53264],[-99.376503,21.533883],[-99.376363,21.534466],[-99.376336,21.536397],[-99.376539,21.53823],[-99.376337,21.539425],[-99.376506,21.540611],[-99.376408,21.541901],[-99.37647,21.542959],[-99.376674,21.544692],[-99.376636,21.545204],[-99.376391,21.546938],[-99.375907,21.547931],[-99.375525,21.548189],[-99.374202,21.548666],[-99.372753,21.549347],[-99.371474,21.549655],[-99.370602,21.549954],[-99.36855,21.551009],[-99.367496,21.551705],[-99.365189,21.552754],[-99.364384,21.553091],[-99.363692,21.553289],[-99.362882,21.553249],[-99.361802,21.553394],[-99.360205,21.553436],[-99.358355,21.552944],[-99.356906,21.552458],[-99.356416,21.552361],[-99.354796,21.552334],[-99.353525,21.551914],[-99.35248,21.551965],[-99.350677,21.552345],[-99.349861,21.552357],[-99.349042,21.552094],[-99.348713,21.55178],[-99.348198,21.551526],[-99.34655,21.550834],[-99.345836,21.550578],[-99.344137,21.549554],[-99.342824,21.548661],[-99.342532,21.548356],[-99.34142,21.547633],[-99.340857,21.547208],[-99.340085,21.546326],[-99.339609,21.545966],[-99.339236,21.545544],[-99.338175,21.544691],[-99.337663,21.544013],[-99.336355,21.541705],[-99.33582,21.5409],[-99.335216,21.540102],[-99.334065,21.538801],[-99.333134,21.537875],[-99.332329,21.537558],[-99.33151,21.537157],[-99.330499,21.536787],[-99.329521,21.536367],[-99.327287,21.535171],[-99.326806,21.535026],[-99.325513,21.534936],[-99.323437,21.534364],[-99.32257,21.533999],[-99.321086,21.533643],[-99.320064,21.533499],[-99.318984,21.533558],[-99.318269,21.533706],[-99.317664,21.533734],[-99.316861,21.534063],[-99.315847,21.534611],[-99.31548,21.534561],[-99.31465,21.534809],[-99.313921,21.534478],[-99.31339,21.534435],[-99.313154,21.534303],[-99.312384,21.534186],[-99.311708,21.533938],[-99.309915,21.532994],[-99.309327,21.532582],[-99.307885,21.532049],[-99.307421,21.532035],[-99.306924,21.532174],[-99.306578,21.532402],[-99.305489,21.532914],[-99.304981,21.533348],[-99.304607,21.53396],[-99.304127,21.534254],[-99.303041,21.535506],[-99.302271,21.536187],[-99.301647,21.537199],[-99.300936,21.538139],[-99.300434,21.538579],[-99.299345,21.539665],[-99.298432,21.540388],[-99.298292,21.540677],[-99.297912,21.542288],[-99.297678,21.542649],[-99.297513,21.543154],[-99.297412,21.543912],[-99.296877,21.544619],[-99.296297,21.54496],[-99.295715,21.545794],[-99.2951,21.546213],[-99.293149,21.547091],[-99.291728,21.547858],[-99.291333,21.548134],[-99.290591,21.549077],[-99.290255,21.549126],[-99.28995,21.549407],[-99.289297,21.550362],[-99.289465,21.551699],[-99.289873,21.55246],[-99.290519,21.552918],[-99.290904,21.553595],[-99.291383,21.555599],[-99.291481,21.556188],[-99.291263,21.557008],[-99.290961,21.557598],[-99.29047,21.558238],[-99.289695,21.558474],[-99.288975,21.558346],[-99.288067,21.558387],[-99.287769,21.558266],[-99.287129,21.558315],[-99.286937,21.558487],[-99.285808,21.55833],[-99.285365,21.558372],[-99.284805,21.558836],[-99.284295,21.55891],[-99.283185,21.558915],[-99.282547,21.559162],[-99.282,21.559512],[-99.28174,21.559465],[-99.281534,21.559729],[-99.280994,21.55992],[-99.280289,21.559936],[-99.279782,21.560121],[-99.279321,21.560145],[-99.278751,21.560717],[-99.278376,21.560888],[-99.277578,21.561841],[-99.276663,21.562285],[-99.275349,21.563466],[-99.275042,21.564146],[-99.274402,21.565323],[-99.274295,21.565998],[-99.273988,21.566705],[-99.273941,21.567057],[-99.274026,21.567797],[-99.274369,21.568498],[-99.275088,21.569683],[-99.275403,21.570836],[-99.276675,21.572632],[-99.277379,21.574388],[-99.277569,21.575254],[-99.278112,21.577355],[-99.27811,21.578102],[-99.278192,21.578788],[-99.278686,21.579883],[-99.27967,21.581041],[-99.280625,21.582228],[-99.28145,21.583823],[-99.281658,21.584957],[-99.281547,21.586015],[-99.281601,21.586742],[-99.282029,21.58924],[-99.282279,21.59022],[-99.282384,21.591],[-99.282425,21.592361],[-99.282372,21.593575],[-99.282191,21.594502],[-99.281935,21.596449],[-99.281705,21.597357],[-99.281413,21.598221],[-99.281637,21.599041],[-99.280363,21.603273],[-99.280727,21.604781],[-99.281289,21.60663],[-99.280717,21.607903],[-99.2794,21.608223],[-99.276327,21.60677],[-99.273933,21.606209],[-99.267903,21.609007],[-99.266128,21.609803],[-99.264052,21.610908],[-99.259814,21.611739],[-99.25533,21.609914],[-99.251863,21.610953],[-99.246252,21.613664],[-99.243496,21.615057],[-99.242477,21.616642],[-99.242247,21.620664],[-99.24064,21.62379],[-99.237402,21.62527],[-99.236114,21.626505],[-99.233898,21.628786],[-99.233382,21.629046],[-99.233031,21.629384],[-99.232738,21.629917],[-99.232414,21.630988],[-99.231881,21.631346],[-99.230904,21.631462],[-99.229818,21.631513],[-99.228436,21.631632],[-99.227773,21.631492],[-99.22671,21.631758],[-99.225983,21.632198],[-99.225512,21.632675],[-99.225125,21.633286],[-99.224999,21.633937],[-99.224656,21.634866],[-99.224699,21.635451],[-99.224959,21.635871],[-99.225424,21.63634],[-99.225736,21.637217],[-99.225922,21.638262],[-99.225823,21.639148],[-99.22544,21.640265],[-99.22478,21.641267],[-99.223966,21.641857],[-99.22296,21.642517],[-99.222492,21.643317],[-99.222223,21.644992],[-99.222622,21.645571],[-99.222784,21.646359],[-99.222654,21.646888],[-99.222084,21.647468],[-99.220675,21.648077],[-99.219923,21.648951],[-99.219419,21.649788],[-99.21914,21.650926],[-99.218905,21.650974],[-99.218837,21.651541],[-99.218186,21.651665],[-99.21739,21.652188],[-99.217042,21.652641],[-99.216731,21.653366],[-99.21668,21.6547],[-99.216807,21.655491],[-99.216865,21.656584],[-99.217144,21.657936],[-99.217413,21.658713],[-99.218112,21.661637],[-99.218356,21.662452],[-99.21842,21.663],[-99.218229,21.663972],[-99.218284,21.665523],[-99.218174,21.666162],[-99.217698,21.666646],[-99.217152,21.66694],[-99.216304,21.667032],[-99.215539,21.666969],[-99.214229,21.667267],[-99.212683,21.667564],[-99.21166,21.667612],[-99.210796,21.667543],[-99.209253,21.667311],[-99.207562,21.667006],[-99.206078,21.666677],[-99.204496,21.666068],[-99.203232,21.665659],[-99.201935,21.665337],[-99.200901,21.665128],[-99.200596,21.665188],[-99.199415,21.664978],[-99.198295,21.665013],[-99.197674,21.665153],[-99.196337,21.665565],[-99.193912,21.666554],[-99.192733,21.667253],[-99.192045,21.667855],[-99.190821,21.668296],[-99.188175,21.670005],[-99.181668,21.661397],[-99.180357,21.655167],[-99.178442,21.651952],[-99.175851,21.64522],[-99.17404,21.641026],[-99.173585,21.638989],[-99.173235,21.638075],[-99.171233,21.634882],[-99.169454,21.631446],[-99.16889,21.630982],[-99.171896,21.627031],[-99.169429,21.625497],[-99.16735,21.623883],[-99.162168,21.620245],[-99.151464,21.612846],[-99.151402,21.612797],[-99.138724,21.603751],[-99.138424,21.602815],[-99.137901,21.602081],[-99.136511,21.599476],[-99.135763,21.598457],[-99.135092,21.597343],[-99.134336,21.59722],[-99.133784,21.596956],[-99.132172,21.596685],[-99.131517,21.596633],[-99.130609,21.59665],[-99.130469,21.595399],[-99.13048,21.594078],[-99.130562,21.593348],[-99.130493,21.592545],[-99.130197,21.591812],[-99.129948,21.591409],[-99.129098,21.590554],[-99.128696,21.590362],[-99.128297,21.589817],[-99.128226,21.589321],[-99.12839,21.587837],[-99.128468,21.586474],[-99.128077,21.583381],[-99.128287,21.581665],[-99.128968,21.580358],[-99.129813,21.57969],[-99.130507,21.578972],[-99.131695,21.573717],[-99.132324,21.571255],[-99.135323,21.561085],[-99.136497,21.557877],[-99.137183,21.555377],[-99.137368,21.554419],[-99.138162,21.552133],[-99.138534,21.55083],[-99.139953,21.546582],[-99.140365,21.544917],[-99.140773,21.543786],[-99.139935,21.543289],[-99.139608,21.541988],[-99.139959,21.540816],[-99.140456,21.539883],[-99.141168,21.538294],[-99.141916,21.537388],[-99.142262,21.536428],[-99.142282,21.53544],[-99.141465,21.532245],[-99.139256,21.523115],[-99.138205,21.519069],[-99.137435,21.516017],[-99.13692,21.514076],[-99.135931,21.513211],[-99.13543,21.511836],[-99.134288,21.509767],[-99.133198,21.507651],[-99.132328,21.505846],[-99.131505,21.50423],[-99.130339,21.502113],[-99.129769,21.501703],[-99.129736,21.500831],[-99.129496,21.500393],[-99.129065,21.471262],[-99.128325,21.467929],[-99.12603,21.460543],[-99.122397,21.453416],[-99.116021,21.441202],[-99.11123,21.43163],[-99.108589,21.426521],[-99.106231,21.422406],[-99.105162,21.42048],[-99.105915,21.41156],[-99.102855,21.409914],[-99.09813,21.408413],[-99.092839,21.3817],[-99.097883,21.377642],[-99.092621,21.36336],[-99.129456,21.362046],[-99.13783,21.329792],[-99.102949,21.321194],[-99.102986,21.31892],[-99.10284,21.317882],[-99.107545,21.318042],[-99.113585,21.318206],[-99.117535,21.318434],[-99.119297,21.318582],[-99.121361,21.318448],[-99.124607,21.318484],[-99.127559,21.318337],[-99.126577,21.317166],[-99.124909,21.315041],[-99.124077,21.313897],[-99.123544,21.312922],[-99.122879,21.312228],[-99.122469,21.311326],[-99.122153,21.310802],[-99.121662,21.310181],[-99.121044,21.309676],[-99.120172,21.309284],[-99.118783,21.308366],[-99.117911,21.307974],[-99.11632,21.307099],[-99.115479,21.306425],[-99.11456,21.305891],[-99.113512,21.305472],[-99.112367,21.304958],[-99.111045,21.304417],[-99.109925,21.30388],[-99.107458,21.302848],[-99.10579,21.302042],[-99.104842,21.30044],[-99.104345,21.289598],[-99.093177,21.291742],[-99.090979,21.294739],[-99.088839,21.29474],[-99.082991,21.296347],[-99.078933,21.295216],[-99.079405,21.294497],[-99.080023,21.293318],[-99.07989,21.293011],[-99.07874,21.292194],[-99.078214,21.292803],[-99.077962,21.292664],[-99.07808,21.291687],[-99.077823,21.291755],[-99.076933,21.291375],[-99.077182,21.290885],[-99.07643,21.29058],[-99.076218,21.289746],[-99.076018,21.289368],[-99.075518,21.288847],[-99.074467,21.288274],[-99.062753,21.28114],[-99.062715,21.280898],[-99.062388,21.280367],[-99.061811,21.279759],[-99.061427,21.279474],[-99.060951,21.2795],[-99.060466,21.279872],[-99.060016,21.280786],[-99.059497,21.282407],[-99.059037,21.28273],[-99.058428,21.283302],[-99.0582,21.2846],[-99.057919,21.284698],[-99.057429,21.28465],[-99.0573,21.283933],[-99.057412,21.283689],[-99.057056,21.283083],[-99.056723,21.282911],[-99.055529,21.282542],[-99.055138,21.282538],[-99.054656,21.282766],[-99.054522,21.282993],[-99.053094,21.283277],[-99.052341,21.283188],[-99.050895,21.282385],[-99.050328,21.282716],[-99.050163,21.282679],[-99.049849,21.283193],[-99.049637,21.283131],[-99.049361,21.282126],[-99.049176,21.281656],[-99.04879,21.281432],[-99.048196,21.281292],[-99.047005,21.282122],[-99.046525,21.282129],[-99.046346,21.281593],[-99.04647,21.281221],[-99.046841,21.28071],[-99.046958,21.279842],[-99.046677,21.279675],[-99.045829,21.279979],[-99.044643,21.279935],[-99.043889,21.279633],[-99.043782,21.279439],[-99.043453,21.279433],[-99.043108,21.279601],[-99.042971,21.280579],[-99.042946,21.281277],[-99.042709,21.281556],[-99.041143,21.281964],[-99.040773,21.282202],[-99.040367,21.282306],[-99.040176,21.282651],[-99.039799,21.283863],[-99.03933,21.284213],[-99.039018,21.284201],[-99.037917,21.283693],[-99.03766,21.283251],[-99.03769,21.282873],[-99.037422,21.282564],[-99.037133,21.282571],[-99.036569,21.282943],[-99.035695,21.283827],[-99.034809,21.284218],[-99.033758,21.284335],[-99.033399,21.284636],[-99.032905,21.285305],[-99.032146,21.285877],[-99.031664,21.285963],[-99.030924,21.285395],[-99.030734,21.285134],[-99.030581,21.284618],[-99.030611,21.28424],[-99.030245,21.28392],[-99.029875,21.284196],[-99.029295,21.284839],[-99.02918,21.285211],[-99.028797,21.285637],[-99.027796,21.285322],[-99.02707,21.285515],[-99.02663,21.286109],[-99.026351,21.286825],[-99.026022,21.287226],[-99.025543,21.287188],[-99.02457,21.286965],[-99.024074,21.28691],[-99.023342,21.287159],[-99.022927,21.287621],[-99.022772,21.288005],[-99.022602,21.289253],[-99.02206,21.290018],[-99.020938,21.290762],[-99.02054,21.291237],[-99.019975,21.291606],[-99.019245,21.291854],[-99.017865,21.292099],[-99.017167,21.292123],[-99.016685,21.292413],[-99.015785,21.292435],[-99.015413,21.292606],[-99.014568,21.293999],[-99.01418,21.294445],[-99.013389,21.295162],[-99.012785,21.295371],[-99.011203,21.295357],[-99.010739,21.295219],[-99.008828,21.295331],[-99.00834,21.295653],[-99.00784,21.29615],[-99.006835,21.296185],[-99.006357,21.296027],[-99.005203,21.296553],[-99.004482,21.29681],[-99.003256,21.297494],[-99.002279,21.297958],[-99.001688,21.297996],[-99.000752,21.297899],[-98.999739,21.297687],[-98.998133,21.29744],[-98.99696,21.297633],[-98.995741,21.297737],[-98.995215,21.297917],[-98.994467,21.29829],[-98.994367,21.298536],[-98.993823,21.29888],[-98.993352,21.299347],[-98.992962,21.299479],[-98.992647,21.29926],[-98.992263,21.299314],[-98.991772,21.29923],[-98.991465,21.299039],[-98.991197,21.298593],[-98.990432,21.297912],[-98.989425,21.297497],[-98.988208,21.297414],[-98.986794,21.297878],[-98.985592,21.297985],[-98.984792,21.297982],[-98.98383,21.298129],[-98.983099,21.298307],[-98.981884,21.298427],[-98.981301,21.298246],[-98.980766,21.297375],[-98.980583,21.297247],[-98.979688,21.297167],[-98.978814,21.296822],[-98.978527,21.296574],[-98.977855,21.296418],[-98.977451,21.29653],[-98.976462,21.29709],[-98.975997,21.296927],[-98.975043,21.297004],[-98.974554,21.297459],[-98.974554,21.297888],[-98.974747,21.298831],[-98.975715,21.300346],[-98.975607,21.300752],[-98.975029,21.301348],[-98.974769,21.301487],[-98.974613,21.301904],[-98.974726,21.302026],[-98.974838,21.303085],[-98.974181,21.303654],[-98.973706,21.303826],[-98.972971,21.303777],[-98.97103,21.304016],[-98.970035,21.304387],[-98.969675,21.304665],[-98.969611,21.304995],[-98.969747,21.305224],[-98.969855,21.305874],[-98.969106,21.306145],[-98.968585,21.30583],[-98.968123,21.305439],[-98.966242,21.306339],[-98.965964,21.30659],[-98.965301,21.306941],[-98.964852,21.306916],[-98.964623,21.306651],[-98.964698,21.306271],[-98.964636,21.305682],[-98.964737,21.30527],[-98.964633,21.305002],[-98.963922,21.304502],[-98.96346,21.304299],[-98.963009,21.303597],[-98.962811,21.30271],[-98.962498,21.302459],[-98.961726,21.302382],[-98.961296,21.30255],[-98.960629,21.303141],[-98.959667,21.303441],[-98.959414,21.303306],[-98.958775,21.302707],[-98.958091,21.302416],[-98.957318,21.301876],[-98.95688,21.301766],[-98.956514,21.301804],[-98.956108,21.30204],[-98.955454,21.302571],[-98.955111,21.303137],[-98.954926,21.303935],[-98.954904,21.305193],[-98.954766,21.306422],[-98.954345,21.306875],[-98.953549,21.306719],[-98.952669,21.30675],[-98.952563,21.307221],[-98.952795,21.307593],[-98.953169,21.30782],[-98.953422,21.308428],[-98.953168,21.308773],[-98.952781,21.308849],[-98.951405,21.308643],[-98.950864,21.308687],[-98.950476,21.308933],[-98.949853,21.309712],[-98.948622,21.310229],[-98.947262,21.310707],[-98.946442,21.310839],[-98.945291,21.311174],[-98.944961,21.311337],[-98.942542,21.302656],[-98.940283,21.294602],[-98.939692,21.294667],[-98.938308,21.295035],[-98.937249,21.295546],[-98.936429,21.295788],[-98.935677,21.296296],[-98.93533,21.296735],[-98.934574,21.29713],[-98.933488,21.2979],[-98.932933,21.298203],[-98.93258,21.298295],[-98.929277,21.292729],[-98.929001,21.288185],[-98.928569,21.285409],[-98.928375,21.283785],[-98.928213,21.282774],[-98.927926,21.281787],[-98.927588,21.280824],[-98.92715,21.279815],[-98.926615,21.279184],[-98.926484,21.278667],[-98.926539,21.274473],[-98.927321,21.273625],[-98.927805,21.272896],[-98.927937,21.272212],[-98.927995,21.271292],[-98.928255,21.270302],[-98.928235,21.269759],[-98.927941,21.268742],[-98.927619,21.268126],[-98.927546,21.267771],[-98.927046,21.267272],[-98.92637,21.266889],[-98.926048,21.266155],[-98.925149,21.265204],[-98.924446,21.264986],[-98.923972,21.264487],[-98.923823,21.264179],[-98.923247,21.263749],[-98.922367,21.263601],[-98.921939,21.263598],[-98.921338,21.263216],[-98.920992,21.262434],[-98.921249,21.261752],[-98.921458,21.260903],[-98.921661,21.260669],[-98.922021,21.259821],[-98.922177,21.259209],[-98.922157,21.258689],[-98.921932,21.258381],[-98.921203,21.258257],[-98.920952,21.258114],[-98.920203,21.257376],[-98.919902,21.257185],[-98.918873,21.256847],[-98.918169,21.256676],[-98.917969,21.256486],[-98.917831,21.256045],[-98.917695,21.255165],[-98.917644,21.253982],[-98.917559,21.253295],[-98.917645,21.252416],[-98.917765,21.251968],[-98.918277,21.251169],[-98.919262,21.250391],[-98.919472,21.249987],[-98.919775,21.24979],[-98.920194,21.249004],[-98.920987,21.248393],[-98.922642,21.24787],[-98.922992,21.247483],[-98.92301,21.247099],[-98.922873,21.246731],[-98.922549,21.246429],[-98.921821,21.246134],[-98.9216,21.245917],[-98.921151,21.244849],[-98.920709,21.244193],[-98.91952,21.243206],[-98.9191,21.24276],[-98.918859,21.242074],[-98.918696,21.2412],[-98.91865,21.24048],[-98.91837,21.239999],[-98.91766,21.239717],[-98.916847,21.240227],[-98.915821,21.240546],[-98.915311,21.240599],[-98.914814,21.240447],[-98.91449,21.240198],[-98.913901,21.239922],[-98.913371,21.239922],[-98.912987,21.240032],[-98.912899,21.240446],[-98.912987,21.240722],[-98.912604,21.24133],[-98.912191,21.24155],[-98.911632,21.240804],[-98.911308,21.240611],[-98.910895,21.240942],[-98.91057,21.241688],[-98.910276,21.241936],[-98.909951,21.241936],[-98.909716,21.24166],[-98.909569,21.240914],[-98.909245,21.240665],[-98.908037,21.240664],[-98.907418,21.240526],[-98.907271,21.24036],[-98.906136,21.239835],[-98.905695,21.239255],[-98.905371,21.239117],[-98.904899,21.239144],[-98.904457,21.239337],[-98.904133,21.239337],[-98.903426,21.238923],[-98.902808,21.238397],[-98.902543,21.238453],[-98.902248,21.238756],[-98.901746,21.239557],[-98.90154,21.240026],[-98.90098,21.240357],[-98.900656,21.240329],[-98.900273,21.239556],[-98.900214,21.239142],[-98.899891,21.238561],[-98.899803,21.238037],[-98.899921,21.237043],[-98.899833,21.236822],[-98.899421,21.236656],[-98.899214,21.236435],[-98.899392,21.235799],[-98.89996,21.235808],[-98.900573,21.236084],[-98.901433,21.235947],[-98.901551,21.235506],[-98.901434,21.234843],[-98.900963,21.23418],[-98.899814,21.233682],[-98.899284,21.233543],[-98.898901,21.233322],[-98.898607,21.232963],[-98.898576,21.232455],[-98.898666,21.231831],[-98.898888,21.23127],[-98.899221,21.231131],[-98.899912,21.231125],[-98.902467,21.231971],[-98.904029,21.232673],[-98.905038,21.232969],[-98.90601,21.233136],[-98.906812,21.233025],[-98.907812,21.232793],[-98.908825,21.232006],[-98.9118,21.229625],[-98.912746,21.228739],[-98.913843,21.228073],[-98.914764,21.227262],[-98.915269,21.226317],[-98.915081,21.225194],[-98.914224,21.224295],[-98.911047,21.223537],[-98.909597,21.223477],[-98.908199,21.223617],[-98.907056,21.223552],[-98.906374,21.223136],[-98.906153,21.222161],[-98.906005,21.221052],[-98.9055,21.219324],[-98.904872,21.217683],[-98.904432,21.216205],[-98.903928,21.214904],[-98.903657,21.213595],[-98.903639,21.212657],[-98.90307,21.212398],[-98.901718,21.211464],[-98.900616,21.211086],[-98.898011,21.210564],[-98.897184,21.210469],[-98.895135,21.210379],[-98.895214,21.209578],[-98.895424,21.203896],[-98.885126,21.19634],[-98.885653,21.195123],[-98.88379,21.193465],[-98.882897,21.192613],[-98.883087,21.190003],[-98.882659,21.179611],[-98.880007,21.179264],[-98.874697,21.180897],[-98.872663,21.183272],[-98.869388,21.184375],[-98.865637,21.187326],[-98.863753,21.188369],[-98.861724,21.188868],[-98.859695,21.189266],[-98.8574,21.189264],[-98.855964,21.188674],[-98.854826,21.18783],[-98.854572,21.1871],[-98.854981,21.18669],[-98.855566,21.186508],[-98.855788,21.186109],[-98.855541,21.18554],[-98.855656,21.185269],[-98.856296,21.184992],[-98.856299,21.18426],[-98.856441,21.184126],[-98.856441,21.183635],[-98.856223,21.182989],[-98.856551,21.182634],[-98.856001,21.181672],[-98.856001,21.181305],[-98.855697,21.181016],[-98.855599,21.180096],[-98.855206,21.179987],[-98.855132,21.179725],[-98.853622,21.178432],[-98.853001,21.177694],[-98.852411,21.177207],[-98.852095,21.176799],[-98.850945,21.175865],[-98.849239,21.175257],[-98.848429,21.174866],[-98.847949,21.17471],[-98.847498,21.175364],[-98.847556,21.175708],[-98.847139,21.176255],[-98.847067,21.17662],[-98.846926,21.176378],[-98.847075,21.176004],[-98.846766,21.175926],[-98.846816,21.175364],[-98.846697,21.174886],[-98.846379,21.17424],[-98.846352,21.173971],[-98.845672,21.173203],[-98.844781,21.172506],[-98.843884,21.172145],[-98.843821,21.171425],[-98.84363,21.170704],[-98.842925,21.170223],[-98.842157,21.169982],[-98.841067,21.169981],[-98.84094,21.169501],[-98.840492,21.16908],[-98.839223,21.169619],[-98.838216,21.170313],[-98.83757,21.170551],[-98.836774,21.170217],[-98.836582,21.169797],[-98.836147,21.169826],[-98.835526,21.169675],[-98.834909,21.169353],[-98.834223,21.168742],[-98.833584,21.168053],[-98.832548,21.167076],[-98.83146,21.166663],[-98.830819,21.166475],[-98.829922,21.16653],[-98.829281,21.166679],[-98.828802,21.166348],[-98.828367,21.165664],[-98.828211,21.164944],[-98.828483,21.163522],[-98.82794,21.162943],[-98.827026,21.162617],[-98.825711,21.161978],[-98.824948,21.16135],[-98.824537,21.161248],[-98.823536,21.161324],[-98.822731,21.161143],[-98.821451,21.160585],[-98.821188,21.1604],[-98.820595,21.160354],[-98.819553,21.161184],[-98.818751,21.161429],[-98.818271,21.161671],[-98.817471,21.161661],[-98.81678,21.161752],[-98.815948,21.162225],[-98.814459,21.162707],[-98.812694,21.163067],[-98.811606,21.163228],[-98.810628,21.163195],[-98.809642,21.163256],[-98.808126,21.163418],[-98.806051,21.163559],[-98.803748,21.164019],[-98.802695,21.164203],[-98.801676,21.164264],[-98.800788,21.164386],[-98.799832,21.164717],[-98.799075,21.164846],[-98.798508,21.164796],[-98.797711,21.164591],[-98.797039,21.164227],[-98.796631,21.16343],[-98.796712,21.163178],[-98.796647,21.162562],[-98.79668,21.161976],[-98.796517,21.161359],[-98.79609,21.16071],[-98.79563,21.16034],[-98.794808,21.160154],[-98.793953,21.160184],[-98.792735,21.161107],[-98.791964,21.162971],[-98.791537,21.163432],[-98.790745,21.164151],[-98.789604,21.165667],[-98.788795,21.166386],[-98.788564,21.166971],[-98.788596,21.167866],[-98.788963,21.168342],[-98.789376,21.168623],[-98.790336,21.170047],[-98.790688,21.171281],[-98.790851,21.1736],[-98.790979,21.174764],[-98.790798,21.175864],[-98.790276,21.176528],[-98.790012,21.177144],[-98.789878,21.178501],[-98.790108,21.178995],[-98.790699,21.17952],[-98.791981,21.17983],[-98.792606,21.179769],[-98.793889,21.179524],[-98.794877,21.178754],[-98.795502,21.178384],[-98.795897,21.178015],[-98.79672,21.1778],[-98.797838,21.177801],[-98.798594,21.17808],[-98.799711,21.179253],[-98.800662,21.181012],[-98.801647,21.182216],[-98.803716,21.184624],[-98.804406,21.185272],[-98.805588,21.1866],[-98.806541,21.187742],[-98.806869,21.188236],[-98.808084,21.189563],[-98.808657,21.190674],[-98.808827,21.191762],[-98.808605,21.192444],[-98.808143,21.193245],[-98.807524,21.193326],[-98.804653,21.193231],[-98.802985,21.193217],[-98.801188,21.192934],[-98.799513,21.192306],[-98.79854,21.192031],[-98.797719,21.191629],[-98.797357,21.19132],[-98.796897,21.190765],[-98.796668,21.190209],[-98.797195,21.189017],[-98.79753,21.188414],[-98.79837,21.187442],[-98.798798,21.186831],[-98.79909,21.186266],[-98.799216,21.184894],[-98.797971,21.183343],[-98.797236,21.183302],[-98.796769,21.183365],[-98.795976,21.184251],[-98.795261,21.184811],[-98.794784,21.185508],[-98.79402,21.185957],[-98.793116,21.186606],[-98.791348,21.187953],[-98.790849,21.188043],[-98.790072,21.188012],[-98.789061,21.187443],[-98.788422,21.187238],[-98.787726,21.186868],[-98.787102,21.186651],[-98.785996,21.186369],[-98.783957,21.18612],[-98.7832,21.186119],[-98.782236,21.186228],[-98.781462,21.186226],[-98.780809,21.185982],[-98.780791,21.185764],[-98.781363,21.185137],[-98.781325,21.184803],[-98.781099,21.184532],[-98.7807,21.184416],[-98.780195,21.183975],[-98.780086,21.183628],[-98.779464,21.182652],[-98.779198,21.182399],[-98.778372,21.182252],[-98.777761,21.182469],[-98.777258,21.182501],[-98.776742,21.182383],[-98.776577,21.182009],[-98.776438,21.180535],[-98.776602,21.179213],[-98.776538,21.178698],[-98.776361,21.178364],[-98.776308,21.177717],[-98.776065,21.177364],[-98.776034,21.177066],[-98.775652,21.17626],[-98.775599,21.175557],[-98.77539,21.175334],[-98.775376,21.174574],[-98.775466,21.174416],[-98.776335,21.173642],[-98.776129,21.173291],[-98.775749,21.173142],[-98.774954,21.173228],[-98.774553,21.17319],[-98.773969,21.172678],[-98.773414,21.172064],[-98.772921,21.171969],[-98.772134,21.172377],[-98.771501,21.172836],[-98.771109,21.173855],[-98.770932,21.174],[-98.770398,21.174119],[-98.770147,21.173807],[-98.77,21.173919],[-98.768712,21.174408],[-98.768322,21.174764],[-98.768172,21.175227],[-98.767975,21.175223],[-98.767717,21.17491],[-98.767431,21.174943],[-98.766624,21.175765],[-98.766267,21.175602],[-98.765883,21.17587],[-98.766558,21.176245],[-98.766599,21.176525],[-98.76622,21.176628],[-98.765827,21.176945],[-98.76583,21.178077],[-98.765585,21.178202],[-98.765325,21.177986],[-98.764988,21.178173],[-98.764587,21.178563],[-98.764472,21.178944],[-98.764769,21.179266],[-98.764513,21.179558],[-98.764176,21.179434],[-98.764081,21.179725],[-98.764603,21.179766],[-98.764708,21.179958],[-98.763813,21.180478],[-98.764099,21.181062],[-98.764139,21.181581],[-98.764599,21.18216],[-98.765277,21.182748],[-98.765261,21.18326],[-98.7659,21.18345],[-98.766964,21.183046],[-98.767232,21.183697],[-98.766876,21.183849],[-98.767303,21.184417],[-98.766309,21.184761],[-98.765144,21.185486],[-98.763494,21.185999],[-98.763234,21.185959],[-98.762703,21.186242],[-98.762178,21.185685],[-98.761008,21.185948],[-98.760577,21.186151],[-98.759721,21.186227],[-98.759224,21.185981],[-98.758578,21.185827],[-98.757922,21.185812],[-98.757267,21.185893],[-98.756203,21.186247],[-98.755694,21.186543],[-98.755138,21.186673],[-98.754487,21.186565],[-98.753224,21.185831],[-98.752079,21.18536],[-98.75148,21.185206],[-98.748623,21.184944],[-98.74726,21.184681],[-98.746529,21.184328],[-98.745873,21.184961],[-98.745301,21.185329],[-98.745078,21.185001],[-98.744531,21.185442],[-98.744143,21.185961],[-98.744546,21.186171],[-98.744144,21.186476],[-98.744155,21.18679],[-98.743677,21.187156],[-98.743322,21.186784],[-98.742891,21.187082],[-98.742594,21.187654],[-98.742491,21.187639],[-98.741543,21.188486],[-98.741327,21.189282],[-98.740541,21.189407],[-98.740811,21.189866],[-98.740795,21.190107],[-98.741391,21.189951],[-98.741468,21.190114],[-98.740965,21.190306],[-98.741888,21.190993],[-98.742159,21.191342],[-98.741979,21.191476],[-98.742205,21.191901],[-98.741764,21.192005],[-98.741826,21.192583],[-98.741314,21.192792],[-98.741168,21.192562],[-98.740916,21.19267],[-98.739087,21.190526],[-98.737942,21.189484],[-98.73702,21.188217],[-98.736891,21.187558],[-98.736282,21.186725],[-98.736021,21.184926],[-98.735874,21.184146],[-98.735729,21.182793],[-98.735512,21.182335],[-98.734644,21.181544],[-98.729831,21.181162],[-98.729279,21.180806],[-98.728104,21.179741],[-98.727661,21.179549],[-98.727069,21.179514],[-98.726773,21.179652],[-98.72655,21.180068],[-98.72653,21.181281],[-98.726713,21.181975],[-98.727452,21.182687],[-98.727894,21.183243],[-98.72819,21.183458],[-98.72843,21.184048],[-98.728337,21.184343],[-98.727656,21.184589],[-98.727023,21.184618],[-98.726284,21.184478],[-98.725772,21.184259],[-98.725046,21.183748],[-98.724741,21.183331],[-98.724366,21.183002],[-98.723835,21.18305],[-98.723346,21.183329],[-98.72289,21.183837],[-98.722104,21.184857],[-98.721438,21.185588],[-98.721229,21.186344],[-98.720874,21.186489],[-98.720339,21.187131],[-98.719429,21.187134],[-98.718908,21.186362],[-98.719404,21.185283],[-98.719523,21.184159],[-98.719358,21.184053],[-98.719121,21.184399],[-98.71828,21.184543],[-98.717801,21.184937],[-98.717056,21.185356],[-98.716658,21.185945],[-98.716196,21.185887],[-98.715918,21.185621],[-98.716055,21.185158],[-98.715636,21.1853],[-98.71517,21.185094],[-98.714788,21.184776],[-98.71462,21.183921],[-98.714718,21.18344],[-98.714177,21.18368],[-98.713791,21.184258],[-98.712977,21.184748],[-98.712657,21.185161],[-98.712726,21.185724],[-98.712497,21.185902],[-98.71209,21.185681],[-98.711525,21.185607],[-98.711211,21.185729],[-98.710554,21.185635],[-98.709891,21.186052],[-98.709471,21.186775],[-98.709179,21.187104],[-98.708663,21.187261],[-98.708568,21.18664],[-98.708324,21.18652],[-98.70787,21.186775],[-98.707659,21.187352],[-98.707464,21.187397],[-98.707305,21.186878],[-98.706786,21.186788],[-98.706432,21.187364],[-98.706227,21.187408],[-98.70612,21.186939],[-98.705812,21.18713],[-98.705233,21.187197],[-98.704907,21.18671],[-98.704867,21.186464],[-98.703904,21.186158],[-98.703743,21.185816],[-98.703382,21.185727],[-98.702701,21.185139],[-98.702121,21.185118],[-98.701968,21.184482],[-98.701668,21.183897],[-98.701722,21.183475],[-98.70134,21.183279],[-98.701175,21.182967],[-98.701591,21.182455],[-98.70225,21.181978],[-98.702743,21.18153],[-98.70233,21.181073],[-98.701501,21.18074],[-98.701049,21.180071],[-98.700608,21.178748],[-98.699779,21.177243],[-98.699373,21.176229],[-98.699498,21.175631],[-98.700344,21.175041],[-98.701093,21.174072],[-98.70153,21.17412],[-98.701911,21.172773],[-98.701559,21.17202],[-98.701513,21.171337],[-98.702322,21.170833],[-98.702857,21.170333],[-98.703655,21.168481],[-98.703058,21.166396],[-98.70288,21.165441],[-98.703012,21.164414],[-98.702715,21.163909],[-98.702518,21.161886],[-98.70182,21.160771],[-98.699256,21.161835],[-98.69833,21.162134],[-98.697883,21.161794],[-98.697466,21.161787],[-98.697306,21.162013],[-98.696972,21.161728],[-98.697005,21.16229],[-98.696764,21.162123],[-98.696755,21.161504],[-98.696483,21.161604],[-98.695959,21.162416],[-98.695515,21.162711],[-98.694967,21.163327],[-98.694191,21.163823],[-98.693391,21.16455],[-98.692645,21.165579],[-98.692329,21.165829],[-98.69167,21.165983],[-98.691238,21.166729],[-98.691096,21.167472],[-98.692024,21.167982],[-98.692117,21.168509],[-98.691542,21.168706],[-98.691536,21.168921],[-98.692148,21.169137],[-98.692213,21.169769],[-98.692539,21.170075],[-98.692816,21.170663],[-98.692617,21.17311],[-98.693044,21.173863],[-98.693335,21.174716],[-98.693446,21.175486],[-98.693758,21.175751],[-98.69393,21.176291],[-98.693898,21.1769],[-98.693647,21.177296],[-98.694599,21.17827],[-98.693107,21.179171],[-98.693249,21.17951],[-98.693614,21.180861],[-98.693906,21.181575],[-98.6941,21.181766],[-98.694586,21.181483],[-98.694754,21.181759],[-98.694572,21.182306],[-98.694063,21.182624],[-98.693856,21.182923],[-98.693747,21.183497],[-98.693992,21.183898],[-98.693618,21.184222],[-98.693002,21.184134],[-98.692672,21.184212],[-98.691733,21.184228],[-98.69147,21.184655],[-98.691669,21.185202],[-98.691648,21.18546],[-98.691394,21.18574],[-98.691125,21.18639],[-98.690982,21.18698],[-98.691699,21.188028],[-98.691148,21.188311],[-98.69042,21.188547],[-98.689643,21.189018],[-98.689417,21.18923],[-98.689279,21.189663],[-98.688508,21.189908],[-98.686926,21.189886],[-98.685769,21.190132],[-98.685153,21.190197],[-98.684802,21.190833],[-98.684852,21.191233],[-98.685329,21.191138],[-98.685555,21.191491],[-98.68533,21.192621],[-98.685298,21.193484],[-98.685716,21.194089],[-98.685447,21.194338],[-98.686143,21.194424],[-98.686537,21.194556],[-98.686598,21.194901],[-98.686352,21.195124],[-98.68561,21.195396],[-98.685496,21.19567],[-98.686181,21.195767],[-98.685681,21.196521],[-98.685179,21.196615],[-98.685236,21.196792],[-98.68452,21.197041],[-98.683965,21.197051],[-98.683452,21.197657],[-98.683226,21.198057],[-98.683653,21.198433],[-98.683753,21.198763],[-98.683603,21.199304],[-98.683343,21.199642],[-98.683047,21.200262],[-98.68266,21.200638],[-98.682337,21.200724],[-98.681822,21.20027],[-98.681697,21.199792],[-98.681161,21.198956],[-98.68039,21.19848],[-98.679843,21.198366],[-98.679663,21.19859],[-98.679725,21.199077],[-98.679377,21.199306],[-98.678729,21.199436],[-98.678624,21.199364],[-98.677154,21.199471],[-98.676918,21.199368],[-98.677083,21.199121],[-98.676678,21.198319],[-98.675917,21.19776],[-98.675137,21.196727],[-98.674154,21.195652],[-98.673064,21.194561],[-98.670925,21.194139],[-98.668931,21.19486],[-98.668753,21.194637],[-98.668784,21.19433],[-98.66929,21.19383],[-98.669351,21.193245],[-98.669084,21.192854],[-98.668313,21.19224],[-98.66757,21.191793],[-98.667096,21.191012],[-98.667109,21.19027],[-98.666677,21.189398],[-98.665812,21.189167],[-98.665524,21.188178],[-98.6651,21.187479],[-98.664453,21.186258],[-98.663783,21.184051],[-98.660308,21.182846],[-98.658297,21.182806],[-98.65817,21.183064],[-98.658346,21.184473],[-98.658887,21.184897],[-98.658849,21.185573],[-98.658942,21.186047],[-98.658688,21.18614],[-98.657852,21.185504],[-98.657043,21.185604],[-98.656937,21.185504],[-98.656839,21.184831],[-98.656146,21.184493],[-98.655925,21.184079],[-98.655491,21.183775],[-98.655236,21.183726],[-98.654514,21.183876],[-98.65422,21.183685],[-98.654387,21.183212],[-98.653524,21.182752],[-98.652815,21.18286],[-98.652627,21.182724],[-98.652373,21.182152],[-98.651669,21.182104],[-98.651419,21.181895],[-98.651522,21.181535],[-98.650929,21.181259],[-98.650696,21.180936],[-98.650397,21.181093],[-98.650496,21.181756],[-98.651039,21.182731],[-98.650625,21.183518],[-98.648497,21.183489],[-98.647932,21.18332],[-98.647152,21.182767],[-98.64636,21.182675],[-98.645358,21.182893],[-98.644727,21.182904],[-98.643909,21.182645],[-98.642986,21.182463],[-98.642422,21.182157],[-98.641712,21.182354],[-98.641549,21.182607],[-98.640992,21.182925],[-98.640355,21.182742],[-98.639489,21.183193],[-98.639152,21.18323],[-98.638427,21.183709],[-98.638149,21.184166],[-98.638242,21.18452],[-98.638615,21.184961],[-98.637221,21.185674],[-98.63644,21.185999],[-98.634751,21.186861],[-98.63296,21.187864],[-98.632481,21.187979],[-98.631499,21.18835],[-98.629584,21.189139],[-98.62913,21.189372],[-98.628801,21.189724],[-98.627818,21.190142],[-98.626532,21.190794],[-98.625093,21.191728],[-98.624138,21.191817],[-98.6225,21.192271],[-98.622524,21.192562],[-98.620231,21.193413],[-98.617977,21.194285],[-98.61599,21.195802],[-98.615659,21.196087],[-98.613142,21.197575],[-98.611935,21.198536],[-98.611333,21.199147],[-98.61097,21.199693],[-98.610768,21.200466],[-98.610477,21.20062],[-98.609121,21.200999],[-98.608742,21.201408],[-98.608562,21.201949],[-98.607776,21.203052],[-98.60757,21.203767],[-98.608326,21.204717],[-98.608081,21.204873],[-98.607911,21.205292],[-98.608426,21.206037],[-98.608227,21.207119],[-98.605226,21.215213],[-98.606545,21.216324],[-98.604804,21.217703],[-98.604775,21.217816],[-98.603592,21.218376],[-98.603799,21.219125],[-98.604419,21.219889],[-98.604681,21.220305],[-98.604667,21.220892],[-98.604445,21.221211],[-98.604164,21.222696],[-98.603997,21.223037],[-98.60408,21.224165],[-98.6039,21.225337],[-98.603547,21.226166],[-98.602254,21.228916],[-98.602306,21.230262],[-98.602152,21.230946],[-98.602322,21.231175],[-98.601341,21.232077],[-98.601215,21.23261],[-98.601054,21.232763],[-98.601273,21.233209],[-98.601287,21.234638],[-98.601624,21.23569],[-98.601971,21.2371],[-98.601629,21.237836],[-98.601666,21.238122],[-98.60212,21.239572],[-98.602232,21.240072],[-98.601952,21.240341],[-98.601859,21.240636],[-98.602072,21.241376],[-98.60189,21.241689],[-98.602301,21.242603],[-98.602335,21.242876],[-98.601635,21.243433],[-98.601132,21.244241],[-98.601096,21.244534],[-98.601641,21.245199],[-98.601538,21.245464],[-98.600445,21.245777],[-98.599449,21.247731],[-98.599695,21.247978],[-98.600121,21.24779],[-98.600306,21.248022],[-98.600828,21.24813],[-98.601263,21.24834],[-98.601595,21.248247],[-98.602138,21.248317],[-98.602442,21.248483],[-98.602897,21.248945],[-98.603441,21.24915],[-98.603588,21.249013],[-98.604202,21.249458],[-98.604866,21.249236],[-98.604854,21.248772],[-98.605509,21.248898],[-98.60554,21.249288],[-98.605928,21.249235],[-98.606162,21.249045],[-98.606277,21.249287],[-98.606854,21.248776],[-98.607169,21.249177],[-98.607818,21.249459],[-98.607945,21.249737],[-98.607901,21.25012],[-98.60863,21.250427],[-98.608643,21.251066],[-98.608563,21.25165],[-98.608802,21.251673],[-98.608479,21.25259],[-98.608925,21.252704],[-98.607675,21.256548],[-98.607335,21.256639],[-98.606414,21.257355],[-98.606194,21.25769],[-98.605959,21.257643],[-98.604919,21.258629],[-98.604412,21.258932],[-98.603964,21.258537],[-98.603099,21.258869],[-98.602066,21.25946],[-98.601272,21.25972],[-98.600173,21.260917],[-98.599971,21.261202],[-98.600143,21.261444],[-98.600793,21.26179],[-98.602449,21.26235],[-98.602398,21.262543],[-98.601972,21.262882],[-98.601545,21.263655],[-98.602032,21.263967],[-98.6018,21.264096],[-98.602469,21.264713],[-98.602521,21.265002],[-98.602357,21.265815],[-98.602274,21.265886],[-98.602865,21.266824],[-98.603283,21.267198],[-98.604453,21.267834],[-98.604996,21.268482],[-98.60498,21.268883],[-98.604463,21.269406],[-98.604182,21.269482],[-98.603411,21.269456],[-98.603191,21.269743],[-98.603255,21.270103],[-98.603059,21.270523],[-98.603318,21.270894],[-98.60417,21.271815],[-98.604182,21.272342],[-98.603763,21.272376],[-98.603163,21.271897],[-98.602981,21.272046],[-98.603192,21.272833],[-98.603034,21.273758],[-98.602739,21.274116],[-98.602394,21.274281],[-98.601221,21.274324],[-98.601099,21.274806],[-98.601112,21.275285],[-98.601358,21.275553],[-98.602602,21.275517],[-98.60359,21.275694],[-98.603952,21.276171],[-98.60394,21.276449],[-98.603615,21.276648],[-98.603129,21.277537],[-98.602927,21.278086],[-98.60258,21.279368],[-98.602181,21.279527],[-98.601341,21.279552],[-98.600264,21.27989],[-98.599542,21.279896],[-98.599272,21.279549],[-98.598531,21.279667],[-98.598158,21.28003],[-98.598328,21.280417],[-98.59876,21.280866],[-98.598225,21.281444],[-98.597272,21.281521],[-98.5971,21.28182],[-98.597179,21.282066],[-98.597553,21.282519],[-98.597259,21.282811],[-98.596653,21.282699],[-98.596241,21.282498],[-98.595985,21.282111],[-98.595745,21.282121],[-98.595299,21.282949],[-98.595241,21.28323],[-98.595482,21.283644],[-98.595481,21.284575],[-98.595717,21.285106],[-98.595966,21.28535],[-98.596721,21.28547],[-98.599276,21.28546],[-98.599908,21.285494],[-98.600998,21.285678],[-98.601649,21.286603],[-98.601788,21.28718],[-98.601699,21.287608],[-98.6008,21.288413],[-98.599798,21.289455],[-98.599461,21.289991],[-98.599148,21.291148],[-98.599131,21.29205],[-98.601036,21.295841],[-98.601426,21.296352],[-98.602796,21.297303],[-98.603321,21.297499],[-98.603913,21.297991],[-98.604136,21.298449],[-98.604204,21.29913],[-98.604007,21.299535],[-98.603851,21.300425],[-98.603941,21.300816],[-98.604353,21.301593],[-98.60505,21.302026],[-98.605581,21.302001],[-98.606103,21.30182],[-98.60665,21.301259],[-98.60721,21.300567],[-98.607967,21.299901],[-98.608415,21.299637],[-98.609493,21.299271],[-98.609994,21.299212],[-98.611452,21.299464],[-98.612531,21.299813],[-98.612778,21.300043],[-98.613274,21.300942],[-98.613878,21.301568],[-98.614017,21.301918],[-98.614561,21.302633],[-98.615094,21.303157],[-98.615611,21.303825],[-98.615586,21.304458],[-98.616091,21.304956],[-98.616669,21.305138],[-98.617175,21.305139],[-98.617731,21.304907],[-98.618423,21.304866],[-98.61903,21.305027],[-98.619081,21.305261],[-98.618878,21.305432],[-98.619101,21.305815],[-98.6197,21.305916],[-98.62013,21.3065],[-98.619924,21.306785],[-98.620183,21.307142],[-98.620871,21.30737],[-98.621842,21.306965],[-98.622334,21.306974],[-98.622484,21.308127],[-98.622929,21.308247],[-98.623546,21.307568],[-98.624947,21.308164],[-98.624973,21.308322],[-98.624402,21.309485],[-98.624466,21.309729],[-98.625273,21.30995],[-98.625256,21.310199],[-98.626252,21.310525],[-98.626726,21.310525],[-98.62755,21.310783],[-98.629526,21.312001],[-98.631422,21.312955],[-98.632442,21.313203],[-98.633599,21.313355],[-98.634095,21.313298],[-98.635652,21.313237],[-98.636379,21.312934],[-98.636888,21.312879],[-98.638016,21.31315],[-98.638483,21.313201],[-98.64022,21.312875],[-98.64119,21.312874],[-98.641803,21.312727],[-98.643129,21.31275],[-98.643547,21.312641],[-98.644364,21.313094],[-98.644709,21.313114],[-98.64557,21.312719],[-98.64646,21.312802],[-98.647595,21.312316],[-98.648168,21.312715],[-98.648866,21.312922],[-98.649033,21.31309],[-98.649509,21.314013],[-98.650897,21.315087],[-98.651689,21.315089],[-98.652679,21.315511],[-98.653173,21.316308],[-98.65407,21.316597],[-98.654305,21.317018],[-98.654682,21.317173],[-98.655791,21.317441],[-98.656412,21.317959],[-98.656928,21.318081],[-98.657474,21.318068],[-98.658029,21.318222],[-98.658273,21.31862],[-98.659348,21.320059],[-98.659918,21.320641],[-98.661307,21.321256],[-98.662237,21.321551],[-98.663314,21.322155],[-98.663991,21.32247],[-98.664546,21.322524],[-98.665297,21.322959],[-98.665854,21.32287],[-98.666287,21.322568],[-98.666631,21.322607],[-98.666731,21.32289],[-98.667025,21.322827],[-98.667031,21.323309],[-98.667619,21.323916],[-98.667883,21.324071],[-98.668372,21.324076],[-98.668306,21.324549],[-98.668531,21.324612],[-98.66909,21.324247],[-98.669539,21.324943],[-98.670421,21.32472],[-98.670727,21.32472],[-98.671015,21.324955],[-98.671005,21.325243],[-98.670659,21.325769],[-98.671266,21.325848],[-98.671938,21.326478],[-98.67228,21.326945],[-98.672775,21.327916],[-98.6728,21.328704],[-98.673479,21.329093],[-98.673151,21.329714],[-98.673886,21.330264],[-98.674208,21.330358],[-98.674143,21.330782],[-98.674241,21.331123],[-98.674693,21.331636],[-98.674689,21.332142],[-98.674856,21.332405],[-98.67529,21.332716],[-98.675373,21.333359],[-98.67573,21.334152],[-98.675763,21.334466],[-98.676225,21.334674],[-98.676381,21.334954],[-98.676674,21.336134],[-98.677963,21.337542],[-98.678187,21.337614],[-98.678394,21.338018],[-98.679424,21.338233],[-98.679528,21.338405],[-98.680153,21.338596],[-98.6806,21.339074],[-98.681048,21.339365],[-98.681342,21.339365],[-98.681772,21.339907],[-98.682365,21.340486],[-98.682544,21.340883],[-98.683371,21.341596],[-98.683586,21.341948],[-98.681141,21.344311],[-98.681113,21.345342],[-98.681174,21.346046],[-98.680735,21.346496],[-98.680269,21.34684],[-98.677507,21.348401],[-98.675091,21.349843],[-98.674194,21.348906],[-98.671827,21.348278],[-98.67066,21.348284],[-98.670294,21.348425],[-98.665587,21.348126],[-98.658669,21.347618],[-98.65658,21.347353],[-98.655744,21.347291],[-98.653335,21.346908],[-98.65275,21.346844],[-98.651903,21.352789],[-98.649601,21.35264],[-98.64963,21.354078],[-98.649087,21.354439],[-98.649688,21.354827],[-98.64861,21.35532],[-98.648096,21.355724],[-98.6474,21.355652],[-98.647194,21.355924],[-98.646476,21.356378],[-98.646428,21.35668],[-98.646016,21.357256],[-98.64539,21.357652],[-98.64516,21.358062],[-98.645526,21.358092],[-98.646348,21.358662],[-98.645837,21.359312],[-98.645467,21.359475],[-98.645037,21.360164],[-98.645063,21.360785],[-98.645168,21.36107],[-98.644753,21.360965],[-98.645165,21.361378],[-98.644391,21.363137],[-98.644155,21.363341],[-98.64501,21.363952],[-98.644423,21.365345],[-98.644047,21.366539],[-98.643091,21.366025],[-98.64252,21.366088],[-98.642481,21.36633],[-98.641986,21.366737],[-98.641739,21.366778],[-98.641339,21.366585],[-98.640734,21.365967],[-98.640251,21.366024],[-98.639901,21.366717],[-98.639545,21.367035],[-98.638915,21.367411],[-98.638711,21.367686],[-98.638338,21.367706],[-98.637705,21.367355],[-98.637425,21.366465],[-98.637404,21.365703],[-98.637946,21.364839],[-98.637779,21.364388],[-98.63722,21.36402],[-98.636503,21.363882],[-98.635436,21.363784],[-98.635132,21.363531],[-98.634865,21.363689],[-98.634281,21.363755],[-98.633191,21.365053],[-98.631527,21.36559],[-98.630967,21.365531],[-98.629862,21.364492],[-98.629625,21.36447],[-98.629099,21.364766],[-98.628576,21.364764],[-98.628402,21.364624],[-98.628219,21.363512],[-98.628537,21.362499],[-98.628322,21.361738],[-98.627591,21.360715],[-98.62754,21.360408],[-98.627156,21.359815],[-98.626849,21.359796],[-98.626492,21.360193],[-98.626106,21.36046],[-98.62571,21.360552],[-98.625243,21.360821],[-98.625065,21.361052],[-98.625004,21.361515],[-98.624516,21.362627],[-98.624277,21.362968],[-98.624176,21.363766],[-98.624205,21.364283],[-98.623942,21.364674],[-98.623496,21.364718],[-98.622458,21.364504],[-98.621462,21.364189],[-98.62068,21.363781],[-98.620262,21.363351],[-98.619293,21.362668],[-98.619077,21.362338],[-98.619335,21.362149],[-98.619957,21.362062],[-98.620347,21.361247],[-98.620108,21.36058],[-98.620183,21.360003],[-98.619772,21.359299],[-98.619411,21.359016],[-98.618593,21.358774],[-98.618061,21.359027],[-98.61705,21.359656],[-98.616445,21.359783],[-98.615649,21.360151],[-98.615359,21.360462],[-98.614847,21.361802],[-98.614233,21.361969],[-98.613823,21.361776],[-98.612823,21.360618],[-98.612908,21.360166],[-98.612663,21.359606],[-98.612416,21.359363],[-98.611656,21.359166],[-98.610711,21.359356],[-98.610458,21.359344],[-98.610109,21.358994],[-98.609556,21.358854],[-98.60907,21.358956],[-98.60869,21.359327],[-98.608028,21.359529],[-98.607757,21.359226],[-98.607612,21.358785],[-98.607294,21.358267],[-98.606922,21.358136],[-98.605593,21.35894],[-98.605326,21.358918],[-98.605094,21.358689],[-98.605119,21.358298],[-98.604633,21.358332],[-98.603806,21.358822],[-98.603673,21.359218],[-98.60321,21.359108],[-98.603164,21.358782],[-98.603455,21.35837],[-98.60334,21.357946],[-98.602442,21.357869],[-98.601948,21.358188],[-98.601669,21.359156],[-98.600973,21.359172],[-98.600297,21.35992],[-98.599897,21.36006],[-98.599561,21.359766],[-98.599528,21.359407],[-98.5997,21.358818],[-98.599562,21.358415],[-98.599237,21.358425],[-98.598991,21.35912],[-98.598048,21.359478],[-98.59777,21.359467],[-98.597492,21.359097],[-98.596935,21.359074],[-98.596883,21.359245],[-98.597177,21.359889],[-98.597114,21.360085],[-98.596664,21.360146],[-98.596312,21.360981],[-98.596758,21.361744],[-98.596777,21.362007],[-98.596386,21.362435],[-98.59637,21.362654],[-98.595925,21.363066],[-98.595877,21.363388],[-98.596091,21.364191],[-98.595699,21.364368],[-98.595454,21.364162],[-98.594759,21.363907],[-98.594604,21.363967],[-98.594342,21.364659],[-98.59406,21.364774],[-98.593468,21.36458],[-98.593002,21.364618],[-98.592717,21.364883],[-98.592626,21.365305],[-98.592714,21.366223],[-98.592608,21.366443],[-98.592259,21.366635],[-98.591834,21.366574],[-98.591744,21.366272],[-98.591512,21.366235],[-98.59097,21.366596],[-98.590879,21.366849],[-98.591239,21.367369],[-98.591147,21.367864],[-98.590862,21.368374],[-98.591312,21.368713],[-98.590291,21.370159],[-98.58962,21.370811],[-98.589663,21.371348],[-98.589865,21.371919],[-98.590229,21.372186],[-98.59026,21.372418],[-98.590052,21.372762],[-98.589648,21.372601],[-98.589414,21.37216],[-98.588944,21.37211],[-98.587506,21.372376],[-98.587114,21.372228],[-98.586724,21.371762],[-98.586123,21.371687],[-98.585865,21.371842],[-98.585336,21.37264],[-98.584578,21.372809],[-98.584072,21.37269],[-98.583486,21.372834],[-98.583461,21.372449],[-98.583064,21.372145],[-98.582883,21.371459],[-98.583073,21.370942],[-98.583065,21.370405],[-98.582539,21.369731],[-98.582184,21.369628],[-98.58169,21.369824],[-98.58139,21.369695],[-98.580963,21.369767],[-98.580852,21.370137],[-98.580968,21.370793],[-98.580876,21.371074],[-98.580456,21.371296],[-98.580228,21.371275],[-98.58012,21.37154],[-98.580301,21.372132],[-98.580455,21.3722],[-98.581011,21.371963],[-98.581238,21.371981],[-98.581335,21.373048],[-98.580835,21.372893],[-98.580842,21.373771],[-98.58075,21.374077],[-98.580341,21.373991],[-98.579602,21.373283],[-98.579293,21.373154],[-98.578767,21.373218],[-98.578356,21.37373],[-98.577569,21.374386],[-98.576959,21.374461],[-98.57647,21.374336],[-98.576011,21.374634],[-98.575747,21.374602],[-98.575321,21.374243],[-98.575093,21.373722],[-98.574371,21.373004],[-98.573689,21.373058],[-98.572778,21.372988],[-98.571821,21.372768],[-98.571434,21.372767],[-98.570468,21.372611],[-98.569972,21.372412],[-98.569562,21.372432],[-98.569206,21.372311],[-98.568235,21.371735],[-98.568349,21.370947],[-98.568274,21.370822],[-98.567716,21.370774],[-98.567411,21.370982],[-98.567106,21.371434],[-98.567086,21.371787],[-98.567419,21.371983],[-98.567341,21.372617],[-98.566965,21.37292],[-98.566408,21.372498],[-98.56597,21.372579],[-98.565912,21.372857],[-98.566157,21.373338],[-98.566445,21.373616],[-98.566247,21.373709],[-98.565621,21.373267],[-98.565,21.373023],[-98.565235,21.372177],[-98.56469,21.371937],[-98.56427,21.372033],[-98.56407,21.372589],[-98.564185,21.372868],[-98.563934,21.373803],[-98.563752,21.374119],[-98.564161,21.37464],[-98.563987,21.374979],[-98.563673,21.375017],[-98.563028,21.374772],[-98.562783,21.374822],[-98.562365,21.37533],[-98.561846,21.375758],[-98.561822,21.376251],[-98.561996,21.37649],[-98.562038,21.376974],[-98.56154,21.377445],[-98.560715,21.377662],[-98.559842,21.377285],[-98.559225,21.377293],[-98.558611,21.377694],[-98.55829,21.378389],[-98.557271,21.379402],[-98.556987,21.379601],[-98.556405,21.379602],[-98.556109,21.379383],[-98.555113,21.379358],[-98.553683,21.379482],[-98.552313,21.379388],[-98.552027,21.379461],[-98.551765,21.379729],[-98.551476,21.380416],[-98.551436,21.381199],[-98.551095,21.382612],[-98.55103,21.383232],[-98.550778,21.384015],[-98.550401,21.384332],[-98.550121,21.38435],[-98.549566,21.384598],[-98.548983,21.384421],[-98.54816,21.384373],[-98.547774,21.38426],[-98.547032,21.383469],[-98.546865,21.383051],[-98.547089,21.381868],[-98.547025,21.381309],[-98.546628,21.380842],[-98.546148,21.380608],[-98.545414,21.380634],[-98.544583,21.38094],[-98.544436,21.381593],[-98.544786,21.382806],[-98.545035,21.383263],[-98.545138,21.384102],[-98.545005,21.384287],[-98.544567,21.384386],[-98.543683,21.38405],[-98.542576,21.383968],[-98.542433,21.384047],[-98.5413,21.383958],[-98.539992,21.38363],[-98.539334,21.383517],[-98.539084,21.38338],[-98.539274,21.38285],[-98.539411,21.380869],[-98.539304,21.380593],[-98.539398,21.379244],[-98.538977,21.379021],[-98.538581,21.379501],[-98.538283,21.380266],[-98.537547,21.380417],[-98.537077,21.380319],[-98.536785,21.380067],[-98.536518,21.380307],[-98.53569,21.380335],[-98.534592,21.379984],[-98.534527,21.379848],[-98.535406,21.37917],[-98.535255,21.37874],[-98.534808,21.378578],[-98.533838,21.378792],[-98.533553,21.378729],[-98.533171,21.378845],[-98.532395,21.378721],[-98.531971,21.378532],[-98.53105,21.377639],[-98.531658,21.377047],[-98.531928,21.377162],[-98.533398,21.376821],[-98.533854,21.376511],[-98.533708,21.376061],[-98.53325,21.375939],[-98.532606,21.375923],[-98.532561,21.375506],[-98.5327,21.375334],[-98.533606,21.374891],[-98.533684,21.374676],[-98.533348,21.374043],[-98.532781,21.373841],[-98.532598,21.37351],[-98.533028,21.373439],[-98.532892,21.372821],[-98.532377,21.372481],[-98.532125,21.372429],[-98.531181,21.37258],[-98.530831,21.372353],[-98.531004,21.371878],[-98.531385,21.371645],[-98.531582,21.37131],[-98.531099,21.370993],[-98.529801,21.371122],[-98.529692,21.370928],[-98.529835,21.370399],[-98.530239,21.369861],[-98.530206,21.369532],[-98.529512,21.369266],[-98.528586,21.369833],[-98.528217,21.36973],[-98.528165,21.36917],[-98.528383,21.368978],[-98.528773,21.369162],[-98.529197,21.369092],[-98.529558,21.3687],[-98.529612,21.368061],[-98.529466,21.367673],[-98.528871,21.367623],[-98.527934,21.367787],[-98.527424,21.367802],[-98.527322,21.367511],[-98.527651,21.366946],[-98.527678,21.366703],[-98.527403,21.366484],[-98.526522,21.366425],[-98.525529,21.366217],[-98.525181,21.366027],[-98.524953,21.366152],[-98.524077,21.36702],[-98.522687,21.367836],[-98.522451,21.368274],[-98.521968,21.368592],[-98.521626,21.368701],[-98.52052,21.368629],[-98.519731,21.368247],[-98.519658,21.367817],[-98.519871,21.36719],[-98.51994,21.366322],[-98.520646,21.36546],[-98.520637,21.365141],[-98.520415,21.364651],[-98.519234,21.363279],[-98.518473,21.362598],[-98.517445,21.361865],[-98.516096,21.361471],[-98.515703,21.361494],[-98.515385,21.361686],[-98.51517,21.36203],[-98.515281,21.36424],[-98.515384,21.364743],[-98.515269,21.365095],[-98.514846,21.365216],[-98.514369,21.365149],[-98.514072,21.364391],[-98.51333,21.363521],[-98.512401,21.362725],[-98.511889,21.362491],[-98.51095,21.362646],[-98.510161,21.363195],[-98.509866,21.363508],[-98.509649,21.36395],[-98.508959,21.364115],[-98.508341,21.364077],[-98.507874,21.36476],[-98.507576,21.365076],[-98.506856,21.366103],[-98.506604,21.366851],[-98.506651,21.367388],[-98.507033,21.368497],[-98.507057,21.369051],[-98.507379,21.369971],[-98.508405,21.370562],[-98.50907,21.370651],[-98.509651,21.370072],[-98.510296,21.369576],[-98.510946,21.36918],[-98.511592,21.368974],[-98.512264,21.369355],[-98.512666,21.369986],[-98.513626,21.370726],[-98.515397,21.370825],[-98.515721,21.37143],[-98.515752,21.37229],[-98.515231,21.372952],[-98.514312,21.373596],[-98.513314,21.374192],[-98.513004,21.374692],[-98.513034,21.375486],[-98.513236,21.376003],[-98.513254,21.376672],[-98.512931,21.377068],[-98.511884,21.377258],[-98.510617,21.377745],[-98.509526,21.377971],[-98.508683,21.378393],[-98.506772,21.380074],[-98.505692,21.381191],[-98.505173,21.381662],[-98.504954,21.381997],[-98.505063,21.382621],[-98.506585,21.384466],[-98.506884,21.385008],[-98.507133,21.385738],[-98.507082,21.386161],[-98.506102,21.386596],[-98.50561,21.387267],[-98.505184,21.38866],[-98.50473,21.389213],[-98.504349,21.389363],[-98.504347,21.389905],[-98.504233,21.390117],[-98.50375,21.390407],[-98.503464,21.390729],[-98.503353,21.391191],[-98.503379,21.391869],[-98.503573,21.392261],[-98.504408,21.392577],[-98.505157,21.393883],[-98.5055,21.393948],[-98.505531,21.394185],[-98.505126,21.394586],[-98.505383,21.395027],[-98.505892,21.395115],[-98.506225,21.394831],[-98.506554,21.393977],[-98.506534,21.393239],[-98.506661,21.392769],[-98.50655,21.391952],[-98.507339,21.39162],[-98.507674,21.391621],[-98.507924,21.391935],[-98.508089,21.392509],[-98.508086,21.393527],[-98.508196,21.393814],[-98.508809,21.393946],[-98.509074,21.394232],[-98.508905,21.394753],[-98.507982,21.395585],[-98.507632,21.395961],[-98.507951,21.396342],[-98.508425,21.396343],[-98.50864,21.396121],[-98.50931,21.39576],[-98.509676,21.395683],[-98.509792,21.396267],[-98.50979,21.396743],[-98.509371,21.397319],[-98.509397,21.397624],[-98.509812,21.398616],[-98.510191,21.399007],[-98.510508,21.398958],[-98.51073,21.399219],[-98.510394,21.399557],[-98.510226,21.399922],[-98.510354,21.400336],[-98.510889,21.400161],[-98.511013,21.400721],[-98.510761,21.400926],[-98.510539,21.401426],[-98.510537,21.401955],[-98.512425,21.401578],[-98.512427,21.401049],[-98.512208,21.400607],[-98.513098,21.400384],[-98.513365,21.400491],[-98.513795,21.400227],[-98.514254,21.400112],[-98.515072,21.400085],[-98.515606,21.400352],[-98.517428,21.401063],[-98.518937,21.401097],[-98.519188,21.401304],[-98.519249,21.401863],[-98.519027,21.402274],[-98.518839,21.402068],[-98.518305,21.402096],[-98.518052,21.402507],[-98.518245,21.40312],[-98.517929,21.403561],[-98.51818,21.403944],[-98.518871,21.404152],[-98.519596,21.403713],[-98.520947,21.40407],[-98.521636,21.404749],[-98.521792,21.405396],[-98.521664,21.405838],[-98.521318,21.406101],[-98.521001,21.40666],[-98.520716,21.407424],[-98.520713,21.408336],[-98.520802,21.409867],[-98.521051,21.410633],[-98.521616,21.411105],[-98.521424,21.411929],[-98.520888,21.412575],[-98.520949,21.413046],[-98.520852,21.414017],[-98.520535,21.414634],[-98.520798,21.415891],[-98.519298,21.415502],[-98.52011,21.419571],[-98.520255,21.421314],[-98.519999,21.422407],[-98.521644,21.422673],[-98.522267,21.423603],[-98.522413,21.424598],[-98.522817,21.424788],[-98.522906,21.425143],[-98.522532,21.425988],[-98.522263,21.426312],[-98.522095,21.42728],[-98.521802,21.427616],[-98.521556,21.428823],[-98.521294,21.429046],[-98.521502,21.429824],[-98.521443,21.430605],[-98.521561,21.430965],[-98.521503,21.431406],[-98.52171,21.432205],[-98.521711,21.432721],[-98.52254,21.434485],[-98.522949,21.435014],[-98.522656,21.435465],[-98.522388,21.436972],[-98.522655,21.437088],[-98.523282,21.437677],[-98.522995,21.438485],[-98.523358,21.43921],[-98.524641,21.440164],[-98.523614,21.440851],[-98.523073,21.441334],[-98.521809,21.442588],[-98.520949,21.443177],[-98.520748,21.443502],[-98.520355,21.444684],[-98.520296,21.445279],[-98.51992,21.446277],[-98.519899,21.446507],[-98.521331,21.448272],[-98.519933,21.449585],[-98.521825,21.450551],[-98.521693,21.452009],[-98.521165,21.453602],[-98.521035,21.454335],[-98.520765,21.454718],[-98.520347,21.454943],[-98.519433,21.455614],[-98.519919,21.456185],[-98.52054,21.457522],[-98.520366,21.457805],[-98.519981,21.458064],[-98.519866,21.458535],[-98.51879,21.459457],[-98.518169,21.459813],[-98.51789,21.459677],[-98.517624,21.458855],[-98.517588,21.45741],[-98.517099,21.457429],[-98.516808,21.458107],[-98.517052,21.459275],[-98.516913,21.460702],[-98.518301,21.462782],[-98.519401,21.466166],[-98.52034,21.467813],[-98.52143,21.469426],[-98.525149,21.474186],[-98.526259,21.475576],[-98.525682,21.476101],[-98.526643,21.478181],[-98.527018,21.478499],[-98.529823,21.481548],[-98.530294,21.481954],[-98.531407,21.483557],[-98.533405,21.48676],[-98.534015,21.488813],[-98.5356,21.492465],[-98.535893,21.493853],[-98.535338,21.495102],[-98.534239,21.497112],[-98.532256,21.50114],[-98.533672,21.502775],[-98.53696,21.505868],[-98.540582,21.507625],[-98.541745,21.50901],[-98.542505,21.509971],[-98.542462,21.510969],[-98.542741,21.511988],[-98.5429,21.512792],[-98.543028,21.513831],[-98.54586,21.514404],[-98.547537,21.514841],[-98.549352,21.514754],[-98.551038,21.514834],[-98.551826,21.515031],[-98.552659,21.515501],[-98.553125,21.516076],[-98.553804,21.516136],[-98.554395,21.516776],[-98.554941,21.517602],[-98.555223,21.518896],[-98.556417,21.520945],[-98.55681,21.521424],[-98.557452,21.521978],[-98.560434,21.52174],[-98.561207,21.522126],[-98.561947,21.521972],[-98.56259,21.52213],[-98.563425,21.521887],[-98.563545,21.521508],[-98.563213,21.521052],[-98.564024,21.520663],[-98.565051,21.520086],[-98.566002,21.520846],[-98.566477,21.521338],[-98.567453,21.521897],[-98.567761,21.522322],[-98.56831,21.522234],[-98.56886,21.521678],[-98.56902,21.522194],[-98.569287,21.522335],[-98.569664,21.522091],[-98.570164,21.522404],[-98.570403,21.522867],[-98.571335,21.523357],[-98.570903,21.523734],[-98.571164,21.524158],[-98.571807,21.524516],[-98.572261,21.524228],[-98.573213,21.524475],[-98.574401,21.525748],[-98.57495,21.52575],[-98.57557,21.525551],[-98.57607,21.525708],[-98.57614,21.526109],[-98.575853,21.52671],[-98.575899,21.527156],[-98.576427,21.527054],[-98.576877,21.526713],[-98.577493,21.526674],[-98.578396,21.526869],[-98.57923,21.526871],[-98.579634,21.527162],[-98.579883,21.527921],[-98.579867,21.529191],[-98.580486,21.529415],[-98.581234,21.529479],[-98.581199,21.530108],[-98.581745,21.5308],[-98.58265,21.531382],[-98.582789,21.532541],[-98.583715,21.533858],[-98.584379,21.535308],[-98.585075,21.535772],[-98.585582,21.535617],[-98.585872,21.535033],[-98.586174,21.533884],[-98.586453,21.533772],[-98.58753,21.533578],[-98.588336,21.535251],[-98.589146,21.535276],[-98.589885,21.535389],[-98.590408,21.535836],[-98.591612,21.53625],[-98.591597,21.536909],[-98.591844,21.537239],[-98.592272,21.53724],[-98.592879,21.536875],[-98.593913,21.537111],[-98.594198,21.537245],[-98.594873,21.53788],[-98.596406,21.538217],[-98.597297,21.538219],[-98.598189,21.537888],[-98.598475,21.537922],[-98.598901,21.538323],[-98.599043,21.538723],[-98.599292,21.538791],[-98.600042,21.538459],[-98.600719,21.538827],[-98.600968,21.539061],[-98.601464,21.539962],[-98.602247,21.540431],[-98.602175,21.540764],[-98.601783,21.540796],[-98.600927,21.540694],[-98.600641,21.54096],[-98.60064,21.541327],[-98.600854,21.541561],[-98.60142,21.543129],[-98.602167,21.543597],[-98.602531,21.544357],[-98.602387,21.544756],[-98.601779,21.545488],[-98.6011,21.545987],[-98.601097,21.54702],[-98.600881,21.547786],[-98.600772,21.548652],[-98.600593,21.548852],[-98.599626,21.549152],[-98.59917,21.54943],[-98.598923,21.549872],[-98.598816,21.550429],[-98.599098,21.55131],[-98.599325,21.551548],[-98.600481,21.551938],[-98.600514,21.552738],[-98.600154,21.55397],[-98.600118,21.554403],[-98.600259,21.55467],[-98.60058,21.554771],[-98.601685,21.554873],[-98.602433,21.555442],[-98.602789,21.555409],[-98.603361,21.555111],[-98.603898,21.554145],[-98.604435,21.553613],[-98.605005,21.553548],[-98.606145,21.554184],[-98.607781,21.555788],[-98.607314,21.556953],[-98.606921,21.557186],[-98.605851,21.557483],[-98.605885,21.557783],[-98.60617,21.558217],[-98.606204,21.558517],[-98.605954,21.558917],[-98.605952,21.55955],[-98.605701,21.559983],[-98.60524,21.559969],[-98.60449,21.560201],[-98.603703,21.561166],[-98.603702,21.561566],[-98.603487,21.561998],[-98.603522,21.562232],[-98.603878,21.562466],[-98.604413,21.562601],[-98.605019,21.562435],[-98.60527,21.562203],[-98.60552,21.561737],[-98.605913,21.561604],[-98.606234,21.561738],[-98.606553,21.562172],[-98.606981,21.562273],[-98.60748,21.562608],[-98.607621,21.562875],[-98.60762,21.563508],[-98.608296,21.564387],[-98.608223,21.564753],[-98.60783,21.565319],[-98.607436,21.565618],[-98.606866,21.565683],[-98.60651,21.565416],[-98.605832,21.565414],[-98.605366,21.566247],[-98.605294,21.56658],[-98.6054,21.566913],[-98.605756,21.567347],[-98.606041,21.567381],[-98.606434,21.567182],[-98.606755,21.567183],[-98.608037,21.567653],[-98.608037,21.567819],[-98.607465,21.568351],[-98.607463,21.568951],[-98.607676,21.569452],[-98.608139,21.569753],[-98.608782,21.570337],[-98.609137,21.571005],[-98.6091,21.571638],[-98.608884,21.572271],[-98.608918,21.572904],[-98.60906,21.573304],[-98.609094,21.573838],[-98.609307,21.574138],[-98.609735,21.574372],[-98.609526,21.57479],[-98.610291,21.575631],[-98.610857,21.575928],[-98.611711,21.575976],[-98.612151,21.57584],[-98.613105,21.575158],[-98.613397,21.575227],[-98.613494,21.575456],[-98.613419,21.576231],[-98.613149,21.576915],[-98.612758,21.57721],[-98.612708,21.577575],[-98.61302,21.579309],[-98.61341,21.579858],[-98.613947,21.579699],[-98.614266,21.579244],[-98.6149,21.579337],[-98.615413,21.579178],[-98.615658,21.5787],[-98.616,21.578609],[-98.616965,21.578942],[-98.617649,21.578761],[-98.618161,21.578831],[-98.618526,21.579311],[-98.61872,21.579767],[-98.619402,21.580408],[-98.619718,21.581161],[-98.619983,21.582371],[-98.620103,21.583215],[-98.620273,21.583398],[-98.62176,21.584063],[-98.622467,21.584429],[-98.622942,21.584583],[-98.624625,21.584792],[-98.625284,21.585067],[-98.625747,21.585456],[-98.625817,21.586414],[-98.62567,21.586893],[-98.625279,21.586938],[-98.62484,21.586731],[-98.624522,21.586868],[-98.623814,21.586889],[-98.623057,21.587275],[-98.622544,21.587433],[-98.621332,21.587478],[-98.620756,21.587607],[-98.620506,21.588241],[-98.620723,21.589291],[-98.621281,21.590456],[-98.621988,21.591165],[-98.622719,21.591394],[-98.624891,21.591696],[-98.625427,21.592039],[-98.625652,21.592596],[-98.624193,21.593392],[-98.623585,21.594206],[-98.623268,21.595192],[-98.623226,21.596049],[-98.622988,21.596795],[-98.621392,21.598706],[-98.620557,21.599545],[-98.620156,21.600112],[-98.619616,21.601199],[-98.619354,21.602461],[-98.619281,21.603289],[-98.619262,21.604408],[-98.619326,21.606828],[-98.619251,21.611041],[-98.619207,21.612396],[-98.619226,21.615146],[-98.619343,21.61649],[-98.619874,21.621304],[-98.620315,21.623713],[-98.620659,21.625327],[-98.620793,21.626378],[-98.621127,21.627822],[-98.621556,21.628398],[-98.62189,21.628654],[-98.622578,21.62896],[-98.626188,21.630409],[-98.626719,21.63049],[-98.628051,21.630477],[-98.628963,21.630083],[-98.631095,21.628278],[-98.632317,21.627351],[-98.633322,21.626834],[-98.634258,21.62641],[-98.634928,21.626259],[-98.63587,21.626432],[-98.638835,21.627409],[-98.641297,21.628375],[-98.642223,21.628818],[-98.642962,21.629442],[-98.643513,21.630491],[-98.6437,21.631269],[-98.643521,21.631928],[-98.642875,21.632315],[-98.641237,21.632707],[-98.639968,21.633163],[-98.639412,21.633483],[-98.638322,21.634283],[-98.637853,21.634687],[-98.637259,21.635379],[-98.63569,21.638875],[-98.633744,21.642589],[-98.633382,21.644033],[-98.633276,21.645896],[-98.633412,21.646975],[-98.634019,21.650512],[-98.633989,21.651603],[-98.633869,21.652664],[-98.63357,21.65339],[-98.633222,21.653888],[-98.632277,21.654338],[-98.631504,21.654618],[-98.629986,21.654812],[-98.62922,21.654698],[-98.627035,21.654069],[-98.625002,21.65319],[-98.624322,21.652962],[-98.622692,21.652577],[-98.621945,21.652561],[-98.62115,21.652795],[-98.620562,21.653073],[-98.619353,21.654184],[-98.618654,21.654777],[-98.617443,21.655647],[-98.616646,21.656877],[-98.616623,21.65712],[-98.616889,21.657582],[-98.616882,21.657855],[-98.616089,21.658821],[-98.615714,21.659482],[-98.615208,21.660185],[-98.614913,21.660879],[-98.614192,21.662992],[-98.613901,21.663578],[-98.61341,21.664166],[-98.612604,21.664934],[-98.611099,21.665823],[-98.610075,21.666535],[-98.60947,21.667229],[-98.609172,21.668179],[-98.609229,21.668813],[-98.609501,21.669639],[-98.609833,21.670261],[-98.610276,21.670852],[-98.611403,21.671867],[-98.611984,21.672051],[-98.613135,21.672128],[-98.614069,21.672097],[-98.61517,21.671968],[-98.617891,21.671464],[-98.619479,21.671322],[-98.621525,21.671469],[-98.623091,21.671794],[-98.623362,21.671903],[-98.624443,21.67261],[-98.624962,21.673065],[-98.625722,21.674124],[-98.625911,21.674607],[-98.625903,21.675649],[-98.62544,21.67733],[-98.624876,21.678662],[-98.624285,21.679623],[-98.623658,21.680515],[-98.622903,21.68142],[-98.621997,21.682383],[-98.620842,21.683177],[-98.620027,21.683586],[-98.61905,21.683872],[-98.617837,21.684068],[-98.616687,21.68394],[-98.616143,21.683757],[-98.61562,21.683438],[-98.615209,21.683036],[-98.61399,21.681318],[-98.612962,21.679979],[-98.610642,21.677535],[-98.608749,21.676033],[-98.60418,21.672739],[-98.60188,21.671119],[-98.600652,21.670336],[-98.598558,21.669169],[-98.597788,21.66888],[-98.597014,21.668696],[-98.596382,21.668712],[-98.59573,21.668834],[-98.594536,21.669277],[-98.593859,21.669366],[-98.592847,21.669302],[-98.591875,21.669079],[-98.59088,21.669024],[-98.589523,21.669128],[-98.58888,21.669331],[-98.585986,21.670378],[-98.582342,21.671972],[-98.581558,21.671985],[-98.580712,21.671802],[-98.579879,21.671783],[-98.579201,21.671948],[-98.578891,21.672121],[-98.577954,21.673013],[-98.577336,21.673359],[-98.575461,21.674516],[-98.574133,21.675624],[-98.573303,21.676497],[-98.57259,21.67741],[-98.571001,21.679196],[-98.570733,21.679654],[-98.570202,21.680946],[-98.569525,21.682324],[-98.569327,21.682544],[-98.568286,21.683075],[-98.567051,21.683458],[-98.565534,21.683783],[-98.564493,21.68373],[-98.564159,21.683618],[-98.563023,21.682873],[-98.562173,21.682839],[-98.561738,21.682919],[-98.561053,21.683324],[-98.560578,21.683717],[-98.560197,21.684173],[-98.558714,21.686679],[-98.558255,21.687672],[-98.55775,21.689754],[-98.557733,21.690397],[-98.557853,21.691374],[-98.558201,21.692205],[-98.558444,21.692968],[-98.558632,21.693956],[-98.55867,21.695555],[-98.558482,21.697612],[-98.558069,21.699692],[-98.557937,21.700913],[-98.55809,21.701953],[-98.558362,21.702789],[-98.559289,21.704143],[-98.560585,21.705453],[-98.561063,21.705841],[-98.56188,21.706312],[-98.563073,21.706762],[-98.563975,21.706958],[-98.564943,21.707023],[-98.566854,21.706934],[-98.568185,21.706906],[-98.569795,21.706942],[-98.570263,21.707011],[-98.570773,21.707256],[-98.571598,21.708033],[-98.571991,21.708611],[-98.572212,21.70916],[-98.572348,21.709796],[-98.572373,21.711],[-98.572305,21.711444],[-98.57205,21.712214],[-98.571612,21.713084],[-98.571138,21.71372],[-98.570018,21.714858],[-98.569517,21.715515],[-98.567884,21.71681],[-98.567435,21.717368],[-98.567116,21.717572],[-98.566382,21.717734],[-98.565826,21.717705],[-98.564634,21.71737],[-98.563455,21.717197],[-98.560934,21.717173],[-98.559485,21.717352],[-98.556651,21.718329],[-98.55535,21.718836],[-98.554732,21.71894],[-98.553146,21.71905],[-98.551825,21.719353],[-98.550856,21.719863],[-98.550139,21.720767],[-98.549557,21.721847],[-98.548876,21.722918],[-98.548044,21.723532],[-98.547094,21.723913],[-98.545982,21.724003],[-98.545244,21.723929],[-98.543841,21.723394],[-98.542917,21.722755],[-98.542546,21.7222],[-98.542367,21.721391],[-98.542281,21.718534],[-98.542281,21.717863],[-98.542028,21.716937],[-98.541116,21.715838],[-98.540199,21.714969],[-98.538775,21.713961],[-98.537648,21.713235],[-98.537443,21.712919],[-98.536769,21.711581],[-98.535861,21.70911],[-98.535662,21.708477],[-98.535681,21.707732],[-98.535827,21.707139],[-98.535872,21.70653],[-98.535448,21.704963],[-98.535133,21.704238],[-98.533496,21.70168],[-98.533113,21.701042],[-98.533158,21.700779],[-98.533179,21.698446],[-98.532905,21.697587],[-98.532666,21.69739],[-98.53199,21.697176],[-98.531259,21.697143],[-98.530742,21.697275],[-98.528326,21.698479],[-98.527829,21.698874],[-98.526564,21.700302],[-98.525583,21.701163],[-98.524645,21.702152],[-98.523721,21.703277],[-98.522441,21.705177],[-98.521516,21.70635],[-98.520506,21.70924],[-98.520445,21.709621],[-98.520532,21.710231],[-98.520871,21.710971],[-98.521708,21.712208],[-98.52239,21.713112],[-98.523246,21.713657],[-98.524661,21.714322],[-98.526592,21.71512],[-98.527112,21.715275],[-98.527979,21.715391],[-98.528721,21.715419],[-98.529901,21.715303],[-98.531047,21.715018],[-98.531939,21.714644],[-98.532382,21.714344],[-98.533632,21.713272],[-98.534809,21.713274],[-98.535408,21.71336],[-98.536411,21.713657],[-98.536796,21.71389],[-98.537183,21.714678],[-98.537545,21.715618],[-98.538304,21.717802],[-98.538376,21.718165],[-98.538321,21.718715],[-98.538051,21.719625],[-98.53772,21.720271],[-98.537411,21.720624],[-98.536272,21.721519],[-98.535464,21.721795],[-98.534716,21.721978],[-98.533553,21.722178],[-98.532349,21.722298],[-98.530228,21.722266],[-98.527524,21.721751],[-98.526149,21.721306],[-98.524694,21.720609],[-98.524223,21.720193],[-98.523481,21.719052],[-98.52307,21.718204],[-98.52262,21.717576],[-98.521821,21.716648],[-98.521326,21.716188],[-98.520851,21.715964],[-98.520272,21.715833],[-98.519638,21.715842],[-98.51843,21.716063],[-98.517636,21.716376],[-98.516674,21.716851],[-98.515838,21.717363],[-98.515308,21.717765],[-98.513588,21.719679],[-98.512971,21.7204],[-98.512762,21.720781],[-98.512742,21.72155],[-98.512845,21.721937],[-98.51358,21.723234],[-98.513726,21.724179],[-98.513648,21.724898],[-98.513277,21.726058],[-98.512665,21.726602],[-98.51206,21.726907],[-98.511025,21.727308],[-98.508504,21.728385],[-98.507887,21.728584],[-98.507058,21.728724],[-98.506361,21.728735],[-98.505183,21.728628],[-98.504702,21.728524],[-98.504084,21.728218],[-98.503403,21.727592],[-98.50285,21.726749],[-98.501348,21.726376],[-98.500339,21.72639],[-98.499588,21.726618],[-98.498946,21.727243],[-98.498643,21.728064],[-98.498448,21.72932],[-98.49865,21.730848],[-98.498861,21.731286],[-98.499487,21.73208],[-98.499862,21.732408],[-98.500538,21.732762],[-98.50162,21.733013],[-98.502566,21.733072],[-98.50321,21.733048],[-98.504252,21.73316],[-98.50499,21.733384],[-98.505299,21.733657],[-98.505722,21.734434],[-98.505722,21.735645],[-98.505559,21.736439],[-98.505178,21.73708],[-98.504219,21.738048],[-98.503008,21.738737],[-98.500954,21.739207],[-98.50005,21.73929],[-98.499423,21.739069],[-98.49804,21.738201],[-98.497303,21.73751],[-98.496446,21.736118],[-98.496067,21.735757],[-98.495257,21.735303],[-98.494782,21.735199],[-98.49355,21.735119],[-98.492509,21.735002],[-98.491485,21.735061],[-98.490667,21.735333],[-98.489666,21.735797],[-98.489247,21.736088],[-98.488712,21.736605],[-98.487089,21.738055],[-98.485833,21.738918],[-98.485046,21.739262],[-98.484114,21.739537],[-98.482619,21.739751],[-98.482012,21.740028],[-98.481681,21.740352],[-98.479563,21.743003],[-98.479125,21.743605],[-98.478326,21.744308],[-98.476924,21.745219],[-98.476395,21.745891],[-98.475999,21.746608],[-98.475821,21.7474],[-98.475793,21.748052],[-98.475975,21.74872],[-98.476396,21.749196],[-98.476821,21.749527],[-98.477449,21.749718],[-98.478446,21.749824],[-98.479124,21.749808],[-98.480328,21.74967],[-98.482046,21.749651],[-98.483093,21.750007],[-98.483756,21.750595],[-98.483883,21.751241],[-98.48387,21.751739],[-98.483726,21.752171],[-98.482434,21.755039],[-98.481367,21.757461],[-98.48069,21.75925],[-98.480093,21.760199],[-98.479392,21.76086],[-98.478513,21.761413],[-98.477497,21.761872],[-98.476295,21.762334],[-98.475938,21.76242],[-98.47207,21.762519],[-98.471298,21.76272],[-98.470783,21.763054],[-98.470226,21.763572],[-98.469658,21.764492],[-98.469395,21.765097],[-98.46907,21.766123],[-98.468653,21.768793],[-98.468419,21.769687],[-98.467868,21.770458],[-98.467309,21.770841],[-98.466627,21.770918],[-98.465752,21.77084],[-98.464767,21.770241],[-98.464031,21.769555],[-98.463263,21.768708],[-98.462626,21.767904],[-98.462127,21.767166],[-98.461739,21.766408],[-98.46139,21.765581],[-98.460917,21.764213],[-98.460707,21.763735],[-98.45991,21.762553],[-98.459447,21.762311],[-98.458718,21.762341],[-98.457796,21.762596],[-98.456991,21.763154],[-98.456585,21.763548],[-98.455285,21.765051],[-98.454926,21.765539],[-98.454723,21.766012],[-98.454717,21.766738],[-98.455257,21.767777],[-98.455888,21.769193],[-98.456372,21.770046],[-98.458062,21.772083],[-98.460333,21.774658],[-98.461863,21.777114],[-98.462336,21.778414],[-98.462621,21.77977],[-98.462688,21.781454],[-98.462533,21.783579],[-98.46219,21.785341],[-98.461786,21.786567],[-98.461576,21.787034],[-98.461461,21.788498],[-98.461553,21.789531],[-98.461723,21.790071],[-98.462365,21.791276],[-98.46297,21.79219],[-98.463817,21.793331],[-98.4646,21.794037],[-98.465521,21.794589],[-98.467936,21.796272],[-98.469437,21.79703],[-98.471664,21.798052],[-98.473099,21.798838],[-98.473895,21.799453],[-98.474631,21.800329],[-98.475236,21.801279],[-98.475959,21.803054],[-98.476337,21.804401],[-98.476491,21.805537],[-98.47649,21.805981],[-98.476264,21.80758],[-98.475499,21.810205],[-98.474757,21.8124],[-98.474691,21.813355],[-98.475038,21.814192],[-98.475923,21.814863],[-98.476848,21.815205],[-98.477459,21.815345],[-98.478552,21.815406],[-98.480152,21.815298],[-98.481897,21.815006],[-98.483888,21.81447],[-98.485304,21.813928],[-98.486203,21.813373],[-98.487229,21.812606],[-98.488053,21.812094],[-98.48906,21.811574],[-98.489937,21.811391],[-98.490433,21.811414],[-98.491393,21.811741],[-98.491891,21.81217],[-98.492773,21.813289],[-98.493119,21.81394],[-98.493352,21.814759],[-98.493473,21.816151],[-98.493334,21.81821],[-98.493287,21.820053],[-98.493139,21.821544],[-98.492972,21.822388],[-98.492326,21.824356],[-98.490928,21.827742],[-98.489397,21.829733],[-98.487749,21.83151],[-98.486617,21.832625],[-98.485913,21.833556],[-98.48559,21.834259],[-98.485509,21.834826],[-98.485606,21.835295],[-98.486053,21.835977],[-98.486633,21.836575],[-98.487659,21.837243],[-98.488563,21.837734],[-98.489457,21.837997],[-98.491682,21.838276],[-98.492902,21.83836],[-98.494324,21.83835],[-98.495054,21.838167],[-98.495769,21.837728],[-98.496474,21.837045],[-98.497397,21.836268],[-98.498967,21.835221],[-98.499846,21.834521],[-98.500785,21.833701],[-98.502009,21.832489],[-98.502697,21.831878],[-98.504429,21.830126],[-98.505512,21.828921],[-98.506493,21.827691],[-98.509342,21.824448],[-98.510458,21.823781],[-98.51168,21.823483],[-98.513117,21.823554],[-98.514481,21.823893],[-98.515555,21.824902],[-98.516413,21.826178],[-98.517198,21.827756],[-98.517946,21.829702],[-98.518479,21.831447],[-98.518743,21.832917],[-98.520016,21.838921],[-98.520938,21.842644],[-98.521755,21.845495],[-98.522789,21.847744],[-98.523835,21.849955],[-98.524656,21.851599],[-98.526368,21.855693],[-98.52665,21.857203],[-98.527252,21.859886],[-98.527499,21.861361],[-98.528107,21.862268],[-98.528858,21.863175],[-98.52997,21.863782],[-98.530976,21.863952],[-98.532319,21.863565],[-98.533351,21.862886],[-98.534862,21.862354],[-98.538926,21.861159],[-98.544575,21.858879],[-98.545612,21.858591],[-98.546787,21.858683],[-98.547772,21.859276],[-98.548034,21.860105],[-98.547933,21.860794],[-98.546872,21.862743],[-98.546077,21.864014],[-98.54445,21.867228],[-98.542899,21.869067],[-98.541599,21.871041],[-98.540804,21.872513],[-98.540441,21.873484],[-98.540185,21.875452],[-98.540289,21.876626],[-98.540859,21.878035],[-98.542287,21.88119],[-98.54393,21.884379],[-98.544894,21.886392],[-98.545179,21.887198],[-98.545284,21.888036],[-98.545137,21.88894],[-98.544847,21.889912],[-98.54418,21.891278],[-98.543421,21.892449],[-98.54205,21.894222],[-98.541077,21.894923],[-98.540321,21.89539],[-98.538772,21.896425],[-98.538231,21.897094],[-98.537977,21.897763],[-98.537758,21.898768],[-98.537862,21.900009],[-98.538003,21.901082],[-98.538323,21.902021],[-98.538573,21.902558],[-98.538712,21.903966],[-98.538745,21.904771],[-98.538203,21.905808],[-98.537591,21.906209],[-98.536763,21.906441],[-98.535756,21.906539],[-98.534678,21.906435],[-98.533638,21.905829],[-98.532311,21.904887],[-98.530159,21.903439],[-98.528115,21.901892],[-98.526324,21.900144],[-98.524125,21.898623],[-98.522399,21.897606],[-98.521338,21.897163],[-98.520201,21.896986],[-98.51902,21.897164],[-98.518207,21.897769],[-98.516983,21.898843],[-98.515968,21.89983],[-98.515211,21.900431],[-98.513913,21.901634],[-98.512865,21.903072],[-98.51189,21.904544],[-98.511382,21.905816],[-98.51091,21.907189],[-98.510798,21.908697],[-98.510864,21.910306],[-98.511003,21.911714],[-98.511357,21.913224],[-98.511928,21.9146],[-98.513022,21.916485],[-98.513829,21.9171],[-98.51489,21.917636],[-98.515722,21.91774],[-98.516586,21.917504],[-98.517342,21.91703],[-98.518393,21.916194],[-98.519221,21.915761],[-98.522998,21.914867],[-98.524923,21.914551],[-98.526508,21.914992],[-98.528619,21.916122],[-98.529933,21.917076],[-98.53144,21.918024],[-98.533105,21.918814],[-98.534937,21.919088],[-98.536591,21.918958],[-98.53857,21.918662],[-98.541016,21.917965],[-98.544074,21.917404],[-98.545221,21.917154],[-98.545874,21.917348],[-98.546325,21.917918],[-98.546556,21.918611],[-98.546584,21.919298],[-98.546473,21.920192],[-98.546254,21.921197],[-98.545673,21.92314],[-98.545451,21.925251],[-98.545084,21.927361],[-98.544753,21.92974],[-98.544136,21.931582],[-98.543847,21.932117],[-98.543378,21.932652],[-98.540967,21.93335],[-98.539311,21.934049],[-98.537512,21.93458],[-98.535785,21.934843],[-98.534347,21.934873],[-98.531077,21.934428],[-98.528277,21.933822],[-98.521057,21.932025],[-98.517286,21.930841],[-98.51348,21.929589],[-98.511254,21.928577],[-98.508598,21.927396],[-98.506338,21.926049],[-98.502571,21.923658],[-98.501243,21.923084],[-98.500452,21.923149],[-98.49984,21.923515],[-98.499154,21.924251],[-98.498792,21.925054],[-98.498645,21.926026],[-98.49882,21.927434],[-98.499389,21.929178],[-98.500351,21.931461],[-98.501709,21.934046],[-98.503146,21.936626],[-98.505793,21.940455],[-98.50708,21.94247],[-98.509585,21.946131],[-98.510945,21.947912],[-98.512342,21.949491],[-98.513704,21.950534],[-98.514521,21.950991],[-98.515597,21.951268],[-98.516993,21.951243],[-98.518336,21.950918],[-98.51942,21.950819],[-98.520728,21.950609],[-98.52222,21.950322],[-98.523773,21.950195],[-98.526325,21.950336],[-98.529129,21.950579],[-98.530604,21.950315],[-98.531576,21.949916],[-98.532608,21.948937],[-98.533258,21.948201],[-98.534415,21.946127],[-98.535608,21.944186],[-98.536838,21.94181],[-98.537957,21.940338],[-98.539112,21.939101],[-98.540625,21.937999],[-98.542138,21.937132],[-98.543975,21.936266],[-98.545127,21.935766],[-98.547142,21.935034],[-98.54923,21.934336],[-98.551281,21.933738],[-98.553289,21.933424],[-98.554007,21.933477],[-98.554994,21.933789],[-98.555815,21.934298],[-98.556807,21.934722],[-98.558028,21.935103],[-98.560812,21.93589],[-98.563631,21.936929],[-98.56602,21.937644],[-98.568693,21.938974],[-98.570631,21.940466],[-98.571922,21.94171],[-98.573559,21.943041],[-98.574718,21.944499],[-98.575613,21.945708],[-98.576471,21.947386],[-98.577112,21.949633],[-98.577654,21.953352],[-98.577935,21.955599],[-98.578397,21.957511],[-98.578931,21.959389],[-98.57932,21.961435],[-98.579243,21.963144],[-98.579131,21.964752],[-98.578839,21.966092],[-98.578081,21.967029],[-98.577251,21.967932],[-98.576436,21.968374],[-98.575751,21.968842],[-98.574851,21.969141],[-98.573269,21.969171],[-98.570572,21.968963],[-98.567049,21.968652],[-98.564497,21.968243],[-98.562559,21.967731],[-98.560958,21.96699],[-98.558788,21.965647],[-98.554518,21.962451],[-98.552042,21.960869],[-98.550665,21.96075],[-98.549415,21.961213],[-98.547265,21.962715],[-98.546182,21.963411],[-98.543731,21.965281],[-98.537314,21.970224],[-98.534646,21.972361],[-98.53169,21.974666],[-98.526644,21.97817],[-98.523583,21.979335],[-98.522,21.979431],[-98.520384,21.978923],[-98.518851,21.978009],[-98.517381,21.976831],[-98.515517,21.975016],[-98.512542,21.972191],[-98.508488,21.96923],[-98.50465,21.966638],[-98.500307,21.964044],[-98.497032,21.962152],[-98.495144,21.961105],[-98.494262,21.960724],[-98.493203,21.960412],[-98.492068,21.960146],[-98.491009,21.959976],[-98.487271,21.959532],[-98.484718,21.959624],[-98.479997,21.959916],[-98.477645,21.960303],[-98.47681,21.960582],[-98.476075,21.960978],[-98.474075,21.961697],[-98.472782,21.962444],[-98.472149,21.9627],[-98.471261,21.963284],[-98.468806,21.964601],[-98.46809,21.965481],[-98.468591,21.96605],[-98.468615,21.966205],[-98.481994,21.982999],[-98.481418,21.985956],[-98.479891,21.988983],[-98.481476,21.990514],[-98.476286,21.999573],[-98.476153,21.99549],[-98.476209,21.994395],[-98.476074,21.99389],[-98.473517,21.988946],[-98.472998,21.988382],[-98.472334,21.987974],[-98.471617,21.988042],[-98.471181,21.988428],[-98.470403,21.989831],[-98.469972,21.990397],[-98.469345,21.99053],[-98.468591,21.990493],[-98.466405,21.989888],[-98.465541,21.989877],[-98.465014,21.990068],[-98.464673,21.990556],[-98.464205,21.990636],[-98.463576,21.990987],[-98.462429,21.996176],[-98.461121,21.995743],[-98.459544,21.995169],[-98.459502,21.996916],[-98.459423,21.997999],[-98.459452,21.998491],[-98.459393,22.000179],[-98.459312,22.000463],[-98.459623,22.000566],[-98.459505,22.000862],[-98.460191,22.001136],[-98.458408,22.004984],[-98.459464,22.005398],[-98.458918,22.006347],[-98.448193,22.02117],[-98.448847,22.021422],[-98.448256,22.027324],[-98.448064,22.027716],[-98.447405,22.028547],[-98.443746,22.032616],[-98.443549,22.032982],[-98.443303,22.035293],[-98.443188,22.036793],[-98.443403,22.037457],[-98.444398,22.038754],[-98.446306,22.041298],[-98.446467,22.041789],[-98.446414,22.042215],[-98.44513,22.044904],[-98.443467,22.048467],[-98.443134,22.049115],[-98.44253,22.049516],[-98.438908,22.05035],[-98.43514,22.051178],[-98.434649,22.051669],[-98.434556,22.052049],[-98.434288,22.055476],[-98.434223,22.056556],[-98.434375,22.056939],[-98.439299,22.061946],[-98.441278,22.063926],[-98.44123,22.064228],[-98.441866,22.064874],[-98.441131,22.065098],[-98.440731,22.06616],[-98.440022,22.068468],[-98.43973,22.069977],[-98.439722,22.072168],[-98.439684,22.074877],[-98.439452,22.075647],[-98.439004,22.076415],[-98.438454,22.076965],[-98.437898,22.077385],[-98.436503,22.078095],[-98.434767,22.078463],[-98.432818,22.07849],[-98.431514,22.078633],[-98.431068,22.078898],[-98.430714,22.079845],[-98.430743,22.080585],[-98.430993,22.081593],[-98.431687,22.082927],[-98.433236,22.085154],[-98.433351,22.085658],[-98.433234,22.088693],[-98.432838,22.089077],[-98.432387,22.08967],[-98.430972,22.090409],[-98.430221,22.090457],[-98.429345,22.090718],[-98.428538,22.091046],[-98.427818,22.091566],[-98.427403,22.092068],[-98.426925,22.092155],[-98.426129,22.092537],[-98.425554,22.093098],[-98.4237,22.095579],[-98.4229,22.096849],[-98.420831,22.097345],[-98.419081,22.097665],[-98.418825,22.098019],[-98.419014,22.098582],[-98.41918,22.100174],[-98.419526,22.100862],[-98.420894,22.102015],[-98.421449,22.102784],[-98.422111,22.10338],[-98.424046,22.104475],[-98.425321,22.105682],[-98.426628,22.106783],[-98.426896,22.107974],[-98.427627,22.108782],[-98.428118,22.108922],[-98.428639,22.108906],[-98.42973,22.108477],[-98.430257,22.108464],[-98.431861,22.110141],[-98.432372,22.110536],[-98.43367,22.110895],[-98.434489,22.11093],[-98.43614,22.110865],[-98.436755,22.110969],[-98.437905,22.111316],[-98.438322,22.111515],[-98.438737,22.111915],[-98.438862,22.112419],[-98.438857,22.113692],[-98.438665,22.114135],[-98.438248,22.114755],[-98.437305,22.114958],[-98.435969,22.115309],[-98.434555,22.116016],[-98.432716,22.117413],[-98.432258,22.117815],[-98.432279,22.118742],[-98.43243,22.11969],[-98.432109,22.121407],[-98.431526,22.123674],[-98.431233,22.12545],[-98.431358,22.126013],[-98.432054,22.126933],[-98.43221,22.127615],[-98.432017,22.128265],[-98.431566,22.12872],[-98.430122,22.129543],[-98.429385,22.130097],[-98.428769,22.130341],[-98.428167,22.130379],[-98.42693,22.130018],[-98.426071,22.130104],[-98.425811,22.130471],[-98.425834,22.130681],[-98.426418,22.131176],[-98.42672,22.131831],[-98.426551,22.132829],[-98.426306,22.133148],[-98.42541,22.133214],[-98.425011,22.132825],[-98.424575,22.132228],[-98.42406,22.132088],[-98.423662,22.132169],[-98.423039,22.132759],[-98.423132,22.13344],[-98.423095,22.133775],[-98.422802,22.134187],[-98.422069,22.134924],[-98.421489,22.135942],[-98.420635,22.13686],[-98.420526,22.137478],[-98.420639,22.138313],[-98.42021,22.138666],[-98.419603,22.138736],[-98.419123,22.13897],[-98.417985,22.14031],[-98.417277,22.140733],[-98.416746,22.141203],[-98.415962,22.141555],[-98.415027,22.141813],[-98.413714,22.141953],[-98.413334,22.142211],[-98.411084,22.143382],[-98.35528,22.180288],[-98.350575,22.182367],[-98.349457,22.182893],[-98.344401,22.186474],[-98.342945,22.186439],[-98.336545,22.187693],[-98.334829,22.190241],[-98.334327,22.197109],[-98.33263,22.197556],[-98.330619,22.200946],[-98.330413,22.201344],[-98.331207,22.201597],[-98.333692,22.202025],[-98.334758,22.202479],[-98.33522,22.210012],[-98.3391,22.211656],[-98.342507,22.212945],[-98.344959,22.213962],[-98.343062,22.215893],[-98.345626,22.217314],[-98.346123,22.217032],[-98.347942,22.218331],[-98.352116,22.220727],[-98.352261,22.222799],[-98.347621,22.22274],[-98.346529,22.222481],[-98.344615,22.222089],[-98.343737,22.223115],[-98.335365,22.232607],[-98.334447,22.233575],[-98.329073,22.239509],[-98.326138,22.242811],[-98.325967,22.243053],[-98.332877,22.241772],[-98.344976,22.239646],[-98.345727,22.239796],[-98.348511,22.239233],[-98.351947,22.238583],[-98.352415,22.241158],[-98.352915,22.24107],[-98.35276,22.24016],[-98.356073,22.239499],[-98.35608,22.239531],[-98.359852,22.238788],[-98.359936,22.239274],[-98.36289,22.238748],[-98.363228,22.238899],[-98.363778,22.237931],[-98.364235,22.238033],[-98.364259,22.237286],[-98.36545,22.237583],[-98.365329,22.238344],[-98.36785,22.238216],[-98.369628,22.238097],[-98.369503,22.236061],[-98.371904,22.236086],[-98.372433,22.236063],[-98.374556,22.236079],[-98.370808,22.243766],[-98.369826,22.245935],[-98.367226,22.251324],[-98.368137,22.255373],[-98.372116,22.254615],[-98.375432,22.253967],[-98.376336,22.250829],[-98.377873,22.253028],[-98.37826,22.25343],[-98.381833,22.253335],[-98.382547,22.255882],[-98.386282,22.255964],[-98.398633,22.25612],[-98.405093,22.256076],[-98.405048,22.25653],[-98.404351,22.258282],[-98.404195,22.259166],[-98.404368,22.260169],[-98.404715,22.261196],[-98.405247,22.262078],[-98.40566,22.262483],[-98.405596,22.262812],[-98.404961,22.263224],[-98.404284,22.263825],[-98.403942,22.264332],[-98.4033,22.26546],[-98.403179,22.265961],[-98.403208,22.266385],[-98.403765,22.267234],[-98.404254,22.267562],[-98.404628,22.267541],[-98.40519,22.267152],[-98.405774,22.267176],[-98.406076,22.267568],[-98.406284,22.268025],[-98.406142,22.268524],[-98.406164,22.268872],[-98.406419,22.269351],[-98.405811,22.269566],[-98.404199,22.269647],[-98.401763,22.269675],[-98.401323,22.270025],[-98.400952,22.270712],[-98.40095,22.271093],[-98.401127,22.27216],[-98.400939,22.272475],[-98.400557,22.272649],[-98.399897,22.272756],[-98.399265,22.273257],[-98.398628,22.274072],[-98.397868,22.27477],[-98.396931,22.275044],[-98.396655,22.275971],[-98.396378,22.276262],[-98.399119,22.278083],[-98.39961,22.278087],[-98.400831,22.277462],[-98.401097,22.277464],[-98.40199,22.277933],[-98.402432,22.278248],[-98.40267,22.278716],[-98.40284,22.281405],[-98.402928,22.281834],[-98.403174,22.282219],[-98.403699,22.282543],[-98.406962,22.284132],[-98.407558,22.28421],[-98.408036,22.284115],[-98.412596,22.281491],[-98.421667,22.2761],[-98.424107,22.274619],[-98.424756,22.274268],[-98.42586,22.274257],[-98.428648,22.274456],[-98.430372,22.274603],[-98.430407,22.275472],[-98.430666,22.275796],[-98.431372,22.276023],[-98.432686,22.276323],[-98.433451,22.27657],[-98.433794,22.276844],[-98.434005,22.277534],[-98.433839,22.278244],[-98.433505,22.279244],[-98.433283,22.279719],[-98.432963,22.279968],[-98.432539,22.280116],[-98.429705,22.280219],[-98.429089,22.280508],[-98.42879,22.280908],[-98.427707,22.282995],[-98.4277,22.283455],[-98.427947,22.283848],[-98.429534,22.285291],[-98.432555,22.288157],[-98.432769,22.288804],[-98.432752,22.289189],[-98.433183,22.289301],[-98.434854,22.289598],[-98.435461,22.289881],[-98.437748,22.291716],[-98.438554,22.292629],[-98.439722,22.29412],[-98.442134,22.297997],[-98.446659,22.305621],[-98.454396,22.303931],[-98.45452,22.30392],[-98.456847,22.301962],[-98.457559,22.301324],[-98.458957,22.302921],[-98.459209,22.302692],[-98.461485,22.304886],[-98.464517,22.303466],[-98.46512,22.300795],[-98.465905,22.299977],[-98.46429,22.29798],[-98.465032,22.297291],[-98.464376,22.296689],[-98.464563,22.296554],[-98.466964,22.295759],[-98.467287,22.295537],[-98.468932,22.293981],[-98.469557,22.293231],[-98.470454,22.292495],[-98.475908,22.28864],[-98.476389,22.289288],[-98.476478,22.291237],[-98.47757,22.291247],[-98.477831,22.296214],[-98.479534,22.29626],[-98.480561,22.296984],[-98.48194,22.296729],[-98.481999,22.298517],[-98.481994,22.299438],[-98.486892,22.29892],[-98.486895,22.300234],[-98.487177,22.300963],[-98.487427,22.302596],[-98.487952,22.303506],[-98.491837,22.303587],[-98.492244,22.304861],[-98.495991,22.303682],[-98.496816,22.307697],[-98.498513,22.306762],[-98.502069,22.308759],[-98.503784,22.309701],[-98.505726,22.309006],[-98.505725,22.310379],[-98.506043,22.310376],[-98.50612,22.315974],[-98.515735,22.319155],[-98.515784,22.31881],[-98.525551,22.318835],[-98.525532,22.32329],[-98.525504,22.324272],[-98.525551,22.327985],[-98.535296,22.327998],[-98.535251,22.332542],[-98.535215,22.337878],[-98.537094,22.337889],[-98.537723,22.337472],[-98.539095,22.337458],[-98.539889,22.337906],[-98.554825,22.338011],[-98.554786,22.342556],[-98.564519,22.342572],[-98.564465,22.347507],[-98.571012,22.347211],[-98.57211,22.346584],[-98.572604,22.346423],[-98.573079,22.346441],[-98.573587,22.346611],[-98.574124,22.347139],[-98.574521,22.348619],[-98.576337,22.348609],[-98.579291,22.348628],[-98.57929,22.350701],[-98.580286,22.350701],[-98.580556,22.35115],[-98.580468,22.351787],[-98.580182,22.351919],[-98.579467,22.351944],[-98.579095,22.352102],[-98.578946,22.353011],[-98.578974,22.353348],[-98.579362,22.353867],[-98.580336,22.354076],[-98.580836,22.354336],[-98.581141,22.354932],[-98.581195,22.355527],[-98.580746,22.356419],[-98.580496,22.357192],[-98.580778,22.357824],[-98.581807,22.359024],[-98.582192,22.3596],[-98.582306,22.360103],[-98.582266,22.36057],[-98.581762,22.361144],[-98.58025,22.362218],[-98.579785,22.362648],[-98.57959,22.363043],[-98.579549,22.36387],[-98.579702,22.364589],[-98.579544,22.365595],[-98.578834,22.365937],[-98.579307,22.376483],[-98.579316,22.377757],[-98.579694,22.377537],[-98.580272,22.377013],[-98.582856,22.373053],[-98.598659,22.37309],[-98.598713,22.373171],[-98.613206,22.373162],[-98.618182,22.373178],[-98.618605,22.373156],[-98.624274,22.373152],[-98.637471,22.373135],[-98.637561,22.373088],[-98.647245,22.3731],[-98.658802,22.373139],[-98.662376,22.373187],[-98.676149,22.373197],[-98.67654,22.372805],[-98.681547,22.371575],[-98.681006,22.373249],[-98.681023,22.373418],[-98.672989,22.398296],[-98.670833,22.405357],[-98.670888,22.405673],[-98.671982,22.405944],[-98.672667,22.405895],[-98.673046,22.406052],[-98.673449,22.405846],[-98.673894,22.405875],[-98.673947,22.406261],[-98.673652,22.406672],[-98.674284,22.407197],[-98.674673,22.407007],[-98.67482,22.407323],[-98.674622,22.407782],[-98.674877,22.408018],[-98.675497,22.40774],[-98.675499,22.408376],[-98.675879,22.408325],[-98.676233,22.408463],[-98.676662,22.408933],[-98.677099,22.408927],[-98.677353,22.408369],[-98.67811,22.408229],[-98.678641,22.407994],[-98.678787,22.407737],[-98.678504,22.407475],[-98.67788,22.407412],[-98.677533,22.40704],[-98.677947,22.40663],[-98.678911,22.406696],[-98.679383,22.406204],[-98.679564,22.405686],[-98.680476,22.405726],[-98.680882,22.406225],[-98.68156,22.406198],[-98.681664,22.405883],[-98.682551,22.405704],[-98.68311,22.405297],[-98.683803,22.40523],[-98.684905,22.405471],[-98.685719,22.405315],[-98.686639,22.405027],[-98.687319,22.405108],[-98.687748,22.404538],[-98.688002,22.403943],[-98.688764,22.403436],[-98.690336,22.402738],[-98.691626,22.402711],[-98.692162,22.402837],[-98.692716,22.403212],[-98.693065,22.403612],[-98.693869,22.404238],[-98.694683,22.404106],[-98.695694,22.403645],[-98.696509,22.40315],[-98.696857,22.402481],[-98.696646,22.402043],[-98.69685,22.401774],[-98.697655,22.401925],[-98.698477,22.402322],[-98.698623,22.402707],[-98.69901,22.402621],[-98.699518,22.401952],[-98.699993,22.402236],[-98.70082,22.402573],[-98.701513,22.402132],[-98.701623,22.401607],[-98.701585,22.40054],[-98.701866,22.400193],[-98.702279,22.400157],[-98.703001,22.399451],[-98.703722,22.399502],[-98.704108,22.399999],[-98.704721,22.400211],[-98.705082,22.400062],[-98.705142,22.39912],[-98.705567,22.398884],[-98.706025,22.398775],[-98.706299,22.398427],[-98.707514,22.398057],[-98.708154,22.397253],[-98.709253,22.397307],[-98.710132,22.396796],[-98.710658,22.396925],[-98.711737,22.396493],[-98.712096,22.396269],[-98.712002,22.396135],[-98.712454,22.395856],[-98.712855,22.396031],[-98.713584,22.395636],[-98.713673,22.394983],[-98.714125,22.394576],[-98.714424,22.394654],[-98.715111,22.394284],[-98.715755,22.393565],[-98.716311,22.392618],[-98.717177,22.391858],[-98.718078,22.391879],[-98.718305,22.390814],[-98.719008,22.391028],[-98.719138,22.391485],[-98.719716,22.391709],[-98.720393,22.391467],[-98.720993,22.391458],[-98.721048,22.391082],[-98.720809,22.390757],[-98.720777,22.390311],[-98.721339,22.389825],[-98.721912,22.3901],[-98.722219,22.389786],[-98.722945,22.389561],[-98.722897,22.389341],[-98.723339,22.389353],[-98.723501,22.389725],[-98.723806,22.389857],[-98.724352,22.389594],[-98.724964,22.389514],[-98.725739,22.389526],[-98.725924,22.389688],[-98.726383,22.389779],[-98.726671,22.389105],[-98.726443,22.388648],[-98.726793,22.388152],[-98.727557,22.388133],[-98.728266,22.388276],[-98.728626,22.388094],[-98.729095,22.388318],[-98.729423,22.388014],[-98.729305,22.387233],[-98.72888,22.386617],[-98.728969,22.385994],[-98.729547,22.385873],[-98.729624,22.385539],[-98.729177,22.385355],[-98.729418,22.385001],[-98.730336,22.384363],[-98.731172,22.383481],[-98.731244,22.382939],[-98.731047,22.382179],[-98.731552,22.381783],[-98.731507,22.381256],[-98.732398,22.381613],[-98.733106,22.381583],[-98.733773,22.381686],[-98.734489,22.380793],[-98.735286,22.381048],[-98.736173,22.381191],[-98.736318,22.381765],[-98.736673,22.381841],[-98.739776,22.381837],[-98.741697,22.38187],[-98.742849,22.38177],[-98.743548,22.381162],[-98.744095,22.380362],[-98.744816,22.380129],[-98.745371,22.380901],[-98.74594,22.380865],[-98.747162,22.379869],[-98.747403,22.379302],[-98.747829,22.379282],[-98.748192,22.378964],[-98.748653,22.377666],[-98.749155,22.377444],[-98.749287,22.377104],[-98.749921,22.376557],[-98.749966,22.375827],[-98.750557,22.375199],[-98.750351,22.374062],[-98.750658,22.373302],[-98.750506,22.372774],[-98.750543,22.372272],[-98.751125,22.371945],[-98.751203,22.371316],[-98.750899,22.370524],[-98.751239,22.369612],[-98.751676,22.369024],[-98.752997,22.368762],[-98.753804,22.368733],[-98.754209,22.368226],[-98.754558,22.368125],[-98.754547,22.368399],[-98.754874,22.368613],[-98.755496,22.368289],[-98.756152,22.367661],[-98.756404,22.366941],[-98.757141,22.366821],[-98.758019,22.366533],[-98.758935,22.366313],[-98.759929,22.36638],[-98.761117,22.366943],[-98.763423,22.366964],[-98.766855,22.367147],[-98.768969,22.366913],[-98.77032,22.366015],[-98.772512,22.365213],[-98.773307,22.364405],[-98.77562,22.364224],[-98.776883,22.36498],[-98.778156,22.365644],[-98.779684,22.36567],[-98.780855,22.366122],[-98.782281,22.3661],[-98.784105,22.365342],[-98.785573,22.365785],[-98.786431,22.365979],[-98.787723,22.365507],[-98.788997,22.364782],[-98.789843,22.363927],[-98.79077,22.362534],[-98.791892,22.361868],[-98.792635,22.361734],[-98.793315,22.36187],[-98.795073,22.361668],[-98.796962,22.361669],[-98.799288,22.361796],[-98.803162,22.361907],[-98.805599,22.361575],[-98.806448,22.361783],[-98.807608,22.36182],[-98.808492,22.361592],[-98.80986,22.36163],[-98.811231,22.361517],[-98.812333,22.359712],[-98.8145,22.358298],[-98.816827,22.357396],[-98.81781,22.357642],[-98.819319,22.35736],[-98.82022,22.356679],[-98.821467,22.356256],[-98.823045,22.35694],[-98.823625,22.358704],[-98.825595,22.359327],[-98.82727,22.358799],[-98.827902,22.359278],[-98.82821,22.359807],[-98.829169,22.36041],[-98.830968,22.360791],[-98.832687,22.36074],[-98.833751,22.360816],[-98.834662,22.360817],[-98.835798,22.361326],[-98.836866,22.362582],[-98.839338,22.362861],[-98.841324,22.363563],[-98.843028,22.365056],[-98.844028,22.36615],[-98.844847,22.366152],[-98.847085,22.366433],[-98.848778,22.367715],[-98.849877,22.368127],[-98.850245,22.367909],[-98.850638,22.367933],[-98.851606,22.368313],[-98.852701,22.368361],[-98.853694,22.368196],[-98.856013,22.36718],[-98.857787,22.365687],[-98.859138,22.364741],[-98.861328,22.364861],[-98.863645,22.365763],[-98.864791,22.366142],[-98.865148,22.365716],[-98.865708,22.365741],[-98.867465,22.366405],[-98.869425,22.367591],[-98.872289,22.367413],[-98.872925,22.36582],[-98.874515,22.363229],[-98.875617,22.361975],[-98.876479,22.361813],[-98.877422,22.361814],[-98.877813,22.361309],[-98.878584,22.359981],[-98.880633,22.358297],[-98.881981,22.358673],[-98.882661,22.358468],[-98.883246,22.357819],[-98.884554,22.357047],[-98.885387,22.356242],[-98.886973,22.355649],[-98.887665,22.35583],[-98.887921,22.355527],[-98.888535,22.355108],[-98.889997,22.355094],[-98.891617,22.355826],[-98.892667,22.356647],[-98.893555,22.356735],[-98.894137,22.357068],[-98.894616,22.357096],[-98.895097,22.357759],[-98.895253,22.358837],[-98.89696,22.359147],[-98.897271,22.360893],[-98.896609,22.361787],[-98.896445,22.362299],[-98.897067,22.362868],[-98.897384,22.363655],[-98.898576,22.36459],[-98.898712,22.365426],[-98.899034,22.365884],[-98.899645,22.365995],[-98.900342,22.365333],[-98.902028,22.365906],[-98.903069,22.366891],[-98.903227,22.367844],[-98.904039,22.36812],[-98.906714,22.369654],[-98.908576,22.370573],[-98.908949,22.371292],[-98.909856,22.371471],[-98.910363,22.372185],[-98.912283,22.373798],[-98.91351,22.374022],[-98.914284,22.373625],[-98.914844,22.373006],[-98.917113,22.371619],[-98.917887,22.371421],[-98.91882,22.371421],[-98.919381,22.371223],[-98.919413,22.371107],[-98.925545,22.371747],[-98.930072,22.382559],[-98.931973,22.392775],[-99.005461,22.405271],[-99.013144,22.406635],[-99.016013,22.407129],[-99.017044,22.407339],[-99.01928,22.407713],[-99.022465,22.408281],[-99.033742,22.410326],[-99.035993,22.41076],[-99.054363,22.414209],[-99.056686,22.414587],[-99.058529,22.414942],[-99.060399,22.415269],[-99.060707,22.415286],[-99.092061,22.41008],[-99.112567,22.406762],[-99.120567,22.406636],[-99.134588,22.407414],[-99.150199,22.408152],[-99.173926,22.409478],[-99.201946,22.411034],[-99.221024,22.412044],[-99.236839,22.412862],[-99.243425,22.433371],[-99.25136,22.443979],[-99.259979,22.467811],[-99.263149,22.469791],[-99.270537,22.500495],[-99.272426,22.513263],[-99.277924,22.523677],[-99.288653,22.555824],[-99.299691,22.574305],[-99.314034,22.609898],[-99.32859,22.608702],[-99.328544,22.609927],[-99.328676,22.611669],[-99.330108,22.614845],[-99.321388,22.61673],[-99.329618,22.634888],[-99.33881,22.63356],[-99.339614,22.633251],[-99.355177,22.631414],[-99.362916,22.630382],[-99.371165,22.629347],[-99.3732,22.629078],[-99.373516,22.629997],[-99.373615,22.630642],[-99.373956,22.631675],[-99.374299,22.632931],[-99.374926,22.634984],[-99.375359,22.636598],[-99.375963,22.639016],[-99.376259,22.640375],[-99.376287,22.641946],[-99.37671,22.642443],[-99.377664,22.646069],[-99.378601,22.64791],[-99.379094,22.65009],[-99.379663,22.650766],[-99.380397,22.652043],[-99.380561,22.652945],[-99.381128,22.65374],[-99.382108,22.655867],[-99.383253,22.658044],[-99.383252,22.65938],[-99.383725,22.661633],[-99.383842,22.661684],[-99.384053,22.662775],[-99.38437,22.66318],[-99.384679,22.663972],[-99.385073,22.663822],[-99.385109,22.66409],[-99.385373,22.664472],[-99.38518,22.664776],[-99.385236,22.665066],[-99.384619,22.66555],[-99.384764,22.666733],[-99.384574,22.667148],[-99.3847,22.667548],[-99.385527,22.668298],[-99.385556,22.668894],[-99.38535,22.669085],[-99.38539,22.669489],[-99.385699,22.670027],[-99.385553,22.670268],[-99.387025,22.670051],[-99.388434,22.669291],[-99.388975,22.67009],[-99.39654,22.670767],[-99.419913,22.662038],[-99.442053,22.663616]
	], '#000000', 'Equipo 3');
	

	W.map.addLayer(mapLayer);
	mapLayer.setVisibility(localStorage.MapRaidChinaVisible == "true");

	var areaJumper = document.getElementById('mapraidDropdown');
	if (!areaJumper) {
		areaJumper = document.createElement('select');
		areaJumper.id = 'mapraidDropdown';
		areaJumper.style.marginTop = '0px';
		areaJumper.style.display = 'block';
		var areaPlaceholder = document.createElement('option');
		areaPlaceholder.textContent = 'Seleccionar Equipo';
		areaJumper.appendChild(areaPlaceholder);
		areaJumper.addEventListener('change', function() {
			W.map.setCenter(areaJumper.selectedOptions[0].centroid);
			areaJumper.selectedIndex = 0;
			areaJumper.blur();
		});
	}
	var areaJumperRegion = document.createElement('optgroup');
	areaJumperRegion.label = 'San Luis Potosí (09 - 23 Septiembre 2018)';
	mapLayer.features.forEach(function(feature) {
		var area = document.createElement('option');
		area.textContent = feature.attributes.name;
		area.centroid = feature.geometry.getCentroid().toLonLat();
		areaJumperRegion.appendChild(area);
	});
	areaJumper.appendChild(areaJumperRegion);

	if (!document.getElementById('mapraidDropdown')) {
		// Deal with new layout
		if (window.getComputedStyle(document.getElementById('edit-buttons').parentNode).display == 'flex') {
			var areaJumperContainer = document.createElement('div');
			areaJumperContainer.style.flexGrow = '1';
			areaJumperContainer.style.paddingTop = '6px';
			areaJumper.style.width = '80%';
			areaJumper.style.margin = '0 auto';
			areaJumperContainer.appendChild(areaJumper);
			document.getElementById('edit-buttons').parentNode.insertBefore(areaJumperContainer, document.getElementById('edit-buttons'));
		} else {
			document.getElementById('edit-buttons').parentNode.insertBefore(areaJumper, document.getElementById('edit-buttons'));
		}
	}

	displayCurrentRaidLocation();
	W.map.events.register("moveend", null, displayCurrentRaidLocation);
	W.map.events.register("zoomend", null, displayCurrentRaidLocation);
}