commit d1c1e7fca42df0576fc73abe8725a914237f1331 Author: David Itehua Xalamihua Date: Sun Jan 4 14:50:52 2026 -0600 first commit diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..89af000 --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +cobertura.mbtiles +hex_mapa2025-10-01_2025-12-14.gpkg \ No newline at end of file diff --git a/INFO_DEPURAR.txt b/INFO_DEPURAR.txt new file mode 100644 index 0000000..732947e --- /dev/null +++ b/INFO_DEPURAR.txt @@ -0,0 +1,13 @@ +- descargar imagen del mapa - sección activa + +DEPURAR ALERTS +[ ] carga unitaria + la validación de la etiqueta no es correcta + +[ ] carga masiva +[ ] descarga plantilla +[ya] permitir descargar geopackage + +crt: 19.381885015253673, -99.17663944307311 + +Por favor ingrese una etiqueta para el marcador \ No newline at end of file diff --git a/README.md b/README.md new file mode 100644 index 0000000..e69de29 diff --git a/buscar_data_layers.py b/buscar_data_layers.py new file mode 100644 index 0000000..6f918a2 --- /dev/null +++ b/buscar_data_layers.py @@ -0,0 +1,35 @@ +from pymbtiles import MBtiles +import mapbox_vector_tile +import gzip + +mb = MBtiles("./static/salida.mbtiles") + +found = False + +for z in range( + int(mb.meta.get("minzoom", 0)), + int(mb.meta.get("maxzoom", 14)) + 1 +): + for x in range(0, 2**z): + for y in range(0, 2**z): + tile = mb.read_tile(z, x, y) + if tile: + try: + # 🔑 DESCOMPRESIÓN + tile = gzip.decompress(tile) + except OSError: + # no estaba comprimido + pass + + decoded = mapbox_vector_tile.decode(tile) + + print("✅ Tile encontrado") + print("z:", z, "x:", x, "y:", y) + print("Layers:", decoded.keys()) + + found = True + break + if found: + break + if found: + break diff --git a/help.txt b/help.txt new file mode 100644 index 0000000..8150ce7 --- /dev/null +++ b/help.txt @@ -0,0 +1,33 @@ +1.- Convertir gpkg a geojson (lo hice con geopandas) +2.- Convertir geojson a mbtiles (linux tippercanoe): + +tippecanoe \ + -o cobertura.mbtiles \ + -l municipios \ + -Z5 \ + -z18 \ + --extend-zooms-if-still-dropping \ + --drop-densest-as-needed \ + --simplification=2 \ + --simplification-at-maximum-zoom=1 \ + --no-tiny-polygon-reduction \ + geo_pandas_limpio.geojson + +3.- Renderizar datos con maplibre + + + + +tippecanoe \ + -o cobertura.mbtiles \ + -l municipios \ + -Z5 \ + -z18 \ + --base-zoom=8 \ + --simplification=0.5 \ + --simplification-at-maximum-zoom=1 \ + --no-tiny-polygon-reduction \ + --no-feature-limit \ + --no-tile-size-limit \ + --extend-zooms-if-still-dropping \ + geo_pandas_limpio.geojson diff --git a/log/access.log b/log/access.log new file mode 100644 index 0000000..e69de29 diff --git a/log/error.log b/log/error.log new file mode 100644 index 0000000..e69de29 diff --git a/main.py b/main.py new file mode 100644 index 0000000..ffd5627 --- /dev/null +++ b/main.py @@ -0,0 +1,97 @@ +from flask import Flask, Response, abort, render_template, send_file +from flask_cors import CORS +from pymbtiles import MBtiles +import os + +from cachetools import LRUCache + +tile_cache = LRUCache(maxsize=5000) + +app = Flask(__name__) +CORS(app) + +MBTILES_PATH = os.path.join(app.root_path, "static", "data-files/cobertura.mbtiles") + +def flip_y(z, y): + return (1 << z) - 1 - y + +@app.route("/") +def index(): + return render_template("index.html") + + +@app.route("/tiles///.pbf") +def tiles(z, x, y): + y = flip_y(z, y) + key = (z, x, y) + + if key in tile_cache: + tile = tile_cache[key] + else: + with MBtiles(MBTILES_PATH) as mbtiles: + tile = mbtiles.read_tile(z, x, y) + if tile is None: + abort(404) + if isinstance(tile, tuple): + tile = tile[0] + tile_cache[key] = tile + + return Response( + tile, + mimetype="application/x-protobuf", + headers={ + "Content-Encoding": "gzip", + "Cache-Control": "public, max-age=86400" + } + ) + + # return Response( + # tile, + # mimetype="application/x-protobuf", + # headers={ + # "Content-Encoding": "gzip", + # "Cache-Control": "no-store, no-cache, must-revalidate, max-age=0" + # } + # ) + + +@app.route("/api/poligonos-edos") +def poligonos_edos(): + response = send_file( + os.path.join(app.root_path, "static/data-files", "poligonos_edos_mx.json"), + mimetype="application/geo+json", + max_age=86400 + ) + response.headers["Access-Control-Allow-Origin"] = "*" + return response + +# @app.route("/api/poligonos-edos") +# def poligonos_edos(): +# response = send_file( +# os.path.join(app.root_path, "static/data-files", "poligonos_edos_mx.json"), +# mimetype="application/geo+json", +# max_age=0 +# ) +# response.headers["Cache-Control"] = "no-store, no-cache, must-revalidate, max-age=0" +# response.headers["Access-Control-Allow-Origin"] = "*" +# return response + + +@app.route("/file/download/") +def download_file(filename): + file_path = os.path.join(app.root_path, "static/data-files", filename) + if not os.path.isfile(file_path): + abort(404) + return send_file( + file_path, + as_attachment=True + ) + + +@app.errorhandler(404) +def page_not_found(error): + return render_template("404.html"), 404 + + +if __name__ == "__main__": + app.run(debug=True, threaded=True) diff --git a/mapa-cobertura.conf b/mapa-cobertura.conf new file mode 100644 index 0000000..41f817d --- /dev/null +++ b/mapa-cobertura.conf @@ -0,0 +1,48 @@ +# sudo apachectl configtest +Listen 8086 + + ServerAdmin davidix1991@gmail.com + ServerName mapa-cobertura.temporal.work + ServerAlias mapa-cobertura.temporal.work + DocumentRoot /var/www/mapa-cobertura + + WSGIDaemonProcess app_map_cobertura user=www-data group=www-data threads=6 python-home=/var/www/mapa-cobertura/.venv + WSGIScriptAlias / /var/www/mapa-cobertura/mapa-cobertura.wsgi + + ErrorLog /var/www/mapa-cobertura/log/error.log + CustomLog /var/www/mapa-cobertura/log/access.log combined + + + WSGIProcessGroup app_map_cobertura + WSGIApplicationGroup %{GLOBAL} + Order deny,allow + Require all granted + + + # Habilitar caché para todas las solicitudes + CacheEnable disk / + + # Configuración de caché + + CacheRoot /var/cache/apache2/mod_cache_disk + CacheDirLevels 2 + CacheDirLength 1 + # [bytes] Tamaño máximo de archivo a almacenar en caché + CacheMaxFileSize 1000000 + # CacheMinFileSize bytes + CacheMinFileSize 1 + CacheIgnoreHeaders Set-Cookie + CacheIgnoreNoLastMod On + + + # Indica si el caché está funcionando + Header set X-Cache "HIT from Apache" + # Expiración por defecto (1 hora) + CacheDefaultExpire 3600 + # Expiración máxima (1 día) + CacheMaxExpire 86400 + CacheLastModifiedFactor 0.5 + + + + diff --git a/mapa-cobertura.wsgi b/mapa-cobertura.wsgi new file mode 100644 index 0000000..07049d3 --- /dev/null +++ b/mapa-cobertura.wsgi @@ -0,0 +1,14 @@ +import sys +import logging + +# ruta de linux al proyecto de flask +sys.path.insert(0, '/var/www/mapa-cobertura.temporal.work') + +# ruta de linux al ambiente virtual de flask +sys.path.insert(0, '/var/www/mapa-cobertura.temporal.work/.venv/lib/python3.13/site-packages') + +# Set up logging +logging.basicConfig(stream=sys.stderr, level=logging.DEBUG) + +# Import and run the Flask app +from main import app as application diff --git a/requirements.txt b/requirements.txt new file mode 100644 index 0000000..fa52f69 --- /dev/null +++ b/requirements.txt @@ -0,0 +1,11 @@ +blinker==1.9.0 +cachetools==6.2.4 +click==8.3.1 +colorama==0.4.6 +Flask==3.1.2 +flask-cors==6.0.2 +itsdangerous==2.2.0 +Jinja2==3.1.6 +MarkupSafe==3.0.3 +pymbtiles==0.5.0 +Werkzeug==3.1.4 diff --git a/static/css/index/index.css b/static/css/index/index.css new file mode 100644 index 0000000..43ca2a7 --- /dev/null +++ b/static/css/index/index.css @@ -0,0 +1,273 @@ +/* =============================== + CONTAINER Y MAPA +=============================== */ +body { + width: 100%; + height: 100vh; + margin: 0; + padding: 0; + font-family: 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif; + color: #333; + background: #f5f7fa; + overflow: hidden; +} + +#map { + width: 100%; + height: 100%; + z-index: 1; +} + +/* =============================== + CONTENEDOR GENERAL DEL COLLAPSE +=============================== */ +#pin-form { + position: absolute; + top: 20px; + left: 20px; + z-index: 1000; + background: white; + border-radius: 12px; + box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15); + width: 300px; + max-width: 90vw; + border: 1px solid #e1e5e9; + overflow: hidden; +} + +/* =============================== + CABECERA DEL FORMULARIO (No colapsable) +=============================== */ +.form-header { + background: #1976d2; + color: white; + padding: 16px; + cursor: pointer; + display: flex; + justify-content: space-between; + align-items: center; + border-bottom: 1px solid rgba(255, 255, 255, 0.2); +} + +.header-left { + display: flex; + align-items: center; + gap: 10px; +} + +.header-right { + transition: transform 0.3s ease; +} + +/* =============================== + CONTENIDO PRINCIPAL COLAPSABLE +=============================== */ +.collapsible-content { + max-height: 0; + overflow: hidden; + opacity: 0; + transition: all 0.3s ease; +} + +/* =============================== + SECCIONES COLAPSABLES INTERNAS +=============================== */ +.collapse-section { + border-bottom: 1px solid #e1e5e9; +} + +.collapse-section:last-child { + border-bottom: none; +} + +.collapse-header { + padding: 14px 16px; + background: #f8fafc; + border-bottom: 1px solid #e1e5e9; + cursor: pointer; + display: flex; + justify-content: space-between; + align-items: center; + font-weight: 600; + color: #2d3748; + transition: background 0.2s ease; +} + +.collapse-header:hover { + background: #edf2f7; +} + +.collapse-icon { + transition: transform 0.3s ease; + color: #718096; +} + +.collapse-content { + max-height: 0; + overflow: hidden; + opacity: 0; + transition: all 0.3s ease; +} + +/* =============================== + CHECKBOX PARA CONTROLAR COLLAPSE (Truco CSS) +=============================== */ +#collapse-toggle, +#collapse-toggle-1, +#collapse-toggle-2, +#collapse-toggle-3 { + display: none; +} + +/* Cuando el checkbox está checked, mostramos el contenido */ +#collapse-toggle:checked ~ .collapsible-content, +#collapse-toggle-1:checked ~ .collapse-content, +#collapse-toggle-2:checked ~ .collapse-content, +#collapse-toggle-3:checked ~ .collapse-content { + max-height: 1000px; + opacity: 1; + overflow: visible; +} + +/* Rotamos el icono cuando está expandido */ +#collapse-toggle:checked ~ .form-header .collapse-icon, +#collapse-toggle-1:checked ~ .collapse-header .collapse-icon, +#collapse-toggle-2:checked ~ .collapse-header .collapse-icon, +#collapse-toggle-3:checked ~ .collapse-header .collapse-icon { + transform: rotate(180deg); +} + +/* =============================== + FORM ELEMENTS +=============================== */ +.form-group { + padding: 12px 16px; +} + +.form-group label { + display: block; + margin-bottom: 6px; + font-size: 0.9rem; + color: #4a5568; + font-weight: 500; +} + +.form-input { + width: 100%; + padding: 10px 12px; + border: 1px solid #cbd5e0; + border-radius: 6px; + font-size: 0.95rem; + transition: border 0.2s ease; + box-sizing: border-box; +} + +.form-input:focus { + outline: none; + border-color: #1976d2; + box-shadow: 0 0 0 3px rgba(25, 118, 210, 0.1); +} + +.button-primary { + width: 100%; + padding: 12px; + background: #1976d2; + color: white; + border: none; + border-radius: 6px; + font-weight: 600; + cursor: pointer; + display: flex; + justify-content: center; + align-items: center; + gap: 8px; + margin: 16px; + width: calc(100% - 32px); + transition: background 0.2s ease; +} + +.button-primary:hover { + background: #1565c0; +} + +.csv-section { + padding: 16px; + border-top: 1px solid #e1e5e9; + background: #f8fafc; +} + +.section-title { + font-weight: 600; + color: #2d3748; + margin-bottom: 12px; + display: flex; + align-items: center; + gap: 8px; +} + +.button-secondary { + display: block; + margin-left: auto; + margin-right: auto; + width: 95%; + padding: 5px; + background: #edf2f7; + color: #2d3748; + border: 1px solid #cbd5e0; + border-radius: 6px; + text-align: center; + text-decoration: none; + margin-bottom: 10px; + font-size: 0.9rem; + transition: all 0.2s ease; +} + +.button-secondary:hover { + background: #e2e8f0; + border-color: #a0aec0; +} + +.csv-file-input { + display: none; +} + +.file-upload-label { + display: block; + margin-left: auto; + margin-right: auto; + width: 95%; + padding: 5px; + background: #f0f9ff; + color: #0369a1; + border: 1px dashed #7dd3fc; + border-radius: 6px; + text-align: center; + cursor: pointer; + margin-bottom: 10px; + transition: all 0.2s ease; +} + +.file-upload-label:hover { + background: #e0f2fe; + border-color: #0ea5e9; +} + +/* .tooltip { + font-size: 0.85rem; + color: #718096; + line-height: 1.4; +} */ + + + +/* =============================== + ESTADO ACTIVO (SIEMPRE VISIBLE) +=============================== */ +.active-state-section { + padding: 16px; + background: #fff7ed; + border-top: 1px solid #fed7aa; + display: block !important; + max-height: none !important; + opacity: 1 !important; +} \ No newline at end of file diff --git a/static/css/index/loading.css b/static/css/index/loading.css new file mode 100644 index 0000000..817613d --- /dev/null +++ b/static/css/index/loading.css @@ -0,0 +1,53 @@ + /* =============================== + INDICADOR DE CARGA + =============================== */ + .loading-indicator { + display: none; + position: absolute; + top: 50%; + left: 50%; + transform: translate(-50%, -50%); + z-index: 2000; + background: rgba(255, 255, 255, 0.95); + padding: 20px 30px; + border-radius: 12px; + box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2); + text-align: center; + animation: fadeIn 0.3s ease; + } + + .loading-spinner { + width: 40px; + height: 40px; + border: 4px solid #f3f3f3; + border-top: 4px solid #1976d2; + border-radius: 50%; + animation: spin 1s linear infinite; + margin: 0 auto 15px; + } + + .loading-text { + font-weight: 600; + color: #333; + font-size: 0.95rem; + } + + @keyframes spin { + 0% { + transform: rotate(0deg); + } + + 100% { + transform: rotate(360deg); + } + } + + @keyframes fadeIn { + from { + opacity: 0; + } + + to { + opacity: 1; + } + } \ No newline at end of file diff --git a/static/css/index/notifications.css b/static/css/index/notifications.css new file mode 100644 index 0000000..c3202e1 --- /dev/null +++ b/static/css/index/notifications.css @@ -0,0 +1,48 @@ + /* =============================== + NOTIFICACIONES + =============================== */ + .notification { + position: absolute; + top: 20px; + right: 20px; + z-index: 1000; + padding: 15px 20px; + border-radius: 8px; + color: white; + font-weight: 500; + font-size: 0.9rem; + box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15); + display: flex; + align-items: center; + max-width: 350px; + animation: slideInRight 0.3s ease; + } + + .notification.success { + background: linear-gradient(135deg, #4caf50, #66bb6a); + } + + .notification.error { + background: linear-gradient(135deg, #f44336, #e53935); + } + + .notification.info { + background: linear-gradient(135deg, #2196f3, #1976d2); + } + + .notification i { + margin-right: 10px; + font-size: 1.2rem; + } + + @keyframes slideInRight { + from { + transform: translateX(100%); + opacity: 0; + } + + to { + transform: translateX(0); + opacity: 1; + } + } \ No newline at end of file diff --git a/static/css/index/tooltip.css b/static/css/index/tooltip.css new file mode 100644 index 0000000..51fd537 --- /dev/null +++ b/static/css/index/tooltip.css @@ -0,0 +1,53 @@ + /* =============================== + TOOLTIPS + =============================== */ + + + +/* Contenedor */ +.tooltip { + position: relative; + display: inline-block; + cursor: pointer; +} + +/* Texto del tooltip */ +.tooltip .tooltip-text { + visibility: hidden; + width: 220px; + background-color: #333; + color: #fff; + text-align: left; /* Alineado a la izquierda para mejor lectura */ + border-radius: 6px; + padding: 12px; + position: absolute; + z-index: 1; + bottom: 125%; + + /* CAMBIO CLAVE: Alineación a la derecha */ + left: 0; /* Empieza desde el icono */ + margin-left: 0; /* Eliminamos el margen negativo que lo sacaba de pantalla */ + + opacity: 0; + transition: opacity 0.3s; + font-size: 0.85rem; + line-height: 1.4; + box-shadow: 0px 4px 10px rgba(0,0,0,0.3); +} + +/* Ajuste de la flecha para que coincida con el icono a la izquierda */ +.tooltip .tooltip-text::after { + content: ""; + position: absolute; + top: 100%; + left: 10px; /* La flecha ahora se queda cerca del inicio del cuadro */ + border-width: 6px; + border-style: solid; + border-color: #333 transparent transparent transparent; +} + +/* Mostrar al pasar el mouse */ +.tooltip:hover .tooltip-text { + visibility: visible; + opacity: 1; +} \ No newline at end of file diff --git a/static/data-files/poligonos_edos_mx.json b/static/data-files/poligonos_edos_mx.json new file mode 100644 index 0000000..d327928 --- /dev/null +++ b/static/data-files/poligonos_edos_mx.json @@ -0,0 +1,34 @@ +{"type":"FeatureCollection", "features": [ +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-90.48277648556399,20.210212550269375],[-90.48419020292619,20.211737644436766],[-90.48676752932022,20.21185559121534],[-90.48755118826921,20.208293446879566],[-90.48558839195306,20.204318974754983],[-90.4819302542636,20.203690300516655],[-90.47949191099138,20.205043291110144],[-90.48012548107437,20.20810918041508],[-90.48277648556399,20.210212550269375]]],[[[-90.49705804628024,20.34251119475732],[-90.49719965806042,20.344424185075127],[-90.49901478452068,20.34336227518321],[-90.49705804628024,20.34251119475732]]],[[[-90.46198427884087,20.634794599536917],[-90.46036019504021,20.643586769851197],[-90.4606409995069,20.65004109003621],[-90.4623941575864,20.649601354320282],[-90.46198427884087,20.634794599536917]]],[[[-90.47039778248461,20.62146056819796],[-90.46838770693762,20.632233881629872],[-90.46513269389516,20.640798964963324],[-90.46479942351311,20.645886828920993],[-90.46737876180913,20.65072607245918],[-90.4696537096421,20.653066028312253],[-90.47106050264017,20.65022821189166],[-90.47023706435914,20.645231652200835],[-90.47331580049604,20.630029522958466],[-90.47825117335185,20.618260531640942],[-90.478338483281,20.61430481795867],[-90.47743967330388,20.61031786967959],[-90.47518572297611,20.6058389944734],[-90.4743504441401,20.599712578734227],[-90.47090817697665,20.59839242157483],[-90.4712059626309,20.60436236962255],[-90.47269387029013,20.605256659560325],[-90.47328499334924,20.608520047296167],[-90.47473913355986,20.61028229300041],[-90.47233678113997,20.618315128396887],[-90.47039778248461,20.62146056819796]]],[[[-90.4514177846807,20.676698860320414],[-90.45307999523607,20.679912222437565],[-90.45252552220268,20.68439666090046],[-90.4540814358536,20.685593227347624],[-90.45544715008185,20.689152284436318],[-90.45860312719077,20.69374432818654],[-90.45901259238872,20.689765616769705],[-90.46380902724047,20.682901912192733],[-90.46305454997804,20.68250523457573],[-90.46666257055199,20.676862897018054],[-90.46677078657666,20.672806172908338],[-90.46572997684723,20.669587239380974],[-90.46549017720008,20.665359569324266],[-90.4662955916234,20.662075928214506],[-90.46902105770465,20.658217185717945],[-90.46955288123922,20.65575061055233],[-90.46856163149135,20.653176931486882],[-90.46467086611852,20.65004463544551],[-90.46197401743484,20.650432479658434],[-90.4602143151804,20.6544033739724],[-90.46076442012685,20.660899400594246],[-90.4587402068139,20.66292686712154],[-90.45530999332561,20.656929868504562],[-90.45409893171586,20.655891631386453],[-90.45259125347013,20.661474335819037],[-90.45304824179055,20.66423452396873],[-90.45161662854724,20.66469140673587],[-90.4522663598608,20.671626608739302],[-90.45438238925266,20.67310057176013],[-90.45583096644839,20.672199612618158],[-90.4567071097639,20.676106118372957],[-90.45486858111173,20.67658898868791],[-90.45200522125708,20.673344067514165],[-90.4514177846807,20.676698860320414]]],[[[-89.2965618139308,19.551174096041393],[-89.41247852950517,19.649376296793548],[-89.4481130052788,19.69835350112163],[-89.46829547653141,19.700161288908816],[-89.47722008037147,19.711054958436137],[-89.47992974751702,19.716553212079134],[-89.49166182300195,19.742228442183944],[-89.47914943351475,19.740645557759876],[-89.47590945703217,19.771220205553504],[-89.5151085156711,19.77426627397341],[-89.52567236501767,19.77555465036511],[-89.53613009373794,19.797458038012223],[-89.54967867996072,19.816219230457136],[-89.57742986131484,19.853508866527648],[-89.57175751204511,19.852955292695754],[-89.58749974831323,19.87442004440601],[-89.58681034352645,19.920460030974766],[-89.59744587138835,19.92112234287879],[-89.59584175442978,19.937422047325526],[-89.60467007800395,19.938284966653555],[-89.59870388587996,19.998197378372936],[-89.68484601232808,20.102416732127267],[-89.74847417483187,20.17926972188218],[-89.75278665590832,20.17654874559912],[-89.77345318874467,20.153084139541818],[-89.77823448195107,20.15096532494215],[-89.78784381590629,20.144447968545535],[-89.7939747868225,20.136171942080864],[-89.80287086639976,20.164906605374256],[-89.80250527564857,20.201605080623153],[-89.84345314839697,20.20927506320521],[-89.84616491525549,20.209686980871766],[-89.84609566725305,20.213771193452146],[-89.8406781621294,20.251027504054434],[-89.87566069125722,20.253101950762925],[-89.87238230610541,20.287628086991674],[-89.8379638762633,20.287175879915424],[-89.92892638771559,20.39663820551948],[-90.0041736757604,20.4870218782886],[-90.00562472741132,20.477367197375713],[-90.02034767473145,20.477082883404933],[-90.02606784933204,20.473656695741965],[-90.03490437527108,20.46967219205868],[-90.03968993968186,20.468220830043208],[-90.04809072789993,20.459824264968006],[-90.05004769290969,20.456028575287405],[-90.04918965753097,20.454164262354027],[-90.05097245831695,20.45295701825023],[-90.05527218435503,20.44451439188299],[-90.05709876396116,20.4329658789855],[-90.06601857048452,20.433975480476477],[-90.06721066023738,20.425225896236384],[-90.10097353057142,20.425251776525613],[-90.10141842399582,20.426475416500182],[-90.10506689500698,20.428488350258533],[-90.10776562708918,20.431489121077732],[-90.1189334562568,20.43667490349742],[-90.12927339057393,20.44035242025143],[-90.13103821823512,20.44275029249019],[-90.13246053773724,20.439655162242786],[-90.147776929641,20.44159935479621],[-90.16051482703574,20.441862775295704],[-90.16940061609586,20.44056023545386],[-90.17847952059134,20.437656019118492],[-90.18629757892433,20.43693232788729],[-90.18478790020583,20.461046138956988],[-90.23420799357024,20.47046660896251],[-90.2237666566715,20.519164963342803],[-90.23250802443346,20.519894050331118],[-90.22924096389653,20.543562885767074],[-90.23493610210494,20.544109033559835],[-90.23458338584561,20.545343182092893],[-90.33523611049645,20.54131230878096],[-90.33523611127856,20.576347702461362],[-90.34113810856064,20.553701118589174],[-90.38664878553914,20.55558579387241],[-90.37935699640639,20.84832728857731],[-90.39984720435336,20.845286799735277],[-90.40452435815138,20.84676359004078],[-90.40360606948911,20.844663472240597],[-90.4044843663496,20.84061956069928],[-90.4123040442779,20.82461531147726],[-90.41545605150407,20.812266038959763],[-90.41575601355561,20.799420861043075],[-90.41475621266528,20.795433906809308],[-90.41496246555943,20.788515189012912],[-90.41404300415309,20.780267049411748],[-90.41478486791624,20.776376124390254],[-90.41333527388838,20.775720840661847],[-90.4068237654509,20.776128533596193],[-90.40654464139703,20.772392526623605],[-90.4076359384942,20.76851497231945],[-90.41014337444142,20.765758627822606],[-90.41036827590199,20.761796937125553],[-90.41175657422542,20.758077738607824],[-90.41485072523966,20.75462281517514],[-90.41861518728689,20.752118622816113],[-90.42271079174469,20.747164122708284],[-90.42519577553247,20.74633310996029],[-90.42984466902914,20.74711489656744],[-90.43147773039584,20.745380413141618],[-90.43051973911173,20.741344690335495],[-90.43051922999604,20.73754876211666],[-90.43351680687289,20.731018084030495],[-90.43391138110343,20.728121849519994],[-90.4353644317963,20.726364862500475],[-90.43930846971006,20.724883465888524],[-90.44382019907493,20.721297947849223],[-90.44505234961179,20.719160721167043],[-90.4482312334352,20.716535155148392],[-90.45082872065541,20.709873036922033],[-90.45360969115819,20.70410993887475],[-90.45470301860473,20.699351146136905],[-90.45437795803855,20.692950841835625],[-90.45209880665897,20.686514804692763],[-90.4424331722987,20.68435337123566],[-90.44353412779458,20.6823930346805],[-90.44213555809574,20.679612061834746],[-90.44557835007089,20.673993809275544],[-90.44517222106731,20.664616077141943],[-90.4468857763394,20.656140312124478],[-90.44620663889685,20.651666630825446],[-90.4472807836379,20.639571549002596],[-90.44888659240394,20.636608618920548],[-90.44808981565455,20.633925302497403],[-90.45010603740582,20.63254236902941],[-90.45207257112594,20.629244435703527],[-90.45207209768716,20.626152837683435],[-90.45370202809477,20.624005743811324],[-90.45344701999869,20.621774975790345],[-90.45562544572766,20.619487364656607],[-90.45658970805675,20.615828156538043],[-90.45307499486381,20.61359136203515],[-90.45616220476984,20.611649021266942],[-90.4578694075314,20.608710610655237],[-90.45759821690058,20.603874584192397],[-90.46092086604779,20.601373552802215],[-90.46440359555976,20.59097739635041],[-90.46348390945951,20.59019088959667],[-90.46423475237367,20.58691343050799],[-90.46668016661704,20.583239426231728],[-90.46928688386015,20.58087918832507],[-90.47005713700986,20.576922088854758],[-90.47217773671895,20.573829660167576],[-90.47283414848488,20.570911769108136],[-90.47529219156417,20.566448843336445],[-90.47961315579829,20.562162156855663],[-90.48238397627136,20.557217259169136],[-90.48197064215191,20.554430895052803],[-90.4840447973786,20.55040135005453],[-90.48612316248989,20.543439421938047],[-90.48550424303056,20.542514303903943],[-90.48971807146847,20.535046024005965],[-90.49049389150468,20.530782831183217],[-90.4934920437492,20.527160262087307],[-90.49495640042903,20.522389214553357],[-90.4933480977611,20.519338947373],[-90.49520851629359,20.517185902034043],[-90.49659849417128,20.510781973129895],[-90.49934972483794,20.502838166422862],[-90.50226056042453,20.497775877692277],[-90.50228246626665,20.49417153912225],[-90.50008776889189,20.492549745748022],[-90.50237756870547,20.489036325653615],[-90.50196253037171,20.47648934411683],[-90.50241963029498,20.472193674174036],[-90.50114404985646,20.47119872083141],[-90.50117167077082,20.466457976457264],[-90.50257552368527,20.465118013299218],[-90.50149140398645,20.462812112719803],[-90.5008791771773,20.45676305853209],[-90.49901523384483,20.45358857936759],[-90.49620000000186,20.45349999996938],[-90.49441645720407,20.448669772727897],[-90.49330000000174,20.447699999969075],[-90.49312394960418,20.442737770135295],[-90.49129690792199,20.44046523678213],[-90.4967239374912,20.433757776515847],[-90.4956167326257,20.43203200496191],[-90.49649664264626,20.429269243928786],[-90.49525067661318,20.42432781468841],[-90.49272917573131,20.417106790252603],[-90.49189452134453,20.409146721066236],[-90.49258605499125,20.405915995616738],[-90.49000385669808,20.40668544337683],[-90.49074386245911,20.404644678351417],[-90.48828768943656,20.39312441919219],[-90.48697413781156,20.39073973405999],[-90.48510745899517,20.38012134120538],[-90.4835282350661,20.376389563842167],[-90.48379234411675,20.371634188076143],[-90.48544642901788,20.36935650698365],[-90.4863869057607,20.362863518192626],[-90.48982632400157,20.35753361588303],[-90.49221636620979,20.349519127912686],[-90.49179894087052,20.34727479685978],[-90.48833122770776,20.346762966801634],[-90.49299961942461,20.344634445377437],[-90.49524181372027,20.34222627267991],[-90.4965793930698,20.342398954525095],[-90.49168862990251,20.334033405119555],[-90.48963758154702,20.331309605571164],[-90.4895147346204,20.32695567363936],[-90.49071578793627,20.324840851085867],[-90.48991730924541,20.320314229917983],[-90.49103963869265,20.318438240708133],[-90.49207486095116,20.309372954182265],[-90.48986164136267,20.304389861486072],[-90.48917884421371,20.298786121829096],[-90.49041213526141,20.2925544519224],[-90.48986308328375,20.28971912165423],[-90.49011942600225,20.28396356587507],[-90.4893202099351,20.282278445815734],[-90.49214976650228,20.27241650224215],[-90.49114338678021,20.267446007906017],[-90.49135851404617,20.262770400566183],[-90.49046234726586,20.257809326858933],[-90.48958905292926,20.25734107218193],[-90.48846292407029,20.25092710961377],[-90.48969589195514,20.24752555056085],[-90.48783090326998,20.238089196341946],[-90.48763229154406,20.22328574208808],[-90.48672300015289,20.220477517770632],[-90.48921179029924,20.2159429417905],[-90.4812956874033,20.210468847733694],[-90.47824664668968,20.205250021984],[-90.48092794531681,20.202755453641203],[-90.48086838384478,20.199810275911375],[-90.47928831868546,20.19725940177034],[-90.47932627810064,20.194418575182283],[-90.47800569122057,20.192002209099996],[-90.47956332192138,20.189258669936123],[-90.47763715462833,20.18559298972042],[-90.47987697599041,20.18137879242863],[-90.47895221162344,20.177746172109437],[-90.47951463237149,20.173893062375953],[-90.48486474004329,20.170957877241506],[-90.48821976267317,20.170139174802898],[-90.49382069653143,20.163553649101573],[-90.49519103614477,20.159493999850667],[-90.49380430053372,20.153255630721844],[-90.4912746044264,20.148309518843007],[-90.490028394462,20.14418294414878],[-90.48882691066768,20.14443944320402],[-90.48879668912917,20.139828618829142],[-90.48793057898496,20.13641863572343],[-90.48626256330311,20.134785238858058],[-90.48483794980001,20.131125014067038],[-90.4831192566873,20.129306770000653],[-90.48139774375397,20.122512699928052],[-90.48049280214394,20.1149363910676],[-90.47882562109606,20.113450550753157],[-90.4794450438614,20.10891692584977],[-90.48066245628144,20.10756982979069],[-90.47865613207796,20.104735743135564],[-90.48116143236041,20.099608132133085],[-90.48010871121295,20.096738706689393],[-90.4813534747488,20.094860882706996],[-90.4854319100404,20.09205890339763],[-90.48664356505742,20.088417430673758],[-90.48654533476235,20.08267257732996],[-90.48537780455126,20.07901253344903],[-90.48644799446811,20.075139901869477],[-90.48606275926693,20.069202276711565],[-90.48918222180288,20.065633107666088],[-90.49114743063916,20.060993308747527],[-90.48334873377848,20.045249386917988],[-90.47960672832784,20.040788781024446],[-90.47876225377746,20.031417059484113],[-90.47450071702252,20.028172383534695],[-90.47392868908321,20.026580557122998],[-90.47103165938705,20.024493433881844],[-90.46891120546144,20.02024064437427],[-90.46569193539165,20.015394800167314],[-90.46320983904417,20.014678717081495],[-90.46329073177446,20.00831110661221],[-90.46206206095064,20.002575619064714],[-90.46301435260875,20.00062842704341],[-90.46703374668795,19.99730601229794],[-90.47318757950018,19.994836116009196],[-90.46977323362319,19.990118072913447],[-90.47016530726677,19.984482014729053],[-90.46613584584793,19.982419450376824],[-90.4669476857469,19.98063358019192],[-90.46457162772094,19.97900423217186],[-90.46354875058273,19.975917425627472],[-90.46115270624796,19.972793960417448],[-90.45924889878188,19.974225516485603],[-90.45221504393817,19.974194632933006],[-90.4531106149825,19.971423351061276],[-90.45206537621544,19.96884493842572],[-90.45357309841404,19.968482299488016],[-90.45468925470982,19.965133804043887],[-90.45370655875729,19.96223565014816],[-90.45138550396723,19.95962941575914],[-90.4530932993083,19.956055969957845],[-90.4546213691251,19.949104878276557],[-90.45819129668888,19.94581077603226],[-90.4574336227302,19.94225947878573],[-90.4590096427479,19.940906160165923],[-90.46071567982563,19.935487097113764],[-90.46207894784357,19.934275268135593],[-90.4624458323666,19.93098826085344],[-90.46458633911436,19.93161952786562],[-90.4689185549152,19.92865902763026],[-90.47186041554437,19.925614304094722],[-90.47338277023698,19.92213459217419],[-90.47254912275383,19.920450400230038],[-90.47623804745166,19.91603712487847],[-90.47669483067239,19.911981469968964],[-90.47879582807298,19.908472656565948],[-90.48271511159624,19.904864651256332],[-90.48595305414756,19.898213402151043],[-90.4868301291362,19.895168062281186],[-90.48835164929636,19.894156670788504],[-90.49348405086215,19.884604033750293],[-90.49661555817266,19.88466529707233],[-90.50025336044541,19.88091086454517],[-90.50137758468748,19.87569461813598],[-90.5069575326541,19.869427614171286],[-90.50884813691312,19.866229516300166],[-90.52439653285478,19.856992328022557],[-90.53137784509619,19.854779560146824],[-90.53463999766024,19.85308287538294],[-90.54076382262105,19.846882130110316],[-90.551922902174,19.83668376084512],[-90.5583028808557,19.832377643767472],[-90.5629084044092,19.83028772199117],[-90.5745593548171,19.82343127928749],[-90.57502218537167,19.82360427553823],[-90.5856643247505,19.81745627521161],[-90.58988664540209,19.81406777165546],[-90.5914660954038,19.81469653158331],[-90.59659646070082,19.8109896105492],[-90.59864020734511,19.81095748423462],[-90.5984808374352,19.80839186094886],[-90.60770806581473,19.801913256038517],[-90.6104751123508,19.800575045885523],[-90.61152608377802,19.798812799783434],[-90.61675567687445,19.79595377861466],[-90.62390570015037,19.793346344191946],[-90.63380276216515,19.781784423038346],[-90.6411258041374,19.77489499060664],[-90.6486079960049,19.76931278534579],[-90.6502289828195,19.766734104527586],[-90.66148864663984,19.758531413047592],[-90.66314320008439,19.753382406183107],[-90.66574805680625,19.750882926598933],[-90.66613032436948,19.744732371809732],[-90.6700613982992,19.7351887227739],[-90.6679478034842,19.733177616985472],[-90.66664830174574,19.728740636446048],[-90.66829591896243,19.72250153462261],[-90.67076355670184,19.717521025229473],[-90.67909454753158,19.70668180353306],[-90.68412991446047,19.702819486416274],[-90.68516765945611,19.69968297427789],[-90.69005511408875,19.69189936272562],[-90.69192802047615,19.690788388863382],[-90.6947350790731,19.686462464291424],[-90.70702450328213,19.675248812922348],[-90.70715797269872,19.671362251874086],[-90.70460179058722,19.669151044176203],[-90.70351218177058,19.665089303219474],[-90.70387354513946,19.661047301222027],[-90.70590503894181,19.654593664835488],[-90.70632621124685,19.64977130994214],[-90.6993985632642,19.648705061184046],[-90.69340519462804,19.6452774821679],[-90.69084506047562,19.641555975532242],[-90.6872373653245,19.634727706852345],[-90.685613958197,19.629265511088022],[-90.68567604747659,19.62288669408258],[-90.68751400758657,19.6140208886564],[-90.69097870701489,19.60215864967404],[-90.69377929349201,19.595322091428272],[-90.70146747622886,19.578866156924676],[-90.70709355525554,19.568688456068003],[-90.71180258799711,19.562187203263306],[-90.70969613599692,19.560633893514535],[-90.70642132911934,19.560860450436564],[-90.70557310335948,19.55964800498674],[-90.70409095366745,19.55235126116213],[-90.70544314913087,19.54447307500891],[-90.70801521679994,19.539266072988426],[-90.70735592194984,19.5356862408633],[-90.71086831110512,19.528649541888512],[-90.71101568275304,19.526999303116725],[-90.70880982718728,19.52489134552161],[-90.7089958686758,19.52022459724168],[-90.71055108421172,19.515345541451723],[-90.70953025006929,19.50870056353392],[-90.7076229599009,19.505065713222336],[-90.70538820001258,19.503307546062615],[-90.70407366211828,19.500708463355693],[-90.70314265726205,19.490428967881996],[-90.70316233895744,19.483773679970284],[-90.70404258250448,19.47925501566266],[-90.70768678878511,19.468076742183882],[-90.70701124013885,19.463339437370223],[-90.70602180617936,19.461534375992187],[-90.70821790132146,19.455018671490564],[-90.7104151338367,19.446409854171634],[-90.70985032890434,19.44532701049701],[-90.71042511094686,19.439629158758805],[-90.71173784734725,19.435966724587047],[-90.71310340754138,19.429243036970945],[-90.7156237076444,19.422576267449813],[-90.72313782262381,19.408209278442087],[-90.72465126262671,19.40384318622472],[-90.72536304313718,19.398539731931407],[-90.72567170267217,19.38680531842209],[-90.72522543989965,19.379675691228044],[-90.7240348622637,19.376661867024836],[-90.7221789243668,19.36555161115365],[-90.72277520669894,19.35916657565241],[-90.72489778363689,19.35820013049971],[-90.72850667977468,19.35227983993724],[-90.73616946553568,19.33664462149585],[-90.74060160942776,19.329532734671716],[-90.74353966414247,19.326414770663803],[-90.7583711492046,19.30778067386757],[-90.7658057258123,19.299761301227477],[-90.77860542397679,19.287345784686977],[-90.79095897155918,19.276549181774442],[-90.80061538396541,19.268549738549666],[-90.80614608903443,19.26479951046531],[-90.82449988918961,19.251140667065897],[-90.83423506025423,19.24311096307582],[-90.84441807636688,19.233756535962698],[-90.85048691342638,19.228558573621058],[-90.85506712526586,19.223993419988744],[-90.8628451207149,19.21707000916365],[-90.88966046928783,19.194158381147133],[-90.89842827286566,19.186998615477194],[-90.8996998674258,19.183461471087867],[-90.91872495464264,19.16963851847936],[-90.93747690701929,19.156595133008295],[-90.95213869781884,19.147038945875693],[-90.96256591156606,19.14076102368466],[-90.96441436615726,19.13871518286419],[-90.97367780019209,19.132785282103555],[-90.97965503712578,19.129513502816053],[-90.98762783585403,19.124045327227122],[-90.9954418014064,19.118163391626638],[-91.00796259864984,19.110944837765487],[-91.01177959827243,19.10907533108076],[-91.02348035570003,19.102388907274474],[-91.02563297121304,19.100639046951358],[-91.03409445150481,19.096664539946573],[-91.03795296564329,19.093403969690485],[-91.04707968316279,19.08802200500253],[-91.05292846374755,19.085154274938475],[-91.06850299941925,19.075796706447704],[-91.08111883796795,19.0674642941583],[-91.08674354236655,19.062127093216873],[-91.08910368323711,19.058905019240683],[-91.09299978065945,19.0557238546794],[-91.09852760571948,19.052084764592166],[-91.10765461255096,19.047084900751884],[-91.11124820138139,19.044141884142846],[-91.11066139395632,19.038348099884047],[-91.1132570173242,19.035356091572737],[-91.11857402555523,19.031933770441185],[-91.12677611789968,19.02740300051323],[-91.13081542628328,19.02449423402527],[-91.13920569702248,19.02016276779642],[-91.16159180988342,19.00800418570236],[-91.17225940799949,19.001961040987453],[-91.18516430579803,18.99617190034286],[-91.1844598062097,18.994561642244832],[-91.19244051755044,18.98984949124531],[-91.19804200688407,18.987367096038895],[-91.20356912057036,18.98397664706505],[-91.22317702071496,18.97389291012894],[-91.23386366298791,18.968741264389962],[-91.25602050516846,18.959774424519367],[-91.26480092728826,18.956585925381034],[-91.29248553077883,18.945712467743988],[-91.31942695317298,18.93347625446887],[-91.33451787235003,18.925958021957626],[-91.34387816920918,18.920952236021492],[-91.36235711974638,18.910567489813275],[-91.37060570268608,18.906190946125264],[-91.39117866449124,18.89373836873807],[-91.39992997907444,18.887180534394247],[-91.4053431132055,18.881993131447757],[-91.40576572458446,18.880155141382943],[-91.40939408580243,18.875841604176912],[-91.41623721017822,18.868763544195076],[-91.42316707684768,18.860973692109383],[-91.4362475625154,18.84555946122532],[-91.4434472640616,18.8374676938339],[-91.44762695979426,18.834316756958003],[-91.46935470396028,18.815227335642874],[-91.4824974941913,18.802747319255616],[-91.49595561048903,18.792729757035886],[-91.49827865616709,18.790510147714826],[-91.530300000002,18.78039999993257],[-91.5335784838017,18.779892865931686],[-91.53889746508304,18.777273577479036],[-91.54987194230148,18.769141687529725],[-91.55887870738542,18.765131320358194],[-91.56903307154295,18.761244339599443],[-91.58045348272412,18.75632284683502],[-91.59271114952315,18.75177620550687],[-91.5956679801555,18.750124009541764],[-91.60571159254374,18.746349190210537],[-91.61914468210614,18.740636752360672],[-91.62867945908215,18.737349790565133],[-91.64140863792329,18.731635875569225],[-91.64674902639706,18.72807383990488],[-91.64939766301586,18.727245732370534],[-91.6513299452962,18.723598244781215],[-91.65496649304106,18.721807038452198],[-91.66009121358098,18.718257543668756],[-91.68551470958153,18.711374338372536],[-91.69732952814627,18.706476985182917],[-91.699454747115,18.705194816037135],[-91.69836722084221,18.701547535152315],[-91.69958719293328,18.699192737667488],[-91.70730858644231,18.69528473096136],[-91.7181063187902,18.688760578439314],[-91.74067093794332,18.680195990154175],[-91.74775305822732,18.67795299475779],[-91.76708673548484,18.672822338081914],[-91.77751265217313,18.67068146770174],[-91.78053003655032,18.669540323009073],[-91.78814125590031,18.667942994017153],[-91.79727053055558,18.666597149695292],[-91.81547921847391,18.664867632604683],[-91.8247021613422,18.664199887742257],[-91.83745426093145,18.66479611022163],[-91.84049758558712,18.664001963480928],[-91.84442347331901,18.660654920183447],[-91.84825472205603,18.65556516799893],[-91.85095319039425,18.65066006306074],[-91.85567149571597,18.611293925482755],[-91.85765804401461,18.612925311604954],[-91.87859858966624,18.617969085008838],[-91.8949266901891,18.626510820001613],[-91.9005772026801,18.630053734072533],[-91.90883102220607,18.636257502293404],[-91.91722945215861,18.645188782217588],[-91.92079951394754,18.652211948323156],[-91.92397530214049,18.656808542420833],[-91.93026430182312,18.667481979909724],[-91.93702952960939,18.676432401126874],[-91.94503810501863,18.68648685652437],[-91.95120906403895,18.69359484836218],[-91.95686103118328,18.69742548494753],[-91.96118557558515,18.69734806873487],[-91.96685400553281,18.69822245878629],[-91.98956338501102,18.699230234558968],[-91.99286912929887,18.69802972439976],[-92.00747987202021,18.69851229226191],[-92.01278999227281,18.69795381949075],[-92.01478690149787,18.696997748602882],[-92.02206019681847,18.696967806565397],[-92.0361063014658,18.695218849302478],[-92.04627540339408,18.694737307000423],[-92.04694807416325,18.69424004754086],[-92.05985043394003,18.693805084438168],[-92.0694785561891,18.692746344826276],[-92.07476680511985,18.692754232916457],[-92.08614420356821,18.690935159910453],[-92.09264134429236,18.690866942170032],[-92.09968411131331,18.689435527637727],[-92.11050737467605,18.689352990117754],[-92.12201120292895,18.6874331627414],[-92.13360853458414,18.687284240712415],[-92.14363810101361,18.686617727854127],[-92.14453003178079,18.687025612276386],[-92.15229367895859,18.686147180468026],[-92.15299773291031,18.68679699354584],[-92.16508715112428,18.686450743180217],[-92.16686204165273,18.684924887735917],[-92.1716270470277,18.684082612040015],[-92.17758733663374,18.683965701900092],[-92.18082310130211,18.682680748658527],[-92.18803383416122,18.682150931613705],[-92.19373218541074,18.68077503918795],[-92.19744670140199,18.68166388551407],[-92.20423498927306,18.6794746715575],[-92.20990016412452,18.678862204452912],[-92.21599971512347,18.67881557083092],[-92.2298319168442,18.67760674360261],[-92.23845896690148,18.67653205877309],[-92.24986469994235,18.676146739638966],[-92.26561513975315,18.67521250391627],[-92.29215635957365,18.67334886796192],[-92.31199751064088,18.672563956406748],[-92.31702202539026,18.672572661240395],[-92.34984422941324,18.670380931318448],[-92.3773840643396,18.66757743255215],[-92.38889442647422,18.66615674538491],[-92.41638610575308,18.66156227037186],[-92.436225351041,18.657456893239953],[-92.44307143865495,18.655709649097503],[-92.46354475796232,18.651664277163377],[-92.46879002209761,18.65096495314367],[-92.46784752480033,18.64727795073361],[-92.46676531432666,18.64211047357793],[-92.46582126276087,18.636681888476687],[-92.46507275356049,18.634587845718272],[-92.4659763165775,18.63042302738222],[-92.46708900640533,18.62578474037582],[-92.46710305884926,18.62127408089043],[-92.46574504812537,18.61656341041504],[-92.46272553470277,18.613170181900557],[-92.45850620623082,18.61036430184049],[-92.45587614025214,18.608167656260605],[-92.45319181963634,18.60534304363307],[-92.45194424933555,18.603515215148377],[-92.45210726852127,18.601652164143218],[-92.45215291834108,18.600062667789643],[-92.45106189779466,18.59787011265928],[-92.44922115017437,18.59422483073638],[-92.44658951984661,18.589847352394088],[-92.4443816253135,18.587110340242248],[-92.44213042050757,18.584188236839623],[-92.44020740854722,18.581724117728754],[-92.43919231609641,18.579898054442026],[-92.43755429187064,18.577147215442608],[-92.43667118040787,18.574398616765563],[-92.43489535413346,18.571843483869543],[-92.43257147441085,18.569025166019856],[-92.43045504818156,18.565749787902007],[-92.42840862261755,18.562082318405032],[-92.426229639398,18.557041442516038],[-92.42503542842735,18.553336764803873],[-92.42389044688417,18.54929811263065],[-92.423478615271,18.545116575736643],[-92.42346548079365,18.540046368005505],[-92.42349990295429,18.535488777052137],[-92.42346975430081,18.532235821019583],[-92.42421408682577,18.52935245715605],[-92.42496854903527,18.527060839896535],[-92.42560134371939,18.524662953384052],[-92.42611425273384,18.521698380195346],[-92.42641194788087,18.520018916904576],[-92.42652277440459,18.518190006068323],[-92.42654575568821,18.516509377744512],[-92.42643102613869,18.514973576181944],[-92.42595520912272,18.513024970699462],[-92.42526594157067,18.51130518275062],[-92.42441379824004,18.50959877523968],[-92.42314837906417,18.507802601092294],[-92.42227074751702,18.506019988018636],[-92.42104677700814,18.502812607744545],[-92.41977412125652,18.49896690449964],[-92.41846311020385,18.49600512618281],[-92.41662173391558,18.49286119866059],[-92.41533282900389,18.49090706192993],[-92.41478675328318,18.489297275605225],[-92.41405172612002,18.487291751301427],[-92.41291759043378,18.485611415631354],[-92.41032939202404,18.48350047472843],[-92.40867745855633,18.482596281449787],[-92.40623756497297,18.48138768856603],[-92.40331079144556,18.47996454365125],[-92.40056447456675,18.479171511665356],[-92.39798034693825,18.478920001989877],[-92.39446573130192,18.47910157728461],[-92.3919765603938,18.479251250999994],[-92.38709416680018,18.47905065609251],[-92.3848172287785,18.478144106514037],[-92.38241047431131,18.476317273195775],[-92.38012250074365,18.47388006755955],[-92.37791614698244,18.471600818510126],[-92.37541605114473,18.46938890269945],[-92.37304318110347,18.468125920959267],[-92.37007329041381,18.466753195740637],[-92.36432450980288,18.463729180178973],[-92.36222147752329,18.46178390436529],[-92.3603049259898,18.458988570963356],[-92.35965782568218,18.45694631999629],[-92.35997287046325,18.45485710065367],[-92.3609822925605,18.4511155675973],[-92.36110182208313,18.449949320512985],[-92.36013721837412,18.445863650885315],[-92.35380194763525,18.442294399488105],[-92.34871364629089,18.44309368196315],[-92.34679950486412,18.445567407574515],[-92.3456970416832,18.447630890751043],[-92.34464590696967,18.4494488443014],[-92.34356763159406,18.451039382519525],[-92.34160214093902,18.45353349436334],[-92.34032361187894,18.454921588520108],[-92.33894678827681,18.45646936052202],[-92.33733506246426,18.457824128250422],[-92.33319873976478,18.459736120639207],[-92.33157508723008,18.46029967170068],[-92.32252893718743,18.473080898868147],[-92.32149248590628,18.470687985308757],[-92.3215522759566,18.467527681956085],[-92.31055568568536,18.46052863078171],[-92.31028747096883,18.45557936956874],[-92.3081919003734,18.45716573638748],[-92.23760789321341,18.458609578666824],[-92.20451719818044,18.456857031009235],[-92.17614773527225,18.458233220244153],[-92.17651037784816,18.425923563577044],[-92.17647378231459,18.415789353013167],[-92.17736021796071,18.375882696865006],[-92.18194872653908,18.375902438089838],[-92.17135755680647,18.338954304543165],[-92.17194361210579,18.336332447101256],[-92.17395119750734,18.32498217422892],[-92.17448369984191,18.322288460753725],[-92.17810611701782,18.301882169907117],[-92.18042882027936,18.28982357628729],[-92.1772278674332,18.288744861446105],[-92.17519755891493,18.29404342624815],[-92.17425197041837,18.29010153247907],[-92.17495654103965,18.28704310910922],[-92.17295136308053,18.275337691376876],[-92.18324385258433,18.274063227170018],[-92.18119492751197,18.2711616613754],[-92.17925707143422,18.268665793718014],[-92.17126689775017,18.252953210261808],[-92.14893751693756,18.210406073222828],[-92.16442396491738,18.19786561672879],[-92.16172432929432,18.193748659197468],[-92.16056211808677,18.188668575091526],[-92.1609029957915,18.15542416844886],[-92.14878203883313,18.1492963788844],[-92.14904346009723,18.136730366103677],[-92.13130386219984,18.122283558575646],[-92.12833569230372,18.120149856023374],[-92.12748740282268,18.110777503293946],[-92.12742457344945,18.108657861808126],[-92.12573800203535,18.106649527863112],[-92.12447788713456,18.105140567878607],[-92.12218166757987,18.102385594106806],[-92.12113818468123,18.10194950287081],[-92.11825567232023,18.102007717802508],[-92.11638145118854,18.10095906283823],[-92.11478375849458,18.099265248035124],[-92.11200626554586,18.095644099728418],[-92.11010835580555,18.09440619935509],[-92.10828145998141,18.093806808902286],[-92.10375775930356,18.093488812751787],[-92.10016471852487,18.092867164061943],[-92.09770019346848,18.092604506464966],[-92.09509713640279,18.092512547935996],[-92.09223100379364,18.092049962432384],[-92.09062677131482,18.091134316882574],[-92.08552305627177,18.08673655926816],[-92.08414163555341,18.085861471833482],[-92.08044150537506,18.08605633013434],[-92.07883252884653,18.087937792490777],[-92.07776966667882,18.092589328985923],[-92.0748172315586,18.09444256700408],[-92.07296485409341,18.094008197590767],[-92.07096810911418,18.092816712874026],[-92.06802259013364,18.09211329726486],[-92.0664629995519,18.09366955422655],[-92.06217167036152,18.09816393430998],[-92.06027481018128,18.098534191071735],[-92.05734552334252,18.09715679118193],[-92.05503513492664,18.09473866470279],[-92.05388325247901,18.094248562819985],[-92.04915433708709,18.094323456071947],[-92.0457856410161,18.09527851539957],[-92.04398539542638,18.096892088505285],[-92.04166111749862,18.09807655062582],[-92.03993880899702,18.09795034167871],[-92.03875385370975,18.09708175924129],[-92.03701739702433,18.09495485408047],[-92.03590120899105,18.091140748987414],[-92.03598625002144,18.08736333197976],[-92.03729854250855,18.085200695808282],[-92.03979088791277,18.08346386203283],[-92.04127373671543,18.08233406585566],[-92.04246913802007,18.0812616434323],[-92.04209542437405,18.078318814851798],[-92.04002806631377,18.07756350560254],[-92.03484170520954,18.07814874775363],[-92.03215204387823,18.078236716319566],[-92.02998717119334,18.077980279657083],[-92.02824216896096,18.077172044083],[-92.02663094134863,18.075863800948355],[-92.02580619176138,18.073718609550838],[-92.0248864880478,18.070133165832942],[-92.02286516681704,18.064705548934796],[-92.02098687755614,18.06290235853743],[-92.0187443549375,18.06067542650402],[-92.0169337005953,18.058089477319243],[-92.0149320764657,18.053622259363692],[-92.01181754938438,18.05094500337151],[-92.00734439203876,18.04998180679837],[-92.0000000089729,18.04455374524025],[-91.9996077148586,18.04425937206497],[-91.99079872003563,18.038739041208714],[-91.98736247771274,18.038880853250305],[-91.9828012512358,18.04310445630267],[-91.97877858318822,18.042829715481844],[-91.97540173707733,18.036941108244093],[-91.97459409302411,18.033356236907082],[-91.96961308015767,18.025229146756317],[-91.96900515917139,18.023415168251006],[-91.9686166129456,18.021810932770336],[-91.96841952888872,18.020797486566778],[-91.9677974302491,18.019177599319676],[-91.96674770040443,18.015988439599028],[-91.94012158521116,18.012563974658974],[-91.935355623801,18.010202440550074],[-91.92871319443566,18.011079633685426],[-91.92854492679402,18.011105183967857],[-91.91349325850246,18.013091606978833],[-91.9101056576136,18.013642616901507],[-91.91004320011888,18.013655822854275],[-91.90972267419437,18.013786307323016],[-91.90416638987074,18.012693667420706],[-91.90035477252144,18.012147002674567],[-91.89806463177035,18.011111331780228],[-91.88811014387778,18.006337584085713],[-91.87843754990763,17.99563123552241],[-91.86720785353077,17.98326635284701],[-91.86504684027051,17.98288779218757],[-91.85555615874773,17.981060733974005],[-91.80464421751094,17.972550514390036],[-91.77222798523087,17.94524915084844],[-91.77118527218022,17.944366924992494],[-91.76800603669716,17.948547589025566],[-91.76226653426187,17.939014273163366],[-91.75710069234702,17.939733641904297],[-91.7613893630886,17.946001363565244],[-91.76058509518776,17.956480038831558],[-91.76048730085273,17.95762567762091],[-91.75487015530331,17.95143667098165],[-91.74511459145253,17.940805102899787],[-91.73953705368683,17.935213958622057],[-91.7386938426551,17.936182524516425],[-91.7370281085552,17.934216965613587],[-91.72508715878382,17.926671212057727],[-91.72510105750513,17.92449461321769],[-91.71569590718701,17.922391721405177],[-91.71240406052976,17.92164285982551],[-91.71282723359712,17.91892721758535],[-91.69775303310405,17.90961422531558],[-91.69620716760033,17.908741923012087],[-91.6747299016024,17.896385392097727],[-91.67194204567897,17.894661394994444],[-91.66598543087792,17.890965897588217],[-91.66145302761845,17.88808925817068],[-91.63880593640613,17.873953789841494],[-91.63621459201374,17.878334541113645],[-91.63274893362558,17.884196371279074],[-91.63431820997079,17.885096380774485],[-91.6291014175361,17.897127896737004],[-91.63154238886273,17.898149440962186],[-91.63308921590055,17.905016024258657],[-91.62916140577096,17.906838699777268],[-91.62773738227139,17.90745281371278],[-91.62491352059874,17.908053418906093],[-91.62330243780337,17.90837384887044],[-91.619363219153,17.909212301508944],[-91.61751083340204,17.910820845657327],[-91.61484669773495,17.912037538508343],[-91.61271359378532,17.91291902282677],[-91.61321833060879,17.91334351736066],[-91.61962488083259,17.919189619300994],[-91.62026886048727,17.922230056222247],[-91.62204679630389,17.94257474855948],[-91.6247403864495,17.94907184494855],[-91.62328694325691,17.95040088807366],[-91.62184232839337,17.95172117555319],[-91.62047629447687,17.953578594054704],[-91.61977338199472,17.957574112176417],[-91.6215125532039,17.9615873197597],[-91.62116610259136,17.96509107775387],[-91.6207593768167,17.967237892687876],[-91.61918202485998,17.972854218663315],[-91.61998964225819,17.976440284949774],[-91.61776672173568,17.9819157920096],[-91.61695633048924,17.983870134631047],[-91.61653485778555,17.98469555054959],[-91.6163634469649,17.986904689756614],[-91.61582113612172,17.989084062043332],[-91.61727364189767,17.9970101818829],[-91.61698802592821,17.99990328493743],[-91.61802421125827,18.002462962080074],[-91.61824801304738,18.0030029798055],[-91.61777830945039,18.00369794320966],[-91.61727286658214,18.004783658579186],[-91.6193504488457,18.00848109913045],[-91.61952399239311,18.009024117840966],[-91.61949250196028,18.010416641404106],[-91.61924856712193,18.012491936228287],[-91.61918015509582,18.01339468033086],[-91.61923318479194,18.01439547830688],[-91.6189474701302,18.016750356234013],[-91.61917516218813,18.017232645516515],[-91.61905368995497,18.01769557285388],[-91.61845990530873,18.018154890220046],[-91.6165913911446,18.02105417140956],[-91.6163719341597,18.021792480274826],[-91.61750782719355,18.023960716650322],[-91.61738483331817,18.024511035367652],[-91.61709709424065,18.025179484454895],[-91.61642316252903,18.026030503283778],[-91.61606806716935,18.0265177710873],[-91.61575877747862,18.027026592805782],[-91.61556256455822,18.027291942794136],[-91.61537674522964,18.02771438284367],[-91.61456816480529,18.02852271595151],[-91.61452654667085,18.02927883350901],[-91.6143037230899,18.03201735106751],[-91.61411371053725,18.032199792249514],[-91.61401553912634,18.03259510118869],[-91.61516784456063,18.035170390778262],[-91.61408907902774,18.040113695548598],[-91.61393263657618,18.04256976220921],[-91.61378201436293,18.043231532516927],[-91.6134082049324,18.0440218634277],[-91.6125120024384,18.045645672264982],[-91.61376681703439,18.04865820072206],[-91.61392034198661,18.049224732227515],[-91.61376935506019,18.049462681428793],[-91.61350214000402,18.049958326736714],[-91.61357521590946,18.051408877925724],[-91.6139686624482,18.05172963357319],[-91.61518413059991,18.054166701724398],[-91.61593262903591,18.05470702058375],[-91.6168155189223,18.0552249461507],[-91.61811141148144,18.055720772375935],[-91.6192949092025,18.060803690585487],[-91.6175126740855,18.063201509768135],[-91.6168048950484,18.06481607085459],[-91.6165586366406,18.065434341294406],[-91.61496881305453,18.067698871557468],[-91.61274275907567,18.068932859554195],[-91.60897321759273,18.070487386801403],[-91.60683557478984,18.078085191355456],[-91.60744062206595,18.079294265090255],[-91.60762015236975,18.079625574929196],[-91.60611897125017,18.08276942362221],[-91.60645135932936,18.085672642859492],[-91.60793744845557,18.088310596606675],[-91.60855662492452,18.08848455227718],[-91.60964428903645,18.089198664390608],[-91.60885332093034,18.092074421035704],[-91.60991900852605,18.095732215978728],[-91.60965872023945,18.09594942686141],[-91.60971801152823,18.097609400353235],[-91.60961075641251,18.09810298571],[-91.60950468118381,18.098438396701624],[-91.60837317330333,18.100055733490365],[-91.60793194293723,18.100922652910185],[-91.6059977308264,18.102133340377236],[-91.60549605994328,18.10251090586013],[-91.6052045787012,18.103263586038224],[-91.60538490425228,18.103582553267017],[-91.60539838535965,18.10397972837461],[-91.60527939630282,18.104312411449087],[-91.60377120320146,18.10584215328737],[-91.60373506484206,18.106207203374083],[-91.60381402530919,18.106731916984074],[-91.60357753602335,18.1072066959062],[-91.6008830795696,18.10739363763139],[-91.600613972232,18.10778876076347],[-91.59809312265378,18.108443150800213],[-91.59773776788734,18.108655214369435],[-91.59665657830743,18.108546480750874],[-91.59244248920061,18.10667995977326],[-91.59137189926275,18.10689908322047],[-91.58945953374126,18.108423277486736],[-91.58953012723185,18.10949547677859],[-91.59055886080779,18.112761452807774],[-91.5901184711721,18.113376025013167],[-91.58994239409208,18.11394209715735],[-91.5898836570858,18.11468554153413],[-91.59060775508948,18.115356401512543],[-91.5910420152178,18.115714179504835],[-91.5920679043922,18.118547860648107],[-91.59167373067055,18.119364500884046],[-91.59245917914524,18.120158243938647],[-91.59305796393124,18.12057237933965],[-91.59508815247762,18.122552806009594],[-91.59495057285392,18.125753710114168],[-91.5922796866522,18.128347883007393],[-91.59178339550073,18.12885497127587],[-91.59152823683348,18.12934410309765],[-91.59166020837358,18.12990180747329],[-91.59199967767853,18.130501706453742],[-91.58739809342023,18.129182630067703],[-91.58668025206356,18.129931205400624],[-91.58426521345973,18.132328310269884],[-91.58271262336353,18.133831959700103],[-91.58123799079192,18.13524723641723],[-91.58056973733079,18.13488763114225],[-91.57794311783397,18.13643594395461],[-91.57506746099546,18.139212677396927],[-91.57219912550266,18.14201513156536],[-91.57862729610241,18.148365902333808],[-91.58272926781848,18.152461407058524],[-91.58179334260416,18.15271163446141],[-91.5810306292882,18.153535751424727],[-91.5811627207791,18.15377144520386],[-91.58019237046551,18.15779738024554],[-91.58012330679009,18.158052950135072],[-91.57802988904348,18.158958096010508],[-91.57377618788132,18.157582260956247],[-91.57337740638405,18.15719520871994],[-91.5700011164979,18.157169084141174],[-91.56757058905504,18.158966850735453],[-91.56734577427414,18.1591572222099],[-91.56154075480197,18.15757635944459],[-91.5586526815203,18.15787857248074],[-91.55565424900948,18.15657200337961],[-91.55537875214276,18.156722860077423],[-91.55276106286203,18.15817622874198],[-91.5503601631446,18.15657839507338],[-91.54769302340725,18.154825558753885],[-91.54496684118641,18.153061507689415],[-91.54104378322927,18.15047037434755],[-91.53799090351367,18.148501994756657],[-91.53450513783025,18.146174365812158],[-91.52452276443029,18.159897104459446],[-91.5201205575388,18.16051396061863],[-91.52039282661457,18.16238339657508],[-91.52038241591782,18.16251935553953],[-91.51727093667796,18.165209188039228],[-91.51592341253394,18.169740720979576],[-91.5140590547706,18.170167538600083],[-91.51374155446382,18.170225662408996],[-91.51355084908221,18.170284766529846],[-91.5136085302766,18.169057965516004],[-91.50933734412257,18.17105475116216],[-91.50727668842688,18.170476287555402],[-91.50507169989294,18.166151528617036],[-91.5042851766487,18.16565886800288],[-91.50321097603506,18.16460474003111],[-91.50466912748408,18.162792169794443],[-91.5045896053951,18.160485144400468],[-91.50408088005423,18.159714427931135],[-91.50240787623329,18.157805606063107],[-91.50205094160987,18.154958889553484],[-91.50233429492363,18.15434889646224],[-91.5096403648256,18.154575016441527],[-91.5152128452849,18.154952469431066],[-91.51566456514172,18.147576555322587],[-91.51584627079677,18.1428084949672],[-91.51605438012814,18.13931073137428],[-91.51608080712509,18.137888809904098],[-91.516309565879,18.13358447229865],[-91.51653218144372,18.13048525224707],[-91.50716953675567,18.130053542693588],[-91.5062498025813,18.130011332322226],[-91.50466471490347,18.12667636301154],[-91.50272176498936,18.125938216451345],[-91.50469594285164,18.12423580944096],[-91.50197329070716,18.121993907005333],[-91.50357154279419,18.120109218166192],[-91.50196638115779,18.118142521452796],[-91.50350670509675,18.116871690131404],[-91.50311480978615,18.11675082235945],[-91.50059323228675,18.11730639574654],[-91.4978500599276,18.11517404803692],[-91.49661819663856,18.116310129777617],[-91.49206000288257,18.116405786159817],[-91.48893589563806,18.117571025899906],[-91.48944078251105,18.11715568513347],[-91.48752341287275,18.11664145307941],[-91.48682671367703,18.116591060699022],[-91.48435301890493,18.11275779896681],[-91.4798137697058,18.11305925038971],[-91.47690911806501,18.11235293839877],[-91.47546340246782,18.108028464001166],[-91.47398739342066,18.10721810494789],[-91.47377037463912,18.10660559764807],[-91.46964155095941,18.103398011945274],[-91.46509302818976,18.104057625831103],[-91.46484466497861,18.10379607608121],[-91.46389745731767,18.102231098970492],[-91.46341887998568,18.102027591260082],[-91.4612660814675,18.102190104572003],[-91.46091149743324,18.102127395990408],[-91.45715681944705,18.100594231425134],[-91.45636481012889,18.098012088548728],[-91.45607381486315,18.097849984104016],[-91.45329386624348,18.098087275912803],[-91.44902853787664,18.09471546359032],[-91.4468043356402,18.09587560930828],[-91.44659532903256,18.095893935056836],[-91.44528045821079,18.095783492432588],[-91.44117909036885,18.09088673621926],[-91.4385889577863,18.0850026811583],[-91.43828032648167,18.084481043598487],[-91.43465566873448,18.083433352174723],[-91.43336622793299,18.082097820677063],[-91.4298360393289,18.08177399944111],[-91.42939802694428,18.08171055741616],[-91.42411693836357,18.08020907894212],[-91.42344251831798,18.08021258356041],[-91.4221138942861,18.080359596849405],[-91.42125684213534,18.08045243284397],[-91.41918320961071,18.081134325443088],[-91.41713256615941,18.08157672436414],[-91.41304720997528,18.079404452454412],[-91.41252781782345,18.07910064527198],[-91.41215269631499,18.07901772319957],[-91.41121209977683,18.079109827250875],[-91.41031410978059,18.07910243252161],[-91.40968834202226,18.079017390954732],[-91.40904154116816,18.07895213301242],[-91.40818983274818,18.07946519436365],[-91.40775219783626,18.07936178919374],[-91.40549437257147,18.079622673547306],[-91.40493069395262,18.07959805648761],[-91.40341182127582,18.07984751889586],[-91.4029648597255,18.079901241779282],[-91.40206386341106,18.080233235617754],[-91.40093566749124,18.080283817348175],[-91.40060207866014,18.080221126063464],[-91.39996828825429,18.08017615447949],[-91.39898699593044,18.080148057028396],[-91.39832326241151,18.079643376419256],[-91.39632997580401,18.078368861857086],[-91.39518118740227,18.077431699422334],[-91.39458035103905,18.0769075713406],[-91.39294700513818,18.07509692901567],[-91.39315676626319,18.071990841452305],[-91.3920929441378,18.0696111860903],[-91.39157406732306,18.069424450246117],[-91.39045865405336,18.06787514605287],[-91.39006531426872,18.06749244825943],[-91.38913733881634,18.066206841326903],[-91.38853109401413,18.06628166872025],[-91.38552694056165,18.064633356893466],[-91.38496660237405,18.064249303747374],[-91.38162575029367,18.06422133676614],[-91.3813317767623,18.06439855240029],[-91.37803838304222,18.064912859384833],[-91.3771163267948,18.065264521106087],[-91.37373672287896,18.067172889252276],[-91.37324698435776,18.067178079800158],[-91.37317242731757,18.0672280622166],[-91.37233536529368,18.06742064561439],[-91.37143763590615,18.06739311759094],[-91.37097755002395,18.06746912162231],[-91.36994215703015,18.067522661111752],[-91.36852724998465,18.066971626639486],[-91.36817813121058,18.06632974816324],[-91.3661061754263,18.066831354095314],[-91.36595927175227,18.0669099957899],[-91.36393180634491,18.069368703165367],[-91.36251283607072,18.06925683088059],[-91.36213004398701,18.069316911506576],[-91.3616028158749,18.069871530418254],[-91.36064326415044,18.069763542201315],[-91.35772252789457,18.069459200103836],[-91.35712821677822,18.06945259341427],[-91.3551312830794,18.068616939033348],[-91.35404624579814,18.06852780829911],[-91.3536539200582,18.068045257529263],[-91.3534883915691,18.06788412745641],[-91.35079658357881,18.066357410495016],[-91.35056892985494,18.066135821912894],[-91.34984508070107,18.06539087117426],[-91.34947443750247,18.064828664153595],[-91.34645465657098,18.063964223120536],[-91.345847292175,18.06415865718725],[-91.34570075686969,18.064197369093847],[-91.34516143535865,18.06381333659664],[-91.34499379512835,18.06387182565294],[-91.34451204658205,18.06402741483214],[-91.34284956689515,18.06397228939585],[-91.34211876323559,18.063966017241285],[-91.34151027037251,18.06428027858749],[-91.3407595518899,18.064173987740787],[-91.34015811707411,18.063729532953857],[-91.33953414511217,18.06346460903177],[-91.33751309114842,18.06387946731428],[-91.33709631703198,18.063939952704118],[-91.33408897651685,18.06311068678349],[-91.33351023156223,18.0632817981093],[-91.33306914165854,18.06332758093731],[-91.33164013256891,18.062926688412063],[-91.33117297079855,18.06269692547346],[-91.3276752286153,18.06289937405279],[-91.32702432132385,18.06266535728537],[-91.32667644606255,18.06242132597822],[-91.32669173264378,18.061636867939285],[-91.32493189040099,18.05944871978096],[-91.32337313894175,18.05804468759993],[-91.32365629255764,18.057371001263164],[-91.3235975899612,18.055600426247338],[-91.32421268494005,18.0551060588802],[-91.32415007089418,18.054080779278706],[-91.32334835076398,18.053294365435534],[-91.32069313743193,18.052203516608074],[-91.32073857983102,18.051272940417903],[-91.31788027444975,18.0491763036934],[-91.31675286719695,18.049166487608034],[-91.3161686610431,18.049121481853888],[-91.31359370753705,18.048436004632606],[-91.31334349557756,18.048393904806062],[-91.31265719984583,18.048108348295898],[-91.30765840930911,18.046826730901444],[-91.30707880189533,18.046302540891304],[-91.30601785759626,18.045893880973097],[-91.30517243822874,18.045719751275612],[-91.30403052869542,18.045050814268507],[-91.30362856827225,18.044994826555182],[-91.30033009376939,18.043381090514742],[-91.29955954645072,18.04317463227369],[-91.29905985666653,18.043030479015272],[-91.29841911092285,18.042851462416195],[-91.29810525015989,18.042423082212565],[-91.29674319570307,18.04194032923897],[-91.2945624656723,18.03824546958748],[-91.29410699257204,18.03784213887195],[-91.292868702602,18.036353658321957],[-91.29271824993566,18.03590809642509],[-91.290985152764,18.034659888836416],[-91.29027977293879,18.034194417350363],[-91.28994870711534,18.033891968516173],[-91.28925276371172,18.033774018299482],[-91.28831812433248,18.033266595992643],[-91.28775992075111,18.032702578121814],[-91.28575253154423,18.03086786069622],[-91.28543800424012,18.029804580574478],[-91.28183143236993,18.024439560258656],[-91.28141926732798,18.02400625892392],[-91.28081400019681,18.02373443237633],[-91.2805427190691,18.023459574018204],[-91.27921109361466,18.022764578640704],[-91.27908261490842,18.022629250601085],[-91.27878614260538,18.022699980266054],[-91.27855648688478,18.022655999442293],[-91.27846083260295,18.02235127218853],[-91.27576541874242,18.020751480974354],[-91.27531808352245,18.020558873611435],[-91.27488149436442,18.02038732999813],[-91.27464211811849,18.02021754378535],[-91.27356691727539,18.01965884712041],[-91.27321798870003,18.019488081997622],[-91.27153966469564,18.018571933259068],[-91.27111460833805,18.01834808730382],[-91.27094011493665,18.018262702518484],[-91.2706462050881,18.018071455749862],[-91.26944643745429,18.017515838573217],[-91.2688739739175,18.01718185992604],[-91.26524389782583,18.015315601306042],[-91.26497230775993,18.015082609034152],[-91.2644775085704,18.014834032699696],[-91.26435854752708,18.014675823745677],[-91.26302008634264,18.013752145205615],[-91.26266078498304,18.013518412613735],[-91.26189106322204,18.012694115882766],[-91.2618431110962,18.012478742561655],[-91.26176681863444,18.01243611993766],[-91.26154833590289,18.012371301266683],[-91.26149585370325,18.012140321707648],[-91.26081902491609,18.011893225289498],[-91.26046858317363,18.01187956767575],[-91.26034849649352,18.011836600608717],[-91.26019704424118,18.011636110343773],[-91.25997090618216,18.011235918610907],[-91.25973227778968,18.01099275651154],[-91.25952474627627,18.010928034172252],[-91.25918576986089,18.010862080240656],[-91.2580896471361,18.0102731261058],[-91.2576749996436,18.01010174406656],[-91.25729202530016,18.0100564094098],[-91.25692051538869,18.009958730481912],[-91.25660312950657,18.00992444455369],[-91.25488007899872,18.00989281146059],[-91.25473022039114,18.00978840148497],[-91.2545270767601,18.00963195666168],[-91.25425752993442,18.009650148321384],[-91.25414098759035,18.009453289983583],[-91.25404310629511,18.009244603552247],[-91.25322397601195,18.009278409541707],[-91.25305371863232,18.009060493887148],[-91.25282199603083,18.008522535163877],[-91.25254321646634,18.008386027739846],[-91.25152029194578,18.007232931759916],[-91.25129124578791,18.006886292155798],[-91.25088003682333,18.006608308051057],[-91.25068837721187,18.006691637541905],[-91.24977924594998,18.00616157955028],[-91.2494691134192,18.00593203659554],[-91.24910893018006,18.005310475903343],[-91.24898289737604,18.004979587209505],[-91.24862706216612,18.004815212902997],[-91.24841306973968,18.00466897518595],[-91.24838307287831,18.00443170289219],[-91.24819619630091,18.003718960113076],[-91.24808184051454,18.003295428478964],[-91.24865047812364,18.001702561942864],[-91.245665777797,17.997070402938448],[-91.24544509327632,17.996773041995596],[-91.24350806610602,17.994465697535418],[-91.24357352940223,17.993881348777222],[-91.24374701032713,17.99292713547544],[-91.24356266763857,17.992148689915325],[-91.24206446215419,17.98889085057516],[-91.24173727456997,17.9888034233378],[-91.24118169669981,17.98812494375204],[-91.24068072584208,17.9876546248081],[-91.23900213828796,17.986271064626635],[-91.2376438325382,17.98539890600398],[-91.2343286640043,17.98430548493883],[-91.23382788745897,17.984023681398526],[-91.23400549631322,17.9835141595006],[-91.2338197882442,17.98329577635451],[-91.23189242715648,17.982617391479835],[-91.23181614537339,17.982760006030446],[-91.23084877565395,17.982124204924446],[-91.23043649799115,17.982156282343226],[-91.22998676144005,17.982188016891882],[-91.2295562905216,17.982166141646246],[-91.22752130775956,17.982207902230073],[-91.22725893817778,17.98237757207727],[-91.2237548412217,17.981325805162157],[-91.22088390667949,17.978941229198426],[-91.22098125671295,17.97856592842612],[-91.22078301790805,17.977793876177316],[-91.22037290480438,17.97761096350706],[-91.21792093393628,17.97565384253687],[-91.21768327669713,17.975078470312326],[-91.21729669732753,17.975180800697558],[-91.2164728947401,17.97517322656512],[-91.21624701951339,17.975296563516622],[-91.21571986835181,17.975578283441166],[-91.21502806417271,17.975482392473282],[-91.2144314613094,17.975226121732874],[-91.21351948513689,17.97468032611897],[-91.21314684473339,17.974497744409973],[-91.21234321776456,17.974347029723162],[-91.21200526821474,17.97443348887714],[-91.21169149344774,17.97584574211203],[-91.21139099838797,17.97593249573464],[-91.2108291507052,17.975945257724845],[-91.21008567690319,17.97540100099576],[-91.20898751628931,17.97569339263964],[-91.20863892162237,17.975498582290072],[-91.2081377679695,17.975541837867354],[-91.20778488812772,17.975778102649997],[-91.20657959987778,17.976126198920213],[-91.20588157507422,17.97583233201391],[-91.20521507934302,17.974892056237422],[-91.20456541518945,17.97476628044103],[-91.20427178790607,17.9751563098381],[-91.20402629763794,17.975472825133465],[-91.20353841202444,17.975787094823033],[-91.20314408519783,17.975841389675054],[-91.20275005111995,17.97586673720872],[-91.20274770578573,17.976098507424354],[-91.20247301382074,17.976298853815592],[-91.20180780718346,17.97617674139974],[-91.20162697054508,17.97608811781305],[-91.20120761760143,17.975620595439864],[-91.19893121089495,17.97606310064765],[-91.19869208767682,17.977135864939783],[-91.19512615620494,17.976291291023927],[-91.19423096103617,17.97793479087784],[-91.19371811423889,17.977727172564016],[-91.19271359075725,17.97821044299053],[-91.19235274561993,17.97794629004568],[-91.19199072177673,17.977798020915884],[-91.19151261249249,17.977155989283574],[-91.19076423000558,17.976279644689384],[-91.19022285747309,17.9758978591056],[-91.18837222343677,17.975149468607754],[-91.18804081173806,17.974972480134625],[-91.1850023238581,17.97291550784115],[-91.18211217431013,17.97413453500127],[-91.18122298766548,17.976565393810972],[-91.17974328771578,17.976116781115877],[-91.1789925949077,17.975472213316607],[-91.17866267921613,17.97515033034955],[-91.1780899067004,17.97488416255368],[-91.17778584135584,17.974997200566747],[-91.17748230693508,17.97505229572471],[-91.17709035762158,17.97487477006524],[-91.17645429850876,17.97486879051047],[-91.17473759486143,17.976852193655645],[-91.17449481958846,17.976893356474022],[-91.17400948060782,17.97696123349982],[-91.1737036215523,17.97724813893842],[-91.17175885169013,17.977838382855452],[-91.17084601905759,17.97803728637416],[-91.14472674025689,17.975159854232743],[-91.14639781697622,17.972233008806654],[-91.14923363695442,17.96765465737002],[-91.14966373415649,17.966903278391555],[-91.15039642853736,17.96477821630259],[-91.1511229760327,17.962673444446636],[-91.13318226003986,17.958009721619305],[-91.13066915481659,17.982250200836802],[-91.11358064747958,17.975850478292898],[-91.11622434510474,17.971290385749],[-91.11622205206629,17.97125961266994],[-91.11843592294667,17.96739655331595],[-91.119416196212,17.965433700564517],[-91.12020031397799,17.96337525564246],[-91.1177245388858,17.96334986768119],[-91.10697762668303,17.963343774244493],[-91.09669532853468,17.963285213806785],[-91.09421687568727,17.96328128991655],[-91.09181821363018,17.96329757701875],[-91.0894629884055,17.963295090783674],[-91.08633181038283,17.963220233540426],[-91.08602673420188,17.963219573197534],[-91.07961574641087,17.963205552833642],[-91.06628286436967,17.96315319516134],[-91.05825229248194,17.96312726085256],[-91.05775245973865,17.963125632442484],[-91.05194874393345,17.963085434002323],[-91.04299907950968,17.963031881646202],[-91.03010111966182,17.962945367751843],[-91.02535737120252,17.962890828939408],[-91.02297776534903,17.962886658413424],[-91.0206118896175,17.962869126815065],[-91.01617558663128,17.96284840296255],[-91.01401932231363,17.96284585242728],[-91.01169271808965,17.96279149268497],[-91.00637875005401,17.962763436610203],[-91.00389360636399,17.962777641477373],[-91.00157113368073,17.962740275720478],[-90.99856239382854,17.96273265787346],[-90.99616199558818,17.962681050436572],[-90.99505569272617,17.962683545803145],[-90.99347186637306,17.962686962023895],[-90.99044201310807,17.962597723842975],[-90.98795171594458,17.962545041822807],[-90.9876186935814,17.95082433856436],[-90.98762716877076,17.9420898118463],[-90.9876309959248,17.94022354245783],[-90.98763025808336,17.93888127356462],[-90.98764779213775,17.920581178416967],[-90.9876659945391,17.9013506840721],[-90.9955064197265,17.90215663965546],[-90.99552413277303,17.898553904449443],[-90.99563737097128,17.875489465194278],[-90.99044858213699,17.875339615788675],[-90.98766254814927,17.875356559081467],[-90.98766048551852,17.871968462537154],[-90.98765295329883,17.86717933496726],[-90.98765149888493,17.864861174498003],[-90.98766231725762,17.855049760952227],[-90.98766823436318,17.85252808727489],[-90.98768010532501,17.847468829258958],[-90.98769328335857,17.845255084346775],[-90.98769823417717,17.842578060702067],[-90.98768670888046,17.839856619857642],[-90.98766284479206,17.837134535269],[-90.9876532927014,17.834452909709],[-90.9876400427217,17.831728216426995],[-90.98763896211659,17.82898457684547],[-90.98765030818168,17.826250048502686],[-90.98763792791186,17.823557050652767],[-90.98764764660166,17.82086345010498],[-90.98764006143375,17.815473478221406],[-90.96060933294643,17.815391325693042],[-90.95454018799569,17.815527376937496],[-90.91574648063778,17.815433648630403],[-90.87522100372121,17.815206894781454],[-90.85005655236915,17.81538679486721],[-90.77758363217663,17.81565902501478],[-90.74431881603942,17.81572093855982],[-90.68442505818575,17.81571601021608],[-90.61302018577106,17.815924606825376],[-90.58632280000285,17.816130143818498],[-90.43952257009698,17.814912468431146],[-90.42135374283498,17.814315101111617],[-90.3605957839369,17.812871171980532],[-90.2807397070041,17.81552153474638],[-90.12669819603292,17.816617889311203],[-90.07174928168195,17.81608522018462],[-89.92967930346595,17.81504669525475],[-89.84814595347018,17.815293193644436],[-89.77387100617187,17.816040004586227],[-89.68061423253823,17.815807865277748],[-89.66669105766306,17.81568209316947],[-89.49283986197565,17.81463581722022],[-89.4142835475426,17.815107041856436],[-89.32925392865667,17.815570643749652],[-89.32375968252921,17.815465461309316],[-89.28178316530511,17.81553205747167],[-89.18965665866227,17.815520046790482],[-89.15171385134852,17.815614240092884],[-89.15195662489174,17.94025690988184],[-89.15217009805286,17.95360998189176],[-89.19057357879899,17.953758364408145],[-89.20587204440506,17.954099721065234],[-89.20713694768904,17.973362257181634],[-89.20741427753478,17.992648593483807],[-89.20731085495981,18.007445370157825],[-89.20673894043199,18.021079958855694],[-89.16300383624144,18.018517313988184],[-89.16336068614629,18.05788511998037],[-89.14475353042002,18.057699078152382],[-89.14438284967491,18.082443610870314],[-89.20245791083426,18.08327632268754],[-89.20023664163796,18.144629340606798],[-89.14306597233161,18.145819600704556],[-89.1431699333371,18.175857215481358],[-89.14287263662862,18.22416383455476],[-89.15805867635623,18.221326982976564],[-89.15167365672727,18.293562636141758],[-89.13235953705714,18.293402639542705],[-89.13821406769819,18.385543895977037],[-89.12122919740148,18.385849635893635],[-89.12406502918503,18.428970156216565],[-89.1248870391749,18.44449362839663],[-89.1254901829077,18.4506254225185],[-89.1502378158533,18.4510593929445],[-89.14962074338098,18.549610888515303],[-89.15133263848725,18.70127085249561],[-89.15131362365355,18.72402126103475],[-89.15211511602735,18.735730732574837],[-89.15300210134649,18.740976831293494],[-89.15574224997147,18.753114748283053],[-89.14438184640375,18.755918734218596],[-89.14493837870339,18.799626957518115],[-89.14557305732308,18.8087946168543],[-89.14860154800414,18.877307054817038],[-89.14712174609213,18.99504559222447],[-89.13581978364914,19.132372660714054],[-89.14695142397613,19.133156663569196],[-89.14699860828887,19.19856520215103],[-89.14696067195746,19.26199378022534],[-89.1466668511996,19.423861639332017],[-89.2965618139308,19.551174096041393]]],[[[-91.95999999999998,21.202999999785902],[-91.96260000000007,21.204999999785855],[-91.96380000000005,21.203799999785872],[-91.95999999999998,21.202999999785902]]],[[[-91.969,21.209899999786103],[-91.96980000000002,21.215099999786105],[-91.97240000000005,21.210599999786098],[-91.969,21.209899999786103]]]]},"properties":{"cve_ent":"04"},"id":"inegi_refcenesta_2010.1"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-109.80063244657578,24.149260858446667],[-109.8006281233524,24.153347315219776],[-109.79915584723051,24.15461377762375],[-109.79985336295846,24.157962861769192],[-109.80305234053077,24.16130965920894],[-109.8044643577702,24.165578672263962],[-109.80827166172674,24.170356967245368],[-109.80978007028,24.182109228279216],[-109.81766976188635,24.19841274902774],[-109.81973783791466,24.204805712518635],[-109.8220325529424,24.20795039485148],[-109.82707505364357,24.212380305853912],[-109.83058387384818,24.217796241772533],[-109.83347020378892,24.220516862221075],[-109.83758885984577,24.222810392980193],[-109.84248724115417,24.22723871868419],[-109.84462595463327,24.232677600415798],[-109.84649860197607,24.234421593944262],[-109.84723354166056,24.2396729626264],[-109.85215724736247,24.24324639229644],[-109.85559054718067,24.249193462064625],[-109.85659779467198,24.255774999169773],[-109.85754684190573,24.258315742999173],[-109.86388436284506,24.2631170609136],[-109.86494705514968,24.265854398603437],[-109.8695518660748,24.270129759423867],[-109.87109646925637,24.272491851757877],[-109.87137397436396,24.275925595173476],[-109.87456781660848,24.282189427724973],[-109.87789801390954,24.285049827765704],[-109.8796472210501,24.290052235305154],[-109.88246846262217,24.293093730072826],[-109.88223577293854,24.296828575130917],[-109.8866028158925,24.307180554435263],[-109.88980971841556,24.31283152439852],[-109.89655799960809,24.320900050206546],[-109.90071233391222,24.32477279726612],[-109.90452288334268,24.330990941493724],[-109.905554403005,24.33489064837579],[-109.9085054560137,24.341030250268773],[-109.91061381675422,24.34222844251343],[-109.91494781333608,24.34654687328424],[-109.91873498994335,24.35181854832547],[-109.91967837209609,24.35805198058756],[-109.92110749373825,24.35982993037959],[-109.9212807791277,24.363005475508487],[-109.92266679536237,24.365878090772867],[-109.92616314751939,24.369068182555452],[-109.92871151117805,24.37390865576009],[-109.93077116748225,24.37584901752399],[-109.93425028571875,24.37592997559358],[-109.93319053185854,24.373928975121203],[-109.93518299293692,24.368021059317186],[-109.93402728703632,24.36232354379399],[-109.93741096977874,24.351067840427277],[-109.93786424369068,24.346659469888664],[-109.93792256363895,24.335014638086193],[-109.9393084951268,24.33259730999771],[-109.93816050638566,24.330202880853847],[-109.93947109550675,24.32497641734443],[-109.93508646396754,24.317912950369532],[-109.92957898336851,24.310486987076047],[-109.92890891655117,24.3073982238829],[-109.92529332393497,24.30108495836987],[-109.92219066935962,24.298161807200927],[-109.91960204467347,24.294336915020494],[-109.91825034603914,24.290484675455104],[-109.91823212199364,24.283317123485062],[-109.92187649236723,24.276705348523592],[-109.92331941962675,24.271488964444586],[-109.92251970375048,24.26253905245153],[-109.91803222056535,24.247856492787093],[-109.9148690224668,24.243975146859043],[-109.91453803414402,24.24018049939508],[-109.91063656160162,24.228536933187684],[-109.90895621616158,24.225709956467256],[-109.90709521070482,24.220124244779583],[-109.90521587557117,24.217095781730563],[-109.9039504955062,24.21148616885],[-109.9018600885534,24.209674762561917],[-109.90072967453091,24.20600737993948],[-109.89899373177366,24.204083527757916],[-109.89950949681179,24.20002634901897],[-109.8981194208007,24.19883229033769],[-109.89587825021096,24.194091908136443],[-109.89317794198178,24.18683254629235],[-109.89044816979168,24.1848072462019],[-109.88752690404925,24.18130994781319],[-109.88635739426405,24.177749438834894],[-109.88153885973969,24.17431007971777],[-109.87764042984736,24.169917675887064],[-109.8777255579131,24.167137733800928],[-109.87507768498767,24.16279368520577],[-109.8713128163676,24.158016544123598],[-109.87369629634338,24.153713639009254],[-109.87290841804719,24.15251025488584],[-109.86761654875914,24.15173922732231],[-109.86366235093374,24.147451824368943],[-109.8560622500022,24.14793835469942],[-109.85442853486722,24.146809553066305],[-109.84967739960996,24.147853317587874],[-109.84280019534577,24.14615274693415],[-109.84069430846,24.146269826212347],[-109.83133065953552,24.1442234440201],[-109.82918696147186,24.142655841366548],[-109.82570280365286,24.14169850259475],[-109.82290155817589,24.142927562472778],[-109.81803977736604,24.142823458964926],[-109.81208994260112,24.140704486355787],[-109.81013063258274,24.140637184234038],[-109.80509328785644,24.137031224938823],[-109.80191667736506,24.13705239761771],[-109.80255671732584,24.142475075790344],[-109.80084706265058,24.145785192243466],[-109.80063244657578,24.149260858446667]]],[[[-110.3541043941031,24.53145987488051],[-110.36075368337544,24.533670017259112],[-110.36252728916219,24.533208345538696],[-110.36660340330167,24.529366134320526],[-110.36937895536886,24.52937776293402],[-110.37050845815929,24.530880659759475],[-110.37092342544906,24.527838256782445],[-110.37696118787346,24.526038026142714],[-110.37876903900786,24.52399079297942],[-110.38290924131582,24.52214024027478],[-110.38516899869256,24.522628893161254],[-110.392069963827,24.522310788969207],[-110.39888115395723,24.51960587923054],[-110.39872008039555,24.518025038334656],[-110.39483996807832,24.517833567134176],[-110.39519207950838,24.516919620961914],[-110.39003580901863,24.51692838936765],[-110.38755478867893,24.5152864985875],[-110.3903390526965,24.514787097726582],[-110.3973936964145,24.510743224221528],[-110.39716120370684,24.509771301739306],[-110.39184616902685,24.510332805644737],[-110.39103485165663,24.509192913470145],[-110.38509498138234,24.509404286893755],[-110.38048577367294,24.50722503347555],[-110.38261101508863,24.50584177418017],[-110.38797168670152,24.49987036289184],[-110.39168080128627,24.498558366463044],[-110.39065508973277,24.497040000627862],[-110.39154457973774,24.493902528129126],[-110.38962995919525,24.493461573352988],[-110.38513214207933,24.49427764480339],[-110.38963102979147,24.49219620117634],[-110.38929480603929,24.489987698889365],[-110.38505612613716,24.491578343102674],[-110.38328848688826,24.48965913844239],[-110.38306069023747,24.48746543620456],[-110.38747291147376,24.48499991518912],[-110.38932928866853,24.480559645947096],[-110.38612677657056,24.479442044670122],[-110.38515777927961,24.476175332641617],[-110.38622454088141,24.474535262335905],[-110.38156606104428,24.475645739530194],[-110.37319291929566,24.480429173690766],[-110.3653749889263,24.481809133442596],[-110.36328805008776,24.48146642671719],[-110.364422883803,24.478636177815474],[-110.3703037797402,24.476253625416348],[-110.37597300859898,24.470796659770258],[-110.37666444844126,24.468178830758575],[-110.37434996679548,24.46672070283347],[-110.37243490909532,24.4690231013455],[-110.36905223317638,24.469959103241933],[-110.35814492247971,24.46997803231659],[-110.3563968819588,24.469022325847106],[-110.36329809025841,24.463836663260793],[-110.36850686640429,24.46246196362347],[-110.36831762968632,24.460043293097385],[-110.37111582854243,24.45814158063098],[-110.36677037210785,24.45754021764651],[-110.36215901659625,24.458906971417434],[-110.36085623564219,24.458278215719986],[-110.3547178865673,24.45887162973247],[-110.35428332112224,24.45677989833922],[-110.35937705150445,24.453603656460643],[-110.36337988388061,24.452806506881245],[-110.36508207267406,24.451613068585857],[-110.37444251605098,24.44870519229835],[-110.37787079770573,24.449649455188478],[-110.37763991114679,24.447347885911825],[-110.37438028783953,24.44644160179257],[-110.3726815336965,24.44728413453373],[-110.3714339669798,24.445232373977262],[-110.37467786859548,24.443131086756807],[-110.37562515298845,24.44113911350786],[-110.37110606157438,24.440787384792714],[-110.37120415659581,24.442532313927416],[-110.36720413641603,24.443765646429142],[-110.3678831234302,24.440386536102324],[-110.37148311127828,24.43801886902071],[-110.37193247099361,24.440618779325916],[-110.3727202288718,24.435648547800326],[-110.36999243234413,24.428605861147446],[-110.36655632018301,24.43226866606284],[-110.36715420470915,24.434820590636548],[-110.36269558832606,24.43704944807098],[-110.35522293890796,24.435928316479703],[-110.34963003229723,24.433355990041264],[-110.34698406529003,24.431456993494578],[-110.34775824667048,24.428632363808163],[-110.35108883216247,24.423346393975294],[-110.3543719458496,24.4193587753183],[-110.35407204523176,24.414312563338342],[-110.34936269992028,24.418131914485855],[-110.3451558299742,24.41473627929753],[-110.34885123167709,24.41258290521705],[-110.3486740842946,24.408982753539988],[-110.3517490029638,24.40800718445314],[-110.35158343120031,24.40539988228022],[-110.34857955933103,24.404033641224657],[-110.34795703904518,24.401286323556178],[-110.34384455402915,24.402132077689032],[-110.33898587484674,24.404986580815716],[-110.33621448386054,24.404822416872832],[-110.33039815299446,24.40275063783031],[-110.32629110476,24.402990774410625],[-110.32590106836034,24.408195793731238],[-110.32487671733821,24.411246082998787],[-110.32271381403405,24.41309539354296],[-110.31808818020153,24.420897755948033],[-110.31424968665738,24.42352597140234],[-110.31316670380284,24.423020168316725],[-110.30804681316249,24.425257891580486],[-110.30985564064832,24.42796373437011],[-110.31235286737467,24.4343783747197],[-110.31332278505283,24.439305650846507],[-110.31305365046433,24.44560408780268],[-110.31215775147155,24.449071863467907],[-110.30968609103701,24.454382308839854],[-110.307879650887,24.456209481983876],[-110.30266665996072,24.456578294139604],[-110.29915932277544,24.457964472324306],[-110.29361435344248,24.459078665621348],[-110.29447176179144,24.46086757338071],[-110.29212178411814,24.463163339802122],[-110.29156076368912,24.466085577550245],[-110.28927241258344,24.470626349542442],[-110.28912129625166,24.472895545448125],[-110.29051112388026,24.475966845325104],[-110.29232981138148,24.47738457289529],[-110.29553954411318,24.47671530945223],[-110.29940279675623,24.478156546174944],[-110.3035942071698,24.484488421197454],[-110.30654615628828,24.487361205194986],[-110.30709224656431,24.489758369541846],[-110.30343666607968,24.492089619987325],[-110.3022646729055,24.494970213949614],[-110.3034705214032,24.496261055678076],[-110.30332053880477,24.500794448896045],[-110.30550007106228,24.503551515154697],[-110.30743721292981,24.503731015823803],[-110.31171812644016,24.50059992948053],[-110.31793395486841,24.500629376577194],[-110.32171619486036,24.50258322609369],[-110.32559004199936,24.506024387837158],[-110.32835620898021,24.509963841703893],[-110.33019445781633,24.515114098669528],[-110.33201385542105,24.517256379332593],[-110.33371136674401,24.521265032855354],[-110.33574960399653,24.523529516712813],[-110.34267338694633,24.526544586547857],[-110.34652206962528,24.53011007016255],[-110.35014082049145,24.53136675330711],[-110.3541043941031,24.53145987488051]]],[[[-110.39198663245031,24.590446917788995],[-110.39431103205129,24.591933248675446],[-110.39802339607104,24.59157601997174],[-110.39857671709183,24.588267951981038],[-110.40177090573167,24.586134142321555],[-110.40088273831674,24.582953567399045],[-110.39629335178637,24.580647638034236],[-110.40105677224011,24.58027962190573],[-110.40348668679792,24.57721316096331],[-110.41014211317719,24.57404790557524],[-110.41439554280134,24.568507235566756],[-110.41553926651187,24.564878036323364],[-110.41325463366042,24.564883659982797],[-110.40827737578718,24.568083130720368],[-110.40591414989592,24.568902550023267],[-110.4055875439604,24.56620029770147],[-110.40202237980344,24.56667002215903],[-110.4009870603046,24.564987003742658],[-110.40299732429798,24.56305568977257],[-110.40262279182014,24.56146931746332],[-110.39740785016545,24.56198673606974],[-110.39697691021746,24.562992360260466],[-110.39250800544716,24.563377346810114],[-110.39428283901242,24.561730060351408],[-110.39691732823297,24.557091422088035],[-110.40579877962608,24.55392325120539],[-110.41149028900452,24.553701441478893],[-110.40899868270634,24.55194422318715],[-110.40598060930228,24.553395241507587],[-110.40465615786513,24.551406601104304],[-110.40874090275264,24.54964306497635],[-110.40985407023908,24.547561059116333],[-110.40748949575664,24.547023825503572],[-110.40772528527822,24.54449738039409],[-110.40502357572359,24.545371324718076],[-110.40024076724131,24.548197767148395],[-110.39274607701174,24.5507995164142],[-110.38815949438259,24.553381705410914],[-110.38716183442244,24.555323889036572],[-110.38329656226642,24.55707663991967],[-110.38050977911797,24.55468741644586],[-110.37490675718482,24.551777675751737],[-110.37697402331713,24.549961551653382],[-110.38233960611313,24.54981393477516],[-110.3852397482865,24.546639444884647],[-110.3887664965527,24.543992572154764],[-110.3954857227136,24.540451246468592],[-110.39906495449151,24.536348448392346],[-110.39692918451232,24.535871328664086],[-110.39210595537588,24.5386258392366],[-110.38904351972133,24.53898833824536],[-110.39183720064938,24.5366566697503],[-110.39328039310897,24.532778281273636],[-110.39038053429084,24.53182912867601],[-110.38452112908777,24.53140625573974],[-110.38300187561106,24.5337157391034],[-110.38168610162683,24.539058414021838],[-110.37804699696181,24.540094511526547],[-110.37531110643909,24.536190428007842],[-110.3752529425642,24.53464027441356],[-110.3692894401608,24.534509728158355],[-110.36793632352305,24.530741226708756],[-110.36615855819036,24.535131550897233],[-110.36624217352357,24.536873502674382],[-110.36376684876143,24.54043630760509],[-110.36140936168016,24.541950220622994],[-110.36053822843002,24.544885319810305],[-110.36033717701014,24.550534730931076],[-110.36130519070122,24.554016258412844],[-110.36396772319222,24.556334495670114],[-110.36763973380556,24.556652169107224],[-110.36731497890776,24.561867943273],[-110.37125194285392,24.563080698545377],[-110.37244450541874,24.565907612249248],[-110.37591579441829,24.56866288841718],[-110.37837489994212,24.568737262107675],[-110.3812636345628,24.572905699051546],[-110.38073301409673,24.57697321834712],[-110.37975410026195,24.577939060605217],[-110.38068112306689,24.582700531284672],[-110.38417844941796,24.58573783779957],[-110.38499180497803,24.587540177340315],[-110.38931772190654,24.59031257675116],[-110.39198663245031,24.590446917788995]]],[[[-110.7053971394289,25.1048789753587],[-110.70691516086589,25.10495502777036],[-110.7106965200432,25.100358544994265],[-110.70897780889169,25.094873218830685],[-110.71076340233589,25.09097534559936],[-110.71202302642598,25.0859552770998],[-110.71154457920858,25.081917330851184],[-110.71245235125531,25.06512689650657],[-110.71438667908814,25.05935464410379],[-110.71702534094311,25.054505030124574],[-110.71682868279413,25.05116884648112],[-110.71534839995303,25.046630819113375],[-110.7155976979509,25.038794335420278],[-110.71259678756832,25.03026137232331],[-110.70437943499803,25.03074891900775],[-110.70063660053478,25.025269694185056],[-110.69669337707529,25.02167794254001],[-110.69418966135282,25.021205782575862],[-110.68680395798037,25.021206347763098],[-110.68105860157624,25.02027344905065],[-110.6779501671,25.017266966665147],[-110.67583823659106,25.01284208302519],[-110.6758209228953,25.010030075684767],[-110.67345801840838,25.006609674027573],[-110.67292455359109,25.002113468724588],[-110.67365853872849,24.999365563580795],[-110.67340312399745,24.99271331732683],[-110.67023340839108,24.986860703410343],[-110.66492810613659,24.98215398011763],[-110.66346977400394,24.9796651746542],[-110.66239777244505,24.974601538638638],[-110.65932905521754,24.97228267965704],[-110.6581253408566,24.96836063952935],[-110.65981287023862,24.965297183492567],[-110.65862766693414,24.96032824871321],[-110.656131197756,24.95683484691517],[-110.65481663612127,24.951267190522685],[-110.65531912402349,24.9483585075958],[-110.65384541426306,24.946241431602346],[-110.64818593742496,24.945257003661254],[-110.64214004706156,24.94081713966517],[-110.6398471811533,24.93548135575145],[-110.63486620324852,24.92863386770358],[-110.63528636953276,24.92635803172982],[-110.6398720832745,24.921102520107524],[-110.63798657487882,24.91974943084466],[-110.63541613580873,24.92166909821674],[-110.63716456617749,24.918308834928666],[-110.63379817139196,24.91937446611996],[-110.63024287908075,24.917104900020433],[-110.63869859777628,24.91544447609374],[-110.6412825467653,24.917052738157736],[-110.6413725055213,24.91413389244201],[-110.62947887362469,24.91583935298513],[-110.62155518208908,24.91622000730331],[-110.61429867946566,24.914115721558915],[-110.61012168458814,24.910308332891418],[-110.61049235731167,24.908071985998163],[-110.59990964768366,24.904240424043905],[-110.58012873413963,24.89095500718372],[-110.57764663177704,24.890817616056836],[-110.57362912612109,24.88800538349159],[-110.57235419289265,24.883611613373034],[-110.57257638618637,24.879621253019593],[-110.5828444431682,24.86666915238277],[-110.5890158666299,24.866116117554895],[-110.58985372105644,24.864864106206767],[-110.5871445475135,24.86474261180132],[-110.58305555302104,24.86587154023931],[-110.57862358305886,24.864645362722285],[-110.57431333645053,24.869498363226512],[-110.57117986962061,24.871503901601727],[-110.56704843024806,24.872746294543845],[-110.55803512260337,24.873236939419485],[-110.55348420310912,24.87209364842215],[-110.5476424632053,24.873428816785918],[-110.54481309263281,24.873214027991196],[-110.540720074653,24.87516566550306],[-110.53237654012793,24.876245611941442],[-110.52696691057776,24.88081311194884],[-110.52633119868665,24.883284966993926],[-110.53230159217316,24.88770051401258],[-110.53401859566401,24.89296242135231],[-110.53908437070135,24.896833505736026],[-110.54088161972754,24.900652694514747],[-110.54408434148581,24.905116849035664],[-110.54588570015864,24.906515642307113],[-110.55003101256591,24.91380615914676],[-110.55246838341844,24.925008427951752],[-110.55760314283583,24.929493082008264],[-110.55803814838742,24.935809620517546],[-110.56064145967076,24.937555478478316],[-110.5616406672305,24.941135185725216],[-110.56385086425365,24.943462661982267],[-110.56453324623544,24.94618470126852],[-110.56822092990336,24.949986197824444],[-110.56995625253467,24.95325049233827],[-110.57096448779862,24.95742785561083],[-110.57032918369885,24.964020419117276],[-110.56831768328078,24.972908332365307],[-110.56624054413606,24.97990869930817],[-110.56636900360473,24.98945217275383],[-110.56810328152551,24.99309514119483],[-110.56820073586334,24.995956171856108],[-110.56984458509714,24.99868330434731],[-110.5731587452907,25.0004946979696],[-110.5733270298249,25.002324190867398],[-110.57626343009275,25.007598421322825],[-110.57421617829709,25.00911791976438],[-110.57583542430228,25.01258080591839],[-110.5749050094509,25.015882292671904],[-110.57757931154651,25.015319617492878],[-110.57849368664199,25.01686033152305],[-110.58204963416898,25.01780593691882],[-110.58351573601016,25.019693041984965],[-110.58214706441674,25.02177100418959],[-110.58877081952971,25.023120101759957],[-110.59010907792543,25.024789958712915],[-110.58919066887216,25.03105552488995],[-110.5926461917037,25.03343439893223],[-110.59657175408,25.034175917658445],[-110.60071647675795,25.036611829921128],[-110.60259334494367,25.03882345436915],[-110.6101456268101,25.03908116931575],[-110.62004093008278,25.041266092799845],[-110.62204524842815,25.04235641270975],[-110.63426362645129,25.045619887237535],[-110.63488705331935,25.046772812136226],[-110.6375952212091,25.04621955902121],[-110.63914760654404,25.047561704409816],[-110.6422757198344,25.04742241042709],[-110.64538800610251,25.04896606873814],[-110.6509955250898,25.049216673026024],[-110.6635229185323,25.05056798182318],[-110.66830640778403,25.051851466586584],[-110.67276743140064,25.054781217396226],[-110.68132158501834,25.061396280204292],[-110.68889330713813,25.07177266234021],[-110.69276825690861,25.081008732474515],[-110.69263338035876,25.083295643305746],[-110.69420137880229,25.088256552246776],[-110.694258729014,25.09312481000103],[-110.696775697681,25.095563507484087],[-110.69756577462726,25.098458808109342],[-110.70322118055782,25.10242165745666],[-110.7053971394289,25.1048789753587]]],[[[-110.68781332842207,25.305297768376647],[-110.68473452028945,25.310067850211396],[-110.68465694090236,25.31154958528117],[-110.68841948233182,25.309640794406846],[-110.68839002027732,25.308290351634128],[-110.69464008077199,25.305140657273853],[-110.70093874919348,25.30581465843062],[-110.70792008488473,25.305756330596296],[-110.71184839067746,25.304619820011283],[-110.71480975909924,25.302857216570658],[-110.72107738559538,25.297413810538444],[-110.72541874433443,25.29287489086704],[-110.72723998958026,25.292099081435936],[-110.72954114439005,25.285854837302622],[-110.73134566370067,25.282512673807844],[-110.7308529834915,25.276736695446118],[-110.72585519942334,25.265276952895817],[-110.72587859312245,25.261949380526175],[-110.72236499797032,25.260046780065522],[-110.7153397895865,25.260869862215714],[-110.70804039707167,25.266180523920752],[-110.70621879062458,25.268126540428],[-110.70522885349232,25.272717265132883],[-110.70176018106292,25.279674113947976],[-110.70108776079178,25.284054767983378],[-110.69917170469387,25.288379867844583],[-110.69905881924933,25.29053254571204],[-110.69553691343657,25.295689715306878],[-110.69216746176289,25.29941242147862],[-110.69168733511628,25.301012786437582],[-110.68781332842207,25.305297768376647]]],[[[-110.77369044841663,25.711540785673492],[-110.77518346602835,25.713205963743746],[-110.78210662321436,25.71020010561375],[-110.78295115918519,25.70619142013453],[-110.78485528728004,25.705742612653182],[-110.78383169031986,25.70388219572743],[-110.78736149872731,25.698188591911105],[-110.78869644931524,25.698074632860767],[-110.78957918858652,25.69505987044289],[-110.790604378571,25.69596265855529],[-110.79403411027852,25.69486778215645],[-110.7930426045233,25.69213101724364],[-110.79485122480867,25.689332762497486],[-110.79593598812477,25.689560916383186],[-110.79959455797331,25.683561027988674],[-110.79729554692602,25.681156020065032],[-110.80097625256565,25.679554022618333],[-110.8016317222905,25.675319362789878],[-110.80069817220374,25.67393674053568],[-110.80208155529891,25.668348456237766],[-110.80087041768115,25.665810199992393],[-110.80239581443965,25.664683654081955],[-110.80259210874397,25.660647161235318],[-110.80624427765389,25.65844909295913],[-110.80326711273432,25.65080685977989],[-110.80373208568722,25.64764702898924],[-110.80572545465924,25.646458001614917],[-110.8034910680314,25.642392167404807],[-110.80368108894896,25.640648198086865],[-110.79914438949538,25.637535212549267],[-110.7987131917161,25.63296563203869],[-110.79570040407032,25.63010959071522],[-110.79520637733174,25.62762560092216],[-110.79315915871274,25.625925501172503],[-110.79412849121462,25.623254415563963],[-110.79263718610281,25.62147338425484],[-110.79115043608465,25.616927270417307],[-110.78996743665658,25.6162751946419],[-110.79003702400001,25.610010142762974],[-110.78780309589058,25.60634158228447],[-110.78531842355113,25.603853526294984],[-110.78149608985802,25.602349673145227],[-110.77844848582811,25.602316864842862],[-110.77576660617359,25.603840337922122],[-110.77203798555712,25.60075440013202],[-110.77082314562085,25.60124101019977],[-110.76643607125499,25.598307367159123],[-110.76212302464609,25.594165424844675],[-110.75950473900451,25.592861206626992],[-110.7611819963476,25.596222519536752],[-110.75706863809688,25.601579260698884],[-110.75684399069371,25.60922842787801],[-110.75859926846255,25.61277851295779],[-110.75756497826274,25.616929636439522],[-110.7591363158133,25.623137669317316],[-110.75815834296463,25.628923590546037],[-110.76067053024195,25.63299051630503],[-110.76100198458937,25.64187745913165],[-110.76265956500464,25.64506710435745],[-110.76187751238888,25.652289185470863],[-110.76523459533644,25.657297357969128],[-110.77023616427749,25.67775729427126],[-110.76689523687503,25.68483948225952],[-110.76420642204175,25.688700502153324],[-110.76408450023797,25.690217925685033],[-110.76939803304623,25.693385300153352],[-110.7716279436637,25.70087509043981],[-110.77205631195875,25.706229473942983],[-110.77145489812813,25.70732938016829],[-110.77369044841663,25.711540785673492]]],[[[-111.03582794379042,25.714435766508473],[-111.03823279079808,25.71318404109627],[-111.04186506074734,25.712843664615093],[-111.04164149795355,25.71005505043945],[-111.04405954493683,25.707110556729106],[-111.04756470264891,25.706904780011655],[-111.05537698983176,25.707681522507414],[-111.05890771462998,25.709043797125105],[-111.05949558061764,25.706784513172124],[-111.05787507535678,25.70364366969619],[-111.0582181671387,25.70085992988237],[-111.05744912627199,25.697031601429558],[-111.05414597495496,25.691206604350953],[-111.0493823983125,25.683972729783136],[-111.04899102789403,25.681145507710823],[-111.04729674777286,25.678006334975237],[-111.0480267506262,25.668531496353467],[-111.04691463720468,25.66436878326067],[-111.04426323917829,25.662207505134916],[-111.0429023301914,25.65873968268511],[-111.03977599533681,25.659674195123046],[-111.03728011726105,25.65496151355859],[-111.03644536320894,25.65553628265826],[-111.03164421152223,25.652823387062483],[-111.02979645677351,25.649778014182004],[-111.02947260443852,25.651304271056347],[-111.02677683296213,25.651773088238542],[-111.025325005669,25.65400032468341],[-111.02573634749183,25.656950389629344],[-111.02162693303819,25.66121483020993],[-111.01520259983403,25.668924791346114],[-111.01323986146087,25.670134435318857],[-111.01384599110452,25.675958627607315],[-111.01329844145346,25.67855728530202],[-111.01522305487515,25.684423582701868],[-111.0166749360651,25.686536022764926],[-111.01732682472681,25.693659810382144],[-111.01942889046546,25.695171622098144],[-111.02062583088735,25.69441254490664],[-111.02584006832961,25.69658187053136],[-111.02534107935219,25.699246598414334],[-111.0271346114464,25.7018075125024],[-111.03183373032726,25.702505267450988],[-111.03347314743883,25.70835637323148],[-111.03359989288816,25.713525897492786],[-111.03582794379042,25.714435766508473]]],[[[-111.2546774404588,25.8112798219762],[-111.25978356435559,25.81054802068269],[-111.256924641858,25.809315114736478],[-111.25627625733205,25.806052819628974],[-111.25758070828931,25.80552292516768],[-111.25556080586688,25.802277238897375],[-111.25698218470359,25.80126394405238],[-111.25595581289144,25.797834935539527],[-111.25634686758428,25.794072020202464],[-111.25915678920444,25.79184895089179],[-111.25774310159568,25.789748350190962],[-111.25926105869303,25.78309481346139],[-111.25742522119805,25.778890436699612],[-111.25333819503822,25.775528214158157],[-111.25098093214808,25.772047263697687],[-111.24913636428033,25.771199936354435],[-111.24650922845075,25.765635162297258],[-111.2438732580739,25.76625198613175],[-111.24247500385269,25.770947681923758],[-111.24363346862549,25.773904026268724],[-111.24672261571635,25.774796279668067],[-111.24821812627033,25.777929088682583],[-111.24794549069736,25.78141832344437],[-111.24612519941343,25.7858111666406],[-111.24388715049588,25.787282544354127],[-111.24353678158269,25.789430205217855],[-111.24775341939409,25.790735157059373],[-111.24996682812059,25.794029264253993],[-111.24781449616393,25.796879030585217],[-111.25163648084236,25.80021179232699],[-111.25385646312208,25.8042950837509],[-111.25348965849031,25.80812851093367],[-111.2546774404588,25.8112798219762]]],[[[-111.05982597192667,26.07097225938901],[-111.06025933018003,26.072392060939478],[-111.06218550434653,26.070474267230054],[-111.06454534754693,26.07057973287249],[-111.06913034329256,26.065312689687914],[-111.07094959694217,26.067691060284233],[-111.07273692509972,26.067293633401164],[-111.0737345033242,26.063710569112516],[-111.07724340043274,26.06043542594483],[-111.08214612532635,26.058726736219512],[-111.08642997000692,26.055777585423016],[-111.08581045253368,26.05892222125101],[-111.09247704615518,26.058158722255257],[-111.09781713329255,26.053003676553317],[-111.1014978128187,26.0540301615639],[-111.10223989840262,26.051520122009038],[-111.10528587941502,26.051983245384577],[-111.10601412995163,26.056553562948125],[-111.11235654619082,26.056513214000972],[-111.11654888772438,26.05844027759167],[-111.12158727489776,26.059366925901713],[-111.1239464045724,26.061341689098242],[-111.1251724005246,26.06498265212406],[-111.12856710334859,26.067297482321464],[-111.13054339481675,26.06332814198845],[-111.13311102995016,26.06345081233735],[-111.13436520081927,26.060872408278726],[-111.13231108070039,26.053838413094184],[-111.1424864892025,26.048228749073587],[-111.14569474557089,26.048451250655887],[-111.1472033287252,26.046734546121115],[-111.15110854946585,26.047297033248924],[-111.15339595330016,26.046030997102264],[-111.16140585360301,26.04313475017301],[-111.16543853660107,26.042285164010707],[-111.16796635262051,26.0427204104775],[-111.17206700357815,26.04171486149778],[-111.17543858149605,26.041727333024312],[-111.17475128870706,26.035138638840692],[-111.17126464781029,26.028051607520467],[-111.16790416662832,26.024005389464037],[-111.16879109286361,26.020710203178623],[-111.1672221017767,26.020076502495954],[-111.16424949386283,26.02226521116711],[-111.16288110251992,26.020674503397345],[-111.16311188292423,26.01744538113178],[-111.16448702455511,26.015470177401426],[-111.16882731027817,26.016093835286597],[-111.16994601506906,26.00720244167229],[-111.17271902124804,26.00420660005841],[-111.17030551727294,25.996923887851437],[-111.16782502824668,25.993090135632656],[-111.16790229133738,25.98934541776265],[-111.16993626454206,25.985060958585507],[-111.17053512841392,25.981503700350686],[-111.17275446267962,25.979080617463637],[-111.17835438073001,25.976355208384234],[-111.1795594201484,25.974521131483584],[-111.18230811317665,25.973727162911075],[-111.18212722371987,25.972228300381857],[-111.18460873295254,25.971968898174964],[-111.18704618727327,25.96862666179203],[-111.18802455326528,25.96301861163016],[-111.19370855255033,25.959586434078915],[-111.19381974297124,25.957949974816415],[-111.19722073233919,25.95611732706095],[-111.19879176488422,25.951982163956018],[-111.1993318019201,25.947952867589777],[-111.19832940639458,25.945636140240254],[-111.19894871338835,25.94314221263039],[-111.20338714846133,25.934877618718588],[-111.2087469911283,25.92946053836539],[-111.20948131007384,25.92618994860709],[-111.2077936626539,25.924798634236197],[-111.20751461112064,25.919270169219374],[-111.20814855600435,25.91785637586537],[-111.20705983000954,25.91475785111072],[-111.20797796918322,25.91228635087566],[-111.21202847930681,25.91040478618976],[-111.21308882919345,25.907330324942905],[-111.21336089233603,25.899817419548754],[-111.21194562304476,25.89672568018466],[-111.2154978213598,25.89420420788548],[-111.21682070209181,25.890255699637066],[-111.21715592145028,25.886683634399162],[-111.21965569438544,25.884406234375433],[-111.2173071711997,25.88105211461891],[-111.2167141156516,25.876333969541804],[-111.21502937539691,25.874551594722845],[-111.21465152682163,25.869547825947166],[-111.21759350529697,25.86543302923633],[-111.22157706656395,25.864056061411418],[-111.22369317327275,25.865110428956882],[-111.2261443739248,25.861636984523784],[-111.22570054901269,25.85961988664218],[-111.22722911499761,25.858834622764107],[-111.22744377188258,25.855062894980847],[-111.22995830100962,25.853427917352178],[-111.23123957124193,25.84938086235104],[-111.23314283339664,25.848292853314888],[-111.23241136235237,25.842083420909148],[-111.23071620879148,25.834687228489543],[-111.23070016837084,25.830125426815016],[-111.22841668846871,25.822615793838565],[-111.22113992723985,25.818149589719667],[-111.21599609881423,25.81756684842253],[-111.2113135863363,25.81591609094994],[-111.20939349943222,25.81241882827493],[-111.20453592992862,25.80642857373948],[-111.20233908628796,25.807485737756792],[-111.20135542337493,25.81163186568881],[-111.202665415865,25.814252982454036],[-111.20386234573346,25.82075790443463],[-111.20438163328492,25.831782978892477],[-111.20346459301896,25.834096456792224],[-111.2039759426454,25.84771501581423],[-111.20183718035435,25.851766766854666],[-111.20041916755179,25.852542292227838],[-111.19509208813827,25.858365177868507],[-111.18958562914895,25.85746374618509],[-111.18412329203665,25.86406278538726],[-111.18218959423973,25.867197678635193],[-111.18431653769193,25.873719399070183],[-111.1839800935117,25.875203962939167],[-111.18507413948612,25.883137274508783],[-111.18193046140857,25.888669170773767],[-111.18375871949979,25.89131483908949],[-111.18195385433506,25.8915976352406],[-111.1808177085984,25.894451364633483],[-111.17903155657797,25.89557947925192],[-111.18106768550848,25.898676673980162],[-111.18146791264712,25.901080408847122],[-111.17851529040075,25.907912364655544],[-111.17464554327677,25.91271304446974],[-111.17255802440809,25.916257817933626],[-111.1644835042024,25.92259884322607],[-111.16174276477312,25.926453620774964],[-111.15887252705068,25.92806575423316],[-111.15555792852143,25.931372976783905],[-111.15444655468332,25.936673535940997],[-111.1513320644068,25.938640730223142],[-111.15026813986509,25.940918224571988],[-111.14441115576108,25.949687038510035],[-111.14238771582552,25.953831523032193],[-111.13896941001133,25.95593575974914],[-111.13679247445054,25.958503797284834],[-111.13339072295838,25.960546991675756],[-111.12827058607945,25.96912641533811],[-111.12591451369701,25.972310302647656],[-111.12252588910036,25.978446873283303],[-111.12248875009772,25.98211215413545],[-111.12081205424056,25.986906206909225],[-111.12045035229721,25.993868297459017],[-111.11605227261362,25.996465863620642],[-111.1074159589819,25.998727164028537],[-111.10211715294474,25.99814232728187],[-111.09805965792896,25.994016846297825],[-111.09557995200879,25.98827266475371],[-111.09330376074513,25.984852273713784],[-111.08682498573052,25.983026769922674],[-111.08365868460089,25.980078559985316],[-111.07964173949705,25.973976154786214],[-111.07796879199412,25.97316922005399],[-111.07291408328439,25.972780819306365],[-111.07078633354837,25.968396529843346],[-111.06770732324077,25.965719182835926],[-111.06680690815045,25.969055444134085],[-111.06523254462678,25.970045923717237],[-111.06777564342946,25.976589508716074],[-111.06759185688998,25.97851615901476],[-111.06518691089684,25.981128572227817],[-111.06946459125635,25.980386963730894],[-111.07269954246141,25.983441545328674],[-111.07251925595597,25.987887839932455],[-111.0705165213746,25.993919695527893],[-111.07110197348652,25.997682063397804],[-111.07330750762156,25.994695916146156],[-111.07880626392307,25.99657776846692],[-111.08094105637588,25.998751049284976],[-111.08322334957597,26.004684751451407],[-111.0823408138092,26.00910651725644],[-111.08427511132282,26.014181429535824],[-111.08433717694658,26.017225101405586],[-111.0833271391997,26.02259164170465],[-111.08151521187125,26.026603136939514],[-111.08255020308269,26.031405622756665],[-111.07843057191866,26.037642639595163],[-111.07722351223958,26.043024220948837],[-111.07463004435425,26.04676152440436],[-111.07354266771512,26.050106192183364],[-111.06973867197894,26.057045122733882],[-111.06810513758097,26.061476697571436],[-111.06493518981739,26.06429613807154],[-111.06336360671935,26.067136802107655],[-111.05982597192667,26.07097225938901]]],[[[-111.26566187411561,26.13606422945844],[-111.2739412250408,26.13666907171688],[-111.27676045839308,26.134562665207397],[-111.279018220576,26.135451658551915],[-111.2790487911991,26.133591475670414],[-111.28457411745518,26.126527162747152],[-111.28557088269906,26.126021337940927],[-111.2880667782,26.121053015347968],[-111.28776491690849,26.118525219037053],[-111.27978307194724,26.11385699205408],[-111.27971656329157,26.111270093477856],[-111.28603278545438,26.10658557668114],[-111.28990381974302,26.10162987872161],[-111.29368943279923,26.10053913884167],[-111.29549414233804,26.10226161292934],[-111.29689792628176,26.10115872617689],[-111.2965986729601,26.098610190401075],[-111.29470586153997,26.099872092905173],[-111.29050788830114,26.10085195100686],[-111.27954871740212,26.106487791504208],[-111.2767990279853,26.10706048785039],[-111.27202913929915,26.10645488901281],[-111.26669167081934,26.106742813097412],[-111.26390882279748,26.10583111197036],[-111.26261889900036,26.10861330121344],[-111.26323279616287,26.111960818837417],[-111.26504597707043,26.115146425728256],[-111.26430198549036,26.116981645695887],[-111.26104977303777,26.117966172525712],[-111.26216455231821,26.121069536728328],[-111.26205326731281,26.124178145314488],[-111.25998631174656,26.126111686976742],[-111.26371501575824,26.13018000252822],[-111.26388734590068,26.13598122851704],[-111.26566187411561,26.13606422945844]]],[[[-111.91820890069789,27.048504521399764],[-111.91784485055337,27.0524795247087],[-111.91948751935257,27.054028270318327],[-111.92145375842529,27.053654333694965],[-111.92792869462176,27.048759420971976],[-111.93535686453157,27.04822839741496],[-111.93621703748727,27.047202637446105],[-111.93681598575114,27.042315812201878],[-111.94038481475275,27.03790887048865],[-111.93924997538892,27.036555801886777],[-111.93529538300265,27.036589750875294],[-111.92829306640971,27.04090676314331],[-111.92352666452655,27.04037657709199],[-111.92026388576755,27.04128744743184],[-111.92079556078056,27.044219761590455],[-111.91820890069789,27.048504521399764]]],[[[-114.37458996788229,27.149012228218908],[-114.38075431913865,27.146427838450563],[-114.38475314483145,27.14595434405419],[-114.38108181265636,27.144631964949838],[-114.37832542657753,27.1452168731048],[-114.37735988857128,27.146677185342867],[-114.3743447285766,27.147258425264454],[-114.37208686361726,27.145358075564502],[-114.37109120552111,27.147853275486],[-114.37458996788229,27.149012228218908]]],[[[-112.07855887860086,27.2498397404417],[-112.08271053159842,27.253753651641773],[-112.08577480754309,27.255498789445994],[-112.08809150790688,27.258701063551825],[-112.09281159675822,27.25834678558965],[-112.09722963642861,27.25309628826045],[-112.09741051547587,27.250827077502322],[-112.10141122826519,27.249661753275007],[-112.10261435762692,27.248064823466848],[-112.10282798282725,27.242932708331693],[-112.10519088599085,27.239816845784162],[-112.10737622007503,27.240619121915188],[-112.10872997767308,27.23872350368464],[-112.10451750551982,27.236371503538862],[-112.1024099720675,27.233842446289543],[-112.09774656035029,27.230529132768595],[-112.09150528450829,27.22037211852023],[-112.08907926998171,27.215376584760293],[-112.08929278986602,27.207711546154997],[-112.08540650486174,27.20492072461775],[-112.08623382471785,27.20134701169502],[-112.08608407640463,27.19639393212293],[-112.08308068497678,27.18995604847811],[-112.08496511258693,27.186509363511163],[-112.0822218540871,27.183944659868587],[-112.08004912690552,27.18395634154183],[-112.07844966282141,27.180879585183163],[-112.07561582366912,27.17761612249427],[-112.07377894283678,27.1777490298457],[-112.07044884920094,27.181605862273386],[-112.06541267963422,27.183629281943922],[-112.06135242825678,27.182659630806768],[-112.0593814608427,27.17965254161595],[-112.05731180721972,27.183351149499572],[-112.05500624729018,27.18995087339283],[-112.05405255436358,27.1944159237097],[-112.05136936733822,27.19589923207576],[-112.04871451703605,27.203957386711238],[-112.0433740669315,27.20835267853778],[-112.04604483274278,27.209327720198132],[-112.04704081531236,27.211325451127436],[-112.0463970764672,27.213695707759996],[-112.05045714572589,27.21677604493061],[-112.05074992097855,27.218963474890586],[-112.04705252535052,27.22244186414065],[-112.04667834020074,27.224554862572177],[-112.04807281019009,27.22638986003284],[-112.0522256439341,27.228614235390694],[-112.05675559797032,27.22959208908202],[-112.05688913166927,27.232460265771238],[-112.0595184571356,27.234078283492295],[-112.06341535593782,27.235086005021117],[-112.06563996329908,27.237394133216185],[-112.06613590317454,27.239734462968215],[-112.07250999139188,27.2452571644979],[-112.07855887860086,27.2498397404417]]],[[[-111.94254296440675,27.433069889848923],[-111.94726488742981,27.43568978234515],[-111.95949907283898,27.433067826744207],[-111.96632885270441,27.433061147857813],[-111.96888469230691,27.428691432353162],[-111.96767219473304,27.422235018487243],[-111.96390922254949,27.4146684570419],[-111.95855107845699,27.410589276065252],[-111.9520664668654,27.40723746007626],[-111.94402822082822,27.404929239261378],[-111.93861419804142,27.405183778897708],[-111.9318216334583,27.407317297377972],[-111.9298280188479,27.4087936089482],[-111.92851593092274,27.4125547413106],[-111.92923083634855,27.41578059253459],[-111.93294853683796,27.42171861681379],[-111.94254296440675,27.433069889848923]]],[[[-115.19279531905954,27.88531374801721],[-115.19891689631834,27.88778178569754],[-115.20677744837405,27.893228286597434],[-115.21347724467199,27.89663712893207],[-115.21679679898324,27.89647146923545],[-115.22027673435832,27.890610626289572],[-115.22007471997324,27.889845993976337],[-115.21345475734603,27.88491724214623],[-115.20782672690882,27.884317571278416],[-115.2031128022092,27.882182285316674],[-115.19547519084381,27.880627525219666],[-115.19212407819333,27.876401745848455],[-115.18878223464196,27.876051068680795],[-115.18571637104355,27.87272637975485],[-115.18631402440559,27.871292765419128],[-115.18452780262078,27.86887265406216],[-115.1821481715611,27.868278273876],[-115.17989187964935,27.864347559056398],[-115.17968376074089,27.86095783123335],[-115.18278463859451,27.860573953996152],[-115.17987748713387,27.858494037606818],[-115.17747905510106,27.858164671774944],[-115.17616221782407,27.856153176322437],[-115.1762559217899,27.852263126891103],[-115.17916940588441,27.850245017275824],[-115.17683166420727,27.848951088415447],[-115.1735948346057,27.849167120734023],[-115.17085777568514,27.85072993835246],[-115.17167869986247,27.851670490688548],[-115.16618184077197,27.853117474014994],[-115.16581871302321,27.855008931324164],[-115.16259247121769,27.8577355994114],[-115.15921306634709,27.863280028854376],[-115.16143416945573,27.86789459202953],[-115.16144227617235,27.870283166935224],[-115.16563708892409,27.870417750759657],[-115.17094074129852,27.87358749617033],[-115.17725579819461,27.875360519811125],[-115.18282830883606,27.875653061408457],[-115.18290933405262,27.87685889275741],[-115.1867124033684,27.88009135708984],[-115.19088664766969,27.885470132556293],[-115.19279531905954,27.88531374801721]]],[[[-113.23180762976779,28.000000070642216],[-113.41367892582878,28.00000012712286],[-113.48333333291731,27.99999999988637],[-113.72101636916062,28.000000152883786],[-113.86666666647068,28.000000000127216],[-113.88333333373566,27.9999999995851],[-113.91666666641629,27.999999999657746],[-113.93333333329804,28.00000000019776],[-113.95000000080813,27.999999987169588],[-114.0125833302157,28.000000003495927],[-114.01799329965866,28.000000028586953],[-114.02500000006472,27.999999999942816],[-114.05833333329997,28.000000000000057],[-114.06241521270971,28.000000053699466],[-114.20487876246438,28.00000001355096],[-114.21142546116766,27.993310940329252],[-114.21653257266308,27.98937564041131],[-114.22275752746538,27.98338828852593],[-114.22917117450453,27.977805163434084],[-114.23340114925685,27.970320271688763],[-114.24457455770954,27.960342278687506],[-114.24719512916147,27.957355527597997],[-114.25902586902515,27.949290701329176],[-114.26528075557871,27.942384997075578],[-114.27095519400348,27.928309996865607],[-114.27489576776401,27.917834509631177],[-114.27542834136455,27.906941990635573],[-114.27441939352843,27.897566998397792],[-114.26559478485518,27.888391053840166],[-114.2948223125594,27.864133428320883],[-114.29691635149231,27.8671706970905],[-114.30407639461089,27.87176748594726],[-114.3111006896113,27.873671141635498],[-114.31774001752711,27.873648527818887],[-114.32707134021712,27.87190947911614],[-114.33438024711779,27.869529623316794],[-114.34054557366494,27.866075212527733],[-114.34974873187497,27.859889938019705],[-114.3619429487448,27.850967421586404],[-114.38223148790712,27.833748566314853],[-114.38731871957964,27.828930192022938],[-114.38947615402373,27.825179252887494],[-114.39000801988806,27.821864000758296],[-114.39545815847276,27.820198687685604],[-114.40536192524547,27.818016175335742],[-114.41078828256207,27.81511990996455],[-114.425959404722,27.806219839424102],[-114.43030490812498,27.803292509534515],[-114.44305920398506,27.79618013063765],[-114.45797599047205,27.78874483294277],[-114.4727165380317,27.782283365660987],[-114.47964801423183,27.77871551594029],[-114.4880917593357,27.774975726682783],[-114.49925695732634,27.771971113182417],[-114.50306334687326,27.772316623577638],[-114.50798237800672,27.774443810770265],[-114.5153569888393,27.778417997881547],[-114.52123016376169,27.779295619692846],[-114.5222846167531,27.780689597940352],[-114.52615579311441,27.782354806989417],[-114.52690990261618,27.784358272573627],[-114.53147817911116,27.784789442275667],[-114.53328379199132,27.78606481852421],[-114.53952733539745,27.78495401772102],[-114.54494997152005,27.784571942083062],[-114.55001662821087,27.782002617238106],[-114.55925547966189,27.781986860707093],[-114.56088479419219,27.781481772878294],[-114.56356543900853,27.78295179876295],[-114.56974162233445,27.783262908706604],[-114.5837450051024,27.778419575714167],[-114.58862372182688,27.778223397666693],[-114.60066265185566,27.774344086232816],[-114.60532813143993,27.773517997302065],[-114.61141799201869,27.775990095280974],[-114.61886323064527,27.776388026089307],[-114.62772353319701,27.775681014540794],[-114.63071653445104,27.77683551243166],[-114.63390564883048,27.776066902096318],[-114.63947771799565,27.777219939735687],[-114.63962858897582,27.779097595874532],[-114.64230043149541,27.781703226939612],[-114.64506296457012,27.78207589063379],[-114.64772067176045,27.78075210452232],[-114.65430220568277,27.780030708737627],[-114.66045113773527,27.781307614446632],[-114.6633802071454,27.78403197349786],[-114.66749403653682,27.786539730483923],[-114.66861582769423,27.78829850826247],[-114.67333980418618,27.787251986970944],[-114.67895825556474,27.787726897679022],[-114.68316317932926,27.786643061797577],[-114.69292377037954,27.786788895931124],[-114.70486204366819,27.788831107539465],[-114.70670443417077,27.790441715449617],[-114.70946540178511,27.79063381932076],[-114.71525163300834,27.79305610263833],[-114.71863621662459,27.795819403480152],[-114.7197976935156,27.799595673200884],[-114.71911761398502,27.80348145824877],[-114.72184748805728,27.80491494796911],[-114.72366914513577,27.804061415734168],[-114.7282195901912,27.806483364731093],[-114.73186602339013,27.80646202574735],[-114.7375243131728,27.808637859074565],[-114.73887182080745,27.80607999334984],[-114.7441762328113,27.805074678429435],[-114.74854335721574,27.805910726802892],[-114.75475405539396,27.806177416981313],[-114.75810843607127,27.80714247311994],[-114.75944025367716,27.80568431225231],[-114.7669424314908,27.807162601262462],[-114.76911998395872,27.808543742328368],[-114.7708062272377,27.81168449845302],[-114.77583790337434,27.812079349431087],[-114.78118186248486,27.814277031496374],[-114.78724795636646,27.81559656283781],[-114.79222404514633,27.813664080464775],[-114.79691854320356,27.812714972831373],[-114.80866783411767,27.811896738683743],[-114.81741125653951,27.809900300503443],[-114.82672999047662,27.80893640548294],[-114.83238856537037,27.808834198275633],[-114.83870772258012,27.81009226785551],[-114.84361452707998,27.813386864588722],[-114.84694087666128,27.817987781684735],[-114.85097085060994,27.819674593864647],[-114.85194314079939,27.82345408768157],[-114.85080148718453,27.82467105124846],[-114.85312287432475,27.826515718368682],[-114.85874917006652,27.82674946715099],[-114.86581029631651,27.830206837226342],[-114.86900604924864,27.828590891903218],[-114.87426813040497,27.828030177814867],[-114.88156750538303,27.827939783541296],[-114.8879472351071,27.82895680028946],[-114.89470165113596,27.83204531929357],[-114.90266319703397,27.832943662861965],[-114.90882747996415,27.832523812994054],[-114.91274278162479,27.83404570863661],[-114.92080906972944,27.83373211260499],[-114.9241284472916,27.834084379447518],[-114.93119192883563,27.8323344220737],[-114.93773539254005,27.829962299116403],[-114.95376553784831,27.827849487039316],[-114.96922159133476,27.82556754527843],[-114.98476231826015,27.825452819724546],[-114.9878160640867,27.827103863872708],[-114.9980885755694,27.82707920720759],[-114.99994028328302,27.828206131300647],[-115.00931820415025,27.828880341616127],[-115.01127761126276,27.830749807065786],[-115.01647309641055,27.831999075795295],[-115.01735190326792,27.834052114395206],[-115.02047392255315,27.837156588701987],[-115.02630160153001,27.8461891199604],[-115.0302496627412,27.848926299536004],[-115.0352513360724,27.84958310158578],[-115.0358129367508,27.851635080142046],[-115.03935863714378,27.854096287738003],[-115.0407099779971,27.853773658667706],[-115.04182030403052,27.856660038420898],[-115.04654999547381,27.856037338231147],[-115.0547202068081,27.860279960385526],[-115.05584948715074,27.86156335814252],[-115.0577743275133,27.85972710145927],[-115.05961430688438,27.860189082156012],[-115.06203754011688,27.858549547506584],[-115.06329406100843,27.859214412896563],[-115.07175197617863,27.855917900048098],[-115.07292857528375,27.853152212767668],[-115.07638674711558,27.85296735483155],[-115.07879160211041,27.8512646500169],[-115.07872532891008,27.84846182656537],[-115.0818990232392,27.848446736878543],[-115.08209825113948,27.84685735745137],[-115.0780075648795,27.842589779889636],[-115.0756708656437,27.842017229916507],[-115.07461451308484,27.840099346031025],[-115.06699391550188,27.83532392220542],[-115.06738765930731,27.83383461230261],[-115.06000511693821,27.82681798247114],[-115.05678613295225,27.823022806405845],[-115.05404544247062,27.822099319465735],[-115.05199543077856,27.819831962437206],[-115.05242360958573,27.816811777672342],[-115.05037231930027,27.814006971563572],[-115.05052189584455,27.806827770003224],[-115.04945613962184,27.80657211201725],[-115.04859698704547,27.8024426934457],[-115.04681268180661,27.802152907818936],[-115.04613208017003,27.79821799016429],[-115.04361266799657,27.793645138074396],[-115.04118853100181,27.79148900623369],[-115.04148166441632,27.789772568965986],[-115.03849937726238,27.7879825556455],[-115.03587466556382,27.783266938403358],[-115.03285746325776,27.773420032114416],[-115.03152920879569,27.770506039424447],[-115.03358079873925,27.767880443945444],[-115.03199283498515,27.765332918985564],[-115.03233455180447,27.762229401775585],[-115.0341663972024,27.759731175086074],[-115.03178241515451,27.760113616794456],[-115.03003452294092,27.758321063997926],[-115.02969109793622,27.754283101602198],[-115.02761331132285,27.754393473582354],[-115.02557075464335,27.7522843664932],[-115.02437597481713,27.749037347482727],[-115.02600234900484,27.747543737516708],[-115.02364174956296,27.74429737759965],[-115.0261936784475,27.7410158646162],[-115.023003077324,27.739576954326935],[-115.02010856736393,27.741023779332522],[-115.01802353631274,27.740178714728472],[-115.01392674297841,27.73574326700009],[-115.01052702169835,27.729918431145336],[-115.00739420431216,27.719455880013413],[-115.00554808420054,27.717467168255837],[-115.00188571889669,27.718440021224126],[-114.9999395379013,27.716919534105728],[-114.99790829860711,27.71887264286221],[-114.9993047844161,27.71970636264109],[-114.99706405007953,27.725350244328467],[-114.99471961167296,27.726083981775957],[-114.99129721439726,27.728950419904606],[-114.98620697119009,27.728674916849002],[-114.98144219791857,27.72655750773731],[-114.97824605252731,27.723273368880655],[-114.97496481656765,27.724539842202603],[-114.96370489499651,27.720957870500058],[-114.95592631805562,27.716509266395406],[-114.95369312195334,27.7164550434116],[-114.94707718630366,27.71206178557145],[-114.94115490659158,27.706408296034283],[-114.93819652059648,27.701709588982396],[-114.9348971095825,27.693298990864207],[-114.9350943532848,27.688064034563354],[-114.9363997618023,27.686854495752755],[-114.93361988151105,27.68602297859877],[-114.93309951976994,27.678728992433662],[-114.93043799778889,27.675975038268348],[-114.92158226069006,27.671277601711836],[-114.91199923305834,27.67028486239758],[-114.90742872461021,27.665095110769528],[-114.90703755688565,27.666640049717103],[-114.90304530338432,27.665671570649522],[-114.87961378467372,27.653359969128303],[-114.87153395008033,27.649868233128927],[-114.87375351475737,27.647990286345077],[-114.8734088227896,27.643246017332615],[-114.86872405442517,27.641925767874568],[-114.86737654684117,27.639454247621416],[-114.86273672964734,27.638007515403103],[-114.86298794676065,27.635828261246786],[-114.86144447416683,27.63387832235378],[-114.86252183894919,27.632151919040325],[-114.86090340037288,27.6269390749099],[-114.85883714670803,27.626594681769575],[-114.85659738971623,27.62431153385495],[-114.85430056782081,27.624940577678217],[-114.85110767515306,27.62234623688306],[-114.85236201419855,27.62167301022214],[-114.84759621371097,27.617824158224323],[-114.84409638376093,27.61793881480986],[-114.84362781275104,27.62074715854874],[-114.84575389283236,27.624876338371337],[-114.84366940305051,27.628193134166906],[-114.83705478691888,27.630736328986075],[-114.83072560070383,27.631216009390243],[-114.81722362249735,27.6290433727346],[-114.8111040929877,27.626787774963304],[-114.80116448976668,27.620641356447607],[-114.79608001531057,27.617098617933152],[-114.78481774474687,27.60747225041439],[-114.77844934340328,27.600611235409588],[-114.77216876448642,27.589450077304832],[-114.77259715873566,27.587154946484134],[-114.76911327512363,27.58393323903897],[-114.76559535553753,27.57645351390687],[-114.76390772720009,27.569870421831183],[-114.761307778571,27.563624642000946],[-114.76162978317842,27.56033782648285],[-114.76306603597607,27.55974974289535],[-114.76293334211476,27.556798353301133],[-114.76094498985742,27.553337429807584],[-114.75880962535552,27.551801364243772],[-114.75784957975463,27.547905785737953],[-114.75161811624366,27.54554805460242],[-114.74614022163888,27.539571678819016],[-114.74573522961629,27.536527807516848],[-114.74360870537464,27.534246573647124],[-114.73969176023013,27.532801665260592],[-114.73797956423641,27.52981850932406],[-114.738108965013,27.524841784015962],[-114.73546504603439,27.52321251903686],[-114.73022590039034,27.523605965919216],[-114.72953645620265,27.521375970771714],[-114.72314695182547,27.522934243921554],[-114.72194755872579,27.522183097019706],[-114.71691763987718,27.522558842044305],[-114.71178047213539,27.521112235346777],[-114.70820722677598,27.51783750715856],[-114.70440241564341,27.517896818484758],[-114.69969368347432,27.516353177452515],[-114.68714749041374,27.508397876808147],[-114.68527898049047,27.509255372204052],[-114.67953625722652,27.508591052473662],[-114.67816740777789,27.507341259351847],[-114.67130923701018,27.506267201395303],[-114.66938285337443,27.506721084154776],[-114.66600640002872,27.5055464378583],[-114.65891572731948,27.50149916330139],[-114.65563664914464,27.50119767404152],[-114.64992736047765,27.497871647615113],[-114.64897235677938,27.495888545855905],[-114.6439540248333,27.496239929990452],[-114.63907606122672,27.492707391937813],[-114.63939368512638,27.490781651169357],[-114.63486956567692,27.490573257595486],[-114.63286280976126,27.48912536378748],[-114.63259225931779,27.487211503748824],[-114.62479164235936,27.485905159661172],[-114.62248761555418,27.486207187225546],[-114.6190586861751,27.484498640134746],[-114.61775189161273,27.482373008173056],[-114.61407429748726,27.482497172238425],[-114.61005440151717,27.47976763739814],[-114.60703486600835,27.478914634478656],[-114.60490238174356,27.48021916638885],[-114.60124492924831,27.478714536374866],[-114.60119386080123,27.476823263112237],[-114.59695741741382,27.47617785901673],[-114.5925964475764,27.47189075427815],[-114.5890497691156,27.465907205278597],[-114.58472587685264,27.460716713966804],[-114.58280769790372,27.460310118082532],[-114.57997821048616,27.457786361763226],[-114.57563222518479,27.451443169261665],[-114.56774726706846,27.45040082157101],[-114.56633572820505,27.451523013519818],[-114.56377413460848,27.450589125802082],[-114.5589900893525,27.44575984842038],[-114.55574787953196,27.446044336205887],[-114.55407026313793,27.444317863380547],[-114.54904118359843,27.44215617794083],[-114.54639046381158,27.437635602805983],[-114.5419283866596,27.437473575725335],[-114.54070550317545,27.43629008875098],[-114.52704901264877,27.42922382624357],[-114.51919999767506,27.422369286889648],[-114.5154604891311,27.41736688302359],[-114.51348279487866,27.41716967950788],[-114.50700549015005,27.409009015824893],[-114.50470250630508,27.402956801554012],[-114.50158073914832,27.397389741455413],[-114.49483479276182,27.377668848703706],[-114.49030967932765,27.36023759334762],[-114.48780792918126,27.344336578563627],[-114.48628816219252,27.327406143132407],[-114.48585207072114,27.31034593192868],[-114.4851316077308,27.298633983133186],[-114.48540018016996,27.283165598298297],[-114.48818959420942,27.279973984261233],[-114.48697690399854,27.277261710605956],[-114.48656638059873,27.270308963220145],[-114.48518196650076,27.265841879372033],[-114.48458665587572,27.25995295246952],[-114.48741046878189,27.254319508782487],[-114.48606122173555,27.252725316963392],[-114.48660459971944,27.24862740057779],[-114.48838947503589,27.246872352105356],[-114.48660587896097,27.245900380821638],[-114.48796484273333,27.243011094677797],[-114.48739331517828,27.238675145246475],[-114.48545734976204,27.234855283456227],[-114.48565102909566,27.232720528354662],[-114.48800569717326,27.228717351879197],[-114.48448842568087,27.224639941643602],[-114.48198498010248,27.22382036928036],[-114.4793585315029,27.21975904956588],[-114.47894136241086,27.21676540390439],[-114.47259615936099,27.218061950724177],[-114.47073919134147,27.21777441046555],[-114.46725407541356,27.219655834681078],[-114.4630296089465,27.218385194576456],[-114.46046399940246,27.22048634568239],[-114.45628069624547,27.22058876802447],[-114.44845747227077,27.217864420721867],[-114.44593174989808,27.21423229154027],[-114.44398424970507,27.215290618404254],[-114.440801866578,27.212543715543745],[-114.43839886192029,27.212144264081587],[-114.43490237166588,27.20976659780615],[-114.43161299354523,27.205743172707685],[-114.42795371252419,27.19787758691467],[-114.42727066401619,27.194189545362008],[-114.42808682399635,27.19331652340253],[-114.42720617189354,27.18876316919153],[-114.42972516606699,27.186708910853497],[-114.43033202453552,27.18374719885537],[-114.43271094092154,27.183537117088804],[-114.43476816790542,27.1770858452212],[-114.43175561325774,27.17590297497162],[-114.43084217936831,27.174358529504104],[-114.42725362439404,27.17475477538818],[-114.4252389606026,27.171706854391346],[-114.4208210782939,27.17361101594389],[-114.41645726664785,27.16919958952934],[-114.40975744119226,27.171944730491873],[-114.40422512507496,27.175111883328725],[-114.39858159712014,27.176093488507377],[-114.39657769920063,27.181970548685456],[-114.39420155319061,27.182396940732474],[-114.38749918774232,27.181252863106067],[-114.38001357706548,27.178311546022314],[-114.37487118577843,27.175063431499154],[-114.36697707808293,27.168126532063525],[-114.3630884269835,27.163904644463116],[-114.35875782400825,27.1622372744896],[-114.35295966758525,27.161841061250527],[-114.3403292979495,27.159428276611607],[-114.33351194577477,27.156885177881747],[-114.33100321107355,27.15505281044227],[-114.3297881495136,27.15248438353791],[-114.32729638839004,27.15005979993788],[-114.32718433212528,27.148195173184945],[-114.32229478367776,27.147380375549744],[-114.31907351110073,27.144878153730303],[-114.31437653758945,27.14321509810179],[-114.3087685965545,27.13828809092638],[-114.30808538409883,27.13606277069823],[-114.30335683318373,27.133531640647618],[-114.30058739673422,27.12856921638695],[-114.29758213622188,27.12764298850442],[-114.2983939250829,27.125122517232057],[-114.29678808226453,27.12400136569954],[-114.29409581716538,27.127782429171305],[-114.29606654820589,27.134533383463236],[-114.2955980500364,27.137748600213285],[-114.29317542429283,27.141212134661203],[-114.28717422313235,27.14550525917838],[-114.27485635480684,27.149650867365267],[-114.26843396375341,27.150885871427135],[-114.25948880487391,27.151686615070957],[-114.2521763812959,27.151650100771803],[-114.24321436693754,27.151083796757632],[-114.23144576590613,27.149330730653787],[-114.2198243454115,27.147042507979563],[-114.21258897081259,27.145157087862458],[-114.21135444761359,27.14424141203517],[-114.20594107250173,27.14430950108334],[-114.19953843991857,27.14370075758103],[-114.18732202094827,27.14051997470176],[-114.17512021041637,27.136256672787113],[-114.1569607751477,27.128718678862413],[-114.14243178040931,27.121875826801954],[-114.13017578577467,27.11512447134163],[-114.11719235724132,27.106487902092567],[-114.10157125285377,27.09569037723486],[-114.09119090280359,27.08708960293785],[-114.08442409084614,27.078098116747583],[-114.08064735849501,27.071509808475298],[-114.0757506178602,27.06672907170065],[-114.07440487141008,27.06447926898977],[-114.06751828770268,27.058458962520774],[-114.06297648519313,27.053709407051883],[-114.06017667110439,27.04969861346109],[-114.05685569956017,27.043534292064294],[-114.05227719823523,27.030626980015256],[-114.05293784558006,27.025639614492377],[-114.0521218743562,27.020100148069957],[-114.04917255403893,27.01900449187218],[-114.04770694479652,27.01603553838288],[-114.04428538032238,27.01535528849837],[-114.04212381275386,27.013365836199114],[-114.03969417162602,27.013034978308326],[-114.03657681039073,27.00877450734265],[-114.02861224963368,27.000814627307363],[-114.02369129331652,26.99285973875186],[-114.0206184921795,26.99047009755367],[-114.01721935194496,26.98364945440278],[-114.01239088506497,26.979782535768777],[-114.01050360669944,26.979462265649545],[-114.00699475733273,26.975434703302426],[-114.00448896222667,26.974070987973676],[-114.0025354927896,26.97110191491481],[-114.00087287387595,26.972650173387706],[-113.99699216925609,26.972432924619056],[-113.99472366639196,26.973234251945314],[-113.98335732167061,26.97336576969866],[-113.98299360117448,26.97611106896744],[-113.97973484548265,26.979825100080518],[-113.97859350445162,26.98259093422672],[-113.97841249253844,26.98733692899657],[-113.97713451619387,26.991641954772433],[-113.97411906419791,26.994622816981007],[-113.96961421183204,26.996790294704738],[-113.9646234241165,26.99823517041733],[-113.9547421527397,26.9992576175585],[-113.9470085868436,26.99943981836884],[-113.93357205570885,26.99769441522062],[-113.92078090439986,26.995240041778175],[-113.9086240035623,26.992243198900326],[-113.90045766020216,26.989757584165147],[-113.88167372578886,26.983327878339026],[-113.87194148524259,26.979691783720227],[-113.86218980500684,26.975263382692674],[-113.8513583731642,26.96957713874707],[-113.84152402974007,26.963648209929147],[-113.82854973983336,26.955356226970025],[-113.8081710094769,26.940361893783745],[-113.80155639196062,26.93485431611481],[-113.79726142156244,26.930671322446017],[-113.78892938949105,26.921608683376633],[-113.78547321552401,26.917341630659052],[-113.77917971341014,26.90797051689691],[-113.76961410814351,26.890243033100603],[-113.76228390880277,26.876021052682745],[-113.75910309684497,26.867662493743694],[-113.7571158942311,26.860704953927268],[-113.75185474737532,26.85135805029131],[-113.74727208365562,26.838815989315208],[-113.74149433954415,26.827138798600572],[-113.7378335210372,26.814506111738808],[-113.73674568625876,26.80794051397578],[-113.7372657854043,26.80493933109915],[-113.73373992840453,26.799463040956198],[-113.73168677907921,26.79882196712623],[-113.72911171928314,26.801240639871708],[-113.72633772710748,26.801023267636992],[-113.72243736215108,26.79930579877515],[-113.71901154801049,26.796036630574292],[-113.71598108822656,26.790489764022936],[-113.71167734553597,26.790874678457328],[-113.70783706870418,26.78937317659046],[-113.70469275216118,26.791928857348353],[-113.6998988896894,26.79005453328722],[-113.69936782721277,26.787355171290187],[-113.69147247970903,26.784294319870924],[-113.68596227838202,26.78085644931366],[-113.68026834658434,26.77664279395657],[-113.67344787702984,26.768736478011874],[-113.66986283510596,26.765569737475914],[-113.6657508586502,26.763250192529597],[-113.6577651880288,26.756407746063303],[-113.65071724056781,26.74739830480644],[-113.64231763748518,26.733747069314177],[-113.63835783452271,26.729668118206803],[-113.63108204845514,26.726064057930444],[-113.62421458742318,26.721980852759486],[-113.60977066030802,26.714622974263705],[-113.6018394447106,26.711978918711225],[-113.58031070053403,26.706589767159016],[-113.57703795930553,26.70470168944354],[-113.57374959369264,26.708871154927863],[-113.57284887364142,26.713047343351377],[-113.56884982100615,26.71568205714533],[-113.56270745412098,26.717767458553908],[-113.54751044922295,26.7202427989763],[-113.54597419761478,26.72424280375475],[-113.54573208815918,26.72847095967097],[-113.54834067204774,26.729832028871044],[-113.54988254934779,26.73577281237141],[-113.54885409327255,26.73844774097995],[-113.54600654812992,26.741465644933214],[-113.5353487246889,26.747165286569725],[-113.52371816596337,26.751043656422894],[-113.52180343619824,26.753189674301836],[-113.52196436733743,26.755399298007717],[-113.51854973354097,26.759403789219448],[-113.51814422664137,26.761628968262585],[-113.5196354612529,26.76360876030435],[-113.51770432639654,26.76930611569361],[-113.51745286428246,26.772261250782435],[-113.51520660167506,26.7769683945333],[-113.51452940872747,26.781480509328503],[-113.5126920647366,26.78350336449364],[-113.5112705206505,26.788879746659234],[-113.50917867181414,26.791529757678063],[-113.50160074238295,26.79523145168946],[-113.49451733084135,26.796960056074624],[-113.48910966186963,26.79961869569047],[-113.48283914078354,26.80148213935132],[-113.46979309448062,26.803200202244682],[-113.46580219847027,26.804713498662295],[-113.46390831721641,26.808328741087905],[-113.46048206388656,26.809166323207307],[-113.45573163324195,26.80549935957322],[-113.4488014472322,26.80701581565927],[-113.44123463097532,26.807596513733245],[-113.42612539699866,26.80721095516435],[-113.40956561895081,26.80572939314993],[-113.38773785506345,26.80225430235987],[-113.37222941246318,26.798786483121887],[-113.36266653050512,26.796120492218847],[-113.34744242849774,26.79070573139603],[-113.33262468186757,26.783677154103543],[-113.31316025875844,26.77262083153886],[-113.30498011823892,26.76744538499713],[-113.29095860715285,26.756901055452374],[-113.28692933062968,26.754301193297124],[-113.28325019462255,26.75316345938097],[-113.2820365893532,26.74531838445722],[-113.2698359440293,26.712602216827463],[-113.27366360880961,26.708677865426296],[-113.27298692711679,26.706628378651487],[-113.26378454002969,26.70013774928333],[-113.26080673172169,26.700534211212926],[-113.24471090977545,26.69825476755085],[-113.22485016405204,26.69464029759405],[-113.20266521340102,26.689960749178965],[-113.19960000001225,26.689899999943634],[-113.18799798650036,26.68610959914139],[-113.17813187610301,26.682107523320383],[-113.16638108706348,26.67576616888897],[-113.15560447732611,26.668360984556955],[-113.1483474798444,26.662197454596196],[-113.14392836258446,26.660671319404855],[-113.1383439284329,26.659764574403255],[-113.12582355202244,26.643574942601674],[-113.12695571472852,26.639906784753975],[-113.12565236642916,26.63752869792114],[-113.11555768701254,26.63430254455659],[-113.11253232896757,26.632680136508156],[-113.1072482920631,26.63108589179518],[-113.09695420786255,26.626399282315674],[-113.08317994479438,26.618693401869052],[-113.07455574960528,26.6124650506776],[-113.06931358642618,26.60787574254266],[-113.0660024865827,26.60632699071084],[-113.06140621589492,26.59695168091173],[-113.05730195549876,26.59368212972197],[-113.03898698017179,26.58047709277008],[-113.0369982912959,26.576663731262443],[-113.03027533773218,26.571233978282066],[-113.02778322576933,26.56867389584727],[-113.0219075750154,26.56548965615383],[-113.00979034157263,26.556277581029804],[-113.00502741141321,26.554275088776194],[-112.99434627325621,26.546527775931054],[-112.99050513709909,26.54297499913565],[-112.98469052381569,26.538539548904737],[-112.98266091685525,26.537964734780758],[-112.97789306886085,26.533621725178364],[-112.97403548224946,26.532504679451506],[-112.96543817106073,26.529122697987532],[-112.96266324028738,26.52858200295708],[-112.96096934598427,26.52497984321917],[-112.9508123635461,26.519679051645085],[-112.94247136196282,26.515814296879284],[-112.92331027364958,26.506218029474212],[-112.91203081307663,26.49985146415412],[-112.89429865027489,26.488740026206813],[-112.88527916541352,26.482533874687533],[-112.87123638679765,26.472032806900643],[-112.86082302544924,26.463346395783503],[-112.84714277998131,26.451233623262112],[-112.82147881353103,26.430221027339485],[-112.80938180408702,26.42065328890419],[-112.8018762641442,26.41535064026209],[-112.79059505620467,26.407894942897315],[-112.7885828386951,26.40708975444437],[-112.78180529691866,26.401911812549372],[-112.77734602965023,26.399510835152057],[-112.76775649351083,26.393540384603682],[-112.74063618600132,26.37797519041908],[-112.72545833064447,26.368263728940917],[-112.71886895567451,26.363400093915004],[-112.71095453745755,26.356559589339042],[-112.70170148625209,26.346843695025996],[-112.69194121351569,26.33482426430146],[-112.68719189626546,26.330988741159217],[-112.6838909393943,26.326955181681853],[-112.68141256080338,26.32034118444858],[-112.6793151942407,26.31614463980702],[-112.67310200214831,26.31967722946831],[-112.66924289902079,26.318968970155595],[-112.6612132015311,26.319721224896796],[-112.65863535088198,26.32220766195678],[-112.6537379156992,26.3252558091973],[-112.64896839905629,26.32494454051914],[-112.64744370394374,26.323968081880878],[-112.64259565509786,26.32375032388387],[-112.64086133103359,26.32244301872373],[-112.63499924050996,26.321112013717084],[-112.62468825230474,26.315108278467505],[-112.62073703360096,26.310605964143633],[-112.61757714866616,26.30536660379738],[-112.60841522365581,26.30011984546411],[-112.60305986716054,26.29775404441341],[-112.59867228348372,26.296700409283005],[-112.59267135512044,26.294316198940976],[-112.58668589382648,26.28993561455809],[-112.57908322831963,26.28201392815913],[-112.5768315012225,26.278813807269273],[-112.57352960515118,26.278615186366437],[-112.56380658265459,26.274886546408368],[-112.5587627088679,26.271481648430438],[-112.54055934713767,26.26172281435163],[-112.53074597422415,26.25444964302153],[-112.5236007639283,26.246997237063056],[-112.51804007166919,26.242804287261322],[-112.51539118790595,26.241915198315724],[-112.51176845325455,26.239064747590305],[-112.50351371336905,26.2355868187002],[-112.4975202709054,26.231504183086088],[-112.49356481588524,26.231775530522327],[-112.49141933778759,26.232834069981777],[-112.48075666231637,26.236008226691013],[-112.47821903749696,26.23840443329641],[-112.475492531295,26.24369698673229],[-112.47727917697136,26.24807453765402],[-112.47619967805554,26.250403833881364],[-112.47765312856035,26.254284918681037],[-112.47405662049539,26.258623897536722],[-112.47107208894647,26.260403844785174],[-112.46518120281041,26.26192399765489],[-112.45493465667744,26.26243046228211],[-112.44513496046574,26.26027221140771],[-112.4291934065239,26.25275716771779],[-112.41852657785063,26.249888144714475],[-112.41392224593108,26.24804676718759],[-112.40737171487393,26.244298323018484],[-112.39706434274774,26.236159943940947],[-112.38680997054462,26.22624199863401],[-112.3800636835594,26.217483991042684],[-112.37762369477088,26.2152077915963],[-112.36868100428268,26.203438693252792],[-112.35681562908286,26.193602947031195],[-112.3502641075811,26.1859794497812],[-112.34382517529787,26.176919608612877],[-112.33963309688767,26.170006849273364],[-112.33457735148312,26.160650220020443],[-112.32752861394118,26.14648719054486],[-112.32228951842762,26.134069561995773],[-112.31815889789362,26.12321606229807],[-112.31063597012474,26.09938545572021],[-112.30857442485592,26.08957871919796],[-112.30762417244858,26.078197176179685],[-112.30825337933044,26.072126640592955],[-112.30456064310692,26.070435142794622],[-112.29993927946873,26.065429047802922],[-112.29525584473492,26.05799271399286],[-112.28952480819038,26.055263198067735],[-112.28641183707208,26.057098507410103],[-112.2823700535323,26.061351603685978],[-112.27976197348909,26.06114870668455],[-112.27352795482619,26.05733677389418],[-112.27183679694679,26.057708475899517],[-112.26443107637755,26.055681600436685],[-112.2602134618021,26.05382757258917],[-112.25586944519091,26.05103822845109],[-112.24489220304753,26.041357248719635],[-112.24047413920874,26.040382934892648],[-112.23422145850913,26.03668234349135],[-112.23126865810013,26.03398636664855],[-112.22430341308615,26.02588834242772],[-112.2175140726007,26.01609182941928],[-112.20650574544578,26.002810588752368],[-112.20141623423501,25.99978847961023],[-112.19647111314231,25.993743470199718],[-112.19220102401573,25.98761589933673],[-112.18871176143784,25.98014593584577],[-112.1877060789152,25.975229997437793],[-112.18542319453763,25.969224042371877],[-112.18280986865881,25.964249841349783],[-112.17730293662356,25.95238311503971],[-112.17332308786564,25.940237785704255],[-112.16986410599384,25.923178939102115],[-112.1677050834474,25.917541757805054],[-112.16695758657403,25.912685790513308],[-112.16508158401541,25.906776789794378],[-112.16097345359265,25.896491708246515],[-112.1593113754036,25.894372941910092],[-112.155021301261,25.88650499315105],[-112.15263832277748,25.8787835892702],[-112.1475286011659,25.87062845309316],[-112.14194445143312,25.860779340219267],[-112.13785056420534,25.85115683801996],[-112.13576516627063,25.842181285790673],[-112.13466114730801,25.83931622695428],[-112.12999151206446,25.82288610165557],[-112.12935820300368,25.81556771646899],[-112.12385591979819,25.810448442104416],[-112.12150379884179,25.807414644130176],[-112.11928543940797,25.80231994061029],[-112.11726768915707,25.8020634812284],[-112.1127971202348,25.795756936587395],[-112.11037285757413,25.788591150906484],[-112.10744009135124,25.78245997932163],[-112.10562958061905,25.775104012097472],[-112.10486031131342,25.76950142691345],[-112.10380414928221,25.76627646208243],[-112.10160942693636,25.75609593151154],[-112.10071030522664,25.747678060422118],[-112.10065820151402,25.74202365895792],[-112.09932812111197,25.726190394777802],[-112.09882781353105,25.710542230794374],[-112.09901930944619,25.695882740649893],[-112.09854595008949,25.691137895023303],[-112.09440199495907,25.684287140218032],[-112.0959712300795,25.682053307318938],[-112.09790000000027,25.674499999936188],[-112.09756306758294,25.665589807135177],[-112.09760000000028,25.650499999935846],[-112.09740000000028,25.6353999999356],[-112.09760000000028,25.62659999993525],[-112.09730000000036,25.596699999934913],[-112.09760000000028,25.585899999934668],[-112.0991849021816,25.559996164544202],[-112.10030000000035,25.55479999993412],[-112.10059474767644,25.545414266387468],[-112.10244468049626,25.526216008012454],[-112.10284935854122,25.513829162602462],[-112.10096840082542,25.50755366933572],[-112.09914918695085,25.506423914065238],[-112.09920000045281,25.501400000219064],[-112.09764059156333,25.49303007559297],[-112.09735559399473,25.488453314254684],[-112.10220828605287,25.48790847412272],[-112.10509062989195,25.48283047495812],[-112.10497125084362,25.478357725902015],[-112.10626520513682,25.474445511346687],[-112.10290264434985,25.47101513119071],[-112.10151302109477,25.4660973370423],[-112.1017297473341,25.45764951912065],[-112.10339999954965,25.44940000041271],[-112.10346318383353,25.441757953012257],[-112.10498436876787,25.436651125071478],[-112.10630000000037,25.429899999931877],[-112.10670000000033,25.423799999931816],[-112.10800000000035,25.41669999993178],[-112.10900000000038,25.406699999931618],[-112.1102000000003,25.399899999931392],[-112.11030000000034,25.396299999931443],[-112.11230000000035,25.38469999993123],[-112.11550000000034,25.362499999930776],[-112.11670000000032,25.35779999993059],[-112.11770000000035,25.350699999930555],[-112.12143641026705,25.336256413499825],[-112.12220000000036,25.330499999930225],[-112.12740581741514,25.314373361229002],[-112.13188767426999,25.30946927207731],[-112.13663009994991,25.301083672869595],[-112.13704098128119,25.2961335839081],[-112.13564166115304,25.292793217418193],[-112.13304849666446,25.290526243593376],[-112.1295293627806,25.28908695662483],[-112.12783298124492,25.28480817445609],[-112.12481486292319,25.281860538458545],[-112.12824793625902,25.2676019179018],[-112.13062552494807,25.267228647095862],[-112.13463903783827,25.265159442731772],[-112.13729255202185,25.262408295302237],[-112.14024460413077,25.254352247174438],[-112.1424444170018,25.242760581487914],[-112.1450133798474,25.22426761658005],[-112.15004214653658,25.2030912549219],[-112.15288286897845,25.193215745874397],[-112.15381378691552,25.18712880716788],[-112.15790669860286,25.172944748509792],[-112.15815566166884,25.17072149126858],[-112.16047444360981,25.16559134665829],[-112.1618849754127,25.15877666897694],[-112.16293740874494,25.156495081677576],[-112.16468534836764,25.148182577133355],[-112.16589436247125,25.14619025882871],[-112.16656983602059,25.142223991376795],[-112.16924147388454,25.13405022634487],[-112.17102984642116,25.126964267725555],[-112.17555301569502,25.112453705977998],[-112.17703169194363,25.106767762452023],[-112.18337069485506,25.086536557988836],[-112.18727113337906,25.07242753101292],[-112.18862124214775,25.06907040202958],[-112.19202101038542,25.057028923973178],[-112.19566112372729,25.04609800040879],[-112.1986515809408,25.034353600476095],[-112.20102822501843,25.02886838706513],[-112.20341668430007,25.021039222176967],[-112.20860000000044,25.00769999992434],[-112.21540000000044,24.988299999924152],[-112.21900000000039,24.98049999992395],[-112.22160000000042,24.97219999992376],[-112.22290000000044,24.9699999999238],[-112.22630000000044,24.960299999923564],[-112.23680000000041,24.932199999923114],[-112.23870000000039,24.928599999922994],[-112.2425000000004,24.919499999922834],[-112.24670000000043,24.9081999999226],[-112.25710000000049,24.883999999922253],[-112.2609000000005,24.875499999922056],[-112.26670000000053,24.8591999999216],[-112.27476039256459,24.84016399428407],[-112.27905574312769,24.831198918773623],[-112.2883000000005,24.81399999992084],[-112.29220000000049,24.81099999992074],[-112.29760000000056,24.809399999920856],[-112.30230000000057,24.80909999992076],[-112.30020000000059,24.805099999920742],[-112.30300000000051,24.801599999920654],[-112.3043732884417,24.7985410028586],[-112.30448556454405,24.794326337535722],[-112.30263790772159,24.79169407617593],[-112.30065311864718,24.791365124153003],[-112.29480713775706,24.788040477515153],[-112.29060933278959,24.787641183407004],[-112.28740414503847,24.784309525240587],[-112.286493053414,24.780954899834853],[-112.28230000000053,24.78029999992026],[-112.27730000000048,24.776599999920222],[-112.2729000000005,24.771799999920233],[-112.27280000000047,24.76699999992013],[-112.27150000000046,24.76269999991996],[-112.26940000000042,24.758999999919865],[-112.26100000000048,24.7526999999198],[-112.2594999999638,24.75009999960554],[-112.25860000000046,24.753699999919775],[-112.25960000000049,24.755099999919764],[-112.25810000000047,24.756399999919893],[-112.25940000000048,24.76059999991992],[-112.25880000000046,24.765199999920014],[-112.25940000000048,24.76839999992012],[-112.26100000000042,24.770099999920262],[-112.26171944979643,24.776137888057292],[-112.26146956940778,24.778879085513495],[-112.25559471715803,24.784194719699144],[-112.24521383188085,24.787747968467613],[-112.23810205612295,24.789481676109915],[-112.23096656035256,24.789743946419208],[-112.22390000000047,24.78909999992061],[-112.21610000000044,24.78729999992055],[-112.20020000000034,24.780899999920337],[-112.19130000000035,24.776199999920323],[-112.1814000000004,24.7702999999201],[-112.17490000000038,24.76529999992016],[-112.16220000000038,24.754499999919858],[-112.15000000000026,24.742699999919637],[-112.14630000000028,24.737999999919623],[-112.14170000000036,24.730599999919434],[-112.13930000000028,24.72369999991946],[-112.1358000000003,24.706699999919067],[-112.13520000000022,24.696699999918906],[-112.1356000000003,24.688999999918792],[-112.13640000000032,24.68469999991862],[-112.13890000000032,24.677899999918566],[-112.14200000000028,24.671399999918492],[-112.1472775244153,24.66703279873343],[-112.15080000000029,24.666499999918415],[-112.1526598030577,24.669283880436524],[-112.15520000000038,24.670899999918504],[-112.15826801734647,24.670961415865122],[-112.16107006267231,24.67298653176374],[-112.16432447767522,24.672190918297986],[-112.16674530088972,24.67047689658068],[-112.16590000000025,24.6689999999183],[-112.16670000000028,24.664299999918285],[-112.16834893869645,24.660592927132825],[-112.17480000000035,24.653299999918147],[-112.17190000000039,24.64879999991814],[-112.15760000000034,24.644299999917962],[-112.15710000000036,24.641399999918008],[-112.15874960449418,24.639616341473584],[-112.1564449538983,24.6384531360884],[-112.15570000000037,24.636599999917678],[-112.15090000000032,24.630099999917775],[-112.15010000000035,24.62689999991767],[-112.14730000000031,24.625899999917692],[-112.14670000000035,24.621799999917585],[-112.14250000000027,24.620099999917443],[-112.13700000000023,24.619999999917525],[-112.13040000000035,24.6166999999175],[-112.12950000000023,24.61459999991746],[-112.12090000000029,24.60619999991735],[-112.11732182315603,24.603702285392387],[-112.11250000000024,24.59619999991719],[-112.11070000000029,24.59129999991694],[-112.10534563077078,24.584742791534836],[-112.10260000000028,24.579399999916802],[-112.10120698668163,24.574970307188266],[-112.09990000000028,24.565199999916615],[-112.0991174270888,24.563281184050766],[-112.10207362848297,24.55875932040294],[-112.0968000000002,24.55589999991645],[-112.09640000000024,24.553399999916337],[-112.09419025705455,24.553965584933394],[-112.08940000000024,24.550899999916282],[-112.08796713778406,24.54789720226006],[-112.08530000000019,24.548999999916305],[-112.08050000000031,24.5457999999162],[-112.07680000000022,24.545199999916292],[-112.0733000000003,24.543699999916157],[-112.07211002226535,24.5421290320146],[-112.06938480190735,24.543715063592856],[-112.06860000000017,24.54089999991612],[-112.06330000000014,24.542099999916104],[-112.0633000000002,24.540599999916196],[-112.0601000000002,24.54179999991618],[-112.05630000000025,24.53879999991608],[-112.00621078209036,24.515124924109955],[-112.00459159271412,24.51360462179889],[-112.00410000000022,24.51099999991561],[-112.00052449828291,24.5109951406165],[-111.99680000000023,24.5071999999156],[-111.99260000000021,24.5071999999156],[-111.98681604356506,24.505534993921344],[-111.98319881812694,24.503629048937455],[-111.98304766922615,24.502386907568336],[-111.9704000000001,24.497899999915433],[-111.9632000000002,24.493799999915325],[-111.95360000000016,24.491599999915366],[-111.94960000000015,24.489399999915236],[-111.94730000000015,24.488999999915166],[-111.94040000000018,24.48439999991524],[-111.9355000000001,24.479199999915068],[-111.93360000000013,24.47479999991498],[-111.92910000000012,24.471399999914865],[-111.92728007376417,24.469110386406612],[-111.92495473737591,24.46932982638981],[-111.92442151532657,24.471354707142268],[-111.92070545756803,24.470204858678358],[-111.91546697295729,24.46437345554824],[-111.91590000000014,24.462599999914858],[-111.90960000000013,24.459099999914656],[-111.90860000000009,24.457299999914767],[-111.90530000000007,24.457099999914703],[-111.89630000000017,24.4522999999146],[-111.89600000000019,24.449899999914408],[-111.8921000000002,24.450299999914478],[-111.88770000000011,24.447299999914435],[-111.88730000000015,24.44579999991447],[-111.88450000000017,24.446899999914535],[-111.87618076951247,24.44254179796178],[-111.8592000000001,24.430199999914237],[-111.85630000000015,24.427699999914182],[-111.83840000000015,24.413999999913926],[-111.82518809402075,24.402920865526426],[-111.82140000003943,24.40049999971069],[-111.80892348240519,24.39029413494336],[-111.802212037108,24.385413173309928],[-111.78661627870088,24.374705755313187],[-111.75097948662858,24.351869151665483],[-111.74312486929523,24.346008115741313],[-111.73900000000009,24.341099999912558],[-111.73680000000013,24.339599999912593],[-111.7358000000001,24.33669999991264],[-111.73210000000012,24.33219999991246],[-111.72530000000006,24.32789999991246],[-111.72476848601826,24.325213402591487],[-111.72030000000007,24.321099999912235],[-111.71730000000008,24.317099999912216],[-111.71710000000013,24.314099999912116],[-111.71530000000007,24.311399999912],[-111.71269673102466,24.31047547288074],[-111.7114000001157,24.30659999962569],[-111.71222549149655,24.30529276787354],[-111.71065555610676,24.303203959754683],[-111.7102000000001,24.31379999991219],[-111.71106359299807,24.315626713402708],[-111.70990000000012,24.320699999912165],[-111.7060958924198,24.32270092728993],[-111.70406482052283,24.324698535747757],[-111.70420669726707,24.327668579090584],[-111.70300088215731,24.33155405463259],[-111.70060000000007,24.33369999991237],[-111.69756428727834,24.3395698763606],[-111.69553662856345,24.344655947575973],[-111.69572317247321,24.347222626887174],[-111.69310618249591,24.350951000466864],[-111.66881384780163,24.35600879763831],[-111.66395998708117,24.354297992753175],[-111.65889075392437,24.355411499869376],[-111.64078572057986,24.35814961059117],[-111.62518319595392,24.36326538724842],[-111.61875919849774,24.364242557287184],[-111.60128571920978,24.368239046635153],[-111.5920388180025,24.36875465977687],[-111.58394894091782,24.36841006905007],[-111.56548189895187,24.36576088502005],[-111.54880678124238,24.362661117452603],[-111.53092186424317,24.35850122016126],[-111.51911674402146,24.354916374569882],[-111.50652901371609,24.350273494640305],[-111.47209245289741,24.33547510184502],[-111.4497424293188,24.3269153383431],[-111.44736107660265,24.32739097675926],[-111.44132452538224,24.325927806474567],[-111.44018234642158,24.324388050208995],[-111.40283060086949,24.308492300232217],[-111.36589321458189,24.29062854381749],[-111.34892235537916,24.281640891385962],[-111.3400330359928,24.277405260372745],[-111.32848256819858,24.271015300791532],[-111.27820236141179,24.244513925007027],[-111.27543290522306,24.243596978808966],[-111.2661966093894,24.238081567984693],[-111.24749127275516,24.228513884591052],[-111.23922422140475,24.223893656250027],[-111.22476834893928,24.214453515215098],[-111.21349215045836,24.208009020180214],[-111.18339140444061,24.189817131467976],[-111.17848131310325,24.18536669388294],[-111.17332181607895,24.182184117345912],[-111.16767417437586,24.180402515489618],[-111.15320554331481,24.17299585933756],[-111.14998789477966,24.170794011545468],[-111.13266603335683,24.162372845962693],[-111.12571119952628,24.159202606535757],[-111.11326003472033,24.15268157820924],[-111.10878515932495,24.149885423226465],[-111.09914249763972,24.14274655920957],[-111.08806301532593,24.135992425709958],[-111.07738195275346,24.130625856913866],[-111.0680885730593,24.124776190218256],[-111.06507085032155,24.12185785293906],[-111.05237466027535,24.11440993417807],[-111.03060200533798,24.0995899149396],[-111.02209846916276,24.093598378289812],[-111.01110563888568,24.083661464036595],[-111.00725245535796,24.0783217791884],[-111.00744427044054,24.07253126940327],[-111.00677418693203,24.071148301175867],[-110.99973917819364,24.068113526309446],[-110.99238709095624,24.063803963799387],[-110.98857544317252,24.0600944020577],[-110.97993406211452,24.053591707405076],[-110.97591960350798,24.05119083060447],[-110.97430369055172,24.049231373029386],[-110.95939799331097,24.03901586227886],[-110.95447871069098,24.035313481550077],[-110.94562433034656,24.027766498862434],[-110.94363614517533,24.025589952152075],[-110.93362338448526,24.0175500361658],[-110.92688025778273,24.010749874543706],[-110.91951523280574,24.004885639882104],[-110.91334172316863,23.99887481080566],[-110.9071532898709,23.9910725129277],[-110.90434701155266,23.98819842353754],[-110.89764691106882,23.983705590819227],[-110.88696325840544,23.974101517596523],[-110.88566221948531,23.971644198283514],[-110.88289279357127,23.96989853296452],[-110.88022418239728,23.96624009192766],[-110.87822087004724,23.96086009710683],[-110.87479494765887,23.95578626292985],[-110.8709483871794,23.955563689262988],[-110.86421399379844,23.951973963372723],[-110.84955422558573,23.94096997920957],[-110.84022525245894,23.932190273410015],[-110.82342166830904,23.917093945579893],[-110.81434750103438,23.908150263523964],[-110.80756058931917,23.900936230442483],[-110.80251719158463,23.89504731789151],[-110.78902345935711,23.881990810102934],[-110.7740599129628,23.866406330298673],[-110.76244965749459,23.85369461356879],[-110.75163288790014,23.840970413038576],[-110.73998180784253,23.828751846143803],[-110.71876924759658,23.80707494975411],[-110.71463094249106,23.802410626257256],[-110.69022512401972,23.776655389858888],[-110.68459817413054,23.770154897188377],[-110.66582731254823,23.752557282020973],[-110.65982261113896,23.747153805711548],[-110.64766428456636,23.737465526007213],[-110.64313571193719,23.733337332865574],[-110.62523967588481,23.718738670063942],[-110.62229767285606,23.71673755843375],[-110.61220233285405,23.708148675478867],[-110.59555767142388,23.6968264324708],[-110.59170190907696,23.693887267899356],[-110.58850602656338,23.6925637193317],[-110.5788795307534,23.686603549765323],[-110.573392229001,23.682741385973486],[-110.55163646768818,23.670445012761775],[-110.53600231275425,23.663291751680333],[-110.52690991019085,23.659449921241333],[-110.52236660660566,23.657000562782343],[-110.51581394651657,23.654508076575212],[-110.50879525936438,23.6523627810663],[-110.49755977609283,23.64773781757856],[-110.4789040153828,23.64154050725341],[-110.46995255285549,23.638217805745512],[-110.45828920378545,23.6333221924624],[-110.44697532240014,23.628061680171925],[-110.42633413910107,23.619544908348814],[-110.4038491510679,23.60881044820229],[-110.3861269284958,23.60001796214891],[-110.37198741978693,23.592010460280562],[-110.3601595511243,23.583980015209022],[-110.348720090308,23.57587894548533],[-110.33403464622972,23.56452621877304],[-110.3265444328344,23.558167524166436],[-110.32035243368455,23.552330366929937],[-110.31350784200481,23.545193082922935],[-110.30748979063611,23.538085364647316],[-110.30043746551371,23.52873031372917],[-110.28753772115346,23.509265065869954],[-110.28248625647467,23.499724628403214],[-110.27912968580932,23.492649370513448],[-110.27682188144865,23.489177852647572],[-110.27390987235913,23.48655262264066],[-110.2704585462372,23.484780630431374],[-110.26472289823255,23.478340861388006],[-110.26271989801984,23.47541585620843],[-110.25672467146012,23.46415662044194],[-110.25021235987163,23.45270480561078],[-110.24249471832701,23.442497941283875],[-110.24186325064727,23.43992458573564],[-110.23891676025721,23.43550875487574],[-110.234427718478,23.427036869723054],[-110.23147475291023,23.417504729020322],[-110.23200508471217,23.413982496817937],[-110.23411390352845,23.41401401112057],[-110.23322398669978,23.411714275258873],[-110.23122112685417,23.412035567667942],[-110.23101919073707,23.407864531621613],[-110.22955185961916,23.405808276859943],[-110.23030931094132,23.403440797822952],[-110.22489678583554,23.404374563154136],[-110.22352896056196,23.402743472630675],[-110.22564959360989,23.401825206651495],[-110.22291242981436,23.398073790087665],[-110.21848003443631,23.39495164493934],[-110.21539348373688,23.395136898937267],[-110.21284193205616,23.38986086670269],[-110.21626140435279,23.385087344842418],[-110.2148445025129,23.38226423324727],[-110.21100303962868,23.38149372410544],[-110.21010000000001,23.378199999895287],[-110.20624079356992,23.37174483932938],[-110.2050184459955,23.368630062697548],[-110.2009533722237,23.365628901500997],[-110.19725517211646,23.361785806319915],[-110.19681398902912,23.360247826097975],[-110.1936056836991,23.35680015035149],[-110.18928493803554,23.347734246370692],[-110.18658672833675,23.342901113475023],[-110.1857211212108,23.3385907769935],[-110.18407820349017,23.33551680427695],[-110.17935255530068,23.32922740134802],[-110.1771,23.32989999989445],[-110.17524682414813,23.328503209591304],[-110.17162375484241,23.323369685229068],[-110.16816395795627,23.317072884062384],[-110.16397296632749,23.307121705376517],[-110.16087719435706,23.291939050888914],[-110.1593735220718,23.286721760134128],[-110.15784629343972,23.27018903823563],[-110.15909999999997,23.26409999989329],[-110.15597035010876,23.26109120569032],[-110.15447370575663,23.256749399025523],[-110.15332352911054,23.245142637058734],[-110.15345451029583,23.22971891719402],[-110.15267774827487,23.226921113319804],[-110.14998373715775,23.222331762633075],[-110.14671413240734,23.21190395693077],[-110.1445529552256,23.201500255771407],[-110.14392168131451,23.19369887813201],[-110.1413381342719,23.187654397821063],[-110.14122736980335,23.183725507480744],[-110.13795871078861,23.17677244374829],[-110.13591526330407,23.16885330220896],[-110.13372974282453,23.163122273654494],[-110.13058845878231,23.147550835711684],[-110.13009402237537,23.13892702769715],[-110.12810763126095,23.1380472205783],[-110.12676517729369,23.135563041468572],[-110.12302338450377,23.120557789598195],[-110.12269999999995,23.1171999998906],[-110.12002638474036,23.11352328058541],[-110.11913742176728,23.108975220608784],[-110.1168134329235,23.103293487450117],[-110.11511123436884,23.102251197381293],[-110.11318958230754,23.09629228440349],[-110.1126931548016,23.08960470281403],[-110.11345641811113,23.08863576726816],[-110.11090423278478,23.08442978133354],[-110.1107250559013,23.081457573427087],[-110.10915904215943,23.07638494914181],[-110.10961723542135,23.068577116654637],[-110.10706047369467,23.065836683737018],[-110.10644701836281,23.05987875284228],[-110.10695248855552,23.05394871009105],[-110.10573216264441,23.0518903363959],[-110.10491719539948,23.045062738147863],[-110.10266868646806,23.036711458766774],[-110.10056850802897,23.03044703466054],[-110.10182413091962,23.02911935243526],[-110.09972522804884,23.02606251902415],[-110.09942559720406,23.021957601859185],[-110.09786514915436,23.0184145261876],[-110.09477803277957,23.018031827262064],[-110.09145327691164,23.01323867763],[-110.08817849064269,23.00500205291638],[-110.08546198529251,22.991626103196438],[-110.07924179925703,22.982346636928185],[-110.07448276628071,22.976749191666045],[-110.07059944613661,22.971195088147226],[-110.06546481308237,22.961279735389724],[-110.06468878883538,22.960636118830394],[-110.06081184843293,22.952180946939393],[-110.06112743237304,22.94956156029548],[-110.05633922556228,22.94475361986889],[-110.05195541060687,22.942555415825723],[-110.03989030307304,22.929913593298807],[-110.03688436963807,22.926115471655635],[-110.02704676224118,22.91501068347526],[-110.01822146723396,22.905654857935872],[-110.01224752726557,22.900635123864447],[-110.0005576330239,22.892212200601932],[-109.99333120006384,22.887913790591597],[-109.99069047785957,22.885023479131746],[-109.98162607897183,22.879726540210697],[-109.97184101456918,22.875777667621207],[-109.9638329545487,22.87218073202365],[-109.96008928431161,22.87271757055055],[-109.95796686709969,22.874042219925798],[-109.94695443694417,22.873214959356233],[-109.92501446690608,22.871958719992676],[-109.9189052667353,22.872425268415725],[-109.9146922498179,22.87355907808285],[-109.89900927637586,22.87475391190935],[-109.89437024900991,22.875943016027122],[-109.89687794230059,22.877839486478024],[-109.90563956102847,22.880548712286327],[-109.90642399126347,22.879403641173553],[-109.91000138099201,22.87872621189217],[-109.91150295525568,22.880513424069534],[-109.91019707850825,22.882461734066965],[-109.91144246435346,22.885761154657246],[-109.90946657582396,22.886543773498943],[-109.90871731200531,22.88165584435984],[-109.90576041615225,22.88171497053844],[-109.90542715191856,22.885891190158873],[-109.90215547128884,22.889494243196168],[-109.89676652906724,22.893686043889545],[-109.89063543756214,22.89635027995064],[-109.8797207876342,22.89821410901277],[-109.87036806464744,22.898448255020753],[-109.86775588403805,22.89666430782188],[-109.86446811466226,22.899100748499905],[-109.8571135353115,22.89889920935559],[-109.85418697052944,22.900833731972],[-109.84934251609201,22.901025564743748],[-109.84557429687084,22.901941706296554],[-109.84286079463703,22.90370211593239],[-109.8438849362326,22.905093654089626],[-109.84303037226641,22.90859777447656],[-109.84117883468156,22.910286686122106],[-109.83199256519026,22.91623898265584],[-109.83039277248582,22.916254450959798],[-109.82648163592995,22.921014921619587],[-109.82281989845069,22.92305314498941],[-109.82193604193361,22.924829662098148],[-109.81639098952894,22.92678012704198],[-109.81621131334833,22.929927615987594],[-109.81369443591927,22.930987380976774],[-109.81150443585307,22.933628831483247],[-109.80910162931951,22.933647683354593],[-109.80760080222296,22.937516096633715],[-109.80821276068338,22.944544270240385],[-109.80751777028803,22.94946961622213],[-109.80598243732078,22.95183625933845],[-109.8035175109423,22.95306444120132],[-109.80151744235502,22.952397253922186],[-109.80212706403029,22.95467998864649],[-109.79889663288662,22.960791176839507],[-109.78965526068004,22.96806442596477],[-109.77561551367864,22.97475908345143],[-109.76778350456794,22.976361920419492],[-109.76345875468866,22.978523334027216],[-109.76424009882084,22.97943487529176],[-109.75950602457789,22.984691001203146],[-109.74993169957537,22.987137521268266],[-109.74417847752926,22.987606375627877],[-109.73511761144124,22.989044634990478],[-109.73146054361473,22.99093993619556],[-109.72964688013911,22.993923365435535],[-109.72701896187954,22.996238083730987],[-109.72469135159821,22.996948426972097],[-109.72391167215238,23.000180424190376],[-109.72059938451491,23.002994438538167],[-109.71357790078639,23.00629096730188],[-109.71419544314728,23.008330601494663],[-109.71794647576752,23.011678279920318],[-109.71766110455155,23.01582505700503],[-109.7162806261739,23.018617156621644],[-109.71600154612258,23.024278340361036],[-109.71467411763098,23.02928368733933],[-109.71305347994684,23.031733461918975],[-109.70795147161823,23.036311512443774],[-109.69327948997164,23.04486577168217],[-109.68651258024289,23.04773334401409],[-109.68294548935864,23.048260971829848],[-109.67949575437933,23.050005834330022],[-109.67350116432033,23.05765001352546],[-109.67030809858653,23.0597386032465],[-109.66111189057216,23.063245447909708],[-109.65520535340829,23.064442964830334],[-109.64020707624962,23.068925404367974],[-109.63225223874565,23.070607328520282],[-109.62523601701884,23.072869954400517],[-109.6215816544464,23.07614853744559],[-109.61752866852157,23.07834112373496],[-109.60810690858148,23.08133148431972],[-109.59947532629258,23.082447179761004],[-109.58666066491128,23.082382433383316],[-109.57662572628556,23.084328214279765],[-109.57581076043459,23.086740913277993],[-109.57356390394011,23.0891926549794],[-109.57101240731146,23.090380922521888],[-109.5680914702873,23.094601577162962],[-109.56480019394064,23.096918041067568],[-109.55573869518025,23.099922445246705],[-109.54616474023771,23.103831843977673],[-109.53615204023936,23.109425123521362],[-109.53097799719103,23.114070286391723],[-109.52881385766477,23.117469623585862],[-109.52792978083329,23.120436523782132],[-109.52525217237098,23.122663776529862],[-109.52135493830536,23.12385025704515],[-109.517607459607,23.127131260189003],[-109.51405866691431,23.132321953367352],[-109.51053521521555,23.13864330959302],[-109.51004230891522,23.140988807288466],[-109.50807464620175,23.143114290281858],[-109.49752399491359,23.1495763183662],[-109.49496624404043,23.15049201714487],[-109.49247460522434,23.15815677010073],[-109.49008325035237,23.159246553828723],[-109.48624927134699,23.165515390724863],[-109.48490500473622,23.169052047278115],[-109.48090031536583,23.172601324478762],[-109.47773481506596,23.173843150213486],[-109.47793093119049,23.177796641150906],[-109.47197020017717,23.185453958171195],[-109.46554543408246,23.19092270822898],[-109.46390384713015,23.191647252755615],[-109.4589654035621,23.196020539062374],[-109.45490499471794,23.202760800605574],[-109.45378180392976,23.206398833978653],[-109.45433060409033,23.21101639086055],[-109.44981896062927,23.221816855253053],[-109.44336043141465,23.22831693595714],[-109.43930266251039,23.234129775769134],[-109.43681225277953,23.24204194684569],[-109.43632436067014,23.245624897837047],[-109.43848419681632,23.2499244440981],[-109.43708493936964,23.257918601874565],[-109.43867450925626,23.260663829767964],[-109.43936600827305,23.265839787943094],[-109.43957103039548,23.273556323992523],[-109.43482359067258,23.281720738462298],[-109.43267037938023,23.28924775480141],[-109.42897998345643,23.294831007343134],[-109.42811207812963,23.300094731202933],[-109.42538241081957,23.304821115203936],[-109.42523266718172,23.308762896902294],[-109.42693677421056,23.312109159907834],[-109.42797545226887,23.316203661388442],[-109.42788738646908,23.32237837048234],[-109.42512822139338,23.33151727401156],[-109.42440562082356,23.33753282557973],[-109.42732705781003,23.343058530633982],[-109.42829571618961,23.34691979815284],[-109.428358863727,23.35086509479123],[-109.42653829537431,23.360987415221757],[-109.42789836615788,23.36581559812379],[-109.42957690108193,23.368252311168305],[-109.43221426786687,23.376576702306295],[-109.42919544489536,23.379797439642857],[-109.42346453142045,23.383070540928884],[-109.41651415203313,23.381906524011697],[-109.41353273334352,23.384785883315942],[-109.41354638719685,23.388993023802414],[-109.41585457829115,23.390705688589662],[-109.417255734263,23.394112520936744],[-109.41763225973364,23.399195630483177],[-109.41590412731426,23.403520612076477],[-109.42075404125393,23.403133318875916],[-109.42620394609025,23.405484042386547],[-109.42783874844667,23.405531051094044],[-109.43084459533407,23.40964157520534],[-109.43199911298541,23.4136653575045],[-109.43208396692972,23.421097587427198],[-109.4303540440485,23.424044022899523],[-109.42927920985903,23.428336665085055],[-109.42800422900154,23.429812078812063],[-109.42633376343849,23.434529045432384],[-109.4273978482949,23.439044863286824],[-109.42579762385242,23.444786158585202],[-109.42400124400035,23.44519052452165],[-109.42548373275957,23.44714590970665],[-109.42503748187016,23.450327054811282],[-109.4268804862536,23.45295442770515],[-109.42924886432831,23.45823224367092],[-109.43641194885919,23.460610984450398],[-109.43939058662,23.462446087453998],[-109.44411451251693,23.46833659792128],[-109.44549268090282,23.471579300308804],[-109.44485856190045,23.47452627399946],[-109.44947809704178,23.480212946405118],[-109.45488191753572,23.482838110330817],[-109.46104689407468,23.487421673816584],[-109.46364009172936,23.495009848256643],[-109.46726031545438,23.498663083290637],[-109.46967900931242,23.504152833548915],[-109.47190433161205,23.506693845366385],[-109.47386046046233,23.510762399166595],[-109.47865119115465,23.517448817188665],[-109.4802050628117,23.52212214179582],[-109.48009574954153,23.53061665964725],[-109.47712052210164,23.539356740586584],[-109.47278376176052,23.546287974091058],[-109.46908276360881,23.550991661776436],[-109.46843127853128,23.554616245486955],[-109.4719948240616,23.55823179961027],[-109.47708920668134,23.560323385039737],[-109.4846441165937,23.561648895273038],[-109.4878880513063,23.562675803929267],[-109.49855907324303,23.564543273735637],[-109.50450717444494,23.565906570890604],[-109.5101553077418,23.567996560820177],[-109.51598886948074,23.571994164785167],[-109.5181131961013,23.577421514208027],[-109.51798671896631,23.581843531404218],[-109.52000790428451,23.584335822478863],[-109.52565320185425,23.586770952406994],[-109.53111180547887,23.588142150483463],[-109.5404522187846,23.58961893866058],[-109.54943847879247,23.591602359928117],[-109.56073311579809,23.594958015227746],[-109.56912706473821,23.598496003763103],[-109.57672144777735,23.600278544212927],[-109.57919177020227,23.60202947758171],[-109.58624547432208,23.610506051250127],[-109.58909207545344,23.611185898276972],[-109.59870747694634,23.616690526983234],[-109.60256611367817,23.61789082244735],[-109.60752625542341,23.621112783087483],[-109.61542199545096,23.62148006683509],[-109.62482132180838,23.6230573094777],[-109.63573222956933,23.626394461539974],[-109.63860365152419,23.627937909920092],[-109.63856690096839,23.630131787430855],[-109.64065356337414,23.63261120072633],[-109.64885516784625,23.63483644095379],[-109.65587650754622,23.637980814436787],[-109.66701081388271,23.641272150316013],[-109.67400436578919,23.644053101678537],[-109.68337288516909,23.64913324329933],[-109.68812395711171,23.653175639257938],[-109.68763511052879,23.6548806529471],[-109.69104632684343,23.658004874230357],[-109.69574147264404,23.661016771117488],[-109.69754424298839,23.66369314616793],[-109.69854573786165,23.66792751982001],[-109.69715766572853,23.67626010321908],[-109.69525306967768,23.683340923589867],[-109.69598149608373,23.691426276665823],[-109.695505345519,23.692605811019007],[-109.69704027175601,23.696083712094435],[-109.7001181618104,23.69995243996351],[-109.6995355345478,23.705294488471225],[-109.7007650124122,23.711045854745294],[-109.7022659987199,23.714170988826424],[-109.70640600195372,23.71916491105361],[-109.70850610844838,23.725152191412747],[-109.71152385102562,23.72772005515094],[-109.71305503244895,23.733104250769202],[-109.71305697586615,23.740306691390003],[-109.71061923597182,23.747703436108566],[-109.71112170238007,23.75414249566296],[-109.71106680778752,23.763312201230065],[-109.71002540416686,23.768268915953684],[-109.70964218407386,23.77585963668656],[-109.70740659831256,23.782635149961095],[-109.70464004406347,23.789068807998717],[-109.70246178982393,23.790278294847894],[-109.70126377819929,23.794193852149363],[-109.70002003807338,23.795384070544515],[-109.69936541108063,23.798987989022294],[-109.70062157142627,23.800669371989386],[-109.70586787825522,23.804488700093657],[-109.70814773079559,23.8051519631278],[-109.71304066716152,23.809627277106927],[-109.71565945771351,23.813049330286447],[-109.72018058813853,23.81705441989999],[-109.72234672851715,23.81983136921798],[-109.72202827873781,23.822563522838664],[-109.72885011204238,23.82912467464257],[-109.72983983395204,23.830911862237258],[-109.73337351302257,23.83287137925737],[-109.73486151320066,23.840267341367507],[-109.73818058088227,23.842236183997045],[-109.7446608662305,23.844441023000854],[-109.74876423316954,23.847370238153246],[-109.75006355058736,23.852166360846184],[-109.75424067196383,23.85688507625167],[-109.75886554035117,23.859714597039442],[-109.76029720014321,23.863050035360743],[-109.76640852721812,23.86769069875635],[-109.76998180482877,23.872145254515942],[-109.7739493878434,23.876001947140765],[-109.77900710148754,23.878685364389355],[-109.78459210109395,23.880881154818496],[-109.78759804221721,23.88324078293448],[-109.79319982259835,23.886346332056007],[-109.80055171392723,23.891653044543204],[-109.80282358981464,23.89423209684435],[-109.80322327377036,23.8983816869914],[-109.81229713686139,23.90451839666963],[-109.82109171511956,23.90851292328631],[-109.82611831396571,23.912194267564246],[-109.82978938395848,23.91623193010031],[-109.8317504842953,23.91976691871946],[-109.83550014855462,23.929306733578073],[-109.83750257330473,23.932752685955734],[-109.83786593249812,23.94120353200657],[-109.83998983246676,23.949871087474776],[-109.8395322577561,23.95345863461364],[-109.83781783403293,23.95514071453499],[-109.83810233083778,23.95872058961794],[-109.83666685506807,23.959637610842947],[-109.83741886802869,23.962532916051543],[-109.83576413289495,23.963807386088206],[-109.83571850426972,23.967096388131722],[-109.83761448181662,23.968410035356328],[-109.83875899038287,23.97188220673769],[-109.83616873911922,23.973435301600205],[-109.83639904567013,23.9758069464757],[-109.83482977549227,23.9794310219865],[-109.83683558233349,23.98100257001613],[-109.83566935872472,23.985065375732347],[-109.83189041921901,23.990388745587893],[-109.82806415743357,23.993147240733435],[-109.82608083192531,23.993321430296646],[-109.82499630730166,23.991084341920214],[-109.82261009719707,23.99154709449641],[-109.81771125581338,23.99537682711224],[-109.81717577658736,23.99801585128739],[-109.81486428770768,23.999124834956035],[-109.81442654820347,24.003050197211564],[-109.81244020590395,24.00323138202606],[-109.81397151431673,24.007127981229587],[-109.8124030444398,24.01125542453633],[-109.810349227975,24.01190273399675],[-109.80815897641497,24.014280744153382],[-109.80631197562161,24.01426636760027],[-109.80423528849968,24.02124168642382],[-109.8055987234959,24.02556535476822],[-109.8082116924835,24.028423428886242],[-109.80875493301318,24.030922004472814],[-109.81070013816208,24.03179945031718],[-109.81729618502828,24.032737769041546],[-109.8251686036561,24.03985829481644],[-109.8253834296965,24.043632600486205],[-109.82656478729234,24.0449029717264],[-109.8266500731541,24.04868040653281],[-109.82762294234004,24.051145093171215],[-109.8267995233075,24.060574424646347],[-109.82876745618773,24.06171468651985],[-109.83192328104747,24.061481461533162],[-109.83782685239913,24.057563540309104],[-109.84525550819234,24.05373265601878],[-109.8696614047904,24.042880298487205],[-109.88131618223684,24.03853783874149],[-109.89411881622135,24.037443994516877],[-109.90988108231903,24.032718604258946],[-109.9249098961701,24.029540705230886],[-109.93011894104603,24.028722897278158],[-109.9396896301738,24.03213472405338],[-109.94337776611098,24.031799629317447],[-109.94605662620427,24.032823790786324],[-109.94949876068358,24.036780448120908],[-109.96147118490148,24.03702697191784],[-109.97025795678582,24.038198600290116],[-109.97853761643631,24.040555109410207],[-109.98607929500906,24.045150167523047],[-109.9887591623484,24.050728798781677],[-109.98794652861443,24.055836447701665],[-109.9892766549857,24.05942136359755],[-109.98879554622147,24.07001353639754],[-109.99194283123535,24.07876593675104],[-109.99274324520661,24.090231025288404],[-109.99187593124577,24.092988214864818],[-109.99293342161616,24.09672932023608],[-109.99254989556613,24.099527219773904],[-109.99404321983872,24.104286320598817],[-109.99447253312206,24.110071598956495],[-109.99742940605728,24.112711406800827],[-109.99922377754848,24.115913740687745],[-109.99895191007585,24.119577682679335],[-109.99743014921728,24.124349387492316],[-109.9978714767534,24.1296721039123],[-110.00229578339508,24.13444695994923],[-110.00348182155591,24.13769254479496],[-110.00337018321494,24.14083929483735],[-110.00466984388788,24.146381776093335],[-110.00621976566885,24.15018362147248],[-110.00609076000535,24.153357275660255],[-110.0081853115413,24.159444096843515],[-110.01269190553973,24.164522858836733],[-110.01594004431308,24.16642086810043],[-110.01783852645599,24.170181198329487],[-110.02533157910113,24.170656633509623],[-110.02977840554405,24.17216379213312],[-110.0314229624766,24.17396715363077],[-110.03140826157602,24.176213506466922],[-110.03509113264681,24.176677125874846],[-110.04149999999987,24.17939999990972],[-110.04671417267247,24.184913959463586],[-110.05292657344546,24.18738201329046],[-110.05757920444194,24.190460695387856],[-110.0591953985595,24.194464456244702],[-110.0647346161727,24.198720179104896],[-110.07045207737673,24.19956199511398],[-110.07283894534288,24.200607239417707],[-110.07544898381337,24.205426624544202],[-110.07850557764118,24.20925414001499],[-110.08283900639543,24.211510917015687],[-110.08752163422145,24.212735635704064],[-110.08892766441,24.215189224416406],[-110.09471405879435,24.217168118826123],[-110.10130594586252,24.21690110501936],[-110.10589476782735,24.219553455848086],[-110.10954416774115,24.222413844983578],[-110.11266740505403,24.223568792215303],[-110.11666067811416,24.227438366904096],[-110.12036716895909,24.226041091868296],[-110.1237054336205,24.22609758427211],[-110.12509823505877,24.22841521623741],[-110.13774607663913,24.236233285960566],[-110.13692481125412,24.238985858714102],[-110.14201944089376,24.244138341728956],[-110.14502893696346,24.24384726664988],[-110.14983735909698,24.24596352529892],[-110.15150722643722,24.249169673858376],[-110.1670765887406,24.250543593839893],[-110.1735262762802,24.25212081796525],[-110.17522655148002,24.25325543947895],[-110.17773676496176,24.25710082004565],[-110.17839487646978,24.262171150025324],[-110.18225005424716,24.264588354386092],[-110.18504491909079,24.269833986463937],[-110.18551884544974,24.27491106036763],[-110.18456094006001,24.27564720278008],[-110.18431357386623,24.279540235266325],[-110.18654149840631,24.282219869922017],[-110.18628413858289,24.28349703155908],[-110.18879494964949,24.285789908662537],[-110.1895130246366,24.28808207504727],[-110.19197093639002,24.290394803954996],[-110.19307843364066,24.292910684646017],[-110.19486801914269,24.292983411342504],[-110.19772645972984,24.29526427552338],[-110.19911015369757,24.29481744524429],[-110.20097176849424,24.297064488680576],[-110.20689637815093,24.296747940181717],[-110.20751791539129,24.29798040590265],[-110.21152182524429,24.29777926417023],[-110.21394297727505,24.299600301809164],[-110.21385453568217,24.301268945877553],[-110.2171391153123,24.30259341287126],[-110.21753909153858,24.308374007264092],[-110.2210796788898,24.31077497536006],[-110.22655322951812,24.311477505611492],[-110.23178169339985,24.314039326045304],[-110.23563128955033,24.31730436613941],[-110.23670318756604,24.32045965660086],[-110.23555754826634,24.322605030547095],[-110.23616797425512,24.325757986258168],[-110.23597045862522,24.33071229238658],[-110.23518633119522,24.332651643576412],[-110.23069427800436,24.335280108222378],[-110.23152275371274,24.34024954856352],[-110.2345568567128,24.344243395641115],[-110.24167520768475,24.34587042250547],[-110.24646950991962,24.350016570998434],[-110.24918765051837,24.345677313872727],[-110.25407747318894,24.34613030092845],[-110.26388602261449,24.347983638911444],[-110.26920671574794,24.34855665985856],[-110.27359869195305,24.351987043384952],[-110.27774283952243,24.35059671983481],[-110.2834526082687,24.353430876958214],[-110.28697192318111,24.35075141670984],[-110.29200131956799,24.351888967103832],[-110.297655937201,24.352355651801986],[-110.30001706938873,24.348429316498027],[-110.30016867492685,24.344727269013276],[-110.30480185031536,24.341560243938716],[-110.30683952379422,24.33879485353566],[-110.31331062057052,24.337095660343095],[-110.32453435755644,24.33598679959374],[-110.32777005076139,24.335079243371183],[-110.32761033781964,24.333541984859778],[-110.33414251521668,24.32898869208583],[-110.33407130950752,24.328063589309977],[-110.33960431453767,24.31454298744859],[-110.3397000024334,24.30440003436047],[-110.33710000243263,24.29610003436045],[-110.33630000243232,24.28690003436043],[-110.33530000243195,24.281900034360433],[-110.33380000243147,24.279200034360485],[-110.33573101682845,24.27795483324138],[-110.33739313479919,24.27498686446063],[-110.33769910044089,24.270800957573726],[-110.33692533600464,24.26500919100124],[-110.33585623612231,24.262264997765556],[-110.33608964107856,24.257694736654344],[-110.333900002431,24.25620003436029],[-110.32703868359357,24.24476450955018],[-110.32271717951375,24.244568613209424],[-110.31890000242697,24.24350003436041],[-110.31650000242627,24.2488000343605],[-110.31440000242588,24.250800034360452],[-110.31351677622297,24.24788987095542],[-110.31525748673579,24.24440213167793],[-110.31473322571645,24.242037292901045],[-110.31203975510448,24.241742883984614],[-110.30726623115868,24.235744131671936],[-110.30666460560104,24.232139269755407],[-110.30979227029786,24.229180658074768],[-110.31212811674152,24.228311280930825],[-110.31255132269206,24.220345094173638],[-110.3061011636101,24.219061235862455],[-110.30530769313003,24.216601722100734],[-110.30246341301148,24.217280645737503],[-110.3005056449536,24.21571143103938],[-110.29966114334434,24.211680159479613],[-110.30084780912074,24.203568768169873],[-110.29978137079746,24.20066824053157],[-110.30220291051438,24.193389758006788],[-110.30268033784301,24.190013259050602],[-110.30212172803516,24.186187776670295],[-110.30303148665712,24.181501824357213],[-110.30449157819305,24.181239300513994],[-110.32465772083702,24.17509247822568],[-110.32874347668968,24.17750493821194],[-110.33253906046798,24.177876730091555],[-110.33925017618253,24.177310498897725],[-110.3505283669424,24.174443014166286],[-110.36171494900367,24.173106643904873],[-110.37793292774649,24.172536253922146],[-110.38571360416273,24.17334223240948],[-110.39875965517643,24.17405390347733],[-110.42604684298993,24.17768232592607],[-110.44132403755845,24.180842291915894],[-110.45583915453858,24.183056681606047],[-110.48871799950513,24.19062872325179],[-110.49293686379389,24.192136393429337],[-110.4999321589546,24.193653095319462],[-110.50766697174834,24.196091037579436],[-110.51086376638659,24.196654521284472],[-110.53359119935698,24.202465987882363],[-110.55421247132517,24.208683820696137],[-110.56017946793264,24.21130111809964],[-110.5634625566442,24.21353118718281],[-110.56580647760325,24.216580370015095],[-110.56413415555136,24.220171265327565],[-110.56901924700736,24.221595786617456],[-110.57266347289669,24.223443329680208],[-110.57584489849171,24.22646210202072],[-110.57871009396797,24.23518156668979],[-110.58151462800828,24.239445121111316],[-110.58933131425391,24.244929951218182],[-110.59425139692382,24.247253479470658],[-110.60051074314748,24.24907937883836],[-110.60701310452328,24.251904718553988],[-110.60792501713968,24.253869148130832],[-110.6112101904805,24.25545222633076],[-110.61364094413557,24.26055720995646],[-110.61576473922088,24.262774500898388],[-110.61681317616728,24.26557070507897],[-110.61624747456642,24.270010472038223],[-110.62063869848487,24.27228152413801],[-110.62342139556483,24.274870493957167],[-110.62542164683265,24.279889178220174],[-110.62846715107702,24.28372556026227],[-110.63085823597083,24.28552971427189],[-110.6314652961492,24.288485818970912],[-110.6341256188636,24.29037743125582],[-110.63642252363405,24.29482195028561],[-110.63832726020956,24.301352477016906],[-110.64169314752519,24.308609522970073],[-110.64041536389072,24.312937412287226],[-110.64095159988062,24.31559393312608],[-110.65188379037556,24.32093911774581],[-110.65580326669459,24.324884690810165],[-110.65482237333941,24.327345836259724],[-110.65857095964907,24.331217251385283],[-110.66353088618888,24.334839581762594],[-110.66486401625644,24.337952181685807],[-110.66825199709871,24.342236028444063],[-110.6722620450605,24.345480824214803],[-110.67711852931728,24.350819887052296],[-110.67774816230713,24.352757333781028],[-110.68131130597612,24.35687175626788],[-110.68218147232227,24.36155090052233],[-110.6804105660097,24.362402718352428],[-110.68067866961121,24.36576654924147],[-110.67935979893525,24.372243367220165],[-110.6801106280347,24.374106915052266],[-110.68462645989479,24.38008177055616],[-110.68471554988696,24.384413716296592],[-110.68228348393797,24.3862396888768],[-110.68155057315971,24.388525948080996],[-110.68343720817342,24.39516796412323],[-110.68836532930106,24.39940192603268],[-110.69323021896827,24.406252050263333],[-110.69326532599894,24.412201927059755],[-110.69006532493376,24.414501926501316],[-110.68996532464234,24.417301925889262],[-110.69237755515786,24.420558307578688],[-110.69191391540966,24.42878225330668],[-110.69259028412489,24.433090320642407],[-110.69031026881663,24.43815638917812],[-110.68862241680193,24.43887004877388],[-110.68804724034783,24.44207840055992],[-110.68495424716235,24.44426861078341],[-110.68494466479586,24.446047324518815],[-110.68885719220975,24.449846573094987],[-110.68938988355956,24.45184348261597],[-110.68782564356451,24.454502667279144],[-110.6867226537596,24.459924891594426],[-110.68705117248072,24.462960309965467],[-110.69106181049358,24.46810704302476],[-110.69144377780452,24.470331819267983],[-110.70396059430016,24.483343676391314],[-110.70985230742775,24.491532917732513],[-110.71212866962452,24.493846569652533],[-110.7133561053821,24.496718459804697],[-110.7239978242215,24.50741462946121],[-110.7291604551628,24.514529291236443],[-110.72955934505114,24.520427662212796],[-110.73392301506942,24.527713833881478],[-110.73348084665048,24.530872170677696],[-110.73479737206469,24.53396930919189],[-110.73579089487583,24.54351766753956],[-110.7377273758687,24.549439409924048],[-110.73803405091212,24.554777750330004],[-110.73483220342496,24.55888560847967],[-110.73377559568854,24.563476251977022],[-110.73605822854364,24.569541226652007],[-110.73555627109505,24.571478492707683],[-110.73851053770727,24.578750171433683],[-110.74022907485625,24.58692212460403],[-110.74028995350778,24.59714592925792],[-110.73909999999995,24.60369999991724],[-110.74030000000005,24.613099999917495],[-110.74020000000002,24.620099999917613],[-110.73950000000002,24.62459999991779],[-110.7339,24.636699999917994],[-110.73359999999997,24.640699999918013],[-110.73169999999999,24.643599999918138],[-110.73070000000001,24.655899999918347],[-110.72900000000004,24.668699999918545],[-110.72760000000005,24.67289999991857],[-110.72237896445824,24.68215252292697],[-110.71848885476578,24.68775141197375],[-110.7088,24.696499999918842],[-110.70577021942779,24.698496877131618],[-110.69778089273859,24.70009332321149],[-110.69383653418413,24.70170393396097],[-110.69074953590342,24.706618531548145],[-110.68896712317633,24.712386247754125],[-110.69079999999997,24.715999999919347],[-110.68950393167864,24.72552850294062],[-110.68849999999998,24.729999999919528],[-110.68562909802739,24.735262052113],[-110.6824251341211,24.744779300443213],[-110.67980188794616,24.74831675623443],[-110.67789909361989,24.749158277716447],[-110.67613019154965,24.753265152038125],[-110.66893037471954,24.76242192508016],[-110.66564006719966,24.76513485447009],[-110.66363087543391,24.771900808247096],[-110.66381650817891,24.774597880604517],[-110.66204849907632,24.782702438949343],[-110.66201109107988,24.78870725714421],[-110.66307208915117,24.79223739981427],[-110.65856144570415,24.803525412380907],[-110.65706651536482,24.80615666921375],[-110.65927280574238,24.808868481275624],[-110.66140696134289,24.808557102555824],[-110.66460332505432,24.810292864169526],[-110.66453797139144,24.816124140660747],[-110.66566357705182,24.817204732861],[-110.66806761316866,24.823299597473465],[-110.67298945986346,24.828522662051796],[-110.67405532357657,24.833743602409697],[-110.67325695295835,24.838835918447387],[-110.67473332190838,24.843725423976196],[-110.67841220696022,24.849786622606644],[-110.68100521925908,24.851553167206873],[-110.68392009412997,24.855285593586018],[-110.6850935252998,24.860299706018452],[-110.68402467221244,24.866958638699828],[-110.68498821167105,24.869188591474597],[-110.68834925001693,24.87322893872266],[-110.68886662995828,24.876056411781576],[-110.68810786932386,24.879587835913014],[-110.68529424214472,24.88400175967263],[-110.69038487140142,24.885782191302837],[-110.69196748226335,24.892095908813815],[-110.69610335895186,24.89547088557231],[-110.70135631691363,24.898818586898074],[-110.70386023389301,24.901416993301154],[-110.70457126179184,24.90370602884059],[-110.70388223084763,24.906527332968665],[-110.70694386227831,24.906727202252682],[-110.70817801811131,24.909420756581028],[-110.70598471548362,24.912821512299843],[-110.7047707792521,24.9120399340556],[-110.70362390609665,24.91458306178106],[-110.70103536266822,24.914697319251218],[-110.70021034357075,24.912502716538313],[-110.69902342169183,24.915227583663864],[-110.70247505267412,24.917347179071157],[-110.70534751807838,24.921609119946936],[-110.71046681897997,24.920119952767664],[-110.71023189681904,24.918859643113876],[-110.71349222451641,24.919962390253886],[-110.72086736117973,24.926211722772507],[-110.72021991864955,24.928753265934574],[-110.72200293878501,24.934454229776406],[-110.72480742844266,24.935902899261578],[-110.72536282493911,24.938199235298953],[-110.72993263111107,24.941471863763354],[-110.73186577257371,24.944433078527993],[-110.7317351915986,24.94631503633235],[-110.73400842524694,24.948047648649947],[-110.73349557962536,24.95123493736736],[-110.73848406188398,24.953233707278514],[-110.74304000142428,24.957522716053347],[-110.74525345827266,24.96209049325796],[-110.7497579169272,24.965977733350655],[-110.74932887071805,24.96958774621936],[-110.75154231232733,24.972557012999914],[-110.74873106350401,24.975322315169024],[-110.75161333226436,24.979931938924267],[-110.7514992450017,24.982330865234474],[-110.74890513349504,24.98795362890479],[-110.75091156893052,24.989477132992477],[-110.75043515147058,24.99248717873047],[-110.75401508736786,24.995163084068338],[-110.75830752205815,24.99589390273775],[-110.7598212366363,24.998393119915647],[-110.75732245963655,25.001011672691675],[-110.76103757716095,25.003753887789514],[-110.76193506150724,25.006214573649913],[-110.7599340131485,25.011004089500148],[-110.76005420477571,25.012586362383388],[-110.75719917054982,25.01382267680077],[-110.76097382980305,25.01489319492879],[-110.7676440628216,25.019646398019802],[-110.77385196924769,25.022474972347652],[-110.77762098067171,25.0250046313364],[-110.78007292106338,25.029138405118374],[-110.78459470971723,25.033420141381328],[-110.78993216005546,25.035896830776778],[-110.79217014263338,25.03600676146533],[-110.79424153383934,25.033743356535524],[-110.79394941709688,25.03139633536381],[-110.79852052224055,25.029643895877655],[-110.80227075733916,25.031529180002053],[-110.80922487263973,25.031266574499],[-110.81220850917629,25.032094354368724],[-110.81550726560977,25.034385859773693],[-110.81868613775646,25.03790160781091],[-110.82159405334113,25.04234287537747],[-110.82671572579028,25.047224340681225],[-110.82703613082987,25.049738789187018],[-110.82519510914028,25.054325520341877],[-110.82481652677689,25.057928131110373],[-110.827531427336,25.059956610567667],[-110.8287410609484,25.063070423276486],[-110.830886356539,25.064600922053444],[-110.84591543942133,25.069049047187434],[-110.84850139876357,25.070766283247792],[-110.84757146991916,25.07288839927901],[-110.8555848938442,25.075718519485235],[-110.85942772357009,25.077710219954156],[-110.86268946547904,25.08028851516349],[-110.86399719226961,25.08733530801993],[-110.86536161901063,25.089694492407318],[-110.86410412917337,25.091582308694285],[-110.86698480926697,25.094229695404863],[-110.86956538637912,25.09835652198558],[-110.87011196798443,25.102121196767598],[-110.86915053398013,25.10548638070071],[-110.87327854138641,25.109176933462777],[-110.87597208708331,25.11547725493],[-110.87561381911752,25.119735574628066],[-110.8808701396805,25.123545759141223],[-110.87986879857641,25.1263300948778],[-110.88773925945321,25.12835035448984],[-110.89338284129337,25.130803035933354],[-110.89447235966014,25.132996437838813],[-110.89823235751783,25.135460783587803],[-110.89912097729672,25.137341884974433],[-110.90234146711447,25.139519172137284],[-110.90762905221209,25.1457843045647],[-110.90902888455412,25.15227190767206],[-110.91160447611924,25.16082180308524],[-110.91033710650214,25.16477657928914],[-110.9122830598809,25.169241444529348],[-110.91245002628642,25.174813769406967],[-110.91104988279966,25.178158239934135],[-110.90721747150548,25.180938124704028],[-110.90650356441756,25.182759013735904],[-110.90917152754213,25.18671980984317],[-110.91552298630728,25.19022476602288],[-110.91597029417801,25.194455299664696],[-110.91740443772665,25.195823169448886],[-110.91820983628622,25.199524839476112],[-110.92101645730565,25.20367449363681],[-110.92064563500503,25.205557987542534],[-110.92403977354644,25.209277082900655],[-110.93080583809615,25.212505505126728],[-110.93403469858083,25.21585760417787],[-110.93410782547124,25.21884899341552],[-110.93681650587638,25.222164553169023],[-110.93832748648146,25.23206787126577],[-110.9401630620356,25.234238237899035],[-110.94121900622036,25.237990699975228],[-110.94041916983036,25.241151204357152],[-110.93873344229308,25.24178886004148],[-110.93873220191836,25.24426269237],[-110.94273184651752,25.248588131726763],[-110.94465680472263,25.25204618296283],[-110.94617701802389,25.25755294226599],[-110.94526772059959,25.261832764631492],[-110.94603028684361,25.265104257972382],[-110.94551016154793,25.269085292095383],[-110.94337602260003,25.272814435873897],[-110.93980000000005,25.273899999929256],[-110.93861256123557,25.272013973398373],[-110.93645485078395,25.272930554975744],[-110.93400493299998,25.27764868693305],[-110.93489712152711,25.280078864257348],[-110.93807114279537,25.282480357491124],[-110.93906342290887,25.28612279906025],[-110.93828490486925,25.288064713995823],[-110.93517989606966,25.289481396226904],[-110.93408689852822,25.291177982451984],[-110.93748478417217,25.291982160605926],[-110.94202719559553,25.295120894284764],[-110.94722070211134,25.296774746166534],[-110.9469138824627,25.300315589691763],[-110.94770119905178,25.303312377359873],[-110.94652216203724,25.30515455003456],[-110.94388702104766,25.305412828058934],[-110.94668464018855,25.31325223517439],[-110.95033496094385,25.315179964730305],[-110.95027458742192,25.316647022420057],[-110.9545763959307,25.319226814771525],[-110.9575096515133,25.32263700163577],[-110.95750991968697,25.324539681462113],[-110.95518596316958,25.328532264030457],[-110.95871274216825,25.328116714650662],[-110.96459120605658,25.329701939046686],[-110.96706594667461,25.331972461925375],[-110.97559078280108,25.33751491894742],[-110.97962812433877,25.34142031128374],[-110.98031642106042,25.345251498900666],[-110.97959303794863,25.347823109600483],[-110.98170182008045,25.35305747935962],[-110.98167861022864,25.358294217322907],[-110.98492893663615,25.362048357981507],[-110.98523417702609,25.366152511372718],[-110.98841710728482,25.36840626624877],[-110.98733233406494,25.370847638974965],[-110.99164888616764,25.371875327082364],[-110.99438671757315,25.374379806763443],[-110.9938031898223,25.378661686787154],[-110.99522688047904,25.380829822531496],[-110.99851540911635,25.382395581194487],[-110.99914301001905,25.38448267871314],[-110.99797445970569,25.386684591951564],[-111.00077532405618,25.387985589992923],[-110.99995097666965,25.39483523385354],[-111.0004543878274,25.39831437051538],[-111.00426549215382,25.40701280228791],[-111.00333938218705,25.41150272605529],[-111.00418888789966,25.4155342689196],[-111.0098551552382,25.419726384041496],[-111.01277062305718,25.420748037423834],[-111.01516147025973,25.426130666973222],[-111.01561454776589,25.42969911351571],[-111.01733968941818,25.432808003038076],[-111.0176091859986,25.43537346637993],[-111.02017989359643,25.439991972893495],[-111.02477571728559,25.44373055722417],[-111.02528596035677,25.449801682852865],[-111.02678639811666,25.45106165331913],[-111.02600569681039,25.458328783849936],[-111.01920779117165,25.462089665276494],[-111.02022627579123,25.466481363694015],[-111.01970317219485,25.469833445383244],[-111.02088964660265,25.470973602556],[-111.02002721415738,25.475365033939113],[-111.016465040644,25.476098054493434],[-111.01339970955092,25.478614879088013],[-111.0153650368116,25.483108441955437],[-111.02031562980335,25.489758808453985],[-111.01986380829254,25.493894826874566],[-111.02263071600652,25.49711472443113],[-111.02215343350053,25.501081710840538],[-111.0183776351812,25.505473761143037],[-111.01488834526413,25.505089783039125],[-111.0165088970225,25.508517561251665],[-111.01621923430582,25.51388323866871],[-111.01875186845359,25.51591646784044],[-111.02158856056332,25.514408895734505],[-111.02502215776883,25.515955051226342],[-111.02625633477544,25.51482636671335],[-111.03143225875527,25.516866061898043],[-111.0340198670201,25.5163757162955],[-111.03583694043482,25.517827227650344],[-111.03577690574457,25.520401639624993],[-111.03834853999706,25.52171006539129],[-111.03923069997819,25.519696332306296],[-111.03844588593671,25.516539739180416],[-111.04304786202204,25.515495423994082],[-111.04708077391416,25.517319178847856],[-111.04975214348553,25.51606460856982],[-111.05255530827793,25.51906218247109],[-111.0531816839046,25.521170695612966],[-111.05584873936266,25.519696471613543],[-111.06002647932837,25.51914514096842],[-111.06105278061801,25.516448270117337],[-111.05984344147771,25.51479848149711],[-111.06205095710197,25.512683952467],[-111.06474095786422,25.51484393935607],[-111.06620510517473,25.513685155605003],[-111.0700459467609,25.51467893005656],[-111.07295324870063,25.516587851650684],[-111.07480975835205,25.523630212206342],[-111.07192053674913,25.52364381693951],[-111.07222877113674,25.525482713152087],[-111.06968899666077,25.52671743270338],[-111.06856557279912,25.529170874344004],[-111.06971201129471,25.53133556655382],[-111.07131180619604,25.530427127923872],[-111.07381824383367,25.525195545464044],[-111.07572396115887,25.526248590241835],[-111.07907596406051,25.52522086773456],[-111.08287887032975,25.52572622746692],[-111.08471147746712,25.524636469764687],[-111.09428161087311,25.525295971911078],[-111.09830324728028,25.525984206526005],[-111.09979758375886,25.528761398838014],[-111.1013929545831,25.527532098602762],[-111.1027521008113,25.524276704164265],[-111.10999098521216,25.52410620423649],[-111.11568462021626,25.525065749341195],[-111.12150616304433,25.52817375509227],[-111.12653318576793,25.53703449269085],[-111.12982919437275,25.539527608174524],[-111.13378925176914,25.540692260445155],[-111.13814270778528,25.544723705815898],[-111.13809094294976,25.54714462294544],[-111.14147006036524,25.549109445177635],[-111.14214400753082,25.55237363678833],[-111.14434394596964,25.554296379635616],[-111.14614193888497,25.560420955127313],[-111.14443156825587,25.56289533299116],[-111.14525433204489,25.565579237300312],[-111.14751407665051,25.566204191242207],[-111.1501621497087,25.56873425321959],[-111.15279432447397,25.567601397191027],[-111.15963896678159,25.57004687128307],[-111.16482706492769,25.573152652177555],[-111.16672047204321,25.578146750104736],[-111.16892115552105,25.57998469118695],[-111.1705683652819,25.58409479997198],[-111.16940016086596,25.585723894827993],[-111.17290813697628,25.58758206812496],[-111.17439064946791,25.592977498717403],[-111.17210100402986,25.595264302889916],[-111.17650023240697,25.596896900154945],[-111.18110891410709,25.59746761498627],[-111.1830020426782,25.600984238516048],[-111.18297676226888,25.602856728082486],[-111.18636418397631,25.604412665650045],[-111.19008571336434,25.60792808699256],[-111.18979812926386,25.609143081449588],[-111.19333815120683,25.61362850484619],[-111.19384345128765,25.616111080063774],[-111.19260318806334,25.618315050648846],[-111.19273608361408,25.62091804816788],[-111.19464727829518,25.62115912141917],[-111.19408386210432,25.62454808848264],[-111.19589071618276,25.629711818874],[-111.19780268504974,25.630969220531597],[-111.20104631463334,25.637807021996593],[-111.20122224340338,25.643125297205756],[-111.1998737619806,25.643952923335007],[-111.20082069592189,25.646468345727328],[-111.19984640164125,25.650094970878456],[-111.19980008912074,25.654771682411706],[-111.20426585771355,25.6587387111515],[-111.2065176060782,25.666104225295896],[-111.20621825896006,25.668941430950326],[-111.2041773232475,25.671189552589],[-111.20533879708745,25.673623077237664],[-111.2075828993174,25.67259653732981],[-111.20917969705465,25.673603028216917],[-111.21114963795509,25.67723891027333],[-111.21064835397743,25.682558988864457],[-111.21575483223455,25.69019106407859],[-111.21630826318824,25.694633611433687],[-111.2136257977121,25.70004950592994],[-111.21174970191515,25.70234159855511],[-111.21405360094303,25.705862551193036],[-111.21681507689169,25.706206440222957],[-111.21606571897115,25.708600912918143],[-111.21872892144773,25.71385176651927],[-111.22020694306411,25.715121913662472],[-111.21926901009738,25.718185424615342],[-111.22386240587292,25.723459437057898],[-111.22393925012426,25.725142719610517],[-111.2300082968157,25.72592034095385],[-111.23428404295339,25.725222852969182],[-111.232019810586,25.7225563697005],[-111.23452423709955,25.72017829236296],[-111.23957534873011,25.719957480946334],[-111.2429169300541,25.721229660181166],[-111.24560575128243,25.723517718837513],[-111.24627310736793,25.72599368906475],[-111.244312373159,25.726958842195472],[-111.24593548977458,25.730521267654296],[-111.24908142048378,25.732796151189007],[-111.25147893637876,25.737695275488306],[-111.26384622878987,25.745557569470748],[-111.26902087720532,25.746167323888358],[-111.27798941173512,25.749732267480226],[-111.28118687172434,25.754751467040933],[-111.28465466478968,25.756475357467934],[-111.28608748833324,25.75987548480373],[-111.28934863875469,25.76214626283638],[-111.28979512287049,25.763810147506433],[-111.29257860792313,25.765653500051485],[-111.29727373731617,25.76738905391619],[-111.3037512550062,25.770643686086032],[-111.30664052682027,25.77454276185955],[-111.30716186485029,25.779657056366204],[-111.30892139702428,25.782076303992426],[-111.31054536104716,25.78747076078588],[-111.31147410231631,25.795231480366283],[-111.3110115929527,25.801569281608124],[-111.3089845270406,25.805277003808158],[-111.3073908541021,25.811426927332036],[-111.3079841560214,25.812942066968503],[-111.30200239052283,25.81352489895886],[-111.29954860578425,25.81310383516984],[-111.29951401271745,25.81140375308746],[-111.30195408219083,25.80820588134742],[-111.29782419540493,25.807701405211503],[-111.2943163205286,25.811670261525876],[-111.29205659109579,25.813005271367388],[-111.29581892286882,25.814470498231344],[-111.2998908810514,25.817927628805137],[-111.29993408329369,25.819611316850853],[-111.30286037505522,25.82483521649789],[-111.30609945278883,25.827130423811695],[-111.30686667769083,25.829725042896825],[-111.30960813264926,25.830839373019217],[-111.31590857307799,25.83689815273891],[-111.31805387360049,25.833883822486655],[-111.31763908316265,25.831820378166753],[-111.32036928654799,25.83236652838616],[-111.32584565346536,25.830931704978866],[-111.32900026532252,25.831904452700883],[-111.33177762915324,25.834102408396745],[-111.333392633051,25.837887712476743],[-111.33132807575049,25.839549196904954],[-111.33241163736352,25.84284127343301],[-111.33122662626931,25.84469423694344],[-111.33176583036533,25.852378455591463],[-111.33415082290037,25.856487064915882],[-111.33404300918056,25.863365234614037],[-111.33510576206555,25.865692280518488],[-111.34005858570384,25.87147484107811],[-111.34221399261565,25.87779250027529],[-111.34167083308523,25.880512317176226],[-111.33975542916744,25.881416618015976],[-111.33641578762479,25.88560735843538],[-111.33666129398318,25.890779983881032],[-111.33560276407638,25.8919505730247],[-111.33868575481534,25.897424903434626],[-111.33692048784303,25.900937229214378],[-111.33791401892626,25.90316890491175],[-111.33672183208432,25.904748843341793],[-111.33694733741669,25.90824856411382],[-111.34066525261488,25.912075358035736],[-111.34075631698107,25.913810660692718],[-111.3434556238717,25.918650938919086],[-111.34378880390238,25.922071115931658],[-111.34528318861106,25.923170123447733],[-111.34715827579248,25.921520726240658],[-111.35174695953492,25.92435968586625],[-111.35466537816808,25.927398067253648],[-111.35626307100455,25.932695993982804],[-111.35557153918137,25.93622068665934],[-111.35309923150936,25.938189874269312],[-111.35373980234601,25.945832369982213],[-111.35467216110288,25.949676075783316],[-111.35805590134237,25.95547557736984],[-111.35856412452154,25.962036060769037],[-111.35641536058881,25.968118776041308],[-111.3531361389932,25.97251014717915],[-111.34954339514837,25.976148397595637],[-111.34318171107816,25.980961273268576],[-111.33925807101946,25.985586870540544],[-111.3381,25.98931831673366],[-111.33807756488056,25.999295331115775],[-111.33739433677499,26.001954823715266],[-111.33530276457691,26.003989794035135],[-111.33894375484869,26.00717267820238],[-111.33955828069168,26.014291148213374],[-111.34222835227018,26.017882534538955],[-111.3452036763008,26.023790800145264],[-111.34527023919918,26.029922073556065],[-111.34173527083061,26.036346880879364],[-111.33970613550343,26.038419227474492],[-111.3302605506135,26.045790126929717],[-111.3284217173915,26.048956609108757],[-111.32900938791863,26.055455761763767],[-111.32835055144443,26.059439863439366],[-111.32529534951715,26.06272125140333],[-111.32217098218086,26.06367342916542],[-111.31911135904357,26.06899384894234],[-111.3183931681557,26.07277496762714],[-111.31868702377812,26.076539482845305],[-111.32327104367846,26.081680534742702],[-111.32481577624372,26.084453361027386],[-111.32553191421681,26.09005705733705],[-111.324337366365,26.091617493644492],[-111.32537303701582,26.094940972753136],[-111.32387160018158,26.10012985944627],[-111.32929238114514,26.102095521011847],[-111.33046947385776,26.10363907583786],[-111.33479474935865,26.104284210656488],[-111.33728575369202,26.107035689402835],[-111.34399653242332,26.11146101980046],[-111.34512209809014,26.1157914116356],[-111.34798251680218,26.11935561385343],[-111.34917610597836,26.12468828103499],[-111.35080717915025,26.127039897524128],[-111.35437135569191,26.129569733011863],[-111.3540988440526,26.13141378887491],[-111.35513521183782,26.137066161054975],[-111.35761923566389,26.141945887466022],[-111.35880404937404,26.148075439345064],[-111.35825927689132,26.153805135959658],[-111.35994787712843,26.155492313419813],[-111.36136431878566,26.16096695988216],[-111.36030829894003,26.16250758401037],[-111.36097057620407,26.1677693820713],[-111.36427843616968,26.173445268093587],[-111.36451807846197,26.175250015340907],[-111.36875794067333,26.17626217888892],[-111.37281553652372,26.179705459426202],[-111.37803563189959,26.18859568883221],[-111.37881572018597,26.195728364281024],[-111.37709812912266,26.202677172054507],[-111.37714734279223,26.20936671559474],[-111.37878274480676,26.214237422488054],[-111.37889105233762,26.217886711000688],[-111.3826525918588,26.220405332255496],[-111.38429528067513,26.226370867954017],[-111.38372558663343,26.227444994005566],[-111.38561910496855,26.230499331518274],[-111.38545876769439,26.23244113389353],[-111.3870816297985,26.235064655683004],[-111.38684590514117,26.23841476219718],[-111.38843356525558,26.243464259136488],[-111.390517566695,26.244986792671682],[-111.39179078624903,26.2480393974962],[-111.3954958611024,26.250992915389418],[-111.3978055894467,26.256247290017768],[-111.39734274257893,26.262060723553418],[-111.39479487346955,26.26363973812869],[-111.39415251071819,26.266063813848746],[-111.39604646721108,26.27060323106599],[-111.39424302498531,26.274823638065868],[-111.3951794417743,26.27626095774457],[-111.39215539331315,26.28040653389894],[-111.38894974829003,26.28127473595532],[-111.38726056340073,26.280008088544378],[-111.3837504159776,26.28004417910779],[-111.38300406496478,26.28538534522056],[-111.38383364115816,26.287024045513704],[-111.38248744316695,26.29980332886879],[-111.3854344479102,26.303432046594025],[-111.38490897529215,26.305583978368873],[-111.38665445064566,26.307959511372246],[-111.38884933195561,26.315233967332517],[-111.3865978711305,26.3220596187291],[-111.39149062202108,26.32848620048901],[-111.39362857240849,26.334084548969656],[-111.39519273600331,26.33573158412713],[-111.39621530931873,26.34068051205668],[-111.40363968652565,26.342117132675583],[-111.40484423088253,26.343197887131794],[-111.40557227234598,26.34684199726172],[-111.41197339195662,26.34849464806831],[-111.41249275109783,26.34660939532705],[-111.41835655894903,26.347494296226273],[-111.42367894031531,26.349845901003505],[-111.42686939785386,26.3531846660091],[-111.42818080179279,26.35879206503563],[-111.43329248303996,26.36156080948996],[-111.4346515886175,26.363960184163147],[-111.4351817309585,26.3689393239772],[-111.43016194715568,26.37166114107208],[-111.4278486503722,26.37048925914621],[-111.42464971912779,26.371331486377983],[-111.42415450785455,26.369958247356465],[-111.42168794842667,26.373587812108838],[-111.42398717047104,26.37564997085269],[-111.42740272433099,26.37684268454001],[-111.42754028342893,26.378940935824346],[-111.42446755366365,26.378828074680087],[-111.42456077326085,26.38062134554201],[-111.42710210576234,26.38118073489767],[-111.42817205987689,26.38364767135846],[-111.43007203543226,26.383024751015057],[-111.42897670312749,26.381442097516867],[-111.43177622440408,26.37954446783914],[-111.43378727433384,26.381975175886225],[-111.43391131170017,26.38384977792748],[-111.43721714974589,26.38377275664726],[-111.437416638108,26.38652531032028],[-111.44038337801527,26.390180420989168],[-111.4425368439322,26.39109388604618],[-111.44811343115623,26.39128208226282],[-111.45428442729911,26.395382582693742],[-111.46182458739167,26.40142790023367],[-111.46347062868034,26.404698598206892],[-111.46762466892005,26.409816656230703],[-111.46902571402313,26.413434774946097],[-111.46951876358742,26.42143696158348],[-111.46852217081357,26.426110893871282],[-111.46713890138881,26.427810488863315],[-111.46854655736661,26.432184929511948],[-111.46859519509684,26.43619786658985],[-111.46771330867125,26.44016291612496],[-111.46957447325218,26.446160675405338],[-111.46981343265611,26.4546848581964],[-111.47234560231806,26.45635665641487],[-111.47050573593367,26.464328096738484],[-111.46710555439768,26.468458727704103],[-111.4682856658743,26.470629199486154],[-111.4674573530416,26.473835158376687],[-111.46480389772182,26.475000532021227],[-111.46663726637661,26.477190166540993],[-111.46488194112783,26.479430548422386],[-111.46282581718157,26.478242115158082],[-111.46016571458881,26.479559526646426],[-111.45816374316206,26.48482461249887],[-111.4549480912948,26.488090792517596],[-111.45622374378758,26.493510685254705],[-111.45522774425154,26.500185363386493],[-111.45661987103136,26.506013552943045],[-111.45195341656915,26.512982513940642],[-111.45249593123611,26.515098678050208],[-111.4503700184726,26.516676703442158],[-111.44731291695348,26.5155756287906],[-111.44369735113179,26.5154409422629],[-111.44255290728296,26.518301325424716],[-111.44674993345399,26.52074036097548],[-111.45286671681322,26.521379260305707],[-111.45570924717788,26.52234681268294],[-111.45823592021742,26.526298147103716],[-111.46194997249512,26.528296145893762],[-111.46337941369723,26.532749816866215],[-111.46048533236115,26.537369198985516],[-111.46309566949355,26.537868624421094],[-111.46722801540994,26.5352982130222],[-111.47204261408649,26.535676888015757],[-111.47370094397712,26.531147310064455],[-111.48236531298596,26.529999559034422],[-111.49886654813503,26.52979204605481],[-111.50684114323724,26.53188629115641],[-111.50885783272776,26.534580047688564],[-111.51533514346033,26.536843378512515],[-111.51910563873332,26.536485924536578],[-111.52347954701128,26.53716468829839],[-111.52827914111441,26.540222398751553],[-111.53209358087196,26.54162693703904],[-111.53714600712135,26.54247446863502],[-111.54328169924861,26.546449301039956],[-111.54720458864637,26.54746830967457],[-111.55675692939997,26.551325557883217],[-111.55890156322039,26.55438664487565],[-111.56553777812286,26.55880057374162],[-111.56729436857268,26.562751947142544],[-111.56720921519963,26.56775815646023],[-111.56972787190625,26.571711841120248],[-111.56877782284158,26.578779785280688],[-111.568998631603,26.58425899938618],[-111.57022319551106,26.585422763800125],[-111.56744384000365,26.589194081945323],[-111.56862777715384,26.596266470212527],[-111.5673686952984,26.606372952131267],[-111.56501193762779,26.613610038477646],[-111.56402151828792,26.618182187515686],[-111.56708473900983,26.618428405869338],[-111.56318213142214,26.620849510336825],[-111.56503806156564,26.626659412095933],[-111.56751538714911,26.63123361524839],[-111.56610713873181,26.635277164424053],[-111.56713840576123,26.636072496157],[-111.56691938423069,26.644861659514106],[-111.56810301564809,26.64927075037292],[-111.56698366558345,26.65169746389762],[-111.56810251215353,26.655269447460398],[-111.56621590564305,26.659907731292094],[-111.56789238453138,26.66254465993393],[-111.56642461578235,26.67111487063113],[-111.56643890385266,26.674005868437973],[-111.56466047606483,26.675224070945376],[-111.56432768699875,26.678350859171758],[-111.5625202261835,26.68253833852509],[-111.56431176880773,26.686332191308622],[-111.56140469412247,26.68973917088499],[-111.561022903391,26.692015695556165],[-111.5620221603844,26.697265272887364],[-111.5654845993248,26.69722404869725],[-111.57047224140393,26.699896282051327],[-111.57336190281143,26.705026095587755],[-111.57091280683466,26.7065238811129],[-111.57240655763627,26.70796556844897],[-111.57571901825793,26.707726786661055],[-111.57822288475978,26.706266833473876],[-111.57994894055338,26.706747208755473],[-111.58252264825302,26.709747180058685],[-111.58204618584244,26.711730094936854],[-111.58528143588978,26.7118158893893],[-111.58678969076038,26.710621945067714],[-111.59005845739995,26.71289327428167],[-111.59273084845091,26.711504351334554],[-111.59512543707837,26.71271255862007],[-111.59714910917262,26.716728054105147],[-111.60300188937975,26.71835723812967],[-111.60763985774827,26.718821825306577],[-111.6099307381649,26.72100047708784],[-111.61086378259154,26.727544655682607],[-111.61440408631358,26.728562063215918],[-111.61649229767062,26.727855433588388],[-111.6249262875196,26.731357355680643],[-111.6271383576821,26.733043049388982],[-111.62777778519535,26.73529132839144],[-111.62577144973045,26.7389563560925],[-111.62653819156787,26.740273839450253],[-111.63106020843503,26.739073305684542],[-111.6369460184394,26.742830446271455],[-111.6411092116067,26.743152137078255],[-111.64605006778402,26.744392454425565],[-111.64876813504515,26.746664986510893],[-111.64915412261524,26.753510057505935],[-111.6558101848351,26.75602043720079],[-111.65767842926078,26.758323401956034],[-111.6575609641967,26.761284782466305],[-111.65956779957412,26.76515317648773],[-111.66394747193829,26.767975373392744],[-111.66577174559461,26.771833490011943],[-111.66717070852826,26.77285127075487],[-111.6663263081607,26.779930205559424],[-111.66741899788542,26.780550134146267],[-111.67430785628562,26.77911567416311],[-111.6774480216792,26.779037933461268],[-111.68378379930715,26.781368155840028],[-111.68770566656656,26.78553179460289],[-111.69170919185154,26.78696559786937],[-111.69399712614421,26.78884437209001],[-111.6969781315421,26.78967092853378],[-111.6980244380972,26.792199844628954],[-111.70035728764105,26.792990853311494],[-111.70331593685228,26.795530263281137],[-111.70402409987997,26.79732382603686],[-111.71154618926289,26.802207535531807],[-111.71482248133611,26.80293397131618],[-111.7210196515482,26.80661570575336],[-111.72306649918312,26.809300370606252],[-111.72420505225966,26.815391380764197],[-111.730787830373,26.82284187809512],[-111.73060629739746,26.824806922856],[-111.7340247603222,26.827797360700515],[-111.7354380406075,26.831082312578133],[-111.73825769213096,26.832690422251687],[-111.74119624555414,26.836458576063023],[-111.74093752228441,26.83817583253233],[-111.74542559754366,26.841957441164766],[-111.74867704669668,26.846426134800026],[-111.75610977178701,26.84991140954793],[-111.75999302505653,26.852752202958584],[-111.76109514227619,26.855810577820364],[-111.76373702413167,26.85664254559805],[-111.76649271656413,26.861133496195407],[-111.77015650636582,26.86142610689342],[-111.77293217503689,26.86288556512517],[-111.77400958782067,26.865299940791317],[-111.7774644349958,26.868104049861074],[-111.77917757554548,26.86721509605752],[-111.7825915622119,26.86912671789986],[-111.7831095797016,26.871198170053162],[-111.79049779185641,26.874126050680843],[-111.7959713055397,26.8791102189046],[-111.79571197447859,26.88428964993568],[-111.79899115920813,26.88460539037021],[-111.80156616996663,26.886139331478546],[-111.80153750194773,26.88890148009682],[-111.80501139957329,26.886221967466213],[-111.80828164136352,26.88722997258151],[-111.80914287765773,26.889817368609044],[-111.81360009513702,26.892817217923266],[-111.81714036997857,26.896800301742815],[-111.81857414837538,26.89541682369213],[-111.82207221554393,26.896201268848586],[-111.82349284879916,26.893225720594614],[-111.82739379303075,26.888762395572655],[-111.83225021434271,26.88593217427018],[-111.83276442706756,26.88378251979907],[-111.83989013956904,26.882169429901296],[-111.84606113978208,26.882012529056794],[-111.85126780079696,26.879393652816873],[-111.85130331939132,26.876112826888402],[-111.8530559762072,26.874379882701135],[-111.90234491138006,26.853185098658457],[-111.90918672709421,26.85566902610765],[-111.91209043953944,26.858071938576074],[-111.91295832751098,26.86225866114097],[-111.9118941206184,26.865361660160147],[-111.91258697618929,26.873852300732437],[-111.91453869468046,26.874506479088552],[-111.91582668442032,26.877454410696032],[-111.91922795816464,26.876679414437035],[-111.92539548492016,26.878105230042536],[-111.93432126787508,26.881621503580277],[-111.9388923330061,26.88407442603426],[-111.94010019836998,26.886325020613185],[-111.94464912001763,26.888052596978923],[-111.94896955691092,26.890447622821966],[-111.95164294102227,26.89421053715091],[-111.95241257819242,26.89728679081304],[-111.95497233900409,26.899667248060894],[-111.96759923780985,26.89828258862218],[-111.97272569499216,26.897086085064984],[-111.97516871519042,26.895528830429157],[-111.97913940064109,26.890409467439838],[-111.97746567672152,26.893674166231506],[-111.97384071064494,26.89712520392675],[-111.96442628774804,26.900668863966132],[-111.95883109069501,26.902253686001472],[-111.95653825336859,26.903908121713812],[-111.9561681469678,26.90219056213232],[-111.95397403344032,26.902130152140103],[-111.95678355968101,26.905259767932762],[-111.95578691784795,26.907784364075383],[-111.95741191242081,26.912098384416026],[-111.95616994910756,26.914671530275598],[-111.95827904090896,26.9131211226063],[-111.9641489401032,26.915282980346262],[-111.96543309053186,26.917757937856322],[-111.96791769185165,26.919780003747235],[-111.97097050017425,26.92542885685782],[-111.97008168660358,26.926716497074665],[-111.97416530999902,26.929915746889606],[-111.97584203396474,26.93345713689274],[-111.9763064274174,26.936879060396222],[-111.98020573317291,26.938856891321905],[-111.98281437599309,26.93913566434435],[-111.98981561366651,26.943043888823354],[-111.99383131414987,26.94828934798727],[-112.00107912974795,26.951536801424254],[-112.0041444772151,26.955753748592088],[-112.00806286141369,26.95785457440263],[-112.0100920069383,26.96122138426057],[-112.0133682107558,26.972511728234792],[-112.01456536533624,26.973505503367733],[-112.01559564902675,26.980134801814813],[-112.0159190147636,26.987925521507293],[-112.01525313952123,26.999835677478586],[-112.0133014839646,27.01070069021557],[-112.01078712114423,27.020528212954787],[-112.00582757669747,27.03364763195117],[-112.0024644043653,27.036106637113107],[-111.99999859772089,27.04115322312657],[-111.99536611361407,27.047325083188525],[-111.99440898785684,27.047396313668685],[-111.99109374710918,27.053236334347844],[-111.98702402214786,27.05766783497546],[-111.98514074229536,27.057633334715376],[-111.98410005638686,27.05956223653834],[-111.97643950450339,27.066291332871856],[-111.9698570865977,27.070098995850685],[-111.96619004142991,27.06945798771011],[-111.96485885279071,27.06812598581587],[-111.96160091291415,27.06813779770937],[-111.9589000000002,27.066599999959976],[-111.95863732849955,27.06482886933668],[-111.95466367182269,27.065864333656805],[-111.94779723418299,27.070787986781852],[-111.9459671782372,27.06995588499649],[-111.94820431603353,27.07377586725272],[-111.94677129722618,27.07880178386523],[-111.95090359660509,27.08066158668504],[-111.95354479782577,27.08435144138167],[-111.95370000000025,27.08969999996026],[-111.95223933153204,27.09476170538204],[-111.95338855215078,27.09639350019239],[-111.95770000000022,27.09619999996039],[-111.95970000000023,27.09489999996049],[-111.961582591433,27.095658623490863],[-111.96513068877061,27.094685916430933],[-111.96823244472574,27.096574223732034],[-111.97145783215666,27.096311683565887],[-111.97252349264238,27.097688897921387],[-111.97565420498421,27.096606981261687],[-111.98484115363794,27.095840777185515],[-111.99150366373755,27.096149411231636],[-111.99556345449054,27.098987056377325],[-111.99776193533972,27.102945539869097],[-111.99999946904444,27.104619953552685],[-112.00384302868639,27.11045573199044],[-112.00771330074781,27.11331870911141],[-112.00921877557107,27.116471331804803],[-112.01526485126186,27.117405032888882],[-112.0188255643219,27.119801168865138],[-112.0314863096296,27.12049773774288],[-112.03875717513216,27.12243635671598],[-112.04527827247551,27.123598910509315],[-112.0552903592556,27.124266203205934],[-112.06478392267314,27.12668443188778],[-112.06857130672671,27.129536106365833],[-112.06891937278579,27.132305065609955],[-112.07083012996497,27.133309044603607],[-112.07787882417182,27.131760796463425],[-112.08820125413331,27.130793321336228],[-112.09656127178636,27.132854320483887],[-112.10062911820683,27.134721612029466],[-112.1024957724378,27.136880642178255],[-112.1042595431478,27.136036119034202],[-112.106981008724,27.137671850365393],[-112.10719149876007,27.13944299238284],[-112.11174439726346,27.13989765054515],[-112.1139192598601,27.142717639839304],[-112.11290702393836,27.144151232331467],[-112.11399890281325,27.146630997082184],[-112.11764996360648,27.147079845424514],[-112.1197309122058,27.149109380155892],[-112.11946795647367,27.151038793253463],[-112.12290533490108,27.15243856390464],[-112.1230063693036,27.153504803475073],[-112.12848850512074,27.154646665149983],[-112.13225546977293,27.158124313357064],[-112.13450386594468,27.157896900555784],[-112.13615530966212,27.15963286914507],[-112.14572906143098,27.161550608906566],[-112.14975047120919,27.161092516127724],[-112.15761080137901,27.16175752982076],[-112.15935304198695,27.16383811779997],[-112.16204799487582,27.163870893039018],[-112.16732253325137,27.166794153200613],[-112.16785677277028,27.168940628800726],[-112.16671204402616,27.171875244423404],[-112.17152221934708,27.175508994478378],[-112.17407561786945,27.17974259089084],[-112.1780873234863,27.18295106672292],[-112.18625449242569,27.188273946236222],[-112.19088691876749,27.19444421571808],[-112.19539879088677,27.198073976720934],[-112.20248162696561,27.201878196400685],[-112.2099410688208,27.20267553721908],[-112.21326970572488,27.20460273276609],[-112.21574777152154,27.210215718066422],[-112.21529474792004,27.214612725073493],[-112.21230050756208,27.22077129471228],[-112.21099115942258,27.221040824914326],[-112.2068542953661,27.230020844941635],[-112.20344970975083,27.23005252812078],[-112.2024498475464,27.236142311501453],[-112.20043476982494,27.240275315737335],[-112.19832069380232,27.24137464615552],[-112.1998923929446,27.242621544110193],[-112.19970223731957,27.245862381240386],[-112.20219580489879,27.246500538091823],[-112.19957110453015,27.252393878578232],[-112.20326988733927,27.254138742595785],[-112.20707698548455,27.257908601826387],[-112.20946421570807,27.26223492353887],[-112.21142859870548,27.26372768653755],[-112.21379663264457,27.267557806347497],[-112.21344716626481,27.269281412346743],[-112.2151150558065,27.27299470273374],[-112.21719557147185,27.28086490278082],[-112.22186717741909,27.28553551529393],[-112.22567945491625,27.28828181772417],[-112.23095779203965,27.29539549057],[-112.23201817745002,27.29946972748047],[-112.23091776449462,27.300660614201092],[-112.23330921429715,27.30570386602932],[-112.23334682437792,27.309708194316784],[-112.23492524287673,27.31267869721927],[-112.23469379309375,27.31482463203156],[-112.23753755288413,27.320450129595145],[-112.24171239507433,27.325809838668306],[-112.24834694452142,27.326029860981407],[-112.26031799316087,27.33182458350933],[-112.26283188472581,27.333762251910343],[-112.26338117079786,27.336628177193234],[-112.26619059392254,27.34067726640933],[-112.26299443341708,27.341533503199628],[-112.2684911874768,27.344585756846243],[-112.27015222602927,27.35017889575363],[-112.27056777087597,27.35467451084503],[-112.26993153563114,27.3569615259114],[-112.27375344131173,27.359989257643576],[-112.28108544393649,27.36161612143644],[-112.28684226250311,27.364258088356678],[-112.29132641026592,27.368294164632744],[-112.29063811781612,27.370594401453673],[-112.29494200547236,27.378558690993714],[-112.29855007447804,27.38031933926942],[-112.30170287237598,27.383296895691274],[-112.30367611998156,27.38706934328718],[-112.30425764087852,27.389992705748966],[-112.30389500935212,27.39557210066357],[-112.2980315805371,27.401287817383945],[-112.29809727765604,27.40316206210497],[-112.30127522813154,27.407145216793197],[-112.30292819749513,27.411830109667562],[-112.30472440564279,27.41485220875228],[-112.30573164759716,27.418824832215535],[-112.30946852237179,27.42121712746348],[-112.3100885057413,27.422672051678887],[-112.31412586215447,27.42365706258073],[-112.316427756103,27.425666413415456],[-112.3181331540971,27.42908750751252],[-112.31869968055275,27.43251935648891],[-112.31807906718848,27.435121435832684],[-112.31471940932732,27.43677537106396],[-112.31764526710037,27.43769571964458],[-112.31876433036382,27.440635151918002],[-112.32087946553929,27.441704598147],[-112.32213084086317,27.447990593244754],[-112.32174326366732,27.454235755696516],[-112.3191339778304,27.456218643481122],[-112.31829265506957,27.460658501176113],[-112.32113428321253,27.463756288880347],[-112.32187998242932,27.467065306530458],[-112.3243062148245,27.470766962954713],[-112.32300062601729,27.473103503673258],[-112.32498816723069,27.476376582598164],[-112.32526321157115,27.48268297283255],[-112.32349668916953,27.49098233648448],[-112.32455685135841,27.49875379668771],[-112.32785569692743,27.5016520309822],[-112.3279195792353,27.50498251826849],[-112.32903132845456,27.506545349423845],[-112.33145730801056,27.51530222291916],[-112.3300387902213,27.51765931617308],[-112.33315006297289,27.51751234443111],[-112.33696934852054,27.518530460556917],[-112.33946800944108,27.521474647659375],[-112.34225847794778,27.523391106187944],[-112.34576656886242,27.527420422948012],[-112.35267969584038,27.5318130063078],[-112.35563783974152,27.535718363898923],[-112.35509824358212,27.541389406840835],[-112.35647816859495,27.547700170984058],[-112.35935011200178,27.552347814761276],[-112.36386523481406,27.556337812362585],[-112.368438788748,27.55730834078679],[-112.37175742868635,27.563173364064482],[-112.37552402375479,27.563756147710194],[-112.3810463919371,27.566904084877137],[-112.38790956286402,27.568515146623554],[-112.39161236926367,27.570447483393423],[-112.39510377893288,27.575473446434728],[-112.40268822060455,27.581997763457366],[-112.40850579388808,27.582144851672922],[-112.41246798043187,27.58349285393723],[-112.41620609556412,27.586865953057952],[-112.41831578754898,27.59028755960577],[-112.42272514672169,27.59190292861672],[-112.42873221647807,27.590854697182976],[-112.43617268722807,27.59024164080097],[-112.44194080033878,27.59182223228038],[-112.44442300772312,27.593749278140137],[-112.44647743721856,27.597324412574494],[-112.45033923684821,27.598758004030003],[-112.45884918887617,27.597219942732295],[-112.46298521325349,27.597640907047833],[-112.46301913036802,27.59878539649003],[-112.46743545812723,27.599643612037767],[-112.46973369715761,27.603584344643934],[-112.47441223567466,27.606883820239943],[-112.47453660062399,27.613059317615125],[-112.47964824013633,27.614645264018634],[-112.4804763618722,27.61748756252115],[-112.48785462269461,27.62124508278555],[-112.49140877016816,27.621119859017654],[-112.49608434449596,27.622866097744065],[-112.50140972616566,27.62398023483314],[-112.50443277772058,27.627561424360806],[-112.51257536727746,27.629733980138383],[-112.51736231959222,27.629490516298404],[-112.52080560465197,27.630936922787726],[-112.53045164354228,27.637955163598804],[-112.54063451330279,27.63795953301758],[-112.54257144916022,27.638367604791824],[-112.5454667614934,27.641381711624035],[-112.55261461545513,27.640911271212588],[-112.55917391418598,27.643462281203938],[-112.56015604011247,27.6446229011122],[-112.568527804442,27.643786349282607],[-112.57268079615955,27.642606677251308],[-112.58121571757886,27.64659533857764],[-112.58308783228796,27.645964137275087],[-112.59538001005916,27.65050319288042],[-112.5984064449861,27.653358405257507],[-112.60007811210721,27.656619750001482],[-112.60015489533924,27.661891312445277],[-112.59804562302827,27.664766686114035],[-112.60092512926781,27.66713740578507],[-112.60202268223753,27.669268171255283],[-112.60480317751137,27.66948203271204],[-112.6100560684165,27.671459871638604],[-112.61122821179617,27.672891604666006],[-112.61585270018583,27.67381905150785],[-112.6214649747493,27.6768695732394],[-112.62396008655196,27.679413014396687],[-112.62515918744805,27.683000835189148],[-112.62347510019333,27.68784623717312],[-112.62892159658344,27.689590490555588],[-112.6311492617308,27.692964961289704],[-112.63364981424758,27.695044808364514],[-112.63694070861163,27.701031886798603],[-112.6366262259483,27.705242178199796],[-112.64225609913535,27.707527210721764],[-112.6428048856045,27.70981666165693],[-112.64682222837786,27.710318677861153],[-112.64832027599408,27.708757828423188],[-112.65415111926023,27.708238805557812],[-112.66100222102409,27.70935081871619],[-112.66115853178445,27.711604723732762],[-112.66375808175849,27.71537823100084],[-112.66925395531143,27.715995660541182],[-112.67090378621106,27.717960940136777],[-112.67598442455682,27.721629280945137],[-112.67704920769233,27.724288536523375],[-112.67892854947428,27.725766054195674],[-112.67958828297401,27.72896875031023],[-112.68381819302982,27.73436687322993],[-112.68766864617459,27.735912176484135],[-112.6931607638781,27.743643707324793],[-112.69614175832032,27.74606755359372],[-112.69720001788374,27.7482097437628],[-112.70157092376905,27.751782034601376],[-112.70381369286599,27.755653603473263],[-112.70471168604644,27.76108339158236],[-112.70782244748455,27.764619528520484],[-112.70798952045408,27.76915960452186],[-112.70670399564978,27.770306389219797],[-112.70699859477122,27.773768205017404],[-112.7061874401997,27.775918181773818],[-112.70922688623972,27.78129353185318],[-112.71067134715912,27.78076594788149],[-112.71540471709221,27.78470900885486],[-112.71637345415832,27.787625967637098],[-112.71557618712256,27.79282994840821],[-112.71693978008517,27.795680177288318],[-112.71712726104528,27.7989678263757],[-112.71586471085112,27.802557585847808],[-112.71389820035915,27.805035720825174],[-112.71625791626678,27.81127742714142],[-112.71891519190774,27.814206148587232],[-112.72096987684557,27.819038136170832],[-112.71945571521945,27.82284857594857],[-112.71994409744354,27.825445049150005],[-112.72422502463053,27.82652131096654],[-112.72433344573426,27.823701391435407],[-112.72857835493073,27.823288510796203],[-112.73280587187617,27.825240636157503],[-112.73704568360915,27.82803200767046],[-112.74104194171662,27.833253754709858],[-112.74248264373642,27.83811715109249],[-112.74852017451065,27.84067065499488],[-112.75819412765037,27.846229717888434],[-112.7639038318888,27.852635569872234],[-112.76430918713368,27.855530716567046],[-112.76726374500618,27.85654586785614],[-112.77137824119342,27.861994327761238],[-112.77193270110706,27.867373531255623],[-112.77054480849085,27.869037036755003],[-112.77170138365972,27.870552392757816],[-112.77165486382597,27.8739781286194],[-112.77012948228946,27.877288107949482],[-112.76837882397189,27.87848153595479],[-112.7688733801424,27.88161295681323],[-112.76770744836477,27.890219544409092],[-112.76497792057688,27.892934085608374],[-112.76219049178945,27.892514684114758],[-112.76134730510626,27.89692481307577],[-112.76257535862163,27.899408439491935],[-112.76197818934389,27.901856050529716],[-112.76478382871733,27.902660535798532],[-112.76583342565027,27.904297132819977],[-112.76497015579378,27.907005552876058],[-112.76318602475112,27.907482141373237],[-112.76175628569791,27.91239374764052],[-112.76247440106857,27.92057367203404],[-112.76405581931215,27.922848223860342],[-112.76451938931427,27.926723381830698],[-112.76331380982634,27.927948745417666],[-112.76475635535951,27.930968879636623],[-112.76476264516003,27.93416161620138],[-112.76723023047708,27.936749028937868],[-112.76547735490908,27.94574283603714],[-112.7611716361368,27.95734801320816],[-112.7569966835942,27.96273364706991],[-112.7564066729177,27.968303343023422],[-112.75743614148172,27.97406382622728],[-112.76221153693251,27.98585939502209],[-112.76136025904646,27.992905890065174],[-112.76212178638951,27.996410770058844],[-112.7649287246349,27.999999999616705],[-112.766666666596,28.000000000140176],[-112.7833333325226,27.99999998507917],[-112.79999999950252,27.999999985973034],[-112.80833333333226,28.00000000044679],[-112.84999999947763,27.99999998535094],[-112.93333333296061,27.999999999733234],[-112.96666666694273,28.00000000040683],[-112.98333333355703,28.000000000401656],[-113.01666666715704,27.999999999707484],[-113.06666666598443,27.999999986154933],[-113.09999999951168,27.999999986237185],[-113.11127522326012,28.00000017480761],[-113.23180762976779,28.000000070642216]]]]},"properties":{"cve_ent":"03"},"id":"inegi_refcenesta_2010.2"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-115.577298950201,28.31202360948072],[-115.582176758917,28.316955921907493],[-115.58463930714464,28.318233972253722],[-115.5927830384274,28.318474754498027],[-115.59722040995064,28.317737641604822],[-115.60416548720514,28.31483417680414],[-115.60510195336798,28.31092970752718],[-115.60248884892246,28.307615173951376],[-115.60269659603085,28.305268871227895],[-115.60714413011675,28.302617606837657],[-115.60578558561963,28.298870850271328],[-115.60208742150957,28.294685360333403],[-115.59426116792713,28.29232380469881],[-115.58639234783186,28.290559083032406],[-115.5754610351895,28.289953634041694],[-115.57180224123636,28.2931943488216],[-115.56960667204419,28.29792580671574],[-115.5678245209092,28.29946461277501],[-115.5587542047711,28.29830351551385],[-115.55355638557029,28.298740375249565],[-115.55035657836333,28.302231263639158],[-115.5481584284546,28.30024055923286],[-115.54827448751331,28.298520375814235],[-115.54470590640261,28.288235786080918],[-115.53890976915255,28.284976950227872],[-115.53371480080449,28.285249164892377],[-115.52916779016272,28.29233187694922],[-115.52804872581089,28.299533385421455],[-115.52854515331302,28.30388326594567],[-115.5340107154974,28.31099169320828],[-115.53813443595726,28.314560735977864],[-115.54404351207751,28.31642730834284],[-115.54627646429958,28.315877305289405],[-115.5469934303294,28.310884611324866],[-115.54812933446675,28.309175272696336],[-115.55089281427973,28.31051620652056],[-115.55574442274946,28.315158109759068],[-115.55832273783221,28.31649692696709],[-115.5637753273491,28.31786598973872],[-115.56942557976214,28.318335203524555],[-115.574795725949,28.311997492486285],[-115.577298950201,28.31202360948072]]],[[[-115.20570182740471,28.370384417971138],[-115.20733524539463,28.371513489407448],[-115.20865097490406,28.37460178542534],[-115.21202524766295,28.37726400214757],[-115.21455639072025,28.37583721185314],[-115.21414045246831,28.373458858059053],[-115.21745646099771,28.372797456517503],[-115.2177800981625,28.37048248961861],[-115.22184913435109,28.36907564539638],[-115.22739332750047,28.368038611227576],[-115.22589879322584,28.36540123769521],[-115.22231254214768,28.36520348243522],[-115.22216188263633,28.36398821946534],[-115.22550010833521,28.361967594775365],[-115.22221054640357,28.36106887118808],[-115.22261947062185,28.35704327630009],[-115.22841952561674,28.35772291230478],[-115.23324034730416,28.359044091087014],[-115.23273243171786,28.355311997008073],[-115.2356512729774,28.351063784675773],[-115.23929652729572,28.351110907082727],[-115.24188423677458,28.35310775509214],[-115.24415034300978,28.350418329023967],[-115.23898228117167,28.349440441973],[-115.23794000645597,28.347010421702862],[-115.23224867997004,28.34668503378765],[-115.2381927660781,28.345503333171735],[-115.23517878999996,28.340458723339793],[-115.23095396512991,28.338990170344346],[-115.23077467918648,28.33775075920545],[-115.2350998572129,28.336172073862485],[-115.23895759038135,28.335647582642935],[-115.23876832738313,28.33803095095169],[-115.24180900995958,28.33855618632441],[-115.2424900862245,28.336660739010483],[-115.24655715813742,28.33556434867478],[-115.2450281961992,28.334307592775076],[-115.24434110788735,28.330491746161442],[-115.2423784574533,28.32825737344865],[-115.23969878418325,28.327074096098443],[-115.24266757726662,28.325875280274204],[-115.24444844474635,28.327002759078198],[-115.24508152080102,28.324978534546915],[-115.24253829600775,28.32158060434415],[-115.24510423216299,28.32055326998983],[-115.24439603411173,28.31802578347498],[-115.24587500098073,28.316225975057648],[-115.24493230135374,28.309719105439967],[-115.24188730726735,28.30950318129419],[-115.240713910247,28.313994618216157],[-115.23738359077231,28.31289128075707],[-115.24224156393552,28.3092426478338],[-115.24884060772683,28.309106573733175],[-115.25017882627759,28.30978647566866],[-115.2508849178991,28.30633901573441],[-115.25027371147712,28.303989528199736],[-115.24803986067968,28.30307722741145],[-115.2481260114734,28.300869234972936],[-115.25243568528595,28.3001291961761],[-115.25257386605057,28.29778930837756],[-115.2562464289665,28.29933846953179],[-115.25763177654972,28.29405427445863],[-115.25986659832267,28.291829480523973],[-115.25613618951326,28.289785912086472],[-115.25311759181267,28.289321617275164],[-115.2525982708164,28.28742970803785],[-115.25439498815194,28.286905351048063],[-115.25373714959107,28.28507248977604],[-115.25022742720182,28.285210007046317],[-115.24716421955299,28.283279381533873],[-115.24901359714681,28.275330266303285],[-115.25276498954634,28.27300651672033],[-115.25307569955697,28.270821145154457],[-115.24955154349516,28.267664336804273],[-115.2478795838233,28.2563779189652],[-115.24502236467322,28.250318527321156],[-115.2439275377987,28.250000385720057],[-115.24035261611283,28.24161665252899],[-115.23695818403911,28.239010572199163],[-115.23562862147361,28.236256734060817],[-115.23594955152203,28.233463387328243],[-115.23309244592866,28.23165272689903],[-115.23357592738887,28.227339073469523],[-115.23609792989953,28.224452497098014],[-115.23965042359521,28.22577540483161],[-115.23962760551751,28.222977603939626],[-115.2378011539804,28.221190438126428],[-115.23888498917398,28.217971054356383],[-115.24444487691392,28.21001489925169],[-115.24758894916181,28.206878632190353],[-115.25125296957873,28.201330483551544],[-115.25886741885029,28.195822405241074],[-115.26043506959167,28.192371790041477],[-115.26497767098022,28.188761235181744],[-115.26520798935564,28.186160227003313],[-115.26972224361714,28.18317655976722],[-115.26967704970485,28.181716403992084],[-115.27310266708866,28.178049877341437],[-115.27417404983049,28.175509102117758],[-115.28264830826379,28.165443114515597],[-115.28508566221427,28.163397783636185],[-115.29556580473837,28.152326188256666],[-115.30500570275524,28.141739534829696],[-115.30639484953036,28.140771468222],[-115.31344882759691,28.13331309001063],[-115.31593884450365,28.13218818852755],[-115.32066773605476,28.12841472116338],[-115.32273803012208,28.12777107723781],[-115.32656826671814,28.12435129845767],[-115.32821421313099,28.12449302044365],[-115.3297154557597,28.120679809769115],[-115.33271944689233,28.12181109562647],[-115.33206298833034,28.119856941521448],[-115.33734224994924,28.117623427769217],[-115.33949313003785,28.117702447976285],[-115.34000228317768,28.115696670082798],[-115.34497525225225,28.114962598095985],[-115.34799014789127,28.117169748181425],[-115.34991493154166,28.116398742366698],[-115.34718341323412,28.115201025054148],[-115.34817059766516,28.10836473491696],[-115.34632169015191,28.10755738219717],[-115.34687987889396,28.10583695739723],[-115.3502604489641,28.105014092531178],[-115.34930851887077,28.10351101346572],[-115.34936619349929,28.099743381034273],[-115.34753305584383,28.09791564766391],[-115.34686871425214,28.09500288216492],[-115.34754906933028,28.0910857403739],[-115.35048256130807,28.09049299073712],[-115.34748211007508,28.08967180836953],[-115.34823657725252,28.08669763177386],[-115.34774585473895,28.084022480967178],[-115.35310343854445,28.081647978062335],[-115.34968685200403,28.08056407128413],[-115.35099099293404,28.078667836417765],[-115.35432665684988,28.078620977190837],[-115.34948432144273,28.07456519156011],[-115.34625216899587,28.07426555500581],[-115.34451763298534,28.072245831251507],[-115.33824345670592,28.071996184178886],[-115.33696060082252,28.072502074621866],[-115.33778029445637,28.076596534236046],[-115.33623269694533,28.078689143291],[-115.33385763954811,28.07697721785189],[-115.32996868953035,28.080454937427476],[-115.3284045192359,28.084246708280148],[-115.32584836741972,28.08473898141034],[-115.31709924071015,28.084184310751425],[-115.31521906010323,28.0859517495432],[-115.31286396112995,28.08577359445269],[-115.31264423753862,28.08905350864876],[-115.30791520999378,28.089890511560384],[-115.3062078524888,28.09136152727882],[-115.30148808066707,28.091601585918283],[-115.2969202153418,28.09288783046452],[-115.29035433447018,28.092656936664127],[-115.28113533719232,28.08985597190423],[-115.27612889871574,28.086958193493444],[-115.27230619114124,28.083776732657498],[-115.26830096237404,28.081488113501962],[-115.26003123256038,28.072132620097648],[-115.25514912952025,28.06162609369818],[-115.2517949580768,28.050392849715536],[-115.2481675938352,28.041716880175727],[-115.2478930751642,28.039144299547218],[-115.24991119880929,28.03818911051286],[-115.25023310946608,28.036194858540966],[-115.24670015666385,28.0351592906473],[-115.24418050103208,28.032446893004476],[-115.23985230256977,28.03180885000893],[-115.2374587218456,28.0334678395634],[-115.22931308095241,28.033130010386117],[-115.22695863428663,28.032400452987474],[-115.22706063974834,28.030187700284444],[-115.22476291409356,28.027548059338244],[-115.22238273555467,28.02744253988817],[-115.21885636668907,28.02958653589559],[-115.2179663899434,28.031983719037555],[-115.21552399775624,28.03353331428326],[-115.21311875922044,28.033465265210907],[-115.21234272975397,28.03146935173055],[-115.21020715797243,28.03178428697663],[-115.21029222091937,28.03476263475801],[-115.20797367200862,28.03683632264108],[-115.20491959962732,28.03735218144442],[-115.19542527204914,28.037307152363326],[-115.18896986958259,28.034999188524296],[-115.18452828936688,28.032796949457804],[-115.18284009323315,28.029321055465402],[-115.17988900988212,28.029046446599807],[-115.17881310129314,28.03177253793666],[-115.18007280852083,28.034091615738078],[-115.17955022747185,28.03587102334444],[-115.17556701636795,28.038524405906628],[-115.18125759588082,28.0452390897467],[-115.18298047105418,28.051293712310155],[-115.18240939863693,28.055498669384463],[-115.1800237821385,28.06344866707468],[-115.17694717477792,28.06784204512445],[-115.17906400748143,28.07585172730205],[-115.17944238801681,28.080864382293043],[-115.18092890799954,28.083599870505566],[-115.17844130592658,28.09476939832001],[-115.18065416115212,28.09989083802077],[-115.17786319306254,28.10630370916533],[-115.1739338269461,28.112022415599597],[-115.1704506045088,28.114012794020027],[-115.16888325250886,28.116028684455614],[-115.16917418301796,28.121464064814916],[-115.15637708578879,28.130118670944114],[-115.15272503851247,28.141345830052785],[-115.15453198214095,28.146400414261223],[-115.1549442220986,28.149969034410674],[-115.15370336556089,28.153305793644734],[-115.1517663008899,28.163579169246532],[-115.1532936708017,28.172529188651765],[-115.15191184703127,28.177681181380706],[-115.15353770073193,28.18090854648426],[-115.15523594892824,28.187456767674973],[-115.1550594628909,28.1902018876296],[-115.16357686632466,28.198902415489556],[-115.16567960395037,28.204540116886278],[-115.16795879113465,28.20743264964608],[-115.16872296846896,28.217044288039745],[-115.16764251896541,28.228540615487077],[-115.16633000561905,28.231428648708004],[-115.16667256169586,28.23355658836431],[-115.16482101414897,28.242864934890576],[-115.16290003273792,28.245494304407885],[-115.16063542530765,28.25421129025284],[-115.1585978591911,28.25909782760027],[-115.16089068980011,28.263211013906982],[-115.16084178957033,28.268519201898584],[-115.16509847525788,28.275656743305717],[-115.16620009362589,28.28280337133981],[-115.16887153463091,28.286596154849633],[-115.16906343093137,28.289936802185082],[-115.17035670627286,28.293144674781104],[-115.17053686137791,28.296521095003072],[-115.16897358792261,28.299817469584013],[-115.16942711981108,28.30575348545733],[-115.17145964141542,28.308655718779278],[-115.17922038820188,28.311704584068764],[-115.18218611020899,28.314548994492043],[-115.18317634315787,28.317445958011945],[-115.1862386340897,28.32158726869943],[-115.18840900137826,28.328599490529996],[-115.19058809373809,28.331557395361983],[-115.19137279603996,28.335029321978254],[-115.189376594453,28.34109345367989],[-115.19114674447138,28.34617253182836],[-115.18940775174815,28.35566866747598],[-115.19054761235901,28.35687319216737],[-115.18991752104131,28.360358590625538],[-115.19118858735374,28.359318237554987],[-115.19248732334785,28.361022622529504],[-115.20028884860716,28.36024419531168],[-115.19899065610656,28.36289529206948],[-115.20183719043109,28.36640662536331],[-115.20181700996551,28.37098768293265],[-115.20570182740471,28.370384417971138]]],[[[-112.66383981317148,28.418829906716326],[-112.65586036179076,28.423046332976753],[-112.65424029994256,28.427963601649708],[-112.65632783937338,28.431564007921338],[-112.6575860773105,28.435489296317883],[-112.66029465950947,28.434966318509623],[-112.66228569100952,28.42968656975586],[-112.66535117495363,28.42735937137411],[-112.66433031576804,28.42538513305425],[-112.66586737881352,28.421336752510967],[-112.66545236710397,28.418528137236194],[-112.66383981317148,28.418829906716326]]],[[[-114.27640763537238,28.666893728495552],[-114.27433614723543,28.66810724893486],[-114.27756730418554,28.66932697632808],[-114.2791696331941,28.66787974526187],[-114.27640763537238,28.666893728495552]]],[[[-112.88998268034163,28.67761023912749],[-112.89414485021643,28.678686369688307],[-112.89454473849838,28.677190245056295],[-112.89065283799533,28.67418247148106],[-112.88663384293238,28.672493383957487],[-112.88501886767398,28.66956516617853],[-112.87717459248466,28.664341564681706],[-112.87603480918403,28.65966557223959],[-112.87256848518365,28.657010819717982],[-112.87197054191398,28.654845957138605],[-112.86930174668635,28.652747512944018],[-112.86611466538159,28.651988065267403],[-112.86541694033559,28.649122116385968],[-112.86795054947834,28.643874250836916],[-112.85531312530253,28.643935687186456],[-112.85366030799975,28.640872460549986],[-112.85070919054687,28.641142213410944],[-112.84468000303707,28.64020998669946],[-112.84253398958822,28.63928049535764],[-112.83781733328186,28.633994723515343],[-112.83259166738833,28.63012485526673],[-112.82981458176386,28.627303043674146],[-112.82441404515953,28.623948915488143],[-112.82109251911692,28.623367831867597],[-112.81584488259836,28.620661334643216],[-112.80925905866724,28.618701856679536],[-112.808828168753,28.61570681013808],[-112.80284646828284,28.61211677873365],[-112.79970405221843,28.611009534385573],[-112.79620010401243,28.60731825437341],[-112.79365607495328,28.60123963143576],[-112.7916312073088,28.59881249876514],[-112.789810073191,28.59286759150143],[-112.7895560305231,28.587148936674396],[-112.78563894473865,28.587200568846185],[-112.78286621938292,28.58562419333532],[-112.78292484205161,28.580200707341874],[-112.77878272077248,28.579769861810917],[-112.77540888550942,28.57662814138945],[-112.77106590387001,28.577388000484746],[-112.76328438164813,28.58290994170619],[-112.75675084519435,28.587003708062866],[-112.75268345737464,28.59246603948668],[-112.75839072980403,28.59382362962276],[-112.7596440708096,28.59506960456912],[-112.76182775414225,28.60002977643154],[-112.76480168297167,28.60278792637621],[-112.77263188678359,28.60637544106561],[-112.77888635119223,28.609695249949084],[-112.78206624108981,28.61364020692082],[-112.78403866446973,28.618563734154748],[-112.78736291980039,28.619667117652],[-112.79159955639483,28.622242577285135],[-112.79725053698752,28.62741310372877],[-112.80270232472088,28.63554666561356],[-112.81954310326262,28.644969033834855],[-112.8237019390071,28.6490270343632],[-112.8288347832978,28.65080664902416],[-112.83256195897246,28.65357281393159],[-112.83616193757422,28.65751546341579],[-112.83904776765723,28.659696826016784],[-112.8429495925717,28.659458997631702],[-112.84961688792873,28.662808172044322],[-112.8534033035761,28.666241648906635],[-112.85575484933287,28.670606053729614],[-112.85802168391592,28.669925288498007],[-112.8610276824947,28.672709290968555],[-112.86576101336505,28.67087916700524],[-112.86780341011695,28.671155303146747],[-112.8704355206171,28.673522950030417],[-112.87775737670773,28.675157164366397],[-112.88189667630633,28.675255470244338],[-112.88998268034163,28.67761023912749]]],[[[-112.93263132525419,28.709739191842687],[-112.93160872157716,28.705900180380183],[-112.93439269425113,28.70061784657088],[-112.93227755186064,28.697704685979716],[-112.9290489053592,28.697374111160855],[-112.92606440100775,28.69421560086431],[-112.92012934110215,28.693254311717396],[-112.91171434651295,28.689801318468028],[-112.90941335637439,28.68767677765345],[-112.90344214558195,28.685858134708383],[-112.89808005276291,28.683101966442166],[-112.89738797485097,28.68127814347855],[-112.89496735021521,28.681575277224795],[-112.89828093880408,28.684278877495956],[-112.89873842720687,28.68830229157942],[-112.89721483895005,28.691331815341584],[-112.89753505050919,28.696840262424246],[-112.90125891277955,28.69555177332711],[-112.90758080110828,28.69807061974018],[-112.90983610418238,28.69621757746853],[-112.91530093200925,28.699701853741203],[-112.91584205237041,28.697940149900262],[-112.92109788370146,28.699895031782773],[-112.92321596078665,28.703342120109028],[-112.9306336699903,28.707414847603275],[-112.93078482486294,28.70929367274141],[-112.93263132525419,28.709739191842687]]],[[[-112.9612482535614,28.734434582197196],[-112.96386282311067,28.734290479940682],[-112.96570227936655,28.73187991607574],[-112.9644836687653,28.73039780594246],[-112.96307905446184,28.73165688565848],[-112.96113200933911,28.73052270390656],[-112.96003767321776,28.727331635861958],[-112.95855369344508,28.7278766647064],[-112.95865412388241,28.723389506868386],[-112.95717103597269,28.724714185268624],[-112.95414478104487,28.72282593352395],[-112.95179303378865,28.724838308631035],[-112.9496675166568,28.72041762191691],[-112.94626372340883,28.717162701688835],[-112.94680709064761,28.72158540044842],[-112.94827528918796,28.7223383509031],[-112.95091516305422,28.72732431236261],[-112.95244115942916,28.728431760175],[-112.95281390520591,28.725328303715912],[-112.95527612339595,28.729622684644255],[-112.95832738189125,28.72979269633521],[-112.95934191849204,28.732854892936587],[-112.9612482535614,28.734434582197196]]],[[[-112.97775862349908,28.824104633910906],[-112.98507020677692,28.824400388823733],[-112.98464360436134,28.821702383839863],[-112.97866078862683,28.819259037809275],[-112.97625810146855,28.819432332461872],[-112.974659521815,28.823413683800425],[-112.97775862349908,28.824104633910906]]],[[[-113.02858204488837,28.885381442055802],[-113.02667368826445,28.88648508093513],[-113.02828487393492,28.888095967661343],[-113.03161950512117,28.887608323412678],[-113.02858204488837,28.885381442055802]]],[[[-113.03754117516155,28.890913882511256],[-113.0326662016509,28.896746207147658],[-113.03291518582438,28.89899437251745],[-113.03682524646985,28.900607240044792],[-113.03853662063642,28.90007928968049],[-113.03778318954238,28.896390253119478],[-113.0410130912378,28.890403885929402],[-113.04486607385076,28.889964907781916],[-113.04535290209498,28.89143979183001],[-113.04678051490453,28.88773635294399],[-113.04652072326405,28.885010711982545],[-113.0438867830369,28.88329717241396],[-113.0405869907301,28.884471281132846],[-113.0406805068422,28.887747860655054],[-113.03754117516155,28.890913882511256]]],[[[-113.3833048359981,28.9223828380089],[-113.38493178634735,28.92636386934919],[-113.38531290735574,28.924444308120485],[-113.3833048359981,28.9223828380089]]],[[[-113.47439465674574,28.95581027607693],[-113.47437653252734,28.957287061850593],[-113.47740745312103,28.955722758625143],[-113.47439465674574,28.95581027607693]]],[[[-113.47602018798352,28.967307262611484],[-113.47485077814747,28.96897379971199],[-113.47712246880081,28.97520849944567],[-113.48469885048996,28.979094362203853],[-113.48509905177059,28.97682262260969],[-113.48097162699577,28.974462220030205],[-113.48199567695195,28.97204594193471],[-113.48151193301692,28.96747626973672],[-113.47835371442494,28.96620432090606],[-113.47602018798352,28.967307262611484]]],[[[-113.51849933728562,28.99712193377559],[-113.5207032092207,28.997157121131863],[-113.51808075619522,28.995212128148296],[-113.51849933728562,28.99712193377559]]],[[[-113.51217930155855,29.002511507835834],[-113.5155544437107,29.001907754841397],[-113.51272060929006,29.000386568554802],[-113.51298120630133,28.998676636881044],[-113.51542754032039,28.999504153027658],[-113.5163620537109,28.994124087190357],[-113.51162542612383,28.98865126510327],[-113.50869863907184,28.993185908233613],[-113.50469788305764,28.991705886288457],[-113.50167839092416,28.99397891834434],[-113.50340128902809,28.996815286523997],[-113.50570584975719,28.9982874256512],[-113.50788758166925,29.00145496128198],[-113.51217930155855,29.002511507835834]]],[[[-113.52262514306096,29.006984584694806],[-113.52344501993082,29.00696541230849],[-113.52453265680197,29.00265616836316],[-113.52296866737834,29.002618663638657],[-113.52042701235155,29.00601895422909],[-113.52262514306096,29.006984584694806]]],[[[-113.51050401578345,29.011657243416607],[-113.515431875508,29.01173807822039],[-113.51646455971377,29.01049047008729],[-113.51380533642413,29.009803464995002],[-113.51050401578345,29.011657243416607]]],[[[-113.51365519947058,29.015878799631082],[-113.5165061907191,29.014721166689924],[-113.51620175519628,29.013126708603693],[-113.51100033341311,29.013334063967648],[-113.51365519947058,29.015878799631082]]],[[[-113.4600986615269,29.013572672806674],[-113.46098035246814,29.01631201899744],[-113.4658394138898,29.022958687011965],[-113.46994984282509,29.02413030341711],[-113.4688896328451,29.019445587499547],[-113.46655992178057,29.013984655006823],[-113.46310009361866,29.011618458232476],[-113.4600986615269,29.013572672806674]]],[[[-113.08459656953374,29.06254369701344],[-113.08206115172533,29.06605372698749],[-113.08229461859253,29.068951947078233],[-113.09222009668485,29.067886377561877],[-113.0963156457455,29.0660984284375],[-113.09301367942703,29.064970159080815],[-113.09291955136223,29.063249208194975],[-113.09676643181496,29.061508881131374],[-113.08715668374106,29.061705675124017],[-113.08459656953374,29.06254369701344]]],[[[-113.52112290738353,29.069496149906456],[-113.51750097200176,29.06476625632388],[-113.51467324776479,29.064760126622332],[-113.51575330195237,29.067217027561924],[-113.52112290738353,29.069496149906456]]],[[[-113.51104862065694,29.09631567670607],[-113.52085985259322,29.096075059941995],[-113.52759508875107,29.095148182134437],[-113.52723181662236,29.09086332015511],[-113.52417269428184,29.086099029003606],[-113.5218687321904,29.079702342988412],[-113.51482523980985,29.07698733359547],[-113.51480472554368,29.073678498471395],[-113.51612463818952,29.073160032397766],[-113.51288618113551,29.06384581390222],[-113.51081916858448,29.06360677118346],[-113.50930701586685,29.059943276485626],[-113.5102840483994,29.058195838623874],[-113.51310790300903,29.05771023265845],[-113.51432706400232,29.05315905323772],[-113.50682170886222,29.04778996221279],[-113.50644527181782,29.04907719938319],[-113.50295337172366,29.048977412953377],[-113.50244053836468,29.04766811640576],[-113.50692527364896,29.04730728675446],[-113.5060460963017,29.045929443557384],[-113.50318181164948,29.045748576354413],[-113.50424981093619,29.043748260176983],[-113.50623809891994,29.044021946236796],[-113.50714883835332,29.041895381240522],[-113.50422682242936,29.039163848489068],[-113.50078794583732,29.039270776847502],[-113.49929435506976,29.037916477823956],[-113.49692795814485,29.038114164118497],[-113.49450567935219,29.036599875734225],[-113.48925183670531,29.03796071917094],[-113.49192098935487,29.03872800416093],[-113.49596866967653,29.04210208520965],[-113.49637168269254,29.047203134830227],[-113.49899078736581,29.048923982640417],[-113.50174933700924,29.048553526683293],[-113.50253869583867,29.050747241486704],[-113.49934116913118,29.05380671169189],[-113.49947622023632,29.055817243343654],[-113.50196530513512,29.057790914903364],[-113.50550883965053,29.063486006160588],[-113.50414359836492,29.067209956429622],[-113.50589995273862,29.068920029660944],[-113.50274600588301,29.074173842087646],[-113.5035771630777,29.07747035362371],[-113.50804301849661,29.079947321742168],[-113.50676858887823,29.08337237162499],[-113.50252778230583,29.08827102114674],[-113.50253319061449,29.090787059044942],[-113.50706892534379,29.095102110318237],[-113.51104862065694,29.09631567670607]]],[[[-113.53005335891396,29.096171370286243],[-113.5271992932125,29.098157253897227],[-113.52981282822589,29.098612123856697],[-113.53005335891396,29.096171370286243]]],[[[-118.32669197251056,29.16908435427058],[-118.3267850348513,29.17107084882167],[-118.32500791394398,29.176841911929273],[-118.32179589815348,29.18152408096057],[-118.31756263955197,29.1846675123428],[-118.31897798828084,29.189638153677265],[-118.32235973640621,29.1922691138152],[-118.32462071691737,29.19272912173051],[-118.32606852620938,29.191199950920975],[-118.3294673083467,29.19040035704876],[-118.3330836872683,29.187164058110795],[-118.33597192004805,29.185549915908155],[-118.34309754859703,29.17979869717169],[-118.34610042153952,29.175656996793805],[-118.35167621818732,29.17116349469717],[-118.35384130700129,29.170088026318467],[-118.35981281707296,29.168845701487385],[-118.37060714788117,29.170057791666352],[-118.3720570260769,29.167896202384384],[-118.37740868408832,29.167192723764686],[-118.38297124953027,29.1653161616469],[-118.38472658542133,29.16378745721397],[-118.38874415683858,29.162356760899513],[-118.39431585890941,29.158313088837417],[-118.39731337845558,29.15489252093829],[-118.39958142534175,29.15363619873591],[-118.40764955137189,29.14282913388081],[-118.40714894360866,29.139667543725068],[-118.40387862880868,29.134961898446477],[-118.40039938292858,29.131068016662937],[-118.3984681681232,29.125915232181512],[-118.39817939792476,29.121399917230406],[-118.3965430350845,29.119408082391317],[-118.39677274277392,29.113901284364488],[-118.39452797496386,29.110011278209583],[-118.39693513894144,29.100268087049585],[-118.39622779726227,29.097466676935028],[-118.39707896199758,29.09087824012397],[-118.39997554509046,29.08664421642294],[-118.40080920456938,29.084028501771286],[-118.40052201421327,29.07915166358589],[-118.3995114789671,29.07517530587296],[-118.39933459540282,29.068583129724004],[-118.39697989787669,29.066498389754884],[-118.38568355624739,29.0645636748759],[-118.38261100081309,29.062205347056306],[-118.38129490255847,29.057776200615933],[-118.3789394834348,29.055962049387972],[-118.37853903237715,29.053612891119883],[-118.37155545719929,29.052685411800553],[-118.36293998892734,29.049133114764686],[-118.35608241126977,29.04332920741973],[-118.35392929909654,29.042328084382973],[-118.34985735960754,29.034276398889688],[-118.34750326192233,29.032371413944077],[-118.34710304164514,29.030112376855527],[-118.34918957644356,29.02343759184032],[-118.34806764171259,29.021717697455188],[-118.34829928917594,29.016209963997255],[-118.34594469073511,29.01448550051873],[-118.34142681449487,29.01401725499693],[-118.33918858291833,29.009493631753287],[-118.33930219632697,29.007236393977053],[-118.33747197828046,29.003346361688898],[-118.33719222919564,28.997475309534423],[-118.33853711081673,28.99549354949039],[-118.33692431075491,28.989165882318275],[-118.33407660690409,28.983375349718187],[-118.33419380129197,28.980395531602028],[-118.33759689341355,28.977518328194776],[-118.34037322273838,28.97680619249627],[-118.34305634442097,28.974106799912477],[-118.33977618194234,28.972830239821064],[-118.33445758069166,28.968385011902],[-118.33107717088313,28.966656318881064],[-118.32666108525291,28.966729881893457],[-118.32306248656062,28.967619277261292],[-118.32235753003681,28.96481685816542],[-118.31989796493684,28.963813959932168],[-118.3182806493054,28.958659810955055],[-118.31799062687992,28.955046089180257],[-118.31924482229778,28.950625455357],[-118.3234648234876,28.948564385336738],[-118.32420005384347,28.94522547975555],[-118.31959779802116,28.941595131615372],[-118.31817079391811,28.939512321879704],[-118.31808209267211,28.936712116674585],[-118.32006326436334,28.930578068401303],[-118.32304442542988,28.929776638803446],[-118.32121090178276,28.926879373583176],[-118.31722261850871,28.923793114926013],[-118.31735864519578,28.91710988212452],[-118.31552995864081,28.91330928207418],[-118.31164306644382,28.910584492531427],[-118.3093114906336,28.904794697332193],[-118.30943421908785,28.90082092277305],[-118.30647154442272,28.89809956170035],[-118.30464162124366,28.894660002631497],[-118.30536784673853,28.893127332909557],[-118.30518786456162,28.888158694796516],[-118.30807784561557,28.884918300301706],[-118.30961901278545,28.884563032311746],[-118.31724734838144,28.877727823170346],[-118.3153080287438,28.875642761717586],[-118.3154242096603,28.8729333538364],[-118.3135758142912,28.87319715984279],[-118.3060643984233,28.877232546896835],[-118.30339452595513,28.877583328145647],[-118.29413938522845,28.88134025183996],[-118.29310475984545,28.88296199360053],[-118.28993150275534,28.881413654187952],[-118.28697064914218,28.878511190906522],[-118.28051052003974,28.877581595913],[-118.27217489417296,28.881973328523486],[-118.267021973993,28.88601661570641],[-118.26557451092748,28.887997752436434],[-118.26576707929621,28.890347042800272],[-118.263069883735,28.89566495512554],[-118.26241782137356,28.902346246076775],[-118.25992895460888,28.90703260431104],[-118.25917697668905,28.913171389759043],[-118.25186176209877,28.91810804879117],[-118.25001157406098,28.918551751040525],[-118.24773124090376,28.922516113545782],[-118.24750890171998,28.9255860619773],[-118.2495375378864,28.930020442196223],[-118.24777530317544,28.933083749461844],[-118.24713075975893,28.938229151720066],[-118.247098173712,28.944099672629818],[-118.2482971899799,28.950065732560176],[-118.24671140662844,28.958277655345682],[-118.24382169533033,28.96088434213334],[-118.24564288125038,28.965769157024567],[-118.25055246293442,28.969312437315068],[-118.25207789518328,28.972028337670167],[-118.25265525257612,28.979075146588457],[-118.25151559498238,28.980876516337617],[-118.2524090441616,28.9864795962269],[-118.2556733199259,28.9905574226716],[-118.2546333348406,28.99290105496891],[-118.25471818628051,28.996152539294428],[-118.25327026008353,28.997952555879806],[-118.25303897099553,29.00264758975436],[-118.2515794835586,29.006524586203057],[-118.24857803475356,29.01057555712339],[-118.248042870355,29.014456422778323],[-118.24975226678811,29.02114632134112],[-118.25147580389199,29.02530767614303],[-118.25354977388969,29.04048734502379],[-118.25281560021534,29.04319325480293],[-118.25320074278812,29.047890518470524],[-118.25462790025972,29.04997348069901],[-118.257565345709,29.057751642976314],[-118.2610027380619,29.068150350595886],[-118.2673346303634,29.075581126038173],[-118.27234607576685,29.08020697016974],[-118.27367113238859,29.082289215285982],[-118.27981947793586,29.085835935323985],[-118.28502502643886,29.09280969951942],[-118.28922487558651,29.095625740968728],[-118.29219041358596,29.098617293263317],[-118.2970088096937,29.101164710424598],[-118.31549404688332,29.104939208091707],[-118.31929006774499,29.10648878614427],[-118.32185028516386,29.108484990151],[-118.3252125195782,29.114637495935312],[-118.32559121906445,29.12122996540785],[-118.32875144051025,29.126749474173437],[-118.33026851892822,29.131901520760323],[-118.33363971112823,29.136428486351292],[-118.33516632491933,29.139684460778994],[-118.33657748310065,29.145558191322152],[-118.33666542881366,29.14862814367035],[-118.33488995607678,29.154218999547595],[-118.32669197251056,29.16908435427058]]],[[[-113.51324254633033,29.540614429517063],[-113.51083300079495,29.54695168868068],[-113.51139814606125,29.549272829662186],[-113.51749149566854,29.55134707571193],[-113.52590500705338,29.549892673551994],[-113.52319028003313,29.54736900148049],[-113.52408021017703,29.54338444737374],[-113.52645388093867,29.542070746676018],[-113.53436594014647,29.540064261030807],[-113.53415357812025,29.542272030462414],[-113.53571318103081,29.54273148756681],[-113.53462428978901,29.538515705831173],[-113.54036074767657,29.538246610385727],[-113.54241107899998,29.53435193579645],[-113.55091801168038,29.533436657258903],[-113.55294236107738,29.534326718211673],[-113.5524181350446,29.537663022098684],[-113.55415170797244,29.535016131504676],[-113.55644730454208,29.534178404599743],[-113.55917024064144,29.535086487005117],[-113.56025308771166,29.539720703494254],[-113.55757725536984,29.543898561600997],[-113.55937629798791,29.54538089823899],[-113.56690314793366,29.53997120084972],[-113.56891276077704,29.540511825201406],[-113.57213734207556,29.536136056958014],[-113.56750070825638,29.52850300341646],[-113.5700364376948,29.525880868468676],[-113.57212766437772,29.521252721732594],[-113.56840061474634,29.521106293435196],[-113.56809752425067,29.518518461321264],[-113.57010519927724,29.515429098912705],[-113.57453937317138,29.51406531386891],[-113.57374567211991,29.512517332679465],[-113.56856267965662,29.51413891836546],[-113.56476747750975,29.512239223127892],[-113.56367945557338,29.50541014601447],[-113.56441490890467,29.503443276688927],[-113.56832684296864,29.497684372136405],[-113.56743508950228,29.492893616254833],[-113.56861441667331,29.48844944552883],[-113.57028343235464,29.485529889515306],[-113.575336962866,29.480270717682913],[-113.57681809816575,29.472879877177775],[-113.57598662576407,29.471994275897146],[-113.57785063893004,29.46828462582664],[-113.5861619943891,29.461231529044596],[-113.58663484246915,29.459084939053696],[-113.5892863448438,29.456362034233507],[-113.592486101708,29.451144549994353],[-113.59154041438444,29.4479438415741],[-113.59272373589141,29.442337461719887],[-113.59416885065951,29.438437985900862],[-113.59153268430794,29.436050038552878],[-113.59130675962479,29.433108068357228],[-113.58938950046178,29.429987467464002],[-113.588826819024,29.426643165609164],[-113.59074324544679,29.423441860782816],[-113.59206858312825,29.418495771556422],[-113.58999612764148,29.413321459767417],[-113.59046633668333,29.411550626006203],[-113.5885274936038,29.40899310568375],[-113.58613469697355,29.40803614153299],[-113.58040881743432,29.40403125355283],[-113.5764615517827,29.40333468701607],[-113.57036425590354,29.40040434809771],[-113.56669816617512,29.392409592590866],[-113.56156657125621,29.387640573553597],[-113.55728555465788,29.38599108137504],[-113.55762079041313,29.379111545142052],[-113.55624844178408,29.37736029957682],[-113.55139957884671,29.37575447203119],[-113.55003743318144,29.37356442787484],[-113.54596882296772,29.37154726315498],[-113.54312608571257,29.367038022837278],[-113.54211283453378,29.37264299722807],[-113.53938711393067,29.376834495480182],[-113.53615935772791,29.38000060511206],[-113.53398842055833,29.380210323823974],[-113.53453681754746,29.37779991294542],[-113.53681811520619,29.375810948689207],[-113.53872236515662,29.37164523631276],[-113.5395562523646,29.367302302720816],[-113.53849702056925,29.36537567999102],[-113.54138366451127,29.364197994995948],[-113.53992950195567,29.361261668704685],[-113.53933260807656,29.357443910929362],[-113.53800236707184,29.35538361969145],[-113.53508877167263,29.355192508335392],[-113.5313242509369,29.3513096295585],[-113.53034231189514,29.347082870982092],[-113.52922043375207,29.345867096366703],[-113.5284838841385,29.34192063006344],[-113.52562405598997,29.33499628709194],[-113.52022710892999,29.333256978933605],[-113.5182306709774,29.331386104656247],[-113.51494886165159,29.330014652608497],[-113.51251826938756,29.327270288384284],[-113.50949257324635,29.32539020809139],[-113.50681645673785,29.322295702611086],[-113.50501963286774,29.316310874004728],[-113.5057885089953,29.313836089302015],[-113.50465887980243,29.312024170891164],[-113.50583646845837,29.3097873374781],[-113.5028923790461,29.304620386466354],[-113.5036207915112,29.29952376193205],[-113.50087799767363,29.293200706541825],[-113.49761030340511,29.290279500452186],[-113.49640382563882,29.286991396254564],[-113.49656997893624,29.28377343280505],[-113.49416070333268,29.284303182866495],[-113.48776081274303,29.280972369593087],[-113.4855516182057,29.280444237677273],[-113.47921426439297,29.281265739336902],[-113.47423948222706,29.277941148582897],[-113.4716158009432,29.27801118516743],[-113.46483150777738,29.281227644717717],[-113.46163901182001,29.280448065378096],[-113.45935631990284,29.278801103014473],[-113.45576821753986,29.278173897455872],[-113.45396210355557,29.27989918725808],[-113.44857537178723,29.27969638060557],[-113.44483599839526,29.276458489467586],[-113.44260467574787,29.275443684307675],[-113.43867137930255,29.269774490554312],[-113.43643091459563,29.264663475242912],[-113.43552315107672,29.260839387529927],[-113.43295746855125,29.2588509443637],[-113.43102823469292,29.259961381163293],[-113.4293131990641,29.258624712871324],[-113.4272036058835,29.253082542987215],[-113.42711509663184,29.249128094850278],[-113.42808047413979,29.24700480435257],[-113.43102888365394,29.24734085419169],[-113.43038777711917,29.243149291142345],[-113.42837062315698,29.240838427032145],[-113.42250045007683,29.236162820165475],[-113.42214461884623,29.232346323269724],[-113.41990714538326,29.230641985096895],[-113.4181749310726,29.226971005611347],[-113.41480324164894,29.22596421907224],[-113.41416718265867,29.223531513506884],[-113.411413692103,29.221884256332146],[-113.41009111219051,29.217189751233718],[-113.40432429871407,29.21334983150382],[-113.40457215766298,29.209859008453805],[-113.3979251501986,29.205876118168135],[-113.39429022644225,29.201386556090824],[-113.38714017486029,29.19775834081878],[-113.38546466616646,29.195819528474885],[-113.381163472825,29.195692183124095],[-113.37400888024092,29.19216233423873],[-113.36989904492424,29.19132260314302],[-113.36355982601583,29.187009371091165],[-113.36073737783647,29.18387774159305],[-113.35786830716711,29.17774295465449],[-113.35624976092538,29.176013652023073],[-113.35663338471119,29.174310966631992],[-113.35354865927695,29.170545370714763],[-113.34714581871174,29.16682737995825],[-113.34489413533282,29.16649550336132],[-113.3429198908571,29.164314048360836],[-113.33710579383228,29.16338939893683],[-113.33308128325893,29.15999823821761],[-113.33127136771077,29.162510081686833],[-113.33038362637592,29.16081143832224],[-113.32837792432781,29.161120832781762],[-113.32727083886522,29.158923053023614],[-113.32480003594776,29.15724943502761],[-113.31899805930641,29.15640131577419],[-113.31776436860304,29.155177249790484],[-113.31447997440898,29.1487862080005],[-113.31102620099773,29.14714156980631],[-113.3037813200608,29.14659161720357],[-113.29993375784022,29.144805141473398],[-113.29865079867119,29.14273948475926],[-113.29845265969709,29.139359708748543],[-113.29679117409205,29.136723524443767],[-113.29480513402098,29.136458541053685],[-113.29324863797393,29.13312516906052],[-113.29138767201846,29.131603494364924],[-113.28710190103811,29.130924645263008],[-113.28531922119367,29.12723022423046],[-113.28250667703202,29.12554202724681],[-113.28162786603934,29.123347448125912],[-113.27856751820667,29.119673482202245],[-113.27691593180907,29.11899751383436],[-113.27414268375787,29.114020004044278],[-113.26848464520543,29.109382135710064],[-113.26735203181897,29.107600448042433],[-113.26467451687961,29.106615733625574],[-113.26223989490978,29.101752438995277],[-113.26200628266974,29.09688943359322],[-113.25937234904399,29.091736523930138],[-113.25466747052451,29.08639546272633],[-113.25200789668651,29.08606061263538],[-113.24888270791575,29.082196198101258],[-113.2486624218331,29.078413111989676],[-113.2470570246636,29.076146728827837],[-113.2477764478732,29.073760324417037],[-113.24355928812497,29.067903514249508],[-113.23981342706844,29.06650265302534],[-113.23450310565136,29.061725630661158],[-113.22911243904935,29.059167578653273],[-113.22382479279412,29.05957409761311],[-113.2213166941695,29.058948074518582],[-113.22015472449607,29.056113895397516],[-113.21576407846726,29.05506445655766],[-113.21271882787761,29.051831505943255],[-113.20580714532872,29.050525413457535],[-113.20334632106534,29.04860461415501],[-113.20019986854345,29.04814525302521],[-113.1977737214761,29.045299771627185],[-113.19730935747373,29.041494622278492],[-113.19148769911828,29.032812020583776],[-113.19072398980472,29.030202764946466],[-113.18859844673239,29.02787064229892],[-113.1819507029104,29.02768160394845],[-113.1771323682625,29.025654139578535],[-113.17171798161672,29.021203755059332],[-113.16317928085391,29.019241452394795],[-113.15529112851351,29.0155788853329],[-113.15306738724303,29.01255499630821],[-113.14943435622848,29.005949322712695],[-113.14755141095156,29.00456576224508],[-113.14204984197431,29.004127414695915],[-113.13583295832603,29.000218805363545],[-113.1324821925308,28.996115078732828],[-113.12615817977525,28.99209634110872],[-113.12296115977318,28.989446582062953],[-113.12242154542963,28.987373319141625],[-113.116434568096,28.986847699041846],[-113.11582640805608,28.98762911724026],[-113.11651691359361,28.99788304259704],[-113.11578359441785,29.00160318214779],[-113.11703644366378,29.00297611305666],[-113.11449300051959,29.009293022858117],[-113.11383849081773,29.013493092068018],[-113.11506679152302,29.020511868405606],[-113.11508903073207,29.026550077289585],[-113.11309936598724,29.034081057074786],[-113.10906051679888,29.040209595197496],[-113.10489099401991,29.048762526044925],[-113.10055783946575,29.05594595329353],[-113.10383808640142,29.05514993469319],[-113.11420036015113,29.05509413256243],[-113.12249347905271,29.056047376734227],[-113.12520695328999,29.057753619864286],[-113.12441976740615,29.06135623892351],[-113.13429876377393,29.06173690747903],[-113.14384528905339,29.064110805388964],[-113.14936503239483,29.067704108386295],[-113.14897888097045,29.06931491574352],[-113.15195971457211,29.071022436874955],[-113.15543945649301,29.079687792654852],[-113.15622620357067,29.0886743637642],[-113.15450814397519,29.09304045154437],[-113.15295144036196,29.094917987384804],[-113.15626708077832,29.099223998229377],[-113.16122954802307,29.102699408907768],[-113.16399752804205,29.107745202943136],[-113.16467326081437,29.11147925245308],[-113.16697092869111,29.11540260954223],[-113.17116857017584,29.120809024018513],[-113.17343493248728,29.125588645256357],[-113.17456256787437,29.132052828834276],[-113.17226468311839,29.143820700840195],[-113.17212850571667,29.147489287607016],[-113.17290697393253,29.151592095186004],[-113.17392344181627,29.161822513698382],[-113.17375694903092,29.166306341849463],[-113.17258471044181,29.17280164593069],[-113.17181668164807,29.180940715757174],[-113.16791432549917,29.1857255488963],[-113.16632181284996,29.190984551347412],[-113.1704547895668,29.194224709282594],[-113.17196823932716,29.19680711539803],[-113.17184118783513,29.204937524357263],[-113.17113667472705,29.20866366922195],[-113.17387481543778,29.213235772134738],[-113.17371456720184,29.219151540599853],[-113.17268179948684,29.22329860250636],[-113.17290891183029,29.226673805794064],[-113.17581025344197,29.2295639853628],[-113.17641615881536,29.235820272464196],[-113.17785804195375,29.241677874320203],[-113.17824752010182,29.248273740760055],[-113.1766594573686,29.251579777419238],[-113.17710405485809,29.254500671973574],[-113.17640474644946,29.264073221075193],[-113.17166021073808,29.272505017126605],[-113.16765514275482,29.27594649269338],[-113.16790931055283,29.27902526211267],[-113.17366582176373,29.28307022737232],[-113.1791141148758,29.28548957384288],[-113.18102847827731,29.288615872632306],[-113.18901299979672,29.287389293052513],[-113.19169620627747,29.28839948841619],[-113.19226565707748,29.287090395448956],[-113.19625012239692,29.287023714524366],[-113.19747715530349,29.285685662142612],[-113.20095569261866,29.285868497166348],[-113.20303464980918,29.28474582503634],[-113.21214817264945,29.285219772271546],[-113.21861096200666,29.287981729692888],[-113.22710369884834,29.288490790442893],[-113.23534275980387,29.288186329456153],[-113.23846411736287,29.288811595736888],[-113.24215507150296,29.286874177413836],[-113.24770266597051,29.286170766603902],[-113.25304428198393,29.284386891267047],[-113.2559322040106,29.28258767577296],[-113.25985179308691,29.283127385031378],[-113.25996787250313,29.288771516433826],[-113.26587353124643,29.28834599376728],[-113.2686458623964,29.28466296476637],[-113.27368345285032,29.284481417728728],[-113.2746387632248,29.285206488828067],[-113.27477363126206,29.289937886421797],[-113.2757445939701,29.29023361580124],[-113.27696483973239,29.287044286068294],[-113.28002756317034,29.287183443353626],[-113.28089829768993,29.288550800918074],[-113.28659915088764,29.283561947938267],[-113.28825935677133,29.281180779295028],[-113.29056704489773,29.28183591615999],[-113.29433544924939,29.281295943035786],[-113.2964668043046,29.282268417465502],[-113.2983157650886,29.28543571194035],[-113.30150351971173,29.287565626305593],[-113.30400839716953,29.290804756966736],[-113.31378561874351,29.2902156840687],[-113.32073052364507,29.291320716695907],[-113.32531365575426,29.292694461092367],[-113.3334670943064,29.29351139460624],[-113.34263399261545,29.295168219305367],[-113.34748219126806,29.296579125699566],[-113.3506833253694,29.299171497265547],[-113.36579517647516,29.30718982048552],[-113.36808933344764,29.308976645344046],[-113.37052981331658,29.312437667954953],[-113.36955252996228,29.314561352398357],[-113.37151174388191,29.320278478359796],[-113.37005719276289,29.32230605730507],[-113.3712369654861,29.32587257493583],[-113.37120317330312,29.33034039002348],[-113.37247734248155,29.33616975823014],[-113.37524307721236,29.34173273256164],[-113.3762375716517,29.34590890925199],[-113.37591852845514,29.350202770997782],[-113.3748112510944,29.35399359250374],[-113.37291816173502,29.35496967823275],[-113.36952114076428,29.359069624899576],[-113.3665100654922,29.360955814952035],[-113.36453716351576,29.36554740079407],[-113.36274950799026,29.372425906375895],[-113.35985642543454,29.376182831247718],[-113.35816167939697,29.376621746132628],[-113.35672182132299,29.379513157427027],[-113.35186970456022,29.382995467555418],[-113.35202468530844,29.387117875818888],[-113.36142067047933,29.393038213340276],[-113.36355670443595,29.395684974387223],[-113.36203073753558,29.40054708454153],[-113.36375787739797,29.403651454895396],[-113.3666240620907,29.406513521817715],[-113.36551655051596,29.408326269665736],[-113.36949662353396,29.41278448232572],[-113.37081908141653,29.41799068553115],[-113.37286685520877,29.419958470201152],[-113.37445603481973,29.42428858413217],[-113.37906416444264,29.428687010614055],[-113.38111194569893,29.429823138699533],[-113.3840072146192,29.433639097377807],[-113.38424490780841,29.43689764391388],[-113.3854587356791,29.43907403649382],[-113.38490071833166,29.443432235148236],[-113.39231934001504,29.448458143770836],[-113.39396467835809,29.45205359640994],[-113.39259015883357,29.455429131934807],[-113.39334798117909,29.459083652607035],[-113.39554970848491,29.46001028090609],[-113.4019909864088,29.45955805076403],[-113.4055669598174,29.460250353403808],[-113.40916277786329,29.462564558577753],[-113.41057003424851,29.464440197913518],[-113.41701551404685,29.4664064744004],[-113.41694881360922,29.470547532633816],[-113.42049794195566,29.471550057127615],[-113.42534822648298,29.474249197412064],[-113.4257126584489,29.477329443758038],[-113.42817132664783,29.484005219012033],[-113.42679227981546,29.486540729945546],[-113.43011014899594,29.48977933190031],[-113.43055323357714,29.49180130791467],[-113.43534494465524,29.492771604154996],[-113.43706176362383,29.496987498599026],[-113.44159002809488,29.501132237934428],[-113.44323112158241,29.501465006670003],[-113.44727809715454,29.506617619568317],[-113.45261672393912,29.507203484102092],[-113.45430731592444,29.510858820310034],[-113.455917460097,29.510684510147485],[-113.45701400907097,29.513819220692994],[-113.46216289252237,29.517855515700774],[-113.46905905854203,29.519194342630442],[-113.47157620634636,29.522871477098306],[-113.4762093037258,29.524727435491457],[-113.47656461373032,29.528780325137063],[-113.47524341238847,29.53053684949805],[-113.47882810256812,29.531828329827476],[-113.48453171827782,29.53126168628347],[-113.48918443608977,29.533358800770316],[-113.49189209938862,29.53229384212375],[-113.49672518546186,29.53313929604093],[-113.4975410191588,29.53475757302641],[-113.50210471994893,29.5354760876902],[-113.50479431761727,29.53692275505921],[-113.50931650037575,29.53686230045588],[-113.511543806372,29.53787375962105],[-113.51324254633033,29.540614429517063]]],[[[-113.55817283117239,29.547070887045322],[-113.55635550844869,29.551400750027938],[-113.55677122157795,29.553735131382837],[-113.55870029164464,29.553406919462986],[-113.55822273418084,29.551070929856962],[-113.5599136495984,29.550466328609673],[-113.55817283117239,29.547070887045322]]],[[[-113.56516434307622,29.563671800978227],[-113.56539300147534,29.565888137345326],[-113.5666876223384,29.563534395911915],[-113.5719595441646,29.563317059098438],[-113.57698167297082,29.561501550152798],[-113.57813904981248,29.560205140650226],[-113.57816009775746,29.556580575934788],[-113.57719037131147,29.555317726281544],[-113.57432630725776,29.547197854790795],[-113.57065550901149,29.547987227159695],[-113.56898952260286,29.54935883608283],[-113.56604752441058,29.549547994034526],[-113.5638248750588,29.552408208533393],[-113.56307434395131,29.556632770165095],[-113.56041531345352,29.55444187334325],[-113.56171753001388,29.55783544719378],[-113.56009845613784,29.560799644706663],[-113.56451912400985,29.56179834649339],[-113.56516434307622,29.563671800978227]]],[[[-113.53817442602485,29.56531984746971],[-113.54474399993319,29.565658922076466],[-113.5432810337291,29.563481281288603],[-113.53853106097523,29.563315483084466],[-113.53393155722245,29.561559290912726],[-113.53433126124492,29.563919006844856],[-113.53817442602485,29.56531984746971]]],[[[-115.79090557758468,29.7968253940071],[-115.79302357179563,29.79552199712475],[-115.7924091053365,29.793259426828854],[-115.79409868517655,29.793228969172503],[-115.79430127420102,29.789486259211913],[-115.79544780118948,29.786134183173658],[-115.79307935612053,29.786963948458776],[-115.79191903245521,29.78928673284173],[-115.78819684509978,29.793054686828782],[-115.78954338408926,29.79662339712047],[-115.79090557758468,29.7968253940071]]],[[[-114.41643595005411,29.986740810693334],[-114.41852213953092,29.988195929863878],[-114.42107381935739,29.98655227143513],[-114.41985755546511,29.983346831684173],[-114.41607290971632,29.98084833136238],[-114.41677862179858,29.97519266948592],[-114.41936148497552,29.971860956520345],[-114.42418714535654,29.96872644358757],[-114.42433258724304,29.966699843469087],[-114.42264803382272,29.964935065041686],[-114.42042249166417,29.966467807020877],[-114.42027413573192,29.963391268793146],[-114.41516918633772,29.96050399457897],[-114.41310430204669,29.96023792780926],[-114.41244626175597,29.95564296551754],[-114.41703257324275,29.9473547670554],[-114.41274985423513,29.953917143616138],[-114.4057255089561,29.958369910822512],[-114.4020843072093,29.95897456004934],[-114.39714656002565,29.961192887946936],[-114.39281009821673,29.96077821798491],[-114.39273236422594,29.96285254915449],[-114.39570108357185,29.9653921275451],[-114.39692044000213,29.96779500958172],[-114.39631778632094,29.96960438810072],[-114.39873653121202,29.973923937252152],[-114.39941241583483,29.977768200830724],[-114.40361363105012,29.983363461961062],[-114.40738028246443,29.985321636883555],[-114.41178139466382,29.98451369413158],[-114.41439269368777,29.986789305655122],[-114.41643595005411,29.986740810693334]]],[[[-114.38981669746454,29.993723160282116],[-114.39266160734314,29.993921212545104],[-114.38884056138602,29.989525631682227],[-114.3878386714976,29.99151220707904],[-114.38981669746454,29.993723160282116]]],[[[-114.47381980694541,30.020965944951172],[-114.47684883303998,30.021937609720965],[-114.47978215076995,30.019439626163205],[-114.47541160097285,30.015758619454857],[-114.47540765251199,30.013375107360332],[-114.47366082827733,30.013591423378045],[-114.47381980694541,30.020965944951172]]],[[[-114.48734576906145,30.053152796768984],[-114.49001630284818,30.05327215498562],[-114.49112935007832,30.04967173072447],[-114.48982944385608,30.048211902157846],[-114.48685945832847,30.050615159731933],[-114.48734576906145,30.053152796768984]]],[[[-114.54184940610492,30.091724499670136],[-114.55065892937978,30.093524785134832],[-114.55411162087637,30.091605427858553],[-114.55128978027636,30.08927389911088],[-114.5473246427423,30.09064360637916],[-114.54502739998503,30.087955763612513],[-114.5458609032342,30.0866488722732],[-114.54174601590972,30.08618910433711],[-114.54195869368567,30.084070190439434],[-114.53786894115444,30.08260151757861],[-114.53454330266197,30.084244419243078],[-114.535829639545,30.087296301570404],[-114.53991607038523,30.092140726482796],[-114.54184940610492,30.091724499670136]]],[[[-116.11265273091686,30.49718041819949],[-116.11519943181975,30.49688213905091],[-116.12167682184037,30.49308352735477],[-116.12381984771883,30.489719766931728],[-116.1231028282329,30.4850102888646],[-116.12033223697915,30.483129438990545],[-116.1103702159619,30.480518453604418],[-116.10625229292316,30.481531092404623],[-116.10725130846458,30.483025181803498],[-116.10262708673997,30.482602905823455],[-116.10020720781245,30.484388231348532],[-116.10500485294244,30.48582079739765],[-116.10485457674525,30.488831229726088],[-116.1081634637477,30.495666255224762],[-116.11265273091686,30.49718041819949]]],[[[-114.74512342382468,31.53051652055734],[-114.74476961267573,31.532094451308524],[-114.74614463156348,31.535876419233716],[-114.7472913292197,31.54174157498818],[-114.75195713289173,31.546161751350553],[-114.75463071928482,31.55189727997447],[-114.76041378460849,31.554961203496305],[-114.76602702307082,31.55597552215329],[-114.76775066770642,31.557549102877488],[-114.77170476068596,31.55870403118695],[-114.77253800573476,31.555480233593812],[-114.7712355525976,31.551176470024814],[-114.76790276946161,31.54670101083576],[-114.77395384694142,31.541658205686133],[-114.77495907443637,31.538763617575228],[-114.77247076067562,31.532897758983665],[-114.76743537216947,31.532235953183488],[-114.75903970898997,31.528591176472787],[-114.755781628173,31.528810220177945],[-114.74933683077086,31.530446029601706],[-114.74512342382468,31.53051652055734]]],[[[-116.79721664354855,31.80688054711362],[-116.79835859314511,31.806570060639444],[-116.79617459505022,31.80217046975457],[-116.79269586519166,31.80077909098378],[-116.79307244332847,31.797968494871668],[-116.78874252589935,31.794935227926885],[-116.78666729383957,31.79814234665423],[-116.78743369723469,31.801924618102646],[-116.7890698505476,31.803814475452896],[-116.78824965739352,31.805326462924995],[-116.79721664354855,31.80688054711362]]],[[[-116.8045308222072,31.813460559350403],[-116.80743688134027,31.81322565316276],[-116.80938535191467,31.809889727650216],[-116.80643986584118,31.810428045143567],[-116.80209513030366,31.80924369739745],[-116.8015022874635,31.80596510617994],[-116.80064021592534,31.808518464165786],[-116.80104416847126,31.811273704706366],[-116.8045308222072,31.813460559350403]]],[[[-114.74517747481724,31.800071236763756],[-114.75044748767482,31.80585189779447],[-114.75526481302393,31.80979195526396],[-114.76329984524085,31.81476576320847],[-114.76969524886954,31.816830013392064],[-114.77600889628786,31.817789663095596],[-114.78790138331732,31.818771108941576],[-114.79217185221069,31.81811102061448],[-114.795453096284,31.815275608242416],[-114.8002020298822,31.81268466129029],[-114.80010096401685,31.809943623482184],[-114.80222780863824,31.8059194618603],[-114.80322650593553,31.80236697262029],[-114.80245147945772,31.79709445981524],[-114.8028095066366,31.788345930557796],[-114.80692248815944,31.766902906029316],[-114.80617523615501,31.759339508717005],[-114.8049130261677,31.754455733392717],[-114.80139755233432,31.746263816211524],[-114.79692569238239,31.738136389546526],[-114.7910997735957,31.729997138609463],[-114.78513463359792,31.722906097062605],[-114.77586338860266,31.712725903690625],[-114.77133918547406,31.70834392451303],[-114.76353775538746,31.70236609518639],[-114.75996562922688,31.700270339444103],[-114.74702672739755,31.695202768031095],[-114.73811777184818,31.690693035568472],[-114.73203213109116,31.688155203104998],[-114.72948091272241,31.6876841873447],[-114.72507422909098,31.68495743305624],[-114.72230057423747,31.68473454954585],[-114.71956920297816,31.68233670983983],[-114.71454657494263,31.680734211525873],[-114.71362213577157,31.684326037964468],[-114.71219831844735,31.681806435308374],[-114.70978774515856,31.680723325189604],[-114.70255380139969,31.680007617190086],[-114.70069073403283,31.678268369746206],[-114.6953173114859,31.676830624401248],[-114.6914328538436,31.67669545085755],[-114.68791794605113,31.675279584646432],[-114.68802452645554,31.68269548392726],[-114.68926147105196,31.686735014275143],[-114.69304607130925,31.69378526595949],[-114.6994816207976,31.70053520968503],[-114.70745958534616,31.70405113623957],[-114.70979911065143,31.70569411720078],[-114.71169549395728,31.70869955744928],[-114.70848204067471,31.705615912520386],[-114.70275165458304,31.703207651660136],[-114.69758140080728,31.70032573051094],[-114.68979221580673,31.69078143475582],[-114.68666985294936,31.682172357891773],[-114.68325458085036,31.681768309768984],[-114.67707643269819,31.678503436396625],[-114.6769364801911,31.676157650998505],[-114.67136094594383,31.67015895402028],[-114.66804681803973,31.67036361745187],[-114.66779669877099,31.668862402802972],[-114.66257939316483,31.66377987277997],[-114.65988127119846,31.66421749378395],[-114.65564641137706,31.659522135838642],[-114.65196231502631,31.65850694725475],[-114.64643539812505,31.659707746267543],[-114.6421024645656,31.66982737612267],[-114.64156206054241,31.676815133958883],[-114.64320594100741,31.684415286287162],[-114.64672039125747,31.69437854540797],[-114.65201833320032,31.70393450153233],[-114.6577196679142,31.717039973112662],[-114.66212213246592,31.72163009715939],[-114.66542080636805,31.72419680769292],[-114.67585121269354,31.73099495202871],[-114.68511973879413,31.736156904606844],[-114.70753484857175,31.746116260149734],[-114.71656287942858,31.752235389341195],[-114.72582834218076,31.7607717160123],[-114.73205788634147,31.768072547961424],[-114.73657023120154,31.774801731166065],[-114.74222515906644,31.78627239649194],[-114.74579273948223,31.79495211592024],[-114.74117838100506,31.786590202794798],[-114.740047149443,31.786445127608943],[-114.74034114940133,31.79006253595213],[-114.74234976900044,31.79526096850111],[-114.74517747481724,31.800071236763756]]],[[[-117.239885882088,32.39064452206196],[-117.23838800999073,32.395733695356284],[-117.24211444719992,32.405864993420266],[-117.24167694935443,32.40934883551171],[-117.24379685997684,32.41310009530122],[-117.24429247096424,32.41572143657453],[-117.24660228942037,32.41821593870776],[-117.24895160106337,32.41780004534388],[-117.24736547489056,32.413645732939244],[-117.24746287049157,32.4097648716392],[-117.24622446015053,32.40680632260927],[-117.24385959457385,32.40556749396444],[-117.2447139499846,32.403507265392136],[-117.24338183629425,32.39775318229647],[-117.24449958870593,32.39512042428612],[-117.24299849912262,32.392791273116245],[-117.239885882088,32.39064452206196]]],[[[-117.25769597611117,32.41424431724545],[-117.25818849776442,32.416751820296156],[-117.2570609742113,32.41852791274118],[-117.2602059538649,32.41679592783885],[-117.25769597611117,32.41424431724545]]],[[[-114.81357276428088,32.49391316192646],[-114.81369335788486,32.497080703389884],[-114.81238247560839,32.49956256253972],[-114.81307432932635,32.502935798774956],[-114.81073831688451,32.50689589200766],[-114.80780844453233,32.51031081631294],[-114.80840091627476,32.51586057854672],[-114.8099277117276,32.517836228527926],[-114.81055751447155,32.52184789963826],[-114.80996682347069,32.52373538359956],[-114.80501361242585,32.525675897357985],[-114.8032128221189,32.53000418980491],[-114.80456576851122,32.53915759117973],[-114.80431913368699,32.544333658301866],[-114.80281735892237,32.54630777068758],[-114.795106234262,32.55200566633391],[-114.79323577921883,32.55417834722812],[-114.79181344609867,32.55784629750514],[-114.79206373479661,32.56000489816853],[-114.79845846442981,32.561142843586595],[-114.8055891852216,32.55942103875259],[-114.81025115639534,32.559787968217734],[-114.81225207790027,32.56223346398184],[-114.81107493388805,32.56831657035474],[-114.80706932368957,32.57358098526606],[-114.80341882147565,32.581672440498096],[-114.80131721522349,32.58835033401931],[-114.80153617243337,32.594303845660306],[-114.80318110117179,32.598948743207416],[-114.80515940224512,32.59985524767677],[-114.80714736758625,32.602864795650476],[-114.80871943068178,32.61053447362298],[-114.80903183169147,32.61688531568842],[-114.8059462518944,32.62411466627054],[-114.80422809038771,32.62495657636157],[-114.7974451206673,32.62463266800165],[-114.79254926945549,32.62152062139654],[-114.79037629140538,32.621123392416905],[-114.78543473031556,32.62236991252712],[-114.78305803423711,32.630277910729546],[-114.7814255377209,32.63255712558214],[-114.76842253585198,32.639952690713244],[-114.76464378097245,32.643168015661445],[-114.76325560162843,32.64534874301978],[-114.76313116324474,32.65037287678888],[-114.7572166906528,32.65652466735952],[-114.75252827734062,32.6591005272918],[-114.75015925465425,32.6616738416335],[-114.74717708644994,32.6693649969813],[-114.7461024020244,32.67596196356391],[-114.74368914804711,32.680278146712226],[-114.73763229965783,32.689094053730855],[-114.73504427755097,32.69062778009061],[-114.73221404714059,32.69503052055262],[-114.72985529325689,32.700950274310514],[-114.72914847308436,32.70539131816906],[-114.72554372092156,32.710139032256166],[-114.72275591878548,32.71281822812972],[-114.72331634349177,32.714284933214],[-114.71971806674827,32.718653575262465],[-114.7638619415298,32.71574641464554],[-114.88179513829715,32.7079022077707],[-114.97701052587473,32.70148672531241],[-115.09970901695135,32.69310905583444],[-115.16839810333249,32.6883687874257],[-115.26936878531086,32.68132444951323],[-115.28913322510118,32.67979454425051],[-115.30209198937297,32.67902836917813],[-115.38450419756185,32.67319843026638],[-115.40031379986863,32.6719827917683],[-115.51700710354442,32.66347946408183],[-115.53166656904574,32.66232628085828],[-115.64906709026138,32.65356496351626],[-115.7098465604339,32.64899111639795],[-115.8125595646357,32.641193476501485],[-115.87929501056021,32.6360812373527],[-115.99894159435564,32.626825116863245],[-116.07281293915344,32.62105246073554],[-116.2083901224629,32.61034231768366],[-116.35113598190895,32.598904618504264],[-116.46450404773333,32.589703006989396],[-116.59167429875168,32.57931374932792],[-116.66265620082015,32.57335612243156],[-116.73855727245098,32.566845333645404],[-116.86552382933183,32.55612926931599],[-116.8740373609175,32.55578212233462],[-116.88841163201562,32.554349317758295],[-116.93373197753237,32.550606099126355],[-116.96109695517492,32.54804431450992],[-116.99990944145736,32.54497128724756],[-117.03660652157265,32.54193003384131],[-117.04066816260718,32.54136212840007],[-117.06123110628118,32.53963114277195],[-117.07232514218146,32.53852583238637],[-117.07999385712804,32.538233311419276],[-117.12322679764424,32.53452741331779],[-117.1238278386495,32.53395352109624],[-117.12420800536819,32.52304740705489],[-117.12392923744233,32.517454119030845],[-117.12417455680509,32.509802739215786],[-117.1235349258385,32.50229469805794],[-117.12237736206328,32.49599247659836],[-117.12426888222677,32.49154147446069],[-117.12347039921292,32.49027993825575],[-117.1239266961357,32.48484413820404],[-117.12114603299511,32.481081623497005],[-117.12023998312242,32.476277132813664],[-117.12007841113854,32.47070562861148],[-117.11809658643534,32.46851451109859],[-117.11757888551568,32.46559858836957],[-117.11541542298255,32.46159594597498],[-117.11502125595473,32.45926937605071],[-117.11177511433317,32.45209006377996],[-117.11220264275147,32.45061314517835],[-117.10700756487023,32.44585126983645],[-117.105668641622,32.44319714529394],[-117.10162740866144,32.438461438689274],[-117.09873650777291,32.42621512755272],[-117.09875030427958,32.422435785949006],[-117.09753774497534,32.4203778530312],[-117.09550557374138,32.41321064957452],[-117.0915284126076,32.40236102580127],[-117.09022888078101,32.39681692214032],[-117.08572163334168,32.39007445681591],[-117.0839772119487,32.385920453381914],[-117.07679063523267,32.37554410926623],[-117.07479189488862,32.36961038442087],[-117.07107773237391,32.36962959301758],[-117.07579511115875,32.36861041206777],[-117.07099186191641,32.36479704582388],[-117.06791482559743,32.35564368609539],[-117.06176259689363,32.342888783497074],[-117.05564847155796,32.33230379918672],[-117.05196417358405,32.32400699368134],[-117.05103903694499,32.3229968706861],[-117.05130159728003,32.319553038734966],[-117.0490726928765,32.31755155798828],[-117.04994711830216,32.314613120536364],[-117.04839927048789,32.31145481349182],[-117.04732117081585,32.311670995305974],[-117.04502343431062,32.305176411286254],[-117.04501668096333,32.30222859126667],[-117.04348907865983,32.30189013199242],[-117.04145662306843,32.298505484744396],[-117.03999243705465,32.29383593067354],[-117.0406642337939,32.292177439485215],[-117.03926067482166,32.28564108063978],[-117.0349262403924,32.28053262272141],[-117.03405788898004,32.281667272694676],[-117.03112009615904,32.27974787183649],[-117.03076569951713,32.27679673070912],[-117.02752483552706,32.27531364982525],[-117.02549430308443,32.27273407424724],[-117.02439258487578,32.268712313282435],[-117.02061745739661,32.26770677412401],[-117.01749953104388,32.269752033462055],[-117.01007058693546,32.26847374953712],[-117.00465453594455,32.264270752566574],[-117.00284169467449,32.264356631953035],[-116.98821710537817,32.26053722167467],[-116.97264383652868,32.25709346978499],[-116.9681585263748,32.254415322988905],[-116.96177614398277,32.25269410771551],[-116.9568289839022,32.2520613302371],[-116.94849511335065,32.247574199144765],[-116.94301053168192,32.24609044126004],[-116.93602096183349,32.24232648530352],[-116.92952368643961,32.2360823055555],[-116.9233860204173,32.22779216197466],[-116.9173207357934,32.21462399741449],[-116.91581179331729,32.20996890042056],[-116.91344485036859,32.19772518026724],[-116.91393903860791,32.18987137656262],[-116.9125399224568,32.18597084893713],[-116.91000804504614,32.184050159444155],[-116.91049326221508,32.180946247183954],[-116.90826230752583,32.176789847866644],[-116.90733342738332,32.17079367104543],[-116.90734405017969,32.16484909290068],[-116.90416347090292,32.16559362358504],[-116.90068091585704,32.160979834635214],[-116.89910427081685,32.15749262109989],[-116.89930443810198,32.15433771836507],[-116.89591090590824,32.15271996829324],[-116.89471965038337,32.14797524697747],[-116.89507511647014,32.14485817603264],[-116.892417195456,32.13867608667721],[-116.88953845465386,32.134966193387186],[-116.88659255783375,32.12335013816619],[-116.88516676531088,32.112224959660466],[-116.8839500730441,32.09179392595172],[-116.88452566043333,32.08769088579379],[-116.8862646723453,32.086625832276184],[-116.88394564657415,32.080546235560746],[-116.8823327944574,32.08009646138959],[-116.8815310233004,32.069781341433895],[-116.88159411441166,32.05883756053407],[-116.88322058218324,32.05197827169832],[-116.88484448380609,32.04993545314147],[-116.88729191507014,32.04899875950292],[-116.88452343132178,32.04279171264494],[-116.88636390774752,32.038888660896475],[-116.88565013468724,32.03664187957281],[-116.88682130529969,32.03452634116718],[-116.88167826044554,32.02577983801132],[-116.88141842171774,32.02084932179736],[-116.87921904196736,32.01738156827531],[-116.87542019782904,32.01336230290076],[-116.87278816935702,32.011582410827714],[-116.87030750193111,32.00827924726036],[-116.8660856423279,32.00620137407196],[-116.86430426739162,32.00425042913412],[-116.86421887119423,32.00011734573769],[-116.86026756480464,31.999504751393204],[-116.85955236417288,31.995136172059176],[-116.85337540084458,31.991029742467447],[-116.8514101317333,31.98808092290716],[-116.85172092730471,31.986279676603942],[-116.84938783480499,31.987490590656876],[-116.84532668997701,31.98725078066974],[-116.84231903572424,31.985577016747072],[-116.84117476099232,31.986635372498938],[-116.83498110651419,31.98031138878605],[-116.83130773094922,31.978224096512292],[-116.83020362694668,31.978864527950975],[-116.82488621227554,31.978371009136367],[-116.82403823948567,31.977461843435776],[-116.8179871726681,31.97970590169075],[-116.81350275103983,31.979151470322563],[-116.80568237839049,31.98167294502889],[-116.80016412878399,31.982376285095995],[-116.79270935816379,31.979030483699148],[-116.79059327446026,31.976964552405207],[-116.78251240179287,31.978577854661808],[-116.76910374956202,31.97127277664515],[-116.76414862213153,31.966308183264346],[-116.75918901535175,31.955366324251713],[-116.7569723322078,31.948280060553714],[-116.7555763393056,31.941639125111635],[-116.75537309495593,31.937573329721488],[-116.75690187025987,31.93131667789379],[-116.7554259313838,31.928047470725858],[-116.75539628586438,31.922020040724533],[-116.75599203774982,31.920937715308185],[-116.7554431764915,31.915489967442227],[-116.75612419055176,31.913626881374796],[-116.75043183721357,31.905922859353552],[-116.74579109877078,31.902022841280257],[-116.74128452732606,31.90269143857688],[-116.73434994193417,31.90230470154927],[-116.73090934885045,31.90054635969898],[-116.72785088708605,31.901928521487775],[-116.72221954236295,31.90284339701401],[-116.71895596223379,31.901638398845932],[-116.71788434277636,31.899589011099295],[-116.71490157987034,31.89767864276274],[-116.71131156187505,31.897046944054978],[-116.70850622495112,31.894578252035274],[-116.7025337498361,31.890764767593623],[-116.70579604121741,31.893926530563817],[-116.70415461108712,31.89572953253503],[-116.6994717066928,31.894864143483744],[-116.69232524077324,31.889285454110222],[-116.68883146265193,31.884440804894894],[-116.68705669171038,31.88346349112186],[-116.6841320430297,31.878784737868443],[-116.67884199623245,31.872396387900437],[-116.6776187723072,31.869861490422068],[-116.67497058604192,31.86872277764587],[-116.669630555877,31.864679980096184],[-116.66859858048156,31.861413917977984],[-116.66449271479064,31.862619832920814],[-116.66266821092108,31.864287070563194],[-116.65897643059782,31.863341697205783],[-116.65701995633071,31.861554068016062],[-116.6505344976145,31.86023502679228],[-116.64321027167222,31.860853700731354],[-116.64014440199071,31.86021426863067],[-116.63553743994851,31.856276146085293],[-116.62721822400692,31.845695236834274],[-116.62761955338465,31.848825457342514],[-116.63042580397763,31.853986280069364],[-116.63227683956359,31.85356105653227],[-116.63347568928333,31.855206261796752],[-116.63120546889274,31.857580310572246],[-116.63113413255348,31.859166583290744],[-116.6290132548213,31.8581096301574],[-116.62893992718142,31.861142433194345],[-116.62156430142721,31.857735799476472],[-116.62487463096443,31.855527963690122],[-116.62336217917601,31.852434857992705],[-116.62205457468752,31.853532240445134],[-116.62325990033185,31.855247502374425],[-116.62104146254825,31.856378975478606],[-116.61804811843291,31.852861307980163],[-116.62003470924623,31.851137824973193],[-116.61614411350808,31.846180935604934],[-116.61808829640944,31.84514385064],[-116.61646125549356,31.842315921954253],[-116.61412709334718,31.843041549516954],[-116.61173207779609,31.83795131018718],[-116.61048889149055,31.833002321071774],[-116.60927776371057,31.821817757623705],[-116.60982213194103,31.81383088119418],[-116.61155105877504,31.80436882525379],[-116.61346176651875,31.796427124856564],[-116.61549950616148,31.7906779017693],[-116.61975692219107,31.78271603467232],[-116.61881285016653,31.777780943706034],[-116.6154733549937,31.775584954659394],[-116.61920000028283,31.773200000106442],[-116.61898268944748,31.774909398180228],[-116.62208055928738,31.775629900985166],[-116.62558295089451,31.772319588356368],[-116.62964436804123,31.760863452238596],[-116.6343497237159,31.74981781897668],[-116.63687569590047,31.74483127379989],[-116.64250455662415,31.735088019688646],[-116.64926449460341,31.72748876991608],[-116.65585027589401,31.722293445152957],[-116.6627835279757,31.718681698921102],[-116.66828522052873,31.718188318290004],[-116.67199926490531,31.718790378671997],[-116.67727795380551,31.725447735377713],[-116.68265000470234,31.729218879461826],[-116.68744916438624,31.728962492174105],[-116.69777011812357,31.73265523011372],[-116.7056068287319,31.73888299149479],[-116.70785947355228,31.738192931179412],[-116.71044614519184,31.74036507073049],[-116.71320418071014,31.740701818672335],[-116.71427159918898,31.742163945128368],[-116.716817335619,31.74227565055014],[-116.72084181632306,31.745927998020818],[-116.72395329415542,31.747837998995976],[-116.73289929169175,31.7500713859377],[-116.73710380800264,31.749097793554995],[-116.73922089284918,31.74976437172171],[-116.74228342662587,31.749035752822635],[-116.74165987818083,31.748046399960913],[-116.74456107745789,31.74337367096041],[-116.73625828530061,31.740692420105802],[-116.73533642858166,31.73831856289206],[-116.72943896057296,31.73232702341346],[-116.72652744821619,31.73325010335128],[-116.72686169152723,31.73002427588233],[-116.72490642141821,31.72902907596466],[-116.72445406267525,31.72693252924637],[-116.72658548674553,31.727307415438872],[-116.72428550070498,31.72270080623491],[-116.72107987569944,31.723575811852356],[-116.71792338503218,31.725750715273477],[-116.71495009665057,31.725206083939156],[-116.71707341311685,31.718047956110695],[-116.71681832236789,31.716193064493837],[-116.71398064910431,31.713860522325888],[-116.7122558583747,31.713797657596672],[-116.708331890963,31.711575171353445],[-116.7086236823057,31.71461071576215],[-116.7062125857799,31.712019425770507],[-116.70427342140869,31.715514425083768],[-116.70261604557925,31.716414790641522],[-116.69657199136566,31.716217417704],[-116.6942542314028,31.711224579114628],[-116.69220336697333,31.708618003741492],[-116.6901786432773,31.70881045011504],[-116.69049882932194,31.70709387631672],[-116.68855833326103,31.706094664085867],[-116.6916520994202,31.705401380850958],[-116.68730754143155,31.701697710428334],[-116.68380780964503,31.70276365044407],[-116.67764077973777,31.69969054846996],[-116.67709364451633,31.696925286684007],[-116.67988750477531,31.696560704635715],[-116.67592606564989,31.69195763628096],[-116.672557462528,31.68957253834668],[-116.67196986877775,31.688146968481533],[-116.66605462754615,31.681890573789076],[-116.66501825577978,31.678355606547143],[-116.65685735307142,31.67360492216983],[-116.65860002602187,31.673200273252974],[-116.65694604261245,31.670945884318428],[-116.65503267909037,31.67049227117991],[-116.64993101952712,31.66453939506414],[-116.65002171557137,31.658884208643826],[-116.65175695865173,31.650569844986705],[-116.65422257801481,31.642327497122608],[-116.65698313606265,31.63635852887205],[-116.65923825902195,31.629649737435898],[-116.66231289220468,31.626064406449302],[-116.66307461467153,31.623796890067183],[-116.66761885238884,31.617854672311125],[-116.66628639383185,31.613615044608196],[-116.66715805015019,31.60924868543509],[-116.66482789795816,31.604739488085727],[-116.66394811529989,31.60008387884966],[-116.65873059694155,31.595839633399976],[-116.65467729412791,31.594072710237526],[-116.65368491082614,31.5906091815051],[-116.65077175199144,31.58820650049006],[-116.65038286024605,31.586201198889],[-116.65170555836067,31.581973323453326],[-116.65382255619426,31.579139854169057],[-116.656949256627,31.57868295020336],[-116.66602273736356,31.579701426162558],[-116.66900901344172,31.57777754599698],[-116.67280575586767,31.57927048286075],[-116.67538327267022,31.577880535864267],[-116.67742716040664,31.57339992632882],[-116.67975348935005,31.573067221168117],[-116.68114445295402,31.571377952721775],[-116.68331843039357,31.572187414645043],[-116.68559780080324,31.57109275212656],[-116.69232619570874,31.570982170533398],[-116.68877691585169,31.56779407831135],[-116.68985450135528,31.565266932834845],[-116.68810680542083,31.560434555729273],[-116.68868539869362,31.556992425578756],[-116.68990829065774,31.555970541213185],[-116.68717818529939,31.55523024719139],[-116.69104853557008,31.554985086567683],[-116.6893608335173,31.553331216647337],[-116.68735780287119,31.553424046883663],[-116.68661890760575,31.551270494872256],[-116.68151125208323,31.552104321268644],[-116.67792993378868,31.554868737616232],[-116.67357950653786,31.554222915815558],[-116.66890002642594,31.55252656931617],[-116.66455778989763,31.546805287820348],[-116.66598726073391,31.54358084462484],[-116.66460630507407,31.542214796738676],[-116.66675432484328,31.541170249615902],[-116.66414440144456,31.536335733249643],[-116.66063840710513,31.53605568468862],[-116.6593825119918,31.53382825301395],[-116.65945958685239,31.529144488344002],[-116.65623396445005,31.527040053777114],[-116.65182134072518,31.521118070974808],[-116.64953568011725,31.521090293842576],[-116.64590205990817,31.51799832061721],[-116.64845938516987,31.51606379245146],[-116.6447584621788,31.51558735945639],[-116.63701991824337,31.518503214437487],[-116.63097109872012,31.515262648211092],[-116.62921248523287,31.51324341015237],[-116.62660242253497,31.51322078725383],[-116.62242958756957,31.510125333179587],[-116.62132370544805,31.505372736906793],[-116.62001415945554,31.50370656868597],[-116.61577742795532,31.502021399978105],[-116.61156905484614,31.498465578552214],[-116.60871447450387,31.497350982626585],[-116.60615142304698,31.48713865499309],[-116.60667808245319,31.484878313159584],[-116.60326845610234,31.476512007000224],[-116.60422710702346,31.472751776559278],[-116.60317306096584,31.47017237196161],[-116.60467433158703,31.466868877999843],[-116.60320307164733,31.466330479018268],[-116.6031371002444,31.4639675363199],[-116.59560456349777,31.461775603587682],[-116.5931087242729,31.463294632349687],[-116.59074697211582,31.462715641932448],[-116.58950825034697,31.46471243193423],[-116.58273676959385,31.466523256119785],[-116.57740525734152,31.46640713602102],[-116.57092651984397,31.465117027789177],[-116.56155964929411,31.45942982723352],[-116.55870692993307,31.456504016867825],[-116.55762410748201,31.456952538329915],[-116.5556601045156,31.454555595487477],[-116.55038273449259,31.452356843100404],[-116.54866418201101,31.450089283049408],[-116.54799299943465,31.446745516654403],[-116.54479562789192,31.44721642803472],[-116.53999882264043,31.444042458145304],[-116.53525182262212,31.442787732659838],[-116.53272754146747,31.439936385977717],[-116.52918576590429,31.43923116506369],[-116.52989862142636,31.438202967291772],[-116.52639294301082,31.436261986936643],[-116.52453219152318,31.436772901416475],[-116.52184573913684,31.434689786046476],[-116.5216496706451,31.432013385620735],[-116.51727541573666,31.42512449080209],[-116.51474043223345,31.42339845131812],[-116.51203439944629,31.419094091782824],[-116.5122358152251,31.415075268758073],[-116.50980592099518,31.415348937776514],[-116.50333448057074,31.41318267089241],[-116.5006340460115,31.410756820310326],[-116.50012058686428,31.407951149081498],[-116.50152266970889,31.407816888692366],[-116.50162537273246,31.40521788712408],[-116.49807350706112,31.40286481942377],[-116.49575308505962,31.39712629190018],[-116.49605118406174,31.395031249583155],[-116.49206096443345,31.392327050518816],[-116.49281630148005,31.391445727253767],[-116.49070800346544,31.38933074018172],[-116.49134776876735,31.38424756190591],[-116.48751609552431,31.382192458819645],[-116.48539510263595,31.374891527480656],[-116.487881783099,31.371945474190284],[-116.48716818471416,31.369874823847],[-116.48452076332194,31.367190664901784],[-116.48189681348401,31.367340084022203],[-116.4802786670532,31.364698729577867],[-116.47879915065863,31.36512691258679],[-116.47423212036836,31.36082537962102],[-116.46971783169238,31.361393614677922],[-116.46800083327821,31.35714757683604],[-116.46905517988944,31.35495787666946],[-116.466992436118,31.352546579412262],[-116.4678577152439,31.351737411759245],[-116.4644359948,31.349049677023118],[-116.45948226257008,31.34806247915475],[-116.45850273624399,31.349071281192437],[-116.45480592596283,31.34514680006231],[-116.45319149814424,31.338030630215655],[-116.45296951721463,31.334260829913717],[-116.45413262761548,31.332467177211754],[-116.45726223141577,31.3326323862737],[-116.45585637471072,31.33005104315805],[-116.45362626706566,31.32925885712183],[-116.45310763735534,31.33143786767215],[-116.44918887636277,31.33111426567359],[-116.44717083855295,31.32659377969412],[-116.44732158497504,31.32462630854883],[-116.44448639929266,31.323091212474935],[-116.44198525993426,31.324859810875466],[-116.43641732270777,31.321394141639416],[-116.43298163010581,31.314333645915497],[-116.43278373764855,31.312443455390678],[-116.42868295618996,31.31053198037597],[-116.42578948477404,31.310149279655263],[-116.41694834279787,31.302704228885773],[-116.41507157148652,31.295074468079008],[-116.41737879362483,31.29428927974135],[-116.41647057530747,31.292811122927844],[-116.41158378770234,31.29161408766106],[-116.40915569795567,31.292482731327198],[-116.40650077804827,31.29178232844714],[-116.40299123705643,31.288583306321527],[-116.40153557510223,31.288262498351685],[-116.40006852793147,31.284807391050606],[-116.39763127123996,31.28564795321961],[-116.39359161093932,31.28467308388025],[-116.39071412371203,31.281298453874967],[-116.38866593552808,31.274687383446576],[-116.38446091084518,31.266990336141134],[-116.3824338598937,31.26491239063779],[-116.38028679917585,31.264677447124086],[-116.37617957555528,31.261560958023892],[-116.37134311042087,31.257007718395187],[-116.36985674918986,31.253409964877505],[-116.36517964625887,31.249859421804956],[-116.36187319562845,31.24365600772245],[-116.3583456775923,31.238870655020833],[-116.35506768810905,31.23216877219471],[-116.3525793528097,31.224185958221483],[-116.35166185207493,31.21661921789382],[-116.35253739636312,31.213783000984336],[-116.34038402063555,31.208681970619978],[-116.33809959623505,31.20096297581506],[-116.33617636554658,31.19899140411485],[-116.33456340778457,31.190510303054793],[-116.33146944648826,31.188862375195242],[-116.33180845100827,31.186882427083788],[-116.32919551434026,31.18403803413861],[-116.32900781105167,31.182452846255956],[-116.32535462626015,31.180526203392958],[-116.32545990373609,31.178560637743317],[-116.32313955878658,31.175383095342397],[-116.3226710902008,31.172444371772826],[-116.31979646750733,31.171681971253747],[-116.31795687783153,31.16632474335853],[-116.31362189492023,31.15953044680043],[-116.31082399815449,31.15820356956624],[-116.30905955473042,31.150730033261368],[-116.30951353216642,31.1464877309038],[-116.30906435282947,31.134793970105022],[-116.30994808718327,31.118735847222922],[-116.31098591430919,31.108063546430287],[-116.31283720094928,31.097354499322194],[-116.31833426150962,31.072175655865237],[-116.31855899412221,31.06875139850723],[-116.32222844786946,31.050911249252977],[-116.32301511403972,31.044526169736116],[-116.32634265066315,31.029081718988152],[-116.32695092735418,31.02398150298768],[-116.32908036665356,31.014893504433076],[-116.33281192900142,31.005472948763668],[-116.33301683681373,31.001279533452134],[-116.33390716609415,30.999976223818067],[-116.33486369268843,30.993780060411154],[-116.33839396491783,30.985472669788294],[-116.33810977080424,30.980881680003336],[-116.33903137440274,30.978433933063627],[-116.33777262193144,30.971923429516153],[-116.33179021900975,30.962394379195985],[-116.32836729302613,30.958617759555466],[-116.32231822250475,30.956173088899504],[-116.3196780457613,30.95595742649425],[-116.30164797305565,30.960278019200416],[-116.29344987768098,30.96386044431648],[-116.28864433617287,30.966709062630343],[-116.28481362836209,30.969705546837417],[-116.27881884808005,30.969273478814614],[-116.27117173582388,30.96780180750909],[-116.2675011798679,30.965070366865973],[-116.26556595417617,30.96243836051002],[-116.25876489779426,30.951411247614146],[-116.25540203471388,30.94729900030825],[-116.25287343605561,30.942385429521607],[-116.25034638651408,30.94087827175855],[-116.24431578678536,30.93255456301671],[-116.23758525441167,30.93413819178727],[-116.2314822626895,30.930358992384924],[-116.2280128527949,30.927197038019017],[-116.22449874990735,30.92121795238353],[-116.22151466504289,30.91781475021355],[-116.21970430863041,30.917837192587683],[-116.21535413106585,30.914014140042752],[-116.20994596783214,30.90502327103701],[-116.20862618162977,30.901194547767375],[-116.20777583406755,30.893120664124297],[-116.20498849318079,30.88753514508022],[-116.20178286647257,30.884574773265513],[-116.20064440382254,30.882373775457154],[-116.19116209858782,30.87817792391826],[-116.18727906133495,30.87396363770847],[-116.18397440867375,30.871696261869886],[-116.18037884945892,30.86683243741578],[-116.17624476541965,30.862834746875023],[-116.17359222736377,30.86144946583653],[-116.16896619782358,30.86046008359466],[-116.16565199388612,30.86097548720261],[-116.16088912516432,30.863564967598563],[-116.15614829407644,30.862599163035668],[-116.15108443261107,30.860640289464072],[-116.1408365006979,30.854278399942018],[-116.13402759774965,30.848031129620324],[-116.13166661572149,30.84480876839541],[-116.1295816146195,30.8437791509092],[-116.1193072927017,30.83556279653186],[-116.11486001307492,30.83149794146277],[-116.11234440321095,30.828412500721868],[-116.10636728764143,30.82353245903198],[-116.10511925241161,30.823418768819522],[-116.09992186611134,30.820201335225136],[-116.09671358558751,30.819169437386506],[-116.08999700363904,30.819929495706447],[-116.08772866648036,30.821886882702017],[-116.08076810127324,30.820003465262403],[-116.07728842821473,30.818456192338942],[-116.07100696439994,30.814460702413555],[-116.06485316016398,30.80809696047038],[-116.06001988114929,30.800557613937485],[-116.05747904851683,30.79571743775091],[-116.05168356400355,30.78079930099284],[-116.04993851983778,30.7730113673299],[-116.04865522425621,30.7608624724362],[-116.04888822219732,30.75363535886288],[-116.04799609990334,30.75072273119474],[-116.04808299943272,30.744786986226302],[-116.0466512447016,30.74015329696664],[-116.04570586116432,30.729919726603782],[-116.04669261218169,30.718631619172754],[-116.04394399359171,30.716364876963553],[-116.0426727822906,30.713766983384346],[-116.03934601234636,30.710349068166693],[-116.03331010919806,30.700400247188952],[-116.03160651822282,30.694163461282926],[-116.0305940141896,30.684149235931216],[-116.02832281658573,30.67606354936879],[-116.02736644521144,30.666584237730547],[-116.02664255916096,30.64756363313643],[-116.02676077949815,30.635557061377767],[-116.02982283681428,30.591758914699085],[-116.03117142853739,30.5820083423435],[-116.0314514771265,30.57557548764572],[-116.03251096479221,30.56459727553016],[-116.03417731136022,30.55636028666123],[-116.03637710581188,30.543229104020043],[-116.03909178945526,30.532429991949527],[-116.03938623301343,30.524931916305945],[-116.04262977745117,30.50762973450668],[-116.04337307582887,30.501332684551585],[-116.04682352636928,30.49638588137617],[-116.04822412542592,30.49225867342102],[-116.04636029727294,30.47959604494406],[-116.04753880787297,30.47561079194321],[-116.04723544667564,30.470497327493092],[-116.04482663157779,30.46920950104601],[-116.0423416171883,30.46617204723225],[-116.04302695608749,30.46329305959904],[-116.04040781823198,30.462488181463016],[-116.04047887811163,30.46069723357664],[-116.03553852282641,30.458447977897492],[-116.03407146253363,30.451902012452592],[-116.03437781844065,30.449238972708145],[-116.03252796031808,30.44673258542963],[-116.03011412970329,30.43541519789585],[-116.02699320044337,30.435230251429516],[-116.0237937003418,30.432511408594223],[-116.01846483114605,30.43192875382283],[-116.0164185497967,30.429092281271096],[-116.01311044265594,30.421731667577774],[-116.0094232091273,30.411362824567448],[-116.00717200144987,30.403161313228395],[-116.00508723729774,30.392054567609705],[-116.00449623903194,30.382874277894814],[-116.00476191387884,30.376587955573257],[-116.0070738798226,30.37436505281272],[-116.00563166230984,30.37038305072963],[-116.00577735438901,30.3667035561964],[-116.00683293831969,30.366120703175966],[-116.00431588838416,30.363203699940584],[-116.0020722944239,30.362351766673385],[-116.00001326943709,30.359697680777742],[-115.99722924781327,30.359672397862823],[-115.99500556953035,30.36096273680465],[-115.99017787002435,30.358071032180987],[-115.98792854599026,30.358578317776562],[-115.98492266605854,30.35752796353563],[-115.98247770362349,30.359676035098573],[-115.98378333520941,30.36097908128295],[-115.98267145876605,30.3631645328648],[-115.97995285324112,30.365224850691504],[-115.98372250708599,30.370536177059932],[-115.98878518811995,30.373590590965705],[-115.98966166166531,30.38153072853453],[-115.9916380871386,30.38204275734745],[-115.99039999970705,30.386399999733896],[-115.98747935077193,30.38898256006894],[-115.98439490520673,30.388323319410233],[-115.98301400498235,30.390316400019742],[-115.97745695733869,30.39472891316842],[-115.96946837731747,30.398043456038806],[-115.95974855473372,30.401358329395237],[-115.95106968633962,30.403762682184436],[-115.93874216972506,30.404878457991856],[-115.93060154435244,30.404193244382782],[-115.92593855656003,30.403289563343606],[-115.91686377115218,30.400747687610988],[-115.90821535771869,30.397456224144378],[-115.89860036041529,30.39195060920656],[-115.88598024402194,30.381731106504162],[-115.8770007539731,30.377810306443735],[-115.86623728120873,30.371098313238065],[-115.85845697416329,30.365283814223687],[-115.84955522576513,30.35773589349509],[-115.84168119252735,30.349563585916712],[-115.83728387581931,30.34416978390101],[-115.8342354724187,30.339302729018527],[-115.83027602932282,30.32894373572907],[-115.82554246343591,30.317598168832603],[-115.8158878211674,30.308408304771035],[-115.81345305435889,30.302241166607132],[-115.81208737590964,30.30105955680392],[-115.80888244215072,30.293422069460178],[-115.80762682583588,30.287772931915583],[-115.80279978667471,30.27991330305707],[-115.80121107897736,30.27371005595444],[-115.79886037328038,30.26064601552298],[-115.7990676339981,30.258602613662788],[-115.79651841398481,30.252041287142845],[-115.79521148662292,30.23825036280465],[-115.79539502807472,30.22572277920966],[-115.7946634907616,30.21372773811538],[-115.79487105910607,30.194727578787365],[-115.79545573832922,30.187348625391337],[-115.79818265695195,30.169213483843578],[-115.79932150024274,30.165689054486165],[-115.79981853988198,30.160994205849875],[-115.80271279447345,30.152129122276165],[-115.80219598702638,30.148075657093273],[-115.80021485686103,30.14101508399608],[-115.80195556203171,30.134437466913255],[-115.79558541106576,30.127868987110162],[-115.79578029367434,30.126417231410358],[-115.79339942983313,30.12430132105851],[-115.79284885980837,30.121129692414343],[-115.7910888181516,30.118361941589],[-115.78927314556819,30.118372395676943],[-115.78795670093177,30.11338427620109],[-115.79021752048095,30.112413343591527],[-115.78603550367785,30.10630230743834],[-115.78720237619461,30.105578904642528],[-115.78472801172973,30.100607235251175],[-115.78455641473056,30.096434365940638],[-115.78265490750812,30.095818566421542],[-115.78433038042124,30.09444729955419],[-115.78199613341269,30.093392421934595],[-115.7816958086072,30.087250484936362],[-115.78316367750944,30.086381948859128],[-115.78219817312288,30.084563202928734],[-115.78283925992031,30.080762355933018],[-115.7851455848778,30.075933257203076],[-115.78470966801592,30.068628029992],[-115.78585150137025,30.06385473928833],[-115.78540420974457,30.061676773346505],[-115.78762866564387,30.053449410151188],[-115.78799472438686,30.047417567610182],[-115.79067711324205,30.03845478848399],[-115.79237260701757,30.03530851521083],[-115.79133918166684,30.034424394790733],[-115.79346326830205,30.023569748588784],[-115.79569979652075,30.014337239530164],[-115.79659999658423,30.007941880725866],[-115.79824839363687,30.000478777097612],[-115.80031353544632,29.99433259719393],[-115.8046819196162,29.974302680734638],[-115.80707782770446,29.970481705303598],[-115.80783211920857,29.967266571540677],[-115.81027206320573,29.961650556595657],[-115.81045005710888,29.958168909212986],[-115.8090323599011,29.956709387658748],[-115.81023737986499,29.954199090310226],[-115.81203733102353,29.953488752515625],[-115.81170517139384,29.948757279869426],[-115.80932216327778,29.952520953896396],[-115.80394938740386,29.958305836289412],[-115.79776510866367,29.958076561319785],[-115.78809090885272,29.959442006438167],[-115.7820814636139,29.957443555339523],[-115.77581840885296,29.9568921553319],[-115.76432972300006,29.95349786059063],[-115.76046153315838,29.95161748925267],[-115.75635614875137,29.95158482029359],[-115.75371479634373,29.949507183207743],[-115.74734669750325,29.9479254974558],[-115.74172680406036,29.94742787032999],[-115.72991570997607,29.93549410083841],[-115.72525414757223,29.929393878222527],[-115.72324556672356,29.928462507495112],[-115.72094106718885,29.924951052569895],[-115.7188546061401,29.920216760152073],[-115.71333320347975,29.915509876283068],[-115.70846463673018,29.90883592307364],[-115.7079135938983,29.906033213787794],[-115.70197249806716,29.900309202197604],[-115.69730421453482,29.887034319509553],[-115.69452958005922,29.874316999785663],[-115.69309744725717,29.864978435981982],[-115.69182243837986,29.86213841659702],[-115.6905991705845,29.855186090668894],[-115.68697768996202,29.846998784838092],[-115.6853746043655,29.83997913505948],[-115.68455060788585,29.82646556491818],[-115.6855504434264,29.8130608009223],[-115.68634070378204,29.808045480026635],[-115.6902715885982,29.795307373945775],[-115.69492809282775,29.776861632897806],[-115.69558268458564,29.77160425766766],[-115.6975591143269,29.765487598283528],[-115.698362047258,29.75680406800933],[-115.6998776098693,29.75520345888765],[-115.6947915714374,29.752316770019092],[-115.69543437922539,29.75141025416133],[-115.69024601921114,29.74935679527448],[-115.68854377155043,29.74690964318819],[-115.68475056922165,29.746458967592844],[-115.6804281741392,29.743578553317718],[-115.6787521093317,29.743975881338713],[-115.67482569631755,29.74085301155833],[-115.67187782967972,29.736883100449177],[-115.66616569239449,29.732451712191562],[-115.66143258395573,29.7308607849277],[-115.6522986405626,29.72125829294265],[-115.65083292612985,29.721146380879418],[-115.64457258482076,29.71462343392494],[-115.64068574269379,29.71343324743316],[-115.6290352515083,29.70423226460474],[-115.62481421250101,29.701200240464516],[-115.6210148597284,29.69638038425046],[-115.6189917350988,29.695116073941904],[-115.61467537739657,29.696258637353424],[-115.60711245515989,29.696706173268808],[-115.60195600833185,29.698185857790918],[-115.59040081949883,29.69537924145459],[-115.58457529185108,29.692181288958693],[-115.58040533524502,29.68854466273649],[-115.57541871939401,29.68322953099181],[-115.5670527209328,29.670732711266453],[-115.5634773505464,29.663592289408086],[-115.55885575072222,29.662936901247974],[-115.54904394467519,29.654822141971863],[-115.54206996931651,29.646478355078102],[-115.54046078015358,29.64388936405959],[-115.53463472048264,29.641283013448117],[-115.53247642218804,29.639093965194036],[-115.52415412165436,29.635218321858133],[-115.51995350161462,29.63079230908977],[-115.5167135717362,29.629025181725524],[-115.51266870329727,29.62150922213391],[-115.50928120893366,29.620835533492368],[-115.50382206828533,29.616456046443773],[-115.50178719367233,29.617017177757646],[-115.49967283985194,29.615690384451113],[-115.49787807524729,29.61699235864944],[-115.49309250825297,29.61680026597361],[-115.4918232297153,29.619307198114086],[-115.48778910308113,29.621908164228557],[-115.48337122218464,29.62251945295577],[-115.48111582371064,29.625922564110624],[-115.47838015903807,29.62682428137822],[-115.4717557965842,29.6269120183685],[-115.46674325044881,29.62563790907683],[-115.4630305048089,29.626732302304447],[-115.45712565920377,29.624908332531334],[-115.45135898858803,29.621750948785973],[-115.44928316046713,29.619199548043696],[-115.44582102565522,29.618979391721723],[-115.44406096080348,29.617846098278676],[-115.44042213309166,29.61356461719805],[-115.43428482127558,29.60943379957729],[-115.4321530020639,29.605066444758506],[-115.427668041728,29.60064592664412],[-115.42033171315046,29.596734087029404],[-115.41474089565503,29.592475666858945],[-115.41060338932004,29.58705958563263],[-115.40708588152205,29.57920730226914],[-115.40408486431352,29.57749608169803],[-115.40081169653183,29.577516287978085],[-115.39272238511501,29.574180204203685],[-115.38788449342002,29.568827850616003],[-115.3875399195743,29.5666322274854],[-115.38500851417433,29.565135402643534],[-115.38472726700019,29.56333096434838],[-115.38190288122667,29.562528328710243],[-115.37853769350642,29.558362239197265],[-115.37271413340437,29.558563872403226],[-115.3698196588577,29.560600978467846],[-115.3654114764127,29.559060285133683],[-115.36373565265245,29.55974416325938],[-115.35856039024316,29.55875342134226],[-115.35328573785654,29.556757631190237],[-115.34797280457389,29.557684662750944],[-115.34054342372224,29.555881317404953],[-115.33620034249344,29.55205598782993],[-115.33058744022031,29.55092160169113],[-115.32206630535882,29.545562551383057],[-115.31822015317442,29.54494676342682],[-115.31657856833374,29.54338889591554],[-115.31232480111953,29.54179346020419],[-115.30936733391854,29.54150739768454],[-115.30425111396062,29.542324361208387],[-115.2977576741709,29.540207078096728],[-115.29252111889474,29.536260150881958],[-115.28954614030579,29.53309385658946],[-115.2862975635079,29.531878992278052],[-115.28057056834928,29.527334382756123],[-115.27641181854455,29.525024728084873],[-115.26874091394558,29.522524166171593],[-115.26557397743272,29.518928460697794],[-115.2604475817908,29.51892162718252],[-115.25646872657728,29.51820779259924],[-115.24827323427854,29.513057925167914],[-115.24373165538032,29.50908800553401],[-115.2363639372794,29.500844860698123],[-115.23209919151145,29.49287799280313],[-115.2308456036518,29.491778553132292],[-115.22910931424883,29.48679275324588],[-115.22406043378157,29.484409510188073],[-115.21828089721288,29.479706811287713],[-115.2186929074183,29.478239458815153],[-115.21428477608629,29.47646091816347],[-115.20993829133084,29.47034124719511],[-115.20167052790367,29.457865505806865],[-115.19575557507443,29.445850167191963],[-115.19313948581942,29.438265400969613],[-115.19266202121344,29.434168475277374],[-115.1910187674705,29.429905326611333],[-115.1885757122941,29.427837461802483],[-115.18289735965828,29.42946393395573],[-115.18153313798877,29.431380546973912],[-115.17741978321067,29.43129017769064],[-115.17258910232204,29.428441500941574],[-115.17098800594681,29.429759013588296],[-115.16640535062464,29.428225764471108],[-115.158891865285,29.42266639866216],[-115.15374872372655,29.420694116039044],[-115.15047952515818,29.4219980461354],[-115.14726155880265,29.421765066860246],[-115.14085502356647,29.422838612959197],[-115.13513159539286,29.421380168882024],[-115.13021861733176,29.41814693615106],[-115.12812586464776,29.42009031958463],[-115.12540886417139,29.42068326689173],[-115.12054764293134,29.41962223399281],[-115.114118030393,29.41974188924189],[-115.10721106048328,29.421508617816755],[-115.10411385889455,29.421310577128338],[-115.09948745152855,29.419593699020027],[-115.09525756830249,29.41677328211449],[-115.09007442174368,29.41796521586548],[-115.08465454530074,29.416945053984477],[-115.0805385065342,29.418329441367007],[-115.07426541266682,29.416249995017836],[-115.07253901022796,29.41661388611766],[-115.06681261236417,29.414094752070014],[-115.05614343658522,29.406917816708585],[-115.05304894022731,29.406931805850377],[-115.04820947834912,29.404876969249415],[-115.04399877448151,29.401579515424714],[-115.03603854967793,29.400428934764136],[-115.03240978223619,29.398119075742898],[-115.03040651291963,29.39823687417794],[-115.02250357337198,29.393323496024152],[-115.01179618941558,29.385437034284337],[-115.0077447537497,29.385996187018236],[-114.99947847005427,29.382642667470634],[-114.99635640055749,29.383267250893482],[-114.99204802795822,29.381625719309568],[-114.98886196793467,29.381523396744228],[-114.98523534624422,29.382740505403603],[-114.98139917363221,29.382141101613513],[-114.97335696805595,29.377369800889767],[-114.96931918681764,29.376556469712966],[-114.96701124194101,29.375137834202746],[-114.95899890915149,29.368639514243625],[-114.95680286350677,29.366144525242305],[-114.95081547978089,29.36151133379292],[-114.93444784955727,29.340140979535533],[-114.92463087425926,29.330245786369005],[-114.92006587680129,29.327161807191374],[-114.9108778451299,29.31436267983605],[-114.90729650311732,29.314440522724283],[-114.90388835008281,29.31200095564634],[-114.90138820331066,29.3071421687402],[-114.89785362666237,29.30371820255192],[-114.89460928211378,29.302876705057145],[-114.89122176079655,29.299012217152665],[-114.88766952191571,29.298144041796206],[-114.88397045293453,29.293759584442228],[-114.88066742737453,29.286248003563685],[-114.87774816694258,29.284247534182953],[-114.8764564306062,29.285419967203836],[-114.87344674155815,29.28478059942944],[-114.87080305670526,29.28099861553204],[-114.86772711312312,29.279920288353196],[-114.86362020313192,29.27585010787999],[-114.86101470681155,29.270767782550365],[-114.86142480000603,29.269837910102865],[-114.85780484658397,29.264947219705505],[-114.85414898738185,29.262388905525256],[-114.85105753946516,29.26134201135676],[-114.84694284385063,29.2530053476047],[-114.84619007488249,29.24679372638343],[-114.84272401471071,29.244757123884824],[-114.84220601618887,29.242097341594445],[-114.83849817960942,29.23940328212933],[-114.83742424961878,29.23695862024539],[-114.8354984478537,29.23800258154978],[-114.83285599515546,29.24177801771333],[-114.83080200188351,29.241564249056694],[-114.82631874779514,29.239416305013435],[-114.82315604868745,29.2364777302555],[-114.81890407403932,29.229912435325048],[-114.81372305217707,29.220117078501573],[-114.81487620772356,29.216838926976948],[-114.81303077180144,29.214243484872554],[-114.80492836300743,29.20929404422833],[-114.80083374464022,29.210449876227187],[-114.80028706381506,29.21196930920695],[-114.79690269563565,29.21143776835686],[-114.79444042639278,29.209502540110805],[-114.79053166452661,29.20465628219739],[-114.79045287734522,29.201856412466327],[-114.7880437156922,29.200735653939432],[-114.78549825752395,29.197032767458836],[-114.78162297984028,29.198016960152017],[-114.77760051303824,29.19450480208593],[-114.77571310032317,29.1949826948362],[-114.77433813776537,29.197611246463794],[-114.77063008380924,29.197693336289547],[-114.76828744923421,29.196728547714486],[-114.76492008869934,29.19387548900238],[-114.76144932929776,29.187772830189374],[-114.75756477535225,29.183983922561424],[-114.75490864662788,29.18373416377068],[-114.75216613024367,29.185282027444885],[-114.74901444730051,29.184356896562576],[-114.74722576192596,29.182309539412472],[-114.74519061269939,29.18319753356093],[-114.74127232357893,29.178572673980113],[-114.73795356795563,29.171723751683032],[-114.73474517802492,29.158587579354162],[-114.73364538567887,29.143188176674528],[-114.73426437197361,29.14114040221216],[-114.73597247856986,29.141456312956677],[-114.73684459566431,29.139382908124674],[-114.73446899572258,29.135477191584812],[-114.73057530425217,29.136665740205387],[-114.72915116776193,29.138018976873354],[-114.72629918988673,29.137095904033117],[-114.72294841710368,29.132257972924947],[-114.72115495452744,29.127404273573745],[-114.72151404402132,29.124543964523696],[-114.71769264137117,29.12134693121112],[-114.7171618747052,29.116259310017597],[-114.71526994580086,29.112860825585074],[-114.71594796468185,29.110334872579926],[-114.7102955160073,29.111763272394512],[-114.70618738837896,29.107117111329387],[-114.70319245865875,29.10140688142252],[-114.69960028015885,29.103727696975568],[-114.69903356336886,29.108152983586706],[-114.69654985108605,29.110393854079973],[-114.69430864136399,29.110653561335994],[-114.69115976424956,29.10948549829419],[-114.68938948491592,29.110028763443836],[-114.68306973671838,29.109348885602515],[-114.6803009342907,29.112287985727903],[-114.67774439192016,29.113569543853487],[-114.67102618519567,29.111964027151544],[-114.66489431566367,29.108105817000137],[-114.65866188473251,29.103426040109014],[-114.65413123357831,29.09775331330104],[-114.65141693446873,29.096593099650022],[-114.64875422041291,29.097910990481694],[-114.64298875546922,29.09847893635424],[-114.63929384927258,29.097125990967243],[-114.63610710803022,29.097960558858688],[-114.63157765336297,29.09449389088485],[-114.62695559509359,29.089901292386855],[-114.6224481066144,29.083028499839713],[-114.62091145194637,29.079843642170545],[-114.61961969344515,29.074948984335776],[-114.61964057195502,29.068414806107796],[-114.61808858698123,29.06506760080657],[-114.61850497638693,29.06329664653697],[-114.61556435047686,29.062957720011184],[-114.61297160269089,29.06410657991671],[-114.61055858018659,29.063041722273056],[-114.60820458737106,29.05903615090034],[-114.60629162214013,29.05117606774212],[-114.60510541942523,29.03859988013528],[-114.60346878336532,29.02623010735232],[-114.60418194327502,29.02203269354095],[-114.6061187052029,29.01964164783851],[-114.60272239614193,29.017825514022718],[-114.6019360149603,29.013748830455654],[-114.60003573618695,29.0115148592933],[-114.59959204638312,29.007751505244812],[-114.60119640137401,29.003880440289493],[-114.60348775560703,29.003289603313704],[-114.60353288304253,29.0010869066561],[-114.60018142256325,29.001682163049054],[-114.59884092295488,28.99919387189601],[-114.60193080293351,28.99613624499233],[-114.59954291541476,28.99461213748316],[-114.59944250625165,28.99209786372262],[-114.60215069339523,28.991918088466946],[-114.5993893480628,28.989430252705517],[-114.6011373885151,28.986382440846455],[-114.59946740908703,28.98447166477007],[-114.59692236349218,28.976153028055535],[-114.59155501602731,28.973639794621874],[-114.59087793881781,28.97123611813629],[-114.59218053093139,28.97041913566295],[-114.58563488157353,28.967223306486574],[-114.58177510315318,28.96609266576297],[-114.58517130587836,28.968901764405018],[-114.5840703514616,28.971470130608623],[-114.58081846685297,28.974557955474836],[-114.57730595418445,28.976013606057677],[-114.57310523690444,28.976276423164563],[-114.56729407248173,28.974570443386142],[-114.56389163528553,28.97166456553441],[-114.56219006560798,28.971272854413087],[-114.55222482880384,28.961468725603993],[-114.54986858251544,28.959831990757664],[-114.54561321029536,28.951216741048484],[-114.54334573571339,28.942674796582764],[-114.54311769099144,28.936673376993383],[-114.54480985860448,28.934260977092038],[-114.54170451104665,28.93240784489734],[-114.5409102145561,28.930397517371034],[-114.53634763064554,28.927956078551404],[-114.53349725816878,28.92495306953674],[-114.533631671266,28.923491589596665],[-114.53166363431063,28.918842466475724],[-114.53012286138824,28.922155453804294],[-114.52776716301531,28.92416632904053],[-114.52986790198344,28.927982483390963],[-114.52609044783509,28.93224127537718],[-114.5220265249472,28.933238962317716],[-114.5171228193276,28.93315121047266],[-114.5121363166815,28.931818334030538],[-114.51125393955363,28.93020381797851],[-114.5106127905504,28.93332841552416],[-114.50883362271713,28.935165018013265],[-114.50252638758201,28.93512034889278],[-114.49637365432659,28.932216691820145],[-114.48831494598136,28.932966350544064],[-114.47786790981894,28.925680721699848],[-114.46830262625258,28.917356416005305],[-114.46178466157755,28.911189350674874],[-114.45978404962557,28.90769343584276],[-114.45837524502866,28.909589307886847],[-114.45509238240658,28.9084981129418],[-114.45205458702287,28.909171196216732],[-114.4490173856222,28.906902208962833],[-114.44613611878782,28.903088704991035],[-114.44226541702687,28.895016362426873],[-114.43889263901485,28.88696135669568],[-114.43716690712625,28.880673790585035],[-114.43852821110721,28.87952690895287],[-114.43732203419171,28.875888589791543],[-114.4356897995246,28.87899351857834],[-114.433116775744,28.881584450279377],[-114.42870054655623,28.883454376664304],[-114.42559818126892,28.88390082320393],[-114.4236876600483,28.882137975667035],[-114.41936886743673,28.881392651559906],[-114.41212344819252,28.874160009428806],[-114.4084246335982,28.868946832527797],[-114.40586019587937,28.86348477385718],[-114.40395077766561,28.856181574466177],[-114.4027246229947,28.847768257753728],[-114.40299603054711,28.84509719965064],[-114.40457984834649,28.844616501255416],[-114.40257112495641,28.84139953636401],[-114.40270610677385,28.837342605496985],[-114.40425565940586,28.83686124512144],[-114.40372582061923,28.834806237783823],[-114.39739366860687,28.832764387394434],[-114.39682936185261,28.824456993095055],[-114.3992520964839,28.821827448178112],[-114.39725496576852,28.81778743510432],[-114.39369587882334,28.813258190555132],[-114.38985205624607,28.809707847032314],[-114.38942725960891,28.808385437518723],[-114.38609139846659,28.80662553807349],[-114.37865673411562,28.814482781649303],[-114.37732864520791,28.81463704294316],[-114.37220517695744,28.811891134717712],[-114.36945902612024,28.80901777301716],[-114.36129567327134,28.79815333858346],[-114.35910128521084,28.79059861362458],[-114.36115740013491,28.79077562671023],[-114.3611279763906,28.784717892400636],[-114.3596968809149,28.78324533712737],[-114.35963924737001,28.780393079171517],[-114.35753205600355,28.77833705359808],[-114.34946672754643,28.773952473990448],[-114.34799940950302,28.769864189081602],[-114.35113772695729,28.76404696733249],[-114.34929593087907,28.763474936878538],[-114.35077633234499,28.761701315912035],[-114.34733814482854,28.759760877821122],[-114.34753685970094,28.757737328669577],[-114.34380888405798,28.758287010337938],[-114.34259099441198,28.755362843222883],[-114.34237326316673,28.74913404063716],[-114.34359999958087,28.74060000014066],[-114.34600000008777,28.74019999960683],[-114.34470000016813,28.73800000001279],[-114.34808148326584,28.73707972502308],[-114.3452838404711,28.734917939182935],[-114.34680853840706,28.73256364920485],[-114.34619246591814,28.73049611255078],[-114.34235179879715,28.73225181494388],[-114.33813122514198,28.731340774099863],[-114.33576226125285,28.73164863012994],[-114.33005787542112,28.730001268766557],[-114.32788760114414,28.72856907202612],[-114.32676378853404,28.729574446038782],[-114.32268896933056,28.728684192657227],[-114.31928033439777,28.727029834718905],[-114.31798209324398,28.727621095321183],[-114.31487458740457,28.726240561230043],[-114.3073216929763,28.72012409115348],[-114.30447524034219,28.714216546506236],[-114.30524706248383,28.713132371342],[-114.3014866529503,28.711000720574816],[-114.30088177381509,28.70594063848995],[-114.29861366368374,28.70709951840763],[-114.29588564210042,28.70394453979634],[-114.29081098352611,28.703871024578575],[-114.28887735481231,28.704585369039876],[-114.28883214720224,28.706527096579293],[-114.28397315384194,28.705989200937665],[-114.28092790811348,28.70234972327887],[-114.27794350348961,28.697093099738538],[-114.27901228857473,28.695328194653882],[-114.27550044183829,28.6949659835563],[-114.27581613719178,28.693062810402637],[-114.27118765664682,28.69270332701933],[-114.2697096644286,28.689620246161155],[-114.26937660415689,28.68405069196166],[-114.26966179819283,28.674403228082326],[-114.27077676263929,28.67140304381917],[-114.27007252932356,28.66589089782815],[-114.27163035645503,28.664927134705295],[-114.27018792309048,28.660103904497362],[-114.26430889151004,28.661924138086988],[-114.26116296329849,28.661962508526983],[-114.25972693820535,28.663999838254313],[-114.2551869038943,28.66009447588266],[-114.25459159915397,28.65832476939306],[-114.24553673178258,28.652973122237427],[-114.24775094236458,28.658489433331],[-114.24744151911904,28.66079295985128],[-114.24196798985099,28.666043577200014],[-114.23744918107502,28.667234617524684],[-114.23363476522991,28.667006340135174],[-114.22646312091462,28.665293726116204],[-114.22550498086542,28.666148307126832],[-114.21967698186052,28.664678614865238],[-114.21419039432476,28.66256853954434],[-114.20575764366197,28.660503132541237],[-114.19843932790428,28.660679870028275],[-114.18377684190011,28.657087897007557],[-114.17415019518671,28.651054012337624],[-114.1698734197123,28.645735696065117],[-114.16394878216414,28.64055448905765],[-114.1613997352535,28.634153823532074],[-114.15843120447806,28.62504610326488],[-114.15581690323637,28.619368921196212],[-114.15477267197116,28.615107406047798],[-114.15422118167339,28.59765897020941],[-114.15625561659613,28.585403810761818],[-114.16001054243236,28.57402335096151],[-114.16171064654588,28.570360553101807],[-114.1591372658441,28.567209635205415],[-114.14926759307968,28.559784874390004],[-114.14492681804757,28.559715720767656],[-114.13791568894823,28.563218357100254],[-114.13358570945644,28.563307324141817],[-114.12615937627783,28.56197750334843],[-114.116494221101,28.559036197795365],[-114.10670694565056,28.55351844942072],[-114.09667458006874,28.54662912689082],[-114.09088026126415,28.53766406281818],[-114.08754358120683,28.528933101621533],[-114.08740015084999,28.52551807516079],[-114.08629783393997,28.522995535748066],[-114.08383366941229,28.522005433855156],[-114.08041127976867,28.52225075271457],[-114.0740193611627,28.51911090387358],[-114.07117769341022,28.515273206955783],[-114.06934122932154,28.51509401067699],[-114.06832938524781,28.51015071011915],[-114.06956335574301,28.498781885490246],[-114.06921601663561,28.48853561855526],[-114.06833749052737,28.486713227354983],[-114.06295622179294,28.483877239945286],[-114.05825020660643,28.47800255088208],[-114.05265219147088,28.47484446083803],[-114.04901536971869,28.471908904150496],[-114.04551258619574,28.464436329904515],[-114.0448890396654,28.458710043844633],[-114.04786716028337,28.43853938903385],[-114.0534187042033,28.417555848906545],[-114.0604830721673,28.39588142459536],[-114.06913633645979,28.374541509425683],[-114.07219221345179,28.366281290170036],[-114.08120206815391,28.344345606348668],[-114.0909134161908,28.322847141641546],[-114.09485451683884,28.315444188323625],[-114.10118011095881,28.30169589248692],[-114.11056414691001,28.282809494782896],[-114.11891998052982,28.26666830859915],[-114.12495521086521,28.256836153301037],[-114.12413087596025,28.254608344585392],[-114.12231403208455,28.255380788920718],[-114.11895014946685,28.252254370814285],[-114.11684304574948,28.251750853259352],[-114.11403221665404,28.246369329283766],[-114.11639113607839,28.245119335903098],[-114.11535507595914,28.242970829531714],[-114.11161779899862,28.242674609604194],[-114.10440791905359,28.238865841220502],[-114.0992867393989,28.23961674949419],[-114.09394845727405,28.242299652814154],[-114.09399325766412,28.244405401474182],[-114.09113566912566,28.247050725463055],[-114.08807087827267,28.24731617230907],[-114.08343835798252,28.2458506645944],[-114.08131150628469,28.24766857930649],[-114.07629999973858,28.24129999986758],[-114.07189999986406,28.236900000002322],[-114.06910000003859,28.231499999844914],[-114.06789999978383,28.227900000064153],[-114.0670000000498,28.220299999578685],[-114.06445440610742,28.21593098939195],[-114.06081823398836,28.21423003557254],[-114.06202093422553,28.212253167048914],[-114.0622542475636,28.207617679298153],[-114.06590255209926,28.202483360200233],[-114.07079916893855,28.190029545640755],[-114.07928247254995,28.172901321803977],[-114.08218011675552,28.16746061764121],[-114.09267956625467,28.151238972541876],[-114.10930703016095,28.12789796290764],[-114.11312441950298,28.123052166311084],[-114.11227198193615,28.118654003638994],[-114.13071133717699,28.085828077203473],[-114.13619317558687,28.083979709301673],[-114.14170152442239,28.07921499041521],[-114.15009211495874,28.068702754077663],[-114.15630997822547,28.05976179715242],[-114.1599474367477,28.055870515774927],[-114.16830708908543,28.04369238708813],[-114.17426408929862,28.0366240084864],[-114.17588457031025,28.032992212308102],[-114.18160127030586,28.027763783822593],[-114.1861468654044,28.021233613278355],[-114.19098937932233,28.016348269500497],[-114.198457948103,28.00671113292958],[-114.20487876246438,28.00000001355096],[-114.06241521270971,28.000000053699466],[-114.05833333329997,28.000000000000057],[-114.02500000006472,27.999999999942816],[-114.01799329965866,28.000000028586953],[-114.0125833302157,28.000000003495927],[-113.95000000080813,27.999999987169588],[-113.93333333329804,28.00000000019776],[-113.91666666641629,27.999999999657746],[-113.88333333373566,27.9999999995851],[-113.86666666647068,28.000000000127216],[-113.72101636916062,28.000000152883786],[-113.48333333291731,27.99999999988637],[-113.41367892582878,28.00000012712286],[-113.23180762976779,28.000000070642216],[-113.11127522326012,28.00000017480761],[-113.09999999951168,27.999999986237185],[-113.06666666598443,27.999999986154933],[-113.01666666715704,27.999999999707484],[-112.98333333355703,28.000000000401656],[-112.96666666694273,28.00000000040683],[-112.93333333296061,27.999999999733234],[-112.84999999947763,27.99999998535094],[-112.80833333333226,28.00000000044679],[-112.79999999950252,27.999999985973034],[-112.7833333325226,27.99999998507917],[-112.766666666596,28.000000000140176],[-112.7649287246349,27.999999999616705],[-112.76828668466715,28.002403760873392],[-112.7763765325393,28.001635591687716],[-112.78224215484386,28.002184458806425],[-112.78787528784858,28.004649542381003],[-112.79609904693211,28.01051013535249],[-112.79901409750744,28.01367405605623],[-112.80277390982741,28.019950803456823],[-112.80489985490465,28.028512026599117],[-112.80463877636328,28.033982373280537],[-112.80293070783438,28.045133877608862],[-112.7989946880407,28.055610323478447],[-112.79486406249492,28.058905498973218],[-112.78864375152489,28.067299064082988],[-112.79039719620323,28.074481447971152],[-112.79178669228509,28.0768129061712],[-112.79485839169735,28.07938030436071],[-112.79718795403681,28.079931905219382],[-112.80217756971678,28.083070054051746],[-112.80340675407075,28.084682228905763],[-112.80285414861333,28.089565454964827],[-112.80479744389731,28.09160084553986],[-112.80462615478706,28.096377291868635],[-112.8059765570456,28.10069396013199],[-112.80987587358015,28.10692717225146],[-112.80912243861349,28.110847374492494],[-112.81254001868479,28.115951321239663],[-112.81259207556872,28.124576962337983],[-112.81203197955745,28.13583041214838],[-112.81024962289177,28.147841414645825],[-112.80665783163249,28.157143386024586],[-112.80461995809901,28.165015794427802],[-112.80294229242071,28.167537016670508],[-112.80062305189693,28.168621855972845],[-112.79847587879726,28.172086359458547],[-112.79755802972068,28.1752223185797],[-112.79803490378413,28.177363734331607],[-112.7974830821376,28.182325876673076],[-112.7960711765943,28.187576936192215],[-112.79426459045885,28.190334036997854],[-112.78986805926291,28.191211634226704],[-112.78974105973202,28.194181010760644],[-112.7871499917311,28.194878698537934],[-112.7875982616406,28.197957693676926],[-112.7905294049803,28.19912987322857],[-112.79390750304952,28.201817509506043],[-112.79703253127593,28.201386013829335],[-112.80147593515034,28.203280004517694],[-112.80261793901002,28.205607870274548],[-112.8021325549177,28.208230521279177],[-112.80468824923315,28.208040640129127],[-112.80580597247888,28.211540253387682],[-112.80690938607074,28.211564721057528],[-112.81002607660093,28.215857885660512],[-112.81156867484128,28.21575936832437],[-112.81664835556967,28.22303214470338],[-112.82370873491067,28.22824872237686],[-112.82679711246084,28.233400883380625],[-112.83001099870461,28.2355445929054],[-112.83597781136848,28.24264909306885],[-112.83686497544278,28.245487666295958],[-112.83906185990105,28.24748860836098],[-112.83949650506605,28.249669441717742],[-112.84273796459831,28.2533743659788],[-112.84723782048314,28.25581266706746],[-112.84859737636395,28.257863796341383],[-112.85112752790559,28.258688593982242],[-112.8563228555422,28.261818796821046],[-112.85951435485015,28.265133476856704],[-112.86533434146554,28.269817923079813],[-112.87349966511283,28.282226810921713],[-112.87342398725514,28.28804231960453],[-112.87193400300993,28.294940496329787],[-112.86815749063885,28.300646649368048],[-112.87296370955443,28.30249323588822],[-112.87484004198888,28.306624488838224],[-112.875350681535,28.310357874551357],[-112.8739116796624,28.318882193190575],[-112.86900182509726,28.336729579480163],[-112.86545074237961,28.343454281611628],[-112.86336157237713,28.34875405371298],[-112.85734999219864,28.361016819864858],[-112.85447687105977,28.365602521772644],[-112.85232164224794,28.36541928312829],[-112.85356496986691,28.368126221524392],[-112.85454292841393,28.37365125830962],[-112.8521286831243,28.379658291500675],[-112.8492535445713,28.382040178769785],[-112.85095667744326,28.385960791416608],[-112.85345323081094,28.387215404926735],[-112.85495362759343,28.391840276820574],[-112.85430717876562,28.39532426623947],[-112.85610795402357,28.399751072977722],[-112.86018767976492,28.404091811628348],[-112.85541818924008,28.414630763669038],[-112.8508584638954,28.420388645251933],[-112.84831049555532,28.42196967165131],[-112.8444294322764,28.42214498086628],[-112.84581728406732,28.427349228530602],[-112.84773918456563,28.430270040271466],[-112.84753814917525,28.43401800839223],[-112.8461759150432,28.439489322715815],[-112.84954190564855,28.442262288386587],[-112.85963119207548,28.439991386232236],[-112.85918855887985,28.4379948676347],[-112.86069488877035,28.434517957401567],[-112.8636562774127,28.432618589465392],[-112.86997482999942,28.43197646057007],[-112.88037109195466,28.434428708266182],[-112.88285648859522,28.438399518697054],[-112.88023409428791,28.440669213867523],[-112.87991079618189,28.443165917462466],[-112.87776307147232,28.44673657968491],[-112.87564515924413,28.44690854065624],[-112.87410316509101,28.449031648368646],[-112.87710614336203,28.45196522496451],[-112.88121905461787,28.450492472335668],[-112.88364742476756,28.452104312133315],[-112.88275533317119,28.453207263771446],[-112.88441468150239,28.456923857686206],[-112.88584820499068,28.454944864457502],[-112.88825566985156,28.456721309384875],[-112.88666153151235,28.458384035561494],[-112.88519523592396,28.462972780640882],[-112.89307421256308,28.466855544967814],[-112.89290707888921,28.4682658300066],[-112.8968005634485,28.47242307093626],[-112.90353409601738,28.475243141564647],[-112.90402199968344,28.47461949603121],[-112.91654489965555,28.470155349947504],[-112.93726365151878,28.464043950789176],[-112.95795588145859,28.459078955581163],[-112.96998719688867,28.45687485292524],[-112.98365722457243,28.45484104899748],[-112.98967510414036,28.455494337961568],[-113.00210928995136,28.45448818230335],[-113.00423388246406,28.455714036790653],[-113.01562964280191,28.457380734613935],[-113.02000855421795,28.460586511955455],[-113.02538380106319,28.46106216462988],[-113.02790698579474,28.46335451913785],[-113.03287440136978,28.4652481923373],[-113.03575689123767,28.46714684426007],[-113.03791749228117,28.474140829190276],[-113.04140012056433,28.47630892649272],[-113.05444203512917,28.47748576788382],[-113.05848516851415,28.478439742495823],[-113.06076156600875,28.480752957544098],[-113.06899413154832,28.482889832889043],[-113.07526346593062,28.485233011371747],[-113.08005767854553,28.489588657271554],[-113.07944376755853,28.493303679991413],[-113.08865872773458,28.495774159966288],[-113.09205050814961,28.497593002583983],[-113.09392139015824,28.49990471400838],[-113.09795072020722,28.50167295476473],[-113.10433853615308,28.50607771851668],[-113.108470933295,28.51366608598954],[-113.10959273493643,28.520001462728317],[-113.11284493469395,28.52447453265023],[-113.11351505764918,28.526782690099253],[-113.11300688779608,28.5390110147909],[-113.11209393297537,28.54202436979358],[-113.11274185999537,28.55009614240373],[-113.11507146930052,28.557363682467326],[-113.11431990171678,28.557951205617314],[-113.1163612416359,28.56264354595794],[-113.11970191288077,28.567768312105898],[-113.12021361623869,28.57674459944957],[-113.12277703121134,28.58328474917306],[-113.12431653446885,28.58383204767148],[-113.12725188022381,28.58890058491295],[-113.13029780973557,28.59939283765675],[-113.13096568377591,28.6107419018648],[-113.13050052423063,28.616215129485795],[-113.12883920584147,28.62166811865103],[-113.12783222292876,28.628828653236212],[-113.1304061753952,28.637336616332732],[-113.13390726382227,28.641810381421465],[-113.14502217962132,28.64940014164],[-113.1509652316027,28.65192165665775],[-113.15542200545968,28.6554035843742],[-113.15879590398356,28.660073863612922],[-113.16052075939041,28.66641012075769],[-113.16313839635012,28.669864549805027],[-113.16496218517676,28.67670768538551],[-113.16772042027725,28.681869078114005],[-113.16880761067915,28.68517017527074],[-113.16816262081443,28.689147353810085],[-113.16913378022377,28.692152633173407],[-113.17127550513914,28.69286006125435],[-113.17305483897974,28.69533013311053],[-113.17448097567961,28.700008853182737],[-113.17406636016256,28.70271259789797],[-113.1762055907497,28.70410278129816],[-113.1751868992622,28.71238983488621],[-113.17666446033382,28.713808313562993],[-113.18098877745837,28.714170620134382],[-113.1826794134688,28.716655341171474],[-113.18173445193815,28.71806269098363],[-113.18451337446072,28.719540413190828],[-113.18646358215358,28.728731412970205],[-113.1893725568325,28.730708922065503],[-113.18852270024473,28.732783343534265],[-113.19008639699956,28.736766569548536],[-113.19188665856552,28.739025172395145],[-113.19124534149574,28.74107513947655],[-113.19420878321301,28.744819502455016],[-113.19463992798347,28.751244201027987],[-113.19429351716207,28.753961369254228],[-113.19244948665977,28.757208519318397],[-113.19207841615514,28.765113953477965],[-113.19404009230459,28.77111144092561],[-113.19392462880069,28.773863852182558],[-113.19731839839784,28.775270580242477],[-113.19865079651856,28.77878652125355],[-113.19863979385008,28.781986000729034],[-113.19718991117617,28.787038272705956],[-113.1964361087459,28.79228603212391],[-113.19888812302588,28.79419339249688],[-113.19961322869779,28.796492799723637],[-113.20295954962887,28.798780402374234],[-113.2057335365127,28.79901052920451],[-113.21082681210606,28.801565066338696],[-113.21249677822578,28.803108786718838],[-113.21394273766612,28.807455093860938],[-113.21388174599338,28.81471232542492],[-113.2154571292428,28.815884350318584],[-113.2157122419282,28.818813578997037],[-113.22064519999867,28.824797834265098],[-113.2262760346112,28.827321261383872],[-113.23075903950411,28.82818087034815],[-113.23303317241988,28.832193933995086],[-113.23357308862353,28.835364033494784],[-113.23539817090915,28.834887536153985],[-113.23896859121277,28.835843329969975],[-113.24171972475608,28.83376756735578],[-113.24407797817571,28.83512369956884],[-113.2438021723562,28.836917362663712],[-113.24591330129601,28.839072102240152],[-113.24808232369088,28.83662864539673],[-113.25005427878381,28.837532702495594],[-113.25161451806059,28.840532201734277],[-113.25355889370854,28.83954326449924],[-113.25755301412187,28.83955452417848],[-113.25978292614775,28.840732214322827],[-113.26002536073537,28.838966551489648],[-113.26527156173182,28.83532595193128],[-113.26580593039893,28.833365012511024],[-113.27102361362574,28.830602970660834],[-113.27718735592958,28.83042094332842],[-113.28644739606159,28.82573574294929],[-113.28573265817903,28.81942354773406],[-113.28902735911083,28.81792323641605],[-113.29077152868956,28.818557282207053],[-113.29466234753471,28.81794460286511],[-113.29481230572964,28.813579950465225],[-113.30009200875412,28.811577141106],[-113.30178319652288,28.81182156429435],[-113.30257513091402,28.809504769415923],[-113.30735623724331,28.808155984621692],[-113.30865118176598,28.805012602030672],[-113.31602507118123,28.80203695511119],[-113.32451426962808,28.800193196226417],[-113.3316789228229,28.8002102928819],[-113.33447109250983,28.799350062198243],[-113.34122439136132,28.800579178222506],[-113.34522705967083,28.800579273110145],[-113.34708699124661,28.799673728858465],[-113.35470938924095,28.8043904115097],[-113.35450024688237,28.807337018235046],[-113.35710238697129,28.812304971510855],[-113.35321286879264,28.814676210333346],[-113.351359925152,28.816702196661595],[-113.35781312020231,28.818968580498108],[-113.36322017459116,28.82173162530046],[-113.36706588673451,28.827236181928924],[-113.37052139191559,28.83623464610787],[-113.37076280502049,28.83850061755163],[-113.36904132699902,28.844090708448107],[-113.3688144488662,28.84986060746803],[-113.37035094072957,28.86120970528492],[-113.36874595178557,28.863096229216296],[-113.36569453454382,28.870758241176645],[-113.35793960599591,28.87304047060678],[-113.35737275106635,28.873979121275624],[-113.36161181696878,28.87633795175185],[-113.36382174476626,28.87558834578431],[-113.36800597451037,28.877699283787194],[-113.36964464755067,28.881895249304648],[-113.37209629736208,28.8860680956696],[-113.37513904592231,28.889274057132695],[-113.37923784081141,28.890995553645496],[-113.38073024342799,28.896083066933443],[-113.37946130818756,28.90040239557277],[-113.37758757792648,28.902345520644815],[-113.37510767411914,28.900904631278934],[-113.37182281390108,28.90144978831438],[-113.36773667965542,28.90352481879671],[-113.37321745652486,28.90686540869035],[-113.37479021302562,28.908689294187695],[-113.3820618302251,28.909168546299668],[-113.38773547747098,28.91066854522262],[-113.38974575005591,28.912535852876715],[-113.39118364574057,28.911934608707952],[-113.39367240702614,28.913959335674633],[-113.39427246011996,28.92007700862547],[-113.39189491424423,28.92717909806612],[-113.38948676478378,28.93061809446874],[-113.38624460721263,28.92919389579015],[-113.38298259747029,28.935912586598647],[-113.38571414398587,28.93654058112793],[-113.38512691504644,28.93883877317984],[-113.38710660323812,28.93995902587295],[-113.3931535870131,28.938593331546997],[-113.39720658473959,28.936866526199196],[-113.39735172397906,28.935515303777436],[-113.40088273431837,28.93455448380945],[-113.40507355501666,28.931395737050025],[-113.40389279414677,28.92642014475325],[-113.40929256034292,28.923708113678913],[-113.4152364413838,28.923406387367777],[-113.41693777180666,28.924000427873807],[-113.4232976368504,28.928219099311207],[-113.4235536059785,28.930810707658168],[-113.42690417380419,28.93281190095388],[-113.42887823797258,28.935184050310966],[-113.42855649505617,28.937171614673332],[-113.42598224390935,28.939152375428534],[-113.42579308970124,28.944918077718228],[-113.42340263908807,28.9468287436315],[-113.42451282841972,28.949540260925744],[-113.42995629062096,28.95159212592796],[-113.4323684265566,28.95173911297445],[-113.43426657369696,28.95694543958291],[-113.43837088530825,28.959680867034535],[-113.43983059281368,28.95036612920245],[-113.44083706966762,28.948614447159855],[-113.44496113618737,28.946650753663846],[-113.44671598126001,28.951079211497927],[-113.45284934886593,28.949343804340742],[-113.45421115892049,28.945529221675542],[-113.46028754672079,28.943728550482035],[-113.47036620491718,28.94929386709049],[-113.47185376026266,28.947647864971714],[-113.47856261196358,28.948000951033578],[-113.48009817639849,28.947226999313614],[-113.47542217696343,28.945458423488276],[-113.4751193141878,28.94257845812041],[-113.48142201315648,28.941827056510533],[-113.48311293689022,28.937934490966313],[-113.48080366402485,28.936632260683382],[-113.48069367607525,28.931258402797255],[-113.48603333009333,28.932267317361436],[-113.48579570703652,28.92947255862765],[-113.48727072150211,28.92985381644587],[-113.48571561268233,28.925315879069558],[-113.48330796204527,28.92465240903192],[-113.48439984383896,28.922808337642664],[-113.48287137503075,28.920537005699998],[-113.48060566931684,28.92105560505462],[-113.4808264158354,28.918986530344966],[-113.47666124476979,28.919625639201286],[-113.4771151992029,28.91803478213444],[-113.47244731036045,28.91681677704105],[-113.471520297175,28.913132927379422],[-113.4756575691651,28.908248613750686],[-113.47504848163305,28.9051159179034],[-113.4778940338399,28.90272325551325],[-113.47906340451766,28.900098135032067],[-113.47748336691228,28.89668667743001],[-113.47903083562005,28.894540063547765],[-113.48283293553345,28.89284142121096],[-113.49639779164295,28.889551958656853],[-113.51280005901435,28.889343326441008],[-113.51908772533022,28.890456717608515],[-113.52528636997084,28.892576206573324],[-113.52694324085195,28.895879883392524],[-113.52676798840002,28.90007527166756],[-113.5313799776435,28.904681795163356],[-113.53542267173339,28.906875292454913],[-113.53598134277752,28.910609918172725],[-113.53762740224664,28.9124424722977],[-113.53973430923588,28.91786287574007],[-113.54513271537922,28.923109921862476],[-113.5468363099875,28.92829957584405],[-113.54831137661722,28.929954253605786],[-113.54711742058248,28.931045925214733],[-113.54756740528245,28.93383045923673],[-113.55077591781662,28.93610482743628],[-113.55445284991822,28.942769765481103],[-113.55643334961331,28.944769448304726],[-113.55766416883336,28.948440934496034],[-113.5573117329912,28.953562686033592],[-113.54981813143792,28.958877099678944],[-113.54620284657409,28.964537133796625],[-113.54461333004213,28.961855632618324],[-113.54220769802942,28.953909426980317],[-113.54156349950227,28.95582621997505],[-113.54399512612702,28.961893383543213],[-113.54610326917589,28.965319482730706],[-113.5465788609464,28.97985662083056],[-113.54743038460578,28.98509915727891],[-113.5505502296981,28.99098420359371],[-113.55812402162655,28.99663776534686],[-113.56041648623534,28.99922040710453],[-113.5627916434434,29.005397333462668],[-113.56305674270243,29.01115235528175],[-113.56145513809054,29.020949256110498],[-113.56044844400799,29.023611677182544],[-113.5564534764074,29.027211921234027],[-113.55377861725714,29.032023333415964],[-113.55242679750091,29.035990975023765],[-113.5485741287178,29.038406210836342],[-113.54813617343478,29.04048331807138],[-113.54426733687092,29.040439612578098],[-113.53763647775503,29.03678536100921],[-113.53706698992931,29.03463874577409],[-113.53849106870484,29.03141214444952],[-113.53763508466517,29.03074551430359],[-113.53445433455664,29.032278533100964],[-113.53425425819648,29.03604498734353],[-113.53795854399817,29.03853726046634],[-113.53880444676815,29.040307135284593],[-113.53748664142881,29.042031171820724],[-113.53845011172967,29.04613541225922],[-113.53729321194845,29.04894848503784],[-113.5380577415076,29.053632687446395],[-113.53961125098022,29.056050598538548],[-113.5384951755048,29.057954662062798],[-113.54047163893046,29.06072243258882],[-113.54304860970029,29.06245663861864],[-113.54284708295893,29.063990980463302],[-113.54816360819234,29.065479496546686],[-113.55180942025828,29.070346274634232],[-113.55097963653219,29.07215827149861],[-113.55213094103317,29.074572583873532],[-113.55545188355279,29.07721756579093],[-113.55536330386798,29.07919622538975],[-113.55701028647275,29.082050695023213],[-113.5623699048092,29.085418801821845],[-113.5631954168004,29.09053721986237],[-113.56719192257611,29.09440073937111],[-113.56657992731527,29.102347902651843],[-113.56701829731816,29.108189161532323],[-113.57137729351888,29.116858004409096],[-113.57730062136636,29.119079790292744],[-113.58045158286234,29.12191220598953],[-113.5807147458923,29.124465724950085],[-113.58349484596465,29.127374468224957],[-113.58967546265137,29.128766355952337],[-113.59283234308435,29.130278383534403],[-113.59836368344565,29.138089581758322],[-113.60392381251825,29.14387349446264],[-113.60548808198467,29.14692126021032],[-113.60550677366336,29.15020671718827],[-113.60736806831795,29.152951031615714],[-113.60827725661488,29.157248546214475],[-113.60715507201058,29.16039299628261],[-113.60928431065173,29.163630229831938],[-113.61199374029877,29.162981986941134],[-113.61140154098979,29.160900000720687],[-113.61469414416382,29.159852770239183],[-113.61877071290718,29.160361445090757],[-113.62284900727138,29.16173398635715],[-113.62463862537032,29.16616531258154],[-113.62350408499748,29.168642409582276],[-113.62646549093608,29.17454625075362],[-113.6298568933845,29.174952244162114],[-113.6325167709116,29.171032034675477],[-113.63587822854163,29.173488998184382],[-113.63573108079811,29.17836845935392],[-113.63824251169098,29.17933062418615],[-113.6420411888663,29.182344616522414],[-113.64257169139591,29.184324090308337],[-113.64089186065848,29.187447349904005],[-113.64057671262759,29.190590236812625],[-113.63909096152196,29.193284297108505],[-113.63931099031913,29.198213595738594],[-113.64084229222999,29.20005221881246],[-113.6430586299993,29.20024730487353],[-113.64535185109793,29.20285611785681],[-113.64816054063743,29.202995699630662],[-113.65410324901546,29.205532039652383],[-113.65613990417455,29.208536041901823],[-113.65686852304106,29.214060325874186],[-113.6553687430723,29.21978868178502],[-113.65303136302924,29.224128531687597],[-113.64874355503616,29.227101879365534],[-113.64337694260712,29.232240977453557],[-113.63959432152899,29.239302364317098],[-113.63466817037926,29.245215266163086],[-113.62514925569678,29.25286226840626],[-113.625756078557,29.256197515404835],[-113.6274293117487,29.257561281434562],[-113.63106419793945,29.263237776979963],[-113.63309576644446,29.27450782597589],[-113.63698795897176,29.28032475717555],[-113.6375125257859,29.28339787750656],[-113.64327909619163,29.286406029148452],[-113.6460419834549,29.291752857628694],[-113.65001557346551,29.29395480204255],[-113.65065487146273,29.295178321882304],[-113.65638501226118,29.2969184495754],[-113.65832310245901,29.299704053721143],[-113.65827033360341,29.30206066902747],[-113.66686862479116,29.303645515982453],[-113.67154523652476,29.3069476452236],[-113.68075518124988,29.316378168606605],[-113.6843055666414,29.319081662264182],[-113.68898226365741,29.32013952434744],[-113.69014842249817,29.322269164656348],[-113.69502256273108,29.324389012360996],[-113.6998823857466,29.332488703726085],[-113.7038380879606,29.335802531101592],[-113.7051861014275,29.33967917941027],[-113.70740196222249,29.34181966463882],[-113.71009593230735,29.3426063142648],[-113.71044355402,29.34567746547191],[-113.71307910960525,29.34622691853241],[-113.7165507768782,29.349082852250888],[-113.71901807482885,29.352547917990478],[-113.71965701382032,29.355882165051298],[-113.7214884475618,29.35767917479052],[-113.72233906274118,29.362564883451114],[-113.72541081145738,29.36431211347258],[-113.72604601521823,29.366590792123873],[-113.72989609307245,29.366952381763497],[-113.7320492890106,29.369093904759268],[-113.73900923387657,29.373671158013167],[-113.74230850239752,29.37695981009591],[-113.74617070047407,29.37961230308241],[-113.7496832793098,29.380866846486356],[-113.7533649395661,29.38508399680171],[-113.76176272235881,29.391385245695744],[-113.76307953831935,29.39389479842066],[-113.76757426072766,29.398445884783882],[-113.76930529280543,29.401415109129744],[-113.77014668017904,29.40612005960878],[-113.7738172234611,29.410530035747172],[-113.77864228660513,29.41241987337719],[-113.78648681689424,29.41377802817931],[-113.78658252410224,29.415649380022558],[-113.78886588796593,29.417208116950007],[-113.79359426486837,29.417048465715936],[-113.79788217738269,29.417715053373684],[-113.80214300858097,29.423401558902754],[-113.80549561966535,29.425935570323702],[-113.80946562264211,29.42648041669139],[-113.8123471287189,29.427984968525607],[-113.82087296965125,29.42857782903917],[-113.82500778768969,29.42945367005524],[-113.83175584015595,29.435502324406684],[-113.8312314501461,29.439531695685957],[-113.8320419155832,29.44025193150327],[-113.8314688362911,29.448009730551234],[-113.83219515416152,29.451662833321222],[-113.83610589072714,29.455872508017876],[-113.84163993455815,29.45752990329362],[-113.84449282317763,29.457332561967235],[-113.84783784354528,29.45867651965],[-113.8544277734361,29.462371973605798],[-113.86230231288988,29.462141062783417],[-113.8633538402388,29.464616135078984],[-113.86593560210753,29.46647130391233],[-113.86948498693471,29.467292381676145],[-113.8709850470251,29.469835754832275],[-113.87782319036779,29.4748784452579],[-113.88093847784268,29.477698928488337],[-113.8858754242413,29.48020661006251],[-113.89691856669833,29.484834527969042],[-113.90275042415198,29.492083191460495],[-113.90565838587514,29.493853858259115],[-113.91105032305995,29.500710106172335],[-113.91618556466278,29.505397662342602],[-113.9260238273481,29.51056686768584],[-113.928256422282,29.51277700132215],[-113.93042577585192,29.519870779984558],[-113.9334283623541,29.520233778037323],[-113.94046848170194,29.52277085333634],[-113.94343499113103,29.524968596188955],[-113.9434536385491,29.52715356847699],[-113.94557399351936,29.52788705825367],[-113.94974465100796,29.533841150664387],[-113.95100332561964,29.538730307175854],[-113.95668438394694,29.540555158448285],[-113.96377971363012,29.54644576152134],[-113.97384657325921,29.55610181752519],[-113.97593657516524,29.561922928963952],[-113.9801184682924,29.56672638739616],[-113.98745479262692,29.57143898792947],[-113.98985099475448,29.57389982713562],[-113.9954293669386,29.57805359808276],[-113.99830263580986,29.576135672966416],[-114.00902708555367,29.57664291004204],[-114.01652269851547,29.578987473731047],[-114.02272941271042,29.58139071564335],[-114.02312736554688,29.584547318828243],[-114.02663582248437,29.586124853094987],[-114.02912084066708,29.589251797953978],[-114.0288211773007,29.590514469015375],[-114.03110681958191,29.59379268392661],[-114.03377694220916,29.594708924642646],[-114.0395304747957,29.59485192774781],[-114.04583480658584,29.596063171105868],[-114.04769979844792,29.597862765475213],[-114.04836744692568,29.601203988492045],[-114.05017373920339,29.602521337209964],[-114.05116099638047,29.60538594513099],[-114.05489874676852,29.608757279006],[-114.05569867740837,29.611418731243077],[-114.05954724793935,29.617157962272017],[-114.06109702436407,29.624974672551218],[-114.06342722207108,29.628589854748725],[-114.06662727966443,29.630232056877674],[-114.07227700396987,29.635388808768766],[-114.0745861933031,29.635935591471082],[-114.07992009309834,29.639310954136533],[-114.08296788348946,29.64055577588215],[-114.09043554955645,29.642124075275774],[-114.09393476759016,29.64535151804023],[-114.10120236689335,29.64998156719014],[-114.10793566582134,29.65181979458606],[-114.11093359077427,29.653294639010767],[-114.11196320780857,29.656513609194008],[-114.11867209194662,29.66329477644058],[-114.12586849779706,29.667100703930316],[-114.12703226494551,29.670065083271254],[-114.1323140439506,29.671938318551042],[-114.13335242594252,29.676972448574816],[-114.14176014021507,29.684216112464867],[-114.14290994298165,29.690123718686664],[-114.14889423831988,29.693882155996334],[-114.15335535508012,29.693726975628408],[-114.15474413965745,29.69133665935317],[-114.15928391458061,29.691061952702114],[-114.16175651239405,29.693109513559023],[-114.16288266440614,29.696832171615824],[-114.16705299786787,29.701260528396517],[-114.17018227925001,29.701872919212406],[-114.17514786168368,29.70432711027098],[-114.17836110080327,29.707475001591547],[-114.18137431217826,29.708080512825404],[-114.1845900433492,29.712674801411595],[-114.18682128331739,29.7135588411428],[-114.18893004063375,29.716345184120144],[-114.19043563680873,29.72001498918104],[-114.1969268273433,29.72330652050198],[-114.20049741225608,29.72787395078518],[-114.20195859949479,29.732982076906012],[-114.20345615387271,29.735462047826047],[-114.20408253796546,29.73992747700447],[-114.20622590159331,29.742575708094193],[-114.2100934559976,29.744873731382654],[-114.21617905842925,29.744497402072682],[-114.2204697656395,29.74600055397252],[-114.22375348442074,29.749207404738797],[-114.22979787337908,29.750626644335227],[-114.23596805871426,29.75737913340589],[-114.23984545231735,29.759249325362703],[-114.24324586910427,29.762732920452436],[-114.2463824041285,29.763064117644262],[-114.24895047375941,29.76174216756101],[-114.2529614768165,29.762192070156686],[-114.2542169455703,29.760786682431217],[-114.25856056500697,29.759847850703466],[-114.26040585146501,29.764037179234663],[-114.26042620899466,29.766830249770067],[-114.26179852056708,29.762469193259108],[-114.26329415138036,29.762276225250616],[-114.26477582966947,29.767966125816088],[-114.27134415273696,29.772036255507146],[-114.27348762070375,29.770129321131776],[-114.27805719548968,29.770251867393256],[-114.28024004304774,29.772311988809804],[-114.28406625500622,29.76914991896831],[-114.28428877279157,29.765101862843323],[-114.2888377989936,29.76516834979583],[-114.29259607695872,29.767208136601766],[-114.29055492472605,29.764480000408525],[-114.29254309925545,29.7624774682169],[-114.29302515398541,29.759418580523175],[-114.29104947882036,29.756661211600317],[-114.28547839124707,29.75940509451266],[-114.2814451954286,29.759687407082765],[-114.28355713935986,29.75816267298984],[-114.28328662186436,29.755786683951612],[-114.28642552613428,29.75496529684733],[-114.28809613207329,29.752792706324556],[-114.28688188807337,29.74955273979907],[-114.29041830191807,29.746444636418005],[-114.2937641764006,29.744972187206372],[-114.29335187519365,29.743568760906612],[-114.29693083888992,29.741726497059517],[-114.30024528578491,29.741183895667632],[-114.30501867555574,29.741953194886435],[-114.30740518169011,29.740763506741075],[-114.31991689055434,29.741131773098232],[-114.33048965255153,29.74252024040277],[-114.3368950457608,29.744058456742323],[-114.34279866175848,29.746749600946828],[-114.34569975557156,29.75176972292968],[-114.34507856528211,29.754431271530734],[-114.34611814826388,29.759267973038675],[-114.3541333113032,29.76743898961297],[-114.35377778250904,29.768035625351615],[-114.36008241111028,29.771595574200433],[-114.36365197508081,29.771973051300677],[-114.36990145649668,29.769718751027085],[-114.37619700073361,29.771462555189316],[-114.3825003553332,29.774707442346482],[-114.38599064649827,29.777080461326022],[-114.39056238274901,29.781576755612434],[-114.39266007839899,29.78457009636105],[-114.39518762172526,29.790258958221386],[-114.39620300948854,29.794646854197538],[-114.39643516548148,29.800622932654164],[-114.39488165402236,29.80800105082784],[-114.39315875207319,29.809888982657412],[-114.38949457973848,29.808670331217172],[-114.38982657406052,29.810747183751914],[-114.38770000004615,29.811599999597263],[-114.38578915812582,29.809824832313495],[-114.38069999954178,29.813099999892984],[-114.37439203179662,29.810322652952607],[-114.37149999962139,29.80799999978808],[-114.37292484083667,29.806431216164526],[-114.36956976152413,29.80633541289501],[-114.36990700162448,29.809017194687726],[-114.37442532367237,29.81086179501233],[-114.37840000036095,29.813900000093952],[-114.38060000018476,29.817800000348655],[-114.38060000028344,29.821100000182014],[-114.39379999988614,29.82769999965359],[-114.39539737899878,29.827504967614914],[-114.40157554371933,29.831341072901466],[-114.4036375071583,29.836511265864317],[-114.40598805889033,29.83860909161814],[-114.40926093921405,29.843035124678863],[-114.41130947061384,29.846852111333817],[-114.41322630327261,29.847879648574178],[-114.41358257375094,29.852998923432438],[-114.41508168482943,29.857254585846533],[-114.41042960412472,29.867741882148493],[-114.40929768443993,29.878926970830207],[-114.4101140197925,29.88204381038645],[-114.41225447972437,29.885229496741147],[-114.41298405412641,29.890687383702584],[-114.41845922728805,29.89335189072898],[-114.42288245499088,29.896986298250397],[-114.4250118084625,29.901391994524488],[-114.429104902549,29.90390291868198],[-114.4293695246551,29.90592931608279],[-114.43445810819446,29.909312916645376],[-114.43656325341425,29.909442136885218],[-114.43927103981508,29.907805734657643],[-114.44319086198902,29.907736523532265],[-114.46290036894868,29.90983887271517],[-114.46716450625246,29.91130824106449],[-114.47263718767437,29.914673156431263],[-114.47405700571403,29.921247302867584],[-114.47785879401067,29.924618411964843],[-114.47797816911361,29.929036076050068],[-114.48062438940815,29.937819310671102],[-114.48210334192169,29.939369825903213],[-114.48278588919283,29.943202041739653],[-114.48527898668908,29.946639312952186],[-114.49063442122292,29.951129609441807],[-114.49425190544594,29.952838744851192],[-114.5054272109677,29.955686431695767],[-114.51225451639402,29.959545872849958],[-114.5197579498149,29.961701382346916],[-114.53448599627984,29.968121543742882],[-114.5388254757404,29.973667827883958],[-114.54083061592848,29.97851154946727],[-114.53874252739007,29.982760662484054],[-114.54574642765834,29.989044644035005],[-114.54625038093133,29.990881233483208],[-114.55096993621623,29.99674632153841],[-114.55264234901495,30.002795363455732],[-114.56043386905873,30.00663309840229],[-114.56453629979569,30.010002220087188],[-114.56613241978812,30.01630349931378],[-114.56427845724056,30.018431731197325],[-114.56705118124125,30.0215889056758],[-114.56765102986947,30.025086504524893],[-114.56592214153073,30.02624612973642],[-114.57505846981417,30.031011425569886],[-114.57631174614261,30.03254696684519],[-114.5775728646941,30.038376061685426],[-114.57702760420295,30.040024817569247],[-114.57815137944453,30.044582864644667],[-114.58388712007934,30.05190354295638],[-114.58279271692254,30.05998233107772],[-114.5827603487399,30.068356037947126],[-114.58452833407176,30.074145619197964],[-114.5860332188368,30.07690544243883],[-114.59017625845212,30.082006731040167],[-114.59726921095273,30.088715170467253],[-114.60066710983278,30.10146237458099],[-114.6039081852694,30.10798781054183],[-114.6092526096092,30.11214462753111],[-114.61308622667701,30.113873194737664],[-114.61549783761319,30.114014574730334],[-114.62528969210331,30.117900035201217],[-114.62912325309736,30.12117900420384],[-114.63153009521363,30.125291575581855],[-114.63377209614964,30.127155071846744],[-114.6336404341883,30.13159897303649],[-114.63537857636214,30.13440065562662],[-114.63539397050226,30.142581744455924],[-114.63899991725162,30.144500649411555],[-114.64097561687754,30.153441749770536],[-114.64530655400392,30.157341771473455],[-114.645861625289,30.160433108145753],[-114.65012292050261,30.166184629856957],[-114.65181192022419,30.173918253621594],[-114.65939190576478,30.18224169890999],[-114.6635103989496,30.184548240027027],[-114.66772253093615,30.19141856850115],[-114.66887059890797,30.198252356844876],[-114.6646350619485,30.20675184014982],[-114.65889983785382,30.21160108199325],[-114.65599034221066,30.214850254546832],[-114.65326598105736,30.21936367142581],[-114.65054043126963,30.225303172837414],[-114.64995523172809,30.232965444271088],[-114.6509804588868,30.237262931284988],[-114.65050516219372,30.238800776373978],[-114.65213929589595,30.241675064805747],[-114.65087647795417,30.244279295637796],[-114.6406167706603,30.25802995425363],[-114.64015583011286,30.26319317629293],[-114.64225534465277,30.267134117168382],[-114.6444892541428,30.267808553372163],[-114.64950630444724,30.271910479772316],[-114.65002926445959,30.274343267361303],[-114.653732819975,30.276040927050758],[-114.65621094968765,30.278765442976862],[-114.65540305050712,30.281202226084247],[-114.65629158188153,30.28518574634495],[-114.65498929846427,30.287790699312552],[-114.6522292419611,30.28971323095044],[-114.65185705621383,30.293014426660136],[-114.65267351023954,30.29582217495124],[-114.65089275952545,30.299734266619623],[-114.64771538437498,30.303748429257496],[-114.64847658170515,30.305670516006785],[-114.64700410016007,30.30895193548622],[-114.6467831456763,30.312526638740906],[-114.64421916815297,30.314945034332766],[-114.64636944568053,30.315598477728145],[-114.64548174456206,30.319332748516388],[-114.64664188614302,30.320550606272718],[-114.64422647886977,30.322572689140998],[-114.64498179429148,30.329748426616106],[-114.64396056136104,30.337717095192488],[-114.6418516272372,30.340051850736415],[-114.63923707366638,30.33890083301742],[-114.64188570201878,30.34903476749031],[-114.63942537737216,30.349717260728426],[-114.6371596469919,30.345722286576915],[-114.63577786103974,30.345188406550164],[-114.6348499165423,30.350197029048445],[-114.63695992544939,30.357928024433477],[-114.63526892727953,30.364169273825098],[-114.6362947386973,30.3674589009467],[-114.63938112507913,30.366829769150627],[-114.64089762858947,30.369989560388717],[-114.64316303871618,30.370837059453606],[-114.64371856307264,30.376587004208034],[-114.6416227953519,30.38538223686578],[-114.63812540963801,30.3917682475157],[-114.63547266437666,30.39559451074922],[-114.63709622856948,30.40082255716578],[-114.63647562287576,30.405733379991318],[-114.63387073528128,30.414349925323677],[-114.63259695157927,30.41555734776415],[-114.63125273239939,30.419917606329705],[-114.63136912000073,30.424580612934392],[-114.63277217271991,30.429602490474508],[-114.63561757657715,30.43405046650645],[-114.63750209579871,30.438360650418986],[-114.63769870566682,30.442843489598488],[-114.63658980286078,30.446151520284502],[-114.63871323221412,30.44808727930814],[-114.63922269653125,30.452571078319522],[-114.63866102774176,30.458687866353443],[-114.63249779826651,30.474768569874584],[-114.63175905546137,30.478051070515107],[-114.63151125861754,30.484420129607884],[-114.63072741310032,30.48870988159456],[-114.63269140730483,30.492579795782774],[-114.63414681811713,30.501120294397083],[-114.63809972335076,30.509490488105314],[-114.6422294419122,30.5165750227917],[-114.6428677236666,30.519286879263518],[-114.6445358001248,30.520135242331833],[-114.64895456237048,30.5273833667207],[-114.64998642781859,30.532417221991295],[-114.64954195543578,30.537544958399053],[-114.64876478958058,30.538227988889844],[-114.65156906737587,30.5449914015619],[-114.65103606141804,30.55207288388192],[-114.65229319902215,30.557083160226682],[-114.65640223592811,30.561505120406196],[-114.65902717017843,30.565464756673407],[-114.66194331265177,30.571974985843212],[-114.6655502272315,30.57824710358767],[-114.66780090047126,30.579715380542666],[-114.67343574128711,30.58502299988953],[-114.67669118285534,30.58715395685988],[-114.68044770811366,30.594710629203178],[-114.68064671554703,30.597077354523833],[-114.68337164128968,30.60048578226565],[-114.68517396661252,30.606247366176603],[-114.68913299866387,30.611759747811107],[-114.69091597439689,30.61743291909977],[-114.69534655089973,30.622783120296162],[-114.69617314988756,30.627226793880084],[-114.6979961017189,30.630209416461526],[-114.69892984137243,30.63586008541438],[-114.69757326583232,30.64460791820744],[-114.69674298016753,30.65643174562507],[-114.69394236659633,30.66793898163803],[-114.69354089419397,30.67098717153175],[-114.69415877814151,30.677360195063613],[-114.69623549296011,30.68589516502226],[-114.69778101584501,30.68895419920875],[-114.69933059488181,30.69651216664255],[-114.70041676197792,30.699574653953732],[-114.70410062706759,30.70371854898815],[-114.70519215389544,30.709978770827718],[-114.70456287224255,30.719058263921795],[-114.70014689255902,30.729276520598546],[-114.69170000037764,30.74400000029334],[-114.69210000026311,30.74729999983083],[-114.69410000011464,30.749900000428568],[-114.69359851329557,30.755258935954828],[-114.696249220004,30.756892903449625],[-114.69833886799881,30.760198448984],[-114.69831306204117,30.76478597565972],[-114.69994362387916,30.772393889851287],[-114.70003350263579,30.782963946278585],[-114.69917849367857,30.79647101242307],[-114.69700401432436,30.811606397109813],[-114.69576700700821,30.81726405356227],[-114.69359369856375,30.819279541195044],[-114.69617918146628,30.81882397675787],[-114.6986000002006,30.820599999589945],[-114.70000000042978,30.81959999954205],[-114.70163092583698,30.82108822132892],[-114.70392784421671,30.828641158094513],[-114.70456164729251,30.836010472893463],[-114.7085582999091,30.840497435722625],[-114.70988911964673,30.844869810606667],[-114.70940233096468,30.84966832969684],[-114.703943102334,30.86307373845534],[-114.70404187845457,30.8658465126137],[-114.70555344858099,30.86828189848626],[-114.70581064348556,30.872405631899653],[-114.70512414902544,30.87814863743978],[-114.70695612852336,30.883169271252086],[-114.70877856176116,30.88564373434059],[-114.7110202063439,30.89152603841478],[-114.70994916728228,30.90570547758375],[-114.71093522217274,30.90918603312815],[-114.71325381816501,30.9138372587783],[-114.7146704576569,30.920904744796246],[-114.71793395204367,30.92547072345701],[-114.71731767608782,30.92804260082528],[-114.71921754849245,30.93504916214397],[-114.72169575268532,30.936926287683775],[-114.73355711925473,30.94299925669378],[-114.73461901207685,30.94485163661966],[-114.74284601503496,30.948275233477432],[-114.75455365455491,30.954049441889822],[-114.7585044201416,30.955325104375163],[-114.78101111358069,30.963940099103752],[-114.78828278169817,30.96714453033752],[-114.79875631519013,30.972268009855327],[-114.81115795501853,30.97885870711457],[-114.82243564506297,30.986934406873274],[-114.82428636850057,30.988909132535525],[-114.82510514486773,30.991899716229284],[-114.82665538884083,30.991141419452617],[-114.82899114987822,30.99328175993793],[-114.82959010027656,30.99599072110658],[-114.83284787837454,30.99920304006514],[-114.83456467615838,31.004608443888003],[-114.83478187224898,31.009870407645508],[-114.83359628000807,31.018433618897404],[-114.8315435868409,31.02542138075688],[-114.8288928757546,31.026748236958326],[-114.82874912802845,31.02971059898016],[-114.82594236767301,31.036582274796956],[-114.82405891324453,31.039763938428166],[-114.81578801389611,31.041610820413098],[-114.8117603309887,31.04402416812644],[-114.81193169189436,31.04554133458589],[-114.81466584257186,31.049124213307778],[-114.81429278011797,31.052104617897612],[-114.81934164904152,31.053529291366203],[-114.82254491311562,31.053674691166123],[-114.82485550464474,31.05724749653075],[-114.82516107862864,31.059875500018336],[-114.82914325592543,31.060249321546166],[-114.83216438027745,31.06643966793706],[-114.83965376648581,31.068908949767092],[-114.84186499156067,31.071388736033157],[-114.84811779948893,31.072665865477006],[-114.86002407282223,31.082799841360327],[-114.86129569310282,31.08496821705677],[-114.86749484343278,31.090229311695623],[-114.8746367360356,31.1001112969563],[-114.88039364403772,31.111834849899992],[-114.88424678445915,31.118167159710026],[-114.88542986609872,31.122198592492452],[-114.8880441962574,31.142385996129406],[-114.8896867609485,31.1436339629455],[-114.8905742198346,31.15028988553439],[-114.89074962917539,31.16015061771327],[-114.89047400204555,31.168142378488938],[-114.8889490966609,31.179032107267005],[-114.88658236479307,31.192572026195137],[-114.88595732534736,31.19852719935875],[-114.88370935163346,31.209388673205524],[-114.88554723698604,31.213972307928486],[-114.88438076813867,31.221925445097042],[-114.88128640859009,31.233942086326124],[-114.88181946072103,31.25083876549911],[-114.88504230794945,31.259331612382823],[-114.89128536888734,31.26364904544829],[-114.8920411728597,31.2666509373517],[-114.8889720332561,31.268860231919064],[-114.8868543936685,31.277371181170565],[-114.88821039933049,31.28452745041443],[-114.8832779149871,31.289978168202822],[-114.88112875175875,31.291249186377627],[-114.87928199521099,31.295261969482],[-114.88216858314144,31.30192970336668],[-114.88365808490346,31.303084762587957],[-114.88140322806737,31.304765294029608],[-114.88079374900013,31.30925010653533],[-114.88219628763363,31.311639101544927],[-114.88130065672016,31.31398922674498],[-114.87964070190839,31.335635645731486],[-114.88118271943239,31.348717732108014],[-114.87928883577234,31.352414784365237],[-114.87992432940524,31.35753020234654],[-114.87827091924322,31.36345501712151],[-114.87873638075666,31.386299309436367],[-114.88016231428816,31.392890373680984],[-114.87453095035869,31.396975626881044],[-114.87235494590192,31.39927793607785],[-114.87186718038458,31.40463149004512],[-114.87009403260976,31.40841414520594],[-114.86993193094531,31.41218480588651],[-114.86802162008257,31.413811816448856],[-114.87021216040193,31.417029372822924],[-114.86977044631402,31.422857766502432],[-114.86293535834108,31.42546174935825],[-114.85934524612196,31.429167077621855],[-114.8596930360024,31.43124589700409],[-114.85815828734172,31.43358940137597],[-114.85894169479604,31.43605627871608],[-114.8552161958732,31.452025567931003],[-114.85440034788206,31.459710028179927],[-114.85551927596185,31.466963140183907],[-114.85464561509173,31.475801837672293],[-114.85502650796877,31.47940766834546],[-114.85796066028945,31.483541675161234],[-114.8578353279218,31.48903936027051],[-114.85659526069713,31.49574525439317],[-114.85795407705206,31.501137859496794],[-114.85551845257606,31.508246756173264],[-114.850704873967,31.525800258847823],[-114.84826213248977,31.533162681811007],[-114.8422655793741,31.552816718494853],[-114.83472154426852,31.567379623621093],[-114.83345701741388,31.572695955119116],[-114.83275248154649,31.578530086592366],[-114.82926375356362,31.579152897215522],[-114.82583961069508,31.581171097322965],[-114.82223377121642,31.584373717943265],[-114.81902777865736,31.592406059658913],[-114.81850316450522,31.59780470340627],[-114.81649896302667,31.603129316869115],[-114.81717925823887,31.607991951420843],[-114.81645719299746,31.609635978116557],[-114.81167780233812,31.611795122188823],[-114.80812884421005,31.611602922127474],[-114.80538846851914,31.609412312517634],[-114.80072424472957,31.609088470114955],[-114.79558447722525,31.61202025535158],[-114.79040295858061,31.61670490803499],[-114.78610325832261,31.624802851037884],[-114.78368352079247,31.635527170237708],[-114.78612076034648,31.652850012840872],[-114.78760421534975,31.664811210621735],[-114.78908155289281,31.672201089531256],[-114.79272401700484,31.683442065107442],[-114.79562722688246,31.690064518901465],[-114.80428917761515,31.700637543332732],[-114.8121774170425,31.716184865330206],[-114.81695362204681,31.72874349299815],[-114.81765146697762,31.740458783119607],[-114.81837235533055,31.745539682970502],[-114.81781983951441,31.75136903760398],[-114.81784044185622,31.759234824818975],[-114.81717300627162,31.763386779854045],[-114.81009586398795,31.784825134926905],[-114.80837697543842,31.792667527090885],[-114.80811906193242,31.805366841245984],[-114.8076007047087,31.810607177410247],[-114.80876481694372,31.81402780227097],[-114.80687765061259,31.816680133091722],[-114.81885741696374,31.820905899775653],[-114.82156111683986,31.82353908535083],[-114.8256919545554,31.828819585119334],[-114.83126807061558,31.838964411734366],[-114.8333737518517,31.84343638721242],[-114.83513089133442,31.848907863929128],[-114.83876119911594,31.855374574135396],[-114.84048140162338,31.860112906422273],[-114.84318574111421,31.86355382227248],[-114.84693387196677,31.865265633924366],[-114.8535717209565,31.866383500144593],[-114.86077853318466,31.86630392494675],[-114.86744930700348,31.86452019437428],[-114.8716188223251,31.864483058788323],[-114.87508509206793,31.865619065087458],[-114.88181142290114,31.869426198505778],[-114.88703151151753,31.871591348366223],[-114.89202758656631,31.872391913695253],[-114.89896347139074,31.871205411712026],[-114.90315081758843,31.868470481215752],[-114.906743659587,31.86730417211703],[-114.91075947317091,31.86776079670443],[-114.91218836455886,31.870068867367877],[-114.91071395681098,31.875331911510614],[-114.91280951758228,31.88057702566232],[-114.91475874156538,31.882210268371068],[-114.92283781243759,31.884875659857926],[-114.92664957981953,31.886876285027995],[-114.92932631481432,31.887243604312175],[-114.93688991161156,31.8902757645497],[-114.9391510460041,31.8921235859807],[-114.94246221170107,31.901080820516484],[-114.94322120937994,31.9066005477834],[-114.94513447844815,31.910120961714767],[-114.94712664664416,31.911772170815595],[-114.9562249740614,31.915524584811294],[-114.96548456759024,31.91842388162621],[-114.96657905654172,31.962476970927412],[-114.96743444162064,31.996880298594817],[-114.95700374285246,32.038633987526964],[-114.95824491239233,32.04272397472403],[-114.95827522375117,32.042823846138106],[-114.96546195652371,32.066497497215266],[-114.96945653394135,32.079651068630085],[-114.97339508012243,32.09261695440421],[-114.98043248541074,32.11577615429019],[-114.98972725372107,32.146397566371206],[-114.9754080979501,32.177798503704935],[-114.97531824815366,32.177995474356976],[-114.9928494031891,32.191847857445566],[-114.9926400152284,32.192036165561206],[-114.99182923609231,32.192765311203345],[-114.9922503133244,32.193145003809605],[-114.99454598061402,32.19564704022764],[-115.00070547034693,32.200498082799925],[-115.00271099956245,32.202130081137284],[-115.00217690086703,32.20107032216498],[-115.00251318336393,32.20091444687807],[-115.00291122815304,32.20110856026173],[-115.00363099076645,32.20246500388032],[-115.0057698662971,32.206405240420224],[-115.00719162621732,32.205628883906],[-115.0118537823065,32.20932549030175],[-115.01194537091845,32.20939835611131],[-115.01212287831731,32.20953957647987],[-115.04124876515601,32.23232470803367],[-115.0432895520679,32.23491857306027],[-115.04555870113,32.24118372306316],[-115.04859883805341,32.243960839448164],[-115.05302232761767,32.245174016624844],[-115.0496127609461,32.25288995704568],[-115.04365642238588,32.25862017209033],[-115.04149024030744,32.26183929040269],[-115.04176710858479,32.26727645685452],[-115.04272049429625,32.27006636747956],[-115.03565720502888,32.27848329002285],[-115.03142903943467,32.28235226251974],[-115.02862985516629,32.2836324557623],[-115.02610192987692,32.28617393189461],[-115.02520985699806,32.28986160436955],[-115.0179527621188,32.29461277136414],[-115.01200844985271,32.300277001085135],[-115.00792348336711,32.30245195181294],[-115.00760024208768,32.305421837459846],[-115.0035097257425,32.3074243944219],[-114.99638364785994,32.30970141340788],[-114.9935199434874,32.311722051254776],[-114.99196290390904,32.31783989159845],[-114.98976785262954,32.32060574136153],[-114.98747648421988,32.32176417533941],[-114.98297548836632,32.32566036636774],[-114.98047749803806,32.32944790221944],[-114.97218425895551,32.335748071505805],[-114.96841539890892,32.337230129034765],[-114.96587658838376,32.340406337831325],[-114.96563362594344,32.34102942791469],[-114.96420036712942,32.348004326116836],[-114.96219649534731,32.35196671276225],[-114.9623402134228,32.359700954636935],[-114.96456817246735,32.366049259215345],[-114.96321514581723,32.376691936497195],[-114.96559668981286,32.37929831780423],[-114.96535199037169,32.38144657473214],[-114.9674531481815,32.38351021022538],[-114.96660964121395,32.38462246258899],[-114.96849821590195,32.38922665683674],[-114.9668301758864,32.39345376051466],[-114.96295420932864,32.394236689563],[-114.95971108918206,32.39190379532539],[-114.95449597074128,32.393354091088725],[-114.95381963278169,32.39699690607631],[-114.95703243050679,32.39869685323572],[-114.9602397994787,32.401545133139905],[-114.96085972460497,32.41068636754915],[-114.9592241174048,32.41409626774464],[-114.95524339324027,32.414094968721315],[-114.94828678236587,32.41927652686866],[-114.94591696042426,32.42215984023238],[-114.94485194802485,32.42624014146406],[-114.93977964084922,32.43308907863735],[-114.93275015277118,32.438149740796746],[-114.93157040028575,32.44106608365638],[-114.93457769244696,32.447775746462696],[-114.93597953653091,32.453384424107696],[-114.93835489822447,32.457512704936335],[-114.9377824748052,32.4600837064458],[-114.93935005999657,32.46840401222795],[-114.939224929239,32.47427435790877],[-114.93683746076033,32.47752138485993],[-114.93499657694275,32.48187467782196],[-114.93146443709844,32.484085328506296],[-114.92772588913903,32.48466435803891],[-114.9229089350456,32.48292146216647],[-114.91516580166052,32.48322392927133],[-114.90705849238219,32.48210944539534],[-114.90435556425786,32.48346274252799],[-114.90009165869776,32.48350135208335],[-114.89741201443513,32.487728885234105],[-114.89387168651768,32.48742557814052],[-114.88685277477884,32.49175122321998],[-114.88024491486573,32.49203080313799],[-114.87655806880247,32.48851290616318],[-114.87338070003693,32.48920619083128],[-114.86957354018193,32.48641161214243],[-114.86758758922252,32.48127055292696],[-114.86016407143359,32.4779164611125],[-114.85696327696724,32.477710486457056],[-114.85134911582958,32.47400385916984],[-114.84907753855492,32.47342342322855],[-114.83841654199637,32.475812609533875],[-114.83417053238679,32.480751178257435],[-114.83107815753618,32.48169017891439],[-114.82535173157271,32.480042996705095],[-114.8197164988901,32.48092119059589],[-114.81572999202717,32.48332308239014],[-114.81302818027206,32.49102698540986],[-114.81357276428088,32.49391316192646]]]]},"properties":{"cve_ent":"02"},"id":"inegi_refcenesta_2010.3"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-102.28698945661881,22.416125260104934],[-102.2899307387525,22.419983611425664],[-102.29138410730093,22.42671709282621],[-102.2928901545356,22.43369408881074],[-102.2934577132985,22.43632326277708],[-102.2944598087335,22.44096516991914],[-102.29455939313829,22.441562744584587],[-102.2955150613164,22.44608159620816],[-102.29739324562104,22.455273004839512],[-102.29830684271724,22.459589682815306],[-102.29850530530445,22.45953828521766],[-102.31180479743739,22.45691581584782],[-102.31170081952985,22.45485649858017],[-102.31201436225638,22.446560656449947],[-102.31203590450048,22.445989549471335],[-102.31204004541661,22.44081820595352],[-102.31313414911119,22.43825942655161],[-102.31441879259415,22.435379946593855],[-102.31929150318587,22.422872845832615],[-102.32103050778983,22.41829135492236],[-102.32104392331348,22.41435140000823],[-102.32105367448776,22.41420988329986],[-102.32109507491055,22.409922388379528],[-102.32112852803152,22.40601294104846],[-102.32117076826785,22.405018824662648],[-102.32118330280605,22.40048258421433],[-102.32123784792486,22.396839986403904],[-102.32127566128094,22.39333551373221],[-102.32136471819871,22.388532641815345],[-102.32796669878309,22.38859994163988],[-102.36287708334879,22.388747271042234],[-102.35925027958882,22.384951685510316],[-102.37844281134068,22.360878577852475],[-102.38787899309602,22.36414120610874],[-102.41570906831652,22.359958886308902],[-102.43227760077127,22.357466540510018],[-102.44555420299554,22.353688509619417],[-102.44636134742711,22.353458316713613],[-102.44833712391824,22.352894831849312],[-102.45086880599973,22.352172755821016],[-102.45105888942243,22.352125550230824],[-102.45238752903896,22.351974506450688],[-102.4578789576284,22.35125753822382],[-102.45788755700897,22.351394051534555],[-102.46564584791702,22.350194804080104],[-102.46864195838646,22.35188147424759],[-102.46884161946957,22.34746471163612],[-102.47083170162932,22.336033234367164],[-102.46771878653777,22.332378184948993],[-102.46507098753267,22.33306304168991],[-102.46102085524126,22.331758883572036],[-102.4618501431039,22.3269794131553],[-102.46066150399986,22.323691100139797],[-102.46428416876927,22.32117519594584],[-102.46608419788953,22.322281483274594],[-102.46698113788653,22.31906644768185],[-102.4672437806152,22.312031523536064],[-102.47020162590763,22.309210202170902],[-102.47362206771083,22.308375527916382],[-102.48853118774502,22.305408320430615],[-102.48909240492799,22.303483147606414],[-102.49577008861309,22.304813437305825],[-102.50126510860036,22.304269775802425],[-102.50663072659705,22.29381254409998],[-102.51258252291916,22.292350701213252],[-102.52703933550566,22.290899037881502],[-102.54975977472776,22.291083266269425],[-102.55235696409693,22.2911041227012],[-102.6687428430148,22.291871046886],[-102.67001704896995,22.245702431163124],[-102.64138711827735,22.228447535814894],[-102.64168495051905,22.226355659877697],[-102.63929894070213,22.22603919240163],[-102.64371072365213,22.22117211483328],[-102.64580234790236,22.213211823637494],[-102.64496109848898,22.210415246969262],[-102.64582155521032,22.20430604370887],[-102.65023744773526,22.201226217770397],[-102.65231200988313,22.196506680861035],[-102.65507180407764,22.19537933053806],[-102.6515959798831,22.19314022506262],[-102.65533671797368,22.191252454147786],[-102.66107762896098,22.19090482951026],[-102.66229204248987,22.191480950774917],[-102.6634559220193,22.19317037562041],[-102.66654658435993,22.193947090263237],[-102.66796286430827,22.194336739174446],[-102.66936162191871,22.192338516281154],[-102.66925915577906,22.188908991272797],[-102.66626571473711,22.183032861389336],[-102.6679812923656,22.17842627326627],[-102.6712849580826,22.177161532139166],[-102.67496692239638,22.17744780300984],[-102.6758945074186,22.175572519115235],[-102.67499898128489,22.169762412077432],[-102.67549174535179,22.168495787690745],[-102.673501205854,22.16613966384199],[-102.66941568721177,22.15958957868986],[-102.67175471067941,22.154241872161435],[-102.67405432157062,22.151250098715025],[-102.67434471300118,22.14778143750044],[-102.67829994957214,22.145344682154985],[-102.68255994184585,22.145804149549804],[-102.68102277748824,22.143718862486935],[-102.68173367806611,22.14107409081771],[-102.68517029978267,22.138803471594088],[-102.686319807058,22.136973114378748],[-102.68586615676998,22.133214087061276],[-102.68341414355297,22.12991358325928],[-102.68750509130183,22.124215585400805],[-102.69014195611686,22.123394988747066],[-102.69096205231597,22.119097673265287],[-102.69115880272562,22.118145033790654],[-102.69185624678988,22.114779641159373],[-102.69108286249872,22.106164226836995],[-102.69776647288109,22.10151572598147],[-102.7030197162511,22.09901763984618],[-102.70559956978553,22.098889475108308],[-102.70964149762426,22.09661837378019],[-102.71048911075968,22.09388614132746],[-102.71169879294797,22.094542013825617],[-102.71849357747908,22.090839040553078],[-102.72490996842998,22.09015730709956],[-102.72866684844223,22.08850506803026],[-102.73586479577341,22.084094909490943],[-102.74189738974746,22.082172608692588],[-102.74721172160992,22.07937252671138],[-102.75130550472409,22.07590424556588],[-102.75580571583737,22.073662073964954],[-102.75637944399551,22.068320626643356],[-102.7531802671241,22.06325781070177],[-102.7551615282722,22.061592197344282],[-102.75547309435314,22.056300602063573],[-102.75943461204696,22.051424812789037],[-102.76098973051563,22.046286740921346],[-102.76304061639814,22.04416711050294],[-102.77046484367679,22.04159789235024],[-102.76769311239462,22.039975309667284],[-102.76898125949242,22.037822894837632],[-102.77196987282548,22.037696676070084],[-102.77426556802789,22.036048136207626],[-102.77632262089918,22.0310249102659],[-102.7815668488804,22.028619513575734],[-102.78259980555464,22.02711836077276],[-102.78181075028107,22.024224950144344],[-102.78331024581342,22.017691928793965],[-102.78404325411861,22.016854576543494],[-102.79149862121733,22.015988357388608],[-102.7961316157818,22.008686781822405],[-102.79713218483221,22.00794211718329],[-102.79883850320687,22.00621715524892],[-102.79949763450958,22.0052855371722],[-102.79963666686018,22.004811827422714],[-102.80064702906571,22.00442651344855],[-102.80122955357444,22.001887674916986],[-102.80546157433974,21.996300398428787],[-102.81932374431801,21.96719939472206],[-102.82192888668004,21.96007811948715],[-102.8216124539515,21.958799715742828],[-102.82322328678191,21.95554238292624],[-102.83275361513176,21.942580596763776],[-102.8337250159766,21.94030339387848],[-102.83728974591111,21.940617709831884],[-102.83975201131335,21.934843136825975],[-102.83933643117206,21.933672533792446],[-102.84260433534831,21.927118964457577],[-102.84300210423118,21.923656706073075],[-102.84295992802424,21.922301462361304],[-102.84609464486704,21.913739203213765],[-102.84327152877512,21.91283488754891],[-102.8444508289669,21.910361413273904],[-102.84632495651908,21.908541693349832],[-102.84688625117411,21.907880332798413],[-102.84810984434046,21.907632606627487],[-102.84963273777322,21.903957729723004],[-102.85130227411992,21.900138863452185],[-102.85107113408702,21.898425290503212],[-102.85140313545634,21.89694514848145],[-102.85261369005082,21.894690806837446],[-102.85419743617501,21.89335159703427],[-102.85484206826237,21.891628860074775],[-102.85369427459727,21.890634660065018],[-102.85443221417904,21.890412410549857],[-102.85612509289149,21.8890507592659],[-102.8564467696151,21.886211473827643],[-102.8556020470158,21.884509172754406],[-102.85674702877043,21.882539346679323],[-102.86068356008849,21.879408591329423],[-102.86057272819284,21.877653529129134],[-102.85960756844196,21.87487146737874],[-102.86241381701433,21.871339786914064],[-102.86304617656424,21.868108418293048],[-102.86322958235928,21.86543282903267],[-102.86338012839457,21.863765781072175],[-102.86476397643526,21.8631142298903],[-102.86793289488799,21.861032015151352],[-102.8703216790621,21.85867312781113],[-102.87282539711134,21.856428616723406],[-102.87417658464699,21.852771004464103],[-102.87357492941584,21.84959314581056],[-102.87092292418367,21.846150378657057],[-102.86900184150409,21.845235146282903],[-102.8689654820401,21.845217617573212],[-102.86815646028424,21.84519667933165],[-102.86456959448918,21.843526903538816],[-102.85805097425066,21.833226357036494],[-102.85274556052008,21.834317820555725],[-102.84731475416106,21.833409212059166],[-102.84752271639906,21.828591841131583],[-102.85020630401345,21.82634798843503],[-102.8502856596092,21.825088592348095],[-102.84889434316767,21.82388679259111],[-102.8472558406039,21.822392614302487],[-102.84742630387677,21.820212345213633],[-102.84949043811292,21.81369268934816],[-102.85179111101354,21.811937751283438],[-102.85011553311597,21.809540459169455],[-102.85258187423528,21.80396159588679],[-102.85334505667271,21.799053149082965],[-102.85211937734545,21.79955105512522],[-102.85148017042224,21.7998932043364],[-102.84906321561454,21.79952857165057],[-102.84785013056347,21.799588698790842],[-102.84596214368099,21.799983260785837],[-102.8454907884497,21.80030195934455],[-102.84432478299931,21.801812581530328],[-102.84394179154509,21.80256706743819],[-102.84356600346428,21.8029392462376],[-102.84307339425163,21.803468525670326],[-102.84290826249628,21.803749747669087],[-102.84257685203158,21.804362068390674],[-102.84274748393193,21.802221888526958],[-102.8432011091358,21.80103697503307],[-102.84240486726287,21.798530719951202],[-102.84201935661241,21.798413498807122],[-102.83865055904869,21.796883774060746],[-102.83707369514684,21.797893692297293],[-102.83241036872482,21.79789998628604],[-102.8320391715344,21.797745966806588],[-102.8302498964664,21.79547530517931],[-102.82999349017751,21.793142887335023],[-102.82814522056856,21.792107931560793],[-102.8265610192986,21.788164865157455],[-102.82719539938307,21.787073022121206],[-102.82049280926884,21.77898002936115],[-102.8202619521715,21.77871800154253],[-102.82133024084527,21.777830598325295],[-102.82090777446098,21.776635156216628],[-102.82116765677239,21.773633974568554],[-102.81926857670686,21.77116159146459],[-102.81918216615668,21.770921321438152],[-102.81825842790295,21.770313083193685],[-102.81793646053,21.769716458862206],[-102.81754962317717,21.76879228203046],[-102.81618925738331,21.766158311402876],[-102.81556177605091,21.766057368749728],[-102.81504345979789,21.76590094294852],[-102.81438952776341,21.7654008308711],[-102.81382797124718,21.765455771167126],[-102.81336399657715,21.76523771913861],[-102.81203060197839,21.764943237787293],[-102.81172751928432,21.765113319388206],[-102.81108574286264,21.76507578566111],[-102.81056768004589,21.764914651191248],[-102.81010441325537,21.76471501851961],[-102.80966214789015,21.76460296171689],[-102.80924930467376,21.764535179650863],[-102.80599112092091,21.76396568619191],[-102.80370411506573,21.761238658428283],[-102.79830726859825,21.758912693777518],[-102.79808612050596,21.757981274906626],[-102.79703422021248,21.757576282612717],[-102.79415402069884,21.755036687461086],[-102.79230964725963,21.75499012856426],[-102.78899155574635,21.750921139028208],[-102.78603310489751,21.748346106388283],[-102.78520485948036,21.745653403357608],[-102.78005488790836,21.74382317222313],[-102.77791540749746,21.742134611069844],[-102.77950818036749,21.739871577110307],[-102.77569696649795,21.73458940229932],[-102.77218091214093,21.73782376242127],[-102.76913350890851,21.73471011830634],[-102.76550172491142,21.73367633030125],[-102.75823039208854,21.7285135656453],[-102.7441095412837,21.719180811623403],[-102.74162638107737,21.721000100604556],[-102.73701692831298,21.71591644281915],[-102.73522249788857,21.715670777349544],[-102.72279856565427,21.719111609522997],[-102.72113261116374,21.72053443873034],[-102.72024764129372,21.72160505811729],[-102.72022577920967,21.722959343834987],[-102.72059686898041,21.723867954885748],[-102.71880985215381,21.727003121573432],[-102.71975556091007,21.72818950242265],[-102.71827013262367,21.730516368299334],[-102.71764977753458,21.733126899692707],[-102.71542687341497,21.733627630948945],[-102.71476785556268,21.731914133805333],[-102.71267389801108,21.7299878897781],[-102.7111248633276,21.73005770063247],[-102.70572149820737,21.729620653752534],[-102.70463172494641,21.729483285626372],[-102.69867788094984,21.72889137336108],[-102.69626329742061,21.728768015592607],[-102.69533286838487,21.732546166741713],[-102.69742708428873,21.734562502998585],[-102.697363755325,21.738605225444303],[-102.69731754084671,21.741513668103096],[-102.69545031946939,21.743384608628617],[-102.69401126975885,21.744894613274937],[-102.6935825348744,21.74534447870178],[-102.69230656301636,21.746590979058055],[-102.69066857576883,21.752437198911366],[-102.68765773493163,21.753208594261594],[-102.68601415889094,21.75327494401239],[-102.68378999585525,21.753423735548097],[-102.68225305523328,21.75268086268528],[-102.68031599559907,21.75292453755509],[-102.67769225291283,21.753790231307335],[-102.67435246215865,21.75717500801727],[-102.67185981624328,21.761925644409303],[-102.67038913981162,21.763169190987696],[-102.6689263487969,21.764051447359634],[-102.6659175855686,21.76473164494041],[-102.66121431135167,21.76267800674492],[-102.65957563349014,21.7623837177764],[-102.65675413987248,21.763607516592117],[-102.65461352311956,21.764390878222457],[-102.65092330568285,21.76542222081173],[-102.64777572580408,21.762939513902552],[-102.64353911915538,21.76188449683184],[-102.64108664230747,21.764107589818707],[-102.63711486302566,21.764592466585157],[-102.63544785943776,21.76610424777698],[-102.63349383529777,21.76733945706468],[-102.63167599128184,21.766139780434685],[-102.62585805965853,21.761452033784792],[-102.62384395076782,21.760430057938436],[-102.61812328453982,21.755651779909556],[-102.61571482292436,21.755256650949036],[-102.61426663754497,21.75514536668811],[-102.61292076880073,21.75467423536594],[-102.61071503198059,21.75355846153576],[-102.6063121641721,21.75105721855965],[-102.60436367585004,21.752022458932288],[-102.60072281478239,21.755837120119395],[-102.59809745441356,21.75536630975023],[-102.5967743213206,21.754982003272346],[-102.59660374027192,21.75143011394232],[-102.59666158409499,21.750199784235235],[-102.59667091707934,21.749652758336367],[-102.59627873396659,21.744049634056978],[-102.59192218644876,21.743986442173423],[-102.58574978918239,21.74389684389206],[-102.58313996609735,21.743858225248175],[-102.57844361799977,21.74325729890211],[-102.57359452036457,21.742506286818696],[-102.57278941567091,21.74282116071879],[-102.56742099689001,21.74459171382381],[-102.55520750443412,21.743573896522776],[-102.55184822020033,21.74146623353107],[-102.54895019541289,21.738593396591398],[-102.544485991243,21.73684363654519],[-102.54445902407139,21.73681464264797],[-102.54213992035392,21.73593529862029],[-102.54097660904813,21.73558036233834],[-102.54261395931007,21.732761640929198],[-102.54259697635467,21.732745260910406],[-102.52673385596319,21.72496697622455],[-102.5253898044516,21.724342113700857],[-102.52053502183986,21.722027431111655],[-102.51716989210303,21.72059985093881],[-102.50983950166119,21.717148626283233],[-102.49328642310354,21.7092743753077],[-102.48428569054073,21.70499173559284],[-102.48409232177528,21.704796336425773],[-102.48010479799763,21.70353424289368],[-102.47654791110728,21.70209372240913],[-102.47658524322077,21.697215250106353],[-102.4757565469838,21.69494515919928],[-102.46972191697733,21.697472390481835],[-102.4670072901398,21.697971694208036],[-102.46343512312393,21.69791808265603],[-102.45686376290456,21.698087542581618],[-102.45670614706427,21.696008671093296],[-102.45599750705406,21.693244377846042],[-102.45446450797863,21.692226047929637],[-102.4545979392874,21.689476501406375],[-102.45412933121088,21.68874635565578],[-102.45269673584323,21.68782119683101],[-102.45221965170958,21.687452299106724],[-102.45221998946278,21.686604846968578],[-102.45317198744794,21.68597121665522],[-102.45467386235549,21.685234112873445],[-102.45469022055198,21.684330994653237],[-102.4544625217377,21.68247470479065],[-102.45703564119884,21.680993109250835],[-102.46106640482196,21.679259085139165],[-102.45842122750855,21.678798947123482],[-102.45609135099039,21.67855409852416],[-102.45323991730044,21.678443104494875],[-102.45248059830732,21.678451698744652],[-102.45391863934515,21.681015068084378],[-102.45120578387792,21.681958811448908],[-102.44939235350114,21.681272691410925],[-102.44848554036696,21.680125253266453],[-102.44721093388466,21.679071620681896],[-102.44233400076553,21.674817156193114],[-102.44145495442677,21.673419171726778],[-102.43878954317472,21.673264921160523],[-102.43279077250855,21.672702977890253],[-102.42500649639106,21.67175499645009],[-102.41998616114392,21.669530676404406],[-102.41981119513201,21.669469438367173],[-102.41953749068591,21.66937480382626],[-102.41337033072006,21.666808597689624],[-102.40459497146225,21.66559320451597],[-102.40638972217482,21.662126031497223],[-102.40749309292568,21.659484881363994],[-102.40458115542947,21.65867218275207],[-102.40001907872016,21.657409018838337],[-102.3962528514432,21.656400196499476],[-102.39027552720995,21.654719522803248],[-102.38700938360319,21.653801049455353],[-102.3864732150281,21.652415406110947],[-102.38508600661436,21.652039006014263],[-102.38109787518493,21.65140674731748],[-102.38025990134855,21.652420831384518],[-102.37437978712762,21.651441440685858],[-102.36952617762904,21.650591902972053],[-102.36687356730437,21.642751930500992],[-102.35394255494015,21.63595755901656],[-102.3474512864907,21.63254617428896],[-102.34200175292727,21.629724353215465],[-102.33175477995036,21.624981525017915],[-102.32572206816576,21.622266484219153],[-102.3210508182961,21.630092274999697],[-102.31741797777914,21.628341785173006],[-102.31016569778154,21.62662602865464],[-102.30699873039651,21.632462505367243],[-102.30367410908616,21.638552698335275],[-102.30054686849985,21.644127372680884],[-102.2980948700665,21.64841594251618],[-102.29537079099242,21.653098719212892],[-102.29718988612609,21.653480034477013],[-102.29883740953409,21.653807325781145],[-102.30039852984356,21.654165745504713],[-102.30264856584864,21.654600283855643],[-102.30193470895301,21.66126921236281],[-102.30229504423886,21.662218535020486],[-102.30287623057899,21.663749708758132],[-102.30369320910017,21.665902045942346],[-102.30257106810228,21.666573695436796],[-102.29631411029902,21.66608406311309],[-102.28891694266565,21.665490178906396],[-102.2805431114549,21.664559749715465],[-102.27961919788578,21.66445706976009],[-102.27944152552283,21.664437322993365],[-102.27963411577377,21.660647806025963],[-102.27687261176919,21.65589720346219],[-102.27521912395258,21.653973718048235],[-102.27312871144375,21.654064114899313],[-102.26586033835571,21.654416512889725],[-102.25091605858557,21.655144049820535],[-102.24654615286386,21.6534261871451],[-102.24295282739871,21.652850664197786],[-102.23907736344597,21.652658619242516],[-102.23761751548659,21.652001367562093],[-102.236032860259,21.65378687620398],[-102.23360558166746,21.653195685661274],[-102.23188299514294,21.65417521837577],[-102.22785903023373,21.656649977826078],[-102.22565381623707,21.66007474212722],[-102.22493344184676,21.661267951492164],[-102.22520465171266,21.66127680716869],[-102.22054556015115,21.671575921729698],[-102.22169810713041,21.67248818591014],[-102.21930353187145,21.675870383401673],[-102.21832976354813,21.67813927107352],[-102.21861350180262,21.679726304991846],[-102.21854244850977,21.683426234796343],[-102.21638881599,21.684924696833264],[-102.21423166807193,21.686603609466545],[-102.2142667591246,21.69481885532383],[-102.20824110676307,21.693739428374045],[-102.19424563462576,21.69123131272056],[-102.1932451086746,21.691043793729307],[-102.18741198917564,21.689941933599243],[-102.17788591785,21.688155305221187],[-102.17593413408179,21.694170448097964],[-102.17143278678537,21.707000981662816],[-102.16642969413425,21.706012653048674],[-102.16659528727808,21.702495478597257],[-102.1645208301266,21.702089842934924],[-102.15485739886032,21.700038163982697],[-102.14935600342511,21.704727795494478],[-102.1481890746636,21.70515913464675],[-102.14558650659114,21.704441601393683],[-102.14389164963717,21.705605296913177],[-102.142099724675,21.705374291687008],[-102.13876179807443,21.71303060171124],[-102.13634604817088,21.720493372441865],[-102.1343514909122,21.722022652378485],[-102.13026520906999,21.72319155692105],[-102.12941199060958,21.72481963959973],[-102.1275217274706,21.72641353883114],[-102.12559817666545,21.725723387439302],[-102.12089311764419,21.7364465750577],[-102.11957004945054,21.735624686062238],[-102.11621280944189,21.736526213160744],[-102.11477569808164,21.73870065301361],[-102.11386447118815,21.740760543817316],[-102.11642712544904,21.743061858243436],[-102.11591176191683,21.744677641409055],[-102.11338794082718,21.745265467347508],[-102.11113038227813,21.747031343537685],[-102.11055348681356,21.747807909488415],[-102.10660786653455,21.75092391469201],[-102.10428795209373,21.750973570048814],[-102.10462542052477,21.753416611535613],[-102.10356293907637,21.753398002853714],[-102.10249502315497,21.75365008436262],[-102.10219981920915,21.753915702997062],[-102.1022819120218,21.754639253963433],[-102.10207604640516,21.755267493902068],[-102.102354944453,21.75581396623346],[-102.10336671651459,21.758359089706858],[-102.10245569886797,21.760419196409316],[-102.10156278452388,21.761576973490662],[-102.09913703732809,21.762076003294453],[-102.09855928504027,21.76197559906035],[-102.09825316363879,21.76278259899601],[-102.09252112129599,21.765257571963957],[-102.0886958238886,21.767127694514443],[-102.08618065639325,21.767263893128074],[-102.08910776560083,21.770655213450254],[-102.09457051199064,21.777701639166025],[-102.09004380558451,21.78141481723918],[-102.08307421064143,21.78706689083799],[-102.0754482142525,21.78360279681732],[-102.07385014209149,21.782906309737882],[-102.07196273569934,21.782654748235984],[-102.06895956407567,21.788062798418423],[-102.06593424586794,21.79343373180143],[-102.0645076401936,21.796204840814767],[-102.06166648879838,21.798962912577394],[-102.05797981148413,21.80187009696914],[-102.05757317527747,21.804890421345306],[-102.05696955065554,21.806517387130327],[-102.05665879085649,21.80681973706794],[-102.05386650526128,21.813349858924198],[-102.05286743491405,21.813337803876948],[-102.05391839825893,21.815222611620925],[-102.05465834810076,21.81568319806621],[-102.0551237327823,21.8163567717599],[-102.04592057834964,21.822058961220762],[-102.04475612220074,21.822308910204754],[-102.04174293655137,21.823067651141685],[-102.04205276572463,21.826220316628223],[-102.0420628001882,21.826322419763585],[-102.0412160070237,21.8291047761997],[-102.04107789821887,21.835827350042166],[-102.03862122477909,21.835623836373315],[-102.03816492737985,21.853168952625822],[-102.02079443170254,21.851167628507085],[-102.01985181332122,21.862574257907056],[-101.99890891211936,21.86976509299535],[-101.98841958475793,21.873362884883363],[-101.97168173017229,21.879111470133182],[-101.97096912942851,21.879356087508427],[-101.95987705873875,21.88316317276559],[-101.9533127203905,21.885396622688745],[-101.9446250073488,21.888340519153644],[-101.9414989976982,21.889399661219784],[-101.93809297424252,21.89055359133249],[-101.93107904384584,21.892929577197094],[-101.91760290204934,21.897493632654573],[-101.91556096685844,21.898185059155878],[-101.90707820502627,21.90105714861454],[-101.8976150869504,21.904260545808484],[-101.8802126136955,21.91014978366246],[-101.83800336668241,21.907344362520348],[-101.83528944746178,21.941770582965546],[-101.8451219787778,21.94416754899845],[-101.84865551472944,21.94406652872044],[-101.84887493606413,21.944092259969068],[-101.85660276345618,21.943147841639018],[-101.85782406724087,21.94407401077791],[-101.863596383627,21.946214201523105],[-101.86530557333327,21.947510794987522],[-101.86652241547785,21.9455581257356],[-101.86821391721634,21.945560392922744],[-101.87267131176361,21.946514382579437],[-101.87965536237039,21.943894845564216],[-101.88484737803986,21.938892048137234],[-101.881761980014,21.938132034009186],[-101.88579987483024,21.932611627273502],[-101.89037459441158,21.950950155061605],[-101.89778021315186,21.958387912716887],[-101.8966125659669,21.960961313462178],[-101.89641323036057,21.961552375512497],[-101.89598816855454,21.96315367714317],[-101.89583123470527,21.963332197952866],[-101.89602196458327,21.968211285385394],[-101.89656313397415,21.97011055281996],[-101.89663065622472,21.97064511918461],[-101.8970101049153,21.971620858702238],[-101.89749603149448,21.9733605948785],[-101.89736197588547,21.976939361038546],[-101.89882627935742,21.982466710021356],[-101.89879910301505,21.983737197667608],[-101.9000698524847,21.98672443549276],[-101.90372024923488,21.985826314780695],[-101.9094457206129,21.98902402997004],[-101.91086155220722,21.992388840093042],[-101.91156509962633,21.995566243996052],[-101.90892224642761,21.9930884584046],[-101.90348975513223,21.99098832793578],[-101.8988332978708,21.98996688162532],[-101.89776331511308,21.989885854849774],[-101.89473404320944,21.989656415739944],[-101.8952707102884,21.987921236688123],[-101.89511475697253,21.98448998185961],[-101.893340292591,21.98233567229471],[-101.89225421514914,21.97903573028583],[-101.89125250712863,21.97659204200619],[-101.87974694470262,21.982531693050248],[-101.87107798117052,21.986994036230556],[-101.86910853502576,21.986964331276],[-101.86936729885213,21.98778894214746],[-101.86822336259291,21.988336008221893],[-101.86473050116899,21.9899702274069],[-101.86359841533852,21.991439402919696],[-101.86257979295436,21.991356115738142],[-101.86321695418195,21.993036111973936],[-101.86192766811519,21.997899732579583],[-101.86113624780774,21.99869738132628],[-101.86130355754688,21.99976847928434],[-101.86163738461414,22.00178395010994],[-101.86166350527753,22.0020112018953],[-101.86159449367494,22.003844175895665],[-101.86185868271929,22.00426313283623],[-101.86077731057458,22.007162162236227],[-101.86054324256924,22.00769412406072],[-101.86215634524626,22.00877746097069],[-101.861041780839,22.011631801673502],[-101.86107366801104,22.0127797236251],[-101.86217065147395,22.014685375658246],[-101.86065711106875,22.01686992846942],[-101.86043232478914,22.017034018963727],[-101.8607297842347,22.017288462679403],[-101.86127391024104,22.01858315397544],[-101.86114362308138,22.021106432544116],[-101.85832488056207,22.021032493613404],[-101.86106584480257,22.02208988436132],[-101.86092666284566,22.023693355959665],[-101.86094100683209,22.023742181066837],[-101.86090997495495,22.024464939233553],[-101.86079437101768,22.02586980675261],[-101.86058599222281,22.027976796759788],[-101.86158963401266,22.028966586770082],[-101.86053271818025,22.03322039765885],[-101.85915460194371,22.03441825800718],[-101.86149129563444,22.035902530952626],[-101.8554333823248,22.04138898217542],[-101.85415983094924,22.044344675091963],[-101.85586036856256,22.045545834152676],[-101.86229337533274,22.0467365606292],[-101.86427510812723,22.041509475632893],[-101.87038812771334,22.046361005705364],[-101.8714837015462,22.047078635697233],[-101.87913576343544,22.052675691544664],[-101.88228419250237,22.05488561100009],[-101.88314394044704,22.0554850536588],[-101.88416598816542,22.056164760496983],[-101.88611108714667,22.057448273846603],[-101.89271294903273,22.06171609487052],[-101.9152616309953,22.076416186487904],[-101.91553736838131,22.076609840091635],[-101.93469776338827,22.089277737573184],[-101.93743332842917,22.091099048805518],[-101.93888600514236,22.09206588770462],[-101.95100007968932,22.099817791777014],[-101.96409058255892,22.10872856002743],[-101.96757393370575,22.11120248243924],[-101.97375158344124,22.114475900646994],[-101.97549727067764,22.115522417400427],[-101.98602794979115,22.120827450635886],[-101.99722354694285,22.122418754758314],[-102.00035330289393,22.122810658513117],[-102.00534815956013,22.123405340663396],[-102.01076965842702,22.124630722408256],[-102.01733866169496,22.12693223277364],[-102.02591518753212,22.129771001576103],[-102.02359397381167,22.13637396886122],[-102.0225440928815,22.139208250748766],[-102.02170231995893,22.141517550839694],[-102.02065626108651,22.144343255964145],[-102.02006673889997,22.145950527735295],[-102.01999238466755,22.146125528728874],[-102.01707549285464,22.153961276505186],[-102.04432169052274,22.1534447092572],[-102.04522130987397,22.153733234743754],[-102.044539515552,22.154424239797265],[-102.04322527623447,22.157798081051453],[-102.04314013749945,22.158876724301763],[-102.0423935703144,22.159310427106448],[-102.0414489089681,22.158938000917317],[-102.04109448189081,22.161799229151256],[-102.0408385163347,22.161990436902045],[-102.03773733134454,22.15977608865751],[-102.03554340108104,22.162623442784934],[-102.029467143077,22.16866561904095],[-102.00099308088653,22.168110557221553],[-102.0005251645212,22.19227413056484],[-102.00002877664883,22.208053147353496],[-102.00001661839343,22.208359376842907],[-101.99958925289332,22.20806844747591],[-101.99909025036351,22.208107527271466],[-101.99971607037736,22.233656036822254],[-102.00247462909579,22.2414440673233],[-102.01879795634756,22.241553326729615],[-102.02044686816635,22.241565655125328],[-102.02249459015735,22.24158549430325],[-102.02211891357149,22.243482750766475],[-102.02228976434122,22.245829585805325],[-102.02471729143764,22.253456028758592],[-102.0251613821215,22.255986373875487],[-102.02560946146349,22.256293195359262],[-102.0269977739103,22.26086253575795],[-102.0292102631737,22.26900468029163],[-102.02843200261816,22.27179707805675],[-102.02976389547763,22.278363256990133],[-102.02799927943784,22.278659968691386],[-102.02995796924688,22.28637560509634],[-102.0298825230463,22.28899299973],[-102.0317899383366,22.288899547396852],[-102.03726963944894,22.298975682999355],[-102.042336735905,22.29701384105266],[-102.04178072558904,22.295203634541963],[-102.0504126311451,22.291286106396853],[-102.05521559975989,22.292556326685656],[-102.05650251865649,22.29301016438268],[-102.05840776796407,22.293654855281034],[-102.0565023620473,22.294801538526826],[-102.05566380146809,22.295306175065946],[-102.05575585093862,22.295346083631443],[-102.05604345764283,22.29547077609277],[-102.05760445033263,22.29614753406389],[-102.0567030794914,22.29992693619755],[-102.06155906646808,22.30137713030541],[-102.06248347303324,22.30160817750209],[-102.07307110768954,22.30520469555705],[-102.07394315998266,22.305500882468493],[-102.0756270421519,22.306072784517937],[-102.07568205004287,22.30600544400096],[-102.07689386728987,22.30452188583166],[-102.0793141158764,22.301558782454038],[-102.07937856213033,22.30147988995776],[-102.08175607302167,22.298568926495705],[-102.08417139822711,22.295611487798737],[-102.08800983827513,22.290911169100355],[-102.08918670824988,22.28946995073011],[-102.09092468005252,22.291207184071993],[-102.09106487712211,22.290891189751335],[-102.09457280959771,22.288559125139898],[-102.10109660665444,22.283675254516083],[-102.10244233496968,22.282717860120272],[-102.1052498655149,22.280792829452082],[-102.10780649918831,22.28273046756624],[-102.10658379948495,22.285365454740997],[-102.11573551925602,22.28609525642088],[-102.12411068825156,22.286956402316264],[-102.15323047717237,22.29041021144633],[-102.14984747052807,22.34717505581358],[-102.15759583819357,22.3480379206772],[-102.16139870631605,22.34843797572745],[-102.16148968267294,22.34844854840088],[-102.16437326535748,22.348740983434766],[-102.18072210215644,22.350397937330968],[-102.17967952536327,22.354146333340566],[-102.17737534047995,22.36242973536315],[-102.21197919446428,22.362465187895452],[-102.21199059552538,22.370037356510238],[-102.21198680863574,22.372697320289433],[-102.22232966941937,22.37140437594195],[-102.22490045316721,22.37270034004723],[-102.22661295887298,22.373803614357712],[-102.22813253189429,22.374680900338262],[-102.23578090834422,22.373635331900743],[-102.23687139605681,22.37406069284083],[-102.25238918961446,22.37446610603166],[-102.25320070677816,22.374494503500046],[-102.25482579183767,22.377731916296398],[-102.2549432252768,22.378868375198863],[-102.2505654878629,22.38085392378713],[-102.25006391632019,22.384306208891303],[-102.24917570118527,22.385639349778955],[-102.25029936337103,22.387221706750097],[-102.25079195920796,22.38721664882445],[-102.25362543973728,22.38881789816753],[-102.25453314698467,22.38708132815799],[-102.25524872423387,22.38742865642564],[-102.25541557813443,22.390437821922887],[-102.26081044946432,22.395663808626523],[-102.26095042746266,22.398604052329574],[-102.26189516011158,22.39857023252148],[-102.26488531051234,22.400196750281964],[-102.26590577682754,22.403469338002253],[-102.2662624758812,22.40410715648244],[-102.26694720723299,22.404479305062637],[-102.26716062459002,22.40474455479682],[-102.26810072298429,22.406998166459402],[-102.26878226911697,22.407481831524592],[-102.26960962031598,22.407779075306905],[-102.27285070208285,22.40905101560537],[-102.27253927758198,22.409637182673862],[-102.27091789347043,22.411751778437065],[-102.27195474247998,22.41262488223788],[-102.27247740788704,22.413065016269343],[-102.27274428411312,22.41328973262239],[-102.27398105598371,22.41433115793069],[-102.27629819097757,22.413301223902693],[-102.27684466521418,22.413380988530662],[-102.27760562035638,22.41411427479312],[-102.27869921746986,22.414328057066427],[-102.27932713835065,22.414315800371753],[-102.28140901105218,22.413756073623972],[-102.28493120017157,22.41683583854899],[-102.28537563255946,22.417120583914937],[-102.28583380627157,22.417119735600636],[-102.28625342035627,22.416896294793446],[-102.28698945661881,22.416125260104934]]]},"properties":{"cve_ent":"01"},"id":"inegi_refcenesta_2010.4"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.7734629566429,24.875535121363782],[-101.79325286823024,24.907655710199606],[-101.8318984555903,24.972173221054334],[-101.8488099916708,25.01762361000982],[-101.92313357018969,25.034597033001205],[-102.00808050371222,25.053947966629664],[-102.08180561963127,25.07070060209719],[-102.1461793881083,25.090455903797817],[-102.23762220486049,25.118462379872767],[-102.26654900026568,25.121828287335404],[-102.2955130248655,25.125235501742907],[-102.39887848468197,25.119517990064594],[-102.46332525836334,25.1159161928519],[-102.4536778008108,25.048137806993793],[-102.44676342714132,24.999515404000306],[-102.48525245360412,25.011133935071427],[-102.61170297683418,25.049145439873882],[-102.66969398202963,25.066636492258624],[-102.6683128325597,25.063920232910505],[-102.65310757128344,25.046021324776916],[-102.6528307121581,25.04582467186748],[-102.6534438622736,25.040682706042617],[-102.65143723525392,25.03611243984517],[-102.65103820158339,25.032336415209443],[-102.64914393849307,25.027767116672578],[-102.64300189736406,25.027812825772344],[-102.62889170880419,25.00831737712224],[-102.63554292465807,25.004169094990914],[-102.63382805896453,24.99955395165216],[-102.64295555218695,24.97864816403944],[-102.65042080373445,24.978690952187947],[-102.66742583457977,24.978787201841385],[-102.67298444521555,24.97881824399849],[-102.67298999902772,24.97623764683442],[-102.67306156808985,24.942752074723728],[-102.56623578275617,24.902220756601366],[-102.56537289986522,24.86635542193278],[-102.54918187077766,24.829935585133455],[-102.52044100512046,24.73586215881562],[-102.51543987159238,24.719479864868276],[-102.51218224621812,24.70972077728544],[-102.49464142824678,24.61255521154328],[-102.49158724198696,24.587391561844015],[-102.4836549368473,24.52213143943186],[-102.47980697006534,24.490448051016756],[-102.48699621221391,24.44422838556858],[-102.4793189462186,24.444486050769058],[-102.47918619274941,24.443762708804456],[-102.4731268744336,24.445214790785656],[-102.47269698140809,24.43967974209977],[-102.47510283688212,24.43890025396672],[-102.47791703163932,24.433220121557838],[-102.47809946401787,24.432870646349784],[-102.47971814406912,24.428558337518552],[-102.48171362989376,24.427440823458767],[-102.50086105891654,24.424788803988065],[-102.5082106446942,24.424240824523224],[-102.52014631105561,24.42393213346668],[-102.5206212690187,24.420606717643977],[-102.52230514125739,24.418396566083572],[-102.52279225950144,24.415247117752415],[-102.52670189301779,24.41622706290042],[-102.52858447369744,24.413667086147882],[-102.53388569957548,24.408612969989235],[-102.53393141268714,24.407722106605945],[-102.56581347241826,24.408808845595445],[-102.57781866096445,24.4101577849583],[-102.60020402896612,24.41094281826298],[-102.60655470669133,24.411167297525708],[-102.60735870844894,24.405327890178],[-102.61181447293887,24.39995531289111],[-102.61474006701235,24.397979032213186],[-102.6242622778085,24.39440049233434],[-102.62888267938757,24.3931761683192],[-102.644694765684,24.39140202571093],[-102.6534532314584,24.38803222478748],[-102.65506330348427,24.388603701613135],[-102.65966945198772,24.385904906112273],[-102.66235860287361,24.381576631482915],[-102.67920365881673,24.37995643044826],[-102.68658669196788,24.37821776750559],[-102.68663814408723,24.377098347507967],[-102.69904310449994,24.3762482396412],[-102.69990440557882,24.373971852155933],[-102.7039867895187,24.374132539225457],[-102.7088129484344,24.377838054553308],[-102.71437301848283,24.378216843787243],[-102.72202722313455,24.375362781105366],[-102.73071544009537,24.376066616797686],[-102.73801276739476,24.377453316676167],[-102.75160008623789,24.375826846523296],[-102.7566543305955,24.376983000258008],[-102.75909952064183,24.38064441905192],[-102.76269346624423,24.38152069058316],[-102.76508572630269,24.38498705232911],[-102.7644454572586,24.387021566072008],[-102.76818596029437,24.388313711622345],[-102.76939950668964,24.389665433053494],[-102.77902097171585,24.39552786964731],[-102.77995289360354,24.397706627826324],[-102.77916451234432,24.400144581343397],[-102.78107751256874,24.40273162513131],[-102.78885239992917,24.406248473468338],[-102.7919906395939,24.40540214274762],[-102.79757655956973,24.39872335199533],[-102.80109723015744,24.398460976320223],[-102.8084543918024,24.393600090015354],[-102.81241555873925,24.389494426103568],[-102.81678780261677,24.38991577520426],[-102.822176023493,24.386567562512425],[-102.83076240173386,24.385244978808714],[-102.83173561066235,24.384691903339217],[-102.83404482683466,24.390108554316953],[-102.84590276836121,24.39808258650595],[-102.8526030454828,24.41934324848785],[-102.85389205250243,24.424359153049068],[-102.85637143266581,24.424599301367152],[-102.85858259677718,24.422926823943442],[-102.86501268570737,24.430312079240707],[-102.86181751519689,24.43011546722903],[-102.86056495460582,24.43143713916004],[-102.8606209158284,24.434492352831057],[-102.86409574190941,24.436437063504286],[-102.86578549870808,24.439446224598612],[-102.8749132656668,24.450962088331437],[-102.87638234954346,24.449000712317854],[-102.88558415317311,24.45692728623669],[-102.8918909490647,24.461118119740377],[-102.89429151092247,24.45868698278855],[-102.89069395103678,24.451061110086187],[-102.8948759252695,24.4503507073959],[-102.89530645330291,24.4464903932124],[-102.89489429191707,24.44203715302939],[-102.89581231652204,24.440580955984274],[-102.8996902014211,24.4383975251194],[-102.90179220208671,24.435713782806204],[-102.90140330955103,24.431344841353848],[-102.9001065113925,24.42850048211716],[-102.90135818277315,24.428597138244015],[-102.96744017413289,24.45770363402721],[-102.96778091930162,24.457434143401485],[-102.98357280542285,24.433257160246228],[-103.01762283125129,24.45140481955383],[-103.02995663734737,24.45869958457928],[-103.04066434560269,24.465031140329188],[-103.04315020934376,24.466500857596372],[-103.0554069981444,24.44902676863404],[-103.05827835231952,24.445096340905877],[-103.07508097536072,24.422624579714295],[-103.08751464114363,24.436027043090235],[-103.09852728391928,24.40162659709904],[-103.11838375428289,24.415268964428037],[-103.12743797174676,24.422471273353267],[-103.13950925835343,24.428470916515096],[-103.13982635139831,24.428321401978337],[-103.14606059928076,24.42739531474797],[-103.14830953037438,24.427898129094785],[-103.15294976919148,24.4272319103369],[-103.1577258143015,24.427840631272602],[-103.16166727741734,24.43092802785776],[-103.16322253733563,24.434561229264148],[-103.16598227881349,24.435278186085725],[-103.17226064934619,24.434561164193042],[-103.17705852481316,24.431597244372142],[-103.18185468680622,24.424165587941843],[-103.18195342301789,24.41989658975166],[-103.18735090969318,24.423134575583333],[-103.20209150013415,24.424469131823912],[-103.20241077883946,24.42137486809264],[-103.2173318558909,24.42081082457355],[-103.21788780635353,24.417209922181826],[-103.22283354136175,24.41710277458526],[-103.22224622631006,24.420593694541367],[-103.22724847050671,24.420389216512945],[-103.22682556257661,24.42381089953517],[-103.23377656054572,24.42350090638206],[-103.23365551675784,24.42716298004666],[-103.23663564157806,24.427056598162892],[-103.23693332521412,24.43059099149417],[-103.23362854075941,24.43073031298701],[-103.2339795549571,24.43583823098612],[-103.23798654328351,24.43555037636918],[-103.24287783584134,24.43993496151427],[-103.24527739459108,24.444989858719794],[-103.24934468761967,24.446685908600102],[-103.25353178647629,24.44725380044082],[-103.2560279323049,24.444677113541047],[-103.26008203468297,24.442092471147816],[-103.2623006063045,24.439542796234093],[-103.26399746405536,24.435124346306736],[-103.26451908381091,24.4345809269077],[-103.2693627612162,24.43293694706864],[-103.2712106762819,24.433382967184286],[-103.27327488920326,24.43069694956938],[-103.28029531252088,24.429730558371887],[-103.28264548325137,24.42883702797485],[-103.28957500072642,24.429651469685552],[-103.29036297783637,24.431604916994843],[-103.2904583733989,24.43166361863291],[-103.29363838817477,24.43148941990563],[-103.29447504276175,24.43010744116941],[-103.29769908445633,24.430067780257332],[-103.30388651064061,24.43228796915423],[-103.30563978775808,24.43442356537588],[-103.30608937424302,24.43268723952724],[-103.30943182660337,24.435246672663084],[-103.31179203331669,24.432602051308663],[-103.31446320574196,24.431420209925875],[-103.31650308546682,24.42899422389104],[-103.3220262329603,24.428381207080406],[-103.3220409433763,24.427164824328713],[-103.32549606319083,24.42664874342165],[-103.33004213860829,24.42816005566408],[-103.38620479585364,24.422964725993438],[-103.38760505236974,24.427461602551887],[-103.39405638672474,24.4320992857767],[-103.39974886629784,24.432778683711945],[-103.39831939479927,24.429758836668043],[-103.40145666878493,24.428120308431232],[-103.40592901693071,24.429604774584618],[-103.40624939412595,24.427791529769138],[-103.40992739431243,24.428547295020564],[-103.40953050168946,24.426397260863496],[-103.41198940452585,24.42713800192945],[-103.41291395376845,24.428836305889718],[-103.41515016806926,24.428582899455705],[-103.41957905646194,24.430345932632065],[-103.42027416466931,24.427149886213783],[-103.42024141084954,24.42659508064571],[-103.41981877416373,24.4262453262823],[-103.42091642827478,24.425499889842797],[-103.42177214798073,24.424501286922236],[-103.42192545931067,24.424078114047006],[-103.42015789692016,24.421394322080403],[-103.42220922730218,24.420920866337894],[-103.42161928750647,24.41658762555801],[-103.425338076142,24.415296603882496],[-103.42567386851067,24.41297644067089],[-103.42893323222256,24.411678273374207],[-103.42956495123798,24.40951223705855],[-103.4301084516784,24.40919948030188],[-103.42882578279836,24.407340932889383],[-103.42840844249713,24.40252725545247],[-103.43035860933287,24.40135717288689],[-103.43002986269471,24.39910821988775],[-103.42781401558773,24.395124107454023],[-103.42808249388202,24.39214683618735],[-103.42607310065995,24.38952828784562],[-103.42588053756134,24.389372485902356],[-103.42586962848759,24.38927970708113],[-103.425619530505,24.387417278972123],[-103.42802728516403,24.386558511496332],[-103.42792805027227,24.38590926119872],[-103.42605679360338,24.382735137277677],[-103.42548672588379,24.382417598342954],[-103.42546195668189,24.382189051901094],[-103.4254294046491,24.380322727195164],[-103.42680162093092,24.378327572984574],[-103.42955084530831,24.373990776044366],[-103.4279508746036,24.371898983353276],[-103.4311820934368,24.361580018344057],[-103.43048223022845,24.360564252401048],[-103.43293211315643,24.35864981668584],[-103.43446309868182,24.35698642011141],[-103.43573596228123,24.35503474699516],[-103.43603924303989,24.351771907830596],[-103.43786429788673,24.349382421945563],[-103.43672098433979,24.34744282229576],[-103.43818521432934,24.345973825593717],[-103.44133057107257,24.341279265710114],[-103.44236792870106,24.342069172750712],[-103.44314777224344,24.34100513174519],[-103.44893017884203,24.33861576313342],[-103.44747369128748,24.337104287467696],[-103.44771039950683,24.33361702932359],[-103.449030913694,24.332109767955444],[-103.45432330746235,24.33026521409289],[-103.4564117710899,24.328458833760806],[-103.45702998839766,24.32814551319632],[-103.46032816297395,24.32349846325235],[-103.46141951005518,24.3228862056676],[-103.46240075545711,24.320644174896984],[-103.4681085196421,24.319879257129458],[-103.47168718637914,24.321574428092333],[-103.47321487374006,24.320529496299514],[-103.47364678983445,24.3202634347399],[-103.47413409534079,24.32014620341124],[-103.47719954240313,24.320612500828645],[-103.47999403516127,24.318929330482604],[-103.48406262905843,24.318340943467035],[-103.48567172373737,24.315035624012978],[-103.48588585173377,24.311383404680498],[-103.48492926847115,24.308675664604095],[-103.48601790014942,24.304943052401825],[-103.48481310336734,24.30190149947623],[-103.48606532524269,24.30005903470527],[-103.49284748123722,24.297989713720995],[-103.49685126437817,24.29836953797502],[-103.50019905240771,24.296325142777903],[-103.50407892263564,24.29604639600251],[-103.50439846836792,24.291957709567953],[-103.50665084808702,24.29096603927502],[-103.50675541238974,24.287964038887594],[-103.5080651236508,24.287722134690114],[-103.51281406937011,24.28822706649879],[-103.51444353870238,24.286790986817323],[-103.51850776928626,24.288688899138663],[-103.5232053755031,24.289043404491395],[-103.52375757105006,24.288959427932525],[-103.52724949016368,24.291773957178293],[-103.53009798194773,24.292308980364567],[-103.53086366501543,24.29374525475322],[-103.53605058709064,24.29163137139318],[-103.5378155257402,24.29035931064078],[-103.54135634501694,24.290113879879357],[-103.54769678752757,24.291456352639557],[-103.55502400408818,24.289472688130274],[-103.55885881598164,24.287507864062377],[-103.56834994058693,24.28637125562267],[-103.56835724615655,24.281941053032256],[-103.56741991228222,24.27686187503957],[-103.56783869096961,24.275472583556848],[-103.56844979357271,24.273445236911982],[-103.56870586987225,24.27164724324689],[-103.5674438696243,24.27026651305698],[-103.56738106768358,24.266129942988982],[-103.56399928881683,24.257559179072643],[-103.56300342233521,24.25731410477721],[-103.56289142653645,24.25682302387395],[-103.5633800892391,24.25452070758115],[-103.56080953675445,24.251119324642445],[-103.55858481009761,24.243836665865445],[-103.55649277864296,24.24200397710399],[-103.56008317491899,24.236632395960385],[-103.5625779520509,24.231107376544003],[-103.56315809021231,24.227969594803767],[-103.56206471024848,24.225751743657156],[-103.56193612349284,24.225170149539736],[-103.56459328021549,24.21507535778295],[-103.56537511159308,24.207996522888493],[-103.56361663822867,24.206854030930003],[-103.56309901741008,24.206524829335308],[-103.56310594644594,24.203606621418942],[-103.56175413171269,24.201426000915205],[-103.56144971019955,24.200834594008654],[-103.5598633415774,24.198838860078013],[-103.55925835661509,24.198411449159266],[-103.55972637706344,24.19619421714583],[-103.55981276875991,24.195499825413776],[-103.55973351398865,24.193316290088262],[-103.5615528519906,24.191596022644774],[-103.56183403818511,24.19137029029889],[-103.56606430955998,24.185224321161684],[-103.5693661600148,24.18352803003563],[-103.57111760092442,24.18273275521966],[-103.5742522175708,24.18171164765249],[-103.57630956037809,24.180988535285508],[-103.5809718675983,24.179583299732883],[-103.5795582327732,24.17845801041176],[-103.60576554336615,24.151154469223627],[-103.62200667308616,24.117464687790232],[-103.63596953409012,24.11029337712546],[-103.65438681655519,24.139556976643462],[-103.65806256514236,24.1455381497679],[-103.66036154768261,24.149326294179048],[-103.6767292514458,24.140402496554486],[-103.67712181943051,24.140187718672394],[-103.6789310526238,24.139200914089315],[-103.68265226752624,24.137194255622546],[-103.69522974432124,24.13029175924146],[-103.71069568128667,24.117416806588665],[-103.74564254182343,24.088965107138563],[-103.76003000597711,24.077245754895955],[-103.7976109345804,24.049461373216275],[-103.79977033057662,24.050564450127354],[-103.81028152556007,24.04009193859173],[-103.81327412758014,24.02197358208275],[-103.83222450511869,24.023980410929994],[-103.84312884538679,24.026967115773118],[-103.84782597886948,24.003236153858097],[-103.87238658312225,24.00702172348565],[-103.85027577749423,23.988837426262933],[-103.8375490274351,23.96408100320383],[-103.83394656660903,23.969642296285713],[-103.81835983419626,23.96490860313446],[-103.82327361088608,23.95134147233398],[-103.82695418264586,23.93004087180384],[-103.8308217798297,23.907760368579943],[-103.8531123542503,23.874615554780917],[-103.84975430729043,23.862565982533567],[-103.83262151634261,23.848930362727344],[-103.83202653439622,23.83874299453862],[-103.83145463280329,23.828381125282704],[-103.8311863746186,23.82466184248767],[-103.81809231624055,23.810678185965912],[-103.81639968370587,23.80821536219537],[-103.81994585636005,23.802357416512564],[-103.8222481582198,23.800762595989795],[-103.82058739399002,23.795677680189215],[-103.82027328619313,23.7918795053468],[-103.82357753843951,23.788913054932948],[-103.82702074359923,23.788548799971693],[-103.83320106426339,23.784769132770748],[-103.83509494946492,23.78508919199146],[-103.83539096391814,23.78259137746221],[-103.84075435159968,23.7780393384852],[-103.84415063989127,23.774192946572498],[-103.8436629718708,23.773198376884693],[-103.84760616152914,23.770838317825053],[-103.85028579944782,23.770685219977395],[-103.85122069984942,23.766701878293702],[-103.85382499416039,23.76344340158215],[-103.85463950397343,23.76244661135422],[-103.86236234362332,23.752638389303456],[-103.85448991584383,23.72792234581658],[-103.84101460799974,23.70124289374519],[-103.84441395937728,23.685277283232438],[-103.84429846381158,23.684573237996972],[-103.84974743433816,23.68157044241201],[-103.85108053478706,23.67959922318414],[-103.84760571492569,23.679440750185165],[-103.81347126061769,23.67787985416652],[-103.78510350043359,23.676564899342566],[-103.78789848060126,23.662317097462733],[-103.79214912501664,23.638620824429324],[-103.79354178519253,23.630855060843544],[-103.79779637992516,23.627403730403614],[-103.79948772446573,23.624251454657042],[-103.8023415109177,23.622662206647988],[-103.8044506461876,23.61920724584786],[-103.81130194576912,23.613648806698166],[-103.81916216194628,23.61666794514906],[-103.8370082260372,23.630376046017886],[-103.84917850886603,23.64008170290674],[-103.86353112305915,23.63422825752002],[-103.87698480270666,23.62911896302927],[-103.87738017232192,23.628869442180303],[-103.87433357290524,23.622373114105017],[-103.87344902293387,23.620467511878758],[-103.87780456548512,23.618704854801194],[-103.88252238284002,23.592270591706836],[-103.88794934741702,23.596173149179947],[-103.89041171717213,23.597911282121686],[-103.89900682387042,23.603971708921904],[-103.90257762597628,23.60504465732282],[-103.90266777866645,23.60252998872835],[-103.90491659007353,23.6030990527712],[-103.90686731441707,23.601870950210014],[-103.90352460605203,23.598934681893354],[-103.90372598750781,23.598656123314697],[-103.90485120269682,23.59710610680986],[-103.8982615095789,23.591561496763006],[-103.89747024031442,23.590894315712546],[-103.89747707758397,23.590808272742265],[-103.8961405549527,23.588469530444115],[-103.89517195187642,23.587735670064376],[-103.89375383494098,23.585883666241386],[-103.89268533707002,23.58487975106567],[-103.8904570683602,23.584918213342405],[-103.88985382362762,23.584927817785513],[-103.89099101828225,23.58145234976422],[-103.8905460715157,23.57973323203231],[-103.9119335756659,23.576082880115962],[-103.91404886976153,23.583267563981224],[-103.91227716111143,23.58812205097513],[-103.92094526560055,23.58905822259038],[-103.9218526936582,23.587275325494602],[-103.92183512524537,23.587134304497965],[-103.9206506308476,23.583783600201173],[-103.9199454455242,23.575778654803457],[-103.91830320721834,23.574686830320502],[-103.91664414482341,23.571226280300323],[-103.91627066425997,23.56572524227238],[-103.91809802658992,23.5652354263093],[-103.91982733008831,23.56268470198171],[-103.92171540027596,23.56204641997897],[-103.92395814494165,23.55845648714319],[-103.9308857816423,23.552641060144197],[-103.93465101965683,23.55171455310051],[-103.93494257144863,23.55117408698652],[-103.93635682916675,23.54988277257894],[-103.93683464552026,23.5497052681539],[-103.939987087742,23.547322402484497],[-103.94260775542887,23.54718833264002],[-103.94644450150406,23.5438063175784],[-103.95030114133971,23.53851840723803],[-103.95216899547836,23.539402594789124],[-103.95440389586321,23.537824827799],[-103.95672151551076,23.538456336425213],[-103.95909639686215,23.533535607971373],[-103.96030690769385,23.53351448200408],[-103.96276537737401,23.529894090306527],[-103.96682213295719,23.528896251808305],[-103.96985493219154,23.526532654755442],[-103.97252271281593,23.527171362976333],[-103.9774542454524,23.52430800537286],[-103.97794180254357,23.522777302343115],[-103.98294599473803,23.52202340796083],[-103.98451316032532,23.519101505941308],[-103.98624335089346,23.519563326386844],[-103.99019439483465,23.51559197816465],[-103.99181162965641,23.516004345747717],[-103.99197078260033,23.515818277560015],[-103.9921351247009,23.515617239688368],[-103.99643886315067,23.514671421557523],[-103.99893625150037,23.511789932449574],[-104.0038709798236,23.507839256767],[-104.02423450801513,23.49451166048476],[-104.03905773450998,23.483150780024687],[-104.05200332274882,23.47328553397034],[-104.06512613758048,23.463536138743052],[-104.06493050214436,23.46075692233063],[-104.0740699325653,23.438282993426128],[-104.08095931080072,23.42134565758539],[-104.08626759281299,23.39862762467044],[-104.09573936045689,23.38421226873504],[-104.09943605458159,23.378585150497145],[-104.10116799554555,23.366737154893883],[-104.106773379738,23.35513850955357],[-104.10920692548478,23.354957338127576],[-104.11121460011043,23.351205488187873],[-104.11507677885533,23.328409968832716],[-104.11286020030968,23.32556508226679],[-104.11367035615643,23.31787301831207],[-104.11517345190447,23.314177176605483],[-104.11372346495966,23.307775175714596],[-104.1145464697288,23.30298960314775],[-104.11625858773988,23.299994858327807],[-104.11645544434583,23.299354487451296],[-104.11639223011207,23.295397966170583],[-104.11791716685696,23.29362718888507],[-104.11997635361422,23.288221775281954],[-104.12027162684569,23.282850667146818],[-104.12046639758398,23.282082775317917],[-104.12077174681338,23.275309377285794],[-104.12231963200725,23.255162771122514],[-104.12312729175858,23.249952819145847],[-104.12349676009399,23.246819148774478],[-104.12414304985202,23.241312557684182],[-104.12602135056727,23.22530599525527],[-104.12696018943501,23.21299885754064],[-104.12902261952962,23.18221421213019],[-104.1543217646265,23.150800495448948],[-104.17213239360706,23.128407671384934],[-104.17220275308051,23.103079213136994],[-104.17273650067881,23.060022433534698],[-104.17281415202336,23.053609318426027],[-104.17308362360689,23.03134923921573],[-104.17343328755675,22.99994651692407],[-104.1736144558974,22.982444948405714],[-104.17254159344907,22.980949066493167],[-104.1689801410954,22.97978773276634],[-104.16453615337963,22.975348620241164],[-104.1628470430523,22.975302487393378],[-104.16264849563203,22.973799599425888],[-104.16636591756912,22.96948814287782],[-104.16822274345515,22.9635676201338],[-104.16772337015954,22.962812409726325],[-104.16761876154357,22.96262953729729],[-104.16785998491372,22.95898048586116],[-104.16698526027415,22.954457996940903],[-104.16427108893237,22.949311399558155],[-104.16659289692569,22.9452207260029],[-104.16529673771169,22.941752011081007],[-104.15838872188067,22.941190159203472],[-104.15598890610721,22.9396699290848],[-104.15375977928801,22.93651793517057],[-104.15543825752997,22.932916198708085],[-104.15528897382165,22.928434430237587],[-104.15298098944601,22.924404895217776],[-104.15235387382012,22.923935512473236],[-104.15112207323119,22.922137124245353],[-104.14794241949136,22.921261831518905],[-104.14413969792525,22.922444334559998],[-104.14052669790397,22.921429726679946],[-104.13870103991508,22.91886011386248],[-104.13765567935769,22.919889607181688],[-104.13503372919837,22.9168838233432],[-104.13526347805458,22.915493738055773],[-104.1354383019218,22.915380582281216],[-104.13710116883664,22.912304267467505],[-104.13434184930173,22.91055511578196],[-104.13344697396707,22.90571499181135],[-104.13022113372966,22.90454441329564],[-104.12951985918926,22.90477634617156],[-104.12516748847219,22.904211914567213],[-104.12450791943769,22.903984065933003],[-104.12292174439511,22.90343331217042],[-104.12052635180379,22.90623370974754],[-104.11633657660866,22.907667509423163],[-104.1160001511019,22.90751568099455],[-104.11559752443463,22.907151132911963],[-104.1128180484148,22.905312022258727],[-104.11320804095385,22.90390802666957],[-104.11613821000782,22.902626005147226],[-104.11757833284781,22.896779921164296],[-104.11368997707297,22.8925249124257],[-104.11347018234324,22.892325763359736],[-104.11313480397132,22.891575963226273],[-104.11305737627339,22.89109940951812],[-104.11192410754296,22.888361600824055],[-104.10901531670544,22.88684706645381],[-104.10870492484179,22.886645717026],[-104.10750488469756,22.884796209027],[-104.10759661580511,22.884258876308593],[-104.10719634567226,22.882152030908742],[-104.10952086615328,22.878353053827368],[-104.10893929691412,22.876718441323703],[-104.10861486585253,22.876347319997365],[-104.1071301827701,22.871923902825245],[-104.10843593851752,22.870458446864916],[-104.1081898018312,22.865372942527813],[-104.10630403080751,22.856887728429513],[-104.10714771765652,22.85502315517141],[-104.10976936274704,22.854687932119077],[-104.1132573356445,22.85588722817124],[-104.11592968261522,22.85534473832479],[-104.11682768357878,22.850951910846277],[-104.11572739984086,22.848415608066034],[-104.1109023552691,22.843594536481987],[-104.1089140332108,22.842574062967742],[-104.1073785595629,22.83820000780827],[-104.1071701049965,22.83727602681165],[-104.10635207461718,22.834595635168057],[-104.10443007642846,22.832460445866275],[-104.1069192531516,22.829536494056697],[-104.11014365647844,22.822955100976742],[-104.10993453599406,22.820271858863634],[-104.10635099354556,22.81403618407535],[-104.106201465874,22.81349990499234],[-104.11132499985683,22.81097163948715],[-104.11110321661494,22.809650276557306],[-104.10749205043118,22.808089271561812],[-104.1040832007468,22.808060032294463],[-104.10102678597025,22.805810002048418],[-104.10022986270923,22.805553993633623],[-104.09595331552629,22.806210889539443],[-104.09418028800866,22.801933294208027],[-104.09427213530802,22.801343149720083],[-104.0972709233373,22.798699830116846],[-104.09831496470338,22.798653523192854],[-104.10016995806018,22.796917150572597],[-104.1002241836702,22.794825219958454],[-104.09863159551645,22.792912984647387],[-104.09816528591926,22.792809730998385],[-104.09790771833627,22.792011639428495],[-104.09792024418505,22.7917601971796],[-104.09659629992854,22.787973512277745],[-104.09433364049289,22.789923570776068],[-104.0925258698058,22.789019354705204],[-104.09135319920199,22.783365598494754],[-104.0911487495589,22.783154017476477],[-104.09101546647315,22.782903931158046],[-104.09165133689311,22.782276240335875],[-104.0940686876159,22.77929899373038],[-104.09066560067424,22.77530432991341],[-104.08549244435244,22.775581370178998],[-104.0823745019149,22.773647428472316],[-104.08007163117918,22.769909071136624],[-104.08047522787842,22.766616807959167],[-104.08209329152595,22.764502092378336],[-104.0856732544438,22.763079009479554],[-104.09088906692483,22.76210155243109],[-104.09129032315883,22.760611430428582],[-104.09528525032124,22.759243512752562],[-104.10224368356597,22.764895036653513],[-104.1039556574147,22.767720533837633],[-104.10720303182427,22.76860051599931],[-104.1115867780905,22.766617733376904],[-104.11313615022931,22.764263711568844],[-104.11938149899987,22.762255726686874],[-104.12293530355652,22.76354821511552],[-104.13032977450621,22.76375464508942],[-104.13771625593398,22.768126813895094],[-104.1426124143706,22.76772653950883],[-104.14566197860631,22.76376007578051],[-104.14733198993679,22.76406568352104],[-104.14984441938776,22.762294432466604],[-104.15737940716326,22.75967965309826],[-104.16441668048122,22.758729753352384],[-104.17134623668943,22.759985267090713],[-104.17642373778767,22.758922798149797],[-104.1767227205487,22.758733328088624],[-104.18218084483789,22.75826810065871],[-104.18726137869737,22.76155297819082],[-104.18661407452026,22.76357681678354],[-104.19073405666796,22.768113962532993],[-104.19139132713161,22.770724099977656],[-104.19477695600148,22.771320114264995],[-104.19748141496922,22.773220426117916],[-104.19961436059077,22.776477842036968],[-104.20459190521956,22.777414912586323],[-104.20970432050427,22.77974326567619],[-104.2134132911977,22.77726059937345],[-104.2159051085888,22.778936221135666],[-104.2210387091879,22.779420159609685],[-104.2257440897489,22.778314925642746],[-104.22779313415856,22.774867103857503],[-104.22449760284616,22.77182599971104],[-104.22458850279327,22.766689801438645],[-104.22683601514916,22.764106745740094],[-104.22640233454058,22.762412629829953],[-104.22942917284848,22.758905998433306],[-104.23190265873018,22.757772502729267],[-104.23207464442777,22.753103934507294],[-104.23562355850356,22.751909262706704],[-104.23734983947423,22.749783430490652],[-104.24410984976163,22.750072892096284],[-104.24637878259426,22.748424023674033],[-104.25077898157144,22.747998766470744],[-104.25574519877148,22.74267875651924],[-104.25615936805463,22.742092073339165],[-104.25836751414391,22.7389258055822],[-104.26199930436053,22.738454191165886],[-104.26634439515067,22.736539366029035],[-104.26761036523851,22.73154974611265],[-104.2691523558334,22.72086489004107],[-104.26800931097188,22.717782496577627],[-104.2630629231844,22.7176433373603],[-104.26346865206904,22.717384307521456],[-104.2674387654589,22.712021936532608],[-104.27121212153315,22.710560889901387],[-104.27100807694075,22.707716129397795],[-104.27355267102462,22.7066014397779],[-104.27762982555464,22.70240683381985],[-104.27966323656085,22.695863459286784],[-104.27833139233644,22.690223111230637],[-104.27677699636973,22.68717607936327],[-104.27438178210645,22.684920563952744],[-104.27540148676087,22.680194752377247],[-104.27875823528632,22.67620768658719],[-104.27957175207882,22.673871945382473],[-104.27877385160815,22.671699239827603],[-104.28247276786578,22.669311282526564],[-104.28661497177342,22.66810707330393],[-104.28832674085231,22.663525896809404],[-104.28577881655411,22.659787023020897],[-104.28485228206011,22.659340614457108],[-104.28064710193757,22.654323807297885],[-104.28155930382377,22.651302930759073],[-104.28722295206563,22.650337105132678],[-104.28958899635848,22.64877543230199],[-104.28962404695505,22.644459984769128],[-104.28639916230827,22.644633459384636],[-104.28335794074655,22.646118449710173],[-104.2804403210107,22.645063703020696],[-104.27838827202095,22.64220833097687],[-104.2781138797352,22.641927054049745],[-104.27280612938188,22.639554315320026],[-104.26927494557373,22.6358211150619],[-104.27364237239397,22.63028201605721],[-104.27403085169374,22.62682699490358],[-104.27464646375097,22.62661148242495],[-104.27874695918473,22.624961535863747],[-104.28328788786598,22.62170324268834],[-104.28151577486807,22.617068860220172],[-104.27606536300453,22.615703163686362],[-104.27592859770863,22.61523652553103],[-104.27623010434581,22.61290530383269],[-104.27448988818537,22.610074621633487],[-104.27369140789853,22.60638888688868],[-104.26745853684292,22.603129559383717],[-104.26186983653253,22.598041144846036],[-104.26025762602052,22.595214032608567],[-104.26047102511143,22.593544273101372],[-104.26154728081974,22.588897264998423],[-104.26140747302384,22.586202844924344],[-104.26405603392453,22.586404723759756],[-104.26641081423651,22.588007383632487],[-104.27058766074413,22.58895524955568],[-104.27360234917592,22.587949936086943],[-104.27620462653528,22.58428440042968],[-104.27817274147242,22.583070970890617],[-104.27777303254595,22.579353663182417],[-104.27886679534123,22.57660432637175],[-104.2837776880624,22.570994611923936],[-104.28399445160625,22.566970704393214],[-104.28885517798375,22.560943233130843],[-104.28957426281664,22.558763212825568],[-104.28884961395875,22.552965229935694],[-104.29705267846595,22.555116150573383],[-104.30240858627388,22.55805032863691],[-104.30568929822408,22.55788863862017],[-104.31118348664677,22.55401046830866],[-104.31318366691602,22.54722801964823],[-104.31005541481682,22.546136692413597],[-104.31052392430229,22.544535738069214],[-104.31551154975949,22.54116608466984],[-104.32106329337745,22.535516320430816],[-104.32311493593528,22.537112182348324],[-104.32582417686643,22.537396656074804],[-104.32270476977249,22.53302691103113],[-104.31974751219781,22.532528759554793],[-104.31965750069202,22.52947499373397],[-104.32089476457259,22.52641693834198],[-104.31949916573342,22.51766332687373],[-104.31436284800986,22.507095425800742],[-104.30283132886859,22.492016702859758],[-104.29612581152605,22.472989082817662],[-104.29855099635012,22.46354877680966],[-104.29902542297435,22.46170187091866],[-104.3110500632921,22.45057245140947],[-104.31146775941096,22.44933285789881],[-104.3114865825396,22.44924730029777],[-104.31476970912667,22.448760240903027],[-104.3157608144046,22.44718273427975],[-104.31507252347836,22.444320739344846],[-104.31612436065006,22.441302729404015],[-104.31824183868002,22.440745167555974],[-104.31751092595431,22.438279003491346],[-104.31910466426922,22.438102562164033],[-104.31941185042672,22.43581102743815],[-104.32220507895482,22.435252044804997],[-104.32018806065275,22.43009424647431],[-104.32300884868687,22.428014422262265],[-104.32748368926815,22.429326787064895],[-104.32933358286004,22.42828313889146],[-104.32933183001745,22.43224029744823],[-104.33114168345293,22.43012727184788],[-104.32944782099423,22.42676526619374],[-104.33416036595514,22.42166342354369],[-104.33697821729595,22.4240371540497],[-104.33821293515143,22.42218049676154],[-104.3357178294558,22.420293007946327],[-104.34081687144516,22.419604411168507],[-104.34445865135245,22.417571471596432],[-104.34884292248154,22.409716640483452],[-104.35177101438853,22.40775833146222],[-104.35353303819323,22.401315247942875],[-104.35166127417608,22.389192825799967],[-104.35004092938243,22.38640541785975],[-104.32804062028214,22.381162243660413],[-104.3253158441695,22.380749394125246],[-104.29312755987917,22.365131155538393],[-104.29180733615078,22.36046800248016],[-104.28915205448169,22.35763032659463],[-104.28574027662944,22.35636614146682],[-104.28925884280812,22.351780447517683],[-104.2888466157678,22.349132287610303],[-104.29269401657047,22.34533796644581],[-104.29256283581219,22.34431484114367],[-104.28762805239171,22.344424848787526],[-104.28560271236199,22.34565912775372],[-104.28084904482944,22.344958736878084],[-104.27927606855661,22.343723671704424],[-104.27477251045906,22.342795221646384],[-104.26659487826714,22.343247726657125],[-104.26483939236994,22.346587795289622],[-104.26396289902351,22.34642636158162],[-104.25791305592742,22.347749853160735],[-104.25426946526488,22.34960514803629],[-104.25518272583457,22.357744484847274],[-104.2566677004059,22.359331696718698],[-104.25577486451925,22.3629401351576],[-104.25662022439627,22.364345032519054],[-104.25545613170095,22.37010377503674],[-104.25523079904184,22.370584296891764],[-104.25508909445523,22.373284155775423],[-104.25913138124486,22.377565776920505],[-104.25884492241886,22.38250637089982],[-104.25764078342945,22.38591057430392],[-104.25319735972943,22.386323299529295],[-104.25444242083483,22.392476290142838],[-104.25181706912707,22.393909901413792],[-104.25215258203565,22.39628408766515],[-104.24784707792048,22.40263810846818],[-104.24079196671937,22.412790369364984],[-104.23778935889368,22.412563468977794],[-104.23728735280491,22.412997242322547],[-104.23357217768779,22.415088701216064],[-104.23093877113308,22.414286898309683],[-104.22572359968632,22.419337783089247],[-104.21887662124192,22.4214943875931],[-104.21652064241653,22.421083467237622],[-104.21495047745299,22.422765907832115],[-104.21364115624897,22.421793134252198],[-104.20878370078412,22.422483867615824],[-104.20577779198925,22.420547484908866],[-104.20377468480353,22.41738916954762],[-104.20160258640817,22.41627710649493],[-104.19918770743936,22.407302556907723],[-104.19775233016827,22.405177094147803],[-104.195203527415,22.404117857688902],[-104.19304397427351,22.39912318587875],[-104.19059943557,22.39926197222877],[-104.1865324666868,22.395969227221485],[-104.18579455765638,22.395775725458577],[-104.18128034118712,22.392431403332523],[-104.17968975010302,22.392197172806675],[-104.17770138494075,22.3896347436189],[-104.17456810909982,22.388324076006427],[-104.16738578563167,22.38735622697442],[-104.16463636545268,22.39239929733037],[-104.16621237652242,22.393511917341243],[-104.16548111041982,22.39710226940491],[-104.16805349898527,22.402905881529136],[-104.16825167155844,22.4048850908365],[-104.17048539593151,22.40564356477347],[-104.17371066653254,22.4082617316447],[-104.17227055798236,22.410080265419992],[-104.17217945348784,22.410615112376263],[-104.1740088215887,22.41711005666781],[-104.17423008395087,22.41899375806281],[-104.17442246284111,22.42083644344916],[-104.17529032465166,22.420959755331467],[-104.17747157188728,22.42326961494348],[-104.17885578441161,22.4274324997686],[-104.17592624134738,22.427372087969843],[-104.17639416153173,22.428666091514685],[-104.1763820693692,22.428857276320798],[-104.17381683769491,22.42954516018517],[-104.17515141034448,22.430574472624926],[-104.17605207392302,22.43160802405066],[-104.17605486126598,22.43173122365141],[-104.17583700385887,22.431959733418466],[-104.17403400005458,22.43213551669669],[-104.17425927707598,22.432435820297542],[-104.1742976558441,22.432598929516985],[-104.17425620120395,22.434135849834945],[-104.17374921354366,22.434388737439804],[-104.17361905391056,22.436922979727854],[-104.17356163452564,22.437653263853974],[-104.17174486274314,22.438089540689987],[-104.17225331187888,22.440424579304363],[-104.17167855515515,22.440512665118945],[-104.16997448593469,22.440905960376085],[-104.16984724656976,22.44295559929884],[-104.1694316183357,22.444413685364623],[-104.17381491205037,22.442606676064543],[-104.1750623835274,22.442485422391144],[-104.17516518134869,22.443845306803837],[-104.1750658009837,22.446779967932173],[-104.17956002872762,22.450054394164],[-104.18151124564002,22.448010939201993],[-104.18420829561944,22.448272449217427],[-104.18586712409422,22.447718964829505],[-104.18800224369505,22.44726439484998],[-104.18864840299341,22.446959170533376],[-104.19011883125796,22.44609089754084],[-104.19104172334357,22.446058246288146],[-104.19159701149255,22.446286366130096],[-104.19302652590954,22.446608885112823],[-104.1943984794475,22.447285803309114],[-104.19510028305785,22.447631482971303],[-104.19665908310543,22.44905541251677],[-104.19682390122671,22.449514061397565],[-104.19692691528348,22.452142416381207],[-104.19891070633588,22.453403139580644],[-104.19987398512018,22.4563068856001],[-104.1982109371263,22.45630061780065],[-104.19820998531264,22.45855051099278],[-104.19814529522762,22.459541362352127],[-104.19742633987994,22.4608051644002],[-104.19711310272203,22.46108095628142],[-104.19574300522027,22.462204018607622],[-104.1902104071944,22.463839401143105],[-104.18751181612959,22.46422938336491],[-104.18498052836145,22.464622069077336],[-104.185831359823,22.466156432400453],[-104.18679669634838,22.466262357989137],[-104.18764749523416,22.46822571998638],[-104.18572953908512,22.471412705643274],[-104.18995692615772,22.468252487878487],[-104.18842111560014,22.469281105542734],[-104.18833325211972,22.470098778559134],[-104.1916926477362,22.471536610739406],[-104.19324494781586,22.475435515433276],[-104.19521319245843,22.472943283926952],[-104.19729708449069,22.477122281808363],[-104.20042714665277,22.472966473342638],[-104.20491651227672,22.471907817019712],[-104.20264474272426,22.475718630315384],[-104.20024032530398,22.478141863316296],[-104.19887402885104,22.480457308023233],[-104.2011860964945,22.483017823516718],[-104.2018888198794,22.482822944088753],[-104.20735717912703,22.481413960508632],[-104.20667702494097,22.482473430673565],[-104.211513920875,22.48183389150421],[-104.21482800328437,22.484161485620064],[-104.21353590328806,22.48398209345936],[-104.21270473056461,22.483773833747648],[-104.20879180113332,22.483375302088973],[-104.20752734156389,22.48545860618617],[-104.20428067562699,22.485956179627863],[-104.20316859192428,22.486245851550905],[-104.20182510975877,22.487113149259244],[-104.20233036008761,22.487610755264882],[-104.20232717138572,22.48871848991024],[-104.20151160646935,22.489917714754824],[-104.19896146907149,22.494949571315942],[-104.1963904075352,22.49713112000586],[-104.19483271148181,22.498308410819163],[-104.19441426475407,22.49914894867112],[-104.19537576592188,22.502673647451616],[-104.19265031022735,22.5037906033225],[-104.1895187718323,22.507785686712282],[-104.1857207023777,22.50786520277785],[-104.18465532005979,22.506955999685147],[-104.1841696557492,22.507134474539043],[-104.182417509488,22.507667707963947],[-104.18067770457947,22.505850990196222],[-104.1780547010651,22.5052960491376],[-104.17483440774907,22.507538680524874],[-104.17056206185333,22.507232421790434],[-104.16901227722684,22.509948900609743],[-104.16575982553951,22.51225956075791],[-104.16548620000748,22.512585951273252],[-104.16436753788014,22.51402264703364],[-104.16316299327224,22.514443531001177],[-104.16139040821918,22.512603189332424],[-104.16115833399277,22.51220945801731],[-104.15835346028933,22.509325072014008],[-104.15694460059768,22.51010134214397],[-104.15634842927079,22.515353963657162],[-104.15566631143747,22.51544871321562],[-104.15312655397884,22.515002990463756],[-104.15129738334946,22.515226811917216],[-104.15007913464814,22.513277852798808],[-104.14982148794888,22.50974386656685],[-104.14870548773939,22.509722967280084],[-104.14309114038792,22.5046514713909],[-104.13982595471623,22.503326466729334],[-104.13742246440029,22.50397009330237],[-104.13239818743597,22.503114470705782],[-104.13047620589839,22.503704412936656],[-104.12790109449827,22.50299129098653],[-104.12350042930808,22.502157582754307],[-104.1215917080354,22.497961020593948],[-104.12073426222173,22.496980363410785],[-104.1160059689596,22.496631312984505],[-104.11350892686613,22.496609856280884],[-104.11521912538467,22.49958646924432],[-104.11297234087243,22.503857370087758],[-104.1115401142223,22.503504717212138],[-104.11326949132183,22.507067396812886],[-104.11319604321858,22.510569407633113],[-104.11700950281676,22.512564550220418],[-104.12076677724957,22.515627200992526],[-104.12079624298804,22.517048628657847],[-104.11498123713022,22.51787568851347],[-104.11350194858198,22.52049079963848],[-104.11116953132671,22.521128378093408],[-104.10852681379657,22.52364991775363],[-104.10658060782595,22.523252935190726],[-104.10430668330349,22.529022125785673],[-104.10270719128823,22.53144691871961],[-104.1023490472466,22.53149710767906],[-104.09778247922458,22.53147273628349],[-104.09484964298042,22.53285241796567],[-104.09281122064414,22.531879330718084],[-104.08814369259471,22.532273212741416],[-104.08802243105782,22.533368919123575],[-104.08386261364421,22.532881272157567],[-104.08187997789065,22.533556399367],[-104.07716019910481,22.53178176480219],[-104.07262744653201,22.52495642692685],[-104.0687952486565,22.521999673388336],[-104.07415519525523,22.51566225475949],[-104.07417875501125,22.513317651562772],[-104.07160754831045,22.511912797081493],[-104.06938109517768,22.509017126912966],[-104.07156888534485,22.506013772983636],[-104.07115325694497,22.502433294981927],[-104.06163721715353,22.495123957124974],[-104.05706666098934,22.493197696460413],[-104.0547906365976,22.48944508775685],[-104.05567517359032,22.48347911722624],[-104.05351336108271,22.47966192167138],[-104.05178763114287,22.471545324412944],[-104.05193289641471,22.469919115547953],[-104.0515747108272,22.46674776698427],[-104.0524347825301,22.464499397391364],[-104.05615983794326,22.459643255790013],[-104.05686116199195,22.45666590852079],[-104.06224102881419,22.45127730022506],[-104.05817792478729,22.448634122286478],[-104.05858773490974,22.446203413507874],[-104.05860145862209,22.443486916688585],[-104.06327675377116,22.44170848997851],[-104.06234533130555,22.435922061463145],[-104.06343636455296,22.43258539663441],[-104.06113417806012,22.42959553058847],[-104.06163699845928,22.4258000718076],[-104.06321854953484,22.425003564713563],[-104.06648204061878,22.426887832161412],[-104.06798650765887,22.424530856376578],[-104.07284696519201,22.42026498194724],[-104.07346652840204,22.41324395673888],[-104.07674202969997,22.40685065261721],[-104.07723673264644,22.402855659049067],[-104.07619400493047,22.398784089042238],[-104.07826565745466,22.394008710297385],[-104.08071597384082,22.390860623386914],[-104.08044067252928,22.388421147549423],[-104.07753638827933,22.386867825549132],[-104.07539095143272,22.38313073641058],[-104.07877851951991,22.37690649862759],[-104.0828523755489,22.376059171456518],[-104.08441272879924,22.374451061994364],[-104.08752690748906,22.374278194409612],[-104.08798541338138,22.37843656740415],[-104.09216261260593,22.378369053672827],[-104.09489489354866,22.376306410389645],[-104.09719438874566,22.371452335769163],[-104.09712858840174,22.368653239198125],[-104.09558127405853,22.36584735404773],[-104.09595938180149,22.360875656299527],[-104.09684418418175,22.358616556179925],[-104.09734361126516,22.357892516911022],[-104.09464252120893,22.35507750474045],[-104.09140966054264,22.35571938225695],[-104.0875360928157,22.35783768428638],[-104.0836862893882,22.35782931167938],[-104.07769087564594,22.363382695606845],[-104.07530999219449,22.364390328916613],[-104.07157141068336,22.361800846288304],[-104.06747547543512,22.36140684098541],[-104.06671142914348,22.364133105926896],[-104.06302195443152,22.36513291244586],[-104.06055120051991,22.36857924953216],[-104.05678865987625,22.372090229948412],[-104.05375763232666,22.37157034070583],[-104.0512201473133,22.374876208994124],[-104.04875282295359,22.37644460932904],[-104.04288889980262,22.3753063936241],[-104.04194964913438,22.375836981360692],[-104.03837860037811,22.373844551323373],[-104.037493836426,22.373723573668258],[-104.03501371127771,22.37135394705814],[-104.02871454781484,22.37060259063003],[-104.02514618583024,22.36586271241407],[-104.02317903852588,22.364493483120896],[-104.01873365646082,22.365603295320568],[-104.01513380548698,22.364812892368434],[-104.01501278575643,22.368432671428934],[-104.01206349015018,22.37080358397003],[-104.01275112608835,22.372836480549097],[-104.01268310441912,22.37854989142204],[-104.00878036083333,22.382386738185744],[-104.00325093836977,22.389929809923842],[-104.00407767689745,22.39121646441822],[-104.00393699226959,22.39627805003164],[-104.00631972498127,22.40279671096181],[-104.00580750464161,22.406587533602476],[-104.00590629053414,22.408683691975227],[-104.00439410742314,22.40929415647264],[-104.00325389066427,22.410275053687826],[-103.99762658774222,22.40942742022878],[-103.99182185510199,22.411077712240285],[-103.99130130856605,22.41237911049467],[-103.98639205665131,22.414832934562526],[-103.985044366539,22.41790630435389],[-103.98588564813457,22.420825297820556],[-103.98446320652465,22.423670834672066],[-103.9827076873105,22.424097430471818],[-103.98229862775918,22.425538975431095],[-103.9770725435244,22.42619439625912],[-103.97650934309968,22.430398881509404],[-103.97482946834918,22.430517542710618],[-103.97462150140711,22.43319872431499],[-103.9757890612729,22.43594741747944],[-103.97484487996178,22.435727583450216],[-103.96712085068481,22.43347867508811],[-103.96325045989073,22.433276489479624],[-103.96246323457126,22.433322251494587],[-103.96057011067768,22.43317915604996],[-103.96002815084796,22.435237404971815],[-103.95977053024149,22.438043685228536],[-103.96071582635977,22.441091333155782],[-103.95795615281827,22.448144538236193],[-103.95865975927757,22.451085189760306],[-103.95605975783928,22.454053682699396],[-103.95340067844285,22.455098786809288],[-103.95118287639445,22.46040182655514],[-103.94932771631744,22.461791685821936],[-103.94228724726344,22.46142288408555],[-103.9379530089243,22.46275545406968],[-103.93681102420175,22.466396204359057],[-103.93804042263662,22.470184085742176],[-103.93344307003713,22.47120042016627],[-103.93462949313812,22.4731912294547],[-103.93816222243532,22.473285541857024],[-103.93779077882124,22.475203451203413],[-103.93466408743711,22.47662997813285],[-103.93147641111295,22.473600249896208],[-103.92944206975068,22.47512375919979],[-103.93014151064585,22.47645703556219],[-103.93120582466355,22.476749182939614],[-103.93782066948603,22.48678355036884],[-103.9382563888816,22.487174449580152],[-103.93989265626152,22.48947945677594],[-103.93828389093045,22.489613160343595],[-103.93730767700464,22.489131510739696],[-103.93504970698712,22.488050363882678],[-103.93308155157547,22.489092804979293],[-103.93706907146014,22.493236463095116],[-103.93744800075291,22.49378100090928],[-103.93708879332263,22.497598783427804],[-103.93450865941998,22.49910379040591],[-103.93569514080872,22.500380647673296],[-103.93639510495643,22.500156926404202],[-103.94010977753777,22.499265002548725],[-103.94172841930646,22.502187216535958],[-103.9455817598589,22.504098892052696],[-103.94994135627292,22.502870840885635],[-103.95113192713887,22.505302643663583],[-103.95004112677401,22.50888728667752],[-103.95241354124357,22.508543154169956],[-103.95354832761512,22.50549724277198],[-103.95636331308907,22.504553665457763],[-103.95828849416836,22.507693361515408],[-103.96181809399008,22.509097957112715],[-103.96341101195316,22.508040481561522],[-103.96430312068946,22.509637063494324],[-103.96317412889044,22.51180427909793],[-103.96314417087393,22.51501938044271],[-103.96523552328466,22.51666317983387],[-103.96619678704997,22.517225900080973],[-103.97154370505024,22.515947927176796],[-103.97432598127244,22.516237719316052],[-103.9763256357868,22.513321392108935],[-103.9772626526476,22.516488040027582],[-103.98064873977677,22.515102684206056],[-103.98028830998658,22.51903775130029],[-103.98483268276811,22.519137865012112],[-103.98815263379271,22.523545300923786],[-103.99125622396815,22.523266511668112],[-103.98997602080317,22.52588601449679],[-103.98684679427896,22.528309672139756],[-103.98904995147473,22.52918657745181],[-103.99038100978345,22.52771340147507],[-103.9937743414497,22.529905472028588],[-103.99976291963316,22.530756823845195],[-104.00277775972665,22.535253763496428],[-104.00557082745257,22.536600283325924],[-104.00314681793128,22.541273103799938],[-103.99888116985579,22.543603669998276],[-103.99471533495114,22.542687878119693],[-103.98706915126473,22.54283187598952],[-103.98449918833836,22.54149274946019],[-103.98009457406141,22.54061715856585],[-103.976667112072,22.54260263540567],[-103.97302442027461,22.543121652732907],[-103.97233212431729,22.54511362764913],[-103.97594531533883,22.546206879836006],[-103.97850360449189,22.548662756442297],[-103.9823346236904,22.549815889965203],[-103.98180761514959,22.550619644623055],[-103.98387001093238,22.55405433863524],[-103.98531256931062,22.5534491802008],[-103.98692485572923,22.555897063574832],[-103.99066691153399,22.55695109500175],[-103.99289213670534,22.560019627961253],[-103.99382582927313,22.563813363198847],[-103.99389466970513,22.564527019359502],[-103.99993239664144,22.56452974313197],[-104.00075022395407,22.56755620956818],[-103.99707210617515,22.568497616362663],[-103.9960813092568,22.569923685437743],[-103.9930980484695,22.57027999747646],[-103.99017417591574,22.57304151712799],[-103.99061004393695,22.5786560279347],[-103.98998581824839,22.582485581964136],[-103.98678501424445,22.58472945067382],[-103.98328601580783,22.585471721428746],[-103.98604881358676,22.59043532430195],[-103.98675918209221,22.5911861323238],[-103.98888407084036,22.592474386540687],[-103.99728677275783,22.591440759028217],[-104.00222021209674,22.59257921578535],[-104.00397807763716,22.59449393923535],[-104.00848844646134,22.595146005403706],[-104.00932062158483,22.595024161717618],[-104.01388163112762,22.596609605437607],[-104.0158321041489,22.595945240610092],[-104.02004392756311,22.599255428436834],[-104.01983395893797,22.600687458349796],[-104.02245616537965,22.602794860566632],[-104.02262143541986,22.602779049082415],[-104.02340390074829,22.60353786794633],[-104.02411742195079,22.60934383255534],[-104.02700563791319,22.613178152697287],[-104.02570119143019,22.61446003639071],[-104.02489310230817,22.61721565269363],[-104.02567677824209,22.616444207126676],[-104.02691337526835,22.618585503274005],[-104.02570690357169,22.6215975138893],[-104.02594763494119,22.624225587084823],[-104.02784269770791,22.62526882418564],[-104.03320462446828,22.632233681101695],[-104.03189349769883,22.636366663829165],[-104.03038649429868,22.637572564708023],[-104.02923725858676,22.638248410565154],[-104.02817544845902,22.639048080388136],[-104.02745777301737,22.640558110430504],[-104.02752576970636,22.64111260119563],[-104.02817690224776,22.643094912678237],[-104.02823267000514,22.64455100752525],[-104.02742357915633,22.64660043013373],[-104.02694015525486,22.64751007464315],[-104.0274674977727,22.648415603215483],[-104.02585889248007,22.650953924352393],[-104.02529918512391,22.652121032295497],[-104.02426672817995,22.653164264837415],[-104.02506729311494,22.652049784369524],[-104.01950673118597,22.65264875031977],[-104.01946106909895,22.65535148135359],[-104.01637843216889,22.66434843387185],[-104.01550887306382,22.668910660434108],[-104.02402584626589,22.673248310123313],[-104.02549168411406,22.673971810269336],[-104.0296686562836,22.67679431299581],[-104.03136813013629,22.678856646975817],[-104.03281203038296,22.676341693335132],[-104.03297251397282,22.671727174510124],[-104.03423954380872,22.670517910417004],[-104.04326677312088,22.67189348808904],[-104.04693721058516,22.677138092675534],[-104.05028958772755,22.67678719368587],[-104.0548103711962,22.67842052497241],[-104.04852376926942,22.680184612742153],[-104.04688780978364,22.681807924523525],[-104.04660550181529,22.684248618928166],[-104.05099895154586,22.688420549304396],[-104.06190306374464,22.688212810753612],[-104.06636359989903,22.690768159842378],[-104.06919227825551,22.690062056714225],[-104.07296804854008,22.69324561352545],[-104.07362273111698,22.696953113850896],[-104.07281094460677,22.698307570489476],[-104.07200651926968,22.699138931451785],[-104.07214422301763,22.70135385954336],[-104.06903060760112,22.701245756384424],[-104.06101576693015,22.6914433651051],[-104.0591642172667,22.69206366573252],[-104.05749005297116,22.69485432840429],[-104.06009521331879,22.698031987123727],[-104.06196048862597,22.70378628095682],[-104.06432819767656,22.70564414393209],[-104.0641509761536,22.70696305413145],[-104.06070572420884,22.708513514530466],[-104.05611106548213,22.70902595623909],[-104.05243599804749,22.707741911627295],[-104.04970529993079,22.708358332229864],[-104.04774766875215,22.712151404636586],[-104.04975317313034,22.715404377721427],[-104.05546551671534,22.720135275207326],[-104.05591150193999,22.723978195778045],[-104.05330327885315,22.724881774665107],[-104.04614521215166,22.728677534174835],[-104.04288612139828,22.72914283702727],[-104.04080919453332,22.728063462940668],[-104.03698339846846,22.729616594966842],[-104.03599083111686,22.73268223563383],[-104.0359792516382,22.73403615876498],[-104.03236815104816,22.735369344480546],[-104.02766700226545,22.739044757631973],[-104.02777665024087,22.741742689292096],[-104.0256905283976,22.743278159335148],[-104.02052420929004,22.743878733076656],[-104.01868314845052,22.745061868144774],[-104.01486361795014,22.745650489326408],[-104.01299931158536,22.747625980394048],[-104.00951703899943,22.747416497814868],[-104.00776494663847,22.744251960440693],[-104.00299342231392,22.746894618189856],[-103.99967028324824,22.746253140862564],[-103.99803090176368,22.747532524721862],[-103.99192675748236,22.74800156961726],[-103.98888436106648,22.746381811465255],[-103.9901616141459,22.742309525398866],[-103.9852691422733,22.742900854607967],[-103.98181516519611,22.745499251085675],[-103.97711652223023,22.74715468640818],[-103.97463791660158,22.747024743988845],[-103.9750945000099,22.744942413504987],[-103.9737733339187,22.74265761321186],[-103.97154976117793,22.74176440673665],[-103.97098683412645,22.745062927513914],[-103.96941043859698,22.74669191442763],[-103.96515797783513,22.746093199466827],[-103.9614718268599,22.74705250168421],[-103.95930433368272,22.745446569754733],[-103.9562721542199,22.745612431509983],[-103.95097191103957,22.74731881439459],[-103.94842165119326,22.74563033253571],[-103.94538233009632,22.746202039868194],[-103.93994032030463,22.750159292418743],[-103.93712227755879,22.74746570807116],[-103.93291109818131,22.745338412150943],[-103.93214660393761,22.745252632232848],[-103.92800541922634,22.747250070479822],[-103.92476999584267,22.747040631237724],[-103.92326919890019,22.748522080877137],[-103.92032307410932,22.74807862545697],[-103.9165227354224,22.749830076330227],[-103.91315524363137,22.748953502184122],[-103.91001821974874,22.750143732927995],[-103.90927926120196,22.747610886375583],[-103.90929532301692,22.74757614877842],[-103.90908345059825,22.74728499520694],[-103.90660100228348,22.746286748599232],[-103.90413519417115,22.742170801047394],[-103.90157299144107,22.7349478105059],[-103.90312956308861,22.730859226099938],[-103.89832762781293,22.728277308422946],[-103.89022102733969,22.73532489936133],[-103.8813979504726,22.73454384129866],[-103.87755740535476,22.735287815064112],[-103.87511418192258,22.737157690834408],[-103.87367111414505,22.73516881447233],[-103.87268579021702,22.735458930336108],[-103.87030881596206,22.735469912962117],[-103.86775306840866,22.732400455822983],[-103.8651694662662,22.735433940853454],[-103.86158289701467,22.733395006024637],[-103.86081249450922,22.73350568718132],[-103.85800049788799,22.733345729053326],[-103.85592722392846,22.731720893394765],[-103.8556892616694,22.731472248824275],[-103.85587753741629,22.73096008828537],[-103.85592470574784,22.73042844278814],[-103.85122044789892,22.730457171461296],[-103.85017016627108,22.73048936208778],[-103.84488526818626,22.731835800929446],[-103.84009473571501,22.732097772725183],[-103.83696509527124,22.730692095912048],[-103.83663611296919,22.728025471389913],[-103.83529052355323,22.729357817221455],[-103.83506802407334,22.73038552714678],[-103.83272238303448,22.733568456784155],[-103.83049276499645,22.733440753007187],[-103.82925263203657,22.73104006809001],[-103.82711731075636,22.734651695898606],[-103.82163345919258,22.734040395813906],[-103.82123405925148,22.730985602434032],[-103.81978651525668,22.728478420919544],[-103.81887276784789,22.730242057006876],[-103.81675455523043,22.72846231668217],[-103.81372904237912,22.730319346441433],[-103.81205349935436,22.7292177583235],[-103.80589028552521,22.731497296987413],[-103.80520812983656,22.73013147248912],[-103.80064866569592,22.731305360362796],[-103.79991562534644,22.730036106083332],[-103.7952895800421,22.730381084863836],[-103.79438670671158,22.729115260824642],[-103.79200372023081,22.730447611365832],[-103.78679527789939,22.729914809473428],[-103.78445892262903,22.731635676057238],[-103.78138526175769,22.72981707101684],[-103.77892384420198,22.732028672700665],[-103.77467361823108,22.733868901564506],[-103.77153921243882,22.733214065678567],[-103.77125114849076,22.73090794398462],[-103.7692271528004,22.727258863277996],[-103.76973825096991,22.725314564975747],[-103.76907414060196,22.720392062883604],[-103.76000155921116,22.719433333361508],[-103.75480617073629,22.719547779573134],[-103.7554444017149,22.714883728447546],[-103.75241595084731,22.71254565374602],[-103.75195632978381,22.710490758297567],[-103.75361253455145,22.708290210221378],[-103.75188859050837,22.705881032428294],[-103.75235500455472,22.703088386533466],[-103.75269717240548,22.7027231491557],[-103.75335330108084,22.69850016954956],[-103.75131115059105,22.695047103787317],[-103.75602998734644,22.690292024660778],[-103.7595683573154,22.684646203452758],[-103.75951322706533,22.681975683581697],[-103.76099910983362,22.681521146242233],[-103.76219787448002,22.678474988103346],[-103.76261346448598,22.678068111949756],[-103.76194132056594,22.675487185458223],[-103.763704495453,22.67207504028346],[-103.76264152516836,22.66923172460008],[-103.76243596062551,22.668853646110904],[-103.76348033060941,22.66239329774845],[-103.75987144321766,22.66082243819119],[-103.75866850452763,22.6584208716651],[-103.7620809811562,22.649948242190987],[-103.76516648678358,22.65048683436794],[-103.76729732496119,22.648257163782148],[-103.76845997030352,22.64332864601846],[-103.76711200599516,22.64082602937816],[-103.76766645607762,22.63580611199626],[-103.7659915117668,22.633411997802625],[-103.76519644993232,22.629510645882362],[-103.76085869703411,22.625802245807165],[-103.76588297625085,22.62228025266046],[-103.76702681694434,22.619081264608894],[-103.77274061837073,22.614494334094218],[-103.77345074729243,22.611495480284475],[-103.77857604769792,22.609903723247896],[-103.79715829952204,22.603170897496398],[-103.81104309253294,22.59844820944602],[-103.8178761550522,22.59616532176676],[-103.82005856702557,22.59448992832216],[-103.82124604364617,22.593974732873335],[-103.82262850291261,22.59354168684621],[-103.823559065707,22.592218750305847],[-103.82392891393727,22.59185351764023],[-103.82520599462237,22.587970891914722],[-103.82776217996496,22.588360319475896],[-103.82960840562788,22.587169851847023],[-103.83023967464396,22.586626607403332],[-103.83310593852246,22.585902716067608],[-103.83449760969609,22.583445226754975],[-103.84162552890285,22.580612633540056],[-103.84268361904759,22.579251743435634],[-103.8435519468315,22.578976973053727],[-103.848359595874,22.579291955295616],[-103.85110813635004,22.578025610018244],[-103.85238998874803,22.5776179355193],[-103.85311141500296,22.57685442709726],[-103.85409157543535,22.57610698239614],[-103.85467628343201,22.575638431836865],[-103.85576598978741,22.573362446386454],[-103.8553654531321,22.571835590097066],[-103.85673140583475,22.571784671006412],[-103.85687645780393,22.570833858049525],[-103.85603956419078,22.57054459162697],[-103.85601052117846,22.570332685358835],[-103.85626717790143,22.569773028753104],[-103.85742131100403,22.568538714937347],[-103.85790878274753,22.568041083566413],[-103.85788803464163,22.567306494449042],[-103.85812810082854,22.56644082919007],[-103.85970718457463,22.567458029771842],[-103.86072056986006,22.567618866963585],[-103.86073773633206,22.565089443400893],[-103.8573313637034,22.562579276536837],[-103.85223068889098,22.55626783768298],[-103.851939639774,22.553262476122427],[-103.85379739159333,22.549784697885514],[-103.8581166772845,22.547587024634822],[-103.86163901531347,22.547650181834285],[-103.86688267245353,22.544696043618274],[-103.86805753555518,22.54239568692259],[-103.86468329238346,22.53944669521718],[-103.86665558803435,22.538549200777197],[-103.86930665318857,22.539608685057203],[-103.87047637630587,22.539421691093253],[-103.87336352570696,22.53194028298458],[-103.87298190724533,22.527114741456614],[-103.87498488542803,22.522219442126982],[-103.87456817930934,22.521083942623704],[-103.87243041173491,22.518436300616713],[-103.86885111741111,22.51814464089597],[-103.86831795203437,22.516566779944924],[-103.86557630657859,22.515153514482392],[-103.86425394041419,22.51299787025306],[-103.86537259090369,22.51137462061172],[-103.86355809087229,22.50993297876545],[-103.86486308265012,22.50750384621682],[-103.86345932179904,22.507395640642187],[-103.86443498957084,22.503896558061342],[-103.86231608540868,22.50189167046267],[-103.86393415043074,22.496946518393486],[-103.86418870841936,22.492288870967343],[-103.86475583715855,22.489953757272417],[-103.86536621821404,22.48873695366376],[-103.86501877131076,22.48776227831462],[-103.86650734123037,22.485318370520645],[-103.86741192930884,22.483273576850763],[-103.86776744411986,22.47841775071936],[-103.86969993723687,22.473738156628087],[-103.8733255190939,22.471769324333764],[-103.8761266879456,22.471981243429354],[-103.88023671371718,22.474773073517554],[-103.88118620396892,22.47472022858574],[-103.88166104810796,22.47615470152988],[-103.88209685329633,22.477158902030794],[-103.88536857603759,22.47352509392374],[-103.88477731967896,22.468974896572774],[-103.88184198244238,22.468826596909707],[-103.88168553834834,22.466097202223068],[-103.8828546438312,22.458016501464783],[-103.88242098840345,22.45333591190456],[-103.87917394010032,22.45245216772736],[-103.87688655042302,22.445972594747673],[-103.8760983512027,22.44118390704034],[-103.8798546362467,22.44000784095101],[-103.89024931313304,22.441804678772826],[-103.89433846667885,22.439441133809737],[-103.89470000089511,22.438163856582833],[-103.88727469318331,22.43210019441824],[-103.88167016409653,22.428802525998663],[-103.87590464293532,22.426494115141168],[-103.87517585756024,22.42621075275929],[-103.87270802386746,22.422806493901533],[-103.87934302223135,22.42068937813849],[-103.88062275196279,22.41816252932739],[-103.8745460142045,22.419136227073125],[-103.87464664455757,22.416998717011552],[-103.87211989082124,22.416041757763537],[-103.8707804277825,22.41729714501281],[-103.86852553067462,22.414932164724178],[-103.86597617813311,22.41522722509677],[-103.86692938360846,22.409380633218404],[-103.8693123198637,22.401262414760765],[-103.88257159492616,22.401615006260784],[-103.8862798467656,22.398900632637492],[-103.88325380113048,22.39357510859702],[-103.88345065861404,22.390024065239572],[-103.88657728176003,22.388681203345868],[-103.88827603878076,22.38951020163438],[-103.89245501089863,22.388028133482976],[-103.89160437248302,22.385529149669992],[-103.89157293257057,22.385170917136406],[-103.89124273208228,22.383571626446326],[-103.89492831893836,22.38173419914],[-103.89731201592923,22.381646783996814],[-103.89927107809842,22.377173989367748],[-103.89913583160126,22.376588248336418],[-103.89580132042323,22.36465056062997],[-103.89914291836914,22.363031524641315],[-103.90170219770096,22.36453431495272],[-103.90434297594061,22.364562550342214],[-103.90786301284254,22.362050479297125],[-103.90924714391474,22.359393200476177],[-103.91069630909078,22.35392064700909],[-103.91342089287156,22.35109600609536],[-103.92129979747818,22.347880328842336],[-103.92139251422321,22.342719139123005],[-103.91932876498396,22.338323308253393],[-103.92056738743543,22.3350377837192],[-103.92208281996545,22.335164684169],[-103.92593134420372,22.33255913538352],[-103.92242802223302,22.326694350837556],[-103.92388815556188,22.324917562198493],[-103.92091443106693,22.322810228600872],[-103.92251199928182,22.318698483137837],[-103.91971140162121,22.316585862547356],[-103.92096345976239,22.31427454946794],[-103.91618756017863,22.31235488587754],[-103.91585607151956,22.310506023220285],[-103.91887676169426,22.304051029809727],[-103.91402999897633,22.299949428375953],[-103.91612647890793,22.300081120574248],[-103.91582860712896,22.29231986488884],[-103.91430259467967,22.28914394078646],[-103.91599414380443,22.288543658048468],[-103.9136968983122,22.287195865324634],[-103.91364381187685,22.284854209181674],[-103.9112353023661,22.284382045988536],[-103.91001080844393,22.28154105929019],[-103.91227130400256,22.281658283345166],[-103.91429398326073,22.277609477154442],[-103.91356975099313,22.271523931490037],[-103.91175423686946,22.27047518064444],[-103.91383257586165,22.269445275171336],[-103.91752024709422,22.264542321966985],[-103.91787556627736,22.261970445512816],[-103.91456969033004,22.260651900273615],[-103.91302022626502,22.256821281504756],[-103.91016860663115,22.254534052437975],[-103.90767896529735,22.25460818727879],[-103.90722350281578,22.251409012870965],[-103.90530957340007,22.249913428058846],[-103.90584010569472,22.24834110604371],[-103.90360469388884,22.24354526388794],[-103.9038959347082,22.242084544629677],[-103.9022588663629,22.240327173576702],[-103.90165640379541,22.23708096039013],[-103.89828876806166,22.23421903237039],[-103.8962656512411,22.233555792380514],[-103.89242214723777,22.228846784171935],[-103.88697038504642,22.227060727837795],[-103.88440279699137,22.220279604043583],[-103.88508996627559,22.217292521664262],[-103.88217452155163,22.214518366548305],[-103.88113043271784,22.205323677978356],[-103.8840475435278,22.20148661585978],[-103.88394868375508,22.19994561644728],[-103.8839346570486,22.19758446945559],[-103.88485763195791,22.196042540844132],[-103.88256125622462,22.19582097135799],[-103.87856890492742,22.19247709366482],[-103.87689426079675,22.19214072903219],[-103.87342735532445,22.18454069103234],[-103.87311699870122,22.178397448812518],[-103.8708263412758,22.176170213384978],[-103.86627541347218,22.16982640862915],[-103.86293600642273,22.166882429560985],[-103.86216323112058,22.171785947602018],[-103.85779329416528,22.188158126189478],[-103.8525463409378,22.20119446620066],[-103.8492290876589,22.208191180536573],[-103.84407555394347,22.22206592829349],[-103.84467245021409,22.23035624972715],[-103.8435093038492,22.231237492964453],[-103.84227866738217,22.25031722199475],[-103.84324630870532,22.25598068384852],[-103.84519312168948,22.261350080271484],[-103.84258467976656,22.264715877559297],[-103.8425303808558,22.266435112431452],[-103.839838231199,22.26628752582843],[-103.83565633015655,22.27249816885586],[-103.83606183263339,22.27432177715184],[-103.83478045716453,22.27704429450887],[-103.83203268671491,22.27939749278562],[-103.83037815581844,22.284866168997212],[-103.8286198127891,22.286612899850525],[-103.82915305677744,22.28993118284643],[-103.83109183776315,22.29208976617258],[-103.83183488812955,22.294837226198297],[-103.83665764221269,22.304294312145373],[-103.8379526689348,22.312464257301656],[-103.84115949820352,22.322620516013558],[-103.84396790548783,22.326367345451047],[-103.8452349445655,22.329431705482193],[-103.84610738486913,22.33097968120296],[-103.84543422909258,22.342757499957372],[-103.84148538244301,22.345604718223456],[-103.83745559997192,22.352000291832667],[-103.83457138282512,22.352403062485394],[-103.83062268273204,22.355188358634507],[-103.82788073527257,22.35424341455456],[-103.82616715070634,22.356285075828907],[-103.82680757341029,22.358284168133935],[-103.82451481064157,22.36072424259197],[-103.82286085524743,22.361489611002924],[-103.81994113927897,22.3641383436605],[-103.81717172935544,22.36899459577046],[-103.81745910125272,22.37145884003155],[-103.81115173010716,22.37674522336971],[-103.81204105931363,22.3791896993489],[-103.8117652639865,22.382602054488302],[-103.8130079771048,22.38391988802357],[-103.81164480773913,22.39258545833968],[-103.80978650770618,22.395298684591125],[-103.80870382065922,22.398745031442047],[-103.81165868174526,22.40047536781725],[-103.81317659371115,22.403397173357348],[-103.81268560463894,22.407669037460664],[-103.81031027914753,22.411563346119863],[-103.81070895098554,22.417635394002332],[-103.80932912616908,22.42271671693362],[-103.81017641454713,22.427285226607466],[-103.80804634917877,22.43133956490152],[-103.80781098670116,22.433729733111363],[-103.80713254785405,22.43837262035936],[-103.80622648410656,22.441793073033182],[-103.80449572116476,22.443614161098083],[-103.8027549108782,22.445110520192316],[-103.80099159134335,22.450634114238483],[-103.79965384664843,22.451240766784622],[-103.7980545175738,22.457727294057406],[-103.79561024987811,22.46502441590411],[-103.78890635545292,22.47391347423337],[-103.78698274310779,22.47776802159285],[-103.78605723780038,22.48364651942927],[-103.7838450018179,22.487852100179055],[-103.78425184678957,22.489415349270303],[-103.78369821465412,22.49577500356827],[-103.78504903789911,22.499213030893657],[-103.7838923825247,22.50043459534146],[-103.78410848954906,22.501729366041218],[-103.78434088546084,22.506273059314708],[-103.78355371229782,22.50981202648171],[-103.78447628935947,22.51009180177317],[-103.78297550372463,22.51160734121322],[-103.78217080760413,22.514874223872027],[-103.78160185783543,22.514706131836988],[-103.77921185892916,22.52057568870083],[-103.77698947516802,22.52620819826268],[-103.77642119160197,22.534133931683186],[-103.77604808461723,22.53591773302395],[-103.7738548758183,22.546405742009313],[-103.77250532089624,22.548703737897483],[-103.77094821209295,22.550811625264203],[-103.76910208888279,22.55578915219934],[-103.7599762193185,22.555600774498373],[-103.75924138599203,22.551665434632298],[-103.75528898939422,22.554220141515316],[-103.75310831545761,22.55787087595894],[-103.75168481756265,22.55852166373586],[-103.74450269630626,22.558498564949332],[-103.73845165822917,22.57196399677116],[-103.73634599063456,22.57227277298574],[-103.73256237979297,22.57240515361252],[-103.72655501019455,22.574146631906558],[-103.72175916306429,22.5719848666418],[-103.72064300773383,22.57132545097943],[-103.71462373341939,22.566758414456103],[-103.7140667512034,22.566396893450417],[-103.70809579053554,22.56312284913173],[-103.70612885423031,22.563724750238862],[-103.70084610752178,22.56303127902612],[-103.69566548480759,22.560603305028792],[-103.69400273538366,22.558606903061843],[-103.69071457798867,22.55792932536832],[-103.6869272238207,22.558353887275587],[-103.68136915920371,22.554796493736376],[-103.68012413734664,22.55683468238766],[-103.67709774855285,22.558305710815944],[-103.67370401882096,22.56143214792445],[-103.67258582794346,22.561129219909844],[-103.6672124338948,22.554185545862197],[-103.66505331839306,22.552866957879417],[-103.66326492789477,22.549374450904736],[-103.66247105424509,22.547636189701848],[-103.66023587774458,22.547495910137172],[-103.65964979954396,22.550272232188036],[-103.65501799775188,22.55253724124924],[-103.65454391312505,22.55470404713452],[-103.65156504219453,22.5564782115581],[-103.64931629511779,22.5566738427529],[-103.6479236445964,22.554879255377614],[-103.64293393774824,22.55633332767809],[-103.64152031230088,22.5575885621962],[-103.63794129765296,22.558272998667917],[-103.63622767021599,22.560018912008616],[-103.63530739381179,22.560143057288258],[-103.63392174354897,22.559942552409268],[-103.63286162402659,22.559743132563653],[-103.62963651326163,22.559799901737904],[-103.62815731852447,22.561941820864035],[-103.62238238882708,22.563574189515293],[-103.61852715321277,22.563670937436996],[-103.61748506061718,22.560368003784333],[-103.61178254373465,22.558422803518624],[-103.60999715336641,22.55971839051432],[-103.60681330126607,22.55897593563685],[-103.60275868182578,22.55679154016167],[-103.60255000792466,22.551290115620873],[-103.60447835195941,22.55145202341987],[-103.60600096121925,22.545677258438104],[-103.60303270642106,22.543506961982644],[-103.60456429787337,22.54101226284473],[-103.60476392159563,22.538409664152255],[-103.60264576110978,22.53476102794184],[-103.59933478587624,22.526374604496198],[-103.58609903816205,22.52549676352419],[-103.58464665946838,22.52504343068574],[-103.5837341666869,22.521966000095745],[-103.5842224660019,22.518816038427133],[-103.58850414279055,22.514432295945255],[-103.58884540977937,22.50846936317066],[-103.59460129187886,22.505447267762236],[-103.5919125937105,22.50282152869306],[-103.58902039595552,22.501592991871462],[-103.58627245685079,22.502049081041775],[-103.58559256127825,22.500036708798007],[-103.58337478880975,22.49871488825346],[-103.58018960915467,22.498719387383233],[-103.58039961631505,22.495794051341022],[-103.57907859938234,22.490961404087273],[-103.58245708632774,22.4887934711428],[-103.58072393848488,22.483419740895044],[-103.58060057146685,22.47739810495227],[-103.57114700567996,22.469378830752532],[-103.57082586099835,22.469171647788983],[-103.57123996815875,22.468622308853526],[-103.57157981878157,22.46806637398919],[-103.5738001355133,22.466656495014206],[-103.5725755766905,22.464544345546585],[-103.57367255604623,22.462802732749537],[-103.5739070610062,22.461077175569187],[-103.56990373333957,22.455565341630745],[-103.57069966811997,22.453068733304633],[-103.56891236595771,22.446273262462967],[-103.57218634891444,22.4410686424917],[-103.57252855636767,22.437540762861317],[-103.56825214911464,22.438055483663618],[-103.56495788598676,22.435132880885874],[-103.56405585166738,22.430833236716467],[-103.55945570893874,22.428952383636442],[-103.56093728752523,22.424544181162275],[-103.56061775656832,22.4231066139601],[-103.56707051873025,22.420863357533108],[-103.56915921155172,22.418454722434944],[-103.57101853483647,22.41821561943783],[-103.57842455566697,22.410498419857333],[-103.58105859753664,22.409481857858623],[-103.58504883458869,22.40945179830061],[-103.58963281259867,22.40697151638261],[-103.59401973115757,22.407214945050214],[-103.59415640110387,22.39904538230752],[-103.59388381828802,22.39845808149363],[-103.59441344006513,22.394575987065878],[-103.59296420690282,22.392580932414944],[-103.59275584559907,22.389276613533355],[-103.5943383864535,22.385031394852547],[-103.5959291022628,22.383191027826342],[-103.59756303400206,22.374530277844087],[-103.60033623378263,22.370294456827992],[-103.60067129843338,22.368119357859314],[-103.60173494689906,22.363460029864427],[-103.60284428749799,22.3609037505841],[-103.60980890746214,22.361544015063032],[-103.61068717899826,22.359841821970804],[-103.6094817775085,22.352695585520905],[-103.6026397494594,22.34631648328798],[-103.60260225443312,22.343438946410913],[-103.60671058294997,22.338305798117858],[-103.61119172376073,22.337888621116463],[-103.61517148882473,22.33854058256162],[-103.62139768713507,22.340707659889006],[-103.62741531952531,22.340400944743635],[-103.6290102085905,22.341780395417686],[-103.63495295923002,22.343483282980003],[-103.64211147161456,22.340873346864043],[-103.64205252846853,22.33956846468044],[-103.63826681294358,22.337171125815416],[-103.6381807522514,22.335169292519993],[-103.64065574894335,22.328915029893267],[-103.64157619903256,22.324176177067955],[-103.64496406920478,22.31783768877102],[-103.64349505049881,22.309873275494397],[-103.64230827740073,22.305961255862428],[-103.63847152237821,22.296864519341227],[-103.63778809893284,22.295233105627972],[-103.63545406907855,22.294400877728947],[-103.62912679771506,22.29418555145338],[-103.6269827846831,22.291728853585994],[-103.62561875956283,22.288108206356128],[-103.62387411105897,22.28783427215268],[-103.62117337992476,22.285144600227625],[-103.61922561013529,22.281793321638247],[-103.6149347283312,22.28084697774915],[-103.6106881315074,22.27895770502988],[-103.60770977381833,22.27974413818123],[-103.59965224064581,22.277692734931293],[-103.59490324378999,22.27307835151845],[-103.59917934343224,22.272009980833047],[-103.60280081839215,22.269961472876332],[-103.60631765902679,22.264333427526765],[-103.61013474555341,22.261224161468647],[-103.61437703953902,22.256514356872742],[-103.61736522082879,22.25105820122883],[-103.62081841620795,22.247480567381672],[-103.62235652912932,22.247497177895525],[-103.62638949373775,22.24424470756071],[-103.62828425990205,22.24111711109481],[-103.63089640472106,22.23891796347027],[-103.63600341375525,22.228284754286904],[-103.63642257118198,22.221024863640707],[-103.63759069976328,22.21927848103013],[-103.63934891690883,22.218186715380682],[-103.63932021164891,22.21386299963524],[-103.64098566740773,22.212132179731668],[-103.64125482705515,22.209599177019015],[-103.6437315960178,22.20630365378372],[-103.64911926210618,22.202056407692567],[-103.64889168737938,22.197442517611535],[-103.65002294971413,22.192347455178947],[-103.65121607402523,22.19186894968186],[-103.65251775554083,22.187165138138937],[-103.65570917968279,22.186296562015173],[-103.65775989818871,22.183843332800222],[-103.65681801448,22.180600721212272],[-103.65892286022012,22.175215523794293],[-103.65447365123708,22.171936212613844],[-103.66100057243762,22.16695642329853],[-103.66542849288152,22.160554731698085],[-103.67044103783894,22.15628268339111],[-103.67077846987468,22.153651784944998],[-103.67728108151391,22.146466483952963],[-103.67753737153032,22.141266424700063],[-103.68269735385871,22.13470740594437],[-103.68813457693028,22.133165407629406],[-103.69072278274609,22.129022774975738],[-103.6901049415439,22.127783128423403],[-103.68639439335954,22.12498962600455],[-103.6835640605579,22.12499972973427],[-103.6802223487407,22.123704480586184],[-103.67737107083525,22.11870629365535],[-103.67760156035871,22.11611197775602],[-103.68047709541406,22.115062951285495],[-103.68410543836501,22.115385509600515],[-103.68593252898063,22.11409910885743],[-103.6860982217508,22.11140200133434],[-103.68384732177452,22.109205231366786],[-103.67757924431379,22.108513844797642],[-103.67168844598893,22.108772213780924],[-103.66859252994993,22.10738054998569],[-103.66711193686155,22.10528866429064],[-103.66231329893702,22.10303746285274],[-103.65987513370862,22.10266175953683],[-103.65629439618158,22.10418211830938],[-103.65391514213837,22.10400125516287],[-103.65125717674982,22.10089423448801],[-103.6504004622604,22.100623820282635],[-103.64795374553165,22.10049615678048],[-103.64425167422371,22.10179245326151],[-103.63613474311967,22.106422695380786],[-103.6285269941726,22.1063254553452],[-103.6270687093454,22.105532932656672],[-103.62622190938669,22.102632368727882],[-103.62274470908437,22.10123746586339],[-103.62039771353835,22.098486133697918],[-103.61533399688363,22.098475821750185],[-103.61087831466989,22.097105447307456],[-103.60470456706065,22.09794157870624],[-103.60495306880972,22.101194364923003],[-103.60161661465327,22.102986629263114],[-103.59481453748623,22.11119844807473],[-103.59013363880024,22.111386682814327],[-103.58474587778773,22.10890131126439],[-103.58368906549202,22.10645295194888],[-103.58111989629589,22.1048707426541],[-103.58037376094023,22.106196534673415],[-103.57940133335768,22.112528456459245],[-103.57797593344606,22.115409014646787],[-103.57736540618879,22.11997699337695],[-103.57971192065287,22.122566502348832],[-103.58030950566649,22.1257249835989],[-103.57902770153231,22.128151999186514],[-103.57612580349576,22.130937846379425],[-103.57361426908858,22.130558659525946],[-103.56972306143547,22.131922882320055],[-103.56686623195878,22.13608251897864],[-103.56210588658104,22.135886698876504],[-103.55845856738887,22.13646290640105],[-103.55476985994466,22.134322374439762],[-103.55192333365267,22.135889833579654],[-103.54960534793577,22.13388514227779],[-103.55068597237289,22.130612508547756],[-103.54805847808097,22.127954572245756],[-103.54557491399282,22.127201540230544],[-103.54525893929986,22.123301151192493],[-103.54273656292486,22.120612119643226],[-103.53818843372369,22.12144924310161],[-103.53533383324424,22.120610791927504],[-103.53167518214792,22.12314642533778],[-103.53062434857435,22.126843470314952],[-103.5259980830524,22.126579842775755],[-103.52325941280031,22.12805037771369],[-103.51886131307157,22.127718007539272],[-103.51580947957541,22.128990874503984],[-103.51386292978952,22.128321915572712],[-103.5142337512101,22.12605057517925],[-103.51785120055177,22.120881322222715],[-103.51791419501262,22.117249495359488],[-103.51627973347775,22.113332107294866],[-103.51589707659679,22.109916197084544],[-103.51179085594003,22.107514469524403],[-103.50832221203115,22.108765673242488],[-103.50438539024896,22.10824260407975],[-103.50156419619611,22.105564012083335],[-103.50042442393055,22.105392661079065],[-103.49679182364076,22.106796082274627],[-103.49559911016132,22.11051239695928],[-103.49289882469498,22.110186387910005],[-103.48969782574153,22.10706553437069],[-103.4861341077505,22.10652989189788],[-103.48493236586637,22.107794249857363],[-103.48609197264005,22.110625368117553],[-103.48211142223613,22.111865674691614],[-103.48100460145531,22.114406360220983],[-103.47930395810482,22.114794004296584],[-103.47449655473207,22.112634187823858],[-103.47264980968436,22.109930295837273],[-103.47384300982901,22.106741589986257],[-103.4716927536661,22.10511905828315],[-103.46647804140491,22.107308972850717],[-103.45918285430844,22.105879986112882],[-103.45929683353546,22.10873482613789],[-103.46172262116755,22.111141066189873],[-103.4562143492783,22.113911221275487],[-103.45493576869387,22.115308609800024],[-103.4504034814712,22.114225719721446],[-103.44669357428307,22.11525131373986],[-103.44558779380804,22.113498325451644],[-103.44138933288468,22.117366634514383],[-103.43871075622673,22.118306236319825],[-103.43926219482921,22.120813032518868],[-103.43942243752753,22.12190734025984],[-103.43734327030779,22.12552410982812],[-103.43828926826058,22.128851028665792],[-103.43658602655591,22.126694068395295],[-103.43579657578363,22.131037625944316],[-103.43091692767655,22.13428269205133],[-103.42736765829653,22.139636496607466],[-103.42619955296806,22.1390978837415],[-103.42785510199144,22.144145396347426],[-103.42796984852345,22.144886248210696],[-103.42881796035374,22.148725734543973],[-103.42729747212525,22.15108546990507],[-103.42737617850008,22.155742703789315],[-103.42888974084627,22.157783722285046],[-103.42792439665595,22.159146851420473],[-103.42916325574407,22.160970253972778],[-103.42835824119913,22.165588571221065],[-103.42509858768119,22.170261034859266],[-103.42603516168862,22.17463708574553],[-103.4238883014022,22.177491665102423],[-103.41775653950788,22.17728528987783],[-103.41556599770888,22.176908194481143],[-103.41159438089409,22.178378147408125],[-103.41205315135858,22.180865733195105],[-103.41159761388701,22.18083645420768],[-103.41108205657105,22.181325891185736],[-103.41021200284189,22.18265993548266],[-103.40845578615512,22.185446675912885],[-103.40836301570016,22.185720302012953],[-103.40791204271153,22.18644956954057],[-103.4071316494423,22.187802252626284],[-103.40736754395186,22.18781685362086],[-103.40851428559279,22.188141903371672],[-103.40813057701774,22.190252387264593],[-103.40636155382253,22.19216419114656],[-103.40490528492967,22.191363199747457],[-103.40402281552412,22.19121685252071],[-103.40255646563162,22.193996972191144],[-103.40125383800716,22.19584322637678],[-103.39776158498216,22.193524296110866],[-103.39523333999102,22.19209737907636],[-103.39440754830952,22.192061688569254],[-103.39348382927716,22.19243741992358],[-103.39326390120902,22.192566234787932],[-103.39225709717499,22.19676909464613],[-103.39111995288516,22.197905968212467],[-103.39077875885295,22.201838072817736],[-103.38956391695058,22.204541619982535],[-103.3906320889497,22.20638811010531],[-103.38435089067559,22.213738360644186],[-103.38516261877703,22.215818247952427],[-103.38324581344301,22.217832742519704],[-103.38017103941888,22.21900136709388],[-103.38187428841326,22.221537068749626],[-103.3839850351759,22.221990184449453],[-103.38302630930974,22.227013413824466],[-103.38151635933252,22.22774499296645],[-103.37398724485882,22.23076457165132],[-103.37116014218822,22.230680374262704],[-103.36605065400545,22.23592950858921],[-103.3618303585335,22.23916457966493],[-103.3553146164312,22.240935679928725],[-103.34973586615007,22.239214967868406],[-103.34338564119446,22.243086876147174],[-103.33769678259256,22.24516367682793],[-103.33353977703172,22.24196600725827],[-103.32831985376652,22.240087677893882],[-103.32651618260695,22.241726793597138],[-103.31959858340633,22.238047160470614],[-103.31193417631607,22.233256986694357],[-103.30925717301068,22.236205373787982],[-103.3062660187835,22.2409441661257],[-103.2970424845019,22.25180375280894],[-103.2951044286662,22.25328528200231],[-103.29676262667232,22.25712867470685],[-103.29979286117072,22.25703323817595],[-103.30671795290971,22.25889016993898],[-103.3099775815432,22.258811651967335],[-103.31210964539775,22.258918789645975],[-103.31365633723715,22.259501143338355],[-103.31011027309313,22.262195803893633],[-103.30843310826674,22.262433380669336],[-103.30794844524786,22.26403813892273],[-103.30531632536838,22.265658994997125],[-103.30522391831437,22.270871611311918],[-103.30545980717847,22.271554114916285],[-103.3068437209161,22.273231851560638],[-103.30598401317684,22.276283088878586],[-103.3080357852159,22.280411742364322],[-103.3071503083824,22.28382180349223],[-103.30669020716562,22.28465183143743],[-103.30363769200233,22.28922137915083],[-103.30181153387315,22.291521828877706],[-103.30040343520932,22.296185450787675],[-103.29831998332844,22.29742495987631],[-103.2977903386718,22.29833725394127],[-103.30452212015194,22.303042332595112],[-103.30688273243351,22.306283055171093],[-103.30879798517827,22.30641385001519],[-103.31581466613949,22.30694099367031],[-103.32516695030756,22.307365123123134],[-103.32770581018883,22.307360376495865],[-103.32855644019065,22.30578486083357],[-103.33052673573621,22.30213537007421],[-103.33837632041934,22.28751282669714],[-103.34146798517077,22.28561671660492],[-103.34930761625736,22.28336039529239],[-103.354228734645,22.27950069843638],[-103.35573297306036,22.281143358202485],[-103.35347982303807,22.28375593552994],[-103.35355270976822,22.28786505871119],[-103.35247954331669,22.293630153718254],[-103.35101612014819,22.296222150942924],[-103.3501609235089,22.301659416074926],[-103.35009274201371,22.307456558127228],[-103.35108526205727,22.30880289280401],[-103.36375648165068,22.31448316893227],[-103.36181281815163,22.315671130903695],[-103.36154023699231,22.31651196294115],[-103.35955891162695,22.320649237003863],[-103.35100555514924,22.324699881777747],[-103.34787501536931,22.328248809021545],[-103.34720275970102,22.33096187445949],[-103.34322621293336,22.334831307822185],[-103.34688062475647,22.336281360843316],[-103.35113832665479,22.336322266162767],[-103.35346358229447,22.336344556099448],[-103.35882579837664,22.336350192803536],[-103.36000910477532,22.336351411561964],[-103.36255319773579,22.336354001203517],[-103.36328926717425,22.33820513525137],[-103.36480544409363,22.341631279367675],[-103.36511972893146,22.343447822586086],[-103.36663254070487,22.350076237280007],[-103.36524899211196,22.36018169401666],[-103.36471666940747,22.369535628943368],[-103.36244369126132,22.370849610287564],[-103.35594709959906,22.37119549595809],[-103.35313999603937,22.369387462019517],[-103.34744958045013,22.375500578536503],[-103.34840379432046,22.3791245599416],[-103.34252257427596,22.383995671368154],[-103.33774251624766,22.38598546661086],[-103.33588710219527,22.384756881627993],[-103.33312938224145,22.385223622592093],[-103.3292868378357,22.384536860175558],[-103.3259211226138,22.387819162179937],[-103.32577629775562,22.38817414461346],[-103.32088436591334,22.393992802234436],[-103.3180115008675,22.398965194660036],[-103.31761544340219,22.40136985921248],[-103.31519729045203,22.404659691426616],[-103.31394450222558,22.404845585478256],[-103.31067258854387,22.400759017938924],[-103.3087492828447,22.395293718404048],[-103.30917588586226,22.392008202977195],[-103.30526298575529,22.390409047949618],[-103.30418377704376,22.391361438310696],[-103.30209270877162,22.392669567103894],[-103.30157635246695,22.39277883757245],[-103.30120112012594,22.39300624386641],[-103.30050158695326,22.39299012449999],[-103.30013447726338,22.39338745972742],[-103.29942294038972,22.394490144323527],[-103.29919350792557,22.39480746755612],[-103.29867145735648,22.394700162987647],[-103.29806887235316,22.39537545893819],[-103.29729150000162,22.3956365509012],[-103.29670439409432,22.395752900511297],[-103.29641622770919,22.397042006792958],[-103.29544950391653,22.398731476906278],[-103.2942252653014,22.39804230748183],[-103.29307671767737,22.39873777094641],[-103.2927910831117,22.39974686090966],[-103.29147485032513,22.400079612741592],[-103.29067486923395,22.40097191085465],[-103.28914742153552,22.40152369335118],[-103.28856830729353,22.402191972580795],[-103.28828879530744,22.402854107624307],[-103.28795251778683,22.403647013461864],[-103.28763602002425,22.404287615378053],[-103.28680095892054,22.40527052942491],[-103.28543114270985,22.40593413636128],[-103.2854072504989,22.406418654862648],[-103.28518282029984,22.409110634302408],[-103.28562338924053,22.411954725658973],[-103.28581733195284,22.41283126479783],[-103.28372797661814,22.41415681583686],[-103.28055794088448,22.411658415815282],[-103.27636657440047,22.411184756491423],[-103.2751464278017,22.41142635169996],[-103.27454182138104,22.410995577822064],[-103.27549879656198,22.409985394019657],[-103.2748941868573,22.409553713874686],[-103.27339988000216,22.4095088629432],[-103.27314945590228,22.409843715281625],[-103.27275770974569,22.409953093016213],[-103.27150086648692,22.410713154477094],[-103.26924994411058,22.411099706885295],[-103.26723152686606,22.411528483160396],[-103.26646214016176,22.411733841631246],[-103.26573512167624,22.41188607555256],[-103.26522705996479,22.411830325382937],[-103.26346319130494,22.410646414353437],[-103.26207965289996,22.41167998652992],[-103.2602456957394,22.411858395635193],[-103.2588286302414,22.40810327619613],[-103.25838529797875,22.40644188851911],[-103.25508260539891,22.404820135767068],[-103.25218624742445,22.39894535538724],[-103.25127551840802,22.39865133981374],[-103.25039161649323,22.39861493148993],[-103.24962093619268,22.399200387532858],[-103.2479428398857,22.399324732782873],[-103.24755273964479,22.3994504781179],[-103.24717581181443,22.399571518071582],[-103.24693383955758,22.39948359717954],[-103.2462042911963,22.399248912868075],[-103.24556144779478,22.399412072069424],[-103.24446324367125,22.399428200002717],[-103.24239825667723,22.39889559768011],[-103.24097508344971,22.398087265209995],[-103.23967040790075,22.39742140801235],[-103.23647721735642,22.396820623942062],[-103.23503991096982,22.397115389970338],[-103.23436113321259,22.395295135632693],[-103.2338840129155,22.39511465984191],[-103.23212056802987,22.39339385584185],[-103.23104101411411,22.395425167611847],[-103.22958462687035,22.396826705123658],[-103.22746840818525,22.402172649318345],[-103.22633919020939,22.404044418623073],[-103.22186960139362,22.408617463529367],[-103.2209216439349,22.40958910989042],[-103.22012338019374,22.410062062979762],[-103.21959704039983,22.410482022322412],[-103.2187726769983,22.410557535145415],[-103.21752353651652,22.41062822643846],[-103.21426573277932,22.41013915494915],[-103.21256446876492,22.409666837455063],[-103.21183939460929,22.409064274706054],[-103.211290242534,22.40826513900214],[-103.21000437359822,22.40859025654322],[-103.20932073456396,22.407279232641656],[-103.20792794509879,22.40604003473078],[-103.20741608119135,22.405581038299204],[-103.20702959629216,22.405108965255238],[-103.20595249632356,22.40482263075529],[-103.2039266001164,22.404069507695056],[-103.20437273489637,22.40265794799052],[-103.20477101999313,22.402435137525174],[-103.2052137850468,22.401192462290112],[-103.2033182679063,22.399084708990927],[-103.20305689799284,22.398033642212226],[-103.20285085023704,22.39737887405323],[-103.20300628266892,22.3958953109219],[-103.20242418891536,22.394994557399116],[-103.20202799788711,22.39357595442908],[-103.20209368182105,22.392161014353746],[-103.20059163805149,22.389677101996142],[-103.20057042988464,22.387750428003017],[-103.1999413639764,22.386189611914574],[-103.19909680231888,22.385414524770056],[-103.19899398898218,22.383968216416633],[-103.19869978302881,22.38305811781015],[-103.19877087361476,22.380601234711605],[-103.19587986717022,22.38340955945324],[-103.19202501072436,22.387107104436325],[-103.19089796614259,22.388099716946556],[-103.18932170723377,22.390235460490885],[-103.18800136431923,22.389826231168286],[-103.18782082649454,22.390065155505113],[-103.18781686494611,22.390382444985335],[-103.1861787786014,22.38943929382782],[-103.18449119004276,22.39003104104188],[-103.18407487242786,22.389700999686738],[-103.18424196925554,22.38942548047288],[-103.18254031843509,22.38877138799404],[-103.18130909491731,22.390404576011974],[-103.18034193972011,22.389503588179366],[-103.17850644519558,22.38773316807709],[-103.17836918767432,22.38699519955685],[-103.17785898596088,22.38671751464358],[-103.1777102481771,22.38698983653677],[-103.17526597807381,22.386597058096754],[-103.17086361269259,22.38467867694169],[-103.16857768558117,22.385012792974862],[-103.16937159495217,22.38319377026903],[-103.16873192982939,22.38271379622506],[-103.17050451922768,22.378902957473656],[-103.17286680702142,22.379616296394772],[-103.17375517581132,22.37684969111814],[-103.17245875369298,22.375949894154644],[-103.17008180347744,22.37483132849019],[-103.16723620548555,22.371464825287205],[-103.16642499009629,22.370589899407378],[-103.16763689442251,22.369727528660462],[-103.1689627375548,22.365418853184167],[-103.1704470938094,22.361832515595665],[-103.1689164944865,22.356466083513283],[-103.1685899179148,22.35461565954955],[-103.17049099301056,22.35326490026239],[-103.17098618863196,22.353196683534634],[-103.17293638560466,22.351665769106717],[-103.17428017901005,22.349103606832387],[-103.175174812649,22.34840410989358],[-103.17508429424612,22.348066176326597],[-103.17555357104771,22.347418034088037],[-103.17596584295853,22.346847737930716],[-103.1761796705,22.346149549003258],[-103.17779831308849,22.345771333365064],[-103.17818183711421,22.3444438683253],[-103.18022139931287,22.342779162725094],[-103.18151749345066,22.34239704370725],[-103.18481057229627,22.341028261901158],[-103.18433587051794,22.33981782417561],[-103.18538895230716,22.33833173295824],[-103.18720561951682,22.33713685106261],[-103.18810349511654,22.336012754580224],[-103.19183026738716,22.33432189080571],[-103.19408540899883,22.33198105589861],[-103.19634756080836,22.332597185886755],[-103.19714220209278,22.332850469513517],[-103.1979300541505,22.333108042428137],[-103.19894052660521,22.332836914541815],[-103.19979703787243,22.332590582098646],[-103.20025212784572,22.332738648041982],[-103.20149113469188,22.333573283653948],[-103.20495668845638,22.334263425136783],[-103.2067101613161,22.333064983037787],[-103.20786636924566,22.333048665455863],[-103.2101230063488,22.32826482948741],[-103.21023522719304,22.326651633323934],[-103.21016956114306,22.322316331515708],[-103.20951842191198,22.320191610958318],[-103.21043671715086,22.31906063047859],[-103.21095918281782,22.319222379146936],[-103.21211509148429,22.317899867997426],[-103.21151537041106,22.317185579155478],[-103.21003315353204,22.316204960915],[-103.20963929752236,22.31457226708244],[-103.21189817326092,22.309916281833694],[-103.21209856780064,22.309163306273774],[-103.21277066269113,22.30768237352629],[-103.21353398430409,22.306664959004763],[-103.21412423995065,22.306514361969334],[-103.21500907031663,22.3057995726312],[-103.21504324335336,22.302998647115885],[-103.21493530110666,22.302114320280623],[-103.2153143417882,22.30142136810622],[-103.21765941868034,22.30115417006033],[-103.21735709400917,22.30095229667745],[-103.21669947441075,22.299981573036064],[-103.21657364831242,22.299329663589276],[-103.21736542580817,22.29929688332203],[-103.21759972525325,22.29916897311341],[-103.21879804033097,22.298134789394112],[-103.21945574594343,22.29743100687864],[-103.22036892445715,22.296400262335226],[-103.21991563957914,22.294612077710326],[-103.22046526249903,22.293827917042904],[-103.22080181895706,22.29236266778429],[-103.21974720220612,22.291750713222427],[-103.21963783853539,22.291495571415],[-103.2189827014223,22.290407730730976],[-103.21835084800045,22.28997787812432],[-103.21862418325418,22.288592285342133],[-103.21959255911702,22.28837232775396],[-103.21892805864451,22.286854772955166],[-103.2209868650101,22.283952651476227],[-103.22221089627885,22.283400068520848],[-103.22233752288133,22.28306044518763],[-103.22219087758072,22.28242323079138],[-103.2216349148174,22.28253105914331],[-103.22113466981574,22.281255351470293],[-103.2202381772288,22.280221892338886],[-103.21787993953052,22.27913580602643],[-103.21583807875533,22.2782486448657],[-103.21442479973706,22.277510834548707],[-103.20685781203173,22.279924583856314],[-103.20292010038736,22.280865094062563],[-103.20266991281784,22.28004248811618],[-103.20228617037833,22.28012789968909],[-103.20191644643779,22.280304413148258],[-103.20163741819312,22.28083676675584],[-103.20028138638503,22.281518755038746],[-103.19872182321353,22.28379125749092],[-103.1980323319952,22.286521104927715],[-103.19678184244435,22.288525583025205],[-103.19548490931635,22.29054459376266],[-103.19476425699196,22.29237199790157],[-103.19214995843458,22.295222783165798],[-103.19057381418287,22.29852702166903],[-103.18923367179298,22.298296949991936],[-103.18870468424365,22.298207238689372],[-103.18801681556363,22.298091251273092],[-103.18217134919337,22.2970912574238],[-103.1681157920512,22.29519965825989],[-103.16803831424215,22.295176573578715],[-103.16505704161614,22.294798802672574],[-103.16488000956423,22.296157846783103],[-103.16407150071655,22.297196568814513],[-103.16226775522875,22.29653069631354],[-103.16183894274428,22.29644329200221],[-103.16179487690675,22.296431955323214],[-103.16140633213507,22.296343564568076],[-103.16044672237098,22.296133375182876],[-103.15972242677032,22.296431404404075],[-103.15935275078112,22.296238100626113],[-103.15723707578667,22.296902539294308],[-103.15700993274919,22.29692128686719],[-103.15685010364592,22.29687109285578],[-103.15687734245597,22.297057282887693],[-103.15552777150572,22.297973115063655],[-103.153710874321,22.298062380698525],[-103.15352977735967,22.297926356355845],[-103.1532618349164,22.296817667035555],[-103.15254066468975,22.295994572413747],[-103.1510834788877,22.296226208968847],[-103.14816036774442,22.29578720731928],[-103.14652108507579,22.295431447842418],[-103.14409823503723,22.294837232598127],[-103.14282160266595,22.29447237899501],[-103.14213670594359,22.294094108386048],[-103.1413480270611,22.293969856259764],[-103.1413584629156,22.29390361538367],[-103.13748216738651,22.29410788175352],[-103.1359881107984,22.294564470062937],[-103.13441726484177,22.295248423232408],[-103.1337151167287,22.29474931662321],[-103.13149405684851,22.295190209035752],[-103.12980820012086,22.29428768882036],[-103.12913983194966,22.294024992366246],[-103.12870729094453,22.29408753426486],[-103.12793127037753,22.293996216001176],[-103.12702665692359,22.29335904281959],[-103.12540066302967,22.29341178651748],[-103.12242175801396,22.293920104044446],[-103.12122006731471,22.294869356031995],[-103.12036633582983,22.29508617971868],[-103.11999975171176,22.29499624626652],[-103.11905779219575,22.294929555213628],[-103.11813644765022,22.295343855069575],[-103.11737222512033,22.295532778015684],[-103.11576052045604,22.295287540878064],[-103.11500102727791,22.295108749506824],[-103.11417731753534,22.295183701260612],[-103.11253289604883,22.295108429845186],[-103.11024990332248,22.29508222581535],[-103.1095551460985,22.294592465989922],[-103.10915630725901,22.294728786839812],[-103.10812341219832,22.29451833967579],[-103.10733022475966,22.294509515694017],[-103.10651221093258,22.294330195283067],[-103.10584320178134,22.294237860204817],[-103.10404764087343,22.293932995991156],[-103.10368200928542,22.29395649478994],[-103.10194515581964,22.29390809933767],[-103.10098773071866,22.293974858387514],[-103.10053313017602,22.293856457235165],[-103.10002160209757,22.2933408351401],[-103.09966000239717,22.293024770299326],[-103.0989985503229,22.29230867829159],[-103.0997799179462,22.288635507050117],[-103.09902474819734,22.288145224373068],[-103.09863417496695,22.2877440291673],[-103.0981541154556,22.287255412162324],[-103.09807595307672,22.28629186412485],[-103.09768362650755,22.28603229916405],[-103.09656553233265,22.286483275371722],[-103.09415353080175,22.28676550291476],[-103.0916930936367,22.28625550908606],[-103.09003340412369,22.285131575283174],[-103.0888489092693,22.28378275942555],[-103.0876255431213,22.282379342453225],[-103.0872189538839,22.27838208435628],[-103.08588442687704,22.278862763744655],[-103.0832775342185,22.277517951156085],[-103.08312215646498,22.274355245442734],[-103.08284212339174,22.273234192913037],[-103.08300542291755,22.273158020411472],[-103.08339075010815,22.271237052218623],[-103.08334070891561,22.27055759559397],[-103.08338040603712,22.268664403454864],[-103.08355142346562,22.266771276604402],[-103.08368977489494,22.265755799652084],[-103.08382539713301,22.26343363115444],[-103.08276793801099,22.26376298746021],[-103.08175476149893,22.263101845827748],[-103.08186536948182,22.262902513868994],[-103.0808097223757,22.260628534829777],[-103.08048696859692,22.25970189966455],[-103.07873334522071,22.25853492619524],[-103.07827383431601,22.257097666195136],[-103.07679114532533,22.257101312389636],[-103.07440738929557,22.257059957650426],[-103.07066765592515,22.255248178445186],[-103.06944320587019,22.255247914276765],[-103.06238245719805,22.252238673158615],[-103.06174390801698,22.250135563260983],[-103.06219451575163,22.24888750544602],[-103.06202698230231,22.248898471180837],[-103.05545518456768,22.24725632914675],[-103.0556810838101,22.241242367941993],[-103.05708959889967,22.238664006298848],[-103.05916302118925,22.23486747320794],[-103.06206929291324,22.228267985255002],[-103.06029794424575,22.227452172098822],[-103.05818769368642,22.228398245953088],[-103.0600162079416,22.22497689461005],[-103.05831033877826,22.22281575498971],[-103.05232630407886,22.220652261185876],[-103.05477016171466,22.213826868106537],[-103.05981131587032,22.21722223105411],[-103.06600240780978,22.213983579059914],[-103.06964403782189,22.211219804623056],[-103.07193037874106,22.211968834581285],[-103.07284745336557,22.210367516958968],[-103.07171322288491,22.20607691647905],[-103.07104343252843,22.203543142461967],[-103.07330278035784,22.202340111983176],[-103.07763698736028,22.202907368572994],[-103.07966631676652,22.202554907916237],[-103.08372682666743,22.204019718598204],[-103.08819961076495,22.204383981282206],[-103.08841165453896,22.202650401826418],[-103.09209126728047,22.198414891229618],[-103.09563678219786,22.195923221414432],[-103.0994865860448,22.195005235046267],[-103.10605877448899,22.191356033227805],[-103.10144536317796,22.178620959661657],[-103.10387845617504,22.172047457615122],[-103.10277750052092,22.171114090650804],[-103.10538671991765,22.16884240024649],[-103.10591383561012,22.168153418682607],[-103.10517478552697,22.16616749046193],[-103.10576728083652,22.164737988767172],[-103.10587501828036,22.162306115566594],[-103.10469430440344,22.160034664120076],[-103.10486988627844,22.157517009405694],[-103.1062933212558,22.157156450821276],[-103.10864513985274,22.153285772701395],[-103.10838362484452,22.152781985901527],[-103.10596849234304,22.152186771316735],[-103.10288627710554,22.15427080256012],[-103.10308844107317,22.15176450339584],[-103.10874985510458,22.14485777415308],[-103.10807742385975,22.14402554206822],[-103.10319544084541,22.14487058483411],[-103.10060716591636,22.14605950048093],[-103.09955661537379,22.145419420930864],[-103.09851493686568,22.14507017769938],[-103.09593117359367,22.145466029456657],[-103.09456282898202,22.1447699166265],[-103.09366872179015,22.144642212158317],[-103.09181639576605,22.144120060236446],[-103.09014041672214,22.142184863234547],[-103.09002716603197,22.14156817948799],[-103.09011184446751,22.140040446446733],[-103.08939646481798,22.139800422417977],[-103.08864381999024,22.13956629898979],[-103.08598573494476,22.138839798210086],[-103.08418951572145,22.13725162869008],[-103.07978308331946,22.136430051916193],[-103.07875079347252,22.137052554924992],[-103.07832817193582,22.136143999387684],[-103.07757061292705,22.135734644280205],[-103.07587026391855,22.133488515734086],[-103.07819770204503,22.131191917139972],[-103.0815762056476,22.13082374101657],[-103.07704310665434,22.127530935990592],[-103.07702473533709,22.12550440876936],[-103.08023137785943,22.124508781613883],[-103.08173384876818,22.12027271913746],[-103.08772188304249,22.11781959067639],[-103.08452545071663,22.11399673593445],[-103.08615698107883,22.112244567697473],[-103.08670788336735,22.114851634370268],[-103.0894899765558,22.115191382702278],[-103.09027389300672,22.11369471771002],[-103.08833000777508,22.112908379965063],[-103.09237592717176,22.109897264991844],[-103.09640024127305,22.11128377879072],[-103.10114426608692,22.107436890352176],[-103.10067483905277,22.103344335014185],[-103.10418611831994,22.101230469655547],[-103.11672164761495,22.10236420075529],[-103.12558531891892,22.104791470002397],[-103.12697040409216,22.103616659311342],[-103.12802997906061,22.102196400316643],[-103.13229033492479,22.0999501467266],[-103.13502933999075,22.09762967299679],[-103.13509315325422,22.09046234302957],[-103.13910333401873,22.09103456360947],[-103.14341313927366,22.08723081336956],[-103.15138259119453,22.088015618265104],[-103.1525964418181,22.086231839409663],[-103.15242027571816,22.08387477179798],[-103.15215565849348,22.082555040667557],[-103.15482955581768,22.073230372310093],[-103.15428531605914,22.072236820382614],[-103.1479142122289,22.070341863929514],[-103.14437401593676,22.067920426917397],[-103.1424306791879,22.06755878786163],[-103.13489032104877,22.06660789815686],[-103.11071497381681,22.063741424776424],[-103.1097665974001,22.06361500462492],[-103.10873932261609,22.063493848684175],[-103.10790861058035,22.06339578509119],[-103.10636744202986,22.049173755780714],[-103.10616573862643,22.04698821739663],[-103.10713684429459,22.04683012747131],[-103.10845112496582,22.039164652482327],[-103.11386915482473,22.040041441557833],[-103.10915519028919,22.02931681167803],[-103.11024533447409,22.027522492559285],[-103.1089019523344,22.026604461696763],[-103.10951797486757,22.023992052781807],[-103.11158926497262,22.02112585652526],[-103.1099909756876,22.017405644877215],[-103.11119250944682,22.01461926152274],[-103.11294980787858,22.013465517529255],[-103.11712119658915,22.01288064266356],[-103.1202862997281,22.015356649547186],[-103.12400137989505,22.0125990402081],[-103.12990286805854,22.005712298668186],[-103.13107215319013,22.005274340187157],[-103.1316594697335,22.004738988763336],[-103.13284431892703,22.003037321554075],[-103.13496587382758,22.00378236954697],[-103.1354266358785,22.003932412976383],[-103.13796773976236,22.00304795755443],[-103.14330432073376,22.00758717558398],[-103.14371763025247,22.00796976678089],[-103.14599799498279,22.0052779537819],[-103.14908970623918,22.005577216429117],[-103.14937119817375,22.005515582077294],[-103.15195461806917,22.00487285569085],[-103.15220728698131,22.004894576737854],[-103.16007579094196,22.003171354635413],[-103.15950440124749,22.000809818916252],[-103.16125141528158,22.000557900264084],[-103.16204796059026,21.99963847948868],[-103.16437655636929,21.998606220136196],[-103.16671318527506,21.997548235415024],[-103.16738145542723,21.998278437315605],[-103.17253557797972,21.99661980956472],[-103.17358456888826,21.997805492426835],[-103.17872673502478,21.997230595462497],[-103.18103564806745,21.99834030070963],[-103.18173024403183,21.9970831838844],[-103.18617241515278,21.99803570428668],[-103.19178823630995,21.998187451627643],[-103.19669368345706,22.000861705372472],[-103.19768507263205,21.999065726237802],[-103.20068746200258,21.999007820145607],[-103.20304975362103,21.995963839450553],[-103.200811091226,21.991961840111003],[-103.1940324457803,21.990072958382655],[-103.1942214478654,21.988348593699243],[-103.19684768158442,21.98630844776261],[-103.19819045707487,21.984636822122923],[-103.19589688325146,21.98033382755409],[-103.19568808971763,21.980067349986598],[-103.1920747982341,21.979337759107352],[-103.1916214252434,21.97815394933872],[-103.1923355699247,21.975837308646817],[-103.19181226676005,21.974449802029994],[-103.19265049135367,21.970989359077578],[-103.19256000422024,21.969899868346715],[-103.19418240842225,21.969585907306964],[-103.19515081310618,21.969596537610187],[-103.19699598227004,21.969164624740245],[-103.19835743481985,21.968728290908757],[-103.20087770939767,21.96848532390368],[-103.20165922862736,21.967950914927258],[-103.20408215683545,21.96770684061039],[-103.20459063526766,21.965815672861936],[-103.20556791655116,21.96519438319814],[-103.2086601039137,21.965142873903687],[-103.20967209230366,21.967286251642463],[-103.21105361680151,21.967783709024275],[-103.21221906766334,21.967524896974567],[-103.21377218530301,21.96709054608175],[-103.2162899948546,21.96711785137046],[-103.21706260395405,21.967216127365248],[-103.2188002383827,21.967596321093993],[-103.21928042063956,21.967961963274718],[-103.2215072508937,21.96798695187647],[-103.22552430275027,21.972004409139004],[-103.22591152297383,21.972098450456826],[-103.22889334411218,21.97357604953106],[-103.23471196516931,21.974505256453824],[-103.23698193290693,21.975815036996153],[-103.23791819053889,21.976027175593686],[-103.23932755901745,21.976042147050293],[-103.24514078816446,21.977208833535315],[-103.24681758861664,21.97594710041608],[-103.24594389186126,21.97513903032774],[-103.24144586876076,21.970755622597096],[-103.24475012743608,21.966603231538727],[-103.25171250461756,21.96831135324095],[-103.25179674195925,21.96930555052967],[-103.25709342146314,21.96958186085135],[-103.2580329707825,21.971179969897833],[-103.26215089004847,21.9725577601655],[-103.26471534877965,21.97184498863959],[-103.26868158314403,21.97569018982017],[-103.27335042656898,21.97908230311748],[-103.27323101350095,21.98144399421102],[-103.27596824010419,21.988693951743073],[-103.27856101308566,21.989650146922486],[-103.29157485770605,21.97902709031655],[-103.29401167677429,21.97713544970884],[-103.30242771296463,21.970450907098552],[-103.30719648493721,21.96817007653698],[-103.3093138902405,21.96570641409511],[-103.30871021443471,21.96436319186938],[-103.31013614300883,21.959097594354205],[-103.31736376618846,21.95587326695096],[-103.32398432276767,21.950336373279185],[-103.32412648767854,21.949882187540425],[-103.33046437781661,21.945891516639676],[-103.33190798202327,21.943022368520587],[-103.33719436959672,21.942353767992927],[-103.33986033062882,21.941671537994182],[-103.34175550062338,21.939517289587684],[-103.33978191100931,21.938698479061088],[-103.34128884443868,21.93178928065322],[-103.34368387452429,21.930696330353555],[-103.34342598133367,21.9272973115975],[-103.34156328179841,21.921025730767326],[-103.34400431624312,21.91591204636393],[-103.34383970648344,21.91472890099135],[-103.34943331852037,21.914255825873227],[-103.35695756461377,21.914527763424815],[-103.35901240670279,21.914558722230822],[-103.36036435503138,21.914324775870227],[-103.36488171318439,21.91317008417616],[-103.36614778102972,21.912836591948917],[-103.37001933975728,21.91235371155136],[-103.37052801094228,21.91329502948554],[-103.3747976294606,21.913683529136108],[-103.37685446775384,21.912491423154904],[-103.37997568352654,21.910187754271533],[-103.38236761869916,21.91056977735633],[-103.38979569884958,21.905472720275554],[-103.39067976668747,21.90404126351251],[-103.38944335843689,21.899418506014797],[-103.39220279270415,21.89768550291609],[-103.39433888259202,21.896694561928143],[-103.40033226450726,21.899005597035625],[-103.40191624163998,21.900442609240315],[-103.40505987899326,21.901824506770595],[-103.40837540451662,21.907624000763576],[-103.4106468629538,21.907779205207135],[-103.41387009172854,21.905455397123944],[-103.41365566551565,21.90117380868105],[-103.4165159482601,21.89892558851136],[-103.41624090610128,21.897504437231703],[-103.41898361548061,21.89615626737117],[-103.4217324268858,21.89529588367742],[-103.4207282969279,21.893143429748932],[-103.42251035193823,21.891085909331764],[-103.42581137130986,21.891046180829846],[-103.4275120211509,21.885660821165516],[-103.43031652392449,21.88323675126054],[-103.43255397331183,21.87973388759349],[-103.43213379021012,21.878492798152138],[-103.4353538545713,21.876052367406828],[-103.43573968696944,21.871051983882523],[-103.43839008554755,21.867493218420293],[-103.43931349724699,21.864560035333625],[-103.44168552736909,21.862166577206494],[-103.44602528245116,21.85990204146924],[-103.4482247932657,21.855763023145073],[-103.4501215334572,21.855641651947394],[-103.45172602503635,21.852690953531805],[-103.44955171416098,21.850790765438887],[-103.44970194584266,21.848052597427284],[-103.45330625131976,21.84419707995113],[-103.45319651867084,21.840626281912932],[-103.45586803873914,21.840604616569465],[-103.45716908814308,21.838476411714623],[-103.45692810848408,21.835987039845065],[-103.45513606897981,21.83542854015377],[-103.45632236539097,21.8325092229818],[-103.45851709310432,21.835210084630944],[-103.4626093220308,21.83789846276278],[-103.46536832983577,21.839579108815713],[-103.46672989646561,21.839961759912796],[-103.46984027419956,21.83926667865734],[-103.47138159436821,21.8375254600557],[-103.47221631313255,21.835187374829445],[-103.47248392317965,21.83344201101437],[-103.4733741554702,21.83191215733683],[-103.47304150208305,21.830394939312725],[-103.47399737616666,21.82979666812213],[-103.47511932797289,21.827507555876764],[-103.47501629648269,21.82609706384676],[-103.47475566840001,21.825924154513302],[-103.47310520995643,21.823637371675204],[-103.47400968584492,21.819661044711495],[-103.47178497837768,21.816532733028225],[-103.47052997248136,21.813540265399467],[-103.47110127396695,21.813512214282696],[-103.473487173004,21.813073192667332],[-103.47568403009734,21.812411574116652],[-103.47682918049219,21.812686110700326],[-103.4773950057567,21.812867128835933],[-103.48250755235733,21.813264451969815],[-103.48194471090159,21.816514133717874],[-103.48780072831579,21.81940976556342],[-103.48905471946864,21.82029026959418],[-103.49141868031057,21.821057035319427],[-103.49342543982016,21.82256701807529],[-103.49470054058406,21.822885926924357],[-103.50018705265114,21.828249627968717],[-103.50194589371353,21.831386724690333],[-103.50281744975916,21.833074707963135],[-103.50834550856092,21.8283567162556],[-103.51203134580805,21.82638796715065],[-103.51948662676529,21.823210314795574],[-103.52019819202815,21.822770926431474],[-103.52416373241232,21.82014284713273],[-103.52635647669018,21.81874862028627],[-103.5299208221249,21.81820756444614],[-103.53148320685193,21.81742588982172],[-103.52976968993096,21.814168022995773],[-103.5300382249007,21.81165500160074],[-103.52609309311072,21.80967422258226],[-103.5262588761795,21.807677421715027],[-103.52605764423345,21.805065242275305],[-103.52784667319656,21.804687096996304],[-103.53569635545284,21.80517974656334],[-103.53839462714853,21.80484049153],[-103.5401544364642,21.804037691170834],[-103.5420461595798,21.803297085247777],[-103.542936909471,21.802994950996663],[-103.54644493236327,21.802752709761194],[-103.5479992555484,21.803099222822482],[-103.55406833678279,21.801087276234284],[-103.55614397074146,21.801378506558763],[-103.55714732107884,21.80156893817093],[-103.56055851452913,21.801113138275355],[-103.5619480467642,21.803579761401693],[-103.5658669307274,21.804311400637516],[-103.56674085373072,21.804651953112227],[-103.568235466163,21.804043059962453],[-103.57067454626639,21.8039890868705],[-103.57262725786165,21.80348983552483],[-103.57202194411553,21.801772279949716],[-103.57199581574866,21.801698141190627],[-103.5706197531988,21.799565505454154],[-103.56894825344756,21.799600745908094],[-103.56789146213777,21.79649994046565],[-103.56907693661782,21.795456684708313],[-103.56818451607228,21.79256859293082],[-103.56912140417637,21.788615236002784],[-103.56592020801025,21.784822152089134],[-103.56262359423738,21.785674654289892],[-103.56166985853292,21.782180873906327],[-103.559799238599,21.77973408789552],[-103.55806261842054,21.780712118439226],[-103.5537947845765,21.77977819817096],[-103.5518714454862,21.777604324318872],[-103.54970416453051,21.777208132706733],[-103.5466932926895,21.772665545013353],[-103.54325815926114,21.77112239244866],[-103.53711412887844,21.771017165065757],[-103.53441092577765,21.772733095564945],[-103.53181399345073,21.771227351611287],[-103.52879650038449,21.773197584283594],[-103.52601150854878,21.769915245461846],[-103.52725659601458,21.768037300100332],[-103.52358686756327,21.765720600104032],[-103.52342630762013,21.760979354382698],[-103.52161304399647,21.75901766149508],[-103.5206906592262,21.757353666284473],[-103.51835164552932,21.755206506200977],[-103.51656727850224,21.752813661595155],[-103.51387853153636,21.74874838034748],[-103.51214069872464,21.74826891478159],[-103.51009351333073,21.744810031388738],[-103.50847355829643,21.739735048709804],[-103.51062367093948,21.737479872992708],[-103.50936583715782,21.730709207262805],[-103.51080077188709,21.72571704128029],[-103.5101580927028,21.722525123144464],[-103.50923439782417,21.72055095424605],[-103.5077676852996,21.71969491688401],[-103.50819204630477,21.718129560440616],[-103.50907298927018,21.716137650451287],[-103.50946420022109,21.713959944599935],[-103.51025355119737,21.71289474953977],[-103.51070398642105,21.713417499603963],[-103.51163191416379,21.71436248896663],[-103.51665449889873,21.712454039132012],[-103.51785264914867,21.71146917742624],[-103.51819141726082,21.70664794775456],[-103.51877787771497,21.70337365365191],[-103.52157649914938,21.699217889530075],[-103.52294819453743,21.69702317652002],[-103.52436696209259,21.6939330342135],[-103.52488719487906,21.692282281800544],[-103.52500729393506,21.69105847394104],[-103.5249744905492,21.68988247672587],[-103.5256004090594,21.68924271085183],[-103.5264237790671,21.687521775603443],[-103.52688766310541,21.684765149779878],[-103.52705799452337,21.683775926682642],[-103.52598645593599,21.681097209066024],[-103.5258279765875,21.680227438263273],[-103.52574874773939,21.679238884811184],[-103.52571594074129,21.678062893867263],[-103.52604203031086,21.677448801341484],[-103.52649013872247,21.67697599565264],[-103.52671001998698,21.67556331791127],[-103.5270607560285,21.675067880800555],[-103.53001700698888,21.67220565294957],[-103.5310721983073,21.672176973857233],[-103.53172594521902,21.67177289810479],[-103.53446933601134,21.66997285695544],[-103.53655834284854,21.668891726846255],[-103.53750431996588,21.666335647932954],[-103.54079634416269,21.665293136134437],[-103.54146326576739,21.663859614912212],[-103.54231631702203,21.66132959885067],[-103.54286386529742,21.6595333079714],[-103.5440709215834,21.65637889712599],[-103.54532657506644,21.65395010581534],[-103.54741581301386,21.65008132063457],[-103.54870930090942,21.649914196345946],[-103.55000021117132,21.646907572488317],[-103.55224485138422,21.64584222620357],[-103.55273741753291,21.642989021240055],[-103.55159678050217,21.64144849994642],[-103.5554917459504,21.63408351064197],[-103.55530748846752,21.627660233144866],[-103.55555587895333,21.62540770770812],[-103.55384569616609,21.624550977465105],[-103.55233592910423,21.619982173610936],[-103.55208347492908,21.616770403983594],[-103.55061949221766,21.613438845758196],[-103.54976595864832,21.605391224295317],[-103.55067502860862,21.598263719948022],[-103.54992395384704,21.596088486354063],[-103.5497355760159,21.595911589136676],[-103.54783074501216,21.593577371390097],[-103.54771686633751,21.59153002676186],[-103.54649968976418,21.589911318910538],[-103.54539697251806,21.58740614993394],[-103.54997481363523,21.585976460493498],[-103.55243002461395,21.583911570791997],[-103.55306500171037,21.581649841677574],[-103.55548772946105,21.57708876161462],[-103.55748473993242,21.577039066997997],[-103.55889183632428,21.57640408730964],[-103.56038035080536,21.577647896523843],[-103.56377960172068,21.579342055254642],[-103.56536294873109,21.58074359188555],[-103.56587597344907,21.58129927705511],[-103.56739807776705,21.5812454719765],[-103.56807999700874,21.581805272038935],[-103.56866298755597,21.581864013925667],[-103.57121037265642,21.581717542300623],[-103.57260408714797,21.58193467914606],[-103.5733893079398,21.58287538164683],[-103.57422273747142,21.584898050968434],[-103.57500608063066,21.58461774539643],[-103.57998864204052,21.584199131579624],[-103.58000140241194,21.58528242514234],[-103.58068370858484,21.58662478943819],[-103.5810122216526,21.588082855173354],[-103.58201638515118,21.589229583120073],[-103.58523814366032,21.58917900751004],[-103.5856730520245,21.589616036411655],[-103.58704256872659,21.58931100749453],[-103.58753775341404,21.58991598832796],[-103.58826855013638,21.590346914826],[-103.58972583240796,21.59013402384454],[-103.59147900102818,21.589051204254247],[-103.59349396865747,21.58274825456283],[-103.59476412041073,21.58171318872712],[-103.59425358029995,21.580946928832873],[-103.59303537513239,21.57849647785065],[-103.5937237627993,21.576862872906702],[-103.59323861614325,21.576480735555606],[-103.59449590592521,21.57400609432426],[-103.5960038445952,21.569946920164796],[-103.59674714043484,21.56546806528138],[-103.5959105469949,21.56329899695288],[-103.5937854556139,21.559766957460397],[-103.59380943280127,21.55927931812522],[-103.59513916728787,21.559139416500386],[-103.59608748891196,21.558987024891167],[-103.59724976896416,21.559015123514314],[-103.59943500588861,21.55844725854189],[-103.6033217469435,21.55848133282126],[-103.60811447994729,21.556535151155515],[-103.61314140296673,21.55806617980653],[-103.61652523957144,21.556903430243608],[-103.62029158588848,21.557703424305885],[-103.62057649467891,21.557855468532523],[-103.62132896048394,21.557965696899373],[-103.6215860046554,21.558351496995613],[-103.62104730013851,21.55861388347688],[-103.6208231145406,21.559763542580242],[-103.62075562819535,21.560342770682894],[-103.6215784175252,21.562114116230816],[-103.62116096161179,21.563813010555805],[-103.62156951109625,21.564862289481198],[-103.6218632949018,21.56483014933042],[-103.62233212259144,21.56553977734967],[-103.62321883408583,21.5658148304791],[-103.62355324365609,21.565605579477904],[-103.62413218735298,21.565599447559805],[-103.62455828030556,21.56582937284645],[-103.62482783297816,21.567856836939598],[-103.62747288608887,21.570906691107552],[-103.62830870273541,21.571059545524292],[-103.62961884438971,21.572336051092748],[-103.63113355627377,21.573731976783336],[-103.63391089855554,21.574008107602538],[-103.63487402572514,21.574455727027953],[-103.63699158587019,21.574454041924184],[-103.63875787317852,21.575032936793832],[-103.63942026337315,21.57449455613539],[-103.64000478079925,21.57477795442759],[-103.63965732365114,21.57546157397468],[-103.64003112098368,21.576282282953514],[-103.64164889022004,21.576387972663838],[-103.6432972631236,21.57647805948949],[-103.64440951210128,21.57636900765948],[-103.64693539736317,21.575113270344332],[-103.64887017042895,21.573324392074596],[-103.65545009010555,21.5673567063713],[-103.6600368973368,21.564789388017516],[-103.66066159331922,21.56054403664433],[-103.6583164425657,21.55590653679917],[-103.66252623887078,21.55644310709971],[-103.66307682390993,21.55756357574967],[-103.66635383491837,21.558039611334493],[-103.66689827661497,21.557787867949628],[-103.67203222682065,21.555826146161394],[-103.6735918164079,21.554852506274983],[-103.67638407608496,21.555320276541238],[-103.67816088652586,21.557754111676786],[-103.6801946441837,21.556063644418373],[-103.68057465629607,21.556193805623195],[-103.68215168252311,21.55646059218816],[-103.68080533221843,21.557801380940532],[-103.68479379511393,21.55671021553661],[-103.68705367204763,21.55603551265159],[-103.687932714324,21.55495848466319],[-103.6890028785146,21.55388206930104],[-103.6897888828945,21.552353158560607],[-103.69000042447965,21.550276936597015],[-103.69010403328156,21.549645005438776],[-103.68900516442073,21.543043374997524],[-103.68821250454539,21.541186975664402],[-103.68767763964763,21.54069731259841],[-103.68647633389969,21.536349493694388],[-103.68642159835878,21.535853636738523],[-103.68801879487978,21.534113035143776],[-103.6890983933938,21.533880984570885],[-103.6905719359197,21.53303700583774],[-103.69107125630836,21.53263215274484],[-103.6914996687027,21.53260473556611],[-103.69200625653707,21.53293041923922],[-103.69301200665944,21.532685152269778],[-103.69419453568696,21.531075613855762],[-103.69448700578567,21.528886876457705],[-103.6943311409791,21.528680758877442],[-103.69223483529504,21.52744144526872],[-103.68817279785958,21.525276114373696],[-103.6866603423619,21.524737490075665],[-103.6870947210536,21.52323838525922],[-103.68552205334919,21.522481392973987],[-103.68608639571625,21.521184841462855],[-103.68479027832211,21.522025427797587],[-103.68215966162819,21.521070462510863],[-103.68175727794096,21.519999198979463],[-103.68084574300258,21.51742890440778],[-103.68007293608679,21.515587700402534],[-103.67980681424586,21.51385939435295],[-103.67970942280135,21.512101081282708],[-103.67781606221587,21.510787660672747],[-103.67538981753285,21.51081964909656],[-103.67394019148122,21.50851477947623],[-103.67258827428714,21.507979704721265],[-103.67257825351595,21.505454735744422],[-103.67416425809517,21.50484701566677],[-103.67600614894349,21.50464479895942],[-103.67677617155465,21.504638930615897],[-103.67789108515433,21.50469464577958],[-103.68126206587283,21.501852360960868],[-103.6842976437473,21.501594693038157],[-103.68864096341218,21.499067431338347],[-103.68957050956601,21.497495009249633],[-103.69054941852062,21.49640518894222],[-103.6913644112359,21.49614451971769],[-103.69425737751095,21.490207445996475],[-103.69223250098185,21.487087475067085],[-103.69220199382596,21.48470203855436],[-103.69258047693017,21.481863714303927],[-103.69383852673309,21.477899430250886],[-103.69658607662467,21.47654203084221],[-103.69707716395567,21.47376394435281],[-103.6993882793883,21.472784622872894],[-103.69965198745967,21.470778520658428],[-103.70146471610474,21.466265907574154],[-103.69856819209645,21.466884555616275],[-103.69433760373761,21.46581577756939],[-103.68880787675721,21.464016309364354],[-103.68323950194696,21.46348090491807],[-103.67889001435111,21.464053775888317],[-103.67505866023873,21.465550855698098],[-103.67384056773881,21.46541879572038],[-103.6716402951347,21.465392576595605],[-103.66792893354267,21.465565528212494],[-103.66663508703687,21.465510161427233],[-103.66567233168183,21.464915274516272],[-103.66307147877183,21.46457555915805],[-103.65982604029512,21.46384022795695],[-103.65874324041255,21.463697668404166],[-103.6596762213735,21.462308967386377],[-103.66060872496314,21.461275125684892],[-103.661566419645,21.46071112555171],[-103.66219744565802,21.45960430850033],[-103.66262556411311,21.458945306955627],[-103.66353271865546,21.458216666247665],[-103.66398784388485,21.457156223618142],[-103.66469635061424,21.454873258814985],[-103.66389179123485,21.453317357455603],[-103.66339136694654,21.451503125855993],[-103.6638204992754,21.450537355929214],[-103.66359807700883,21.447452243746966],[-103.66334830136805,21.446462083697725],[-103.66139885598614,21.44325413875373],[-103.66078977065774,21.441583573999253],[-103.65903039114153,21.44103813747614],[-103.65835104458637,21.44113171167072],[-103.65744690345008,21.439977100139174],[-103.656190202875,21.43896243003195],[-103.65523567332724,21.437924519159196],[-103.65440677918929,21.437287293616237],[-103.65312688403145,21.435683847161727],[-103.6521688703769,21.43565878870328],[-103.65179307350132,21.435210879048498],[-103.65116406876973,21.43513961098347],[-103.65098707097508,21.435092510861068],[-103.65073611966051,21.434785739238748],[-103.65030922228982,21.43459612247807],[-103.6503054803124,21.435474676095282],[-103.64964340218597,21.43815546737619],[-103.6492465008991,21.438593553282374],[-103.64795505186339,21.438651015301332],[-103.64637463952346,21.437831242878417],[-103.64561590009191,21.43801092409467],[-103.64418055149747,21.438111647758717],[-103.63980104738926,21.43747974201534],[-103.63696724326121,21.43760625308346],[-103.63549098783477,21.43920210800917],[-103.63184116775722,21.438151935337146],[-103.63035223112564,21.43511749976517],[-103.62927874759328,21.43492199961065],[-103.62652536790563,21.434482056689433],[-103.62624959733802,21.429320107158333],[-103.62407668810192,21.427175932832426],[-103.62148791045854,21.42670693110074],[-103.62041146813402,21.426661147402456],[-103.62122202278846,21.425316658364352],[-103.6200478039616,21.42303026417727],[-103.6207596048136,21.423784165928964],[-103.62095389732912,21.424382906472545],[-103.62255424057281,21.423910372441412],[-103.62272172154314,21.42309180523381],[-103.6227466461292,21.422186716550698],[-103.6243254788763,21.41849623338595],[-103.62337884692789,21.415864903596116],[-103.62358249536345,21.415289560715962],[-103.62290521027529,21.413111466813234],[-103.61737709645195,21.411934016912596],[-103.61584064376586,21.411691271364703],[-103.61656112727553,21.409493623256765],[-103.61449111344007,21.40770634782791],[-103.61076224242873,21.407427463702163],[-103.61028298368973,21.405328201398618],[-103.60823072603836,21.40421380871703],[-103.60805052549773,21.404057697999974],[-103.6065764674583,21.40191685474474],[-103.60310136468456,21.400700237357114],[-103.59977880439499,21.39734120622262],[-103.60096240874066,21.393853938850725],[-103.60016206790641,21.39376698275737],[-103.59954921779246,21.394137386475904],[-103.59765202865918,21.393745999334385],[-103.5956684995337,21.39261048605738],[-103.59433058248584,21.3916733789531],[-103.59345658623329,21.39266762724816],[-103.589616267888,21.393836875244006],[-103.58929659950547,21.392307190440647],[-103.58974982834349,21.391873115647286],[-103.58639427839421,21.392366306249755],[-103.5856449481505,21.395155864666208],[-103.58622701376424,21.397868600033235],[-103.58585910760439,21.399641657618247],[-103.58516548504298,21.402690455821983],[-103.58668159789318,21.40268359910732],[-103.58728535574977,21.403676869905382],[-103.58650053066555,21.405220291137482],[-103.58719541715425,21.406446518944733],[-103.58708956834232,21.407890780199352],[-103.58658703630857,21.40856823796406],[-103.58442020202892,21.410074804816702],[-103.58407395057037,21.412919896105848],[-103.58398018454557,21.413949127752915],[-103.58371800477096,21.415988337869237],[-103.58255173023349,21.416923048442186],[-103.58227625605787,21.41761684862962],[-103.58206587033703,21.419270509088165],[-103.5818128058948,21.421027643965942],[-103.58175078177845,21.423092039767425],[-103.58210748459476,21.423603049439862],[-103.58220049466814,21.424274348757194],[-103.5818427977718,21.424410721723405],[-103.5807945211294,21.424518846231365],[-103.58047016815078,21.42469222526887],[-103.58100294553691,21.425589776400614],[-103.58127709419796,21.426206130021],[-103.58165762918156,21.427204919413896],[-103.58123643565062,21.427580775459717],[-103.57989963444572,21.428705700753085],[-103.57885008958846,21.429023576067436],[-103.57817050026489,21.429127877606902],[-103.57742493822275,21.42925055199578],[-103.57598599856624,21.428549964619265],[-103.57629263986536,21.43052382612052],[-103.57751801485654,21.43426721995047],[-103.57641469432826,21.434526252492333],[-103.57512774424077,21.4362059906411],[-103.57401724925262,21.435854737317584],[-103.57298678602501,21.437770530547823],[-103.57251108550565,21.438208845335453],[-103.57251377861371,21.438438799315236],[-103.57202335523164,21.43854997974563],[-103.57202905054811,21.439036429412795],[-103.57045645136407,21.43972027126972],[-103.57021897562646,21.439349616252116],[-103.56999767457421,21.438495443577494],[-103.56894003137762,21.438621270914155],[-103.56840634864511,21.439077859304177],[-103.56752744931669,21.438800887880575],[-103.56625513900201,21.438364776032415],[-103.56506291538216,21.43748215337905],[-103.56470035958193,21.436848609754747],[-103.56405756916763,21.436172697128427],[-103.5638014941411,21.43557542153519],[-103.56287595159904,21.434340618282476],[-103.56196033759903,21.432124650122773],[-103.5604066826993,21.430218301110415],[-103.55995041968214,21.432594042544395],[-103.55892352256944,21.4350349529455],[-103.55838350294141,21.436188386518154],[-103.55775117007312,21.43609597611544],[-103.55463609365756,21.437946567887877],[-103.55377580075469,21.437285608298225],[-103.55353302068494,21.436874575897434],[-103.55215728636836,21.43715863283967],[-103.55108491286592,21.437219502980952],[-103.54989856783294,21.438362913720198],[-103.54905270409586,21.440259300678917],[-103.54673903950925,21.439508284417286],[-103.54385245076372,21.437341019151233],[-103.54286659387958,21.438236820941313],[-103.54240023660049,21.438960653602123],[-103.54136027463176,21.440295953573354],[-103.54123305727023,21.441370672673884],[-103.54070839656441,21.442556790485185],[-103.53870026377672,21.444770924748127],[-103.53849409294634,21.443739175350004],[-103.53855149031608,21.442161920178933],[-103.53876203894777,21.44175724650995],[-103.53712337636756,21.440594611183087],[-103.53763014533399,21.43685047289995],[-103.53758649007068,21.434043867227103],[-103.53742930251764,21.43158871775296],[-103.53699307483168,21.430164619587174],[-103.53628555737538,21.42851125965717],[-103.53595511537452,21.427990324799794],[-103.53521294850009,21.427061820887957],[-103.53383519629682,21.42558504602647],[-103.53339613323277,21.423312075105287],[-103.53357276736529,21.4221992546274],[-103.5337847166544,21.42112861573395],[-103.53358949151908,21.420613272705225],[-103.53022778390891,21.417029445778837],[-103.53030895382113,21.415988596303407],[-103.52884938721655,21.41488327201887],[-103.52716680658449,21.413938069984567],[-103.52651459218248,21.413088765426835],[-103.52578888203465,21.411485121301098],[-103.5258653122853,21.41113223619169],[-103.52599216208085,21.410355029970503],[-103.52584281712234,21.41026122683195],[-103.52501394418334,21.409812085304225],[-103.52476191531838,21.40955140976513],[-103.5238095761448,21.408042584224518],[-103.5233356026879,21.40684028038919],[-103.52222783487696,21.405956643491322],[-103.52204871526874,21.405167652840873],[-103.52186794423801,21.404245629315085],[-103.52210622641405,21.403476070916213],[-103.52133628207207,21.401277021113685],[-103.52042589638052,21.40065851068539],[-103.5199616812722,21.400282404997654],[-103.51892717578062,21.399222692387582],[-103.51633612839998,21.397440573683753],[-103.51472149182706,21.396404024722415],[-103.51152055274571,21.3946530669092],[-103.50855942674525,21.390389672841366],[-103.50811774187702,21.389417189827782],[-103.50817432831343,21.380321488364643],[-103.50580879280966,21.378376829731053],[-103.50487968596678,21.377655507045915],[-103.50418302001856,21.37619497977971],[-103.50478790845591,21.374929631067857],[-103.50783340485197,21.372740637150514],[-103.5099638019156,21.36944941010688],[-103.51308304776904,21.364066964844255],[-103.51176394198382,21.3603337781758],[-103.5099737665991,21.356960992158236],[-103.50996401447901,21.354892878946885],[-103.51178112560137,21.354671751052024],[-103.51420761828734,21.35450792717546],[-103.51494449711856,21.354950656729784],[-103.51799517067855,21.35511348842408],[-103.51908979977463,21.356498905641786],[-103.51988971763245,21.35600436642568],[-103.52223205419517,21.35294457385254],[-103.52239891610475,21.352405922854246],[-103.52362119027123,21.35253843827462],[-103.5249689527476,21.35347763180482],[-103.52703199464776,21.352222475431347],[-103.52930084579054,21.352667788766894],[-103.53033557028385,21.35328849615655],[-103.53299932655426,21.352900267198038],[-103.53540725176629,21.35387234839368],[-103.53911865070313,21.353261025106576],[-103.54153132150088,21.352847652331604],[-103.54298282373571,21.35254008135513],[-103.54627320777536,21.350991167242967],[-103.54832816715117,21.350102820078405],[-103.55064150491421,21.350936999877263],[-103.55187602504407,21.35004693043652],[-103.55335805264997,21.34907114441029],[-103.55467947159275,21.34849794113063],[-103.55621415027076,21.34822709489964],[-103.5580695472645,21.348172761940532],[-103.55843106431615,21.350193604186472],[-103.56046046273792,21.34979022449238],[-103.56219234453317,21.352384109113586],[-103.5646910513039,21.35078950760908],[-103.56534075681105,21.350973442456336],[-103.56584750564497,21.351364456911824],[-103.56664539422161,21.352198651227013],[-103.56841665650182,21.351667408717503],[-103.56773155974633,21.349177520901037],[-103.56761498069005,21.34628114713513],[-103.56761947285713,21.345684484397964],[-103.56836229979086,21.344553628880135],[-103.56723853201157,21.343205296709073],[-103.56755132299315,21.339798100089297],[-103.56835863054863,21.338597751679288],[-103.57103064036761,21.335963865318718],[-103.57202657183433,21.334930088672536],[-103.57283102609472,21.333594408435033],[-103.57407838558083,21.3326683083248],[-103.57443207599749,21.332577697488148],[-103.5751583112309,21.332633599611768],[-103.57746162223032,21.33198398389692],[-103.57845238391928,21.330234298288474],[-103.58050833550976,21.332956080139013],[-103.58113401780184,21.333728175892247],[-103.58386114259798,21.334903599200572],[-103.58428626300656,21.33521667127252],[-103.58424079651411,21.336209004573902],[-103.58466510965206,21.33798073038355],[-103.5866224509748,21.338067406201674],[-103.58756111501975,21.34096930297011],[-103.58867660548401,21.34219339880991],[-103.5891485734474,21.34155778326692],[-103.58974244119804,21.340874532025055],[-103.590055280108,21.34082508571896],[-103.59192308992618,21.341876172520585],[-103.59380071714213,21.340978523448314],[-103.59274550512623,21.342261641521077],[-103.59670791943029,21.343538193140887],[-103.59779743201739,21.342108334553245],[-103.59808172921203,21.341902892847145],[-103.59895696066451,21.345380187312855],[-103.60094691147725,21.347828663614393],[-103.6029532781194,21.3491266836308],[-103.60818674251715,21.349185097377926],[-103.60985511883553,21.34948278405659],[-103.61056940602134,21.348912377224224],[-103.61216555379542,21.349534601259563],[-103.61429237965882,21.350082133607714],[-103.61482942561861,21.350516179246426],[-103.61694509412592,21.353409650347032],[-103.61748617645333,21.34931348108745],[-103.61659821198276,21.34749642136927],[-103.61843654792966,21.344967786535108],[-103.61942819253221,21.34441692351311],[-103.62103259988538,21.344591172415164],[-103.62110951545202,21.34458869343615],[-103.62236815112016,21.344329348909355],[-103.62467161539547,21.343888376667337],[-103.62731505118194,21.344238704474833],[-103.62788469345367,21.34488333248214],[-103.62900961514362,21.345373630874406],[-103.63049425711421,21.343895653734307],[-103.63080926204861,21.34422384941024],[-103.63128914842315,21.342186865221095],[-103.63344238463907,21.341011373568847],[-103.63537398348689,21.341565511445026],[-103.63628787892168,21.343760646909004],[-103.63853258997773,21.344845753316577],[-103.63936821079602,21.343152891212924],[-103.63964089571238,21.342818046378056],[-103.64178344216481,21.34211517985233],[-103.64305078646055,21.34173322064339],[-103.64469452181407,21.34324636083909],[-103.64623618492243,21.344414223477315],[-103.6465222868253,21.343642683840017],[-103.6463206339655,21.343265744932182],[-103.64629651970034,21.34238982296131],[-103.6465327809895,21.34238129678954],[-103.647171920581,21.342667665178794],[-103.64888744221349,21.34241742822786],[-103.64975562216222,21.34180355291761],[-103.64974970997235,21.341322049209964],[-103.6493855253197,21.33969280949259],[-103.64876692952203,21.33878929937822],[-103.65030740650212,21.337529516807308],[-103.65245803943174,21.337730990280818],[-103.65366460366363,21.337933983026403],[-103.65367064529039,21.338424874870555],[-103.65513953238172,21.33920820054726],[-103.65603150985203,21.33786491297917],[-103.65725712884131,21.33694999200179],[-103.65897914242424,21.33705881724518],[-103.66100303100251,21.33757740659263],[-103.66202219347969,21.337672356091048],[-103.66335398962923,21.338264044559025],[-103.66414309572389,21.337229689258606],[-103.66544944895367,21.335478751935796],[-103.66626329410815,21.334101183385712],[-103.66613543880453,21.33285655997645],[-103.66686078583933,21.330529256797433],[-103.66702630322862,21.329476614297334],[-103.66846380720727,21.328232430434014],[-103.6686048140491,21.326868648259904],[-103.6702407089744,21.326429841889308],[-103.67171139898028,21.322472100678795],[-103.67416175279709,21.322284764221706],[-103.67443187455797,21.321408316356496],[-103.67544913063705,21.32184971831572],[-103.675752984224,21.320761347162545],[-103.6772130118253,21.32087292161833],[-103.67836233176718,21.319974280274096],[-103.67917280789896,21.31988271133713],[-103.68096599581321,21.32074864023832],[-103.68219692525957,21.318788127710718],[-103.68315580874582,21.31915792211413],[-103.68496285887915,21.319802367976877],[-103.6853012416313,21.320231972547276],[-103.68628048396818,21.320466706555862],[-103.6868310856608,21.320460639275666],[-103.68870524925114,21.320989122793776],[-103.68983434394488,21.321290461272554],[-103.69055540254413,21.320191849060336],[-103.69226982672728,21.32063253165603],[-103.69605401116854,21.323950521181075],[-103.69712555512683,21.32412384319116],[-103.69881363379045,21.324341525624504],[-103.699440313862,21.32487794640855],[-103.70219855769835,21.325556980264366],[-103.70419652153993,21.32567739339487],[-103.7060216290763,21.32484988002625],[-103.7065350096239,21.322842727608133],[-103.70654051183192,21.322284550759377],[-103.70679286332353,21.320649136554778],[-103.70808906385986,21.319403944288695],[-103.70892990177151,21.31917914563735],[-103.71112062391353,21.317747299130417],[-103.7102853137626,21.31595193733142],[-103.71206845747372,21.312424131375792],[-103.71438991415988,21.312225815774013],[-103.71857848681447,21.310106780570493],[-103.72083909634853,21.307961069402324],[-103.72047994767439,21.302272377492216],[-103.72028836949835,21.30031797141828],[-103.72008852132922,21.2994571905557],[-103.72114698639842,21.292882302270527],[-103.72042320081653,21.289518207939068],[-103.72156976159744,21.28718304897842],[-103.72181861035875,21.283555150436143],[-103.72106884216527,21.283376897384358],[-103.7199056739961,21.283125930056713],[-103.72028844040312,21.281182016573553],[-103.71963517008368,21.27987325996861],[-103.71992579264634,21.27888278847695],[-103.7202763740068,21.27722929792145],[-103.72038537089094,21.27623889415588],[-103.71805395591804,21.274341873091032],[-103.71743353584452,21.273409448871917],[-103.71749651582707,21.27286788341189],[-103.71739269634071,21.27185720821649],[-103.71737726336858,21.271222145517527],[-103.71692060414188,21.269275282874844],[-103.716482785079,21.26848070680768],[-103.71621138740153,21.26786848121816],[-103.71479342314467,21.267416968703174],[-103.7139237960427,21.267097940537838],[-103.71320602037605,21.266997657332638],[-103.71309806949074,21.267140213080665],[-103.71282286114024,21.267472127735857],[-103.71259794490891,21.267991551716477],[-103.71318025519298,21.268615729628493],[-103.71228671480509,21.270900441212007],[-103.7116509986991,21.272622536215124],[-103.7117943901153,21.273271747784236],[-103.71075713610719,21.274483482679784],[-103.70858844307429,21.27443693357617],[-103.70369532521033,21.27798216324976],[-103.70329571233708,21.27855954304846],[-103.7027114510671,21.279442674104416],[-103.70134586411353,21.28017568334792],[-103.7007246230068,21.28058643815376],[-103.70027767252628,21.28066458251743],[-103.69975300279549,21.280889972139448],[-103.69924785553673,21.28111512874176],[-103.69871464763952,21.281553013929795],[-103.6977267610826,21.282521124199263],[-103.69648191635594,21.282675543966718],[-103.6950068105649,21.28391561928629],[-103.69365522911102,21.283551439980215],[-103.69268439769127,21.284305814708205],[-103.69068540164812,21.28528745768739],[-103.68792633347766,21.28495524881987],[-103.68363912769058,21.28551381280994],[-103.67963435876146,21.283726958258512],[-103.67811741490902,21.282974964000914],[-103.67492686886192,21.284124310583593],[-103.67317876452381,21.285646228079088],[-103.6717035677334,21.28656198829856],[-103.66969033065334,21.287376790486974],[-103.66668051444685,21.29046510488689],[-103.66582003235453,21.290569760618837],[-103.66478925206644,21.290215261642004],[-103.6645904987634,21.28917835325103],[-103.66429068860617,21.28865981058317],[-103.66376150936708,21.288541239767596],[-103.66258400072394,21.286890619761436],[-103.66150385877285,21.286064744803866],[-103.66130484536649,21.2850042431744],[-103.66042717274985,21.283166136079785],[-103.65776515102067,21.281254805424965],[-103.65748901325298,21.281631678863903],[-103.65620837498966,21.282208183805324],[-103.65271342958431,21.282001860626337],[-103.6518830597272,21.282189600915558],[-103.65117903934527,21.282258908321808],[-103.65025076578297,21.28251666470868],[-103.64974726464538,21.282751686695292],[-103.64822628999855,21.2838670369718],[-103.64335885808794,21.284098163395186],[-103.64108585811232,21.284451066093368],[-103.63813428238541,21.283785748011155],[-103.63734303624977,21.28361090578636],[-103.63421404496603,21.281888382787827],[-103.6373750808641,21.278531562718456],[-103.6381033509366,21.278170796883614],[-103.63929964451665,21.277606057739092],[-103.6394188190871,21.27734301080659],[-103.63898049621588,21.27650347333008],[-103.63715660670675,21.27502544751775],[-103.6376675880295,21.274361260431988],[-103.6376481838135,21.27314966975956],[-103.63742946813329,21.269128563830122],[-103.63769307107435,21.26759188271143],[-103.63892213046722,21.266578420645658],[-103.63988216654923,21.266483602988274],[-103.64007487255333,21.26597728229575],[-103.63973456991812,21.265124759873117],[-103.64054110856671,21.26321972371585],[-103.64055516775676,21.261571366005626],[-103.6413071628777,21.259493481998504],[-103.64123729955145,21.256959896080048],[-103.64168336921665,21.254040832877536],[-103.63986898424099,21.2518560921107],[-103.63939742868104,21.250237779492238],[-103.63933169156093,21.24910113269209],[-103.63914100115011,21.24745071611909],[-103.63911409192576,21.247215298112224],[-103.63956604354621,21.24475940053253],[-103.6396973098939,21.243383807318594],[-103.63669406399401,21.24330259733034],[-103.63663321082254,21.2427261043577],[-103.63631493763188,21.24171043301584],[-103.63663892853975,21.240098043795626],[-103.63909288603253,21.233082574009586],[-103.63943935407559,21.229247562340447],[-103.63972339274096,21.224992201829025],[-103.64019588232327,21.22207240883762],[-103.64122852181123,21.22223102453563],[-103.64376359808176,21.222185652093458],[-103.64554073918526,21.222286326080678],[-103.64813830047495,21.222996114167984],[-103.64973232935506,21.222921759992175],[-103.65092327433479,21.22241447266697],[-103.65212108317701,21.222387804480377],[-103.65606778431453,21.222121545251525],[-103.65717136569276,21.22209814026229],[-103.6596980301407,21.22256322570655],[-103.66234867359219,21.223786985524157],[-103.66315204891839,21.22418569757383],[-103.6633521012767,21.224162650767937],[-103.66390257314424,21.221877147247824],[-103.66377310950668,21.22025240577807],[-103.66383088693016,21.21866464926177],[-103.66652030951877,21.216788711878053],[-103.66732405149548,21.216048549356174],[-103.6667585791032,21.2158369698746],[-103.66609286264213,21.215766138464915],[-103.66584868037455,21.21576879826688],[-103.66449508608599,21.215669551079316],[-103.66395243684133,21.21575392687282],[-103.66311341394396,21.215971249314237],[-103.66264450656269,21.215906448210035],[-103.66193651205816,21.215500766261016],[-103.66007825805406,21.214306862308774],[-103.6596689230941,21.213703982589323],[-103.65899741016409,21.213711268129316],[-103.65765007587623,21.213376323577563],[-103.65745518477843,21.2126904234446],[-103.65692585972084,21.212588070723143],[-103.65607769398702,21.21266086680464],[-103.65590149183237,21.212127054703103],[-103.65608485862009,21.21159060898202],[-103.65666402698997,21.21100026738526],[-103.65607997195906,21.210985486094557],[-103.65546082918848,21.21077248668962],[-103.65517725187573,21.210098079305624],[-103.6545132476486,21.209563951937525],[-103.65406174670886,21.209257428245564],[-103.65373260310014,21.208757051613702],[-103.65287674465549,21.208664607683488],[-103.65232646823415,21.208600654934287],[-103.65196587318911,21.20800572808622],[-103.65122574999646,21.207947308478595],[-103.65051731727993,21.2078551949632],[-103.64978502720436,21.207681529176398],[-103.64937114675735,21.207402609455812],[-103.64853368196646,21.206700175803064],[-103.64801149508219,21.206520367131816],[-103.64793466545865,21.206426656746032],[-103.64769447052822,21.206200447008882],[-103.64749848786295,21.205379930700985],[-103.64663029989714,21.20481824016815],[-103.64607550833864,21.204362426144655],[-103.64579910231527,21.20339328417282],[-103.64538303731734,21.203058769065137],[-103.64505457814937,21.20306230260644],[-103.64474789483467,21.202944847539754],[-103.64420632581079,21.202592694830116],[-103.64312520012857,21.202420442954917],[-103.64256031300027,21.201877292558095],[-103.64209839552421,21.20172488279667],[-103.6403466125023,21.200776529112034],[-103.63997996042355,21.20018940418595],[-103.63960551778825,21.200079028030245],[-103.63911860313493,21.200198638854943],[-103.63856956932165,21.20033260222158],[-103.6380542091029,21.19993454686363],[-103.63785752542913,21.199936653476698],[-103.63712917755066,21.19972836579535],[-103.6369134235631,21.198729648706603],[-103.63658711204448,21.19791049890773],[-103.63577855684906,21.197545180438397],[-103.63512829711055,21.19697514492077],[-103.63331930452722,21.193526873255962],[-103.63280189401257,21.193386225681138],[-103.63296620515428,21.191682476313588],[-103.63337439220624,21.19151533866443],[-103.63337120445527,21.191252845647227],[-103.62986269195557,21.193964006916758],[-103.62908704472937,21.193363939941833],[-103.62800500528698,21.193572011359663],[-103.6272503725528,21.193331753919097],[-103.62695069216466,21.19328822555201],[-103.62566997175873,21.19305674305184],[-103.62516811344562,21.193062077394245],[-103.62453826016684,21.193145688047935],[-103.62388711198162,21.192704733513153],[-103.62132401425288,21.190941568503092],[-103.6202159401301,21.189318123860176],[-103.61903583074081,21.188942243246288],[-103.61843258363075,21.188260797776593],[-103.6163718141874,21.186096600083545],[-103.61611891551809,21.18574356154363],[-103.61762270104498,21.183269441348898],[-103.61506123347635,21.18145898061573],[-103.61423063923041,21.181177375344532],[-103.61294907584505,21.17983702202946],[-103.61214412422049,21.179272019134658],[-103.61159982690663,21.177415724561854],[-103.6125446121448,21.17151569309152],[-103.61255855444085,21.17055109408483],[-103.61244678623751,21.165956077353826],[-103.61184788037485,21.164797259761713],[-103.61243380241427,21.16394488043011],[-103.6133432706398,21.162237916798915],[-103.61400903274551,21.160874391182915],[-103.61491690139695,21.15894401920474],[-103.61445539111656,21.15800497510412],[-103.61415251288014,21.15753813367604],[-103.61405780702904,21.15692935275274],[-103.61360849677578,21.156247185152324],[-103.6116600826739,21.155159621628798],[-103.61035699321587,21.15525560153992],[-103.6097814656444,21.155257618743747],[-103.60824731272487,21.15533909292958],[-103.6067426806199,21.154641694978807],[-103.60366177216116,21.153059762443775],[-103.60334724096708,21.15285163522111],[-103.6019824663179,21.15167095963949],[-103.60146402553676,21.150892399122768],[-103.60163777404131,21.149102905012057],[-103.60158310621904,21.14858444125565],[-103.6005760560787,21.147666969725094],[-103.59934632588573,21.145710834013016],[-103.59782371250759,21.14362400546196],[-103.59772902858225,21.14324295321927],[-103.59844841057316,21.141970932297397],[-103.59915184823012,21.141794916297215],[-103.59923573426738,21.141291524400344],[-103.59866453487354,21.140506371858976],[-103.59723029282452,21.140027274378895],[-103.59715727402852,21.13670384246575],[-103.59681880869198,21.13525644739633],[-103.59561394020625,21.132807258485116],[-103.59417327660282,21.131049423593083],[-103.5935410243934,21.130354552482004],[-103.59273010873557,21.130129601463864],[-103.59177754032328,21.1294327254854],[-103.59120857875678,21.128229019070886],[-103.59044103487855,21.127522053893472],[-103.5887512456514,21.127356343950964],[-103.58850833442125,21.127062611126405],[-103.58550004703415,21.12808270676885],[-103.58417884136537,21.12792100512229],[-103.58319151315027,21.127465741798744],[-103.58375735740486,21.126159217270867],[-103.5830648020438,21.126307021341347],[-103.58270181003007,21.12677814700305],[-103.58176319917004,21.12717350259078],[-103.58124716625355,21.12733691013341],[-103.58000548336236,21.126089527340582],[-103.57971189456555,21.125020885498373],[-103.57935170120453,21.124457787175572],[-103.57886656042774,21.124117882911378],[-103.5783441317302,21.12365946397],[-103.57793350377233,21.123393469445602],[-103.57748923163433,21.12281843934744],[-103.57747629458822,21.12222112738999],[-103.57648140910794,21.12140358742556],[-103.57612564435505,21.121637195409903],[-103.57572904568144,21.121349086543887],[-103.57530146541927,21.121107624190472],[-103.57308948106146,21.1212165013996],[-103.57317707074571,21.120640731160677],[-103.57254221737446,21.12012392590748],[-103.57151726381352,21.11953500280663],[-103.57114320402906,21.119186606391622],[-103.57044946551929,21.118347424034937],[-103.56958794017606,21.117277298984334],[-103.56858394500017,21.116933848310225],[-103.56870357469137,21.118294592703478],[-103.56849480842283,21.119281493313736],[-103.56797944052357,21.11877383039939],[-103.56764613502747,21.118925028245087],[-103.56735993834707,21.119717639357816],[-103.56694627428442,21.120787267442438],[-103.56515532065367,21.117935202217552],[-103.56489686392132,21.11842425497565],[-103.56500374724351,21.119502121290452],[-103.56269964547937,21.118796900520124],[-103.56174287454257,21.11914585380083],[-103.56106039071005,21.11895150894361],[-103.5603415191988,21.11845863730747],[-103.5602302698893,21.11830785129962],[-103.5595198367323,21.118870666941916],[-103.55899427133488,21.119105966900975],[-103.55800288518213,21.11833999262535],[-103.55768738610391,21.11949073584958],[-103.55652915434763,21.11952000546387],[-103.55649985768486,21.118489041399528],[-103.55634953170164,21.118067795083505],[-103.55508112473098,21.11752357523386],[-103.55369625059478,21.116747851145135],[-103.553625830187,21.117318095835003],[-103.55431989662969,21.11981414570829],[-103.55452170803409,21.120906649812355],[-103.55426057087783,21.121262241448335],[-103.55292519657905,21.121984745188],[-103.55293894090624,21.122434288205966],[-103.55074015708925,21.123356771727856],[-103.55035451077964,21.124821868373658],[-103.54973762843906,21.12517896631067],[-103.5487164432526,21.125027212296686],[-103.54833209489794,21.125292955860004],[-103.54701983253517,21.126565981522106],[-103.54695359519013,21.126783766197377],[-103.5445608081219,21.12676772926369],[-103.54350203032146,21.126403228026277],[-103.54105605180047,21.126285319610304],[-103.54039025245294,21.127745195844966],[-103.53925054434467,21.1283549750342],[-103.53823928331605,21.12879106008336],[-103.5362841037325,21.129289385037623],[-103.53400398922543,21.130653734995633],[-103.53242764458787,21.133109541165425],[-103.52965110826227,21.13451899569202],[-103.5317324009323,21.135153027633976],[-103.53181812927,21.136056840763956],[-103.53220141137336,21.136421401700943],[-103.53276437992025,21.13787121982267],[-103.53295415706265,21.138144257725344],[-103.5328520614164,21.138775921759304],[-103.53206670066146,21.140304591591814],[-103.53159089681907,21.141584252687096],[-103.53021933707527,21.142004502458462],[-103.52995896418457,21.141892635213026],[-103.52864134402267,21.14150619354416],[-103.5270790344644,21.14180133248999],[-103.52574991253789,21.142351339806794],[-103.52389068302858,21.142329904960718],[-103.5222880519674,21.14219044358282],[-103.52117959734659,21.14212161371995],[-103.52071888565058,21.14153920567105],[-103.51928015401376,21.142402066504133],[-103.51895381084819,21.14222561544733],[-103.51808188953152,21.1419248036392],[-103.51759537887841,21.142229124285222],[-103.51652174719686,21.143357875508002],[-103.51551899145795,21.144156639442997],[-103.51455203025517,21.144736491993513],[-103.51205249717441,21.1450411645543],[-103.51171438068235,21.145283696142315],[-103.51123448939353,21.14612066690097],[-103.51067290450925,21.144843069684157],[-103.50951432104779,21.143564195046338],[-103.50975533458325,21.141769706343098],[-103.51002952586776,21.139226290448505],[-103.51015558723026,21.13779045441055],[-103.5092263016187,21.137461174145415],[-103.50862383142044,21.136778409393514],[-103.50809505098562,21.135766439371423],[-103.50703987675593,21.13421250136895],[-103.50646243079535,21.129715720784418],[-103.50560892170967,21.128373935308275],[-103.50405153897748,21.127738670129702],[-103.49644174974935,21.131077667295926],[-103.49519116091244,21.131251117837508],[-103.49167824817414,21.132352082813895],[-103.49029749591477,21.132556005319827],[-103.48905208938334,21.13303630114268],[-103.48370109234457,21.133826512311146],[-103.48291983719048,21.134722428602743],[-103.48156966850712,21.135072162726317],[-103.47914898287092,21.136314231514405],[-103.47789451856141,21.13657408281648],[-103.47538465400504,21.137274334461438],[-103.47206885481586,21.141399548909135],[-103.46964517609621,21.143094288565123],[-103.46884930812621,21.143462496498785],[-103.46830219842951,21.14322741090018],[-103.46668601330157,21.143585479611716],[-103.46461658835847,21.143145928253944],[-103.45830908328213,21.141904370435952],[-103.45648129954401,21.14308779617363],[-103.4532836865339,21.144072806395116],[-103.44748853353838,21.143484447030517],[-103.44682104017033,21.142394576204538],[-103.44631484753347,21.141742857411487],[-103.44522926568317,21.141027947165128],[-103.44334740601562,21.14246297345511],[-103.43984741616612,21.14257117971556],[-103.43819056171657,21.142749983787724],[-103.43685957923651,21.142650106382746],[-103.43593167198372,21.14225460361689],[-103.43477256423898,21.14208010199451],[-103.43382082210411,21.142512124627274],[-103.43316556771202,21.142769258433816],[-103.43291985344206,21.143402632932634],[-103.43193660109353,21.144137723696872],[-103.43168215065413,21.14443424185623],[-103.43091470317523,21.14419684495607],[-103.42856716836388,21.14671116109514],[-103.42763306725391,21.14604944006021],[-103.42759102987623,21.145686875348986],[-103.42775432331041,21.144837845406812],[-103.42758111797224,21.143849520961567],[-103.4276219850218,21.143310125442042],[-103.42762478836931,21.142554242064307],[-103.42800700690577,21.141208748117094],[-103.42567402008763,21.13899684461336],[-103.42439053305935,21.138377842564807],[-103.42379790150022,21.13811169408467],[-103.42124258750613,21.138570138455293],[-103.4177760375444,21.1379755950108],[-103.41627601849251,21.137071781334782],[-103.4163732128224,21.136640119709796],[-103.41674427041869,21.13583008729529],[-103.4174477713338,21.13496278298834],[-103.41808315405217,21.13394933374525],[-103.41880890041307,21.13134836561835],[-103.420743104608,21.12913323689486],[-103.42163193106245,21.128294244661504],[-103.4216997739178,21.127692018736695],[-103.42206990855044,21.12653892196556],[-103.42310484094577,21.125709174728456],[-103.4232668757914,21.124773812201113],[-103.42318167703615,21.124033275133172],[-103.42245332987028,21.12301380758049],[-103.42144387061,21.121261105206315],[-103.41963251170313,21.12009195744423],[-103.41919620703715,21.119801111241998],[-103.41938969972443,21.118158775311258],[-103.41765281874257,21.11649806262926],[-103.41680934123082,21.114914346466037],[-103.41590443492271,21.114842883109247],[-103.4135971164032,21.112630284279533],[-103.41322193849709,21.111710954773855],[-103.41123976125016,21.11126378784303],[-103.41105297610392,21.11003230999762],[-103.41041195066225,21.10978061610382],[-103.40970956292671,21.109191860322596],[-103.40938251523573,21.108155936191963],[-103.4087913274459,21.10796087739351],[-103.40793835452763,21.107401611160014],[-103.40737560828,21.107002107027313],[-103.40657147248959,21.106389776023832],[-103.40647348702726,21.105988712902615],[-103.4057103721733,21.105507080579628],[-103.40547850876476,21.105021536644585],[-103.40527715919598,21.10436282352657],[-103.40494366831575,21.103940333701928],[-103.40419110318152,21.103634207988534],[-103.40353483083459,21.1031039818065],[-103.40297053106462,21.1027698075456],[-103.4019169043396,21.10280034574032],[-103.40142980099881,21.10245930495944],[-103.40065759877302,21.102438274992153],[-103.40096613745027,21.100636827451524],[-103.40136188618663,21.09982836516008],[-103.4006869217294,21.099821849785542],[-103.40032907350536,21.099069293440834],[-103.39922458809735,21.099320288789613],[-103.39841110546456,21.09810561866209],[-103.3975266454467,21.098754684436017],[-103.39713188646306,21.098915268068993],[-103.39686927496803,21.099147884671083],[-103.39566445930194,21.097620678263524],[-103.39604430352267,21.093696690614422],[-103.3948835330039,21.09412961051646],[-103.39300802894405,21.09185461171927],[-103.39299537048788,21.091072043211],[-103.3959979891315,21.090483340832066],[-103.39660056380865,21.089296637009],[-103.3964491413077,21.08883980414896],[-103.39443770007068,21.08711769206616],[-103.39515637646053,21.086300894468422],[-103.39648810436398,21.08576894607802],[-103.39768300523076,21.084773538474906],[-103.39758748053805,21.082987585198964],[-103.39641686709581,21.081361061647726],[-103.39501707655438,21.079709098532476],[-103.39312372153387,21.078987971433264],[-103.39077794840819,21.07861462175714],[-103.38830169185769,21.079435741951897],[-103.38784559180982,21.079187556236548],[-103.388478559867,21.077125881150778],[-103.38741798713096,21.075730200035537],[-103.38612397673637,21.074698977341995],[-103.38632041932613,21.073729298445357],[-103.38641838946364,21.07291905313241],[-103.38485734269028,21.071750173911425],[-103.38436911551037,21.07137789108623],[-103.38504618627587,21.06957884333457],[-103.38533442919118,21.068471819100353],[-103.38559527845922,21.067798185767742],[-103.38480502755522,21.067304278403697],[-103.38337359497973,21.068093383288783],[-103.38186510303086,21.06789812944902],[-103.37851730816368,21.0672020309093],[-103.37718251910741,21.066085866402318],[-103.37660739614739,21.065900506683136],[-103.37533647413977,21.064484505388236],[-103.37508629040178,21.063992447740986],[-103.37385846374616,21.06222899208626],[-103.3737226351011,21.06210288800264],[-103.37282885152763,21.06113281232666],[-103.37191304048145,21.060210121482953],[-103.37137731901754,21.05987620096147],[-103.36898732872885,21.057513829764844],[-103.36882124590613,21.0551014115901],[-103.36915206980882,21.052376433136033],[-103.36725207351509,21.05133549191072],[-103.36579556861699,21.051343985363985],[-103.36364405975871,21.050915936403214],[-103.36320571572918,21.050459975298793],[-103.36161500620341,21.050898497503113],[-103.36005763897595,21.050929342630468],[-103.35839370677672,21.04955571333892],[-103.35673208892354,21.048620173993186],[-103.35585808030521,21.047099979617997],[-103.35416418566825,21.045781159908415],[-103.34720700990806,21.044208630831122],[-103.34672462040669,21.044294543921808],[-103.34575043213653,21.0454590691794],[-103.34401100043118,21.04616486169516],[-103.34314711538946,21.045795009284973],[-103.34141570889562,21.04371882355781],[-103.34058809871544,21.04242769888009],[-103.33886220450671,21.041869402359737],[-103.33597075780494,21.042382859408917],[-103.33442276598913,21.042999763316573],[-103.3330618948076,21.044640855473688],[-103.33276158734503,21.046603665176917],[-103.33329218728636,21.04967852242379],[-103.33171962103944,21.053599947685257],[-103.32851109588705,21.055304889527577],[-103.32697447983043,21.055301841890753],[-103.3257271338037,21.05542752997752],[-103.32452273315943,21.05581667926009],[-103.32303481255394,21.055705074588275],[-103.32187399406638,21.055610968943427],[-103.3201410128267,21.055324748242242],[-103.3166945723707,21.054077680726493],[-103.31396766233308,21.056134251358344],[-103.31253870157616,21.05629625592684],[-103.3119051065841,21.056284746727215],[-103.31070384625923,21.056267280058023],[-103.30998616849223,21.056560458055117],[-103.30703627902966,21.0575249290506],[-103.3052540694294,21.057188313859058],[-103.30410783728342,21.056531679173418],[-103.30340379107639,21.05563903416413],[-103.30274951642195,21.054809581489792],[-103.30087624477721,21.0570297457067],[-103.30087075717358,21.057662205670567],[-103.29988343814091,21.059820089985863],[-103.29854923953411,21.061947935076944],[-103.29829524222879,21.06242858099307],[-103.29794654581349,21.06321210901666],[-103.29747924186881,21.064031979796653],[-103.29694245835412,21.06457776173488],[-103.29607783133673,21.064832212279953],[-103.2954462383907,21.0646834392507],[-103.2942738548976,21.06378701433505],[-103.29119492926384,21.06217118206439],[-103.28864308782835,21.061591218873502],[-103.28650812745826,21.059280794467952],[-103.28616481531446,21.05892269945457],[-103.28350189933963,21.057326249801747],[-103.28182733450058,21.057292967379226],[-103.27909134616618,21.05645333678484],[-103.27853812756484,21.055889631932473],[-103.27794014475501,21.05454486694009],[-103.27774893970758,21.053188189039076],[-103.27773109654356,21.05193252338779],[-103.27729793499589,21.05164203995315],[-103.27698186187735,21.05137941038936],[-103.27437357045807,21.052246443767615],[-103.27112609798968,21.05637101210408],[-103.26993280252248,21.0590675531447],[-103.26966805614057,21.05969309294545],[-103.26705708879763,21.060948459222516],[-103.26581185139787,21.06046910542068],[-103.26483485088369,21.060874625721397],[-103.26280990541449,21.062154372074588],[-103.26121177079216,21.064944024953036],[-103.25994356719286,21.06862830434858],[-103.25792275878109,21.070961602476586],[-103.25867080575921,21.071473872503873],[-103.25892477286317,21.07153653955214],[-103.2609217074367,21.07396067320917],[-103.26139520699172,21.07623074471718],[-103.25972946928238,21.07711190810653],[-103.2585444683296,21.07851228356816],[-103.25842031412412,21.079317853717953],[-103.25827733086709,21.08198361960848],[-103.25782851968677,21.08332463847279],[-103.25687229178192,21.08356527719826],[-103.25523962890185,21.084628256041867],[-103.25414599158574,21.083265158783547],[-103.25378075491648,21.082658445473726],[-103.25286978686518,21.081452648919196],[-103.25254068534383,21.08121523415582],[-103.25151326448389,21.081729762595046],[-103.24976031615944,21.081873179831177],[-103.24895304530713,21.081721503242704],[-103.24881740906721,21.081881568924132],[-103.24851991219282,21.082460691116637],[-103.24727815875724,21.0828745760831],[-103.2454291217665,21.082843789743777],[-103.24509847444341,21.0834116729813],[-103.24425256802226,21.083797898645685],[-103.24254491255954,21.083589546616054],[-103.24239361827813,21.08216725698759],[-103.239429951006,21.079730335171064],[-103.23778644821118,21.078618080443107],[-103.23420232717035,21.078987159897167],[-103.23258605880773,21.079094427329665],[-103.23161731850206,21.079932509646596],[-103.23049007997929,21.08056579393582],[-103.22996209838072,21.081330400212778],[-103.22741498310114,21.08492395538724],[-103.22539392427018,21.08498106301039],[-103.2243922877251,21.085749187883835],[-103.2214343394794,21.086466810065417],[-103.22041970089157,21.085729105838084],[-103.21923826087908,21.088057959932883],[-103.21910321144719,21.087985704321113],[-103.2175538597985,21.088782006320912],[-103.2164269165446,21.089857116792302],[-103.21632046060392,21.090217274717304],[-103.21522658095313,21.090705494826068],[-103.21484221454153,21.090631398141397],[-103.21392890110735,21.09068989023632],[-103.2130463805197,21.090915499040136],[-103.21230750370853,21.091300937492463],[-103.21118680126443,21.09196956667256],[-103.21018927955475,21.09303972253838],[-103.20960164699949,21.094220595302374],[-103.20874109596934,21.09384163706426],[-103.20798302621063,21.092294096017497],[-103.20750138798792,21.09181136321496],[-103.20609556450921,21.092220226592588],[-103.20589796188597,21.09270122970281],[-103.20543751145732,21.092709942066108],[-103.20503087966387,21.092073063494695],[-103.20503314065616,21.090714939944405],[-103.20351995016085,21.089092794116425],[-103.20340671385117,21.08798901480276],[-103.20251293989395,21.08753767078531],[-103.20207496977997,21.08624909442949],[-103.20054381817954,21.086181177494097],[-103.20006401993163,21.086801474156346],[-103.19914284622206,21.086063091156234],[-103.19880043656553,21.085385274035445],[-103.19807893540326,21.084771147573747],[-103.19719253796939,21.08515962248464],[-103.19668640874829,21.085626539109285],[-103.19622243144931,21.085873462521874],[-103.19432043093894,21.086182268726134],[-103.19354724201202,21.085549669733723],[-103.19151283389238,21.08572196175794],[-103.19124971902693,21.08611942381748],[-103.18956720971721,21.08549888528239],[-103.18889243487604,21.085171001033245],[-103.1882910265511,21.084894858620146],[-103.18864314888054,21.08405006238877],[-103.18901683475826,21.083606185535416],[-103.18911174600021,21.08297484245719],[-103.18925520570451,21.080849119814445],[-103.19170597004461,21.079935900269845],[-103.19159927947891,21.07910585342546],[-103.19101832046601,21.07900237512075],[-103.18905119826832,21.077830678644943],[-103.18813939229682,21.07544634240128],[-103.18719833671275,21.07496185998798],[-103.1885663033944,21.071496008465033],[-103.18840715437545,21.070863606859632],[-103.18802837500954,21.07058899203173],[-103.18752431628758,21.071037505776985],[-103.1851758327586,21.071561127104587],[-103.1834433740118,21.071939306010904],[-103.18241354326983,21.07395793979532],[-103.18144377690754,21.07448988312433],[-103.18007640205309,21.07460598602586],[-103.17961931095209,21.073305384316484],[-103.17912105648242,21.072138276917485],[-103.17617250897405,21.072111244531584],[-103.17548715819026,21.07236849133926],[-103.17529594787692,21.072441442254956],[-103.17523729755169,21.07246381857334],[-103.17442431412923,21.07156966698699],[-103.17425145955593,21.071656718929717],[-103.17021742568613,21.07243782092968],[-103.1682330234554,21.07109161657513],[-103.16614700264802,21.06920592860081],[-103.16454173629324,21.070111983048093],[-103.16227249316199,21.070058489213523],[-103.16288175295784,21.072885651089507],[-103.15971702110846,21.07077927723833],[-103.15702837956007,21.07011718049131],[-103.15534990203508,21.069841918587883],[-103.15210045185086,21.06899676441833],[-103.15008062712923,21.06505697121338],[-103.1495409291449,21.064882182061183],[-103.14666728154612,21.0654927401618],[-103.14571747556369,21.064290391779878],[-103.14320400536184,21.06574280326265],[-103.1422034017786,21.063602749260042],[-103.14156285057538,21.06139625549173],[-103.13844188778052,21.05915617321523],[-103.13604224120377,21.059617301633693],[-103.13315045565639,21.057797585470382],[-103.13274543629018,21.056565895929225],[-103.13228514974406,21.055321777959705],[-103.13231430588877,21.054814003163813],[-103.13095723855406,21.053958830263298],[-103.13006091409409,21.053459175491355],[-103.12732907522218,21.053531075261958],[-103.12623477276162,21.05443558293939],[-103.12318361003122,21.059216970874786],[-103.12148773878613,21.06240961482041],[-103.12201678143464,21.063593368783756],[-103.12337679625824,21.065007048832285],[-103.12444711319546,21.06568929768582],[-103.12402139864776,21.066420020277405],[-103.12332315009365,21.066803901064134],[-103.12121570911677,21.066886566015114],[-103.12053311660196,21.067102074479692],[-103.11832078238615,21.06749028915948],[-103.11762166454713,21.06746274058321],[-103.11557403663414,21.067664614873138],[-103.11380919194056,21.066644946700137],[-103.1129726666581,21.065780911887884],[-103.11231219051393,21.065676711257197],[-103.111319460429,21.065984392158953],[-103.10684288270807,21.064683111123145],[-103.1061481665987,21.063541524646382],[-103.10548815731079,21.06215330469621],[-103.10314041635223,21.062880711898913],[-103.10111062042347,21.063885607741895],[-103.09969172648772,21.064088729646812],[-103.09764335149276,21.06478849262254],[-103.09676435995846,21.064867391122903],[-103.09180011222173,21.064794065474985],[-103.08883040381579,21.06557777482817],[-103.08842456713074,21.065741810290206],[-103.08475408241634,21.069680322872216],[-103.08374010311815,21.07100768627913],[-103.08284641675323,21.07190955962386],[-103.07974158684806,21.07228992785747],[-103.07815060066667,21.073398128057704],[-103.07680428847783,21.073033250164656],[-103.07463864081654,21.074308238695778],[-103.07538911237475,21.075720620817606],[-103.07491632077307,21.076075656636647],[-103.07466272523129,21.076158887587155],[-103.07359277617337,21.077943903911432],[-103.07278055669497,21.07844266108566],[-103.07236593202003,21.078825424223453],[-103.07145429406546,21.079182668090482],[-103.07111400146914,21.07921809552073],[-103.07001159211535,21.08029489458147],[-103.06940880976208,21.080855756077938],[-103.06920071627025,21.081101849575134],[-103.06897641655917,21.081594629598328],[-103.06913503061804,21.082330853989106],[-103.06862125752855,21.082986105415046],[-103.06831267346064,21.08385637766537],[-103.06822370238348,21.084382949410497],[-103.06659741214781,21.086255319936527],[-103.06554275094607,21.08668792239706],[-103.06496191887163,21.086986443410808],[-103.06477340200598,21.08879733726593],[-103.06478875698298,21.090041954908145],[-103.06455277582768,21.090794845455378],[-103.06224435824055,21.091533606768337],[-103.06019211006628,21.092766387081156],[-103.05965541765244,21.09333976385551],[-103.05744085324164,21.096256227804588],[-103.05739292240821,21.09771125821294],[-103.0569731019657,21.099804627249455],[-103.05911621545954,21.09892594087495],[-103.06326622186208,21.100588633954146],[-103.06321729686664,21.10390813906423],[-103.06520680700976,21.104330221864416],[-103.0666855777913,21.09956461664092],[-103.06788587846796,21.09940158610624],[-103.07017045631653,21.099099688141848],[-103.07126855646442,21.09903048817324],[-103.07145746974578,21.098844991579142],[-103.0732998883467,21.097631777958895],[-103.0735801359121,21.097166466928854],[-103.07507774070785,21.0967656588287],[-103.07626742629577,21.097373017754876],[-103.0758548475485,21.09904871568625],[-103.07607240617682,21.100260282212275],[-103.07619317314925,21.100773420782673],[-103.07540559973637,21.101125146545655],[-103.07701885296319,21.101964138154642],[-103.07652936392367,21.102879766752153],[-103.07412955364555,21.110152504930397],[-103.07645283166016,21.109816844336137],[-103.08062587118138,21.110867094364437],[-103.08370764087067,21.111087374397584],[-103.08446561689323,21.110844319620753],[-103.08551103054685,21.11275033703805],[-103.08429270010657,21.114115949177688],[-103.08502575959693,21.114728971368038],[-103.08650055694517,21.11475799345925],[-103.08830223134152,21.116014067287665],[-103.0895895059931,21.116755281215205],[-103.09036079339717,21.116230772017047],[-103.09103096790255,21.11540120127762],[-103.0921434240314,21.116286096514727],[-103.09210653393791,21.11769821015372],[-103.0931842555081,21.121208340782175],[-103.09379909854187,21.12132561451267],[-103.09403125016007,21.122306520957068],[-103.09460801715102,21.122669891684552],[-103.09489479271389,21.122853846934504],[-103.09527828313747,21.123038923401168],[-103.0952116930801,21.123508462933955],[-103.09550855471304,21.1241363748166],[-103.09579389840798,21.124528900563803],[-103.09596570668344,21.125149468752852],[-103.0962834300883,21.125541761686236],[-103.09637360934465,21.12575470208634],[-103.09693656513417,21.12612898129646],[-103.09706281879085,21.126400609180337],[-103.09686714756805,21.127310178263883],[-103.09746983117986,21.127327531374476],[-103.0976798261841,21.1274615557046],[-103.09771731099687,21.128033703424705],[-103.0981946367989,21.128219914127385],[-103.09859563719425,21.13071886525381],[-103.09861506426745,21.13117152878783],[-103.09593956175104,21.13158015492553],[-103.09562793495269,21.133026407535112],[-103.09442492674356,21.133433984981593],[-103.09170723107036,21.135067480366217],[-103.0841359053552,21.137211260077322],[-103.08067420490397,21.138349555673244],[-103.0794989632625,21.139166473815237],[-103.07782352020183,21.140363033906283],[-103.0767461927017,21.141705368946532],[-103.07531379481327,21.144129968619552],[-103.07517915186116,21.144854999291],[-103.07535317983064,21.145302017652853],[-103.07514312083617,21.146223213950066],[-103.07499024580477,21.147016784726475],[-103.07445322987962,21.147910694427367],[-103.07346812697398,21.148805040583625],[-103.07300558722454,21.149281924632135],[-103.07133397366374,21.153383194141725],[-103.07539593780513,21.15936425002269],[-103.0769416103285,21.162176736734864],[-103.07627078875709,21.16594387933219],[-103.07569222107088,21.166174797107374],[-103.07599019763074,21.168144872687208],[-103.0763831916305,21.168506451881],[-103.07761794836381,21.169037649242682],[-103.07864450757705,21.170317538955658],[-103.07859254546355,21.172350907773478],[-103.08109699484669,21.175822132622386],[-103.08122001733301,21.178128757867512],[-103.08204488140143,21.180248035415275],[-103.08367879895025,21.18358064419442],[-103.08415620654335,21.185690149611332],[-103.08395840854905,21.188398315479617],[-103.08386843302128,21.189599440132667],[-103.08433082633576,21.19217880520074],[-103.08419594697779,21.192537997368277],[-103.08385046836912,21.195414648189114],[-103.08358960458992,21.19584384625074],[-103.08303580197276,21.196538618751617],[-103.0817766715395,21.197362131334557],[-103.0809708032013,21.198301979503583],[-103.0804417885563,21.198760422448515],[-103.07999338145606,21.19862372813651],[-103.07906304598305,21.198443370461575],[-103.0789777596105,21.19900928394668],[-103.07913558671521,21.201199064977345],[-103.07879975648166,21.202294901233188],[-103.07755150540493,21.202649911924482],[-103.07686137728797,21.203831626451233],[-103.07637859195489,21.203960247019097],[-103.07494168810149,21.205209736276572],[-103.07464138704165,21.205374821682938],[-103.0735509783201,21.205487044601853],[-103.07236926370479,21.204903194614474],[-103.07191323154228,21.206091196013972],[-103.07110397686586,21.20720701505752],[-103.07061985244167,21.207630266322667],[-103.07019177030082,21.208536012648267],[-103.06999129793189,21.208847067069428],[-103.06941960521107,21.209651864604325],[-103.06998046540127,21.210630119536177],[-103.07108184919241,21.211015484586085],[-103.07421568271423,21.21143934424083],[-103.0757510387541,21.211636455450503],[-103.07708770612174,21.212156401973118],[-103.07784715098501,21.212977702086732],[-103.07793302855595,21.213791951208748],[-103.07761447145151,21.21473518083951],[-103.07752826605758,21.215449920704998],[-103.07685811102112,21.21609743291293],[-103.07623310918314,21.216568803968528],[-103.07526972675026,21.217582409279714],[-103.07417109022595,21.218335116733783],[-103.07361785971352,21.220556207215452],[-103.07332995967568,21.222314981718682],[-103.07326973903668,21.223015021151866],[-103.0727871502259,21.22439041871837],[-103.07239343399715,21.225018389151046],[-103.07212698449734,21.225586484714654],[-103.07141069772081,21.226542476248255],[-103.07080976046774,21.228251721343213],[-103.07049867500768,21.230144050824606],[-103.0701961397125,21.231044512483436],[-103.06921551632593,21.23247783353554],[-103.0669421393539,21.236877457555124],[-103.06448799110751,21.239857290204895],[-103.05956177925282,21.244199034121095],[-103.05764790343329,21.24612966903902],[-103.05697907551445,21.24723953727738],[-103.05706974528897,21.24769171689752],[-103.05746797702386,21.24872796913229],[-103.0607892089393,21.250714929497633],[-103.06164950200684,21.251176287819646],[-103.06206691076613,21.251080832839534],[-103.06272458590706,21.251624352975625],[-103.06346502277802,21.252473099073597],[-103.06359074732308,21.253437730812323],[-103.06393504843675,21.253766548951262],[-103.0646189977191,21.254569404473273],[-103.06522806576356,21.255083308121584],[-103.0653081049731,21.25577784339322],[-103.06406191287135,21.25548615600269],[-103.06304816346284,21.255454183840698],[-103.06073229168305,21.257609982641327],[-103.0588856213489,21.25949208668834],[-103.05530821556448,21.26090336293464],[-103.0527583020916,21.2626214618914],[-103.05132030508827,21.26256510711596],[-103.04956945797511,21.263354799534795],[-103.04416890856334,21.26212461751885],[-103.04340516857928,21.26035252188933],[-103.04774230141624,21.255594664175817],[-103.04710295802334,21.254885353430723],[-103.04638399390365,21.25419959384294],[-103.04592621847746,21.253942595694696],[-103.04603491718501,21.253268186354205],[-103.04621496296454,21.252530641689418],[-103.0463375815196,21.25232970359656],[-103.04650949512967,21.250876322447255],[-103.0455369816313,21.24919094923098],[-103.04506914381307,21.249185151020356],[-103.04315995630941,21.249506772377288],[-103.04072511457684,21.249704984552523],[-103.04005638665757,21.24795623997761],[-103.03887580981876,21.249635742018825],[-103.03702339898945,21.249167373699777],[-103.03557785190429,21.250373154905674],[-103.03361331485115,21.25068044711105],[-103.03084557111919,21.251141946511552],[-103.0304810780321,21.250314105913674],[-103.02946613104876,21.247338228178364],[-103.027281902737,21.245238610592935],[-103.02682357844941,21.2428923671431],[-103.02650489738994,21.242124103695062],[-103.02318374887614,21.241736971482567],[-103.02153725125203,21.24164372944267],[-103.02046779120269,21.24154018834804],[-103.01701354557991,21.2410485411188],[-103.0116289916811,21.24600215097604],[-103.01122817979387,21.24716497479352],[-103.01124748982528,21.24934211316821],[-103.01093649291477,21.25094496109989],[-103.0106019668454,21.251266204301373],[-103.01060538080958,21.251720385734075],[-103.01061007221585,21.252344508639112],[-103.01080943381027,21.253756575762054],[-103.01101772495622,21.25452794304482],[-103.0114114005072,21.25505447667541],[-103.01071270832728,21.255791961154898],[-103.00834383163726,21.256291440340192],[-103.00727490787494,21.25620024997386],[-103.00701767747319,21.256836306826017],[-103.00686210878831,21.25696077869935],[-103.00634815754131,21.25699556846223],[-103.0048836308668,21.257557161264003],[-103.0012343450984,21.259050842051806],[-102.99949511146599,21.259482354552745],[-102.99840261018261,21.2596248626553],[-102.9977499576114,21.25967641792397],[-102.99719105054714,21.259680061803977],[-102.99666229826215,21.259551313173745],[-102.99605862799496,21.259225108328565],[-102.99497873616002,21.258907599959457],[-102.99444090395889,21.258498945719793],[-102.99292979199652,21.257313619994193],[-102.99264145049119,21.257179750647992],[-102.99205548388386,21.256544910440255],[-102.9914620754767,21.255405819411067],[-102.99097496286043,21.256048518399325],[-102.9907224243131,21.25666785497583],[-102.99011881486177,21.256671762565816],[-102.98950402809294,21.256675740066328],[-102.98904531310978,21.255935371122177],[-102.98817841245796,21.254876718036087],[-102.98825617978514,21.252796867440907],[-102.98825262170044,21.252312811043282],[-102.98794502410641,21.25149151345437],[-102.98634546844517,21.249137463801958],[-102.9852524994946,21.24862977099167],[-102.9851839569568,21.248556092153365],[-102.98431950467887,21.248502304910403],[-102.98384529503744,21.248670822747954],[-102.98232614919323,21.247418811076557],[-102.97974583162818,21.24572035778192],[-102.9801267142958,21.242894256924217],[-102.97971362530541,21.242770834591795],[-102.97892957937574,21.243689855514106],[-102.97879753903857,21.2428850579891],[-102.97959694591424,21.241223146496054],[-102.97904886890103,21.23973107137465],[-102.97610668871602,21.24006111826793],[-102.97578815226296,21.239219250483586],[-102.9740674415084,21.240145624953527],[-102.97337139727796,21.240441590231057],[-102.97278499910527,21.240169544624393],[-102.97227034162847,21.241037507675514],[-102.97171627553172,21.241216405308023],[-102.97113390571349,21.24099020611834],[-102.97064466786111,21.241221417065447],[-102.96989299410046,21.240443178063288],[-102.96962103359613,21.24071082895034],[-102.96803888638624,21.241726241992524],[-102.96752855639653,21.24108286087312],[-102.9676092076088,21.24058242453492],[-102.96707306090843,21.23984220057099],[-102.96657037593826,21.2401747093092],[-102.96649215840614,21.240713303442078],[-102.96575225250206,21.240022484919507],[-102.96516157805786,21.239858369855938],[-102.96450424310768,21.2401007863906],[-102.96475075890191,21.23980205727611],[-102.96538161846962,21.2387517158175],[-102.96549404252022,21.237761013050715],[-102.96406769811665,21.23576098690353],[-102.96264274460066,21.234927878274675],[-102.9617234509642,21.235033079603397],[-102.96096387560124,21.235523207716426],[-102.95928074948495,21.234969503961224],[-102.95925705298055,21.23427892112869],[-102.95881141522062,21.233759544274847],[-102.95793557954994,21.234447063517962],[-102.9570674620914,21.234452497485563],[-102.9562007011279,21.233850346634085],[-102.95554259648708,21.233018620704513],[-102.95475503020384,21.233606863193017],[-102.95190052799074,21.231635852199815],[-102.95102776660741,21.232076839722936],[-102.95034016282085,21.23297219427843],[-102.95186307958289,21.234082454431245],[-102.94887265440065,21.234579262539455],[-102.94736002414345,21.2347183746233],[-102.94655821335982,21.234577254553358],[-102.94621043717461,21.234323045580027],[-102.94642067381767,21.234108909449333],[-102.94670028083857,21.23421842270784],[-102.9479706596494,21.234137080565972],[-102.94830567086501,21.23331268841531],[-102.94654951244132,21.23186265787632],[-102.94661326917634,21.231219639708343],[-102.94630060649928,21.230256414721453],[-102.94666119205976,21.22975739392666],[-102.94706497831538,21.23012471591761],[-102.94748505082401,21.228917670270675],[-102.94769862299682,21.22918238723463],[-102.9480946240393,21.22960844519082],[-102.94823177579599,21.228557933556317],[-102.94963519110973,21.226832353355974],[-102.94854934357198,21.22532830167563],[-102.9494150550774,21.222620340417052],[-102.94935901268178,21.221987740187046],[-102.94931173268918,21.22107711624102],[-102.94930735145789,21.2204564872809],[-102.94917700044755,21.220254373389764],[-102.94895765358189,21.219418941170204],[-102.94824696919568,21.21880693465056],[-102.9477486567705,21.21696138803975],[-102.94774210931735,21.216934626427985],[-102.94767195040879,21.2163240989438],[-102.94794531926078,21.214739882341235],[-102.94178847121162,21.213545149234164],[-102.93819800286838,21.212923468807162],[-102.93464831359614,21.21231266573045],[-102.92146368640641,21.209990887391427],[-102.91675777623516,21.208178817230817],[-102.91065217240669,21.205234661780025],[-102.9091524511444,21.20739774971247],[-102.90944899910897,21.209324211900082],[-102.91036028583994,21.21121184703503],[-102.90998081855747,21.212126174509194],[-102.90909893443683,21.21408198647265],[-102.9091936790598,21.21471377198509],[-102.90917547340075,21.21652879958259],[-102.9094889710259,21.216665768631174],[-102.90947760004838,21.21814440354325],[-102.90906881298508,21.21821530158502],[-102.90830095710396,21.219565821478113],[-102.90965470878183,21.220538151512187],[-102.90976603368188,21.22063765541543],[-102.90934164718146,21.22133387533961],[-102.9078950687558,21.222558489900848],[-102.90705470466975,21.22233563847908],[-102.9066218760671,21.222342056485843],[-102.90631589282754,21.223511938099136],[-102.9052006740252,21.223657365647682],[-102.90586428358324,21.22447827109852],[-102.90547346694854,21.22507729592064],[-102.90461225427055,21.22466154212799],[-102.90393097527692,21.225242182095542],[-102.90420276948475,21.22608332686235],[-102.90325308266648,21.227784886595487],[-102.90328099833317,21.228215198124985],[-102.90282068438461,21.228145084003756],[-102.90271642358027,21.229135559234805],[-102.90289380452958,21.230041015969846],[-102.90278662454335,21.230942708239127],[-102.9036940961563,21.233750702360055],[-102.90338624204469,21.23414337964988],[-102.90321646249384,21.234383023590283],[-102.9032452547965,21.234761727000773],[-102.90119496345278,21.236792155592468],[-102.89869397850981,21.237507005850375],[-102.89664940190119,21.235832557742185],[-102.89587760052501,21.235914209989687],[-102.89539593220906,21.235817214604253],[-102.89540090023831,21.23554586874951],[-102.89492287689495,21.235269182641673],[-102.8947275889173,21.235447270703503],[-102.89424422657953,21.2355317643989],[-102.89234782045884,21.233431288281622],[-102.89167378377567,21.23351325633473],[-102.8911783884327,21.23440994498202],[-102.89107186541128,21.235131051709914],[-102.89162759013243,21.236763880861304],[-102.89132517046028,21.237572334848608],[-102.88836146055081,21.23609052647464],[-102.88604869753317,21.236152033102144],[-102.88575220703632,21.2366900318313],[-102.88555921669064,21.236778260944334],[-102.88505400533779,21.23839729013099],[-102.88341317327007,21.238647239666534],[-102.88349423698082,21.23964220609173],[-102.8837571834365,21.241361148003364],[-102.88346297965063,21.2418083889051],[-102.88232468649824,21.24062079860255],[-102.88165979434058,21.239889625297337],[-102.88079481471334,21.239788440502423],[-102.88022135206461,21.239419700992926],[-102.88051711750694,21.239062292079097],[-102.88100432118,21.238526834331935],[-102.8808197638993,21.237982540872054],[-102.87832376724458,21.23740979546983],[-102.8761101155564,21.237089468725344],[-102.87541764172425,21.238959984586643],[-102.87528004758275,21.241158532178986],[-102.87473041010367,21.242665265036237],[-102.87390607397407,21.243904971066513],[-102.87346678034544,21.2451179751734],[-102.87214361068499,21.246755247788315],[-102.87145951436042,21.249360717911884],[-102.8730573702286,21.25138150771585],[-102.87348034871485,21.25286817223497],[-102.8724026713341,21.255354307512334],[-102.8699930719738,21.25535738627235],[-102.86851159898862,21.254943605431265],[-102.86836310413071,21.252934507727787],[-102.86801396693875,21.252831228106515],[-102.86680400496192,21.254783601700694],[-102.86613061828314,21.25468487669758],[-102.86528452271381,21.253319456708937],[-102.8651007885938,21.25259546578269],[-102.86334453207837,21.254197912320308],[-102.8633241929233,21.255552809180415],[-102.86274315400749,21.255816517298513],[-102.86207480116337,21.25544642650567],[-102.86111156848204,21.25543370266007],[-102.86099672702375,21.25669748213079],[-102.86355416917957,21.259709328609176],[-102.86353750559925,21.260882723838677],[-102.86296772909736,21.261925362048373],[-102.86185683092481,21.262964580853634],[-102.86065994777675,21.264129875411186],[-102.85907169138608,21.26612388491077],[-102.85902092177054,21.26705606941846],[-102.86004712130745,21.268248739914156],[-102.8579466604208,21.270877111753805],[-102.85217485210109,21.274147646273263],[-102.85199621810415,21.27546350576307],[-102.84689723792519,21.27669071499082],[-102.84482945169191,21.277326844199365],[-102.84507153116164,21.277682370859395],[-102.84680143362726,21.28016770827594],[-102.85078826245808,21.281390289577757],[-102.84973128084516,21.29020953215894],[-102.84932502107222,21.29168085370958],[-102.84875487767039,21.293242284218422],[-102.84819023327839,21.293378042422376],[-102.84705190781006,21.293749480854558],[-102.84629292452672,21.293986709468925],[-102.84561721934978,21.294068366006627],[-102.84497385450544,21.294238356401877],[-102.84420290444052,21.29411258335051],[-102.84396671228842,21.294510658053184],[-102.84364374943499,21.29539993438891],[-102.84323951913768,21.296568761760682],[-102.84207951262863,21.29776155482358],[-102.84129038235335,21.297915632225454],[-102.84006507047377,21.29815125248922],[-102.83975151906276,21.30157660737217],[-102.83715574722129,21.303449316052195],[-102.83317791310827,21.30111513943382],[-102.83284322089594,21.30087477995852],[-102.83192064676632,21.300309807790086],[-102.82536081041724,21.29831930127193],[-102.82330498258608,21.29760012733675],[-102.82210960977989,21.297093109933428],[-102.82191753342278,21.296996874622153],[-102.82062510749711,21.296455674511094],[-102.81948801980218,21.29608661748796],[-102.81668908563785,21.2949114667926],[-102.81622097200801,21.295858818209467],[-102.81589638661444,21.29693618417906],[-102.81630174398458,21.297659731201918],[-102.81722410782095,21.29838481642753],[-102.8175962808391,21.30321286309629],[-102.8179935583604,21.305000516353573],[-102.81787987105645,21.306173002286755],[-102.81805789345088,21.30716866336212],[-102.81717474726617,21.308240858914928],[-102.81632047008225,21.31013247582922],[-102.81608177375028,21.31111976963399],[-102.81628254879132,21.312471637227873],[-102.81689983824947,21.313384698839968],[-102.81755936135937,21.315386824386223],[-102.81761714541756,21.316287551564756],[-102.8175176941964,21.317636987873186],[-102.81570300396498,21.318829176318786],[-102.81196378799933,21.323716819894514],[-102.80773383076303,21.322722972184067],[-102.80725514192386,21.320972584840035],[-102.80573722202087,21.320235387398952],[-102.80279601683401,21.31509935228337],[-102.80084081785446,21.31145960717612],[-102.79849937617445,21.306913780099364],[-102.79625076983939,21.313363140226215],[-102.79137074044564,21.327954323128495],[-102.78978986846715,21.32871166069998],[-102.7867973787624,21.32996392208986],[-102.78371298353039,21.32952340298334],[-102.78041923152165,21.3262883553669],[-102.77921726394925,21.32398837940451],[-102.77847748885375,21.322930774509075],[-102.77808215715368,21.322524595608115],[-102.77590762142052,21.31895991180113],[-102.77551637812462,21.318639864841884],[-102.77485397176758,21.31757176776955],[-102.7739347968074,21.316762125147818],[-102.77096389613632,21.31589433563755],[-102.76752103429936,21.318414801557424],[-102.76453715855575,21.319032214956053],[-102.76202811401214,21.31918657191511],[-102.75875621163857,21.320474909904647],[-102.75528087705231,21.323158593789003],[-102.75701659054084,21.326124848861298],[-102.75846598348153,21.326952808351052],[-102.75871492141658,21.327209014192135],[-102.7580552812907,21.32849301739867],[-102.75515720807238,21.331904751240245],[-102.75525580908783,21.333420998141094],[-102.75900367891296,21.335562081898672],[-102.75867500127958,21.336976779376016],[-102.7577654306969,21.339186183191828],[-102.75466215576427,21.342098696212645],[-102.75324626887385,21.343036378237116],[-102.752821265872,21.34365049187602],[-102.75010661562891,21.346005987378817],[-102.74818199580164,21.345799588317277],[-102.74633306892099,21.345210479963157],[-102.74575468763777,21.345533528566477],[-102.74484676268247,21.34622500925252],[-102.74440176160186,21.34689458436253],[-102.7439563304149,21.346747253135675],[-102.74266659263355,21.346426259183033],[-102.74208688658734,21.346323894818056],[-102.7416727781432,21.346465803921205],[-102.74045867933148,21.346598855423792],[-102.73915956951299,21.347841620940756],[-102.7383195480582,21.349372539928652],[-102.7367231849708,21.351334482786058],[-102.73591417706331,21.352076189386025],[-102.73489504500651,21.352976580568225],[-102.73385407479117,21.35336828671683],[-102.73233531128807,21.35431761284599],[-102.73078195881601,21.35531780146505],[-102.7300663290992,21.355951905390498],[-102.72850547520915,21.356662050297302],[-102.72785732754784,21.35744544512488],[-102.72794256186717,21.3581689998569],[-102.72820940841558,21.35961741388013],[-102.72839380652164,21.36016171029712],[-102.72866901360896,21.361068435780965],[-102.72885063011381,21.361793295027212],[-102.7291369795571,21.361977770117846],[-102.73035306011093,21.36319034735328],[-102.73060756861702,21.365216996078573],[-102.73204405111426,21.367254495083273],[-102.73210849928637,21.367395506580692],[-102.73259406435221,21.36891337034092],[-102.73265985696918,21.36916319287087],[-102.73204191842058,21.370164647855574],[-102.73180260291974,21.370411738119742],[-102.73120899391955,21.37139701357455],[-102.73069146133201,21.37202413151664],[-102.72971738247526,21.373949526832916],[-102.72941092659823,21.377596417657458],[-102.72945346012887,21.378958467105576],[-102.72926905552146,21.383717316876186],[-102.72912806646798,21.387355540720364],[-102.7265312120594,21.387136165205618],[-102.72429059133549,21.386425324510355],[-102.72274228894344,21.385076488561253],[-102.7221404232505,21.384277283687936],[-102.72055071954662,21.381095197243155],[-102.71887536778183,21.380782906172954],[-102.71668508976217,21.38041616849739],[-102.71640390096564,21.381006258964874],[-102.71486372372061,21.381017803286795],[-102.71382644649066,21.38019468386244],[-102.71340795424271,21.3787442203203],[-102.71220040994984,21.377653441005407],[-102.71217644497142,21.37717268044196],[-102.71171040649932,21.375382284710042],[-102.70805147801468,21.37179263499604],[-102.70406526573402,21.36494092095029],[-102.70251101419473,21.364205660235427],[-102.70235983130192,21.36370739216312],[-102.70126854129273,21.359789620457832],[-102.70022114760513,21.358263786261034],[-102.69930498902988,21.35584254121818],[-102.6999696035814,21.35482665222588],[-102.6996078279671,21.353449538208054],[-102.69960534241818,21.35316061660336],[-102.70072650190468,21.350416071527377],[-102.70011683269416,21.346956780201424],[-102.69968023481704,21.345426444416773],[-102.69947227079768,21.344511787423073],[-102.69859577537216,21.34434947617416],[-102.69837797325374,21.34368320116073],[-102.69685235292047,21.342936284440782],[-102.69568645168437,21.34175395714192],[-102.69409348541564,21.340711446526484],[-102.69265723742365,21.341437036761135],[-102.69215823465004,21.34189910132801],[-102.68933189974587,21.342312349023985],[-102.68437089430779,21.343081625805155],[-102.68309041939028,21.341045215635063],[-102.68184345160154,21.339158078253377],[-102.67777703433461,21.340890030972048],[-102.67605484910325,21.342614934004928],[-102.6746091458956,21.344348842145678],[-102.67102818589825,21.346939294804145],[-102.6693135209319,21.348443768647257],[-102.66821722323431,21.349487890443186],[-102.66616399525901,21.351452065498847],[-102.66402102460358,21.35286701703899],[-102.65917371260991,21.356251139482197],[-102.65515233280956,21.359971748228986],[-102.65239175388854,21.3625276151148],[-102.65169442019362,21.363080112494174],[-102.65054092124143,21.364056261900316],[-102.65006456520456,21.364389495389105],[-102.64889180606173,21.364527130857425],[-102.64811802146016,21.364716147630872],[-102.64705991970123,21.36472985895631],[-102.6466461028283,21.364685225746427],[-102.64508189965608,21.36496823501045],[-102.64442286186318,21.365782011909346],[-102.64382101640581,21.36640894666266],[-102.6428782570589,21.36701886863284],[-102.64243679754293,21.367737602786974],[-102.64188618108716,21.37712091177883],[-102.64172501563866,21.378831429972934],[-102.64145561288137,21.379914033005093],[-102.64089894296518,21.382251053418713],[-102.64147146522356,21.38262029005267],[-102.64150906034081,21.386513873047363],[-102.64282359786455,21.388065410646732],[-102.63927428893811,21.3899501230768],[-102.63826225655447,21.39184123619725],[-102.6392052756483,21.393945020055696],[-102.64156982162075,21.39336033504719],[-102.64345088070701,21.39290871862238],[-102.64683967673596,21.394224579875072],[-102.64752518719735,21.397339233535376],[-102.64925420163502,21.399993820642294],[-102.6507985531374,21.400625603069045],[-102.65234665839063,21.400769833133552],[-102.65370711696124,21.401074160467942],[-102.65590552513754,21.40314798769947],[-102.65546308946102,21.40389278034553],[-102.65461853305203,21.404965851945235],[-102.65354727014767,21.405426893500078],[-102.65224849179214,21.406587596872043],[-102.6522148420886,21.407268056831185],[-102.65244572232871,21.407786341042822],[-102.65445721117447,21.40862718114863],[-102.65532340220511,21.40872960272918],[-102.65686586131034,21.40875118373532],[-102.65811767163063,21.40885898413842],[-102.6596694692605,21.41087701577709],[-102.65759886032453,21.412467133195094],[-102.65467723612352,21.412964479853883],[-102.65430026132083,21.412417423710735],[-102.65325421945528,21.411499810698672],[-102.65228755869367,21.412935913563786],[-102.65254242929058,21.41375077912511],[-102.65431850842413,21.41789278524027],[-102.65565268052438,21.418305611643916],[-102.6563131406466,21.419217817969297],[-102.65669013829404,21.41976487117313],[-102.65667255621986,21.420866463737298],[-102.65665987954287,21.421660668232562],[-102.65704018011053,21.422938679597564],[-102.6562449714645,21.423847495668667],[-102.6557561299764,21.423905421883603],[-102.65510495437292,21.422909952812347],[-102.65389744430854,21.42152058787366],[-102.65305936744198,21.422504742164733],[-102.65427156558047,21.425425203648217],[-102.6543060230623,21.425943224369632],[-102.65264338557301,21.425625789996275],[-102.652415984904,21.427741348745087],[-102.65264958215664,21.429556321502957],[-102.6523057541907,21.430995047098634],[-102.65417717702422,21.43219054179974],[-102.6546187767317,21.432654108382565],[-102.65407661948512,21.43538480656963],[-102.65408779562955,21.436209073460986],[-102.65372509162273,21.436337818986658],[-102.65245197669691,21.43731820632439],[-102.65351833533288,21.436959207374343],[-102.65495651454609,21.438252907310527],[-102.65499404292143,21.440127361241082],[-102.6535098224519,21.44145851296929],[-102.65104653573542,21.440995625375592],[-102.65139319946087,21.443438477155496],[-102.65388006114716,21.444737510905213],[-102.65435497659439,21.445195649347454],[-102.65500686892062,21.446649522719895],[-102.65393748870736,21.447176304109064],[-102.65167338614816,21.44679841564613],[-102.65149469620968,21.448227609485116],[-102.65130932900126,21.448674452228374],[-102.65025294470485,21.448388729576436],[-102.64814308678206,21.44763671409919],[-102.64449867161278,21.449810628787816],[-102.64248345572787,21.451710630534137],[-102.63894941453094,21.455543467795394],[-102.63864120493832,21.456712951513623],[-102.63842651447737,21.45806434495165],[-102.63832280477493,21.45851435523531],[-102.6368689988845,21.45894529020353],[-102.63683987905591,21.460750776989016],[-102.63612986582825,21.462907816966435],[-102.63696304353562,21.4647286093537],[-102.63964838097257,21.463697548757125],[-102.64315433905682,21.461163244728482],[-102.64646906726057,21.46178955159172],[-102.6471397831238,21.46206987796097],[-102.6478829787012,21.462537491528906],[-102.64820945336766,21.463492630096596],[-102.64899137101105,21.46735330659402],[-102.64941890768398,21.470318823364494],[-102.64944843602802,21.472286196420782],[-102.64927029181894,21.473567367703822],[-102.64701383604017,21.47453712028232],[-102.64504907272743,21.47583699477798],[-102.64390327589916,21.475954555338717],[-102.64326243906169,21.475789521655656],[-102.64220288309224,21.47646533374268],[-102.64252317317505,21.47729432367504],[-102.64251497116925,21.47794898734088],[-102.64234796896721,21.47864075965532],[-102.64232275650272,21.4786614359885],[-102.63890668491376,21.481262249405233],[-102.6390919881315,21.47762711332348],[-102.63911145454796,21.47700565502265],[-102.63666771620836,21.477116450416474],[-102.6343090025236,21.481523437263604],[-102.63626648594061,21.481827941926156],[-102.638110909195,21.482689431869176],[-102.63756449302753,21.483900788123208],[-102.6368366464352,21.48485944330423],[-102.63575233329937,21.48628881447911],[-102.6353548490489,21.48700554487607],[-102.63485360989682,21.488172277673186],[-102.63424860769828,21.489789011110815],[-102.63337174656351,21.490318355106467],[-102.63258549160071,21.491210156100067],[-102.6333177060796,21.493658484348487],[-102.6331067262995,21.494404478955516],[-102.63217836270752,21.49690073830709],[-102.62484151108742,21.501411485283597],[-102.62594997782867,21.50296128353881],[-102.62833981703244,21.506255826338474],[-102.6321560043171,21.51043504800265],[-102.6358844596192,21.51392080444316],[-102.6374090279449,21.515116225130896],[-102.64203532689328,21.518621186362566],[-102.6420800779564,21.51867291361333],[-102.6416109441011,21.519422581826348],[-102.64028002711672,21.521569828235783],[-102.63782850198191,21.524052242917776],[-102.63559570178751,21.525561347577707],[-102.63432986614748,21.526285297352672],[-102.63121843057536,21.527938760293978],[-102.6306864922467,21.531288920028146],[-102.63083959796785,21.533443064223775],[-102.63073432225383,21.533983332167224],[-102.63746925147251,21.535252720426627],[-102.64363706337895,21.535791474217035],[-102.64518667379548,21.535452188787247],[-102.64663396989488,21.53547262310917],[-102.64769823130837,21.53530705184778],[-102.64914552858914,21.53532746424986],[-102.64953583614687,21.535062082381387],[-102.65031644713508,21.534531315490312],[-102.65243623920605,21.534741764425576],[-102.65348888203334,21.535298351621634],[-102.65377689137807,21.535392699682916],[-102.65483824781421,21.53540763138716],[-102.65532068286126,21.535414416296646],[-102.65696820935551,21.534986100393894],[-102.65956854789039,21.533647715064944],[-102.66025889675046,21.534400242191793],[-102.66128678640496,21.53551310866203],[-102.6618483013309,21.536073823514016],[-102.66518956235319,21.539887091903097],[-102.66751680506036,21.539837480002348],[-102.67000401466385,21.540586521651335],[-102.6729808564674,21.541531061317016],[-102.67413300829719,21.541908324694873],[-102.68182518882367,21.543731104855453],[-102.68317324324954,21.543930440323265],[-102.68454279362078,21.542775617382347],[-102.68572068370253,21.542363188223078],[-102.68761343251185,21.54390180151887],[-102.68933461296012,21.54491893348188],[-102.6917755728947,21.54314681976814],[-102.69303999600817,21.542532246330495],[-102.69389845689705,21.54317620297013],[-102.69525794141339,21.54265322404916],[-102.69641017521462,21.54303033921616],[-102.69688124892951,21.54375922463271],[-102.6970286355891,21.546650764775677],[-102.69747264588909,21.54909491811054],[-102.69715918446866,21.55060871252357],[-102.69634413651926,21.553323276933952],[-102.69565578542313,21.554126430481745],[-102.69573088801587,21.55548192178975],[-102.69504109520403,21.5563753484559],[-102.69443352126558,21.558172876951915],[-102.6929187987713,21.562395850536745],[-102.69269863042365,21.564108436830168],[-102.69345641164358,21.565021898992768],[-102.6942056316355,21.566477019822287],[-102.69474756058253,21.56883223565336],[-102.6951064739485,21.5705528405951],[-102.69523500138234,21.571274583906074],[-102.6960253615585,21.572583114843383],[-102.69642482580781,21.5726479084899],[-102.69883055996968,21.573132657758208],[-102.69958677749435,21.573113992894946],[-102.70210860464812,21.572957429940857],[-102.70317943431235,21.572831517128066],[-102.70404949296466,21.572753219615947],[-102.70501037741622,21.573037357505882],[-102.706027409792,21.572781548171804],[-102.70695371364792,21.57248808986884],[-102.70890991098321,21.57182611317188],[-102.71023072947867,21.5725674456084],[-102.71099859715292,21.572848895529546],[-102.71248151783732,21.572640678359107],[-102.7132382970641,21.571615505257512],[-102.71500501198449,21.571296109584182],[-102.71632819395569,21.571567613045886],[-102.71795622481318,21.572402612305325],[-102.71761161525416,21.57522441419752],[-102.71953480848964,21.576397341487564],[-102.72155887477419,21.57660565003755],[-102.72193224180342,21.577423440106088],[-102.72234282930953,21.582034248364153],[-102.72462551125324,21.58423261849896],[-102.72391173522476,21.58666090133545],[-102.7254067726364,21.589841768675456],[-102.72800874856188,21.591177936838278],[-102.72950818362375,21.593058213945596],[-102.73182631855303,21.5929995334281],[-102.73279554547725,21.591790580930706],[-102.73525769212887,21.591120233826985],[-102.7354797096757,21.590724980014727],[-102.73700025161003,21.58774816812496],[-102.73740499517999,21.58676019987763],[-102.74061453511081,21.587849415921596],[-102.74523315425046,21.589500814987957],[-102.75131365278094,21.59161378459828],[-102.75874466875786,21.594267307592133],[-102.75923332285498,21.594147997472874],[-102.76025234026577,21.593619317460707],[-102.76082310970645,21.594026963751162],[-102.76379351025065,21.595753706796756],[-102.76459436148036,21.596874395204793],[-102.76493238611408,21.597930010647474],[-102.76529489058902,21.599156143398545],[-102.76600080243225,21.59960227773729],[-102.76646824085219,21.60060185115333],[-102.7675920568634,21.602874430251006],[-102.7683519052722,21.603697324748794],[-102.76823874229427,21.60477940289337],[-102.76792695192785,21.606220013708764],[-102.7675510194016,21.607774836182386],[-102.76808262447429,21.608660194342463],[-102.76893073534717,21.61002607093758],[-102.76978588034945,21.6109343413014],[-102.77093186638638,21.611768604764507],[-102.77082210783362,21.614761333758224],[-102.77192745164069,21.61611633891306],[-102.77296458608453,21.61775563243532],[-102.77379513165118,21.619570384198198],[-102.7743651030226,21.620142046960325],[-102.77520714626075,21.622661854567866],[-102.77458911335492,21.625181975405894],[-102.7745476261735,21.627890413661078],[-102.77482070072182,21.628977668057132],[-102.77757251350948,21.632174992178136],[-102.77783594654835,21.633894213507347],[-102.7771102728941,21.637135299272472],[-102.77794479655915,21.63940396044177],[-102.77871592935054,21.639504574543537],[-102.77946911294862,21.64077884372813],[-102.7794414942556,21.642584471954592],[-102.78009674987885,21.643947729958143],[-102.78037402714375,21.64476413511744],[-102.78361468700604,21.646693363842473],[-102.78215225632692,21.648490190911332],[-102.7812555147803,21.650284208482958],[-102.77900673069087,21.652060137673004],[-102.77443735473861,21.653985537412893],[-102.77345914821359,21.65478511596723],[-102.77324105605277,21.65640758109089],[-102.77340926247774,21.658035227693063],[-102.77705287874795,21.65979975691465],[-102.78149684300934,21.659768916660425],[-102.78384401981577,21.661142336714192],[-102.78587390639467,21.66185835479189],[-102.78746115076115,21.663249719051237],[-102.78865835820682,21.663607459779882],[-102.79152694564613,21.664085053476526],[-102.79302735537203,21.66399111442746],[-102.79411307960282,21.663121567282758],[-102.795197153309,21.663466492243913],[-102.7959015899209,21.664754958923936],[-102.79611057837337,21.664235142289556],[-102.7966876755475,21.664486291101866],[-102.79706165970799,21.66530396010836],[-102.79763704215759,21.665582499229515],[-102.7996104906868,21.666429945199297],[-102.80071400541323,21.666526313868758],[-102.80072446288028,21.66652970573176],[-102.80282380026006,21.66754757072033],[-102.80461652573689,21.67037062223642],[-102.80527896288135,21.671282393919796],[-102.80121682789792,21.67158981046964],[-102.79804865535658,21.67028358516268],[-102.79704163251643,21.67297922859865],[-102.79566056867571,21.674857189789805],[-102.79554750034197,21.675939290615815],[-102.79176399938945,21.676972567471523],[-102.78938092316315,21.674863924943054],[-102.78773340605329,21.675203160850515],[-102.78609553675437,21.674910410271877],[-102.7850123672369,21.676250447383552],[-102.78173864296133,21.678535433562274],[-102.77916998425326,21.679242513203917],[-102.77640032079842,21.683449474556483],[-102.77552682115424,21.683708657553325],[-102.7724302779834,21.684028287477304],[-102.7707673479959,21.68536042712867],[-102.76793411652477,21.687399189228984],[-102.7659771410099,21.688998212141314],[-102.76441905579429,21.68978989952609],[-102.76285119148275,21.691213529001743],[-102.76028239773314,21.694881084588246],[-102.75760707625022,21.699179236786165],[-102.75512759909589,21.703299389176266],[-102.75185406799119,21.708763190110062],[-102.74827919506265,21.714945191475977],[-102.74707092295523,21.7170110490012],[-102.74639291205091,21.718170254904237],[-102.74529993468309,21.720052307425362],[-102.7582303917855,21.728513565571575],[-102.76550172479824,21.73367633056239],[-102.7691335087448,21.734710118487158],[-102.77218091223216,21.73782376257617],[-102.77569696628211,21.734589402842914],[-102.77950818081388,21.739871577673057],[-102.77791540798188,21.742134611127938],[-102.78005488752154,21.743823172071984],[-102.78520485968113,21.74565340393741],[-102.78603310524187,21.748346106644988],[-102.78899155618859,21.750921138907927],[-102.79230964742732,21.75499012839674],[-102.7941540204165,21.7550366876078],[-102.79703422021248,21.757576282612717],[-102.79808612050596,21.757981274906626],[-102.79830726816789,21.75891269363933],[-102.80370411463991,21.761238658979153],[-102.80599112118415,21.763965686736867],[-102.80924930467376,21.764535179650863],[-102.80966214789015,21.76460296171689],[-102.81010441325537,21.76471501851961],[-102.81056768004589,21.764914651191248],[-102.81108574286264,21.76507578566111],[-102.81172751928432,21.765113319388206],[-102.81203060197839,21.764943237787293],[-102.81336399657715,21.76523771913861],[-102.81382797124718,21.765455771167126],[-102.81438952776341,21.7654008308711],[-102.81504345979789,21.76590094294852],[-102.81556177605091,21.766057368749728],[-102.81618925738331,21.766158311402876],[-102.81754962317717,21.76879228203046],[-102.81793646053,21.769716458862206],[-102.81825842790295,21.770313083193685],[-102.81918216615668,21.770921321438152],[-102.81926857670686,21.77116159146459],[-102.82116765677239,21.773633974568554],[-102.82090777446098,21.776635156216628],[-102.82133024084527,21.777830598325295],[-102.8202619521715,21.77871800154253],[-102.82049280926884,21.77898002936115],[-102.82719539938307,21.787073022121206],[-102.8265610192986,21.788164865157455],[-102.82814522056856,21.792107931560793],[-102.82999349017751,21.793142887335023],[-102.8302498964664,21.79547530517931],[-102.8320391715344,21.797745966806588],[-102.83241036872482,21.79789998628604],[-102.83707369514684,21.797893692297293],[-102.83865055904869,21.796883774060746],[-102.84201935661241,21.798413498807122],[-102.84240486726287,21.798530719951202],[-102.8432011091358,21.80103697503307],[-102.84274748393193,21.802221888526958],[-102.84257685203158,21.804362068390674],[-102.84290826249628,21.803749747669087],[-102.84307339425163,21.803468525670326],[-102.84356600346428,21.8029392462376],[-102.84394179154509,21.80256706743819],[-102.84432478299931,21.801812581530328],[-102.8454907884497,21.80030195934455],[-102.84596214368099,21.799983260785837],[-102.84785013056347,21.799588698790842],[-102.84906321561454,21.79952857165057],[-102.85148017042224,21.7998932043364],[-102.85211937734545,21.79955105512522],[-102.85334505667271,21.799053149082965],[-102.85258187423528,21.80396159588679],[-102.85011553311597,21.809540459169455],[-102.85179111101354,21.811937751283438],[-102.84949043811292,21.81369268934816],[-102.84742630387677,21.820212345213633],[-102.8472558406039,21.822392614302487],[-102.84889434316767,21.82388679259111],[-102.8502856596092,21.825088592348095],[-102.85020630401345,21.82634798843503],[-102.84752271639906,21.828591841131583],[-102.84731475416106,21.833409212059166],[-102.85274556052008,21.834317820555725],[-102.85805097425066,21.833226357036494],[-102.86456959448918,21.843526903538816],[-102.86815646028424,21.84519667933165],[-102.8689654820401,21.845217617573212],[-102.86900184150409,21.845235146282903],[-102.87092331192287,21.84615056392039],[-102.87357492985484,21.849593145765766],[-102.87417658464699,21.852771004464103],[-102.87282539711134,21.856428616723406],[-102.8703216790621,21.85867312781113],[-102.86793289488799,21.861032015151352],[-102.86476397643526,21.8631142298903],[-102.86338012839457,21.863765781072175],[-102.86322958235928,21.86543282903267],[-102.86304617656424,21.868108418293048],[-102.86241381701433,21.871339786914064],[-102.85960756844196,21.87487146737874],[-102.86057272819284,21.877653529129134],[-102.86068356008849,21.879408591329423],[-102.85674702877043,21.882539346679323],[-102.8556020470158,21.884509172754406],[-102.8564467696151,21.886211473827643],[-102.85612509289149,21.8890507592659],[-102.85443221417904,21.890412410549857],[-102.85369427459727,21.890634660065018],[-102.85484206826237,21.891628860074775],[-102.85419743617501,21.89335159703427],[-102.85261369005082,21.894690806837446],[-102.85140313545634,21.89694514848145],[-102.85107113408702,21.898425290503212],[-102.85130227411992,21.900138863452185],[-102.84963273777322,21.903957729723004],[-102.84810984434046,21.907632606627487],[-102.84688625117411,21.907880332798413],[-102.84632495651908,21.908541693349832],[-102.8444508289669,21.910361413273904],[-102.84327152877512,21.91283488754891],[-102.84609464486704,21.913739203213765],[-102.84295992802424,21.922301462361304],[-102.84300210423118,21.923656706073075],[-102.84260433534831,21.927118964457577],[-102.83933643117206,21.933672533792446],[-102.83975201131335,21.934843136825975],[-102.83728974591111,21.940617709831884],[-102.8337250159766,21.94030339387848],[-102.83275361513176,21.942580596763776],[-102.82322328678191,21.95554238292624],[-102.8216124539515,21.958799715742828],[-102.82192888668004,21.96007811948715],[-102.81932374431801,21.96719939472206],[-102.80546157433974,21.996300398428787],[-102.80122955357444,22.001887674916986],[-102.80064702906571,22.00442651344855],[-102.79963666686018,22.004811827422714],[-102.79949763450958,22.0052855371722],[-102.79883850320687,22.00621715524892],[-102.79713218483221,22.00794211718329],[-102.7961316157818,22.008686781822405],[-102.79149862121733,22.015988357388608],[-102.78404325411861,22.016854576543494],[-102.78331024581342,22.017691928793965],[-102.78181075028107,22.024224950144344],[-102.78259980555464,22.02711836077276],[-102.7815668488804,22.028619513575734],[-102.77632262089918,22.0310249102659],[-102.77426556802789,22.036048136207626],[-102.77196987282548,22.037696676070084],[-102.76898125949242,22.037822894837632],[-102.76769311239462,22.039975309667284],[-102.77046484367679,22.04159789235024],[-102.76304061639814,22.04416711050294],[-102.76098973051563,22.046286740921346],[-102.75943461204696,22.051424812789037],[-102.75547309435314,22.056300602063573],[-102.7551615282722,22.061592197344282],[-102.7531802671241,22.06325781070177],[-102.75637944399551,22.068320626643356],[-102.75580571583737,22.073662073964954],[-102.75130550472409,22.07590424556588],[-102.74721172160992,22.07937252671138],[-102.74189738974746,22.082172608692588],[-102.73586479577341,22.084094909490943],[-102.72866684844223,22.08850506803026],[-102.72490996842998,22.09015730709956],[-102.71849357747908,22.090839040553078],[-102.71169879294797,22.094542013825617],[-102.71048911075968,22.09388614132746],[-102.70964149762426,22.09661837378019],[-102.70559956978553,22.098889475108308],[-102.7030197162511,22.09901763984618],[-102.69776647288109,22.10151572598147],[-102.69108286249872,22.106164226836995],[-102.69185624678988,22.114779641159373],[-102.69115880272562,22.118145033790654],[-102.69096205231597,22.119097673265287],[-102.69014195611686,22.123394988747066],[-102.68750509130183,22.124215585400805],[-102.68341414355297,22.12991358325928],[-102.68586615676998,22.133214087061276],[-102.686319807058,22.136973114378748],[-102.68517029978267,22.138803471594088],[-102.68173367806611,22.14107409081771],[-102.68102277748824,22.143718862486935],[-102.68255994184585,22.145804149549804],[-102.67829994957214,22.145344682154985],[-102.67434471300118,22.14778143750044],[-102.67405432157062,22.151250098715025],[-102.67175471067941,22.154241872161435],[-102.66941568721177,22.15958957868986],[-102.673501205854,22.16613966384199],[-102.67549174535179,22.168495787690745],[-102.67499898128489,22.169762412077432],[-102.6758945074186,22.175572519115235],[-102.67496692239638,22.17744780300984],[-102.6712849580826,22.177161532139166],[-102.6679812923656,22.17842627326627],[-102.66626571473711,22.183032861389336],[-102.66925915577906,22.188908991272797],[-102.66936162191871,22.192338516281154],[-102.66796286430827,22.194336739174446],[-102.66654658435993,22.193947090263237],[-102.6634559220193,22.19317037562041],[-102.66229204248987,22.191480950774917],[-102.66107762896098,22.19090482951026],[-102.65533671797368,22.191252454147786],[-102.6515959798831,22.19314022506262],[-102.65507180407764,22.19537933053806],[-102.65231200988313,22.196506680861035],[-102.65023744773526,22.201226217770397],[-102.64582155521032,22.20430604370887],[-102.64496109848898,22.210415246969262],[-102.64580234790236,22.213211823637494],[-102.64371072365213,22.22117211483328],[-102.63929894070213,22.22603919240163],[-102.64168495051905,22.226355659877697],[-102.64138711827735,22.228447535814894],[-102.67001704896995,22.245702431163124],[-102.6687428430148,22.291871046886],[-102.55235696409693,22.2911041227012],[-102.54975977472776,22.291083266269425],[-102.52703933550566,22.290899037881502],[-102.51258252291916,22.292350701213252],[-102.50663072659705,22.29381254409998],[-102.50126510860036,22.304269775802425],[-102.49577008861309,22.304813437305825],[-102.48909240492799,22.303483147606414],[-102.48853118774502,22.305408320430615],[-102.47362206771083,22.308375527916382],[-102.47020162590763,22.309210202170902],[-102.4672437806152,22.312031523536064],[-102.46698113788653,22.31906644768185],[-102.46608419788953,22.322281483274594],[-102.46428416876927,22.32117519594584],[-102.46066150399986,22.323691100139797],[-102.4618501431039,22.3269794131553],[-102.46102085524126,22.331758883572036],[-102.46507098753267,22.33306304168991],[-102.46771878653777,22.332378184948993],[-102.47083170162932,22.336033234367164],[-102.46884161922867,22.347464711337295],[-102.46864195838646,22.35188147424759],[-102.46564584774825,22.350194804123134],[-102.45788755700897,22.351394051534555],[-102.4578789576284,22.35125753822382],[-102.45238752903896,22.351974506450688],[-102.45105888942243,22.352125550230824],[-102.45086880599973,22.352172755821016],[-102.44833712391824,22.352894831849312],[-102.44636134742711,22.353458316713613],[-102.44555420299554,22.353688509619417],[-102.43227760077127,22.357466540510018],[-102.41570906831652,22.359958886308902],[-102.38787899309284,22.3641412061084],[-102.37844281134068,22.360878577852475],[-102.35925027958882,22.384951685510316],[-102.36287708334879,22.388747271042234],[-102.32796669878309,22.38859994163988],[-102.32136471819871,22.388532641815345],[-102.32127566128094,22.39333551373221],[-102.32123784792486,22.396839986403904],[-102.32118330280605,22.40048258421433],[-102.32117076826785,22.405018824662648],[-102.32112852803152,22.40601294104846],[-102.32109507491055,22.409922388379528],[-102.32105367448776,22.41420988329986],[-102.32104392331348,22.41435140000823],[-102.32103050778983,22.41829135492236],[-102.31929150318587,22.422872845832615],[-102.31441879259415,22.435379946593855],[-102.31313414911119,22.43825942655161],[-102.31204004541661,22.44081820595352],[-102.31203590450048,22.445989549471335],[-102.31201436225638,22.446560656449947],[-102.31170081952985,22.45485649858017],[-102.31180479743739,22.45691581584782],[-102.29850530530445,22.45953828521766],[-102.29830684271724,22.459589682815306],[-102.29739324562104,22.455273004839512],[-102.2955150613164,22.44608159620816],[-102.29455939313829,22.441562744584587],[-102.2944598087335,22.44096516991914],[-102.2934577132985,22.43632326277708],[-102.2928901545356,22.43369408881074],[-102.29138410730093,22.42671709282621],[-102.2899307387525,22.419983611425664],[-102.28698945661881,22.416125260104934],[-102.28625342035627,22.416896294793446],[-102.28583380627157,22.417119735600636],[-102.28537563255946,22.417120583914937],[-102.28493120017157,22.41683583854899],[-102.28140901105218,22.413756073623972],[-102.27932713835065,22.414315800371753],[-102.27869921746986,22.414328057066427],[-102.27760562035638,22.41411427479312],[-102.27684466521418,22.413380988530662],[-102.27629819097757,22.413301223902693],[-102.27398105598371,22.41433115793069],[-102.27274428411312,22.41328973262239],[-102.27247740788704,22.413065016269343],[-102.27195474247998,22.41262488223788],[-102.27091789347043,22.411751778437065],[-102.27253927758198,22.409637182673862],[-102.27285070208285,22.40905101560537],[-102.26960962031598,22.407779075306905],[-102.26878226911697,22.407481831524592],[-102.26810072298429,22.406998166459402],[-102.26716062459002,22.40474455479682],[-102.26694720723299,22.404479305062637],[-102.2662624758812,22.40410715648244],[-102.26590577682754,22.403469338002253],[-102.26488531051234,22.400196750281964],[-102.26189516011158,22.39857023252148],[-102.26095042746266,22.398604052329574],[-102.26081044946432,22.395663808626523],[-102.25541557813443,22.390437821922887],[-102.25524872423387,22.38742865642564],[-102.25453314698467,22.38708132815799],[-102.25362543973728,22.38881789816753],[-102.25079195920796,22.38721664882445],[-102.25029936337103,22.387221706750097],[-102.24917570118527,22.385639349778955],[-102.25006391632019,22.384306208891303],[-102.2505654878629,22.38085392378713],[-102.2549432252768,22.378868375198863],[-102.25482579183767,22.377731916296398],[-102.25320070677816,22.374494503500046],[-102.25238918961446,22.37446610603166],[-102.23687139610325,22.374060693083322],[-102.23578090834422,22.373635331900743],[-102.22813253163287,22.374680900425517],[-102.22661295887298,22.373803614357712],[-102.22490045316721,22.37270034004723],[-102.22232966941937,22.37140437594195],[-102.21198680863574,22.372697320289433],[-102.21199059552538,22.370037356510238],[-102.21197919446428,22.362465187895452],[-102.1773753446883,22.36242973536781],[-102.17967952536327,22.354146333340566],[-102.18072210215644,22.350397937330968],[-102.16437326535748,22.348740983434766],[-102.16148968267294,22.34844854840088],[-102.16139870631605,22.34843797572745],[-102.15759583819357,22.3480379206772],[-102.14984747052807,22.34717505581358],[-102.15323047717237,22.29041021144633],[-102.12411069442192,22.286956403048862],[-102.11573551925602,22.28609525642088],[-102.10658379972341,22.285365454506348],[-102.10780649918831,22.28273046756624],[-102.1052498655149,22.280792829452082],[-102.10244233496968,22.282717860120272],[-102.10109660665444,22.283675254516083],[-102.09457280959771,22.288559125139898],[-102.09106487712211,22.290891189751335],[-102.09092468005252,22.291207184071993],[-102.08918670824988,22.28946995073011],[-102.08800983827513,22.290911169100355],[-102.08417139822711,22.295611487798737],[-102.08175607302167,22.298568926495705],[-102.07937856213033,22.30147988995776],[-102.0793141158764,22.301558782454038],[-102.07689386728987,22.30452188583166],[-102.07568205004287,22.30600544400096],[-102.0756270421519,22.306072784517937],[-102.07394315998266,22.305500882468493],[-102.07307110768954,22.30520469555705],[-102.06248347303324,22.30160817750209],[-102.06155906646808,22.30137713030541],[-102.0567030794914,22.29992693619755],[-102.05760445033263,22.29614753406389],[-102.05604345764283,22.29547077609277],[-102.05575585093862,22.295346083631443],[-102.05566380146809,22.295306175065946],[-102.0565023620473,22.294801538526826],[-102.05840776796407,22.293654855281034],[-102.05650251865649,22.29301016438268],[-102.05521559975989,22.292556326685656],[-102.0504126311451,22.291286106396853],[-102.04178072558904,22.295203634541963],[-102.042336735905,22.29701384105266],[-102.03726963944894,22.298975682999355],[-102.0317899383366,22.288899547396852],[-102.0298825273295,22.28899299952002],[-102.02995796924688,22.28637560509634],[-102.02799927943784,22.278659968691386],[-102.02976389547763,22.278363256990133],[-102.02843200261816,22.27179707805675],[-102.0292102631737,22.26900468029163],[-102.0269977739103,22.26086253575795],[-102.02560946146349,22.256293195359262],[-102.0251613821215,22.255986373875487],[-102.02471729143764,22.253456028758592],[-102.02228976434122,22.245829585805325],[-102.02211891357149,22.243482750766475],[-102.02249459015735,22.24158549430325],[-102.02044686816635,22.241565655125328],[-102.01879795634756,22.241553326729615],[-102.00247462909579,22.2414440673233],[-101.99971607037736,22.233656036822254],[-101.99909025036351,22.208107527271466],[-101.99958925289332,22.20806844747591],[-102.00001661839343,22.208359376842907],[-102.00002877664883,22.208053147353496],[-102.0005251645212,22.19227413056484],[-102.00099308088653,22.168110557221553],[-102.029467143077,22.16866561904095],[-102.03554340108104,22.162623442784934],[-102.03773733134454,22.15977608865751],[-102.0408385163347,22.161990436902045],[-102.04109448189081,22.161799229151256],[-102.0414489089681,22.158938000917317],[-102.0423935703144,22.159310427106448],[-102.04314013749945,22.158876724301763],[-102.04322527623447,22.157798081051453],[-102.044539515552,22.154424239797265],[-102.04522130987397,22.153733234743754],[-102.04432169052274,22.1534447092572],[-102.01707549285464,22.153961276505186],[-102.01999238466755,22.146125528728874],[-102.02006673889997,22.145950527735295],[-102.02065626108651,22.144343255964145],[-102.02170231995893,22.141517550839694],[-102.0225440928815,22.139208250748766],[-102.02359397381167,22.13637396886122],[-102.02591518753212,22.129771001576103],[-102.01733866169496,22.12693223277364],[-102.01076965842702,22.124630722408256],[-102.00534815956013,22.123405340663396],[-102.00035330289393,22.122810658513117],[-101.99722354694285,22.122418754758314],[-101.98602794979115,22.120827450635886],[-101.97549727067764,22.115522417400427],[-101.97375158344124,22.114475900646994],[-101.96757393370575,22.11120248243924],[-101.96409058255892,22.10872856002743],[-101.95100007968932,22.099817791777014],[-101.93888600514236,22.09206588770462],[-101.93743332842917,22.091099048805518],[-101.93469776338827,22.089277737573184],[-101.91553736838131,22.076609840091635],[-101.9152616309953,22.076416186487904],[-101.89271294903273,22.06171609487052],[-101.88611108714667,22.057448273846603],[-101.88416598816542,22.056164760496983],[-101.88314394044704,22.0554850536588],[-101.88228419250237,22.05488561100009],[-101.87913576343544,22.052675691544664],[-101.8714837015462,22.047078635697233],[-101.87038812771334,22.046361005705364],[-101.86427510812723,22.041509475632893],[-101.86229337533274,22.0467365606292],[-101.85586036856256,22.045545834152676],[-101.85415983094924,22.044344675091963],[-101.8554333823248,22.04138898217542],[-101.86149129563444,22.035902530952626],[-101.85915460194371,22.03441825800718],[-101.86053271818025,22.03322039765885],[-101.86158963401266,22.028966586770082],[-101.861381899631,22.02878102005377],[-101.85902133827068,22.027984768829015],[-101.84734244466244,22.027336126104558],[-101.84059013667036,22.02663504099354],[-101.83685686294291,22.024197150329428],[-101.83291855584775,22.023228009204615],[-101.83049662707941,22.021534591957277],[-101.82658016896517,22.02111366860953],[-101.82545275629758,22.02097877162049],[-101.82465928545366,22.021257561282766],[-101.82145374885732,22.021297425304397],[-101.8204978726265,22.02115631545206],[-101.8156730477902,22.019983096953695],[-101.81549408910058,22.020360640880483],[-101.8141821267327,22.021081807961934],[-101.8131220051173,22.021732970887456],[-101.81056691998032,22.022402435248523],[-101.80894457843823,22.022889598306506],[-101.80763192932295,22.024569595045932],[-101.80194392563357,22.030676470601918],[-101.80124449720665,22.030272587155594],[-101.80066164494252,22.029598751503613],[-101.80109580375927,22.029149896057277],[-101.80116582629483,22.028749223281977],[-101.80200269362786,22.02819005552135],[-101.80249155607964,22.02746082381543],[-101.80349841367212,22.02686672287166],[-101.80358958765544,22.02590031237372],[-101.80426345157821,22.025252738254608],[-101.79341411710891,22.02326061694032],[-101.78442974901941,22.024098284200477],[-101.78475895084364,22.022748395382507],[-101.78294041209352,22.02114098919941],[-101.78270115720716,22.020917263262277],[-101.77890045869594,22.017599889392443],[-101.77882158455844,22.01528845434035],[-101.77722901058343,22.01534504153733],[-101.77725475735951,22.014628550383975],[-101.77742338776665,22.011412007882143],[-101.7776330828832,22.007301752242313],[-101.77557304540812,22.00741803397659],[-101.77430141764984,22.007481244615974],[-101.75965483731682,22.00904300092884],[-101.75100400722863,22.014645430286976],[-101.73014106500682,22.002183971808165],[-101.73004887243832,22.001923627733902],[-101.73181350384704,21.996770750164103],[-101.73182217610736,21.996743793491817],[-101.7320818220291,21.99588403156082],[-101.72998350349667,21.99355418130392],[-101.72513976261462,21.990685631878762],[-101.72023628041592,21.98771210710231],[-101.71448454956874,21.984306553900183],[-101.71478306723162,21.983609799564704],[-101.71348003372225,21.98194064308467],[-101.70911521351093,21.979925982946554],[-101.71033426155896,21.977555971269908],[-101.70906082183001,21.97694374962549],[-101.71065838956133,21.97393523890014],[-101.70740054483235,21.9725125157658],[-101.70641790237266,21.972048221180614],[-101.70541003230534,21.972251939675857],[-101.70366551426332,21.97129230478305],[-101.70013328800411,21.97052573595562],[-101.68291418816506,21.962885305590078],[-101.6813281590571,21.960675402608615],[-101.67679957883217,21.955078670937212],[-101.67248368715104,21.948932798750604],[-101.6691135924197,21.94576542694614],[-101.66765835523779,21.94555228489918],[-101.66708006584923,21.94509372119677],[-101.66613296892604,21.944557457697954],[-101.66349161091244,21.943083390848926],[-101.66118109654832,21.942304178738766],[-101.65916439012193,21.941544342193993],[-101.6571016797601,21.939254966716362],[-101.65897347389847,21.936004601219054],[-101.65724604748937,21.934350054661707],[-101.65732756268523,21.930945482527818],[-101.65786852329057,21.929789837956093],[-101.65516541658207,21.930454888188763],[-101.65446158789285,21.929842029233214],[-101.6523273545373,21.927780999093216],[-101.654128426554,21.927288169271264],[-101.65248005172936,21.92441605549533],[-101.65398822948856,21.924159921397745],[-101.65199432537946,21.922423661269534],[-101.65114465874206,21.92167453235561],[-101.64957660788514,21.920291988999224],[-101.65069569884605,21.90767539443476],[-101.64887978122044,21.907019608289147],[-101.64603427112917,21.908368167649712],[-101.6451546116947,21.90950145662987],[-101.6442812144798,21.909616888398375],[-101.64301057721508,21.909100888265073],[-101.64240532996342,21.908816674584784],[-101.64134224952767,21.908531875008123],[-101.63610428634502,21.908129305016587],[-101.63562231823647,21.90855768250327],[-101.6343292272652,21.908989223357537],[-101.63083621759455,21.910079074807356],[-101.62894522511175,21.910902733678938],[-101.62714967253243,21.913199154070583],[-101.62623833362755,21.91459276620168],[-101.62434261599071,21.91502370143462],[-101.62039530521133,21.918639391746012],[-101.61991385498038,21.920737976252042],[-101.61989342365592,21.920853936192316],[-101.61902243612928,21.924453418777944],[-101.61763903269275,21.927003792425126],[-101.61688379777985,21.928854625302108],[-101.61671189820561,21.929447963282314],[-101.61578737418472,21.9287030769965],[-101.61446187097124,21.926333750880417],[-101.61372889200891,21.92400098925316],[-101.61260152139266,21.92167444618775],[-101.61214022955068,21.920716416037408],[-101.61085235597784,21.918827091571302],[-101.61030421974073,21.918514008814782],[-101.607474178774,21.917455644323468],[-101.60692521612765,21.91709656060067],[-101.60483385032575,21.915980473768855],[-101.60298822582115,21.914814509352823],[-101.60198894521818,21.91409479040084],[-101.60068469256271,21.912874225194912],[-101.600373034813,21.912005744559963],[-101.59762764081444,21.910484542509096],[-101.59680725249893,21.910341581139562],[-101.5958488610587,21.90996261709296],[-101.59446450905665,21.909754589173758],[-101.59229304288118,21.90965091963028],[-101.59218541141968,21.910746894757267],[-101.59180325366941,21.915045896040738],[-101.58610679160921,21.914835319408553],[-101.58385460769387,21.914531698819587],[-101.58350978129823,21.914864223615552],[-101.58366687653302,21.91552181718805],[-101.58331332806881,21.91570548941661],[-101.58091043160925,21.91633151405921],[-101.5784071400243,21.91693144735956],[-101.57792815276383,21.91586859515138],[-101.5772306197303,21.915850339970916],[-101.57325953613366,21.915890198358056],[-101.5727314107213,21.91588031799347],[-101.57113890045008,21.917289290279143],[-101.5701167831179,21.917118434183294],[-101.56980627981056,21.91708074155099],[-101.5693534593957,21.90334404500328],[-101.56868262318636,21.891383651405988],[-101.56736871748569,21.883095595026816],[-101.56642441084853,21.87636889551277],[-101.56518213876927,21.876445636388837],[-101.56439423484886,21.872340399096856],[-101.56460001231682,21.866268571157377],[-101.5646837410502,21.86579233487356],[-101.56320857494228,21.85786140430247],[-101.5627547541684,21.855387373289318],[-101.56454444042669,21.848173726010714],[-101.56517451593885,21.845287730729353],[-101.56554760503354,21.84296620742549],[-101.565873945715,21.841960191005057],[-101.56197046966508,21.84001222989673],[-101.56142129971408,21.836051263806667],[-101.54823040544886,21.834085547498205],[-101.54730074067277,21.832034078749928],[-101.54408635267066,21.82526658287759],[-101.54391372895748,21.82488356645655],[-101.5437597314135,21.8245538606879],[-101.54366599145311,21.824391944874662],[-101.54351633374438,21.82405327122251],[-101.5433471863978,21.823730415930868],[-101.54314554591747,21.823312392531363],[-101.5429494916043,21.822893476805234],[-101.54287768799566,21.82272935400897],[-101.54271162581307,21.82238833236022],[-101.5407121371992,21.81826565220615],[-101.53710990630339,21.810624007928084],[-101.53569469255001,21.809889940772734],[-101.53431665856613,21.80968836445726],[-101.52782408206843,21.809177888114846],[-101.52735305405798,21.80990618459822],[-101.52976400812707,21.8131075074852],[-101.52204409206644,21.81802305280104],[-101.51976007150108,21.812979009218736],[-101.51782007170965,21.814755583509793],[-101.51474009950687,21.808110655661324],[-101.51407728561458,21.806833518548103],[-101.51054174948291,21.799058495611177],[-101.49633124512786,21.80993965897011],[-101.49634592674772,21.809987089607148],[-101.50085107569777,21.822662116056904],[-101.50261805994245,21.827515324106912],[-101.50351527027215,21.830123990877496],[-101.48609134420218,21.841886728057887],[-101.4867316858784,21.847943015811495],[-101.48704470392607,21.84900260639887],[-101.48818333569909,21.853427726487894],[-101.48364884408767,21.856453418343506],[-101.48417336637641,21.858145216492744],[-101.48041132027384,21.85925805570696],[-101.4811730533753,21.861332172157233],[-101.48319167278498,21.86768153401772],[-101.47911888064118,21.868587747921254],[-101.4727231471129,21.870101147360458],[-101.47070384517548,21.870621590659937],[-101.47039270216914,21.870703147432835],[-101.46890571124669,21.871070231207796],[-101.46619770289448,21.870511476217928],[-101.46645764970833,21.880224910613435],[-101.46276093013176,21.881591374729],[-101.45749329367658,21.88344935779469],[-101.45220316763033,21.88538570309356],[-101.45019695991806,21.88671293351473],[-101.44664135853475,21.889109165188643],[-101.44533496876124,21.889978185645134],[-101.44439904562313,21.890764122428322],[-101.44076294671152,21.892895988795885],[-101.44639445441612,21.9062556748342],[-101.44011215625432,21.910265274938922],[-101.4345959187367,21.897065066506457],[-101.42734560763756,21.901770707142532],[-101.4153146153605,21.906380949488323],[-101.41022762103398,21.908693540858962],[-101.41267927663705,21.91503084149025],[-101.41199138517823,21.91865593725572],[-101.41786682622472,21.9227743172778],[-101.4201184353787,21.924544135962435],[-101.42456375631218,21.927921373398476],[-101.43038399297194,21.93229856021628],[-101.43008807345876,21.93282714669698],[-101.42688817537714,21.935109166999837],[-101.4224122061434,21.939460655029677],[-101.42115043243325,21.93957743414137],[-101.41964729270717,21.938965893649538],[-101.41829480735953,21.93997617510962],[-101.41586684923601,21.941893907092606],[-101.41390889789227,21.94357099400287],[-101.4121149012542,21.945117063626128],[-101.409381313751,21.9466317262424],[-101.40808408186649,21.947218248469653],[-101.40516117454143,21.94849212583165],[-101.40434290739023,21.952634280009875],[-101.402367483999,21.95640373023616],[-101.4007626169327,21.957351749094073],[-101.40049752109542,21.95858724157341],[-101.4008184576,21.96062434627538],[-101.39929278005224,21.96234780535218],[-101.39966914538235,21.963708393902436],[-101.39716835143827,21.96580318942671],[-101.39638353264507,21.967950577650186],[-101.39575360163747,21.968054596625507],[-101.3935745969344,21.968092512295016],[-101.39154724991471,21.96991911282703],[-101.39048900524051,21.97114910935511],[-101.3886204667723,21.97135998424477],[-101.38808601350905,21.97384690358507],[-101.38391788269621,21.97411971055567],[-101.38395044573252,21.974803282609912],[-101.38443574988764,21.982296373357087],[-101.37659029020676,21.98118421352069],[-101.37493248728498,21.984545883133762],[-101.37494648753068,21.987340496149614],[-101.37336572432429,21.99024936132554],[-101.37084660526881,21.99147794080426],[-101.36770135594344,21.9900889596949],[-101.36376417029857,21.99127996536305],[-101.36218987142314,21.990289777062117],[-101.36054023434855,21.9952411220562],[-101.35431623636168,21.995548575851217],[-101.34201046936613,21.996058425694116],[-101.32748462665819,21.99702644523404],[-101.32651029050663,21.999728051885313],[-101.3267962454546,22.005079066243468],[-101.32981488277863,22.004819325890196],[-101.32939744941484,22.00716909666511],[-101.33542198662542,22.0071164858619],[-101.33863187253223,22.006029572079854],[-101.3452984701704,22.00587992748143],[-101.34474261070216,22.014142429656147],[-101.35243928866646,22.013081587555234],[-101.34857244076807,22.028071116479623],[-101.33932909530779,22.02443320076179],[-101.33776503277721,22.025133009950196],[-101.33923530991024,22.01498570964401],[-101.32794249830795,22.016468457451253],[-101.3272084754571,22.021498046178237],[-101.332466610489,22.024611498217382],[-101.33213545057572,22.02772707163831],[-101.33090075787857,22.035315192296537],[-101.35167499453945,22.04378915419136],[-101.35462068448396,22.030413064824018],[-101.36239301202818,22.033508655034154],[-101.3640043155919,22.02637959572951],[-101.36569229130419,22.01854843146151],[-101.38275537653499,22.020737904944724],[-101.38069119364354,22.028759334444715],[-101.37837539180805,22.028648050375466],[-101.37716861736902,22.02857321943651],[-101.37465538048934,22.02829567485685],[-101.37328295405348,22.0280754540334],[-101.37129327745168,22.027716382079177],[-101.36952932547138,22.028828524600215],[-101.36900061653984,22.03096381432465],[-101.36857337801285,22.033031021563772],[-101.3758979758482,22.03388528884807],[-101.37572727597711,22.034686224333313],[-101.3755383218546,22.035387188427194],[-101.37446371882032,22.04136513590288],[-101.37760939382855,22.04212723887332],[-101.37707837595644,22.044962136305287],[-101.37002630467487,22.043290150518658],[-101.36420302973937,22.04178571716176],[-101.36101176472596,22.04100105956155],[-101.36025165607873,22.043917100642318],[-101.35679094935824,22.04348788048759],[-101.35417597361163,22.044704071733804],[-101.35406890913782,22.044827265707397],[-101.35167041485556,22.051613013991584],[-101.34658727091778,22.049690076114587],[-101.34588527612863,22.05360639757282],[-101.35335910890757,22.055924544513346],[-101.35238683255153,22.061671212175952],[-101.35207757773946,22.063208792445835],[-101.35117649130797,22.06755408844299],[-101.3524376789976,22.06808492199343],[-101.35475102698882,22.068914049079353],[-101.35076348407011,22.087758967044863],[-101.33830837427689,22.115618853597596],[-101.32938230560114,22.135605183945813],[-101.32774499056319,22.144112061247597],[-101.33769286481288,22.143522508973774],[-101.35130591792586,22.176759685618663],[-101.33273137686655,22.2000592466963],[-101.3242531615324,22.209893457645705],[-101.33233952769797,22.212041775279715],[-101.33263644146547,22.212788035441463],[-101.33638573029504,22.217351034443766],[-101.33646895575515,22.217462260939328],[-101.33872402995303,22.220164174268348],[-101.34052445969314,22.220524492980246],[-101.34520361118041,22.224303667573963],[-101.34869526356232,22.226046490420174],[-101.35285398510553,22.22920364570723],[-101.36167068332219,22.23848381602727],[-101.36444928643493,22.24441595128161],[-101.36327993436498,22.24814133206661],[-101.36342634914689,22.249440548640223],[-101.36704466069745,22.25310339765207],[-101.3694652006036,22.25321104968566],[-101.36948952715943,22.253260294254403],[-101.37060343540969,22.253293557538996],[-101.3726534039202,22.255341615530995],[-101.37441464380953,22.258572595417093],[-101.37740374956024,22.261125203197935],[-101.37899995992626,22.26103738634191],[-101.3820188656037,22.261018415186243],[-101.38318253663454,22.261625490458755],[-101.38535405134076,22.26509334452294],[-101.39666039759896,22.265921355686032],[-101.39693587395902,22.26594502260889],[-101.4162589158754,22.26734553534311],[-101.41164770941805,22.272414953688667],[-101.41013332682974,22.275080952223846],[-101.40899935757471,22.280436608131197],[-101.40761377191791,22.28087186267527],[-101.40490160150557,22.27868330264181],[-101.39815041831781,22.281426817075726],[-101.39800010204914,22.28241387703929],[-101.40075302469256,22.28698627597572],[-101.39913218482269,22.289964778111482],[-101.39854929342238,22.293891429668292],[-101.39536515255622,22.296745311093332],[-101.3920293758523,22.29837422795964],[-101.39143494730223,22.299901873589533],[-101.3937960002657,22.30047454701571],[-101.39920956440704,22.30385746996444],[-101.4055161103604,22.303457757745548],[-101.4084133156814,22.30598364649296],[-101.40889072692659,22.30965869334807],[-101.41076021540289,22.31130068039039],[-101.41685351886076,22.31322154293548],[-101.41973248764646,22.315041808519084],[-101.41842848248962,22.316067292930086],[-101.422501003913,22.319979648240405],[-101.42389859919018,22.32359802446075],[-101.42547748413529,22.32438786293409],[-101.42624049653386,22.32857232146455],[-101.42762273555269,22.328637220058965],[-101.42907772981988,22.332896895934994],[-101.43266638983437,22.33541188228571],[-101.43483876213315,22.33864145263783],[-101.43512541698249,22.34153398314379],[-101.43297235880311,22.36327674511955],[-101.38191054629021,22.357485079753417],[-101.37842900067784,22.394622018175085],[-101.3776503090599,22.401063617742977],[-101.37759530273473,22.401395137104657],[-101.37558934254298,22.41673664128365],[-101.37358845069878,22.439553392461903],[-101.3739175258118,22.444029456396663],[-101.37478575560675,22.456458364529738],[-101.31372633553474,22.453490173814487],[-101.31538349513141,22.469648962616077],[-101.28572648224639,22.507855523910564],[-101.28627643509657,22.509032455918543],[-101.28690862305075,22.51557121899691],[-101.29511077331131,22.528450302660474],[-101.29428215268774,22.529063167893355],[-101.29491150485029,22.532756089005204],[-101.29632363063035,22.535478197093482],[-101.29460763349562,22.53642323599712],[-101.29408464949677,22.54017269954528],[-101.29190121516308,22.54448382571462],[-101.29154343994907,22.545680963220377],[-101.28930468946203,22.55401426559348],[-101.28908623097118,22.558613537019255],[-101.2876294635517,22.55974915128553],[-101.2875192894137,22.559811316683295],[-101.28769703717433,22.560328039310832],[-101.28833839913148,22.56218977208556],[-101.29358956322113,22.584513985917567],[-101.29510203580611,22.58373747820292],[-101.29681037084947,22.583539050434467],[-101.2991517222672,22.589440215487627],[-101.29750297841196,22.59150895492496],[-101.29795279319063,22.59320593664046],[-101.29861289256547,22.59386258530708],[-101.30179501624735,22.599701955022],[-101.30362153361278,22.60193035085888],[-101.30503130523692,22.608239861909055],[-101.3055027716203,22.60918738426119],[-101.30709738149574,22.61130862333806],[-101.3112181795172,22.613668826950345],[-101.31206716604595,22.61367265594879],[-101.31621928146507,22.61752366316466],[-101.31796600716211,22.62016268646869],[-101.3185488902592,22.621319837685178],[-101.31873910308673,22.622967246958524],[-101.32004837436114,22.623643642841614],[-101.32036161822123,22.624098915401362],[-101.32210300334259,22.628280661682368],[-101.32340890260082,22.628255590548747],[-101.32475857328467,22.629093076112667],[-101.32613401269344,22.630662986101356],[-101.3257346646891,22.637694045453657],[-101.32674304587073,22.638686662676378],[-101.32698899161602,22.63894279128823],[-101.33041159108643,22.641529220835025],[-101.33172097673958,22.642147744925467],[-101.33387374587977,22.642113142278333],[-101.33472988118609,22.64858940063317],[-101.33463355288086,22.64970503923439],[-101.3360064897231,22.656091502777087],[-101.33693697632117,22.65875603988701],[-101.34700925220494,22.65762214089932],[-101.34765993675728,22.65619008207898],[-101.35937609682145,22.653532942798847],[-101.36512558016165,22.660278126937726],[-101.37331641125832,22.668345376296884],[-101.38001824280929,22.67583492033873],[-101.37896773007566,22.67702585380954],[-101.36424260258616,22.693689379374064],[-101.36195784317675,22.696267903412433],[-101.36155689203639,22.69690513200112],[-101.34923392193076,22.711779297368594],[-101.3594967536659,22.71466952597524],[-101.36005760960819,22.71433720078852],[-101.3927981721493,22.738131083463657],[-101.41107707315626,22.747680689734068],[-101.44062211874575,22.745908933648195],[-101.49096453982946,22.742877356355166],[-101.49700359690951,22.70154100902488],[-101.49998961028064,22.69964057560037],[-101.56739799847958,22.656776324888142],[-101.56921157625317,22.65345274108546],[-101.57082895253103,22.64411786942651],[-101.57244809138797,22.637169586939876],[-101.57371463601669,22.634394341125414],[-101.5738796914431,22.633732422418518],[-101.57379475024902,22.63326291984481],[-101.57279717936825,22.630124210353245],[-101.57367417538086,22.62417683206985],[-101.57377842944828,22.61289817365929],[-101.58732500282673,22.62113172478712],[-101.58773232176031,22.62661186769543],[-101.59531301459077,22.62393482606865],[-101.59038974520757,22.591082132681265],[-101.59008315635862,22.589035747229275],[-101.59048296915489,22.588579794218447],[-101.59555713917649,22.58279277005954],[-101.59580201370505,22.58251347708358],[-101.63744498985562,22.534994854342756],[-101.65647740810522,22.513262143830502],[-101.65609034615971,22.512869604513014],[-101.65952631938421,22.505735597545595],[-101.6624790759655,22.505101098115176],[-101.6684390186208,22.50642309407482],[-101.67474957871502,22.506539898000653],[-101.68052473686834,22.510342750386542],[-101.68494974813666,22.511364452096927],[-101.68796904574629,22.515991657744564],[-101.689886127553,22.515817493192117],[-101.6949020016337,22.517768914596843],[-101.69601849818599,22.520422107438776],[-101.74617508252152,22.50869326183937],[-101.73536074699956,22.480214960330727],[-101.75728522549468,22.48454787286545],[-101.76789913004842,22.487260998383817],[-101.77153528577065,22.488163324443576],[-101.77849501257504,22.48486809132112],[-101.78336073381428,22.465033835066606],[-101.79913815822397,22.470515659217313],[-101.83714104912144,22.499692133343274],[-101.8304379101823,22.512013475770175],[-101.8278722675218,22.521752323102817],[-101.82565548477248,22.53400405694856],[-101.81989152721468,22.55129470783902],[-101.82628337697543,22.552265042910165],[-101.83823259464555,22.554897242819038],[-101.84733208542224,22.55750730639835],[-101.87277895075874,22.56303454403519],[-101.87295770852978,22.563073355040956],[-101.8681209219015,22.585577884454096],[-101.86774130125451,22.587343853151253],[-101.86219167689279,22.613949531561502],[-101.85815851748481,22.631214817939167],[-101.85678333875853,22.639268837102065],[-101.85664049989913,22.639991994219884],[-101.85328423182472,22.65602510758538],[-101.8675495221492,22.654652259795796],[-101.93975602893937,22.64572548596385],[-101.94605260495979,22.650400775033347],[-101.9482140329983,22.652005529156668],[-102.03490397094998,22.716312059394227],[-102.03956918692825,22.719769588685892],[-102.04502017854418,22.723809075416966],[-102.05414146431372,22.73056747949704],[-102.06307136183585,22.737182893718966],[-102.08859647253126,22.756085871208256],[-102.09047175790198,22.757474263667177],[-102.1018231308816,22.765877304140588],[-102.12489687370157,22.782952205930144],[-102.13152731383417,22.790343319257204],[-102.14066782596774,22.800530667509463],[-102.14448634825249,22.805138270216844],[-102.15075386757587,22.812774018536686],[-102.15862919560061,22.822524335187495],[-102.16404237076398,22.829052869406667],[-102.16565021384338,22.831176590461666],[-102.16609125937157,22.831767058590287],[-102.1676570532901,22.833179008252557],[-102.17264784495023,22.839106524350257],[-102.17613125663127,22.84302348552609],[-102.19213176850053,22.864902055642574],[-102.19959991583642,22.89221369460529],[-102.20993147984865,22.929978080869773],[-102.22815162411018,22.99652339271188],[-102.23380082110339,23.026401575234274],[-102.23555115928872,23.032842557284027],[-102.23681424707212,23.04009641736519],[-102.23808164712693,23.04764387986529],[-102.26005097243296,23.045915508568726],[-102.25992702970473,23.04667410700131],[-102.25983096628988,23.046965835860192],[-102.25953661547197,23.047454718813867],[-102.2591984080027,23.048398958918995],[-102.25909029822589,23.049626928693215],[-102.25894138640564,23.051617624279686],[-102.2588528674504,23.052061673387584],[-102.25731507256597,23.054583995857058],[-102.2564499276707,23.056104942017726],[-102.25620542198203,23.056904319837827],[-102.25611233780967,23.05749522473758],[-102.2557625159132,23.057984870429948],[-102.25531863824085,23.058556994355797],[-102.25499404970725,23.05928328974551],[-102.2545300832412,23.060310615426204],[-102.25427161456622,23.061182915112],[-102.25368374787149,23.063130343560204],[-102.25323837250471,23.064184365156223],[-102.25279977979801,23.065238375328192],[-102.25253790857562,23.066555420675115],[-102.25131912742506,23.07159171939469],[-102.25079279090039,23.073123117201476],[-102.25019827570463,23.074346310232045],[-102.2497314180161,23.0754575937126],[-102.24903310330427,23.076251030541357],[-102.24873053942821,23.076551885350682],[-102.2478214270837,23.078381045550373],[-102.24153883715815,23.086335462356317],[-102.23747200718918,23.095274348278963],[-102.23080652769585,23.1062073374747],[-102.23063546043505,23.106537601065213],[-102.2277931610638,23.11091290979283],[-102.22373132767495,23.11941818974941],[-102.21988283593174,23.1247653614447],[-102.21494391261126,23.129641065700127],[-102.21415463713652,23.131319867045704],[-102.22992522823722,23.151884311182982],[-102.24097403062984,23.169380428278373],[-102.23945770471158,23.2094932897881],[-102.25982779598502,23.218577430469736],[-102.26087226529313,23.219038248135178],[-102.28936898636283,23.231690932242373],[-102.28582547243377,23.273320143773446],[-102.26310059035836,23.27181865178619],[-102.25699586573933,23.27148478956832],[-102.25279624023767,23.27123520171233],[-102.24467212742582,23.276768756394006],[-102.24170524800576,23.285780966599475],[-102.24046877879107,23.289337972546548],[-102.23978794183762,23.29149125774734],[-102.23908412844605,23.293451544243283],[-102.23655190916912,23.30097533563037],[-102.23267918958788,23.31211858628609],[-102.23182041783133,23.315184938061975],[-102.23401912269958,23.314117028503688],[-102.24106911643315,23.31498161577673],[-102.24210750327609,23.309117737170254],[-102.24594807305232,23.297282924457818],[-102.24717070565788,23.292409075978355],[-102.24985346361598,23.29101767418956],[-102.25469769675897,23.28083216916508],[-102.2563924266567,23.28242038898776],[-102.25780389984072,23.28007903907752],[-102.26953366823597,23.279912882493193],[-102.26457905360769,23.290092928462457],[-102.29408485033332,23.318480736071024],[-102.2960384100682,23.320501284735087],[-102.2883298332016,23.327274610455845],[-102.28633064651581,23.328069810052284],[-102.26826193966951,23.34227789981162],[-102.2583433160732,23.35765703537311],[-102.25627493613439,23.360847297663327],[-102.25361148171686,23.364955888710824],[-102.25273204632214,23.36900878929464],[-102.25207734662314,23.3720268328276],[-102.25071859651854,23.378289967391822],[-102.2501121680803,23.379960827649825],[-102.24603501060261,23.403890324613315],[-102.24477998681954,23.4126237381916],[-102.24219986557921,23.427284223419008],[-102.23815030651025,23.446901434249867],[-102.19361521315358,23.447599111150282],[-102.19616030773216,23.42489401875082],[-102.1913422658157,23.401387920364527],[-102.17454175475359,23.39955412293898],[-102.16861496517663,23.39890752326204],[-102.16879912103508,23.361025646624],[-102.12253245396982,23.353860092518005],[-102.10555186408362,23.357211503221095],[-102.10066254284465,23.358176118867334],[-102.07097355866154,23.363006223380125],[-102.01194383725141,23.37274855103408],[-101.95328430131764,23.39133774537362],[-101.91084451078251,23.404769830515704],[-101.86891806178443,23.418025374167428],[-101.84860555638306,23.424442386315206],[-101.82739825400358,23.43113857729753],[-101.77512244524883,23.44762936145122],[-101.72235149403724,23.489721200446127],[-101.71209987201155,23.497940385810807],[-101.67796336899755,23.525380831808377],[-101.67036930042366,23.531247833837142],[-101.66705552945609,23.534014506163942],[-101.63929803106731,23.556308783250415],[-101.62608894925648,23.566794493460748],[-101.5886080071831,23.596839494655455],[-101.5823507796556,23.60165835417382],[-101.56099521199167,23.61898600270314],[-101.54052893892168,23.635327458107497],[-101.52639744416632,23.646502293225694],[-101.51798154241351,23.65315586257202],[-101.46671590442259,23.693661768631387],[-101.46341587133918,23.696267745908756],[-101.43711472654758,23.71703107397434],[-101.3909415437119,23.755237822743368],[-101.38100928777669,23.763448514317986],[-101.3450721929687,23.79300617122493],[-101.34205919108587,23.795734416281448],[-101.34099180049486,23.79648735240363],[-101.34038625178005,23.797116720338465],[-101.32699343697595,23.812668567020012],[-101.31260458349675,23.8244221987851],[-101.2948780861081,23.838831584851334],[-101.2889452012949,23.843617619734573],[-101.2853508834138,23.846534676701935],[-101.27626247085686,23.853914123598315],[-101.26790282488969,23.860690763119862],[-101.26256741284664,23.86488422078594],[-101.25646916849973,23.86970389874972],[-101.25095216438797,23.874182177775708],[-101.24880496333901,23.875902003864212],[-101.24168668402706,23.881423748423572],[-101.23758668287343,23.884592227980704],[-101.22937069507003,23.89086312233701],[-101.22704054545335,23.89256091540898],[-101.22279565887771,23.895789069342698],[-101.22004121362778,23.897923982816394],[-101.21558398799544,23.901333662595277],[-101.21316008925106,23.903168889553797],[-101.21190610214006,23.90419132991161],[-101.20923799093799,23.906123102582285],[-101.20662031519618,23.90803744123133],[-101.20406385254341,23.909985380232342],[-101.20244142270974,23.911210319831014],[-101.20051343806108,23.91269404769656],[-101.19664556806168,23.915556778049563],[-101.19417783354459,23.9174169786682],[-101.19250494627772,23.918559145786958],[-101.20183283569162,24.01103971411152],[-101.20694923718128,24.062314528852653],[-101.21674638210771,24.15973190806818],[-101.17323215588186,24.164136610171113],[-101.14429902423421,24.175653490333218],[-101.08567161830172,24.198967500049037],[-101.0704353582297,24.205021432574142],[-101.06540153798744,24.207021105024296],[-101.04790574225723,24.268236305703283],[-101.02690406201793,24.341484376300343],[-101.01268867220483,24.390819137674953],[-101.00699665384371,24.40018066595519],[-100.9987178101469,24.413794040566245],[-100.99606514424539,24.418155287039895],[-100.98732705182437,24.43251931329206],[-100.98711137615072,24.432217163641837],[-100.98581059265666,24.430751811302628],[-100.98487354066492,24.426808521691726],[-100.98610676557581,24.42446640568744],[-100.98592688832554,24.424254177812884],[-100.98617737631457,24.42406275777057],[-100.98630313608419,24.423674997211094],[-100.98707517015367,24.420008621265538],[-100.98791818847195,24.417793389766302],[-100.98970266194118,24.417993619002345],[-100.98930740563031,24.41430573122284],[-100.98760951017096,24.41254161953549],[-100.9882159589572,24.411978504250612],[-100.98823465384902,24.409551944150735],[-100.99306040049328,24.41134912756138],[-100.9949602378083,24.407392778214557],[-100.99766542691907,24.40730386623227],[-100.99778800739267,24.40656771592569],[-100.99783759741325,24.405478378853218],[-100.9977798147143,24.404936332374234],[-100.99966879859375,24.403871182540627],[-100.99966597513213,24.403631330309963],[-101.00002180000826,24.39844153488491],[-101.0029497498565,24.397542626592042],[-101.00143907823599,24.394767641243845],[-101.00549219490983,24.39013439579736],[-101.00551621423261,24.390051264112174],[-101.00849586455121,24.387574202114365],[-101.00798285359741,24.38687170184926],[-101.0074044009167,24.38636163747026],[-101.00737172496258,24.38586834450558],[-101.00739146022613,24.38511374941976],[-101.0096811555203,24.38447881397616],[-101.00950595064853,24.384180853308123],[-101.00868703193436,24.382535302213455],[-101.00811331786292,24.381983756681905],[-101.0074294493761,24.377615916117463],[-101.00475700212542,24.377502193962187],[-101.00610541493126,24.37562018552353],[-101.00643162562545,24.374807156881047],[-101.00674206756793,24.37410746663312],[-101.00543461484921,24.36857070100865],[-101.00329707576509,24.367702434675493],[-101.00552722791355,24.36220122913852],[-101.0061943139442,24.35859705102115],[-101.01062690337375,24.35681985101121],[-101.01066860681908,24.352500581287643],[-101.00985540974665,24.34842714413014],[-101.00686475298255,24.34552206151136],[-101.00548198966476,24.339184999757833],[-101.00607487743696,24.33751956009627],[-101.00667463114502,24.335834778094352],[-100.9452859906072,24.28119589009077],[-100.93418988036615,24.2887818474386],[-100.91872815361711,24.298866374171894],[-100.90712373663393,24.306435624720052],[-100.90611786269005,24.307091662155415],[-100.895104336712,24.314277602634547],[-100.87008731260835,24.330600401317724],[-100.85116273404401,24.342890467510188],[-100.85067517306311,24.34339695067598],[-100.85038150199193,24.34354082519485],[-100.8185080159534,24.377870411778474],[-100.80771464282321,24.387327793327984],[-100.80994755536369,24.386963410717158],[-100.77274677134369,24.426862578058945],[-100.74232428782403,24.460435469160075],[-100.7563285204397,24.481968510534728],[-100.7999341158548,24.556186077369205],[-100.80191074287342,24.5553201872263],[-100.81041636100616,24.551593783564215],[-100.82188477075334,24.552319598978386],[-100.82275603868266,24.552004511244377],[-100.83582489047058,24.553890605190645],[-100.84780564190038,24.555618602866787],[-100.86213511836246,24.562193164404277],[-100.86776979696646,24.564751373327],[-100.87274209276956,24.567008577478248],[-100.88026526629113,24.570472785920117],[-100.8805149637463,24.57057705807017],[-100.88054120030739,24.570588018915373],[-100.88055360344634,24.570593196975835],[-100.88289168448011,24.571677760419504],[-100.90057496659068,24.582861987096408],[-100.90223378473036,24.583917735743455],[-100.9128139290462,24.575947954415255],[-100.91977869403058,24.570712845509036],[-100.93466476942109,24.55957881266403],[-100.9587926057805,24.542684065048377],[-101.08049520376773,24.59118529949768],[-101.12761960124777,24.623361764639014],[-101.14774497923588,24.653985529126658],[-101.16464597124525,24.68155891943104],[-101.17903509085556,24.73295667578583],[-101.18177167648605,24.73894059752547],[-101.18180281976811,24.739014976760302],[-101.18843787101639,24.749353178922945],[-101.20172562835978,24.76548834876064],[-101.21503913435203,24.77516784438842],[-101.23608892444503,24.777878956398354],[-101.31312317425107,24.801410855644804],[-101.34214157441716,24.81335250794791],[-101.40215706533002,24.788222435312775],[-101.41265496009265,24.772055009629753],[-101.46163935229652,24.736756817026787],[-101.49170533116938,24.743775857959974],[-101.51941565089942,24.746469857875923],[-101.54057875862247,24.74558125101089],[-101.6004067322969,24.754396633499937],[-101.6222697137892,24.75898308187959],[-101.62418316772977,24.763343037524635],[-101.62485237622946,24.764832659670105],[-101.6407672251434,24.80070354441085],[-101.60901162561379,24.78966413963758],[-101.60745858419523,24.798863141392985],[-101.60416294215116,24.818379468481055],[-101.60376440018399,24.820739281070644],[-101.60126063048875,24.83556319412753],[-101.6563317653414,24.860793173845764],[-101.68514949081009,24.840012667605947],[-101.7267506637557,24.856747317953193],[-101.7734629566429,24.875535121363782]]]},"properties":{"cve_ent":"32"},"id":"inegi_refcenesta_2010.5"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-92.22410000115059,20.907999980919044],[-92.22180000115014,20.91209998098435],[-92.22470000115464,20.913699980901242],[-92.2286000011577,20.910599980789527],[-92.23930000116849,20.906499980479794],[-92.24410000117274,20.903599980339493],[-92.24490000117214,20.900899980316296],[-92.23980000116433,20.898399980466138],[-92.23600000116085,20.9005999805766],[-92.23440000116011,20.90259998062288],[-92.22820000115382,20.904999980801733],[-92.22740000115442,20.907699980824418],[-92.22410000115059,20.907999980919044]]],[[[-92.19820000112901,20.925799981645582],[-92.1976000011299,20.92869998166202],[-92.19960000113088,20.926199981606885],[-92.19820000112901,20.925799981645582]]],[[[-92.20280000113445,20.92559998151819],[-92.19840000113163,20.93009998163967],[-92.19880000113398,20.933399981628327],[-92.20070000113708,20.93459998157556],[-92.20310000113972,20.93409998150895],[-92.20650000114165,20.930099981414457],[-92.20660000113907,20.925399981412113],[-92.20870000114178,20.925599981353344],[-92.21210000114519,20.924199981257914],[-92.21710000114854,20.919399981117067],[-92.21710000114746,20.91759998111735],[-92.21410000114491,20.91949998120191],[-92.21360000114367,20.918399981216226],[-92.21610000114526,20.9158999811458],[-92.21530000114296,20.91359998116866],[-92.21300000114007,20.9134999812336],[-92.2030000011327,20.92199998151284],[-92.20510000113666,20.92439998145403],[-92.20280000113445,20.92559998151819]]],[[[-92.30250000130167,20.989399978544554],[-92.30850000130988,20.989499978353194],[-92.31230000131228,20.98519997823189],[-92.3141000013162,20.987499978173673],[-92.31560000131623,20.984399978125566],[-92.32020000132326,20.985499977976247],[-92.32490000132861,20.983899977823228],[-92.32630000132792,20.979999977777823],[-92.3240000013244,20.979399977853063],[-92.32170000132197,20.980399977928016],[-92.31830000131743,20.980399978038463],[-92.31360000131195,20.9819999781904],[-92.31290000130952,20.979599978213173],[-92.31500000131257,20.979999978145372],[-92.31780000131522,20.978099978055127],[-92.32100000131936,20.977899977951154],[-92.32440000132215,20.974999977840525],[-92.32270000131848,20.972999977896393],[-92.3200000013154,20.973899977984217],[-92.31860000131178,20.971199978029915],[-92.31370000130619,20.972699978188302],[-92.30640000129915,20.97709997842196],[-92.30800000130273,20.97929997837042],[-92.30570000130206,20.98309997844359],[-92.30110000129662,20.984399978589693],[-92.30170000129874,20.986399978570432],[-92.29820000129445,20.986999978681183],[-92.29920000129704,20.988999978649304],[-92.30250000130167,20.989399978544554]]],[[[-87.53491290091256,21.490222449389137],[-87.54683001715244,21.490773761492164],[-87.55736647760227,21.493058652701734],[-87.57196110983824,21.495692511723462],[-87.60422372934045,21.502919244758004],[-87.63523767325637,21.510711150617908],[-87.64507646645023,21.512757864190235],[-87.66073464081649,21.515219684634474],[-87.68629980066703,21.521334913427836],[-87.68710815625764,21.517728337102255],[-87.6880358683407,21.51906228936275],[-87.69725800416006,21.52040587784336],[-87.72508094096816,21.52708186502349],[-87.73836082348942,21.530390860096304],[-87.77990256677703,21.54228832538945],[-87.79670889821097,21.547424124160045],[-87.81844606728953,21.55480785939892],[-87.84179273391356,21.56383871967256],[-87.85399047669483,21.56871387074068],[-87.87156674410556,21.57617313426539],[-87.8784578859159,21.57966389051319],[-87.89116760488218,21.585278973171057],[-87.90674580426861,21.590778067137705],[-87.91103934913423,21.59169998011106],[-87.91692408182826,21.59427559227032],[-87.92423138117778,21.596770558143533],[-87.93333469463914,21.60115055720223],[-87.95328409684583,21.607662593176883],[-87.9629081568878,21.61013107692355],[-87.96920834893314,21.610369109909072],[-87.98188781303338,21.610300853156787],[-87.98941666782463,21.61110769684643],[-87.99400213073125,21.61055901527851],[-88.01914066268245,21.610316050689107],[-88.02957126075626,21.610417900401956],[-88.0482932813108,21.6117194583407],[-88.06983330376715,21.613828600997294],[-88.08236535951949,21.615703185271457],[-88.09704149930906,21.61923061198445],[-88.1042374211919,21.621368040595485],[-88.11373306071431,21.623120937913257],[-88.13208815655275,21.625088118490282],[-88.14502035925204,21.623950394939357],[-88.14974335401195,21.62300289426588],[-88.15902162072723,21.620209651938808],[-88.16830968545372,21.616056527589876],[-88.17758855209775,21.613342197683778],[-88.17484358188818,21.610634684292677],[-88.17629982934602,21.60833090278635],[-88.18177746557552,21.606105353765543],[-88.19056933555163,21.604291340225416],[-88.20038972451272,21.600023804835303],[-88.21016935437069,21.594341953655317],[-88.2194568232357,21.588554513564418],[-88.22212656327974,21.587545718070373],[-88.22977644865216,21.58324356872373],[-88.2325779093494,21.58262252734204],[-88.23072250101723,21.57932882671014],[-88.23437199983874,21.578192574260186],[-88.23932661833015,21.577893688835104],[-88.24018357107298,21.574877579554766],[-88.23816985765438,21.574291005982104],[-88.23830875725764,21.567414755558673],[-88.24128470124185,21.56795699273397],[-88.24394981146042,21.564634275325204],[-88.24325358542058,21.563367721458462],[-88.24694397406842,21.56352460505508],[-88.24867806167623,21.562432374247408],[-88.25049518770959,21.56353506363837],[-88.25490422445392,21.56405567129741],[-88.25729241315412,21.561766422778646],[-88.25993103320434,21.56166737369682],[-88.26310686059207,21.55891729124795],[-88.26657255843224,21.55824314023772],[-88.2686668502721,21.55602674433095],[-88.27343696448372,21.555926416319608],[-88.27761616412812,21.56099233478392],[-88.27923560748405,21.55969149033183],[-88.28130090339533,21.55496567597845],[-88.28624733371396,21.55724565288955],[-88.28826115488056,21.55529677992098],[-88.29346667233602,21.55342431937987],[-88.29692735401062,21.552952847639972],[-88.30058103758807,21.555532092982617],[-88.3005775658051,21.55146695243576],[-88.3089862001828,21.55291574337241],[-88.31194238497778,21.552251008515043],[-88.31389976830627,21.55308174291008],[-88.31704346528778,21.55063809325378],[-88.32066329234073,21.552472533488867],[-88.32251887039638,21.550451162334866],[-88.32376539154251,21.552423571673614],[-88.32718343737429,21.552520680567],[-88.33229407342492,21.55448829679233],[-88.33765207984862,21.553857534772987],[-88.344179965651,21.55789611165568],[-88.34727216642483,21.55693440098389],[-88.34979243475959,21.557475162404785],[-88.35416996771232,21.562120867134297],[-88.35889481282231,21.56421480757399],[-88.3617288812573,21.561661884187174],[-88.36248465623294,21.56370916275398],[-88.37134301316962,21.566357715263507],[-88.37432233515602,21.56567513889354],[-88.37551677455912,21.567705575255843],[-88.37892489178944,21.565835870543765],[-88.38672508638871,21.56510598646895],[-88.39195276522281,21.565719744654018],[-88.39755097476763,21.565389565413284],[-88.40323792288967,21.564288516343936],[-88.41486469569816,21.560616399669925],[-88.416011991488,21.560865301954834],[-88.42247193078748,21.558447459387253],[-88.44262765637541,21.555374974934807],[-88.45850065468619,21.553798884323328],[-88.47070758234236,21.549858355840115],[-88.47461863305807,21.549620318422967],[-88.47931812573779,21.547949629500977],[-88.48303529909509,21.54753187836866],[-88.48811125805457,21.545392648857955],[-88.4975998092529,21.543669274096317],[-88.5088852789616,21.539385922063218],[-88.52159046194373,21.535227086614384],[-88.52766872683623,21.533944564078922],[-88.53357876966635,21.53378479140224],[-88.54410350302669,21.53555059379562],[-88.54986959750215,21.53469375379791],[-88.5609679802808,21.532201453466996],[-88.56396108087716,21.530603157558915],[-88.57224235054912,21.529799467349108],[-88.57948099213888,21.528209463935184],[-88.58857493193779,21.52679599203958],[-88.60134513375016,21.52589447177826],[-88.61612128688597,21.521971374972452],[-88.62036651047384,21.520124011864482],[-88.62912081727768,21.514888091084515],[-88.63276694085334,21.507039860520763],[-88.63709465913877,21.50260367313973],[-88.64246846980507,21.4958180129222],[-88.65537598110637,21.48490615156834],[-88.6639996409699,21.47935830073186],[-88.67626553060518,21.47007513231813],[-88.683444637778,21.46519965317418],[-88.68896577584883,21.460574529398798],[-88.69395589489784,21.455383810778187],[-88.69473919499598,21.45107324779451],[-88.69922785028297,21.450270636864616],[-88.70392665137678,21.447356496938767],[-88.71093297868975,21.444366010465558],[-88.7145895650275,21.44205541298902],[-88.72590080294952,21.436702889200717],[-88.73168317404412,21.43360294913839],[-88.73748025140287,21.431135407068894],[-88.75593606232837,21.42615670090902],[-88.76734449317723,21.42549610293412],[-88.77395959641103,21.424623134342482],[-88.78323682033567,21.42256723431109],[-88.79653184146025,21.419992052109762],[-88.79959333512585,21.41665487900923],[-88.79989666885058,21.41453300838458],[-88.79684167270898,21.41736305126267],[-88.79885047686969,21.412474888521615],[-88.80615634712768,21.411933046189574],[-88.80853750604751,21.41080232678644],[-88.81407760292547,21.410345291423823],[-88.81972157191763,21.40733351549295],[-88.82430998419659,21.40565593138274],[-88.82533207183377,21.40410358580857],[-88.83151096026506,21.401799062910015],[-88.83715412318202,21.401006321832426],[-88.84090500836987,21.39880759105648],[-88.84823043867453,21.398557513361766],[-88.85542298102098,21.39630371699195],[-88.86136283428613,21.3958041512343],[-88.86730959710911,21.39641157900195],[-88.87077526631106,21.395846123795366],[-88.88448625242438,21.39565965988544],[-88.8866659625134,21.394561384491112],[-88.89154610528215,21.39409687721826],[-88.89418107725726,21.393125114347185],[-88.91244344984801,21.389663944893925],[-88.92075222588596,21.387337255697787],[-88.93043204148296,21.386785554794358],[-88.94096081271277,21.3854313357744],[-88.95025068069413,21.385294188125783],[-88.95731337009954,21.38450556005006],[-88.96506539470727,21.382814047900865],[-88.97090396015687,21.382050861630034],[-88.97503691493665,21.380611178605136],[-88.98299263648227,21.379168575134372],[-88.9932877231808,21.377849010339162],[-88.99486880181456,21.377187551368138],[-89.01645419105415,21.374250400011192],[-89.02185766921747,21.37419357158285],[-89.02908469365804,21.373218292969227],[-89.0434417725541,21.37197556605122],[-89.05463717946054,21.370001935128528],[-89.06463737280478,21.367730242904543],[-89.07446783957141,21.36694546914049],[-89.08178011721571,21.364211986410396],[-89.0875311592327,21.36286515640535],[-89.08791218735973,21.361965709400465],[-89.10595929060668,21.358554681516125],[-89.11865404574166,21.357669905245075],[-89.12219123550784,21.357059751570773],[-89.1365193036745,21.356626290475504],[-89.14381386652167,21.3568008751177],[-89.14474278650198,21.356067915588937],[-89.15090973028538,21.35506928443283],[-89.16685032647098,21.35499807721635],[-89.17741688398974,21.354182569640045],[-89.18927522129701,21.352924124489107],[-89.21018310684002,21.349429833254817],[-89.22564365654466,21.34822371436894],[-89.24773368692092,21.345592542276677],[-89.26034343450323,21.34427851072377],[-89.26811125057856,21.34378258360806],[-89.28152574690876,21.34246413573061],[-89.28872519400795,21.342175122582603],[-89.30646740162939,21.34261061633424],[-89.30957267731833,21.342903088441062],[-89.30953343659405,21.34112759056984],[-89.31812900703329,21.338788130799003],[-89.32718659581434,21.338435867777605],[-89.33274605361095,21.33739943168314],[-89.34835361239419,21.335741815569463],[-89.35638423758996,21.334586195882594],[-89.37552480820602,21.332986281303988],[-89.38464908480427,21.3319016110039],[-89.3991187229094,21.330718977333277],[-89.4038039236849,21.32924251026202],[-89.41501021647207,21.327032741672383],[-89.43300426103144,21.324954782810494],[-89.44246767780669,21.324200159836266],[-89.45443420278963,21.322211332546544],[-89.46101893155969,21.321698498200703],[-89.48014030057112,21.31914503102115],[-89.4899439539899,21.317274190879857],[-89.49599719775932,21.31676040845457],[-89.5080319215794,21.3148305660485],[-89.51214737573315,21.313666695922507],[-89.52108359642477,21.312841632607444],[-89.5458049988593,21.30865838792272],[-89.5528253180849,21.307707241898584],[-89.56425508377089,21.30360214401702],[-89.56886154853441,21.30235058563369],[-89.58067064354606,21.3006523771532],[-89.58524544714163,21.29955228228488],[-89.60518404428359,21.29658151630889],[-89.61807633612426,21.29397998505675],[-89.62773517074226,21.292666737504987],[-89.63541862973938,21.291118745067138],[-89.64546510833964,21.289666364085974],[-89.6646407747993,21.28843079839777],[-89.66625614142635,21.30312323723524],[-89.6662164453503,21.304998601247235],[-89.67082358074504,21.345603337999762],[-89.67369443170679,21.34656931894955],[-89.67541615603778,21.348366099998316],[-89.68126626500657,21.349025757334005],[-89.68145987310726,21.34541908370562],[-89.67594245485714,21.34482760322163],[-89.67450362870613,21.346191751157562],[-89.67120812404471,21.345352061280835],[-89.67091005625275,21.34238874835711],[-89.67296120253258,21.340122008063304],[-89.67056827875638,21.33929614857567],[-89.6648502974395,21.28847318322852],[-89.67126755687741,21.285154636081074],[-89.67606757803094,21.283715199500136],[-89.69123934991472,21.28214634346233],[-89.70275872159249,21.282822722804724],[-89.70437707757367,21.27957056557443],[-89.71684994872334,21.27731154680913],[-89.72302275938011,21.275668125600987],[-89.73428439284169,21.273689200847684],[-89.75598333209615,21.268453618602962],[-89.76284720193496,21.26758868445802],[-89.77040175470802,21.26590420438913],[-89.77404875175813,21.26419216822137],[-89.79081572247748,21.261125699339345],[-89.79538783574765,21.258964548082474],[-89.80583293403191,21.25674167108997],[-89.82447375119091,21.253642735559026],[-89.8314708552524,21.25280240657787],[-89.84022301045377,21.2503679988493],[-89.84502496163651,21.250478260413445],[-89.84411360549717,21.247897077385062],[-89.85024466965638,21.245592974589954],[-89.86129791496143,21.243462401944328],[-89.87674860381645,21.238891565129506],[-89.88938640097098,21.234353848107105],[-89.89083176675928,21.232849951957462],[-89.89383364131447,21.23232199286855],[-89.90108700360008,21.229322507234826],[-89.91466903371384,21.22270981586223],[-89.9198794755194,21.220478181122473],[-89.92777335780022,21.216397571325388],[-89.94476511263201,21.20592992565372],[-89.95069541609291,21.202003293976986],[-89.95323952278767,21.199422211155593],[-89.961929028533,21.194968039786602],[-89.96960595640934,21.190629600794523],[-89.9856485999299,21.180850584945006],[-90.00037842675886,21.175097910504178],[-90.01469099577866,21.170764563316254],[-90.03771192469799,21.16574843744195],[-90.042604171336,21.16545115009626],[-90.0491300755499,21.165885377348673],[-90.0477702456842,21.16120045952323],[-90.0489920463516,21.16237791581716],[-90.0602896524041,21.160796650855502],[-90.07271700761015,21.160060750079992],[-90.07672423632778,21.159090693428823],[-90.08762745364328,21.15745608226308],[-90.09461232985552,21.155552768005066],[-90.10305761941913,21.149510584215136],[-90.12151440633392,21.140310799787528],[-90.14070482526239,21.131099988350798],[-90.14759266584969,21.12724647489648],[-90.16290370959803,21.11786651689789],[-90.17077812166121,21.111913227855894],[-90.19070993311709,21.098649499197222],[-90.19620668102567,21.094567260090457],[-90.20523807744928,21.089032036933986],[-90.21449050177154,21.083795692420438],[-90.22137504627312,21.079434088446817],[-90.2334949584502,21.073389524725997],[-90.23965278452602,21.069195756181102],[-90.25066243172677,21.063539645167054],[-90.25889003675746,21.058568627269665],[-90.2699318514143,21.05317214916937],[-90.27953300202387,21.0466764852913],[-90.29343886962715,21.039102475165578],[-90.3057175457551,21.03174463541916],[-90.31329924851457,21.02648308953826],[-90.32249321895722,21.02062374882746],[-90.32721930042419,21.016845624834446],[-90.33395003665612,21.010459874518347],[-90.34021326528358,21.003525933555466],[-90.34614472020894,20.99435115279954],[-90.3621382384406,20.96868566929163],[-90.36645173493571,20.96105682973314],[-90.36932009843957,20.953595044069857],[-90.37573196462068,20.93203601361904],[-90.38489513884895,20.90661316505083],[-90.38587599757545,20.901504797093764],[-90.38847969807563,20.894497003703748],[-90.39107282502374,20.886187073608028],[-90.39160968813985,20.882681764238725],[-90.39462478779166,20.873943297907033],[-90.40268737774608,20.85872544284257],[-90.40231455418285,20.85565533202862],[-90.40490883982943,20.849865916764088],[-90.40683277124947,20.847745762258626],[-90.40452435815138,20.84676359004078],[-90.39984720435336,20.845286799735277],[-90.37935699640639,20.84832728857731],[-90.38664878553914,20.55558579387241],[-90.34113810856064,20.553701118589174],[-90.33523611127856,20.576347702461362],[-90.33523611049645,20.54131230878096],[-90.23458338584561,20.545343182092893],[-90.23493610210494,20.544109033559835],[-90.22924096389653,20.543562885767074],[-90.23250802443346,20.519894050331118],[-90.2237666566715,20.519164963342803],[-90.23420799357024,20.47046660896251],[-90.18478790020583,20.461046138956988],[-90.18629757892433,20.43693232788729],[-90.17847952059134,20.437656019118492],[-90.16940061609586,20.44056023545386],[-90.16051482703574,20.441862775295704],[-90.147776929641,20.44159935479621],[-90.13246053773724,20.439655162242786],[-90.13103821823512,20.44275029249019],[-90.12927339057393,20.44035242025143],[-90.1189334562568,20.43667490349742],[-90.10776562708918,20.431489121077732],[-90.10506689500698,20.428488350258533],[-90.10141842399582,20.426475416500182],[-90.10097353057142,20.425251776525613],[-90.06721066023738,20.425225896236384],[-90.06601857048452,20.433975480476477],[-90.05709876396116,20.4329658789855],[-90.05527218435503,20.44451439188299],[-90.05097245831695,20.45295701825023],[-90.04918965753097,20.454164262354027],[-90.05004769290969,20.456028575287405],[-90.04809072789993,20.459824264968006],[-90.03968993968186,20.468220830043208],[-90.03490437527108,20.46967219205868],[-90.02606784933204,20.473656695741965],[-90.02034767473145,20.477082883404933],[-90.00562472741132,20.477367197375713],[-90.0041736757604,20.4870218782886],[-89.92892638771559,20.39663820551948],[-89.8379638762633,20.287175879915424],[-89.87238230610541,20.287628086991674],[-89.87566069125722,20.253101950762925],[-89.8406781621294,20.251027504054434],[-89.84609566725305,20.213771193452146],[-89.84616491525549,20.209686980871766],[-89.84345314839697,20.20927506320521],[-89.80250527564857,20.201605080623153],[-89.80287086639976,20.164906605374256],[-89.7939747868225,20.136171942080864],[-89.78784381590629,20.144447968545535],[-89.77823448195107,20.15096532494215],[-89.77345318874467,20.153084139541818],[-89.75278665590832,20.17654874559912],[-89.74847417483187,20.17926972188218],[-89.68484601232808,20.102416732127267],[-89.59870388587996,19.998197378372936],[-89.60467007800395,19.938284966653555],[-89.59584175442978,19.937422047325526],[-89.59744587138835,19.92112234287879],[-89.58681034352645,19.920460030974766],[-89.58749974831323,19.87442004440601],[-89.57175751204511,19.852955292695754],[-89.57742986131484,19.853508866527648],[-89.54967867996072,19.816219230457136],[-89.53613009373794,19.797458038012223],[-89.52567236501767,19.77555465036511],[-89.5151085156711,19.77426627397341],[-89.47590945703217,19.771220205553504],[-89.47914943351475,19.740645557759876],[-89.49166182300195,19.742228442183944],[-89.47992974751702,19.716553212079134],[-89.47722008037147,19.711054958436137],[-89.46829547653141,19.700161288908816],[-89.4481130052788,19.69835350112163],[-89.41247852950517,19.649376296793548],[-89.2965618139308,19.551174096041393],[-89.27094496390129,19.56995542319123],[-89.2348609384668,19.596911673425893],[-89.21955656808746,19.608022252343233],[-89.22286874611973,19.636656969725493],[-89.19024963740668,19.63331773969702],[-89.18920313082396,19.644005935007897],[-89.14486168688654,19.637398729114523],[-89.14952064561248,19.581249340188606],[-89.10902446232734,19.582349378628464],[-89.1083916785085,19.61233848463621],[-89.1336406063295,19.614632028283324],[-89.12339852094283,19.703424148859767],[-89.07421269929478,19.694194101961443],[-89.07603060599314,19.685432547754658],[-89.03620045390176,19.678039520037316],[-89.03052362652147,19.70883175397472],[-88.99752938408551,19.704883889625194],[-88.99474127840779,19.727439604487643],[-89.01538533089331,19.722973380223436],[-89.01695185278652,19.72638671320857],[-89.04882706699078,19.721493324570304],[-89.0251629918821,19.776709672432617],[-89.00408743710818,19.772007405157865],[-88.99946797103871,19.797994377731186],[-88.98440499142816,19.798160255841367],[-88.98443914713653,19.80520513703692],[-88.97610850838731,19.81076583810915],[-88.9744517669933,19.81810082625151],[-88.95638671787242,19.816823561308127],[-88.9580767987569,19.81046653808579],[-88.94385213597315,19.81344278149379],[-88.94543375720951,19.79194632065486],[-88.92951246600524,19.79094856112829],[-88.92029413854618,19.803973914180972],[-88.911103973796,19.80093758477244],[-88.90973094513271,19.8135877031242],[-88.90820975066003,19.82066109169756],[-88.90506588657092,19.82670352024371],[-88.90348110718509,19.831046235783788],[-88.89972485960448,19.833346877964914],[-88.89758543540904,19.836862535686123],[-88.89881164274323,19.8516626035738],[-88.90048801235451,19.861114021437572],[-88.89042159151427,19.858544532135568],[-88.89056856898986,19.860968611402313],[-88.87912483142571,19.862393229455165],[-88.88019153508446,19.87812487247703],[-88.85422770464203,19.878482509812955],[-88.83304300389835,19.878227115082495],[-88.83213942635331,19.881606057184797],[-88.82592633077752,19.879925582547855],[-88.82041404928509,19.890473157503664],[-88.82982472490431,19.898554441074566],[-88.82736545267522,19.90448769076022],[-88.82943671990029,19.906014600007097],[-88.82728274560134,19.910920368352436],[-88.8231524912564,19.90814914358333],[-88.8244254112733,19.904762909368685],[-88.82273400469995,19.90414367175481],[-88.82016590501269,19.905558513502342],[-88.81650328662829,19.90447352039405],[-88.81614280596625,19.91549903412198],[-88.81333318439164,19.918282817729164],[-88.81258438250592,19.925555030360727],[-88.80974486834742,19.92599094449963],[-88.80888834013382,19.934121300885465],[-88.81141816429653,19.93524220940793],[-88.8101762097096,19.94494667146921],[-88.806040752336,19.9445686401217],[-88.80563950779549,19.953830742208368],[-88.79837764082339,19.952523010267498],[-88.79875598828437,19.970493879190258],[-88.7980223851115,19.974930071104723],[-88.79077080359588,19.972020183328823],[-88.79047987646436,19.992133508341794],[-88.78921226339025,19.995568217158507],[-88.78441571245492,19.995239627095657],[-88.78350258673424,20.008180188257825],[-88.77118053181084,20.007670390810176],[-88.77146564433667,20.013463235848178],[-88.7576975980619,20.012191928027733],[-88.75777327495325,20.013936209491874],[-88.74247207016958,20.015087354688433],[-88.74261536088369,20.008582790648347],[-88.7362455675837,20.009661309838748],[-88.73234814535783,20.01406619863593],[-88.73581072759498,20.015987553072364],[-88.73597890692196,20.017576552633273],[-88.7265700079817,20.01476894681292],[-88.72278249627033,20.01319974783894],[-88.7237775577562,20.005499174896272],[-88.72214820079455,20.005124068786188],[-88.71843477193426,20.010321245254772],[-88.71304142443284,20.00916345156702],[-88.71252358310483,20.01229559138011],[-88.70017616178643,20.01035672596612],[-88.69475253222686,20.030035662783064],[-88.69179628627728,20.029213409371607],[-88.68489182938742,20.07741431750793],[-88.69080211043553,20.077029564328882],[-88.69060890430757,20.089856127802648],[-88.63986639490162,20.12035606200112],[-88.61917315388303,20.11717153502144],[-88.61862356953657,20.127769160905814],[-88.6209386849809,20.130431738707102],[-88.62080845762961,20.131803559779655],[-88.61638362507688,20.13446081459972],[-88.61277255377257,20.134297478641656],[-88.61270595653303,20.133125051812442],[-88.58797352198076,20.131451195444242],[-88.587675666277,20.14046968064696],[-88.57815046077559,20.139174272829678],[-88.576681547514,20.148078303093712],[-88.50762119430033,20.143391092223965],[-88.50234525113399,20.190077958320614],[-88.5199299497171,20.192328028816974],[-88.44342618128883,20.238149782202697],[-88.41511379814591,20.232970443834233],[-88.4091223986158,20.23972814204467],[-88.40289200106173,20.23948887008794],[-88.4051941326943,20.246145039505507],[-88.40912773799664,20.25209732413623],[-88.40097336841751,20.25176751200587],[-88.39540419874749,20.253543439544615],[-88.3708070199479,20.25778968137797],[-88.35660149991043,20.25831351006184],[-88.3519033719727,20.259023064029066],[-88.34156945833678,20.257582424568227],[-88.30878843372119,20.253510036926002],[-88.27296138764171,20.26993127020546],[-88.26681494693753,20.269120326883012],[-88.26463419339888,20.290342031396165],[-88.23266947279592,20.29017891122703],[-88.23270516629856,20.286998448625695],[-88.16716243858787,20.28541803958882],[-88.1364896002462,20.281371785152032],[-88.04730660491805,20.36630872636573],[-88.04753328251581,20.378818166534302],[-88.03403006595676,20.37894009483051],[-87.99296002510272,20.4179929209169],[-87.9929488298547,20.45388649417754],[-87.97837008330913,20.454294043842708],[-87.97796539411172,20.447010964735966],[-87.96273213553661,20.446715438880233],[-87.87926756058232,20.525932396409928],[-87.74425947136587,20.653787090857747],[-87.67572730258041,20.76626335653441],[-87.5783406788824,20.925736665741567],[-87.53314528031325,20.999602132447592],[-87.53320400203728,21.01595620351617],[-87.5340169052771,21.241960377251985],[-87.53491290091256,21.490222449389137]]],[[[-92.07920000142883,21.83779998463615],[-92.07990000143099,21.840099984619542],[-92.081600001433,21.838399984579212],[-92.07920000142883,21.83779998463615]]],[[[-91.38280000064083,22.11739999506233],[-91.38350000064105,22.11539999505635],[-91.3802000006383,22.116599995084414],[-91.38280000064083,22.11739999506233]]],[[[-89.66790000002777,22.374699999661118],[-89.67170000002812,22.37859999966014],[-89.67750000002849,22.379099999658706],[-89.67610000002838,22.37539999965884],[-89.67260000002807,22.37419999965971],[-89.66790000002777,22.369099999660875],[-89.66600000002757,22.369499999661457],[-89.66220000002733,22.37459999966279],[-89.66410000002759,22.374999999662123],[-89.66700000002771,22.37249999966133],[-89.66790000002777,22.374699999661118]]],[[[-89.66030000002723,22.374599999663133],[-89.65780000002707,22.376699999663913],[-89.65700000002704,22.379199999664138],[-89.65940000002729,22.38029999966369],[-89.66030000002723,22.374599999663133]]],[[[-89.66350000002757,22.381999999662582],[-89.66490000002767,22.385099999662202],[-89.66580000002773,22.38379999966196],[-89.66350000002757,22.381999999662582]]],[[[-89.69410000002983,22.388999999654175],[-89.69210000002971,22.392599999654806],[-89.69330000002981,22.39579999965474],[-89.6940000000298,22.392999999654364],[-89.69790000003007,22.388499999653106],[-89.69410000002983,22.388999999654175]]],[[[-89.68620000002926,22.38889999965653],[-89.68800000002932,22.389599999656014],[-89.68800000002943,22.39409999965619],[-89.68950000002962,22.39729999965573],[-89.6908000000297,22.3954999996555],[-89.69080000002964,22.39069999965517],[-89.69320000002978,22.388499999654528],[-89.69320000002972,22.386799999654386],[-89.69120000002948,22.38659999965489],[-89.68560000002907,22.38309999965645],[-89.67890000002865,22.382199999658326],[-89.6810000000288,22.385699999657845],[-89.68050000002881,22.387799999658057],[-89.68620000002926,22.38889999965653]]],[[[-89.74170000003426,22.443399999641315],[-89.74100000003426,22.444099999641537],[-89.74500000003462,22.447299999640336],[-89.74950000003497,22.446299999638825],[-89.75020000003502,22.44479999963852],[-89.74800000003478,22.44319999963915],[-89.74170000003426,22.443399999641315]]],[[[-89.75580000003544,22.449699999636778],[-89.76500000003637,22.45389999963362],[-89.76990000003678,22.45339999963187],[-89.76310000003616,22.45119999963424],[-89.75690000003567,22.447699999636313],[-89.75490000003538,22.445099999636852],[-89.74880000003498,22.44699999963899],[-89.74790000003486,22.448499999639296],[-89.75050000003506,22.44959999963862],[-89.75580000003544,22.449699999636778]]],[[[-89.74560000003481,22.457399999640415],[-89.747100000035,22.459899999640015],[-89.75050000003523,22.459599999638783],[-89.7532000000354,22.4569999996379],[-89.75150000003526,22.455599999638423],[-89.75000000003513,22.456899999638836],[-89.74560000003481,22.457399999640415]]],[[[-89.77600000003753,22.466599999630205],[-89.78270000003823,22.471799999627876],[-89.78510000003848,22.47029999962706],[-89.77820000003766,22.462799999629283],[-89.77650000003752,22.4620999996298],[-89.7721000000372,22.462299999631455],[-89.77100000003702,22.464599999631844],[-89.77260000003724,22.466199999631556],[-89.77600000003753,22.466599999630205]]],[[[-89.76700000003683,22.469499999633513],[-89.76700000003689,22.47189999963365],[-89.76950000003706,22.470199999632655],[-89.76700000003683,22.469499999633513]]],[[[-89.77620000003793,22.488199999630865],[-89.77550000003794,22.49269999963144],[-89.77610000003801,22.495699999631142],[-89.78180000003869,22.504699999629565],[-89.79140000003969,22.515499999626286],[-89.79210000003962,22.50569999962562],[-89.78430000003868,22.494199999628165],[-89.78290000003858,22.492999999628694],[-89.78050000003827,22.48789999962935],[-89.78470000003864,22.49039999962781],[-89.7856000000387,22.48819999962751],[-89.78390000003856,22.485399999627987],[-89.78240000003825,22.480599999628396],[-89.78510000003854,22.480899999627468],[-89.78650000003864,22.479299999626903],[-89.78200000003818,22.47509999962824],[-89.7752000000375,22.471499999630623],[-89.77500000003755,22.473699999630924],[-89.7765000000378,22.47649999963039],[-89.77620000003793,22.488199999630865]]],[[[-89.7580000000367,22.514299999638183],[-89.75720000003668,22.515999999638495],[-89.7585000000368,22.51849999963821],[-89.76030000003692,22.51749999963755],[-89.7580000000367,22.514299999638183]]],[[[-89.76510000003725,22.512799999635774],[-89.76240000003713,22.51699999963688],[-89.76560000003752,22.524099999636007],[-89.76670000003759,22.52219999963546],[-89.76600000003737,22.515499999635495],[-89.76510000003725,22.512799999635774]]],[[[-89.73870000003501,22.514099999644714],[-89.73770000003492,22.514299999645118],[-89.73600000003489,22.52079999964593],[-89.73670000003506,22.525299999645767],[-89.7384000000352,22.528099999645235],[-89.7403000000354,22.52829999964473],[-89.74210000003546,22.521799999643918],[-89.7417000000354,22.51819999964397],[-89.74010000003517,22.514399999644297],[-89.73870000003501,22.514099999644714]]],[[[-89.7280000000344,22.527899999648582],[-89.72690000003433,22.532899999649317],[-89.72940000003456,22.536199999648602],[-89.73180000003481,22.53759999964791],[-89.73200000003476,22.53529999964769],[-89.73010000003461,22.532099999648153],[-89.7294000000345,22.528099999648305],[-89.7280000000344,22.527899999648582]]],[[[-89.75960000003721,22.546099999638898],[-89.76200000003752,22.54609999963799],[-89.76420000003765,22.543699999637113],[-89.76640000003789,22.54289999963629],[-89.76620000003777,22.5375999996362],[-89.76940000003805,22.537799999635183],[-89.77000000003801,22.533899999634684],[-89.76890000003789,22.53139999963497],[-89.76890000003777,22.526399999634805],[-89.7674000000377,22.525499999635485],[-89.76660000003767,22.527599999635868],[-89.76300000003744,22.53149999963705],[-89.76370000003749,22.53629999963715],[-89.75980000003716,22.534899999638412],[-89.76030000003732,22.54069999963849],[-89.75830000003708,22.54379999963919],[-89.75960000003721,22.546099999638898]]],[[[-89.73460000003513,22.542599999646995],[-89.73300000003502,22.545699999647695],[-89.73280000003496,22.548399999647813],[-89.73500000003526,22.551599999647237],[-89.73650000003539,22.550499999646775],[-89.73660000003531,22.544599999646607],[-89.73460000003513,22.542599999646995]]],[[[-89.77930000003897,22.53969999963158],[-89.77810000003888,22.54359999963225],[-89.778300000039,22.547699999632187],[-89.78030000003929,22.551299999631624],[-89.78240000003939,22.551299999630942],[-89.78330000003933,22.543699999630235],[-89.77930000003897,22.53969999963158]]],[[[-89.74190000003563,22.533699999644455],[-89.7406000000355,22.536299999644996],[-89.74150000003567,22.542199999644822],[-89.74070000003582,22.552099999645407],[-89.7415000000359,22.555599999645267],[-89.74320000003598,22.55499999964485],[-89.74400000003601,22.548199999644055],[-89.745200000036,22.5434999996437],[-89.74280000003563,22.533799999644202],[-89.74190000003563,22.533699999644455]]],[[[-89.74450000003617,22.554999999644338],[-89.74360000003605,22.55709999964472],[-89.74580000003624,22.557799999643805],[-89.74570000003615,22.554599999643926],[-89.74450000003617,22.554999999644338]]],[[[-89.76600000003793,22.551899999636873],[-89.76560000003803,22.55519999963707],[-89.76750000003824,22.558899999636594],[-89.7693000000383,22.55989999963583],[-89.7688000000382,22.55429999963593],[-89.76600000003793,22.551899999636873]]],[[[-89.76440000003794,22.560799999637652],[-89.76180000003768,22.561599999638645],[-89.76420000003793,22.56359999963786],[-89.76550000003812,22.566399999637554],[-89.76680000003819,22.563299999636854],[-89.76440000003794,22.560799999637652]]],[[[-89.7456000000364,22.565799999644412],[-89.74480000003638,22.57159999964483],[-89.7464000000366,22.574399999644356],[-89.74770000003667,22.573899999643857],[-89.74810000003657,22.567599999643562],[-89.7456000000364,22.565799999644412]]],[[[-89.74310000003624,22.574899999645424],[-89.7437000000362,22.56769999964513],[-89.7423000000361,22.56459999964528],[-89.74160000003621,22.57459999964601],[-89.74310000003624,22.574899999645424]]],[[[-89.78810000004046,22.577999999629753],[-89.78980000004054,22.578799999629155],[-89.79560000004108,22.578299999626893],[-89.79690000004115,22.576999999626423],[-89.79560000004108,22.5745999996268],[-89.78370000003997,22.577199999631432],[-89.77650000003928,22.576699999633945],[-89.77840000003948,22.578499999633323],[-89.78370000004003,22.57779999963134],[-89.78810000004046,22.577999999629753]]],[[[-89.78250000003897,22.51759999962968],[-89.78160000003885,22.517999999630092],[-89.78340000003902,22.522399999629442],[-89.79020000003987,22.532299999627185],[-89.79360000004027,22.53779999962626],[-89.79490000004046,22.543499999625908],[-89.79560000004062,22.550699999626033],[-89.79630000004084,22.551899999625846],[-89.79730000004093,22.55999999962563],[-89.80080000004136,22.56469999962445],[-89.80100000004148,22.567899999624558],[-89.7993000000414,22.572099999625323],[-89.80180000004168,22.57619999962452],[-89.80290000004186,22.57969999962421],[-89.80520000004208,22.579499999623295],[-89.80610000004208,22.577399999622912],[-89.80630000004203,22.570199999622446],[-89.80510000004176,22.565299999622937],[-89.80360000004157,22.562499999623242],[-89.80220000004118,22.54679999962326],[-89.80060000004107,22.54459999962387],[-89.79790000004061,22.534499999624472],[-89.79740000004051,22.530499999624624],[-89.79330000004006,22.524399999625814],[-89.78810000003949,22.518999999627567],[-89.78250000003897,22.51759999962968]]],[[[-89.77270000003892,22.579799999635327],[-89.77420000003917,22.581699999634964],[-89.77410000003914,22.578999999634902],[-89.76930000003864,22.5787999996366],[-89.77270000003892,22.579799999635327]]],[[[-89.79870000004144,22.579699999625802],[-89.79680000004134,22.581199999626676],[-89.79880000004152,22.589099999626058],[-89.8006000000417,22.588699999625476],[-89.8006000000417,22.583799999625228],[-89.79970000004147,22.57979999962538],[-89.79870000004144,22.579699999625802]]],[[[-89.7937000000411,22.58819999962799],[-89.79350000004115,22.59119999962826],[-89.79510000004126,22.593999999627727],[-89.79650000004136,22.592199999627155],[-89.79450000004118,22.58809999962773],[-89.7937000000411,22.58819999962799]]],[[[-89.79140000004094,22.592199999628917],[-89.79090000004095,22.593999999629318],[-89.79150000004103,22.600599999629196],[-89.7933000000412,22.60089999962861],[-89.79340000004129,22.597199999628515],[-89.79240000004108,22.592799999628653],[-89.79140000004094,22.592199999628917]]],[[[-89.77490000003934,22.58709999963486],[-89.77360000003915,22.590399999635395],[-89.77270000003932,22.59849999963609],[-89.7695000000391,22.603499999637336],[-89.77110000003933,22.608499999636933],[-89.77200000003938,22.608899999636833],[-89.77360000003944,22.604699999635898],[-89.77560000003962,22.602199999635104],[-89.77600000003957,22.596799999634868],[-89.7780000000397,22.59269999963402],[-89.7758000000394,22.587199999634606],[-89.77490000003934,22.58709999963486]]],[[[-89.72980000003571,22.60959999965104],[-89.73400000003602,22.61119999964967],[-89.73480000003605,22.606599999649234],[-89.73290000003578,22.599599999649683],[-89.73400000003585,22.598399999649303],[-89.74160000003656,22.599999999646855],[-89.74350000003665,22.599899999646254],[-89.74740000003709,22.603199999645028],[-89.75000000003729,22.602999999644112],[-89.75170000003743,22.599099999643443],[-89.75560000003782,22.601999999642203],[-89.75830000003816,22.606799999641453],[-89.76180000003842,22.606699999640284],[-89.76510000003867,22.604899999639144],[-89.77100000003907,22.593499999636435],[-89.77350000003912,22.586699999635357],[-89.77170000003889,22.58309999963592],[-89.76840000003858,22.581099999637047],[-89.76800000003863,22.578899999637088],[-89.76950000003865,22.57779999963651],[-89.78480000004004,22.575199999630968],[-89.79170000004069,22.572999999628166],[-89.79220000004068,22.571399999627943],[-89.79060000004046,22.56919999962838],[-89.79120000004053,22.566899999628106],[-89.78950000004033,22.562899999628655],[-89.79020000004022,22.55929999962831],[-89.78970000004017,22.55529999962846],[-89.78790000004,22.55369999962892],[-89.78610000003982,22.555199999629792],[-89.78540000003983,22.557799999629935],[-89.78760000004013,22.565199999629385],[-89.78760000004024,22.568299999629573],[-89.7859000000401,22.57109999963029],[-89.78030000003957,22.571999999632453],[-89.7785000000394,22.570599999632975],[-89.77740000003917,22.567499999633355],[-89.77500000003897,22.566199999634136],[-89.76980000003852,22.568899999636017],[-89.76650000003826,22.569299999637337],[-89.76510000003822,22.57309999963786],[-89.76300000003812,22.574399999638672],[-89.76400000003815,22.578699999638502],[-89.76120000003812,22.587299999639868],[-89.7623000000383,22.5911999996394],[-89.7623000000383,22.594399999639506],[-89.75930000003802,22.59959999964076],[-89.75780000003783,22.592799999641045],[-89.75720000003764,22.585199999641077],[-89.75600000003749,22.581299999641317],[-89.75630000003736,22.573599999640862],[-89.75830000003748,22.56479999964],[-89.75830000003737,22.559399999639766],[-89.75550000003699,22.55169999964056],[-89.75250000003666,22.547699999641225],[-89.75170000003664,22.548899999641606],[-89.75330000003686,22.556099999641333],[-89.75360000003701,22.5614999996414],[-89.753200000037,22.565999999641576],[-89.75060000003691,22.57329999964287],[-89.74670000003664,22.578899999644364],[-89.74670000003681,22.586599999644648],[-89.7453000000367,22.58879999964512],[-89.74390000003643,22.58519999964551],[-89.74170000003619,22.575399999645924],[-89.73950000003589,22.56989999964651],[-89.73960000003581,22.564099999646373],[-89.73650000003556,22.55409999964695],[-89.73500000003537,22.556299999647592],[-89.73490000003545,22.56259999964766],[-89.73220000003516,22.561599999648593],[-89.73050000003508,22.562899999649233],[-89.7287000000349,22.560699999649614],[-89.72900000003477,22.554799999649276],[-89.72680000003459,22.548299999649885],[-89.72360000003431,22.5480999996509],[-89.72280000003417,22.54279999965098],[-89.7193000000338,22.539699999651873],[-89.7178000000336,22.537299999652248],[-89.72000000003374,22.529599999651225],[-89.72000000003362,22.525899999651187],[-89.72310000003404,22.52749999965033],[-89.72720000003426,22.526799999648915],[-89.73490000003483,22.515399999646036],[-89.73760000003483,22.508699999644875],[-89.73790000003487,22.50549999964477],[-89.73640000003468,22.502199999645086],[-89.73230000003417,22.496599999646264],[-89.73120000003411,22.493099999646404],[-89.73210000003417,22.490099999645963],[-89.73340000003424,22.490099999645622],[-89.73550000003445,22.494199999645048],[-89.73690000003467,22.495099999644708],[-89.73870000003473,22.49359999964389],[-89.73980000003479,22.495099999643685],[-89.74050000003496,22.50179999964365],[-89.7420000000352,22.503399999643307],[-89.74480000003541,22.50329999964231],[-89.7475000000357,22.50749999964148],[-89.75290000003616,22.504999999639608],[-89.75500000003632,22.50619999963908],[-89.7606000000369,22.511899999637308],[-89.76210000003704,22.51179999963665],[-89.76230000003687,22.50609999963649],[-89.7639000000371,22.505399999635983],[-89.76640000003744,22.509899999635252],[-89.76940000003759,22.511099999634155],[-89.76980000003755,22.503499999633846],[-89.77040000003757,22.500799999633557],[-89.76830000003724,22.494799999633926],[-89.76560000003695,22.490099999634822],[-89.7610000000364,22.479999999635936],[-89.75900000003622,22.477399999636646],[-89.7548000000358,22.475199999637937],[-89.7534000000357,22.472999999638375],[-89.75500000003575,22.471299999637665],[-89.76100000003623,22.468299999635462],[-89.76200000003627,22.46619999963508],[-89.76000000003609,22.465599999635913],[-89.75230000003546,22.469299999638622],[-89.74950000003537,22.47189999963973],[-89.7465000000351,22.471299999640678],[-89.74420000003477,22.462999999641056],[-89.74030000003444,22.459099999642376],[-89.73590000003406,22.45629999964359],[-89.72000000003266,22.448499999648334],[-89.70790000003149,22.438899999651824],[-89.70670000003139,22.435899999652065],[-89.7085000000315,22.43299999965143],[-89.71320000003186,22.43209999964995],[-89.71650000003206,22.434099999648993],[-89.71860000003227,22.436599999648536],[-89.72230000003259,22.437399999647425],[-89.7251000000328,22.43669999964652],[-89.72900000003318,22.436999999645252],[-89.7251000000328,22.438299999646574],[-89.72620000003297,22.439699999646223],[-89.73100000003336,22.440499999644715],[-89.7353000000337,22.44409999964347],[-89.73770000003395,22.446999999642742],[-89.74180000003435,22.447499999641252],[-89.7394000000341,22.444199999641967],[-89.74260000003432,22.44219999964099],[-89.7455000000345,22.44219999963991],[-89.7460000000346,22.44089999963967],[-89.74010000003403,22.43879999964156],[-89.73300000003348,22.434199999643795],[-89.73090000003327,22.431699999644422],[-89.72690000003291,22.430499999645633],[-89.72310000003256,22.42679999964662],[-89.72090000003232,22.423299999647327],[-89.71360000003176,22.419599999649392],[-89.71580000003189,22.417199999648687],[-89.70880000003126,22.412599999650524],[-89.70850000003122,22.410299999650647],[-89.71060000003132,22.409899999650065],[-89.7104000000312,22.4057999996499],[-89.70320000003056,22.400399999651825],[-89.7023000000305,22.3983999996521],[-89.70260000003049,22.39439999965191],[-89.70580000003076,22.39309999965093],[-89.70000000003029,22.391199999652486],[-89.69540000003002,22.39449999965393],[-89.69450000002996,22.39929999965443],[-89.69630000003019,22.40589999965414],[-89.70050000003062,22.410099999652914],[-89.69940000003055,22.411699999653308],[-89.6942000000301,22.410599999654835],[-89.68930000002979,22.411399999656396],[-89.68850000002965,22.408399999656524],[-89.68590000002945,22.40739999965723],[-89.68310000002919,22.403599999657956],[-89.67900000002885,22.403499999659118],[-89.67500000002855,22.400199999660174],[-89.67180000002838,22.400799999660933],[-89.66770000002799,22.39959999966203],[-89.66560000002795,22.39649999966258],[-89.6604000000275,22.39409999966381],[-89.66120000002752,22.392899999663655],[-89.66870000002802,22.38989999966128],[-89.67590000002843,22.387899999659396],[-89.6735000000283,22.386099999660075],[-89.669500000028,22.38469999966111],[-89.66670000002784,22.385399999661843],[-89.66410000002764,22.38859999966263],[-89.65960000002747,22.39039999966394],[-89.65720000002722,22.39359999966473],[-89.64860000002676,22.394799999667043],[-89.64140000002618,22.397499999668923],[-89.64520000002648,22.39269999966774],[-89.64930000002676,22.391299999666614],[-89.65790000002733,22.389899999664465],[-89.66110000002743,22.387199999663494],[-89.6622000000275,22.384199999663053],[-89.65690000002712,22.38159999966433],[-89.65270000002687,22.383199999665408],[-89.64970000002671,22.3830999996664],[-89.6427000000262,22.385899999668197],[-89.64130000002609,22.38569999966853],[-89.64190000002606,22.382199999668273],[-89.64530000002628,22.38049999966728],[-89.65060000002666,22.37999999966604],[-89.65500000002703,22.378099999664812],[-89.66010000002723,22.370999999663184],[-89.6600000000272,22.368599999663047],[-89.65450000002676,22.369099999664627],[-89.64890000002652,22.372699999666168],[-89.6431000000261,22.372499999667752],[-89.63540000002564,22.373399999669573],[-89.63200000002541,22.375999999670626],[-89.624800000025,22.380499999672395],[-89.62080000002481,22.384399999673747],[-89.61160000002434,22.392499999676033],[-89.60900000002425,22.39879999967701],[-89.60640000002405,22.402599999677705],[-89.6016000000239,22.40629999967905],[-89.5944000000236,22.416699999681043],[-89.59080000002336,22.42249999968203],[-89.58950000002335,22.42919999968251],[-89.58880000002335,22.435499999682918],[-89.5831000000232,22.447399999684535],[-89.58130000002319,22.456299999685314],[-89.5808000000232,22.46569999968574],[-89.5802000000233,22.468899999686016],[-89.58050000002328,22.474699999686095],[-89.57940000002327,22.479599999686513],[-89.57900000002331,22.48489999968683],[-89.57990000002354,22.494399999687005],[-89.58100000002361,22.499199999686766],[-89.58410000002385,22.505899999686562],[-89.5945000000246,22.5177999996846],[-89.60040000002516,22.527099999683514],[-89.60520000002549,22.531599999682612],[-89.60860000002566,22.535999999681962],[-89.61750000002638,22.54429999968005],[-89.62030000002653,22.547499999679587],[-89.625000000027,22.554299999678562],[-89.63370000002766,22.56079999967676],[-89.63670000002793,22.564399999676027],[-89.65670000002956,22.582799999671465],[-89.67260000003091,22.5951999996675],[-89.68310000003174,22.598899999664752],[-89.68730000003205,22.60199999966369],[-89.7004000000332,22.60799999966008],[-89.71230000003413,22.606299999656358],[-89.71760000003462,22.606499999654773],[-89.723100000035,22.608399999653216],[-89.72980000003571,22.60959999965104]]],[[[-89.7776000000398,22.6036999996345],[-89.77660000003976,22.603999999634823],[-89.7750000000396,22.60939999963574],[-89.7731000000395,22.612399999636523],[-89.77730000003987,22.61209999963495],[-89.77850000003991,22.608599999634407],[-89.7776000000398,22.6036999996345]]],[[[-89.78220000004035,22.606499999632945],[-89.78020000004005,22.60719999963368],[-89.78010000004014,22.612099999633926],[-89.78200000004034,22.613599999633323],[-89.78110000004028,22.609599999633474],[-89.78220000004035,22.606499999632945]]]]},"properties":{"cve_ent":"31"},"id":"inegi_refcenesta_2010.6"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-96.09226997819871,19.173761867305473],[-96.09098319894383,19.175454925294048],[-96.0928790749328,19.1763392061373],[-96.09226997819871,19.173761867305473]]],[[[-97.22888500560776,21.469621861039116],[-97.22774186799091,21.47391606252188],[-97.23026709421941,21.47673210001875],[-97.23051968982145,21.472826962607087],[-97.23157392051371,21.470384190492382],[-97.22888500560776,21.469621861039116]]],[[[-98.2088277624365,22.464762363688976],[-98.21408578726653,22.46995316866486],[-98.21597368404821,22.471069781523795],[-98.2166722293228,22.47128991316964],[-98.21782203792054,22.471652242787343],[-98.22151495464647,22.471242257434824],[-98.22373739098782,22.469503024094365],[-98.2272364090204,22.465142946922697],[-98.2296791270839,22.462148750826657],[-98.2323651355428,22.46133098170634],[-98.233829830189,22.462010311222173],[-98.24030823085542,22.469721584759213],[-98.24285427080468,22.471177173788476],[-98.24519062570977,22.47171462467844],[-98.24793142461476,22.471656623478907],[-98.25200759874542,22.469203482004957],[-98.25447156397382,22.46215500605041],[-98.25499597312466,22.4573141687535],[-98.2566341738434,22.45340615197381],[-98.25842360453157,22.452056231489962],[-98.26210679093623,22.450316553078153],[-98.27293689521576,22.44729105254271],[-98.2776214341551,22.448948967115655],[-98.28084576957093,22.455054283082916],[-98.28361298667073,22.463383267243785],[-98.28531326365135,22.465397460409633],[-98.2895998229227,22.467848804171922],[-98.29166451092516,22.467798557345304],[-98.2982358666464,22.462282692805445],[-98.29966609796963,22.461418774527374],[-98.30241827601697,22.461907440317475],[-98.30366864956551,22.4629609562661],[-98.30883420431405,22.468461054860086],[-98.31380655573355,22.469324652051],[-98.31682298001618,22.46856234609345],[-98.3189514506538,22.466167001579777],[-98.31836710514659,22.462825809987066],[-98.31508953163689,22.458520583212533],[-98.3136106392189,22.45618958997727],[-98.31186389563527,22.44741282055668],[-98.31367780276145,22.443256897485412],[-98.32091248548602,22.440037968263766],[-98.32218327105676,22.438433534126546],[-98.32481423775414,22.433543434303033],[-98.32675096309976,22.429084375650746],[-98.32692131500886,22.425083440878097],[-98.3257356865115,22.423872166141564],[-98.31694053118196,22.420430529201724],[-98.31347146348236,22.416798672273615],[-98.31271099572206,22.414272764256452],[-98.31322053465806,22.411043449049032],[-98.31551403224938,22.407303042431522],[-98.3168284316983,22.402393490502106],[-98.3164292440058,22.393342878827752],[-98.31757825702255,22.39097397914901],[-98.32017368075634,22.391244221041177],[-98.32342282172044,22.396699435427365],[-98.3251112908352,22.398039473487586],[-98.33061436413448,22.398304804565782],[-98.33329767345958,22.396834695335144],[-98.34291060244709,22.389742171040723],[-98.34648318882518,22.38850788133101],[-98.35227252949915,22.388703315913972],[-98.35542375828828,22.391024416577295],[-98.35624617270929,22.39707619579798],[-98.35369798870067,22.398568045376976],[-98.35124732422878,22.399079391057626],[-98.35103622291689,22.402426170917465],[-98.35293058863095,22.40672453053469],[-98.35522535101,22.407445628818664],[-98.3578369334104,22.406622904278265],[-98.36471745935495,22.399842766802465],[-98.36890062508297,22.39456447939193],[-98.37219114328559,22.39127508275311],[-98.3745778784226,22.389618081210415],[-98.37920570631718,22.38801011689685],[-98.3851892943174,22.38841103264957],[-98.38780920275212,22.389284385913072],[-98.39092640350589,22.39263383132152],[-98.39104284910377,22.39583043495753],[-98.39002795374512,22.397649486779812],[-98.38544006946069,22.401486914950056],[-98.38446111599637,22.40542915972901],[-98.38445988404379,22.40941298509108],[-98.38258113722912,22.414242848018432],[-98.3826784671972,22.417762746034157],[-98.38474513151539,22.4223352041908],[-98.388643885227,22.424293032625656],[-98.39207107151987,22.423182233842397],[-98.39432356772392,22.419125801043833],[-98.39661789600598,22.412615401567052],[-98.39934330828254,22.408830688407647],[-98.40490915561088,22.403319120536935],[-98.40619828752347,22.400883907558296],[-98.40954342315365,22.399926693531654],[-98.41138021043196,22.401084629526395],[-98.41416507313426,22.40585442151888],[-98.41688650152048,22.410671667497354],[-98.4190462756057,22.412737692398593],[-98.42312280640965,22.4136532865935],[-98.42790247187264,22.413317560334804],[-98.43245188860948,22.41286402062451],[-98.43335937994198,22.41487690042709],[-98.43201398950805,22.421052473202167],[-98.43108340826257,22.425192850972223],[-98.43197179252763,22.431565881187623],[-98.43717025940265,22.433588313980067],[-98.44257017252829,22.4323961683088],[-98.44479060434833,22.42943812207278],[-98.44748010477895,22.421668745000204],[-98.45250758523446,22.41641083676768],[-98.45680295882289,22.413710040997387],[-98.46095912377706,22.41219191520412],[-98.46509681868304,22.41281158304224],[-98.46671199560598,22.41667961003833],[-98.46530497241844,22.421314980061084],[-98.46413568862437,22.42353728085959],[-98.4649843453036,22.427648191863398],[-98.46680757937685,22.428801744183545],[-98.4687884903376,22.42894909642166],[-98.4751925632765,22.427011455719025],[-98.48523250402025,22.425630100023056],[-98.4903692346715,22.427765049450954],[-98.49063908818232,22.427474497677224],[-98.49083050873259,22.426598613157978],[-98.48849459401049,22.42425426707257],[-98.48943970335654,22.42277946927328],[-98.49128994203357,22.420859708158048],[-98.4916079588325,22.4195396683661],[-98.49311987327593,22.421201327869767],[-98.4929558304433,22.423249553777964],[-98.49498053774164,22.423043184841276],[-98.49551117239503,22.422888110037434],[-98.49655478077472,22.423410163748258],[-98.49698420427228,22.424728043618757],[-98.49456383566496,22.42500105435488],[-98.49393013523758,22.425461185627],[-98.49372155294282,22.426828073097965],[-98.49516488728659,22.42743420812991],[-98.49678843868702,22.426676435263005],[-98.50035776354633,22.428217791760744],[-98.50253083413008,22.428914260503518],[-98.50435391088445,22.429494071561862],[-98.50689349088753,22.42863123710913],[-98.5075404525598,22.42661594382821],[-98.50852735938412,22.425387355261535],[-98.50830080918979,22.4248345620544],[-98.50976831941506,22.42339509119722],[-98.51192115698547,22.422000130336983],[-98.51215346967535,22.421205890583735],[-98.51151672171346,22.420333358018752],[-98.51012614824208,22.4193948384156],[-98.50951346840469,22.418182617978516],[-98.50959716194745,22.416387955307414],[-98.51088942953834,22.415899524334918],[-98.51137883865727,22.415800010127384],[-98.5116383145052,22.415409426686438],[-98.51229354023354,22.4145024375253],[-98.5153271246383,22.413286984919182],[-98.51573720470367,22.412552279040142],[-98.51613056119476,22.412721287063164],[-98.51685402278264,22.41193599149858],[-98.51861015463066,22.410842899199054],[-98.51945272547675,22.410744411591338],[-98.52020215560867,22.411361634735556],[-98.52077239010146,22.411451695176595],[-98.52197169102118,22.410319035097473],[-98.52239664162005,22.409196690756062],[-98.52314612033331,22.40850456508076],[-98.52378650824113,22.40793834689248],[-98.52623070535208,22.407007437685195],[-98.52903466770726,22.40649287865989],[-98.5314244468388,22.405608630105917],[-98.53537695069008,22.405721033439647],[-98.53765121613367,22.405523419265364],[-98.54016265240807,22.405997694565485],[-98.54046306739787,22.40551881049265],[-98.540747609974,22.405734250719377],[-98.54186095981487,22.405285089311008],[-98.54308535954402,22.40297313974446],[-98.54335852605374,22.402618547692555],[-98.54392923574272,22.402557042205103],[-98.5453184343832,22.401424739462698],[-98.54570004547281,22.401034442323237],[-98.5457022197474,22.40036534525302],[-98.5460831102867,22.40018966197283],[-98.5470735814207,22.400533304316582],[-98.54845853497841,22.40070130474362],[-98.54942334439681,22.400577748371404],[-98.5501307213745,22.400251479480005],[-98.55120520696772,22.399812605159127],[-98.55176875696549,22.400014584561973],[-98.55245995110528,22.400496223411096],[-98.55448678005592,22.40011031562466],[-98.55720096934897,22.40035779106887],[-98.55819302623246,22.40020900423309],[-98.56091871391965,22.399471042109667],[-98.56142088832428,22.399598653063435],[-98.56311522816839,22.40073945770837],[-98.56398459260544,22.40072917812438],[-98.56566832054392,22.400923074470484],[-98.5662658196344,22.40097518365343],[-98.56651152701096,22.400584471937293],[-98.56682425557199,22.40048431456796],[-98.56734915673087,22.401370086649933],[-98.5679907802022,22.401608133275033],[-98.56968701060276,22.400530527520004],[-98.57008837597277,22.39968609686923],[-98.57049082783033,22.399052161586496],[-98.5713527559758,22.398397535258425],[-98.57117878919678,22.39751024739411],[-98.57098260330685,22.396179494447154],[-98.57134964101346,22.39556735624228],[-98.5739332894546,22.394271317704636],[-98.57544145851472,22.39413294535035],[-98.57556950816206,22.394636910139923],[-98.57644123299599,22.394617301950518],[-98.5765082673696,22.39581631919441],[-98.57864353854893,22.394759905202022],[-98.58010110121648,22.395781900749455],[-98.58063163109819,22.395629991905196],[-98.58077117636952,22.396232533945636],[-98.58145458694423,22.396168608262542],[-98.58165495297038,22.396175154976504],[-98.58296132324011,22.396561728067866],[-98.58348230352516,22.397288470348087],[-98.5846967174196,22.396908394965408],[-98.5854273835044,22.39680078656602],[-98.58609058378028,22.39559813944743],[-98.588137280117,22.39489515360509],[-98.58977464171124,22.39443159696475],[-98.59012045747562,22.394528101132607],[-98.5906806200498,22.39489467927376],[-98.59113836562966,22.395104501852472],[-98.5920514063103,22.3963587805801],[-98.59166092366223,22.39554053144178],[-98.59232571564866,22.395316164050996],[-98.59298764610338,22.396074227675854],[-98.59368678289042,22.39691064446606],[-98.59413621271597,22.39676397582349],[-98.59473296486124,22.39742622642808],[-98.59475994648807,22.397800150932937],[-98.59426849999033,22.398390842353365],[-98.59544782394829,22.398159055047756],[-98.59794266672759,22.399121641079944],[-98.59935314624414,22.399829383544215],[-98.6001855499573,22.399874916396584],[-98.60249287137265,22.399257580122196],[-98.60331400687295,22.399981218366293],[-98.60376333115829,22.400958988076468],[-98.60438045036977,22.401056141626725],[-98.60540741065279,22.401780272827068],[-98.60627571375687,22.402373608932805],[-98.6076270385978,22.405444273087028],[-98.60843471358407,22.40583418429543],[-98.60848604799935,22.406137401026626],[-98.6091386898537,22.40599350737108],[-98.60943749569981,22.406430678436095],[-98.60804052139201,22.406851629584366],[-98.60934360874347,22.407351845233507],[-98.61152206969757,22.407369226696915],[-98.6125517750196,22.40767479045752],[-98.61375212619271,22.408925047209664],[-98.61447627889521,22.408634855846458],[-98.61552177159439,22.407946300519427],[-98.61735359703948,22.406838343003983],[-98.61758784833313,22.406132645954358],[-98.61807241870264,22.40543061416895],[-98.62028165095063,22.404471596043777],[-98.62029403128287,22.40395676330786],[-98.62013908404452,22.403374461775],[-98.62097580010186,22.40268537928739],[-98.62260771096123,22.402528907872238],[-98.62371603877875,22.402701212398426],[-98.62444618701466,22.40282415025689],[-98.62489582523386,22.402716093574156],[-98.62562644021864,22.40241883972311],[-98.62663339151413,22.403196988696322],[-98.62656925774775,22.403492567422745],[-98.62655107143866,22.403875260478685],[-98.62630908590978,22.40454446888384],[-98.62746145738856,22.40350260347725],[-98.62811337798507,22.403543977927768],[-98.62872142664548,22.403944036009364],[-98.62964705018351,22.404289020665487],[-98.6295916164371,22.40578390436076],[-98.63033686822416,22.406216166570573],[-98.63067906318201,22.406583728358328],[-98.63040282716003,22.407228946456826],[-98.63111514948304,22.40713490102212],[-98.63264193849886,22.407265946275004],[-98.6326838543406,22.40764079889152],[-98.63284403919613,22.408709605855165],[-98.63289396279748,22.409299754678273],[-98.63246620137517,22.409618550679284],[-98.63218612337164,22.409720529086314],[-98.63206890044756,22.41016819848562],[-98.63266634973468,22.41038522534984],[-98.63286333620579,22.41015340469579],[-98.63366720193977,22.409939560593386],[-98.63418453793508,22.410073459116234],[-98.6349428080311,22.41022448556498],[-98.6352363779904,22.41059842107154],[-98.6349312558907,22.41123645859159],[-98.63532267239373,22.411735049119784],[-98.6353577136353,22.411992274240447],[-98.63598286979368,22.411852663998673],[-98.63597506543618,22.4114213104138],[-98.63643870950074,22.41161314415649],[-98.63688357174425,22.412161621859582],[-98.63652728127437,22.412743898347912],[-98.63600790171245,22.4133897483552],[-98.63681930818052,22.413715090716778],[-98.6372562625134,22.413873676722062],[-98.63815599735614,22.414524032221664],[-98.63987332492081,22.412841677816914],[-98.64004506531188,22.411794746219982],[-98.64024889320245,22.411418163291444],[-98.64182871345815,22.411281975333964],[-98.64320423617579,22.4103355016843],[-98.64446672862391,22.41020212265545],[-98.64640112580838,22.409805815749394],[-98.64759607851425,22.409640848413574],[-98.64926445303809,22.409435017155943],[-98.65043762209058,22.408966273334784],[-98.65120582863261,22.40899525500572],[-98.65252695011975,22.408065861795478],[-98.65369736976646,22.408147700817267],[-98.6539886870737,22.408692294261357],[-98.65493791503474,22.409229291826534],[-98.65555378290293,22.406961711921895],[-98.65677164044962,22.407581961087885],[-98.65762574379198,22.40736844877057],[-98.65884815700844,22.406135760392715],[-98.65987153540289,22.406500558484538],[-98.66076286783209,22.406015130254787],[-98.66203137744668,22.405870454182775],[-98.66280055353008,22.405475408332563],[-98.6637642383642,22.405318760702585],[-98.66498693303151,22.40393869232372],[-98.66578002979435,22.40372501003958],[-98.66663204230173,22.404372740560177],[-98.66716860375556,22.40435118753112],[-98.66798525819172,22.404488848108087],[-98.66720255881853,22.4054618717239],[-98.66682525791163,22.40594443711086],[-98.66742949038752,22.40583342321412],[-98.6690351827823,22.405467838366576],[-98.66971011070154,22.404651306090443],[-98.67022730442778,22.404860847694806],[-98.67065743902867,22.405513487383757],[-98.67328722797566,22.39737207361094],[-98.67382860127725,22.39569593972891],[-98.67418239834461,22.394600533017638],[-98.67646982353102,22.387517887597767],[-98.67686768623133,22.386285890411216],[-98.6810059933772,22.373249007040158],[-98.68154660421442,22.37157486837401],[-98.67653979289975,22.37280519172691],[-98.66758092318378,22.373190486126134],[-98.65880181338565,22.37313864501357],[-98.64562366699539,22.37309819372365],[-98.63787575467808,22.373088575788017],[-98.63756133510759,22.37313571572639],[-98.63533645250271,22.3731381388169],[-98.63320166694751,22.37314107805065],[-98.63106688129875,22.37314398773117],[-98.62786470265189,22.37314829697391],[-98.6242736363713,22.37315235817715],[-98.61854838037027,22.373158582584097],[-98.61560143977624,22.373171847881054],[-98.60962782260879,22.373163820392904],[-98.59871290598795,22.373171974353397],[-98.59007126956851,22.373070143097436],[-98.58285565831096,22.37305254145093],[-98.58027235966762,22.377012812453756],[-98.57930685706378,22.376482580171],[-98.57905874055388,22.370950362220412],[-98.57883390699908,22.36593689037028],[-98.57959039410582,22.363043055055073],[-98.58226634842572,22.360570279875276],[-98.58057333482378,22.35750371404646],[-98.58059662230613,22.35687192715926],[-98.58114081865972,22.354932179255286],[-98.5808363110778,22.354336263322864],[-98.57894634491078,22.35301112836521],[-98.57909473866141,22.35210243260815],[-98.57929064489974,22.348628110188713],[-98.5745210164614,22.34861875647391],[-98.57211026779726,22.346583939617062],[-98.56846957544644,22.347326003459784],[-98.56446464838126,22.34750716375686],[-98.5645191377098,22.342572428730534],[-98.55478618069947,22.342556266159363],[-98.55481548004849,22.339158675517467],[-98.55454201779219,22.338007528519825],[-98.54136390846537,22.33791475529108],[-98.54022041009364,22.337906868789673],[-98.53521452187732,22.33787830748861],[-98.53529604980673,22.327997525432238],[-98.52555069581575,22.327985097460896],[-98.52552461328912,22.325204112980884],[-98.52553198238945,22.323289550492063],[-98.52555101281098,22.318834850696362],[-98.51573512700708,22.319155222130803],[-98.50612007970949,22.315974402128177],[-98.50605821481088,22.311492193732477],[-98.50604281125698,22.31037613278818],[-98.50568897016092,22.309336121230047],[-98.50378368726075,22.30970138915177],[-98.49899588219517,22.307033116902403],[-98.49681563640996,22.307697481284208],[-98.49599135985363,22.303681675908877],[-98.49224380310363,22.30486109574565],[-98.49183657082096,22.303587385017295],[-98.48795245699785,22.30350552872295],[-98.48689205618086,22.29892029083652],[-98.481993993473,22.299437628135024],[-98.48199898554248,22.298516963740155],[-98.48056077397035,22.296983620386698],[-98.47953392149265,22.29625997677448],[-98.47783053478929,22.296213910484312],[-98.47757040551107,22.291247176514105],[-98.47590837692195,22.288639796543123],[-98.47045436596238,22.292495177686533],[-98.46696379024263,22.295758527146347],[-98.46437575037237,22.296688934848532],[-98.46590462083878,22.29997728422353],[-98.46511995157641,22.300795448299027],[-98.46451663508668,22.303465730577386],[-98.46148545767909,22.304886069090685],[-98.45755870018002,22.301324418795275],[-98.4568472189141,22.301962432084053],[-98.4554112645618,22.30316801751303],[-98.45439575967958,22.30393117458499],[-98.44665903381099,22.305621269726146],[-98.4397215800168,22.294119531224283],[-98.43546119511194,22.289880859554046],[-98.43255549409037,22.288156573195067],[-98.42794719690511,22.283847580728377],[-98.42970508688552,22.28021877539271],[-98.43328308152087,22.279718852228825],[-98.43345099925409,22.27656984607313],[-98.42864838931735,22.274456072327894],[-98.42585994610596,22.274256975506944],[-98.42475560563429,22.27426774629157],[-98.40867188266918,22.28374305713379],[-98.4075578953395,22.284209515610996],[-98.40317368373604,22.28221851332563],[-98.40266989883531,22.278716378843683],[-98.40109666096475,22.27746438216326],[-98.39911891528953,22.27808255609949],[-98.39637811154762,22.276261905477952],[-98.40055696637415,22.272648717421987],[-98.40112686594335,22.27216041791985],[-98.40176304024959,22.269675433928455],[-98.40641878746578,22.269350983277036],[-98.40577397442325,22.26717628783979],[-98.40320813393384,22.266384830025288],[-98.40566007924616,22.262483441043116],[-98.40419466867843,22.259165793281625],[-98.40509330494632,22.25607629062614],[-98.3936422446942,22.256057199963436],[-98.3889163370481,22.255997683377984],[-98.38628217530157,22.25596444663944],[-98.38254701977235,22.25588213767287],[-98.38183292387697,22.25333478259222],[-98.37826029057521,22.25343035832975],[-98.37633642400147,22.25082910232328],[-98.375432398425,22.253966887926538],[-98.37141561261643,22.254748315748543],[-98.37112344481892,22.254803993197697],[-98.36813667789562,22.25537310657171],[-98.36751687097222,22.252617031695138],[-98.36743835257272,22.250883698698317],[-98.36786764282789,22.249993867455714],[-98.36830128039225,22.249095019461606],[-98.36973404342001,22.246125084696814],[-98.36976673674343,22.246057320225304],[-98.36982567054287,22.24593514296106],[-98.37455585312387,22.236079396398566],[-98.36950344625188,22.2360611423901],[-98.36962758330202,22.23809747796139],[-98.36322777471923,22.238899302362938],[-98.35985186064994,22.238788214091016],[-98.35275963516335,22.24015958534153],[-98.3519467349011,22.238582851989293],[-98.3452607794195,22.23964060008393],[-98.3328765867746,22.241771914639344],[-98.32596704913294,22.243052800111172],[-98.34461514182101,22.22208873527063],[-98.3449132094396,22.222143293020054],[-98.34561134191472,22.22228909528735],[-98.35039808523942,22.222771511509563],[-98.35226121245762,22.222798786083786],[-98.35211618590102,22.220726586310775],[-98.34988911878088,22.21944866128524],[-98.34794205021149,22.21833135764041],[-98.34612270599183,22.217032361040026],[-98.34306157607676,22.21589324689387],[-98.34495895379587,22.213961650662327],[-98.33909955698937,22.211656014987057],[-98.33522002253062,22.210011760398913],[-98.33475837718902,22.202479374561733],[-98.33369157377507,22.20202481187323],[-98.33199648834307,22.20173559727823],[-98.33041317692454,22.20134444498649],[-98.33253092376287,22.1977166275571],[-98.33310445484568,22.197430797189213],[-98.33432712836156,22.19710872073057],[-98.33482941041768,22.19024060191464],[-98.33654501810673,22.187693252093993],[-98.34440133013095,22.186474175991123],[-98.34945708538442,22.18289284389482],[-98.35528008020958,22.180288444807502],[-98.41108444231804,22.143381969373706],[-98.41674579607076,22.141203261012436],[-98.42063941971162,22.13831319190217],[-98.4206352667236,22.13686021761322],[-98.42457469404201,22.132228396836354],[-98.42672008289418,22.131831187531247],[-98.4262407189301,22.13102280208733],[-98.42938544002982,22.1300973334761],[-98.43221013727498,22.12761463990995],[-98.43123289803958,22.125449676006724],[-98.4322579012935,22.117814623601987],[-98.43455480031656,22.116016355144495],[-98.43596927252543,22.115309055255977],[-98.43824846046658,22.114754860660298],[-98.43866465117475,22.1141354735189],[-98.43873705462005,22.111914930514843],[-98.43237195724589,22.110535890748565],[-98.4302569753786,22.108463781299918],[-98.42762656661574,22.108781767106507],[-98.42662761319474,22.10678322484023],[-98.42144914188844,22.102784132403997],[-98.41952593798533,22.100861651243974],[-98.41908089314478,22.09766479761913],[-98.42289989136555,22.096849238500738],[-98.4245631753725,22.09442704223744],[-98.42612884071326,22.09253747007847],[-98.42740259110883,22.092068175617214],[-98.42781797279139,22.091566256638657],[-98.42853792842527,22.091045798071548],[-98.42934451323032,22.090717547622717],[-98.43022072107021,22.090457296069076],[-98.4309720793641,22.090409475722254],[-98.43172149974646,22.09005014876226],[-98.43238676052698,22.089670004271966],[-98.4328382376728,22.089076875297053],[-98.4333512439697,22.08565773927296],[-98.43099313441184,22.081592521850382],[-98.43151368104498,22.078633293967926],[-98.43650332092835,22.07809533992321],[-98.43845361730092,22.07696483385331],[-98.43968387468783,22.07487676258131],[-98.43973025691326,22.06997667073722],[-98.44123013400798,22.064227988530888],[-98.44089164681316,22.063523661231613],[-98.43437523906925,22.056939116734952],[-98.43513953210248,22.051177726348158],[-98.44313449082517,22.049115486761593],[-98.44641430541668,22.042215342872964],[-98.44630607172257,22.041298484222807],[-98.44439824894175,22.038754064092927],[-98.44318758879251,22.03679274884456],[-98.44354899105832,22.03298174651735],[-98.44825553537271,22.02732425153181],[-98.4488467206993,22.02142176108339],[-98.4481929370836,22.021170195012473],[-98.45072142963107,22.017675783515983],[-98.45272051999393,22.01491289389628],[-98.45356807424491,22.013741444355162],[-98.45589894868095,22.01051975669401],[-98.45679491699195,22.009281307040965],[-98.45891759749247,22.00634716216831],[-98.45840787029044,22.00498356111558],[-98.46019149994731,22.001136458368137],[-98.45939263736409,22.000179142428692],[-98.45954448391745,21.995169054560222],[-98.46242940188847,21.99617578052238],[-98.46357609735213,21.99098714385218],[-98.46640518152049,21.989887985708492],[-98.46997214544206,21.990397440830463],[-98.47118104164076,21.988427961248192],[-98.47351747955099,21.988946447305864],[-98.47607382014257,21.993890195303322],[-98.47615295060297,21.995490497411197],[-98.47628607681747,21.999573055074336],[-98.4788519958222,21.99509473339748],[-98.4814239783272,21.990605489306176],[-98.48147636966854,21.990514029380336],[-98.47989061407253,21.988983198970175],[-98.48001190339949,21.988741463893916],[-98.48199396455982,21.982998816539634],[-98.47950785591831,21.97987900959106],[-98.47639708384202,21.97597351668969],[-98.46861458121987,21.966204817221694],[-98.46859138345354,21.966049551229446],[-98.46880576941783,21.964601316240817],[-98.47349202777326,21.962000495377595],[-98.47523925947695,21.96130327470462],[-98.4799965266792,21.95991569745877],[-98.48727088905008,21.959531780994837],[-98.49514395202613,21.96110535589048],[-98.50464953862775,21.966637531743004],[-98.51254175942904,21.97219149872228],[-98.51551696552252,21.97501575991538],[-98.51738086036039,21.976831187233017],[-98.52038373855032,21.97892320664033],[-98.52358306130566,21.979334723951922],[-98.52664375571504,21.97817046081002],[-98.53168999167036,21.974665583976844],[-98.54618230259769,21.96341083183944],[-98.54941519940661,21.9612127881191],[-98.55204213606646,21.96086885338559],[-98.55766586619734,21.96480975976158],[-98.5625591781506,21.9677309561651],[-98.56704922667905,21.968651634068806],[-98.57485118421454,21.969141248257813],[-98.57883910561537,21.966092252649105],[-98.5793202600633,21.961434525930827],[-98.57893072100035,21.95938895085652],[-98.57711192754584,21.949633444290384],[-98.57561340579053,21.945708010387307],[-98.57355928637577,21.94304134105556],[-98.5686933915926,21.93897447292619],[-98.55961296345288,21.93555061997108],[-98.55802796826936,21.935102557239986],[-98.55499438157887,21.933788935116183],[-98.55400734811076,21.933477444661094],[-98.5492296134201,21.934336143156713],[-98.54714221167285,21.935034282844413],[-98.54213820887009,21.937132049768877],[-98.53911188191063,21.939101141830918],[-98.53560798790164,21.944185969269142],[-98.5344152013023,21.946126618780795],[-98.53157635048387,21.94991573753606],[-98.52912919580746,21.950579100928906],[-98.52377307595538,21.950194986200472],[-98.51559733858994,21.951267837798923],[-98.5145207423958,21.950990969746385],[-98.51234160237414,21.949491141451915],[-98.50851131164865,21.944552670812925],[-98.50579292603345,21.940455391090097],[-98.50035140536329,21.931460574418736],[-98.49881959033257,21.927433812461572],[-98.4991542468864,21.92425066617335],[-98.50257145490048,21.923657709052463],[-98.50859806072384,21.927396257436556],[-98.51728632517876,21.930840758957174],[-98.52105719565463,21.932024889482364],[-98.53107684673421,21.93442780823898],[-98.5343470071873,21.934872822825582],[-98.53751170494502,21.93458008945879],[-98.54240643885169,21.93291788813235],[-98.54384703866958,21.932117462065946],[-98.5447533598192,21.929740215615936],[-98.54508445428934,21.927361374349744],[-98.5454506373112,21.925250769514662],[-98.54567301831679,21.92313976938101],[-98.54625433647414,21.921197344306393],[-98.54658378657484,21.919298210314253],[-98.54522144374465,21.917153573738346],[-98.54101620952844,21.917965123946374],[-98.53856953691985,21.918662157386393],[-98.53493743591747,21.91908766932022],[-98.53310498998559,21.91881434292401],[-98.52492297719823,21.914550507256365],[-98.51922096158984,21.915760557904832],[-98.5165862253848,21.917503625051665],[-98.51302157790548,21.916484795541123],[-98.51086391405937,21.910306089257062],[-98.51091047399137,21.907189086857443],[-98.51188996524587,21.90454409687942],[-98.51596753048693,21.899830130903297],[-98.51820674062628,21.897768667866785],[-98.52133796220073,21.897162557950708],[-98.52632403327311,21.900143509792883],[-98.53015916315246,21.903439228448917],[-98.53467838794836,21.90643513453091],[-98.53759063261128,21.906208710652834],[-98.53874547500419,21.904770683263962],[-98.53775834834806,21.898768234047168],[-98.53877226146915,21.89642483196161],[-98.54205001460963,21.89422179494892],[-98.54417990290676,21.89127813211951],[-98.54484675106937,21.88991155022228],[-98.54489382975925,21.88639230667252],[-98.54028882704938,21.87662583288693],[-98.54044110735111,21.873484433874182],[-98.54444985508258,21.867227704315553],[-98.54793336505679,21.860794278063395],[-98.54589526403578,21.858575353862193],[-98.54561234557673,21.85859094330516],[-98.54346099787313,21.859324230269635],[-98.5309759469207,21.863952063873796],[-98.52749885125849,21.861361265891617],[-98.52665012075056,21.857202615110168],[-98.52636762691628,21.85569349887146],[-98.52175487510652,21.845495244625226],[-98.52093797896396,21.842643852838705],[-98.52001623723328,21.838920682465982],[-98.51847941186827,21.831446678188854],[-98.5179463541869,21.82970218927761],[-98.51448114404906,21.82389343235633],[-98.51311718426268,21.823554241061515],[-98.5116804703124,21.82348296384947],[-98.50934214352179,21.824448059932706],[-98.5007848577551,21.833701369704272],[-98.49608180640485,21.837449617413483],[-98.49536427815832,21.838003313023364],[-98.49168152841008,21.83827560254815],[-98.48663334729264,21.836574942499965],[-98.48558957524398,21.834259314088854],[-98.48661734459199,21.8326254347935],[-98.49092774985633,21.827741861603045],[-98.49328662179624,21.820052783189055],[-98.49331123934292,21.819104153533885],[-98.49323169107629,21.81425916647538],[-98.49311892655038,21.81394031935372],[-98.4910817428779,21.811609262539662],[-98.49043288377231,21.811413707317],[-98.48953570501845,21.81144967644775],[-98.48530445976019,21.813928313656334],[-98.48189676794544,21.815006403024654],[-98.47745919679915,21.81534469679616],[-98.47469113286394,21.813355133953337],[-98.4747573055007,21.812400187473543],[-98.47626379873782,21.80757969747441],[-98.47633667223232,21.804401125272875],[-98.47523636072066,21.80127868577],[-98.47309878718158,21.798837978157962],[-98.47166396432533,21.79805175634567],[-98.46495559636162,21.794252925093645],[-98.46410316080642,21.793580576693728],[-98.46342929616219,21.79283730246277],[-98.46296960430459,21.79218992299309],[-98.46236525929413,21.79127640187852],[-98.46172324747494,21.79007072116559],[-98.46155330192931,21.789531095563063],[-98.46150841718577,21.787538835796283],[-98.46157559236781,21.78703441515114],[-98.46268798890338,21.78145447478147],[-98.46233576326591,21.77841437309587],[-98.46033346732105,21.774657928937472],[-98.45637196905608,21.770046182046258],[-98.45471657488758,21.76673833055736],[-98.45492602197879,21.765538685446813],[-98.45779640902384,21.762596045876762],[-98.45991046023738,21.76255258374175],[-98.46212663093644,21.767166225533003],[-98.46544726031766,21.770683246095757],[-98.46575204130522,21.770840138175572],[-98.46619540522005,21.770896455106595],[-98.4670360619188,21.770881216348926],[-98.46759695909833,21.770698139092133],[-98.46819972371685,21.77005074170188],[-98.46841939954368,21.769686880995152],[-98.46881729957892,21.767742304983074],[-98.46907004984223,21.766122621796796],[-98.46939477882859,21.76509722707351],[-98.46989105808558,21.764082620284],[-98.47022578603554,21.763571541040903],[-98.47302195620512,21.76249450756478],[-98.4747401296533,21.762442843769236],[-98.4753656582601,21.76244279733919],[-98.47629521300206,21.762334441692076],[-98.4800930427499,21.760199093335245],[-98.48041171374041,21.759750865142564],[-98.48136650655198,21.757461080869973],[-98.48243447222563,21.755038684967815],[-98.48375574906072,21.750595361341084],[-98.48204633194075,21.749651197118908],[-98.47844624610684,21.749823920515894],[-98.47597507893818,21.748719982681564],[-98.4759986999461,21.746608127948036],[-98.48168109839742,21.74035196631428],[-98.48708860514762,21.738054570425106],[-98.48779446537486,21.737407147754254],[-98.4906670347259,21.735332663592544],[-98.49525657206965,21.735302758129023],[-98.49942283820644,21.739068985468293],[-98.50192549306598,21.73899312296834],[-98.50300841482209,21.73873719215476],[-98.50555869786245,21.736439237145873],[-98.50425152649416,21.733160271394866],[-98.50368325250486,21.733103018475504],[-98.50053819540352,21.732762397136696],[-98.49865040650428,21.7308483978303],[-98.4989462230862,21.727242791593255],[-98.50001507220253,21.726458157371837],[-98.50076251723601,21.726399943757485],[-98.50470182439409,21.728524334016356],[-98.50850369381311,21.728385181155033],[-98.51266492154173,21.726601736486145],[-98.51372577554321,21.72417945323656],[-98.5129707355108,21.720400273462303],[-98.51530806291674,21.71776501319613],[-98.51842956485251,21.71606301590333],[-98.51914228982349,21.715925542132823],[-98.52027173117256,21.71583296334802],[-98.5208508316403,21.71596428847124],[-98.52132624702239,21.71618780061374],[-98.52229971573053,21.71722629424687],[-98.52306980621506,21.718203608673036],[-98.52422262543604,21.720193160170822],[-98.5251174521706,21.72084231579305],[-98.53022767089948,21.722265607538134],[-98.5367679870186,21.721143490623547],[-98.53741050380012,21.720624251465722],[-98.5377198808302,21.720270961886627],[-98.53832070029148,21.718714639050518],[-98.53754538701219,21.71561801658771],[-98.53641076214359,21.713656818328445],[-98.53540777742126,21.713359553443013],[-98.53480871080575,21.713274382868065],[-98.52990055670483,21.715302734010777],[-98.52711235161485,21.715275479364777],[-98.52239005906341,21.713112374014656],[-98.5212028756086,21.71148049069143],[-98.52053169196455,21.71023146787701],[-98.52151554878077,21.70635025683646],[-98.52372075944663,21.703277120733674],[-98.52832579364667,21.698479292454124],[-98.5329054241501,21.69758740709443],[-98.53315839524663,21.700779425484654],[-98.53314908629648,21.701139244464798],[-98.53513268478684,21.70423754878493],[-98.53566177656717,21.70847681182471],[-98.53764752029537,21.71323512042892],[-98.5420278721648,21.71693682016445],[-98.54236675970031,21.721390529238874],[-98.54241684655426,21.72183746070175],[-98.54524439270386,21.723928808480252],[-98.54887617384537,21.72291760482983],[-98.55085616609523,21.71986291499576],[-98.55665070397998,21.718329313135143],[-98.55948524573114,21.717352065003354],[-98.56093367203482,21.71717346499497],[-98.56188989307532,21.7171948918309],[-98.5671163743591,21.717571670326436],[-98.57204982566122,21.712214474133418],[-98.57159766209224,21.708033333320486],[-98.57117031273668,21.70761491813073],[-98.56685420452072,21.706934333546485],[-98.56494329547559,21.707022980772706],[-98.56058461229054,21.70545256882258],[-98.55793697874941,21.70091348812531],[-98.55867538559647,21.694877706832244],[-98.55863180472494,21.693956055537228],[-98.55775000382454,21.68975351102199],[-98.55942610391054,21.685458994869123],[-98.56019723271112,21.684173126502344],[-98.56057797642251,21.683717312010742],[-98.56217295301587,21.682839347774518],[-98.56302250483492,21.68287335889005],[-98.56482916683001,21.683752641250408],[-98.5655343664132,21.683783406098314],[-98.56828629426627,21.68307478582102],[-98.56898466074682,21.682745890157946],[-98.56952498931065,21.682323587628275],[-98.56987974407463,21.681627512823013],[-98.57020205614936,21.68094568865257],[-98.57073250857053,21.679654380615546],[-98.57100095695,21.679196043405227],[-98.57330278521175,21.676497194134015],[-98.57413295625815,21.675624355594266],[-98.57987868157733,21.67178316040446],[-98.58234211333934,21.6719720672873],[-98.5859862573555,21.670377784793914],[-98.58952258840208,21.66912759581527],[-98.59243667135081,21.669209109118185],[-98.59325831372485,21.669361397273065],[-98.59701419579767,21.668696262570222],[-98.60418026366386,21.67273916869317],[-98.60666375171854,21.674519208297056],[-98.61165273845023,21.6786012075832],[-98.61296213610763,21.67997948718812],[-98.61398975397361,21.681317676024833],[-98.61520912926795,21.68303594793963],[-98.61783672875299,21.684067710578347],[-98.61840590691793,21.683994828475875],[-98.61904953087588,21.68387233449306],[-98.62002670531263,21.68358635205533],[-98.6208422670203,21.68317720849882],[-98.62199696590028,21.68238257518658],[-98.6229034109329,21.681420437237705],[-98.62365827225295,21.68051450144202],[-98.62428465172479,21.679622807573935],[-98.62487614100928,21.678662010479798],[-98.62544003738697,21.67732989055378],[-98.62574017104754,21.67631143220359],[-98.62590326146119,21.67564873337176],[-98.62444259451627,21.672609746039768],[-98.62386679379892,21.67222121855241],[-98.6194793046306,21.67132163390761],[-98.61789089089149,21.671463959037055],[-98.61516986986999,21.671967730813208],[-98.61313455943576,21.67212782141212],[-98.6095010352808,21.669638664918523],[-98.61007481915658,21.66653497912023],[-98.61390075828956,21.663578464139846],[-98.61520759060284,21.66018544475935],[-98.616089116995,21.65882080806324],[-98.61744251921169,21.655647173013733],[-98.61865362231902,21.654776506801397],[-98.62003109461159,21.653526869752056],[-98.62114995996927,21.652795440636908],[-98.62269187761194,21.65257737606464],[-98.62998563762716,21.654812161740665],[-98.63322175041884,21.653888164063176],[-98.63401870937503,21.650512230995673],[-98.63327573515386,21.645895845022096],[-98.63374354911866,21.64258939397331],[-98.63725863451822,21.63537886319233],[-98.63941240181288,21.633482628064485],[-98.64352092952805,21.631928066499484],[-98.64222256574533,21.62881787702338],[-98.63535591988608,21.626296187948924],[-98.63460027042936,21.626334889087957],[-98.6289633422819,21.630082877805535],[-98.6261878719003,21.630408796383392],[-98.62112699652528,21.627822151338194],[-98.62079345357006,21.62637756284812],[-98.61922616852735,21.615145956711046],[-98.6193540970176,21.602461396125705],[-98.62189796251505,21.598112227309514],[-98.62298790708843,21.596795102750775],[-98.6235853882875,21.594205949030197],[-98.62565212083155,21.592595622512192],[-98.62542743861292,21.59203922078467],[-98.62489124748288,21.591695844553897],[-98.62271932057985,21.591394395601355],[-98.62062014458672,21.58784643649227],[-98.62075615766872,21.58760661451862],[-98.62566973719368,21.58689296992503],[-98.62572084232721,21.58600346135694],[-98.62572142847404,21.585775349890696],[-98.6252838356001,21.585067226961655],[-98.62374694615323,21.584675977808956],[-98.62294161437512,21.5845829138064],[-98.62176049566278,21.58406282725872],[-98.62046821393676,21.583489605091017],[-98.62010274987023,21.583215044630947],[-98.61940217743893,21.580407690522463],[-98.6169649752577,21.578942197568495],[-98.6164150218475,21.578724232908996],[-98.61453393317584,21.57929017192197],[-98.61426554152047,21.57924392254398],[-98.61314885272719,21.57691460425906],[-98.61341917610395,21.576230907092054],[-98.61310470010557,21.57515805488447],[-98.61254219136782,21.575567345057095],[-98.61124734455854,21.575997739717934],[-98.61029118144137,21.57563101522294],[-98.60952611202157,21.57478999264066],[-98.6091372523133,21.571004570860737],[-98.60756949760679,21.569184767631384],[-98.6074647411341,21.568351271372364],[-98.60583212829687,21.56541436560451],[-98.60790132211156,21.565152602422188],[-98.60800892480773,21.564919539609775],[-98.60772622265051,21.563708355333176],[-98.60762146867228,21.5628748586725],[-98.60708788192466,21.562373640566193],[-98.60552043550564,21.561736661197017],[-98.60526954738248,21.562202699151385],[-98.6035219892076,21.562231879767523],[-98.60692124114178,21.557185689776873],[-98.60749360422625,21.55652043253309],[-98.60742525134026,21.555420375663857],[-98.60532594903083,21.553682245614198],[-98.6024326372563,21.555441872271558],[-98.60025943557378,21.554670082669872],[-98.6004808765295,21.551937532226532],[-98.59916974526931,21.549429929192172],[-98.60088135363935,21.54778584371462],[-98.60102544997602,21.54725289802849],[-98.60109739580929,21.54701976745406],[-98.60106392827913,21.546219751509],[-98.60216747723462,21.543596999492763],[-98.60064139867688,21.54096026769878],[-98.60096750722738,21.539061214338687],[-98.59640574022586,21.538216987305702],[-98.58833566688998,21.535251365939644],[-98.58752990956395,21.53357794250445],[-98.5843785094097,21.5353084240582],[-98.58264957216534,21.531381805884507],[-98.57986696595856,21.529190819656662],[-98.57923004723392,21.52687148934558],[-98.57589893830334,21.52715628705505],[-98.57606998141307,21.525708140519043],[-98.5688596101914,21.521678243755048],[-98.56776129853904,21.52232169531908],[-98.56505072781016,21.520086078386953],[-98.56342459753341,21.521886991268502],[-98.55745200520755,21.52197828027971],[-98.55380368136383,21.516135783882817],[-98.5510376003433,21.514833785590156],[-98.54753679983276,21.51484138100443],[-98.54302806671694,21.51383100745818],[-98.54250496989914,21.509970732407282],[-98.54058183653103,21.50762544885913],[-98.53696009823034,21.50586805009766],[-98.53225585636164,21.501139522846813],[-98.5358934708064,21.49385277474613],[-98.53340505314259,21.486759773363758],[-98.52982305052814,21.481547584973384],[-98.52706316766421,21.478548039920838],[-98.52701847217674,21.47849945797617],[-98.52609991435759,21.47568270499545],[-98.52574044178732,21.47492661542691],[-98.52295544137922,21.471379100053184],[-98.51892721403652,21.464735888215444],[-98.51691306581722,21.46070170059346],[-98.51697950553864,21.45892808490555],[-98.51762362143313,21.458854858554673],[-98.51788995325677,21.45967683222534],[-98.51878995133302,21.459456947711885],[-98.51986547804614,21.458537303175547],[-98.51943277279139,21.455613838936472],[-98.52076527222096,21.454717918614392],[-98.52182500332123,21.45055134545521],[-98.52073735757273,21.450003767454632],[-98.52092589055547,21.448645603985312],[-98.51989878915384,21.446506917023555],[-98.52094921564259,21.443176685485014],[-98.52464143873635,21.440163935579847],[-98.52238802501216,21.436971721725],[-98.52294860032191,21.43501421844462],[-98.52171143179004,21.432721147938707],[-98.52155611071038,21.42882343907172],[-98.52290570619482,21.425142552559862],[-98.52023898191709,21.421401133825043],[-98.5202529521971,21.421310927698073],[-98.5199622668485,21.418832469293875],[-98.5192977857239,21.415502078820566],[-98.5205349728459,21.41463386153373],[-98.52161581168684,21.411105350063508],[-98.52071567980329,21.407424034189148],[-98.52094673645462,21.404069676593224],[-98.5179291790605,21.403560727939123],[-98.51893698396458,21.401096864290764],[-98.5136476644281,21.400346366902397],[-98.5133651333698,21.40049078709501],[-98.51078383757653,21.401963484026737],[-98.51041024746291,21.398961514294513],[-98.51019086648279,21.399006553731056],[-98.50931326619764,21.397535390983023],[-98.50937100418696,21.397318666859746],[-98.50967588753485,21.395683284749282],[-98.50930967724724,21.39576012605113],[-98.5087211435062,21.396085368653928],[-98.50763243964644,21.395961369791905],[-98.50907377004893,21.394231991960567],[-98.50767371170616,21.391621122302524],[-98.50553069083713,21.394184813109007],[-98.50357275886421,21.392261160386397],[-98.50434874463883,21.389362567675448],[-98.50227610944103,21.388329779298488],[-98.50176035955172,21.386025058012137],[-98.50150804449606,21.38564136078122],[-98.50068573794198,21.385347086545266],[-98.49897531783557,21.38555257737761],[-98.49802197707714,21.3858323128739],[-98.4971798080565,21.38605960744553],[-98.49576658601416,21.38677053256481],[-98.49460253715569,21.387170241007368],[-98.49437881584214,21.38734086635145],[-98.49378148371568,21.387938609971343],[-98.49304263369027,21.388889388829682],[-98.49250784880297,21.389662699310577],[-98.49025290244833,21.392175080311063],[-98.48803933257358,21.391430931773925],[-98.48710349627135,21.392229480161348],[-98.48681788128039,21.392640848958706],[-98.48670606814767,21.39358195009919],[-98.48648377989838,21.39509996352865],[-98.48644901932494,21.39562800658024],[-98.48741560214103,21.396884234409697],[-98.48641726997965,21.398517651817258],[-98.48611431886718,21.398520768170158],[-98.48321139091928,21.397324980061455],[-98.48230255594461,21.397307136258178],[-98.48193428796719,21.397364906888072],[-98.47982853254803,21.396595433589482],[-98.48053615638139,21.392092331956235],[-98.48082896142648,21.391637057573746],[-98.4815669537955,21.390308117097845],[-98.4808145509661,21.388287335795212],[-98.48033227086313,21.38829522578095],[-98.47959502454864,21.388583871263563],[-98.47933309286759,21.388735487021393],[-98.47767410929436,21.38937986823288],[-98.47500729266545,21.390738558409964],[-98.47294001887457,21.391152160063882],[-98.4692918831422,21.388216273116825],[-98.46863644373673,21.38605096011895],[-98.4699594765234,21.384072779068163],[-98.46830026419428,21.379463352104665],[-98.4671037670459,21.378489626769465],[-98.46703887338123,21.377482171178997],[-98.46753957220426,21.37773808107636],[-98.4681770888543,21.377014497112782],[-98.46758432923451,21.37686319952161],[-98.46704768035943,21.375867739888122],[-98.46734072842702,21.375580629020646],[-98.46694742538585,21.375571073185938],[-98.46671697942753,21.374793259273986],[-98.46640130943115,21.374848468772996],[-98.4661960142019,21.37448213523936],[-98.46592101985419,21.37438355407886],[-98.46546346855564,21.373191910792627],[-98.46608870719035,21.372753453605583],[-98.46618354322317,21.37241483132624],[-98.46679972593142,21.372867685132064],[-98.46702114466586,21.372655210559742],[-98.46841912911174,21.37032982944487],[-98.46839028936279,21.370127537688006],[-98.46778483479937,21.369510092785163],[-98.46715656256072,21.368228981517746],[-98.46665888858615,21.368065025874387],[-98.46717911922781,21.367586760040695],[-98.46718800955682,21.367216751456567],[-98.46703631066714,21.366986738444382],[-98.46687247968231,21.3662963913971],[-98.46654935195153,21.3659421619588],[-98.46661036110731,21.36565257171759],[-98.46613955711825,21.36571555932136],[-98.46632714523088,21.3652830779954],[-98.46654623959688,21.365326105727718],[-98.46697929087316,21.365207715976567],[-98.46760840104758,21.364269423370445],[-98.46788350138547,21.3637946146755],[-98.46836801852373,21.363378004085064],[-98.46904075431712,21.363094840549252],[-98.4691361328284,21.362725812114377],[-98.4691280874826,21.362209039552226],[-98.46966742290613,21.362324510509268],[-98.46972436830606,21.362196276152986],[-98.46952569345405,21.36126796715746],[-98.46970531547043,21.360627646391265],[-98.46931094747907,21.360178238625338],[-98.46922125337574,21.360071654979606],[-98.46917226797706,21.359080762414635],[-98.46914397292483,21.358925101857665],[-98.46943244992667,21.358890658308326],[-98.4692474611303,21.358327759086308],[-98.46942140962972,21.35809860472915],[-98.4699597680733,21.357538903737634],[-98.46938924783922,21.357534766886772],[-98.46950537025225,21.357304532698265],[-98.4690317763152,21.356149441218008],[-98.4688775914895,21.355905808330988],[-98.46832753267694,21.355654391803228],[-98.46757420524142,21.355056672307114],[-98.46733126459185,21.354879431908046],[-98.46702836985122,21.354659001512857],[-98.46649211635741,21.35414667759693],[-98.46632644416889,21.353921300980005],[-98.4662451555393,21.353268761666413],[-98.4649872787283,21.352537264274304],[-98.46471394689036,21.352471276065273],[-98.46342306709903,21.350835563340354],[-98.4656207201233,21.347134362735517],[-98.47112764517306,21.346828436521207],[-98.4750549720888,21.344089213572488],[-98.47620044218218,21.344601442830424],[-98.47822374451124,21.343821366179668],[-98.4784650230983,21.34457988078742],[-98.47855424512898,21.345555163581537],[-98.47852738749344,21.34760511970353],[-98.47995802771425,21.348135296539454],[-98.48051329508712,21.348359966612747],[-98.48173565895695,21.349009888631883],[-98.48442457364752,21.350238734753646],[-98.49194531331403,21.343504152686364],[-98.49194557671524,21.34350394886718],[-98.49561750665225,21.34042021296517],[-98.49735693238688,21.33723271614292],[-98.4952495944039,21.331611258882162],[-98.4955669178812,21.329965774137293],[-98.50585425917814,21.319356839138152],[-98.51074261942063,21.312471921915346],[-98.51196502386034,21.31108806223],[-98.5158752294401,21.306064969334443],[-98.51673917450626,21.305001177282463],[-98.517426808685,21.304129374811737],[-98.5194647368665,21.301257676627415],[-98.5213013969443,21.298140561594437],[-98.52328200496305,21.2924503651883],[-98.5240753707015,21.29061587100989],[-98.52435532450545,21.290115021518034],[-98.52447709312935,21.289788569502605],[-98.52454856017044,21.289542110696686],[-98.5248950505104,21.28908257635794],[-98.52816780953657,21.284721030277524],[-98.53007278732366,21.282819583358503],[-98.53049618391248,21.28245728671959],[-98.53145483333924,21.281489583740495],[-98.53225573392024,21.280669981673782],[-98.54115939889476,21.26947890028225],[-98.54398172424197,21.263901237316077],[-98.54283960933975,21.26393891675997],[-98.54174142409994,21.26393888038018],[-98.54116136338388,21.263945390686445],[-98.53848419528885,21.263990116782338],[-98.53786081568836,21.26386608582584],[-98.52540334711716,21.25322375598961],[-98.5221481179434,21.250415322208937],[-98.51945964229668,21.248126969971793],[-98.5183269443059,21.246756967109548],[-98.51701304671133,21.24497362662396],[-98.51654571712032,21.244273291466982],[-98.51363675119597,21.24594363911865],[-98.51314191780529,21.24616148752284],[-98.5129716149516,21.24624334762143],[-98.5128091915584,21.246185807840845],[-98.51270681953605,21.24594944687044],[-98.51251989686841,21.2457733035115],[-98.51233275564357,21.245667401767435],[-98.51192595526237,21.24581995844227],[-98.51173052696225,21.24635050098658],[-98.5111700695465,21.246396733789595],[-98.51103583746931,21.246405256457138],[-98.51081671895832,21.246731040444274],[-98.51075322245026,21.246487028492822],[-98.5107180645955,21.246347566685586],[-98.51054833312816,21.246645591209244],[-98.51052923025941,21.246750896454614],[-98.51030430144607,21.246732678445312],[-98.50979906234636,21.24643269363196],[-98.5095758462437,21.246266338631074],[-98.50922497817771,21.246059258263983],[-98.50854656065167,21.24694705079844],[-98.50832660726422,21.24707256297137],[-98.50784974146848,21.246988980598132],[-98.5074843842799,21.247114111479448],[-98.50697884564681,21.24690191894871],[-98.50651099375386,21.246637151928496],[-98.50615470052577,21.24665366810126],[-98.505749522202,21.246923146829317],[-98.50540064889026,21.2470922567598],[-98.5052155266306,21.247156451018952],[-98.5047186223876,21.24698214668905],[-98.50390448616434,21.24679426762566],[-98.50263721449238,21.24584565222625],[-98.50206040892482,21.246144717465484],[-98.50184789209561,21.246345879664602],[-98.50165629567306,21.2468080218174],[-98.50157055824462,21.247056494751178],[-98.50143204604149,21.247475145575038],[-98.50141687891983,21.24759688156911],[-98.5006220229576,21.247736765711295],[-98.49998578106084,21.248597280363185],[-98.49982506507826,21.24973567055042],[-98.50049842513994,21.25167295131257],[-98.49964083468899,21.25205824751515],[-98.49932881818125,21.25217893217615],[-98.49359770693906,21.251004155514067],[-98.49283321509597,21.25064182962103],[-98.49190129513914,21.25129741149817],[-98.49025515058639,21.251090498843894],[-98.48604647283304,21.250717122684932],[-98.48216369155409,21.25120619825873],[-98.47973346221329,21.25173056303612],[-98.47853764103326,21.25199361258359],[-98.47699550680841,21.252360220706294],[-98.47595357196235,21.251755771544822],[-98.4742544670031,21.25091134753501],[-98.47207200096875,21.250532499120823],[-98.46966405913378,21.24960984159094],[-98.46871908362527,21.249575746744142],[-98.46996197481485,21.24618520245224],[-98.46985866905618,21.24314841759434],[-98.46845077310007,21.239176676876355],[-98.4690318383669,21.23610925698705],[-98.4691686323348,21.235351912843214],[-98.46928304326894,21.234549346864185],[-98.46988118299521,21.233973410480985],[-98.47079720208808,21.23326259737786],[-98.4717043630663,21.232406261505275],[-98.4723653326754,21.23265600060256],[-98.47583056250522,21.233053845874338],[-98.4788297538937,21.232191172543878],[-98.48135529175931,21.228727630118726],[-98.4809655913171,21.22843126957673],[-98.48134192889893,21.228171324696405],[-98.48106452911264,21.22794642652201],[-98.48020921239873,21.22808036332441],[-98.48021520031654,21.22735457942389],[-98.48039425409104,21.226802903135933],[-98.47984667096995,21.2265971895568],[-98.47922353978657,21.22557263082723],[-98.47935316476571,21.224528944244184],[-98.47975522085954,21.224111152269302],[-98.47572965333865,21.220428700917807],[-98.47280666169445,21.219810558940935],[-98.46813432522754,21.22390325248392],[-98.46650623244341,21.21990012643107],[-98.4584959268143,21.2149749114796],[-98.45750390422762,21.2147614134023],[-98.45691944181652,21.214620180794952],[-98.45662923685683,21.213946156038105],[-98.45602088969451,21.213385183481478],[-98.45584649098186,21.212751125169348],[-98.45591394311873,21.212260269270473],[-98.4550742801726,21.211916891378678],[-98.45452112900546,21.211437424681037],[-98.45418129825879,21.211183749502197],[-98.45353243994867,21.211011016442],[-98.45307687594749,21.210459433867868],[-98.45632627737888,21.207003522103832],[-98.45907880173792,21.206018444483504],[-98.45937072301837,21.20579972805507],[-98.45962606183753,21.204801752860817],[-98.45581968015091,21.20274738565115],[-98.45338948877821,21.203058640799725],[-98.4507854229667,21.202415843216954],[-98.45052015263923,21.202272146547443],[-98.44984862095856,21.201998665852102],[-98.4495980600991,21.201992848124462],[-98.44935957941601,21.201993041295452],[-98.4492388691973,21.201932930279895],[-98.44899419758764,21.201740614029518],[-98.44779350630375,21.20104619902702],[-98.44762138312262,21.20090593149098],[-98.44721482072919,21.200629116867276],[-98.44709572124253,21.200401348790024],[-98.44697742647088,21.20012777745376],[-98.44660839042746,21.199377648425525],[-98.44661226451706,21.19884048091842],[-98.44673494475882,21.19854860933998],[-98.44725740093361,21.198261190539597],[-98.447707842498,21.197607364305554],[-98.44787994266039,21.197364176894496],[-98.44809686538025,21.196960410926636],[-98.4481950340579,21.19581020459043],[-98.44856472810926,21.19492691415053],[-98.44842795413535,21.1884837928053],[-98.44940022909242,21.18656692986775],[-98.44690368288383,21.181078289484674],[-98.44681156694219,21.18099138781656],[-98.44678072887274,21.180540858617235],[-98.44663499507953,21.1797353116375],[-98.44603893121081,21.18004300305671],[-98.44561448276988,21.18062373844748],[-98.44522167611643,21.180458923291837],[-98.44533813289411,21.18022617305712],[-98.44556043456697,21.17981508498849],[-98.44546966717053,21.179146530405774],[-98.44496550924543,21.178575864758386],[-98.44403351897142,21.17852149301075],[-98.44276466976288,21.178001807361056],[-98.44263070265674,21.178013860189992],[-98.44221503155666,21.178372742592728],[-98.44174889963512,21.178040362098045],[-98.4416350194083,21.17794267686355],[-98.44069827734808,21.177337517684236],[-98.44028219440247,21.177196737492864],[-98.43982219989113,21.176860647792978],[-98.4397333424705,21.176748829399855],[-98.43966748638849,21.176633248441362],[-98.43944920255257,21.176585291281867],[-98.43896324691616,21.176221560405168],[-98.4383416443709,21.17617226322068],[-98.43834116881874,21.176298218148247],[-98.43876931188782,21.17693347408158],[-98.43782077472969,21.176936369792656],[-98.43704151359486,21.177170489229752],[-98.43694579157807,21.17710921675001],[-98.43685056956014,21.176830310609148],[-98.43632546071024,21.176427458618832],[-98.43636138212162,21.17576297078392],[-98.43649690603422,21.17530303408722],[-98.43587103905207,21.175226051852405],[-98.4356981819858,21.1751381065626],[-98.435712073263,21.1749883676041],[-98.43504819456263,21.1743995000254],[-98.43488864951007,21.17431159266863],[-98.43475543134878,21.174311147447554],[-98.43471508274604,21.174410865630932],[-98.43451803887325,21.174862058635483],[-98.4342555294213,21.17482279750766],[-98.43410297314034,21.174394443138226],[-98.43388948237225,21.1743082506639],[-98.4336015398618,21.174631072303043],[-98.43301083031832,21.17449191355786],[-98.43300851997111,21.174265322934843],[-98.43225827754264,21.173843715033854],[-98.43212862910212,21.173387806535914],[-98.43249902478266,21.172381103350006],[-98.43132546702066,21.171911351528934],[-98.43104310333013,21.172150156955013],[-98.43081547587144,21.172692795911757],[-98.43032232253995,21.17293321845301],[-98.42994849331484,21.172522073648224],[-98.42989995455838,21.172215632188966],[-98.42950059526174,21.171631691775076],[-98.42944445996477,21.171560314660724],[-98.42954760761086,21.17136190710721],[-98.42965661428707,21.171287878870032],[-98.43054027793795,21.16925252060355],[-98.43051080567687,21.168419153632556],[-98.42983572335277,21.168060904215054],[-98.42897542043028,21.167941878515364],[-98.42873778840465,21.168413130666636],[-98.42866208274603,21.16840493411047],[-98.42764023858359,21.16721491530234],[-98.42722026615473,21.166999740557685],[-98.42676582375185,21.16761232144961],[-98.42544124750032,21.16759116332281],[-98.4246400317582,21.167352152319324],[-98.42365478162787,21.167089320712137],[-98.42396523138387,21.166626114307178],[-98.42329514005229,21.166251515185138],[-98.42367644726329,21.165646013804007],[-98.42302190899977,21.164515996421812],[-98.42353606992407,21.163730977773128],[-98.42306713493849,21.163458977413313],[-98.42233682491076,21.16306786218081],[-98.4219762872566,21.163150912920457],[-98.42134910456832,21.16211441038257],[-98.42117174039299,21.16208300783785],[-98.42022925498753,21.16150390739432],[-98.42011714179671,21.161846998286933],[-98.42008655421023,21.16218690817294],[-98.41996894596474,21.16232909404971],[-98.41969493305879,21.162062353399676],[-98.4195701302728,21.161857532597764],[-98.41942458377991,21.161888000944373],[-98.41928490534116,21.162110500633105],[-98.41917904776432,21.162134911438216],[-98.41890896177802,21.162284097659608],[-98.41852379292027,21.162236614819392],[-98.41867172068709,21.16201092020259],[-98.4187822866304,21.161749884051517],[-98.41875808175257,21.16133487100592],[-98.41860941862365,21.16127456187934],[-98.41822676460737,21.161213453946402],[-98.41810204026336,21.161233173266055],[-98.4180438181827,21.161054332412846],[-98.41819681683029,21.16088906135485],[-98.4181024874236,21.160544587911488],[-98.4175872250728,21.16057121027643],[-98.4171287727707,21.16028520345799],[-98.41749590066723,21.159825435758705],[-98.41762735279713,21.159129707842908],[-98.41765306027702,21.158903409509378],[-98.41735178683189,21.158487374936556],[-98.41719819566782,21.158253648352513],[-98.41748459466072,21.157957920223623],[-98.41746961749914,21.157871726242945],[-98.41685758155847,21.157654259296976],[-98.41636879817486,21.157264936201273],[-98.41663051290595,21.156949979269427],[-98.41689198910223,21.156692453182757],[-98.41664689775507,21.156100873922526],[-98.41648765331274,21.155528844612718],[-98.41643569593373,21.154981885375378],[-98.41491246175457,21.155025044961462],[-98.41391691468431,21.15525533094234],[-98.41388692619438,21.15525522708515],[-98.41383716732918,21.155198779665966],[-98.41372372380329,21.155082562958967],[-98.41305145531203,21.154914986659435],[-98.41281786230547,21.15488180204636],[-98.41203250609948,21.15467495834315],[-98.41152485200922,21.15460960015531],[-98.41078757858276,21.154490410366748],[-98.40989724681816,21.154096637382395],[-98.40922510242325,21.154385453671523],[-98.40877105179533,21.154453382071324],[-98.4078934602934,21.15422707126976],[-98.40541855950585,21.154706672281975],[-98.40465798559677,21.154331270094417],[-98.4045218947183,21.153965110788704],[-98.40481463278763,21.153378182573135],[-98.40483174964328,21.152919348704472],[-98.40419294820089,21.152785156544724],[-98.40379518370685,21.15310777001804],[-98.4032693869242,21.154133844903015],[-98.40319688464763,21.15442450125323],[-98.40443419732804,21.156332691720024],[-98.40380898578792,21.1575924415244],[-98.40283272895886,21.157303090764856],[-98.40067403108134,21.15610777126352],[-98.40055131196794,21.15680974304962],[-98.40049486154214,21.158446644658056],[-98.39821302853363,21.156766088730194],[-98.3975516923702,21.1565460179217],[-98.39734682325974,21.156625366273033],[-98.39689313382206,21.158026615111055],[-98.3955653661846,21.157842929467677],[-98.39398139096295,21.158714561485965],[-98.39309950509755,21.158836208507296],[-98.39232542872719,21.159346664094073],[-98.39168418636672,21.160176770987505],[-98.39150339664747,21.16045175820682],[-98.39113209739634,21.160536320993288],[-98.3899775843505,21.158619399402937],[-98.38933274916559,21.15866787830936],[-98.3880995165058,21.159275463698805],[-98.38869268793616,21.1607829658264],[-98.38845351226007,21.16164101597326],[-98.38730267307562,21.162156708669443],[-98.38617427754428,21.162276119807984],[-98.38402393908552,21.159863133101908],[-98.38386765847156,21.158748590665084],[-98.38322674134224,21.158311675792618],[-98.38303853177047,21.158451030579727],[-98.38279631884637,21.158751549171427],[-98.382041584599,21.159185751738107],[-98.38148931523489,21.159303132494983],[-98.3801674159049,21.15836340759688],[-98.38021953008763,21.15512473159697],[-98.37924246962302,21.1552442067956],[-98.37882728844835,21.15540551113935],[-98.37469309362979,21.15639331906084],[-98.37325925122809,21.15675882541899],[-98.37177955276138,21.15727604583003],[-98.37010195137128,21.158041656929527],[-98.36944377778428,21.1582108395869],[-98.36774019287913,21.158830963166963],[-98.36681101353537,21.16067819997602],[-98.36678803058578,21.161274282730517],[-98.3649660707793,21.161738377331346],[-98.36515832724479,21.159336090906777],[-98.36544946746056,21.15912200354029],[-98.36506316031125,21.158095179896407],[-98.36373663856352,21.15808446373245],[-98.36296227887783,21.158410211500723],[-98.36265623713405,21.157429378576694],[-98.36203993387835,21.157049025796482],[-98.36067815786663,21.1571896036902],[-98.35947833822024,21.15761566844077],[-98.35899327367139,21.15641396419676],[-98.35858063535204,21.156241363941263],[-98.35779847156721,21.156541133973178],[-98.35685416569731,21.158152807047088],[-98.35600361323128,21.158117806062023],[-98.35574528418772,21.1579069944288],[-98.35558803364825,21.157894385163388],[-98.35387265262995,21.159755440280833],[-98.35368264955554,21.15980476419577],[-98.3528737360835,21.158980884808273],[-98.35215704348019,21.157740634638856],[-98.35146477148862,21.15736945064333],[-98.35054899030337,21.157388562522556],[-98.3506753999788,21.158797265355304],[-98.35116131440446,21.159191163719754],[-98.35058216419208,21.159867645695215],[-98.3500470286599,21.15994725281081],[-98.34956958974698,21.15995393309663],[-98.34927875895141,21.15992096813983],[-98.3489317456146,21.159675766273722],[-98.34698353796529,21.16043699699503],[-98.34611757742931,21.160374511270504],[-98.3458322847303,21.160146079107733],[-98.34195755073779,21.160985450661315],[-98.34123974009896,21.162968105428263],[-98.3412056670631,21.163568102558827],[-98.34088672890027,21.164823635117273],[-98.34113927261546,21.165538486939454],[-98.34119835988423,21.16618669993352],[-98.34235647922611,21.167190152555463],[-98.3406551401294,21.16875115252867],[-98.34074886402647,21.169509793556188],[-98.34071220039476,21.170125794433318],[-98.34078493272028,21.17025206045389],[-98.34050120411734,21.1704689495931],[-98.33953853730344,21.171178417950728],[-98.33916487381003,21.171686031379352],[-98.33814956985645,21.172770913622458],[-98.33725127339949,21.172984888057954],[-98.33606344551765,21.17339469468766],[-98.33244551122493,21.174642640153706],[-98.33064673450326,21.175867677946144],[-98.32968356275865,21.176925637239492],[-98.32917226886292,21.17806438966909],[-98.3288354775604,21.17834207058661],[-98.32860008210429,21.178535500946907],[-98.32755961798955,21.179114875413347],[-98.32450620985043,21.17982085141881],[-98.32277091134375,21.1810079088429],[-98.32093062790051,21.18156896886677],[-98.31936288197943,21.183715550654313],[-98.31795599928313,21.184638742910636],[-98.31666629607099,21.185841356528556],[-98.31585590670659,21.18687961306017],[-98.3154730077494,21.186308130862074],[-98.31541426316988,21.18621951430248],[-98.314543494693,21.185681508840048],[-98.31331437407351,21.185509587073284],[-98.31271703937767,21.184534796970752],[-98.31119292658713,21.18344873482107],[-98.31076225873244,21.183488859238764],[-98.30944108074203,21.18499834820534],[-98.30829751530331,21.1836308129578],[-98.3086259077449,21.18233015639612],[-98.30907387217013,21.181888143050912],[-98.30910236885876,21.18157407999962],[-98.3083577910715,21.18057596699191],[-98.30806166880143,21.18029064280097],[-98.30593214486078,21.18176400417292],[-98.30499995911941,21.182956541273597],[-98.305564641329,21.182227023476855],[-98.30524143993944,21.18138135069438],[-98.30538371406499,21.18129476850214],[-98.30461097741608,21.181120240017492],[-98.30370992103673,21.180863676833837],[-98.30243456666358,21.180101285855756],[-98.30139352163695,21.178934623070006],[-98.3014893978052,21.17869743146622],[-98.29961665373276,21.17805244029904],[-98.29893730702764,21.177404382027817],[-98.2974982290927,21.17763351668026],[-98.29770668421594,21.178237035599693],[-98.2979998921254,21.17906934196435],[-98.29809668400588,21.17918681745857],[-98.29834955882092,21.179405656841084],[-98.29922676935269,21.179509056659015],[-98.2991845392387,21.179562279243214],[-98.29830523106835,21.18012159419243],[-98.29828854098525,21.180398201208106],[-98.29888940798202,21.18102173787753],[-98.29876131978011,21.182554414211495],[-98.2995366873945,21.183418945541746],[-98.29880517161331,21.184730193826795],[-98.29801107279451,21.18404856053087],[-98.29774558181538,21.182706974876567],[-98.29575236096969,21.1834170141791],[-98.29588937297495,21.18409085266387],[-98.29607173588931,21.184953222120043],[-98.29626073923066,21.185373305679263],[-98.29543937262082,21.18572323150113],[-98.295559622089,21.186230722261087],[-98.29648592730206,21.187068658235205],[-98.29614892423035,21.187873249425536],[-98.29555682693109,21.188135088166064],[-98.29371668063317,21.1887607977489],[-98.29336500643223,21.18888176103576],[-98.29293974098891,21.189358320192127],[-98.29261896241161,21.18956876904639],[-98.2917214327183,21.190635745823215],[-98.29131268304303,21.190986053724487],[-98.29041842621712,21.191363665255835],[-98.28993053858795,21.191889650973906],[-98.28958283376062,21.192305353417055],[-98.28926299906539,21.19251180099502],[-98.28895690007158,21.192744277569034],[-98.28874851827311,21.192834307971168],[-98.28818780166927,21.193209088516824],[-98.28619636971058,21.193724704581314],[-98.2791311354602,21.1927525553873],[-98.27810228661372,21.19202199496749],[-98.27637293183312,21.189472248962943],[-98.27551632205507,21.187373061132234],[-98.27837345233428,21.184407416359818],[-98.27887446148549,21.182858446971352],[-98.27847059626725,21.17708746518059],[-98.27805760695605,21.174545364552273],[-98.27932277543795,21.171156273202314],[-98.28231431856005,21.16693746825871],[-98.28314714738036,21.163971103775054],[-98.28468486320304,21.162365511416965],[-98.28639567463551,21.16139664283179],[-98.28864222252798,21.16109905155929],[-98.29020562127107,21.160901215261333],[-98.29189817451913,21.158951370478974],[-98.29573303266483,21.155273100051716],[-98.29571601257027,21.150553401744162],[-98.2955388174492,21.148289784730707],[-98.29393923072166,21.146816553393933],[-98.29265893513542,21.146309681254877],[-98.29049990484168,21.146100982575888],[-98.28835961222723,21.145529392870174],[-98.2851625009335,21.144544035712215],[-98.28407821505203,21.143476692742638],[-98.28276616063812,21.142470197897808],[-98.28167358290017,21.141738240640336],[-98.28118930123884,21.14145978720512],[-98.2808832839927,21.140499535173433],[-98.28110495910448,21.140274914989845],[-98.28140974820224,21.140074757910497],[-98.2823318954313,21.136923720745585],[-98.27892240168399,21.13691087047522],[-98.27818744758764,21.13717234051802],[-98.27547515909953,21.137848727110622],[-98.27168641501493,21.139367173904702],[-98.26903517284052,21.139091149490355],[-98.26739330316235,21.14014246540114],[-98.26466821427516,21.14115324557571],[-98.26250277495603,21.140656584303258],[-98.26100409843065,21.13916366770701],[-98.26000846213157,21.137736396060347],[-98.25786444852599,21.134694873123067],[-98.25710233733514,21.133924963896163],[-98.25105338332446,21.130641705413154],[-98.2506953929772,21.130801798186326],[-98.24911036922151,21.12940332652039],[-98.24527342009401,21.13216954378362],[-98.24587568677862,21.13304685528425],[-98.24577307131949,21.133505099120896],[-98.24596098207854,21.134601766797914],[-98.24431124086937,21.134612524570173],[-98.24246487240441,21.135895376369206],[-98.23945053112851,21.13798847145614],[-98.23845788403997,21.139344206527028],[-98.23820375552833,21.140986015682984],[-98.23699795542893,21.143285570267096],[-98.23692060624649,21.14335824172423],[-98.23564492584,21.141806842139943],[-98.23335113243309,21.14057392854653],[-98.23371786417567,21.1416437561698],[-98.23379122308108,21.143010060172173],[-98.23260059787822,21.143088269366842],[-98.23149261208079,21.142286112115983],[-98.23125738223462,21.143192428468637],[-98.23153242909405,21.1437348695099],[-98.23165609005605,21.14435765779342],[-98.23139419185799,21.144560099249702],[-98.23063425584724,21.14421108752032],[-98.2300118704776,21.14451470376838],[-98.22936676628734,21.14541409990835],[-98.22888626808361,21.146402699449766],[-98.22783537540346,21.14909426095022],[-98.22735004579613,21.150415946242276],[-98.22475092845639,21.14985160392257],[-98.22421121367267,21.149881290309224],[-98.22216720614063,21.15096825214266],[-98.22046104404137,21.151534656706076],[-98.21773305809268,21.1517545213689],[-98.2156302794246,21.15067140638456],[-98.21589796675596,21.14937506897718],[-98.21699307746871,21.148915958409475],[-98.21784765318398,21.14767366271758],[-98.21751881779039,21.145688599886853],[-98.21607554368074,21.143962825789856],[-98.21503999699854,21.143909357572284],[-98.21404816256825,21.144057351958622],[-98.21104161583168,21.144202194597995],[-98.20862629883896,21.143316021818066],[-98.2076560545704,21.14215489289029],[-98.20505372345423,21.138087915230585],[-98.20440661540147,21.134876126415065],[-98.20523177958478,21.13360694696712],[-98.20601157766839,21.13259007727413],[-98.20799983275333,21.130808034029997],[-98.20598181599064,21.126827356906915],[-98.20270889815612,21.12530670961121],[-98.19941151791738,21.123460917024886],[-98.19690603145568,21.12297437599375],[-98.19635470725876,21.12254899343651],[-98.19541316231965,21.121046929124304],[-98.1951522468674,21.120363207329376],[-98.19502989395045,21.11948957475596],[-98.19566734783984,21.117817411748604],[-98.19702860000967,21.11686217719034],[-98.19844331501196,21.116799246277765],[-98.1995148573933,21.11581918753035],[-98.20235609220373,21.110890204801365],[-98.20198243084792,21.10644293808275],[-98.19784262398599,21.10692997345336],[-98.19579763058601,21.107624705515832],[-98.19253707127388,21.108962282440586],[-98.19146280143394,21.109822940447145],[-98.18980446891868,21.110760162210795],[-98.18863184038952,21.110807514753844],[-98.1850711059385,21.110599549993935],[-98.18306837789646,21.10993488650456],[-98.18288718426362,21.109340943169116],[-98.18249629935252,21.108548301720646],[-98.18184397580114,21.107383727379897],[-98.180766720122,21.106834875911602],[-98.17835551114695,21.106240863325127],[-98.17716290447248,21.106250832427065],[-98.17597046274676,21.106229288310885],[-98.17486191583419,21.106223896937877],[-98.17444332540225,21.105985562417914],[-98.17406001653922,21.10536223546842],[-98.1732593094448,21.10348905164011],[-98.17286164452105,21.102061331094205],[-98.17256824583313,21.10068525746675],[-98.17191010045502,21.099202153598185],[-98.17095650657552,21.09681165049659],[-98.16858083204193,21.09579805814559],[-98.16579142631548,21.094519449432084],[-98.16173361371835,21.092455454007904],[-98.15747482018764,21.089785532353517],[-98.15350617699977,21.08600439244367],[-98.15256100427996,21.085797529030174],[-98.15094677747334,21.085498271219308],[-98.1498086968723,21.084124555060498],[-98.14913785467405,21.08302188796813],[-98.14846409433488,21.081546004128995],[-98.14735823780438,21.078449670522218],[-98.14795933921141,21.07479734327694],[-98.15043955421794,21.069508902300072],[-98.15364141415387,21.067465486320202],[-98.15443529964955,21.06321323795879],[-98.15130789670997,21.054982478071622],[-98.15055070640318,21.049718086761914],[-98.15077630816523,21.047218474009924],[-98.15166085671234,21.044728285940664],[-98.15221276312741,21.042397834402436],[-98.15352188657141,21.038810542588408],[-98.15515177107494,21.03483701848114],[-98.15737914215157,21.03277694273777],[-98.15826071335215,21.032499676356338],[-98.1597705062805,21.032183012306348],[-98.16081659038707,21.0311470937703],[-98.16270054526717,21.028331894578344],[-98.16225372148932,21.02643306957691],[-98.160699052761,21.02105721901205],[-98.16115768377534,21.019130630939856],[-98.16156152894689,21.0188271258624],[-98.16316791660887,21.017723181600218],[-98.1651516650391,21.018793904260406],[-98.16591978468034,21.019951407545307],[-98.1666453769871,21.02122279453954],[-98.16698570188771,21.0221005683905],[-98.1678637212724,21.022892659374406],[-98.17025461865546,21.022801964117377],[-98.17119627181626,21.02199188570097],[-98.17170383053485,21.021563521356256],[-98.17442833373968,21.020624038160122],[-98.17500834525265,21.02078978885794],[-98.17631740953095,21.0211678814415],[-98.1782291603493,21.02243123990945],[-98.17995600659026,21.023562431249502],[-98.18064968674128,21.02435174340468],[-98.1807692294812,21.024610935519945],[-98.18107897478325,21.02578264186684],[-98.18116565348265,21.026730901095846],[-98.18143825558269,21.0276004550621],[-98.18254478790931,21.02963071248115],[-98.1852705015404,21.030293222766375],[-98.18656677443744,21.030611032855177],[-98.18827143240321,21.03130814879671],[-98.18874263479705,21.030648920833812],[-98.18955388872064,21.02857910359444],[-98.19047960159179,21.026990793610082],[-98.19040569558541,21.02567711540297],[-98.19011189308566,21.024891569203874],[-98.18992709687632,21.024442261474917],[-98.18927548530706,21.02280470399006],[-98.18923052390613,21.022221189347988],[-98.18863120148859,21.021279388052903],[-98.18860417314414,21.02087875746497],[-98.18935566042666,21.019470529504588],[-98.18899837380775,21.0183187709286],[-98.19116072083449,21.018012448353147],[-98.19253146531418,21.018053205707247],[-98.19258968101872,21.018034182939914],[-98.1939530742082,21.017179238392714],[-98.19497892158671,21.016928839731804],[-98.1963441385173,21.016750561031586],[-98.19682016180565,21.01659270443696],[-98.19699342041736,21.016592499251544],[-98.19763896191489,21.01570443413374],[-98.19865599929335,21.014584346607535],[-98.1991269909592,21.014315153933353],[-98.19955986634551,21.013804050192334],[-98.2001888061618,21.013045785523673],[-98.20206846745162,21.011749209104835],[-98.20240115539241,21.010399367534944],[-98.20251225522873,21.00969284793797],[-98.20268831724587,21.00935197425264],[-98.20192202644847,21.008458318094824],[-98.20200898046005,21.005328112735754],[-98.20023356189142,21.000944330722234],[-98.19991967044518,21.000134022914892],[-98.20009540987735,20.996766621144673],[-98.20061927399752,20.994696329480007],[-98.20166549190708,20.994286576325408],[-98.21500745409134,20.98962731533146],[-98.21446498738993,20.987614404297744],[-98.21423168190273,20.987171275000037],[-98.2132593000693,20.983749300057525],[-98.21417939933627,20.980951930811216],[-98.2143879530471,20.978525450565485],[-98.21674702262908,20.975909630730087],[-98.21691940384011,20.973743008166252],[-98.21484593980159,20.973386408839133],[-98.21216790566757,20.972807329520947],[-98.21129435447955,20.972309240287984],[-98.21078426469228,20.97193508674144],[-98.21044230837452,20.97141179409698],[-98.21080073052309,20.969533362277673],[-98.2117776201664,20.968135341726224],[-98.21071082884447,20.967483245666585],[-98.21000901888533,20.96747253277539],[-98.21022826833604,20.966392635535897],[-98.21168665299211,20.964695829847017],[-98.21316681463804,20.96318773337157],[-98.21350321967537,20.962580593463656],[-98.21388736575841,20.96105538655354],[-98.21421352560708,20.959388391393702],[-98.21425548516129,20.958164726847087],[-98.2143706673528,20.957083205662116],[-98.21435470924791,20.95642383933688],[-98.2143849667749,20.95604753846868],[-98.2147445479323,20.95541629044385],[-98.21545817939244,20.954553936091088],[-98.21602503030982,20.953430830635],[-98.21610507260931,20.95307867737114],[-98.21611156636362,20.95260791912699],[-98.21730230418024,20.953493463831933],[-98.21810089488383,20.95373859968629],[-98.21884969774595,20.953959584506094],[-98.22568767527446,20.959419445289313],[-98.22857369287959,20.957608847612732],[-98.2273693427017,20.95406543015747],[-98.22973063105223,20.94974833040419],[-98.2302038371343,20.944765541613037],[-98.23493551513661,20.94106292606341],[-98.23688053293847,20.935681286423176],[-98.23738624714542,20.93477624845201],[-98.23742687662627,20.933818727967775],[-98.23716267098968,20.93261043983904],[-98.23713059380583,20.93242988297021],[-98.23686188545065,20.932467285757014],[-98.23680966929629,20.932394983055246],[-98.23700994301817,20.931460672381263],[-98.23703462286397,20.931390640793268],[-98.23749759138269,20.930639656958306],[-98.23667971222517,20.93002290886966],[-98.2368234749323,20.928975164608175],[-98.23716403861374,20.92825306389824],[-98.23825071908095,20.927070407655435],[-98.23871883441916,20.92612475883965],[-98.2390843767102,20.92486245687627],[-98.23915741676916,20.922122494755968],[-98.23862165601014,20.921007873136432],[-98.23836551183996,20.92074243857695],[-98.23604283342752,20.917879189775533],[-98.23514411884582,20.916890337040343],[-98.23426393754369,20.915829905490853],[-98.23180935439512,20.91523283645114],[-98.22913008164045,20.9146802699359],[-98.22609039688899,20.91743360849358],[-98.22321638452189,20.918842066688114],[-98.22258048732635,20.917939677536083],[-98.22263361234263,20.917557083607278],[-98.22243686064746,20.91690333784362],[-98.22252005394574,20.915987357697702],[-98.22276250214549,20.914351024011864],[-98.22266012390804,20.91335857997558],[-98.22400026761898,20.912159815667508],[-98.22430144201053,20.911465797976746],[-98.2256930761526,20.911317947477755],[-98.22635472699318,20.911393619119906],[-98.22884271704316,20.908680447788925],[-98.22901763909078,20.9081903520393],[-98.22874294217127,20.90740993848118],[-98.22744520056295,20.907238636258114],[-98.22682966804058,20.907159528812883],[-98.22587223270699,20.906991539155],[-98.22486289467258,20.906357244047683],[-98.22667110788205,20.905884917216724],[-98.22667424443182,20.90527299370342],[-98.22607465411534,20.905132906238066],[-98.22626209373504,20.90409371994639],[-98.22691415111274,20.903945362003412],[-98.22810568501478,20.904431174316983],[-98.22869848481184,20.904428468764763],[-98.22890594439002,20.903279291761237],[-98.2289720637122,20.902478881645266],[-98.22985829544206,20.90201700877094],[-98.23027762997646,20.901887872721147],[-98.23121641585107,20.901455472416103],[-98.23180611434378,20.90077821014154],[-98.23203174595852,20.900487835519414],[-98.23267193371038,20.90005361935863],[-98.23327460283218,20.900214373390213],[-98.2352386564325,20.900384661532712],[-98.23614214216474,20.90028777303496],[-98.23683023297639,20.900270662126047],[-98.23753991777772,20.90023345552163],[-98.23827120809534,20.90017616161441],[-98.24026634597806,20.899787845941148],[-98.24136224850946,20.89968343008917],[-98.24246510846802,20.899696926706326],[-98.24356599696767,20.89934942758333],[-98.24437225349703,20.898950277091842],[-98.24490967157425,20.89870095622956],[-98.24558074386437,20.898527732000446],[-98.24592837731615,20.898830284716666],[-98.2481356684948,20.898885787602694],[-98.24866815230996,20.898961620389343],[-98.25096630941619,20.897304692351554],[-98.25463990696483,20.88873628290861],[-98.25564284725078,20.886841096923717],[-98.25611425673083,20.885339803438455],[-98.25768070825018,20.879423938402056],[-98.25762467270437,20.878442247649332],[-98.25775679563014,20.877778583102213],[-98.25834618889155,20.87689469753144],[-98.25862794048567,20.875987350157686],[-98.26011892412987,20.872719990264443],[-98.26154910055988,20.870712155141234],[-98.26295450970156,20.868680464072156],[-98.26331278264706,20.868260190925525],[-98.26342238059692,20.86813173205178],[-98.26401872888641,20.867528941846103],[-98.26458540062663,20.866945745888984],[-98.26541602132136,20.866355293858817],[-98.2633803033944,20.864988792305837],[-98.26270785484775,20.86469818404339],[-98.26220946286276,20.86450384366742],[-98.26149267046372,20.863788865881475],[-98.2612717161914,20.863456569514312],[-98.26102699303516,20.8630298027104],[-98.26034005071489,20.861961983346248],[-98.25996977954048,20.86155725596916],[-98.25902727268374,20.860863107402963],[-98.25858154851142,20.86048101811849],[-98.25815991392255,20.860169855773677],[-98.25709123280092,20.859544821202917],[-98.25654501234948,20.8591850661482],[-98.25687957127724,20.858529787920418],[-98.25759013824364,20.85785547736708],[-98.25812505738367,20.85720260186497],[-98.25835526598564,20.856852170061927],[-98.25882366926953,20.85556274319157],[-98.25880533457683,20.855068050402622],[-98.25829069615429,20.854041084194364],[-98.25781468650598,20.853532069791697],[-98.25737396083338,20.85286521216409],[-98.25721132442408,20.85259059186137],[-98.25650070233638,20.851720227999863],[-98.25657832801119,20.85120326462237],[-98.25534762962104,20.849925850749514],[-98.25516118896917,20.849755255023013],[-98.25464298556886,20.848952198975724],[-98.25493328932697,20.84875822659376],[-98.25581656867672,20.848274368670786],[-98.25770564131813,20.847673295044217],[-98.2609207680627,20.847073794031246],[-98.26099958672302,20.847075726101423],[-98.26111484202556,20.847081529966204],[-98.26120313878135,20.84707947765213],[-98.26189483395945,20.847075556279037],[-98.26106349258038,20.843710210184952],[-98.26086358001527,20.841792834037904],[-98.25930529344527,20.839525634870085],[-98.25931130355099,20.838297134295942],[-98.2593197169283,20.83657724099919],[-98.25891394134095,20.83397102314217],[-98.2521123756477,20.827815140190012],[-98.25231526730317,20.827629210753912],[-98.25275121497077,20.82688097203811],[-98.2529091471605,20.826317758941116],[-98.2531698029274,20.825567410196413],[-98.25343717974789,20.824322667749698],[-98.25362046700519,20.823736212293568],[-98.25367663036297,20.823289506330696],[-98.25381399617743,20.82239639533168],[-98.25376504629259,20.821491723228235],[-98.2526896726776,20.82067632437753],[-98.25196188920626,20.819914380586624],[-98.25035776319294,20.82082653900352],[-98.24949423010833,20.82229775838914],[-98.24788834241588,20.821465772517286],[-98.24793782357028,20.819698822135365],[-98.24238506968226,20.81865354085926],[-98.24210219713655,20.81810873443567],[-98.24146016436214,20.81802762976298],[-98.24005209271246,20.81815096710261],[-98.23935284910766,20.817937683985917],[-98.23787349853967,20.818274223227718],[-98.23682880741751,20.818113675418033],[-98.2368861879059,20.817894407825122],[-98.23643170427727,20.817581404517227],[-98.23593843795038,20.81779583269804],[-98.23485650315598,20.818365320130226],[-98.23320061740276,20.818572400571384],[-98.23263309071535,20.81840096939544],[-98.23213297938548,20.81844503841762],[-98.23120890098937,20.818602448383615],[-98.2269253485145,20.81775104474798],[-98.2254111724738,20.818116345230692],[-98.22470505824253,20.818235238198326],[-98.22485447505983,20.818061509219376],[-98.22558360783853,20.817070683658244],[-98.2263331012345,20.816724064607058],[-98.22694146629061,20.816221666655565],[-98.22730617029066,20.81474145490415],[-98.22757591380685,20.813391892883487],[-98.22782984960577,20.812588342401284],[-98.22862024710162,20.811912995927116],[-98.22887331612617,20.811277087371764],[-98.22898754751259,20.809869390995402],[-98.22924146339352,20.80906584195992],[-98.22956658330583,20.80829613922498],[-98.23190592547559,20.805508014938482],[-98.23237259304108,20.80497364168548],[-98.2326608157212,20.804438468936326],[-98.23256664162983,20.801889852586385],[-98.23300896239829,20.799108936759865],[-98.23365262162287,20.797555572512294],[-98.23393626616263,20.797312315457646],[-98.23513904678094,20.797098285610844],[-98.23583645193628,20.796685131515005],[-98.23696145212631,20.797480115580072],[-98.23745015676167,20.798156956187427],[-98.23748234538391,20.798433434196113],[-98.23858079457466,20.79808084808485],[-98.2395181463981,20.798610690494627],[-98.2403449749255,20.798866680943206],[-98.24079111926636,20.799163038822257],[-98.24130503205396,20.799333529153103],[-98.2421081177153,20.799862764027296],[-98.24262109564069,20.80022249339254],[-98.2429775177257,20.800560505046576],[-98.24355911032336,20.800626151110976],[-98.24400683212656,20.800607094636575],[-98.2449654528304,20.801368304210314],[-98.24488684412279,20.80222159642443],[-98.24543696650323,20.801346905332082],[-98.24599664306476,20.800930268572188],[-98.24633621639333,20.799626056870125],[-98.24656946556843,20.79921419330094],[-98.24664087297009,20.79880161073868],[-98.24668915351617,20.798388934701734],[-98.24717725035288,20.797869525084195],[-98.24759403659715,20.79774097127728],[-98.24808104019178,20.79743887350793],[-98.24836063002465,20.79700547586674],[-98.24891859934809,20.796377711323828],[-98.24880370327571,20.796272288025477],[-98.24828676732949,20.796068659003538],[-98.24809155398748,20.795816104642824],[-98.24775371151702,20.79551257818872],[-98.24703657095063,20.794616055792517],[-98.2460739414824,20.79397128902633],[-98.24584828209515,20.793650027307024],[-98.24555167514075,20.79331510722352],[-98.24560922020083,20.793168573427067],[-98.24603670107405,20.79289021169268],[-98.24605419164692,20.792586864968257],[-98.24627697169433,20.79213203264834],[-98.24667806627758,20.7917768330355],[-98.2469678156815,20.791238653727817],[-98.24701373356697,20.79088613930253],[-98.24717087943549,20.790368123201404],[-98.24755008506816,20.789602109086502],[-98.24774964723684,20.78943699853494],[-98.24830149832695,20.789480911395685],[-98.24878525309282,20.78989799029722],[-98.2490041237005,20.790293163654894],[-98.2492013249115,20.790605247163114],[-98.25010547591626,20.790858175590643],[-98.25043548004624,20.79110859719782],[-98.25109206528066,20.791487105509646],[-98.25146919874646,20.79187455872369],[-98.25217813205603,20.792233778316074],[-98.25235061792677,20.792486789405643],[-98.25310452714893,20.79333587886856],[-98.25325997502858,20.79384107024424],[-98.2532432321579,20.79403390357612],[-98.25341659778644,20.794108848565372],[-98.25404155114467,20.794102888049736],[-98.25482706177888,20.793834242525065],[-98.25554581944357,20.793467377786612],[-98.25587171394642,20.793389295296663],[-98.25636178944455,20.793265697957338],[-98.25663672039303,20.7931291426994],[-98.25709908585577,20.792555439046623],[-98.25783788019771,20.791622444877248],[-98.2580933392124,20.791248765743603],[-98.25822298336726,20.790920670128173],[-98.2584363490206,20.78995782357532],[-98.2585913452184,20.789606485170168],[-98.26004065362906,20.78797560512902],[-98.26082660720334,20.78725508048177],[-98.26126175378619,20.786553897604904],[-98.26202074857918,20.78597432328087],[-98.26272202641258,20.785959170783656],[-98.2665516355334,20.786052052121818],[-98.27091014553218,20.785915688221564],[-98.27529083724585,20.785991396268003],[-98.27619681976392,20.785648971928822],[-98.27682584019965,20.785420983856113],[-98.27786647037476,20.78437375449971],[-98.2784235410906,20.78390944020356],[-98.27888078851089,20.78342039227573],[-98.2793396122974,20.782813629001055],[-98.28074002805653,20.784808157534144],[-98.28138334381725,20.785380904985743],[-98.28310535080476,20.785801608909196],[-98.28547416969076,20.786536057362184],[-98.28720564256048,20.786250435617944],[-98.28865984394895,20.78610279953449],[-98.2900423960806,20.785695292716014],[-98.29202294037606,20.78550674938697],[-98.29270294860879,20.785208664506115],[-98.2945229797412,20.783911509435825],[-98.29493198945244,20.783280569981514],[-98.29518577747655,20.78302454682114],[-98.29541515743068,20.78272114262677],[-98.29577315250054,20.782160239973564],[-98.29602975668388,20.78169232924222],[-98.29618309192881,20.78145866841129],[-98.29689750193455,20.780454573186034],[-98.29712656141447,20.780174709334972],[-98.29778525852004,20.779593793513584],[-98.29826339756636,20.779411044212566],[-98.29846616806293,20.779225055769587],[-98.29877157420276,20.778851900881477],[-98.29877595379662,20.77852229975781],[-98.29880348966026,20.778334250562068],[-98.30012243717891,20.778938417497898],[-98.30043693086049,20.779766243872302],[-98.30090881741319,20.78005434607428],[-98.30143264756077,20.780201777204354],[-98.30185821850444,20.78020677358421],[-98.30230819850914,20.78025914862593],[-98.30269655896922,20.781182024402767],[-98.30371264424923,20.781970983055317],[-98.3042837437705,20.782330879611266],[-98.30447871186959,20.78273345811192],[-98.30402248273725,20.783151947717556],[-98.30363948088063,20.783712574659262],[-98.30350962803851,20.78406425077145],[-98.30302211366893,20.784953302807196],[-98.30212716928975,20.78635559660421],[-98.30195509415228,20.78800183887273],[-98.30172165693625,20.788611309884914],[-98.30146568258726,20.78903214308906],[-98.30106293421835,20.78919223955137],[-98.30043737045207,20.789161344716604],[-98.29888833402123,20.792675126950314],[-98.29800174828688,20.79532546350373],[-98.29754576092051,20.79760411622999],[-98.29743465429908,20.798426938689374],[-98.2984464356997,20.80142925480584],[-98.2998882503972,20.800339517880047],[-98.30031825584376,20.80001491917426],[-98.30059866414575,20.79964146872203],[-98.30097075054363,20.79802112629733],[-98.30147991948371,20.797391348811345],[-98.30183480404094,20.797065863840146],[-98.30226792013883,20.796505830632782],[-98.3025180574623,20.79611298115077],[-98.30468052533189,20.797735010101007],[-98.3054056478253,20.797814150139743],[-98.30614832395543,20.7984586108862],[-98.30653955690099,20.79916959180332],[-98.3074747484834,20.800404966598308],[-98.30781747624388,20.80099764379048],[-98.30783036150677,20.801916111409582],[-98.30884492965947,20.800939029073277],[-98.30960320114082,20.800406328166957],[-98.31166478145741,20.797887395883038],[-98.31441088413385,20.790926113993976],[-98.31599255461947,20.788707630419367],[-98.31803961141804,20.78727159068211],[-98.31879499427907,20.786950732996104],[-98.31947650847172,20.786534825718206],[-98.32189067065372,20.785738770220462],[-98.32362640448434,20.78512317637842],[-98.32413049377953,20.784870016341642],[-98.32455855139989,20.78468661225895],[-98.32596727287478,20.78418493158472],[-98.32731943930946,20.784177063810034],[-98.32814804149393,20.78399829310655],[-98.32824885692702,20.785859648481278],[-98.32902276574077,20.7868815219839],[-98.33004546976952,20.787523704815953],[-98.33039154584361,20.78761795546876],[-98.33095516259289,20.78760989044241],[-98.33160548328016,20.78814040509576],[-98.33195216201358,20.788445230200125],[-98.33291267139265,20.788796120382642],[-98.33318924391779,20.789095619764907],[-98.3335894006562,20.789880339004355],[-98.33405146334513,20.78974277646114],[-98.33436575678485,20.789640679229876],[-98.33526781609476,20.789852683221284],[-98.3358943522316,20.791125047576315],[-98.33604474458775,20.79166698905965],[-98.33669623403733,20.79173762625709],[-98.33752318920358,20.792444451903464],[-98.33845037090015,20.79305701175923],[-98.33847553628334,20.794046663374843],[-98.33840054042281,20.79567253007781],[-98.34073103415972,20.796709081536505],[-98.34466526915185,20.79748534495326],[-98.34317810488398,20.79808073902757],[-98.341680328682,20.798782040492995],[-98.34080652842437,20.799301024271642],[-98.34028030982995,20.799348205002048],[-98.33927800447913,20.799583935855765],[-98.33860142425931,20.79953687304146],[-98.33784971366828,20.799913951260805],[-98.33662192957388,20.80071520192695],[-98.33474197501528,20.802026318754145],[-98.333193769508,20.802164068911395],[-98.3314631095758,20.802379521723765],[-98.32788404262897,20.804151167994178],[-98.32331754787305,20.806236477939194],[-98.31957390497826,20.807680827497336],[-98.31703170633426,20.808663723503912],[-98.31633032169032,20.8086790947969],[-98.31600202957026,20.80888718655001],[-98.31562459098802,20.809024064751725],[-98.3151568216062,20.810313670982453],[-98.31562479461917,20.81090779379116],[-98.31596633551703,20.81159462746234],[-98.31625997398504,20.81211607591547],[-98.31637709990656,20.81272965248388],[-98.31635103067026,20.814707260956766],[-98.31639790646409,20.816850545441582],[-98.31738708675528,20.817803937700432],[-98.31916646850112,20.81770693035037],[-98.32164139301801,20.818041832106644],[-98.32231375819924,20.81833220802264],[-98.3228887501428,20.818409530583097],[-98.32391137124705,20.818727516784918],[-98.32508022017333,20.819353300040916],[-98.32565398187671,20.81952478546708],[-98.32595446451717,20.819528272244042],[-98.32655172415963,20.819817760275953],[-98.32875085014058,20.82130051071624],[-98.3285858429706,20.82162913013559],[-98.32830022541106,20.822813365375396],[-98.32780558207332,20.82371141708518],[-98.3276598543356,20.824962051341288],[-98.32772305053925,20.826520817966014],[-98.32715586599966,20.827967358794638],[-98.3271290922948,20.828735535197666],[-98.3287762534381,20.829709566635927],[-98.32900163070445,20.829712178073237],[-98.32932594189452,20.82981012162304],[-98.33157848481818,20.829930387604406],[-98.3324537221377,20.830034699332714],[-98.33358993824328,20.830495626089885],[-98.33597913135247,20.83139449662292],[-98.33659324854273,20.83162553487705],[-98.33966736705253,20.83274258084515],[-98.34382735868229,20.83237339728447],[-98.34542920422854,20.83184315542212],[-98.34795781568869,20.834806909791837],[-98.35141497439366,20.83482239445607],[-98.35291625645152,20.837174544604352],[-98.3521909652087,20.839427152348208],[-98.34975127256223,20.842981051007655],[-98.35024953950392,20.845768069100586],[-98.35193142600474,20.84777913446692],[-98.35178803681566,20.84879642472447],[-98.35094347389725,20.850310295263455],[-98.34855060875395,20.85338889203598],[-98.3477003017615,20.854920239215687],[-98.34788305180058,20.85729690808239],[-98.3477862792572,20.85886784395194],[-98.3445177598619,20.862235507374066],[-98.34514553610984,20.86485254000678],[-98.34555731184673,20.864360872975226],[-98.34652538672503,20.86324662230379],[-98.34765786328035,20.863303558611904],[-98.34791510304422,20.86359181833643],[-98.34787115413155,20.86474747303049],[-98.34999704524046,20.86472970282989],[-98.35062325447728,20.86180246836301],[-98.3523154065166,20.860567196773957],[-98.35329007303244,20.86020301567072],[-98.35493064158152,20.859173993678496],[-98.3562031893104,20.85769022074146],[-98.35751018585705,20.8567901176159],[-98.35864382526364,20.856687902812155],[-98.35960228921584,20.8578094435274],[-98.35971132024014,20.85882133847815],[-98.36071688300291,20.859979389936484],[-98.36342939815728,20.860639742204626],[-98.36493254541335,20.86344494851312],[-98.36662349991343,20.86355145896016],[-98.36759115534022,20.86216669457167],[-98.36906602559293,20.862103726012037],[-98.36974732970344,20.86240214868633],[-98.37112594885872,20.862314448364316],[-98.37172625327452,20.861328095087572],[-98.37209730520351,20.859801199313495],[-98.3730352189375,20.8565468715654],[-98.3739916818675,20.855513407706894],[-98.37571192398042,20.854723142408034],[-98.3761072817282,20.854497564114013],[-98.37809652894867,20.85329211568728],[-98.3789100367643,20.852009905999523],[-98.38016481935267,20.85242242459441],[-98.38050569217359,20.85272857930579],[-98.38188183768091,20.853513780074536],[-98.38799570421384,20.853790863205404],[-98.38811943149852,20.855297319900615],[-98.38956815956004,20.85579031985702],[-98.39077535064848,20.85517429142095],[-98.39240864641619,20.854605553214867],[-98.39316606483243,20.85434656579423],[-98.39364303432353,20.85440212018375],[-98.39429014962354,20.854948916461694],[-98.39489506834099,20.85508618937672],[-98.39562753899571,20.855356915311347],[-98.39614148958987,20.856671129962763],[-98.39647865183645,20.857269989553856],[-98.39824765693288,20.858730626853117],[-98.4007308319973,20.85836186507754],[-98.40149331363938,20.858115836684817],[-98.40397332729816,20.85746355887386],[-98.40414247046448,20.856687759561055],[-98.40558101908437,20.85519723149355],[-98.40798712825165,20.85424910034658],[-98.4114215091767,20.854093010858776],[-98.4119130960695,20.852751577988954],[-98.41223053430798,20.849958388907112],[-98.41371720728017,20.84863644921944],[-98.41516840549536,20.849091955075266],[-98.41702217186554,20.84809609394125],[-98.41782413575976,20.8499686152835],[-98.41874160269543,20.850979324611103],[-98.41942902293783,20.851102460339575],[-98.42061508252573,20.850451378310538],[-98.42180629991446,20.84916462372871],[-98.42294756959313,20.84944277100567],[-98.42421926974953,20.849998385895958],[-98.42567615215108,20.849199969444783],[-98.4258155151087,20.848248935536787],[-98.42652823150092,20.847504639989268],[-98.42760249530221,20.847302275379093],[-98.42743959573806,20.84877773369226],[-98.42790438601855,20.849192859655375],[-98.42863212909509,20.848613464714504],[-98.42960878221169,20.848205163595367],[-98.4307992430289,20.847356877874063],[-98.43073879310526,20.84663659666586],[-98.42952067779157,20.846958125859317],[-98.43045368682039,20.84574995843883],[-98.4309632924124,20.844632456741238],[-98.43152788427528,20.842816199304878],[-98.43181991368937,20.841691556935643],[-98.43288906924988,20.84167669720864],[-98.4331867531314,20.841834581128637],[-98.43371092375202,20.841055802439826],[-98.43487331612698,20.84044285580984],[-98.43580081916599,20.839926257019442],[-98.43736422161697,20.8387708228812],[-98.43937543235091,20.83833558998026],[-98.43984842730566,20.837614159132784],[-98.44002182625428,20.83697208337219],[-98.44014217569946,20.83635546607593],[-98.44109026332109,20.835091847250226],[-98.4437521011804,20.834132489904107],[-98.44375577883056,20.833128371458656],[-98.44363869072595,20.830075436223353],[-98.44402745480596,20.828992236927434],[-98.44514508187535,20.827349079255953],[-98.4489227276838,20.823143896401575],[-98.45003778696355,20.82218350343021],[-98.45055357194155,20.8214718608466],[-98.4510718224663,20.820027568571163],[-98.45172628827396,20.81637461947753],[-98.45203147963042,20.814728816057595],[-98.45212364232702,20.812881505623352],[-98.45080520910102,20.810989526606875],[-98.45043260811815,20.810228259805115],[-98.44964488081558,20.810188644169386],[-98.449494497854,20.8101651913139],[-98.44949422182293,20.809835301384794],[-98.44976961050526,20.809505208348526],[-98.449543356459,20.808657086081723],[-98.44936726453125,20.80785605378685],[-98.44944163657493,20.806889892006723],[-98.44981646840728,20.805617181780974],[-98.45049188934183,20.80420286588941],[-98.45081692565168,20.803330770988907],[-98.45096706247494,20.803071459508544],[-98.4510671200988,20.802859312447197],[-98.45166663627606,20.800620321251188],[-98.45204153359458,20.799465422581363],[-98.45341665010068,20.795859147905844],[-98.45345903853422,20.795555446449157],[-98.453608191211,20.79541624175124],[-98.45412343661059,20.794775230215294],[-98.45442538535207,20.794013047416286],[-98.45485584922483,20.793170940091613],[-98.45554981851552,20.79036155801316],[-98.45585203802761,20.789519041393703],[-98.45636567574763,20.789319838973597],[-98.45799006892759,20.789284803288353],[-98.45893370190726,20.78836397011827],[-98.45948979427578,20.788245223329],[-98.46124651890989,20.78704577206429],[-98.46176156147749,20.786444902555445],[-98.46263131032919,20.785416233734736],[-98.46323055541245,20.78517711049301],[-98.46323239611684,20.78465496513155],[-98.46285324056464,20.783087327765884],[-98.46251783049513,20.78123866689259],[-98.46085789231267,20.779265362410285],[-98.46098938588034,20.778341967937763],[-98.46176339446157,20.777018929542123],[-98.46210843211281,20.77613636920512],[-98.46311089141676,20.775392078199957],[-98.4635483888394,20.775310181160762],[-98.4639957646018,20.774214314117614],[-98.46455730117003,20.772529108250865],[-98.46434572501158,20.77192596898624],[-98.46413914810881,20.77180889724889],[-98.46369028979376,20.771591072799765],[-98.46252524921249,20.77081073376388],[-98.46076400611145,20.768272772687396],[-98.46098479159974,20.76626518553786],[-98.46030882725961,20.764053962798585],[-98.46009941292351,20.76284833829078],[-98.45827109882208,20.760392031715924],[-98.45724222119026,20.758460619963273],[-98.45473407361715,20.75511653036392],[-98.45400704428556,20.754504435020237],[-98.45348036947024,20.753821491822066],[-98.45237750231308,20.753115422967653],[-98.45195149055178,20.752950800663086],[-98.45109928824297,20.75240947953222],[-98.45067315921278,20.75210347184992],[-98.44983233988677,20.751520510476894],[-98.45125685885392,20.750301687153183],[-98.45157212202736,20.74961193137625],[-98.45254964021882,20.748763129883685],[-98.45320827427355,20.748360562950495],[-98.45370900942737,20.748735798217865],[-98.45483851546868,20.74825914487883],[-98.45528410159835,20.7481273810925],[-98.45586018355249,20.74790024690833],[-98.45638628427861,20.747761920122343],[-98.45681438575065,20.747679506426607],[-98.45825753681862,20.746844507803644],[-98.45888934849023,20.747067912587738],[-98.45943848384707,20.746993511486608],[-98.4601445549539,20.746608899930663],[-98.46194867619243,20.74576628776026],[-98.4625572927024,20.746052287636303],[-98.46274983045447,20.746126940348233],[-98.46325174249671,20.746543673263943],[-98.46376435546267,20.746269209775733],[-98.46397782377181,20.746064629984403],[-98.46477340640661,20.745768797543576],[-98.46541525635115,20.74576537492993],[-98.46577377869232,20.745868169491928],[-98.46688052295576,20.746015912101882],[-98.46836327286917,20.745824562525684],[-98.46965397055669,20.74503904377343],[-98.47006220845259,20.744799369778832],[-98.47069985931893,20.744942716227683],[-98.47151928602045,20.744170808051877],[-98.47341721695835,20.742131655905553],[-98.47398446192989,20.740852279815158],[-98.4756076282979,20.739175447255093],[-98.48503053422729,20.738517431256753],[-98.48638371792163,20.737989777231576],[-98.48720254226009,20.738158802271926],[-98.49206969613982,20.736949845562776],[-98.49581228981572,20.736922167784314],[-98.49747266606943,20.736488594899868],[-98.49826783687206,20.735829878587083],[-98.4988239545388,20.73514250915997],[-98.49984033122092,20.734451154266594],[-98.50179703019711,20.733859708740113],[-98.50284160411019,20.733234983180125],[-98.50469551965614,20.733498114545853],[-98.5056682012505,20.735684881205543],[-98.507646109534,20.73975306415656],[-98.50794948297602,20.740654165980857],[-98.50821695884429,20.74200177376673],[-98.50809570466026,20.742870179524004],[-98.50782724055227,20.743617705985685],[-98.51038346840068,20.744496736630595],[-98.51420017825257,20.743848907953122],[-98.51450612459718,20.743738031769908],[-98.51665391161464,20.742889680523206],[-98.51779561125107,20.7412192759125],[-98.51740756591158,20.73968076168518],[-98.5157563694338,20.738632979408067],[-98.51451183296865,20.73629917369226],[-98.51451501516902,20.734109920778735],[-98.51408999414724,20.73306496513618],[-98.51440125824524,20.732536852588396],[-98.51312260692805,20.73231850456284],[-98.51302992091291,20.7327262314505],[-98.51252145300771,20.73335753895276],[-98.51172404861603,20.73344488592562],[-98.51147923748289,20.733552995992625],[-98.51090348045318,20.733759124399967],[-98.5105326250881,20.733862772004954],[-98.5096525231757,20.73333577195723],[-98.50903288690415,20.7332189223103],[-98.50853043353146,20.733217685566444],[-98.50802381167199,20.73340283420066],[-98.5070909862763,20.73331637672925],[-98.50643806295648,20.73311915217579],[-98.50713101272157,20.73261882649922],[-98.50762456241353,20.7319458137124],[-98.50963011792669,20.730599283045535],[-98.51034340749175,20.730012435605715],[-98.5107317450545,20.729365247435453],[-98.51214485385356,20.728603034432865],[-98.51396052270746,20.72817069459643],[-98.51345223649469,20.726598572311616],[-98.51413956042262,20.726510985406435],[-98.51542650905134,20.725924013209692],[-98.51568224419356,20.725355564518054],[-98.51704526795072,20.726518464629862],[-98.51763890511131,20.726790690172436],[-98.51811860136496,20.726740535417093],[-98.51850942619905,20.726960838113882],[-98.51911348728669,20.72734370481095],[-98.52036925863916,20.727032494762852],[-98.52151541314197,20.725961509097374],[-98.52594545050141,20.720465397595774],[-98.52638785975915,20.72024997162555],[-98.52694528435558,20.720107072396388],[-98.52792669787112,20.71949593663612],[-98.52875320325535,20.719104992827056],[-98.52896283518146,20.71890907867106],[-98.52977090762778,20.718321815531397],[-98.53015979745288,20.718098320969148],[-98.53060978623193,20.717425866195867],[-98.53198787109284,20.715969979251554],[-98.53227007658364,20.71468352789134],[-98.53195114553733,20.71333461674999],[-98.53221700831739,20.712964196303858],[-98.53214244174848,20.71193792390966],[-98.53206225161722,20.711001828844758],[-98.53192329846286,20.71067555251824],[-98.53065594945531,20.710127948674767],[-98.53055461359509,20.70998122422276],[-98.53058525567258,20.709449271842516],[-98.53044530415883,20.708846934428266],[-98.52907260569503,20.703993919187212],[-98.53050056586204,20.704511564551638],[-98.53108110065506,20.703636686552784],[-98.53073102935514,20.70247792445923],[-98.5315508175425,20.701572425586562],[-98.53240624061488,20.701155794661418],[-98.533033106988,20.7007562496849],[-98.53334235344175,20.699638141022888],[-98.53691536858838,20.6985262868796],[-98.5384897851336,20.698378094208124],[-98.54025704603657,20.698107494553255],[-98.53983115024118,20.6975554138308],[-98.53869448562943,20.69559112385707],[-98.53887204199577,20.695051594416555],[-98.53886717698799,20.69469736820963],[-98.53945880025259,20.694016929997872],[-98.53999178439517,20.693506968002964],[-98.54029389553324,20.69337008802148],[-98.54044234167378,20.693466253391875],[-98.54071797200612,20.6934230821509],[-98.54180518832567,20.692638649851006],[-98.54215578503101,20.692596528148044],[-98.54364430573628,20.6917236323377],[-98.54489897822879,20.69141193442914],[-98.55017976003865,20.689392545263047],[-98.54980221431987,20.68797604598427],[-98.5495347651082,20.687501898935693],[-98.54912407112113,20.686602381710884],[-98.5489379053202,20.685729524989426],[-98.54867491983362,20.684973194924567],[-98.54851591789583,20.6836906950316],[-98.54846427980709,20.681469431992866],[-98.54753798441845,20.680460945456616],[-98.54689225823125,20.677151400807418],[-98.54570169299097,20.674654168703853],[-98.54435548983611,20.672389017299793],[-98.54324458436554,20.670740951928167],[-98.54283488925881,20.670096588852914],[-98.54255644037477,20.669196074548154],[-98.54233470323669,20.668084266827066],[-98.5422268812921,20.668131945919754],[-98.54180573972747,20.66803081442208],[-98.54167122525809,20.667929125647902],[-98.54118114268874,20.667573143721825],[-98.54097368661996,20.66773235703937],[-98.54081001766343,20.667802793679016],[-98.54064688081735,20.667689810069135],[-98.54031740752657,20.66718652132232],[-98.53990376418983,20.666761166339597],[-98.53924917175357,20.666775430551297],[-98.53878024021145,20.66638316229711],[-98.5388470702041,20.665848788075436],[-98.53807925226988,20.66496726439175],[-98.53779477894795,20.664619958562298],[-98.53762771513794,20.664918534801927],[-98.53699857078374,20.665150851028613],[-98.53658215583579,20.6649818328832],[-98.53685883339364,20.66477674206118],[-98.53689276947654,20.664261323770234],[-98.53614089580151,20.663363707646738],[-98.53561471655757,20.663322480165903],[-98.53501104240365,20.663265603174295],[-98.53370351855585,20.663357601186533],[-98.53325609058163,20.663405313091516],[-98.53209482502592,20.66344231521805],[-98.53146518900934,20.664100080655714],[-98.53042066218944,20.66512171939661],[-98.53157078041022,20.666053526365772],[-98.53162163482983,20.66657835727267],[-98.53147317770788,20.667771494478984],[-98.53128579420252,20.668034187655167],[-98.5310579613589,20.66931447770105],[-98.53052086404074,20.670188695127877],[-98.52972443567097,20.67196647649604],[-98.52944309111018,20.672665843097832],[-98.52937208188155,20.67305947631735],[-98.52916140666525,20.673474608183994],[-98.5290392795282,20.675355889284845],[-98.52756547269848,20.67785143752684],[-98.52628567494583,20.67969130399797],[-98.52551284768612,20.68016344436512],[-98.52505133357619,20.681839109754833],[-98.52348632426862,20.682000948058658],[-98.52255259613389,20.682022104667908],[-98.52179559030617,20.68202000631868],[-98.51855601127562,20.68374949941324],[-98.518196522984,20.683676011453883],[-98.51770832692074,20.68367464617404],[-98.51738847982722,20.68405413103858],[-98.51731097911329,20.684623598016117],[-98.51700674256358,20.68507374486785],[-98.51657802926945,20.685373822516624],[-98.51581602946851,20.685155064963908],[-98.51589454839336,20.68566404870387],[-98.51586118100238,20.687353908568525],[-98.51570863818313,20.68770953431732],[-98.5152992173355,20.688532977230977],[-98.51509192137291,20.68879202260638],[-98.51387370638338,20.689408735600068],[-98.51320481029757,20.689459010988912],[-98.51180317300452,20.690599451069943],[-98.5115481078775,20.690710493791812],[-98.51132691349943,20.69140573970651],[-98.5104686893252,20.69147451615737],[-98.51035110722648,20.69146614835654],[-98.50985236286334,20.691149169807886],[-98.50929667367802,20.690305578843663],[-98.50843049300477,20.6903589929193],[-98.50799785468217,20.690779111535676],[-98.50771865573375,20.691276784699312],[-98.50773362226215,20.691350133853973],[-98.50811000496265,20.69201584415208],[-98.50725070309767,20.69241691503811],[-98.50679630731543,20.692463087235012],[-98.50598762605426,20.69281682437753],[-98.50611295714174,20.693078284853016],[-98.50643970840787,20.693482747049018],[-98.50628638039933,20.69407573059874],[-98.50514636012775,20.69429143773357],[-98.50443938310593,20.694408090317836],[-98.50319914022543,20.694261476673603],[-98.50292710253115,20.694364476039084],[-98.50224286291666,20.694710340005543],[-98.50156647334086,20.69456856138879],[-98.50057060775998,20.695069664466587],[-98.50032097276306,20.69551526128538],[-98.50077351497856,20.69603878318088],[-98.50064547137583,20.69660809423607],[-98.50001169901759,20.69666771721876],[-98.49916007746157,20.696977991566825],[-98.49815655980706,20.697470037888365],[-98.49725825765216,20.699050762526156],[-98.49723123058823,20.699521701626452],[-98.49646291362598,20.699925316089207],[-98.49592939547802,20.700117668663268],[-98.49447247266193,20.70091399792625],[-98.4935357989587,20.701152321113],[-98.49251464140366,20.701381865872918],[-98.49199603968452,20.701579923302063],[-98.49076447456412,20.70212259439677],[-98.48974191453584,20.702068933186183],[-98.48901949243896,20.702274354670294],[-98.48830314495513,20.703071300425165],[-98.48634807172476,20.703250263547204],[-98.4839473631514,20.70567243934704],[-98.4813258992769,20.705287611444533],[-98.48021270223188,20.705415081253648],[-98.47935525314665,20.705325273922426],[-98.47601016798427,20.706310132524948],[-98.47531906288941,20.706032546909285],[-98.47513374817481,20.705988373599666],[-98.47458952079398,20.70662457568784],[-98.47441742074324,20.707155091513584],[-98.4737449228719,20.70794047631557],[-98.47330792373447,20.708411603379886],[-98.4729878696985,20.70896183104793],[-98.47201645842324,20.709021845484017],[-98.47151243802728,20.708901436908832],[-98.47100576342177,20.708723174231125],[-98.469328478943,20.710184691762834],[-98.46699919042328,20.71003612865701],[-98.46571293473232,20.71127201150142],[-98.4638081983071,20.7128059352292],[-98.46286230314314,20.713547480853947],[-98.46265499967603,20.71372354059781],[-98.4612103682237,20.713019652558557],[-98.46034182398324,20.713312100844405],[-98.46019279808871,20.715096453456738],[-98.4551932852861,20.719862426783152],[-98.45441235695478,20.720521425460106],[-98.45420326576152,20.72087251428013],[-98.45102163861907,20.723234520842425],[-98.45016713916266,20.7235221752735],[-98.44971730765673,20.72372751381772],[-98.44932195163744,20.723745440655875],[-98.44914122018037,20.72398708638775],[-98.44869948298134,20.724207751119934],[-98.44835919734237,20.72444420067552],[-98.44785990752143,20.72490458217112],[-98.4476704396211,20.72691961684177],[-98.44481117739957,20.728682585597824],[-98.44338871709147,20.729233187916577],[-98.44331225304353,20.72934649195207],[-98.44333127669756,20.729554097979758],[-98.44391202402335,20.730127750013366],[-98.4440800682728,20.73092510531211],[-98.44409840675934,20.731285930153376],[-98.44294268369379,20.73270660949396],[-98.44233798668023,20.73282625200659],[-98.44162561648272,20.733441670645675],[-98.44134223880764,20.73379947529645],[-98.44125305639665,20.73419230914351],[-98.44123307669577,20.734308164823574],[-98.44049055282119,20.73733012155037],[-98.44047750850604,20.737364732044966],[-98.44008587063803,20.737956436388572],[-98.43941131975771,20.73863819355131],[-98.43588607356293,20.739725261412275],[-98.43563665141369,20.7398445532815],[-98.43482312993507,20.74173616025297],[-98.43451428659421,20.742155566539566],[-98.43385741411737,20.74316317982698],[-98.43234855495922,20.743123000422997],[-98.43014214264247,20.743932859472295],[-98.42828976480911,20.74433852150588],[-98.42802686954349,20.744488472401315],[-98.42652341874452,20.747516090081433],[-98.42620319803518,20.747990215607274],[-98.42551050789177,20.748929290113438],[-98.42354314482691,20.746558739340173],[-98.42173622576229,20.744753307656538],[-98.42144781284395,20.744276123566635],[-98.42150956647026,20.743806664559827],[-98.42195983109815,20.743472995486854],[-98.42184111347262,20.743094759447388],[-98.42167554150433,20.742527590988175],[-98.42135795600444,20.74207581135363],[-98.42093679117727,20.741834257619985],[-98.42094074070633,20.741599021022694],[-98.4216722510215,20.74123341797298],[-98.42142284516171,20.739700292801672],[-98.42165777291763,20.73911554483817],[-98.42196850682478,20.738484863536655],[-98.42224989008776,20.738112570603107],[-98.42240505773032,20.737808991253758],[-98.42266103802524,20.73745984984339],[-98.4230666580923,20.737136459559736],[-98.42357782315332,20.736485221561452],[-98.42419245531642,20.73547947021831],[-98.42448063306671,20.734851553411033],[-98.42451234267128,20.734452021620427],[-98.42434952986804,20.733720189314738],[-98.4242558185565,20.733342325689023],[-98.4242902889788,20.732778127968288],[-98.4245267718365,20.73209928034538],[-98.4245675500598,20.731158703147912],[-98.4246476909791,20.730854008096514],[-98.42480718324953,20.730291665251514],[-98.42511315461189,20.729943261530025],[-98.4254449176293,20.729548180719974],[-98.42600211479026,20.7291329132114],[-98.42671721587982,20.72824939377108],[-98.4276945605053,20.726640341356926],[-98.42793574336486,20.72567920315055],[-98.42855985529695,20.724253146735748],[-98.42914871900382,20.723438334834043],[-98.42988681105538,20.722672789819285],[-98.43032013336313,20.72218508458343],[-98.43075069973526,20.72186204454499],[-98.43110964852428,20.72111525995706],[-98.43201427839881,20.719886162518492],[-98.43184252813086,20.719366039735746],[-98.43189214985227,20.71921385634829],[-98.43250845091035,20.71908228874787],[-98.43285693551161,20.71878655184412],[-98.4329051354324,20.718564044378866],[-98.43331843171501,20.71782318308783],[-98.43309270893445,20.71728061458282],[-98.43106557221705,20.7169024516852],[-98.43014729981894,20.71677093049891],[-98.42973732446251,20.71662113013798],[-98.42943748797057,20.716575601640386],[-98.42928055576851,20.716274597522954],[-98.43047447353626,20.7152869646078],[-98.4312251999836,20.7152152379698],[-98.4320014003768,20.714932756397275],[-98.43291797113574,20.713378100547516],[-98.4353004484484,20.711748724025995],[-98.43592448902797,20.711561997034437],[-98.43701094375177,20.71089568408405],[-98.43805209116022,20.709946339905287],[-98.43832946088531,20.709809255887194],[-98.4390900901185,20.70918517984336],[-98.43927051627838,20.708857444031366],[-98.43986772713487,20.708982775537606],[-98.44032174235929,20.709117521644316],[-98.44102114425226,20.709385156745952],[-98.44145279703366,20.7094768343473],[-98.4423645150573,20.709502268590995],[-98.44230166221206,20.70743374076801],[-98.44255943279819,20.706397057040192],[-98.44306216849412,20.705607491880244],[-98.44385333172397,20.704938717207256],[-98.44419704631747,20.704229080545304],[-98.44533593529388,20.700505932842646],[-98.44562097989831,20.699645392310117],[-98.44585983763216,20.69856381529246],[-98.44596697313602,20.696213462686273],[-98.44590364690572,20.694336709647587],[-98.44643398817863,20.69463363221996],[-98.44678058243397,20.695120457564485],[-98.44717374854014,20.695803723943072],[-98.44748323790566,20.696577472681213],[-98.44754810509869,20.69689766225366],[-98.44761753756666,20.697686779265382],[-98.44786408172223,20.69887575345558],[-98.44804964215496,20.699134936861924],[-98.4483056553583,20.699553086449896],[-98.44857923956602,20.69999609782917],[-98.44914687457401,20.70073668632955],[-98.44934086893949,20.700747509150574],[-98.44958472219173,20.700631408688366],[-98.44989076449548,20.70057109852405],[-98.45132210949919,20.70007930113968],[-98.45178847665204,20.69996724823659],[-98.45252193821335,20.69993816076402],[-98.45292200061476,20.699755533980294],[-98.45317095708458,20.699634266542432],[-98.45371176539766,20.69955394677646],[-98.4548711994164,20.699399156505024],[-98.45548330551509,20.699013105213282],[-98.45563290952998,20.698718703584348],[-98.4562624031513,20.698084386259836],[-98.45847908039019,20.696978336770144],[-98.45931886423045,20.696718063931655],[-98.45988339304347,20.69620335661648],[-98.4595674323163,20.695589899233482],[-98.45890020971041,20.694259096715882],[-98.45875037356478,20.69338447865789],[-98.45914165252896,20.692017137415178],[-98.45934932187771,20.690659927708566],[-98.45918733383775,20.688391195707027],[-98.45891975280131,20.68761419265934],[-98.45849191175012,20.685806346149548],[-98.4588712589902,20.684957382795005],[-98.45995772457144,20.684373473713208],[-98.46049091298795,20.683204849708318],[-98.46015352653933,20.682466390581226],[-98.46003762030352,20.681357777484436],[-98.46030687203012,20.678869942194865],[-98.46028051122545,20.678388452658226],[-98.46024195280387,20.677601346400763],[-98.46103183715962,20.67602774286189],[-98.46196934797234,20.675255380691397],[-98.46323774136908,20.674839290504053],[-98.46397859488724,20.67412754155481],[-98.46459517523874,20.671141702769887],[-98.4634419098249,20.668626953124942],[-98.46327500312577,20.6678413606395],[-98.46368595308076,20.667241284171325],[-98.46571554843439,20.666440391308015],[-98.46741520156246,20.666138084512397],[-98.46844652656699,20.664946301871453],[-98.4690013465779,20.66473614783081],[-98.46935860172317,20.663963879074856],[-98.46948538141748,20.663349265696183],[-98.46984286415795,20.662891219917412],[-98.47053615905219,20.662467886506818],[-98.47141040237142,20.662890489277686],[-98.47192909267415,20.66287944516631],[-98.47303707185318,20.662359316792333],[-98.474112330872,20.661250352904858],[-98.4767708386762,20.659385132957993],[-98.47806870025983,20.659300039838286],[-98.4791536529184,20.657013171360745],[-98.48011356549966,20.656548219112324],[-98.48069404823315,20.656281764460516],[-98.48183409538365,20.655846376975035],[-98.48280010181617,20.655838217238852],[-98.48318086522517,20.655901852498232],[-98.48378362135742,20.655903582122107],[-98.4852751630014,20.654579797109648],[-98.48649111475908,20.653821207932765],[-98.48678585065034,20.651241763782934],[-98.48695337601617,20.650627626483526],[-98.4873350485829,20.649763905094005],[-98.48808330037355,20.64956432827495],[-98.48974137006888,20.64998617930371],[-98.49025618597653,20.649586502382306],[-98.48999921879624,20.649155118411272],[-98.49099008705264,20.646977728313175],[-98.49116332419283,20.645771731936804],[-98.49180795608692,20.64577144230907],[-98.49215899242728,20.6461042267116],[-98.4930462592784,20.645808590726574],[-98.49409450860207,20.644810028617655],[-98.49484672975484,20.644340511531652],[-98.49508104344096,20.643635067946718],[-98.49580278341398,20.639863057121943],[-98.49516868866982,20.636628713816947],[-98.49396435148697,20.63429541153522],[-98.49333519140504,20.63266554798639],[-98.49296427924912,20.63204157890607],[-98.49258848732825,20.631424953605404],[-98.49029142243597,20.625590722769914],[-98.48984909130365,20.622752299756655],[-98.48960336406003,20.62112058895019],[-98.48959738051553,20.620426201195073],[-98.4887824226156,20.617875121619534],[-98.4879210560751,20.616954965953028],[-98.48728187364395,20.61563281591225],[-98.4870537869698,20.613995682607026],[-98.48632630484644,20.612368702816298],[-98.48500416568055,20.609982000807292],[-98.48458144218836,20.60886696585635],[-98.48406875003491,20.607884771811314],[-98.4835956866666,20.60651828075754],[-98.48094293251222,20.60491947435628],[-98.48108695150955,20.603927400610132],[-98.4804546203473,20.603743544503573],[-98.48012207843647,20.603295915389197],[-98.48035395023356,20.602320650946297],[-98.48110970498806,20.601397574630482],[-98.4795872949453,20.599559678975766],[-98.47935011201247,20.59929422806954],[-98.47912564626779,20.59846879430131],[-98.47904079858807,20.59795942768909],[-98.47903257304267,20.597195738422442],[-98.47887003210764,20.596603181311878],[-98.4787043236542,20.596232380140407],[-98.47870419686365,20.596046793563914],[-98.47851887130821,20.594430376924095],[-98.47847269160633,20.59398138820427],[-98.47862917890768,20.593555455027342],[-98.47953062032389,20.59236590315453],[-98.47964520059651,20.591748617941903],[-98.48019161716957,20.589776552025455],[-98.4804903037915,20.588715607891857],[-98.48116906478396,20.588541620179456],[-98.48209346213287,20.588044408349674],[-98.48241453265359,20.58793423005403],[-98.48275055510976,20.58878580971418],[-98.48335624784875,20.58928250788847],[-98.48382058367287,20.589323694366385],[-98.48441389258693,20.589841519805077],[-98.4849263402453,20.590181084827407],[-98.48543035117046,20.58990599984986],[-98.48595857917837,20.589678302008963],[-98.48635929409465,20.589613440885557],[-98.48671081571564,20.58950083482796],[-98.48838953979947,20.58900502715568],[-98.48960665662162,20.589612592727406],[-98.48985564196909,20.58966317602659],[-98.49110923610061,20.589375206050192],[-98.49253161852533,20.589465974543486],[-98.49320252651034,20.58968719702915],[-98.49375195347983,20.589694995525235],[-98.49694373553558,20.59004604991418],[-98.49755268063046,20.59101907904204],[-98.49826566292222,20.591734838645436],[-98.49928735696591,20.591890440839506],[-98.50059485978579,20.592920393563702],[-98.50099069971685,20.59316121466685],[-98.50150766228381,20.593638967757613],[-98.50167685768434,20.593994190271417],[-98.50196980236245,20.59442172886901],[-98.50347039660369,20.59587778566305],[-98.50379619630576,20.595811825229532],[-98.50427259524685,20.595700948633237],[-98.50542067458252,20.595954176212047],[-98.50863534514394,20.59576752347789],[-98.51224801165353,20.594224355875156],[-98.52109838532056,20.584397883329075],[-98.52126742061347,20.584100646671573],[-98.52156624676701,20.58250501824716],[-98.52169395971725,20.58240927077196],[-98.5229786485412,20.581812600244746],[-98.5230002563597,20.58153467743557],[-98.52293723884134,20.580614635446977],[-98.52295818989523,20.580362214641866],[-98.52362292466387,20.579708287234325],[-98.52355211182385,20.5795586735307],[-98.52343098313213,20.57939883838577],[-98.52331633230375,20.579174508731683],[-98.52277993155195,20.57839902716063],[-98.52245732582412,20.578019682884644],[-98.52433793962541,20.57504201736748],[-98.52370394325999,20.571976892984708],[-98.5234349100038,20.564091258364954],[-98.52392433005804,20.56285383086953],[-98.52413518092669,20.56224058138531],[-98.5241506706692,20.561638748793882],[-98.5240567314898,20.560984519535566],[-98.52269606812621,20.558834458804142],[-98.52385466309835,20.557982022182955],[-98.52391728181846,20.55770107170156],[-98.5240023483147,20.55729645458132],[-98.52401651128923,20.55712043215675],[-98.52411827864262,20.556908986026144],[-98.52422967172464,20.55641708079156],[-98.52419571383342,20.555865154519893],[-98.52385049128685,20.55533730817143],[-98.5238118093323,20.554968991201633],[-98.52437899536,20.554170525191523],[-98.52421035312017,20.55398636049358],[-98.52393376165708,20.553786122243082],[-98.52571681764135,20.550467762697167],[-98.5255562131926,20.5501584708652],[-98.52533162084632,20.54962204258527],[-98.5251414540549,20.549338725895723],[-98.52497844568961,20.54902937879632],[-98.52473360009122,20.548718730424582],[-98.52448535788534,20.548540120837004],[-98.5253879401763,20.54752647214633],[-98.52535907406144,20.547338128422098],[-98.5251312677567,20.547207616468995],[-98.52484488837047,20.547107520423083],[-98.5249573082454,20.546856060088203],[-98.52540608727406,20.546540265244573],[-98.52558243107677,20.54623753043154],[-98.5257467653638,20.54555915218947],[-98.52578796226169,20.54517451685234],[-98.5311153428861,20.53950785388986],[-98.53466517677276,20.530658180637488],[-98.53803963695168,20.528257678488444],[-98.53816979481996,20.528158009197114],[-98.53921961384805,20.526744502288295],[-98.53944820885357,20.526561451162706],[-98.53945702091164,20.52621747457505],[-98.5395324761704,20.52599748796888],[-98.53979433141757,20.5259257601154],[-98.54003988816663,20.526020363103953],[-98.5402601239478,20.5260695961461],[-98.54038087108535,20.525961206127192],[-98.54063229124489,20.52535681483073],[-98.54083740087009,20.525150547659905],[-98.54112813273878,20.524891225785723],[-98.54139126415305,20.524675503232118],[-98.54214661562145,20.524229416010883],[-98.54246808450085,20.52408589351427],[-98.5428086449972,20.523760793278257],[-98.54352896430987,20.523648440752083],[-98.54407954903178,20.52348913827808],[-98.54439468025924,20.523216756445606],[-98.54469034389382,20.522858313455117],[-98.54500690713309,20.52243570520028],[-98.54692455543875,20.52106736618947],[-98.54715394484543,20.521040817523613],[-98.5494158181977,20.520426442239966],[-98.5497659295707,20.520386183172604],[-98.54999076198436,20.5202551972705],[-98.55029356076636,20.519805050977425],[-98.55197836024786,20.519066992022317],[-98.55249408005182,20.519046354610055],[-98.55346233642882,20.518745088041157],[-98.5538051725606,20.518801046529347],[-98.55592615667416,20.517005712414743],[-98.55605533372153,20.51429947754565],[-98.55749681803968,20.513753175107695],[-98.55785023332692,20.510464601830847],[-98.557650041991,20.509912915189943],[-98.55969563447394,20.509463606977477],[-98.5599349570947,20.50942422325363],[-98.56199390512211,20.50892245525722],[-98.56229047687293,20.50890363919757],[-98.56330559001634,20.508554610712565],[-98.56346743202812,20.508532750023278],[-98.56771881777638,20.50824142317208],[-98.56794940846743,20.508356054669093],[-98.56807192248613,20.5084608777546],[-98.56822791544812,20.508479704296008],[-98.56944281118405,20.509078631781904],[-98.5695187749318,20.509025911782544],[-98.57008918799443,20.50912495211793],[-98.57033139102253,20.509161595372404],[-98.57095887332628,20.50900393239658],[-98.57111917568653,20.509042698131395],[-98.57237608570387,20.50741706612638],[-98.57264967741429,20.50744987659823],[-98.57302965345684,20.507369413797903],[-98.5730813784835,20.507228261161288],[-98.5736596020077,20.506734380791613],[-98.57373914129295,20.506540556119546],[-98.57475292191606,20.506147196973984],[-98.5747655937227,20.505647387727322],[-98.57514567914876,20.505372441273494],[-98.575405831009,20.50527056532968],[-98.57684576554902,20.504303338898865],[-98.57710005635982,20.504432664213027],[-98.57745975212305,20.50467719245796],[-98.57762086361839,20.50477890644953],[-98.57783044176398,20.504772846149194],[-98.57796093837271,20.50484778938693],[-98.57825444728894,20.504854388655986],[-98.57869359645235,20.50481323148125],[-98.57924882215963,20.504846124040114],[-98.57955227988924,20.5049351593604],[-98.57984767844124,20.504962210005658],[-98.58017408015235,20.505000729725737],[-98.58049944935618,20.505080049513424],[-98.58081435309572,20.50509733052934],[-98.58116429733298,20.50515678901013],[-98.58156450597693,20.50522758168495],[-98.58181503803667,20.505315423681736],[-98.5820296264551,20.505396788044322],[-98.58217646500032,20.50549193963525],[-98.58228196286206,20.505508483776453],[-98.58254993147335,20.505287701366456],[-98.58273197337053,20.505228285030114],[-98.58268328061388,20.50477415921955],[-98.58279109997636,20.504698901263225],[-98.58303142501757,20.504619247286826],[-98.5831608963286,20.504544475207297],[-98.5834029101469,20.504493208531755],[-98.58362941421416,20.504484118244307],[-98.58383979405107,20.50444631574061],[-98.58417590726799,20.504291131221862],[-98.58422511455802,20.50405863211813],[-98.58435435870052,20.50370715863704],[-98.58458024815923,20.503436666861433],[-98.58481336838861,20.50316577009096],[-98.58523471041605,20.503066927849204],[-98.58566117845191,20.502955725504307],[-98.58597849788202,20.502781971748163],[-98.58630208880584,20.502645779909585],[-98.58653287003585,20.5023719933306],[-98.58668655075178,20.50200575766513],[-98.58677603395643,20.501608031327066],[-98.58698676323905,20.50117503540082],[-98.5872303870895,20.501059728374855],[-98.58940527031939,20.500056137907222],[-98.58953201586712,20.50008902909815],[-98.5901741089009,20.50030356658334],[-98.59037770652799,20.500248026507734],[-98.59315031532884,20.499498747618304],[-98.59328059059447,20.499391666707766],[-98.59427495987939,20.49718563130824],[-98.59459141400782,20.496854217092675],[-98.59669806376326,20.49664336034232],[-98.59699644354902,20.496360298722664],[-98.5972856891247,20.495770855689273],[-98.59497284485172,20.493275949737722],[-98.59498211321113,20.492908178791083],[-98.59498419714225,20.4911063238755],[-98.59492767882443,20.490865788700432],[-98.59415723298736,20.48982456072281],[-98.5939607379321,20.489599036255072],[-98.59299426957887,20.489077882280185],[-98.59266838854069,20.48902012371923],[-98.59071172800736,20.488919034046205],[-98.59039144587712,20.48883021150084],[-98.58702786633609,20.486398396259915],[-98.58685992471254,20.4861865440447],[-98.5860447519205,20.485394883327047],[-98.58603242371618,20.48521600486464],[-98.5857901884853,20.484229677703695],[-98.58615774810022,20.483589855101513],[-98.58630394909926,20.483328350972783],[-98.58629830703461,20.48307534725558],[-98.58606416411476,20.482721396209683],[-98.58585072608707,20.482595838933662],[-98.58553354056778,20.482480427208827],[-98.58531978836618,20.482367335897607],[-98.58503088219669,20.482180550133705],[-98.58475643871242,20.48189770035134],[-98.58430886713563,20.481418187948748],[-98.58413695603889,20.481173358912258],[-98.58326816418992,20.480505219213455],[-98.58299710147617,20.480469649215138],[-98.57930822108898,20.478732297395027],[-98.57923311804467,20.4768504791125],[-98.57698683213624,20.47631405637088],[-98.57676015158052,20.476236949543875],[-98.57854831013765,20.474906194443975],[-98.57871190785983,20.474718231677514],[-98.57783304874539,20.472834786679186],[-98.57749148179067,20.47273298470577],[-98.57542409764261,20.47245230432759],[-98.57672227137806,20.47070231807089],[-98.57661293061636,20.470553576111342],[-98.5723798901733,20.4669435455055],[-98.57239238428821,20.46540730397527],[-98.57235593858132,20.464946660378246],[-98.57229723406283,20.464604581690196],[-98.57116989456767,20.46322579517414],[-98.57084925479415,20.463153933066565],[-98.57048958435013,20.46300804992029],[-98.57019526506008,20.462752510765142],[-98.56981940519148,20.462486061072923],[-98.56959381054861,20.462177639995616],[-98.56904303204118,20.461313048603188],[-98.56881977657287,20.461102200006337],[-98.56856797587062,20.460783547988854],[-98.56843702131522,20.460633746519477],[-98.56758296244425,20.45948845863893],[-98.56743086901872,20.459318335214277],[-98.56601929188287,20.458522760110668],[-98.56572928274659,20.458477092607097],[-98.56443152487884,20.457180594328406],[-98.56404937220611,20.456689465143825],[-98.56375234371677,20.45635220809379],[-98.5633812233529,20.456089819090096],[-98.56306283833118,20.45593010972493],[-98.562697247073,20.45582886596503],[-98.5615269722789,20.454631043963843],[-98.56114144594608,20.45436775709794],[-98.5606737496999,20.453740312721663],[-98.56027413357731,20.45336897942599],[-98.5591344001781,20.452201880767745],[-98.5587802016667,20.452031714024088],[-98.55860234279294,20.45174023339746],[-98.55628453120829,20.448364168660135],[-98.5561892266033,20.44823274080153],[-98.55489826589553,20.447148937397344],[-98.55460629906003,20.447086761856553],[-98.55377282050881,20.44608588225617],[-98.55390776305,20.445889363778235],[-98.55435280439781,20.44532679951675],[-98.55447982328457,20.445157882984233],[-98.55453965370049,20.444981774967005],[-98.5545323970166,20.444794509015992],[-98.55452429573046,20.444545990728102],[-98.5544936784637,20.444236863269566],[-98.55451039007147,20.443958857431653],[-98.5545613028799,20.443471845888382],[-98.55465272584973,20.443283413195786],[-98.55477150279262,20.44315456522793],[-98.55495186291517,20.443063965067495],[-98.55509376203332,20.44297192680409],[-98.55518386965753,20.44283505869953],[-98.55518113273627,20.442659234939185],[-98.55519169746401,20.44252793633126],[-98.55516565021316,20.442322669134967],[-98.55510131583515,20.442109164321494],[-98.55500777172813,20.441814487872534],[-98.55479239949244,20.44110769804871],[-98.5546875920927,20.440688599529267],[-98.55288837406817,20.437555575493718],[-98.55268638741524,20.43755099836801],[-98.55255563736199,20.437489070340348],[-98.5524829827155,20.437319033346796],[-98.55175670638806,20.435325544969714],[-98.55131703284411,20.43530140370916],[-98.55080314036059,20.435357222107598],[-98.54974306151615,20.4349431065757],[-98.55000652479589,20.434706985613445],[-98.55021945547048,20.43249156107595],[-98.55044720443613,20.432523373389643],[-98.55080237825467,20.432558641657067],[-98.55206575985409,20.43254759490617],[-98.55223534255293,20.432407428444947],[-98.55233419686732,20.432304779681488],[-98.55240826353958,20.432136367665464],[-98.55226944094528,20.4316365567272],[-98.5519855072784,20.431355141388337],[-98.55186647256448,20.431117151292995],[-98.55163708744595,20.430772337467488],[-98.55144266530016,20.42886858761409],[-98.55153998055766,20.428731886776063],[-98.55156998566508,20.428593093030315],[-98.55153699349131,20.42837746451511],[-98.55154861625363,20.42792188647104],[-98.55164691370993,20.427746654206203],[-98.55189756646786,20.42744617410392],[-98.5519160547289,20.427287275555045],[-98.55183835180321,20.427126763528747],[-98.55155374907338,20.426871980447004],[-98.55118719960723,20.426717392887724],[-98.5508676498983,20.424249515479914],[-98.55107227245622,20.424055717343947],[-98.55124629282926,20.423929827926486],[-98.55132121376619,20.423822102300733],[-98.55125363695112,20.423641976176953],[-98.55066287875968,20.42237502183974],[-98.55054204280111,20.422113745842807],[-98.55021521818583,20.42078020489157],[-98.55037553234513,20.420625657844255],[-98.5503004535177,20.419325608943893],[-98.55000923575295,20.419047995620247],[-98.54955824231143,20.411552742863307],[-98.5506241494711,20.408997257193505],[-98.54998624364384,20.406847058775213],[-98.55042230579733,20.406537752688166],[-98.55053544318531,20.40625173755535],[-98.55048329807096,20.406032843439732],[-98.55039361387384,20.40577681268951],[-98.55030394447544,20.405520215312038],[-98.55013261450114,20.405353045664697],[-98.54933342640072,20.40424522556185],[-98.54934686235919,20.403718828265767],[-98.54904934750806,20.40331237404456],[-98.54870687573651,20.403159462233134],[-98.54865922020258,20.400786240526713],[-98.54867164587648,20.40029950862197],[-98.54887806089062,20.39965729797393],[-98.54923497339064,20.399715288528512],[-98.55007786866946,20.39750685109118],[-98.55004887718013,20.39713483934139],[-98.54984029804785,20.395034652138747],[-98.54957858364082,20.394639785732863],[-98.54938842812709,20.39445688161277],[-98.54808298571862,20.39320887794844],[-98.5479649051166,20.39302930897503],[-98.54784560952544,20.392897336228202],[-98.54750223945535,20.392780686862466],[-98.54696398831987,20.392666415377562],[-98.54674990380681,20.39257310998181],[-98.54602685290467,20.39263152750931],[-98.54572188927682,20.3927062419113],[-98.54550676367438,20.392747845451254],[-98.54528494775764,20.39276888646998],[-98.5465126318764,20.391033553869534],[-98.5470465140225,20.390941924849585],[-98.54824931148681,20.38980301431269],[-98.5479969709096,20.389606791595668],[-98.54521171839434,20.388198739355005],[-98.54510405696544,20.387894109719923],[-98.54560230921805,20.38590183301841],[-98.54561218219442,20.385515398908467],[-98.54467013064033,20.384733720125098],[-98.54558512514637,20.38167938935436],[-98.54453327389643,20.38077219013354],[-98.54576379243764,20.37628613551101],[-98.54306480415084,20.375560344053156],[-98.54488906978332,20.371366181352982],[-98.54651424121784,20.369784485160324],[-98.54554325886374,20.36788018912887],[-98.5458154306906,20.367674903894],[-98.54868346208156,20.364692736264203],[-98.54740241816029,20.361182094337323],[-98.54861714407855,20.35975378223958],[-98.54533292851806,20.359075977341718],[-98.54229726872603,20.356295890880574],[-98.54085613086977,20.358207696270654],[-98.53889674233983,20.354717844779316],[-98.53885076350247,20.35275634295806],[-98.53665983553651,20.351834508435218],[-98.53662455533532,20.35161600269265],[-98.53666231036635,20.351362310098807],[-98.53573472430782,20.350308793917804],[-98.53543700646986,20.350104150684956],[-98.53430383877571,20.34844159281954],[-98.53431368321571,20.348057437975285],[-98.53448390354794,20.347138354904985],[-98.53448931911532,20.346927013291292],[-98.53361916788037,20.34597967831138],[-98.52944632911016,20.346028479388167],[-98.52927869931727,20.345908431946327],[-98.52872345669857,20.345152509777392],[-98.52863612610656,20.344901633473455],[-98.52725514992738,20.34502940240668],[-98.52710400929624,20.344922768639435],[-98.52707437147222,20.344859729295365],[-98.52695955392699,20.344836696930372],[-98.52665431012707,20.34427073055633],[-98.5266135892935,20.344171154432104],[-98.52651639329684,20.344117343182972],[-98.52647513418026,20.34403873113473],[-98.52649527256955,20.34390993126368],[-98.52561985584765,20.34214095055455],[-98.5229815610025,20.342638491814853],[-98.5225700530109,20.3410632215506],[-98.51951039273547,20.340090087350347],[-98.51848276258988,20.338074371715948],[-98.51835334952841,20.337964825559595],[-98.518270231977,20.337831394774412],[-98.51815919582884,20.337755151141323],[-98.51805988613876,20.33759697152061],[-98.51802721352311,20.337465262939702],[-98.51630311610114,20.337195591567195],[-98.51607872659008,20.337133189716894],[-98.51568262667126,20.337390000793505],[-98.51551862266979,20.33741005275965],[-98.51273995936657,20.3382250770523],[-98.51242849057297,20.33827632562003],[-98.51202228166147,20.339111162979634],[-98.5118417454454,20.339306012785926],[-98.51090073853572,20.33924926925556],[-98.51064033478428,20.33918489887418],[-98.51043251057399,20.339039530261516],[-98.51008274729992,20.338152194941472],[-98.5100506232692,20.33799952064959],[-98.50781743881942,20.3378926789635],[-98.50761499924721,20.337818296310218],[-98.50735614430084,20.33750790887393],[-98.5073322414944,20.337316304834474],[-98.5066382395197,20.33672606046838],[-98.50652393926492,20.33649722956801],[-98.50480294174753,20.33638793911348],[-98.50448096852585,20.336380536173863],[-98.50425833070796,20.336436645047],[-98.50407731823202,20.33664961612493],[-98.50402156269524,20.337318443510355],[-98.50400581592254,20.337648600881153],[-98.50385212577271,20.33782761759977],[-98.50360283467666,20.337891616620084],[-98.50268424280841,20.337526361209427],[-98.50247601944045,20.337396846497768],[-98.50043888510305,20.337239981251628],[-98.50015963264462,20.33725396206654],[-98.49998136916173,20.337360409195355],[-98.49962432402799,20.338429354442894],[-98.49964780552233,20.33863682445417],[-98.49960907963884,20.338739680941956],[-98.49949116523965,20.33874376905493],[-98.4991552316182,20.338439529209666],[-98.49913753675304,20.33828718457056],[-98.49820823727282,20.337685812524853],[-98.49808401022801,20.337655171416543],[-98.49776652850096,20.33775273973356],[-98.49743143430663,20.337880515821894],[-98.49683964032283,20.338543794178804],[-98.49670399224726,20.33867559767208],[-98.49649440362498,20.338691744118364],[-98.49627441542867,20.33864528828417],[-98.49563216198214,20.338286358271887],[-98.49533825043949,20.338123677167175],[-98.4951214886159,20.338045545959574],[-98.49489191072223,20.33790532359251],[-98.49472136630061,20.337713737586057],[-98.4946244868504,20.337555598069684],[-98.49466272239817,20.33737903071193],[-98.49219088941209,20.33692629827567],[-98.49163877692058,20.33689314821453],[-98.4912562268741,20.336811185346562],[-98.49095194159668,20.336585327150033],[-98.49076337948435,20.336439809081526],[-98.4899311356532,20.336917792916097],[-98.48972618694648,20.336847863752666],[-98.48959123705066,20.336674668680132],[-98.48945527275697,20.33654056823258],[-98.48931455837015,20.336589476284928],[-98.48823841190506,20.335812305051434],[-98.48820288050769,20.335699232216257],[-98.48818188344876,20.33558195970312],[-98.4881155476146,20.33554414379239],[-98.48789220831583,20.335534448767362],[-98.48760287181011,20.33547390572386],[-98.48562039332262,20.335158229814795],[-98.48542817287523,20.33515378598571],[-98.47913874887922,20.33626343408406],[-98.47884642031448,20.336317891910255],[-98.47783577781433,20.33644358267486],[-98.47759069474387,20.336437904196544],[-98.47739343368733,20.33634999461333],[-98.47629794499039,20.33594873115709],[-98.47616598477634,20.335938302294835],[-98.47590629417834,20.335939652579896],[-98.47569699536024,20.335760185887864],[-98.46965579470327,20.335092766787795],[-98.46946790032047,20.335014702204376],[-98.46920428681,20.334890091224565],[-98.46895749297812,20.334765870469084],[-98.4687708483495,20.334732054663277],[-98.46850299016114,20.334770053038028],[-98.46552736286617,20.333452516844318],[-98.46536164146158,20.333262143535023],[-98.46504206926778,20.332979184495002],[-98.46497005462425,20.33279098979159],[-98.46476512507559,20.33272102722964],[-98.46454484304519,20.33259458124263],[-98.4643394844897,20.332541049106737],[-98.46413179116308,20.332300942344716],[-98.46351973256179,20.331986798814512],[-98.46308003298174,20.33170104113833],[-98.46038915928267,20.33144962200339],[-98.44874540900963,20.345367893678997],[-98.4332923562564,20.363834041125358],[-98.41829413340866,20.38004869848743],[-98.38614879039028,20.40271290837103],[-98.38432336812406,20.4015321777772],[-98.38403009320382,20.40152520516608],[-98.3836689302837,20.401358432843153],[-98.38355019090574,20.401301180160203],[-98.37979516675631,20.39933120032248],[-98.37961574276227,20.39929461186739],[-98.37929690449482,20.399164555879338],[-98.37913006159124,20.39910728846968],[-98.37892687278031,20.399059927923474],[-98.37876441289637,20.399018639638825],[-98.37676994740173,20.398585029500452],[-98.37667721519261,20.39854483319266],[-98.37567080174796,20.399298735880507],[-98.37560807380572,20.399305745540573],[-98.37545484658233,20.399189266617327],[-98.37535239262331,20.399152806581128],[-98.37515651123965,20.399191794678813],[-98.37511721755737,20.39931162289747],[-98.37341674929473,20.400292764928224],[-98.3732919199461,20.400462714505466],[-98.37190128462169,20.401639464108484],[-98.37167051123322,20.40163395866523],[-98.37077698117963,20.40185473607545],[-98.37047077406919,20.401881447066557],[-98.36962369082903,20.401895247330287],[-98.36942970588268,20.401863401971184],[-98.36821022283624,20.401413025000807],[-98.36813125999146,20.401397532003898],[-98.36715688393667,20.401225146446848],[-98.36683327376824,20.40118339767281],[-98.36553693678735,20.400908058585458],[-98.36539956561575,20.400917816035076],[-98.36428574525956,20.400653631678892],[-98.36410755420076,20.400660711192927],[-98.35999838221773,20.39979416896972],[-98.35981996321931,20.399809742567754],[-98.35855510461585,20.401492288003908],[-98.35824955977904,20.401583625266483],[-98.35722979152911,20.401935673508774],[-98.35663416167495,20.401901561612874],[-98.35590818767332,20.401884168359288],[-98.35551181553183,20.401775449968],[-98.35528168975259,20.40183513717625],[-98.35365014206621,20.40272208607405],[-98.3532021396266,20.40311008945173],[-98.35309345019715,20.40321381716916],[-98.35254756327498,20.403566254699342],[-98.35211472262074,20.403914747192914],[-98.35127149698769,20.40404072543231],[-98.35065658846207,20.404210769678173],[-98.34927908520626,20.40476648681215],[-98.34905243787358,20.404866498761976],[-98.3482350915678,20.40686130140648],[-98.347950443196,20.406890753098764],[-98.34671422944808,20.407225411554236],[-98.3463368645343,20.407375236820883],[-98.34607487812491,20.40760973830686],[-98.34599827288969,20.408095183631133],[-98.34282780966771,20.410493841931952],[-98.34247009342175,20.410645128196336],[-98.34087690695685,20.411292285500963],[-98.34076546184338,20.411321355154882],[-98.33766762358454,20.412631358993224],[-98.33751857122377,20.412627769860705],[-98.33734017835991,20.413085563501568],[-98.33732254814703,20.413381103092775],[-98.33520114957321,20.414786578234896],[-98.33494195146898,20.414763890137465],[-98.33273704761734,20.415609977299937],[-98.33261498150767,20.415675639007816],[-98.33025350367001,20.41564192715265],[-98.33010796427152,20.41568604215604],[-98.32680236185706,20.41808283280517],[-98.32394138185111,20.418722444910486],[-98.32367541246856,20.41868313146182],[-98.32101362063798,20.41801379878683],[-98.3201878193841,20.419450974712674],[-98.32010473298993,20.41958674212526],[-98.31978970876702,20.420112087059238],[-98.31962968722792,20.420245992796538],[-98.31852842363662,20.422432858448133],[-98.3183204092353,20.42247374960118],[-98.316598409285,20.422656326178696],[-98.31636901425424,20.422818300181802],[-98.31619150328714,20.422996313001022],[-98.31605383544706,20.42319054087733],[-98.31653636334073,20.42384689217471],[-98.31677354277923,20.42406015330613],[-98.31973863631339,20.424638810896965],[-98.31966056838979,20.42485521249756],[-98.319144522555,20.425959126176963],[-98.31909491880288,20.42619039128664],[-98.31801030856758,20.428293753691946],[-98.31771032172867,20.428266080271953],[-98.31716117401027,20.431996627365777],[-98.31712052250339,20.432164039756913],[-98.3172068648006,20.434205035057516],[-98.31735304948666,20.434403052753055],[-98.3174186365124,20.436057993263034],[-98.31727369595097,20.43625576718722],[-98.31708904287649,20.436939627478807],[-98.31708414844923,20.437119246158716],[-98.31391382053994,20.439468629504177],[-98.31392574739999,20.439737107501003],[-98.31525655618208,20.44255330061526],[-98.31522512598139,20.442823563908462],[-98.31510419388906,20.443464176556347],[-98.31507705256672,20.44366537022023],[-98.3153005668816,20.444557568622827],[-98.31538153641463,20.444588446675823],[-98.31573403509935,20.445603972688616],[-98.3157125736139,20.445685100694277],[-98.3138945202283,20.44696953793425],[-98.31384006576849,20.447113370285763],[-98.31234881816602,20.44797195475701],[-98.31230483078303,20.448084855456273],[-98.31201611925894,20.449846897585928],[-98.31178663469382,20.44987932330099],[-98.31149825367766,20.449865527658346],[-98.31125725571695,20.449878962406387],[-98.3088571006162,20.449653481698192],[-98.30869982116849,20.449949609110718],[-98.30857807781689,20.45132333451187],[-98.30858142856806,20.451553051533097],[-98.3081379759671,20.452018572480767],[-98.3080040269902,20.452077125094036],[-98.30652738814825,20.45248581269118],[-98.30634667886437,20.452582351832348],[-98.30517413455846,20.45419024999626],[-98.30507427109825,20.454322204463722],[-98.30262793779116,20.454110813915122],[-98.30250214625511,20.4542228584873],[-98.30096141460956,20.455477040340043],[-98.30065679396449,20.455440716331566],[-98.29912944077915,20.45559011438297],[-98.299059885681,20.455933161260305],[-98.29937128057713,20.458885762355123],[-98.29919522803647,20.458899624203696],[-98.29727326782114,20.460538571663903],[-98.2954664189611,20.460171393150176],[-98.29502151290734,20.460160559412202],[-98.2935391065754,20.46279279174263],[-98.29348890555411,20.462956001251598],[-98.29222863851157,20.4648576609942],[-98.29215012440523,20.46491244857185],[-98.28782661067243,20.464783774767284],[-98.2877194063226,20.464831622981933],[-98.28570595440442,20.466638875648698],[-98.28046356421447,20.469377053251947],[-98.28010275755355,20.472167578348092],[-98.27735901062738,20.472694705054835],[-98.27641812782849,20.475484078925376],[-98.27730615403226,20.478544450559014],[-98.27717060421645,20.47865964083337],[-98.27596445020993,20.47884615941564],[-98.27572050770738,20.478964365758486],[-98.27411383282754,20.48180491957254],[-98.27391400762565,20.48180683073747],[-98.27168075778809,20.48179408732011],[-98.27136958640244,20.481818782768983],[-98.26611679081941,20.488298045269744],[-98.2658562511582,20.488406190681474],[-98.26540431608908,20.48864629110119],[-98.2637386302456,20.491258507500675],[-98.26361639183091,20.491413706031153],[-98.25948697682827,20.495720318624933],[-98.25935072536527,20.495685783017677],[-98.25745694686441,20.49609681150946],[-98.25732208844585,20.4962726755208],[-98.25675708523966,20.4985070450154],[-98.25673343252618,20.498752553645716],[-98.2556192880337,20.500041218817614],[-98.25547725095748,20.50012844867848],[-98.2552563185522,20.500282914656964],[-98.2550610123269,20.50038130800357],[-98.2533808384099,20.500378510476764],[-98.2531774314661,20.500334944564088],[-98.2493944566288,20.501332157355762],[-98.2491045877644,20.501368107468465],[-98.24728929923168,20.501202577066124],[-98.24712334973168,20.503536921956822],[-98.24678238435308,20.503765532719683],[-98.24575839834927,20.50440370323969],[-98.24542575919986,20.504332556461804],[-98.24357129138224,20.50349691742474],[-98.2434604419729,20.503241284908313],[-98.24293274840795,20.50109508522013],[-98.24247024352627,20.500846647193896],[-98.23985461368375,20.501414282241853],[-98.23957265496011,20.501944294416603],[-98.23923643277686,20.504769447860212],[-98.23758922256303,20.505396132131295],[-98.2371292647303,20.50540177120058],[-98.23492463345679,20.505816181996238],[-98.23445645613339,20.50603027828197],[-98.23410279800925,20.506195039872694],[-98.23369007066867,20.50692423943724],[-98.23353593952396,20.509257744530373],[-98.23329949097388,20.509794546066757],[-98.23289082894485,20.510118415528837],[-98.23052404442433,20.51030137089259],[-98.23032234692988,20.510541334967343],[-98.23032651948989,20.51090944522622],[-98.23047730471353,20.511372479960528],[-98.23246929214116,20.51401146505691],[-98.23247973254439,20.514241373953666],[-98.23062976413411,20.51600328725192],[-98.23059728293975,20.516477094693926],[-98.23062205247993,20.5169698984393],[-98.22936160890066,20.5201214747658],[-98.22912950328202,20.52032893189761],[-98.22677766797295,20.52186630151516],[-98.2264497440134,20.522056069442215],[-98.22485063555877,20.52276094154854],[-98.22457082640568,20.522951899078862],[-98.2215488983062,20.52365205821394],[-98.22119734116245,20.52356734662493],[-98.22008083862403,20.52311377323383],[-98.21971371056043,20.522983308021992],[-98.21771467223329,20.524125571069874],[-98.2168638338984,20.52476049577382],[-98.21610569548801,20.52543798100669],[-98.21484909783265,20.526718879330986],[-98.21392536538161,20.52720454493209],[-98.21160089624522,20.52869984791164],[-98.21141591410804,20.52868503686466],[-98.21133208642277,20.528497526003434],[-98.21135087284705,20.52782774448167],[-98.21121269123319,20.526917030826212],[-98.21102609251858,20.52653076387253],[-98.20985667207827,20.52616142079961],[-98.20929268367178,20.5263537804762],[-98.2070015060051,20.527691069110688],[-98.2064735283958,20.527715336207848],[-98.20592971358559,20.527789106848104],[-98.20544094872923,20.527788830704367],[-98.20489748331585,20.527850131355535],[-98.20453687824988,20.527915989986752],[-98.20395806797274,20.527864130584646],[-98.20144244751168,20.52626807213676],[-98.2011723593211,20.526132444996847],[-98.20057994289363,20.525979565503633],[-98.19970404284965,20.525819605920447],[-98.1994388147557,20.525859014329228],[-98.19589799841805,20.525688441053205],[-98.19567332435912,20.525458841972466],[-98.19509030315669,20.5251295573496],[-98.19483904490846,20.525074510021852],[-98.19086633007686,20.524562329219748],[-98.1902513796295,20.523829056410307],[-98.18877208476005,20.523095688108242],[-98.1883448283848,20.523219945995436],[-98.18796760454268,20.525837062522612],[-98.18562182678369,20.52756563139252],[-98.1842787908003,20.52678119561631],[-98.18397966457002,20.52663080012769],[-98.18258907115847,20.526166673824434],[-98.1821881498953,20.52621048763001],[-98.18050746456498,20.528853301315223],[-98.18023252680922,20.528698968804576],[-98.17854281218519,20.52774360440236],[-98.17807663192582,20.52771091853168],[-98.17289371304497,20.52971563426803],[-98.17250839304319,20.530058084413213],[-98.1711478982217,20.5320147872647],[-98.17075324440583,20.532431282993116],[-98.1695269614051,20.533814091895863],[-98.16905784639692,20.534308664831542],[-98.16790599215074,20.535697873219533],[-98.16708012075395,20.536205574367273],[-98.16560491843728,20.539144328787017],[-98.16514716923331,20.539915902543555],[-98.16242710439826,20.54200103637112],[-98.1619419302607,20.54229614965334],[-98.1580430186226,20.54256127893774],[-98.15800658308632,20.542826309885186],[-98.15848421564658,20.546013897258945],[-98.15820400875015,20.54595975980851],[-98.15785597253972,20.5459197875432],[-98.15714457579111,20.545870642073794],[-98.1578335688601,20.55077043130808],[-98.15764774885093,20.550953438922306],[-98.15606155186583,20.551179346953575],[-98.15561216054476,20.551230942819302],[-98.1544280386903,20.55179815221379],[-98.15384866901303,20.552101070915114],[-98.15241176835286,20.553763684110322],[-98.15218323965576,20.554515506150665],[-98.15310152182207,20.556095873665754],[-98.15283475745076,20.55962705741524],[-98.15288535400839,20.560218085617805],[-98.1534254236841,20.561972629158277],[-98.15378884468049,20.562742249069572],[-98.15248532410112,20.5652985477966],[-98.1495570794225,20.56283432124951],[-98.14774088322878,20.563856734075557],[-98.14780259097984,20.564310816781187],[-98.14716270944632,20.565888090872818],[-98.14664731512886,20.566478409929914],[-98.14591261834607,20.566904396382768],[-98.1448700285959,20.567400839347897],[-98.14258830714039,20.5695398816938],[-98.14264847960936,20.570300149138745],[-98.14122259287996,20.571649943234092],[-98.14071674446996,20.571820286499985],[-98.13813477349186,20.574767682819356],[-98.13784599015099,20.575516836062263],[-98.13827529643794,20.577181318205135],[-98.13604331125703,20.579087911187116],[-98.13564289361386,20.579444648044557],[-98.13543500463618,20.579891332411762],[-98.13546397919629,20.580689467700267],[-98.13552617901075,20.581547509303732],[-98.13512027030549,20.5819692230736],[-98.13438902848213,20.58187097883456],[-98.13323511232556,20.58193593798319],[-98.13258135623232,20.581970371187936],[-98.13207491347418,20.581991531522362],[-98.1317463307987,20.582698837901887],[-98.131585821675,20.58325673568976],[-98.13020081574422,20.58493639158837],[-98.1301442882297,20.585479919276167],[-98.13155547068715,20.586418003606695],[-98.13182285642381,20.58683819851791],[-98.13099790501752,20.589147377545828],[-98.13087636155257,20.589858245791334],[-98.12977076121683,20.590863940698966],[-98.12302848078508,20.58582175190645],[-98.12279767977418,20.585806234704137],[-98.12131880776025,20.588149181358972],[-98.12383894066721,20.591237609611483],[-98.12118988923072,20.592804490339063],[-98.12043964360134,20.592841519002036],[-98.11872358883136,20.594129304398734],[-98.1189441449813,20.594417901690804],[-98.11988354156637,20.59492443144103],[-98.12058553281202,20.595141931507158],[-98.12134237584837,20.595211114820245],[-98.12250892023667,20.595274281957018],[-98.12638432600716,20.59630463649546],[-98.12683121893178,20.59676570298427],[-98.12690596572799,20.59726720691367],[-98.1242875275833,20.597932694314295],[-98.12208613977151,20.5970776243322],[-98.12170142164013,20.59688465757796],[-98.12102597147384,20.597000718526942],[-98.12026161162555,20.59719276925938],[-98.11912293705399,20.597751822854093],[-98.11867046556785,20.59815596565312],[-98.11837814732002,20.59877117672812],[-98.11841013586252,20.599585763169785],[-98.11717832087606,20.600869437317044],[-98.11527144750647,20.6000767838176],[-98.11497676107575,20.600103858340105],[-98.11402167062249,20.60323874364559],[-98.11346192444103,20.603434849372093],[-98.11304095580579,20.60366398410855],[-98.1126330518556,20.604025016267883],[-98.11233304964406,20.605156643269254],[-98.11236187595102,20.60566152324509],[-98.11240220302216,20.606519995066208],[-98.11044639841344,20.607256610866386],[-98.10991253569097,20.607222559232355],[-98.10935864819959,20.609053729096615],[-98.10924924186497,20.609589672530603],[-98.10804805900551,20.611392393874212],[-98.1080282420703,20.61207977294589],[-98.10960454905171,20.61314478894201],[-98.1100913274538,20.61330863748634],[-98.11205548915802,20.6151292647628],[-98.1119825852432,20.615401877803208],[-98.11127903928269,20.616155165290934],[-98.11095562948964,20.616258057823075],[-98.11029705698542,20.616369969844584],[-98.1099797440076,20.61634485232304],[-98.10871106580697,20.615806592001547],[-98.10831979519992,20.615839693478165],[-98.10786378094895,20.615862065810063],[-98.10759294904494,20.615812611840397],[-98.10740701489402,20.615910503993973],[-98.10719706450368,20.615922150516155],[-98.10603975984867,20.61603377143433],[-98.1058273688651,20.61604648786846],[-98.10454113746425,20.615532695853688],[-98.10419135713323,20.615296910077348],[-98.10386108392021,20.615053116114723],[-98.10340071533028,20.614642102087316],[-98.10299211092325,20.614441102671435],[-98.10059181576878,20.613877783054534],[-98.10045791482423,20.614176049700745],[-98.09835571093487,20.616637282655972],[-98.09943977465537,20.619561221166464],[-98.09985554854808,20.619931409674564],[-98.09983995690618,20.623056295781964],[-98.09946160492223,20.62339197056258],[-98.09908644483585,20.62370050546474],[-98.09595120342487,20.625133196727234],[-98.09554132559447,20.625308699026334],[-98.09431479470055,20.625394641012292],[-98.09388437036802,20.62519759327205],[-98.09183689914221,20.624177025887832],[-98.0915551790012,20.623837475119558],[-98.08750978399257,20.622501295701795],[-98.08736159971312,20.623956074228204],[-98.08747723903934,20.624122937394702],[-98.08732510623662,20.624965712720154],[-98.08718089338083,20.625285823335844],[-98.08711137888668,20.62568894869753],[-98.08715983474394,20.626012307939845],[-98.08588121775193,20.628974327985134],[-98.08545603998624,20.62975961553923],[-98.08460513743523,20.630767039280784],[-98.08431527481423,20.630957507303663],[-98.0822978218473,20.632471974219072],[-98.08157363608694,20.63276525372538],[-98.08051090506831,20.635008038883655],[-98.08198751353234,20.63735132219489],[-98.08275630283799,20.642081504620364],[-98.08058130742319,20.644948445129728],[-98.08048465968449,20.645289060887706],[-98.0796866097279,20.648952487919132],[-98.07959862995017,20.649243421353958],[-98.0762655268864,20.652065765990017],[-98.07560703387173,20.652830855328205],[-98.07493452691608,20.653497470307286],[-98.07450417397285,20.654124386684373],[-98.07354899381886,20.65572569308705],[-98.0732408693882,20.656044410306606],[-98.07212522956013,20.658355009239244],[-98.0722845271091,20.658678404111924],[-98.07255461982089,20.660660642462062],[-98.07239545561424,20.661160708110344],[-98.07148122630645,20.66259463299781],[-98.07136507714051,20.663189949684238],[-98.07107582786665,20.66509482178003],[-98.07097446628404,20.66566042841356],[-98.07072976086067,20.666389535430085],[-98.07046635737242,20.66690804076387],[-98.07024204596729,20.667789427541663],[-98.07029218768758,20.66819928754677],[-98.07045024874338,20.66874033845238],[-98.07069787170411,20.66919031275802],[-98.0711181677118,20.66967975917919],[-98.07160389117377,20.670054158342964],[-98.0719113320032,20.670155472137083],[-98.0722573530104,20.670211086637835],[-98.07327482507276,20.66980540110643],[-98.07349745907544,20.669834485859212],[-98.07396686119557,20.669916622961637],[-98.0741891562065,20.669957370612053],[-98.07463442791692,20.670015538539587],[-98.0756418220812,20.67028314592295],[-98.07656406819473,20.67180694000126],[-98.07668991820947,20.672535532073596],[-98.07581831529404,20.67598388722297],[-98.0728696499267,20.677001329480504],[-98.07183526201192,20.677177127772893],[-98.07134288822579,20.677116226535247],[-98.07092921053516,20.676753373490385],[-98.0667828945596,20.67386973989801],[-98.05396000257684,20.652709998142427],[-98.05088394403901,20.648747249677967],[-98.03997942107941,20.63193242418953],[-98.03974497243524,20.63195469789099],[-98.03946468157432,20.631997056052057],[-98.03897546125569,20.63196305719748],[-98.03848621565805,20.63202455320686],[-98.03821370592345,20.632168837274207],[-98.03802253901483,20.63228370130554],[-98.03758677965743,20.632505732339496],[-98.03738983460198,20.632588908749426],[-98.03709999127699,20.632638132332318],[-98.03694856264013,20.63286064369629],[-98.03680267935124,20.632951620303515],[-98.03662353100299,20.633091610951965],[-98.0364414241455,20.633151716163752],[-98.03636575800095,20.63319962791104],[-98.03623811549062,20.633211269410026],[-98.03608751692781,20.63328217136791],[-98.03601715049746,20.633330219853292],[-98.03579615714193,20.6332696003675],[-98.03554540998914,20.63313837297642],[-98.03542497045743,20.633085358270534],[-98.03517364050015,20.632974067420434],[-98.03504339602921,20.63292611179287],[-98.03485744446624,20.632936236268165],[-98.03467090505063,20.632966297537735],[-98.03437186035109,20.63285375800342],[-98.03423829603764,20.63270562095289],[-98.0340780813628,20.632689420806912],[-98.03375232564304,20.632704467169106],[-98.03354740734886,20.632739078510326],[-98.03288570859178,20.632705865580988],[-98.03189476425428,20.632312536988024],[-98.03133349131218,20.632042250808638],[-98.03111722989075,20.631884816466254],[-98.0310066345445,20.631889923866822],[-98.03041919498656,20.631642920410172],[-98.03020911090101,20.631643475065175],[-98.02997480387404,20.631842221141653],[-98.02982292158669,20.63194818321938],[-98.02905666510947,20.631988165059056],[-98.02897805801888,20.631951140714023],[-98.02866186950314,20.631862954340647],[-98.02854093672931,20.63181982886624],[-98.02826235184597,20.631717633346284],[-98.02789999945787,20.631573280538703],[-98.0272870385885,20.63108973663924],[-98.0272046668668,20.63099871775171],[-98.02713160572904,20.630912385199906],[-98.0266941928275,20.630683243677083],[-98.02625246786255,20.63060062341674],[-98.02608311988843,20.63025405529271],[-98.02579274342145,20.63016649544727],[-98.02572057082466,20.630052193630377],[-98.0257020349394,20.629586860606878],[-98.02561491286946,20.629261213903305],[-98.02553228266049,20.629147898218832],[-98.0253399029138,20.629112562555918],[-98.02511739070576,20.62900570130347],[-98.02475945728702,20.628753829414222],[-98.02458257174152,20.628557210075655],[-98.02427862415931,20.628296641061638],[-98.02250592663376,20.62769301646847],[-98.02152494539854,20.627390246057246],[-98.02135000577363,20.627172485015535],[-98.02122645771925,20.627005810916444],[-98.02101000455616,20.626779999718792],[-98.01770980617306,20.601704906481302],[-98.02872817268786,20.589711602226885],[-98.0249147015744,20.577504418581952],[-98.00830564076648,20.532689814659932],[-98.01052002522704,20.53083896104323],[-98.01133649621556,20.530254014893956],[-98.01176896507752,20.52981911519032],[-98.01669770334803,20.528768740459157],[-98.01826437909148,20.528792449414482],[-98.01817268511098,20.528249050856346],[-98.01776476308976,20.527385032448194],[-98.01665487956217,20.52546074366336],[-98.0145062063782,20.524364476115352],[-98.01423327758323,20.52410393316245],[-98.01342474356198,20.524045082512032],[-98.01346147740469,20.524216889942352],[-98.01342995883277,20.525100288121166],[-98.01268057431747,20.52511051407845],[-98.01067633609892,20.52507814344432],[-98.01016408089208,20.52497084111053],[-98.00916894169694,20.52467022363919],[-98.00861476995681,20.52461628461043],[-98.00823423875585,20.524283625073906],[-98.00773275852669,20.52433486359206],[-98.00739543174478,20.524630531099604],[-98.00680374994027,20.524637743689254],[-98.0062233355867,20.524535905314167],[-98.00567584933998,20.52467458422535],[-98.0051692949998,20.52461425582925],[-98.00479133908516,20.524886152517695],[-98.00395522076383,20.52434484686796],[-98.00359614564644,20.524029663733415],[-98.00339523004664,20.52398915489482],[-98.00282791080633,20.523764481603678],[-98.00327204984649,20.522837877448637],[-98.00291458453484,20.523322644346194],[-98.00272157331716,20.523498167866194],[-98.0019404403663,20.52384166272452],[-98.00093197986308,20.52367264819361],[-98.00044682846561,20.524020507968203],[-98.0002347670486,20.524686808056742],[-97.99990174698223,20.52449332532541],[-97.99970093541174,20.524113870620226],[-97.9993084026209,20.523953081276773],[-97.99915155600087,20.524654224076073],[-97.9987646210352,20.525199868959135],[-97.99844975588337,20.524772328867073],[-97.99816631187423,20.524402572145334],[-97.99808101944575,20.52417513283507],[-97.99792301218247,20.523024305279137],[-97.99682539330615,20.522995090675465],[-97.99610241895658,20.522340023337676],[-97.99554289240325,20.522624502236738],[-97.99497804488863,20.522979510088476],[-97.99464883087592,20.522289026010753],[-97.9944611211709,20.522014213541468],[-97.99397399783777,20.521066228115103],[-97.99318844063379,20.520449484653852],[-97.99205852948921,20.51958122360321],[-97.990847192481,20.520199658977788],[-97.99002920363876,20.520198715182175],[-97.99012459383869,20.5194883736346],[-97.99023237884751,20.518712932949995],[-97.98902573348039,20.51799052524956],[-97.98838945133281,20.517830140248975],[-97.98746609309893,20.517899782146912],[-97.98630483829515,20.51813073371642],[-97.98572416581271,20.51823240169199],[-97.9851974792395,20.517663952251382],[-97.98507112007798,20.517405595543437],[-97.98504340794506,20.517036493659816],[-97.97944850007752,20.51501593473381],[-97.97263033962452,20.52320242344348],[-97.97093810336264,20.52528970384799],[-97.96735162668244,20.530897901962078],[-97.96446451560433,20.555883821925306],[-97.95631190275986,20.556861543281627],[-97.95021925199705,20.55895771715825],[-97.94310582704577,20.56260691746229],[-97.93824943278781,20.568440828970495],[-97.93797938369664,20.56868813740539],[-97.93770576218196,20.56898527643824],[-97.9374186169182,20.56917133066611],[-97.93710354860383,20.569309214780674],[-97.9366988399625,20.56949213033539],[-97.93659712145666,20.569521050826665],[-97.93643490554433,20.569465335218865],[-97.93605909388992,20.569107372616713],[-97.93581070061879,20.568774841346112],[-97.93536610096766,20.568051320520453],[-97.9351801695899,20.56766679004386],[-97.9350652256876,20.56757673830782],[-97.9348679564273,20.567709868239263],[-97.93464027521048,20.56787379263244],[-97.93416152606909,20.568145668428258],[-97.93361827097812,20.568398377746462],[-97.93309980447765,20.568870829076275],[-97.93295400642631,20.569108103744952],[-97.93262729495251,20.569352429786136],[-97.9314141733492,20.56936182517711],[-97.93082698066502,20.569554811212072],[-97.93024866146123,20.569849521901176],[-97.93001432111214,20.57006883752689],[-97.92973853073403,20.57027014399955],[-97.92929043321334,20.570619091858248],[-97.92865324578128,20.57100587510439],[-97.9277993464296,20.571496244010746],[-97.92729005218285,20.571888665808558],[-97.92720606711498,20.57208942738805],[-97.92728001386149,20.572418504526354],[-97.92781074573554,20.57305115965255],[-97.92721949791115,20.573576766813176],[-97.9268430986213,20.573735875906152],[-97.92649886658074,20.57401993565452],[-97.92578586865011,20.57440690324688],[-97.92482083930406,20.57460665707373],[-97.92372806656738,20.57502967755636],[-97.92353649510886,20.575700693839053],[-97.92340008267269,20.576325505849752],[-97.92334018461833,20.57671606904256],[-97.92209906773502,20.577698876118973],[-97.9216347291059,20.578246759529804],[-97.92155845110085,20.57856295353497],[-97.92094294083267,20.579678365076234],[-97.91998874643048,20.579881401641217],[-97.91927475245251,20.580176058659504],[-97.91905987068935,20.58034959666122],[-97.91890358907796,20.58057295669164],[-97.91850910696701,20.581172010930004],[-97.91798249087145,20.58204540347498],[-97.91773253497166,20.582242567214166],[-97.91557436475614,20.58375128566763],[-97.9150611739853,20.585098513550804],[-97.9150142361641,20.58554805062488],[-97.91494018587002,20.58626325712123],[-97.91470311260423,20.586539310631736],[-97.91455054157348,20.586544166211524],[-97.91407894743952,20.58654048955094],[-97.91368680585185,20.586808447189753],[-97.9134735336716,20.5869282123719],[-97.91286218854987,20.587135933710897],[-97.912637453505,20.587161280434714],[-97.9120009323778,20.58709936045409],[-97.9118565795822,20.58698792270991],[-97.91133246567352,20.58635974295919],[-97.91120744458703,20.586239845989326],[-97.91107850594256,20.586168950579065],[-97.91095552252028,20.586138771614173],[-97.91041676761682,20.586151178428395],[-97.91005730016661,20.586222208844106],[-97.90955991216163,20.587385703118514],[-97.90955150449008,20.588134023162297],[-97.90961730371703,20.588192849483733],[-97.90995465708886,20.588538107685167],[-97.91031080239941,20.58904971640567],[-97.91061946937691,20.589712443453323],[-97.9107786562422,20.590298478542593],[-97.91081433562317,20.590537020119143],[-97.91086030826887,20.59152712191559],[-97.91088771327912,20.59203887928379],[-97.91089673768869,20.59252771300646],[-97.91094354779659,20.592712744085247],[-97.91092130588879,20.593288264825844],[-97.91087578229457,20.59353357553715],[-97.91074926864161,20.59377671128709],[-97.91011285513258,20.59426705005933],[-97.90927590926549,20.594370057628907],[-97.90880029386204,20.594025585088104],[-97.90854378391856,20.594000765807095],[-97.90832180805518,20.594093414575184],[-97.90816767806012,20.594304426749147],[-97.90774196853948,20.594674016137958],[-97.90748958342544,20.59524320986759],[-97.90715847881575,20.59598169280656],[-97.9070060368914,20.59638521708672],[-97.90684990272928,20.597052390837632],[-97.90669750277885,20.597306969778856],[-97.90636303108272,20.597829494754137],[-97.90622203173587,20.598137391916453],[-97.90604025814633,20.598668011875475],[-97.90602205781624,20.59897886853372],[-97.90606867452368,20.59968347218171],[-97.90572972702705,20.601055125027415],[-97.90570173554511,20.60127816344624],[-97.90572028128082,20.601366588146675],[-97.90581415102872,20.60149297802269],[-97.90583378676865,20.601545463566083],[-97.90579332726759,20.601910843693133],[-97.90592260184815,20.60254972451247],[-97.90626196336126,20.602986451288075],[-97.90649207755587,20.603329749395186],[-97.90652527480802,20.603483864210318],[-97.906542139095,20.60380139338946],[-97.90643439255217,20.604224048527897],[-97.90611448869134,20.604532524621447],[-97.90591540964175,20.60485137390782],[-97.905726703288,20.605186548118695],[-97.90564648906837,20.605334022938052],[-97.90568789917643,20.6054168771945],[-97.90608673170351,20.605792145142743],[-97.90651510439596,20.606203973926995],[-97.90697549597405,20.60657384625],[-97.90840271528339,20.60777550594156],[-97.90875782055434,20.608134160737904],[-97.9081571906944,20.608483473614115],[-97.90769049799866,20.60870208023408],[-97.90603494467331,20.609220414303593],[-97.90573153382451,20.6092923297079],[-97.90430375591865,20.61053334931762],[-97.90380194543064,20.61114584205859],[-97.90300228297531,20.612222329842325],[-97.90271038139747,20.612619240984657],[-97.90147370933846,20.614193630733382],[-97.89879194421252,20.617711532021872],[-97.89718806136722,20.619132948224944],[-97.89682828652883,20.619689479949955],[-97.89635011696026,20.620578782504936],[-97.89595197504536,20.62129895159427],[-97.89574058343351,20.621665671904395],[-97.89521319646298,20.622533311864288],[-97.89514571483494,20.622698444147943],[-97.89498851155992,20.62345694185882],[-97.89497081212068,20.623899405219163],[-97.89518343134512,20.624640498812767],[-97.89533298553062,20.625116965399684],[-97.89562627688167,20.625476266620467],[-97.89606866849681,20.62602290710231],[-97.89687211687982,20.6273436650265],[-97.89726486733866,20.628701423020345],[-97.89755380178838,20.62949357371133],[-97.89795964628962,20.62996815610819],[-97.8985436521628,20.630336312059967],[-97.89876796475755,20.63052004124046],[-97.89895805898351,20.630743158786913],[-97.899071859294,20.631001363950304],[-97.89915199172822,20.631362675976106],[-97.89919242231935,20.63186746111478],[-97.89938202001377,20.63235474198484],[-97.89974903227926,20.632727460453566],[-97.90006445540342,20.633134058796315],[-97.90008141703896,20.63398154318986],[-97.90002255954676,20.63412582757985],[-97.89984345898569,20.634490164981514],[-97.89978067889416,20.635255804045983],[-97.89987386822304,20.635738632919583],[-97.90006379821392,20.636293824671725],[-97.90011887680481,20.636508656483954],[-97.90014336673556,20.63674811828548],[-97.9001671419631,20.637052590993335],[-97.90016841925063,20.637174273974892],[-97.90013902800041,20.63732320661478],[-97.90014783339058,20.637574731159077],[-97.90030009412033,20.63783760796082],[-97.90041742044576,20.63841338085757],[-97.90080548989681,20.639056305155407],[-97.90136304180606,20.640199966772514],[-97.90155697654706,20.6406750042226],[-97.9017666929355,20.64089242064972],[-97.90247414316963,20.64129306762129],[-97.90349277795991,20.641744060991925],[-97.90402555409582,20.64197019374552],[-97.90431012033059,20.64218081768837],[-97.90461131244922,20.642235843479057],[-97.90484709299727,20.642277483572002],[-97.90510246387026,20.642398007812176],[-97.90544692256685,20.642702393345132],[-97.90555761732162,20.642839643212994],[-97.90595883704884,20.643224067343567],[-97.90619719516343,20.64339068528733],[-97.90648786514743,20.643532553014495],[-97.90695101370869,20.643822349649554],[-97.907083357847,20.643996948031713],[-97.9071458338957,20.644044851867477],[-97.90739114699568,20.64429931397592],[-97.90789046151883,20.644864074832128],[-97.90836059957502,20.64553387508363],[-97.90843866938957,20.64579807583044],[-97.90847205368897,20.64590109859904],[-97.9086697972134,20.646084225478774],[-97.90873121510157,20.646241467535503],[-97.90873919345091,20.646512072437872],[-97.9086933094274,20.646826847221007],[-97.9086731658465,20.648844406173794],[-97.90855578137234,20.64995463904586],[-97.90870280841915,20.65005534593149],[-97.90879284050573,20.650153663570507],[-97.90884320505114,20.650359471858962],[-97.90891991695963,20.65057998645932],[-97.90896600187125,20.650631631902456],[-97.90964362876502,20.651349061259282],[-97.91015871545284,20.651694350012406],[-97.91050732864545,20.651953610298335],[-97.91068357723219,20.65215596218951],[-97.91162559467233,20.653208755461435],[-97.9118108526032,20.653455341644417],[-97.91187071188165,20.654400994731986],[-97.91147097102566,20.65499283533336],[-97.91104103153151,20.655429878651546],[-97.91046809775537,20.6556940674177],[-97.9101550255807,20.65582099897489],[-97.90964851925708,20.656157086802637],[-97.909287306245,20.656752984977572],[-97.90916447116604,20.656973073241602],[-97.90904682771031,20.657190351306838],[-97.90901090579422,20.657279231431062],[-97.90905037208188,20.65766524920349],[-97.90923244883896,20.658037617843945],[-97.90939268583105,20.658316574212904],[-97.90951312038584,20.658492990165826],[-97.90956845656012,20.658741693885304],[-97.90943842810299,20.65903823166292],[-97.90859545879528,20.65982680463253],[-97.90840299430624,20.66021594214925],[-97.90837977463099,20.660754279555874],[-97.90830247772078,20.661167578921834],[-97.90805915901035,20.66222868198429],[-97.90785363700667,20.663194806791125],[-97.90781782513625,20.663392621766718],[-97.90778351553314,20.66408441551806],[-97.9077910872731,20.664294039484105],[-97.90794072451712,20.66463835383621],[-97.90840308763211,20.665724375739728],[-97.90850210887282,20.666096420505767],[-97.90896300194498,20.667568174439225],[-97.90912023009594,20.667872349828087],[-97.90974951169255,20.668650397695842],[-97.91180669706546,20.67074178911929],[-97.91319071432792,20.67185571310023],[-97.913478382513,20.672016824417767],[-97.91386012541074,20.67194076053636],[-97.91414878391646,20.671839179945835],[-97.9153343384558,20.671521092412604],[-97.9165278034007,20.671240600669933],[-97.91783470409098,20.671244552534517],[-97.91775170542621,20.671917255420965],[-97.91781330146222,20.673637054871392],[-97.9172919743014,20.674710270963203],[-97.91677358485254,20.675974384305903],[-97.91672309319625,20.677387578681476],[-97.91628723030755,20.67821583309319],[-97.9161690040441,20.678968295483912],[-97.91613200368568,20.67919468924083],[-97.91580135500658,20.679293650686986],[-97.91573319312704,20.679515135796123],[-97.91610541060663,20.679618564786836],[-97.91590524809618,20.680537974075833],[-97.91557571079454,20.681140288402958],[-97.91547122676928,20.6818691645567],[-97.91399224618294,20.68303619980611],[-97.9133248151129,20.684553992639735],[-97.91341482192348,20.68487523186394],[-97.913490321746,20.68571490456776],[-97.91403746798284,20.68675316272879],[-97.9124923094721,20.690130670867745],[-97.91180324035929,20.690515020836642],[-97.91099084533312,20.690653011704626],[-97.91036188900688,20.69054969993823],[-97.90646718552176,20.690603280948267],[-97.90586065925106,20.69111001389183],[-97.90447779926745,20.6931171536977],[-97.90379466156122,20.695037836196605],[-97.90279261422023,20.69634518572815],[-97.90186129702744,20.697699645325088],[-97.90105769278222,20.698017256992557],[-97.89812847231872,20.699448348838644],[-97.89747761007345,20.70062758115239],[-97.89734559359067,20.70145308758748],[-97.89740280540548,20.70220830870494],[-97.89742568599536,20.703213827840273],[-97.90035806938914,20.704711253738765],[-97.92244660021686,20.71651878771513],[-97.92206472179038,20.71727433523887],[-97.91895454661562,20.726593872514627],[-97.91755565058054,20.730788844690096],[-97.91141280563039,20.750703833084344],[-97.91117929934785,20.751211839977202],[-97.90987406951615,20.755463656958398],[-97.90935746097034,20.757012165384594],[-97.9086236008406,20.759278369035428],[-97.90818625152491,20.76054451451887],[-97.90752344900716,20.76276557067223],[-97.90615710471832,20.766997281122713],[-97.90577061321767,20.76813679688803],[-97.90456997176295,20.77207573284909],[-97.90322452154453,20.77564144419057],[-97.90081000474362,20.779639998805806],[-97.90007189942907,20.78199478412614],[-97.8990148588565,20.78517211272441],[-97.89800954611002,20.788199862917395],[-97.89709307915132,20.791397607397982],[-97.89579221431558,20.79507758191488],[-97.89460298680001,20.79830277612632],[-97.89420682409104,20.799428062362097],[-97.89390168164499,20.8002494963485],[-97.89326521026965,20.802003289377524],[-97.89171357600554,20.806044880425475],[-97.89152700028808,20.80661447273303],[-97.88979432999366,20.81126395708185],[-97.88863769717256,20.814624517613368],[-97.88763577634512,20.81693690223051],[-97.8849090179458,20.823407112281245],[-97.88407059382365,20.825329169554607],[-97.88005482739572,20.83265430210031],[-97.87911978696826,20.834275881396366],[-97.87618568712611,20.833848475000934],[-97.87529199430168,20.833845756283438],[-97.87259821410987,20.832241146311617],[-97.86992294131085,20.831738305031536],[-97.86487727080606,20.834503029311975],[-97.85962625492351,20.835212663453262],[-97.8573823132449,20.83437924685211],[-97.85710123965958,20.833983579694063],[-97.85473345187813,20.832922160499038],[-97.85200335726853,20.83414617062965],[-97.8513819929936,20.835446017824836],[-97.84889908964533,20.836721955456824],[-97.84584135042803,20.839485838841426],[-97.84448089461335,20.839724842354542],[-97.84308324748218,20.839892666893206],[-97.84251662989874,20.8399597474384],[-97.8421775340999,20.83988654734759],[-97.84108747969327,20.839311934155546],[-97.8394373541613,20.837953562524547],[-97.83910315748398,20.837242248196958],[-97.83895546834606,20.83681581400532],[-97.83903528706253,20.836249113275812],[-97.84009953212046,20.83526364659224],[-97.8426750580939,20.83268187953132],[-97.84410728183656,20.827976337803477],[-97.84358575528046,20.82708650076637],[-97.84336640879019,20.826469081007815],[-97.84311390629091,20.824942906557567],[-97.84332845629586,20.824036093399457],[-97.84367952742952,20.82359886899667],[-97.84468575376786,20.822771718482556],[-97.84858291254045,20.82033541517643],[-97.84987552883729,20.819067794710236],[-97.85017694309573,20.817463794273237],[-97.85011842541252,20.816923825470212],[-97.84958420301678,20.81614614993805],[-97.84842682555302,20.815924908007673],[-97.84636939342028,20.81669091529767],[-97.8446517424187,20.816147678890843],[-97.84193640601399,20.81595210117098],[-97.84058058063232,20.815014746803683],[-97.84023601995358,20.814804948650988],[-97.83941504236464,20.814960069433653],[-97.83763545058997,20.81435852754788],[-97.83763755118889,20.81365933619435],[-97.83734252062277,20.81300432179961],[-97.83668763912698,20.812702193658595],[-97.835494616897,20.812639772165937],[-97.83092863490458,20.81267960369655],[-97.830425188204,20.81168832129316],[-97.83143108176915,20.810433016884303],[-97.83215146173148,20.80965937654122],[-97.83069813995576,20.80799686963485],[-97.83025393973986,20.807957174397927],[-97.82404860246527,20.80980990486546],[-97.82109520914292,20.813229784015277],[-97.81657516086415,20.81801783822084],[-97.81376730441264,20.820066072950738],[-97.81352228384787,20.820109633442996],[-97.80896219432299,20.81994406440009],[-97.80838355523213,20.82069379608322],[-97.80633765247904,20.821342117827612],[-97.80426280328294,20.820561598031418],[-97.80346397411915,20.820782536588865],[-97.80151903284212,20.82003021829638],[-97.80052758491792,20.819527289815824],[-97.79993052563492,20.819288646426514],[-97.7991941022284,20.819572560152494],[-97.79863625949963,20.821017725384195],[-97.79854072014001,20.821018750453504],[-97.7981673056625,20.82084227412571],[-97.79717875794915,20.82116368587043],[-97.79594851468158,20.820550861607273],[-97.79402976992776,20.819091133184997],[-97.79305524778283,20.81822016500621],[-97.79194738661772,20.817791886019336],[-97.79135380466374,20.817538061764765],[-97.79074218745103,20.817196769855684],[-97.78708754784623,20.818632969320845],[-97.77704000751902,20.824328652594318],[-97.77537285993486,20.823368126635103],[-97.77426893164909,20.822795255535937],[-97.7733425349303,20.823513168518843],[-97.77331135663445,20.824310475519724],[-97.77320386966522,20.825773726237117],[-97.77318143666162,20.826419721536638],[-97.77300167248848,20.827201388014146],[-97.77181375254986,20.826429809280967],[-97.77094961073806,20.826084706391782],[-97.76959965519029,20.825212204600064],[-97.768446487495,20.824417294935586],[-97.76779722682932,20.823911863563296],[-97.76389201212402,20.820466738964512],[-97.76347943693338,20.819238848400914],[-97.76267586263339,20.818683816947555],[-97.76002684744083,20.81891334486977],[-97.75903161231668,20.81868991052528],[-97.75838653999028,20.81899983540876],[-97.75790439141002,20.81844634044296],[-97.75675711989987,20.81740466919007],[-97.75529872792441,20.81661620845017],[-97.7548990370799,20.81640388515575],[-97.75457194762856,20.816232115588832],[-97.75425807289889,20.816105274016593],[-97.75347114017438,20.815661033129857],[-97.7530006634297,20.815430167686998],[-97.75276554223484,20.815311435325782],[-97.75182609867795,20.81492546026783],[-97.75138482849337,20.81480700986259],[-97.7503485390069,20.81478844388363],[-97.75008146841509,20.814111766766644],[-97.74820992618078,20.809014705388336],[-97.74765353414159,20.808854786592974],[-97.74663092083802,20.808254436494792],[-97.74626403749483,20.808016430732152],[-97.74529999559218,20.80586353783815],[-97.74444039662598,20.80496371510327],[-97.74220442612892,20.80411356040122],[-97.74148366958042,20.803865896575985],[-97.7395269292141,20.802859708763094],[-97.73742296297792,20.80147683333007],[-97.73550363088839,20.80141716625701],[-97.73263485710754,20.80127885900049],[-97.73165431369608,20.801249472353106],[-97.73045226877298,20.801235466156015],[-97.727523546442,20.80115291992837],[-97.72493250876772,20.801022593730863],[-97.72446318710485,20.80100076717804],[-97.72434702098121,20.80102212408218],[-97.72007797800569,20.80086181316568],[-97.71779924294088,20.800835061339114],[-97.71686095638552,20.80074597886545],[-97.71538978965526,20.800678787155846],[-97.70827157865199,20.800375418682393],[-97.70361913985766,20.800197956024874],[-97.70211403145748,20.800147078009275],[-97.69517932766081,20.800038841167748],[-97.69465281876825,20.796531571612263],[-97.69631575966025,20.79535790513785],[-97.69670548993844,20.79525125428347],[-97.69763734285692,20.79540448112607],[-97.69792816304471,20.795498025583015],[-97.69818087859159,20.795499943109974],[-97.69851198605977,20.795429383314968],[-97.69888259631699,20.79528605083152],[-97.69966503955902,20.7947256583613],[-97.700451037797,20.794342180198328],[-97.70083502148833,20.79395756053367],[-97.70134562418463,20.793603697661695],[-97.70331108044235,20.79376761703554],[-97.70497759556497,20.796239402350636],[-97.70494259768111,20.797439781326602],[-97.70574907089139,20.797579797731316],[-97.70586032462603,20.79760899728626],[-97.7064524762352,20.79776417197587],[-97.7068772884574,20.7976840092511],[-97.70772053528441,20.798414848118],[-97.7084183792719,20.799232309378283],[-97.7101060727997,20.79933342815775],[-97.71010767642395,20.799651242256573],[-97.71113391967583,20.799181070283396],[-97.7119586182481,20.799733211796138],[-97.71396805715307,20.799563204072342],[-97.71483292551835,20.798835565478328],[-97.71541969641078,20.798676923534117],[-97.71604483359596,20.798114231594525],[-97.71632637912012,20.79788343128746],[-97.71661817765096,20.79780000143279],[-97.7168172624144,20.79705813033206],[-97.71865728323132,20.796058200685252],[-97.71971245267684,20.795537753695044],[-97.7201993424506,20.79521083057392],[-97.72078617319727,20.79535090860611],[-97.72118943192953,20.795287943198332],[-97.72121451718544,20.793804171615193],[-97.72338038330116,20.791608535193745],[-97.72463001520754,20.792001342478216],[-97.72552382101327,20.791738023472135],[-97.7260509386515,20.791191985521266],[-97.72583525716232,20.790629953657913],[-97.72317012815148,20.786871300144355],[-97.72306512117007,20.786431744952267],[-97.7233068733292,20.78616240943569],[-97.72501136154,20.785515501402415],[-97.7280344888311,20.78480376075521],[-97.72623061161693,20.78191120314682],[-97.72538176439292,20.780826514217438],[-97.7250638562582,20.780370618826623],[-97.72534698837245,20.779858722045674],[-97.72561871629443,20.7791892212],[-97.72550422437723,20.778775154091022],[-97.72543059940836,20.778603280127072],[-97.72521976695066,20.77816833459434],[-97.72519941850061,20.778037165452474],[-97.72515922926823,20.77771435846762],[-97.7250851821612,20.77759287216145],[-97.72491479426111,20.777450507360413],[-97.72464779995295,20.777317498046614],[-97.7244116298445,20.777345979993015],[-97.72429923805805,20.777959934255023],[-97.72299955342106,20.778557943568387],[-97.72268353843066,20.77862127828064],[-97.72241162548823,20.778613649084832],[-97.72218321666571,20.778554729894267],[-97.722053456813,20.77846576576667],[-97.72184512961582,20.77843366119629],[-97.7214338563885,20.778779074629597],[-97.72121345721513,20.77878029475704],[-97.72084166951066,20.778592191673567],[-97.72101711315003,20.778271396186142],[-97.72114303480231,20.778023240112645],[-97.72119315753656,20.777684122687162],[-97.7211122896494,20.777504185176213],[-97.72094716148928,20.77749955041412],[-97.72080775205046,20.77742901369686],[-97.72094822027259,20.777218273973233],[-97.72058335832696,20.777059980678644],[-97.72080985708635,20.776866467513685],[-97.72052082245693,20.77660073118261],[-97.72041507882523,20.776790556073536],[-97.72009581848397,20.776861144049917],[-97.71988758982269,20.776798802364283],[-97.71971264355358,20.776633819313076],[-97.71971831736886,20.77645507543741],[-97.71982130736524,20.776363807442635],[-97.72017001286696,20.776100534575676],[-97.7203881064114,20.77585242639276],[-97.7202412205881,20.775434001135466],[-97.7200603037569,20.775457169953995],[-97.7197808339136,20.775639464508004],[-97.71931772977484,20.775618071694623],[-97.71966644593977,20.774971613407388],[-97.72023612228293,20.774177936833837],[-97.72107849135386,20.772702279879184],[-97.72074441201863,20.77223609835397],[-97.72004795057165,20.77213213605563],[-97.71998223212552,20.771937489201264],[-97.72038399593362,20.771345848802184],[-97.72034381793878,20.7710230410691],[-97.72052789453204,20.7708127673514],[-97.72088513486926,20.77041229265069],[-97.72120665845267,20.770434841496865],[-97.72133481960901,20.77049626810043],[-97.72156868970228,20.770739890412756],[-97.7216535452248,20.770851385356025],[-97.72227813844586,20.771106236413402],[-97.7226303503083,20.77073770791094],[-97.72312362587195,20.77068445897254],[-97.72362699262112,20.770815671249693],[-97.72446695234282,20.770943460647914],[-97.72491351049081,20.771133583236008],[-97.7256210140722,20.77121939562892],[-97.72611188625848,20.77127182310727],[-97.72625307903019,20.771264557335485],[-97.72639658400828,20.771242511069886],[-97.72641372925352,20.770721437473526],[-97.72616022856812,20.770409571527807],[-97.72538939191429,20.76964011002849],[-97.7252839448604,20.769427673678365],[-97.72544525051376,20.76901252146979],[-97.7266445133206,20.767332323630058],[-97.72477160169694,20.767222964484347],[-97.72370540355888,20.76709349496514],[-97.72322490013568,20.766542931921833],[-97.72229494807573,20.765593978186303],[-97.72184578052662,20.765165195747045],[-97.72104275349687,20.764941668983568],[-97.72015543671273,20.765041849439342],[-97.71995358098866,20.764719979797974],[-97.71928353779788,20.763420442419317],[-97.71910397048651,20.76309659518722],[-97.71894627452173,20.762722519958686],[-97.71971538406291,20.761801036388533],[-97.720742200475,20.762259046906536],[-97.72130895976863,20.762444674981396],[-97.72150170645773,20.76247634562958],[-97.721941414166,20.76246953552794],[-97.72226604372798,20.76211920492466],[-97.72258656090463,20.76098272539673],[-97.7223941545688,20.760910749145637],[-97.722179879245,20.760888992626576],[-97.72239829971176,20.76061307616908],[-97.72258925025346,20.760316179279585],[-97.72268062722975,20.76006514711173],[-97.72338045425914,20.759408448932504],[-97.72375827820434,20.759299384679252],[-97.72475103371079,20.759350808584372],[-97.72492877495375,20.759445354762022],[-97.7250072572869,20.75954848196551],[-97.7252831638562,20.7597649447643],[-97.72564146150722,20.75961844397932],[-97.72592841753504,20.759834341371175],[-97.72608530593743,20.760049920412712],[-97.72639455361565,20.759837797038244],[-97.72619870282603,20.759538019922218],[-97.72632075644515,20.759175341949913],[-97.72617402214888,20.758931868562343],[-97.72604641170045,20.758772437967366],[-97.72607093704363,20.758213273358933],[-97.72613293983142,20.757915407612415],[-97.72631600306221,20.757376053415044],[-97.72643578984662,20.75728371398509],[-97.72605280149475,20.757070413992494],[-97.72550611144675,20.757368525221523],[-97.72540988694834,20.757042404205265],[-97.7256406979908,20.756067868991863],[-97.72535691011137,20.75497740032216],[-97.725423572051,20.754318879628045],[-97.72567719624953,20.75379861670001],[-97.72570122155827,20.75327816938932],[-97.72549191719156,20.752423741654354],[-97.7250839185997,20.751598766387758],[-97.7230908972,20.75043238681195],[-97.7261605524231,20.747612867720136],[-97.72644096868538,20.74556582284464],[-97.72665610136312,20.745267613080216],[-97.72667786657263,20.744784739711008],[-97.72684428999747,20.74395317121497],[-97.7269201848041,20.743354109723555],[-97.72719819917756,20.743205226380383],[-97.72774672055397,20.7432405960991],[-97.72784388741297,20.74307778904773],[-97.72761759609602,20.74259308820274],[-97.727729615584,20.741911013268975],[-97.72814061064378,20.74149765300473],[-97.73798251580502,20.738550451619744],[-97.74902473219328,20.73298273498108],[-97.74999386495932,20.725476725946123],[-97.75076710054617,20.72491851672703],[-97.75017484901258,20.724074901630274],[-97.7515883141051,20.713125851362463],[-97.75108238121504,20.71225463691161],[-97.7508673666552,20.71149046035265],[-97.75080024116556,20.710681144273565],[-97.7507601629253,20.70957159397392],[-97.7508469440433,20.708889628099087],[-97.75090857596797,20.708111056826738],[-97.7506387188036,20.707330080506154],[-97.75110341621223,20.70558683804535],[-97.75183885973831,20.702698077482694],[-97.75142046363993,20.701435091792973],[-97.75292373767309,20.700859254882005],[-97.7540532182851,20.699842628241697],[-97.75465932080988,20.69937811686833],[-97.75526541968298,20.698913603155006],[-97.75562271904181,20.698328728528907],[-97.75582765076774,20.69793061149909],[-97.75689966869146,20.696003868946207],[-97.75702171708633,20.695446128613185],[-97.75735238689305,20.694516102810837],[-97.7575371488063,20.69346819107676],[-97.75701462659094,20.692269663989237],[-97.75685970487507,20.689492286264624],[-97.75653446238431,20.689014133766932],[-97.75371356262104,20.68846631525281],[-97.75318958326977,20.68834304370148],[-97.74915239658566,20.686981718690504],[-97.74770980721479,20.686260041244168],[-97.74708390681741,20.68639532345378],[-97.74603799179812,20.686636459900058],[-97.7455474163026,20.68699362667394],[-97.74410043900201,20.68883289404772],[-97.74320397732879,20.689305814842157],[-97.7404548572049,20.688447387264773],[-97.74037845541847,20.687585724335293],[-97.73946720725098,20.68704751785964],[-97.7396624206844,20.686471668963236],[-97.73985592056994,20.685298045039872],[-97.73989693852269,20.68477995155922],[-97.74008646651998,20.684090137672683],[-97.73998672905583,20.68281069541706],[-97.74072883974713,20.681851715802225],[-97.74016788722076,20.681442433589837],[-97.73907860946866,20.681490774913357],[-97.73867568985435,20.681315020764316],[-97.73864406615178,20.68069270975576],[-97.73732619771812,20.68002642757483],[-97.73792381146257,20.678649559895405],[-97.73796122344896,20.678067150174456],[-97.73864823372543,20.677826837923078],[-97.73911400565402,20.67672621271771],[-97.73859489712754,20.676385071897073],[-97.7390234846248,20.675836190924713],[-97.7393178119226,20.67574634072048],[-97.73981769200668,20.675589634428604],[-97.74028089048198,20.67469833830694],[-97.74061969607169,20.674042380129208],[-97.73928185873746,20.67235746360251],[-97.73947088293545,20.671838383974716],[-97.73912592019201,20.66847568999316],[-97.73880817275182,20.6675517057634],[-97.73854156819169,20.66667466743911],[-97.73888817386921,20.665952080844818],[-97.73905614590257,20.665796543076226],[-97.73946392641449,20.66485890301726],[-97.73798289858229,20.663668638315016],[-97.73807885356251,20.663030247985432],[-97.73844709410139,20.662844814114862],[-97.73921587501934,20.66259960955898],[-97.74048315406594,20.66262557246813],[-97.74042657149539,20.661121683945623],[-97.74047005992185,20.660435268396157],[-97.74211532936368,20.659004990958522],[-97.74254995858917,20.658851384890056],[-97.74304895135396,20.658980442654013],[-97.74372078925768,20.658358254530924],[-97.7441541270884,20.658361409537292],[-97.74471849332485,20.658647704651344],[-97.74488464900952,20.658711620091026],[-97.74510295169517,20.65745985814874],[-97.74596762697581,20.656970010491193],[-97.7473843649795,20.65801398541123],[-97.74792504326138,20.658859940560376],[-97.74872148042203,20.659304673601696],[-97.74921867267415,20.659653173836546],[-97.7503869151011,20.65947352031128],[-97.75176643066823,20.65791579923416],[-97.75194294518889,20.657220125700803],[-97.75145190025182,20.656119181066174],[-97.75100934002398,20.65481630252583],[-97.75070097746459,20.653758636319083],[-97.75036036590643,20.65282849238355],[-97.75271755340987,20.65184431326452],[-97.75258681897992,20.649892413910038],[-97.75228492232526,20.64918320141294],[-97.75218069780703,20.649029703579288],[-97.75173911140581,20.64873673864929],[-97.75029649265343,20.647705722536614],[-97.74967130712724,20.646979598944824],[-97.74837652781264,20.64508655267838],[-97.74858307251947,20.644282538051414],[-97.74865654129968,20.644148284252253],[-97.74925840348584,20.643625810587935],[-97.74741458104114,20.643839718967456],[-97.7373262013146,20.64643127505667],[-97.7352280984939,20.64483796335344],[-97.73477889337153,20.640762845717575],[-97.73383018307084,20.639986241710687],[-97.73120270795005,20.637790170421965],[-97.73045143685113,20.63812586701181],[-97.73007071262947,20.638352825916797],[-97.72964681209737,20.638291214041715],[-97.7288068237986,20.63802670148499],[-97.7265254444103,20.63716600683273],[-97.72613738667616,20.63683081687583],[-97.72596151045815,20.636731296735434],[-97.72511939779878,20.63672508106322],[-97.72372389256316,20.637214214324047],[-97.72343112629096,20.63719482469122],[-97.72285196735601,20.636741161777422],[-97.72240657551163,20.63691915609462],[-97.72083282542377,20.637012319905864],[-97.72029207392865,20.636582428114025],[-97.71933293876197,20.636380380946434],[-97.71866410995978,20.63661724532608],[-97.71842286270311,20.63647646117016],[-97.71748556637243,20.636588226260187],[-97.71676201785056,20.63666313865275],[-97.71511964525757,20.636948351912338],[-97.71393944290583,20.636658410545408],[-97.71414064739776,20.63612758046986],[-97.7135137479803,20.635394311489733],[-97.71310352344108,20.635572233891367],[-97.71296792036208,20.63527051985892],[-97.71266279388396,20.634889033324498],[-97.71233708338679,20.635037215249326],[-97.71207574261103,20.63490970061457],[-97.71219261551732,20.63424498689318],[-97.71115271503533,20.632899238200082],[-97.71048358556732,20.632441647578844],[-97.70979183159096,20.6314804177743],[-97.7094004064798,20.631616420949626],[-97.70908965422575,20.631392398415244],[-97.70905449309095,20.631219916384453],[-97.70854570471056,20.630768339240944],[-97.70831897557508,20.630783441276265],[-97.7078936452831,20.6309105459913],[-97.7070260087097,20.631458044217766],[-97.70676722276778,20.631666236060596],[-97.70612366690892,20.630735891019015],[-97.70514528392755,20.629775762222835],[-97.70442407729831,20.628855441254416],[-97.70470849356298,20.628489555855992],[-97.70489497993378,20.628052535962638],[-97.70493187143506,20.62790255334255],[-97.7048333095932,20.626181516689257],[-97.70492395550679,20.6251279844069],[-97.70650801737287,20.626109159068392],[-97.70724701240141,20.62651453026882],[-97.70809358757577,20.62608692634376],[-97.70876306539174,20.624875246876456],[-97.70792440584285,20.6231698715402],[-97.70790307406514,20.622687108699097],[-97.70845426891714,20.622450126518743],[-97.70893364875684,20.622739513783984],[-97.70922003804816,20.622817513606094],[-97.70945544144502,20.622238237353713],[-97.70919361301003,20.621882469123534],[-97.71005371861088,20.62155939099432],[-97.71022411460001,20.621646877047567],[-97.7105314740499,20.621719551896433],[-97.71085825137936,20.621594814349237],[-97.71111896861606,20.621372670693233],[-97.71127520366258,20.62129205068618],[-97.71144242677207,20.621007718881685],[-97.71234692811345,20.62061464378479],[-97.71252942141757,20.62046345497447],[-97.71259289369493,20.619944129185],[-97.71259913181063,20.619518171844334],[-97.71256218130117,20.61866475781477],[-97.71233194340317,20.61828659758112],[-97.71223371703798,20.617915991149914],[-97.71225683391583,20.61765366285232],[-97.7125144110575,20.61698597239848],[-97.71239758420342,20.616721237417664],[-97.71264659877124,20.616203119263616],[-97.71238156186342,20.615200241662762],[-97.71245889437148,20.614799069837886],[-97.71264585048925,20.614335471095956],[-97.71290499966142,20.613992953486843],[-97.71321848919035,20.613719741360455],[-97.7136250857792,20.613257776529792],[-97.71396048517607,20.61255416806995],[-97.714111836391,20.61196974176528],[-97.71505458128036,20.61087454922631],[-97.71523248193876,20.609568376405036],[-97.71506987471605,20.608843652825044],[-97.71053648698165,20.608671241678337],[-97.71095524745101,20.605898347468838],[-97.71060553743581,20.604578148850806],[-97.70881283410517,20.605150918862876],[-97.70573415394864,20.604960503699942],[-97.7048374076565,20.60166470426958],[-97.70389943596189,20.601652036749954],[-97.7030889895247,20.60166704492616],[-97.70134834024117,20.60304188218106],[-97.69927446738888,20.60220362388128],[-97.6966432633011,20.602805903804835],[-97.6934190846464,20.602680674125565],[-97.69325098230524,20.601999269212115],[-97.69402466934184,20.600085295058193],[-97.6945322526916,20.599431385464356],[-97.69526946735351,20.598258965461127],[-97.69706946779775,20.59658820023151],[-97.69689361860691,20.595589563453245],[-97.69684126491842,20.595329695766225],[-97.69704269710809,20.594948921303796],[-97.69728849444135,20.594077130676908],[-97.6971864607442,20.592800821701417],[-97.69806879033166,20.58926840663412],[-97.69834873489964,20.588616994502217],[-97.69885963905676,20.584597521856665],[-97.70035451794922,20.581068041455183],[-97.70047660116734,20.580163064149815],[-97.70120514582021,20.57421995251127],[-97.7013900017775,20.573551471388384],[-97.70190315707504,20.57186632689121],[-97.69988539033648,20.57068958071494],[-97.69985582769755,20.571521621432737],[-97.69939769569686,20.572365154599254],[-97.69423716890412,20.570678628904318],[-97.69220736319511,20.571102638856587],[-97.69213128299413,20.571607633552787],[-97.69146684662962,20.571446757647664],[-97.6906715685393,20.571648328220192],[-97.69033478515325,20.572020312161612],[-97.68969317009066,20.571907192702724],[-97.6890509634618,20.571813036465812],[-97.68852089934927,20.571790111956545],[-97.68823915790205,20.57190006285225],[-97.68776616784334,20.57217870679534],[-97.68704397342879,20.572587056051475],[-97.68621788918563,20.5728112572138],[-97.68555401393849,20.572896235855694],[-97.6840564425022,20.572510172324144],[-97.68412013116483,20.57147789201315],[-97.68430861235129,20.57096628876593],[-97.6846568795496,20.57061592126894],[-97.6847956633901,20.570296410517926],[-97.68467939297528,20.569723652893344],[-97.68453733795963,20.569458200400277],[-97.68391405037363,20.569514193218822],[-97.6824053126935,20.568976983682262],[-97.68178277968588,20.568538608803067],[-97.68092152130208,20.56782485220492],[-97.68076929063233,20.56680648982791],[-97.68112929072714,20.566542635956523],[-97.68153843115056,20.56628228025812],[-97.68158127218913,20.566160264534517],[-97.68157063340072,20.565940131702746],[-97.68119304805862,20.565454418980437],[-97.68108250823565,20.565338636935678],[-97.68091559573787,20.564889548799215],[-97.68145420301931,20.564011083579032],[-97.68168735902276,20.563648144919114],[-97.68211197487227,20.56315430441532],[-97.68266337858563,20.56285953909702],[-97.68273587313075,20.56263030156481],[-97.68172278383048,20.561848796294157],[-97.68193640079346,20.56079470050787],[-97.68298223088442,20.560418357266315],[-97.6829817373918,20.559548922825797],[-97.68308672995329,20.558455289354526],[-97.68340675214773,20.557075309981826],[-97.68344376686667,20.556900325246318],[-97.68368560832369,20.556143601800102],[-97.68389515074148,20.555720813985715],[-97.68460824267834,20.554864930545136],[-97.68487658600043,20.554415234126736],[-97.68463562972937,20.55423943022288],[-97.68404938474072,20.554520173086473],[-97.68371778126715,20.554654184222557],[-97.68352355454596,20.5546676935993],[-97.68292487693162,20.554263622011888],[-97.68166907933755,20.55506269811741],[-97.68030860077448,20.554619088931588],[-97.67808708410149,20.555360172972144],[-97.67632346836547,20.555458857242684],[-97.67548162129481,20.55499147195752],[-97.67505474602672,20.554146456152125],[-97.6741041376228,20.55283162271212],[-97.67330771485047,20.552301742548934],[-97.67299185355245,20.552095368040682],[-97.67282158948808,20.5517845043301],[-97.67244773273018,20.551658356640473],[-97.67226951671864,20.55180263323024],[-97.67189314240267,20.552083149280293],[-97.67174176508985,20.552121713961867],[-97.67127878520944,20.552386763482843],[-97.67064853055166,20.552652082180373],[-97.67016902528246,20.552333682776066],[-97.66993901375054,20.5521711330735],[-97.6695183454122,20.55185893995929],[-97.66862677839083,20.55158848500946],[-97.66753778801211,20.55132135006295],[-97.66695247718019,20.551095748681803],[-97.66671284733252,20.55105725954371],[-97.66648552298142,20.55032945129875],[-97.66591611356722,20.549942684338646],[-97.66541115520067,20.54984813129323],[-97.66513988992949,20.549719951628504],[-97.66471479719081,20.549480844418383],[-97.66415329401008,20.548436400082892],[-97.6636963895088,20.547939946465647],[-97.66348462363527,20.54759572607213],[-97.66336392061788,20.547306573709307],[-97.66228379166478,20.546509779226994],[-97.66184062752319,20.546018464554322],[-97.66068602062848,20.5453936372071],[-97.6598188747962,20.545308714954786],[-97.65935605491734,20.545373261837824],[-97.65896548366953,20.545115945310783],[-97.65729431987961,20.545068750570067],[-97.65671229397799,20.54526851775205],[-97.65636192819204,20.545381220423565],[-97.65650155916262,20.545810500527864],[-97.65584598354576,20.547412297411256],[-97.65612581659707,20.548041121185292],[-97.6561645598149,20.54827161927932],[-97.65639268598574,20.550153322901394],[-97.65633487936896,20.550549321785013],[-97.65680941903241,20.55400678735805],[-97.65743972632544,20.55495804110086],[-97.65763580228969,20.555719330883733],[-97.6571306202494,20.555996767763418],[-97.65673223502779,20.556492435801033],[-97.65655869809001,20.55744027762563],[-97.65361345853546,20.560443435283503],[-97.65178744628355,20.563062010741305],[-97.65160826802094,20.563375959444215],[-97.65060874732939,20.564950883891072],[-97.64782635980066,20.565188182827853],[-97.64793518021804,20.565588079718736],[-97.64819649622285,20.566312192531484],[-97.64789046060088,20.566273697469967],[-97.64758463211462,20.56618418286513],[-97.64714537440688,20.56627513282382],[-97.64688901624714,20.566469718023882],[-97.64675992726228,20.56659502594914],[-97.64651422707425,20.566459000668146],[-97.6466204189976,20.56630498973226],[-97.64674770622548,20.566050631267444],[-97.64661787855658,20.565857760910944],[-97.64620899186542,20.565987252124444],[-97.64605540948901,20.56563695440707],[-97.646221743235,20.565359335723258],[-97.64616406899626,20.565245862402378],[-97.64593634242118,20.565127183530137],[-97.64589029256638,20.564913992230174],[-97.64581680133045,20.5647311771217],[-97.64561053246712,20.564357618879058],[-97.64578541906343,20.56385786822807],[-97.6460039092508,20.564262929689733],[-97.64663503350454,20.563975635809356],[-97.64632139647875,20.563854500807736],[-97.64613393701359,20.563718277266503],[-97.64612894211024,20.563462641992487],[-97.64629278565991,20.56330530453687],[-97.64652473558834,20.56308760657447],[-97.64635632309529,20.562771215211058],[-97.64578289667605,20.562910598966766],[-97.6455179084951,20.562921716039227],[-97.64542300323745,20.56260718194602],[-97.64543556546266,20.56239851486845],[-97.64482011120651,20.562650449583884],[-97.6447149183312,20.5626529395185],[-97.64481148635588,20.562193633167],[-97.64477792079856,20.561967141306525],[-97.64459935920894,20.561890526436173],[-97.64447190276468,20.561677853463266],[-97.64409305293111,20.561474485518545],[-97.64386478271604,20.561671480599955],[-97.64371470025463,20.56143615493147],[-97.64277666108165,20.561092984151855],[-97.64205019809731,20.561147294892464],[-97.64146306801854,20.56079131966186],[-97.64122617057063,20.560317748539433],[-97.64078040842685,20.56014430841975],[-97.63957202138681,20.560493059306395],[-97.6396764271567,20.559935403683596],[-97.63879602777689,20.559932929563104],[-97.63827141813272,20.559520346836564],[-97.63753590249962,20.55872542988226],[-97.6376794799379,20.55785557275817],[-97.63780149559778,20.557718637298194],[-97.63792020550318,20.55735251425824],[-97.63745154689457,20.55734931953623],[-97.63751478531037,20.556939759558134],[-97.63829745881122,20.555484949044114],[-97.63769939233435,20.555492088970993],[-97.63775471999048,20.55445069650858],[-97.63718231632947,20.5538314595301],[-97.63666451276754,20.55371173041584],[-97.63664919407398,20.554621324206664],[-97.63609487649939,20.555313871605676],[-97.63523182621049,20.555210088912304],[-97.63475989221985,20.555089503401803],[-97.63467159621433,20.55484184107155],[-97.6344055978912,20.55486475923277],[-97.63344542879736,20.555232444272008],[-97.63269500281666,20.555926998196412],[-97.63234970719645,20.55589925736524],[-97.6316559858264,20.556193982421007],[-97.63144201941066,20.55634238969202],[-97.63085662165025,20.55641281654482],[-97.63034622679345,20.55681796900592],[-97.62982115952957,20.556819639624734],[-97.62984338158958,20.55639557730649],[-97.62945858339856,20.55576750702096],[-97.62873821068189,20.556341701221243],[-97.62884821623902,20.55703257447618],[-97.62806446049007,20.557339610573194],[-97.62751498132286,20.557967411280742],[-97.62601291632387,20.55833944602847],[-97.62508928465274,20.56075427738631],[-97.62502003943126,20.561379152492634],[-97.62404429149194,20.56324078634219],[-97.62375398524898,20.563576692318975],[-97.60975876033916,20.563714313640276],[-97.60857335378802,20.563008386846604],[-97.60790121333514,20.56263218289223],[-97.60264527138406,20.559284381032853],[-97.59834203796225,20.55822099146303],[-97.59592630088974,20.557555308187773],[-97.5949250628704,20.5573390483724],[-97.59284076155842,20.556877474789474],[-97.59234523728952,20.55674633444221],[-97.5899527716926,20.55614968399351],[-97.59001796088666,20.55931119396962],[-97.59003917245178,20.559673066191237],[-97.58985662786193,20.559966516504517],[-97.58923192183101,20.560879453539997],[-97.58860707733544,20.56111626961217],[-97.58864784710067,20.56063262673905],[-97.58906475563145,20.560151102546456],[-97.58979194793801,20.559320019329277],[-97.5889277156561,20.55874528542256],[-97.58823259119083,20.558559255271803],[-97.58771536223247,20.558112282358195],[-97.58925243147905,20.557199545812864],[-97.58934693858112,20.556667912783894],[-97.5893218862455,20.55646132131602],[-97.58899512970021,20.556232802024738],[-97.58877270681734,20.55621981259617],[-97.58788156263171,20.555768689550575],[-97.58736348443944,20.55531276840918],[-97.58719667841427,20.555032420509974],[-97.58656150816046,20.554852850753434],[-97.5855342366109,20.55318926081759],[-97.58486699832588,20.552847400436292],[-97.58434608161116,20.552577069277277],[-97.58483324034734,20.552286036553994],[-97.58436263000794,20.551919817854525],[-97.5840658362714,20.55195408976641],[-97.58324581819647,20.551646485807623],[-97.58318583561339,20.551018948514013],[-97.58353085574771,20.548298299383816],[-97.58035646777682,20.547820265279086],[-97.57855397409969,20.545004808512147],[-97.57499228301697,20.543343212251784],[-97.57881739026516,20.538248944338307],[-97.57715905687172,20.53583424183529],[-97.57595081693421,20.53415302997223],[-97.57504210429289,20.532875471376258],[-97.57463095571148,20.532290246161494],[-97.57431790476028,20.532296513608458],[-97.57303106468152,20.53230660970098],[-97.57271700088563,20.532284438534532],[-97.570534311946,20.52935982292655],[-97.56849906953533,20.526285216289864],[-97.56205551276912,20.51696115839877],[-97.5621193608539,20.516352238315733],[-97.5607191508642,20.514732213263642],[-97.5571591456856,20.510433183208875],[-97.55494825515734,20.51039566334839],[-97.5558600797674,20.50936623354812],[-97.55475891928904,20.506059418329187],[-97.55357083502855,20.504539849048456],[-97.55207794676755,20.507361637290956],[-97.54825413370037,20.500755160383733],[-97.54784548179339,20.500001177709976],[-97.5464191408596,20.497461320763136],[-97.54539152134521,20.495485742881783],[-97.545157527529,20.49509658238503],[-97.54104333325387,20.489711621621893],[-97.54180214900106,20.488513469022507],[-97.54216447981923,20.487775380909056],[-97.54220876438546,20.48783907545328],[-97.54331152320913,20.48474270185733],[-97.5449358296778,20.484572566015743],[-97.54674411532773,20.484988511097185],[-97.54784209029219,20.485687029472217],[-97.55366347274133,20.486081115079003],[-97.55605712651345,20.484690027543536],[-97.55711690058928,20.48571785040116],[-97.55883191532547,20.48807736714241],[-97.55983145194136,20.48927378086057],[-97.56354156537026,20.48994092102714],[-97.5656399927679,20.490148993838716],[-97.56656367417003,20.49040026403327],[-97.5697774801938,20.490840104781057],[-97.57101450015824,20.49074067324659],[-97.57604554759212,20.49090017152787],[-97.57781002723885,20.490002488733808],[-97.57669527473706,20.48691710807509],[-97.57825624250489,20.485673129093755],[-97.57897292642832,20.485429062355593],[-97.58039244172812,20.484218383840982],[-97.5809000512308,20.48357947714385],[-97.58358091145021,20.47920247200699],[-97.58529337339803,20.476513811704592],[-97.58598263995981,20.473263433332818],[-97.58627018658001,20.472507063320165],[-97.58717004951939,20.472085585107095],[-97.58798710304012,20.47161306191373],[-97.58984920850367,20.470640888404546],[-97.59262886117318,20.468585887814072],[-97.59306873549656,20.468368573693397],[-97.59367400877312,20.4678989696215],[-97.59395524458154,20.46749403069947],[-97.59449840718594,20.46694343245872],[-97.59450705533845,20.466919438938817],[-97.59542355625717,20.465672796874912],[-97.59642164041071,20.464084127708247],[-97.59701003346322,20.463614280425702],[-97.5985375960891,20.46227947391492],[-97.60081891913381,20.461116029825575],[-97.60276322066727,20.460985791990822],[-97.60413353074318,20.461595873553165],[-97.60815450372291,20.46128112378682],[-97.60963816726462,20.460714157294944],[-97.61161472489545,20.459508414518893],[-97.61455145217172,20.457295790982414],[-97.6144368747344,20.456223619349544],[-97.61780838281294,20.455379938405372],[-97.61937620870964,20.455313491079153],[-97.61991013578006,20.45539019355482],[-97.62259896390793,20.457657508764385],[-97.6233562436139,20.457795723773586],[-97.62527314110014,20.45666651208694],[-97.62539571242053,20.454727821223116],[-97.62546661406117,20.45348782535922],[-97.62610152566276,20.452445198403097],[-97.62803242048165,20.450292226168813],[-97.62904418007332,20.4500723936531],[-97.62952963179026,20.45011257357595],[-97.63003702599087,20.45023785088324],[-97.63097462081436,20.45062368082864],[-97.63252123795121,20.45163008299164],[-97.63536507210472,20.452185561289696],[-97.63609315924992,20.451585458130353],[-97.63615924459799,20.45088111009443],[-97.63619789117928,20.449894613742288],[-97.637744876142,20.447594783260342],[-97.64072373286882,20.44227166312595],[-97.63743442234932,20.43655387930886],[-97.63689133453636,20.436338356460396],[-97.63646514715708,20.435453624761863],[-97.63616382765895,20.43488428145065],[-97.63602108035963,20.43447202904406],[-97.63546816609875,20.432354090791364],[-97.63695254427489,20.43066039180229],[-97.63696451459737,20.428239394911884],[-97.63684622994793,20.4266829757143],[-97.63647366397811,20.424254074043745],[-97.63655921706237,20.422592789761495],[-97.63742237198858,20.418517111257813],[-97.6375541144767,20.417905560260238],[-97.63843393856814,20.41747431865872],[-97.6398080237712,20.417195578574194],[-97.64126498007488,20.416282091745813],[-97.64169205755434,20.41551480952154],[-97.64157799452107,20.41461701706214],[-97.64108504235293,20.41364390117667],[-97.6411159125064,20.411931247419375],[-97.6416625660869,20.41141527228899],[-97.64223615448458,20.410867726722813],[-97.64321323946416,20.410021683396735],[-97.64391059945319,20.409027051249268],[-97.6458830305425,20.408366993268373],[-97.6468528678725,20.409033762516685],[-97.64713032513635,20.409352577573202],[-97.64786726221223,20.410346434986423],[-97.64960278769848,20.410979748957857],[-97.65152252856024,20.41083431134888],[-97.65216046218688,20.41063704732312],[-97.65290506788955,20.41026352372546],[-97.65379828642847,20.410078232457465],[-97.6549774255243,20.40992819000985],[-97.65582801137106,20.41044265347813],[-97.65623780409896,20.41111779726839],[-97.65673621207867,20.411792469304487],[-97.65698793167581,20.411978655421137],[-97.65775042953271,20.412225765739663],[-97.65938001328732,20.41235012364217],[-97.66046961045248,20.412534802784194],[-97.6633311472217,20.411150521274863],[-97.66365609155974,20.41075601811741],[-97.66459583612766,20.410300157348388],[-97.66469591560286,20.409498988724295],[-97.66489482020205,20.40860009623549],[-97.6657549178961,20.408215397543245],[-97.66670354142178,20.4083092039819],[-97.66717984624296,20.408324591101234],[-97.6691576683566,20.40835219567589],[-97.67207520053495,20.408529399697272],[-97.67401567444398,20.412230269660995],[-97.67304944299491,20.415265097224506],[-97.67263763882164,20.418059848118673],[-97.67286269616721,20.418565794775134],[-97.67327983633407,20.418965150565327],[-97.67423714288498,20.418792361283636],[-97.67492606797902,20.41885281434628],[-97.67658300556076,20.42163665557473],[-97.6796694457505,20.425083847944506],[-97.68073542282121,20.42550230886627],[-97.68198677036685,20.42539056878877],[-97.68406308507105,20.42629782932073],[-97.68554946225572,20.42691121276505],[-97.6868827552774,20.42715657855973],[-97.68806823656354,20.42743292134554],[-97.68908242552948,20.427981725727932],[-97.69256642059395,20.430310195241475],[-97.69606341613667,20.431429293518647],[-97.69637712650075,20.431724685957533],[-97.6973811380854,20.43233001071178],[-97.69912082412338,20.4346120811324],[-97.69878070165657,20.438679445950697],[-97.69886964742625,20.441741539068744],[-97.69955528936964,20.44335574547341],[-97.70148510316073,20.445783284788888],[-97.70224622486319,20.446221164753183],[-97.70453715788233,20.44685732230829],[-97.70590384327943,20.447194471631292],[-97.70790165201822,20.449092784727895],[-97.70784236825648,20.451601903933124],[-97.7078919684418,20.453100190474345],[-97.70918749335863,20.4551093760723],[-97.7158818946101,20.454870796342334],[-97.71814642483076,20.453879027685616],[-97.7203290756334,20.45353493049572],[-97.72105474008731,20.453648314454654],[-97.72310883476428,20.457534059553723],[-97.72583025362457,20.458228920634042],[-97.72874317742452,20.457316907440713],[-97.73349480672965,20.45243675506248],[-97.73402100520491,20.451752404653803],[-97.7347941038206,20.44837162569337],[-97.73407307058432,20.445328446191922],[-97.73422897848315,20.444969409351643],[-97.73431990668945,20.44320522788479],[-97.73455493085572,20.442522616061694],[-97.73482789090849,20.441876292522466],[-97.73521409756859,20.441410873006248],[-97.73667298333811,20.440701127062425],[-97.73759390802991,20.440311617013492],[-97.74304209582635,20.430881746194757],[-97.7434011906326,20.43005451846892],[-97.74412241102578,20.428026670709528],[-97.74549618586872,20.426999296170493],[-97.74585426082501,20.426296530772788],[-97.7458653574235,20.42492740722315],[-97.74605060518633,20.423808489791043],[-97.74664065561836,20.422434509111383],[-97.74849950684057,20.42168958341074],[-97.74921451674396,20.421309724284697],[-97.75044146791589,20.419867573477916],[-97.75099160246731,20.41872575869189],[-97.75123703900249,20.416331310234284],[-97.75085921877417,20.415044473117916],[-97.7509524617069,20.414564900950893],[-97.75134820734041,20.414298090585476],[-97.75187527098416,20.41409218274231],[-97.75235174859017,20.41384143170427],[-97.75301124227667,20.413730730302234],[-97.75352025795195,20.413509796707785],[-97.75392306120386,20.413410986376505],[-97.75569537040496,20.413164671677407],[-97.75582525548481,20.412315781127006],[-97.75534588440473,20.410070423258674],[-97.7552543074994,20.408679035391856],[-97.75531513682523,20.407987682891473],[-97.75537816360645,20.40744452479055],[-97.75553140307068,20.406509566069474],[-97.75572190161438,20.405376245723062],[-97.75603244522449,20.404867982353892],[-97.75649920835565,20.404560304712845],[-97.75669015770097,20.40447950994411],[-97.75692937745384,20.404427326168047],[-97.75717236490402,20.404298432924065],[-97.75816014736773,20.403109589684732],[-97.75803614183508,20.402902555877063],[-97.75791020117106,20.402664090529697],[-97.75753829799987,20.401772224150704],[-97.75741432798606,20.401328976131083],[-97.75723062814154,20.400741570381626],[-97.75748807653378,20.399704647498083],[-97.7598655950606,20.3985403396822],[-97.76106020462646,20.398667944458055],[-97.76144139547768,20.398707349248014],[-97.76180317369068,20.398655748093233],[-97.76259182436746,20.396737827818868],[-97.76259698654763,20.39614726319718],[-97.7633361281346,20.39417038112117],[-97.76358801423163,20.393204572759544],[-97.7635434899974,20.39171107017995],[-97.76289181242834,20.39072111139302],[-97.76252384350613,20.38865675713447],[-97.76287099044782,20.38807225058872],[-97.76328971302354,20.387285191757826],[-97.76376217603615,20.387011752298633],[-97.76398661563962,20.38670757788549],[-97.76414328957424,20.385799423271067],[-97.76452659756376,20.385217028504712],[-97.76509109509078,20.384787051486626],[-97.7652248612066,20.38466540135272],[-97.7654809401854,20.384322984707865],[-97.76552538057587,20.38370258831776],[-97.76518046615007,20.38269774834174],[-97.76525779172312,20.382239987843093],[-97.76520639729705,20.381700242473755],[-97.7656417347705,20.381228351769835],[-97.76513932613466,20.38087650046407],[-97.76448819658731,20.380580815102178],[-97.76379755867185,20.38052066738038],[-97.76303345416744,20.3803216753131],[-97.7621648132154,20.380069603779134],[-97.76062237504391,20.379595688783866],[-97.75928297276602,20.37918228527974],[-97.75847896576488,20.378868471768044],[-97.75816866067015,20.378907784080354],[-97.75749808643394,20.378958725425377],[-97.75668940112502,20.37902725750547],[-97.75575992645071,20.379410658631798],[-97.75495819955898,20.38023014787376],[-97.75439925895381,20.379898294601787],[-97.75383333154195,20.37984007866322],[-97.74894833322782,20.378540505126807],[-97.74791362841347,20.378566316978493],[-97.74725455885186,20.378661272906754],[-97.74597592437635,20.378838088371253],[-97.74561976310946,20.379918587822033],[-97.74518880049754,20.38020730525318],[-97.74437853403651,20.379275558830955],[-97.7438552829098,20.378892278895478],[-97.7432878089341,20.376920500368726],[-97.74402332471897,20.376143787287504],[-97.74374430352077,20.375716953194626],[-97.74453229647298,20.375368809526776],[-97.74596115958099,20.374959760510592],[-97.74610757425648,20.374454158254196],[-97.74669282475645,20.37463871491053],[-97.74727549963643,20.374940936681526],[-97.74805455878999,20.37442497276038],[-97.7474865681732,20.373358780725596],[-97.74710270759522,20.372838565890106],[-97.7472673337466,20.37203506377284],[-97.74739525387116,20.371565147456863],[-97.74722949242408,20.37055064790013],[-97.74374747378374,20.367928543640346],[-97.74421724604645,20.36739974004479],[-97.74409093323442,20.36586366816141],[-97.74430707034838,20.36428106949012],[-97.74470518530512,20.363753110832704],[-97.7449293415346,20.363398410691786],[-97.74499356065724,20.363279658964927],[-97.74534310942204,20.363073545955274],[-97.7455671217769,20.362747325122484],[-97.74566523694153,20.362345679466387],[-97.74493329961086,20.3622044870458],[-97.74401725596249,20.362054146039327],[-97.7431822094523,20.360625846690652],[-97.74345781388678,20.36004509880746],[-97.74422211752909,20.356636271487275],[-97.7443536412951,20.356444076724586],[-97.74291025599007,20.353391413310305],[-97.74199572879735,20.35291084109042],[-97.74260280190964,20.35120556780464],[-97.74002025578255,20.350467626035595],[-97.73895502522129,20.350329909665902],[-97.73788925128639,20.349495478873905],[-97.73751845789798,20.349265764556264],[-97.7340855654777,20.347263228506392],[-97.73067094269567,20.343936706296347],[-97.7305635712313,20.34359018826501],[-97.72798743276593,20.34117200439107],[-97.72760897070475,20.340587823000703],[-97.72516702586722,20.33887025322025],[-97.719994647161,20.3348182291154],[-97.71957082951263,20.33432194008276],[-97.71357062379832,20.329843862961923],[-97.7131316080272,20.329432001459338],[-97.71006303791978,20.32785949408401],[-97.70250901711677,20.325540123893177],[-97.7035294911941,20.32467260917582],[-97.70086194546656,20.323456714306246],[-97.70068949636106,20.319919023144905],[-97.70000863078639,20.320751106764874],[-97.69650524172641,20.320662151918384],[-97.69634344858014,20.321332576705856],[-97.69672300597949,20.321598316486245],[-97.69529871615015,20.325518816738338],[-97.69563378169062,20.32561355293558],[-97.6972276007516,20.326536570330006],[-97.69724634374438,20.32693288182878],[-97.69623793613727,20.3287031807194],[-97.69612929932669,20.32886589755566],[-97.69462477217849,20.335162414344666],[-97.69008892824985,20.333609315250044],[-97.68973345062244,20.337027950398863],[-97.69020508906692,20.336905356535283],[-97.6884857286853,20.337206326651994],[-97.68640023347422,20.340858143703088],[-97.6836531661611,20.345204383267912],[-97.68105055183855,20.34490125725563],[-97.67934493797856,20.349917877061444],[-97.6744012848626,20.34723648801213],[-97.67689866948064,20.33919122548184],[-97.67525663735137,20.337980893986924],[-97.67472601472718,20.33782085280143],[-97.67312511946221,20.336607287892605],[-97.67470799653722,20.33494781347889],[-97.67988137364677,20.32811361182081],[-97.68419706664497,20.325659128641405],[-97.68316764212511,20.323285237176492],[-97.68407491715612,20.321500880174085],[-97.68950821246483,20.321257987203637],[-97.68946381709532,20.31915722829939],[-97.68714753022266,20.319033375093284],[-97.68588126647103,20.319315098785864],[-97.68540528690835,20.31913943188954],[-97.68402304325662,20.318016590892285],[-97.68363887513925,20.316569852288012],[-97.6835771322302,20.316285693500447],[-97.68363980200468,20.31601941503061],[-97.68354082299743,20.31560686821456],[-97.6834167602625,20.31483582553858],[-97.68322834131618,20.313816075199156],[-97.68237400688969,20.313384188733153],[-97.6819231319954,20.313028207798823],[-97.68171373719372,20.312989944789365],[-97.68107425399285,20.312639392763913],[-97.67958157866178,20.3131311614718],[-97.67868858745828,20.31345528308492],[-97.67858280229626,20.313673258501296],[-97.67835738250346,20.313874969666756],[-97.67765039389786,20.313260411054387],[-97.67730816753976,20.312978699483722],[-97.67732689919063,20.312169683206264],[-97.67759169724684,20.31115396551462],[-97.6773781684131,20.310252744402874],[-97.67697047478157,20.310103463725056],[-97.67638455187927,20.308933284509692],[-97.67631120905742,20.308371609500227],[-97.67638631827577,20.30783736399053],[-97.6768100186876,20.30778874061906],[-97.67707069072821,20.307358045762214],[-97.6768056416712,20.307003168496863],[-97.67687069098992,20.306557981444882],[-97.67676822430445,20.30609554651113],[-97.67703845019349,20.305835958684327],[-97.67727299661226,20.30581458589387],[-97.67801041829898,20.305740903477613],[-97.67906174518424,20.304858652707594],[-97.67979991030228,20.30499884771092],[-97.68022912207397,20.30368972218082],[-97.68097059093691,20.303213745014887],[-97.68139761453688,20.30243241366236],[-97.68237879095318,20.30219054524855],[-97.68262053826794,20.302329745169118],[-97.68312225806369,20.302549241689633],[-97.68367324361759,20.302518776024954],[-97.68446407406532,20.302553763136643],[-97.68811784780735,20.303512992922037],[-97.68867802724122,20.303153561259478],[-97.69052586458196,20.30256133899553],[-97.69125711007268,20.302243581965058],[-97.69164813468706,20.301038578106045],[-97.69504443930151,20.300436836865913],[-97.69967753396026,20.301300161062386],[-97.7030043999664,20.30294014721835],[-97.70511921205821,20.302744216574354],[-97.7070353717819,20.299186913761503],[-97.70685891061254,20.290685675957832],[-97.70588873219253,20.288107120885115],[-97.70840563927226,20.28529323382719],[-97.71297471660921,20.285927191041196],[-97.71544250209007,20.283965830708894],[-97.72234135581925,20.284142886240716],[-97.73078490454867,20.281122367951014],[-97.73584125153121,20.277900385638986],[-97.7373211536883,20.27613744684544],[-97.74089498811873,20.27457272766526],[-97.74539318591314,20.2748864759493],[-97.74822827361004,20.27690482200336],[-97.74875278292467,20.278798736555984],[-97.7536581408059,20.280290109428847],[-97.75720299035083,20.27923460552836],[-97.75704692651402,20.278307503656322],[-97.7543060322526,20.269691947655588],[-97.75124118092123,20.260120838982857],[-97.75028980404022,20.261281024289815],[-97.74992727518838,20.26200842129998],[-97.74920298163073,20.2625352643488],[-97.74766350399653,20.26340710960153],[-97.7477235951103,20.2627878964484],[-97.74730583299379,20.262114751507568],[-97.74728395726419,20.260455334041524],[-97.74752390104754,20.259467112404025],[-97.74708089229136,20.25924399468613],[-97.74602889261706,20.25898621660673],[-97.74539617549772,20.25889872378025],[-97.7448350261352,20.258662414138144],[-97.74449021693044,20.25778053790515],[-97.74438838569216,20.257315214381435],[-97.74421350854385,20.25718122306239],[-97.74375846773643,20.25687929247573],[-97.74322821303122,20.256199374055484],[-97.742323086981,20.25498162156606],[-97.74181607586809,20.254579759478645],[-97.7415373894575,20.254229316102283],[-97.74103603872345,20.253729014889416],[-97.7394810325668,20.25333857359908],[-97.73899983961883,20.253206462388732],[-97.73906450142772,20.25254493269125],[-97.73889280073973,20.251996159708597],[-97.73871856389621,20.25168136082226],[-97.73867414090887,20.251470970329535],[-97.73863746967305,20.251089409737688],[-97.73843561267933,20.2505068907102],[-97.73857810002045,20.249333904566583],[-97.73870896542564,20.248915818647845],[-97.73870759438478,20.24868132416566],[-97.73869175622917,20.248565076728937],[-97.73802818675222,20.248223183508003],[-97.73760261780023,20.24785141689955],[-97.73789384767412,20.247471040177288],[-97.73822879069473,20.247390484162622],[-97.7385467978707,20.247226848174137],[-97.73858439578214,20.246928456408227],[-97.73841100885824,20.246611950660963],[-97.73729242572517,20.246328225427078],[-97.73682598680631,20.245950668566593],[-97.73652173296676,20.245515466842903],[-97.73650686791945,20.24430157724197],[-97.73651236869296,20.24407508475514],[-97.73627559496373,20.24398967389169],[-97.73612623339625,20.243911960559217],[-97.73549446212849,20.243394645992396],[-97.73528648599273,20.242714863470212],[-97.73511192162567,20.24239194184014],[-97.73529078883274,20.241764871460532],[-97.73545970255435,20.241563758607754],[-97.73570767336952,20.241157411104382],[-97.73565832952647,20.24070794460164],[-97.73553469190091,20.24049905094421],[-97.7354851452273,20.240392542941265],[-97.73532343213088,20.240110399869707],[-97.73547193741967,20.23930983455506],[-97.73548819475059,20.239190722221906],[-97.73540987673675,20.23899571698928],[-97.73528847567752,20.23877913730996],[-97.7352053595547,20.238181205481624],[-97.73513807864845,20.237799092408693],[-97.73502930008408,20.236022898071838],[-97.73464939075137,20.235145604328068],[-97.73458076908514,20.23492940482231],[-97.73460279283609,20.23438200363961],[-97.73478153080003,20.234034848899114],[-97.73513550212073,20.23377192296209],[-97.73555836314853,20.233692004293232],[-97.73621272080476,20.23326531656045],[-97.73656844318361,20.232786686876636],[-97.73694338235265,20.23192318520381],[-97.73742666916411,20.230493612299483],[-97.73709916667917,20.230174587854265],[-97.73699422575424,20.23000888561529],[-97.73731864425758,20.22877974926257],[-97.73624641803252,20.227097918574202],[-97.73550614420373,20.227275107778837],[-97.73430717118669,20.227614910532054],[-97.73351479180201,20.227708749431713],[-97.73321614695686,20.227656821594394],[-97.73290247750015,20.22728951755778],[-97.73334676651638,20.226240274370866],[-97.73342492292937,20.22527846486969],[-97.73448046250104,20.223095860012506],[-97.7343265896418,20.22254719015342],[-97.73396082699884,20.22209655499705],[-97.73370113385221,20.221580314718096],[-97.7328576546231,20.21937358599814],[-97.7336568521082,20.21625994367514],[-97.73348933551506,20.21495381866646],[-97.73314385551168,20.214171472739054],[-97.73294434473155,20.212743072444482],[-97.7323660575824,20.21247341343377],[-97.73147790020812,20.211371896414676],[-97.7311999816514,20.210938479080824],[-97.73066944929747,20.209077710943575],[-97.73066320302496,20.20677429336439],[-97.73077905399538,20.20477731226856],[-97.73255744076363,20.20361496555404],[-97.73306218202958,20.202819476033028],[-97.73391284585375,20.2023790356061],[-97.73670390826499,20.202305109937697],[-97.73820961935496,20.20216014068137],[-97.73889505441917,20.200548356121146],[-97.73886519271576,20.197790033051433],[-97.74040962044222,20.19472210868804],[-97.74114284017406,20.193387641748245],[-97.74145962741937,20.192220964415696],[-97.74127005499275,20.191917056045952],[-97.74114317493462,20.19178679579005],[-97.74065243180087,20.19128493444788],[-97.74032238823645,20.191133367463976],[-97.7397136480559,20.191119021046802],[-97.73923195911135,20.190724451190192],[-97.73946132768958,20.190037037500304],[-97.73957203876057,20.189711670800648],[-97.73925651418966,20.189249021516787],[-97.73827899637837,20.18950170801594],[-97.73762746803851,20.189765048079266],[-97.73680975186528,20.189867077252984],[-97.73621720582423,20.18991444806892],[-97.73591381378588,20.18943441120672],[-97.7357228934809,20.189166618168315],[-97.73553178765951,20.188588610086015],[-97.73548512213517,20.188421425274953],[-97.73517401886602,20.187885400322727],[-97.7345626045294,20.187020984422077],[-97.73339097297321,20.185569113751626],[-97.73335318421539,20.183660266222546],[-97.73241555633507,20.182292546758788],[-97.73065788643538,20.18181520750585],[-97.73025532392063,20.18230587659258],[-97.7290518248966,20.183260844078802],[-97.72865687763203,20.182811417120945],[-97.72871089150772,20.182294718760375],[-97.72793848497736,20.182312638941482],[-97.72731326327624,20.18261366241819],[-97.72546551002455,20.183140866013844],[-97.72496634452864,20.18325476681497],[-97.72491384723565,20.183583438490245],[-97.72486287906696,20.183724093730632],[-97.7246078576203,20.184450865440795],[-97.724946654142,20.185675517691152],[-97.72553820929494,20.186455430113995],[-97.72575915426677,20.186856591923913],[-97.72573138301675,20.18720894846126],[-97.72522528399202,20.18776883558172],[-97.72506651909953,20.18859616091055],[-97.72502557498109,20.188851839664437],[-97.72487298923528,20.189009730741873],[-97.72456185071002,20.18897056142589],[-97.72351956519464,20.187619191991416],[-97.72118120562101,20.188830122324873],[-97.7202269202279,20.188566396672],[-97.72007628664124,20.187851839594146],[-97.71987075792373,20.187531702379772],[-97.71927521961004,20.187525031721634],[-97.7171177753865,20.18807915142554],[-97.71702849169486,20.18795681715926],[-97.71646221365353,20.1878066563649],[-97.71464962868669,20.18781198800525],[-97.71396146802505,20.187122969941868],[-97.71405228495797,20.18614820518087],[-97.71387660546054,20.185822300861503],[-97.71383122838739,20.185230869856866],[-97.71402973869533,20.18483923304092],[-97.71322325601932,20.184441967460486],[-97.71289106870415,20.184618269260852],[-97.712472367479,20.184582002430602],[-97.71210442243142,20.184459773633932],[-97.7116682120423,20.183943850748335],[-97.71091979954122,20.18294327171344],[-97.71018862301071,20.18292999720876],[-97.70944973401254,20.18261475101764],[-97.7084824196744,20.182732179837387],[-97.70785169435925,20.18242320378124],[-97.70782296934743,20.182142763979527],[-97.70756191802269,20.18158099680261],[-97.70731796038007,20.181561955956568],[-97.70694885163937,20.182113581319527],[-97.70511261228847,20.182318765584114],[-97.70474322674181,20.18236675682141],[-97.70316746877614,20.182156564476998],[-97.69992355170245,20.182445538091315],[-97.69852929108055,20.182127581136285],[-97.6983805311171,20.181877033387195],[-97.69795046425997,20.181081406321255],[-97.697295596863,20.179950683719824],[-97.69701367321807,20.178914133793228],[-97.69700324326578,20.1779471556477],[-97.69696340661517,20.17773366286707],[-97.69683682421214,20.177549877318143],[-97.69657231222726,20.177107372676005],[-97.69592876301442,20.17689583999021],[-97.6953237291898,20.17642448364711],[-97.69527976042366,20.175686229464873],[-97.6940986458543,20.17497547717352],[-97.69351646335485,20.174267646637134],[-97.69389388260055,20.17353726095331],[-97.69258059473572,20.172746863111513],[-97.69326913448919,20.170563199035996],[-97.69302459278168,20.169379527773685],[-97.69147944701797,20.168456606112784],[-97.6913418275571,20.167482167533933],[-97.69093012635136,20.16755424606356],[-97.69055960277649,20.167604080751914],[-97.68993315582975,20.1675813338656],[-97.68986892824506,20.167360472403345],[-97.68969082340271,20.16705558355244],[-97.68964120014141,20.166918536250762],[-97.68935085371663,20.166782583007944],[-97.68899341160346,20.16693594214189],[-97.68837491529456,20.167022186845372],[-97.68785890071354,20.166877201140323],[-97.6875123982835,20.16641234648796],[-97.68709367230775,20.165917961455477],[-97.68656697571464,20.165842945890518],[-97.6854404150863,20.166011054487058],[-97.68442029949466,20.165833118155263],[-97.68213534130933,20.166272518204437],[-97.68159904014851,20.165859751779806],[-97.6813439658518,20.165590737775688],[-97.68093593265553,20.165150599448623],[-97.6805756919403,20.16514790250409],[-97.67987891288044,20.165385509290616],[-97.67894785853508,20.16560470841489],[-97.67784455635444,20.165951099957],[-97.67697198633562,20.16663587807392],[-97.67626476692709,20.166954504107196],[-97.6744207087371,20.16750783138201],[-97.6741885074257,20.167578930484467],[-97.67354347976311,20.168007282565725],[-97.67314957092958,20.168122362581812],[-97.67245039593729,20.168323193373794],[-97.67194446616406,20.168414551949468],[-97.67168466037742,20.168434309367],[-97.6710058824583,20.168197653463608],[-97.67085263345689,20.16843396498757],[-97.67056294071023,20.168921376204707],[-97.67035031713777,20.169075757470353],[-97.66952874110473,20.16845423750277],[-97.66881422087727,20.167103265361675],[-97.66766428885194,20.167188502942622],[-97.66685471481179,20.168085456206825],[-97.66520490501898,20.168262954710883],[-97.66474390202552,20.168554464018257],[-97.66288354287622,20.168814911404354],[-97.66265704904879,20.16838575474003],[-97.66065833125066,20.168498143527586],[-97.66023272453788,20.16828001253606],[-97.65918096018981,20.168335216337596],[-97.65857338519214,20.16870426273391],[-97.65778331777551,20.16879303228825],[-97.65753365518407,20.168737818621025],[-97.65649567691878,20.168064364613258],[-97.6562736643001,20.167677307418103],[-97.656190988336,20.16748053096319],[-97.65608212770019,20.16691333791408],[-97.65603962495516,20.166603226114376],[-97.6557671898521,20.165537077181114],[-97.65531000984902,20.164824631431827],[-97.65472828276529,20.164153964966488],[-97.65354645539577,20.163436935387324],[-97.65244076536709,20.163566153376337],[-97.6515162136028,20.16444408492623],[-97.65149099108032,20.16495522525878],[-97.6512578745473,20.165405774190447],[-97.65029059581661,20.166153337817775],[-97.6499647634015,20.16639286130703],[-97.64985212089533,20.166496343959295],[-97.64941296070339,20.16666997898068],[-97.64910002091972,20.166706911333677],[-97.6485576610338,20.166761752532466],[-97.64808908362619,20.166891131669956],[-97.6476582768268,20.16697850233902],[-97.64644217918305,20.168002706187337],[-97.64561302487215,20.17023340221681],[-97.64634771933066,20.171330278147366],[-97.64522748726375,20.175515262275496],[-97.64517938515797,20.176410112491283],[-97.64484801565004,20.177378970090615],[-97.64364914021371,20.178338314759912],[-97.64322959184335,20.1783473329603],[-97.64277822623092,20.178021345628395],[-97.64198849730474,20.177321433570683],[-97.64165291038739,20.17710340376135],[-97.6407737791219,20.17682562791782],[-97.64017078162198,20.17665717463626],[-97.63978823215973,20.176539932443063],[-97.63921066752096,20.17649587164823],[-97.63815824348433,20.17766933307081],[-97.63815517552598,20.17802330890669],[-97.63827981405802,20.179466690202048],[-97.63881193095682,20.181884447465222],[-97.63879864073334,20.18242168949496],[-97.63825247436324,20.182909128153085],[-97.63775084767593,20.182905958504705],[-97.63609943443169,20.182374950125393],[-97.63526040814224,20.18256622188386],[-97.63487625232466,20.182613511188208],[-97.63280295158665,20.183227015690875],[-97.6312440146512,20.183025841295375],[-97.63009963694196,20.182568959337118],[-97.62914940704462,20.181809889821295],[-97.62895236081613,20.181274190777913],[-97.62888766176286,20.180893130639447],[-97.62887169128811,20.180195066094427],[-97.628897336011,20.179644599362007],[-97.62883687764372,20.179408129678677],[-97.6286119014145,20.178914711244943],[-97.62814129746624,20.177908050530846],[-97.62758801867733,20.17682208257031],[-97.62562965459523,20.175282287517973],[-97.62522998052981,20.1747583654643],[-97.6246722577576,20.174183683410718],[-97.62249031394015,20.174299001687416],[-97.62195655709922,20.174406023661618],[-97.62144034300434,20.173836119300802],[-97.62126263237894,20.17370128899438],[-97.62116120643964,20.17313122019567],[-97.62159787034648,20.17232591126782],[-97.62098467947061,20.17186554951701],[-97.61639134332069,20.16899717731235],[-97.60448911328285,20.16687361180044],[-97.60565637329904,20.15774868772013],[-97.60514190493922,20.157166205615113],[-97.60792527125255,20.151734088420085],[-97.60838190727827,20.15164048505875],[-97.60822756356748,20.150297717721116],[-97.60678442547328,20.14980343429852],[-97.60671496313182,20.148777625420337],[-97.60692250710485,20.14756904733099],[-97.60671472009227,20.14698969848496],[-97.6066424523849,20.146135123192096],[-97.60633489265797,20.144801455478955],[-97.60584706748972,20.142788172563655],[-97.60383921621923,20.140477281732217],[-97.60313384414798,20.14050061741426],[-97.60221000095885,20.140956248693783],[-97.60165352710021,20.141472663543368],[-97.60098060266279,20.14129370430163],[-97.60298366986945,20.138532329748955],[-97.60294422107233,20.137568045906335],[-97.60391947952792,20.13559006705043],[-97.60386396152512,20.134241421188563],[-97.6045501646214,20.13325407124296],[-97.60506124619724,20.131721967592398],[-97.60364744529198,20.12723113420691],[-97.60315561155096,20.123928667488315],[-97.60257679539694,20.123187582569187],[-97.60276400547184,20.121430678662023],[-97.60280434484821,20.121013577578253],[-97.60270217125338,20.11961366118777],[-97.60254734516934,20.118948189258845],[-97.6020644404145,20.11835000975151],[-97.60101714313817,20.117454940312484],[-97.60008810331385,20.11677176475439],[-97.5995665405805,20.116562963494573],[-97.59853071588543,20.116374873065297],[-97.59807126567216,20.115274590077377],[-97.59560342361738,20.114744371805443],[-97.59436171162486,20.115354512031388],[-97.59358842966543,20.115421297071123],[-97.5926671515399,20.114757464714387],[-97.59236559209393,20.113916212463266],[-97.59209811453695,20.11358583050128],[-97.59107019108598,20.11308263901742],[-97.59026700507093,20.11276313070215],[-97.58937398286719,20.11270311923363],[-97.58750407095141,20.112345288469896],[-97.58767707920953,20.11156676848009],[-97.58753189373004,20.110929640033874],[-97.58759051921055,20.110357655084158],[-97.58779755224037,20.109895663533734],[-97.58726972824962,20.109278926970774],[-97.58741393385333,20.108585956745742],[-97.58606770667012,20.10862243157544],[-97.58526577115202,20.108720574488643],[-97.58420178333643,20.10878633201321],[-97.58385531907646,20.108762604520734],[-97.58281915680499,20.10853998493343],[-97.58258177556093,20.109294664279105],[-97.58215987174174,20.10864936911139],[-97.58130373232052,20.107825498515297],[-97.58106915668793,20.10753762991061],[-97.58185723832884,20.106848276689163],[-97.58145825187216,20.10587782137162],[-97.58080649018967,20.10532551724657],[-97.58026996049227,20.104847072267432],[-97.57988892635285,20.104260462216416],[-97.57981496219236,20.10389515518682],[-97.57948019137257,20.10340299064177],[-97.57888022493955,20.103200523424732],[-97.57865135261176,20.10251987385692],[-97.57875189058973,20.101772934546887],[-97.57919993673886,20.101539928191187],[-97.5795691850634,20.10108907279158],[-97.58059404804294,20.10076643793036],[-97.580956276579,20.100616802622653],[-97.5810383497057,20.10013803158705],[-97.58070844205315,20.09967201653859],[-97.58030049794877,20.099445288094614],[-97.58010724176262,20.09919983149166],[-97.5801637400046,20.098453685060406],[-97.58024773368362,20.09812392503187],[-97.58031095734623,20.097823870551622],[-97.58014844310753,20.096943715485622],[-97.58029308248774,20.096691061743627],[-97.58082619061338,20.09672819263875],[-97.58144172610423,20.096473581666658],[-97.58180124293926,20.09616399711024],[-97.58216327668919,20.095786442115354],[-97.58315013503358,20.09585266815475],[-97.58393546442971,20.095173665532627],[-97.58575252407132,20.095482346351275],[-97.5857223342964,20.096360383730826],[-97.58585169450134,20.0966662766711],[-97.58615881072501,20.096793446802053],[-97.58764228202341,20.097595301504384],[-97.58835112786517,20.097616874177618],[-97.58913139255321,20.09726813369133],[-97.58981651425881,20.09613883940625],[-97.59014532037281,20.096021964363786],[-97.59074519153211,20.096086886404862],[-97.59112548063314,20.096271113670298],[-97.59156269319448,20.09660445381087],[-97.59212033706797,20.096629371682354],[-97.5929180483364,20.0971327088522],[-97.59341876498081,20.09720769341402],[-97.59436900703844,20.097463994030306],[-97.59459565373498,20.09735906415324],[-97.59487203293645,20.097290272147916],[-97.59530388527088,20.097040716473316],[-97.5954484443983,20.096986728549325],[-97.59562437281159,20.09657888225371],[-97.59547853261716,20.095854409577555],[-97.59552207663648,20.094996785301987],[-97.59595081137184,20.094387998141713],[-97.59607188657753,20.09354308092395],[-97.59574567214588,20.09209081066183],[-97.594960467144,20.090843301734196],[-97.59386574630878,20.08993921221986],[-97.59357797997166,20.08953403530205],[-97.59348732305085,20.08874479722965],[-97.59334537607225,20.085313655719915],[-97.59195735467495,20.083551349522395],[-97.59195028871142,20.082983678245625],[-97.59181150092525,20.082580421826435],[-97.59136750627744,20.08209412355245],[-97.59123593032717,20.081713168932424],[-97.5900469797125,20.081599231679036],[-97.58961090002839,20.081760625321124],[-97.58931221067593,20.081819216726444],[-97.58842528441869,20.082000327234027],[-97.58771226411068,20.081591616188575],[-97.58756399212956,20.081353779141978],[-97.58751555378961,20.081164069111367],[-97.58747094454498,20.080548407567903],[-97.58715322240067,20.080322194232394],[-97.58602801477679,20.079329923601733],[-97.5850656559781,20.079546655453214],[-97.58359354264445,20.079323332352942],[-97.58140430975595,20.07894671116469],[-97.58077824905507,20.078941886893404],[-97.57910443226518,20.079373984129745],[-97.57892994559074,20.079433672333153],[-97.57851446195696,20.07974912835016],[-97.5780494418945,20.081559073451672],[-97.57799354315705,20.08219759022677],[-97.57753258549388,20.084202447953203],[-97.57686869003686,20.084626065066345],[-97.57604132414764,20.08464305851919],[-97.57474585113846,20.08375698972094],[-97.57347674552813,20.082729131762733],[-97.57285134178096,20.082258324893132],[-97.57220222323366,20.081969090770258],[-97.57085386377395,20.08191696032668],[-97.56988526151616,20.082128079553115],[-97.56758674500207,20.083442177566837],[-97.56691485253594,20.08385561125357],[-97.56621452070175,20.08432471102435],[-97.56580213556629,20.084734503904656],[-97.56515047978132,20.085151972746587],[-97.56175097205931,20.08557596935418],[-97.56129569585175,20.08602190221137],[-97.56103359777546,20.087569591147314],[-97.56245837406095,20.088843833438034],[-97.56344653809464,20.089977787021496],[-97.56289081392663,20.090932681869333],[-97.5623187495242,20.091910212404457],[-97.56216468930586,20.092311263069803],[-97.56186948311432,20.093434827130295],[-97.56174091727564,20.0941892333783],[-97.56147675347273,20.09664033587069],[-97.56105735045998,20.097482766041992],[-97.56044177081856,20.09794129259984],[-97.56003535607528,20.098227717379245],[-97.55868251467462,20.09981990368931],[-97.55865094659197,20.10052959934336],[-97.55889504717271,20.100842956773135],[-97.5591763274428,20.101803110810863],[-97.5594363143158,20.102552717749518],[-97.55950055141085,20.105023641530124],[-97.55882667524014,20.106209428815532],[-97.55805129289979,20.106910885630327],[-97.55608758348006,20.106807157972924],[-97.55558549724162,20.10637660495854],[-97.5544753473759,20.104618665122132],[-97.55403342482856,20.10286873442118],[-97.55366731162178,20.101810293395147],[-97.55326672431221,20.10130293140628],[-97.55251926831352,20.100695415100233],[-97.54954947192061,20.1007672683848],[-97.54856146198853,20.101048079520922],[-97.54655247726481,20.102233267795214],[-97.54445904750281,20.103890126119495],[-97.54265127882957,20.106848612942883],[-97.54215677733498,20.107823999190714],[-97.54190084680187,20.10844424180317],[-97.54163933502258,20.109721095504028],[-97.5411725778971,20.11138377544762],[-97.54109405029828,20.112495480902396],[-97.54098907488816,20.113597368351066],[-97.5408000272696,20.1138866949575],[-97.5401866948938,20.114613752256105],[-97.53996155333596,20.11495407029298],[-97.53959256410559,20.11600924325245],[-97.5391945450873,20.116230815713664],[-97.53553889701868,20.11679088498761],[-97.53324139077148,20.11621721562159],[-97.53244763326978,20.116009102853866],[-97.53120171542378,20.115591525634102],[-97.52954726051325,20.11487639904186],[-97.52899048090916,20.114733985735995],[-97.52848210893688,20.114788534020988],[-97.52739416627901,20.114878946160786],[-97.52636995700647,20.116414702362476],[-97.52589518731651,20.117828836651597],[-97.52542994538265,20.11867434341559],[-97.52469075287712,20.119874743193748],[-97.52182867321113,20.121966430110604],[-97.52028604962459,20.122586583230373],[-97.51979451995072,20.122884010989253],[-97.51904645407137,20.12340940955852],[-97.51884580585846,20.123674453710635],[-97.51862014796325,20.123883941071597],[-97.51815086487488,20.124104344787156],[-97.51654847426846,20.124274964066046],[-97.51582769550441,20.124403087462042],[-97.51279102192149,20.124914447048013],[-97.51209994389609,20.124967990197092],[-97.51033918693776,20.126872622743008],[-97.5102105878288,20.128238612371263],[-97.50982117364885,20.12916925637421],[-97.5095518764025,20.12991167386525],[-97.50703532093405,20.13086192101821],[-97.50223514393724,20.13215820303202],[-97.50086266825082,20.13244386536917],[-97.49821528648641,20.13426997375086],[-97.49660567256251,20.136059994866002],[-97.49534085602522,20.136881560118468],[-97.49483845588043,20.13734828181157],[-97.49472122029886,20.13784673840314],[-97.49679890909312,20.139738982511176],[-97.49737306855468,20.13986023379772],[-97.49770167219492,20.139875963662234],[-97.49839633774974,20.140152207878202],[-97.49904729207537,20.140864677217905],[-97.49940093878234,20.14155951623212],[-97.49969856061972,20.142048997609663],[-97.49975919021529,20.143026395407787],[-97.49916737184009,20.14331868642654],[-97.49875657702381,20.143302258366703],[-97.49769766481825,20.14334907309751],[-97.49657205415713,20.143777743777946],[-97.49574557273968,20.14375453502589],[-97.49489176706936,20.143970329698675],[-97.49455768750948,20.144347956573142],[-97.49455181957518,20.144959522849888],[-97.49478815500134,20.146193457390552],[-97.49580242982637,20.147063554651993],[-97.4966750004159,20.147497617870954],[-97.4982600982886,20.147911900517556],[-97.49945024604602,20.148208541908105],[-97.49967476207394,20.148178931129394],[-97.50005638039931,20.14824993337436],[-97.50200513140368,20.148473310575753],[-97.50349089436617,20.148634142554954],[-97.50456284304448,20.149176069080454],[-97.50485228741553,20.150217364179696],[-97.5055456316104,20.152969089804117],[-97.50511209633152,20.154377380733308],[-97.50227802761015,20.157972351948217],[-97.50019430729276,20.158977842001434],[-97.4983589747597,20.16005021678967],[-97.49714550834756,20.160663414994247],[-97.4964982010992,20.161037619083288],[-97.4945752067137,20.162341125930652],[-97.49321878490525,20.16302259852864],[-97.4915789012523,20.164016897139902],[-97.48882467127709,20.16456982264691],[-97.48760725387791,20.16488328100661],[-97.48728465252475,20.165742249698155],[-97.48713340388048,20.16633568900511],[-97.48692218225875,20.16693796841315],[-97.48673914216226,20.167530535663843],[-97.48617787531174,20.168697213667485],[-97.48650476615495,20.169290266485916],[-97.48644526468365,20.171014614277055],[-97.48548152180916,20.173318705115662],[-97.47959115970673,20.176734584618487],[-97.47759962378433,20.17752529935609],[-97.47538922883217,20.177693624665324],[-97.47041299718205,20.17798692049473],[-97.4674364586532,20.178583299688796],[-97.46505939911572,20.18021840730802],[-97.46283981992548,20.183886064587398],[-97.46272300133512,20.186018062110293],[-97.4634322878095,20.1891458636822],[-97.46322457171766,20.19081850017193],[-97.46233893871192,20.19324182786619],[-97.4624957710123,20.194103468136063],[-97.46241405735958,20.19491366830721],[-97.46269647719134,20.1959583020556],[-97.46274452269307,20.196196571686983],[-97.46272400098604,20.197692816374285],[-97.463791047467,20.201631529142276],[-97.46443184318304,20.20466978110801],[-97.46458399401871,20.205556201311026],[-97.46465274846122,20.206745364311814],[-97.46325665232223,20.209691906112596],[-97.46341342555905,20.212922550563576],[-97.4644568832498,20.21586514222389],[-97.46479346652279,20.217081928938796],[-97.46498542247923,20.2211588800169],[-97.46494151407626,20.22123605017356],[-97.46361477187742,20.226131390038574],[-97.46183822534442,20.228335309539546],[-97.45956275863631,20.2331034424966],[-97.45607348435459,20.235752589654453],[-97.45188491369646,20.238282330171955],[-97.44978164365477,20.240637217428002],[-97.44724034750652,20.242759445792217],[-97.44497339332969,20.246014248502945],[-97.44200946209963,20.244173939387395],[-97.43810074228412,20.241246125787654],[-97.43747769060514,20.240893421095166],[-97.43174212277967,20.2409228482947],[-97.43094517168572,20.24260868875922],[-97.43063534860022,20.243155468504995],[-97.42977988975957,20.243635120335227],[-97.42506247875048,20.24400369001438],[-97.42080589383295,20.242423111126698],[-97.41498563319914,20.23782654121817],[-97.41273977980131,20.237199324045548],[-97.41090224433361,20.235968873174954],[-97.410272968772,20.234572336432336],[-97.409637101111,20.232712293880354],[-97.4072830720832,20.23218518643165],[-97.40284666822737,20.23603919021565],[-97.40026768390038,20.23915137698333],[-97.39699468443115,20.24184705255624],[-97.39306051861001,20.244287379387345],[-97.3925677831154,20.24479775331804],[-97.39034812216931,20.246145451765244],[-97.38788452973154,20.247071285214986],[-97.38681111074692,20.247544322148713],[-97.38520183987862,20.248243736246366],[-97.3809695272015,20.2498697130211],[-97.38060506866685,20.24988161336222],[-97.38028881333855,20.249830074081842],[-97.3771493535649,20.248816247515492],[-97.37719255493863,20.24776041581663],[-97.37753417107427,20.24698259979988],[-97.3770868573414,20.245612027052687],[-97.37421132788586,20.24300633952629],[-97.3746173538874,20.242085104584305],[-97.37533027870268,20.24149921844804],[-97.37638021451608,20.237440580384543],[-97.3741667504799,20.235514963363016],[-97.37488377726345,20.232421052754376],[-97.37673163984107,20.231345929061376],[-97.37813812158299,20.226150211479535],[-97.3777957245918,20.22308854763918],[-97.37750202601603,20.222743992917003],[-97.37474334707065,20.224010761821546],[-97.37323521887907,20.223260366912655],[-97.37286623269694,20.22187343776301],[-97.37165271278712,20.219115507187553],[-97.37141702675768,20.21911952424017],[-97.37114152762297,20.218991352513626],[-97.37031323063013,20.219284355479147],[-97.37006817614258,20.21943449509689],[-97.36886098283895,20.21961399822868],[-97.36849852079308,20.2196119531377],[-97.36813151805251,20.21931185455827],[-97.36790682753372,20.21899557945119],[-97.36770909256813,20.218687774569503],[-97.36754364525433,20.217752753316574],[-97.36678731196605,20.217317296195517],[-97.36595868090194,20.216441880650336],[-97.36583220348223,20.21628298588132],[-97.3655123926705,20.215751202561705],[-97.36484411576612,20.216087155640423],[-97.36443317425125,20.21621170493006],[-97.36339147589666,20.215939827607826],[-97.36086867786724,20.215128586166315],[-97.35153875316018,20.212142316409142],[-97.34957934231232,20.211497625001527],[-97.34499853180125,20.210017356103094],[-97.34493107745806,20.20999898542709],[-97.33922674223413,20.208143684183085],[-97.33802233404106,20.207779637793465],[-97.33720197593578,20.207524325741076],[-97.33220988041109,20.2059373267532],[-97.32463648248222,20.203533104567782],[-97.31558999958696,20.200596061218107],[-97.31544119405527,20.200556182121602],[-97.31277711398565,20.19966364776144],[-97.31177541492656,20.199342478763185],[-97.3093338183391,20.198577255689088],[-97.30443588345634,20.197013282114995],[-97.30421765895841,20.196975617440955],[-97.29824297396544,20.19499896295872],[-97.2971005899177,20.194629915550422],[-97.29333785989263,20.193399334697915],[-97.28775163093087,20.19161110766322],[-97.28528174193548,20.19073070882905],[-97.2854104028579,20.190101023970442],[-97.28499209840487,20.18930571962062],[-97.28471859670901,20.189244482565357],[-97.28440703371922,20.18891272426208],[-97.28362286736558,20.187612865314122],[-97.2838359769068,20.187029772446806],[-97.28291156019321,20.185438616515853],[-97.2829837891523,20.185135897495],[-97.28326441867574,20.184515993748903],[-97.2833746971009,20.182336374731165],[-97.28233728920173,20.18108832377311],[-97.27987703710522,20.181317893036294],[-97.27916399284959,20.182863059166777],[-97.27900162621006,20.183071357559356],[-97.27843671427718,20.18322017939903],[-97.27768916974344,20.183600104067636],[-97.27705878840163,20.183921172336284],[-97.27686668509426,20.18389388773096],[-97.27620812578522,20.18294597368805],[-97.27537641950482,20.183412462891454],[-97.27452352462478,20.18377177746936],[-97.27417459820299,20.18450264006964],[-97.27382411333463,20.184812692041817],[-97.27264150358184,20.185489601851998],[-97.27231324256792,20.18591064629004],[-97.27208115548115,20.18612146962039],[-97.27054391864579,20.187518977099046],[-97.26954226393843,20.185853113945825],[-97.2696234785717,20.185162857305897],[-97.26777469687158,20.184946237097563],[-97.26791305340123,20.182239654344414],[-97.26512151416995,20.18060422428107],[-97.26383051840753,20.179214687103126],[-97.26215944111925,20.1780133747705],[-97.25989764913965,20.178114533478038],[-97.25949417289337,20.178277619580513],[-97.2596133844396,20.17890235642676],[-97.25962109138635,20.18054737889969],[-97.25919900502998,20.18048186306106],[-97.25789715433268,20.180132775564573],[-97.25606913738056,20.17969492101298],[-97.25566344134603,20.17937188757213],[-97.2555268824986,20.178850035195012],[-97.25491979328768,20.177433631657607],[-97.25458322172108,20.177295972434706],[-97.25340666714402,20.177485790535684],[-97.2518044493296,20.178329547942383],[-97.24969247265426,20.178391514672626],[-97.24950717923605,20.17905773505032],[-97.249194893852,20.179385957671002],[-97.24895740515291,20.17913741747526],[-97.24655438950867,20.181217071859635],[-97.24613790070043,20.181212222669046],[-97.24550820584551,20.180947340688874],[-97.24393477321456,20.182243955801766],[-97.24395407619704,20.182109825766872],[-97.24393087308783,20.18100143939256],[-97.24377242239609,20.180848749151835],[-97.24393575292413,20.180564939600288],[-97.24393360094916,20.1801818021047],[-97.2436428529927,20.179888732488678],[-97.24314483353459,20.179847937684542],[-97.24370797276697,20.17854503954902],[-97.24250320834233,20.178044632966532],[-97.24332478851437,20.17510708902938],[-97.23534307512966,20.17276308073184],[-97.23195792568004,20.17195238602244],[-97.22860554816702,20.171999778620034],[-97.22850904543134,20.17261705917042],[-97.22663513574952,20.172023797976863],[-97.22274668146571,20.170832842843367],[-97.22130337183086,20.170408037698564],[-97.2185984354877,20.169479656100634],[-97.21387141244475,20.167941071236157],[-97.20902995313281,20.16632467520577],[-97.2039758741152,20.16468644686489],[-97.20255462659003,20.164249666471335],[-97.19702908198201,20.16244509393124],[-97.18932773606974,20.159897406563687],[-97.183416524557,20.158045289179256],[-97.18223779645916,20.157748677955112],[-97.18037043749666,20.156811562618714],[-97.17942322667943,20.15675815961862],[-97.17907150200097,20.156620072804117],[-97.17297258373873,20.154594109701577],[-97.16441342980335,20.151831547746042],[-97.16426617557016,20.152310936285915],[-97.16393098080977,20.152909705712318],[-97.1634146727597,20.153403345454365],[-97.16285344642529,20.154619218873563],[-97.16229007115805,20.15565385824084],[-97.16180377713096,20.156021775148588],[-97.16125827308122,20.156215584148185],[-97.1619105967253,20.156525614852455],[-97.16091042478723,20.160232052608592],[-97.16100843586855,20.16071703923069],[-97.16082205345316,20.160807808556797],[-97.15882061653838,20.160624914674315],[-97.15713452644513,20.160548995591228],[-97.15684673578806,20.160255092315992],[-97.15305593278163,20.160167772753937],[-97.15277783993162,20.159993575824842],[-97.15007987467135,20.16062659900399],[-97.15016397405697,20.160282755627122],[-97.15005432190827,20.16027606597345],[-97.15043710321288,20.15928145063424],[-97.15014509391989,20.15906682087757],[-97.15032520616586,20.158723734768728],[-97.15053084546321,20.1586357885206],[-97.15105672590175,20.15867671185498],[-97.15093093947098,20.15815727247889],[-97.15105020162099,20.15801285284192],[-97.15139779367257,20.15798841150354],[-97.15165025615403,20.15739894950201],[-97.151680397691,20.157154698019838],[-97.15183330226063,20.156911734126027],[-97.15160085056522,20.15691066652687],[-97.15145441866252,20.1562788865686],[-97.1519741200949,20.15605328614845],[-97.15245994153832,20.155822248958714],[-97.1524766947677,20.155554043178142],[-97.15229750176934,20.15548084832068],[-97.15178617188627,20.15529018373644],[-97.15258363091573,20.15499574164886],[-97.15308071807652,20.15428974837738],[-97.15355969320836,20.15410362199532],[-97.15341527283408,20.15283598188779],[-97.15303742752519,20.152415528120343],[-97.15387107390495,20.151992587706275],[-97.15396172800297,20.15138126065807],[-97.15464814581122,20.15147739267013],[-97.15507374406849,20.151116486049773],[-97.15565004187425,20.151187561227175],[-97.15628309908533,20.150821293875595],[-97.15698177358263,20.15031324311576],[-97.15725432992855,20.15000998179852],[-97.157529237473,20.149575445763446],[-97.15644615825693,20.149213397987012],[-97.15657936816012,20.148033201459498],[-97.15669412935318,20.146861821535367],[-97.15659406049662,20.146861255320403],[-97.15200842665996,20.146148552809734],[-97.15216720546374,20.144361494198222],[-97.15235169573685,20.142595598426226],[-97.15271314932073,20.139015508923478],[-97.15139350343429,20.137618685942982],[-97.14891517270581,20.137236956364745],[-97.14864487625022,20.13707052385945],[-97.14573125247205,20.136251045938934],[-97.1437832729336,20.136379162936123],[-97.14019094528834,20.139249722061606],[-97.13953089059925,20.139957841674004],[-97.1337904699389,20.139697123658834],[-97.13302207628186,20.139769704042294],[-97.13197718663076,20.139601559077505],[-97.13133681598475,20.139709665643352],[-97.12978883059571,20.139458928078568],[-97.12941678043074,20.13917465756282],[-97.12887105089868,20.138884599152846],[-97.12571661744067,20.13736521641283],[-97.12387744583128,20.137309467523266],[-97.12289630838399,20.13619867839077],[-97.12340547188052,20.13521431938932],[-97.12565657508685,20.13325928832785],[-97.12609418246768,20.132732051342032],[-97.12722067356407,20.132686569812222],[-97.12829211355626,20.132152227752385],[-97.12879122759597,20.131123532496304],[-97.12874998377669,20.130481603218357],[-97.12928864097302,20.130238425139282],[-97.13159075333806,20.12856823018376],[-97.13308967816283,20.127214138242266],[-97.13319311739042,20.12684139376381],[-97.13315032872998,20.125439034851752],[-97.13345243471156,20.125012307658437],[-97.13347533884212,20.124750859956578],[-97.13414661521023,20.12368762716909],[-97.13579724174065,20.12323764467851],[-97.13644590918676,20.123157057311346],[-97.14038516307227,20.122364204300368],[-97.14192362866913,20.11891632260165],[-97.14199316475401,20.118456235589747],[-97.14252422385516,20.11805270783026],[-97.14270837502147,20.11808333726475],[-97.14349972414976,20.11817742683803],[-97.14363143313784,20.118320463066595],[-97.14381482422067,20.118322391900733],[-97.14429924724107,20.11824879245404],[-97.14535569711484,20.117740505015206],[-97.14600944401712,20.117448325410805],[-97.1456250701421,20.11720575380957],[-97.14580047990614,20.116785077142197],[-97.1455768537578,20.116593544422926],[-97.14704700982475,20.116737626538054],[-97.14922220267795,20.115003253382554],[-97.15053192472556,20.11428496217951],[-97.15056841326805,20.114017777958452],[-97.15207017580781,20.113324444248008],[-97.15562418279359,20.111231137832704],[-97.15571576499212,20.11058615196299],[-97.15742979380502,20.109788119597113],[-97.15782816229097,20.10959962956963],[-97.15776182954795,20.109111646581766],[-97.15769339065287,20.10880496139623],[-97.15795127996739,20.10830902742839],[-97.15821654730019,20.108209804263936],[-97.15890209995075,20.107072391834436],[-97.16074604564449,20.105007766299366],[-97.1619264651332,20.10363751046225],[-97.16176385793403,20.10258966615686],[-97.16258621740815,20.102180597595463],[-97.16326448728427,20.101101651897352],[-97.1646224323269,20.100313004661302],[-97.16502022961231,20.100169818572],[-97.16667393375224,20.098684594029862],[-97.16667971549577,20.098187064457647],[-97.16750640405144,20.096972406588634],[-97.16760218633061,20.09628921815215],[-97.16782900002028,20.095669588104954],[-97.16973139648803,20.094486799395497],[-97.17175927385256,20.0938443482529],[-97.17189653907741,20.09336891310545],[-97.17376002437044,20.09231653800498],[-97.17418227088586,20.091885510145175],[-97.17495196016654,20.08815649162989],[-97.17550487909665,20.087599406985873],[-97.17722395220807,20.086362179061098],[-97.1787361534681,20.086602244099367],[-97.18071419034311,20.08390114935912],[-97.18227854991096,20.081911227809655],[-97.18323724745471,20.080503404262856],[-97.18266072624829,20.07900149665511],[-97.18163350014942,20.078215098597695],[-97.18049011053239,20.07823988477668],[-97.17811643215657,20.078961896004557],[-97.17790973672561,20.078203371669645],[-97.17694870579965,20.077962082612316],[-97.1769508452187,20.077582974217478],[-97.17708005555784,20.077199764530008],[-97.17637102485673,20.07705268617167],[-97.17596405249878,20.0771048142783],[-97.17556511043472,20.076895994015842],[-97.1757501723032,20.07637661898525],[-97.17676102425071,20.0754149301884],[-97.17733089297224,20.075167214390262],[-97.17715954234131,20.074263964730335],[-97.17764540832707,20.074003475950974],[-97.17836237223332,20.073920214374482],[-97.17901327748172,20.074198342894874],[-97.17952330876062,20.07396408622037],[-97.17977872367976,20.073811744132797],[-97.18006658058448,20.073434309955417],[-97.18045676252052,20.073241085264556],[-97.18085877234051,20.073315662566586],[-97.18100830124416,20.073289021797336],[-97.18153485945311,20.07291404673373],[-97.18203700307811,20.07275298883161],[-97.18212126137269,20.07255950566224],[-97.18220428650051,20.07223605674352],[-97.18203048014851,20.07157308234514],[-97.18175795424446,20.07123093681264],[-97.18119894444965,20.069690045282528],[-97.1809062648569,20.068852198341347],[-97.18090637146531,20.068486123376317],[-97.1815462980407,20.068031157617042],[-97.1818060775746,20.067498458929947],[-97.1821980249963,20.06715026899849],[-97.18241546243644,20.066870777147642],[-97.18298239806973,20.06710904380452],[-97.18370795411795,20.067671067886238],[-97.18432948318713,20.066496896147385],[-97.18361503043383,20.065406241258984],[-97.1837719810436,20.064767632083658],[-97.18411847991626,20.06468335971931],[-97.18422881458878,20.064616662238507],[-97.18492797060276,20.064333825190715],[-97.18488147471749,20.064150437587614],[-97.18489155105522,20.063781413835613],[-97.18509382455164,20.063341324696978],[-97.18657682828001,20.062618466417803],[-97.18685119892257,20.062569569478853],[-97.18665121011401,20.062102136223757],[-97.18702215166047,20.06162467672266],[-97.18743816046646,20.06125943650858],[-97.18784281036307,20.060968435267853],[-97.1880311143006,20.060677173197575],[-97.18816454951616,20.06053767593994],[-97.18832725913722,20.06039996556933],[-97.18867466499307,20.0602026169027],[-97.18894577403199,20.06018653183429],[-97.18944388280022,20.06016306144511],[-97.19009658571974,20.059724225996433],[-97.19015099743399,20.059325926701888],[-97.19018029122412,20.059158169318096],[-97.19079270410703,20.058050273232823],[-97.19176321008598,20.058411641958344],[-97.19256082193624,20.059106433254158],[-97.19353446777751,20.05926267172947],[-97.19426078696534,20.058717089941013],[-97.19459320963915,20.05791215469327],[-97.19458104847695,20.057676955549425],[-97.19474236377579,20.057011159445096],[-97.1941485430034,20.05532279080819],[-97.19479053892746,20.05473014339651],[-97.19600377598442,20.05422154854108],[-97.19694655602171,20.05449975053847],[-97.19774258840857,20.055430172699687],[-97.19904562722695,20.055579174464924],[-97.20017064050671,20.05673305869874],[-97.20114132642789,20.057744956042654],[-97.20174132612942,20.057979541773364],[-97.20190035905034,20.05793127682648],[-97.20224647740002,20.057767185565012],[-97.20304076882343,20.057551883898043],[-97.20372052975205,20.05727120008322],[-97.20569674746451,20.056653606645625],[-97.20638773754496,20.055579498074678],[-97.20776364783683,20.053334745206655],[-97.20751998426908,20.05308284509931],[-97.2072901480783,20.05316366119854],[-97.20702980809494,20.052828447446302],[-97.20728011682542,20.048222269707367],[-97.20709387143677,20.046934306092624],[-97.20740082310726,20.046411734807577],[-97.20793279901102,20.045827949177408],[-97.20810732396109,20.04552235705995],[-97.20861544194815,20.04470575935312],[-97.21006405386692,20.044405841697653],[-97.21068609477788,20.04371652901318],[-97.21086155580565,20.042182986412],[-97.21054676240965,20.04135129067288],[-97.21054170230326,20.040988031257484],[-97.21026175961356,20.040769333845276],[-97.20978366398077,20.04039354712495],[-97.20948272893793,20.039719116311176],[-97.20922174907781,20.039150944930668],[-97.2087116477503,20.037252297349085],[-97.20870644083772,20.036715372493404],[-97.20840296069474,20.036403138016396],[-97.20795153577126,20.03606729151238],[-97.20716142910089,20.035565823971808],[-97.2069431504521,20.034866472204044],[-97.2069330239251,20.03323877072961],[-97.20657432416846,20.033242154286143],[-97.2066962779329,20.032405398702736],[-97.20590973511293,20.031315431979294],[-97.20566263282666,20.031065744590876],[-97.20423924049112,20.02822903100008],[-97.20435234018532,20.027859903344847],[-97.20436129207417,20.02625624068321],[-97.20358513225926,20.025315200404236],[-97.20594700742066,20.02304233399593],[-97.20594898351561,20.020293316773007],[-97.20730481879389,20.019337965041927],[-97.20781078353775,20.018697548721434],[-97.2068258328274,20.017299527927378],[-97.20718033854268,20.015317239425826],[-97.20844245507072,20.014668329873814],[-97.21064329773623,20.014079376375378],[-97.21145194008983,20.013318078231578],[-97.21293224196478,20.012283456644752],[-97.21924141153033,20.010457191332648],[-97.22044037522409,20.010430713993344],[-97.22297931755219,20.00986437777192],[-97.22381889537127,20.009607572256925],[-97.22435352722965,20.00836725041114],[-97.22366514566704,20.005776924432553],[-97.22378384962781,20.004941761004886],[-97.22458178199736,20.004347825653497],[-97.22575044051564,20.00361292642276],[-97.22541972717858,20.002887879848913],[-97.22556072725979,20.001916554475713],[-97.22723654004238,20.001105956058495],[-97.22812149719579,20.000628593763565],[-97.22898952269526,20.000585815754334],[-97.22953361155129,20.00036680986875],[-97.22994692117783,20.00019827504582],[-97.23132792259469,19.99968705948868],[-97.23162595133613,19.999428072595038],[-97.23249313177922,19.997983525148754],[-97.23423202028874,19.997048928264064],[-97.23498806023264,19.996334718939522],[-97.2350919004661,19.994442788583854],[-97.23518372195048,19.99399776868148],[-97.2354198582886,19.992897577933036],[-97.2358910583639,19.99268576374709],[-97.23602319355115,19.992321979680582],[-97.23618925028751,19.991385386237596],[-97.2368250600623,19.99068116725209],[-97.23720552481632,19.990396430066085],[-97.23776797095371,19.989174220667508],[-97.23890359651415,19.988483088290366],[-97.23931883293301,19.988162241485952],[-97.23996940798958,19.987320268907922],[-97.24336650079431,19.987303367364632],[-97.24503139880738,19.987425784372363],[-97.24564958120004,19.98648737125626],[-97.24773895653152,19.98592194947736],[-97.24901380322297,19.98505756967552],[-97.24931024692177,19.9846362590132],[-97.25019485535307,19.984162480457996],[-97.25159807330124,19.98401280976759],[-97.25223324388065,19.983931855722517],[-97.2527900719906,19.983713591360697],[-97.25480491136301,19.98211089591149],[-97.25603462166595,19.980967429297266],[-97.25764282469044,19.97948668656744],[-97.25816842977468,19.97898026588109],[-97.2601947768461,19.977408686040405],[-97.26087670097189,19.976830525346145],[-97.261048626211,19.97635842617325],[-97.2609455386455,19.97551815166105],[-97.26103488481789,19.97480211412193],[-97.26088909140321,19.97360609269799],[-97.26144430991963,19.97214285517782],[-97.26153814640548,19.971765862721554],[-97.26187684666365,19.971108771510615],[-97.26369672910528,19.97045231555967],[-97.26383629171971,19.969524629545617],[-97.26448061458422,19.96886683245117],[-97.2633656272256,19.96841114512472],[-97.26358369588462,19.96749304308429],[-97.26427883136068,19.96675211458205],[-97.2646842207239,19.966269554860446],[-97.26513160511297,19.965812479104216],[-97.26551033411153,19.964955722749266],[-97.26569570934913,19.964461416914276],[-97.26567417849645,19.964131753431616],[-97.26625820959612,19.96233194703575],[-97.26633624657717,19.961391525085673],[-97.26817229213577,19.95999449892389],[-97.26853956342444,19.959507436510762],[-97.26873414499676,19.959204929436055],[-97.26820252139424,19.958252338256102],[-97.26802624867315,19.95776655774074],[-97.26814198149395,19.95715977053021],[-97.26754529823233,19.95604078013156],[-97.26783944225417,19.955210014239015],[-97.26811121169084,19.954756881036417],[-97.26797942849561,19.9531921591917],[-97.26797813459632,19.952131587472707],[-97.2683822403165,19.94951676541234],[-97.2691486219939,19.948339351585275],[-97.26924909062473,19.94702727703867],[-97.26878456510377,19.946297870186754],[-97.26785331055407,19.946250519859404],[-97.26604658616242,19.94609911201951],[-97.26356974137934,19.944408629205498],[-97.26337736331328,19.942598238043388],[-97.26221608575656,19.94131172106529],[-97.26226902746998,19.940049634359013],[-97.26185348693838,19.93849213813263],[-97.26036775258382,19.93776078706918],[-97.25978616152344,19.937224680287272],[-97.26060053094238,19.93515802343734],[-97.25756830410751,19.932867291639695],[-97.25626970608238,19.932529085567808],[-97.25629989162394,19.93188656514127],[-97.25727790906109,19.930698456625862],[-97.25876133152633,19.928651718483366],[-97.25917688682813,19.927479758160075],[-97.26126527758453,19.924770435538562],[-97.26227014423034,19.924041644777276],[-97.26315540831752,19.922488254245707],[-97.26509738190185,19.9209879336741],[-97.26642849644696,19.92050576014759],[-97.26686710042401,19.920489182385836],[-97.26705918684092,19.920621273996403],[-97.2680653580191,19.921071039618994],[-97.26923204825243,19.920913984634353],[-97.2697459928242,19.920857562055005],[-97.27038948069759,19.92021625996307],[-97.27037606077295,19.919571196832692],[-97.2714877075,19.918271954046418],[-97.27154528560038,19.917869455014113],[-97.27126830016226,19.916669662552806],[-97.27119687673058,19.91612872386429],[-97.27118501056003,19.915572326732217],[-97.27137598456346,19.915301322924336],[-97.27160705646492,19.915297085450504],[-97.27180027171465,19.915645144170128],[-97.2720330423686,19.91696005901008],[-97.27299416665579,19.917613696455078],[-97.27341800179443,19.917270873858058],[-97.27333523126782,19.91657130426313],[-97.27326924606245,19.916245681475516],[-97.27328116494874,19.915865723604156],[-97.2737143727914,19.91554319238287],[-97.27411674238078,19.91518209679532],[-97.27461984591696,19.91481534321332],[-97.27532998759142,19.915108697323376],[-97.27528279321882,19.915342965824664],[-97.27519443667666,19.915733459759622],[-97.275783053601,19.916257140538733],[-97.27687615556817,19.916246094802887],[-97.27932085156556,19.913435789000573],[-97.27973302986067,19.913044822312543],[-97.28024699113297,19.912649786365876],[-97.28069328856247,19.912494127636023],[-97.28114677345593,19.91202434937975],[-97.28140439353791,19.909297287565494],[-97.28146039671566,19.907744122007216],[-97.28156026464461,19.90712383967076],[-97.28173975764321,19.906879046371046],[-97.282185230084,19.906737269122402],[-97.28291757672298,19.907258791160586],[-97.28368114706416,19.90608455952122],[-97.2838986485736,19.905558752919205],[-97.28435809966544,19.905278136984464],[-97.28560165287837,19.905355893231786],[-97.28594686841524,19.905331885089083],[-97.28635570865532,19.904772847184233],[-97.28625820330313,19.904453612117777],[-97.28590824289336,19.903997596814918],[-97.28570915433488,19.9037429367022],[-97.28579644161817,19.903175619027195],[-97.28644216187519,19.901561767552323],[-97.28681250823809,19.90143639996296],[-97.28694988910598,19.901456911009177],[-97.28765414506273,19.901739213748044],[-97.28848880056444,19.90223573072774],[-97.28850122943453,19.903756931472856],[-97.28905641989314,19.903600547853898],[-97.28915619111757,19.902957394521366],[-97.29015303579911,19.900973361054582],[-97.28972308172598,19.90054344176508],[-97.29073086133803,19.89931774313311],[-97.29107135494553,19.90010504066055],[-97.29182251257708,19.900255981333828],[-97.29194750133468,19.899866286662814],[-97.29115029044766,19.89923471543051],[-97.29089338195683,19.898575096483853],[-97.29158471760985,19.897772031769023],[-97.29177777593657,19.89713469021973],[-97.29202434136289,19.896371930709392],[-97.29270281312813,19.896605883812697],[-97.293129271684,19.896858444986606],[-97.29335578007613,19.896837298611104],[-97.29351324848119,19.89627226901291],[-97.293345906956,19.895624899157383],[-97.29421118481338,19.895517585463836],[-97.29463858203871,19.894827644593704],[-97.2943196779841,19.894493453612142],[-97.29474894602424,19.893901384867547],[-97.29514026476005,19.89382364192761],[-97.29524588121717,19.893640334195084],[-97.29509307074937,19.89316643212993],[-97.29492172110167,19.892494937640947],[-97.29046162742435,19.890098045162517],[-97.2904680646543,19.888823177465554],[-97.290496173424,19.88801372599511],[-97.2904722758953,19.887899584659976],[-97.29040370291625,19.887579550272505],[-97.29038079494586,19.887219110940464],[-97.29044286305253,19.886961696797812],[-97.29058033079684,19.886572782032715],[-97.29079782543351,19.88642895349733],[-97.2914933246933,19.886069064218418],[-97.29179824979366,19.885702080854003],[-97.29212549465882,19.88546107953772],[-97.29258281810303,19.88504026186223],[-97.29346712278652,19.88481675589719],[-97.29380293277143,19.88432523634009],[-97.29394575128248,19.88403687014977],[-97.29413220208824,19.88376658829901],[-97.29541074901601,19.883664068216433],[-97.2960427954053,19.883670984338494],[-97.2968914255606,19.8834547166407],[-97.2971090489209,19.88305154911808],[-97.29757488623363,19.882639347068164],[-97.29835333171155,19.88240416444097],[-97.29878728409733,19.88240089692158],[-97.29887805699178,19.882336781142953],[-97.29907667708903,19.88222582210153],[-97.29956136390211,19.88178074701841],[-97.30009217517784,19.881299913185785],[-97.30033420831592,19.88072984585142],[-97.30070853843534,19.879869849754698],[-97.30082662760009,19.87934844887826],[-97.30093026892445,19.878377497416636],[-97.30084741985576,19.877881376496646],[-97.30108892415001,19.877647337140388],[-97.30186616878336,19.876705317845847],[-97.30201703300168,19.87652097688607],[-97.30188375761998,19.87519044575214],[-97.30184806881545,19.87493731591894],[-97.30185497279632,19.874738002428046],[-97.30201631492531,19.87406419947473],[-97.30222070396582,19.873569230200076],[-97.3029112826161,19.87250961780495],[-97.3035977668103,19.87173097931486],[-97.30396623633345,19.871323833687654],[-97.30433211484149,19.870991022707813],[-97.30445428855239,19.87087388638156],[-97.30461560735256,19.87048252510482],[-97.30467070355115,19.8700284607184],[-97.3045137834618,19.869460156320883],[-97.30451361128274,19.86921299497152],[-97.30443991864462,19.868823495412357],[-97.30375725566336,19.868143254287418],[-97.30391915733355,19.867999975444604],[-97.30415727147164,19.86766956830172],[-97.30476345959391,19.86728465715521],[-97.30501915774448,19.86706391955488],[-97.3049901072664,19.866520077614723],[-97.30493924909501,19.86640861824958],[-97.30468639845168,19.866006503671883],[-97.30453527962283,19.865827308194582],[-97.30449719604763,19.865742103108175],[-97.30451969459455,19.865684626989605],[-97.30511443403776,19.864809436208418],[-97.30519584520658,19.864638663815185],[-97.30521473888848,19.864404790146523],[-97.30525179393169,19.864122618075385],[-97.30530487255783,19.863991741962934],[-97.30538070575176,19.863514981855076],[-97.30549365448684,19.86333043353676],[-97.30589834119917,19.8628204748494],[-97.30617678799342,19.862640200086673],[-97.3063322103634,19.86232749882015],[-97.30646833440488,19.862112354902365],[-97.30689436909427,19.861649290832418],[-97.30711551704229,19.86143011384212],[-97.3072128440358,19.86108602568754],[-97.30748128552784,19.86048405086251],[-97.30757413084115,19.86029651732747],[-97.30763678575448,19.859872298472624],[-97.30766328150435,19.859383495086774],[-97.30887451493106,19.857378054472633],[-97.30870075740961,19.857143516800136],[-97.30863730752822,19.856836010366692],[-97.30894594237492,19.85660731197453],[-97.30912634648081,19.856525001749617],[-97.30946082072688,19.85614383407369],[-97.30957194876169,19.855619910356154],[-97.30949122675543,19.85452770445403],[-97.30945507188176,19.85435079537484],[-97.30921786624225,19.854119722277858],[-97.30877099227109,19.853594509596462],[-97.30853710156975,19.853267657773927],[-97.30831733584057,19.853021145574075],[-97.30821251032393,19.85287407249149],[-97.3082242019542,19.85260743402091],[-97.30831854095663,19.852065655111517],[-97.30833754260294,19.85178943049641],[-97.30841052126704,19.85131842704135],[-97.30839084506903,19.85106779708491],[-97.30845580227373,19.85082871386095],[-97.30859442750307,19.850645482111872],[-97.30852384416096,19.850500430710383],[-97.30857826073338,19.84990575466759],[-97.30863257082132,19.849694223560277],[-97.30882682348505,19.849513675133096],[-97.3090924240459,19.84945782464689],[-97.30940580741867,19.849094394269912],[-97.30907616794934,19.848568915798637],[-97.30894175009757,19.848378191775225],[-97.3087540660539,19.84809697663377],[-97.30865046444444,19.848102654490674],[-97.30777363584832,19.847609584714405],[-97.30779008775215,19.847405760751542],[-97.30794210725395,19.846815246152175],[-97.3080630800523,19.84657912365998],[-97.30798655052337,19.846345770784808],[-97.30794390467508,19.846220073158463],[-97.30811642407474,19.845852284534374],[-97.30854428714684,19.84489211260609],[-97.30811044870165,19.844390057163366],[-97.30836300812757,19.843882606592558],[-97.30863777148596,19.84382004385924],[-97.30891020131361,19.843553075783177],[-97.30900494505858,19.843325331385074],[-97.30937280724646,19.84276227621598],[-97.30956565189945,19.842544065322556],[-97.30987200347397,19.842259319440927],[-97.3100433053304,19.84185458378721],[-97.31013654053339,19.841592306259315],[-97.3102948725869,19.84134088178132],[-97.31036104533382,19.84023809326834],[-97.31018110377352,19.840303235078352],[-97.3100484837621,19.84035216530816],[-97.30993760697328,19.840313374004495],[-97.30993448349119,19.839862507513146],[-97.3097076426742,19.839354976208313],[-97.30946994748791,19.83919736350731],[-97.3092527597966,19.83898735007523],[-97.30930447344537,19.83857353416215],[-97.30966374218093,19.838460909898117],[-97.30980643334516,19.83812062183921],[-97.3098761075002,19.837999038862847],[-97.30966927938175,19.837723636601993],[-97.30914042875492,19.83683148966952],[-97.30895712440724,19.836494143225536],[-97.30871914430617,19.836234950755227],[-97.30858418411754,19.836003513185517],[-97.30855625898795,19.835683260281144],[-97.30841675149532,19.83522634531448],[-97.30855295106016,19.83432251083127],[-97.30892429028273,19.83410798251424],[-97.3093107514951,19.83375633643311],[-97.30965262520658,19.833491757226],[-97.31009904171356,19.83321076145677],[-97.31051563882244,19.83288953056598],[-97.31077238015143,19.832681277126255],[-97.31093667580183,19.83250412019521],[-97.31118405696816,19.83210473343314],[-97.31160142692113,19.83185548685475],[-97.31206674328303,19.831697409054982],[-97.31217573641499,19.831500708151054],[-97.3123004882973,19.83127000221066],[-97.31251360568717,19.831228305182947],[-97.31278839179748,19.831091927045748],[-97.31301149495471,19.830262216793585],[-97.31323683327486,19.830104642727292],[-97.31332420702,19.829431854834866],[-97.31358796408836,19.829223510186637],[-97.31393736173544,19.828922551982316],[-97.31419404762886,19.828653367009167],[-97.31429830854688,19.82855267433223],[-97.31454953973645,19.828207825175184],[-97.31463021730497,19.827993816884998],[-97.31509153623415,19.827635697213452],[-97.31507633271315,19.827280158535302],[-97.31483399045123,19.82713410570966],[-97.31472486852118,19.82684494527541],[-97.31496891901105,19.826410824495383],[-97.31510853323931,19.826081173964837],[-97.31538751264634,19.824372890135066],[-97.31509226609728,19.8236363083505],[-97.31438106579685,19.82283018004756],[-97.31392859955815,19.822543021169565],[-97.3138108640266,19.822395969350282],[-97.31360470876336,19.822089122963064],[-97.31355984472714,19.82192383422199],[-97.31360912907519,19.821542939299434],[-97.31463135795718,19.82059389449779],[-97.31502673135412,19.820442228241518],[-97.31536694616352,19.820213733130856],[-97.31561986092271,19.82000302886172],[-97.31594101986605,19.819698827998252],[-97.31619448709512,19.819511155096677],[-97.31623301640337,19.819232355527845],[-97.31626048278713,19.818645917918616],[-97.31642475275464,19.81828222796844],[-97.31668590353945,19.817832761768216],[-97.3166551574696,19.81777638162481],[-97.31633762455016,19.817706080039272],[-97.31648709429606,19.81726913875133],[-97.31670040518475,19.817021688430827],[-97.31628143866533,19.81621581728359],[-97.31619874019174,19.815942277560282],[-97.31559626527923,19.815007623782265],[-97.31560034381619,19.81468162887205],[-97.31552557009184,19.814557021287385],[-97.31549718005385,19.814338722668026],[-97.31556446107169,19.814055447497026],[-97.3156595243612,19.813800208208136],[-97.31659408269422,19.813209149025568],[-97.31676778922792,19.81290591899051],[-97.31673629637805,19.811979151746243],[-97.31680123140643,19.81167622030881],[-97.31664989452884,19.81159438993484],[-97.31647907027241,19.81128908264111],[-97.31649242096177,19.810203526279338],[-97.3164854646729,19.809474408263384],[-97.31648293658128,19.80931487736575],[-97.31645451316876,19.809207701271987],[-97.31640227375271,19.809092196166603],[-97.3164362847046,19.80880471981544],[-97.31654425620604,19.80870176083488],[-97.31659931288897,19.80687651644621],[-97.31441848101338,19.801881288433265],[-97.31510542086824,19.799722721661738],[-97.31328347056046,19.79737007571822],[-97.31416284002853,19.7936093173181],[-97.31323050740917,19.791638519858964],[-97.31307717139788,19.79125128601771],[-97.31315081924083,19.79019132158345],[-97.3132151084489,19.790117439817493],[-97.31377340343391,19.78956159318676],[-97.31413938815581,19.788988838136788],[-97.3144853770944,19.787682530628217],[-97.31491717987018,19.786115116482506],[-97.31483796250342,19.785747696236115],[-97.3152423622804,19.784597683024174],[-97.31516601227895,19.78435266659409],[-97.3152448362751,19.784102508635954],[-97.31541415000498,19.783795249248726],[-97.3155716284686,19.78337752401478],[-97.3158268464573,19.78303697878738],[-97.31623996280928,19.782472029297878],[-97.31662862859724,19.7819946694259],[-97.31720713540398,19.77962778219745],[-97.31741246250846,19.779114789044968],[-97.3175560087501,19.778548952613562],[-97.31713592281943,19.778154686586845],[-97.31708275228107,19.777944649852145],[-97.31742052084599,19.777249288070834],[-97.31805784406401,19.775624239959313],[-97.3190065924357,19.774806399198837],[-97.31958722664103,19.774158295152176],[-97.31909412756988,19.771659150555138],[-97.32000335288961,19.76982613976594],[-97.31829605430863,19.768245103756442],[-97.31888270605987,19.76515508304084],[-97.3188449174479,19.764589914049225],[-97.31867220406485,19.763004064642985],[-97.31894143574738,19.76233157991942],[-97.3195979469258,19.761347898428482],[-97.31903095083482,19.756312147995857],[-97.31914900264456,19.754906056352183],[-97.31911801847576,19.753130693463106],[-97.31913595717185,19.752183019188976],[-97.31908905328311,19.751884145112342],[-97.31893972682417,19.750567824856034],[-97.32108378001249,19.74783155845853],[-97.32047215529639,19.744655884692975],[-97.3202395668144,19.7427734592153],[-97.31967769790475,19.739597575234768],[-97.32004448762132,19.738277657791684],[-97.32009328656869,19.73730520953592],[-97.32179849797507,19.7357690443622],[-97.32189108360137,19.735273827252172],[-97.32181231870516,19.73444626687359],[-97.32054328868577,19.734599736141945],[-97.31872400915103,19.73562254569015],[-97.31378165609851,19.736046330709826],[-97.314761462776,19.732886118554063],[-97.31515810607544,19.730001650316638],[-97.31698623069258,19.72830627917574],[-97.31792961598467,19.72727723836266],[-97.31831794132944,19.726865711262803],[-97.31903699946798,19.72630161139375],[-97.31959204264268,19.725684073990124],[-97.31987281756273,19.72506396360467],[-97.32031814147751,19.72444539481046],[-97.32125877228191,19.72367577497289],[-97.32192567541085,19.722851690495247],[-97.32275766208909,19.72197725126739],[-97.32391173416397,19.72178046014443],[-97.32512169203528,19.72148040546432],[-97.32661349912718,19.720456420502614],[-97.32711041462466,19.720149693683936],[-97.32970083518262,19.71898023981737],[-97.33036120909969,19.718778819661622],[-97.33314040495765,19.716779815348445],[-97.33249847125592,19.715829180242338],[-97.33127396960685,19.714772976467202],[-97.32965795758025,19.71432713167144],[-97.32920606307073,19.71275066985737],[-97.32862859255584,19.71199655370532],[-97.32781993727099,19.71151519904123],[-97.32767745592088,19.710944923627892],[-97.32680460708457,19.70917231781499],[-97.3257125431823,19.70816324096961],[-97.3250654492611,19.707804067677785],[-97.32470982536279,19.70755202460873],[-97.32462018386792,19.705456460875155],[-97.32432224583681,19.70459710039512],[-97.3231740525896,19.70279775569736],[-97.32279849936202,19.702198595174195],[-97.32205467693552,19.701292508697577],[-97.3201738394456,19.699531131508422],[-97.31885896781108,19.697066632931296],[-97.31778384842062,19.695318461779493],[-97.31725930060549,19.694577848283757],[-97.31654447348922,19.693723296683288],[-97.3165548545137,19.693274188123155],[-97.31560535060112,19.692035674323392],[-97.3149110632275,19.691278022057304],[-97.3145409306764,19.69079316585021],[-97.31286377714105,19.688910051853043],[-97.31095592578282,19.686559785005727],[-97.31040007375725,19.685974505460933],[-97.30986126048094,19.68565448060116],[-97.30851005435932,19.68499919076612],[-97.3077876282872,19.684759276269347],[-97.30742386189178,19.68453738935125],[-97.30689226442723,19.683019668125553],[-97.30635932981329,19.680186002046014],[-97.3047947236089,19.676075227952424],[-97.30437580951116,19.675112596421172],[-97.30393001200315,19.671155531449983],[-97.30573124606951,19.672200860934822],[-97.30643939230413,19.672680108123586],[-97.3075143802692,19.67296734260816],[-97.3081396571153,19.673376811083642],[-97.3094689700377,19.673642311144874],[-97.31091153282728,19.67515981977067],[-97.31396605205481,19.67412144249812],[-97.3146632092554,19.674171536076813],[-97.3160691896681,19.67375196346785],[-97.31719239325355,19.674089804894834],[-97.31714504120976,19.674786545162476],[-97.31788139737228,19.675229602965885],[-97.31893946431728,19.675674566316843],[-97.31966997034618,19.676591571589995],[-97.32496594664974,19.67866187854679],[-97.32640262023205,19.678918260798184],[-97.32972862962049,19.678278509930976],[-97.32966324599226,19.677946590718363],[-97.32988541680993,19.677051280126307],[-97.33160897792197,19.676399443401067],[-97.33360509907106,19.67649404096926],[-97.33729157121525,19.67607801071472],[-97.33751210709198,19.675236056764106],[-97.34116290317542,19.67566046792024],[-97.34116584506052,19.674017471658203],[-97.34187981563343,19.670204177087214],[-97.34513371896537,19.665862681155772],[-97.34736421219094,19.663375345144857],[-97.34907068149732,19.66206871496138],[-97.35003369389062,19.66135545426556],[-97.35331169618911,19.659148593725547],[-97.35407034426754,19.658145983200654],[-97.35450579648057,19.65747194751276],[-97.35531459306316,19.656469972665832],[-97.35585530665884,19.656069555498846],[-97.3574845803962,19.655095656290655],[-97.3588124863548,19.653578308100123],[-97.36089864946274,19.651303657655376],[-97.36198821542831,19.650574681341595],[-97.36315210054636,19.64991340563023],[-97.3658596037535,19.648284515026887],[-97.37010856029718,19.64190030646597],[-97.37451098567857,19.637135572582963],[-97.37769072286153,19.634035451327577],[-97.37890219459842,19.63456125034702],[-97.37947821478394,19.63454331969291],[-97.38042081284993,19.633984820032197],[-97.38158193493928,19.63456715979703],[-97.38280134695083,19.63533321153284],[-97.38430172451814,19.629838948865086],[-97.38705967940092,19.626637004445797],[-97.38836992789766,19.626779592934724],[-97.39043673086297,19.627179245066202],[-97.39180193458805,19.62663156062331],[-97.39274499771096,19.62455900411254],[-97.39335942669453,19.62323934209661],[-97.39477370642163,19.621571747561973],[-97.39528309551974,19.62095673824706],[-97.3970016269817,19.6201207297251],[-97.39759767309965,19.61981419092365],[-97.39812657253901,19.619631781575038],[-97.39952242666612,19.618396799463426],[-97.40274729258738,19.615343012531127],[-97.40493357653486,19.618191407425456],[-97.40517659438461,19.61906802338342],[-97.4052344388167,19.619467464838294],[-97.40575522197605,19.619934338894325],[-97.40632884795156,19.620374006925033],[-97.40810890788339,19.62197156047847],[-97.41298438792182,19.62394416816028],[-97.41642607183212,19.627967006942526],[-97.41709479580788,19.62689572133212],[-97.4184672772069,19.627216553648736],[-97.41939438640645,19.62509845616927],[-97.42027748653993,19.6238432599132],[-97.42113692695858,19.620594480610748],[-97.42275754931961,19.619111763875367],[-97.42376224898919,19.617513589408304],[-97.4280466505827,19.61589717992257],[-97.42771365713344,19.614611855883197],[-97.42776574088168,19.609356959253205],[-97.42859297146333,19.60825982986745],[-97.42837901637046,19.606270147649525],[-97.42807442294816,19.604860979670946],[-97.42794268735958,19.6026332230212],[-97.42836699706447,19.6016650145462],[-97.42937638396342,19.601225583888493],[-97.42913357701349,19.60109467068378],[-97.42919082797613,19.600465909165393],[-97.43066067461399,19.600026911486623],[-97.43166465521483,19.599758061000728],[-97.43165251998266,19.599395130919902],[-97.43115698285379,19.598062795808346],[-97.430905121975,19.597673367518723],[-97.43130488568539,19.596136742561157],[-97.43204646277053,19.594023984274088],[-97.43249952634858,19.593169309887344],[-97.43414245663001,19.590124986379408],[-97.43412124416864,19.5883560394214],[-97.43239137074374,19.588085267657448],[-97.4314874452271,19.58773378665387],[-97.43145236780282,19.5869587391129],[-97.43050115294085,19.586522523059728],[-97.43023979380848,19.58540347253836],[-97.42990711455491,19.582667727405862],[-97.43009584901415,19.581415603469964],[-97.43012938175957,19.580418490789498],[-97.43007702503064,19.578634702257546],[-97.42990100358156,19.57779660568991],[-97.43058838383092,19.576170418906997],[-97.4298851069176,19.575014989414797],[-97.42871044102833,19.5727852039318],[-97.42818603908432,19.572080922444457],[-97.4268812991096,19.569159670671013],[-97.42681207566653,19.565871636720658],[-97.42712372776737,19.56178825780421],[-97.42773479845334,19.558632662440573],[-97.4278072462451,19.558225145168194],[-97.42784934334361,19.557147488288535],[-97.42785182072873,19.55695994836219],[-97.42772027195508,19.556436353586832],[-97.42762693223744,19.555864002938506],[-97.42761646924328,19.55324915719416],[-97.42744472946708,19.551252775470743],[-97.4271648133033,19.547998952768467],[-97.42685281643168,19.544285857327054],[-97.42664686521323,19.54167601377702],[-97.42493357453134,19.543580905607826],[-97.42397755633579,19.54368384477999],[-97.42301955400262,19.543405752245405],[-97.42285645446572,19.541379791606516],[-97.42074924998042,19.539818156529975],[-97.41027369728675,19.537700281102786],[-97.40958967873979,19.5373293327051],[-97.4116029040498,19.535031804189714],[-97.40902459891686,19.531040424218816],[-97.40872566945842,19.53054280169289],[-97.4080886680303,19.529526264815843],[-97.40718403173821,19.528118216812288],[-97.40668917431861,19.527341537412724],[-97.40620600463626,19.52655432365117],[-97.40600298182079,19.52625748686563],[-97.40703273533603,19.52408540644825],[-97.40750203554632,19.521880342489794],[-97.40752266701145,19.521869316029324],[-97.4072234967548,19.52132815246989],[-97.40703403475078,19.520817224083487],[-97.40651515169014,19.51994184980697],[-97.40644202663782,19.519953675490854],[-97.40562189320963,19.51802770333029],[-97.40524785576275,19.517222798416356],[-97.40409838675208,19.516582917461903],[-97.40212134375952,19.515417124994883],[-97.40226974328294,19.51361445820021],[-97.40186750889853,19.51160440383569],[-97.40168427509042,19.510755107744444],[-97.40130357237547,19.508947585863837],[-97.40117099454784,19.50825696098707],[-97.40095798893128,19.50725418465686],[-97.40171336483172,19.506399092956258],[-97.40283292894645,19.506812499424598],[-97.40370685772524,19.50546547860654],[-97.40379331920514,19.505341043374813],[-97.40415789826568,19.504281048222026],[-97.40422377411454,19.50388548423672],[-97.40406491814554,19.503100889072925],[-97.40584402747822,19.500778650721088],[-97.4042433455042,19.49984737180398],[-97.40378201352672,19.495696668503626],[-97.4004936561746,19.493864695396383],[-97.3949236293588,19.49242103107389],[-97.37999022993006,19.4932709658093],[-97.37067061305237,19.494994915573557],[-97.36499431794795,19.492342603685756],[-97.36074610030875,19.488493444116045],[-97.3557298512884,19.492910249166414],[-97.35239458607123,19.4894043254929],[-97.35207800836895,19.484722862833962],[-97.34825852817391,19.484626962187633],[-97.34821172908067,19.483718202352918],[-97.34699725186482,19.452733337446205],[-97.34696648155659,19.450897259075134],[-97.34825455537162,19.44912792260436],[-97.34929047479665,19.447669772903964],[-97.35011945496984,19.44886565278358],[-97.35388890513661,19.4472299143805],[-97.35237969526611,19.44583116135709],[-97.35328792209992,19.44404599739039],[-97.35214654281498,19.441952755411876],[-97.3540829784859,19.438028462564546],[-97.35476002181122,19.43590904641036],[-97.35658315190346,19.43428736004398],[-97.35669863894225,19.433985023443256],[-97.35729564708703,19.432375870526016],[-97.35782396731798,19.432673194410654],[-97.35861636349568,19.433119505714103],[-97.36096520779688,19.43453803397182],[-97.36212675309275,19.434917003616135],[-97.36435150905015,19.434849382022094],[-97.36746326934644,19.432025521347384],[-97.3696790038482,19.432179666808395],[-97.37168402064265,19.431320446211146],[-97.37223914009695,19.431433871668787],[-97.37563184801184,19.432230955215005],[-97.38006668653793,19.430356219249234],[-97.3815213689204,19.4322430545742],[-97.38313620317916,19.431726295959095],[-97.38847044577437,19.42960437923182],[-97.38884271704381,19.429476331817852],[-97.38895905653465,19.429425057971912],[-97.38899755239402,19.429407323473754],[-97.38920179260401,19.429349684806766],[-97.390226788218,19.42806466539747],[-97.39056613162603,19.42636980081886],[-97.39121318473082,19.423513740166356],[-97.39171787809295,19.420954238171475],[-97.39234756393057,19.41813069759627],[-97.39597410430139,19.418142605555317],[-97.39541995061785,19.417138963507966],[-97.3950857624854,19.41593273299128],[-97.3950964294931,19.41433939288271],[-97.3947143038792,19.413499987716705],[-97.39432442149996,19.41257198428866],[-97.39426774317428,19.412121813878173],[-97.39420692994656,19.411759661932763],[-97.3942779246857,19.411453703420023],[-97.3942934435687,19.411208416787588],[-97.39433845167952,19.41096092203577],[-97.39447254285619,19.410699726006726],[-97.39485855311978,19.41014408531538],[-97.39489686829933,19.410080977603627],[-97.39493746645695,19.408926865832314],[-97.3944510337933,19.408828166546414],[-97.39398395999916,19.407794671956765],[-97.39410235158346,19.40729556283759],[-97.37893224762473,19.404644801808274],[-97.37968863934225,19.406347921231884],[-97.37690565149035,19.40586841775513],[-97.37596422992243,19.405707830460926],[-97.37411032280431,19.405393878285906],[-97.37169987428808,19.4030591323139],[-97.36045311238007,19.376029327790718],[-97.35978512610427,19.37593331672565],[-97.35876649693523,19.377095280192464],[-97.35690381929237,19.378361283439574],[-97.35601885053268,19.37797083887557],[-97.35449529438733,19.37749584563761],[-97.35361049975359,19.377664507316524],[-97.35304330092481,19.377838072455518],[-97.35211221930223,19.37816602378274],[-97.35102553825948,19.378201184292493],[-97.35035799298043,19.37820444333812],[-97.34987772543286,19.37815157169024],[-97.34862009561346,19.37849370267105],[-97.33766286870843,19.392470614294666],[-97.33357541123434,19.392395557644363],[-97.3325676141705,19.39235963244647],[-97.32595109187389,19.392180593424996],[-97.32356485597575,19.39211494723321],[-97.31813623973574,19.391992053591082],[-97.31435509941338,19.39191470112553],[-97.31309716021212,19.39178026982495],[-97.29871456927526,19.390377274892273],[-97.29593799759255,19.39005221699699],[-97.28924502283922,19.389462271084255],[-97.2871520103825,19.389295734200743],[-97.28611017836789,19.391107533410263],[-97.28595449512079,19.39122539491035],[-97.28553049711326,19.39138571145088],[-97.28534867129576,19.39147507184532],[-97.28518590726753,19.39164353921518],[-97.284711796581,19.39035169898392],[-97.28394035561791,19.389496849848285],[-97.28374735958835,19.38930837527562],[-97.28341423702386,19.389125859672788],[-97.28315988377688,19.388824504117338],[-97.28177931850684,19.387343815654845],[-97.28108733267084,19.38688068381032],[-97.28053170303264,19.386575075445023],[-97.27712172027549,19.384715079400564],[-97.27524694973448,19.38398295638717],[-97.27363471264539,19.383648988470895],[-97.26881858829813,19.383038315711246],[-97.26548744066059,19.381459567841034],[-97.26444034251267,19.380621566200887],[-97.26003032131013,19.3810428993998],[-97.2598016264804,19.381275571305537],[-97.2576491008283,19.381781098625254],[-97.25535923615723,19.381677538472786],[-97.25479672892845,19.381789426894727],[-97.25416005702692,19.3813603339849],[-97.25329155588543,19.380804011806674],[-97.25195424807384,19.3802397283892],[-97.2495425691585,19.379235516003064],[-97.24824824777716,19.378736283828175],[-97.24802179499494,19.378680736822048],[-97.2476846206585,19.37840939770132],[-97.24752190033843,19.378215653401924],[-97.24698172164102,19.377898273975575],[-97.24622290911805,19.377283817436933],[-97.245067352675,19.376899014143874],[-97.24412842813138,19.376261864696005],[-97.24320551779476,19.3759253922031],[-97.2417737301488,19.37445359992944],[-97.23602464096382,19.371425423537175],[-97.23493453513919,19.37112061644916],[-97.23312613626064,19.37083982000223],[-97.23243226123441,19.370417182376343],[-97.23193659950277,19.370064924632516],[-97.23139105694514,19.36926606629089],[-97.23119239601635,19.368608007203477],[-97.23096889509372,19.36785593704036],[-97.2309681896246,19.366939161932294],[-97.23079415664705,19.366093028873024],[-97.23076913478184,19.365763947364655],[-97.23069457562735,19.365434900379114],[-97.23059524809315,19.365105870633442],[-97.23108876946065,19.362707804359673],[-97.22980015477219,19.361838940987127],[-97.22915595116194,19.3615337950111],[-97.2281153199512,19.361040862482696],[-97.22685132721142,19.3599368931296],[-97.22707315006323,19.359704278500203],[-97.22649192077301,19.359008419260817],[-97.22469609927805,19.357611741077903],[-97.22396130615908,19.357232004710568],[-97.22339109275902,19.35693876732921],[-97.22183488070709,19.35662406156979],[-97.22165832205974,19.356518830476773],[-97.22120182514851,19.35650862020094],[-97.22041001417938,19.356783044077474],[-97.22003789992044,19.356697427842676],[-97.21964154142489,19.356580147334682],[-97.21889575293977,19.35666428913595],[-97.21857643700429,19.356416277865605],[-97.21822959839324,19.35627545603228],[-97.21780857344555,19.35629922898994],[-97.21736283016031,19.356393537319093],[-97.2171647092593,19.356417168595726],[-97.2160008466783,19.356699977774838],[-97.21471316059325,19.357006362083496],[-97.21347516197596,19.35754777566933],[-97.21278213084338,19.35822989407444],[-97.2125841164451,19.358418068226058],[-97.21194033454799,19.358677029543912],[-97.21156893114926,19.358841799050367],[-97.2108260610562,19.359077308231576],[-97.21020604467765,19.35944165204768],[-97.21086297339468,19.358003640467132],[-97.21070353560987,19.356921881870278],[-97.2110894988212,19.35612658032659],[-97.21039751970704,19.35557893316212],[-97.20998068357153,19.355716917049904],[-97.20882406528801,19.35530976660499],[-97.20822174275429,19.354927101552107],[-97.20826994616044,19.35387483517178],[-97.20871553365578,19.353341521732148],[-97.20854467753702,19.352655679652116],[-97.20822212375884,19.352290445054393],[-97.20783979497838,19.350732948908444],[-97.20723054174925,19.350264534113307],[-97.2071537114411,19.349916479018702],[-97.20670132957929,19.348986496909788],[-97.20680849957625,19.348521410950013],[-97.20735820339223,19.3477562310224],[-97.20747476454682,19.347293798754833],[-97.20919758884486,19.346464191002894],[-97.20982046546175,19.345069680446613],[-97.20926314813596,19.341912927322312],[-97.2092137031434,19.341330258667256],[-97.20984434180275,19.33978074281424],[-97.21013770799863,19.338460467553375],[-97.20948381258921,19.337025059049495],[-97.20793617649139,19.335686710927746],[-97.20611193397173,19.334133941155073],[-97.20572649475412,19.333349766542028],[-97.2053328494282,19.332468929217328],[-97.20470995150117,19.330985003849662],[-97.20472112520565,19.329962014695298],[-97.20525482046827,19.328641033984184],[-97.20525937082624,19.328224262303365],[-97.20578643879588,19.32750948991651],[-97.2062311478436,19.327021256146793],[-97.20727162843934,19.326842019058006],[-97.20810084580035,19.327721686007067],[-97.2084985926906,19.32787715968101],[-97.20929944094712,19.32769555897903],[-97.21001027006923,19.327843809437354],[-97.21171378756475,19.327485558177614],[-97.21353044050244,19.32707558481161],[-97.21429565390963,19.325477559731837],[-97.21560526891062,19.323319721135533],[-97.21534679266347,19.322974356391626],[-97.2142483964364,19.321683857923347],[-97.2127970358082,19.320225943281173],[-97.2118290021325,19.31860525290176],[-97.21060716903077,19.31704283142301],[-97.20798893580343,19.31519112624676],[-97.20703899272382,19.31562581929063],[-97.20681371600335,19.31590242547429],[-97.20505680835271,19.318013809251056],[-97.20495212240638,19.318201348763353],[-97.20423420324687,19.317942444474568],[-97.20313467761287,19.317442168399452],[-97.20251863568075,19.3173978045059],[-97.20194272460361,19.317110836404026],[-97.20165676449096,19.316849840446025],[-97.20114473998177,19.315843810791932],[-97.20146066662943,19.31542768925135],[-97.20154008616868,19.315285926964975],[-97.20148400621508,19.314423607558354],[-97.20146134261086,19.31401853952002],[-97.20133150818407,19.313131237320135],[-97.201503097758,19.312434192252056],[-97.2015045285018,19.312312740218374],[-97.20153381658798,19.311751532484948],[-97.20148869612319,19.311374939063967],[-97.20062680852948,19.309499413792878],[-97.19807358152815,19.309771597669908],[-97.19592197358782,19.311335917620283],[-97.19486114304527,19.311509462277172],[-97.19343259508696,19.312836123745342],[-97.19036148968064,19.315996044034137],[-97.19038802204574,19.316372425470206],[-97.19011898120556,19.317150067399723],[-97.18992211336342,19.317456791262885],[-97.18980178366814,19.318233810118386],[-97.18983180463522,19.319363161464707],[-97.18953873195869,19.320305617486895],[-97.18834457163507,19.32162566285234],[-97.18482678611156,19.322829635455378],[-97.18412909156268,19.323162549817425],[-97.18272946914635,19.324210672137042],[-97.18189415894727,19.32483959002633],[-97.1812416852714,19.325130465657992],[-97.1808163598098,19.325126227301496],[-97.18029984751684,19.325269759294372],[-97.17987170032217,19.325520388938855],[-97.17824699413012,19.32667243184494],[-97.17766213833227,19.326921484264346],[-97.17667925548477,19.327127584584957],[-97.17597117343314,19.327691852532894],[-97.17543049100169,19.327932106333378],[-97.1751116957688,19.327928915266227],[-97.17437303222158,19.328053796645406],[-97.17020569209427,19.32902235567343],[-97.16971153694726,19.32879128590139],[-97.16905657602132,19.32872818886625],[-97.16790200162683,19.328923852064236],[-97.16704648679143,19.32902830581037],[-97.16637103933505,19.32902151266495],[-97.16579722154006,19.328808476192933],[-97.16506385716445,19.328650351590454],[-97.16417491432787,19.328189184805126],[-97.1628286319978,19.327761095251276],[-97.16151915055354,19.327597165032046],[-97.16049014322238,19.32722877783641],[-97.15832617722293,19.325801546658226],[-97.15702535060717,19.325479116588724],[-97.15590623643021,19.324611366440024],[-97.15547874412306,19.324702202992],[-97.15478072335725,19.32431449600972],[-97.15338011564148,19.3239434584533],[-97.15285977507892,19.323367222386082],[-97.1501900312133,19.320907368165706],[-97.14909974209962,19.32038986875898],[-97.14845491687265,19.320250049216895],[-97.14701783436215,19.320581956493527],[-97.14461926525667,19.321437163970757],[-97.14366379882796,19.32142743944985],[-97.14220792140469,19.32093283555264],[-97.14147576679824,19.321058647710515],[-97.14090800154372,19.321559294028305],[-97.13975131371978,19.321947315740147],[-97.13859884757068,19.321962196989432],[-97.13825709502015,19.322358526108815],[-97.13785089787376,19.322525990029987],[-97.1373240062955,19.32280444169953],[-97.13615627373417,19.322414074294784],[-97.1354690330603,19.321437297005332],[-97.13485956194671,19.320201160353633],[-97.1345383617728,19.31993769184936],[-97.13393667074229,19.31975504291944],[-97.13376083089418,19.319648290802434],[-97.13385387387592,19.31925046818617],[-97.1333259117049,19.318972217999203],[-97.13283788575535,19.319072159406176],[-97.13179765669105,19.319082496303167],[-97.13142937205976,19.318386111727193],[-97.13163690211127,19.315701738944824],[-97.13124578043676,19.315068091993965],[-97.13122794611024,19.314690125286063],[-97.13116704835431,19.31420676476273],[-97.13116767138786,19.312230352699544],[-97.13096247209359,19.311278402798393],[-97.1307737611753,19.310605996633512],[-97.13065827854234,19.310399940399407],[-97.13018770091054,19.31033924893012],[-97.1293597046598,19.308896681029296],[-97.12869386310189,19.308740848865398],[-97.12816352253861,19.30875404149549],[-97.12765132770159,19.30889777446589],[-97.1270659154763,19.308575155286917],[-97.12634758990367,19.30844590139253],[-97.12605042680298,19.30834358823796],[-97.125623366355,19.308179383987408],[-97.12382084326464,19.30745693560044],[-97.12347313787313,19.306852898171996],[-97.12188407494017,19.307398345563968],[-97.11853998120057,19.30627537152202],[-97.1177635315704,19.306063908724525],[-97.11707090006854,19.30576974275988],[-97.1157389100656,19.30527674967459],[-97.1145459973618,19.304841657783925],[-97.11345873601863,19.3049096818732],[-97.11311934603191,19.305355372591862],[-97.1128544083586,19.30548044878941],[-97.11172230691704,19.30529378369198],[-97.11088426785642,19.305154609253123],[-97.1093320571718,19.305412030170544],[-97.10899154291286,19.305552586805163],[-97.10875380847648,19.305662267738114],[-97.10733225523433,19.305909173962107],[-97.10642125524538,19.30631086905248],[-97.10594753479387,19.30638071028909],[-97.10305813979124,19.30516330182064],[-97.10332511012206,19.304476731162538],[-97.10293125838695,19.304027960192627],[-97.10220742701085,19.303988995900568],[-97.10199869085619,19.30361544691044],[-97.10165956139184,19.303899553100734],[-97.10152297111898,19.30416422825226],[-97.0994701522244,19.30419706002101],[-97.09894079480068,19.304221074317013],[-97.098380686464,19.304215238237646],[-97.09677162012764,19.305743451996364],[-97.095941178504,19.30540992495395],[-97.0953729862016,19.305518051794422],[-97.0933364899692,19.308123837038863],[-97.0928913487648,19.308407304421962],[-97.09296720302581,19.309010555911755],[-97.09273504665157,19.309977273131835],[-97.09142534653341,19.310985126722812],[-97.08852762815724,19.311658779416973],[-97.08811390662112,19.311957085233473],[-97.08723755108781,19.311529954724904],[-97.08664652452961,19.31139405312331],[-97.08525376698088,19.310947080013193],[-97.0853622927886,19.310760879892484],[-97.08568907552376,19.310101360889348],[-97.08521555104869,19.310312563629964],[-97.08453457226938,19.310074826071627],[-97.08424354621621,19.310273540884566],[-97.08253603082716,19.310760012909896],[-97.0824698760074,19.311220494429108],[-97.08214505261628,19.312674445486437],[-97.08200332301595,19.313309819779363],[-97.08152036040258,19.313595881317895],[-97.08004217250357,19.313671314988085],[-97.07966085091726,19.313467132385654],[-97.07939249265962,19.313446112533313],[-97.07929254730101,19.313790798643367],[-97.07890825008758,19.313841334645076],[-97.0788019249357,19.31473182967676],[-97.07834086749762,19.314781555742513],[-97.07814756380458,19.31490689469399],[-97.07779421962312,19.314909306484424],[-97.07758478371323,19.314979045444602],[-97.07743204141292,19.31506736456106],[-97.07729930798013,19.315065965374174],[-97.07705262001008,19.31508136260379],[-97.07670708380982,19.31543743553101],[-97.07641950256397,19.31570418987957],[-97.07603583833071,19.31607784195296],[-97.07580512712047,19.316345210183783],[-97.07548131228128,19.316467688056093],[-97.07483449161714,19.316640719407303],[-97.07422582749109,19.31679616849982],[-97.0739957446583,19.31700957734813],[-97.07384215574518,19.31716983037211],[-97.07313213383208,19.317881761178683],[-97.07254221070832,19.31805538491966],[-97.07238584550629,19.318449428252563],[-97.07239787502596,19.319043091901847],[-97.07201229522013,19.31957858876507],[-97.07190903480381,19.32029694270085],[-97.07152547652674,19.321137380240486],[-97.0701846520762,19.32132470683331],[-97.06963417011048,19.321157670100774],[-97.06772728727714,19.32069414619474],[-97.06688207101229,19.318923219967246],[-97.06750822045922,19.315229750385527],[-97.06627674703998,19.31562142988855],[-97.0652432395986,19.3150539577386],[-97.06519346254214,19.314749884823982],[-97.0651686061745,19.314597841148895],[-97.06493124697715,19.314367668214686],[-97.0641605603007,19.314131820291834],[-97.06352559900768,19.313695067309936],[-97.06315285038289,19.313640516302655],[-97.06288676728502,19.313587097379866],[-97.06246189502303,19.313430804878976],[-97.06195849154102,19.31314720901628],[-97.06153836057268,19.31258624905405],[-97.06156801677287,19.312333597914403],[-97.06170761659735,19.31180388230257],[-97.0611490820749,19.311671463477182],[-97.06022824948968,19.310599261288473],[-97.05993967656104,19.310191461845875],[-97.05958551235392,19.310150637211905],[-97.05895753015062,19.31038942018398],[-97.05858658879191,19.31100087406986],[-97.05838887680761,19.31129328712757],[-97.05774546739423,19.311922055336595],[-97.05748919324299,19.31203405089417],[-97.05614201689667,19.312060757956147],[-97.05507883619475,19.312196133674945],[-97.05436117297688,19.312696147380393],[-97.05342951045697,19.313423643559815],[-97.05251659118414,19.313940817733],[-97.05212398311278,19.314325006358047],[-97.05180045828166,19.314412320214842],[-97.0507355614318,19.315179100780483],[-97.05040580363442,19.315902625050626],[-97.05002920135121,19.316779566995308],[-97.04974973438664,19.317046428462618],[-97.04926262888625,19.31729694197037],[-97.04903856109206,19.31724447724622],[-97.04860658451776,19.317185195254467],[-97.04796081660169,19.317177122068586],[-97.04714661545273,19.317168405318796],[-97.04685102119606,19.317442488241],[-97.0465647759944,19.318261255462517],[-97.04658819081124,19.31977892650542],[-97.04614912246069,19.320044380390925],[-97.04568045336913,19.32125618955064],[-97.04513820107854,19.32100846037423],[-97.04505704039661,19.32080955588583],[-97.04472721643913,19.320449572772077],[-97.04446265452799,19.319872443754264],[-97.04419358509949,19.319671538841646],[-97.04378004637869,19.3193304522768],[-97.04330599462014,19.318810492346017],[-97.04320419399568,19.318591569911575],[-97.04305803295284,19.317275480381397],[-97.04290701858099,19.31667378817707],[-97.04300007020163,19.315499637393543],[-97.04251055878541,19.31454427327685],[-97.04230207714477,19.314342006744596],[-97.04204740659043,19.31358917603626],[-97.04200333341521,19.312863615120193],[-97.04182504662168,19.31233664235822],[-97.03700602229173,19.309884372061163],[-97.03688303832132,19.309619292190064],[-97.0367321809349,19.30954225249542],[-97.03611902972102,19.309318434132138],[-97.03669939702309,19.308594356133483],[-97.03657864189734,19.30831686012118],[-97.03512170564613,19.307252822527687],[-97.03479749741041,19.30694640030464],[-97.03450838493939,19.30677330214445],[-97.03221518604897,19.30060343044329],[-97.0309905802498,19.2973267706127],[-97.02528463345573,19.294769490163276],[-97.02523459639713,19.29466433365735],[-97.02463998329563,19.294296303176793],[-97.02338795873692,19.295763546865658],[-97.02249098870402,19.296120989578924],[-97.02138915586306,19.296261234732185],[-97.02056075401254,19.29653487846406],[-97.01947505051743,19.296830887548822],[-97.01825722345001,19.296973238667817],[-97.01672909825703,19.296718201787485],[-97.01645646530801,19.29658517732156],[-97.01625316675631,19.296387867451983],[-97.0158019270745,19.29590606899768],[-97.01518181044332,19.29615945112664],[-97.01394843715406,19.296102681839443],[-97.01328445989111,19.29620384876455],[-97.01303128960564,19.29635282430064],[-97.01261786464579,19.296521739216644],[-97.01227511531022,19.296518007109796],[-97.0117508864301,19.296403920462808],[-97.01081506623336,19.296307016871538],[-97.00926544739843,19.2959432923426],[-97.00898219044757,19.295863287262534],[-97.00865798998728,19.295840514310328],[-97.00845568883148,19.295799834312106],[-97.0081951152008,19.2955469321887],[-97.00713958569463,19.295631578835184],[-97.00681096023237,19.295974231928426],[-97.00668393551746,19.29641526822695],[-97.0058717016804,19.29650257883725],[-97.00463506525807,19.29646982823556],[-97.00300526661977,19.29541328326917],[-97.003012501483,19.29481706349503],[-97.00273797361473,19.294044633361125],[-97.00213341797371,19.29373025046681],[-97.00165169636097,19.293321043413528],[-97.00100918202588,19.29279464112534],[-97.00044675798966,19.291814708760057],[-97.00043094986489,19.291450116784063],[-97.0004553773635,19.2911051565344],[-97.00045910456276,19.290798321487955],[-97.00001476771342,19.290755087660955],[-96.99971547063285,19.290425757148228],[-96.9993732067208,19.290306921160948],[-96.99901044386229,19.290207050977358],[-96.99882896199756,19.290166710057235],[-96.99866678205166,19.290203284332392],[-96.99848386936418,19.290277998185616],[-96.99819781455773,19.290524194748343],[-96.997259503539,19.289535750629568],[-96.99686730700518,19.288534103308052],[-96.9961030555425,19.288199666389346],[-96.99573959958775,19.288157310369854],[-96.9948868682423,19.288039372347498],[-96.99375975992825,19.28776459436898],[-96.98594248755529,19.281306807887233],[-96.98595219157278,19.28051325538462],[-96.98669363392804,19.277818677675725],[-96.98723095949333,19.27857188905574],[-96.98748599508633,19.278848405233532],[-96.98811704233799,19.27881319647213],[-96.98919648871322,19.27873495174748],[-96.98943439569126,19.278676204537874],[-96.98984799807016,19.27822298022187],[-96.9896390374617,19.277478562260967],[-96.98950628688459,19.276941076889216],[-96.98984619317065,19.276468216286446],[-96.99036674117303,19.276266116817396],[-96.99079932829608,19.276232097566663],[-96.99130247920101,19.27626782351831],[-96.99151486113641,19.276040092394226],[-96.9912602007546,19.275518918926082],[-96.9912327865784,19.275345242859316],[-96.9910672956886,19.274905721351615],[-96.99141384572863,19.27395658158656],[-96.99152370902516,19.273204597804124],[-96.99345971517067,19.27197320866736],[-96.99318298507893,19.27072211065689],[-96.99438859691645,19.270499872697144],[-96.99469054100865,19.27023913551278],[-96.99468915948307,19.26918333420167],[-96.99467937041948,19.26839495157816],[-96.9947815134409,19.268094272411076],[-96.99514261005828,19.26740338625143],[-96.99507086873939,19.265231833047324],[-96.99434982732214,19.264262690616818],[-96.99530094507907,19.26372956777442],[-96.99628368508479,19.26350882349965],[-96.99666456425433,19.263187882907857],[-96.99746646063454,19.262058727824808],[-96.99785207113763,19.261347682434405],[-96.99833612264433,19.260995348428196],[-96.99875203239213,19.260609747934097],[-96.99892769188477,19.26025403595031],[-96.99913878502082,19.25980116925257],[-97.00011633311465,19.25831630174963],[-97.00066456890005,19.258322297560937],[-97.00097134540204,19.258455698337798],[-97.00168656672463,19.25882115208185],[-97.00206348632304,19.258825271312162],[-97.00323240089978,19.25851290956001],[-97.00354432845666,19.258223703531485],[-97.00388255999815,19.257760809312003],[-97.00419043112248,19.257446805594384],[-97.00440989718089,19.25690104367112],[-97.00420997967638,19.255831379124118],[-97.00338871196794,19.255851260781697],[-97.00249231921504,19.25454319651857],[-97.00271667600231,19.25359356892244],[-97.00394853986643,19.25230874308096],[-97.00428785507182,19.251908524636463],[-97.00503011928737,19.25087800168467],[-97.00492856312388,19.24895692853238],[-97.00374449534769,19.2474927482844],[-97.0033181823959,19.2466069783884],[-97.00225969635125,19.243796577928663],[-97.00231994595111,19.243330769259558],[-97.00237897281977,19.242968594661647],[-97.00243922173371,19.242502770746967],[-97.00244486620124,19.24203636573884],[-97.00239716120996,19.24146571565427],[-97.00229043079958,19.241257225170727],[-97.0013826896145,19.240784704317548],[-97.00097081523029,19.24059312613116],[-97.00090562377557,19.238858043446157],[-97.00117296153508,19.23880898109377],[-97.00102355334747,19.237615259616177],[-97.0011930388531,19.237150629175403],[-97.00123451131572,19.236546014067756],[-97.00175801987433,19.23621165947486],[-97.00296648900638,19.235967456471087],[-97.00343531215503,19.235719653376748],[-97.00381434594084,19.234882180068098],[-97.00415121684944,19.234519148658364],[-97.005016078893,19.234746278323314],[-97.0052363264906,19.234693145809956],[-97.00545146768087,19.234370645321974],[-97.00541200632898,19.234190130041043],[-97.00543978148414,19.2337761501322],[-97.00564260094927,19.23250635813156],[-97.00620885815528,19.23184442946433],[-97.00709909750623,19.23151039248671],[-97.00748495817862,19.231204279140456],[-97.00827171689724,19.23098542215689],[-97.00876293925091,19.230993209676853],[-97.00982583657998,19.2316613381048],[-97.01059165390217,19.23138167134573],[-97.0127200692416,19.23178924147237],[-97.01391616149601,19.231922987497114],[-97.01486579620172,19.23194597912277],[-97.01547852836796,19.23063762251553],[-97.01591367030369,19.229863578049162],[-97.0172535589569,19.22825207065017],[-97.01868625827188,19.227951039272057],[-97.01979042011862,19.227239479792615],[-97.01989163189705,19.226743176477726],[-97.01984887335948,19.226335754331558],[-97.02042152302005,19.226020647463145],[-97.0204700316545,19.224105277938122],[-97.02037456383187,19.223505289419506],[-97.02027730563793,19.223183771406923],[-97.02065896220375,19.222607491544693],[-97.02123431310434,19.22248835601482],[-97.0218463594652,19.222573940037194],[-97.02317973993075,19.22243665175796],[-97.02369808281446,19.222080903972596],[-97.02396876936638,19.221749970708345],[-97.02441035179692,19.220970925936513],[-97.02450704617866,19.220546736151334],[-97.0246511450577,19.21974568750312],[-97.02489543242848,19.21913242804959],[-97.02551381732616,19.218940925542597],[-97.02603349139946,19.218820546557424],[-97.02632988941707,19.218654244548475],[-97.02700004255973,19.217911834320034],[-97.02777870375081,19.217186646767402],[-97.02888417470149,19.217498924456436],[-97.0293178215324,19.217774554501943],[-97.0296852565101,19.218283746864756],[-97.0300916899032,19.218621541521316],[-97.03093759821706,19.21844203964963],[-97.0312073655,19.21763537105909],[-97.03224516069963,19.217446620764008],[-97.03471619502284,19.21625681225953],[-97.0350828338893,19.215383972350708],[-97.03520917657949,19.21480422218673],[-97.03544444014562,19.213163407189995],[-97.03620973906266,19.212330216140117],[-97.03736343253433,19.212000237313305],[-97.03901355780607,19.21139595995004],[-97.03950731409321,19.211053820695668],[-97.04143951052538,19.21169075599397],[-97.04176278836633,19.211084932009385],[-97.0422381047295,19.210518523233702],[-97.04376444344393,19.210418146724464],[-97.04496053842075,19.210637189449187],[-97.04517597002314,19.210323638594218],[-97.04556071792632,19.20968378999629],[-97.04571566962272,19.20912774622832],[-97.04628231434708,19.208842305029634],[-97.0476610439303,19.20835778594875],[-97.04762941984171,19.207741350822175],[-97.04819057307856,19.207541818053414],[-97.04892426751161,19.207524635205516],[-97.04972725547287,19.20729316833939],[-97.0503119761824,19.20696722021529],[-97.05155961934673,19.20681293312532],[-97.05286090884414,19.20497843819834],[-97.05285359085269,19.20284291613109],[-97.05229196992809,19.20250889547833],[-97.05198986929622,19.20195156960841],[-97.05327969473973,19.200374641666258],[-97.05567963179402,19.19826814143636],[-97.0560637500945,19.19709304385941],[-97.05577568319609,19.196393911676182],[-97.05525223516219,19.195502669176108],[-97.05511463707637,19.19459559544015],[-97.05485193707756,19.194793357321885],[-97.05438683146502,19.19493592350227],[-97.05410523185321,19.19424688778912],[-97.0538394858649,19.193121353192396],[-97.05200129279245,19.19125881324061],[-97.0518345929151,19.190795573023422],[-97.0513708087276,19.19030078786659],[-97.05115969517396,19.189957985547778],[-97.05079482391596,19.189361323339256],[-97.05022643429038,19.189155273566428],[-97.04964250094673,19.18890538652596],[-97.04950275682216,19.18864564068707],[-97.04948874723908,19.18793641698028],[-97.04977303362125,19.187007693639202],[-97.04985068389789,19.18632437508512],[-97.05001957621943,19.185794607193543],[-97.05016360804427,19.18522220495555],[-97.0491749428121,19.18418826757255],[-97.04890270651327,19.183824619795985],[-97.04868191076332,19.183253997429915],[-97.04824553699785,19.183177081142503],[-97.0476306505679,19.183782873432108],[-97.047515687648,19.18392515956998],[-97.0462005737225,19.183256014511528],[-97.04601834751122,19.182832720901047],[-97.04601384882892,19.182352659896765],[-97.046103897504,19.181687909047014],[-97.04538703445314,19.18087147920221],[-97.0448000180644,19.180055566888882],[-97.04496621990592,19.179769409300377],[-97.04515670436234,19.179123437408578],[-97.04519798031669,19.178476986298335],[-97.04477515816706,19.17790655349245],[-97.04278936332844,19.177234439645247],[-97.04219042345642,19.17648436638143],[-97.0419886691962,19.175873425766724],[-97.04153713281823,19.17491072370308],[-97.04138561368882,19.17441721094474],[-97.04130854855345,19.17394684366633],[-97.04147260237119,19.17234534445305],[-97.04303607919627,19.165004938249467],[-97.04256291036586,19.163715031959953],[-97.04217747293427,19.163728497040722],[-97.04192153577276,19.163772355101912],[-97.04175005173494,19.163805699722843],[-97.04147527219476,19.163993125538695],[-97.04135239154999,19.16400363731009],[-97.0412111772618,19.163991724040784],[-97.04107103401867,19.163950737774144],[-97.04074096824803,19.163737219388736],[-97.04060408629118,19.163576888775424],[-97.0403504147543,19.163032145766863],[-97.04015819020009,19.162905385258625],[-97.0398447558664,19.162923268196096],[-97.0396309535883,19.16277111674799],[-97.03936900595244,19.162648832555647],[-97.0392615361535,19.16261429435366],[-97.03904604498416,19.162410870372355],[-97.03896834297808,19.162304976509233],[-97.03889161876657,19.162023441768497],[-97.0386862575208,19.161215266614136],[-97.03911523138567,19.160183201499876],[-97.03919994294665,19.159872137205753],[-97.03892747301165,19.15929359612045],[-97.03846373132723,19.158929628954752],[-97.03846250035758,19.158627361250353],[-97.03855816865104,19.158351524948102],[-97.03830628919661,19.157674052600214],[-97.03858219085367,19.15744053781151],[-97.03913940396143,19.157158524932356],[-97.039365476444,19.156958027845178],[-97.03914923508393,19.1560076809684],[-97.03900026329842,19.15586673867415],[-97.03912265696573,19.155230829305594],[-97.04038475313763,19.154639600178257],[-97.04080480919879,19.154167858444225],[-97.0412003091364,19.153790338264457],[-97.04159619262481,19.153577615100403],[-97.04204013421287,19.15272913607828],[-97.04211302124725,19.15211687105466],[-97.04208769641826,19.151881497813235],[-97.04213608506461,19.151386998244334],[-97.041739105685,19.15112887149394],[-97.04109511028491,19.151177322610465],[-97.04084627788825,19.150706995917176],[-97.0407712985932,19.15042464242066],[-97.04067182118655,19.15026005422601],[-97.04047308669197,19.15002504800873],[-97.04015054229438,19.149813846141],[-97.03945766786245,19.149452985373955],[-97.03898370218178,19.149257031883337],[-97.03854420882072,19.14906999528114],[-97.03810504656605,19.148886235899226],[-97.03781292482068,19.148786936008776],[-97.03740396088313,19.1485122064571],[-97.03704745043132,19.148170077283964],[-97.03649608483403,19.147902973907378],[-97.036136922087,19.147702944235107],[-97.03470529077538,19.146619481928383],[-97.03377820577629,19.145823672574863],[-97.03334067778638,19.145524758469833],[-97.03284947371242,19.145410869313594],[-97.03241052435368,19.1452142584036],[-97.03204439577388,19.14502695208239],[-97.03142750318915,19.14475961855021],[-97.03112725081951,19.144663557829972],[-97.0306842031589,19.144018954287844],[-97.03035973693869,19.14369551324893],[-97.02968605304346,19.143174408868276],[-97.0294329536685,19.142938228359185],[-97.02927559146912,19.14233066379876],[-97.02945021585555,19.141729127412702],[-97.02959599778535,19.141528878088593],[-97.02976605687991,19.140827314089677],[-97.02957293194652,19.140364450352138],[-97.0289790996186,19.139431321254563],[-97.02853193371857,19.138867220218287],[-97.02825774226909,19.138114422274327],[-97.02815727052041,19.137502522331488],[-97.02808189038751,19.13703182613483],[-97.02778317712011,19.13656458651377],[-97.02765293493155,19.1353754168328],[-97.02690605056029,19.134350231782378],[-97.02755288008376,19.133604759757475],[-97.02786353813264,19.133802242329978],[-97.02799011873196,19.134135561005735],[-97.0284482206809,19.134723901073812],[-97.02882031550428,19.134958560218706],[-97.03033277872055,19.135591086680165],[-97.03095328602734,19.136131281611085],[-97.03176267148086,19.13666432874743],[-97.03200857289954,19.136672427806843],[-97.03220163436481,19.13654112150715],[-97.03267503145497,19.136102730617324],[-97.03320487049359,19.135748924094912],[-97.03378964700642,19.135779096057433],[-97.03387586478482,19.13593480462316],[-97.03402060108527,19.13637634422338],[-97.03423298660749,19.13685287133592],[-97.0343144483175,19.137139464788902],[-97.03445600757368,19.137668256375946],[-97.03964766278284,19.132851752001045],[-97.04200824580437,19.128597905225945],[-97.04319252426615,19.128239106726085],[-97.0458398722891,19.12802893582017],[-97.04699529415802,19.128583732061998],[-97.04665396162909,19.128985143730176],[-97.04671394413634,19.129147582485245],[-97.04741253920844,19.129333297712435],[-97.04763443943864,19.129513786284974],[-97.04792512312235,19.129769811828282],[-97.0481772563711,19.130134129449175],[-97.04849437312242,19.130456756719298],[-97.04885046545957,19.130655331502567],[-97.0492494190213,19.13075546049322],[-97.04965163907059,19.130865990737732],[-97.05012639139863,19.13124502343379],[-97.05040639735597,19.131565744303373],[-97.05099313689016,19.131977160197096],[-97.05151830155239,19.132150991304115],[-97.05217074637591,19.132320190222117],[-97.0525257830152,19.13223811063807],[-97.05281735918675,19.13227267310225],[-97.0531337409335,19.132351307256727],[-97.05473287110306,19.133657839256102],[-97.05563307065074,19.134002174271018],[-97.05633011596672,19.135564043096565],[-97.05802238795798,19.13740516032857],[-97.05808021583493,19.137864199107298],[-97.05750430240101,19.14016266126606],[-97.05980773022014,19.14223656569129],[-97.06109088605666,19.142421695406256],[-97.06399058705085,19.144504260107567],[-97.06441792446537,19.145229924277032],[-97.06529958108018,19.145485263866476],[-97.06589972654791,19.145780224063003],[-97.0670282411242,19.147175301854077],[-97.06798019396962,19.148459004580104],[-97.06645272125155,19.153139436887557],[-97.06642014663538,19.154046572988193],[-97.06600732546735,19.15472558237559],[-97.06504911536678,19.155442956509376],[-97.06491469014952,19.156459978857868],[-97.06469072214412,19.157272371107524],[-97.06452837327032,19.158056308070115],[-97.06645642806905,19.15927961956828],[-97.06669270395457,19.159455316510957],[-97.06783179266682,19.15930951415112],[-97.07150936578381,19.157937850347594],[-97.07510158070903,19.157882535892327],[-97.089169558148,19.162970951333875],[-97.08939628610239,19.1616554861713],[-97.09088885411768,19.162765940998383],[-97.09114632399451,19.162838025298186],[-97.09190744015251,19.16283841342363],[-97.09297275362115,19.161303818899114],[-97.09345069243057,19.161172885665223],[-97.09397284711929,19.16132387482952],[-97.09580135301121,19.16191558585672],[-97.09597754490989,19.163489023914792],[-97.09786215889824,19.164088276456084],[-97.09961550773227,19.164444561332004],[-97.10035234471792,19.164643382675195],[-97.10294317015308,19.166391104714307],[-97.10409486371788,19.1665213819806],[-97.1040701725803,19.16585181122815],[-97.10494922882532,19.16624621286553],[-97.10573263261529,19.16686771775204],[-97.10815420132258,19.167457780961],[-97.10895795398471,19.167719253754626],[-97.10983176544897,19.167181106473436],[-97.11051255192854,19.166951848107885],[-97.11103743481385,19.16704655970966],[-97.11122961728466,19.16691882218936],[-97.11173174970219,19.16634781458248],[-97.11184749276947,19.166161559658462],[-97.11254406198663,19.1647145647907],[-97.11317174868162,19.164676354834796],[-97.11390385419554,19.165734394365074],[-97.11405198861092,19.16647103097688],[-97.11429544543807,19.16683995464132],[-97.11464941657312,19.167004478005992],[-97.11537198009432,19.167212057173742],[-97.11553996936561,19.167211353699656],[-97.11588078441451,19.16707504322386],[-97.11598197915117,19.166955530172288],[-97.11629336816833,19.166763704234256],[-97.11642289730725,19.166724064790174],[-97.1166391572537,19.1668382088385],[-97.11693719178089,19.167101088329844],[-97.11718683516489,19.16728449023435],[-97.11775320002658,19.167638843480802],[-97.11796535470148,19.167743447735347],[-97.11826006599676,19.167171632677423],[-97.11932473895365,19.166303993335532],[-97.12039270803876,19.16634461117087],[-97.1208728267622,19.166810445813894],[-97.12456344147006,19.167741189096716],[-97.12516841361764,19.167770111047957],[-97.12608445709839,19.167404746153693],[-97.1279001817154,19.16833869176736],[-97.12880661637837,19.168101323377698],[-97.1298773719459,19.16769381698606],[-97.13073160964433,19.167684245657085],[-97.13144756990971,19.16730276831794],[-97.1328755585684,19.165998184008913],[-97.13334351666691,19.165594772045495],[-97.13408134192889,19.164812792342843],[-97.1343961624396,19.163798084652512],[-97.13496135751876,19.163134981405733],[-97.13566395144682,19.160916682082984],[-97.13613154584351,19.160466163493993],[-97.13652547871794,19.160110327072687],[-97.13687498320814,19.160461278594198],[-97.1377228560757,19.16118575090354],[-97.13804946863848,19.16179590013212],[-97.13904244209971,19.162024864501348],[-97.13958986548658,19.162327408692477],[-97.1397889758531,19.162443846794304],[-97.14003747809659,19.162536409347126],[-97.14058250162515,19.162509267551457],[-97.14120255701732,19.162575829089633],[-97.1416253910262,19.16278498952704],[-97.14207421109307,19.16315882729043],[-97.1440123504675,19.163852525653397],[-97.14443467510586,19.163991033635853],[-97.14503099067554,19.164199039799996],[-97.14567738896233,19.164477362695948],[-97.14647058414562,19.164495661287162],[-97.14808469433035,19.164932414933958],[-97.14871119420445,19.16498999621217],[-97.14919053375553,19.164807888276187],[-97.1505859520891,19.164680310737026],[-97.15101082922382,19.16434786792422],[-97.15223352347101,19.16292664887777],[-97.15305158408387,19.16253355800518],[-97.15332565013966,19.162538233590453],[-97.15356144240843,19.162648250199254],[-97.15444856835347,19.163193078844927],[-97.15459479342695,19.16343544703568],[-97.15507477917845,19.164441405525338],[-97.15566836222399,19.164929069110258],[-97.15661321452893,19.165346664571587],[-97.15691094905804,19.1653917764952],[-97.1576285892346,19.16524568101653],[-97.15866857121625,19.16512097698171],[-97.15926351851817,19.165140546706937],[-97.15988377155168,19.165230595624905],[-97.16045184377282,19.164967739247004],[-97.16114330144455,19.164633403409596],[-97.16181528755311,19.16427963821218],[-97.16303140197692,19.164315881553307],[-97.16397526854308,19.163864797917313],[-97.16479964464753,19.16364880802729],[-97.16581319052017,19.16367642250816],[-97.16659519322582,19.16379639323111],[-97.16708541396775,19.16383987128461],[-97.16810293798596,19.163849050252793],[-97.16911772377671,19.16384972211057],[-97.17092946018624,19.16419074538686],[-97.17132791192495,19.164447106597322],[-97.17334268028856,19.1654225943592],[-97.17401480454828,19.16581839993347],[-97.17433874134025,19.166051709583826],[-97.17500769314415,19.166023626780145],[-97.17568812349168,19.166470044315815],[-97.17712545622885,19.167540986638187],[-97.17779154681574,19.16808590641415],[-97.17837208686359,19.16876952392289],[-97.17944254829598,19.169125723220134],[-97.1803363334489,19.169331597418932],[-97.18169514485629,19.16875713566094],[-97.18216051897906,19.16802390076947],[-97.18237983639273,19.16752784633138],[-97.18323248702757,19.165567342963584],[-97.18339290548926,19.164720155327245],[-97.18353461995173,19.163321894738317],[-97.18368202088027,19.16273821743806],[-97.18397976228187,19.162783285718376],[-97.18554353126422,19.163102309066232],[-97.18805510043046,19.16421554832965],[-97.18843165503984,19.164848833509836],[-97.18911988648449,19.167364025825407],[-97.18947327555759,19.168209423316284],[-97.18945563482089,19.169151566067853],[-97.19133889235019,19.170389653406062],[-97.19458906534163,19.17181258221217],[-97.19491941428089,19.170621273915515],[-97.19516204761953,19.169936635876297],[-97.19537321210055,19.168908269455983],[-97.19641659683248,19.167099349000466],[-97.19664416230182,19.166538835064898],[-97.19727770893076,19.16625044124197],[-97.19738888798611,19.1660441585218],[-97.19927976572887,19.164907310384763],[-97.20229031600923,19.162380543925906],[-97.20324551671524,19.16147209280075],[-97.20463623485256,19.16108673505488],[-97.20619298430177,19.16048715340031],[-97.20686047001476,19.160270556123123],[-97.20747875257308,19.16010140017255],[-97.20812199737173,19.159955619079028],[-97.20911309638751,19.159925166816492],[-97.20960546933242,19.159497821430364],[-97.20910347929203,19.15867704054341],[-97.20835004971303,19.157386993385956],[-97.2073504481944,19.156310614389326],[-97.20702557141601,19.15595961277154],[-97.20680090836822,19.155749218417498],[-97.20585831159906,19.155638018567117],[-97.20546235318977,19.155711422676575],[-97.20409272244666,19.154839003106872],[-97.2038663156672,19.154346275131843],[-97.20341266286096,19.153243158515124],[-97.20333652071878,19.15298478761906],[-97.20271273989374,19.152329900962172],[-97.20253754972202,19.15207217122935],[-97.20236252853078,19.151837973373574],[-97.20210985222042,19.15113361606757],[-97.20136311409885,19.15059718710836],[-97.20066523202638,19.149966307281602],[-97.20039133587687,19.149756280298902],[-97.20021665644401,19.149569144776024],[-97.19976522478544,19.14877193750675],[-97.19883980402409,19.148107566575675],[-97.1976180754092,19.147647419663485],[-97.19694799357882,19.147146726497795],[-97.19773284302295,19.146125835627117],[-97.19852315975072,19.145816893425888],[-97.19935355272128,19.144333509033117],[-97.20000034849892,19.14401981151576],[-97.20069128874718,19.143604671468267],[-97.20114624127473,19.142704777011716],[-97.20150394064484,19.142090103891633],[-97.20271606060908,19.141259856203817],[-97.20404851897149,19.140829492496437],[-97.2095738065284,19.14034344645978],[-97.21023224172177,19.139995819564376],[-97.21105077489153,19.1390700435835],[-97.21224043545618,19.137671748789614],[-97.21297476637278,19.137849925876367],[-97.21425897753625,19.13839751550421],[-97.21543453621189,19.138461486474057],[-97.2164389840703,19.1371101720747],[-97.21699392830885,19.136717693156697],[-97.21741416061991,19.136740777395573],[-97.2182652428013,19.13677751886337],[-97.21891979719322,19.135690737597372],[-97.21809931610295,19.13506297425363],[-97.21773606452416,19.134944753215905],[-97.2170233464812,19.134296035485477],[-97.21807465044293,19.13256925852994],[-97.21870948997827,19.132107377757222],[-97.22026551918316,19.13024795866437],[-97.22042996939501,19.129896491262343],[-97.2205695341255,19.129208659751328],[-97.22199428621241,19.128053762010666],[-97.22183583334584,19.127588094098257],[-97.22188186530241,19.127408317108177],[-97.22203210567818,19.12720162715766],[-97.2221267980762,19.126993184571973],[-97.22215504827187,19.12629507306542],[-97.22196343146777,19.125827637676366],[-97.22195573939405,19.125387995418123],[-97.22174642940291,19.124766211401152],[-97.22180798279288,19.12432877025617],[-97.22219919343286,19.123673202077214],[-97.22276887491057,19.12334473518547],[-97.22348762103246,19.123313351386628],[-97.22483267061148,19.12268756214877],[-97.22571479756272,19.122560729858662],[-97.22644139047412,19.12263082530211],[-97.22668956272531,19.12261849726201],[-97.22724896697616,19.12231845981927],[-97.22841392944952,19.121112016432107],[-97.22848582034783,19.12066514241343],[-97.22874611024889,19.119978273480513],[-97.22928958018372,19.119557017639636],[-97.2297580004311,19.118979704205458],[-97.23036662680533,19.118423729034987],[-97.23110034765392,19.1174781430733],[-97.23152395327435,19.1172039287394],[-97.23248989360974,19.116447323054956],[-97.23274378373617,19.11556224434969],[-97.23332758100997,19.11472427579332],[-97.23359527408763,19.113423171430895],[-97.23378128871144,19.112869321414223],[-97.23431206564493,19.112423830659168],[-97.2347831406118,19.112167638288383],[-97.23678899740065,19.11012785746857],[-97.23754888866756,19.1095066058478],[-97.23818706722659,19.109305211239587],[-97.23965879272515,19.10852412608375],[-97.24040020378442,19.108457652868708],[-97.24143937133528,19.107940834738542],[-97.24202030753372,19.1076791164096],[-97.24229085686937,19.10737466602842],[-97.24266113973692,19.10669447766486],[-97.2443491489197,19.10598995458156],[-97.24571301641754,19.10577693154346],[-97.2467377911309,19.105435550371396],[-97.24851728087367,19.104917569871134],[-97.25045846187902,19.103425320344343],[-97.25094515301771,19.10290384836179],[-97.25146268406905,19.10253181737528],[-97.25184740265672,19.102178447902077],[-97.25200737379907,19.102069269368144],[-97.25247370477007,19.101787001012383],[-97.25310124786046,19.101470676782128],[-97.2535036890987,19.101703351688343],[-97.25391478504059,19.101687903002414],[-97.25421600465916,19.101612215915964],[-97.25440838885402,19.101660849301652],[-97.25482872622518,19.101808917624396],[-97.25512698379652,19.10181830164828],[-97.25566582890133,19.101709892164195],[-97.25681300904466,19.100654446839997],[-97.25705298970985,19.10051884264101],[-97.25743956736534,19.100226808780974],[-97.25777161996473,19.099879368191125],[-97.25790476728048,19.09983882138181],[-97.25838358155164,19.09934769135964],[-97.25881638444491,19.09884245423393],[-97.2597174239989,19.09885949913223],[-97.26052022740333,19.097109253438077],[-97.26081214829128,19.096871449413584],[-97.26171587570764,19.0953435392168],[-97.26190022703958,19.09430524837063],[-97.2622720716696,19.092019024012018],[-97.26201322112126,19.090623844445474],[-97.26209294605724,19.090128885163722],[-97.26232513259725,19.08839381808599],[-97.2622957380654,19.08752337048702],[-97.26210287244601,19.087032625501536],[-97.26197410761182,19.08609116078611],[-97.26235208627594,19.08493898422944],[-97.26374444995389,19.083730938475355],[-97.26345179498634,19.08098062374387],[-97.26431354186525,19.079611146451953],[-97.26512947449339,19.078645408794273],[-97.26601471522486,19.074464814493638],[-97.26638264053304,19.073258096741256],[-97.26688197513232,19.07129121424424],[-97.26734866090732,19.069854048598188],[-97.26885034577197,19.065220192321192],[-97.26951952166132,19.063917868242527],[-97.26972021106019,19.062130392437155],[-97.2695972852058,19.059152342266373],[-97.26888206057765,19.058606881500054],[-97.2666257024448,19.030313206450103],[-97.26889709552898,19.02826871844843],[-97.2772299504104,19.014949136947962],[-97.27762070631536,19.01206483313331],[-97.27783816812018,19.011446824835446],[-97.27820882413255,19.010826973444978],[-97.27859006220416,19.009404613896606],[-97.27895020256807,19.008837479461192],[-97.27923004777733,19.008081702630875],[-97.27937576741562,19.007681440088845],[-97.27970944997446,19.006101541352734],[-97.28007426528575,19.00550012732947],[-97.28044394379208,19.004993583898454],[-97.280909221927,19.00430243616063],[-97.28150336148343,19.003453793753806],[-97.28197110322901,19.002805595364066],[-97.28230768278655,19.00261677549628],[-97.28247838933271,19.002481020422238],[-97.2829516054203,19.00219671110176],[-97.28373046600962,19.00166730368983],[-97.28424853413117,19.00087566500241],[-97.28512576777462,18.99943084551313],[-97.27892244656465,18.99674697079405],[-97.27289304430974,18.991930726146165],[-97.26961997948717,18.988585105807317],[-97.26129278682271,18.981281999071427],[-97.26056990751528,18.9795085931695],[-97.25825892922228,18.97771421366531],[-97.25812118824234,18.97737604211943],[-97.2579868780432,18.976633651978773],[-97.25654844146516,18.97222116991975],[-97.25659862837108,18.97080966255311],[-97.25660317510307,18.970372491440287],[-97.25703744335152,18.969435137993344],[-97.25732864940068,18.96859749984924],[-97.2577201424296,18.968433107251258],[-97.25804510205944,18.967763498553495],[-97.25829842828682,18.9672279659095],[-97.25905286702863,18.966376929858257],[-97.25916216474712,18.966108818368298],[-97.25910233112631,18.965032425609365],[-97.2591406259429,18.964763646748338],[-97.25922733283801,18.96325141622509],[-97.25920404367912,18.962074665943703],[-97.25889752915265,18.96089489199744],[-97.25883707297089,18.959952881310926],[-97.25863322338694,18.959143911334593],[-97.25856850735295,18.958538012409065],[-97.25858780587788,18.956307202703954],[-97.25842015486711,18.95543155969],[-97.25777033532478,18.953273427612714],[-97.2565677699024,18.952840480805207],[-97.25526273923322,18.948988371381063],[-97.25544940170164,18.947599253997282],[-97.25519495978102,18.94654602534507],[-97.25524410301261,18.945209055265195],[-97.25528969984765,18.944584537771846],[-97.25486974687561,18.943399751327945],[-97.25483591549721,18.94245432367603],[-97.25486265319779,18.941898425678744],[-97.25491882060533,18.941432169608902],[-97.25502018988868,18.940956048384635],[-97.25499619531513,18.940539851186372],[-97.25510617509872,18.940204734040037],[-97.25521608273692,18.939802240809115],[-97.25525507056767,18.93946645557287],[-97.25526555080461,18.938457735751285],[-97.25513283856156,18.93756430774681],[-97.25492727488012,18.936923757258967],[-97.25482750064936,18.93635121507748],[-97.25423437040808,18.93550489117689],[-97.2539902451644,18.93523381667518],[-97.25367506430973,18.934894335441868],[-97.25357347273967,18.934422838682337],[-97.25368520112613,18.933919300326465],[-97.25368904557365,18.933549496861076],[-97.25351723790664,18.93307733906272],[-97.25338225476372,18.932403401978263],[-97.25342089299636,18.932101301381635],[-97.2534243874353,18.93176518224965],[-97.25346442605615,18.93132834418526],[-97.25344559817592,18.929427893404863],[-97.25334610634826,18.928754652596012],[-97.25317081290007,18.928618251735088],[-97.2529600228844,18.92848187874091],[-97.25278647377297,18.928177780181784],[-97.25244350621114,18.92709835670712],[-97.25245189805969,18.926291380998805],[-97.25242136910151,18.925887928335726],[-97.2521156474238,18.92464077921113],[-97.25190591413246,18.924403352375748],[-97.2516265949518,18.924030881418958],[-97.25131710104688,18.923221273078923],[-97.2512134251449,18.922951157244313],[-97.2507296978273,18.921904455076742],[-97.25055398861997,18.921734722980943],[-97.25041454667519,18.92156497038235],[-97.24999369005633,18.921224850845874],[-97.24889995270985,18.920220207075204],[-97.24844473767484,18.919845710448783],[-97.24760051960737,18.91933351481481],[-97.24721586778321,18.918926356282157],[-97.24690219955022,18.91851986745536],[-97.24627479489072,18.91763987488497],[-97.24589225472084,18.91703097068097],[-97.24512535617407,18.91591420595529],[-97.24467535203087,18.914968510680808],[-97.24446704366335,18.914596702205245],[-97.24422429752417,18.914123867386877],[-97.24380698577829,18.91344725581189],[-97.24312451076543,18.91112070396241],[-97.24298852419543,18.91054781531409],[-97.24274578721662,18.910074979175818],[-97.24250312291667,18.90966915638535],[-97.2424500909002,18.90898476064831],[-97.24241814044763,18.908645771424233],[-97.24254584877156,18.90661340969251],[-97.24276946133921,18.90566647747937],[-97.2426075279763,18.904106260717356],[-97.24264944995491,18.90356439584491],[-97.24229657194144,18.903222007824183],[-97.24194263204299,18.902981396379857],[-97.24176831723497,18.902607009791268],[-97.24189547287165,18.90203045312893],[-97.24241768712892,18.901450751938796],[-97.24265706706825,18.901283491877678],[-97.24315665871995,18.900948805489065],[-97.2432583582048,18.900666863763433],[-97.2432817619765,18.90034650944756],[-97.2433830527886,18.900177580231855],[-97.24376286781734,18.8998605953837],[-97.24388481599931,18.89956037071778],[-97.2437498926891,18.899181649117736],[-97.24379138377822,18.899050188702745],[-97.24423256160787,18.898545421709912],[-97.24431339972597,18.89841397072138],[-97.24441391299075,18.898245395638924],[-97.24517901629798,18.89715904280331],[-97.24504507320518,18.89668615072867],[-97.24489699942137,18.89623667024813],[-97.24477374756759,18.895996432441734],[-97.24472964696832,18.8957123876354],[-97.24473229805466,18.895458125294283],[-97.24482812364607,18.895294938994425],[-97.24503520029532,18.895042969605072],[-97.24511482904626,18.89487926791446],[-97.24510313437361,18.89452090920622],[-97.24504205305908,18.894385581757945],[-97.24504376337416,18.894221506436452],[-97.24580248911934,18.893300629254327],[-97.24616144133262,18.89320693870866],[-97.24677884241612,18.893397824421584],[-97.24716291722285,18.893289399375078],[-97.24826908682655,18.89304316095962],[-97.24888640354982,18.89289799315685],[-97.24941632017658,18.892765821934802],[-97.25068324439832,18.89244870447095],[-97.25122788016216,18.89233230243326],[-97.25197051274552,18.892736718299375],[-97.25231710587667,18.893214931252032],[-97.25341239244761,18.893411439318527],[-97.25506479166285,18.89336341991799],[-97.25661447939007,18.893300884569555],[-97.25833758272256,18.893227916967817],[-97.25908335093015,18.894184586143695],[-97.26008472769053,18.894072211627247],[-97.26172746352643,18.893066629039538],[-97.26335183751394,18.892930432130356],[-97.26431586125466,18.89262251533995],[-97.2653592835826,18.891733153866426],[-97.26577089615023,18.891552311757152],[-97.26647175201282,18.891495202947908],[-97.26695598730896,18.891518518380167],[-97.26733849592244,18.89153053765034],[-97.26786326810753,18.89161183277389],[-97.26849938017926,18.891672321814326],[-97.26932950152587,18.89172545404182],[-97.27061238398028,18.891216045406736],[-97.27245353094838,18.890124971422495],[-97.27322907637335,18.88935373012589],[-97.2744189420452,18.888051669129823],[-97.2947532181364,18.869419072223877],[-97.29686988869213,18.867646398438865],[-97.29724177784362,18.86504514993129],[-97.2974060097689,18.86392201731661],[-97.29700486025638,18.863285637336958],[-97.2966254343882,18.862673807554245],[-97.2965977367881,18.862297985167686],[-97.29644733203384,18.8619088679867],[-97.29666111811031,18.861076686407955],[-97.2974688754,18.860924118363528],[-97.29805838609298,18.86076174195165],[-97.29874337302982,18.860370593492632],[-97.29978190092987,18.85996133130709],[-97.30113870079362,18.858355945262872],[-97.30193323619164,18.856206401824693],[-97.30204053494526,18.855815071568145],[-97.30286995842022,18.855332520230775],[-97.30338467800993,18.855386114740952],[-97.30339699831148,18.854160758690853],[-97.30367283232181,18.852349520628763],[-97.30393486714655,18.85191069553605],[-97.30430123521461,18.85137465222641],[-97.3045622807067,18.851033984936805],[-97.3050453366676,18.850804677624694],[-97.30545367945592,18.850343391337447],[-97.30582100130084,18.849853135064564],[-97.30634138369368,18.849291212278217],[-97.30796231093427,18.848157216548373],[-97.30788375704776,18.84700250718464],[-97.30830771263476,18.846292141145625],[-97.30731087846783,18.845151880984304],[-97.30695268296898,18.84495228899516],[-97.30685541784965,18.8443453662328],[-97.30608689525081,18.84391491975714],[-97.30609181169302,18.843424848509244],[-97.30666406795262,18.84289067058279],[-97.30733496023328,18.842749697318425],[-97.30774706851759,18.84280270701106],[-97.308828109547,18.842910331192456],[-97.3091378583888,18.842864240257825],[-97.30949977199356,18.842769356993756],[-97.30996670803245,18.84243054863174],[-97.31054441202144,18.841707569397215],[-97.31139999270732,18.84109700270494],[-97.312799259418,18.84030483113372],[-97.31357431910675,18.839712124564414],[-97.31407348740225,18.838987312697498],[-97.31485406173391,18.83820975146824],[-97.31749012756819,18.837449314038963],[-97.31816078597734,18.83740646606509],[-97.31986079299782,18.837470707418277],[-97.32053194142486,18.837378589793502],[-97.32089627254055,18.837038826348703],[-97.32211194724056,18.835939322944512],[-97.32266707882098,18.835071921408485],[-97.32239126913703,18.83369315088936],[-97.32245249390576,18.83271447881674],[-97.32261777274044,18.83229711016247],[-97.32354042863346,18.83149526606752],[-97.32453419421972,18.830421977516494],[-97.32350662667551,18.8293886230299],[-97.32246660736831,18.82784800898588],[-97.32206052298193,18.827316973240045],[-97.32172030142175,18.825561434534166],[-97.32129211407761,18.824366660717374],[-97.3204843231963,18.82269268777725],[-97.32055128774869,18.821075496847413],[-97.32092239744208,18.820049333568818],[-97.32207194663579,18.81914645685356],[-97.32318231257489,18.818890407427432],[-97.32367667024943,18.818922621626598],[-97.32638272481472,18.818606028097577],[-97.32677332820737,18.81573610697069],[-97.32565392208039,18.813887702710645],[-97.32595301307015,18.813028373465386],[-97.32599533928209,18.811608013795137],[-97.32633938502983,18.81156120344042],[-97.32861612014341,18.809091258670662],[-97.3295982876121,18.808805909801322],[-97.33073563497254,18.808423774676214],[-97.33140762859944,18.808233809620788],[-97.33253574422685,18.807900261169323],[-97.33272454228768,18.807479903718104],[-97.33277773816809,18.806605441838315],[-97.33322209129449,18.804349005783422],[-97.33364965760813,18.80375032310218],[-97.33436822837632,18.80285009241595],[-97.33489950005617,18.80329594659264],[-97.33643339261266,18.803097636307257],[-97.33685534205836,18.801788858939517],[-97.3377544570497,18.79909112991237],[-97.33805249447369,18.799664983461014],[-97.33997799936878,18.800802110539735],[-97.3414323820245,18.801239194122786],[-97.34445192060394,18.80032107472465],[-97.34527223788552,18.799012648932944],[-97.3493811794159,18.795762706672576],[-97.35099515092907,18.794012078684375],[-97.35203696642242,18.792893948918902],[-97.35355882210797,18.790064055057087],[-97.35358965832245,18.787721032065974],[-97.35284342239163,18.787200585491803],[-97.35365689709351,18.78490950764899],[-97.35425371230605,18.783308971636302],[-97.35482436641553,18.779364190261106],[-97.35408749137383,18.77607565773735],[-97.35361012474965,18.775443740653884],[-97.35231325062477,18.775247854089855],[-97.3519969840188,18.77552249067122],[-97.35168575205603,18.775813894615226],[-97.35132257124934,18.776055935406703],[-97.35085894927892,18.776247839339817],[-97.35018262057503,18.776732341575496],[-97.34920688847689,18.77748489927251],[-97.34870367741246,18.777647338461918],[-97.34445267900281,18.77834063811497],[-97.34405942290118,18.77838069186447],[-97.3436915611561,18.778330734763585],[-97.3425061278432,18.778222642553544],[-97.34197966963211,18.77817161594345],[-97.34151586632805,18.778159915794333],[-97.3409176664602,18.778299446305027],[-97.3395735903544,18.777921086469632],[-97.33932531998909,18.777630142371493],[-97.33856293705213,18.77426581760534],[-97.33812571546082,18.771486046864652],[-97.33779453583276,18.770722914895657],[-97.33701276024254,18.768377296246285],[-97.3360748586203,18.767773249466075],[-97.33534731539072,18.767284019532156],[-97.33469742333432,18.76696778128911],[-97.33321291424369,18.767333415509597],[-97.33223677306944,18.76723569226766],[-97.33128555146197,18.76699442770024],[-97.33032051119073,18.767075863405694],[-97.33014226451803,18.76663731314966],[-97.33005900321979,18.7659744003887],[-97.330098902521,18.765552188359266],[-97.33042930811627,18.764956020987825],[-97.33064376584684,18.76439679391001],[-97.33078617691137,18.763912322398596],[-97.33121486460453,18.76243741768502],[-97.33510328324485,18.76150073518704],[-97.3378345396348,18.760678576737632],[-97.33824834070589,18.75951692274026],[-97.34016867206168,18.75696258711747],[-97.34055130992459,18.755919623414115],[-97.34097382269232,18.755022973259656],[-97.34137349720135,18.754540154569042],[-97.34360662909302,18.750432622447136],[-97.34423828760066,18.74944393061935],[-97.34410562008287,18.748589951269196],[-97.34351452420043,18.747462297282823],[-97.34152694993747,18.741617901782092],[-97.339823192381,18.742785279055],[-97.33950576098846,18.74240959037303],[-97.34174668903268,18.740081833537204],[-97.34543226311087,18.734077131545746],[-97.34564959494543,18.733624693522017],[-97.3465135266984,18.730747911982462],[-97.34698284250089,18.727906231660654],[-97.34719436478628,18.72743693284997],[-97.3421494993894,18.725815923965172],[-97.34383700400468,18.724081960261344],[-97.34675916464448,18.72241489057393],[-97.3469271470546,18.720789373723562],[-97.34835945940864,18.719088074292756],[-97.3500058537283,18.717008967991603],[-97.34946470268824,18.71700248416232],[-97.34967921399141,18.716334664224632],[-97.34921642381909,18.716254064314455],[-97.34869854140652,18.715948632250786],[-97.34847538031795,18.71568443741768],[-97.34647488443079,18.711340001156827],[-97.34611292349979,18.709612930145624],[-97.34589424269814,18.70943821820117],[-97.3446307320608,18.708131520363395],[-97.34326994408292,18.70708542299576],[-97.34220029208575,18.705209993836036],[-97.34172867470397,18.70336988111285],[-97.34269068293037,18.701605895930754],[-97.34296784463766,18.701252651398306],[-97.34330981267482,18.700491350487425],[-97.34398313008921,18.699631582256643],[-97.34466568831647,18.697286043565327],[-97.34437925502283,18.696755361068313],[-97.3437381570356,18.69679770919987],[-97.34192882634466,18.69564320681178],[-97.3410103655192,18.694479603835305],[-97.34063299226455,18.693835492211008],[-97.3403834613793,18.69345492386742],[-97.34089970573262,18.691475140049306],[-97.34284116641373,18.688846957643023],[-97.3433821668844,18.687944453737998],[-97.34355350139356,18.686826404761746],[-97.3439745903188,18.685759006487444],[-97.33821433887772,18.68127085872146],[-97.33726109762466,18.678590788863687],[-97.33581913154273,18.67853450089507],[-97.33482035466147,18.679112150711433],[-97.33341877669034,18.68026561919089],[-97.3331135021279,18.680479309242685],[-97.33248978428583,18.681291734619435],[-97.3321500828934,18.68188981074212],[-97.33194072422174,18.68241078377889],[-97.33160037783875,18.682958055373376],[-97.33071419818651,18.681550123655995],[-97.33078102191513,18.680654510681677],[-97.330877468761,18.680217300469792],[-97.33107459705133,18.679748678805822],[-97.32914854989667,18.678040923853473],[-97.32860281559306,18.677946781027117],[-97.32815971753507,18.677550806190027],[-97.32828070317044,18.67727366657141],[-97.32875693804687,18.67681180833989],[-97.32931784192073,18.67634682998454],[-97.3301255039753,18.676065780498107],[-97.33057512689913,18.675439641205344],[-97.3306879556493,18.674701012996252],[-97.33054088725788,18.673664762400506],[-97.33040139411855,18.673144025697866],[-97.32994783026624,18.672097133088812],[-97.32827663241119,18.670726748067864],[-97.32539847199422,18.669064660405866],[-97.32508714343254,18.668012061184584],[-97.32473301357999,18.667703077783926],[-97.32418645766455,18.666088459393166],[-97.32317805633107,18.664308526935542],[-97.32253708323356,18.66455478354851],[-97.32175621638805,18.665505874980795],[-97.32024748933634,18.66629984481358],[-97.31939496826834,18.6667272810447],[-97.31769543365658,18.66702251120182],[-97.31624501361966,18.66699748338806],[-97.31502420290417,18.666625801626253],[-97.3161199945859,18.668939642495047],[-97.31367856807879,18.67071440457579],[-97.31321432382856,18.671455746418815],[-97.31157776290274,18.67199998680809],[-97.31032518903226,18.673293542812075],[-97.30894963000401,18.673778162812766],[-97.30811122517514,18.672776593027095],[-97.30583604933622,18.672527955980115],[-97.30451383934331,18.673613895676],[-97.30320266717632,18.67428561219606],[-97.30256211749997,18.673575584220657],[-97.30132715011234,18.67259107208963],[-97.3002294790748,18.67140056596429],[-97.2986108589472,18.670143389226666],[-97.29796450353098,18.669516273616352],[-97.29767814364789,18.665475327296576],[-97.29712791200632,18.66419697933219],[-97.29347708633867,18.664040375347327],[-97.29334040202838,18.662081170149406],[-97.29333658221759,18.661591995316144],[-97.2934239053871,18.660280105380423],[-97.29297887261913,18.65909585583404],[-97.29258507609103,18.657402874658487],[-97.29185183681062,18.656404602738974],[-97.28800360448503,18.65361395891773],[-97.28657217987143,18.653228156782745],[-97.28208351553388,18.65224326013356],[-97.2818655038235,18.65249328844982],[-97.28102520237331,18.649134387627612],[-97.28092905918515,18.647524226263897],[-97.27990552169331,18.64573410797425],[-97.27802844550826,18.643347222115665],[-97.27875585696052,18.640531471552833],[-97.27918353520886,18.640149261603597],[-97.27717590453028,18.636875480619153],[-97.27633252380855,18.636562243949356],[-97.27440248787667,18.634978025326006],[-97.27385211787157,18.63339562809449],[-97.27351772251046,18.632929757926263],[-97.2734064727623,18.631417263719413],[-97.2722502585446,18.62922849507237],[-97.27261619349173,18.628689160600175],[-97.27185192870445,18.62777915450266],[-97.27072435974327,18.627771953742126],[-97.26984596312911,18.62820512352522],[-97.26809058092698,18.62838156817594],[-97.26832350824691,18.62786530192534],[-97.26855920367325,18.62687432639615],[-97.26741925801832,18.627301263197296],[-97.26666213048611,18.627212290478496],[-97.26630964858367,18.627231900097115],[-97.2654474430501,18.6271225987702],[-97.2640306754181,18.62693553264586],[-97.26379336380626,18.627036586366955],[-97.26306097469325,18.626537424309504],[-97.26071448398699,18.624505343364547],[-97.26004479608434,18.624415357375767],[-97.2594307622337,18.624267026664143],[-97.25825645446179,18.625030091953704],[-97.25661261799343,18.626319305596894],[-97.25185131429697,18.627241042440176],[-97.25123231702958,18.62817621341287],[-97.25073949687425,18.629154431289862],[-97.24947873682345,18.63265365237396],[-97.24889679540502,18.634263446354055],[-97.24615369302637,18.63810072662443],[-97.24524325774541,18.640218639585896],[-97.24272438773914,18.641671919318014],[-97.23859316576272,18.64374584049483],[-97.23542915086091,18.643569479327027],[-97.23522616634381,18.643016400996885],[-97.23480591312375,18.642680778607655],[-97.23392706533082,18.642317677007668],[-97.23228976082231,18.64118159623257],[-97.23184032309643,18.641105506918905],[-97.23184574665868,18.64137254971604],[-97.23188153634845,18.641725686406232],[-97.23065015021513,18.641091077059457],[-97.22859617807075,18.639373816037732],[-97.22691897434026,18.638896046952084],[-97.22659090005283,18.638921692700535],[-97.22414141050456,18.63630832529259],[-97.2234039125218,18.634666497164176],[-97.22027736859553,18.628938594784586],[-97.2182479123187,18.62782828507693],[-97.21638807425285,18.62647611924325],[-97.21593543032077,18.62593077582727],[-97.2145653787531,18.625283515632873],[-97.21415362906441,18.62523933206444],[-97.21307299079035,18.62535803266735],[-97.21081933569957,18.625880984134028],[-97.21023114634437,18.625999635862854],[-97.20898799751853,18.626360545019793],[-97.20787500758541,18.626722685683035],[-97.20695960046237,18.626900151303346],[-97.20643621927115,18.62708171306633],[-97.2061712110708,18.627451926874926],[-97.20492478204017,18.628123574752294],[-97.20460343508807,18.627623520040004],[-97.2032346736762,18.62754814524402],[-97.20270855992533,18.627915859119867],[-97.20133260695565,18.628523939632203],[-97.20093676555456,18.628955198221263],[-97.20009847856863,18.628670633219997],[-97.19691875353146,18.62958115026862],[-97.19526977385539,18.628155427428],[-97.1945083781838,18.626647772741933],[-97.19249295338182,18.625457287452377],[-97.19203933564654,18.623535293634234],[-97.18861715451499,18.62187881177357],[-97.18798193477755,18.62025749612917],[-97.1860256191166,18.62017634153591],[-97.18554790864783,18.619694180406555],[-97.18493043189454,18.618861378840563],[-97.18425460205037,18.6170791927226],[-97.18158767894721,18.617256063297134],[-97.18116935828874,18.617618920374696],[-97.17971397035859,18.617306670663424],[-97.17741239573115,18.617245731171238],[-97.17676706111467,18.617189655406946],[-97.17464047772813,18.613262816354222],[-97.17458343049015,18.611891245830236],[-97.17460113231141,18.610897412382712],[-97.17454240476167,18.61033791949137],[-97.17442341395468,18.60921855652782],[-97.17437198169091,18.607975240954488],[-97.17447298727603,18.60703413063169],[-97.17373830970126,18.606373628059714],[-97.17276014194255,18.606158226382775],[-97.17086965250866,18.605640122944408],[-97.1694244461126,18.60503873264952],[-97.16819837809732,18.605803104355175],[-97.1678719645642,18.605862231983167],[-97.16721637731393,18.606166282903757],[-97.16488167264129,18.60604074716622],[-97.16297838137257,18.606000734904796],[-97.16167719079044,18.605677603704407],[-97.15992803016627,18.604542314735795],[-97.15953883629714,18.604351962735507],[-97.15779448514138,18.602843969118453],[-97.15710700684423,18.601805246984554],[-97.15638983513412,18.600994052464614],[-97.15397488424588,18.599511272071766],[-97.15247584345855,18.599126417143736],[-97.15194716066912,18.59901241130325],[-97.15047887253394,18.597495393900317],[-97.14957968482406,18.597043653054357],[-97.14898932336371,18.596793539064777],[-97.14780090855538,18.59728233579176],[-97.14651066872591,18.596831467382117],[-97.14144276136619,18.59641790019913],[-97.14585782930419,18.582159427333295],[-97.14400399539534,18.578383388290604],[-97.14456306895698,18.570927854928698],[-97.12378739324492,18.542852184364506],[-97.11582539607525,18.53336461818168],[-97.11539788214827,18.532870095760757],[-97.11369724800534,18.53137938506086],[-97.11360850241482,18.52531489061431],[-97.1135807199446,18.52400819728831],[-97.11269823171625,18.52131452386567],[-97.08942626074906,18.488426840460477],[-97.08347138902417,18.48394275302047],[-97.07996752655617,18.454507778594234],[-97.07607376241566,18.466001252661272],[-97.07176772920201,18.467805272229498],[-97.06908013649183,18.470473699085346],[-97.06758772088091,18.472479346412513],[-97.06489413753053,18.473116875669803],[-97.0613347946371,18.475928333277636],[-97.06063646290067,18.47725503848966],[-97.06010567926035,18.47796210660374],[-97.05768440293451,18.478408032575658],[-97.05722318756978,18.480509017860584],[-97.05638094714391,18.481233277859587],[-97.05576129112933,18.481950885776655],[-97.05495462026624,18.482974030691082],[-97.05458897834745,18.483967232922794],[-97.0537726147615,18.48387593793541],[-97.0519659833293,18.48573806979408],[-97.05088292159797,18.487806846532806],[-97.04957382927944,18.489943920355415],[-97.04922573267936,18.49202471381068],[-97.04704729320724,18.495688207400917],[-97.0470718419765,18.497633556813526],[-97.0466285203712,18.498620892512008],[-97.04637815088944,18.499560220324213],[-97.04260268332598,18.500633589640472],[-97.04167980848047,18.501379117753686],[-97.04101567822227,18.501759112991238],[-97.03852139160574,18.50455108428025],[-97.03670109512484,18.50503799048181],[-97.03658413758711,18.508071828800155],[-97.03388923503542,18.508968747330016],[-97.03125497994802,18.511476978777125],[-97.02871344660025,18.512940379888335],[-97.02700200322585,18.514104341192024],[-97.02643873059696,18.516486814665654],[-97.02576458141345,18.517071803696354],[-97.02451019807359,18.516290878286895],[-97.02402753876737,18.515818244238005],[-97.02353877552162,18.51451904562515],[-97.02104418459675,18.51242662227446],[-97.01991619581719,18.513456098336178],[-97.01738648686825,18.5155377954012],[-97.01706932179684,18.517862365151075],[-97.01525986318848,18.5208827386885],[-97.01127951242074,18.52263098262796],[-97.0099524780531,18.522753727030874],[-97.00749215098142,18.523293451637358],[-97.00462076359639,18.52553966672633],[-97.00386105933228,18.526619457578818],[-97.00320618683998,18.528698004848593],[-97.00225134408674,18.529588353127394],[-97.00052177299011,18.530880594988844],[-96.99891733685655,18.53191645410641],[-96.99800439362525,18.529205822679387],[-96.99624049109406,18.528511974657874],[-96.99299244637075,18.52991407686625],[-96.988611019833,18.530683804911632],[-96.98481858892308,18.531201937915682],[-96.98154321863535,18.533744860472495],[-96.97901265101075,18.534276349329105],[-96.97378755150783,18.536763521636885],[-96.97547748113402,18.53871505570669],[-96.97619155877089,18.53932421809907],[-96.97722164199348,18.539893801356243],[-96.9777508041031,18.542069908785606],[-96.97680595057233,18.5430753963156],[-96.97614080654756,18.543326055278214],[-96.97460326350568,18.543739227099195],[-96.9695819720539,18.54140815431748],[-96.96710347536333,18.541338524521677],[-96.96520630488777,18.541661823455627],[-96.96476533545393,18.544070972240775],[-96.96488272472021,18.54557601898688],[-96.96315536248824,18.54695522853075],[-96.96206544664983,18.547254069826124],[-96.96020834815016,18.549946765337836],[-96.9591527197174,18.55101216685864],[-96.95750949820433,18.551749205189992],[-96.95617090759777,18.552369070832697],[-96.95295763345314,18.55389900491042],[-96.94692929658657,18.548375151994037],[-96.94592046928824,18.547391477039014],[-96.94429354546833,18.546147318487385],[-96.94319952897297,18.54486669542007],[-96.94214332335167,18.544136236402665],[-96.93695684824053,18.544421462554567],[-96.9377038963716,18.541572282884033],[-96.93155535418902,18.54050284170023],[-96.9259447898059,18.534925536863966],[-96.92332355022853,18.53470916545126],[-96.91877907203065,18.536222202391457],[-96.91633868319678,18.53732070355261],[-96.90961755607793,18.539809825384282],[-96.9090075185394,18.541428630027838],[-96.90788024216965,18.54452343492858],[-96.90695799723608,18.546231429537045],[-96.90672383255242,18.546846080474836],[-96.90378898561409,18.547698057737477],[-96.90162146527467,18.547924050589245],[-96.90010597157408,18.54846989667402],[-96.89925097771749,18.548647949305177],[-96.89476168892764,18.54341316468515],[-96.8937223946989,18.542201227913097],[-96.88798918774671,18.53511338895146],[-96.88685800136898,18.5349764823884],[-96.8863288232672,18.53431938327708],[-96.88588275199982,18.533443608297432],[-96.88468630231745,18.53393252169502],[-96.88055409183141,18.535822378164767],[-96.88021455122083,18.536098784365606],[-96.88001770323075,18.536184373367973],[-96.87961447961175,18.536609975901456],[-96.87933677033101,18.536842954087035],[-96.8777040445176,18.53631942806379],[-96.875927458744,18.535088849636168],[-96.87656108735126,18.533011537132836],[-96.87721286757619,18.532396816073515],[-96.8769633746486,18.53102706594882],[-96.87725410210913,18.530658993627753],[-96.87351326632586,18.523231676429134],[-96.87254494311475,18.52286969324598],[-96.87106699178611,18.52191378594671],[-96.87051362659946,18.522270821770178],[-96.87028256404841,18.523475953612888],[-96.87015362094075,18.523483605130707],[-96.86727415751085,18.526275078449657],[-96.86422245182979,18.523523489558727],[-96.86469474676494,18.52244662201832],[-96.86409825458992,18.521926823472768],[-96.8643569467688,18.520972669752155],[-96.86443171540657,18.519725569794446],[-96.86488685680087,18.51897849406231],[-96.86434084756229,18.517716368595757],[-96.86365727051009,18.516822129267837],[-96.86382822972303,18.515873252384665],[-96.8646716287634,18.515926372251045],[-96.8658766329379,18.516456243440075],[-96.86701335318531,18.516590945649284],[-96.86749236357213,18.516016074404092],[-96.86735921720162,18.514679558078058],[-96.8667798163566,18.514469303737883],[-96.86572666347098,18.514402382418382],[-96.86559214693727,18.514554156097347],[-96.86515116040908,18.51447041148998],[-96.86484513450245,18.51429995324088],[-96.86480015425371,18.513604922178843],[-96.86429557663786,18.51278932309475],[-96.86384740020804,18.512489003495375],[-96.86336173517134,18.511929556700863],[-96.86322407351724,18.511786483972458],[-96.86208257323005,18.510889511421624],[-96.86105267383505,18.510733974704806],[-96.86078015481621,18.51097509161309],[-96.85740464917217,18.511063168084547],[-96.85752548493798,18.511622501390775],[-96.85709490683593,18.51157886070132],[-96.85647432319496,18.511345279146724],[-96.85525924063671,18.509323151980198],[-96.85402673018649,18.508396090194083],[-96.8538403330922,18.50665542575007],[-96.85335442438117,18.506661250368325],[-96.85319880650337,18.506831296064775],[-96.85150888910925,18.506684444235248],[-96.85138855446752,18.507158437119642],[-96.8497777369875,18.50685307179964],[-96.84962985955968,18.506423232743373],[-96.849052089395,18.50638498254409],[-96.84873451735814,18.506501396882356],[-96.8456481255547,18.503963128503415],[-96.84573570433963,18.50388025148203],[-96.8443338372993,18.502360408067204],[-96.84395065166018,18.50230573207955],[-96.84336490118449,18.502525698125794],[-96.84276741978317,18.50166523598483],[-96.84258699046023,18.498740120193247],[-96.84236397202636,18.496489340593598],[-96.84240768436678,18.493420001017853],[-96.8419715146785,18.49361608814894],[-96.84181557526193,18.49361270888278],[-96.84144213722055,18.49336819163193],[-96.83860563977072,18.49318842328006],[-96.835882244824,18.494299848337107],[-96.83218926374155,18.49698585063254],[-96.83097989203986,18.497502302084627],[-96.83007283543645,18.497490336362205],[-96.82745693298824,18.497756223769386],[-96.82509504675073,18.498114752115953],[-96.82454176191851,18.498792796448072],[-96.82473241325766,18.502312533227666],[-96.82509230619576,18.502586048953958],[-96.8266935893692,18.50281014337844],[-96.82719825557268,18.50436349404447],[-96.82605704256719,18.50516899056072],[-96.82407940938242,18.50581571889842],[-96.82407033887307,18.507568169594833],[-96.82418035000865,18.509397684429928],[-96.82419460027762,18.510401067340524],[-96.82403863352289,18.511110579972637],[-96.82309876250633,18.511550303835463],[-96.82210965412128,18.511805833963933],[-96.82092401293738,18.511779496641736],[-96.81879732558832,18.51137396899685],[-96.81815272115864,18.511772888070595],[-96.81706957185986,18.513131566409697],[-96.81652579266307,18.5140144173958],[-96.81516679178014,18.51606309082581],[-96.81460625368351,18.516809564355185],[-96.81344614696741,18.51761791321786],[-96.81291921302937,18.517657450325714],[-96.81196550975204,18.517304161761047],[-96.81065147294157,18.517083595758606],[-96.8100463973887,18.517578553926967],[-96.80759462607449,18.516408935596758],[-96.80714430777334,18.51599301197001],[-96.80645390485904,18.51508877775308],[-96.80628548565409,18.514714077636313],[-96.80568526384252,18.513794663788815],[-96.80462009491265,18.513059011785515],[-96.80419008252579,18.511982567852954],[-96.80262341607846,18.5113616152056],[-96.80211929574278,18.511424205467108],[-96.80082101395112,18.511842624234816],[-96.79950131219312,18.512009801710974],[-96.7974657180402,18.51200891512383],[-96.79668457990755,18.51143018355822],[-96.79565889041527,18.50851056843038],[-96.79529058356468,18.507840542326107],[-96.79586075811045,18.506184217454745],[-96.79430858608924,18.502479450488636],[-96.79425409856435,18.5017027701046],[-96.7976405665114,18.499296199941057],[-96.79786345714462,18.498171020968982],[-96.79783603436226,18.49695372290131],[-96.79532180180468,18.49472926816145],[-96.79296003553497,18.491911769653882],[-96.79404581638698,18.48956198820764],[-96.79655250567066,18.48699368270411],[-96.79688340031134,18.484526294426928],[-96.79632066803038,18.483166555188745],[-96.79592859197982,18.482340844220857],[-96.79579549746433,18.480223281187136],[-96.79425004339765,18.478983519921087],[-96.79288459418706,18.478685062574925],[-96.79143693513566,18.477402567716013],[-96.79067051655471,18.473328877871154],[-96.7914348735556,18.471884645386126],[-96.79103720923405,18.47036011288975],[-96.78958395899025,18.46755689770356],[-96.78797279666583,18.46668666693523],[-96.78643905276522,18.4663529439498],[-96.78300332633023,18.466741576724303],[-96.78224664793146,18.466709904277252],[-96.78066937494413,18.46548187455153],[-96.780351630687,18.464548153220505],[-96.78200888313552,18.46129954812517],[-96.78582890355159,18.459658017708875],[-96.78621226401071,18.458966508582137],[-96.78617440477257,18.458345002591102],[-96.78617279316944,18.45792589215762],[-96.78601788886948,18.457603920346457],[-96.78350427046706,18.453173599042145],[-96.7818882590534,18.45235891258733],[-96.77771629897796,18.450290990189558],[-96.77652800243095,18.449810985651936],[-96.77590268252789,18.44900692890502],[-96.77547469927919,18.447674375029806],[-96.77594509655626,18.446826878551803],[-96.77645525145653,18.44619785048542],[-96.77950377630907,18.445534892116825],[-96.78069447378908,18.44554882992844],[-96.78409244150515,18.445003187472764],[-96.78489711878325,18.44090783900424],[-96.7840042246819,18.439586238789047],[-96.78284084367624,18.43867746421398],[-96.77956665847006,18.436607288423545],[-96.77864089265637,18.43578538414272],[-96.77780723006606,18.4349676852695],[-96.77755278340868,18.434320025740817],[-96.77739888723335,18.433276110239206],[-96.77748840823966,18.432844098716657],[-96.78020595433946,18.431118038035265],[-96.78101196085595,18.42906950718293],[-96.77705772506255,18.427172651341095],[-96.77546876320429,18.42621235006743],[-96.77346886304929,18.426408802819992],[-96.77259980990561,18.427866403224073],[-96.77044176569012,18.429301170999793],[-96.76870888373503,18.429218355092246],[-96.76742337904648,18.429050041785445],[-96.76576377519541,18.42872339666809],[-96.7643028986347,18.427813413116496],[-96.76287245036457,18.426330753879483],[-96.76307374392877,18.425002990302914],[-96.76336508205264,18.4245871378605],[-96.76478765292296,18.42361379343231],[-96.76573336119714,18.42339276756661],[-96.76808130823156,18.42378647394503],[-96.76899033191063,18.424112278452867],[-96.7702929563091,18.42379753932545],[-96.77060771617352,18.422258793396225],[-96.76972464315907,18.420974120116625],[-96.76617435776967,18.418231840275723],[-96.76569346277125,18.41735141193749],[-96.76590583194223,18.416512647322577],[-96.76707534351158,18.413958344951936],[-96.76636498463603,18.412685273306806],[-96.76605541681027,18.412496020037963],[-96.76301476269839,18.411855202181926],[-96.76133301763554,18.41162211446158],[-96.75831766016853,18.40808296963479],[-96.7570594421378,18.408066909462036],[-96.75651530083576,18.40840662320437],[-96.75607957200032,18.409395987254072],[-96.75598714819074,18.410295025685514],[-96.75520834002663,18.411264685708147],[-96.75003494600219,18.410630972543572],[-96.74709185580639,18.40933620117096],[-96.74277090598139,18.407341063181548],[-96.74008645672473,18.40718707080981],[-96.73551099644811,18.40855701378382],[-96.72852255295498,18.409147137089747],[-96.72590464168366,18.408803795179665],[-96.72485329809308,18.406886789276825],[-96.72832332580441,18.40387391716928],[-96.73043581815824,18.402363974629566],[-96.73124250790914,18.3994303239964],[-96.72990292000463,18.39857104947481],[-96.72821070912158,18.397300138942285],[-96.72813249166126,18.396644967759585],[-96.73146408210243,18.39333766953831],[-96.73713453642239,18.390036123924517],[-96.74149721134523,18.383856545646438],[-96.73818133411714,18.381665226795292],[-96.73571061715512,18.38036842239029],[-96.7336623728309,18.378005967327567],[-96.73358607224384,18.376040602864236],[-96.73232690967262,18.37369979491922],[-96.72919724398054,18.374900529432296],[-96.72335558710114,18.37842103740934],[-96.71727436140065,18.380411590591393],[-96.71089770380587,18.380128287317575],[-96.7001777552207,18.38292904922247],[-96.69716715326064,18.38165466577192],[-96.69582078328449,18.37557220414959],[-96.69753138603664,18.37051710655237],[-96.69630887609173,18.364862227472145],[-96.69259751657006,18.366237145215905],[-96.69314632158171,18.37049423529703],[-96.69095760324961,18.37568018199437],[-96.6918312205064,18.380849787961836],[-96.68957983747555,18.381028816361777],[-96.68330059699855,18.378394019041707],[-96.6816151615323,18.375584069276385],[-96.67554956201991,18.380760240180564],[-96.67490903836602,18.382304308947823],[-96.6764453230503,18.3855722911141],[-96.67686821029002,18.38451170500133],[-96.67890447045494,18.383002903150043],[-96.68013023467688,18.38301784215048],[-96.679829646499,18.385119683432492],[-96.67930338831451,18.385763115802604],[-96.67977907855015,18.38686065648426],[-96.68120912055423,18.385864319119094],[-96.68143971233417,18.38565703649408],[-96.68103725200666,18.412204436702325],[-96.68436471509955,18.415688463307504],[-96.70591294704587,18.42289436744062],[-96.70627291755545,18.42335185952328],[-96.70657189967648,18.42398985323109],[-96.70907787839212,18.425695541821256],[-96.70911065956369,18.426817587479775],[-96.70877718273397,18.428139891418994],[-96.7077079617211,18.428441598336406],[-96.70757898210132,18.428836669689645],[-96.70790675881608,18.429180129111614],[-96.70840519457397,18.42932336805552],[-96.70958681926373,18.4296439773953],[-96.70961984932063,18.430341617208455],[-96.70811229781094,18.431122553911678],[-96.7069196436986,18.431691869452322],[-96.70575743537046,18.43153984974157],[-96.70541029824545,18.432583201291607],[-96.70731607496356,18.432010170044066],[-96.70792054495462,18.432299073462787],[-96.70904295833606,18.432419029113362],[-96.70901025643786,18.432628803178147],[-96.70869071626862,18.433293739178794],[-96.70894914158345,18.435285409430946],[-96.7080072256557,18.436153425926648],[-96.70725203319614,18.43644572096349],[-96.70685560848511,18.43623625830992],[-96.70662420322998,18.43571503051635],[-96.70622972056975,18.434931064137402],[-96.7055430549143,18.43496896574925],[-96.70526606986482,18.435451620332913],[-96.70602313489184,18.436754420355612],[-96.70716974547184,18.43735435035495],[-96.70716309731569,18.438207292031564],[-96.70704297130004,18.439245185415245],[-96.70598566162823,18.439960258139138],[-96.7066488173582,18.44024250638006],[-96.70604391358171,18.442168005369126],[-96.70503368822955,18.444192641789243],[-96.70497896930345,18.444957179216203],[-96.70543980281161,18.448339372844146],[-96.70713915792442,18.448525373397956],[-96.70642315199336,18.44946528571853],[-96.70450328377353,18.449720804009132],[-96.70440479194019,18.452927551251094],[-96.70338143577675,18.453749662120288],[-96.7026615791396,18.45468023564871],[-96.7052529632644,18.45631417809284],[-96.70431374781703,18.457166194594436],[-96.70252036871352,18.457734437712247],[-96.69911118216072,18.457295976162357],[-96.69628594551187,18.458031721027567],[-96.69507759097252,18.45854549552945],[-96.6932853479056,18.45744881266046],[-96.6928878108767,18.45851183536996],[-96.69274979252998,18.462359692319467],[-96.69165075458875,18.462379663351612],[-96.69078754427613,18.463262894920888],[-96.68818672280429,18.46273544860975],[-96.68949912729255,18.46563690784774],[-96.69040100406039,18.46670208339765],[-96.69048004081543,18.468349758409715],[-96.68984485855191,18.469332802320537],[-96.68962241232168,18.46934296038944],[-96.68818430891332,18.468420454119837],[-96.68677388398322,18.471964401503897],[-96.68252231568954,18.475533831423377],[-96.68424070246846,18.475450854141627],[-96.6846356582924,18.480303150996065],[-96.68331764933055,18.48101486963651],[-96.6836761401616,18.484762341965222],[-96.68538358093605,18.483550482221517],[-96.68620249798215,18.483489468669234],[-96.68630575921867,18.483725181535874],[-96.68608931202795,18.484848555717804],[-96.68509133620557,18.485233608426483],[-96.68424796040051,18.486911243554175],[-96.68731952792251,18.48633715382516],[-96.68725351971813,18.487265684243084],[-96.6856565305419,18.48960580408817],[-96.68848290018104,18.489680740781637],[-96.69004603803904,18.488716151179347],[-96.69055912272336,18.48935650030984],[-96.69034672526192,18.490496329384143],[-96.68750428520974,18.492484196775592],[-96.6861318352781,18.49391603527613],[-96.68564177413566,18.49652161212964],[-96.6861233632726,18.497172569734403],[-96.68467421045113,18.497585457981756],[-96.68251065467791,18.499001161333638],[-96.6822983436648,18.499581378887967],[-96.68256820376405,18.49996214862142],[-96.68274535800538,18.500978067990104],[-96.68267306941755,18.501295566658882],[-96.68173496915813,18.50203003162386],[-96.6814844208314,18.502235767076513],[-96.68154401207426,18.503272776661902],[-96.68312439408061,18.504486250731247],[-96.68411312510733,18.504682017606115],[-96.68406459330112,18.50506403392535],[-96.6834962553985,18.506121364224384],[-96.68318327367956,18.505559124979868],[-96.68301578905971,18.505675453635718],[-96.68264913993113,18.505788172062353],[-96.68247014027054,18.505837005234696],[-96.68245373940908,18.50606327314557],[-96.68239855316068,18.50624473356345],[-96.6821061576266,18.506162329201004],[-96.68224779081089,18.506586574783853],[-96.68227521699328,18.50711815183041],[-96.68311975264999,18.507201966475236],[-96.68393598827981,18.50766822312528],[-96.68446772330702,18.50756620120262],[-96.68450522896802,18.507547010460257],[-96.68455445041678,18.50794692936023],[-96.68450852537268,18.508258353357917],[-96.68477889122676,18.508598589007022],[-96.68526256900947,18.508643227582183],[-96.6859009320604,18.50907988879834],[-96.68638212042873,18.511637504739383],[-96.68675268647416,18.51161826709381],[-96.68712780694165,18.511710754807268],[-96.68770263055666,18.512030431255425],[-96.68802259688147,18.512641695515242],[-96.68852218148805,18.512520557492962],[-96.69094509576604,18.512484319165083],[-96.69255647844079,18.512246397204024],[-96.69308421952638,18.511189456103523],[-96.6937199183248,18.510850909738508],[-96.69420099363327,18.511131853513632],[-96.69503937662193,18.511072620978496],[-96.69530617770528,18.5115446169886],[-96.69538225877545,18.511302489281547],[-96.69630818143014,18.51150473227119],[-96.69686326444986,18.510820222112216],[-96.69724363073334,18.510451908424045],[-96.6973261166271,18.510277231965517],[-96.69812060685837,18.50991119058716],[-96.69866719269851,18.510630368448403],[-96.69948659689618,18.51076710418033],[-96.69965382970031,18.51054620222311],[-96.7012187132571,18.51057485519169],[-96.70189208428519,18.51060039299483],[-96.70286772294446,18.510269009994147],[-96.70616882400464,18.526336696911642],[-96.70956067971844,18.527104580544403],[-96.71015881394379,18.527354361026255],[-96.71112712942295,18.528191952018517],[-96.71200224296041,18.527710104248513],[-96.71244001750807,18.527463950381048],[-96.71305227326889,18.527532873813698],[-96.71414733399217,18.527558115073475],[-96.71471285251982,18.527216053497398],[-96.71481324535011,18.526726732614065],[-96.71603946012232,18.526336036833072],[-96.71630615678299,18.526215266098347],[-96.71641315730511,18.52593488358275],[-96.71648021246824,18.525389544885854],[-96.71692889090218,18.52406596327637],[-96.71707093991938,18.523547701808695],[-96.71734986799584,18.523291080525723],[-96.71797183031339,18.523364573233096],[-96.71998366787261,18.522755872684115],[-96.72554334467208,18.528259820255073],[-96.72689948406975,18.529829004247404],[-96.7242812818427,18.53033455401072],[-96.72433097604659,18.53181849650207],[-96.72461152262508,18.532655976995386],[-96.72482285819956,18.53321458846699],[-96.72567429345446,18.53475032184724],[-96.72578985912048,18.535863027572304],[-96.72524678804473,18.53596458558377],[-96.7249439988027,18.535996972702492],[-96.72410834887023,18.536311188850163],[-96.72325516475968,18.53699750500715],[-96.72066933031346,18.537198860720764],[-96.71905044765481,18.536914153695022],[-96.71182669105451,18.548055475563274],[-96.71952473058354,18.555102454412975],[-96.72239847775614,18.55642633408928],[-96.72422171553802,18.55898753994734],[-96.71927002764056,18.56694318315499],[-96.71869806271695,18.567839953002704],[-96.71702464470798,18.570515532524723],[-96.71560479216976,18.573241494154672],[-96.70884886632956,18.564954374046522],[-96.70700892500264,18.562605674295014],[-96.70675566369852,18.562228162614417],[-96.70470414062783,18.559529746888018],[-96.6996307226014,18.553342891864872],[-96.69401017720617,18.562849376333986],[-96.690940579602,18.567974383353658],[-96.70047033057494,18.57899640828515],[-96.7021489806732,18.581226711883858],[-96.69992296880366,18.581291745823535],[-96.6993411127446,18.581098979860485],[-96.69829310154483,18.580157845326653],[-96.69616049049779,18.57938913567142],[-96.6933137108868,18.57861167448175],[-96.69003477950758,18.58058831793818],[-96.68960033486218,18.58103150368794],[-96.68811362308776,18.582213661252297],[-96.68797335158268,18.58269592220404],[-96.68776257217445,18.583629057987764],[-96.69014729881098,18.58600267505335],[-96.69165199292507,18.586432394759356],[-96.6916516541836,18.58645752266858],[-96.69188995678991,18.586377641385468],[-96.69215637803273,18.58656706476961],[-96.69184413715755,18.58783108473125],[-96.69280790374057,18.588184950812717],[-96.69300499433484,18.5882869527112],[-96.69291212848827,18.588517276946106],[-96.69401002221718,18.59042752689578],[-96.69196397997473,18.59311837613467],[-96.69185053310468,18.593269953623576],[-96.68952390327854,18.596069351333085],[-96.68776347143591,18.595057995873447],[-96.68586394534509,18.60099922431067],[-96.68420008695261,18.603792898753227],[-96.68092860785816,18.605924194279396],[-96.68030141684551,18.606579243737315],[-96.67713756331216,18.607523980329518],[-96.67246351982999,18.60757413033633],[-96.67215466296733,18.618584183224584],[-96.67329051333365,18.620132990379318],[-96.67371685110976,18.620455640874923],[-96.67445229711814,18.621934287948875],[-96.67472957293552,18.623608817945524],[-96.67563206683303,18.625172328810834],[-96.67725636913963,18.62597801180101],[-96.67778118345484,18.6262368377636],[-96.67827946351053,18.62640572332498],[-96.6782777518215,18.626990631851754],[-96.67869084326986,18.627835382144042],[-96.679017507006,18.62825481236689],[-96.67933584597426,18.62885744784171],[-96.67957348616551,18.629429419647806],[-96.67990714466038,18.62954396345924],[-96.67972025852964,18.62974048164955],[-96.67966028465634,18.62997626317332],[-96.68021599260317,18.630318956100666],[-96.68073721526758,18.63024083486374],[-96.68117505995315,18.631022033597674],[-96.68214023701364,18.63157664939007],[-96.68259830448801,18.63121561438004],[-96.68291951257658,18.631823208845958],[-96.68281062795444,18.632377217867713],[-96.68308112773258,18.634414719860843],[-96.683740098903,18.63513412249182],[-96.68406716119466,18.63466561233173],[-96.68438270607095,18.634829095550117],[-96.68507452345068,18.63549571510913],[-96.68565240693493,18.635865007380403],[-96.68627395471628,18.635447369019346],[-96.68742253684127,18.636717060225067],[-96.68806337029997,18.6380529465182],[-96.68823649539848,18.638368966143958],[-96.68625708215029,18.641648426761662],[-96.68512236404109,18.643053587977704],[-96.68414026752862,18.64406208591828],[-96.68392834064076,18.6452314095539],[-96.68193628482652,18.6469949857256],[-96.6817324126788,18.647186472595877],[-96.68109629134159,18.647949021034663],[-96.68132311217005,18.649639940198085],[-96.68159079421821,18.65055861046949],[-96.68184189130704,18.651888659275187],[-96.68206613482295,18.65254203568395],[-96.68252722208075,18.65424615220138],[-96.68258804526857,18.654841204868603],[-96.68313637989479,18.65625924164692],[-96.68355899554797,18.658574046848855],[-96.68329179648896,18.659061168715937],[-96.68329927248709,18.66931681542701],[-96.68290946028759,18.669332207549076],[-96.6823855757857,18.668906017416987],[-96.68111624742153,18.668771017706206],[-96.68006068841464,18.66788830067469],[-96.67838619151803,18.666900686765985],[-96.67812737752308,18.666722724674855],[-96.67755061021404,18.66628031891412],[-96.6770638108058,18.666203516186386],[-96.67689558122623,18.66610819466183],[-96.67653504807993,18.6660881476173],[-96.67640192795011,18.665989347655113],[-96.67619629912235,18.665871292532984],[-96.67584464241537,18.66582242663162],[-96.675688899448,18.665813877303265],[-96.67525517100103,18.665885084221316],[-96.6750540764919,18.665972150800883],[-96.67484267137337,18.666052123793747],[-96.67469382083709,18.666067033469687],[-96.6744164912426,18.665936119454784],[-96.67437511182919,18.665820288186296],[-96.6744205938682,18.66546870325675],[-96.67370384379211,18.664392565878813],[-96.67373246646179,18.66394609110114],[-96.6737307463452,18.663687378939187],[-96.67257933233697,18.662521623064265],[-96.67221293088431,18.662100982523043],[-96.67189696086388,18.661662834350864],[-96.6713226942885,18.661417930130256],[-96.66985237112078,18.661350521347515],[-96.66975672109612,18.66131933704827],[-96.6700371504325,18.660861432320303],[-96.6700583218219,18.660605113871497],[-96.66998245114496,18.660530999967307],[-96.66971776198028,18.660475765409956],[-96.66960547003805,18.660145226134205],[-96.66983091364852,18.659990259669485],[-96.66984696161859,18.659876624729975],[-96.66958074354983,18.65961955243813],[-96.66942866753948,18.65939411893129],[-96.66955787679939,18.659227123763856],[-96.6699812103866,18.659191743844644],[-96.67003572909249,18.659169098839982],[-96.67010956169281,18.659073328567217],[-96.67011288063446,18.658953768008246],[-96.67003699795299,18.658891553100545],[-96.6698472655288,18.658842760427888],[-96.6694129599428,18.65870691583615],[-96.66915705161983,18.65843503328216],[-96.6689616147894,18.65798355364143],[-96.66887912538732,18.656998197873634],[-96.66871576855874,18.656513798589913],[-96.66858311073065,18.65629990465942],[-96.66823646075011,18.65595248849445],[-96.66801074805642,18.655853822132087],[-96.66775860943005,18.655821343795992],[-96.66723145195829,18.65588318021264],[-96.66710820352563,18.655933521861186],[-96.66700412074323,18.655997348167034],[-96.6663015422248,18.656192960357146],[-96.66616769433415,18.656168489078425],[-96.66591176089906,18.656199693077667],[-96.66578909153986,18.65627633047842],[-96.66563431617072,18.65633089518161],[-96.66554800430401,18.65626567370998],[-96.66544134055033,18.656068946492553],[-96.66439105126636,18.655120996149094],[-96.66380941163249,18.654679524119274],[-96.66356469471623,18.654051758928176],[-96.66332048902945,18.653775826608694],[-96.6633345136409,18.653416728604896],[-96.66251485083012,18.65279369945023],[-96.6621371622964,18.65284502510383],[-96.66148812093576,18.6525016247262],[-96.66103198944558,18.6515443347555],[-96.66080331736651,18.651278974105082],[-96.66015207181357,18.651564970749234],[-96.65957944608442,18.651052447692337],[-96.65915193853783,18.65048909649323],[-96.6587950250713,18.65041076971727],[-96.65842084197646,18.65048751182394],[-96.65705747281004,18.651049400424483],[-96.65638055532423,18.651409678520054],[-96.65567675486659,18.65159862468346],[-96.65396221800512,18.65029254690137],[-96.65283466145195,18.649406056986834],[-96.6524172793363,18.648619381878632],[-96.65269498784289,18.648413358106552],[-96.65230506651062,18.648061224462367],[-96.65212685969243,18.647747507624956],[-96.65179145625257,18.647555643479222],[-96.64996310878092,18.646318100398958],[-96.64861088793788,18.64579855767471],[-96.64855241673774,18.644979003236188],[-96.64799425046942,18.644370486755463],[-96.64747942887738,18.643741299664384],[-96.64709363115668,18.643543734014315],[-96.64647599248423,18.642473115715063],[-96.64555827550623,18.641122442692563],[-96.64577979398047,18.640792367631434],[-96.64580917330017,18.640390525855594],[-96.64540379110514,18.64022764766179],[-96.6449806138283,18.64024717908785],[-96.64427370843515,18.64074522446225],[-96.64379388691236,18.640916703090852],[-96.64339992854252,18.640439151192595],[-96.64327844644896,18.64033473478213],[-96.64271797724496,18.639987667716696],[-96.64250847414866,18.639873460266642],[-96.64236322207978,18.639798110391837],[-96.64218646540968,18.63971293643101],[-96.64118100492823,18.639044639172425],[-96.64089933043152,18.63866242608134],[-96.64076495908512,18.638510784773473],[-96.64044633292002,18.638126553886934],[-96.6396265957776,18.637571036713666],[-96.6394970572166,18.6376035900243],[-96.63931598889803,18.63762959564275],[-96.63920640057603,18.637605813191726],[-96.63910260109287,18.637540507242818],[-96.63901280144074,18.63747187599313],[-96.63871806796976,18.637280851013827],[-96.63814366253649,18.637080979900247],[-96.63787117763991,18.637047397265235],[-96.63727547233287,18.636954153073873],[-96.636700050753,18.636664836034754],[-96.636406243733,18.63651516293237],[-96.63606693165013,18.63644825108156],[-96.63589886762139,18.636429642167684],[-96.63562583575737,18.63626061742167],[-96.63548591047692,18.636115271404492],[-96.63526836463461,18.635991546625462],[-96.63514356180184,18.635974960101294],[-96.6346382063362,18.635853668134928],[-96.634196371082,18.635780562380432],[-96.63394630852946,18.635887730372588],[-96.63370186871708,18.63647214113206],[-96.6336275661568,18.63667212534756],[-96.63348965757075,18.636604834362288],[-96.63307899839742,18.636350401058564],[-96.63182429885688,18.634447745586613],[-96.63127051741947,18.633465489759374],[-96.63100277367556,18.63342122741625],[-96.63022503898037,18.633381557676046],[-96.6299362851334,18.63329629720357],[-96.62967870228681,18.632760419521276],[-96.62968407952604,18.632623582511428],[-96.6295906160426,18.632308320427626],[-96.62925495360167,18.632038668286327],[-96.62907478882914,18.632036757848084],[-96.62869240553982,18.632111244790565],[-96.62848076732598,18.632065260529032],[-96.62780001466291,18.63168561793043],[-96.62712717694706,18.631186682935038],[-96.62676210207627,18.63081593027448],[-96.62625083835053,18.63062983614111],[-96.62574067190394,18.63033464712197],[-96.62449822937083,18.62979457494174],[-96.62406100208818,18.62952694615649],[-96.62279218130675,18.62884581809692],[-96.6224981814662,18.628636479673162],[-96.62212501363814,18.62807541645543],[-96.6223013875142,18.62667503927247],[-96.62272094257895,18.62624718481004],[-96.62262169911287,18.625725961106014],[-96.62232277295777,18.62551725475089],[-96.62154863524097,18.625218374993665],[-96.62113228562487,18.624665408358],[-96.62091146433363,18.624268974501774],[-96.62064221094926,18.62389704893178],[-96.62010222038714,18.623251742444097],[-96.61958862287787,18.62243806777508],[-96.61837240527365,18.62244537007234],[-96.6178555000609,18.62229980080582],[-96.61771378092402,18.62183540869671],[-96.61772576145233,18.621602674477458],[-96.61762755888492,18.620785706303252],[-96.61725330551911,18.620203080882277],[-96.61703266191796,18.619532977225845],[-96.61691400667968,18.619268645247814],[-96.6163981971772,18.618976035501078],[-96.61604417734924,18.618882521145736],[-96.61581569069745,18.618691578109917],[-96.61545727337244,18.61828558403812],[-96.61527242462938,18.6181348470746],[-96.61502576222176,18.618033158748574],[-96.61471175707868,18.61809542052532],[-96.61435449025947,18.61831884664292],[-96.61418997307948,18.618427211427445],[-96.61365399200548,18.61868625723355],[-96.61351448442815,18.618778814918983],[-96.61318757984708,18.619045593953956],[-96.61277025781698,18.619035230401437],[-96.61261252991414,18.61887013523028],[-96.61253428925727,18.618749920625305],[-96.61207445129463,18.618544184268956],[-96.61133689842171,18.618747997206185],[-96.61118262734482,18.618771475851304],[-96.61089088144752,18.618769094010986],[-96.6106825846374,18.618727572142063],[-96.61034930353452,18.61857088175566],[-96.61002275466274,18.61843133021665],[-96.6098616500484,18.618421500527063],[-96.60931671100633,18.618391838027037],[-96.60913513384662,18.618308372637955],[-96.60872474300726,18.617738097230244],[-96.60858050658675,18.61755775860553],[-96.60836773676607,18.617470275042535],[-96.60740872254132,18.617595596004833],[-96.60682632445315,18.617571005269554],[-96.60642364797752,18.61722004088648],[-96.60632912788799,18.616959004870182],[-96.60624491536521,18.616856078250976],[-96.6060836847468,18.616747759176917],[-96.60579045533325,18.616538466304803],[-96.60559407526142,18.616082900736103],[-96.60525326562083,18.615588547668096],[-96.60522339518224,18.61543374685874],[-96.60518372435831,18.615160375631945],[-96.60495247684088,18.61496173239391],[-96.60473277094411,18.614862698420552],[-96.604583923534,18.61480279919965],[-96.60427033719861,18.614771083069684],[-96.6039042692488,18.614664175690166],[-96.60356501340215,18.61442182501554],[-96.60327327833903,18.614373008654127],[-96.60269469040719,18.61400074228527],[-96.60248391826644,18.61367396651883],[-96.60157377275158,18.612617823293874],[-96.60108375197376,18.61219771846629],[-96.60090441962433,18.61212855347719],[-96.60041732264239,18.612021164702526],[-96.59973767729554,18.611892800514113],[-96.59942530629519,18.611863850080397],[-96.59909443566715,18.61184095258335],[-96.59815105246315,18.61152858757623],[-96.59772420780138,18.611498360749692],[-96.59615419353844,18.611518621235064],[-96.59537445037392,18.611476844577396],[-96.59515713911338,18.611317786810048],[-96.59497968569269,18.611002040820154],[-96.5944473869938,18.60985125825016],[-96.59361423145816,18.60938830134694],[-96.5930780457345,18.60909064420406],[-96.59251920550867,18.608381229840006],[-96.59218044035379,18.607762295865882],[-96.59128075457062,18.607099547890982],[-96.59012387882251,18.607006168401597],[-96.58964425268897,18.606958883741356],[-96.5893324939662,18.6067632302952],[-96.58919367694506,18.60611031553543],[-96.58952874441371,18.605328963921636],[-96.5891650192068,18.604812360883045],[-96.58858232961467,18.60497448624278],[-96.5883807059758,18.60501300209529],[-96.58792589976872,18.604775389595147],[-96.58765672787462,18.60449868554275],[-96.58698492288067,18.60387944534284],[-96.58666403486308,18.60349407409626],[-96.5863758604981,18.60329297212371],[-96.58545027762307,18.6028171638294],[-96.58521643785986,18.60276351750184],[-96.58475227495296,18.6026594695158],[-96.58436464658303,18.602422322248287],[-96.58412816691413,18.601967444154525],[-96.58319025989442,18.601487290394914],[-96.58273952240222,18.601558384527664],[-96.58240577616607,18.60175983309159],[-96.58193295992703,18.602130938976813],[-96.58130905175949,18.60169119871648],[-96.58126362166342,18.601039427324395],[-96.58145526217055,18.600570860635855],[-96.58140771043486,18.600229522831057],[-96.58050050876903,18.600002753410422],[-96.57904048826907,18.600367364418787],[-96.57827487395872,18.599650808070123],[-96.57730917600247,18.598814670687716],[-96.57666408970556,18.597991557775117],[-96.57506561738472,18.596795649130854],[-96.57465615462468,18.59613484569877],[-96.574659547576,18.59564275549269],[-96.57495995340963,18.59539211249512],[-96.57438266226171,18.59489445199881],[-96.57350529061205,18.59489255168853],[-96.57331175953698,18.595002117092235],[-96.57302227681004,18.594923958386232],[-96.57286805705974,18.594803930256887],[-96.572565344628,18.594305833443684],[-96.57189738344738,18.594383936751683],[-96.5716187672312,18.594589636556975],[-96.5714578445415,18.594654100587377],[-96.57119826926271,18.5945911251344],[-96.57104750990334,18.5944551105531],[-96.57105268562498,18.593980012706538],[-96.57076298794675,18.593755406878415],[-96.56975933122976,18.594092437897643],[-96.56951597087539,18.59413747959354],[-96.56720355732682,18.59175978597858],[-96.5670844216217,18.591522798937888],[-96.56664573570094,18.59131191704995],[-96.56641775337363,18.590861484343918],[-96.56620060101665,18.59027117317879],[-96.5659693387106,18.59023961927886],[-96.56555552536418,18.590719495365477],[-96.56515231786284,18.591419210359334],[-96.56472601381796,18.591384770199454],[-96.56460280099128,18.591300340867292],[-96.56449429976158,18.59115174591318],[-96.5642458625905,18.590665550428753],[-96.56363339505026,18.59014790751513],[-96.56319679352538,18.590101902053334],[-96.56278847667045,18.590086395214826],[-96.56273655221196,18.589686618396968],[-96.56272973468106,18.589333241830218],[-96.56228206229451,18.58930709981115],[-96.56213539312341,18.58932168892062],[-96.56202623352704,18.58904916297729],[-96.56201850849573,18.588849934353334],[-96.5617688664343,18.588567351739982],[-96.560578158331,18.587628236058947],[-96.55998120864496,18.58770438862109],[-96.55669280552917,18.587698536570144],[-96.55619809864243,18.58771969190593],[-96.55563845270581,18.58803346805962],[-96.55544381060145,18.588004399241527],[-96.55528639241976,18.58782618477204],[-96.55520700464712,18.58760374602656],[-96.5548525624572,18.58741554035936],[-96.55473728002579,18.587418493901282],[-96.55460479460254,18.587477853594635],[-96.55448783129629,18.58756058818892],[-96.55428180772458,18.587588766616477],[-96.55105653701594,18.58878681066642],[-96.55067042739415,18.58874112001837],[-96.5503892131079,18.58863583106944],[-96.5492732559947,18.587932763455683],[-96.5481497107724,18.58762130362976],[-96.54750761171567,18.587699534943624],[-96.54741666393943,18.58819960617535],[-96.5471251603916,18.588387840612995],[-96.546506445651,18.588547287324445],[-96.54609688658167,18.588468980362677],[-96.54556756499699,18.588323671296337],[-96.54513135947354,18.587774071055662],[-96.5447597157742,18.587307688183273],[-96.54386764876779,18.587551099198663],[-96.54292527254051,18.58790111685994],[-96.54231171015891,18.588068797888297],[-96.5417932486306,18.588186141332585],[-96.54078089789749,18.5879516210245],[-96.54045743626625,18.587480082337663],[-96.54004582407089,18.58674826051481],[-96.5402784657204,18.586247478897178],[-96.54023071789646,18.585884833791283],[-96.53989930283382,18.58550734685815],[-96.53951139638133,18.584707321288988],[-96.53876882877205,18.584740117722845],[-96.53858971659878,18.584626872057186],[-96.53758654474501,18.58396116567559],[-96.5373049604645,18.583950933434267],[-96.53674154433901,18.58415040368294],[-96.53624787813669,18.58452890598477],[-96.53593624162801,18.58492227407328],[-96.53501176843474,18.585185831976617],[-96.53377795107605,18.58519794340225],[-96.5325139972137,18.585558460935033],[-96.53239135603451,18.586481731603158],[-96.53230746048666,18.587334541591986],[-96.53209514442585,18.587352565046217],[-96.5318879796813,18.58724203639133],[-96.53148610704096,18.587047172359576],[-96.53094403334899,18.587054001200556],[-96.53080598188563,18.58705087367457],[-96.53062733933893,18.58704342922897],[-96.53034420756813,18.587082533667626],[-96.53016096194813,18.587258202710814],[-96.52979626652422,18.58749790623915],[-96.52945590569385,18.587391659321554],[-96.52882512116668,18.587210320566726],[-96.52845329473035,18.58758777962305],[-96.52821630785559,18.587681931784346],[-96.52794700084974,18.58759533693143],[-96.52601461170246,18.587347323823792],[-96.52587763452885,18.587673938394914],[-96.52566000238812,18.587784568007066],[-96.52547500538003,18.587773595589965],[-96.52529795372072,18.587675053916655],[-96.52491436122216,18.587126902151056],[-96.52454157522521,18.586814386880178],[-96.52471842725282,18.58638908745354],[-96.52471244856685,18.586119693418482],[-96.52441721047023,18.58588047327413],[-96.52396874534367,18.58537007918875],[-96.52389519056015,18.58526992976971],[-96.52345837423411,18.585260739675505],[-96.52226247446237,18.58574194141687],[-96.52175186790942,18.58510367073967],[-96.52162932674196,18.58471244903683],[-96.52164823107313,18.584545275782716],[-96.52156463753181,18.58419487097484],[-96.52124969913058,18.584069314243777],[-96.5209631379393,18.58418954799771],[-96.52066743088,18.584449723113835],[-96.52043090128495,18.58485379916152],[-96.51928756044822,18.583753027642388],[-96.51895500854476,18.58363803689855],[-96.51786587960441,18.58356548099613],[-96.51794702889055,18.582982411763737],[-96.51798262143234,18.582801158289442],[-96.51806923460265,18.582474997714996],[-96.51808289224743,18.58204872665391],[-96.51796301332314,18.581813901266514],[-96.5175051047608,18.581573172010565],[-96.51714241362038,18.581643952905665],[-96.51677675866972,18.58270409507918],[-96.51668965633638,18.582871913657073],[-96.51654639336039,18.582924598824604],[-96.51611935328935,18.58274721582029],[-96.51588448414327,18.582808344386876],[-96.51530599266766,18.582319637220564],[-96.51531890860986,18.58205550145823],[-96.51522975143257,18.58191209589205],[-96.51505936458153,18.58193781395977],[-96.51497890169799,18.58199519804441],[-96.5145923512651,18.582328260037514],[-96.5141443596516,18.582401987982678],[-96.5139657673027,18.582598881076706],[-96.51395653446082,18.582677000867704],[-96.5140605165571,18.58282027267404],[-96.51434679446379,18.582946806278414],[-96.51451074636356,18.58319747263687],[-96.51445130133663,18.583377776807936],[-96.5135303892448,18.584569806040008],[-96.51359251946286,18.585094880248334],[-96.51354657868251,18.585180949281664],[-96.51341181799773,18.585245776973295],[-96.51315735926289,18.585117244465266],[-96.51293114031688,18.584755766817125],[-96.51256510110238,18.5849966330573],[-96.51250153141041,18.585286791834847],[-96.51243872184546,18.58532274580267],[-96.51216184014817,18.58528316106839],[-96.51147997903934,18.58483258779478],[-96.5109487737206,18.58417126271104],[-96.51062428127682,18.584215782445767],[-96.51052794142055,18.58424368539238],[-96.5104277432041,18.58432206763922],[-96.5105045261954,18.584986245300342],[-96.51042203839336,18.58584508613916],[-96.51039171832974,18.586193522965743],[-96.51035369806903,18.58652525087666],[-96.51031356634269,18.586688304158145],[-96.50998332014012,18.587007323426008],[-96.5096440511681,18.587847852281925],[-96.50959972771875,18.588013049103665],[-96.50950808786047,18.588149572095688],[-96.50923806565339,18.58836240982788],[-96.50909102893706,18.58886767638836],[-96.50883600807879,18.589419095551477],[-96.50876121979991,18.589460569853713],[-96.50791925149969,18.589189763165678],[-96.50757329639015,18.58910335221867],[-96.50719546824342,18.589160694465704],[-96.5068753057937,18.589266611292487],[-96.50619773903475,18.589213436370983],[-96.50584090751238,18.589441414153384],[-96.50552997506168,18.58920118468984],[-96.50569881706497,18.58853910251304],[-96.50518424066507,18.58811653920708],[-96.50412929726355,18.588037862580848],[-96.50376847727375,18.588202592224775],[-96.50361892494715,18.588229475864807],[-96.5029034472418,18.588786504815232],[-96.50265748454268,18.588985555703914],[-96.50246989707023,18.58900846688033],[-96.50222856167915,18.588773057426806],[-96.50197301301091,18.58775262050142],[-96.50193816072834,18.58744774462417],[-96.50169206666249,18.587334545127305],[-96.50153654766837,18.587452813179198],[-96.50151317887185,18.587518429183376],[-96.5015344979841,18.58787850368958],[-96.50151686190821,18.588035948948914],[-96.50124294500029,18.58848835620489],[-96.50096587959627,18.58876156111978],[-96.50071249836577,18.58916130739709],[-96.50029504622484,18.589468220290428],[-96.49993063449932,18.589529864413635],[-96.49943334576267,18.589304133121345],[-96.49927680668566,18.588924664742137],[-96.49747510100582,18.58718532125954],[-96.49564669703261,18.586206904314736],[-96.49473925302505,18.585571520853193],[-96.49406283508836,18.585392026188913],[-96.4937180623005,18.585364247978248],[-96.4935360172214,18.58530003056194],[-96.49335154542376,18.58501368991176],[-96.49346445035548,18.5845157874993],[-96.49338163013476,18.583829318453752],[-96.493283002353,18.583681943054387],[-96.49286482079606,18.583364560818893],[-96.49231860374488,18.582903728376095],[-96.49171339411663,18.582634821351462],[-96.49094980705433,18.5827153270414],[-96.49060191568759,18.582745407144273],[-96.4892927301288,18.58167312753426],[-96.48899128615324,18.58139690478521],[-96.4888925467231,18.581318460932778],[-96.48857479087343,18.581205232487093],[-96.48820877936168,18.581159064544067],[-96.48803079607961,18.58116387876754],[-96.48699909364564,18.581450440366552],[-96.48629067432921,18.58198254548489],[-96.48510712670236,18.582178222494235],[-96.48480103732697,18.582191255047064],[-96.48463918085724,18.58218265288116],[-96.48435587599653,18.581857684665636],[-96.48437456447618,18.58139451139806],[-96.48493151876988,18.58110571030585],[-96.4850535077735,18.580723849314666],[-96.48493990240962,18.58021956436363],[-96.48416636592799,18.58016457958888],[-96.48362730577486,18.58052255124386],[-96.48342196999573,18.580632062592258],[-96.4827525926865,18.580761790635336],[-96.48197798281018,18.580493334837854],[-96.48148880440414,18.579786880524637],[-96.48106539870571,18.579667759693564],[-96.480556821405,18.57960034171765],[-96.47961871597414,18.579791961567253],[-96.47859197744839,18.579916082513478],[-96.4779601964114,18.58004866352138],[-96.47766456985653,18.580034556964733],[-96.47704157668221,18.579612463879414],[-96.47685659451156,18.579219448224933],[-96.47700644744884,18.57884121783536],[-96.47701993601919,18.57870047791556],[-96.47698954667914,18.57848750324456],[-96.47640189322766,18.57788238171355],[-96.47526961306193,18.576598386066337],[-96.47430770351667,18.57637792613974],[-96.47335934830863,18.576508333632546],[-96.47307280458148,18.576392023540507],[-96.47271714292555,18.574898122477407],[-96.47309345275823,18.574680584620694],[-96.47367884181904,18.57426579452118],[-96.47353720217654,18.573824274424396],[-96.47341449514079,18.57347112722846],[-96.47301991234218,18.573210859009578],[-96.47268101785886,18.57316767703213],[-96.4719551025239,18.573246310711284],[-96.47108545034075,18.573464472952253],[-96.47027523624968,18.57375509156816],[-96.47005476708523,18.573822827743413],[-96.46974986717521,18.573907410600043],[-96.46914404383347,18.57388462593434],[-96.46886332825602,18.573722798773588],[-96.46879550448347,18.573662034616348],[-96.4686285394722,18.573256752002976],[-96.46856549052768,18.57305480632715],[-96.4685288798537,18.57174761684837],[-96.46844143571201,18.571320700509148],[-96.46805342433731,18.570999606954558],[-96.46782772924576,18.570896333113865],[-96.46724048859596,18.570837941310458],[-96.46668790206837,18.571174192304454],[-96.4665686308631,18.571710222827676],[-96.46655834020555,18.571906967172083],[-96.46531240494517,18.573529731374038],[-96.46485368068807,18.573884700816848],[-96.46420968249794,18.573863105235148],[-96.46348941136694,18.573363823937257],[-96.4628753646731,18.573110104922762],[-96.4620830563266,18.573239284425597],[-96.46177576288648,18.573307144231705],[-96.46145329414782,18.573261329907098],[-96.46081890564352,18.572811868849385],[-96.4604974234768,18.57235131524311],[-96.46037366937975,18.57062656894692],[-96.46010900455371,18.570438763381503],[-96.45962471735703,18.570276893048742],[-96.45900072307307,18.57006103837699],[-96.4586272198768,18.569995700549214],[-96.45730882865331,18.57043741060835],[-96.45717226443207,18.570274910956186],[-96.45709031895336,18.569851985763194],[-96.45707573138185,18.56948753409756],[-96.45689722275142,18.56882912180788],[-96.456697685623,18.56849977864931],[-96.45659312008712,18.56835558091359],[-96.45641625271702,18.567551945573996],[-96.4566545941239,18.567256469650772],[-96.45657145460598,18.566942625243087],[-96.45648831450023,18.56653371415797],[-96.45626428938732,18.566222907600434],[-96.45591265761232,18.565521577331708],[-96.45569231361202,18.565137444432708],[-96.45523329669413,18.564518918760427],[-96.45431671137777,18.56323397174674],[-96.45411866118525,18.562822020935528],[-96.45409378724094,18.562653171395823],[-96.45425491085518,18.562236767242894],[-96.45439159964968,18.56154134020926],[-96.45417862330248,18.561177521665456],[-96.45410107168038,18.561064314513487],[-96.45384748395657,18.560700301974975],[-96.45331151324132,18.560171616056152],[-96.45153936143424,18.558178232760724],[-96.45126695431134,18.55772100366363],[-96.45140703818993,18.556570707967637],[-96.45222858402201,18.557153955846047],[-96.45239486507558,18.557313028785757],[-96.45255858349049,18.557386643430107],[-96.4527488184001,18.55736044161091],[-96.45287025601516,18.55718930848508],[-96.4528940067575,18.556971859057228],[-96.45294646664854,18.556660540049677],[-96.45283815880174,18.55626259812101],[-96.45272640620061,18.55586520687291],[-96.45259021250297,18.554953976203365],[-96.4528928443421,18.55358794685452],[-96.45419657223363,18.55176529643103],[-96.45448836302364,18.55124211221772],[-96.45481607814054,18.550663903929376],[-96.45490309512235,18.550391088172717],[-96.45508750107348,18.550061260556504],[-96.45512535686532,18.54947893145777],[-96.45431344655236,18.548430851020953],[-96.45354581396236,18.547450481379485],[-96.45342795273962,18.547079606539114],[-96.453313794964,18.546475276072556],[-96.45285051868962,18.545960429009767],[-96.45270817761849,18.545842049847522],[-96.4521627864205,18.545713319849085],[-96.45087075148933,18.545502720270065],[-96.45056402042547,18.545224420078284],[-96.45049689997956,18.545103017773215],[-96.45027388850627,18.54463323364996],[-96.45005998839582,18.54392144139905],[-96.44986960608924,18.543466437515747],[-96.44965283529075,18.54284303716895],[-96.4497556971902,18.541575817369278],[-96.4492329075697,18.541279737413674],[-96.44803454551419,18.54151515735964],[-96.44790739313532,18.541451316646487],[-96.44743671968195,18.54038402392456],[-96.44733604020047,18.540304555662146],[-96.44726200138655,18.53979488929491],[-96.44737124448238,18.53943766334106],[-96.44749016747045,18.539137105854934],[-96.44754070918191,18.537967788878746],[-96.44735687803478,18.53744370216765],[-96.44720606599094,18.537018602086448],[-96.4470003409757,18.53658391796199],[-96.44675572195274,18.536286453970263],[-96.44648818768445,18.536101765829244],[-96.44596312044143,18.536088187895928],[-96.4458877824448,18.53606209570694],[-96.44555174301769,18.53575833884088],[-96.44541951691679,18.53562817575147],[-96.44487987203104,18.535257241942645],[-96.44434410768497,18.534905312364003],[-96.44419260617673,18.534873491408916],[-96.44396611891631,18.534806849496135],[-96.44370959447764,18.534727443766315],[-96.44334873269355,18.53465874684258],[-96.44285722113989,18.534744428693216],[-96.44263993635406,18.53486312626228],[-96.44216999103577,18.535243403568813],[-96.44202282289064,18.53544120866968],[-96.44173069363961,18.535554119606616],[-96.44128047229356,18.535449098440438],[-96.44097439232576,18.534536419481924],[-96.44106821542732,18.53405386828291],[-96.44124228626754,18.53319429867952],[-96.44092580864765,18.53253750635463],[-96.44063501869863,18.531856232574285],[-96.44050291931518,18.53168344827634],[-96.43963021856797,18.531704178546818],[-96.4391108083367,18.531932388655946],[-96.43872679141089,18.532024220923574],[-96.4378202756231,18.531964160111613],[-96.43751293957246,18.53176721205483],[-96.43744423144989,18.53163211802746],[-96.43745071731479,18.531102173158843],[-96.43742863622396,18.530770750084457],[-96.4373489168471,18.530216791298585],[-96.4369528334775,18.52835575365833],[-96.43653724002792,18.52808410053592],[-96.43630823388906,18.52801376488611],[-96.43557913495016,18.527924911920422],[-96.43515565248674,18.527847373162217],[-96.43488428700681,18.527678263048244],[-96.43485938026629,18.527606647667255],[-96.43492787348498,18.52729105975783],[-96.4352033358719,18.526903607693782],[-96.43521582962876,18.526824538559424],[-96.43497340368572,18.52640023646552],[-96.4342693904635,18.526087138363607],[-96.43391504451512,18.525906117449438],[-96.43355143766951,18.525724749639608],[-96.43262013887045,18.525363292293434],[-96.43249316394076,18.524837218774962],[-96.43189690493841,18.52300048610965],[-96.43183594502983,18.522825213909698],[-96.4315682328724,18.521874526066938],[-96.4309063946917,18.52135340438656],[-96.43025432522643,18.520663795287987],[-96.42996167036637,18.520318108390597],[-96.42973530159844,18.519776193901635],[-96.42818580444441,18.518810423678417],[-96.42795444132815,18.51863964474626],[-96.42764562421405,18.518141590728476],[-96.42751986859275,18.51760707441923],[-96.427382674449,18.51735327935586],[-96.42650484814686,18.51629059353155],[-96.42621454700793,18.516144459559086],[-96.42575150065863,18.515532549106638],[-96.4255720703,18.51520149436442],[-96.42552377973732,18.514994250062728],[-96.42533984150299,18.51393853461252],[-96.42517438552659,18.513543119561405],[-96.42448957336308,18.512804033902967],[-96.42431552375479,18.51266815035393],[-96.42388449773063,18.51232129564221],[-96.42287978709072,18.511851348003574],[-96.42184979534301,18.51134651798418],[-96.42151924044896,18.511156093312934],[-96.42114490950894,18.510877003581697],[-96.42097573950588,18.510733740447222],[-96.42076198653677,18.510457797750234],[-96.42089593251455,18.509702057567097],[-96.42055064636082,18.50905036053814],[-96.42038471393244,18.508756536209546],[-96.42021895568405,18.508407334372464],[-96.42177844295571,18.50695011545963],[-96.4217928024272,18.506598072227746],[-96.42158050083845,18.506110971921203],[-96.42158836865906,18.505700138725615],[-96.42167158847997,18.505512500918087],[-96.42229962574572,18.50451642252216],[-96.42275370109297,18.504149502602843],[-96.42345320871698,18.50348143567021],[-96.42359663094282,18.503016298999853],[-96.42348159881311,18.501804091007386],[-96.42316528068392,18.501166352472183],[-96.42239372285707,18.50021828189813],[-96.4216698225743,18.499333798802297],[-96.41950490529553,18.49940257856639],[-96.41900772877301,18.499088714391746],[-96.41802819560502,18.49883316007805],[-96.41708464473913,18.499655707938814],[-96.41665581440628,18.499382492470943],[-96.4164712426429,18.49865986239803],[-96.41634633414753,18.49804536781693],[-96.41632058244704,18.49719336326274],[-96.41651533621052,18.497076725056957],[-96.41673809830144,18.497008772233528],[-96.41691326825014,18.496881875040856],[-96.41714834593307,18.49675720678556],[-96.4173124829349,18.496410734016195],[-96.41687145884646,18.49594648808454],[-96.41621521242456,18.495855397081698],[-96.41572609965806,18.495589467239654],[-96.4154582656248,18.495039826168465],[-96.41551871950901,18.493069589105403],[-96.41522692912986,18.492134441915482],[-96.41506961170626,18.49107106991238],[-96.41485177452017,18.49028943538002],[-96.41455208478521,18.489342691453373],[-96.41418059926826,18.48895996487778],[-96.41349751500366,18.487339896151866],[-96.41332795650897,18.486905171397552],[-96.41331918888346,18.48620271561458],[-96.41333732499811,18.485754211011],[-96.413365366,18.48479259740253],[-96.41469264084913,18.48308275837661],[-96.4145991270924,18.482664237194967],[-96.41363438187199,18.48083694787084],[-96.41304479000001,18.480324614349115],[-96.4126074451396,18.480142106991423],[-96.41233386395658,18.480007254564953],[-96.41203325114515,18.47968021686296],[-96.41125461848003,18.477364165520783],[-96.41118551258143,18.47692105975733],[-96.41220932419549,18.476410555300333],[-96.41287362350653,18.476160970009744],[-96.41488267361956,18.475576255178566],[-96.41545740717521,18.47559762157414],[-96.41614930485633,18.475739710635025],[-96.41662612094234,18.476023413071857],[-96.41825124439396,18.475950812675194],[-96.41837968971697,18.475581547654485],[-96.41839323626272,18.47524957544374],[-96.41832241489607,18.474847973034457],[-96.41814447937838,18.47429277494905],[-96.41811042397632,18.474058776474067],[-96.41814577356428,18.47280566730882],[-96.41769359342072,18.472132225852306],[-96.41762132350323,18.471979927870393],[-96.41758354387855,18.47183722085441],[-96.41758127047308,18.471679208704245],[-96.4176574671805,18.47130800800045],[-96.4177854671783,18.471163149244887],[-96.41794603506236,18.47086157615462],[-96.41802256901735,18.47048207599323],[-96.4178612835484,18.470160231164357],[-96.41756661396028,18.469878201033055],[-96.41717249463721,18.469705627218787],[-96.41671370242528,18.46962208070471],[-96.41606096063833,18.469589509444177],[-96.41495122458178,18.469215778679995],[-96.41494238025928,18.468791545017382],[-96.4150320883636,18.467573977851544],[-96.41460549094086,18.46670199706847],[-96.41392299754483,18.46590361963058],[-96.4124000622374,18.46475813046675],[-96.4117396602212,18.464700318128394],[-96.41149585185855,18.464691247912185],[-96.41098539989758,18.46480524334123],[-96.41041818581778,18.46524129018951],[-96.40979575423012,18.466503066717564],[-96.40948327963252,18.46681007716836],[-96.4085706996986,18.467192961932994],[-96.40754705671122,18.467487332151677],[-96.40708917498216,18.467594963167755],[-96.40621160785474,18.467476007466303],[-96.4059959739958,18.467457114051115],[-96.40556455154649,18.46770175524307],[-96.40507955744329,18.468049407285662],[-96.40470269609983,18.467981056706606],[-96.4045474921952,18.4675986971352],[-96.40449667386872,18.46710760725216],[-96.40439581628777,18.46658851663227],[-96.40414376158259,18.466354705195897],[-96.40406958470419,18.466036093986133],[-96.40415440489488,18.46588132674816],[-96.40476687430436,18.465405429714394],[-96.40494409737232,18.46469721346608],[-96.40466666828655,18.464427820018614],[-96.40379843148219,18.464142076274584],[-96.40340887987492,18.4636454774556],[-96.40328778279081,18.463408235135603],[-96.40301797966538,18.46318207352988],[-96.40272974207204,18.462980161271958],[-96.4024029679378,18.462228235727196],[-96.40259974372663,18.461894782333616],[-96.40194159952233,18.46087428695364],[-96.4018505783385,18.460754529919882],[-96.40179404339511,18.460644370309183],[-96.40171117387808,18.460325433193873],[-96.40332920135921,18.456602023645928],[-96.40225176108288,18.45501589431774],[-96.40198455782598,18.453844135850773],[-96.4016160706837,18.453472999091616],[-96.40154088784834,18.453179287782973],[-96.40198709051464,18.45292994229527],[-96.40210265343563,18.452876067383613],[-96.40229431583299,18.45266710733665],[-96.40242719681146,18.452189981239087],[-96.40240493757159,18.45188161898602],[-96.40222985248124,18.451324963086165],[-96.4021590334849,18.450183322721898],[-96.40205388570445,18.44988064965571],[-96.40134106521714,18.448631055280202],[-96.40130656287312,18.44831507446162],[-96.40220967905532,18.447690689030594],[-96.40277074546134,18.44740736809092],[-96.40353980488595,18.446710117618295],[-96.4032436416083,18.445903215675855],[-96.4024166572027,18.445489098911878],[-96.40165845142837,18.44525965594039],[-96.4001548626643,18.444307372674302],[-96.40010014255336,18.44396923690232],[-96.40008936154351,18.44375410693368],[-96.4002603230092,18.443405712250126],[-96.40071702645577,18.44325469105047],[-96.40132781558248,18.442766572831204],[-96.40171426420403,18.442025713291798],[-96.40207994344752,18.441543545028992],[-96.40240368750443,18.441051469803597],[-96.402667227405,18.440594494091386],[-96.40301586158955,18.440072933242163],[-96.40287443559322,18.439852552413527],[-96.40275275717443,18.43983905609764],[-96.39983496704366,18.43899533541338],[-96.39942871884892,18.439042925985063],[-96.39869508841349,18.439508527580188],[-96.39824455410292,18.43994883161804],[-96.39779708471917,18.440084510821407],[-96.39732721821275,18.43997636552956],[-96.39654192081372,18.43986640415409],[-96.39603973931139,18.43973114907692],[-96.39584273520671,18.43949076395461],[-96.3957550846344,18.439335124431636],[-96.39473545708881,18.438060197354844],[-96.39416112270493,18.437527086867703],[-96.39348403231355,18.43707159574734],[-96.3931067684444,18.437098425717068],[-96.39272800662297,18.437252922572895],[-96.39227864832054,18.438221344967076],[-96.39237813787929,18.438717786516804],[-96.39158552536838,18.439473163918706],[-96.38985657795229,18.44047364272194],[-96.38918992295862,18.440007023793044],[-96.38934732899321,18.439332664023937],[-96.38936107514559,18.43899747348371],[-96.38945737122134,18.438683036567568],[-96.38988439933809,18.438213102106488],[-96.39106585161642,18.437704087806935],[-96.3913902247806,18.437477670860062],[-96.39156329480164,18.43732512059148],[-96.39173107711582,18.437075192980274],[-96.39173758570888,18.436916415930796],[-96.39171648343915,18.43652692331858],[-96.39140087232568,18.435861402516366],[-96.3911012465021,18.435258318758883],[-96.39089748072996,18.434951786322472],[-96.39066232451091,18.434810492119254],[-96.39027933148492,18.434884528551038],[-96.39010171599637,18.434922064896398],[-96.38915812814815,18.43510766978892],[-96.38876061503908,18.43508398750612],[-96.38837813967586,18.434919515902322],[-96.38826400784922,18.434765070078413],[-96.38827522359543,18.43449162737363],[-96.38828607762179,18.43422700254564],[-96.38811492928818,18.433655221988147],[-96.38818052240231,18.43295976929221],[-96.38840288596248,18.432508696671675],[-96.38869241118744,18.43222798376968],[-96.38950174915476,18.432152209812273],[-96.38992462292595,18.432008994418254],[-96.3900125943789,18.43189743183541],[-96.39008059706043,18.431143731999896],[-96.3898309669205,18.429773945431464],[-96.38931847304917,18.428467489556283],[-96.38918438593703,18.428347639131744],[-96.38884349992549,18.428299564376346],[-96.38656246519986,18.428854365319125],[-96.38584238193323,18.429397686472896],[-96.38540498067721,18.429443174801747],[-96.38501776815446,18.42894281846651],[-96.38466847176824,18.42819652019091],[-96.38434587096066,18.427928267823233],[-96.3842039886473,18.427772782407544],[-96.38397425248496,18.427185369691415],[-96.38391688902573,18.42677685502946],[-96.38390667242021,18.42612274545303],[-96.38420861785374,18.425078339040112],[-96.38431055973172,18.424852462677165],[-96.38433412442504,18.42472966500094],[-96.38423577019375,18.424416797299614],[-96.38400425963823,18.42418728317972],[-96.38384062684571,18.424110493478395],[-96.38254894531372,18.423973843878287],[-96.38207381219024,18.424035572535672],[-96.38162246998633,18.424195375039346],[-96.38101005344095,18.424667171087435],[-96.37882020201243,18.42617792924068],[-96.3784571884596,18.42621734989035],[-96.37802920243979,18.426033479599994],[-96.37769720074579,18.425544003445623],[-96.37751794148915,18.425395950844518],[-96.37619576545836,18.424648547532854],[-96.37592689703911,18.424426459702943],[-96.37550763806888,18.424030890033464],[-96.37558235512552,18.423114941777897],[-96.3758090122069,18.42239569512384],[-96.37589293537087,18.421865728009607],[-96.3760189280436,18.421224007144133],[-96.3760409734573,18.421084706145507],[-96.37605087780173,18.42084374173902],[-96.37589644739944,18.420627768659983],[-96.37513084093808,18.420381111591666],[-96.37496442288005,18.420258103889353],[-96.3747373912218,18.419821427313593],[-96.37464914818696,18.419584573281554],[-96.37439975226164,18.419294971412853],[-96.37417919140779,18.41886801744107],[-96.37417648336458,18.4185485412944],[-96.37428102869058,18.41799193932883],[-96.37425848593864,18.417547350840152],[-96.37376980960067,18.41725926678447],[-96.37327730937136,18.41721443063318],[-96.37281580687284,18.41708830382123],[-96.37214653843802,18.41663448231003],[-96.3716444316891,18.416655240356135],[-96.37093030570094,18.41686991032435],[-96.37015369510056,18.417089911510004],[-96.36959685166858,18.417372187214312],[-96.36912285130381,18.417580183832456],[-96.36792788644095,18.41744973708836],[-96.36770807709627,18.417036673477128],[-96.36767531706977,18.41684082135066],[-96.36754826649383,18.416529176690176],[-96.36764452637834,18.415777646076606],[-96.3685358726492,18.415130366815106],[-96.36872642833066,18.414865040589575],[-96.36729539912182,18.413923886095347],[-96.36690537066329,18.413481086389652],[-96.36510937239967,18.411430950312365],[-96.36476891022551,18.41097443344006],[-96.36455582632385,18.410795166912408],[-96.36408367267745,18.41086352266956],[-96.36396130552657,18.41098095564581],[-96.36382926231045,18.411188287995458],[-96.36351353294265,18.41151897106181],[-96.36296748627893,18.411296065990882],[-96.3627595275949,18.410992436672927],[-96.36235592357963,18.410681455227007],[-96.36168654702783,18.41020652600912],[-96.36107083094402,18.409692955122125],[-96.36076138671973,18.409276525789892],[-96.3607430095484,18.409127924605002],[-96.36107507649166,18.40840082563909],[-96.36160025104755,18.407743267866238],[-96.36177314800631,18.407450909985187],[-96.36178115479265,18.40725658951277],[-96.3617314562004,18.407075674923703],[-96.36130720437552,18.407067523960052],[-96.36072166038605,18.407209018631704],[-96.35942921415779,18.40786111296734],[-96.35858053236734,18.408569762937532],[-96.35808746384328,18.408880603638067],[-96.3578794990363,18.40897399752896],[-96.35746885723069,18.409109667203893],[-96.35691875637337,18.4093726225002],[-96.35696080768264,18.40969410798516],[-96.3572339006522,18.40997734590593],[-96.35725857898024,18.411158670866484],[-96.35690464092085,18.41142562850274],[-96.35583004704938,18.411743342804186],[-96.35558418883966,18.411765247116648],[-96.35476398430978,18.411656566481156],[-96.3545385889592,18.41157802324983],[-96.35288859896275,18.410476627209732],[-96.35258777192979,18.41024733982931],[-96.35242972752928,18.409922213983293],[-96.35242863091617,18.409750902300573],[-96.35251553142899,18.409030171816937],[-96.35253715931105,18.408704024452163],[-96.35243503306208,18.408606762252248],[-96.35235831671332,18.408487103841424],[-96.35207009299432,18.407770189351197],[-96.35185702829864,18.407573358700745],[-96.35186368236953,18.40731814859845],[-96.35196642899353,18.40707963670536],[-96.35214193336157,18.406883660552694],[-96.35218723087894,18.406566141316716],[-96.35203262087362,18.406099919995484],[-96.35150262087205,18.4054988174949],[-96.35128987479618,18.405349624376925],[-96.34947366818972,18.40298050950537],[-96.34919992011879,18.402749214626624],[-96.34918458464188,18.402496943920255],[-96.3495130745514,18.401375255831397],[-96.34914224814258,18.401312190788587],[-96.34900487770062,18.40120880044344],[-96.34882737240616,18.400674182511978],[-96.34862628078105,18.400243038991277],[-96.34826289842277,18.400155700309767],[-96.34800485952945,18.400324011710495],[-96.34746441603062,18.400782488426785],[-96.34716102628954,18.4008017604163],[-96.34687064798732,18.40066191484385],[-96.34668251644621,18.40038472875716],[-96.34631494742354,18.399775424705695],[-96.34574965513156,18.3993323219716],[-96.34500758812868,18.39890535376111],[-96.34483884280428,18.398782360934547],[-96.34461528475134,18.398583641718517],[-96.34455420190454,18.398348065898347],[-96.34534237976078,18.39812606439972],[-96.3456568630387,18.398150182860036],[-96.34580005257084,18.398112606070526],[-96.3459331719817,18.398007115560688],[-96.34612632510408,18.397695176202944],[-96.34618170393787,18.397445569405704],[-96.34605546110987,18.3963735199016],[-96.34625258982135,18.39609215280541],[-96.34659681593723,18.396019169291606],[-96.34728173828984,18.39595901131503],[-96.34768312646275,18.395593524535002],[-96.34792152081695,18.395277145873763],[-96.34826970556014,18.394813750896958],[-96.34841734755815,18.394512373047917],[-96.34822922162658,18.394235184285264],[-96.34760971076452,18.39364710480453],[-96.34707650352561,18.39301050121759],[-96.34710004283784,18.39279073579894],[-96.34720880855104,18.39260865538739],[-96.34758014625544,18.392178882462417],[-96.3476723710931,18.391872067294685],[-96.34679907309857,18.390910172097563],[-96.34626899425683,18.390371290458006],[-96.34603625177448,18.39010693354635],[-96.34593548665379,18.389793340021527],[-96.34646365696545,18.389394988693766],[-96.34690005772268,18.38905514468729],[-96.34701124591396,18.388919915548286],[-96.3474584412412,18.38871214116415],[-96.34756354374224,18.388723848665222],[-96.34768327688198,18.38877482549134],[-96.34784163841209,18.388873725770964],[-96.34811693242574,18.38894860797967],[-96.34869112952947,18.389008946596107],[-96.34884713410833,18.388968348856338],[-96.3490065287159,18.38864904805598],[-96.3490232560323,18.388440561872983],[-96.34896496168813,18.388082093367245],[-96.34880358828633,18.387859153366207],[-96.34853585174551,18.38765544799918],[-96.34746784267872,18.38673553966794],[-96.3474278796341,18.38612992068738],[-96.34752813121395,18.38566898852116],[-96.34768592810781,18.385388356007695],[-96.34729205369013,18.382484396705138],[-96.34732469007054,18.382284255098398],[-96.34723771964167,18.382226761032882],[-96.34703531009944,18.38221139661897],[-96.34558123561499,18.38182360875811],[-96.34511127896417,18.381662923335455],[-96.34501727170732,18.381067801737572],[-96.34531026325311,18.380600361634094],[-96.34542708764343,18.37986902680086],[-96.34516079391335,18.379545169689038],[-96.34453022455494,18.37912993837449],[-96.34435488407468,18.378958042058457],[-96.34401593226096,18.37877127849083],[-96.34284351202928,18.378222528993774],[-96.34216970784007,18.377970950246265],[-96.34176529880602,18.377769171266777],[-96.34157795665925,18.377666413249244],[-96.34139937369639,18.377572688757255],[-96.34122102630482,18.377252784622044],[-96.3394720126982,18.375647025837623],[-96.33915141642484,18.375678434987208],[-96.33905244257528,18.375866090771638],[-96.33883201086837,18.37673128185611],[-96.3387787055467,18.376976241571356],[-96.33859347760028,18.377106460912614],[-96.33842770771258,18.37711392536852],[-96.33808464314507,18.377059827757364],[-96.33790299563981,18.3769294960386],[-96.33753299534237,18.376483353585286],[-96.33726071554446,18.376109501602684],[-96.3371641309713,18.37600981534058],[-96.33687418013648,18.37588911288276],[-96.33667911293946,18.375909199793398],[-96.33649331776081,18.376053110403404],[-96.3363655360676,18.376185493865137],[-96.33624334081566,18.376530751462553],[-96.33618607861507,18.376871597473894],[-96.33621661148959,18.377003091981635],[-96.33626450501623,18.37735221106533],[-96.33623087189392,18.377817437505257],[-96.33596946783109,18.378397546268957],[-96.33543644764222,18.379282977000685],[-96.33515816601994,18.37970185824895],[-96.33485715147958,18.37984828181999],[-96.3331763053489,18.379613345727023],[-96.3324835484969,18.379491152895014],[-96.3314120896311,18.37930664427239],[-96.33106808800517,18.37922838891626],[-96.33097697457333,18.379170065386063],[-96.33103463096882,18.37825126300629],[-96.33078734811801,18.37749588963584],[-96.33076741194225,18.37728247275828],[-96.33072715979432,18.37721234718464],[-96.3306204613026,18.377009376666024],[-96.3305902708592,18.376707463321907],[-96.3305881912122,18.3765839032298],[-96.33164094915497,18.375135008562268],[-96.33183525850569,18.374785616370332],[-96.33231812781878,18.373741151761976],[-96.33239013527111,18.37356550633598],[-96.33270683394028,18.373213880002936],[-96.33310140237217,18.372892630348304],[-96.33363762198212,18.372624740594574],[-96.33402603012263,18.372625684142747],[-96.33485352629776,18.37282536409765],[-96.33496126279641,18.372829429406806],[-96.33510803519215,18.37275950829803],[-96.33511172072832,18.372670465673025],[-96.33510765252271,18.372594852920713],[-96.33505330980233,18.37251733612203],[-96.33484294051254,18.372385917456427],[-96.33451586524933,18.37211975262136],[-96.33383306971274,18.371757841846772],[-96.33328003430825,18.371736968596963],[-96.33306427948838,18.371735686005707],[-96.33297175222111,18.37171160978022],[-96.33287403924339,18.3716393233982],[-96.33274494731177,18.371456087231536],[-96.33212436293189,18.370808395940685],[-96.33066600750533,18.37006732458991],[-96.329446850191,18.369268236407095],[-96.32914668109345,18.369256898415188],[-96.32877205130944,18.36939962275494],[-96.32814510347538,18.369608548304313],[-96.3278689283614,18.369565657683324],[-96.32736578417888,18.36903053973481],[-96.32709569900396,18.368797882233537],[-96.32654340143387,18.368481486239318],[-96.32633132332626,18.368397744329002],[-96.32596275452596,18.368394629070394],[-96.32558857142817,18.368526548068587],[-96.32508414597953,18.36865353599262],[-96.32490744966594,18.3686739062112],[-96.32466526254086,18.3686322944385],[-96.32447129280126,18.368330953844236],[-96.32445007407023,18.36802180748242],[-96.32444787145369,18.367664695373264],[-96.3242909535009,18.367345012075305],[-96.32392164836494,18.367222859037554],[-96.32360107315861,18.36715663941152],[-96.32325336648796,18.367197590939043],[-96.32313061953278,18.367284911948445],[-96.32240207359581,18.36775503743121],[-96.32226256532198,18.36783630982501],[-96.32198193013238,18.367901430453514],[-96.32187907902812,18.36791918288418],[-96.3214960598728,18.36793608473795],[-96.32120854487636,18.36776937576849],[-96.32106181740636,18.367594615160726],[-96.32099984330677,18.367345136738606],[-96.3198548206712,18.36630993707712],[-96.3196312937053,18.366093537404197],[-96.31918240657461,18.365377858832176],[-96.31897386716639,18.365059351196805],[-96.31863558065845,18.364873446068145],[-96.31844094588132,18.3647795249596],[-96.31798445836216,18.36470815660158],[-96.31779712128076,18.364711887231067],[-96.31809775799513,18.363208600928203],[-96.31841597221518,18.363058355513488],[-96.31863620760646,18.36294832844783],[-96.31891633959322,18.362758777489944],[-96.31902724147812,18.362546594020557],[-96.31905231150205,18.362352797726203],[-96.31899785714336,18.36216140621326],[-96.31884790784119,18.361674287203584],[-96.32066559837955,18.360214556134565],[-96.3203616706349,18.35985688368453],[-96.31973223556213,18.35966172868268],[-96.31954086957757,18.35964747987788],[-96.31905514969668,18.3598498484954],[-96.31871243860047,18.359907198518783],[-96.31859352230526,18.359902698124074],[-96.31842213959396,18.359780405854224],[-96.31913012392431,18.35898495933668],[-96.31979316244895,18.358999234617897],[-96.32019911411396,18.35905786449365],[-96.3204330874301,18.359023446516005],[-96.32051819687575,18.358886013760696],[-96.32044877542972,18.358645373305933],[-96.3201687040434,18.3584238051032],[-96.31986180896587,18.35829014051393],[-96.31942120511422,18.358246419456577],[-96.3182184640068,18.35839023940065],[-96.31809930911578,18.358391136547368],[-96.31774819899232,18.35837784693632],[-96.31763128618525,18.35832473735826],[-96.31758070823179,18.358176763176914],[-96.31766801681408,18.35785009267437],[-96.31856023598704,18.357523993490418],[-96.31886148330534,18.357508352218133],[-96.31917760376814,18.357271473463868],[-96.31905760613222,18.35688286658865],[-96.31873456807864,18.356203654876367],[-96.31895530261073,18.355941539258254],[-96.31961141419464,18.35571211951799],[-96.31989473084451,18.35558219483363],[-96.31995510873031,18.355357287469417],[-96.31982309465445,18.355121860545808],[-96.31919873653078,18.35478336413479],[-96.31898673788567,18.35458423832739],[-96.31903134137667,18.354474449853967],[-96.31915249186648,18.354192171828686],[-96.31921701411875,18.354140522660884],[-96.31930252326777,18.353857055108506],[-96.31913743897127,18.353461329903382],[-96.31881157580722,18.353223902969432],[-96.31867627751217,18.353067316950614],[-96.31834996442404,18.352730400936593],[-96.31811704473375,18.352602582539134],[-96.31725792542835,18.352121079966025],[-96.31704855295754,18.351800708010387],[-96.31731439403387,18.35053055437851],[-96.3169178578022,18.35019167537473],[-96.3166098479478,18.350047960569327],[-96.31579260786793,18.349938030389183],[-96.31546185721038,18.34992550570388],[-96.31513652243325,18.349475703195765],[-96.31561947752681,18.349044362496443],[-96.31559089233332,18.34881239125491],[-96.31540844666108,18.34875687637316],[-96.3152048507406,18.34859726389243],[-96.31522437809241,18.34843394609794],[-96.3152747748614,18.34829833791548],[-96.31542296481041,18.347951532470688],[-96.31523857395467,18.346848581955953],[-96.3151821487188,18.346980121618287],[-96.31489491760135,18.346993546495355],[-96.31465845847902,18.34670508988563],[-96.31468522974734,18.34621394742436],[-96.31468825344285,18.346141146254467],[-96.31458315050992,18.34606425686394],[-96.31404483369568,18.346141078514677],[-96.31391077009039,18.346148155249978],[-96.31362706869947,18.346076647711584],[-96.31355962010878,18.34601333190227],[-96.313538455568,18.3459092340903],[-96.31352568482123,18.345756855582636],[-96.31364622157673,18.34561559043391],[-96.31413024829186,18.345453993861838],[-96.3145923735567,18.344450722171246],[-96.31465378477174,18.344222475049776],[-96.31470989495142,18.343514344860466],[-96.31474229840461,18.343216184101948],[-96.3148139365149,18.34245266726839],[-96.31498135737581,18.342184115581915],[-96.31555118184059,18.342260363184607],[-96.31590803084248,18.341945822531557],[-96.31625886004264,18.341603694918717],[-96.31733976246585,18.340425908237194],[-96.31752526487475,18.34009802910714],[-96.31741785689002,18.339752224801032],[-96.31724708535774,18.33972526254871],[-96.31680578117289,18.339831574396555],[-96.31596431498559,18.33991590826696],[-96.31585664387393,18.339576929306475],[-96.31605352759294,18.33759209399898],[-96.31587320341902,18.337277710794012],[-96.31547491716537,18.336684650285576],[-96.3150523248625,18.336340581785862],[-96.31457855326607,18.336021907137933],[-96.31379188570247,18.335613795338645],[-96.31335351145464,18.333229026573974],[-96.31499274940074,18.331389378227414],[-96.3137591040408,18.329215846563443],[-96.31368673422924,18.328491783887102],[-96.31353706148542,18.3280936904942],[-96.31311317016952,18.32776870226553],[-96.31293111548143,18.32770067300777],[-96.31269730592828,18.327596878700547],[-96.31190210520043,18.327682754064085],[-96.31099573957397,18.327363755637805],[-96.30847936510389,18.329455557335223],[-96.30809086608679,18.32945044538684],[-96.3059935765047,18.329157552175786],[-96.30564669548176,18.32856532535891],[-96.30566706898935,18.32845985997244],[-96.30612425448157,18.327694568321192],[-96.3063457094068,18.327244587524945],[-96.30600355404624,18.326353332935525],[-96.3067823446325,18.325123187504687],[-96.30903152188546,18.324896677162428],[-96.30910813710636,18.32425129795746],[-96.30866787136358,18.324116745800268],[-96.30819305443737,18.323515220219463],[-96.30971634229758,18.3232464583578],[-96.3096025629701,18.322142970344487],[-96.30904242918052,18.32201158978563],[-96.30867552453446,18.321829606613278],[-96.30844556929668,18.321374962027846],[-96.30796751284208,18.320617209621048],[-96.30539033263199,18.32006502281456],[-96.30505224891476,18.320021263249146],[-96.3044458185754,18.31959119666061],[-96.30423033516786,18.31953161997319],[-96.30406312466027,18.319606044561965],[-96.30390633817478,18.31967993774532],[-96.30370738116295,18.319847813640706],[-96.30348878892113,18.319861021060944],[-96.30324354122484,18.31923857390916],[-96.30286653786953,18.31856685542084],[-96.30183755562194,18.318059961407357],[-96.3009850264674,18.317452103082076],[-96.30010839517132,18.317628825947224],[-96.29956000100799,18.317434446740776],[-96.29905733864416,18.31643550946245],[-96.29826608488992,18.316260263720608],[-96.29756655189908,18.316211683218853],[-96.29685093541605,18.316206364116738],[-96.29705925802898,18.317367459004913],[-96.29675428496955,18.31741738430628],[-96.29615049443635,18.316526672850614],[-96.29574148970448,18.315868154016982],[-96.29491637654235,18.31545428198274],[-96.29503358701936,18.313749656884454],[-96.29469578873386,18.312699540750998],[-96.29465570532403,18.312580877974483],[-96.2944496586619,18.312428793570234],[-96.29439591078261,18.31238878532639],[-96.29245348302601,18.312424143258625],[-96.29199785815564,18.312040684876422],[-96.29161455763551,18.31134364458461],[-96.2910720621793,18.310849377338684],[-96.29038647726424,18.311923366804024],[-96.29002253445105,18.312012512231945],[-96.28949984622864,18.311816633296473],[-96.28895419145937,18.31114067091869],[-96.28858370695895,18.311394703214148],[-96.28811976821959,18.311608495230416],[-96.28762449952637,18.311664342129063],[-96.28702753392139,18.3113759384658],[-96.28671305710145,18.310959634838696],[-96.28780799951221,18.310503898289028],[-96.28699910503911,18.309791942059917],[-96.28571877200818,18.309351716481615],[-96.28513495544843,18.30941919992341],[-96.28475994681202,18.309396764034148],[-96.28443313676775,18.30824616288595],[-96.28487156494941,18.307187629466114],[-96.28487801686583,18.30768079489883],[-96.28498559327238,18.30814153587295],[-96.28530634455791,18.308505335924337],[-96.28570314536711,18.308242272692155],[-96.28580963260089,18.307678177381092],[-96.28565297545879,18.307173101061153],[-96.28526817227498,18.306569927496014],[-96.2841352502395,18.306211541245716],[-96.2838651136147,18.306286214903707],[-96.2851977263299,18.303639856598636],[-96.28544582157843,18.302251589031243],[-96.28406449122201,18.301709281318324],[-96.28260031483103,18.30149174854006],[-96.28161941013224,18.300749797478773],[-96.28081168714658,18.30001630860471],[-96.27969373315995,18.299856579553875],[-96.27880898541707,18.300232766078125],[-96.27773246859545,18.299982247665355],[-96.27741335616713,18.299993037133333],[-96.27681789541782,18.300286007687134],[-96.27631652186773,18.300198010597853],[-96.27602311049691,18.300313091407475],[-96.27602290899995,18.300651359849155],[-96.27614709594724,18.300818630903393],[-96.27520596748604,18.30060372191076],[-96.27474139906701,18.300502460603013],[-96.27381215406939,18.300045110678468],[-96.27365323373186,18.300258067836012],[-96.2733237472961,18.300540331283287],[-96.27293572353341,18.300323349345263],[-96.27251487389896,18.29941435578627],[-96.27205352619353,18.298944837417025],[-96.27132303574962,18.298473698352325],[-96.27063734674016,18.29716212067831],[-96.27153683378128,18.29662209429989],[-96.27286094671007,18.296794839135885],[-96.27388961325414,18.29662427287559],[-96.27413207664551,18.2961586457032],[-96.27398886761796,18.295686490420678],[-96.27444266633302,18.295294428049488],[-96.27541348540217,18.295151452649975],[-96.27579866955443,18.29539124953402],[-96.27613078735232,18.295315347090934],[-96.27650179090091,18.29493138441063],[-96.27695416401065,18.294351782844615],[-96.27754674501386,18.29372672696445],[-96.27748570009265,18.292575830874227],[-96.27748312413053,18.292331910096948],[-96.27753046906645,18.29175165755953],[-96.27749236370119,18.290398339028343],[-96.2771418037504,18.289466472283152],[-96.27708492890031,18.288900558137584],[-96.2769532756048,18.288711038740587],[-96.27689596264389,18.28836262569621],[-96.27709028695114,18.28831416286016],[-96.27732511880777,18.288218319905297],[-96.27617583565183,18.28706719689626],[-96.275464063154,18.28659478427295],[-96.27510305118159,18.286620061595556],[-96.2741527460575,18.286558903567254],[-96.27388853343689,18.285915893160393],[-96.27444531107591,18.285730652599682],[-96.27521452739501,18.285582747412377],[-96.27557467561712,18.28509790082944],[-96.27618656980843,18.28486253328191],[-96.27651819042114,18.285155184258258],[-96.27719508949139,18.284929965492495],[-96.27746446884362,18.28477609990341],[-96.27806931932548,18.28485342843885],[-96.27826507968899,18.284646606154013],[-96.27857615209092,18.283818392583044],[-96.27853882315867,18.283460420210076],[-96.27811053077778,18.28281535153087],[-96.27737285465679,18.28247313038952],[-96.27661400070787,18.282143237586297],[-96.27511911434493,18.281509194502632],[-96.27420772776105,18.281374934935968],[-96.27323500516673,18.281055046365623],[-96.27350324760584,18.280281238948362],[-96.27349296686828,18.27963698656572],[-96.27265494605996,18.279530984575615],[-96.27271127806256,18.279296281550558],[-96.2731526549045,18.278860268699702],[-96.27338873672238,18.277852007145782],[-96.27369501409032,18.27774971814273],[-96.27396191832895,18.2774012260885],[-96.2740303175147,18.276941212877148],[-96.2736089810075,18.27643569728565],[-96.27360419148567,18.27604664330869],[-96.27367371562224,18.275727477044597],[-96.27353429784955,18.27553442721802],[-96.272276218444,18.274838278792686],[-96.27021040207228,18.274486768994166],[-96.26971761078119,18.274514875945442],[-96.2691939420236,18.27427363361926],[-96.27081420542379,18.273316401719796],[-96.27098084110384,18.27270231275594],[-96.2711236305069,18.27240671598628],[-96.27139447178558,18.27211824667313],[-96.27205300353432,18.272053934256974],[-96.27513217350497,18.2722977514822],[-96.27516945103014,18.272077932608738],[-96.27491819676527,18.2718147630394],[-96.27537303217025,18.27157614226701],[-96.27591097057581,18.27147598859318],[-96.27700516482037,18.27155808585394],[-96.27719549293175,18.27149117330498],[-96.27726983190621,18.271403081955498],[-96.27724564397056,18.27124670327271],[-96.27697507706921,18.27078155336278],[-96.27685528742757,18.26991283517407],[-96.27717491166663,18.269224251787648],[-96.27701688993824,18.26844930036799],[-96.27685657526149,18.26769926313193],[-96.27676010157074,18.267163550404405],[-96.27619909653714,18.266468421114837],[-96.27584395910753,18.265917091624146],[-96.27602787710322,18.265809891166896],[-96.27701277073919,18.26629884560566],[-96.27729565834625,18.26626717618973],[-96.27755447654846,18.266220435077457],[-96.27815275813799,18.26610044805642],[-96.27840768702924,18.266049819568877],[-96.27897823482624,18.26598652724141],[-96.27916782716176,18.26616416691786],[-96.28085765546064,18.266711736351226],[-96.28155733442509,18.266738404979606],[-96.28157417286747,18.267054445070755],[-96.28151983953319,18.267396448690704],[-96.28161032794605,18.268346093796367],[-96.28201260974424,18.26878195317977],[-96.2831289102702,18.268900956135553],[-96.28335996400858,18.268642149807533],[-96.28353817245477,18.267985023905908],[-96.28406980844949,18.267240676591655],[-96.28405650477771,18.266599810780008],[-96.28529883637486,18.264673966106045],[-96.28601787263591,18.264470231673386],[-96.28668866925688,18.264073929702192],[-96.28623732810718,18.263292614652414],[-96.28648472075827,18.26288151177016],[-96.2869312699811,18.262736036891283],[-96.28854195998588,18.262849796544344],[-96.28867538481313,18.26239887019136],[-96.28679598422252,18.261899388636607],[-96.28634940590808,18.26180591818604],[-96.28618501409096,18.261426923179272],[-96.28629679006184,18.261149840080407],[-96.28742492313467,18.260743600012688],[-96.28825913933463,18.259943866749268],[-96.28762972947482,18.25919353796843],[-96.28703185459847,18.258167252214832],[-96.2827034112683,18.259348080275743],[-96.27994742850206,18.25787125931049],[-96.2725273674132,18.25027183462771],[-96.26681806533526,18.245662068310992],[-96.26577031659076,18.243056668206407],[-96.26610821248192,18.238520180301293],[-96.26828992084774,18.22550017061843],[-96.26694251363028,18.22361167465118],[-96.25210667705983,18.207959366480907],[-96.24684919863682,18.20307359464914],[-96.24562414722743,18.200464852926075],[-96.2425489754828,18.196314090300007],[-96.23995531422213,18.19545223314566],[-96.23451826185163,18.192936015286193],[-96.23100304181543,18.189726785713617],[-96.22541967454089,18.17855810393951],[-96.22295598192233,18.173318587404708],[-96.22005518726365,18.1678846656946],[-96.2180911777836,18.16262831841965],[-96.21587398611717,18.16154316225868],[-96.21420264046071,18.16518989974844],[-96.21044294644042,18.16881545562387],[-96.20313299232515,18.174875229224824],[-96.19580599606633,18.178472599282827],[-96.18984130476593,18.18107275344289],[-96.18568253545658,18.181961247395407],[-96.17707040608252,18.183632187186788],[-96.17360293804552,18.185796817642597],[-96.1720227905621,18.18644825034704],[-96.17069103050022,18.186383983030566],[-96.16899968161181,18.18339411149003],[-96.16856449365105,18.176983178316675],[-96.16913338503349,18.17209776470702],[-96.17158540182959,18.168555948178778],[-96.17555980363602,18.167740963472966],[-96.18637609706508,18.167241438764393],[-96.1876100846008,18.1656684525513],[-96.18622406218822,18.16363809141751],[-96.18340333025219,18.160620164303623],[-96.18301540640545,18.156946904614472],[-96.18476997687986,18.155901055242055],[-96.18652314648591,18.155498724540678],[-96.18827349722375,18.152725917985094],[-96.18766448212295,18.149979437819695],[-96.17966604821095,18.140566042769763],[-96.17161036087089,18.137663557402675],[-96.1647226765503,18.134643404771566],[-96.15764063655257,18.132532081652755],[-96.15422593721019,18.131804894945105],[-96.14971855212394,18.131640947248457],[-96.14856812810348,18.132190125768318],[-96.14644725480906,18.134533116049795],[-96.14362553021391,18.140148962071407],[-96.14291316206288,18.140145896484],[-96.14138947829741,18.139120980464213],[-96.13756279441822,18.134204922259926],[-96.13671507349301,18.134035634997133],[-96.13563640503918,18.134117205457926],[-96.13312200124528,18.136568404329182],[-96.12875194245561,18.137984339464367],[-96.12412821498617,18.14037752709629],[-96.12258438133665,18.141573991110192],[-96.12215947895879,18.14636310853956],[-96.12392901351149,18.151580914998476],[-96.12304604562627,18.154228988246416],[-96.12267137882185,18.154860896590037],[-96.1216799364492,18.154944370732665],[-96.12033867587104,18.15422770046837],[-96.11915160351703,18.15418114528552],[-96.11686972835042,18.156625623349044],[-96.11694872165299,18.158620972669496],[-96.11546795335727,18.16196697066283],[-96.11206161051331,18.16577288951794],[-96.10853764808593,18.16603643270787],[-96.10401512915911,18.16484504648406],[-96.10145388137965,18.165612295456356],[-96.09918359466502,18.16684330609303],[-96.0940203618369,18.16555349376449],[-96.08949772286434,18.16365872761213],[-96.0874947665381,18.163193098412023],[-96.08422640051612,18.16253431694713],[-96.08358793586723,18.16096712929277],[-96.0835131705125,18.16078114648144],[-96.08123109353818,18.154362840044712],[-96.08096086311161,18.153977493140246],[-96.08018817159126,18.151951155789902],[-96.07951308541709,18.149954253922942],[-96.06885846499489,18.140765238920153],[-96.06638309573208,18.131588590489685],[-96.06614248060691,18.13168701548102],[-96.065446396173,18.13233659295429],[-96.06424589822262,18.132266040392096],[-96.0636610942276,18.13214661497159],[-96.06308065197516,18.13195303440932],[-96.06188127544397,18.13165266241134],[-96.06159497514585,18.131661906915667],[-96.0593668419574,18.133381805838155],[-96.05948447553698,18.13358789173958],[-96.05751786763886,18.134132033065157],[-96.05529252087831,18.13216967087527],[-96.0546647451518,18.131493199444776],[-96.05443589060098,18.131039432932937],[-96.05424912251868,18.130643823392745],[-96.05343347339362,18.13025312153934],[-96.05321781558871,18.12988082099588],[-96.05308995223118,18.127809581126826],[-96.05253905080343,18.127114237844296],[-96.05037754742045,18.127446477897024],[-96.05019731782727,18.127991369056588],[-96.04985798636807,18.12869409340641],[-96.04947146223441,18.128933071797633],[-96.04699031706508,18.131444770211488],[-96.04696982109783,18.132403337812093],[-96.0469675853127,18.133476868449463],[-96.0469848051211,18.134681445681906],[-96.04690718329448,18.135671180401175],[-96.0468737075035,18.136564532377747],[-96.04634063435708,18.13630997479879],[-96.04345021015195,18.134862600736085],[-96.04311135073169,18.134673433403236],[-96.04270940932327,18.135358455690664],[-96.04123009514427,18.13844393038346],[-96.04078665930825,18.13828658121264],[-96.04009090839492,18.137881955430657],[-96.03913348712786,18.137561164637816],[-96.03822709551389,18.13724886411461],[-96.03705826612702,18.136768252924128],[-96.0360313657423,18.136299686488485],[-96.03527259585786,18.13599191997207],[-96.03367440200861,18.135573132260333],[-96.03270628146203,18.135324370599676],[-96.0317729087804,18.13514948205443],[-96.0286202926676,18.1337446856092],[-96.02818060872335,18.13356043379912],[-96.02719546197977,18.133354449770366],[-96.02645147944224,18.13336106958775],[-96.02485764724048,18.133754037073345],[-96.0243791441348,18.13411193257889],[-96.02218658294004,18.135578951523655],[-96.02159453917324,18.13606014035463],[-96.02131410432031,18.13643163807683],[-96.02133641880869,18.136896600592422],[-96.02114285759035,18.13742625405132],[-96.02101954655359,18.137801445705918],[-96.02094133562423,18.13789729887435],[-96.02088871093571,18.137916406306772],[-96.02068274299273,18.137717305691694],[-96.02052758401356,18.13737172782635],[-96.0202123671487,18.137046378670902],[-96.02002139870689,18.13726668297727],[-96.01998259863274,18.137477257452076],[-96.01954089097245,18.137730542670283],[-96.01932420154566,18.13773962038846],[-96.01934255361078,18.13755778677165],[-96.01944688443734,18.13720135307932],[-96.01944753188013,18.137017551771123],[-96.01952913240433,18.13684403860725],[-96.01947463295511,18.13673580352736],[-96.01944233271104,18.136628454020467],[-96.01951312609873,18.13653227586775],[-96.01948256167839,18.13641331122193],[-96.01908651864358,18.136306859806098],[-96.01905273601125,18.136114145838803],[-96.01895009883117,18.13604961650441],[-96.01881108812859,18.136094442679507],[-96.01874353282216,18.136434200202643],[-96.01847684551888,18.136504149462155],[-96.01695325037275,18.13682073975002],[-96.01674921782313,18.136632553093023],[-96.0161302883044,18.13669727067912],[-96.01606507055976,18.136980796692455],[-96.01589585065386,18.137156934833854],[-96.0154782741975,18.137128813229992],[-96.01489386704151,18.13749414526535],[-96.01468715298739,18.137676757959923],[-96.01433397533384,18.137816962058764],[-96.01390815782008,18.137702802071317],[-96.01365805770041,18.137538510903482],[-96.01234258888223,18.138587517059875],[-96.01233791459236,18.1388646042181],[-96.01235670032634,18.139214417330265],[-96.0120632459545,18.13961652742711],[-96.0118621696825,18.139837083325972],[-96.01141360992926,18.14051647075604],[-96.01069196337028,18.14153612984012],[-96.01031874961137,18.142021792023684],[-96.01015160865819,18.14212889606506],[-96.00965743158793,18.142036731133203],[-96.00897302009793,18.142185014456402],[-96.0085765662156,18.142528504729228],[-96.00722439822789,18.14300719990058],[-96.00654206390772,18.14334431518523],[-96.00628291075651,18.14333395482538],[-96.00586205225778,18.143266496646618],[-96.00557287565914,18.143164706939615],[-96.00512597889298,18.143207554870514],[-96.00433660579898,18.143206362028252],[-96.0040309951865,18.14351563034677],[-96.00401869244405,18.143647003121828],[-96.00399318762936,18.144229913211063],[-96.00351932069083,18.144393048568247],[-96.0026679726513,18.14401993071408],[-96.00232674973802,18.14415697905497],[-96.00215582581563,18.144156419027183],[-96.00200711706373,18.144100246873336],[-96.0016841383515,18.144043445282364],[-96.00133231196094,18.14427594209741],[-96.00120287285631,18.144314347549198],[-96.00107585086027,18.144296198695372],[-96.00067427464302,18.144242188336364],[-96.00017550731889,18.1446435608172],[-96.00009394819097,18.1449786596516],[-95.99999637249891,18.145028243031106],[-95.99969754636584,18.14513756954409],[-95.99918945134334,18.145676362831807],[-95.99886842208434,18.145806902585207],[-95.99871329500303,18.145578409776704],[-95.9985328379704,18.145585525158936],[-95.99840191874563,18.146175410292415],[-95.99833319942667,18.1462013373133],[-95.998070573897,18.14606958225238],[-95.99779411203775,18.146212337567874],[-95.99784469623705,18.146365572551133],[-95.99786943298466,18.146549072085293],[-95.9977883344335,18.146592774332987],[-95.99771317451615,18.146563692566474],[-95.99743774364975,18.146423619666336],[-95.9973974284157,18.146486530905065],[-95.99736808147594,18.14664308457799],[-95.99705727023263,18.14682739945033],[-95.99690709694727,18.14682855601228],[-95.99665823044404,18.146854468277184],[-95.99660261520188,18.14692393620726],[-95.99659916325106,18.147174730158554],[-95.99686671283831,18.147407727271855],[-95.99706178327858,18.14758046599775],[-95.99705676700859,18.14769497708818],[-95.99647318991572,18.14782216944883],[-95.99645061178109,18.14833752900188],[-95.99657639994541,18.14853182895098],[-95.99654266507292,18.14861651221497],[-95.99646585162219,18.148656483195225],[-95.99632345404217,18.148650781109666],[-95.99563696675,18.14958406440479],[-95.99539642762664,18.149775324176005],[-95.99524845510564,18.14995202827322],[-95.99532027674309,18.150445994666143],[-95.99531424743049,18.150606080150226],[-95.99422050801951,18.15046986046815],[-95.99413055426243,18.150942538848994],[-95.99388793421775,18.1512539141479],[-95.99373712866037,18.151269381495126],[-95.99337826395197,18.151577663998296],[-95.99330113549934,18.151624760817185],[-95.9931231800798,18.151574613932837],[-95.99309384200677,18.151387030321075],[-95.99269579780969,18.151220492033588],[-95.9923685305443,18.151494190474693],[-95.99208371985509,18.151654876863688],[-95.99186607314039,18.15165332482377],[-95.99177866596847,18.15159243598424],[-95.99182358155525,18.151147093873988],[-95.99140424926219,18.151742360734886],[-95.99130836762623,18.151874739657842],[-95.99122408780426,18.151914379307755],[-95.99088916339605,18.151877897920258],[-95.9905950711584,18.151193662752746],[-95.99050986060877,18.151082704144187],[-95.99037091336925,18.150998269761317],[-95.9897895827728,18.15090327163199],[-95.98943549016627,18.150932093986455],[-95.98861663038826,18.150459028353737],[-95.98838229325258,18.1503575359705],[-95.98758905409193,18.15081415037281],[-95.98717006383123,18.150783008456017],[-95.98641598565166,18.150141568022434],[-95.98589517819869,18.150034613383525],[-95.98564333124767,18.14961581705063],[-95.98543110292081,18.149320521756977],[-95.98515389978314,18.148762404154922],[-95.98518332028732,18.148605824997617],[-95.98499146259348,18.14825586462797],[-95.98458404347008,18.147998283296374],[-95.98443575247467,18.147842963352275],[-95.98419363338866,18.147452311804216],[-95.98415050979793,18.14737439414273],[-95.98382299035711,18.147113650619417],[-95.98368866938853,18.146993994515014],[-95.9831202971136,18.14676802927437],[-95.98298597840073,18.14664834290619],[-95.98289898137585,18.146359141815026],[-95.98295438188529,18.145818178261948],[-95.98281204398916,18.14557753790683],[-95.98257683992324,18.14533319994223],[-95.98242715152423,18.14549898475724],[-95.98230035384466,18.145700976124374],[-95.98215978310333,18.145707499119624],[-95.98205674325112,18.14565767561345],[-95.98199100007116,18.14550650449513],[-95.9820817488764,18.145256180146873],[-95.98210777553811,18.14511755344921],[-95.98226254856087,18.144906033279653],[-95.98197973906389,18.143929655767977],[-95.98184842712624,18.143740268752424],[-95.98188444747854,18.143525856651877],[-95.98194899940773,18.143115771318207],[-95.98153736992163,18.14295321023519],[-95.98139200903978,18.143842578492468],[-95.98138449390126,18.144013690058443],[-95.98101667900784,18.144367156052],[-95.98024454749844,18.14460184563393],[-95.98011618291912,18.145180506339216],[-95.97992611885081,18.146148618413974],[-95.97929639213328,18.146713790136005],[-95.97907215685467,18.146825417572188],[-95.97850571110553,18.147276005943468],[-95.9783624545135,18.147511487669647],[-95.97804765071982,18.14801945308301],[-95.97793281100832,18.148364035755662],[-95.97783247108669,18.148802048101004],[-95.97752886095242,18.14905652417832],[-95.97736845486509,18.14907545674356],[-95.97717801528614,18.1490233613153],[-95.9765436461704,18.148636007314906],[-95.97615732734863,18.14880460373223],[-95.97562718704233,18.149221359422313],[-95.97513833561135,18.149455684643726],[-95.97480190655642,18.149470337318178],[-95.97466138232119,18.149424647493106],[-95.97464852669668,18.14933604340706],[-95.97458960837793,18.1491494684264],[-95.97458870463169,18.148789050277003],[-95.97420927355142,18.148837850863003],[-95.97381782971479,18.149158491937214],[-95.97360368023294,18.149262009059896],[-95.97305439198453,18.1493600565438],[-95.97276038345251,18.149372274754967],[-95.97226965010896,18.14947267338124],[-95.97168745236144,18.14974559770957],[-95.97159359020509,18.149995851296637],[-95.9715067593894,18.151287586438286],[-95.97132916367542,18.151512698473596],[-95.97107076414636,18.151478270500604],[-95.97068505698144,18.150429925008723],[-95.97023356922853,18.150656248410712],[-95.969798394583,18.15105047927466],[-95.96928193343331,18.15155351211814],[-95.9682704553768,18.15259735380272],[-95.96820318846972,18.152735807524266],[-95.96765630042387,18.153730908845944],[-95.96716508045569,18.154223727934948],[-95.9667219238084,18.154321294186047],[-95.96518376371807,18.154595738500404],[-95.96480783292031,18.154564601393304],[-95.96470921577242,18.154487328871028],[-95.96464332127863,18.15419126910092],[-95.96477333515901,18.15379876476311],[-95.96459274473108,18.153368885883026],[-95.9644069571662,18.153253689501526],[-95.96355436335011,18.152828746739488],[-95.96344956945148,18.15225277846872],[-95.96323429871472,18.15202038580486],[-95.96273921444663,18.15203358310748],[-95.96146986965203,18.152686802853168],[-95.96099999387462,18.152717590979705],[-95.96053163400029,18.152715306422124],[-95.96034647805237,18.152782403022],[-95.9600958908768,18.15315349504209],[-95.95967260021695,18.153310454538484],[-95.95942179674813,18.15329205947984],[-95.95904757415593,18.15331840479155],[-95.95887970711681,18.15349778889771],[-95.95874454803322,18.153459661134207],[-95.95871178094757,18.15323377388893],[-95.95867295240186,18.153048464607025],[-95.95842347802409,18.152985334210143],[-95.95823249612278,18.15328408979184],[-95.95809052514477,18.153542496250566],[-95.95797690747855,18.153853410982038],[-95.95802466921009,18.15397017256271],[-95.95800478634533,18.15429898292348],[-95.95837892167776,18.154748595563092],[-95.95861422256831,18.155422677960814],[-95.95912545639021,18.156284805120492],[-95.95916104625553,18.156515733300523],[-95.95907991548,18.157058925486012],[-95.9588337636934,18.157191090012418],[-95.9584425169785,18.157240899461954],[-95.95803131149381,18.157224329434484],[-95.95736839240823,18.15720851791866],[-95.95699190506406,18.15718244024106],[-95.95661499623407,18.15716724862631],[-95.9558577529761,18.15721320267471],[-95.9549556577669,18.159149501528248],[-95.95446233457164,18.159697913074638],[-95.95396728357775,18.15976539406256],[-95.95253419580274,18.159827814139135],[-95.94858992746822,18.159231521345646],[-95.94747919603486,18.15898996420782],[-95.9469420595309,18.158716916193555],[-95.94558618398395,18.157861219207916],[-95.94339953514748,18.157368554108643],[-95.94252745732604,18.157683034427237],[-95.94085375201303,18.158271151485735],[-95.93999481704748,18.158028779729648],[-95.93950043508028,18.15782300734776],[-95.93741131643475,18.15676282955883],[-95.93714170061634,18.156467070124847],[-95.93687530099595,18.155589380691538],[-95.93656305240683,18.15429557487846],[-95.93614651948968,18.1537263790662],[-95.93580764800458,18.153398109033333],[-95.93449701720499,18.152296445825755],[-95.93236883295964,18.15135459504654],[-95.93248954182428,18.151167684183918],[-95.93286874681348,18.15112932111049],[-95.93376922024203,18.150927943116926],[-95.93410990628831,18.1504891074444],[-95.93410644155858,18.150205103789517],[-95.9340236462549,18.150079016826396],[-95.9334362567202,18.149740717540055],[-95.9331198505725,18.149267605323814],[-95.93325865650655,18.14903540800873],[-95.93364497561879,18.148836205224313],[-95.93419682156366,18.148889232459908],[-95.93470005761071,18.14913208630594],[-95.93524016857509,18.14911837021191],[-95.93545506049207,18.148981286477635],[-95.9354498897884,18.14819091795522],[-95.93544001786199,18.147882355229456],[-95.9356349035811,18.147652424870387],[-95.93595503395409,18.147496588276624],[-95.93604663991113,18.147423575603398],[-95.93631570890045,18.147150596325446],[-95.93623037906588,18.146356988133334],[-95.93601488554549,18.146325262876587],[-95.93573455517867,18.146490368845832],[-95.93506649597481,18.14634057859172],[-95.93490266155987,18.146050119229187],[-95.9347197122363,18.145827914379083],[-95.93420347251589,18.145515507307152],[-95.93399977317182,18.14517242936671],[-95.93402498424177,18.14498498959773],[-95.93414108290784,18.144526557866584],[-95.93399623732591,18.14410602009542],[-95.93373680883298,18.14385320510479],[-95.93342134136361,18.14356805390753],[-95.93333792106716,18.143413886707094],[-95.93339803570592,18.143069949387268],[-95.93339694853813,18.142967595495293],[-95.93329151219433,18.14280178385053],[-95.93317377383028,18.142533134460336],[-95.93334156501237,18.142308360571406],[-95.93341803821943,18.1422360594712],[-95.93351920237251,18.142116306008234],[-95.93350878859269,18.141841246356023],[-95.93349476187291,18.14177603681071],[-95.9333417257564,18.141667534415888],[-95.93318416862064,18.141661158608827],[-95.93278762875082,18.141704346339566],[-95.9323774332621,18.14180083865557],[-95.93244947344874,18.14208376943691],[-95.93257205951147,18.14249799997407],[-95.93222149303801,18.14367182065814],[-95.93212577840916,18.1438878563024],[-95.93198728789696,18.14444606807683],[-95.93192496108577,18.14472884845196],[-95.93179148959541,18.144852520438747],[-95.93138861447261,18.145277745448766],[-95.93125221873782,18.14530619759023],[-95.93101088192566,18.145296428272047],[-95.9306349359208,18.144670892005706],[-95.9305074052653,18.14425871106073],[-95.93044938267076,18.144176009803118],[-95.93016146914715,18.14409472480662],[-95.92958331920619,18.14410880395991],[-95.92933007473732,18.144382410986054],[-95.92900146416974,18.14446015034622],[-95.92882107734385,18.144227919243065],[-95.92862140490553,18.144305502286727],[-95.92855112419,18.14450081840573],[-95.92843779438692,18.14478009031069],[-95.92832183363765,18.144866440053192],[-95.92772077793722,18.145270562798032],[-95.92739149915832,18.145227277545132],[-95.92709952529918,18.145137231144417],[-95.92694104191457,18.145160909745186],[-95.9264526332588,18.145381701228075],[-95.92622027401808,18.146220450101225],[-95.92598417456287,18.14641070003546],[-95.92573764993216,18.146430780499145],[-95.92554334655068,18.146410892676556],[-95.92522845710386,18.146127458307262],[-95.92535101389205,18.145777521150137],[-95.92526180746387,18.145232555958955],[-95.92532052182503,18.14503950579126],[-95.92549276603143,18.144847991777738],[-95.92550660648101,18.14453576391054],[-95.9253991137374,18.144260733641715],[-95.92542032838531,18.143924744205265],[-95.92552042300775,18.143513761491988],[-95.92559179999068,18.14332416857053],[-95.92564590473137,18.143097769925646],[-95.92558487094897,18.14288635123353],[-95.92550221391986,18.14276269915524],[-95.92522169089449,18.142414484326707],[-95.92509054040414,18.142246753586505],[-95.92477832267923,18.141903291475842],[-95.92463852693851,18.14178933885654],[-95.9243062987614,18.141613458879306],[-95.92369434353958,18.141334234082592],[-95.92368657500515,18.14122566174126],[-95.92362558010245,18.14118107608681],[-95.92348943220645,18.14112743669631],[-95.92300023190148,18.14136626612435],[-95.92277862859493,18.141393359044628],[-95.9226014193647,18.141271910307296],[-95.92235877112375,18.141063581542767],[-95.92209783236433,18.141125154602662],[-95.92200710747443,18.141326006287443],[-95.92217630104363,18.141502989124035],[-95.9224396550743,18.141704924370856],[-95.92269997117728,18.141975593174834],[-95.92249287324842,18.14284953877376],[-95.92263833504643,18.14300079643135],[-95.9226642183304,18.143139550432522],[-95.92249483823457,18.143346902472615],[-95.92246201625494,18.144266600332003],[-95.92248742219397,18.14459660476996],[-95.92248864812967,18.144749662305003],[-95.92250483827348,18.14492628059884],[-95.92220692983238,18.1455032961714],[-95.92231736597864,18.14567895446197],[-95.92242319763136,18.14588885726164],[-95.92233900461605,18.145981071866174],[-95.92208035873512,18.146056657255144],[-95.9219382362329,18.146213470367115],[-95.92197186499305,18.14635828015014],[-95.92200865984927,18.146431495072818],[-95.92217411440362,18.14653861612544],[-95.92232774971615,18.14657353462286],[-95.92260945301427,18.146651638235312],[-95.92261470120201,18.146991485018248],[-95.92256698446158,18.147342785277715],[-95.92238193759727,18.147473100304012],[-95.9220118278148,18.147537457921715],[-95.92229683365349,18.14834944673163],[-95.92225382023372,18.14868848965409],[-95.92214394964981,18.148958016785343],[-95.92217223071242,18.149266517340948],[-95.92221407991485,18.14958448950722],[-95.9218529901342,18.151100015828035],[-95.92108692022794,18.15180042753974],[-95.9209477303595,18.151941793087815],[-95.92054504262632,18.15201326797427],[-95.9204544930065,18.151688873550597],[-95.9203286219751,18.151515523017224],[-95.92016579856676,18.151402012817016],[-95.91998599498595,18.151354619770018],[-95.91978507185928,18.151152692386574],[-95.91948221038416,18.150726147111243],[-95.91900557301716,18.150746887101207],[-95.91865441568649,18.151093467819294],[-95.91866941086727,18.151227717947847],[-95.9186890482166,18.151415625186416],[-95.91848033710323,18.15154746991567],[-95.91834307273837,18.15148846322495],[-95.91813815151278,18.151533589437747],[-95.91779577635185,18.151787705471406],[-95.91760457933009,18.15184008638272],[-95.91736862643285,18.151797110857387],[-95.9168023320318,18.15147344786476],[-95.91659968217738,18.15162560183245],[-95.9162521662958,18.151731775651342],[-95.91569934905306,18.151736046876294],[-95.91546173699106,18.151672454532275],[-95.91518409449884,18.151781461590588],[-95.91511027274055,18.15202568403305],[-95.91492785121721,18.15217433137616],[-95.9148328518865,18.152212710081756],[-95.91458002979812,18.152155528038804],[-95.914340141828,18.152028519896874],[-95.9142557036239,18.15200700917194],[-95.91378127584079,18.15196732452739],[-95.91368822614635,18.151931495899134],[-95.91356189554722,18.15182138215505],[-95.91334380764152,18.151646354397087],[-95.9131522483093,18.15145386949405],[-95.91314062109075,18.151363822049518],[-95.91318604918564,18.151044733028527],[-95.91319167514905,18.150918078060954],[-95.91304230413067,18.150762751584637],[-95.91274857263232,18.150691109058755],[-95.91245649586068,18.15058222511675],[-95.91288415850738,18.149027577613026],[-95.91295615000791,18.14881407250664],[-95.91298448294344,18.148703269053613],[-95.91302996894217,18.1483841837275],[-95.91301989334278,18.147906101620038],[-95.91284583451767,18.147779601438913],[-95.9126425051245,18.147607155187643],[-95.91257697352125,18.14750002039648],[-95.91257874345513,18.147283634681116],[-95.91300628901934,18.14628079666369],[-95.91313488960776,18.146024773412364],[-95.91352365108304,18.145540506723194],[-95.91357271606904,18.145139473161294],[-95.91348651894492,18.144792664856197],[-95.91346789714919,18.144508286378652],[-95.91378185730235,18.143075256539476],[-95.9137739222142,18.14266884654495],[-95.91390467658528,18.142071676837645],[-95.91383107724175,18.141377989392367],[-95.91387186386277,18.141201518454636],[-95.91382649943512,18.140864360146736],[-95.91374777232085,18.14029010780581],[-95.9136101264329,18.139807783743663],[-95.9135602584264,18.139449506586743],[-95.913554369461,18.139068203600573],[-95.91352062713685,18.138715808130485],[-95.91342137189622,18.13848126591654],[-95.9131361731624,18.13823391750367],[-95.9128329923658,18.138022514970487],[-95.91254794323487,18.137895684416264],[-95.91182898274837,18.13802890468827],[-95.91172044170617,18.138249782554453],[-95.91152851516591,18.138372954245426],[-95.91137265580892,18.138365332677893],[-95.91126265783316,18.138371348529176],[-95.91105076811351,18.138326066068373],[-95.90959424351007,18.13802590521044],[-95.90932282426274,18.137716239425345],[-95.90918836359685,18.137286428280447],[-95.90926518121728,18.13703807036876],[-95.90921448296399,18.136821208298215],[-95.90848390480812,18.13672342799032],[-95.90795021763927,18.136610696168532],[-95.90777971989257,18.136379503340834],[-95.9077366896376,18.13624823054073],[-95.90760027576533,18.135900673564663],[-95.90744402731451,18.135754436475338],[-95.90667101315807,18.135572738507392],[-95.90506829768356,18.135751135052942],[-95.90483223697822,18.1357283808361],[-95.90458672243489,18.13579054996285],[-95.90446962763826,18.135754849688624],[-95.90435481884327,18.135667757030433],[-95.9039942689065,18.135647929690265],[-95.90381176071952,18.135748735320817],[-95.9033416594242,18.13576569377892],[-95.9032086701618,18.135724209601904],[-95.90281522668602,18.135703725342466],[-95.83316693083566,18.129026833889043],[-95.7999247169983,17.95001256241443],[-95.85020464915385,17.844534326509745],[-95.85561593211986,17.84664074510357],[-95.85881556674792,17.84478349084742],[-95.85941092636006,17.841924492009753],[-95.85855002080706,17.839189220659705],[-95.85221399697099,17.831796940085212],[-95.84920575629423,17.82757571097261],[-95.84933641874557,17.82584792754716],[-95.85168531575005,17.821591619302808],[-95.85332530400899,17.81883994926767],[-95.8540949707683,17.813086758606232],[-95.8543195329014,17.808781208508776],[-95.85486308009354,17.807143463347074],[-95.85664098442493,17.80443570366623],[-95.85888261514759,17.802697053534814],[-95.85996754233958,17.802067121831385],[-95.86125336626958,17.801445428999443],[-95.86421178379857,17.800555094782396],[-95.86563752010437,17.800179981088547],[-95.86682070678614,17.799602206092175],[-95.86850717145637,17.797822086411315],[-95.86913080427581,17.795650647232264],[-95.86794647423795,17.7911779370869],[-95.86708611781842,17.788250135720773],[-95.86615363958538,17.78430038399631],[-95.8657723129765,17.782384875469972],[-95.86572630144053,17.781227592895277],[-95.86571056075286,17.77988832809757],[-95.86585858250947,17.77826635170385],[-95.86639040394391,17.774352832748036],[-95.86716468475475,17.77322903478398],[-95.86898448618172,17.773014739010705],[-95.87319549074704,17.773302809427435],[-95.87885977244844,17.773476900777496],[-95.88060525360845,17.77288837315831],[-95.88477920425277,17.77182448699392],[-95.89075164264187,17.767135039087464],[-95.89143911367557,17.76650888044361],[-95.8921706935796,17.76595222350261],[-95.89353257184416,17.764033181155924],[-95.89351120987214,17.762799948369604],[-95.89263368906137,17.760322694993306],[-95.8955463925364,17.757938544710612],[-95.89718190249914,17.756553875044403],[-95.89902422681911,17.75434508545743],[-95.89893946317392,17.75197644808975],[-95.8981970177424,17.750513413700673],[-95.89797117143331,17.749931088359972],[-95.8976774877932,17.74936988543567],[-95.8989881968688,17.747119674469843],[-95.90059814436518,17.744535108943467],[-95.90087166290971,17.74378533172535],[-95.90124129028084,17.742119281344515],[-95.9015744245138,17.740858753342536],[-95.90206826308287,17.73907177892005],[-95.90244292208632,17.73734340710905],[-95.90278941274028,17.734757919877268],[-95.9028637918642,17.73410371617416],[-95.90215788949564,17.730275621590806],[-95.90151096927292,17.729056266867985],[-95.90070529867978,17.72862088853708],[-95.89940341604506,17.72849324848727],[-95.89789757037488,17.72840200359633],[-95.8969063304636,17.728148521700973],[-95.89640734518986,17.728055880641705],[-95.89513077069813,17.727630349516858],[-95.894817179869,17.727328437594906],[-95.89464889305555,17.726914897106326],[-95.89458236984814,17.7264141440927],[-95.89455970502053,17.724298484344104],[-95.89442163962133,17.72260436757017],[-95.8941233075717,17.722038968055756],[-95.89370574472633,17.72155721287777],[-95.89210761195585,17.720606803550027],[-95.89114537130479,17.720943690665365],[-95.89061097032913,17.722050433021423],[-95.89029588504576,17.722888953514484],[-95.89013438459841,17.723878865309473],[-95.88992049053661,17.72491485765721],[-95.88936090670984,17.725422397251577],[-95.88806321524197,17.725546172561394],[-95.88711894854958,17.72606251907058],[-95.8865785866443,17.726310531905426],[-95.88522347068664,17.726828610599682],[-95.88064285118526,17.727940294186453],[-95.87987641642269,17.728106548492917],[-95.87897027518011,17.72814019457104],[-95.87802806828847,17.728154677764167],[-95.87738914692022,17.728199251954038],[-95.87634282809353,17.728271348349892],[-95.87509009210561,17.728211212825954],[-95.87280972977828,17.727409040945588],[-95.87210289277351,17.725667653551284],[-95.87226169891244,17.724753550554965],[-95.87269785908637,17.718732066937093],[-95.87339628729251,17.717133836798837],[-95.87393466048138,17.71678046574641],[-95.87511461861396,17.716102973212003],[-95.87701485342586,17.715680220025206],[-95.87884892669354,17.716155750215364],[-95.88028730929955,17.716715182882524],[-95.88164475822481,17.716969455307833],[-95.88213727768147,17.717038719484094],[-95.8837352289562,17.71665389221448],[-95.88514239260098,17.715778902606075],[-95.88639998970893,17.714971234199595],[-95.88751800838719,17.71417266296487],[-95.88814593320342,17.713774083823978],[-95.88943403446171,17.713181736750187],[-95.89259317241198,17.712414854819997],[-95.89374299351101,17.712446492409242],[-95.89402042928083,17.712319984336432],[-95.89412277628503,17.711815122540827],[-95.8941217076943,17.71145958169501],[-95.89402724264653,17.71097370172464],[-95.89405850537838,17.710604876848038],[-95.89389534548161,17.709929190289586],[-95.89360405908644,17.70913786651738],[-95.89326147675689,17.708344621850813],[-95.89361599961455,17.706686630281695],[-95.89385049738968,17.706225346886583],[-95.89497557281686,17.70481099507066],[-95.89519127788975,17.70440003523879],[-95.89444173679902,17.70447055810513],[-95.89097735337367,17.704063272898452],[-95.88370991664289,17.702758463302985],[-95.88257171317849,17.703168751733074],[-95.88183316586293,17.702797628725705],[-95.88045445770587,17.702854008315626],[-95.87913979373474,17.703034417698518],[-95.87841167354571,17.703263539464672],[-95.87698014112539,17.70319468650382],[-95.87561652946943,17.702213066570778],[-95.87511779007076,17.702789569018876],[-95.87428075519006,17.702755283801196],[-95.87242128426493,17.702386875023365],[-95.87101835265952,17.70216893044403],[-95.87050614215798,17.701559021691708],[-95.870420780931,17.701036974463136],[-95.87025180156229,17.69966039716178],[-95.8702775291651,17.699199268208815],[-95.87002780620764,17.698134537720478],[-95.87043705723221,17.697211378294753],[-95.87085638319923,17.69651630602533],[-95.8706288055144,17.695048459512577],[-95.8706570611692,17.694693207840032],[-95.87082299091668,17.69417250949533],[-95.87075879242985,17.692686879749715],[-95.86975701189874,17.690419383775804],[-95.86877729189058,17.68953934372911],[-95.86815491769619,17.686834530885506],[-95.86808027267375,17.68618798775202],[-95.86787641108862,17.68551248556571],[-95.86617402736573,17.683717781969847],[-95.86584633292233,17.683352484083684],[-95.8642011165781,17.683383102483447],[-95.86364341191182,17.683315048741065],[-95.86246535719869,17.682989397461597],[-95.86218258344354,17.68270783266894],[-95.86203833853824,17.682386161328566],[-95.86064165581661,17.680806671923335],[-95.85939079167508,17.679896387077235],[-95.85799218278987,17.679295035898235],[-95.85656865641715,17.678804184737317],[-95.85605235986861,17.67821746615283],[-95.85290691134855,17.675308475557756],[-95.85226881729596,17.675098149023768],[-95.8511409732152,17.675692972987576],[-95.8506349619804,17.67578782374096],[-95.85020516553811,17.675841317752827],[-95.84904715895141,17.675348848297745],[-95.84822181470264,17.674896754416636],[-95.84733627544847,17.673650220865284],[-95.844836236444,17.673397114344425],[-95.84460672627074,17.673256965501878],[-95.84435086866642,17.673151380005095],[-95.844013426316,17.672925909092044],[-95.84406343743149,17.670704243223668],[-95.84350985717441,17.670286878645243],[-95.84349971220723,17.669756488262408],[-95.84414893852511,17.668757225340585],[-95.84375012850808,17.668367965386892],[-95.84351275954191,17.667929735034647],[-95.84210494068992,17.667671492336638],[-95.84133793075188,17.66727003089744],[-95.84087107354554,17.666303983501223],[-95.83977725114028,17.663805125161446],[-95.83956556161297,17.66350873289639],[-95.83868209397247,17.66320477962546],[-95.83850869616907,17.662358731006066],[-95.83850526040754,17.65998709828102],[-95.83681160886539,17.659916853303173],[-95.83555926897674,17.65909634709385],[-95.83268512564683,17.656633123761196],[-95.8322672029247,17.656116669482742],[-95.8311613334431,17.65296700073452],[-95.83001754560763,17.652396966489277],[-95.82833505586251,17.651821499999187],[-95.82745114775696,17.651258867653837],[-95.82465343077615,17.650135466985205],[-95.82259157843885,17.649104734350658],[-95.82168583577084,17.649905730754256],[-95.81992916059829,17.650544190609537],[-95.81987633457697,17.64915291553484],[-95.82003190329891,17.648259585535925],[-95.81632266478363,17.648373012073193],[-95.8155634164603,17.648481245924245],[-95.8146278640898,17.648421064017157],[-95.81390834585972,17.648320286510284],[-95.81336218831296,17.648238991869903],[-95.81266025336981,17.645934701626857],[-95.81133462555601,17.64595872042628],[-95.8096184399543,17.647199421224514],[-95.80718575112718,17.645863967862397],[-95.80637343942442,17.644196079041762],[-95.80563640504596,17.643444990743717],[-95.80644525822117,17.643255509194148],[-95.80712551952172,17.639845219821837],[-95.80891312200322,17.63854901835515],[-95.8073667546488,17.6377052894602],[-95.80513149035386,17.635593122154432],[-95.80431632276355,17.63232645617461],[-95.8033055961003,17.62936575957491],[-95.80124425612507,17.628428794431557],[-95.80058982954813,17.627624746612128],[-95.79911043306424,17.627628429994047],[-95.79906956963481,17.628147537990856],[-95.79727256681974,17.630843720890027],[-95.79604375107635,17.630949736602815],[-95.79522857317392,17.63085914399545],[-95.79470390379521,17.63129740217829],[-95.79429505943978,17.63149600734897],[-95.79374622878402,17.631736385875854],[-95.79294114159046,17.632077120175097],[-95.7924699056395,17.632090445340054],[-95.79228999713916,17.63234572988347],[-95.79153932667373,17.63221813809264],[-95.7913451734467,17.632452411076372],[-95.78972327441738,17.63332445597848],[-95.78828878283889,17.634359055488517],[-95.78792079881475,17.63435660010896],[-95.78636578236166,17.633605856576025],[-95.78563722190108,17.63344342865406],[-95.78442529649817,17.635402144053046],[-95.78446659337033,17.637513824262044],[-95.78403482365434,17.63773567768709],[-95.78375120077334,17.63760022040401],[-95.78346088306392,17.638708212390156],[-95.78149545537485,17.639027832584475],[-95.78105095450621,17.638198755694475],[-95.78107163916252,17.637370956809207],[-95.78151676910244,17.635438631097713],[-95.78178445500077,17.634506147769457],[-95.78192608375866,17.633724002896486],[-95.78202792347497,17.632764943471727],[-95.78214868417092,17.631945735469174],[-95.78300243420824,17.63042028337543],[-95.78302253469957,17.629809581116888],[-95.78294790121367,17.629327394934535],[-95.78275431785625,17.6287704895434],[-95.78249980859277,17.62577322243618],[-95.77962408605526,17.625447628545146],[-95.77889059119468,17.62554913215331],[-95.77868060399362,17.62544385156906],[-95.77803900483826,17.624995179305472],[-95.77730598309705,17.625114989790745],[-95.7769758960406,17.624791772991273],[-95.77636730746275,17.624280584731366],[-95.77569827503135,17.624377378535428],[-95.7751279610261,17.624252636133463],[-95.77433045257942,17.623998165963542],[-95.7738322356355,17.623846878792847],[-95.77337442608325,17.623797998317514],[-95.77339108393994,17.62368889478546],[-95.7732340154912,17.623136827049905],[-95.77274099132836,17.6215387814039],[-95.77266638673228,17.620904076684326],[-95.77262294533023,17.61862350421552],[-95.7731961963861,17.616708085001164],[-95.77340616123473,17.6161101779079],[-95.7734118510445,17.615287659127546],[-95.77288996827224,17.612597809811973],[-95.77296079012194,17.611053214222068],[-95.77385066743074,17.61005936749183],[-95.77423024802152,17.609730648646632],[-95.77349643040844,17.608124887066197],[-95.77353022013682,17.60719036139426],[-95.77364051475053,17.60624271187538],[-95.77365846149638,17.605850402567683],[-95.77462145637026,17.605310174172132],[-95.77527189443566,17.60479354344551],[-95.7760957107422,17.604421095339205],[-95.77639606979841,17.604400348977777],[-95.77722903557208,17.604305634366824],[-95.77725567421572,17.604538121922644],[-95.7767106881629,17.605064877550205],[-95.77675670447297,17.60543392596196],[-95.77656887230273,17.605827812801692],[-95.77663856090345,17.606163256180537],[-95.77649815458517,17.60702859394803],[-95.77697895321103,17.609053225691923],[-95.77909179374001,17.610840634149213],[-95.78010334951983,17.610844492677643],[-95.78037721896987,17.611117268464852],[-95.78905201178554,17.610862341285042],[-95.78902314002517,17.608346651808574],[-95.79470255940555,17.603517592001253],[-95.7955867131165,17.604409581466996],[-95.7961779678136,17.60603090092866],[-95.80083734160644,17.606728535465777],[-95.80201455211312,17.606961683698103],[-95.80554315805966,17.605991789700965],[-95.80644790012047,17.60469714086946],[-95.80683839771626,17.60373251868822],[-95.80748959790674,17.597853606369085],[-95.80780568868636,17.59676809029935],[-95.8086600579274,17.594717609195015],[-95.80876298973476,17.59318740409475],[-95.80787526088164,17.59307870797261],[-95.80734958787116,17.59281496315799],[-95.80731509173813,17.592177556416914],[-95.80754956581126,17.59184159126238],[-95.80708445749815,17.59211377830951],[-95.80669787538989,17.5922129801026],[-95.80566853159718,17.592338692472026],[-95.8050484192691,17.59193595760007],[-95.80456346506833,17.591869875645955],[-95.80424606359293,17.591458293658775],[-95.80387428826913,17.591366259657207],[-95.8030135191741,17.591425719652534],[-95.8023078082216,17.59061684813946],[-95.80230351548869,17.58989175730801],[-95.80264264742851,17.589704934693373],[-95.80250607040779,17.589513831231102],[-95.8020567019069,17.5898197029137],[-95.801685052751,17.589279325766256],[-95.80150938116299,17.58937888225978],[-95.80056806925518,17.58907678380899],[-95.7997711606385,17.588341909651547],[-95.79913032937213,17.588005678590946],[-95.798598273859,17.588294376084775],[-95.79795417838648,17.587881730302513],[-95.79769131038921,17.588012908708606],[-95.79727275273251,17.58794043511881],[-95.79642459318654,17.58697767092565],[-95.79600902884653,17.58726348681006],[-95.79577314167477,17.58712865733054],[-95.795965237102,17.58674366905217],[-95.7952210977777,17.58615595395014],[-95.79511453949152,17.586319602951676],[-95.79471115858621,17.586291103706742],[-95.7944507461878,17.58648235593415],[-95.79399961907774,17.586779477741857],[-95.79366517577347,17.58668245641769],[-95.79357769254011,17.586274833476637],[-95.79209570176977,17.5864204717102],[-95.79154622623429,17.587583874994095],[-95.79225273274915,17.58885014985117],[-95.79046195961848,17.591286630305888],[-95.79027182650577,17.593591141909315],[-95.78960481670407,17.59493711625197],[-95.79046236038414,17.595078943051362],[-95.79108071007681,17.596269852554258],[-95.7921633850599,17.596476258816097],[-95.7926860809344,17.596350370357356],[-95.79260785523712,17.59676145263205],[-95.79314086421459,17.599444881041336],[-95.79298383948617,17.601434382901118],[-95.79109431813987,17.60342512093115],[-95.7817512452724,17.603028259172447],[-95.7722467619704,17.599848458657277],[-95.77148439235327,17.59969923466855],[-95.7731684432091,17.598400209617466],[-95.77386123032522,17.596025116592443],[-95.7736053766539,17.595989682333368],[-95.77383040533243,17.5946572732978],[-95.773512913341,17.594259600941996],[-95.77336643877368,17.593631150919634],[-95.77351045265681,17.592382847281215],[-95.77188531331689,17.59021243765926],[-95.77169883999505,17.589867644999913],[-95.77088446184763,17.588634863522657],[-95.77050073192646,17.588311488180523],[-95.76911301520084,17.58836539058541],[-95.76690594852272,17.588437423070786],[-95.76633912657041,17.588840709425142],[-95.76524682228518,17.588947205013653],[-95.76460132120087,17.588533440100832],[-95.76427506576852,17.588439116133543],[-95.7637052664,17.588713345078133],[-95.7630325439419,17.5881279237106],[-95.76043526436695,17.586928516011596],[-95.75948485789405,17.58650759837502],[-95.75944204422251,17.58619849331899],[-95.75895113429237,17.5853165863914],[-95.75846456292925,17.585177802470525],[-95.75787881357013,17.585598920283985],[-95.75779581044912,17.585784643514785],[-95.75676051167244,17.585799101588975],[-95.7561644643639,17.58575779330596],[-95.75378627603129,17.585989500046878],[-95.7527564324634,17.58622098436018],[-95.75164405739736,17.586465987521024],[-95.75068599278677,17.58640495203292],[-95.74949657996291,17.585485122785315],[-95.74922861935408,17.5849332894461],[-95.74828256950849,17.584831125220546],[-95.74800981384709,17.584731154359645],[-95.74812380996843,17.58414856479584],[-95.74804205392655,17.583601688421425],[-95.74626230394335,17.58470395071106],[-95.74557491031538,17.585408832188534],[-95.74533575986038,17.586052233939768],[-95.74502773008919,17.58494196549657],[-95.74468338221914,17.584268796005915],[-95.74377224111527,17.583748463835832],[-95.74339425694035,17.58348353857474],[-95.74173916871763,17.581397178283794],[-95.74080847896971,17.580577631274025],[-95.73969811019657,17.58065925535942],[-95.73896019006395,17.58034142512531],[-95.73878594599518,17.57979929076106],[-95.73850380051982,17.58007639635821],[-95.7378215712742,17.58053167774625],[-95.7347054162351,17.577128559506605],[-95.73455648052095,17.57638406469914],[-95.73379727705765,17.575481441718125],[-95.73270503225507,17.575808338703553],[-95.73129273706076,17.57605901159485],[-95.73064956552764,17.576491527552662],[-95.7302268009733,17.576736951161593],[-95.72977470687857,17.576559471652786],[-95.72916830744401,17.57749293661942],[-95.72910103136871,17.578013731273415],[-95.72768655458697,17.578197689727403],[-95.72689688026861,17.578029047481436],[-95.72716654291378,17.577376501252672],[-95.72823531284979,17.575689688553723],[-95.72896288172933,17.57324966289326],[-95.72936463138961,17.57217006135977],[-95.72955811758152,17.57105619233522],[-95.72938324970028,17.570296060296812],[-95.72824790865582,17.568190635848907],[-95.72681863903455,17.56417630326291],[-95.72603742666473,17.563812867707668],[-95.72522645034832,17.563252187804437],[-95.72469714276264,17.561757201588193],[-95.7248308180645,17.56150763553927],[-95.72516955393178,17.56032926581537],[-95.72439309684063,17.559080626445507],[-95.72420186890332,17.55830641315822],[-95.72422351898558,17.55757030435484],[-95.7280934396851,17.551981122912878],[-95.72350771581966,17.55027038561866],[-95.72139700006255,17.548109783366897],[-95.72097848860284,17.546699516950355],[-95.72063259622206,17.544583772212206],[-95.72136740155582,17.541128066660974],[-95.72207162383648,17.53919756347466],[-95.7223650539795,17.53867992242681],[-95.72324891735303,17.538305662874734],[-95.72393624043485,17.537769996020756],[-95.72382497366988,17.53580388839947],[-95.72123530086009,17.53687079591066],[-95.71840096216027,17.536449376908706],[-95.71743695751934,17.537251559699826],[-95.71522216828595,17.535551072404132],[-95.71297370084847,17.53511712857255],[-95.71245793816502,17.534247743984906],[-95.71196753759403,17.534060208462904],[-95.71015553921467,17.532480715735346],[-95.70853725987519,17.533758779926018],[-95.70785043153927,17.53452430127686],[-95.70751265152336,17.534037972104727],[-95.70694002559674,17.533714264350237],[-95.70657564333698,17.53401936303004],[-95.70644058279026,17.52645312604892],[-95.70498675178783,17.52306382102671],[-95.70252545480764,17.51870351349106],[-95.70251880839959,17.518699106732015],[-95.70210192515736,17.518491673881385],[-95.70151217661777,17.52001276324853],[-95.70035914437847,17.521909055024594],[-95.69894021614073,17.5227967393281],[-95.69579685505659,17.52386099427872],[-95.69442483439923,17.52381494736187],[-95.69414434910573,17.523748985916313],[-95.6934419677948,17.52374190658918],[-95.69172450373873,17.52452985559904],[-95.6907271581573,17.525325946865166],[-95.69027262218731,17.526335757258494],[-95.69034176503351,17.52719475622041],[-95.6911075624206,17.528041883788717],[-95.69147455364174,17.52839124584176],[-95.69218541765935,17.5299737347994],[-95.69171765428581,17.531182641012265],[-95.6908758650253,17.53107155866377],[-95.69039890373716,17.531164716711828],[-95.68962551649162,17.532567224556942],[-95.68951119494977,17.53377096833856],[-95.68944131039734,17.534451789088564],[-95.68930026227292,17.534906683377756],[-95.68915242723938,17.53507325825575],[-95.68887346905518,17.535042273029944],[-95.68851014535579,17.535103731940808],[-95.688248527925,17.535131084731802],[-95.68756335758309,17.535481623916326],[-95.68706891494497,17.53593689846042],[-95.68367690842405,17.53701293466986],[-95.68289230817538,17.53655851882536],[-95.68255748163057,17.53587739041427],[-95.68184218652397,17.535109966115442],[-95.68033266157943,17.53409832367555],[-95.67915944688781,17.5338874319894],[-95.6783589931091,17.533924475251013],[-95.67646915068468,17.534170681727574],[-95.6759819702612,17.534150059747503],[-95.67395511938219,17.533837334338216],[-95.6703004500987,17.534660394401897],[-95.66857857601724,17.534867734331783],[-95.66675064192196,17.535110600167684],[-95.66574196629261,17.53524803172803],[-95.66431187704882,17.535619809466425],[-95.66367644321355,17.535946534637958],[-95.66292305658465,17.53687890644403],[-95.66039588328567,17.538566300928096],[-95.65892670351298,17.53887749235753],[-95.65812502487074,17.539015087464747],[-95.65585077688519,17.53916154333706],[-95.6515551418646,17.539756805739444],[-95.64938999179799,17.5395624770224],[-95.647811732391,17.54070080586797],[-95.64723751792161,17.541204610908324],[-95.64679537621686,17.542333365909656],[-95.6482668789709,17.54409464624723],[-95.64910150170527,17.544620287693874],[-95.64979325806496,17.545139849108182],[-95.64987286963083,17.546515683727932],[-95.649632614204,17.547289729197075],[-95.6499305659421,17.550831667909335],[-95.65106692948547,17.55221474036466],[-95.65183368334755,17.552765123655092],[-95.65314351920784,17.55412754094624],[-95.65399346682574,17.555341535338016],[-95.65470155157482,17.557351697416777],[-95.6547158592279,17.558418082244145],[-95.65431975715535,17.56012917675713],[-95.65359187049614,17.56048793173221],[-95.65326643062235,17.560493591925933],[-95.65274300470327,17.55994530290252],[-95.65223465401323,17.55901962482079],[-95.65053930405935,17.557494179310424],[-95.65004479183,17.557200395797338],[-95.64874881736915,17.556658229995662],[-95.64702550372084,17.555688728667008],[-95.6468768757025,17.554991221739783],[-95.64733613800712,17.55429840450637],[-95.64746614581361,17.55215843350311],[-95.64725795022957,17.55085206754279],[-95.64697662685995,17.55001684715802],[-95.64637888297563,17.54833373911862],[-95.64589712702332,17.547369141760726],[-95.64557399269393,17.547013568908824],[-95.64449208189677,17.546544329217625],[-95.64237436734959,17.546812338639768],[-95.64134831231382,17.54733839238878],[-95.64096349846841,17.547582457124633],[-95.64003243037672,17.54819101513681],[-95.6390956104429,17.54858131434827],[-95.63765454037076,17.54878625762734],[-95.63590327977528,17.548838727669647],[-95.63381795816468,17.54858186132566],[-95.63260668035934,17.547977152246915],[-95.6319256945664,17.54745649346455],[-95.63100519702823,17.54677754621906],[-95.63063659475739,17.546626801360162],[-95.62951344818725,17.546548910221304],[-95.62785999421482,17.54778370293718],[-95.62714675195537,17.547978331724778],[-95.62491959883175,17.545051636445237],[-95.624404924553,17.543808734259812],[-95.6242382344114,17.543498337132405],[-95.62301086461565,17.54279359112826],[-95.62120113001959,17.541604903630855],[-95.62058690630937,17.541264579259348],[-95.61927180519365,17.540821835165332],[-95.61789329510543,17.540994332636558],[-95.61723993553608,17.541742657268514],[-95.61553837371707,17.542703168745106],[-95.61442340315637,17.542446765009345],[-95.61365915587021,17.54206972877887],[-95.60985720574627,17.540197406715436],[-95.6092179026723,17.540102021386815],[-95.60807834749062,17.53986373932497],[-95.60764948420041,17.53982108671181],[-95.60588193491924,17.54014492674321],[-95.60577536560783,17.540637625686543],[-95.60613920908077,17.54180812561873],[-95.60682519384744,17.542527233003568],[-95.6080253581759,17.544628850062622],[-95.60783052873524,17.545535413855532],[-95.60748805240019,17.54610762855623],[-95.60676611893172,17.547146927092683],[-95.60552897669686,17.548932985514398],[-95.604786810711,17.548816182576957],[-95.6045802827141,17.548060847780448],[-95.60456493760927,17.547237000778807],[-95.60440837296136,17.546372808542458],[-95.60311495145714,17.54456815630715],[-95.60145352441987,17.54433589509955],[-95.59930704266611,17.543673845620162],[-95.59903372930432,17.54289829559633],[-95.59908112260183,17.541880258046206],[-95.59936903457844,17.54050558540405],[-95.59947285543228,17.540076047709363],[-95.5993882914347,17.539011569753086],[-95.59935167797107,17.537997373148187],[-95.59938196209436,17.535442827314284],[-95.59875226861345,17.534614976506987],[-95.59618360178462,17.537664509341255],[-95.59535081820331,17.5378004935298],[-95.59479517449023,17.537604988087708],[-95.59431585047969,17.537384971991003],[-95.59310719862646,17.5374450309817],[-95.59216607076615,17.537862027767062],[-95.59171511338559,17.538080401981404],[-95.5905624479073,17.538281879633587],[-95.59001073073216,17.538297826014855],[-95.58908246834255,17.537822180695457],[-95.58853528801473,17.537056814681705],[-95.58821334565255,17.536400800605577],[-95.5875157188866,17.535342482012254],[-95.58670061732357,17.534887927586],[-95.58595582803542,17.53491810397219],[-95.58533384591055,17.535026595656802],[-95.58386884019478,17.535825579703385],[-95.58243664226046,17.536676659277987],[-95.58069803833092,17.537161596815054],[-95.57956698193004,17.537576414382897],[-95.57886644789488,17.538086964845604],[-95.57758445785606,17.538991385301642],[-95.57759855932017,17.54018330598649],[-95.57843661517535,17.541897665932538],[-95.57877544773248,17.54353011387559],[-95.57741039180445,17.545490776514953],[-95.57650668285555,17.545959731122366],[-95.575008244326,17.547223413288748],[-95.57410742316273,17.547921883322715],[-95.57351557877985,17.548272172712075],[-95.57050330775104,17.54948149979907],[-95.56931271837789,17.550883198425936],[-95.5677687225168,17.551195120390446],[-95.56656801907786,17.548867417839915],[-95.56567268896907,17.548316229651846],[-95.56513705296419,17.54808357153189],[-95.56413513929022,17.547537407049674],[-95.5628247737011,17.5467303424781],[-95.56181370930994,17.54625985113603],[-95.5598774903828,17.546773006248202],[-95.55894844738447,17.54748787820307],[-95.5582913872563,17.548315659413788],[-95.55812630518676,17.54870644200247],[-95.55787222743993,17.549268072906557],[-95.55763355118114,17.55068463603203],[-95.55753829796839,17.55150963151408],[-95.55707453518579,17.553026810236304],[-95.55626449896613,17.55453173388065],[-95.55613044299514,17.5549741134991],[-95.55612898673053,17.55574668614389],[-95.55646033901934,17.556357028545563],[-95.55626521588044,17.55797988908165],[-95.55443608543249,17.55823611771126],[-95.55346224225855,17.556678436564027],[-95.5527960073806,17.555850891877014],[-95.55210968316464,17.554309549333084],[-95.55181321316621,17.553808750325118],[-95.55148916921775,17.553585617881083],[-95.54960284265695,17.55321344392752],[-95.54782625736641,17.55350851669499],[-95.54728794582388,17.55371059183011],[-95.5467491170399,17.553923907845615],[-95.54564626179445,17.55450044587559],[-95.54496375940073,17.55533201191878],[-95.54420713860725,17.5563145937777],[-95.54316002493931,17.55835666640337],[-95.54181748885497,17.559424953463974],[-95.54075768593708,17.56004185141427],[-95.53967480287662,17.560574530238682],[-95.53822937008681,17.558256131305257],[-95.53793629846115,17.557601873814747],[-95.53680104335535,17.55695258000668],[-95.53514795180678,17.556756886203118],[-95.53462196594614,17.556465075432754],[-95.53339472779948,17.555935950147273],[-95.53269251606275,17.55571929056208],[-95.53146270866984,17.55616276070623],[-95.53085865639116,17.55661262203631],[-95.529634735647,17.55762577464236],[-95.52846627969706,17.558713418477282],[-95.52714671902885,17.559749118636546],[-95.52591786448477,17.56084248801824],[-95.52510191829612,17.562109530664657],[-95.52712279490413,17.564162091431],[-95.52923746639613,17.566199792541454],[-95.53133216958105,17.57022803700937],[-95.53087418206559,17.570794000570913],[-95.52780336307103,17.571352946949844],[-95.52672281959138,17.571616418554243],[-95.52599663723623,17.572209946880946],[-95.52572727938286,17.574992727930635],[-95.52393746712164,17.575539438011617],[-95.52321884848016,17.57478129351847],[-95.52298826577601,17.57444248887117],[-95.52249900140805,17.573767017919295],[-95.52244820848728,17.573331950699526],[-95.52208935820966,17.571207054678098],[-95.52112751904002,17.57042669098371],[-95.52012726468939,17.570132916689374],[-95.51886152442842,17.569759067686277],[-95.51774901667284,17.569528583962267],[-95.51736451053887,17.57145985616006],[-95.5176206118856,17.5720393382515],[-95.51815189446825,17.572878201195238],[-95.51853833837959,17.573486927415445],[-95.51898533223857,17.57424254142893],[-95.51945809983636,17.57471561468401],[-95.52120944085851,17.57658016999096],[-95.51979393291475,17.578610674789047],[-95.51886110396362,17.57882295253978],[-95.51599699377596,17.57924415092066],[-95.5147031346853,17.579707312575636],[-95.51438005560868,17.580091886757373],[-95.51410179639316,17.58128888144762],[-95.51405112164798,17.582362888358546],[-95.51416917647629,17.583436946980157],[-95.51421496141052,17.584703500825583],[-95.51318506200568,17.585653590499362],[-95.5117112642987,17.585572745315346],[-95.51069699665902,17.58507345631176],[-95.5102341427297,17.584817305112836],[-95.50838990836849,17.58364123991919],[-95.50790124215484,17.583585084367144],[-95.50646989208803,17.58350760799567],[-95.50511521901342,17.58349458589231],[-95.50313721961686,17.584077173124456],[-95.50182964778332,17.585859935317444],[-95.50206552841291,17.58621921973173],[-95.50254596760482,17.586364695314785],[-95.50506599312331,17.586796235927068],[-95.50570340912867,17.58706487996261],[-95.50717988967051,17.588011873547543],[-95.50751999696945,17.588914625763266],[-95.50699977362495,17.589657041274165],[-95.50631723597866,17.5907705507027],[-95.50491000935278,17.59126033313953],[-95.50388228107528,17.591365202814927],[-95.50314692346456,17.59142640476938],[-95.50168700343676,17.59125515281471],[-95.49765041404646,17.5918858756217],[-95.49623347660832,17.593500577624525],[-95.49567956708552,17.594799525249357],[-95.49514897490786,17.59511618663271],[-95.4945072867846,17.595397124418128],[-95.4922452017068,17.59553028822785],[-95.49156767481122,17.59554711243885],[-95.49088780222525,17.59574019368904],[-95.4902325917202,17.59600562683721],[-95.48906662132549,17.596570768792503],[-95.48769335770169,17.597744072811793],[-95.48694637434295,17.598652925488977],[-95.48663104885838,17.599088966454815],[-95.48582386795931,17.60038083774117],[-95.4836596927583,17.60182098839914],[-95.4818143862841,17.598704289287696],[-95.48074749383653,17.597486176096595],[-95.48030414601249,17.597102524652485],[-95.47869762461124,17.59577035390845],[-95.47808818092187,17.59381755647695],[-95.47793546904023,17.592778241552878],[-95.47809180799936,17.591595192740726],[-95.47837962909762,17.59103729388255],[-95.4793867924464,17.590100256592166],[-95.47973428240613,17.589439443020638],[-95.47983135938574,17.58893087131804],[-95.47964292130985,17.58803305729242],[-95.47744206420532,17.588034083735863],[-95.47693903370299,17.58838507633743],[-95.47578183019147,17.58970981368941],[-95.47528649445576,17.590410782133233],[-95.47492793845868,17.59130419851573],[-95.47397536808057,17.592743778422232],[-95.4733437328461,17.593426119289404],[-95.47267994034473,17.593913332536715],[-95.47138116321406,17.5947794944679],[-95.469732072895,17.59557383229469],[-95.46895566834041,17.595784752750717],[-95.4679920270961,17.59589443456582],[-95.46651642242637,17.59580600383572],[-95.4658483596665,17.59571652712009],[-95.46507892724674,17.595724604489078],[-95.46437836934967,17.595809866814477],[-95.46301644346414,17.59639391506886],[-95.46262228105059,17.59761688000475],[-95.46297881436692,17.59860741910279],[-95.46343649334028,17.59916907190933],[-95.464715140117,17.60012256435806],[-95.46605378030085,17.60085355839618],[-95.46681905502999,17.60119544356826],[-95.4678064017092,17.601701247490553],[-95.46852371469538,17.602085087894125],[-95.46952151983157,17.602371029815288],[-95.47045260147172,17.602609989501786],[-95.47192059504545,17.60364347097874],[-95.47244920449873,17.60412920566887],[-95.47309873643275,17.60497270964612],[-95.4735480978116,17.605675285608697],[-95.47376430318866,17.607402855199723],[-95.47206587852395,17.60975069734036],[-95.47040467238861,17.609732430844474],[-95.46838796976613,17.609246077550267],[-95.46503995103058,17.60855667894276],[-95.46369831594592,17.608570412806387],[-95.46257942600033,17.6086662834158],[-95.46020194375825,17.60901480227278],[-95.45808283225057,17.609640402762977],[-95.45726644079076,17.609929818300543],[-95.45666023841073,17.610206400174718],[-95.4561214935224,17.61039499891791],[-95.4544589251459,17.61110273051071],[-95.45414273429338,17.611413682561306],[-95.45376022793187,17.612810185861008],[-95.45376559427586,17.613803064836134],[-95.45471046320324,17.61772121872724],[-95.45557016440148,17.619161737466186],[-95.45602913356345,17.620020135583786],[-95.45639963532915,17.62263959658975],[-95.45519423220856,17.623541668750363],[-95.45355907469025,17.623349350938156],[-95.45272906852796,17.623243408181054],[-95.45181354494497,17.622951006403923],[-95.44909985805077,17.622106612057507],[-95.44704992479001,17.621503939293007],[-95.44610738537278,17.621759802014935],[-95.44363578276847,17.623731729210533],[-95.44265076985033,17.624877278515555],[-95.44112584412,17.626055883601566],[-95.43950722277532,17.627650671353422],[-95.4391635415609,17.628990046879437],[-95.43801073908634,17.63165374188128],[-95.43422738816207,17.63513085307204],[-95.43146841239246,17.636381797920194],[-95.4273038716575,17.636326565170805],[-95.42576951838498,17.640037419679118],[-95.42704130078465,17.644445656220057],[-95.4266518688409,17.646097681520814],[-95.4261668828587,17.64682755894563],[-95.425489960464,17.647472486977676],[-95.42480823886251,17.647762466199822],[-95.42342730981335,17.647646070984365],[-95.42261120219075,17.647255423027048],[-95.42208159511983,17.64679391097286],[-95.42078693953005,17.645175310623813],[-95.42034209459968,17.64435697159348],[-95.41850165111157,17.64404405070502],[-95.4167765106468,17.64573030910475],[-95.41634166382022,17.64676850681991],[-95.41478224846816,17.651372772362095],[-95.41403623795799,17.651803259575786],[-95.41303350292361,17.651861098734685],[-95.41181466107219,17.651367540174988],[-95.41119233957465,17.65056011241478],[-95.41072438782493,17.64965225367581],[-95.41085809872203,17.647637121961907],[-95.41086966396449,17.64692759075814],[-95.41076314357065,17.646105278970026],[-95.41071319387589,17.64445659251959],[-95.41029114597097,17.643628582297936],[-95.40974783421206,17.643253626805517],[-95.40642633875711,17.64375616215949],[-95.40555298721853,17.645008307213573],[-95.40504284334463,17.646106010160793],[-95.40390008140656,17.648734358713853],[-95.40374413786458,17.649642241295908],[-95.40336566492084,17.651486756726115],[-95.40212777338098,17.652400439474945],[-95.40113483653926,17.652502740874127],[-95.4000857763333,17.65239289056302],[-95.39806973455353,17.651576135629455],[-95.39730054796638,17.65128326061881],[-95.39591116267115,17.651585459648345],[-95.3953232438028,17.651781204092288],[-95.39399235328403,17.654223089084837],[-95.39351222534776,17.655402372445224],[-95.39228467216344,17.656928945146376],[-95.39158456195088,17.65779602622422],[-95.3908156923818,17.658481949389625],[-95.38879368234541,17.661342822305585],[-95.38578453456557,17.66422488679558],[-95.3845878956821,17.66421781388692],[-95.38256462807709,17.664911554060325],[-95.38129198498575,17.66594337316036],[-95.38064732844407,17.666415738936337],[-95.37932900125793,17.666901217755992],[-95.37782950119845,17.667134096443704],[-95.37631792998837,17.66751740305841],[-95.37317809536512,17.66866846313269],[-95.37126440320901,17.66856686440292],[-95.36965539942759,17.669064378106214],[-95.36874001510563,17.672499385296703],[-95.36871255642899,17.6730682838259],[-95.3678907345386,17.67365624009591],[-95.36576997915671,17.673562145513074],[-95.36461456688374,17.673429424510914],[-95.36332561582276,17.673127874298928],[-95.36073124874241,17.67227967574678],[-95.35956197917955,17.671847666034864],[-95.3584400894029,17.67160779108974],[-95.35573999288738,17.6711891838429],[-95.35174244788675,17.67184031923955],[-95.35061694483812,17.67267394107631],[-95.34996128842408,17.673593899442153],[-95.34989330270116,17.67653423947428],[-95.35163893076344,17.6785322673191],[-95.35101384882984,17.68031988929488],[-95.34828812251152,17.681242853697768],[-95.3467787787377,17.68187870705384],[-95.34501266723026,17.683150413076987],[-95.34267590821474,17.683344704060858],[-95.3418626805348,17.68253912607429],[-95.3416960464105,17.681919356094625],[-95.34121504205052,17.680613273818665],[-95.34084218799649,17.676496755888593],[-95.34050477251924,17.674890300934464],[-95.33943802236553,17.673873006044175],[-95.33812748443802,17.673671068091096],[-95.33671318339225,17.673971695535442],[-95.3350748281693,17.67448961335498],[-95.33441916197461,17.674801309666975],[-95.33318527966105,17.678019835194675],[-95.33275637103367,17.679608189119847],[-95.3309695991419,17.68218165302244],[-95.32977438652074,17.68455056051181],[-95.32937425286502,17.685235634171477],[-95.32777600001879,17.68586724738833],[-95.32612436906714,17.685537921326784],[-95.32450756737796,17.685178179528293],[-95.32197515498797,17.68512898990599],[-95.3205780132455,17.68711146750246],[-95.31947933612508,17.68979522670952],[-95.31772963466989,17.69107082252407],[-95.31671053747243,17.69244651165468],[-95.31644005866144,17.694364764262446],[-95.31674587645006,17.695565673960175],[-95.31696086203192,17.696971315318876],[-95.31506223354711,17.697720188339872],[-95.3128682764513,17.697466967092396],[-95.3110322294055,17.697796628975425],[-95.31038897767559,17.698096324951905],[-95.30864375931338,17.69755289321955],[-95.3075258529372,17.69703752066124],[-95.30689855474958,17.697009441615307],[-95.30655900505553,17.697944765066893],[-95.30684364692695,17.700829950861532],[-95.30731541801225,17.702703646298573],[-95.30959411768805,17.705263370336638],[-95.30992717176196,17.706131457149013],[-95.3101882993709,17.70739696053431],[-95.30856334720875,17.70974668396434],[-95.30770139782294,17.71018614154667],[-95.30675836852492,17.710672287303908],[-95.30579979096552,17.711208050341952],[-95.30482328835342,17.711302709151425],[-95.30380820012653,17.710842122321083],[-95.30259153131186,17.711014070583076],[-95.30038187748255,17.71582863743498],[-95.29963843205269,17.717449820264903],[-95.29930975345297,17.718739597063518],[-95.29870605515168,17.721193344447784],[-95.2968135448885,17.7224427301378],[-95.29573606553254,17.72232030363864],[-95.29484386029503,17.72104492699026],[-95.29423720665847,17.719732936065498],[-95.29341215946994,17.718139372060307],[-95.29219547283031,17.717170626871848],[-95.292064528585,17.714809810903375],[-95.29266374731537,17.713729464218545],[-95.2922441876824,17.712422240815954],[-95.29123595865951,17.712840030174448],[-95.29090372372195,17.713187486992638],[-95.29065046952053,17.713639144853403],[-95.28999910678101,17.714495699374595],[-95.28926778409124,17.715268138455315],[-95.2888077407369,17.715650121283034],[-95.28780965815355,17.716289792193436],[-95.28549719649806,17.71672952485386],[-95.28463736310442,17.7164740599909],[-95.28366153552417,17.71594391939101],[-95.28190526751615,17.715378711954997],[-95.28095000670288,17.715270073263355],[-95.27985357134395,17.717205497958332],[-95.28072238303389,17.719337002330633],[-95.28064638643002,17.720382020940065],[-95.28044652711259,17.72088412957595],[-95.28007973405124,17.721400699101764],[-95.27947905298333,17.721785611746498],[-95.27835045825117,17.72106856894976],[-95.27765966352007,17.72071041803906],[-95.27431512274518,17.718378748946634],[-95.26976840558672,17.716573362387237],[-95.26766889368099,17.71667095118596],[-95.26555402914823,17.717536215023074],[-95.26417886731213,17.71926100924378],[-95.26319754171294,17.723316583939607],[-95.26307027351902,17.72487880727573],[-95.26317572680216,17.72548164599084],[-95.264139847536,17.726983147111582],[-95.26507674871795,17.728175937099422],[-95.26606745229748,17.729321832870767],[-95.26833038465162,17.733133327760243],[-95.26853813452527,17.734863431687074],[-95.2693870522341,17.7383929731497],[-95.26960887143082,17.73990610658177],[-95.26917850515827,17.74071211835019],[-95.2681656215496,17.741158024893366],[-95.2670410630775,17.740632854775868],[-95.26593291689164,17.740133837940164],[-95.26467131021457,17.739765868884945],[-95.26413339339405,17.73961631615083],[-95.26391226307618,17.73952976761626],[-95.26343339246955,17.73936198578872],[-95.262909439326,17.738927595337316],[-95.2619373787611,17.73504833669392],[-95.26158002451905,17.733499899697335],[-95.26111914804687,17.7319966862446],[-95.25947148163243,17.729252500305506],[-95.25813754248895,17.728568615276515],[-95.25692548166808,17.72938869102552],[-95.25622337031518,17.7300006995348],[-95.25528155129564,17.730931976394345],[-95.25437733261953,17.73179893281656],[-95.25198827555198,17.733715931300083],[-95.24949285231156,17.73409281023737],[-95.24655758851964,17.734619224638152],[-95.24521107720926,17.735217354529937],[-95.2447862347089,17.735461742757593],[-95.24311972177952,17.735826808656554],[-95.24097080607459,17.736113055944088],[-95.23991016178695,17.736427174330174],[-95.23931860962676,17.736698599952035],[-95.2391298122264,17.73766006780494],[-95.23891299629088,17.739264125886677],[-95.19028962154533,17.692036749598913],[-95.19003388227344,17.69192353400649],[-95.18781500040654,17.691639170838812],[-95.18474050145034,17.69149905575466],[-95.18357375661395,17.69156635216541],[-95.18221122059447,17.690510224793],[-95.1820647030118,17.689027606855575],[-95.18185948370541,17.687651825664375],[-95.18146973145053,17.685817189255374],[-95.18176159013439,17.685318706456712],[-95.18259914190332,17.684589215069252],[-95.18353068510669,17.684657281534555],[-95.18467162478026,17.684811655007366],[-95.18542541358244,17.684155097893438],[-95.18611316875956,17.68321404520003],[-95.18677719083905,17.6821448901282],[-95.18757085964631,17.681052784719043],[-95.18754081255548,17.680001858856485],[-95.18679772694952,17.67952193230252],[-95.18639431614594,17.679372355202474],[-95.18527114048987,17.677720591449997],[-95.18493532139433,17.676760687152978],[-95.18529862245799,17.67556911922884],[-95.18568594566534,17.67468885019713],[-95.18614159535161,17.67432051683454],[-95.18738230030351,17.672611145996598],[-95.18767756114579,17.671696751166166],[-95.18777100496158,17.67107246563006],[-95.1879230965925,17.669247120206762],[-95.18727506184337,17.666191809117663],[-95.18706976157023,17.66468872105122],[-95.18722769965063,17.661698690692276],[-95.18728969895159,17.659230548468145],[-95.18730992705292,17.65828276037837],[-95.18717584591491,17.656492829647448],[-95.18742735202926,17.65484483384364],[-95.18782367140699,17.653155967005944],[-95.18796072734,17.652269968097755],[-95.18837634525954,17.650147524048066],[-95.18939385159075,17.64965854596926],[-95.19053842872836,17.650989570586546],[-95.19084692473939,17.65290707492659],[-95.19161253403956,17.654369538774915],[-95.19512316278787,17.65485351643713],[-95.19633082794923,17.65395700967457],[-95.19718880682501,17.65257716103355],[-95.19740342232535,17.65170970883139],[-95.19773963384091,17.65025717301569],[-95.19826153015731,17.64877650044889],[-95.19877877043848,17.64790485053453],[-95.19976564728495,17.647440823825207],[-95.20120309180624,17.64741196777129],[-95.20336078768804,17.64884726063326],[-95.20316429036501,17.65168598492164],[-95.2045476673801,17.65432790072333],[-95.20594967833841,17.654663842835816],[-95.20654619566204,17.65446608192684],[-95.20764585947524,17.65417874656032],[-95.20855864359231,17.65351749587768],[-95.20908362885325,17.65203584265231],[-95.20890655438342,17.650247144520165],[-95.20922613982208,17.648481015639504],[-95.20978591179909,17.647172958511476],[-95.21096235785194,17.64540055566863],[-95.21223418488415,17.643762898869852],[-95.21359046653771,17.64276121255199],[-95.21411121010414,17.642325623543],[-95.21512521376036,17.64160626745064],[-95.21552169060976,17.641260704381068],[-95.21651104650687,17.64063589570236],[-95.21714094985424,17.640415731732617],[-95.21812166787834,17.639560904361417],[-95.21844761426718,17.639328246298646],[-95.21911097010462,17.639236929125104],[-95.2202993139262,17.639290835658926],[-95.22146356904062,17.639319360323668],[-95.22281198747862,17.63921053036404],[-95.22358603678356,17.638929960100654],[-95.22537502700635,17.6386225421694],[-95.2276467801189,17.638288415029365],[-95.229501828568,17.637668278055457],[-95.23620188277027,17.63645254372409],[-95.23796724113379,17.635989228646054],[-95.24090645939879,17.63513638525245],[-95.24251338512198,17.634984215181248],[-95.24289445571668,17.63636860339119],[-95.24264835823544,17.63868671915327],[-95.2426892957468,17.643151809542985],[-95.24290530340369,17.643676470352204],[-95.24374954827681,17.644538466312667],[-95.2442068372689,17.64507403192391],[-95.24458748920307,17.64552889765531],[-95.24525012507678,17.64571331084062],[-95.24623732799273,17.645958829028473],[-95.24679284704422,17.646148651977967],[-95.24750462435196,17.64615727417697],[-95.24895932654834,17.645540557698325],[-95.25003953444019,17.64504810689465],[-95.25103208581027,17.644339903870957],[-95.25193354203748,17.643486393875833],[-95.25323136341643,17.642062479354422],[-95.25343643865216,17.64088548910769],[-95.25348552518511,17.640293323900664],[-95.25340329947267,17.639522672643523],[-95.25331943892911,17.639192936044253],[-95.25324568069294,17.638250105645795],[-95.25321302880411,17.63769260220539],[-95.25301547843179,17.63641823617013],[-95.2529043775138,17.635516880094144],[-95.25288986503307,17.634057444782],[-95.25300955559311,17.633374746197205],[-95.2538686503824,17.63225751386352],[-95.25608646643269,17.630375872713785],[-95.25692969792897,17.630166202997543],[-95.25829884466316,17.62952795516145],[-95.25900111567603,17.629010757352944],[-95.25831528579829,17.628131569230106],[-95.25717318866077,17.62753117622634],[-95.25377388796414,17.627302932145824],[-95.2526446534186,17.62750144489644],[-95.25055550667838,17.62763165364902],[-95.24946173958529,17.62710823013117],[-95.24841123021719,17.625582284640984],[-95.24920056366494,17.625295739504963],[-95.24988388357781,17.625313620098495],[-95.25017484940048,17.625320269775727],[-95.25115431325514,17.625111929479772],[-95.2526749412624,17.624090165969733],[-95.25321905755504,17.62311524636226],[-95.25364197253549,17.62241627807265],[-95.25554930522054,17.62156945581762],[-95.25873502107032,17.62230394540927],[-95.25921547557141,17.623034798159892],[-95.26111094118369,17.624390209236594],[-95.26247017850193,17.624748355634438],[-95.26277605297065,17.62482811539718],[-95.26480592789005,17.625050325761777],[-95.26618459130293,17.625112447679328],[-95.26813384305069,17.625121533943684],[-95.27056859488522,17.624872394712668],[-95.2714407443653,17.624151886062748],[-95.27167324886443,17.623001582929305],[-95.27160415591982,17.622185642321597],[-95.27078329949256,17.62114255525796],[-95.26946402176458,17.617475411894418],[-95.26977226303711,17.61652476036909],[-95.2705578828432,17.615517917169484],[-95.2723021460859,17.61500797940903],[-95.27349242908628,17.614943862120867],[-95.27402054551027,17.61502647669346],[-95.27510997380728,17.615350122557004],[-95.27696035246788,17.615332590969274],[-95.2779967419242,17.615445778310857],[-95.27888511740457,17.614797854999097],[-95.27896597449075,17.61409142329694],[-95.2785436152833,17.612785431654515],[-95.2780118983078,17.612295533994825],[-95.2769376445811,17.61153714591876],[-95.2758011694894,17.610400423475255],[-95.27510840401771,17.609830775567218],[-95.27489645848107,17.609669062475405],[-95.27432918527205,17.6092806483731],[-95.27351892532039,17.609115413278914],[-95.27206655532285,17.60859350222495],[-95.27152649403757,17.608896956581532],[-95.27118828952018,17.609069024714813],[-95.26981604992898,17.60940523532082],[-95.26942073741702,17.609246961882718],[-95.26801182261858,17.608577079568647],[-95.2676474755354,17.60827516777158],[-95.26725445702994,17.607452874324395],[-95.2673453246307,17.6048502490965],[-95.2676275308321,17.604208659611004],[-95.26720233609876,17.603179373870603],[-95.26659659181814,17.602516881200813],[-95.26576120751997,17.602032245023054],[-95.2652817252021,17.60179890490656],[-95.2638765942313,17.60157951171925],[-95.26299491370139,17.60220439857295],[-95.26272651950939,17.60285693171744],[-95.26187900085614,17.60557302863441],[-95.26029627943274,17.606300056111763],[-95.2599272794348,17.606948746130456],[-95.25971727142525,17.60718639701429],[-95.25919258899006,17.60771938954582],[-95.25837836002864,17.608008535469594],[-95.25744250504499,17.60833052672882],[-95.25609906869056,17.6088066447723],[-95.25519349217944,17.608919127609227],[-95.25416980857784,17.608585386987613],[-95.25333325403398,17.608106733050306],[-95.25271318283728,17.60729280346561],[-95.25256385217637,17.607075203275087],[-95.25213677786888,17.606404170055384],[-95.25207007907522,17.60586211907861],[-95.25232779479092,17.60467484035439],[-95.25248953846386,17.60433463560736],[-95.25314388398925,17.602619476501957],[-95.25362191015495,17.602013941204348],[-95.1971751656069,17.529076768485936],[-95.12102049330832,17.430531946797373],[-95.07656739707994,17.372933711628036],[-94.97119215967228,17.330969583177875],[-94.97076020585843,17.332282075314026],[-94.97032935931065,17.33295184186983],[-94.96811884063652,17.334489554896777],[-94.96747557946514,17.334561779190892],[-94.9670131275306,17.33451848567705],[-94.96667574287699,17.33443812564127],[-94.9661750626986,17.334156665050955],[-94.96571788642842,17.333791300999962],[-94.9650733606839,17.33330099162157],[-94.96425910936705,17.33258357477564],[-94.96364449029141,17.33181541133439],[-94.96340180884886,17.33129345472969],[-94.96332471799548,17.331049142562733],[-94.96324694274074,17.330332615251848],[-94.96315959338312,17.32882974098999],[-94.96302616455006,17.327884225732248],[-94.96294468165308,17.3274596812127],[-94.96262171014251,17.326354566242685],[-94.9611993096974,17.324136224498943],[-94.95881900668928,17.32123231191855],[-94.95687828362645,17.31962353867749],[-94.95455921765284,17.317996876295297],[-94.95097968191686,17.315649424677645],[-94.94684668298743,17.31441441809818],[-94.94613305852988,17.3141569505579],[-94.9457773779788,17.314140133071305],[-94.94369471805146,17.314793098983557],[-94.94273742374321,17.315202364437255],[-94.94015749653977,17.316527150197658],[-94.93434800435165,17.318861663333337],[-94.93307736336396,17.318983540146007],[-94.93266556029835,17.319515447565436],[-94.93126128826191,17.321599838973384],[-94.9303358500814,17.322971072950224],[-94.92926913240473,17.324222402142652],[-94.92837121707919,17.32505719911694],[-94.92780513595852,17.325171874593025],[-94.92660358228403,17.325030009043985],[-94.92549530471916,17.323647279404952],[-94.92528863988372,17.32250540942772],[-94.92384090110374,17.321417890771954],[-94.92246254790757,17.320701571880136],[-94.92137685990627,17.32002742920156],[-94.9200617125872,17.319229182955212],[-94.91840562821767,17.318754360776836],[-94.9171108292403,17.318421711662552],[-94.91663427110842,17.31828300376759],[-94.91589971578702,17.31787086667373],[-94.91462941672592,17.31670778375269],[-94.91401699652857,17.31627241610073],[-94.91323108141285,17.3156837071445],[-94.91227914141376,17.314796908467656],[-94.9107181213887,17.31399724132592],[-94.90961277624058,17.313741573790253],[-94.90831009395498,17.313795734557857],[-94.90674410855814,17.314853065401735],[-94.90419397376672,17.316838895680405],[-94.90369328669749,17.31705934020721],[-94.90313884828419,17.317183283187205],[-94.90177014020514,17.317155748385233],[-94.90095297338286,17.31706049679974],[-94.90035543123258,17.316881749186393],[-94.89962603973612,17.31660277443342],[-94.89624771635562,17.313416875287146],[-94.89504358189942,17.312694440506334],[-94.89376012865955,17.312633310823344],[-94.89078155364507,17.311056003853878],[-94.88949468991245,17.307022309983722],[-94.88890961545042,17.30555903752287],[-94.8881211111601,17.303361327571395],[-94.88807346750315,17.301818784144757],[-94.88900376523515,17.30007837960534],[-94.89134950661355,17.29953006618007],[-94.89204043885331,17.299465195598998],[-94.8932394446382,17.299424527526185],[-94.89433180416353,17.299476563897485],[-94.89781486697717,17.298926292861097],[-94.90027783631712,17.29727749102949],[-94.90176099983029,17.296357367207918],[-94.90509557286174,17.296946741447073],[-94.90665097308903,17.297236080109087],[-94.90912532098298,17.297189520419863],[-94.9109474273381,17.29621635670668],[-94.91212769460532,17.29529634300485],[-94.91384637749172,17.293509469878757],[-94.91501883556049,17.290787194310553],[-94.91509139428621,17.289377301083903],[-94.91547611326394,17.288158906703984],[-94.91402297522683,17.286897382255916],[-94.9126751221338,17.286271032422405],[-94.91177327067805,17.286537307516426],[-94.91100665636077,17.2868079264789],[-94.90722234799767,17.28843634099269],[-94.90644583547174,17.288644251560413],[-94.90524455679332,17.28914700285111],[-94.90470671795464,17.289447318657153],[-94.90365028141849,17.28942504754133],[-94.90341703989634,17.289325957010874],[-94.90288742277755,17.289048515677678],[-94.90252939034337,17.288761644218823],[-94.90201251810493,17.288355773457454],[-94.90149732006665,17.28768012881642],[-94.90126918312353,17.286979707471858],[-94.90131053706904,17.28677048668436],[-94.90165579788896,17.28599517794055],[-94.90223704083121,17.28521074610336],[-94.90257547646115,17.28460440594114],[-94.90298007334502,17.28417156930061],[-94.90348839466174,17.28388375520558],[-94.9040632240505,17.28345901524915],[-94.90429080811151,17.283148785637195],[-94.90451632084614,17.282746736225988],[-94.90721065867916,17.277296380109533],[-94.9075776166319,17.275632161609792],[-94.90791323435292,17.27402385639226],[-94.90926231281458,17.272008966793464],[-94.90973388078805,17.269429478321058],[-94.90965471909118,17.267976930009866],[-94.90837305298709,17.26655591537093],[-94.90575531567873,17.26544319286893],[-94.9048039777798,17.26494768636178],[-94.90446586376629,17.263168126919425],[-94.90425899426913,17.262632995861907],[-94.90374030080852,17.262083028814516],[-94.89929562673393,17.25962024847894],[-94.89744785537977,17.259082018324307],[-94.89669757236987,17.25809276037336],[-94.89586598360853,17.257076940095487],[-94.89557820519445,17.25666547208243],[-94.89554512301436,17.25589400160237],[-94.8968649427793,17.253564581300566],[-94.8972962224135,17.25287904302911],[-94.89803195924196,17.251773499186868],[-94.90644371657805,17.246691370414965],[-94.90728904219617,17.24579001672464],[-94.90905325332767,17.243766369437367],[-94.90960730719604,17.24201149820965],[-94.90878284641741,17.240012970369207],[-94.90833859843144,17.239635601935618],[-94.90660346541398,17.238514045140278],[-94.90583681129681,17.237794780140348],[-94.90544802346466,17.235892004815355],[-94.9055562884779,17.235435864532292],[-94.90658987897973,17.234019751033998],[-94.90760670743981,17.23292845257191],[-94.90900077001692,17.231095321875955],[-94.90962439355269,17.22995818822278],[-94.91000251857764,17.228936014530575],[-94.9105013341129,17.22706890969664],[-94.91079193784253,17.225911659541737],[-94.91061651348286,17.2248548377666],[-94.91054439404604,17.22402366419925],[-94.91044361639865,17.223191125969834],[-94.91064783215256,17.22219431799465],[-94.91028000267858,17.22077228731797],[-94.91020632891895,17.219712910600776],[-94.910458908343,17.219397062741052],[-94.91071666678044,17.21898058090926],[-94.91077075768908,17.21741953116117],[-94.91087106019279,17.21649116987146],[-94.91111314438194,17.214859055507247],[-94.91156804670601,17.21248425909016],[-94.91226612935327,17.21103965248352],[-94.91286688607863,17.20987000458996],[-94.91413409204995,17.207982036274245],[-94.9149621026956,17.206628745301998],[-94.91698779817284,17.206275060475832],[-94.917204810837,17.206392493831174],[-94.9194067848486,17.206049004949534],[-94.92356118531615,17.203158501207383],[-94.92377735407496,17.201838667553318],[-94.92368787796676,17.200695591420697],[-94.9233030684822,17.199158651518587],[-94.92344554176753,17.19706419876445],[-94.92311278438706,17.195207966882265],[-94.9228622264381,17.194055340629347],[-94.92281478010057,17.19378843687747],[-94.77682455884559,17.18637543065472],[-94.70993788377564,17.182931147104966],[-94.60873840443077,17.177662654849712],[-94.48344780527219,17.171044372182394],[-94.36629648005766,17.16476033560224],[-94.20727976876657,17.156082625440604],[-94.07504926372405,17.14873684783413],[-93.95296908092178,17.141850270980456],[-93.86742677174817,17.1369649111532],[-93.8701232697955,17.14664741079099],[-93.8623168413497,17.15154401183247],[-93.86091577572245,17.163741140289005],[-93.85333832893178,17.165121063764218],[-93.8439689333764,17.168611755885024],[-93.841184672402,17.172202275986706],[-93.8390452138961,17.1729468843302],[-93.82713769224051,17.17250347973379],[-93.82673251639557,17.189316872845325],[-93.82594075890421,17.191410112773383],[-93.82011996107377,17.195323374900738],[-93.81807555563984,17.199329850885135],[-93.81879441023182,17.202023523922605],[-93.80376249362655,17.22486816353785],[-93.80513099278613,17.225862105899296],[-93.80594759146845,17.23022175982163],[-93.80435400588806,17.233065385011855],[-93.80215210883898,17.234341496589195],[-93.80144868427766,17.2403794990596],[-93.79830584319541,17.241922639686095],[-93.7948542612906,17.24089766713928],[-93.7912895918642,17.237446549988476],[-93.79122121258257,17.23211800533352],[-93.78800471941798,17.233794178094627],[-93.77245020072661,17.24582355476224],[-93.76934277347613,17.242591590394113],[-93.76591766525075,17.241497855736384],[-93.7636204396714,17.239439441635568],[-93.76098961588093,17.23978450792538],[-93.75420985173866,17.243644798777325],[-93.7461826087241,17.243688994442778],[-93.74261173758379,17.245995979871793],[-93.73679311352703,17.247511130041232],[-93.72436910674958,17.247085904690834],[-93.71752158516989,17.249343293017205],[-93.69566894663473,17.247230172087086],[-93.6898722548159,17.255306266378852],[-93.66269436581774,17.256276893238805],[-93.66441145840224,17.286193390568883],[-93.6381323341335,17.29094835943181],[-93.63544267906121,17.293085160361443],[-93.61450013395307,17.30972010967264],[-93.61393358412602,17.31017006100592],[-93.61149205138878,17.312109061230785],[-93.61119547893855,17.312344586361917],[-93.61115593142608,17.31237599250221],[-93.60793980869431,17.314930016503922],[-93.61855474997492,17.32172642514604],[-93.62438667846573,17.322481311011643],[-93.62452471418601,17.3213927292756],[-93.6257156396453,17.320135234686063],[-93.62621913813177,17.31935641475718],[-93.62635815073702,17.318559299866138],[-93.6266204194485,17.318286444019407],[-93.62661956136458,17.318033838890585],[-93.62649656869911,17.317587304575625],[-93.62653310011308,17.31642131390896],[-93.62622849954806,17.31615022557355],[-93.62743197387812,17.312843152537482],[-93.6358680964205,17.31435452146792],[-93.64134298942639,17.31788721652333],[-93.64103035499517,17.319108257338655],[-93.64132263052028,17.319650550935876],[-93.6416829188422,17.320003276747457],[-93.6420244968765,17.320392340448564],[-93.64213853452924,17.320591582531108],[-93.64231275639872,17.320821405886647],[-93.64244161379946,17.321054577071777],[-93.64291956968714,17.32224573492732],[-93.64252617911751,17.322807889549892],[-93.64220323528531,17.322984513617087],[-93.64216257331469,17.323444006393913],[-93.6426559732551,17.323712587258285],[-93.64309267548316,17.32387331367039],[-93.64321155069717,17.324254633065323],[-93.64320361819978,17.324535480019506],[-93.64319607519843,17.32490994955259],[-93.64335651532781,17.325164735646126],[-93.64346315800645,17.32524946017878],[-93.64413996398207,17.326333741434496],[-93.64439993385542,17.326457503435506],[-93.64470372473465,17.326736896825366],[-93.64510573309815,17.327275577994556],[-93.64536499553685,17.328471685957084],[-93.64542998984899,17.32909496775909],[-93.6453886742658,17.329255977658875],[-93.64529533103854,17.32951773444381],[-93.64509793799766,17.33027431596588],[-93.6451118396534,17.33046432090407],[-93.6451983426341,17.330685716845494],[-93.64425484198875,17.331488335024858],[-93.64413246510571,17.33159416125568],[-93.64376664933906,17.33176357021631],[-93.64311980444631,17.331447998451154],[-93.64281676838499,17.331259121864207],[-93.64229307011635,17.331160323132735],[-93.64194344170352,17.331171352075614],[-93.6415912217434,17.331352472786932],[-93.64151533453497,17.331712649642952],[-93.64145215844502,17.332580886232222],[-93.64084677741766,17.332879258349124],[-93.64038263129851,17.3325737513307],[-93.64009582750117,17.33253233500625],[-93.63995264564994,17.332575126050017],[-93.6396776222852,17.332755946726706],[-93.63953641966373,17.333370431906076],[-93.63975794061321,17.333655549555374],[-93.6399348058103,17.33378203450235],[-93.63999164680888,17.334279395018655],[-93.63986068453647,17.33467147232352],[-93.63973981586742,17.334798908721098],[-93.63939902760609,17.335085822677684],[-93.63913486426299,17.335224274636573],[-93.63862853896171,17.335458824022737],[-93.6383975436068,17.335618335917445],[-93.63807703963283,17.335890723857517],[-93.63758662102231,17.336508220432847],[-93.6370016671512,17.3371513075586],[-93.63651572767037,17.33715285054052],[-93.63570509353269,17.336941678081075],[-93.63517846281178,17.33688505406292],[-93.63487662768023,17.337430083291963],[-93.63518187822791,17.33787603417619],[-93.63572747121736,17.338421000534424],[-93.66682534445931,17.36028864412424],[-93.66930206517156,17.361915891228023],[-93.67072028204643,17.36251842255706],[-93.67301610330213,17.363765662397327],[-93.67357496719762,17.363958666474616],[-93.67416522875459,17.36428169692425],[-93.67447573743931,17.364619795303952],[-93.6748028362145,17.36546655978509],[-93.67530443168329,17.365705097450075],[-93.67546269557386,17.365623207643296],[-93.67583361868037,17.365434821622955],[-93.67621636176762,17.36539113755606],[-93.67648175763514,17.365475026235174],[-93.67787518511255,17.36635063528945],[-93.67974430335522,17.368731942042473],[-93.68245046148047,17.370713804691547],[-93.68553893843597,17.372241360019814],[-93.68586615901529,17.372678038303434],[-93.68588288803045,17.37321495978489],[-93.6857960039045,17.373626294527526],[-93.68566821695629,17.374184268613135],[-93.68559521572297,17.374312919598992],[-93.68528545086389,17.374187290056682],[-93.6845568098978,17.375741083471837],[-93.68381583650842,17.375808136708088],[-93.68413323499004,17.37527372760087],[-93.68414063147037,17.37461296801621],[-93.68297064039984,17.37356379270193],[-93.68302511089536,17.3741477679161],[-93.68287458739911,17.37415990173679],[-93.68292884369623,17.374819780243854],[-93.68282950551395,17.37570402493128],[-93.68417314896226,17.377864428711916],[-93.68460230863434,17.378192676580625],[-93.6848412378813,17.378154401638483],[-93.68516785777518,17.377707613624068],[-93.68559783942919,17.377177086291113],[-93.68628927762114,17.377525104184542],[-93.68879747957953,17.37910389227926],[-93.68980376544891,17.379303040935213],[-93.68991628390393,17.380628839460087],[-93.68970697353188,17.381184020962962],[-93.68945404099475,17.38159425861005],[-93.6894837637754,17.38233217907731],[-93.6896903693351,17.382649018888458],[-93.69012191642918,17.382960655030217],[-93.690448350753,17.383000585839966],[-93.69049417563537,17.382989204207263],[-93.69086353573965,17.38267887584749],[-93.69129255992812,17.382153186316827],[-93.69170302669221,17.382292700885444],[-93.69157400144718,17.382892578870383],[-93.69167060055969,17.383843684624026],[-93.69172919605722,17.38446055970587],[-93.69178703846961,17.384876881985804],[-93.69181060515729,17.38520180208002],[-93.69297650275672,17.385802077665687],[-93.69346562039539,17.385816542255952],[-93.6937002872595,17.386371507548517],[-93.69400265268098,17.386820525953],[-93.69476706056997,17.387241675000723],[-93.69490036044607,17.38761797721628],[-93.6948806665767,17.388032958705594],[-93.6947716408796,17.388243527637144],[-93.69389170862206,17.38869166120969],[-93.69349271213679,17.388281442944105],[-93.6930710431609,17.387996665483854],[-93.69214953470367,17.388315262643687],[-93.69176156151002,17.389114100498432],[-93.69178623754306,17.389945446305887],[-93.69175483395998,17.390465359949076],[-93.69129554538068,17.390709104665007],[-93.69059191717736,17.390343452734612],[-93.68958168392385,17.390753339509047],[-93.68895729176171,17.391028289422422],[-93.68822649541818,17.391286421957147],[-93.68826940778825,17.39236353553605],[-93.68854356530397,17.392741366924838],[-93.68867288396251,17.3929557455769],[-93.68824601471954,17.393858175030743],[-93.68795262602941,17.394348109376438],[-93.68734431356597,17.395423468628394],[-93.68681839413637,17.395626336519058],[-93.68610941083034,17.395069926463805],[-93.6856781718904,17.394124895150128],[-93.68504047644171,17.39401617673809],[-93.68457942574935,17.39475556801557],[-93.68417618114086,17.395076342726895],[-93.68289577777637,17.39726323460974],[-93.68283216660052,17.39831519852254],[-93.68237683978629,17.399001329621854],[-93.68221409448017,17.399688169105957],[-93.68200385051989,17.400694041529903],[-93.6819185381546,17.401637101131143],[-93.68205428138504,17.40192200076342],[-93.68227234698958,17.40219621821052],[-93.6825276246069,17.40239514464872],[-93.68333155409476,17.403105650538407],[-93.68353005305028,17.40337357856697],[-93.68358858366281,17.403618267623017],[-93.68380772169456,17.404261264020988],[-93.68357080791554,17.40465073968585],[-93.68146595479726,17.406216082612275],[-93.68095190321577,17.407068347770235],[-93.68041562452242,17.40801195858961],[-93.67863117962469,17.411051972116923],[-93.67827766444987,17.411090830717],[-93.67816118393404,17.410937247033246],[-93.67805516645535,17.410748291462596],[-93.6771308476196,17.41025322512695],[-93.67570666833865,17.411255068154674],[-93.67377733071612,17.412148501714],[-93.67334019647353,17.412492103422835],[-93.67290361544912,17.413185008696814],[-93.67241175460276,17.41373422335704],[-93.67223422034562,17.41409811311911],[-93.67301561998244,17.414972571252235],[-93.67315957675089,17.415401406924786],[-93.67312779970695,17.415926250046994],[-93.67201813454568,17.416665671829435],[-93.67182368826394,17.417166726355333],[-93.67173780944114,17.417451423761236],[-93.67203903356847,17.41763441592309],[-93.6739474319333,17.41886841827869],[-93.67367596788375,17.419200074487662],[-93.67310232158201,17.41977275970214],[-93.67267566433628,17.419863525911637],[-93.67217792206998,17.419633389249725],[-93.67189625404336,17.419365607328643],[-93.67172069820651,17.419081339486468],[-93.67117857551813,17.418850986978555],[-93.67024087505581,17.419018219748978],[-93.66981068465446,17.41931224225891],[-93.66949687133405,17.41984084480947],[-93.66929570553981,17.420060446139985],[-93.66897228521577,17.420166257323274],[-93.66809922797836,17.42017742473837],[-93.66676083426319,17.419787402235556],[-93.66639321694242,17.41787174683361],[-93.66629192672224,17.41647316395847],[-93.66573973720341,17.4160005482741],[-93.66523577167197,17.41607762060204],[-93.66528613226313,17.416508513586052],[-93.66537397462656,17.417105702250296],[-93.66522544752866,17.417594170072903],[-93.66422220626924,17.4186578164734],[-93.6633780957514,17.41962428701129],[-93.66308391358717,17.41970384244621],[-93.66259717236778,17.419537018990752],[-93.66226456503375,17.419362819859884],[-93.66148767299683,17.419239134576912],[-93.66094914885036,17.41700671611153],[-93.65854055770001,17.416746501152602],[-93.65714162432937,17.418094326445953],[-93.65622373643771,17.419536733929704],[-93.65573829259188,17.419912371906776],[-93.6540499189453,17.419616322930665],[-93.65285677297686,17.420084527552262],[-93.65357794683865,17.42101540821443],[-93.65355415553535,17.421407419622994],[-93.65327197889968,17.421671641433306],[-93.65311492327373,17.42215060667604],[-93.65200215359732,17.423438139660107],[-93.65110419646737,17.42590136465384],[-93.65096302136448,17.426874480515494],[-93.65076319522854,17.42929782159831],[-93.65039504033274,17.430490640315725],[-93.64985426202838,17.431394164100936],[-93.64876712624016,17.432463666514707],[-93.64740125285306,17.431603421985926],[-93.64675252449456,17.431084438762753],[-93.6465628888306,17.430609364670886],[-93.64606594193219,17.43040360605005],[-93.6458760805516,17.430340440568898],[-93.64559757019629,17.43081112327144],[-93.64591626240218,17.431673063883693],[-93.64615812185542,17.4320197935578],[-93.64607838309024,17.432172917738512],[-93.6456944023069,17.43261968261146],[-93.64451448834524,17.43343487514909],[-93.64395354907487,17.43347101526507],[-93.64098801766852,17.43470753753826],[-93.63973078633313,17.435043298766857],[-93.63870979653689,17.435605667023708],[-93.63820632607548,17.436086258334115],[-93.63788900427733,17.437968870960617],[-93.63732601545053,17.438347064135314],[-93.6371997906515,17.43871142157394],[-93.6392097758519,17.439480765410053],[-93.64077223430598,17.43927705055529],[-93.64166356656199,17.43923715210792],[-93.64292969358104,17.440370489026975],[-93.64516515475577,17.442035902745033],[-93.64517987776821,17.442401588069345],[-93.64477354928488,17.442657210897153],[-93.64439265993701,17.442565778164465],[-93.64401308759676,17.44262464653991],[-93.64383227728933,17.44284988234574],[-93.64279053586279,17.4434370616587],[-93.64268266273388,17.44375151156305],[-93.64304894769998,17.44426439503883],[-93.64359938633169,17.44539647358033],[-93.64401429901511,17.446002418803403],[-93.6439806359823,17.446556373932083],[-93.64194133142854,17.4479045524497],[-93.64095441221178,17.449380636308376],[-93.63878758617392,17.450235558985582],[-93.63780661403212,17.45011469814409],[-93.63692441223503,17.45006526827143],[-93.63652038983543,17.450251548982123],[-93.6353951227465,17.451093847336892],[-93.63568441984256,17.452452514430036],[-93.63639147645739,17.452754104327312],[-93.63647433860308,17.453294673508367],[-93.63614984950965,17.454410535234388],[-93.63659740354615,17.455276881003215],[-93.63880298210341,17.455128261827724],[-93.63955924309693,17.454692112791577],[-93.64006497858611,17.45489197981442],[-93.64181952890021,17.456033983265172],[-93.64246233995777,17.45606997824018],[-93.64323460420803,17.455236328113244],[-93.64325756794426,17.45407949105936],[-93.64290444051528,17.453298465758053],[-93.64310721201832,17.452208360013003],[-93.64335232068669,17.452126149233493],[-93.64415711730743,17.45217120703967],[-93.64493210592951,17.4526660144669],[-93.64647873266176,17.453189566706328],[-93.64681081524554,17.453767920866255],[-93.64643987449693,17.454676364214038],[-93.64603172241021,17.455437505469263],[-93.64580521744114,17.455746140984672],[-93.6444336286138,17.45623771108643],[-93.6439625055545,17.456821817000844],[-93.64463510092645,17.45784396606416],[-93.64579418977257,17.459036275363644],[-93.64739360475363,17.45918863460355],[-93.64789980215676,17.45891600083428],[-93.64840707485979,17.457701161979344],[-93.64949226278242,17.45710118473562],[-93.65036785861366,17.457968134642158],[-93.65031612743155,17.459047948638784],[-93.6499389545836,17.459553311646403],[-93.64980639524799,17.45982346881806],[-93.649437218939,17.460063349477934],[-93.64846458841106,17.460946286537762],[-93.64771241965889,17.46174409799056],[-93.6470371539707,17.461591652854963],[-93.64610376143554,17.46182542920559],[-93.64302367970419,17.46079885668115],[-93.6419415481663,17.459281917646877],[-93.64112265972602,17.459020084593874],[-93.64044352765563,17.458820829317915],[-93.63961218130146,17.459267122828862],[-93.64017107546977,17.460837557961895],[-93.64027015871056,17.461323517517883],[-93.63958911882474,17.462122664129367],[-93.63946592220037,17.46239244807316],[-93.63920932518681,17.463267921047475],[-93.63959313522759,17.46408340385392],[-93.63995646549978,17.464631039900098],[-93.63928893790995,17.46518978776089],[-93.63867025960127,17.466256011942335],[-93.63717651954954,17.46693293442928],[-93.63631031495021,17.46748906705602],[-93.63570123975398,17.468063675349413],[-93.63557116544791,17.46842549725892],[-93.63569020669524,17.46917509507665],[-93.63566802979102,17.46982965764863],[-93.63579310568252,17.470794672363013],[-93.63663143726296,17.471437256445313],[-93.6371476749631,17.472598365873637],[-93.63690992593064,17.473703065902498],[-93.63621130773464,17.475487086945066],[-93.63606294647889,17.47604406069661],[-93.63582591165533,17.476196224857688],[-93.63527882961682,17.47661448801017],[-93.63512523236375,17.476854049702467],[-93.63479974734923,17.477688655197937],[-93.63464177766497,17.478368984554663],[-93.63218945924109,17.481278247012995],[-93.63179555867737,17.4816845723318],[-93.63164195205138,17.48197398964186],[-93.63165328768258,17.48306426576829],[-93.63136165100343,17.485819490448307],[-93.63139842361034,17.486399991272435],[-93.63087980101665,17.487366333143484],[-93.62972288084802,17.48889464663813],[-93.62857632756334,17.489948868300417],[-93.62825812140323,17.49035563790011],[-93.62778669311638,17.490805788226908],[-93.62668727594013,17.49176506896265],[-93.62612659672874,17.492184742402287],[-93.62459178183656,17.493026158420037],[-93.62410483902613,17.493457238981136],[-93.62427395428944,17.494544774086535],[-93.62479728947909,17.495086802030983],[-93.62589335417829,17.495861725612997],[-93.62661002534077,17.49711437934309],[-93.62712703163982,17.498113501870364],[-93.62829134262779,17.49916659123204],[-93.62990926734864,17.500876629431275],[-93.62969455624483,17.501744277402167],[-93.62946189019402,17.502005078254],[-93.6287712425584,17.5019305409445],[-93.62721358264207,17.50135476451885],[-93.62567180173494,17.500833495470488],[-93.62607154809984,17.50442127828603],[-93.62720474445439,17.50556685796289],[-93.63005897163771,17.50670728734582],[-93.63147096740272,17.50693585573117],[-93.63385348016607,17.50705950588582],[-93.63455384830837,17.507216436742908],[-93.63573759617788,17.507926707072784],[-93.63718270353729,17.509481666207023],[-93.63724218038897,17.51002821462157],[-93.6369589396358,17.51033972030109],[-93.63652567805889,17.510444065410013],[-93.63518725182018,17.51029087411763],[-93.63333029212072,17.50976932528613],[-93.6300148155795,17.511610604100042],[-93.62971892076314,17.51273071312795],[-93.62767027642246,17.514224180520728],[-93.62534814760318,17.514402129214375],[-93.6259561101873,17.51831981647183],[-93.6264817341011,17.519513319545638],[-93.62661620831182,17.520378275251403],[-93.62665606811686,17.523997370865004],[-93.62619551238714,17.5244063168999],[-93.62580473561627,17.525071969119324],[-93.6251221914294,17.526283165883],[-93.62611328169464,17.527168900060758],[-93.6269368581797,17.527419095553853],[-93.62788126562191,17.528546147221505],[-93.6274744329096,17.528952049168936],[-93.62726325126374,17.531682213304066],[-93.62678318992454,17.533081707778138],[-93.62547995693217,17.53695729304701],[-93.625168217382,17.53766864080461],[-93.62469184915767,17.53826353189919],[-93.62352597228164,17.538509943192878],[-93.62089058101037,17.537034316218694],[-93.62005451271648,17.537006878503462],[-93.61956475346057,17.537558602859463],[-93.61930531272981,17.538946032021613],[-93.61911065185052,17.53934417637447],[-93.61880042441527,17.540377198786075],[-93.61828546549549,17.54174040372061],[-93.61830551834976,17.54245411900905],[-93.61961191849247,17.54301457946275],[-93.62086434723017,17.54329963172387],[-93.6213605255868,17.5450517803136],[-93.62100760555813,17.545465234267738],[-93.62002662852439,17.546502413865767],[-93.6182715735257,17.54790732383242],[-93.61692845211019,17.5492727951368],[-93.61360112529195,17.55251127309691],[-93.61498414493246,17.55438796307044],[-93.61524659607477,17.555111789858472],[-93.6157522996649,17.555300750267577],[-93.61752251056595,17.55516506348772],[-93.61843451988904,17.554921601309843],[-93.6194906400633,17.554295296754617],[-93.62005960965217,17.553769050304652],[-93.62152139200367,17.552883928306358],[-93.62272712905184,17.55135512216225],[-93.62342626206811,17.55042789628203],[-93.62390869667985,17.549554627720738],[-93.62543564230464,17.54883038117623],[-93.62618604778282,17.54906050196655],[-93.62679819757795,17.549278956187493],[-93.62768483087547,17.549262356741565],[-93.62912369436606,17.549397868683513],[-93.63004145302892,17.549537105342324],[-93.63074348340194,17.549823264969177],[-93.63163714656491,17.550386540243267],[-93.63172309714008,17.550789813406368],[-93.63135900545694,17.551599925729022],[-93.63093011117536,17.551918086771764],[-93.62999468160581,17.552175147776268],[-93.62932253745214,17.55509901234643],[-93.63114354637065,17.556734740424247],[-93.63254815501028,17.556922999296035],[-93.63390701300779,17.556867818358683],[-93.63552522741992,17.55643746615715],[-93.63618346436584,17.556092914082683],[-93.63743072451143,17.55550650914097],[-93.63829180299086,17.55528828055111],[-93.63932308679529,17.55562637396605],[-93.64175332961372,17.557832402171528],[-93.64276356228874,17.558044456155642],[-93.64352221535773,17.556316155922957],[-93.64372523026691,17.555833538977595],[-93.64494507801294,17.55549370330533],[-93.64750240018151,17.555364903098734],[-93.64887644168982,17.555450668925687],[-93.65010298140282,17.55786733901391],[-93.65136666335843,17.558595426905583],[-93.65303112166998,17.559798583332338],[-93.65468825532196,17.55929969196609],[-93.65461769622942,17.557244436992562],[-93.65454387951206,17.556627688261187],[-93.65442195288131,17.55621520258768],[-93.6544513858413,17.55573054607737],[-93.65476231177047,17.555456034074552],[-93.65654206146701,17.555238083191057],[-93.65671229515158,17.55534257917344],[-93.65831590341674,17.557483994975087],[-93.65924600249343,17.55885261291246],[-93.659462052876,17.55952622626421],[-93.6595360095568,17.560035496261605],[-93.65944353230293,17.56208987944359],[-93.6590602753601,17.563283522028883],[-93.65890597303144,17.5638325715027],[-93.65877928369207,17.564842466385414],[-93.65916928015832,17.56548634624295],[-93.66060127430802,17.56583278369129],[-93.66141530397118,17.566002504123105],[-93.66260025423009,17.56645592001371],[-93.66345268447566,17.56679967753945],[-93.6643238134734,17.56734625458779],[-93.66494096688825,17.567747861673695],[-93.66512064383465,17.567860277012073],[-93.66574906607343,17.56824067817064],[-93.66676870344315,17.568844760767888],[-93.66696934937255,17.568963913184177],[-93.66728924575267,17.56936969254491],[-93.66785633502735,17.569756885922345],[-93.66860783817674,17.569785455088947],[-93.66903230402062,17.56980913250169],[-93.67015516236648,17.56953890435659],[-93.67121858389805,17.569560624119788],[-93.67199191615504,17.571337155407548],[-93.67208929685694,17.571950974800018],[-93.67205617696743,17.5729738297444],[-93.6715046633912,17.57359701275027],[-93.67070753448417,17.57440979003286],[-93.67054293451122,17.574724448166933],[-93.67016363024231,17.575449534951645],[-93.6724926890601,17.57678065376308],[-93.67316645500875,17.57678241329711],[-93.67348512543447,17.57671583442334],[-93.67399972715623,17.57648284957895],[-93.67423421233468,17.576317169930974],[-93.67444775573898,17.576329073392117],[-93.67596018021823,17.57609101844446],[-93.67738322011218,17.575902732873715],[-93.67772204582064,17.576544943565068],[-93.67773659122793,17.57736985383673],[-93.67763428071726,17.57787816564644],[-93.67743642785643,17.57831677255831],[-93.67727778750577,17.579164622120572],[-93.67823297902032,17.57969073164452],[-93.67863993621302,17.580197654100004],[-93.67890966437602,17.580822637351275],[-93.6795837425779,17.581620927170263],[-93.68001579141526,17.58243978055515],[-93.6801379049461,17.58273036082079],[-93.6808133869398,17.584927619496796],[-93.6807304737037,17.585281744997246],[-93.67984090656614,17.585876266860282],[-93.67953457859517,17.585859203249868],[-93.68069100142776,17.58712712969492],[-93.68281209882196,17.587028033027195],[-93.6834159255987,17.587061654327044],[-93.68541883954202,17.587086363654976],[-93.68616987940032,17.58909529766578],[-93.68510739117227,17.59265228367974],[-93.68720937034732,17.593694375550342],[-93.6888772475919,17.59389858652878],[-93.69022024759244,17.593888784767614],[-93.69148017185046,17.593958869718392],[-93.69280427305841,17.593652490800253],[-93.69331028282016,17.59326417226896],[-93.69155087441277,17.591388147296072],[-93.691422360265,17.59099220321042],[-93.69140392647643,17.59071649369156],[-93.6916512758757,17.590175995321545],[-93.69280787334924,17.589626486955638],[-93.6931185243754,17.58949551797508],[-93.6935256617067,17.58968072425722],[-93.69371982895228,17.58990454555226],[-93.6947713323251,17.59124726000192],[-93.69559540488984,17.592108737852584],[-93.69692774770664,17.593104829162826],[-93.69794633010576,17.594322981977143],[-93.69973717894902,17.596411812997303],[-93.69978593116366,17.598492045658304],[-93.69945117980154,17.599940336341774],[-93.69973487334897,17.601382473697583],[-93.70032986146356,17.60353509219476],[-93.70080722835877,17.605368147458023],[-93.70118084234906,17.60706960749826],[-93.70046999605603,17.611256632982986],[-93.70005532701771,17.61230061927739],[-93.69997708237673,17.612605719533747],[-93.69965743996153,17.613685619963462],[-93.69986144391856,17.613906273253065],[-93.6999945419879,17.613926045012022],[-93.70011080870995,17.613904050019016],[-93.7003819467028,17.61350159022038],[-93.70063290802102,17.612932393860092],[-93.7014073965218,17.61178328778135],[-93.70211022606708,17.611283934011453],[-93.70276997475582,17.61109890881238],[-93.70330550131757,17.61070142707689],[-93.70372370420534,17.610397148601578],[-93.70460084176045,17.610380520333365],[-93.70533235484845,17.610716945218485],[-93.70567196700131,17.610835261760315],[-93.7057059330607,17.61098346670161],[-93.70653476896717,17.612088867169803],[-93.70683321015434,17.612211529473086],[-93.7072139561028,17.612237715246465],[-93.70772119831008,17.611973753104166],[-93.70969133758808,17.6116329873243],[-93.71032705711337,17.61335281848892],[-93.71047297760731,17.61408080444272],[-93.70963659365992,17.617829654770674],[-93.70956081069033,17.61908541391199],[-93.70931868897344,17.620081594966223],[-93.70871873181403,17.621405688966718],[-93.70849269590775,17.623415842237762],[-93.70923754434199,17.624375113611052],[-93.70971467943264,17.624988525720767],[-93.70995448463907,17.626927590943467],[-93.71163395188523,17.6281468084901],[-93.71318614267989,17.628630897993162],[-93.71330807497225,17.628837700921224],[-93.71267980188429,17.63003315796425],[-93.71415924532732,17.631564919371215],[-93.71622152954433,17.63310784396674],[-93.7171579189449,17.633413466981665],[-93.71747715534826,17.633523275830782],[-93.71852124355343,17.633908554659],[-93.71903894165638,17.63365069072313],[-93.71917042251289,17.63346353143612],[-93.71916009985932,17.633056862073943],[-93.71885813111794,17.631896977254428],[-93.71814793128078,17.630556247744437],[-93.71752155166746,17.629806000053634],[-93.7171611776966,17.62913482170518],[-93.71651064952482,17.628257517385293],[-93.71595073161518,17.627301206826928],[-93.71552784068632,17.62620912943663],[-93.71480710931297,17.625874092251422],[-93.71408809240006,17.625882834267088],[-93.71354012128205,17.625934317151007],[-93.71336695184743,17.625811696902815],[-93.7130591906137,17.625199126566315],[-93.71335386239701,17.62460910462073],[-93.71382286568024,17.623483096260884],[-93.71365883909988,17.62296996769902],[-93.71318988422331,17.62271132996949],[-93.71279806572397,17.622919859037665],[-93.71245971134914,17.624010137663447],[-93.71197553510012,17.623535550145505],[-93.71302222438032,17.621691098056317],[-93.71402844091017,17.62145216189691],[-93.71606035719225,17.62131606469643],[-93.71707554651204,17.622105083705662],[-93.71778485584946,17.622627222569008],[-93.71918241954552,17.623045976423327],[-93.72071477752422,17.622864376019663],[-93.7211514382073,17.622758627494136],[-93.7227352096088,17.623109492753827],[-93.72360560023435,17.62373547185723],[-93.72325735611406,17.624665423861018],[-93.72315484954066,17.62542988229535],[-93.72354657296842,17.62620633662641],[-93.72375726895984,17.62621800838508],[-93.72435201956603,17.626094359031015],[-93.72493617728566,17.626048541747878],[-93.72552283400051,17.626243879134336],[-93.72678004809609,17.626906983206936],[-93.72724644292299,17.62775608282317],[-93.72861777610831,17.6296127398831],[-93.72911917509617,17.629865241120626],[-93.7294887485022,17.629544227409383],[-93.72960911748504,17.629365419518365],[-93.72992566865753,17.628751784109568],[-93.73015336604459,17.62808888352805],[-93.73056451293519,17.62716678779759],[-93.73100577426737,17.62657683874761],[-93.7313099574414,17.62613732022919],[-93.73176998000764,17.62556009253757],[-93.73353913292277,17.62707674421131],[-93.73362651119982,17.628304939140378],[-93.7335793893725,17.629153255852373],[-93.73347212510816,17.629688657793622],[-93.73274159176918,17.631236096135694],[-93.73249858602708,17.631681989818958],[-93.73205928597156,17.632902611855968],[-93.73128562128943,17.634383973288436],[-93.73100016037893,17.635486134472615],[-93.73173650596311,17.636187433014356],[-93.73234520493651,17.635850282266347],[-93.73240670917818,17.635289791763796],[-93.73226604316352,17.634800126034634],[-93.73343915802036,17.63313140159869],[-93.73410241551551,17.632452209200892],[-93.73439577805499,17.63144570928921],[-93.73437496930626,17.63101171775031],[-93.73457808517054,17.63027912739784],[-93.73528020977699,17.63008187531119],[-93.73580075148334,17.63027665841389],[-93.73713767896356,17.631203434125553],[-93.73773462484803,17.631619641854286],[-93.73788980794336,17.631925496981978],[-93.73787930614617,17.63354707604077],[-93.7377527437913,17.636758702593397],[-93.73718789207595,17.63743024517902],[-93.7352497731676,17.63809365848408],[-93.73444247453574,17.63852683755681],[-93.73372840942005,17.638863664906467],[-93.73159669909438,17.640007715642014],[-93.73015154422893,17.642285904794562],[-93.73043276588857,17.643105491515144],[-93.73116825926917,17.644505568239083],[-93.73157740913268,17.645739241710544],[-93.7324331247658,17.64761271126457],[-93.73257734197614,17.648528170257805],[-93.73344749866055,17.64971676286899],[-93.73454829691991,17.650251271364937],[-93.73760839616983,17.651607390802667],[-93.73835556940918,17.65118403931973],[-93.74094614710901,17.649611284502498],[-93.74116325219865,17.650833492252616],[-93.74167182169964,17.652177935481404],[-93.74207298085531,17.652848489918426],[-93.74203754200789,17.65367858646283],[-93.7417668214108,17.654302925546745],[-93.74208047143088,17.65598484500589],[-93.74309146423724,17.657487629276943],[-93.74377279145187,17.65712242113733],[-93.74448040050947,17.65694723499206],[-93.74496643645773,17.65769482169594],[-93.74552607526653,17.65861264287372],[-93.74651039512611,17.659540539515376],[-93.74655491038578,17.660576408331337],[-93.74613780535009,17.66082322812565],[-93.74267445911426,17.660950195733278],[-93.7422357500111,17.66229843001662],[-93.74189824977861,17.66283152875684],[-93.74116046815101,17.664286296888235],[-93.74140722564437,17.665749570117384],[-93.74182956990234,17.66628761622536],[-93.74387769890421,17.664366325098797],[-93.74453460573739,17.66305455760414],[-93.74536225858151,17.662206088164055],[-93.745620294628,17.66222034169607],[-93.74594257401384,17.662896600122963],[-93.74610037872554,17.664291955945316],[-93.74626396901681,17.665071147390677],[-93.74633011254559,17.665480197013324],[-93.74656751906218,17.66612417935437],[-93.74707931061437,17.668350567990842],[-93.74396377003887,17.67072780744519],[-93.7435648931916,17.671489922312958],[-93.74326137986014,17.673074063593504],[-93.7430004502512,17.674023591747016],[-93.74247131486288,17.674937444818454],[-93.7420326359703,17.675384558583687],[-93.74175929590638,17.67558688597444],[-93.74122601206352,17.67570467708407],[-93.74087303023157,17.675391303865013],[-93.74065877813399,17.674740907407738],[-93.74028273200662,17.674700257314157],[-93.74004273974055,17.674838598392682],[-93.73951833989946,17.675965334672924],[-93.73906411014451,17.67682579991083],[-93.73841007273211,17.677254576663245],[-93.73803838984543,17.677991442047244],[-93.73813300902896,17.6786590727134],[-93.7383018431882,17.67915306982934],[-93.73882046434773,17.6793833656414],[-93.73957824103803,17.679047819713844],[-93.74055095934801,17.67841737176576],[-93.74200234817118,17.677866285450364],[-93.74348493358002,17.67733906638034],[-93.74486659844433,17.676839023640696],[-93.74543929817088,17.676656641848012],[-93.74712836910896,17.6758113048906],[-93.74783533313342,17.675384326213134],[-93.74816041022507,17.6754022761977],[-93.74892393472703,17.67907434094758],[-93.74973517494368,17.679504678341914],[-93.75127441657094,17.67884831184],[-93.75128861886265,17.6779747012925],[-93.75131736639162,17.67717961614136],[-93.75144994791691,17.676882906117726],[-93.75183631904918,17.676563564632715],[-93.75206154663954,17.676634604762057],[-93.75233282066347,17.677343806836745],[-93.75204363258564,17.67865252693133],[-93.75230042176622,17.6795730167604],[-93.75288975195627,17.680078070267143],[-93.75338362618152,17.680134634253875],[-93.75341066853235,17.67968556645212],[-93.7534517440535,17.67900153421874],[-93.75387625819661,17.678631573132293],[-93.75584346594718,17.677357498043477],[-93.75651607132772,17.676941839714573],[-93.75693367323174,17.676994185030196],[-93.7572332193368,17.677690083063112],[-93.75728821509801,17.67823737537907],[-93.75703654114051,17.679199708339638],[-93.75680682067065,17.680397940602347],[-93.75673174790813,17.681391481017613],[-93.7565347156891,17.68262435949731],[-93.75638161248708,17.68273145137539],[-93.75620501580534,17.6827468873376],[-93.75556725587433,17.682502690918056],[-93.75428738860927,17.682145059385164],[-93.75376277728509,17.682116113896996],[-93.75307865077855,17.68211740478779],[-93.75202701718297,17.68256892633451],[-93.75170375145592,17.68329276834328],[-93.75178888548345,17.683986556042726],[-93.75299893461562,17.685276959894964],[-93.75428118784055,17.68572362188945],[-93.75539299848492,17.685902575875673],[-93.7564497008263,17.685426365073113],[-93.7569273996117,17.684435307029162],[-93.75711051553083,17.683942237280746],[-93.75723341837022,17.683713770335828],[-93.75837783125661,17.68403173611324],[-93.75937762489002,17.684971033396778],[-93.7599923858105,17.685018000286334],[-93.76058048978075,17.68370628837266],[-93.76097028792611,17.68323766852626],[-93.76164586772313,17.682740513194062],[-93.76194129775735,17.68259343281636],[-93.76244237170721,17.68231719625436],[-93.76265164094428,17.682212959077788],[-93.76368521365339,17.682103290291536],[-93.76500194236905,17.680925548283824],[-93.76531272305459,17.680186303950165],[-93.76495461812829,17.679095507146883],[-93.76398820451857,17.676979346012388],[-93.76342548640656,17.67542671880085],[-93.76329783792823,17.67507793029756],[-93.76504125764018,17.67457324934537],[-93.76574500040681,17.675086543980967],[-93.76540989148566,17.6758542971981],[-93.76535814955741,17.676649597154665],[-93.76633516574668,17.678883439042806],[-93.76694090296195,17.679603439205266],[-93.76745831939229,17.680583027423438],[-93.76760193522483,17.681106270552277],[-93.76803276796647,17.683267038307747],[-93.76815420244122,17.683666543467723],[-93.76820832042989,17.684134108854494],[-93.76790285526687,17.684903190444004],[-93.76763600342241,17.68553715149403],[-93.76883027135887,17.68810872537216],[-93.77035812513134,17.68678411188216],[-93.77091236577087,17.686814629634057],[-93.77154008655839,17.68691745595214],[-93.77191908868338,17.68702319832755],[-93.77293286204889,17.687653547544983],[-93.77290803686031,17.68857984471748],[-93.77284708040071,17.689199615592997],[-93.77274585650486,17.689698662321916],[-93.77278449065523,17.69054005120472],[-93.77276487559561,17.690867450295343],[-93.77264020953828,17.691608401729923],[-93.77242714805703,17.69220735018024],[-93.7724037811974,17.69259735055641],[-93.7725698846516,17.692708985607283],[-93.77311892848735,17.69272129683594],[-93.77411318632238,17.69231148067098],[-93.77493009455611,17.69170006205087],[-93.77531818351156,17.690842644871452],[-93.77572977348007,17.690371047642486],[-93.77689978257933,17.69069354611503],[-93.7773353006454,17.691177230924893],[-93.77765707766662,17.692307530385165],[-93.7780786769992,17.69249717246589],[-93.77855985830433,17.69200409375111],[-93.77862775749674,17.69171925713391],[-93.77797981186279,17.69043274250572],[-93.77859672928133,17.689144809564993],[-93.7789694122622,17.688904528304874],[-93.78143345012074,17.688885763895826],[-93.7817776264668,17.69189162265559],[-93.78094300093812,17.69284193252264],[-93.7815760819285,17.693309757553777],[-93.78201258463264,17.69322974523402],[-93.78379555659319,17.69138018306586],[-93.78407929042919,17.691127670730737],[-93.78528836163855,17.691046273108782],[-93.78577890639173,17.692117772206927],[-93.7864246397586,17.693443443540332],[-93.78665025863887,17.69381589732143],[-93.78754822620903,17.694381470748453],[-93.78811032234216,17.694297671415086],[-93.78882112949469,17.694045602045435],[-93.7898044654674,17.69413696621075],[-93.79126901433091,17.694636358971138],[-93.79141571342547,17.69437238166978],[-93.79135976873215,17.693724941305334],[-93.7935996708984,17.692549740502898],[-93.79496507420703,17.69246893809884],[-93.79609797806052,17.692573794433144],[-93.79724630751053,17.692450135596005],[-93.7974485664239,17.691109800908123],[-93.79664426922528,17.690779205580498],[-93.79647855498524,17.689214812618673],[-93.79768952286508,17.688594903883313],[-93.79818784488458,17.688122738055256],[-93.79864448812737,17.687564101571525],[-93.79889115143925,17.68740331814638],[-93.79968456554656,17.687460047630225],[-93.80012506573263,17.68751799543662],[-93.80205716451371,17.688071225961266],[-93.80284264071247,17.688696665960833],[-93.80353060593956,17.68923820396799],[-93.80454822308991,17.68937640765057],[-93.80477347827491,17.689250645876996],[-93.80515466374737,17.689355506460856],[-93.80539807002322,17.689731736892725],[-93.80542973880597,17.690113402574184],[-93.80573072481724,17.691074055044112],[-93.80612684417184,17.692960300796585],[-93.80661979406096,17.693712775072356],[-93.8069771244248,17.69457608022435],[-93.8071050810878,17.695394695523248],[-93.807184522581,17.696521164973944],[-93.80724051040426,17.697259822585693],[-93.80720616821088,17.697835428672022],[-93.80705919527293,17.69827222057529],[-93.80651064949342,17.69922414330756],[-93.80611809088623,17.70019325040613],[-93.8063237187971,17.70094526771038],[-93.80598510894146,17.701901301899966],[-93.80531290701794,17.702633979677273],[-93.80697064394377,17.70450954992981],[-93.8069831734183,17.705404578715672],[-93.80698908167557,17.70591903438111],[-93.8071406134062,17.706106503454578],[-93.80752482885214,17.70619882418771],[-93.81204041241273,17.702860783132223],[-93.81260942615438,17.70251793300048],[-93.8129865895105,17.703607585478437],[-93.81238452484286,17.704520150978567],[-93.8116492833002,17.705055900021364],[-93.81111580096274,17.705331934033723],[-93.81123074001141,17.706814674047166],[-93.81172495720875,17.706956791479456],[-93.8128982828755,17.706547358135538],[-93.81307495923465,17.705972253162656],[-93.8134881262452,17.705230756713718],[-93.8136082667852,17.704861508732336],[-93.81397751334606,17.70415333493611],[-93.81438743248196,17.703628924859856],[-93.81490730671698,17.703505330488156],[-93.81572559618303,17.703537140873266],[-93.81610602483244,17.70323569215816],[-93.816224148059,17.702726187607084],[-93.81685513422678,17.701760924954897],[-93.81761105644802,17.70124141727854],[-93.8184333947301,17.70076939768944],[-93.82047371977325,17.699977563148764],[-93.82091060015739,17.700889017598968],[-93.82163345022815,17.701042758867914],[-93.82165030276917,17.70027035883811],[-93.8223406809883,17.699576503022115],[-93.82267255911108,17.70006788411831],[-93.82308183842429,17.70091950827316],[-93.82327124783899,17.70148341904138],[-93.82328530380039,17.702263460722747],[-93.82285681664217,17.703486367185235],[-93.8228867865792,17.704100052401316],[-93.82329661063494,17.704623062559676],[-93.82432149340463,17.70513116389884],[-93.82538659386569,17.70534366065715],[-93.82599556761892,17.705959409156947],[-93.82546223591942,17.70669813477366],[-93.82490828977177,17.707351079751902],[-93.82424125383852,17.7079478300235],[-93.82374371518824,17.708524736070558],[-93.82347607544204,17.709154322717723],[-93.82351079691131,17.709428605867345],[-93.8241603865107,17.709734268554655],[-93.82488784654447,17.709613423302812],[-93.82569806106102,17.709886221297324],[-93.826074935171,17.71025801664524],[-93.82683334035994,17.710921767761874],[-93.82755438967968,17.711044126066554],[-93.82832738075786,17.712386453644683],[-93.82867424386228,17.713300256344326],[-93.82842911183286,17.713727939001615],[-93.82781710137618,17.713948825586215],[-93.82722506094046,17.71425337393663],[-93.82665778128967,17.71499539561114],[-93.82705525938428,17.717197643870804],[-93.82696018096385,17.717702140431413],[-93.82649333496119,17.718188461790817],[-93.82682650479762,17.719204744201193],[-93.82769443963673,17.718924349154975],[-93.82820615074212,17.71869618870943],[-93.82882693446993,17.717488194014948],[-93.82864305281373,17.71647096371231],[-93.82869673072162,17.715569001141546],[-93.82887295438883,17.715072182813515],[-93.82981050906716,17.714067002260492],[-93.831216225952,17.71399588032142],[-93.83166212018273,17.714401506006993],[-93.83311565558068,17.715893488853226],[-93.83415153232386,17.716623401355264],[-93.83454438054429,17.716607947981572],[-93.83490716699964,17.716549743769633],[-93.8357025538213,17.71608546445259],[-93.8370058539104,17.713839803264705],[-93.83738056869208,17.713611078149597],[-93.83952820504828,17.715044558730767],[-93.8398289675464,17.714986224946585],[-93.83999078845756,17.714781770205605],[-93.83985796310225,17.714332401622926],[-93.83957396476006,17.713826334254634],[-93.8393863110054,17.713674345862444],[-93.83890314093583,17.713144468532164],[-93.83883586099483,17.711490055720787],[-93.83954274150477,17.71160457499326],[-93.84015637802275,17.711768442302514],[-93.84066258885002,17.71190197051925],[-93.84123561829784,17.711793089456876],[-93.84337490597972,17.711420205999218],[-93.84381644150608,17.711727482179185],[-93.8441839493724,17.71233467599552],[-93.84442830883467,17.713079703916662],[-93.84515923673894,17.7148949769321],[-93.84544230522101,17.715970582335046],[-93.84563311947721,17.716855076895854],[-93.84579914058554,17.717098175556885],[-93.84657977202716,17.71552441332699],[-93.84641443969838,17.71493050796903],[-93.8464998606591,17.714588304757854],[-93.84699616133224,17.71409325974912],[-93.84848985608681,17.715738578446064],[-93.84915907773967,17.716239909276453],[-93.85040268141643,17.71665621779084],[-93.85053378904479,17.717199206258385],[-93.85014793975529,17.717541869643696],[-93.8492951228418,17.71765622807203],[-93.8484356361896,17.717770205652982],[-93.8480308560126,17.718371823800624],[-93.84797607717042,17.71874407110755],[-93.8480338209281,17.71965794070678],[-93.84820569720557,17.7203265944255],[-93.84834004387358,17.720550481747694],[-93.84858130931582,17.72070889931757],[-93.84917852161459,17.720886981164085],[-93.84951322601705,17.72084268264848],[-93.84986164221488,17.720428262627536],[-93.85157403193688,17.719740796277335],[-93.85208046426868,17.719876115165732],[-93.85330313269696,17.720205855781842],[-93.85387659103992,17.72018564886912],[-93.85480334693398,17.719827878872877],[-93.85600050956276,17.71955645152366],[-93.85645592288722,17.719353389261016],[-93.85712322932488,17.718740238543603],[-93.85794558540351,17.717872145994477],[-93.8592859224882,17.716852725984552],[-93.85976105025327,17.716927741661948],[-93.8604084520241,17.717370855744093],[-93.8604049392581,17.717831472161834],[-93.86023480257984,17.718182234114977],[-93.85900780892837,17.720128990048863],[-93.8586785906869,17.72089053611205],[-93.85984347072315,17.72091822398471],[-93.8606987783748,17.720862031287425],[-93.86164292219206,17.72094388560828],[-93.86230239812573,17.72133902709436],[-93.86262700238007,17.7215668446878],[-93.86340002500481,17.7217332527822],[-93.8639058971483,17.721838980184316],[-93.86447959704714,17.722030866451917],[-93.86473436563784,17.72217571569439],[-93.86525389656276,17.722019203242326],[-93.86507382613291,17.721063687382127],[-93.86564301023964,17.72032182214548],[-93.86726489781478,17.718829252390037],[-93.86758631775672,17.718721074781286],[-93.86791721595944,17.718654458397793],[-93.86871056195616,17.718423981165813],[-93.86899485065123,17.71823686264372],[-93.86915606383297,17.718118171428102],[-93.86914726640583,17.717815517174643],[-93.86875771436479,17.71748692741977],[-93.86832347843864,17.717417965156642],[-93.86795194582703,17.71747435052697],[-93.86720794721924,17.71769526584984],[-93.86669533713751,17.718004943042843],[-93.86654843695038,17.718056885758585],[-93.86629554869006,17.718043126007217],[-93.86610333395936,17.718063786131324],[-93.86584399801768,17.71792626373997],[-93.86551107683681,17.717444818414606],[-93.86461927831942,17.71671568224002],[-93.86474089778136,17.71650539758815],[-93.86721758505075,17.71614627343706],[-93.86733229036338,17.715878448470278],[-93.86681457283134,17.715009715940596],[-93.86638955746872,17.71463562011428],[-93.86657692584049,17.713981627663713],[-93.86728310726403,17.714036948353794],[-93.86795829382953,17.71429348971543],[-93.86830551462305,17.71423744122677],[-93.86878304777917,17.713963718087484],[-93.86898882673324,17.713844086889935],[-93.86935124796992,17.713497060795135],[-93.86951519123642,17.71344090610603],[-93.86999707620146,17.713536039222163],[-93.870339392787,17.713992278584556],[-93.87066227527453,17.71467758792363],[-93.87078109897499,17.714928386193037],[-93.87120665320293,17.715391734778336],[-93.87146406357141,17.715599292731213],[-93.87182545123335,17.715858965560017],[-93.87252490855525,17.71606884613641],[-93.87365045448763,17.716732046801667],[-93.87441640134813,17.717888485673598],[-93.87455364040204,17.71856906146951],[-93.87466254390205,17.719138288357158],[-93.87520914966944,17.720294634304196],[-93.87573837605919,17.722063932852222],[-93.87575251980223,17.722300058833696],[-93.87584562115092,17.722759588098825],[-93.87587368285074,17.723194558221337],[-93.87580461405969,17.72472581833364],[-93.87580642054183,17.72519872123769],[-93.87593222259267,17.726603120449],[-93.87616231480587,17.726663220700743],[-93.8767759988126,17.72605642577622],[-93.8766931251605,17.72521908305447],[-93.87827392377613,17.72453725857082],[-93.87924860155675,17.72480392718603],[-93.88002683625848,17.725211111366605],[-93.88061466036157,17.72595581469551],[-93.88073957331602,17.72643207723263],[-93.8807548394795,17.72667809144889],[-93.88043304765705,17.728704445928145],[-93.88011664324188,17.729069712288776],[-93.87834194875006,17.729847075856412],[-93.87782817350359,17.73051557339852],[-93.87740107995393,17.730904595504967],[-93.87692549696635,17.731160971184238],[-93.87663079760694,17.731603555152503],[-93.87601278120701,17.73218197610271],[-93.87592943934862,17.732754061551418],[-93.87609817676548,17.73317697705795],[-93.87728461403327,17.733396576646612],[-93.8781976699168,17.73331123250898],[-93.87884051774023,17.733256200527137],[-93.87976100962783,17.73340257993374],[-93.88020061375397,17.733589123293314],[-93.8808830414876,17.733766273155197],[-93.8825358152173,17.73427371095204],[-93.88289800603258,17.7345111910401],[-93.88316151559115,17.734695928988742],[-93.88358584166167,17.735179501630455],[-93.88361160845233,17.73565885927502],[-93.8832806985589,17.73614971272127],[-93.88208205378515,17.736342271557533],[-93.88091745091037,17.73602154983439],[-93.877944017564,17.737324806312586],[-93.87765237412145,17.736894651420982],[-93.87687297248516,17.735430999820153],[-93.8763042045245,17.735362018340254],[-93.87580969193641,17.73553223741908],[-93.87536353900055,17.735580785576758],[-93.87491218928676,17.735310056959634],[-93.87464934089587,17.735142140723156],[-93.87353294304387,17.734897460744833],[-93.87349275037218,17.73539658653391],[-93.87346228462786,17.735551477889828],[-93.87342316887464,17.735942024305132],[-93.87340490449407,17.736260099770107],[-93.87327767924717,17.736874440781435],[-93.87351125062861,17.737282708218856],[-93.87383648114746,17.737453039186164],[-93.87469848233701,17.73814911588306],[-93.87483743058868,17.7385420749265],[-93.87480860111492,17.739034221067925],[-93.87469709192862,17.739492597674825],[-93.87444008046282,17.73978715435095],[-93.87432615222622,17.739929097469883],[-93.87394259000422,17.740264893007748],[-93.87356497223243,17.740489649014478],[-93.87300419748391,17.74070026583587],[-93.87263521115841,17.740884820001213],[-93.87226189281427,17.740732204592916],[-93.871765804218,17.740175198019813],[-93.87153322326185,17.73995763941025],[-93.8709176157376,17.73938578128974],[-93.87025587716704,17.738935255785748],[-93.86980587485021,17.738975599319417],[-93.86963518637037,17.739762090918532],[-93.86989798534671,17.74033556160157],[-93.87001516465438,17.740786584528337],[-93.87027727350988,17.741865402774465],[-93.87034211260107,17.742072944510596],[-93.87084159119956,17.744294777390394],[-93.87148805529023,17.744625483601283],[-93.87273935563314,17.745252692105225],[-93.87386893258423,17.746035971526453],[-93.87441730833393,17.74661467373687],[-93.87455134205874,17.7468278468408],[-93.87466809119888,17.747206310843126],[-93.87457216157145,17.748033913571874],[-93.87426156611588,17.74825079697075],[-93.87279810409132,17.748620652874877],[-93.87199149600451,17.748950548236564],[-93.87139287252626,17.749258839241236],[-93.87095975809422,17.7494685922793],[-93.87064132433449,17.749628932430028],[-93.87010700762255,17.750034736365535],[-93.86999274175395,17.750169719945802],[-93.8699677954628,17.750292083345926],[-93.87003316743011,17.750609651356],[-93.87014914297669,17.750829194428775],[-93.87062493039548,17.751523924564594],[-93.87089710121796,17.75194129810035],[-93.87113945305953,17.752328398882696],[-93.87133280821735,17.752706525373185],[-93.87148720964836,17.75295034366144],[-93.87262921036086,17.75410667256375],[-93.87446634635558,17.755374753589706],[-93.8748875884026,17.75534842658459],[-93.87519332280795,17.755200360867036],[-93.87535877978655,17.755089593609114],[-93.8770117282013,17.75375229973986],[-93.8773429935062,17.753604113917845],[-93.87754802918539,17.753737727933697],[-93.87771494215735,17.75394475902391],[-93.87764011693935,17.754311852310366],[-93.87729822236969,17.754900192470075],[-93.87678190342211,17.756381756677],[-93.87704878012454,17.75656358064589],[-93.87739123342055,17.75654153756227],[-93.87762587100536,17.756366269143427],[-93.87788144084834,17.75600036137058],[-93.87996212437605,17.753252585145674],[-93.88075345435885,17.7516304686809],[-93.88123703620596,17.751298215997394],[-93.88196369282082,17.75173255983225],[-93.88252824553945,17.752292383613906],[-93.88272088201717,17.75251761272426],[-93.8844244563399,17.753610214733158],[-93.8848873537429,17.754268293214295],[-93.88492697763365,17.754537068515674],[-93.8830199123887,17.756220515416828],[-93.88309825815236,17.756574695601955],[-93.88448032338414,17.757191957890313],[-93.88534876668365,17.75722471770655],[-93.88579278827041,17.756635903113875],[-93.88610773656694,17.755766488591803],[-93.88639074849931,17.755161360190755],[-93.88689902270806,17.754657828942243],[-93.88733188617556,17.754399143994988],[-93.88756117464038,17.75428808058888],[-93.88773909043402,17.754116121153743],[-93.88790255328422,17.753601924432417],[-93.88687149920355,17.75229504389779],[-93.88657110377375,17.751334050499906],[-93.8867857963175,17.75085026259734],[-93.887065131621,17.75053114517368],[-93.88727399287819,17.750335242915867],[-93.88789351584347,17.749906102099658],[-93.88846282006779,17.74935929098484],[-93.88895934571377,17.748732871339087],[-93.8912801641348,17.74808079150364],[-93.89165746195079,17.748080061237147],[-93.89193638892647,17.74813737442031],[-93.89266816172187,17.74845573884346],[-93.89304801920309,17.74864535524199],[-93.89382559783019,17.749470662293106],[-93.89386312345164,17.749883155244902],[-93.89388615283252,17.750237335907343],[-93.89386324427062,17.751438447073042],[-93.8935409471261,17.751495068271595],[-93.89332206416333,17.751496064580635],[-93.89298726563203,17.75135419298755],[-93.89131814679644,17.750785330062797],[-93.89068557870485,17.751126904029604],[-93.89057938260811,17.751420970788445],[-93.89047580117597,17.75188617160535],[-93.89083472885716,17.752904107988854],[-93.89185168587841,17.75353925436599],[-93.8923671308483,17.753698689839837],[-93.89489395444411,17.753087049573935],[-93.89577005179194,17.75319335497113],[-93.89756961863532,17.753585305934223],[-93.89876741093735,17.753513641666984],[-93.90024466133997,17.75531768030777],[-93.90058062852177,17.755691171721026],[-93.90075360013304,17.75572347049058],[-93.90106887221935,17.755669328754493],[-93.90149022590612,17.75468569065856],[-93.90138859017128,17.753169464933478],[-93.90275860663235,17.751142520998656],[-93.90353123458897,17.750486276658194],[-93.90433336494908,17.750122501449994],[-93.90500098084584,17.75025540440106],[-93.90536461408965,17.750539676695098],[-93.90554048444773,17.750768883121566],[-93.90558987556074,17.750875549713726],[-93.90573908917384,17.75117223503611],[-93.9059072701773,17.751451401287625],[-93.90608220539877,17.751685452185257],[-93.90641422879412,17.75199055530362],[-93.90655876688675,17.75213985644399],[-93.90748708731775,17.752668736889007],[-93.9078708982837,17.752926279535245],[-93.90782075862904,17.754095352966715],[-93.90810046764938,17.754733821657112],[-93.90841911662704,17.754831992443826],[-93.90882127342684,17.75485536632283],[-93.90911111323157,17.754822471222838],[-93.90955035616702,17.754769921108732],[-93.91046446250192,17.754579109436804],[-93.91097475460163,17.754229602924738],[-93.9118134795703,17.753787204286823],[-93.91203222303335,17.753776668721343],[-93.91255416860662,17.753853562576694],[-93.91280141227475,17.753853517284767],[-93.91292708900846,17.753845930817306],[-93.91317837344644,17.75377450489384],[-93.91337493848607,17.753444861437288],[-93.91348670199108,17.75290652034255],[-93.91356355817686,17.751188522550365],[-93.91428735269398,17.74982784785459],[-93.91488059365594,17.749705505504323],[-93.91838397965785,17.749879810995765],[-93.91876655846988,17.749272411160632],[-93.91958416061294,17.749644101170077],[-93.92011562036646,17.749704227163704],[-93.92139601311703,17.748117320790243],[-93.92162829741204,17.747392579175084],[-93.92184121284629,17.746578466457947],[-93.92231463741285,17.74632833546218],[-93.92293293948853,17.74698651982061],[-93.92306428711555,17.747349936198134],[-93.92333940835618,17.74796577244024],[-93.92393930963885,17.748380288137525],[-93.92436440383835,17.748341096457068],[-93.92471438149482,17.74817704415875],[-93.92587690272086,17.748004548738493],[-93.92638404173607,17.74793649614486],[-93.92715434585818,17.748265185664764],[-93.9271015774487,17.74869771496634],[-93.92673493475917,17.749478254193207],[-93.92579083259488,17.75017501390215],[-93.9248609946406,17.750637506677606],[-93.92479069545254,17.750721325688914],[-93.924717368742,17.751166827444592],[-93.92490636172465,17.751373389833077],[-93.92525791438754,17.75153047204452],[-93.92671419814263,17.751882940108146],[-93.92781723361577,17.752470786256083],[-93.92805618580593,17.752577074526187],[-93.92912550169166,17.753256798506015],[-93.92932664229653,17.753280458548318],[-93.93006949853583,17.7533628275998],[-93.93132368039454,17.753311679350247],[-93.93161539072094,17.753307701928122],[-93.9318362551362,17.753279249495336],[-93.93227634026357,17.75311053748493],[-93.93260112804035,17.752659754321996],[-93.93284460404004,17.752273111704483],[-93.93360481853352,17.75185153882211],[-93.93487045487666,17.752925178899034],[-93.93579837552693,17.75299733707095],[-93.93721724300104,17.752582711062757],[-93.93771304856392,17.752546625376112],[-93.93859527336673,17.752519947340318],[-93.93930611125529,17.752824636073967],[-93.93991016978043,17.753023149650403],[-93.94026257705048,17.753370566869307],[-93.94048940279436,17.75383942751256],[-93.94150598224087,17.755477726600986],[-93.93901336869408,17.755548447966078],[-93.93814687952568,17.75563341498173],[-93.93772200389856,17.755782284362738],[-93.9364840533753,17.75709872004944],[-93.93525945760598,17.759096853216988],[-93.93569622130246,17.75948415763179],[-93.93609015171842,17.75972396588793],[-93.93656724722968,17.759775396348175],[-93.93679156200398,17.75976089962097],[-93.93804894087373,17.759405529531364],[-93.93899118462713,17.759078254360645],[-93.93953848002928,17.75905491451647],[-93.9401974084833,17.759243325146315],[-93.94083388306399,17.75960971542213],[-93.94114363677977,17.75984972243674],[-93.94157946199107,17.76054715300461],[-93.94047517279148,17.761338835349875],[-93.93988661963158,17.762258313843915],[-93.93991540667093,17.762606762568907],[-93.94002631534755,17.763187211587194],[-93.94036599488157,17.763676186126474],[-93.9406627787032,17.764675632594958],[-93.94084802245698,17.765106010108866],[-93.94203459519247,17.765882000340582],[-93.94474548608656,17.767044187490285],[-93.94583482965027,17.767727896475037],[-93.94621350271444,17.76795538368293],[-93.94710569931743,17.768364218335478],[-93.94775319473518,17.768399820974196],[-93.94886170674908,17.768910883526985],[-93.94949857603086,17.76948877936678],[-93.94966359636948,17.770094778082182],[-93.94955884099568,17.77068917374214],[-93.94946341703178,17.770916728095813],[-93.94924722240245,17.773178291840452],[-93.9503365898388,17.774239599734983],[-93.95102819213395,17.77499478261211],[-93.95176971905084,17.77588262909751],[-93.9519367667105,17.776191525292006],[-93.95256085944294,17.777369621068658],[-93.953084418988,17.778921854452108],[-93.9535653905125,17.77966997852286],[-93.95413422104627,17.780139261229976],[-93.95605589370149,17.782779474198776],[-93.95591223757253,17.783043120295872],[-93.95504393040204,17.783984895927063],[-93.95434516292721,17.784647095915602],[-93.95402921150145,17.784919880674636],[-93.95318573488936,17.786025175921452],[-93.95306487484294,17.786223862776865],[-93.95300527579707,17.78642410250086],[-93.95295955022425,17.78704223025801],[-93.95306927753563,17.787603621464257],[-93.95319259194287,17.78784891559593],[-93.95329264535695,17.78808605049909],[-93.95333071929554,17.788813217697225],[-93.9530562981517,17.789634892689435],[-93.95295666275564,17.79025768957888],[-93.95296267191202,17.79088413237838],[-93.95305955928808,17.791751535348794],[-93.95310894766283,17.792123924286784],[-93.95355625150142,17.79332641526662],[-93.95392168339424,17.793989454674545],[-93.95422618884658,17.7944648008924],[-93.95488062741265,17.79720436143117],[-93.95500199672267,17.797640621980293],[-93.95506202101103,17.797809584383288],[-93.9551530781834,17.798067583880993],[-93.95539612708228,17.79899707710024],[-93.95537860481608,17.79943401453744],[-93.9551325414327,17.799805587627077],[-93.95470587670826,17.799798170553174],[-93.95376039390919,17.79924247286351],[-93.95284442796878,17.798639141051467],[-93.95243700720738,17.798517663894927],[-93.95189164432105,17.79857729681453],[-93.95163439891252,17.7987115024643],[-93.95082536012137,17.799566268641627],[-93.95126997797962,17.801093084284616],[-93.95189531873064,17.80114702581352],[-93.95263931371295,17.801124413083357],[-93.95339363302611,17.80117772167148],[-93.95596788822098,17.802038868744603],[-93.95636590003835,17.80225534866304],[-93.95738361820526,17.80246031916886],[-93.95807347336768,17.802342980541482],[-93.95865822437412,17.802226157341863],[-93.95949004534401,17.80192768313242],[-93.95976702968721,17.801774377495633],[-93.96006345339669,17.801545003557464],[-93.96014221527605,17.80143065685803],[-93.96049535284305,17.800673993543853],[-93.96049554082992,17.798850623870464],[-93.9605333988332,17.798508556618742],[-93.96101775818983,17.798173794548802],[-93.96184237581582,17.798388169428392],[-93.96262873305233,17.798868638614636],[-93.96316787743098,17.79950226570287],[-93.9631985039245,17.799663558594943],[-93.96318062416805,17.800030136727628],[-93.96311188785188,17.800163428999213],[-93.96286553823666,17.800478032969863],[-93.96226272898667,17.80092734060929],[-93.95999267658186,17.802716252585185],[-93.95959028874512,17.80305269146635],[-93.95913144012923,17.803763482330965],[-93.95879878130359,17.804394011285126],[-93.95725632980054,17.80658069139554],[-93.95698825396818,17.8076602367056],[-93.95671430973306,17.80955312356491],[-93.95680097045954,17.81064025070384],[-93.95711576795304,17.811236420683883],[-93.95740506937096,17.811533998407583],[-93.95807789397145,17.811997787073153],[-93.95902204346464,17.812287560394452],[-93.96020395936694,17.812509685020302],[-93.96172205761059,17.812511725056368],[-93.96288949861798,17.812633181205342],[-93.96447558543838,17.81366727048885],[-93.96475118811168,17.814096474008693],[-93.96619716851075,17.8154589212549],[-93.96704309426605,17.81592957321925],[-93.96752165089976,17.816354558266937],[-93.96803335316031,17.81740615424718],[-93.96799617191306,17.81787167693426],[-93.9673588456709,17.81928983073044],[-93.96686370824659,17.81947271493209],[-93.96638743888417,17.819475069461646],[-93.96504152224617,17.819019184238527],[-93.96297400627373,17.818397304493544],[-93.96266448632736,17.818421464219853],[-93.9622304814543,17.81842116886355],[-93.96171266832727,17.81860054236097],[-93.96113175410653,17.818713212598368],[-93.96073152305308,17.81887587588386],[-93.95976766135573,17.819111848485477],[-93.95858261215534,17.820906032988887],[-93.95884044896474,17.82119761764767],[-93.9597300443603,17.821781270163],[-93.9602077467153,17.82203930503539],[-93.9606228142552,17.82219555205677],[-93.96118696367466,17.8223534345251],[-93.96262323864073,17.823453281496086],[-93.96311776243579,17.824042444410622],[-93.96343512471475,17.825597887073513],[-93.96344784699602,17.82612014337019],[-93.96351383537149,17.82769421802533],[-93.96385650001048,17.82818480447611],[-93.96434413908696,17.828826075437917],[-93.96467197330736,17.82929229967101],[-93.96499469840671,17.829967562491618],[-93.96466628146038,17.830435670530505],[-93.96450165371976,17.83054186629505],[-93.96422657812201,17.830585377223088],[-93.96251972980161,17.830604333658414],[-93.95934853949882,17.830613006205397],[-93.9584445465714,17.830243851309547],[-93.95825591148099,17.82996857859223],[-93.95839820695505,17.829286831842523],[-93.95883812139772,17.82804541147442],[-93.95915548259728,17.82615401924636],[-93.95798350729893,17.825143214329216],[-93.95774456006245,17.825248790070816],[-93.95725718350599,17.825548824852717],[-93.95688721623878,17.826819174026127],[-93.95663429540349,17.828777381772454],[-93.95619004271026,17.83101480524158],[-93.95597542734407,17.83309096442548],[-93.95604067571168,17.833933735135986],[-93.95634921293117,17.834195357180704],[-93.958914237621,17.835163010977283],[-93.95983877070165,17.837271041071915],[-93.9602466190986,17.83732550893575],[-93.96087168590168,17.836653931952583],[-93.96218344495117,17.834699194702296],[-93.96265052315954,17.834417843321887],[-93.9636131844037,17.834471272343933],[-93.96844640273315,17.837783870048384],[-93.96864823343901,17.838714886531648],[-93.96858739546639,17.83891507464358],[-93.96822618962995,17.839392856356824],[-93.96755555077038,17.83987390546332],[-93.96582244003616,17.84104251357246],[-93.96562820138257,17.84126195888416],[-93.96564706434788,17.84164959223608],[-93.9659303296495,17.842366269166632],[-93.96633815369535,17.84315272513578],[-93.96746667103491,17.844953147924628],[-93.96778616516639,17.84525233778362],[-93.96795502876341,17.845286722019182],[-93.96826443929223,17.84528109063922],[-93.96886772569849,17.84469777309505],[-93.97005452390619,17.843516790534977],[-93.97060744246966,17.84296763117021],[-93.97165452538434,17.842393688098696],[-93.97255289899329,17.842288024991774],[-93.97389038486091,17.842865001256598],[-93.97406160885572,17.84311032775014],[-93.97425987188342,17.84362495201276],[-93.97419721614307,17.844136981442148],[-93.97405808592623,17.844652031084365],[-93.9738555838594,17.845504348860686],[-93.97383530972473,17.845850940488617],[-93.97385175234695,17.84669070184276],[-93.97398132134043,17.847460458572982],[-93.97423003232404,17.848062602661344],[-93.975581981946,17.84998132895032],[-93.9763996638718,17.8506718854602],[-93.97709387588884,17.851105473268547],[-93.97852302091934,17.85165116015162],[-93.97916181800355,17.851545989054728],[-93.97990674243948,17.851363811455485],[-93.98086506157398,17.851231533939426],[-93.98163745244437,17.851202154883083],[-93.98259799427268,17.851365872879228],[-93.98343483840677,17.851646345584356],[-93.98432745224557,17.851663748973863],[-93.98481796562908,17.851387538939093],[-93.98514786776377,17.851035491776997],[-93.98539713047069,17.850585304368053],[-93.98547526782096,17.85022804324518],[-93.98629305334168,17.847726607179425],[-93.9850864756832,17.846791041955896],[-93.98334880420617,17.847073535671086],[-93.98228512090492,17.84715553389259],[-93.9812658887933,17.84699641480705],[-93.98139241095913,17.845196501283795],[-93.98158265229142,17.844499128588893],[-93.98266014754029,17.84029770833007],[-93.98280732863628,17.84001228178795],[-93.98317261692375,17.839857152559375],[-93.98430542979088,17.840729368990367],[-93.98464125720164,17.841461289871233],[-93.98475903687552,17.84207386730037],[-93.98596040250851,17.844392923520502],[-93.98678685571855,17.844870526904742],[-93.98823917745949,17.844720841010826],[-93.98837298151983,17.84408509544727],[-93.98838225317348,17.843690868069416],[-93.98824140660389,17.842014154921344],[-93.98777765817692,17.840910607711123],[-93.98719044937093,17.839633774579795],[-93.98640977425242,17.837070145336668],[-93.98626850962859,17.8363481947149],[-93.98637750818057,17.835362194564027],[-93.9865013157168,17.834989287510894],[-93.98949683572323,17.834601861422698],[-93.99018656157119,17.835189639439022],[-93.99046507628555,17.835899940555805],[-93.9905937049582,17.836402963872104],[-93.9917673430167,17.840878564161073],[-93.99288740151837,17.842723329568173],[-93.99361510001404,17.84396231019082],[-93.99414918229945,17.845361117940456],[-93.99443753027447,17.845775726368743],[-93.99461467612622,17.846020115213378],[-93.99548409471367,17.845634413891617],[-93.99578830790608,17.8451059712674],[-93.99635970311118,17.843069210687304],[-93.99652643842359,17.84207332585669],[-93.99676623612572,17.841141518453014],[-93.9971214077541,17.84064804708686],[-93.99742306393813,17.840051336445242],[-93.99757037958386,17.83979442110075],[-93.9975903427827,17.839268747067024],[-93.9968330859524,17.838889382827972],[-93.99622760520543,17.839056712663478],[-93.99577201599402,17.839431314517412],[-93.99505200046008,17.839577325697576],[-93.9940797265354,17.839626071885846],[-93.99491602347217,17.83678843612853],[-93.99616039097322,17.836662934432752],[-93.99748425755462,17.83681706429769],[-93.99792663090511,17.83710429839681],[-93.99877728646453,17.83835008892089],[-93.99910104870793,17.838738793128528],[-93.99965968504,17.83927799621904],[-94.0001052865037,17.839653245570503],[-94.00037768511652,17.839992630884296],[-94.0014983033924,17.841112860608916],[-94.00296837845275,17.842255146757452],[-94.00323374475494,17.842345523123754],[-94.00374794901177,17.842334094636612],[-94.00426936998991,17.841971100111323],[-94.0048236841946,17.840922465356982],[-94.00517852366846,17.840331835971085],[-94.00678111574769,17.840064152904574],[-94.00869478648053,17.840702147347088],[-94.01046523302773,17.841483505973258],[-94.0110647796115,17.84172573416879],[-94.01232130135105,17.842291663142703],[-94.01339260770118,17.842844917299885],[-94.01674142355972,17.844435792682248],[-94.01720979127697,17.844147134895138],[-94.01755997152674,17.843109474913717],[-94.01744217394571,17.842428617950418],[-94.01698094562062,17.84146333124204],[-94.0167050233132,17.84052433666892],[-94.01677291349563,17.839937917616794],[-94.0170271024869,17.839554970175925],[-94.01796667304694,17.839481927690258],[-94.01877969216804,17.839695763376994],[-94.02019357919949,17.840383485015764],[-94.0208788924262,17.840679751197456],[-94.02277561968589,17.84111960126478],[-94.02377224206924,17.84105986403023],[-94.0266652090898,17.841371786473303],[-94.02609989897007,17.84213800180555],[-94.02516576096775,17.84266180513356],[-94.02309127817455,17.843698814090487],[-94.02279679323618,17.844186481661325],[-94.02263861853822,17.844872986400276],[-94.02303867859183,17.84625724785542],[-94.02345374671012,17.84636067913283],[-94.02463913208351,17.846175323805994],[-94.02759305351248,17.84536512255505],[-94.02856329570432,17.845307017479456],[-94.0294475144425,17.845669535508534],[-94.02979555874947,17.846614275980187],[-94.02970773870959,17.84695504913526],[-94.0295916530207,17.847569685478504],[-94.02946491626199,17.847791530520055],[-94.02905229688884,17.848313451081083],[-94.02841422351065,17.84970311186271],[-94.02901925206305,17.852051303867995],[-94.02963446534318,17.853081745368286],[-94.03112405832655,17.8540649988567],[-94.03271575632004,17.854692175537764],[-94.03303873852576,17.8554633735028],[-94.03318052009985,17.856377047028843],[-94.03321507410038,17.857360263646967],[-94.03311694538229,17.857817423980237],[-94.03240830323676,17.86022667559712],[-94.03233031608352,17.86087875395799],[-94.03248183553745,17.861574817458006],[-94.03268201706237,17.862126422932874],[-94.03316918023819,17.86230539205792],[-94.0357619590352,17.862106589063785],[-94.03679722145068,17.862101091393868],[-94.03715261861288,17.862157365222686],[-94.03742899216479,17.86347642476784],[-94.03728322735049,17.864141966363206],[-94.03716059879173,17.864871876415236],[-94.03774431523783,17.868481678846763],[-94.03803224373428,17.86945376424262],[-94.03687110768641,17.87093888703373],[-94.03618854821337,17.8709533998462],[-94.03455678926872,17.870123842187922],[-94.03405557073893,17.870017641950312],[-94.03355579925181,17.870161807443537],[-94.03285752414979,17.87065196308407],[-94.03264453347907,17.871002378901153],[-94.03261853743714,17.871546144381455],[-94.03343731168428,17.87268245276499],[-94.03911720281843,17.872398845420264],[-94.04012619038411,17.872824297802595],[-94.04092284908029,17.87317484941559],[-94.04195847844397,17.873625487475238],[-94.04250123222084,17.873584575335258],[-94.04334651538898,17.87318724206159],[-94.04342435241978,17.872908053709125],[-94.04330223058668,17.872196047182683],[-94.04231445692142,17.87044847076328],[-94.04200617104459,17.869634232826854],[-94.04163964175137,17.86883114217153],[-94.042037194111,17.86783023276621],[-94.04378418457253,17.867417978274375],[-94.04447472909953,17.867700447348966],[-94.04606085059874,17.86893536922946],[-94.04663734496717,17.869956074587037],[-94.04742156434077,17.870580627049947],[-94.04851231438323,17.870811242215666],[-94.04936822983314,17.870853334051787],[-94.0516630670104,17.87079591112581],[-94.0531704016388,17.868161916439306],[-94.05374878144056,17.86764863887663],[-94.05723231386958,17.866686440449712],[-94.05889271854926,17.865963543512237],[-94.06006099650034,17.86534529512727],[-94.06151786355713,17.86398608735925],[-94.06260455549057,17.86308780829478],[-94.06319034320086,17.863059122910045],[-94.06420453934697,17.863410535502055],[-94.06484813742884,17.864146409514433],[-94.0645495835717,17.867691981464645],[-94.06511344889111,17.868453780825803],[-94.06688416159659,17.868367616836792],[-94.06768061173727,17.86792982883577],[-94.07065207197235,17.865975851597227],[-94.0723009381532,17.865558860265992],[-94.07360813482802,17.86590861457063],[-94.07423358969226,17.866792557868223],[-94.07479492510072,17.867803467984004],[-94.07778995096209,17.869263128418652],[-94.07956756161065,17.869545285645472],[-94.08343074827997,17.869868488505688],[-94.08386555601584,17.87294535214636],[-94.08158390785502,17.877108445240083],[-94.08326417269365,17.88222402542499],[-94.08205070447849,17.887867161807492],[-94.07952627377495,17.890300058079504],[-94.07984480788582,17.89208338019472],[-94.084349832383,17.8922879523941],[-94.08542061232424,17.89427980917759],[-94.08182211617407,17.899911020485717],[-94.08213360644532,17.901061399797186],[-94.0874455705337,17.90497591401447],[-94.08799526761845,17.90891296067292],[-94.08497336529535,17.915530583340228],[-94.08622615177211,17.92182764653427],[-94.08994646477305,17.926934300833864],[-94.09119793747976,17.934037090796323],[-94.09085836230184,17.937673019661304],[-94.09002630128185,17.9389756360286],[-94.08864137587949,17.940922079807194],[-94.0885577191035,17.941572302425868],[-94.08860562028758,17.942242750081846],[-94.08940417817763,17.943873142480527],[-94.09004634188597,17.94500137454355],[-94.09004005896645,17.947558507884708],[-94.08893129115881,17.94894368025882],[-94.08743320916864,17.951152851969823],[-94.08711445526501,17.95276854323646],[-94.08723063032801,17.953857803412575],[-94.08722188540258,17.956016712853284],[-94.08712302495024,17.95776728750866],[-94.08765799536815,17.959273398558764],[-94.08862395223287,17.959603342036473],[-94.08996182114231,17.959847354138333],[-94.09059828114675,17.96003241957777],[-94.09149878239043,17.96040463749381],[-94.09182970025671,17.960780052860684],[-94.09203174720068,17.961575387704897],[-94.09140515890368,17.963004173211516],[-94.09053668231866,17.964287598718556],[-94.09025701116587,17.965127560254587],[-94.09017241754185,17.965624606465894],[-94.09008940182991,17.966379624518765],[-94.09007621199271,17.96780496345417],[-94.0888884300806,17.97062023708105],[-94.08698456916642,17.970987224107773],[-94.08520053127887,17.969446182662182],[-94.08284767980086,17.968034055543114],[-94.08221132486369,17.96786992555991],[-94.08177278006764,17.96780949250865],[-94.0805078235378,17.968759726840062],[-94.08040044209201,17.969116641606774],[-94.08010134855346,17.970375894061647],[-94.08009249326852,17.971077620095343],[-94.08070067906357,17.97381996711681],[-94.08253796403682,17.976911771257335],[-94.08262789415943,17.9772885441854],[-94.08250047905005,17.977953504774405],[-94.08180307066772,17.97856522705507],[-94.07974840856627,17.979373141037],[-94.07748021241423,17.981104451941235],[-94.07586876295784,17.98274825674531],[-94.07515281929278,17.983925971776046],[-94.0746120220573,17.985081757995488],[-94.07422434223605,17.986194772996043],[-94.0739654622983,17.98686691747355],[-94.07353268699131,17.98777058395774],[-94.07218183437186,17.987945741569376],[-94.07129897367798,17.98688166932959],[-94.07156564579986,17.98386198665736],[-94.07169004267172,17.9826875503353],[-94.07155214969049,17.981619362512106],[-94.07119730423489,17.980908687470446],[-94.07033790743486,17.9800959977091],[-94.06851631773196,17.97959264809822],[-94.0677096419617,17.9802613399969],[-94.06731840555841,17.98078748897973],[-94.0656862037431,17.982640926283466],[-94.06470639360651,17.98367333763315],[-94.06228873844594,17.986096975736302],[-94.0614003009643,17.98812434572943],[-94.06151197944422,17.98848005039963],[-94.06179819591932,17.98870904202829],[-94.06419061083557,17.989387603810314],[-94.06548724533275,17.990030238771396],[-94.06659095934236,17.991386558258],[-94.06699227149323,17.992537138448938],[-94.06710748365867,17.993479697337648],[-94.06698569088252,17.995094270156585],[-94.06670662403451,17.996220176970553],[-94.06627791738367,17.997052205571777],[-94.06547978949965,17.99827146748845],[-94.0650193877155,17.99898514373706],[-94.06452917304989,18.000797981557696],[-94.0643667171617,18.00155876188319],[-94.0642532082,18.00353669005966],[-94.0644285730175,18.004913845273165],[-94.06470791725201,18.006210542372514],[-94.0651540226371,18.00744639978592],[-94.0661659750491,18.008978736254278],[-94.0677190561363,18.0101685475571],[-94.07127271670583,18.01052841356949],[-94.07231555569194,18.01024302562263],[-94.07314973056128,18.00999873456857],[-94.0746410269449,18.009389651896072],[-94.0749948061918,18.009188047376313],[-94.07636753569432,18.008282038695484],[-94.07728147539865,18.007478395095973],[-94.0802728342988,18.0049063303872],[-94.08089744058913,18.004603387002874],[-94.08189947475626,18.004557867927247],[-94.0828202918683,18.004892113039546],[-94.0835105670979,18.00851358383727],[-94.08332616113682,18.009093574802023],[-94.08215136391715,18.011635582079066],[-94.08154021892432,18.01415447386239],[-94.08101452697917,18.016992310643957],[-94.08074543785261,18.018030196888105],[-94.08025688258346,18.02010919069454],[-94.07995262442302,18.021588228930113],[-94.07985270108179,18.022327459319172],[-94.07986046666355,18.02360511833365],[-94.08020649158152,18.025559667144137],[-94.0809052385286,18.027132928954188],[-94.0810540937427,18.02757130677054],[-94.08160180384806,18.028346846634008],[-94.0817919473879,18.028705135673647],[-94.08236053702478,18.029478330348525],[-94.08341799607177,18.031648495961406],[-94.08354793104797,18.032406402120216],[-94.08359359608738,18.033044996247156],[-94.08355706820959,18.03390365333678],[-94.0832928825032,18.03510297378523],[-94.082923419662,18.036163137918265],[-94.0824275471569,18.03704432950815],[-94.0823032123111,18.037204736884803],[-94.08080912232737,18.038790250228715],[-94.08014443322077,18.039390653159614],[-94.0788822270768,18.041334209511206],[-94.07844836536918,18.04211522459707],[-94.07781050377008,18.043695938882593],[-94.0775434798934,18.04443609802985],[-94.07701184339669,18.046315677880386],[-94.07687711734508,18.046977618778953],[-94.07552648588324,18.051393171454947],[-94.07437189637739,18.05764012455535],[-94.07439936751723,18.058947865105324],[-94.07455668349394,18.059347989714524],[-94.07532493394251,18.060063770863735],[-94.07569771529347,18.0602859070965],[-94.07685367900586,18.06070920638473],[-94.0792765845897,18.062310978939877],[-94.08138627108889,18.06524735877997],[-94.08461744477347,18.069339760232538],[-94.0863224812407,18.070021492636215],[-94.08783168242144,18.070648260035057],[-94.08836032574868,18.07077607270361],[-94.08978950429042,18.071104327617547],[-94.09118027830084,18.071544894781766],[-94.09243571712005,18.072229110233195],[-94.09473444898697,18.07406581907935],[-94.09549495779464,18.075031006331074],[-94.09618637240607,18.076185495674338],[-94.09696016192652,18.078012138847782],[-94.09709540368272,18.080907399389844],[-94.09680758613746,18.081787185305416],[-94.09634404101195,18.082705336323897],[-94.09613141043002,18.08309890672598],[-94.09492854320206,18.08419948110304],[-94.09106721472216,18.086107546133064],[-94.08460897965688,18.089667226354436],[-94.08305160514414,18.090779224259393],[-94.08245965877694,18.0914231426857],[-94.08117577501787,18.09463332683049],[-94.08155808979967,18.099732707457804],[-94.08206824856887,18.100818323605495],[-94.08340667998408,18.10244290310311],[-94.08426540439643,18.103208786986386],[-94.08674505477018,18.105234946058147],[-94.09055827456984,18.10806957272723],[-94.09484467940075,18.11067475430525],[-94.09713983748418,18.113517855388864],[-94.09850188936531,18.118905036866636],[-94.10044357275359,18.125915943821724],[-94.10082009635425,18.133031469069124],[-94.0990304236143,18.14283415391327],[-94.09844028626947,18.147138595292404],[-94.09825639051826,18.14809168765072],[-94.09472247192053,18.152192013115098],[-94.09388791956735,18.155370240939135],[-94.09394831825409,18.157455326193087],[-94.09404942569199,18.158452128506497],[-94.09468018980118,18.160669976488236],[-94.0954036380856,18.162524607938735],[-94.09588698352064,18.16392725159261],[-94.0969974905102,18.16695838509571],[-94.09870100051472,18.16947049754981],[-94.09990723383117,18.17109074864254],[-94.10142693879135,18.172465236267612],[-94.1028812539069,18.1734491834585],[-94.10785860881344,18.1739618069613],[-94.11055742334878,18.17259311882458],[-94.11443398657218,18.168300858768077],[-94.11609421971025,18.16699825486279],[-94.1173476758189,18.166088900099908],[-94.11885467085426,18.165448682265435],[-94.12171602287509,18.16492088241239],[-94.12601086118718,18.167130060489285],[-94.1276654736767,18.169437000719938],[-94.12785302039646,18.16987717760884],[-94.12793036768397,18.1711344039079],[-94.128496175988,18.172918150464056],[-94.12915443071444,18.175140408792686],[-94.13002516429543,18.212851201126682],[-94.13198327731453,18.21345720741914],[-94.13860833354136,18.212085276565915],[-94.16835702394991,18.204734531061035],[-94.16959367731096,18.204090945503026],[-94.18459972676084,18.201098707036977],[-94.18741132571915,18.200928307030324],[-94.19753739113207,18.198568694194364],[-94.2015741582432,18.196675291003487],[-94.2138373099462,18.193797915383414],[-94.22168608785051,18.192334008858154],[-94.2418193695201,18.187471991874816],[-94.2542988804405,18.185104379849463],[-94.25749705679613,18.18382124372374],[-94.26170177827555,18.18334280285302],[-94.2754592090584,18.180233148088917],[-94.28573961700869,18.17728432726051],[-94.31512816446855,18.17117469990785],[-94.33518645738656,18.167713149970496],[-94.3542053328257,18.164104729186647],[-94.35915336969828,18.16368967611777],[-94.366999583395,18.162288943435897],[-94.37835877169192,18.16080146596994],[-94.39090018838135,18.159714667331116],[-94.39678554561465,18.159506303514775],[-94.40740436140743,18.159730819573156],[-94.41561411755072,18.15823034534793],[-94.41997151992075,18.156813857174768],[-94.43773852373391,18.15456193016206],[-94.44253845036366,18.15343505635218],[-94.45704705086752,18.151511298331513],[-94.4665871457583,18.150828739257747],[-94.47551756788562,18.150575920158587],[-94.49255021670842,18.151386798555563],[-94.507436386103,18.153288086351893],[-94.5226819354528,18.156456675551624],[-94.53175334444893,18.158651721756712],[-94.53979458064595,18.161206116890355],[-94.55062263875459,18.165409809943014],[-94.56337086659647,18.1711117646679],[-94.56783866184037,18.174232155056472],[-94.58047758174837,18.181032797673367],[-94.58594030442185,18.185090746240235],[-94.58778010811187,18.185619392990418],[-94.59694240266498,18.193202859681662],[-94.60256944234789,18.19872745180993],[-94.60761631673478,18.204943905465086],[-94.60981983149935,18.210437692462847],[-94.61119986286235,18.219396377318844],[-94.61583899166823,18.227586159373686],[-94.6180389559072,18.232846093044714],[-94.61986775414545,18.239926838538963],[-94.62185883341135,18.244538139422332],[-94.62435930368991,18.25349496295837],[-94.62423908698935,18.258438173093452],[-94.62569944513308,18.26602547808892],[-94.62582249715257,18.27082459437287],[-94.6270622880682,18.27411151506226],[-94.62638334455187,18.279247559060025],[-94.62685495737605,18.28162151324574],[-94.62548773227019,18.285775345051547],[-94.62336092599884,18.287448373146844],[-94.62960307245316,18.290706386419345],[-94.63238863909999,18.293036318449197],[-94.64027420608056,18.29797202693362],[-94.6556452241822,18.310010634409878],[-94.66224021641199,18.320201998122457],[-94.66501986108341,18.32762099047534],[-94.66606330259856,18.332418255591165],[-94.66415310777245,18.335713223108996],[-94.6639837962718,18.33838964477252],[-94.66622231609409,18.337083398360505],[-94.67028816549026,18.339199474376983],[-94.67270831804723,18.341656365760286],[-94.6818695372072,18.34906869387106],[-94.68365741451572,18.351990637980975],[-94.68311162664463,18.353204228378218],[-94.69148638610915,18.359349504890588],[-94.70182374408506,18.364672020492037],[-94.71010711357877,18.369996498366106],[-94.7194656960387,18.37722382383646],[-94.7290284544772,18.385553146484938],[-94.73303625951314,18.38966663164382],[-94.73750998924675,18.395168035666302],[-94.7418979168205,18.403921386031413],[-94.74461122721283,18.414468522429218],[-94.74302583703275,18.419211847937618],[-94.74379303743399,18.42174714632216],[-94.75082480863148,18.42781804662502],[-94.75522780626164,18.431010391686016],[-94.76011040513907,18.435359887309744],[-94.77193922940683,18.447837550316933],[-94.77369968760001,18.449205439429136],[-94.77555475852853,18.45479075858725],[-94.77541125029984,18.459298319533616],[-94.7740861686683,18.46274298224904],[-94.77486857980136,18.465555826374327],[-94.77782193586444,18.469726712591182],[-94.7795733787492,18.474465651028538],[-94.77966915074353,18.477622562758086],[-94.7818862000911,18.482932371843503],[-94.78308775528359,18.488422802399725],[-94.78296524466697,18.491973673474433],[-94.7855605247916,18.497249412665894],[-94.7863181657608,18.50241700006285],[-94.78792901282168,18.506436075213912],[-94.79297719093887,18.511448356327435],[-94.7950322443607,18.51448084127361],[-94.79589727032374,18.519140549304268],[-94.80000707563096,18.525306352214443],[-94.80648871343669,18.527253341151436],[-94.80926403009346,18.529529630717548],[-94.81030259674748,18.533959213557466],[-94.81657372840812,18.538575871125488],[-94.81883764936788,18.53874086769372],[-94.82510948705021,18.540965791509393],[-94.83501927841559,18.543342047052874],[-94.84085074041218,18.54348394242919],[-94.84464432121945,18.545763770498297],[-94.84736926690243,18.544840428507143],[-94.8615924364147,18.544808566495647],[-94.86680150145747,18.545479873263673],[-94.87421968120981,18.54879773061765],[-94.88254632753222,18.547789084644364],[-94.88757012139598,18.54762434529971],[-94.89608699026417,18.54806673023745],[-94.90005643795399,18.54919906864251],[-94.90317205870684,18.54755668685641],[-94.91018475742635,18.54702735924127],[-94.9239393838925,18.547785960473732],[-94.9435432971519,18.549354555491163],[-94.95193018083535,18.550421655362925],[-94.95452133129515,18.551312081829906],[-94.96796429941179,18.553901251601644],[-94.97157836846952,18.55562016658422],[-94.97300842158631,18.557939308029518],[-94.97540438129926,18.558247178959505],[-94.97643639881835,18.556297552301885],[-94.9785834896793,18.55620603357363],[-94.98574411183216,18.557514663183156],[-94.98843458068194,18.555000617138035],[-94.98905127964457,18.556927950436318],[-94.99423404976795,18.558787568317655],[-94.99889687858052,18.55971421472367],[-95.00499391312349,18.562045129557475],[-95.01122100990239,18.563581875433954],[-95.03381277968896,18.57234190683505],[-95.04404428033132,18.57779317344165],[-95.0493887283393,18.5821303651108],[-95.05137626069018,18.585937342554473],[-95.05196685154749,18.590384587461187],[-95.04994886501646,18.591919108687705],[-95.05151582048495,18.594918568371384],[-95.05006865153837,18.600099693075208],[-95.05431547158094,18.599613085660962],[-95.06040475356411,18.607259321514334],[-95.05890200087089,18.610841538092984],[-95.06142543654022,18.612440286043864],[-95.06232364430474,18.614473229721796],[-95.06197003613977,18.61795733855365],[-95.06640738719267,18.62094620075709],[-95.06969677698692,18.62093142905445],[-95.07615964973621,18.625290826779747],[-95.0791339944393,18.628261700790006],[-95.08112112800063,18.631710244349392],[-95.07909842800996,18.637478310579354],[-95.07947805955268,18.64169543395076],[-95.08663461717668,18.642984119359994],[-95.09236094397397,18.64615076928129],[-95.09337696905601,18.648184301594654],[-95.09400095661994,18.645692316272743],[-95.09852120587732,18.644342089192037],[-95.09715037959779,18.642529972864793],[-95.10186021898102,18.645042698739474],[-95.11319470826885,18.649102440940908],[-95.11580570689631,18.650898585825644],[-95.11738779354783,18.650567696111068],[-95.1216359884105,18.652491888857014],[-95.12628477938506,18.65632596806438],[-95.12995807458287,18.663259467333887],[-95.12903508248729,18.666201344324577],[-95.13029031414806,18.667259200377146],[-95.1299552163905,18.6701743153331],[-95.13137467306461,18.67405608707861],[-95.13332196133007,18.6713981779925],[-95.13677953269377,18.671368406792055],[-95.139981606503,18.672586863088497],[-95.14520319212181,18.678355064150537],[-95.14473005492641,18.6793652061005],[-95.14803921520638,18.681330123326234],[-95.15135939332475,18.681987839941257],[-95.15444193816671,18.68502741400357],[-95.15642735121111,18.683719895903778],[-95.16112810650952,18.68596177458221],[-95.16268499025597,18.68554939319023],[-95.16661802245738,18.68698788170343],[-95.17209552848624,18.69189436528552],[-95.17569213088916,18.69260154241232],[-95.181917989787,18.697979258818748],[-95.18350308276973,18.702410908301147],[-95.18126015138853,18.7045700268132],[-95.18186477805386,18.706713929886746],[-95.18482297333895,18.707947657114005],[-95.18662065142507,18.706320003622352],[-95.1891558240061,18.70968534886839],[-95.19290620718868,18.709259753962726],[-95.19435629515306,18.70482242717725],[-95.19835967457311,18.704239812000196],[-95.20470318368967,18.70606666482456],[-95.20952517220036,18.70319144848702],[-95.21857798495739,18.70299052360889],[-95.2312575105667,18.703589339731764],[-95.24424636591539,18.706085313448398],[-95.2455178363603,18.70390957313674],[-95.25386839657847,18.70433551995768],[-95.26141285202914,18.70522124257542],[-95.27154851666262,18.707484206321908],[-95.27452916999698,18.7092495797894],[-95.28190737309978,18.71169906071293],[-95.2863086623691,18.714304806783048],[-95.28813835016433,18.716652224685447],[-95.29089437912592,18.714126902151065],[-95.29586529857221,18.71349581964995],[-95.30696626225995,18.713463340059377],[-95.31637886598423,18.712807819207228],[-95.32972451201425,18.712705394490683],[-95.34057187082908,18.712227575001464],[-95.34481237860132,18.711426687059713],[-95.3593071782297,18.710955958448608],[-95.36200179241507,18.710619287091504],[-95.37448762744992,18.710939040580968],[-95.39137964682271,18.710411450314382],[-95.41385092987821,18.710701812249226],[-95.42086662360782,18.71118471925888],[-95.43788417868348,18.710755836743772],[-95.44802759919031,18.710890558229323],[-95.47226039616675,18.711990512013926],[-95.48218100479039,18.712078513242602],[-95.48905550105599,18.712934245903],[-95.4918881521748,18.712505165180573],[-95.51428487193118,18.714370693831256],[-95.52496646527027,18.714756545567923],[-95.55319169089671,18.717807730180425],[-95.55440546055132,18.717603243379244],[-95.56386703936198,18.718913022917093],[-95.5731048486723,18.719557695732817],[-95.58447097591534,18.721851230796744],[-95.58873630394584,18.722238050629983],[-95.61304305023066,18.727084333137554],[-95.62896061913625,18.73108178271457],[-95.64609197218726,18.73587793933916],[-95.66437933897214,18.74205447635751],[-95.67272436233861,18.745691949041316],[-95.68342701551092,18.749901778085928],[-95.68729543997125,18.75204125352309],[-95.69888394209875,18.757134038873005],[-95.71135873220555,18.76351912994363],[-95.72073513948885,18.769107277334115],[-95.72801210700248,18.774624740135607],[-95.73387084734867,18.779623669764987],[-95.7367419613442,18.783408536530544],[-95.74272713912427,18.78879898215058],[-95.74303317278293,18.78734307774215],[-95.75220287624569,18.791880852023667],[-95.76422366505619,18.79500417755162],[-95.77356261395244,18.796953792525642],[-95.78075786541564,18.798935548669533],[-95.79961382086725,18.805970841688634],[-95.81153798535274,18.810225023880207],[-95.81929625962636,18.813719252765452],[-95.83048587678735,18.81788494232501],[-95.8446960607908,18.823943504919896],[-95.86226857285635,18.832503507198965],[-95.87258012641644,18.838913684662145],[-95.88488422595009,18.847238861955645],[-95.90082494158173,18.85943785710566],[-95.9048372752855,18.86429524510146],[-95.9089151139791,18.867363534447634],[-95.92002741274467,18.878118351993123],[-95.92690893973702,18.885217573044883],[-95.93383370369463,18.894005965859606],[-95.93755157986095,18.89946718321886],[-95.94093769728005,18.905395558163946],[-95.94336501167874,18.913896849721766],[-95.94246411075335,18.918738277231853],[-95.94120586458655,18.92110594577929],[-95.94172219847388,18.926859180272004],[-95.94451997572219,18.93004768876375],[-95.95114262237803,18.94040337583516],[-95.9565859380703,18.95185246091961],[-95.95956131675035,18.961107420546853],[-95.96079759748244,18.966648818267856],[-95.96176192571403,18.974089873039986],[-95.96147643879937,18.97579659350822],[-95.96430593036672,18.989687273681113],[-95.96521038809465,18.995991113684852],[-95.96626697517559,19.007823346470957],[-95.96713581000199,19.023267092889228],[-95.9685259953468,19.03460346099547],[-95.96876535327482,19.040486380474533],[-95.96985377832618,19.048670980828604],[-95.97151705540108,19.05468123686154],[-95.97389403058037,19.05792552541135],[-95.98204852317974,19.06078298852924],[-95.98268475467671,19.063545080513165],[-95.99206800972394,19.063012195505053],[-95.9952931729809,19.06212932177357],[-96.00535034099585,19.057477051152375],[-96.0161067782966,19.056022998628123],[-96.0289814645069,19.056117741569437],[-96.03936385858788,19.057608626706383],[-96.05811323896177,19.06348577335433],[-96.06633962553764,19.067270208452044],[-96.07348668437953,19.07122632470424],[-96.08078721422135,19.07625059275972],[-96.09037865683757,19.08480039687811],[-96.09714206965901,19.093363541424594],[-96.09943993198556,19.0973918908889],[-96.100153965103,19.100646219934788],[-96.09828579964716,19.101664771814626],[-96.09782446565657,19.104084910783854],[-96.10171591335649,19.110653770339013],[-96.10352924659702,19.116844749281313],[-96.10534213454264,19.125917240647652],[-96.1048134048674,19.129444176834454],[-96.10161066646828,19.133588330175314],[-96.1016692887261,19.139133608621535],[-96.0994304244017,19.144595477083385],[-96.09353267995596,19.148180827307556],[-96.09271278600704,19.1515295010974],[-96.09487970494308,19.15475913462069],[-96.10041069967781,19.160972083730712],[-96.1016562307409,19.16117217252122],[-96.10475695785982,19.16537188176312],[-96.10872818312976,19.167649076723706],[-96.11612359041891,19.169388189498363],[-96.11851495447786,19.171918012380956],[-96.12013112142904,19.175810220577546],[-96.12367085216698,19.179617877549333],[-96.12415282756047,19.183160103113778],[-96.12198077321102,19.188060663443537],[-96.12383200054643,19.189841637447046],[-96.12347494385398,19.194549961990788],[-96.12787966459206,19.195312502675222],[-96.13258999370657,19.20337644046191],[-96.13550923565634,19.201689711223878],[-96.139763326057,19.20936076626697],[-96.13844244846416,19.211366635613842],[-96.13972747684505,19.213435046967504],[-96.13541397192927,19.214310407487574],[-96.13317779863758,19.210118524626807],[-96.13029816220916,19.20801011577828],[-96.12361307364665,19.208335888653266],[-96.12296546388518,19.213062061592268],[-96.1262229340357,19.216634105638605],[-96.13266102538904,19.218021797848678],[-96.14063829177269,19.216592439684177],[-96.15363819864109,19.216354656426574],[-96.15564724681087,19.215611317558796],[-96.1543702956489,19.217980525627127],[-96.15682067963218,19.216217843784136],[-96.16112087979275,19.21767301588625],[-96.16931140207015,19.22191910622371],[-96.17358761023445,19.226452459382187],[-96.17473718608733,19.229123375865356],[-96.17419563919145,19.237117295427936],[-96.17730715485214,19.24262275756439],[-96.177382088549,19.24551249327004],[-96.18177360522571,19.2504396422691],[-96.18914642883209,19.250655080748913],[-96.19297269744345,19.253050163608293],[-96.1964439343048,19.256971519943363],[-96.20372387048081,19.258048571228187],[-96.20765646050717,19.259251308458886],[-96.21920743872454,19.264155149477972],[-96.2275738693537,19.268015616618072],[-96.23888810429872,19.274589058633524],[-96.25702900861722,19.2858144369157],[-96.2681663767604,19.294300286627845],[-96.27669630732959,19.30248013478581],[-96.28053438054457,19.30714123092895],[-96.28387442705912,19.310154217595198],[-96.29176632268803,19.318301193758202],[-96.29505974220399,19.322392138080374],[-96.30226480467587,19.333637830706152],[-96.30710190563104,19.34462850102011],[-96.30873107347043,19.351613347377224],[-96.31086748314698,19.35701910797303],[-96.31119389391267,19.359696959933103],[-96.30999225806266,19.36430889888703],[-96.30664817552503,19.371618271141358],[-96.3066979481901,19.373434889594705],[-96.30904086002505,19.37896872996447],[-96.31232271973147,19.384710702420193],[-96.31631059611681,19.39411125605011],[-96.320603832497,19.40870704018164],[-96.32173622926655,19.41434411803806],[-96.32145637128247,19.431695919189394],[-96.31974964947517,19.450749175279952],[-96.31911960162131,19.453414502441376],[-96.3166925201009,19.457600941280703],[-96.30888921912202,19.461990148489065],[-96.30902033782672,19.464555749019496],[-96.31045581918181,19.466351891604575],[-96.31256528907375,19.471921737322873],[-96.31283567179253,19.479175026949974],[-96.31424485228837,19.48188091886368],[-96.32075365767673,19.486666090547487],[-96.32636442886803,19.49253081687516],[-96.34300493868744,19.51360369409292],[-96.34599806951297,19.51684703342994],[-96.35423895411009,19.527608851719947],[-96.36096002020929,19.537039296282273],[-96.36978172586726,19.552080920282833],[-96.37319936967907,19.558866619702826],[-96.37524096979627,19.56487580712212],[-96.37739782749094,19.573644372435467],[-96.37819370226379,19.579264296778206],[-96.37762055233833,19.58507071933076],[-96.37914499039613,19.589737153513283],[-96.37895742594065,19.593480043473562],[-96.3770902200016,19.59625878906985],[-96.37258686395978,19.59952882825064],[-96.37200600429628,19.601878521755282],[-96.37432309585154,19.60844117730869],[-96.38261884547444,19.621290963651916],[-96.39078309479129,19.635004124398222],[-96.39540631176578,19.64352076890094],[-96.3977327791597,19.654829312921606],[-96.39728655420959,19.658152325314347],[-96.39858046465929,19.66195732396062],[-96.39789147417531,19.6711395209756],[-96.39715599034895,19.674214793707733],[-96.39501946816807,19.677060371607638],[-96.39301904414202,19.676193382037354],[-96.3920548189663,19.67881986769993],[-96.39486215284956,19.67908007128449],[-96.40264699333113,19.69176760287337],[-96.40635132952002,19.699742728977412],[-96.4068188366773,19.70912673332822],[-96.40388365923661,19.718712068043146],[-96.40193125708424,19.72026623391241],[-96.40105439937548,19.724882604811967],[-96.40216529313102,19.72730084812389],[-96.40384607518263,19.727344236427314],[-96.40556805845603,19.730213002186872],[-96.40831314556209,19.73862164542828],[-96.40701150903169,19.741446102873454],[-96.40724484339802,19.74831532239341],[-96.41042820703399,19.749126049774816],[-96.41473591266316,19.756046251423356],[-96.4160423675346,19.759711480503938],[-96.42036446041703,19.76877058112416],[-96.42458185520206,19.779969946659037],[-96.42429080778578,19.783054955014507],[-96.42180716085056,19.785095402487002],[-96.423071961137,19.78914959342478],[-96.42633282456222,19.791601845053208],[-96.43036733741076,19.796259729640383],[-96.43475762007228,19.80224013519586],[-96.43835779465036,19.80885347138957],[-96.4395901660082,19.814499890409763],[-96.4392734097579,19.81686896052156],[-96.44477161052157,19.82520714681641],[-96.44704034515638,19.830217028507263],[-96.44651110738624,19.833630660297274],[-96.44722091712202,19.837351652099073],[-96.44720410346497,19.844416486058492],[-96.44884610616509,19.848021733085147],[-96.45227996332665,19.85218060425683],[-96.45493251782403,19.85395143739828],[-96.45803665415565,19.858816808737004],[-96.46299385950249,19.860945322208806],[-96.47661384061547,19.871594657986975],[-96.48413675956789,19.87846354966217],[-96.49081124170306,19.88517135898826],[-96.49645022209893,19.892906258941537],[-96.4962939341155,19.89401744281571],[-96.50134203022026,19.899714836334795],[-96.50673579140744,19.904354645776834],[-96.51635797536846,19.91419275794874],[-96.51910577900719,19.916549935626676],[-96.53027192752006,19.929022532261968],[-96.5411059661057,19.941734618757096],[-96.54525185577404,19.94705526112392],[-96.55541750918076,19.95911511511798],[-96.56100335675262,19.966545560459622],[-96.56739045260554,19.977808988460424],[-96.57411465629718,19.99190284750489],[-96.57344217768866,19.9969543828895],[-96.57387819485189,20.003838461961095],[-96.57874888523793,20.007915165356962],[-96.59021141618848,20.021237965490627],[-96.60227172309834,20.034794242793282],[-96.60810869985932,20.042542207460656],[-96.62551122067214,20.0632572648135],[-96.6292512532466,20.067014470915126],[-96.63306301131678,20.071936677443148],[-96.64118633090703,20.08116031912897],[-96.64544512486941,20.0864551889631],[-96.64949725606931,20.090598042521663],[-96.6626782652329,20.106129848459716],[-96.66855190725738,20.112543844047366],[-96.6776422898518,20.12307635177183],[-96.68583544490036,20.131761419992188],[-96.70088659558002,20.149553530890728],[-96.70478562425558,20.15531991225265],[-96.70956164421926,20.16347220064648],[-96.71739725721653,20.173200215650866],[-96.72355142239553,20.17887756171632],[-96.73520484787122,20.190345079703093],[-96.74438157177786,20.198904189489156],[-96.76693813348078,20.220729011809397],[-96.77302028894655,20.226766786111398],[-96.78016119013387,20.23783563628706],[-96.78374309296646,20.240649044548945],[-96.78472321961556,20.244129227895257],[-96.79129415464524,20.25000034977529],[-96.80603904861664,20.2646182278163],[-96.81389311039561,20.27290205009848],[-96.83023433787577,20.28857879505472],[-96.84171443697323,20.29875933798337],[-96.84942259623779,20.306257250345084],[-96.85960426887328,20.317238456485768],[-96.86322323781025,20.320413960424162],[-96.87399406477084,20.331186359053618],[-96.87764200231209,20.335345257658332],[-96.89508697988316,20.35218337473998],[-96.90907475651335,20.36617298441581],[-96.91674852806017,20.37436145369196],[-96.9200655202111,20.378353333271036],[-96.9241103896847,20.381986384765526],[-96.93955588090881,20.399413006413795],[-96.9503694052263,20.41124797272954],[-96.95873874551341,20.42263657146242],[-96.96779289025153,20.437127086567614],[-96.97119343532091,20.44169200462943],[-96.97471838198987,20.448198557944067],[-96.97987016836993,20.455903907810523],[-96.98573184386657,20.463822069190257],[-96.9915106673821,20.4690252007166],[-96.99885733822515,20.472588720060912],[-97.00724053233313,20.48008536233192],[-97.02467348804055,20.493985554646258],[-97.03085613119976,20.499436746876313],[-97.04152465625748,20.509548993402177],[-97.05748388364759,20.523739995660094],[-97.08499490656857,20.55167599006137],[-97.10438085038243,20.57053756894061],[-97.11238633354026,20.578938837212036],[-97.13018591611689,20.598356515197565],[-97.13966089781843,20.609178135021125],[-97.14460999530121,20.614285136984506],[-97.15598049709092,20.628820199382062],[-97.16507749819164,20.641451697185516],[-97.17584021372346,20.65930378863476],[-97.17914449826742,20.665745115489415],[-97.18349698404108,20.67925667497485],[-97.18997416519409,20.68964525090803],[-97.19404858222987,20.700018467971347],[-97.19492259067448,20.703721790525208],[-97.19588250155454,20.720287094851642],[-97.20117844549225,20.724557895897817],[-97.1980948520241,20.733247917777703],[-97.19618701755581,20.73401819226683],[-97.1938402372528,20.737959947685795],[-97.19524436742518,20.74112984916701],[-97.20243303021937,20.754629213654425],[-97.20450074011893,20.760452259279305],[-97.2050873644597,20.771700757708572],[-97.20434231255445,20.773223795471495],[-97.205173052475,20.77613156150386],[-97.20962951111778,20.78190368768429],[-97.21611780793876,20.79216954288097],[-97.2211259273343,20.802260238731037],[-97.2246411670688,20.811110751141484],[-97.22513233626796,20.81921223798463],[-97.22802059345071,20.829512092228242],[-97.23523553153183,20.83865333242295],[-97.24180120596264,20.84769314359403],[-97.25055752415113,20.860675518375274],[-97.2559105841421,20.86905303029232],[-97.26227252328835,20.879901529542167],[-97.26724381346673,20.889192673235016],[-97.27653980219173,20.905725255040068],[-97.28559794536267,20.923211946571314],[-97.28856530831314,20.930210033301307],[-97.29712689019425,20.946401683183524],[-97.30441384706472,20.962894592426096],[-97.30565883192611,20.96720802853912],[-97.30497438501811,20.96783555871434],[-97.30589233791596,20.971983927846964],[-97.31126401972102,20.97864044972556],[-97.31438911336613,20.98334491665463],[-97.32110356168869,20.995480334270326],[-97.32756320228214,21.008815825474983],[-97.32834129951272,21.016011387757715],[-97.32546988497671,21.017160144696334],[-97.3266406711137,21.018748914133084],[-97.32936961528003,21.017835897969746],[-97.33618366268303,21.03017121097514],[-97.34295298656758,21.043987845701224],[-97.348784529429,21.059347785331795],[-97.35255549980059,21.06849912165933],[-97.36456034266615,21.095950198124058],[-97.36919599645785,21.10498857823808],[-97.3805751681823,21.125967843829358],[-97.39176622847862,21.14825738922326],[-97.39752915671261,21.160925262117757],[-97.4042489407658,21.177721738830883],[-97.41224645939081,21.20070821227256],[-97.41638359165802,21.21470218316557],[-97.4202415879314,21.230897143496748],[-97.42183583452123,21.2416121435175],[-97.42235529154584,21.249138767042496],[-97.42198050612848,21.25361301113236],[-97.42070272090257,21.258749259114154],[-97.41926410943182,21.26044793973699],[-97.4209200958718,21.270698271292815],[-97.42107588263957,21.279312073116444],[-97.42039327938812,21.293942537398095],[-97.41809868089575,21.309608878587596],[-97.41443779291819,21.32539095892122],[-97.41119236112456,21.33631366397168],[-97.40455880761601,21.351741906883376],[-97.39871890405982,21.362986994017717],[-97.39570534665114,21.367791968777283],[-97.38727587965275,21.379299536724886],[-97.37848979696241,21.39338311195911],[-97.37528998276417,21.399216568724],[-97.37128705703992,21.408268550605953],[-97.36619387185033,21.421382477442307],[-97.36035724776212,21.434454178412466],[-97.35415671065527,21.447681268456904],[-97.35058664888481,21.456606245788294],[-97.34558184426874,21.471864842277],[-97.34157813368012,21.48683140311232],[-97.33722105087446,21.498595798135966],[-97.33360715844822,21.50562017753714],[-97.33182916049054,21.510114466481696],[-97.32944130670114,21.5210495882597],[-97.32980569971903,21.528547641719285],[-97.3316992715811,21.532704188756156],[-97.33280551073864,21.538959906596972],[-97.3327446101656,21.551303165369745],[-97.33227568573193,21.554358862598292],[-97.33021721577035,21.558439524115954],[-97.32817605774375,21.560678451319063],[-97.32736942621364,21.565648083411247],[-97.32918898771379,21.568689850941325],[-97.33700023607179,21.57574391256719],[-97.3402376821025,21.579343554082527],[-97.34358820365861,21.587690568699657],[-97.34847064794036,21.589788633422472],[-97.35410239230572,21.593353282391377],[-97.37530036975278,21.60842664800748],[-97.38655170108615,21.61724732078369],[-97.40001415592133,21.626329259671536],[-97.42862680323174,21.648077563167078],[-97.44231796970303,21.65891831657069],[-97.45215843488234,21.667615393655126],[-97.45857093992282,21.674427708851],[-97.46664643857883,21.683847874938692],[-97.47294946119075,21.68992534600909],[-97.48010098699251,21.69603499199485],[-97.50503878121401,21.71543066621905],[-97.51858102920642,21.726928494855656],[-97.52192390425375,21.729363450499307],[-97.54422254431421,21.75010600198766],[-97.55585495164235,21.762359148788676],[-97.5643344290674,21.770793808658425],[-97.57594273136021,21.783886071281984],[-97.58827582069944,21.79872350324257],[-97.5960782121332,21.808476992783028],[-97.61612991783284,21.834880865824402],[-97.62279447209528,21.845675888931112],[-97.62783427859216,21.852122391693683],[-97.63917178641788,21.86854263259488],[-97.64319237266221,21.87524083682274],[-97.65536757204598,21.893834322840632],[-97.66644774697767,21.909587271765133],[-97.69470947441334,21.951277694985492],[-97.70729344422483,21.971344756787403],[-97.7176161384487,21.990833393786147],[-97.73089014253475,22.015329465713307],[-97.74515354605978,22.04611650406048],[-97.75462131107247,22.06853535181648],[-97.75911977946208,22.080298242337847],[-97.76574740706508,22.099336053586683],[-97.7717847488268,22.11771227200512],[-97.77638158089815,22.13281716389139],[-97.78041657774031,22.14765445586363],[-97.78525242051717,22.16632525898484],[-97.78872841141106,22.182038013340957],[-97.79148461634458,22.200646445457778],[-97.79275533533144,22.21200220605698],[-97.79309634568568,22.21987670900944],[-97.7928223816482,22.230572177949284],[-97.79370936426454,22.249701501013362],[-97.79268467683238,22.257494831532938],[-97.79041489873322,22.259891918565984],[-97.78441902957275,22.26146190489908],[-97.78459981764945,22.262357526255016],[-97.79241483005234,22.26035059673768],[-97.80034118773801,22.257001496428416],[-97.81164377658979,22.25177368295158],[-97.82481537430834,22.244145011789783],[-97.83211250498931,22.2381027033108],[-97.83638067191544,22.230139441126028],[-97.83649439979303,22.22992724083008],[-97.83722581650477,22.226977332397723],[-97.8382138469438,22.21887265620478],[-97.83769338745765,22.212433755237896],[-97.83968323638123,22.208886272597113],[-97.84488828937873,22.206965827019246],[-97.8512886946366,22.20748950015752],[-97.86026832644905,22.210084196437947],[-97.8701061911134,22.213415047558385],[-97.88307430773614,22.218994559234886],[-97.8949624610596,22.22237843895067],[-97.89600016079027,22.224114061012756],[-97.89783291108819,22.229706718802447],[-97.9042638847539,22.234658175708773],[-97.90616600986777,22.235329112098782],[-97.90909145926986,22.23593127494587],[-97.91641651667368,22.2384882143387],[-97.91733234983775,22.23920816384208],[-97.91793966021805,22.239985828694387],[-97.91819790895482,22.242027106787646],[-97.92028412284253,22.246004211143884],[-97.91842760932235,22.24767758700574],[-97.91806758266773,22.247531143602032],[-97.91739483495155,22.24913999472193],[-97.91728257194552,22.250320429342935],[-97.9170818570214,22.252268534137727],[-97.91846488578409,22.25222972616882],[-97.91862524360198,22.251144250932725],[-97.9209386872626,22.251159592813735],[-97.92226418229183,22.25070713170743],[-97.925679617338,22.250678565392263],[-97.92952877245494,22.25157489154708],[-97.93243219555688,22.253694627965274],[-97.9346432429171,22.255516568057033],[-97.93490391619036,22.257465208575695],[-97.933012381102,22.259912216300165],[-97.93248856679014,22.263571579686868],[-97.9314732921386,22.266690327271647],[-97.93166064295673,22.271046565956453],[-97.93418269775054,22.272651412122457],[-97.94247567745839,22.27728472694298],[-97.94936802558237,22.283938819263483],[-97.95386293122164,22.287041980654976],[-97.95617901501515,22.29086600167966],[-97.95670761002356,22.293892371490188],[-97.9585764707341,22.29451915227213],[-97.96210628748906,22.294080568455627],[-97.96507553721216,22.294919258922164],[-97.9677653155062,22.29631979885704],[-97.97045965075205,22.297105339163295],[-97.97324497084412,22.297279263728],[-97.97880259840201,22.30161560198377],[-97.98111496493175,22.30188620256712],[-97.98315121356899,22.30225766219303],[-97.98273117799744,22.29938578850414],[-97.98542226183179,22.300441925033624],[-97.98631917548784,22.3006302834018],[-97.98842878816129,22.30003424140773],[-97.98885811303984,22.298101930134976],[-97.99013322061052,22.29687007970233],[-97.99266415172639,22.292774712051767],[-98.0003240492573,22.29743249926156],[-97.99832661219659,22.29898730977004],[-97.9976466176534,22.3026784725609],[-97.99880280393188,22.30485558191981],[-97.99843700569261,22.309660875942086],[-97.99839356900293,22.312778986071294],[-97.99894208028257,22.31385552339225],[-97.99715425800417,22.31451576682798],[-97.99541926953441,22.31369069880236],[-97.99530574508788,22.31126500500153],[-97.99227200294405,22.309962410748255],[-97.98913322726264,22.30716028237839],[-97.98703775050376,22.306369261379814],[-97.98627150251366,22.30588335608587],[-97.98559775481556,22.305912708869528],[-97.98458361139228,22.305318184822852],[-97.98397991009551,22.304671258230883],[-97.98297859670794,22.30737906848708],[-97.98257223580629,22.31045791160534],[-97.98161320437254,22.31146671679153],[-97.97985757988988,22.31247338217247],[-97.97941372018676,22.31297359112142],[-97.9791139715652,22.314455839655068],[-97.97875500663986,22.316280108868455],[-97.97874752058334,22.317309099215436],[-97.9776358005031,22.318061002424486],[-97.97675839075185,22.318917281837173],[-97.97280980059236,22.324498399864297],[-97.97050974440447,22.328050222156207],[-97.97081928360791,22.329425679411884],[-97.97077014923389,22.331738686416656],[-97.97040542351539,22.332897786616286],[-97.97346013257851,22.333638044091003],[-97.9756572425411,22.336535451897817],[-97.97759420448199,22.339025947680227],[-97.98303062047313,22.340343888604423],[-97.98524296587271,22.341178071026434],[-97.98739603845098,22.345186613858687],[-97.98891882637838,22.34977562390958],[-97.9912859981456,22.351406145309397],[-97.99379082083124,22.350626276289574],[-97.99625126026149,22.34848271229123],[-97.99912139320992,22.347923520015286],[-98.0034294256971,22.34889282480799],[-98.00874453822405,22.351289775199405],[-98.01131775036998,22.352821138304193],[-98.01440867630782,22.353279657586256],[-98.0194929182664,22.352237906500193],[-98.02212508443836,22.353683469332793],[-98.02461492941165,22.356835993087202],[-98.02847210988756,22.358392096681655],[-98.03135998323245,22.35762756144402],[-98.03493973991397,22.3562372310368],[-98.0387244813686,22.355764283001406],[-98.04424701642085,22.35593941050712],[-98.05166954085757,22.3562443049139],[-98.05396049878561,22.35554016642152],[-98.05672744103231,22.352048341911086],[-98.05737612649438,22.349075662094094],[-98.05945171702228,22.34637702500487],[-98.06355366642242,22.348314232124892],[-98.06639370951035,22.348306694589326],[-98.0708018370878,22.34695412298686],[-98.07426330879792,22.347781200793804],[-98.0770982222731,22.35164073133558],[-98.07914041005705,22.358322835536],[-98.08205024464615,22.36346845147716],[-98.08471020002725,22.368684623938634],[-98.08823758880885,22.37122921795998],[-98.0954936697907,22.372694443631985],[-98.09685155934278,22.372374846618413],[-98.10058773807452,22.367964776037866],[-98.10245293575929,22.366695545064886],[-98.10513535380164,22.366023079553543],[-98.10727158877552,22.368333155546793],[-98.11186567766339,22.37815218150604],[-98.11226346862998,22.380738380910373],[-98.11114762762753,22.39031965353189],[-98.11203442799297,22.393759513521104],[-98.1159052881568,22.39676975356747],[-98.1230741095431,22.399183475997916],[-98.12588032755804,22.400172165344884],[-98.1336539729711,22.40505071119054],[-98.1383794570641,22.40755960760066],[-98.15156019489143,22.412944633561438],[-98.15420827884293,22.412544570871262],[-98.15758886661621,22.410523455925613],[-98.1632872440901,22.409984823896707],[-98.16604622690886,22.411086732116473],[-98.17345765594041,22.41834896366663],[-98.17654505507335,22.41986931790933],[-98.18576100212516,22.422862566942854],[-98.18898752301493,22.425339446317878],[-98.19045320113975,22.429563729077927],[-98.1891366000063,22.439987906473505],[-98.19122878138944,22.44344881609618],[-98.19343336333111,22.444903451545827],[-98.19783267486417,22.4469295015017],[-98.1998979035053,22.450440007012332],[-98.19797558573669,22.45487106989907],[-98.19341475449511,22.463163624831225],[-98.19256221751323,22.46705511120831],[-98.19355284599999,22.4687211981082],[-98.1967709233407,22.469547834968694],[-98.19881878745099,22.46872745414049],[-98.20335560173203,22.465229818575324],[-98.20538241931797,22.464349921555026],[-98.2088277624365,22.464762363688976]]]]},"properties":{"cve_ent":"30"},"id":"inegi_refcenesta_2010.7"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.04604507346073,19.707154969082467],[-98.0498780871107,19.71230849323655],[-98.05291537640232,19.713143003614334],[-98.0537100149968,19.714953391649715],[-98.0540960288298,19.716003212130943],[-98.05404486717504,19.716453217376284],[-98.0544687461612,19.717393170358207],[-98.05452652043982,19.71785292360488],[-98.05393404921563,19.719529754365],[-98.05316125501935,19.72037825263277],[-98.05600737042431,19.722795180067294],[-98.05609976727544,19.725436253669045],[-98.05625122158386,19.726022666709866],[-98.06080844507494,19.728917432300477],[-98.0636314508734,19.72886895739498],[-98.06451757940084,19.728780147687303],[-98.06597156848329,19.728076961220154],[-98.06692925440365,19.72519177779111],[-98.06723291197909,19.71920598410128],[-98.06811277715661,19.716010215833478],[-98.06574886134047,19.71323149605263],[-98.06618302533116,19.711317243460428],[-98.0646128279156,19.708655218766808],[-98.0650962434704,19.708142239345534],[-98.06734040533286,19.707058262399812],[-98.06754179019276,19.706987976419214],[-98.06880907924068,19.703366046161477],[-98.07387518885776,19.702653102591853],[-98.0742879465663,19.700692423073235],[-98.08280739626338,19.700755792422797],[-98.0824174018777,19.698238518024425],[-98.08427303289642,19.693398986515035],[-98.0904484116599,19.689455896795266],[-98.0927017582332,19.6832979484534],[-98.09050532635308,19.678600601182268],[-98.09091550287519,19.67761802462985],[-98.09142493605509,19.676791096331613],[-98.09209158154795,19.675702309071596],[-98.09286049319093,19.67449856611813],[-98.09417288834288,19.673236671940174],[-98.09504017101096,19.672586424700626],[-98.09606645858406,19.67180522804432],[-98.1010079208026,19.66804988963588],[-98.10001859321841,19.671160694981268],[-98.10194346233993,19.674294736332513],[-98.10270610566175,19.67578149949327],[-98.10658825633487,19.679092736578696],[-98.10651301494147,19.681781218913386],[-98.1107796036431,19.683950882644922],[-98.11039692187762,19.685781423587912],[-98.11228029577819,19.685561050408523],[-98.1149176201933,19.6879630137164],[-98.11862127797298,19.688242310405485],[-98.12470375317855,19.685209904711996],[-98.1437262591025,19.683652531155474],[-98.14521230942324,19.681940811249206],[-98.14883798195717,19.680112900145843],[-98.14864170955127,19.676914698152984],[-98.1528355288745,19.676459311312783],[-98.15412433260053,19.67393547280801],[-98.15759592984523,19.67090517461321],[-98.15806255490355,19.670739395592477],[-98.15972159018838,19.669390997285518],[-98.16452621513167,19.668979503454864],[-98.16948968817002,19.671651918236932],[-98.16960745322808,19.672762893870924],[-98.17667894115789,19.674640864082107],[-98.18130284759872,19.673698801160583],[-98.1826723222859,19.676917126303124],[-98.18736851928946,19.67973239529846],[-98.18900354231226,19.679548419666048],[-98.19054585440625,19.676278773028855],[-98.18981993488512,19.671012487514872],[-98.194380352807,19.674703070033786],[-98.19615675425132,19.675363602115056],[-98.20686362371106,19.67468348238424],[-98.20958143780024,19.677174178703467],[-98.22066471875189,19.67367207962053],[-98.22909220122483,19.674875859916256],[-98.22808151852837,19.68041945026357],[-98.2327541311538,19.676829289984994],[-98.24078628936115,19.675856639520305],[-98.24085597696069,19.67815333720762],[-98.2410650808236,19.679112848285513],[-98.24451230236525,19.685491972822888],[-98.24611061459842,19.685310490997438],[-98.2524113088204,19.693125799718132],[-98.2525759645124,19.702730680253126],[-98.25344622858023,19.707151873425403],[-98.25503449797776,19.70819897504134],[-98.25512356947957,19.712954439063708],[-98.25386915627473,19.7167205828527],[-98.25531891771476,19.718829019189343],[-98.25815212032074,19.718166623586114],[-98.25957476160761,19.717209469027978],[-98.25995198952728,19.717197771869394],[-98.26230761253805,19.717206274765203],[-98.26297721099189,19.717284550323313],[-98.26408840407834,19.717293292288502],[-98.2655742440669,19.71704897462837],[-98.26563677830859,19.717013946756538],[-98.2660115515734,19.718707946683026],[-98.26985563959568,19.72286964973506],[-98.27247969632072,19.72469066074831],[-98.27523251334281,19.723802965903246],[-98.27881692516092,19.724773847404265],[-98.28052156026342,19.72632107365007],[-98.28229975784728,19.72403578965657],[-98.28040933595128,19.720132175719925],[-98.28053405756714,19.71854216823499],[-98.28546769255018,19.720800759283748],[-98.28830285195403,19.723758571725625],[-98.2933217267634,19.726229600459817],[-98.29269476710499,19.72400833974865],[-98.30080148683169,19.723630711614703],[-98.30155850982135,19.723078753676873],[-98.30732445150039,19.72702081369374],[-98.3103072330494,19.72754658379091],[-98.31109487962067,19.72707688864716],[-98.31316369633521,19.727219778926496],[-98.3154815214192,19.725589334850554],[-98.32261651262843,19.72325715930259],[-98.32508624217212,19.723690148118976],[-98.32842099524777,19.722084410145953],[-98.33166720773823,19.722319966910106],[-98.33273798600766,19.719736078110145],[-98.33179870475959,19.71606875124928],[-98.3319204401198,19.711642147705106],[-98.33313551323926,19.711763993408397],[-98.33311273014908,19.709696431388352],[-98.3333092321758,19.70932798304807],[-98.33326278311085,19.708774041769402],[-98.32948161366994,19.703776049961277],[-98.33002237056661,19.70137622792987],[-98.32957246642314,19.699633469355263],[-98.33004673804089,19.69903746423904],[-98.32883788446435,19.698012124481238],[-98.32643337291626,19.699597881080194],[-98.32302842234986,19.699503746637163],[-98.32094917901264,19.70101089546995],[-98.32176963943704,19.693263655355793],[-98.32329280191539,19.691368601178738],[-98.32401152387393,19.68499680448366],[-98.32825812038084,19.679211871119662],[-98.33690793753067,19.667395214476812],[-98.33710397951359,19.66711386535627],[-98.34138421461114,19.66132381479497],[-98.34564516086704,19.655517552338893],[-98.35091091381184,19.648811696723214],[-98.35345339393109,19.64558959032729],[-98.35732343650596,19.640497864964345],[-98.3669170034317,19.6283248989061],[-98.36696187766563,19.628261285017345],[-98.36701080490957,19.62820948934558],[-98.38169684263886,19.609361863293884],[-98.41266654429273,19.61749909034984],[-98.41643416369726,19.616771100618053],[-98.41679396845444,19.61670273173928],[-98.42931370778308,19.61428609587807],[-98.42958881968684,19.614228844991032],[-98.4300919375168,19.61414509901323],[-98.43068453330818,19.614215239519467],[-98.4387835570289,19.614325919013652],[-98.44094355457338,19.61351912915012],[-98.44146173004577,19.612718488466555],[-98.44325638713963,19.612901314010628],[-98.44342383028282,19.614566806553057],[-98.4436147901908,19.615063150289814],[-98.44383063605733,19.61551961270351],[-98.44433944549644,19.61573968870715],[-98.44656655610561,19.616470975034076],[-98.44795730240088,19.616440390295793],[-98.45010095805617,19.617893917873744],[-98.45117054221157,19.61807434793485],[-98.45301551635566,19.618056076072946],[-98.45490632521432,19.61756335929232],[-98.45524156068757,19.617239827478215],[-98.45637689392049,19.617098547657633],[-98.45736270228628,19.617095347774807],[-98.45785687082855,19.616523721728925],[-98.45829843139677,19.616198717761336],[-98.46105589082379,19.614737120045618],[-98.46156627744045,19.6143228886869],[-98.46292560207456,19.614382243995294],[-98.46438804049205,19.61478244007884],[-98.46720210083572,19.613802700970325],[-98.46777100095164,19.614308531974473],[-98.47392820839218,19.615550321815704],[-98.47851769033849,19.61800282932512],[-98.47885694738562,19.618023024410036],[-98.47959284584158,19.61752312739668],[-98.47982411242407,19.617475070669855],[-98.4804584279974,19.617552333199228],[-98.48080499848231,19.617700417811534],[-98.48143049158853,19.61789349558626],[-98.48250488702132,19.618162359581163],[-98.48313502803944,19.618514085866423],[-98.48754261851349,19.618166227149686],[-98.48785417615096,19.61791297827017],[-98.48996574291914,19.619763187382887],[-98.49019542949128,19.61995333066318],[-98.49068289503396,19.616341496084033],[-98.4927040830766,19.613837262454695],[-98.4908935607582,19.610164305256546],[-98.49161384136323,19.60736783246921],[-98.49570103432893,19.60744301495521],[-98.50231581838142,19.603202159000602],[-98.5082470749474,19.602730461037424],[-98.51176094850416,19.603984153374597],[-98.51768107585747,19.603063292872264],[-98.51792016378852,19.60297509956871],[-98.5180062492235,19.603298477981298],[-98.51907297476498,19.60237685803969],[-98.52152228777703,19.60573975260911],[-98.52243587305605,19.607347074121776],[-98.52693260429237,19.612413229558967],[-98.52826301157592,19.61431557362863],[-98.52833576029798,19.614557426670956],[-98.52568630527355,19.61863679777548],[-98.52876613933279,19.624770835565585],[-98.53557577766122,19.6344188729355],[-98.54688007790429,19.621512950774672],[-98.5503996763639,19.618578172782634],[-98.55016620985077,19.62454878044889],[-98.55573347321786,19.625515161930537],[-98.55568127335334,19.627181501625046],[-98.55567168560276,19.627340128699927],[-98.55643258909373,19.62798379702599],[-98.56371950550704,19.62714881165573],[-98.5617161002994,19.636227875916518],[-98.56137569717168,19.63756374674398],[-98.56749544787851,19.64052278997451],[-98.56869164090466,19.638959639780126],[-98.56904890878383,19.638757102920692],[-98.57347219034858,19.638940119031588],[-98.57922905864507,19.63777640893352],[-98.57953738797391,19.637660532057055],[-98.58329598160452,19.632932408730767],[-98.58371641293661,19.630185924202465],[-98.58402238146505,19.62948541868309],[-98.58645446976374,19.625958638911357],[-98.58765408468668,19.62477483053243],[-98.58911669339568,19.623238713734565],[-98.58933394655764,19.623125746495987],[-98.59117240863299,19.619101297985708],[-98.59145925387844,19.61885769486065],[-98.59334744992913,19.616793739385855],[-98.59524051624646,19.6152064552428],[-98.59683743987114,19.613857319019246],[-98.59757795003492,19.613008330441176],[-98.60045196515574,19.61103859660892],[-98.60066459830142,19.610257697364318],[-98.60083946094727,19.608284957064313],[-98.60406124641185,19.605359734109243],[-98.6090207190336,19.602358770928163],[-98.61336775640433,19.60106513466252],[-98.61583572871871,19.601229052857775],[-98.61605558895957,19.601220701857187],[-98.62228755893864,19.600393640838774],[-98.62333991347487,19.6006994111101],[-98.62591689347545,19.60033221478818],[-98.62716359127535,19.600568545419378],[-98.62829666113356,19.601013576818843],[-98.6286383038015,19.6012803396099],[-98.62921575385684,19.601579875662537],[-98.62950314178045,19.601661332915228],[-98.62992862852599,19.60165082815888],[-98.63024443164602,19.601657861625995],[-98.6307899131703,19.601976385182695],[-98.63217713797576,19.601350194420547],[-98.63282221083585,19.600293333985064],[-98.63335438673909,19.59893850698569],[-98.63363568755142,19.597891380171802],[-98.63801481832803,19.598788393230848],[-98.64024096920099,19.601225178427057],[-98.64198714491704,19.605367241327883],[-98.64653028839416,19.607603932591587],[-98.64765943509599,19.60780354667469],[-98.65055912471666,19.606816487024844],[-98.65074861170837,19.606920269833495],[-98.65135710971731,19.60736130002863],[-98.65177393442008,19.607538840047766],[-98.65229841651364,19.60774358419667],[-98.652930367154,19.607436546231156],[-98.65704929777542,19.606690047975576],[-98.65684991775544,19.60649739628741],[-98.65772398343421,19.605555579023758],[-98.66427325706888,19.605479666414226],[-98.6662296630592,19.60577796138267],[-98.6666207777759,19.602988321487203],[-98.66945294444133,19.599850643769912],[-98.66953627468467,19.59923793558812],[-98.67240550412873,19.598367710094692],[-98.67818357376859,19.59997089200209],[-98.68137994762787,19.59828493802638],[-98.68208030291822,19.594260360827263],[-98.68151246212125,19.587920216675684],[-98.68745321990946,19.585839888621365],[-98.68911309906161,19.585853108860135],[-98.692432005238,19.585879487944794],[-98.69286773847273,19.58438360683374],[-98.69124122385483,19.583007340317522],[-98.69101572248667,19.58127568685262],[-98.69115392680885,19.579433867173293],[-98.68911017238156,19.5768594339595],[-98.69326710531323,19.57607746105009],[-98.69420774406768,19.574545823919948],[-98.69563721451402,19.572450200467017],[-98.69480683282688,19.570641916689908],[-98.69742637444483,19.570921164009235],[-98.70021561426978,19.57120194552141],[-98.70219370111028,19.566239881007277],[-98.69950686888308,19.567150638369583],[-98.70305911677838,19.56187884518448],[-98.70446353703687,19.5613234224017],[-98.70384174827194,19.559091608450785],[-98.70604433306232,19.559336251856053],[-98.7081317363195,19.554805576186595],[-98.70546289497725,19.552477033899947],[-98.70839858674987,19.54759969042209],[-98.70144753693972,19.54525858378679],[-98.70234898938014,19.542890194488564],[-98.70217618193232,19.539222447624127],[-98.70002110435814,19.53131176993628],[-98.69352981808959,19.526950077426875],[-98.69273455462775,19.52576695064886],[-98.68546265744334,19.520540496269348],[-98.68191240136281,19.51801070651726],[-98.67817089782301,19.5120983797284],[-98.67713815057539,19.50687616648878],[-98.67567263338805,19.499461254550795],[-98.67265931882298,19.495792011295464],[-98.66805200998874,19.49341291131566],[-98.6654597460938,19.49045245225983],[-98.66039770870208,19.48550246176319],[-98.66150470802279,19.480496841332865],[-98.66102186193069,19.478433120473085],[-98.65434736896913,19.471062076399278],[-98.65322655538432,19.4659862238683],[-98.64053589210351,19.46330406525999],[-98.63411472731804,19.46784816828597],[-98.62940658100695,19.457017952793535],[-98.61573379866337,19.452064536078865],[-98.60915811535295,19.45061331116119],[-98.5912756480812,19.449214195988873],[-98.57750112517357,19.460276031200976],[-98.57027613694368,19.466769353101768],[-98.5579198675859,19.46264328578087],[-98.54385219342896,19.460410381687097],[-98.5423196103668,19.460590759250465],[-98.54186663314272,19.46074098506091],[-98.54157649623846,19.46079221447644],[-98.54149900336722,19.460821388788872],[-98.53521381748567,19.462322370187735],[-98.52319214109525,19.460868680696137],[-98.52313896061315,19.460456266887604],[-98.52238963118674,19.458646705978822],[-98.52203509440454,19.458342355561797],[-98.52136236327209,19.456312766221117],[-98.52124937592151,19.45577301882804],[-98.51888049595527,19.449871064999286],[-98.51892695518234,19.449434524299875],[-98.51916659848291,19.448330897554285],[-98.51698676082606,19.44182323972001],[-98.51660425710116,19.44132502203672],[-98.51627989852483,19.439175941661006],[-98.51303058969609,19.436035294549754],[-98.510344186586,19.428000027476344],[-98.50999993057206,19.427775343871133],[-98.50835858065182,19.426991728970677],[-98.5080315553447,19.426676580652952],[-98.50641309086717,19.426136775460748],[-98.50609740365735,19.425801377065625],[-98.50381457349414,19.42234226941912],[-98.50367960298337,19.42212151404385],[-98.50374134079522,19.42043655338415],[-98.49919153504823,19.416589000312626],[-98.49872085381878,19.41649364489541],[-98.497486815679,19.41370393924774],[-98.49507911115603,19.411120898588138],[-98.49217910070763,19.406373932861698],[-98.49206860632768,19.406080173589658],[-98.49097914788399,19.404374914952086],[-98.49051571905534,19.40407293948772],[-98.4900779042548,19.402015613849528],[-98.48969632624232,19.40174789676297],[-98.48734215630708,19.397655520120793],[-98.48725651890697,19.395741213162182],[-98.48722405335718,19.394726468309898],[-98.48735798967664,19.39353535265917],[-98.48734090497686,19.392895310195172],[-98.48724797860626,19.39229682926282],[-98.4870666063133,19.39204586034782],[-98.48703483906831,19.391037547077246],[-98.48715995024776,19.39038930132523],[-98.48730480958375,19.39018767574146],[-98.48684376127329,19.389458858830835],[-98.48105925449369,19.378594300812097],[-98.47749992597596,19.37277534912249],[-98.47730414893988,19.37255745520679],[-98.47685025349529,19.37212237392663],[-98.47634134112695,19.371770725728595],[-98.475406526489,19.370193175023587],[-98.47510980304344,19.369611045053432],[-98.47454879470524,19.368424120082523],[-98.47345781046249,19.366051007810483],[-98.47298469321106,19.36507891740638],[-98.47260021526637,19.364394749640383],[-98.47200084742872,19.363498346790323],[-98.47027770275156,19.36083090576136],[-98.46416660260206,19.355950587470375],[-98.46357126460299,19.35526809079215],[-98.46355454971865,19.355232796342477],[-98.46208091735605,19.35351109062657],[-98.45925543397385,19.350335138798243],[-98.45783429588965,19.34866099169409],[-98.45588758312311,19.346495369589718],[-98.4553261394235,19.34594628895985],[-98.45515526007728,19.34574422058182],[-98.45510119302867,19.34568629886803],[-98.45491972669282,19.34550049710043],[-98.45461955681765,19.34539581223521],[-98.4543528516316,19.345048424510594],[-98.45305795033744,19.344800569047493],[-98.45091549155467,19.340327124727082],[-98.44770725627433,19.336587700712414],[-98.44582407915198,19.332689604392897],[-98.44228635397343,19.328039532251864],[-98.44170664371745,19.32668980997215],[-98.44127299724602,19.325251132020583],[-98.43802746456385,19.325657010671307],[-98.43345982445811,19.325981857345482],[-98.43048482249071,19.32739142366654],[-98.42692511688216,19.32704859789277],[-98.42471996187328,19.323507395080355],[-98.42114091687824,19.320364990039252],[-98.4207041903926,19.319946799208708],[-98.41669870842827,19.31971587805981],[-98.41573447704889,19.31960803775371],[-98.41338214087915,19.31832300228865],[-98.41312753949899,19.31779564264184],[-98.41261900336355,19.317108015654128],[-98.41173544904143,19.316774583677216],[-98.41126300640349,19.316424801462063],[-98.4107878900241,19.316176518527072],[-98.40998270938508,19.31597723722416],[-98.4077213762485,19.31593170858696],[-98.40800792966388,19.312102659431332],[-98.40881530459347,19.306724376497982],[-98.40894375209507,19.305325903411358],[-98.40930507597454,19.298823509008685],[-98.41025103710047,19.2917114204746],[-98.40693156722051,19.28823266713283],[-98.40176317971492,19.287880175886528],[-98.40229839080291,19.285751784519732],[-98.40132862666599,19.282398183495275],[-98.38910231177749,19.270988993068556],[-98.38040346670914,19.261715611718103],[-98.37803869057512,19.254583800287776],[-98.37747935957589,19.252757046315537],[-98.37669243922204,19.252380071630114],[-98.37786782121537,19.250157630747367],[-98.37673493730921,19.24872144736787],[-98.37656034571194,19.24734077703033],[-98.37590289965277,19.245481493814964],[-98.37039647565331,19.236020145272676],[-98.36454634232126,19.233125252927607],[-98.36822041998994,19.227673734833786],[-98.36891677921614,19.22611812011121],[-98.36599533399476,19.225315420793038],[-98.36070032109001,19.223528571830343],[-98.36069361534976,19.22298195905148],[-98.35690902811052,19.221582415122384],[-98.35441399248373,19.220859606794534],[-98.35383004295886,19.220428210533612],[-98.35186206540828,19.219003621564866],[-98.34917069656535,19.214441478385538],[-98.34655371046904,19.21032428925031],[-98.34453737597295,19.20607259360463],[-98.34415679982277,19.20530111907931],[-98.33905395436449,19.20396186323029],[-98.33768568317544,19.20389218035109],[-98.33684579435322,19.2036327864746],[-98.33493584349327,19.204469578997703],[-98.33068096487699,19.20015005055575],[-98.33256872882373,19.197291327400137],[-98.33433298721246,19.1945497162439],[-98.33492217032506,19.193777903425996],[-98.33604293523837,19.19312660829314],[-98.33789275075657,19.19205009448649],[-98.33984425502382,19.186115091797205],[-98.34271029250505,19.17793974214004],[-98.34251866164868,19.177841783724602],[-98.34115649221934,19.177192475817947],[-98.33658872723561,19.175339465829836],[-98.33508841083807,19.174719093812257],[-98.33130941678695,19.172900125031504],[-98.32775878290369,19.171203076956488],[-98.32639084109383,19.17057052424633],[-98.32532902610296,19.170092197204724],[-98.32392928533665,19.168661884492167],[-98.32371459207951,19.168910253810566],[-98.32264450443915,19.17097180555055],[-98.31669798284543,19.18195349536103],[-98.3161501585912,19.183109007102075],[-98.31612500577955,19.18315409835901],[-98.315912441835,19.183526082236824],[-98.31547749191952,19.184344567709843],[-98.3121726924465,19.190398822523264],[-98.3071559338884,19.189203939408856],[-98.30547836551148,19.188313561090922],[-98.30241435072429,19.18683360281409],[-98.29334801311501,19.177433958439963],[-98.28893598679434,19.174723723047236],[-98.28759687942278,19.173931902509196],[-98.28367357450776,19.17101803524082],[-98.27944787993346,19.167965645633103],[-98.27714574745642,19.166793949419457],[-98.27384749280083,19.165549925064113],[-98.27239246521822,19.16519509698037],[-98.27206336616734,19.16495504579825],[-98.27184225667077,19.16448574133858],[-98.27150829735308,19.163308224716957],[-98.27133035454415,19.163120224220734],[-98.27102964005962,19.162958180140322],[-98.27019476403547,19.162666369944077],[-98.26970279308563,19.162389884053027],[-98.26934458394089,19.162308939603292],[-98.268807467089,19.162295658838502],[-98.26839508833086,19.162345534751182],[-98.26791033355971,19.16226746576592],[-98.2672963707177,19.16207097708036],[-98.26663052096637,19.161903362366957],[-98.2661454733186,19.161772607284433],[-98.26558182632988,19.1616075191875],[-98.26478683340434,19.1614357816685],[-98.26368136921013,19.16113851771695],[-98.26267604059643,19.160919298865338],[-98.26001191514882,19.16036614576319],[-98.25457795043934,19.16066578687827],[-98.24207540037219,19.157576494125806],[-98.23796586250768,19.157671654639444],[-98.23787792766802,19.155862468019336],[-98.23674853370903,19.157257204366942],[-98.23024123738145,19.156728607356683],[-98.22839654352327,19.153906238541424],[-98.22989608062778,19.149039773918844],[-98.2267051672294,19.146041534647566],[-98.22441769098572,19.14185361334006],[-98.22587207514351,19.140217933820225],[-98.22303890078308,19.136637599996675],[-98.22018153674418,19.13643862016636],[-98.2171985413816,19.134925253015126],[-98.20804021746835,19.13269947165537],[-98.20513782852919,19.13363235287636],[-98.20048035161875,19.137544712651334],[-98.19639388007067,19.13919970611522],[-98.19070669341892,19.13998573650764],[-98.18953812599602,19.137589189158803],[-98.18904005444534,19.1368316394354],[-98.1881839678257,19.135516560810743],[-98.19714263831264,19.12749707781734],[-98.19170769029108,19.122786426178266],[-98.19163865499792,19.121936971996604],[-98.19238243882688,19.121619700694225],[-98.19373465949917,19.121112789296546],[-98.19412294075028,19.119896592417206],[-98.19500171190504,19.119579900998474],[-98.19727753540724,19.118777970571216],[-98.19903482870467,19.118230040294065],[-98.19973238098135,19.11816900357826],[-98.20065855781036,19.11736106620117],[-98.2019666839899,19.116640268256674],[-98.20386129103065,19.115780968779006],[-98.20421557900687,19.115201094149825],[-98.20434781419954,19.11492892749726],[-98.20426171541948,19.114914283690723],[-98.20176457172596,19.115227812700198],[-98.20131873282372,19.115379891210353],[-98.20047055361971,19.115302149583897],[-98.19923299224678,19.11561065307012],[-98.19810216654622,19.116495546915985],[-98.19676327320735,19.11654136039607],[-98.19651834357353,19.116594603673263],[-98.19515628533009,19.116632558204344],[-98.19460572610984,19.116373403816965],[-98.19409569069052,19.116346484358473],[-98.19278132903207,19.11612268100731],[-98.19234412511048,19.116105950682822],[-98.18921045352835,19.11534092445504],[-98.18871394026985,19.11525481804324],[-98.18777928694954,19.11583331190195],[-98.18763352873822,19.115832668714575],[-98.18653723230068,19.115946483414803],[-98.18625179852228,19.115837898066275],[-98.18543336065699,19.115592597419607],[-98.18255211526468,19.114374540888605],[-98.17774636247333,19.11181743288506],[-98.17711371441573,19.111474377961542],[-98.16922368243917,19.10715525800225],[-98.16617577631956,19.10507186118224],[-98.16175425213652,19.107272184260466],[-98.16009817520148,19.110478221039443],[-98.15695441238671,19.11289885050661],[-98.1548724910902,19.116480015156412],[-98.15140069363531,19.118556474831564],[-98.14664581438808,19.12275337189078],[-98.14475872250642,19.121268821504884],[-98.14557203472992,19.119336402713145],[-98.14829785265414,19.117554513300036],[-98.15012812629669,19.114145263304863],[-98.14340324172042,19.118166608319143],[-98.14314549410489,19.118303619532412],[-98.14042367791467,19.121361425453927],[-98.13628487195439,19.124007053034745],[-98.13216521055102,19.128703901894085],[-98.12815303803615,19.12938660285829],[-98.12458220952402,19.13242113879744],[-98.12383404401464,19.132983900576335],[-98.11942123469703,19.13528118733643],[-98.11673834648423,19.137713063816193],[-98.11611934309565,19.13805635707348],[-98.11549607028547,19.140043698333045],[-98.11227100383144,19.141487504957695],[-98.10843821031028,19.145225848672624],[-98.10760078703555,19.147654357463693],[-98.103222872846,19.152573599482025],[-98.1026969960746,19.157520340700614],[-98.09935773982897,19.16139475076983],[-98.10031874747591,19.163366651788863],[-98.09734107849539,19.1647339275151],[-98.09695267187476,19.165013645439842],[-98.09357057993378,19.166181203885458],[-98.09034659055658,19.169392420045995],[-98.08585551850354,19.17136348432348],[-98.07625045302552,19.178771353237323],[-98.07558530827532,19.179907500050774],[-98.06961271739209,19.18516703653853],[-98.06889808111038,19.1895576601936],[-98.06277261993353,19.194924188261382],[-98.05932663269868,19.20122641423285],[-98.0550656432963,19.20316430933468],[-98.04988037150957,19.207474412914337],[-98.04756478220122,19.207053324455842],[-98.04631694353742,19.20858896176253],[-98.04153060077459,19.21023172129378],[-98.04069489528791,19.21255083159656],[-98.03461789056627,19.218771969240663],[-98.03523386956101,19.22412642939878],[-98.03168626745293,19.23093838247985],[-98.00940026236958,19.21137644185518],[-98.00572820080254,19.208853610359483],[-98.00440676761735,19.206265333469958],[-98.00136555218222,19.2036678359176],[-97.99862340862944,19.19832473744725],[-97.99396861626252,19.196396750569534],[-97.97895015310513,19.192570141112697],[-97.97443294027619,19.191013187802753],[-97.96671861979956,19.1874688233072],[-97.95031273545118,19.177309370448143],[-97.93758953942921,19.17045073263165],[-97.92820263915621,19.16421341655007],[-97.92568648598046,19.1672612849909],[-97.92047390669029,19.171016125136248],[-97.91507003756834,19.173168069539713],[-97.91499001390923,19.176147541505543],[-97.91137424105426,19.179609256904484],[-97.90801773805038,19.18083348035941],[-97.90460587816739,19.177586406907153],[-97.9025063450888,19.17960785929273],[-97.89723751763836,19.181779062560906],[-97.89661005339417,19.183240514815225],[-97.88983906691101,19.18695674231782],[-97.89074914127525,19.18962113916001],[-97.8942075780318,19.191153990279645],[-97.8936297037709,19.19228673384083],[-97.89557830714216,19.19751836149902],[-97.89058808578835,19.201963532670106],[-97.86212320885033,19.213840637015608],[-97.85426564060015,19.22018597870573],[-97.85422004079203,19.220222799833607],[-97.85098829189036,19.222934223616505],[-97.85390542930185,19.226090751312086],[-97.85465423560004,19.228141570957916],[-97.8546773140153,19.228204485244305],[-97.86038336348514,19.244077373771063],[-97.87047257023465,19.24027685262314],[-97.8661832544002,19.251312138533137],[-97.86513558872088,19.25394939099931],[-97.86129543497509,19.256240462745495],[-97.85405180854957,19.25732829675468],[-97.87028704958647,19.270585987487834],[-97.86392513376859,19.279867197158694],[-97.86177652282669,19.285408459165637],[-97.85971698837892,19.28719951681785],[-97.8459655664073,19.28797568722581],[-97.83842866695892,19.287264404712744],[-97.8396022441637,19.292279813604296],[-97.83724806173097,19.294800908309412],[-97.83927042555973,19.30137616657828],[-97.82085689465168,19.30473099486528],[-97.80047142542605,19.301583386639265],[-97.78727901609955,19.29012384331469],[-97.78465273185634,19.288494736928726],[-97.77673568041916,19.286317362316765],[-97.77336939252251,19.28625011466613],[-97.77351686301506,19.284043421109345],[-97.77138552480335,19.283752652176304],[-97.76967763369765,19.28659547630707],[-97.76508548237155,19.286859140041315],[-97.75705409362735,19.29976798803733],[-97.75370521075251,19.29958452252754],[-97.74509181242752,19.305259936394407],[-97.7414972659497,19.302426252909243],[-97.73702680414766,19.296690314661817],[-97.73680229174317,19.293160019117238],[-97.73765564054054,19.290733166155064],[-97.73833273694333,19.287099632122647],[-97.72932342766603,19.293109914326692],[-97.71964295034917,19.304753227161257],[-97.71650306466904,19.300433371162285],[-97.71574955397085,19.297849108080186],[-97.71046740633932,19.2956354370275],[-97.70473688410152,19.297057700490427],[-97.70035448619643,19.295123774294552],[-97.69921749705509,19.291859220286426],[-97.69412716372273,19.289023240030133],[-97.69093324448369,19.28588811536855],[-97.67834799573058,19.292428815804556],[-97.67530335534298,19.292795971455007],[-97.66952020451896,19.292134219877198],[-97.66652238986217,19.294723059956937],[-97.66506205748794,19.297279803398226],[-97.66021897879608,19.30746336697854],[-97.65804469382249,19.310664525462585],[-97.64608887372037,19.30640931596372],[-97.64248181570457,19.31147712692143],[-97.6389487402559,19.319049990361577],[-97.63312229343029,19.316157976705654],[-97.63285446306315,19.320278076325337],[-97.6263555646147,19.323933965217577],[-97.62551982111034,19.326378654312293],[-97.62567420883795,19.331393638189752],[-97.62799136610255,19.334645399404508],[-97.63071689149751,19.334523534739333],[-97.63578956117578,19.337473599500527],[-97.63871172797252,19.338263126332834],[-97.63565868128904,19.343749589650827],[-97.63144615980178,19.35539543254407],[-97.6360273789308,19.35745251883327],[-97.64029032520295,19.360751456399782],[-97.65363115330979,19.353799975943275],[-97.65365094949584,19.35936210173344],[-97.65564536951632,19.359835799033135],[-97.65571848499741,19.36166315669459],[-97.65797940837274,19.363674068357227],[-97.6661246999418,19.365310457924352],[-97.66881319736046,19.36834913298634],[-97.67005169163019,19.36704776188975],[-97.67385881548847,19.367471462976596],[-97.67652201026067,19.371400365302918],[-97.67627778233947,19.37616690985044],[-97.6790934730493,19.384774642556067],[-97.68196936242634,19.388446012886448],[-97.68570245821263,19.387039687705],[-97.69381039790647,19.389163383384414],[-97.69641198489177,19.390957728048534],[-97.69817306572617,19.395614983886617],[-97.7025097170582,19.3932128490718],[-97.70545484076479,19.393641375705727],[-97.70772456276848,19.399807326845064],[-97.70659248733705,19.403042212858168],[-97.70878378121802,19.40578536941092],[-97.71194062237925,19.406320994064174],[-97.72113942765753,19.418575016795614],[-97.72068180565873,19.422578028218766],[-97.72335711304288,19.425120458776746],[-97.72452512395881,19.4316369462407],[-97.72694597145369,19.432957194829044],[-97.7304303779161,19.432502722981496],[-97.73410261912,19.434979925888513],[-97.7351895664653,19.432529267615564],[-97.73672946716914,19.434846918174514],[-97.73850987201774,19.432902703709146],[-97.7421377943333,19.432322204929108],[-97.74358169463085,19.43447193765354],[-97.74727873038876,19.43633397184493],[-97.7452062402773,19.439353162328132],[-97.74464688030321,19.443547917722526],[-97.74698649956349,19.45043701032398],[-97.75097217865942,19.45148497586308],[-97.75398212479547,19.450368537168686],[-97.75692674098877,19.45315503191688],[-97.75480144733223,19.457542873775083],[-97.76342144750748,19.45722776214177],[-97.76935313456181,19.457982635231986],[-97.77071123216047,19.456614196487976],[-97.77363907057583,19.458775216640674],[-97.7741385190825,19.46366358567451],[-97.77396355834128,19.4691745493285],[-97.77804574746693,19.472877405138547],[-97.78658012578336,19.470452288643514],[-97.79685926296054,19.47244284215492],[-97.79775132842002,19.476842720103605],[-97.79682020253694,19.485034507456078],[-97.7949010597826,19.486486755627766],[-97.79533403852292,19.495691582048494],[-97.79453866935285,19.498374600568923],[-97.80545912394058,19.48946985270237],[-97.81257296399087,19.486855143739945],[-97.81474803225416,19.482521261073146],[-97.83062101741115,19.475320331990815],[-97.83986537230766,19.472184530067466],[-97.84594647416367,19.46892732048434],[-97.85231783911638,19.462063574149283],[-97.85393049297767,19.458303068366604],[-97.85760384390102,19.45646894866053],[-97.85942247956842,19.454345936267657],[-97.86227149521415,19.45617552514625],[-97.8608198534493,19.459849614318557],[-97.85747691780091,19.46478594707071],[-97.85383659649818,19.467872112521718],[-97.85227389629642,19.46799957265341],[-97.85068785097013,19.471216998636976],[-97.84893201084122,19.471605976827277],[-97.84735320961448,19.474003097993034],[-97.84741887309809,19.477820799075744],[-97.84873909587287,19.48278190988981],[-97.85190169268742,19.487465991410374],[-97.85817079365813,19.49312793782218],[-97.86201761546448,19.494619059286663],[-97.86252636119536,19.495880127279122],[-97.86584327032739,19.49639474942296],[-97.86694312047808,19.497615985836262],[-97.87190886091855,19.498554590788956],[-97.87085541217971,19.50022717777506],[-97.8749415882732,19.503339020855663],[-97.87743502838305,19.50273252679483],[-97.88126455267513,19.499830721491037],[-97.88960571001365,19.504347620051476],[-97.88818026815659,19.50916944821364],[-97.88845943675807,19.511662633306344],[-97.88705998906096,19.515490329684326],[-97.88755762405015,19.517267660329992],[-97.88080515708992,19.52298992865019],[-97.87793690966521,19.524101596339108],[-97.87168098490741,19.532152174576765],[-97.86948967553303,19.542891329004874],[-97.87030517207353,19.54589537491131],[-97.86832641234281,19.553494821147353],[-97.86920750697163,19.55757353248987],[-97.87243820695568,19.56195912369151],[-97.87583282425948,19.563819985605335],[-97.87855421739681,19.569056916386614],[-97.88101117694816,19.57134929145809],[-97.88437648223743,19.57236253601144],[-97.88633294741157,19.571421484267887],[-97.89091012787821,19.573395335755606],[-97.8926496575906,19.572829314680632],[-97.89822546815452,19.577064332986993],[-97.9068734444694,19.57912788838945],[-97.90821743875273,19.579501231861514],[-97.91159328293577,19.584092532084014],[-97.91162293377232,19.587522278370272],[-97.91280571335363,19.59007329046625],[-97.91612113836209,19.593574896200494],[-97.91612246384653,19.593658755435456],[-97.91643545080831,19.5938676557584],[-97.9166346505906,19.593746227206793],[-97.92158853150306,19.59037907926512],[-97.9222861318633,19.590172703724647],[-97.92452029150985,19.589973813830795],[-97.92475943821591,19.5896409814693],[-97.924872427678,19.58921653894015],[-97.92710458655756,19.589748955635628],[-97.92784215477792,19.589688672795205],[-97.9284867602932,19.58949057994215],[-97.92908711409063,19.58899666102144],[-97.93264384618777,19.58733028923689],[-97.93544279150808,19.588468341632336],[-97.93886861154454,19.587338448994217],[-97.93976674126998,19.588297639038387],[-97.94302158087174,19.58592546805113],[-97.94658859673092,19.585523724214],[-97.9471717255002,19.586771443839382],[-97.94792711406302,19.58726954887942],[-97.94981387769167,19.59004703732205],[-97.94971032738323,19.590242749482854],[-97.9497461838522,19.590459181151857],[-97.94998598349957,19.59057584041011],[-97.95035085925497,19.591505192907846],[-97.95015136830114,19.591857964170174],[-97.95018919052848,19.59225313241444],[-97.95054456745589,19.592541177466217],[-97.94970293759985,19.597848214045314],[-97.94995764307782,19.59840737994574],[-97.95063008403906,19.60286273520967],[-97.95385760898574,19.604229041684903],[-97.95374789923653,19.604843237512625],[-97.95435115561355,19.605764293824393],[-97.95465764530638,19.605864637768207],[-97.95478467399766,19.606130572616223],[-97.95600529097948,19.607263280243274],[-97.95608303377242,19.607419661732024],[-97.95628491071625,19.60808576150805],[-97.95708972444385,19.608677533334287],[-97.957750410612,19.61022983265002],[-97.95772695065983,19.610518635737265],[-97.9577235589702,19.6107443663725],[-97.96463469214956,19.614128223138664],[-97.96662125535619,19.617785686647778],[-97.96721648005712,19.618448162828372],[-97.96918364694062,19.61950018613453],[-97.96797988946435,19.621731033026094],[-97.96847573548621,19.622521977012866],[-97.9679192728903,19.624712553926315],[-97.97409576268751,19.625055953034575],[-97.9793970013526,19.62759265220103],[-97.9795903120206,19.6277223844711],[-97.9824009429866,19.629062655247765],[-97.98271346067071,19.62897926735957],[-97.98329365441026,19.628955918419194],[-97.98357665635507,19.629299280919554],[-97.98973527711644,19.629571818226054],[-97.99109484109545,19.628977935253033],[-97.99667630411005,19.630152190805575],[-98.00110360930057,19.63211258830836],[-98.00244812260866,19.631829715122024],[-98.00293114616704,19.631997324305928],[-98.00398408035312,19.632024670006388],[-98.03140712717311,19.63779302771752],[-98.04221202205292,19.640224705335186],[-98.03788387003533,19.648474729849227],[-98.03600387554735,19.665082096634137],[-98.03694787568674,19.671826788881162],[-98.03601338699207,19.677683662102027],[-98.03614651113281,19.683054904081757],[-98.03735026658308,19.688172094774302],[-98.03984458115423,19.689510654780236],[-98.03966278364271,19.694110404415255],[-98.03979263532267,19.69574965818248],[-98.04006687455364,19.69959261849317],[-98.04344409489062,19.702546842375227],[-98.0456463709595,19.706669221706818],[-98.04604507346073,19.707154969082467]]]},"properties":{"cve_ent":"29"},"id":"inegi_refcenesta_2010.8"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.78459981764945,22.262357526255016],[-97.78358929095901,22.262617054760028],[-97.78546577442523,22.266831728514376],[-97.79257910397178,22.277338215011525],[-97.79653091060385,22.281996128738058],[-97.80427380292537,22.29348828116082],[-97.8115739937295,22.30670660724803],[-97.8145104736385,22.312896405108972],[-97.82314150471075,22.335148995177178],[-97.83108979315267,22.358165394585626],[-97.83734881375341,22.37968996684441],[-97.83826769139796,22.383963297420223],[-97.84484022359754,22.40826745606671],[-97.84563249498768,22.412987076336606],[-97.84985166009494,22.430510101022833],[-97.85174821495042,22.440430878498773],[-97.85488425537261,22.453681497087302],[-97.85714888604912,22.467347215510813],[-97.8580679220313,22.478891439112033],[-97.85672773246972,22.483020489648027],[-97.84909912232888,22.48301103817181],[-97.84909541624324,22.483459365151077],[-97.85753748539895,22.483327428801942],[-97.85875881824722,22.49071279163894],[-97.8582226810787,22.49393580969746],[-97.84572179679878,22.493846743898416],[-97.84571797594333,22.49430735475454],[-97.85385424698177,22.494273314506074],[-97.8579073406462,22.50847753068018],[-97.85899543854276,22.517506098887395],[-97.85923316012486,22.532793081648833],[-97.85968018206233,22.54288613891879],[-97.8597718556992,22.55596283836934],[-97.85884926389866,22.5794358331471],[-97.85740225208303,22.594280500340517],[-97.85338368067443,22.623943853869037],[-97.85115947915904,22.635734140522516],[-97.8460398391993,22.657595583175294],[-97.84410113737897,22.664160715647995],[-97.8417027600276,22.667692411078633],[-97.84090595026873,22.671886858390963],[-97.83763521152622,22.674672797123492],[-97.83674807130546,22.678624993438746],[-97.83344082682345,22.68827757921298],[-97.8267705819739,22.699711633357026],[-97.82101011612497,22.71867058714298],[-97.81985709839364,22.720333496441015],[-97.8122895424035,22.738647536556755],[-97.80909979492651,22.745309392696356],[-97.8062097449693,22.750214041959794],[-97.7993310627914,22.76617265213946],[-97.79854033634246,22.769033479163454],[-97.79554131560536,22.77543252817094],[-97.78845692827383,22.7928844216911],[-97.78403982011577,22.807687419234924],[-97.77967384464483,22.827440089592642],[-97.77543846363375,22.844385139783014],[-97.77320613124488,22.860289873727424],[-97.77160770479622,22.868000059451617],[-97.76976402077719,22.872296153854165],[-97.7680626146228,22.881871281654128],[-97.76714006826876,22.889341230920422],[-97.76595066838274,22.894785881063967],[-97.76565921184454,22.926880043854453],[-97.76504924799735,22.929809585304895],[-97.76535602717883,22.937904778369614],[-97.7645861609816,22.94942223606438],[-97.76246016224383,22.96459594189878],[-97.76188072377249,22.976026852172197],[-97.76181499839129,22.98323945272864],[-97.7607553401246,23.00590868504503],[-97.76111511272575,23.01857836856709],[-97.76084533622577,23.027284721438093],[-97.76177123258162,23.051059263395587],[-97.76156870892851,23.054967265498135],[-97.76316127970927,23.057498207104516],[-97.76150697888573,23.059149872470584],[-97.76149663652302,23.070673061128616],[-97.76184819169742,23.07384250885741],[-97.7621063427004,23.087215008619296],[-97.76263539563564,23.092407327640785],[-97.76323551910639,23.11000473195321],[-97.7644470098349,23.123208722571803],[-97.7651927735709,23.136294913003837],[-97.76477103029248,23.151157370995804],[-97.76491464895719,23.156260348686203],[-97.76613308928086,23.16847774247742],[-97.7671336985726,23.20479748056414],[-97.76940636740449,23.25260388009633],[-97.76931836152505,23.272354506160582],[-97.77005165433025,23.293381155162763],[-97.76996564595686,23.307765231456415],[-97.77047045945693,23.32841245970991],[-97.7700084589024,23.338397017917885],[-97.76978761252781,23.355238456070026],[-97.76899670054053,23.3782003023195],[-97.76703841221257,23.40208759722833],[-97.76532764307962,23.42956065524072],[-97.76305915082264,23.4554482554434],[-97.76029987298665,23.485296251128943],[-97.75961911252745,23.491067605983403],[-97.75799429277487,23.51357542019815],[-97.7541908333535,23.55107725525488],[-97.75205901557712,23.569102415886164],[-97.75169700716117,23.57422633095689],[-97.7495025532441,23.590521137302403],[-97.74767437625707,23.60964165213892],[-97.74738424975067,23.615415975381552],[-97.74566328199546,23.631279805458178],[-97.74425345233237,23.64751521256187],[-97.74208474689931,23.66879059370865],[-97.74055089098243,23.697650904270063],[-97.73955669084148,23.711290005035153],[-97.73940476870774,23.7268041591027],[-97.73894566865414,23.733732292629156],[-97.73828622033551,23.758107641020388],[-97.73719999999986,23.764799999951094],[-97.73399999999987,23.767799999951137],[-97.73149999999987,23.771699999951068],[-97.73379999999986,23.77339999995104],[-97.73545952433795,23.785629398989556],[-97.73601801881006,23.79677306185863],[-97.73629186434431,23.81213181803804],[-97.73667606283459,23.859898178689264],[-97.73701653625949,23.86853369472874],[-97.73675774351466,23.882783014820404],[-97.73734019134793,23.897713995799677],[-97.7373382455396,23.91713969765493],[-97.73753366078262,23.92198672581617],[-97.73733097346832,23.953595151281263],[-97.73590974391783,23.9818061902713],[-97.73360871477564,24.010113137053793],[-97.73130766743259,24.041565697029455],[-97.73027878978797,24.058110348460048],[-97.72916262807257,24.072591591654316],[-97.72809216667167,24.08240843672928],[-97.72730678776725,24.09566846154911],[-97.72623885173323,24.105187525310555],[-97.7238306432692,24.140287547340222],[-97.7223730784388,24.156254424432177],[-97.72106877170694,24.167657088850888],[-97.72102639249238,24.17159828091269],[-97.7190605196642,24.195004384971185],[-97.71706452154524,24.21063645376205],[-97.71607687509203,24.222736365231412],[-97.71429196819082,24.238700173026757],[-97.71259117129983,24.26591763929315],[-97.71023475612094,24.28013481667284],[-97.70990048932515,24.287378837204358],[-97.7084511453026,24.30344218983248],[-97.70623023657305,24.324097067405773],[-97.70379718777616,24.3405761574773],[-97.69816769287053,24.38176503572697],[-97.6944527703888,24.40718845687178],[-97.69231906776878,24.418806289347913],[-97.69093476460324,24.42812838235494],[-97.68940836548495,24.435930860273857],[-97.68653027091659,24.454521974071042],[-97.68375468525915,24.46848381606827],[-97.68070931171832,24.478781204420613],[-97.67911316468098,24.49168307257986],[-97.6765566248435,24.505255971214353],[-97.66875668376343,24.540676964775173],[-97.66565182552733,24.553563922037767],[-97.66395495757462,24.561721467060863],[-97.65479421724677,24.597530923190277],[-97.65309373557568,24.605413560525847],[-97.65053773439456,24.614453988786465],[-97.64548064560967,24.634036358714184],[-97.644342234092,24.637357055166945],[-97.64030448077631,24.65369404649823],[-97.6356797510619,24.669210780271328],[-97.62891728995953,24.693727485137572],[-97.62712905686635,24.70106762581645],[-97.62045160504732,24.725284699685915],[-97.61746786946827,24.733763556746453],[-97.6140091167344,24.74740929202045],[-97.6110121275866,24.756929423266797],[-97.6058488446883,24.7748947693359],[-97.60291516237129,24.78412329004226],[-97.60032382324624,24.794089805115448],[-97.58884921302592,24.83313267784814],[-97.58625406548481,24.84328399757925],[-97.58397219341225,24.849404575011135],[-97.57980036398777,24.86481711877809],[-97.5759304572494,24.877331986299907],[-97.56913968771624,24.897908185017968],[-97.56449038112356,24.91256174460642],[-97.55157496366706,24.94936130898691],[-97.54844228054816,24.956573338178544],[-97.54707112028933,24.96229001694462],[-97.53532389683045,24.995049501088488],[-97.53279110199963,25.000637692452926],[-97.52785952432663,25.014485525866576],[-97.52564833401578,25.019704455155818],[-97.5165151114586,25.044335914346505],[-97.50788499270686,25.066051121810517],[-97.50099682547625,25.082459003856968],[-97.49004645463833,25.10767688018069],[-97.48402738702049,25.12199864331592],[-97.4821526397692,25.125366782887795],[-97.47724917800383,25.136410653974565],[-97.47301451676225,25.14522621629544],[-97.45938035733138,25.175394018868417],[-97.45785378624345,25.178296396277972],[-97.45006426461526,25.196037284947522],[-97.44297437578422,25.210623692517686],[-97.43756175826348,25.22055406745943],[-97.43349908079284,25.227132722887802],[-97.42709365609073,25.23534988030866],[-97.42369048226561,25.23832770323628],[-97.42172210613887,25.246308352291464],[-97.42007102321588,25.25042682946639],[-97.41396164419257,25.263290870944672],[-97.40300270760594,25.284108876354537],[-97.400785414334,25.28883695208509],[-97.38430168863619,25.319592848835896],[-97.36261156559829,25.358324365014028],[-97.34731103235202,25.384593750108422],[-97.34176806383414,25.39464373691669],[-97.33367113938777,25.40824308110041],[-97.32753547446703,25.419251054519066],[-97.3212363132119,25.429334157271683],[-97.31462720873373,25.440596186515222],[-97.30411869947426,25.45742970336039],[-97.2985311228939,25.46725792501735],[-97.2944265609616,25.47370713623434],[-97.28598985714086,25.488113355085602],[-97.27402737002222,25.506703774779226],[-97.26504191829741,25.521427998742865],[-97.25536585186853,25.53770403596343],[-97.24739346230604,25.551678046727034],[-97.24016425837527,25.563852107975208],[-97.22719987922477,25.58822207687001],[-97.21960797612411,25.60166681806163],[-97.21214524794863,25.61575269204849],[-97.20778048089835,25.62337075741476],[-97.20252717224508,25.630649519508268],[-97.20067326079283,25.636017496555496],[-97.19240310978199,25.655383675576445],[-97.1873385283593,25.66908235056229],[-97.18528685322912,25.67394044578242],[-97.17941687948615,25.68967103017394],[-97.17484145353023,25.70398966485152],[-97.17215156720732,25.71617206078588],[-97.16871142258543,25.72709932510952],[-97.1629434003338,25.756386653270738],[-97.16157250947617,25.76678542602508],[-97.15827307207252,25.78413616516508],[-97.15561776939336,25.800212644713042],[-97.15223891162742,25.82319328122037],[-97.15181793627391,25.824308182782204],[-97.14802586873475,25.854378325827668],[-97.1457686306257,25.876106159625408],[-97.14483999895549,25.897322605439342],[-97.14490897620772,25.90154572608202],[-97.14422360388608,25.91253315034487],[-97.14515925054741,25.939250958922514],[-97.14637375765346,25.954886903458657],[-97.15157084683835,25.951028933731664],[-97.15695772677725,25.948761864491757],[-97.1595111759267,25.94911213614415],[-97.1601477590549,25.951959926594725],[-97.15788002678073,25.959731974307317],[-97.15853965058767,25.96175300213139],[-97.16405054089739,25.960208805923287],[-97.16984313480629,25.96108874104931],[-97.17316759997789,25.96481955355108],[-97.1762176474864,25.965645542007735],[-97.17754939687467,25.961768481825175],[-97.18680926989066,25.958425751567574],[-97.18671423112096,25.95488917669445],[-97.18862468153321,25.953721850309364],[-97.19309195047106,25.955045463229453],[-97.19708724897271,25.95794438225022],[-97.20368648848785,25.957526486239942],[-97.20558758790742,25.958395354174],[-97.20630297536638,25.96314995345614],[-97.20863166135985,25.96387032668224],[-97.21547613406761,25.959088110987352],[-97.22088512926734,25.957015036239056],[-97.22657222163559,25.959294111261784],[-97.23416689373221,25.956293095698413],[-97.23876900157211,25.955734072502537],[-97.24215479022484,25.95392238194654],[-97.24636515859612,25.94817066700722],[-97.25359258621933,25.948392164807387],[-97.26095193774648,25.950998462003042],[-97.27643360861737,25.952168093333512],[-97.2794438773239,25.95431733494752],[-97.28207944701461,25.958863821792306],[-97.28396567284744,25.959327996823333],[-97.2893415092808,25.955241126059207],[-97.28776870150892,25.95220601250088],[-97.28377025607654,25.949012270273556],[-97.27846179828316,25.94754461837789],[-97.2809674937692,25.94427164536887],[-97.27695518689268,25.939234086731403],[-97.27637960161405,25.936383642392002],[-97.27773986419766,25.934958629898745],[-97.2848666670809,25.93621498508736],[-97.29168523794561,25.93640563063684],[-97.29495500350237,25.933547130947773],[-97.29680048496073,25.933402243314333],[-97.30026511015762,25.937330430573923],[-97.30387180001247,25.93643108316263],[-97.30483010569145,25.928016856172405],[-97.3086615027924,25.926236121614238],[-97.31106914211506,25.927397685465735],[-97.31288367096283,25.930586037797582],[-97.31727166754013,25.93155922854902],[-97.32163155711385,25.92849686019599],[-97.32460999490041,25.924943776771897],[-97.32468463615476,25.91810431920038],[-97.33037598169943,25.917605042799153],[-97.3317508029046,25.91934632725429],[-97.33249020656558,25.92555318036898],[-97.33395492083952,25.925723621043005],[-97.33465436877685,25.919794413135378],[-97.33787800458254,25.920388568672422],[-97.33808480154369,25.922935162035287],[-97.33630661955686,25.92846774629271],[-97.33684249092698,25.929684468970493],[-97.34265958804343,25.92882856399234],[-97.34736343548121,25.93124643336671],[-97.34851450357746,25.931048181422796],[-97.34957515067629,25.926619664886573],[-97.35230202964044,25.922255710365278],[-97.3559205213503,25.918895718814326],[-97.36230930044758,25.915618807223893],[-97.36600990529246,25.91592162682616],[-97.36913663198129,25.9151347707774],[-97.36926235274524,25.91215788098816],[-97.36804896557487,25.9103459528622],[-97.36983488731875,25.90879039640737],[-97.37211968091151,25.909622973034914],[-97.37503187664112,25.908292498821083],[-97.37427982856423,25.90574768910966],[-97.36601560859134,25.902353007852355],[-97.36753117800976,25.894130788272832],[-97.36569653080505,25.889940598755516],[-97.35818102820076,25.889683089117568],[-97.35643638539977,25.888300312240744],[-97.35799651309685,25.886146698449238],[-97.36527494589433,25.885517644082768],[-97.37322149201191,25.881477174913925],[-97.37390087528382,25.878410402390386],[-97.362999189513,25.87779763129413],[-97.36002666513906,25.880022483771995],[-97.35857011527247,25.877738684976578],[-97.3594293093584,25.872682614390044],[-97.3567503940244,25.86689042448546],[-97.35926853208485,25.86605425402331],[-97.35901707807426,25.868890969157746],[-97.36145201580547,25.869475585954888],[-97.36581296643789,25.86424816613379],[-97.3686305138911,25.858516749492367],[-97.37128390586372,25.857086324659747],[-97.37579617263134,25.856164906811443],[-97.37635443856243,25.854153808872752],[-97.36956555336326,25.854391200620114],[-97.36550694849643,25.852962387392893],[-97.36459021061802,25.849603376502102],[-97.36786759605917,25.850677607050557],[-97.37099324574837,25.84959489320181],[-97.3720203424225,25.847534385611482],[-97.3715377973258,25.84241851299032],[-97.3731231305585,25.839842487674048],[-97.37657838434018,25.840322948864184],[-97.38191432537621,25.839625538982887],[-97.38659989293097,25.84384623123566],[-97.38862053189604,25.839988150498982],[-97.39448870812123,25.837107158560116],[-97.39899404337677,25.838947647783698],[-97.40553813817002,25.837639465005452],[-97.40690786056064,25.84003679374274],[-97.40198322166708,25.84030484065022],[-97.40005481030659,25.842709162382903],[-97.40070092741166,25.845209995307073],[-97.39883978249543,25.85097252987714],[-97.4007535858388,25.852396116187492],[-97.40366101717228,25.850987109016444],[-97.40558593205111,25.845205975175134],[-97.40789336506646,25.845215066122876],[-97.41018411902081,25.848640678228662],[-97.41023606278452,25.851119728335902],[-97.40791647714315,25.85464490473754],[-97.40905384973473,25.85855751221112],[-97.4076434782553,25.860789998703297],[-97.41020145670439,25.862028314968825],[-97.41274180492297,25.859481506789223],[-97.41397750072503,25.855998343172473],[-97.41366496231291,25.852348259584744],[-97.41463546194564,25.84747291299766],[-97.41320314192956,25.84072339483356],[-97.41686115803662,25.84110304672498],[-97.42248043427821,25.840149739061758],[-97.42684004568912,25.841330442105914],[-97.43550313269469,25.849714346789824],[-97.43762123720256,25.849782109402952],[-97.44092021578143,25.848199265677863],[-97.44404987586921,25.848613632793445],[-97.44567292409738,25.852238961995056],[-97.44425530519567,25.85574246322909],[-97.44714554268705,25.85649868888703],[-97.45183439642369,25.85399496970092],[-97.45380036091171,25.853950411467338],[-97.45383325366441,25.85629478113748],[-97.45131171029811,25.859078701433532],[-97.44810923723963,25.859627438592383],[-97.4477073691454,25.86344452117214],[-97.44482954009158,25.86626983439271],[-97.44482063128214,25.868295201218245],[-97.44791883383965,25.872121347629673],[-97.45014166585867,25.8719950587884],[-97.4535082374723,25.867405057206952],[-97.45674459917922,25.868646238187864],[-97.45473734159827,25.880648390315287],[-97.45551746185828,25.884119249455694],[-97.45741211191881,25.88439124183401],[-97.46397498534458,25.88212659173064],[-97.46997361876265,25.875495806606125],[-97.47408838901828,25.87649352493554],[-97.47474274587347,25.879720876870408],[-97.47055261425811,25.88186624028748],[-97.46795905058787,25.884981142078914],[-97.46808155934099,25.888160526518334],[-97.47103264427358,25.888378654081123],[-97.47756711381226,25.882722787404248],[-97.4825097715613,25.87954934065033],[-97.48545547052368,25.878534863536856],[-97.48785226279927,25.87968748881758],[-97.48639671041212,25.884352739099484],[-97.48888545397585,25.88501544677206],[-97.49224997763804,25.881236390796857],[-97.49455832638716,25.879946961524695],[-97.4974771087467,25.880325369099126],[-97.49758223847579,25.887630081832867],[-97.49635200441014,25.895946207913937],[-97.49764398661495,25.89888509786101],[-97.4990637434837,25.898770784963517],[-97.50260404853623,25.894063957488925],[-97.50605180886072,25.890662819673423],[-97.51090091941944,25.88754261761278],[-97.52127163212418,25.886323754082696],[-97.52316082486857,25.888617324514257],[-97.52283339655958,25.895622479618225],[-97.52418497786044,25.899728600620392],[-97.52681232985071,25.90206083296397],[-97.52853911881806,25.906781736272762],[-97.53210242539177,25.907368988187955],[-97.53387942393158,25.91173206975617],[-97.53031757515492,25.916211239342374],[-97.53000555676158,25.919866129838],[-97.5328231761984,25.920605398372572],[-97.54161924417133,25.919099300675725],[-97.54305215426382,25.920112814859408],[-97.54204840871648,25.922614692581647],[-97.53772807929289,25.92654834932921],[-97.53689742242341,25.930152078979006],[-97.53814433944859,25.93074107761265],[-97.54267359221706,25.923639237751445],[-97.54517256965369,25.92437516502838],[-97.54543371487193,25.93227286444852],[-97.54617509479738,25.934220861185622],[-97.55096930091821,25.936766491609603],[-97.5558525818173,25.937237946747814],[-97.557724232211,25.93539290337941],[-97.55926811646833,25.931916916591547],[-97.55937342922647,25.92671113152454],[-97.56384878703153,25.92573720320769],[-97.56770679187025,25.927429351441333],[-97.56783288602662,25.92931348720964],[-97.56604342258748,25.931409376778902],[-97.56697211885688,25.933724042496294],[-97.5745993218523,25.935187400105065],[-97.58098631652092,25.932560078612994],[-97.58369395453099,25.933662496203624],[-97.58285952481867,25.938044526118404],[-97.5722259895864,25.94337661579948],[-97.56749428067576,25.944071621935677],[-97.56599511162,25.9453325742615],[-97.56596437430517,25.94794110178293],[-97.56790758373029,25.952513856808423],[-97.5738500931098,25.954017791391493],[-97.57470659870637,25.95350745833889],[-97.572970458405,25.949363308065983],[-97.5728805197059,25.94623068336182],[-97.57542973285484,25.942835818177116],[-97.57856102065705,25.942290086837204],[-97.57975052905977,25.944146169896896],[-97.58086479542169,25.95011162545859],[-97.58313702562145,25.95566731961253],[-97.58165693439724,25.9603370613969],[-97.58245920943176,25.962592891579504],[-97.58729989000682,25.96139127733636],[-97.59143983713352,25.961892613000884],[-97.5946745710832,25.961360736067263],[-97.5988554250797,25.956597796901576],[-97.60209520032288,25.95735545916142],[-97.60495773299692,25.96162912443657],[-97.61060333746173,25.9659616660918],[-97.60823579300364,25.970215810134334],[-97.6075137877852,25.975942207183323],[-97.60900605181195,25.97743588006955],[-97.61668058971844,25.979057979098286],[-97.61902433016229,25.98195491531527],[-97.62032725173952,25.985118241888927],[-97.61974531738394,25.98761050740967],[-97.62284866202486,25.989580630970636],[-97.63043377228814,25.987885367334684],[-97.63361297912974,25.988818380688542],[-97.63465475690305,25.990691971734066],[-97.6332910422725,25.994614024559155],[-97.6316975490941,25.99632813829777],[-97.62656425791101,25.995530223210665],[-97.62373504767498,25.991910453092032],[-97.62185189261197,25.99156254621198],[-97.61845470470456,25.99503205319661],[-97.61762208834347,26.000294263637727],[-97.61911910298699,26.002975785899025],[-97.62191467087655,25.998506507810077],[-97.6251715641215,25.996423885918432],[-97.62840259133617,25.9975558564812],[-97.62629731428927,26.003050186024723],[-97.62713381555687,26.006113049234727],[-97.62990443651523,26.005637866833922],[-97.63193139376108,26.003236139442038],[-97.63240457241665,26.000935006656732],[-97.63566784616467,26.0001396200189],[-97.6412408712572,26.005209568663304],[-97.64593069544424,26.0068981415356],[-97.64956516620146,26.011003328722552],[-97.6490365252564,26.012593128729236],[-97.6400680229379,26.011913668461602],[-97.63683139090716,26.01518014100668],[-97.63711979825524,26.0196590612087],[-97.63905900153156,26.023058876723155],[-97.64514906476177,26.027894727736452],[-97.64999873405225,26.024383143647867],[-97.65091888246235,26.02091014892619],[-97.65004920519027,26.018321256066315],[-97.65087348863125,26.016162095805214],[-97.65263267120417,26.016178480403255],[-97.6557009193831,26.01918818783963],[-97.65919211140249,26.020280747060497],[-97.66434333788322,26.019165140686425],[-97.66790564742377,26.019162355641015],[-97.66741209840654,26.02453661797466],[-97.66256258690731,26.02804720817346],[-97.66083800988753,26.030728652582923],[-97.66047813578075,26.03383524822283],[-97.66261399396626,26.038076479091217],[-97.66425553685457,26.036342530636375],[-97.66450507267473,26.031432749333078],[-97.66724085638248,26.02888278080377],[-97.66903540832743,26.029392183063862],[-97.67043189358799,26.033610343673274],[-97.67275504101059,26.034055366618702],[-97.67601153932952,26.031174519971046],[-97.67568757039965,26.02947633315091],[-97.67346092306423,26.028478003545274],[-97.6756561295233,26.02582495704263],[-97.68207763812518,26.026111910561156],[-97.68756943724452,26.027302874691486],[-97.69208039315589,26.032282429002635],[-97.69385900812676,26.03138574625183],[-97.69358197710227,26.027047622803934],[-97.69040322835963,26.0230757204709],[-97.6906043929647,26.01957323666801],[-97.69265939812362,26.018941793476188],[-97.69782070148432,26.02468793772323],[-97.69697918848857,26.030645943762693],[-97.70152310003738,26.030679940008838],[-97.70290444293602,26.031442127693367],[-97.70416037641672,26.035430412503672],[-97.70743874766987,26.037750508628676],[-97.70940159170436,26.033223756708367],[-97.70912143094131,26.02913001548376],[-97.70983901270148,26.025840256080357],[-97.7146367231374,26.02540015272575],[-97.71904429498983,26.02335290405756],[-97.7215739914891,26.024074155150345],[-97.71883270621254,26.027349923853023],[-97.7184272795684,26.029791278256653],[-97.71973138248109,26.031025254831093],[-97.72804931652456,26.030872689669366],[-97.73144541460812,26.03176571206137],[-97.73548080730876,26.031752119962903],[-97.735271032362,26.028441502229555],[-97.74277701332926,26.029694180124295],[-97.74800318317097,26.026113073679312],[-97.7493077420819,26.027330546209555],[-97.74840658668876,26.02946054653927],[-97.75008407763187,26.031260272705424],[-97.75285996730241,26.03139844813404],[-97.75878837291066,26.026238631478464],[-97.76108790641973,26.025508634900802],[-97.76419453244188,26.028371295316163],[-97.76250149325313,26.04046462566697],[-97.76385637998845,26.043801356758593],[-97.76875471008316,26.047525680850583],[-97.77616278805289,26.045078535931168],[-97.77702645166141,26.04360248581702],[-97.77569573170888,26.039535857945054],[-97.77004405873004,26.037186299293808],[-97.76934005069995,26.035452460229976],[-97.77346279953895,26.03406036341886],[-97.77575861292075,26.03197720376056],[-97.77628767181932,26.02968341810174],[-97.77825864467854,26.029308886090462],[-97.78183894557469,26.033772576604008],[-97.78801815181089,26.033123638561676],[-97.79172778452102,26.03379597970354],[-97.7944156574585,26.035692990256848],[-97.79788318899773,26.04082039522251],[-97.79753048834743,26.043555867706914],[-97.79404081355813,26.047469581289306],[-97.78976481259451,26.0472707808691],[-97.78876053622542,26.048387032859125],[-97.78992244181859,26.05126553662052],[-97.79327667730041,26.053363707298956],[-97.79695276184793,26.052220762074796],[-97.79921734621922,26.05320121523755],[-97.80021677370098,26.059355394192096],[-97.80253900293872,26.06015882112564],[-97.80866465389664,26.057801947740472],[-97.81126736215549,26.05525615885159],[-97.81241271267857,26.049074878348847],[-97.81110117765638,26.046651786492646],[-97.8114319425315,26.04451382505897],[-97.81474102881702,26.043937996832597],[-97.81645918104198,26.045402679719757],[-97.814642946106,26.0519207657386],[-97.81549761960207,26.054903260426443],[-97.81822176492551,26.05647774015972],[-97.82584631618238,26.05582279007814],[-97.8276167462268,26.05204668063277],[-97.833142203433,26.045642114731663],[-97.8357807666012,26.047162941066233],[-97.83613795746487,26.050850867682755],[-97.83812316389049,26.05274134091087],[-97.84286264449776,26.053577956852166],[-97.84727545374386,26.05237453469846],[-97.85153913157279,26.052017295833082],[-97.85748078482351,26.053470099782942],[-97.8612448106939,26.05342158589633],[-97.86235812517299,26.06097640666087],[-97.85995381262222,26.064041852611126],[-97.85942484711813,26.066688570352085],[-97.86040860261528,26.069516209030837],[-97.86273444630558,26.0698442286066],[-97.86407852148756,26.068234262377132],[-97.86854873033809,26.056973650811983],[-97.87068418996637,26.057621115798838],[-97.87392456489295,26.062373400162016],[-97.87682671364757,26.0646233461498],[-97.88771083766727,26.06650126775412],[-97.88880620192475,26.061406259203977],[-97.89351997186145,26.060033895986066],[-97.89926411623833,26.061235183136887],[-97.90394879343563,26.060292764700932],[-97.9096289021461,26.056738882130333],[-97.91409125490327,26.05638140063013],[-97.91785670751136,26.0578876088112],[-97.92110631963948,26.057581916931383],[-97.92746313361994,26.054972438918185],[-97.92912675850266,26.058683802265136],[-97.93057251054256,26.064497311255764],[-97.93364292976213,26.06555700831052],[-97.93585514719678,26.064481326751377],[-97.93726681376319,26.062095530178283],[-97.93193334356062,26.05831956909617],[-97.93125338301763,26.055446368434787],[-97.93237087516661,26.053645299426535],[-97.93635057897148,26.05274554278367],[-97.93899706721669,26.05462645764362],[-97.94144437470766,26.057764963465274],[-97.94605697181254,26.060942124213625],[-97.95107493032685,26.062238037978886],[-97.95631785450638,26.060583816272583],[-97.96094901441728,26.055901362909765],[-97.96205481351575,26.053333887172187],[-97.96506235571155,26.051692852670783],[-97.96861295413117,26.052353892609517],[-97.97121294801502,26.05437745652432],[-97.9735860236932,26.05758600419631],[-97.97776532033652,26.058221534701545],[-97.97935742914854,26.059928037589884],[-97.979515741446,26.06667423481133],[-97.98151394052672,26.06734010922048],[-97.98747921140728,26.06609434195849],[-97.98887130503755,26.063776804643567],[-97.98875388822671,26.060597199563517],[-97.99227635593678,26.058243590429242],[-97.99555419294319,26.06341287846601],[-97.99895923549337,26.06521225581872],[-98.00260227015946,26.06493245223095],[-98.00836392904966,26.061576035910605],[-98.01060551144826,26.05692466332397],[-98.01273082899218,26.05752600510084],[-98.01076672847483,26.06138866640299],[-98.0109045784202,26.06432368829428],[-98.01359508875584,26.06643873852471],[-98.01591904367405,26.061630220488155],[-98.02052995646392,26.058609865155347],[-98.02229111405302,26.059583470264272],[-98.02560788284893,26.066169317682238],[-98.02793023254321,26.06698367832678],[-98.0314625853668,26.064492298549453],[-98.03276085318174,26.062479736396597],[-98.0345144662956,26.055583369485817],[-98.03436460906363,26.050879709941114],[-98.03764145818894,26.045297509354725],[-98.03871301476573,26.041367290221274],[-98.04589412101359,26.044298151053],[-98.05402926127812,26.044612571466985],[-98.0602720942922,26.046302981704173],[-98.06527143022095,26.04487444339361],[-98.07051570097451,26.037304279405532],[-98.07676391356944,26.03626493117065],[-98.07843898743789,26.038014514258634],[-98.08001522050762,26.04190420399908],[-98.07578643630694,26.04249655087409],[-98.07256276983895,26.043845088970045],[-98.07025856420216,26.047608658970262],[-98.07008371370728,26.051470805663712],[-98.07167541564127,26.055667116132952],[-98.07468398803115,26.05878344787618],[-98.07556694553693,26.061312500126462],[-98.07630469266604,26.067569355803414],[-98.07942092974781,26.070816840111377],[-98.0831908965281,26.07129728129047],[-98.08555753106674,26.068802020917417],[-98.08145746369473,26.06667321536105],[-98.08105101558994,26.064744134752175],[-98.08774253519334,26.06048663541509],[-98.09358461636072,26.05864881977857],[-98.09786913605501,26.06027318119976],[-98.10094889897891,26.06457122140523],[-98.10415862881274,26.0674763952058],[-98.11669934294531,26.06514137601374],[-98.12185502266215,26.06381999236379],[-98.12410618759753,26.06215467227679],[-98.12701003350719,26.06207451007475],[-98.13033990072631,26.063463884866508],[-98.13117036650982,26.065930275826076],[-98.12817808011187,26.07259225922286],[-98.13098458977771,26.074467461824042],[-98.13435305312544,26.073118505550042],[-98.13703523854986,26.069320230389167],[-98.13656811700224,26.064055538953482],[-98.13779200879594,26.06021689263747],[-98.14337403613524,26.050617893517142],[-98.14686527013521,26.04913897730097],[-98.14918090619756,26.050978327922792],[-98.1493274857242,26.055686817132027],[-98.15140343818223,26.058225728906166],[-98.15375320028818,26.05786466520192],[-98.15930643547722,26.053332924980964],[-98.16204338369499,26.05434323156919],[-98.16217264182399,26.056495685089146],[-98.15791818083636,26.060656905013502],[-98.15802358799056,26.063591671619804],[-98.16126721531685,26.064474487322457],[-98.16535593299977,26.062802951681533],[-98.16906328090437,26.06451967042932],[-98.17226356145727,26.071593178081798],[-98.17565311947874,26.074901975864975],[-98.17868457780355,26.074674793754127],[-98.18009622757421,26.071621644718505],[-98.1805976787374,26.066150654309354],[-98.17744854763112,26.06351969764654],[-98.17655746591134,26.061304303231736],[-98.17790268729556,26.05999167357328],[-98.18010209652755,26.060460626284623],[-98.18381432272162,26.064017219423704],[-98.18707615607161,26.064394300456797],[-98.18933239750476,26.061864081716465],[-98.18982835077594,26.058006778424442],[-98.1923521744447,26.053277452127077],[-98.197485162019,26.054561268175235],[-98.19995750944855,26.05739515669586],[-98.2040532188762,26.065801326433927],[-98.2069616729384,26.06772449063891],[-98.21168737487278,26.068467710665914],[-98.21441800602526,26.070549568432455],[-98.2158948807126,26.073296223486977],[-98.2189836600989,26.075855959506384],[-98.22532682381518,26.077292002256172],[-98.23038351516544,26.07718884302227],[-98.24045139138451,26.075106865015584],[-98.2453946264585,26.072410598975978],[-98.24954927082655,26.07217147343158],[-98.25137284675588,26.07470180107657],[-98.25141810358349,26.078452086917537],[-98.25353527938034,26.08017959500438],[-98.26391116471808,26.084791676101474],[-98.26559349779501,26.08675066060266],[-98.26651620642974,26.091238395323956],[-98.26857836090966,26.093246997124197],[-98.27690890005715,26.098912246358566],[-98.28429925501041,26.100945124376494],[-98.28869552940995,26.10544300082819],[-98.28734704181102,26.1067234429093],[-98.28308578885805,26.10775917229722],[-98.27928174310051,26.1078127216943],[-98.27215501141438,26.106188888919064],[-98.2702464937284,26.107629920896386],[-98.2721093260057,26.112043409409694],[-98.27008950671683,26.115645725171646],[-98.26584211297848,26.117148431894975],[-98.26549309559027,26.11994337308937],[-98.26858402988302,26.120878576771645],[-98.2713374244916,26.117445929309554],[-98.27372200248612,26.116017949650427],[-98.27730177135572,26.116264541018722],[-98.2903751501679,26.12065446743736],[-98.29562575382897,26.12072151350918],[-98.29986846207743,26.117803182074738],[-98.30041216051819,26.115196534931272],[-98.3032319641469,26.111547302827375],[-98.30349887973176,26.109148511959745],[-98.3020434648023,26.106728059319835],[-98.29863138044101,26.105944213647717],[-98.29738994231184,26.104453539506608],[-98.29993546226336,26.10202358180328],[-98.3053380497625,26.102886332161575],[-98.30743075254469,26.105484030516493],[-98.30937632315198,26.113273309908266],[-98.31197141955693,26.115653847915723],[-98.318234570232,26.116498680795644],[-98.32130927874175,26.11832277066003],[-98.32484225361753,26.122728202144515],[-98.32551019129966,26.124849539674187],[-98.32950987865519,26.129520625925466],[-98.33585199225348,26.139189972749307],[-98.3335855161605,26.141540228012104],[-98.32673706941932,26.142163957012997],[-98.32734445033356,26.144426338288383],[-98.33421618283563,26.145593253540255],[-98.33793447742232,26.149421465216278],[-98.33867340191034,26.151997897846343],[-98.33369367203034,26.157677542489296],[-98.33308014597503,26.16146140068855],[-98.3356926405549,26.165818591709467],[-98.34010036096959,26.16683421867924],[-98.34551232186965,26.16630066365701],[-98.34765790891083,26.16380197708895],[-98.34856326348091,26.16069899809804],[-98.34868679185405,26.153588954607017],[-98.34977255048818,26.15187040289294],[-98.35284433639458,26.151107429254694],[-98.3582056320144,26.158724560229018],[-98.3584028086002,26.162021882735587],[-98.35731698028815,26.168668222448503],[-98.3591268403274,26.172341689275754],[-98.36087614673221,26.172349499706854],[-98.36722115333981,26.168506509808083],[-98.36712236933698,26.16687965896807],[-98.36434455079313,26.163007782110526],[-98.36430756575947,26.1599004264599],[-98.3663745031439,26.15766051005272],[-98.37495427931538,26.15745537525379],[-98.38445663169864,26.156792576012492],[-98.38819788821547,26.15944337878767],[-98.3914842233898,26.16575458303555],[-98.39507321840608,26.169066319483136],[-98.39778405183591,26.170485653170317],[-98.40084549105546,26.169954195946843],[-98.40294887974767,26.17440513750813],[-98.40153773651986,26.178487569583353],[-98.40214402992984,26.1809854843292],[-98.4058964295669,26.182991662447762],[-98.41517128878604,26.183310992345355],[-98.41927306063059,26.185519512317626],[-98.42502912721034,26.191361632686608],[-98.42996753597822,26.19431856674862],[-98.4414663804335,26.198187354711706],[-98.44463710433632,26.201773351081613],[-98.44400891574031,26.20468104766252],[-98.43894663922777,26.210156127428604],[-98.43878931102904,26.214884156368726],[-98.4404609281899,26.21998836992327],[-98.44254553275425,26.223249253079302],[-98.44531344227192,26.224376649763258],[-98.44875832128747,26.22354024315689],[-98.45292282211858,26.219672359357844],[-98.45340724095348,26.217307048770806],[-98.45509594625508,26.21679261549474],[-98.45635405883723,26.22288970807415],[-98.45852188834374,26.225689473570753],[-98.46155761596509,26.22599231215287],[-98.46641927648272,26.22269025202411],[-98.47184154465054,26.220367960057388],[-98.47970276300708,26.22014276428814],[-98.48291443884676,26.21754413131481],[-98.48263337643323,26.214144625147014],[-98.47867047190584,26.209277948972613],[-98.47748633249785,26.20315644818669],[-98.47840839812,26.201630541975362],[-98.48140103769452,26.200621851682286],[-98.48338391704903,26.20269238036269],[-98.48137971886581,26.205428190544126],[-98.48174163713662,26.2087987416769],[-98.48388107239754,26.212034955128104],[-98.4887220298179,26.2131689931075],[-98.49353968431672,26.212288015013996],[-98.50149564033052,26.209014647393133],[-98.5065460106174,26.208802448501274],[-98.50690741141159,26.212469099391228],[-98.5031929796661,26.218621993889826],[-98.50033630890101,26.221138504946225],[-98.50057348423763,26.22232883817469],[-98.50528017293908,26.22335726191568],[-98.51046244437072,26.22674923343766],[-98.51587016178865,26.22647638846331],[-98.52045341031175,26.22315589460635],[-98.52110907903727,26.220852038540272],[-98.52377505701628,26.220739602048354],[-98.52696792835081,26.22455594324714],[-98.52671084967795,26.227116482677218],[-98.52514019047021,26.22932025829664],[-98.52138090235326,26.232428685751813],[-98.52233693325985,26.235684649992436],[-98.52610012062848,26.233546219507787],[-98.5282742367138,26.228607988472504],[-98.52980965596441,26.22710806804446],[-98.53409798865681,26.22530157139994],[-98.53664872887867,26.22710605353342],[-98.53946405088396,26.234710717605253],[-98.54500599351252,26.244753425309398],[-98.55115950040192,26.246257165255486],[-98.55548053965765,26.248105160778834],[-98.55855619983947,26.246633928961785],[-98.55766092067773,26.243924178081556],[-98.55276829135119,26.241675637248363],[-98.54794649227762,26.242048872191276],[-98.54628113229643,26.24097552166171],[-98.5457406384923,26.236528095720757],[-98.54830862692774,26.233987486892374],[-98.5552352919006,26.232339117638674],[-98.55758148371342,26.229967576763556],[-98.55867273834087,26.22624305760735],[-98.56166963505791,26.22406758546606],[-98.56384520816545,26.225482180761162],[-98.56477916146184,26.227766899283097],[-98.5640237021143,26.23445817222222],[-98.56521676379379,26.240393096833884],[-98.56881998110038,26.241787584465385],[-98.5731048393414,26.2394701298482],[-98.575679288591,26.23501133132868],[-98.57727320544956,26.233583850368177],[-98.58009400554067,26.235395774290055],[-98.58185490212293,26.239964591062062],[-98.58508847411719,26.24435095517913],[-98.58397012072487,26.24662058749982],[-98.58113639133802,26.24828720495219],[-98.57915996593607,26.251194384154644],[-98.5794220579474,26.253209934057963],[-98.58277698906875,26.256423990126393],[-98.58572971425104,26.25767069123333],[-98.59770574432378,26.258069138635904],[-98.60454902076447,26.25521280712394],[-98.60781670349252,26.2531696511723],[-98.61057539241426,26.25352241116758],[-98.6132846013478,26.25181127812607],[-98.61480846824111,26.247033256627105],[-98.6184695166857,26.247721343943113],[-98.61908038497631,26.25338454484813],[-98.62265855301035,26.259839797524364],[-98.62441233933566,26.259740432200772],[-98.62723897993726,26.256025857192128],[-98.63210076949247,26.25243212645438],[-98.63317618498667,26.250332811482394],[-98.63305003947892,26.244013397820197],[-98.63552753660912,26.241953081367456],[-98.6410748695962,26.24199146938838],[-98.64793171156617,26.239969196984475],[-98.65278600077482,26.236500902892544],[-98.65646300143743,26.235702768757733],[-98.66304415520943,26.235234502734272],[-98.66900476984426,26.236222312045584],[-98.67577846640631,26.240583086507115],[-98.67820429571742,26.24361801579829],[-98.67963025233644,26.248595659724344],[-98.67773786703304,26.255579487995192],[-98.67800285187406,26.258049776619202],[-98.68031558551883,26.262230222113658],[-98.68403356764907,26.2644603616489],[-98.68757424729694,26.265294487189124],[-98.69336914380955,26.264856226198788],[-98.70059633583548,26.265781136368048],[-98.70752606273487,26.268061404516743],[-98.71151013811203,26.268545540369928],[-98.71892186530181,26.271790620371235],[-98.72002691841715,26.27584287046284],[-98.71832551874229,26.277659978666463],[-98.71287288107175,26.27903503533554],[-98.7090806925226,26.278784596999344],[-98.70624029591937,26.277451202816337],[-98.70161298198246,26.27751678366002],[-98.69967497757966,26.280439912995575],[-98.70103572613283,26.285559840643316],[-98.70364316825561,26.28779860686069],[-98.70904934045234,26.28909638333687],[-98.71382485967285,26.286290248186106],[-98.71668084321453,26.286126057248623],[-98.71897322533766,26.288222875952897],[-98.72154368252404,26.294854874666157],[-98.72347256053575,26.296785403624142],[-98.72810144068876,26.299003372482332],[-98.73330245274326,26.298939775178724],[-98.73707408174482,26.29733916004517],[-98.74058306297007,26.294302988596485],[-98.74533668512572,26.29397344172014],[-98.7509190570816,26.296011614265524],[-98.75253796780032,26.299357477456113],[-98.75636500210248,26.303571021025277],[-98.75498060653399,26.307587845562296],[-98.7507689308784,26.307777607759363],[-98.74458848760196,26.303269061502306],[-98.73937678482247,26.303052013717604],[-98.73612625556694,26.307179503919656],[-98.73632323464238,26.310530930646166],[-98.73909783950774,26.313979662522286],[-98.74423089479433,26.31494321762483],[-98.74806931413866,26.320239441713625],[-98.74978665850739,26.32535672527746],[-98.74903320467024,26.32870641603739],[-98.75140494077016,26.331574563953552],[-98.7564143478524,26.33073644710811],[-98.76331605448257,26.32638497286655],[-98.768600264746,26.325014384233555],[-98.77623559077199,26.325285935165027],[-98.78788866843729,26.330039431469118],[-98.78927577911725,26.332235218530627],[-98.78790401575782,26.33464485601968],[-98.78800022511996,26.33769741635058],[-98.79286502511462,26.3431346795968],[-98.79578772910304,26.34756831812672],[-98.79756124647213,26.35344627021675],[-98.79808665439771,26.359042232644583],[-98.79927931545296,26.36202754381742],[-98.8023057448404,26.365836911053464],[-98.80539138409938,26.367926048895185],[-98.81107312632889,26.366143686865883],[-98.81507457277263,26.36621782064782],[-98.81804556433974,26.370064985106637],[-98.8208932740792,26.371239104825065],[-98.82635502958493,26.369896531029497],[-98.83141019646189,26.364192652672443],[-98.83768012746452,26.360573942001054],[-98.84203564793546,26.358830013273064],[-98.84720939425841,26.358812831860348],[-98.84889002941213,26.359985116029122],[-98.8511997903808,26.364461565653073],[-98.8560152655067,26.36591642759879],[-98.86083126987222,26.366233480543258],[-98.86569453067852,26.364902217648478],[-98.86906686648967,26.3628356997541],[-98.87770028572606,26.361067738917313],[-98.8893262099565,26.35704289606207],[-98.89613322611496,26.353081085644362],[-98.89732690806676,26.353514672340168],[-98.90086441937865,26.359273210576305],[-98.90101430653925,26.362692954099316],[-98.899302219871,26.365337423754113],[-98.90091369484367,26.370453006134426],[-98.9034102863913,26.372130058946937],[-98.9115691276275,26.371830848881473],[-98.9166886935302,26.37390806824959],[-98.92222692642326,26.37881670236476],[-98.92397316939883,26.38224338340217],[-98.92414760229673,26.388237958992192],[-98.92347318300546,26.391907870788714],[-98.9258057402593,26.394335407665437],[-98.92894192217153,26.393717414125376],[-98.93319701419034,26.3891524414189],[-98.93577468385217,26.38431585336633],[-98.93407159257623,26.3757131853219],[-98.934944689919,26.372977655988564],[-98.93765028394688,26.37029451478105],[-98.94324145747999,26.3694372732416],[-98.94617211486042,26.369828612836443],[-98.94928102842147,26.371505204173843],[-98.95582759539809,26.37683027031568],[-98.9560587736857,26.3798542288327],[-98.95345691980935,26.384122069500904],[-98.95309946085865,26.390338725776928],[-98.95386298332329,26.393597898952862],[-98.95546839025343,26.39529684127234],[-98.96346015457863,26.39889194771439],[-98.969100656965,26.398798428862165],[-98.97438677096318,26.401306770034637],[-98.97869214256417,26.400013715098623],[-98.98269624126505,26.395426329363318],[-98.98692703509471,26.39196210898524],[-98.99112267755709,26.391369381417917],[-98.99826552038513,26.393866701391687],[-99.00149029844147,26.39411641143647],[-99.0079050552805,26.392368258764293],[-99.01276345393427,26.393054938393846],[-99.01441820342035,26.395452761839636],[-99.0175570346542,26.402153456669566],[-99.02093830403237,26.40656289028368],[-99.03030535958726,26.41223946479016],[-99.03728860564661,26.41356836301702],[-99.04424487695786,26.410880370413224],[-99.05416676049174,26.401737872546903],[-99.06181823734562,26.397666923459383],[-99.06835581992755,26.397661371500135],[-99.07402472887242,26.396916143166493],[-99.07936508339003,26.397319051530076],[-99.08152758768239,26.39656203376336],[-99.08510777942143,26.39846917960125],[-99.08769604516425,26.40323121478201],[-99.08844616481485,26.406867816929037],[-99.0898177302351,26.408632384418183],[-99.09600908929787,26.411823950395558],[-99.09969010227684,26.417533431902655],[-99.10257014005344,26.419154476642007],[-99.10618126294952,26.423677733032264],[-99.11100496829545,26.42645203125221],[-99.11358891569415,26.432523715430364],[-99.11352522897397,26.43480547408211],[-99.10500966461143,26.439056519436576],[-99.10265828490645,26.442407410953535],[-99.10252131863746,26.44750840222099],[-99.10095718524246,26.44973673381753],[-99.10013318766084,26.45312508618514],[-99.10055927944359,26.45827902516595],[-99.0989319631488,26.46215056217551],[-99.09462686033686,26.46685702763483],[-99.09261722526821,26.470322970682957],[-99.0916155821489,26.476129203648668],[-99.09922947601575,26.488951534307773],[-99.10013416428086,26.49172883909995],[-99.10618789662146,26.50208577461774],[-99.11108606467093,26.50670152673706],[-99.11787092776689,26.51601320433656],[-99.1222238028671,26.51925496577485],[-99.12844500072367,26.525781276192276],[-99.1349468317855,26.52622815870035],[-99.13698666710422,26.527396382893983],[-99.14440929360404,26.528307573424854],[-99.15059119640216,26.530298782084515],[-99.15343834201468,26.53063908605401],[-99.16153302197051,26.53484383640955],[-99.16788929259974,26.53695641547006],[-99.17151861860486,26.543152063360253],[-99.17119050322555,26.550350665379256],[-99.16856946018135,26.555565688377442],[-99.16731329594205,26.56004410528334],[-99.17816571318497,26.620895706658587],[-99.19997669103748,26.655792822697947],[-99.20962961653606,26.693595469876016],[-99.20860342849573,26.7244489421999],[-99.23961975704526,26.745261767719455],[-99.24249360487295,26.78731329860517],[-99.26201747196717,26.814908771310797],[-99.26801995316248,26.842628792139067],[-99.28049896273137,26.858088582834853],[-99.29457003589675,26.86498160701882],[-99.30990985802566,26.864243423579467],[-99.31714156982395,26.86546181593502],[-99.32326050961149,26.873030880441206],[-99.3251904698181,26.877258782357046],[-99.3279951111291,26.877781341982484],[-99.32876379031637,26.87964972975942],[-99.32705485604049,26.883930102534976],[-99.32628429923864,26.88961905472746],[-99.32121717196122,26.906559912745365],[-99.32233160919367,26.9114649497717],[-99.32422098420295,26.91594539268209],[-99.32869994460265,26.919654208938482],[-99.33702220311272,26.92339858034626],[-99.3458734353656,26.9245784469951],[-99.35116496976542,26.927859044686898],[-99.36555784054934,26.929023771301445],[-99.37274817411446,26.931382067616823],[-99.37847674953798,26.933929531279432],[-99.38502061659102,26.939602654314058],[-99.38789426106325,26.943518928264155],[-99.39375707091801,26.96022702253157],[-99.39225117877947,26.964235435153],[-99.38100739024173,26.97043274949948],[-99.37788646982716,26.972923760111655],[-99.37646899358117,26.97685167668942],[-99.3786363477272,26.979749841932687],[-99.38471945666049,26.980614292732355],[-99.38713856405417,26.982049185494645],[-99.39207754491406,26.98729875911829],[-99.40296744095355,26.999756364358802],[-99.40538288381981,27.005333541548907],[-99.41176542329043,27.0137112633152],[-99.41541270682217,27.01737567918866],[-99.41953998201825,27.017810570017446],[-99.42140192190561,27.016750496753787],[-99.42640457894043,27.01144430122548],[-99.42984984776558,27.01051858224332],[-99.43608560196765,27.01252915970946],[-99.44452742876803,27.019315485126583],[-99.44565838249042,27.02413019143404],[-99.44401521796391,27.030430094686608],[-99.44374947959642,27.034198325141233],[-99.44557804612788,27.04433310265125],[-99.45038270516045,27.05334184577481],[-99.45189675952093,27.057548024246273],[-99.45270752278384,27.06406499401419],[-99.45133713328562,27.06674946257118],[-99.44528861914756,27.072356865369272],[-99.43937245849861,27.07557475364314],[-99.43557369762368,27.07898040745914],[-99.42866104494061,27.091592757222486],[-99.42956118904777,27.094172556721503],[-99.43464500544286,27.09820951540513],[-99.44249417634842,27.106024579263533],[-99.44142966687775,27.109746012229436],[-99.43390544723741,27.118416746420337],[-99.43130774267127,27.123075376453926],[-99.43095628248642,27.135929499144424],[-99.43132039908932,27.137755757826653],[-99.43773782235519,27.143894507959033],[-99.43989425922302,27.14793586008119],[-99.44002148701531,27.151146460562984],[-99.43647869772201,27.1551183953581],[-99.43313758679221,27.156412358024],[-99.43008785088892,27.15916635586251],[-99.42793682905523,27.166742353435268],[-99.42639838061723,27.174749934576198],[-99.42633530249805,27.177825618306258],[-99.43134601610325,27.197592201415773],[-99.43303644397622,27.201846243700118],[-99.432545496231,27.209506690043156],[-99.43309088670497,27.210752055146088],[-99.4425122093993,27.21797743334639],[-99.44536900746266,27.223178557197286],[-99.4451888745171,27.226130764338393],[-99.44368806458704,27.22943756793876],[-99.44151963100427,27.23650542705434],[-99.44124390955398,27.242342838942818],[-99.4415881077698,27.249988413696883],[-99.44567008454567,27.256163593954852],[-99.45299888009953,27.26447030746465],[-99.45541919679056,27.266169652510087],[-99.45782242954749,27.266034260563572],[-99.46195191328604,27.268386904375973],[-99.46451012334717,27.268267952374117],[-99.47168352099192,27.264862716019707],[-99.47310572056682,27.2635199021351],[-99.48092797023907,27.259826691187868],[-99.4847037468158,27.259413648673217],[-99.48730930138055,27.26028066186865],[-99.49194554907262,27.263578065384763],[-99.49435593672172,27.26652720845425],[-99.49642245222816,27.271130122916475],[-99.49500710688841,27.276797128345095],[-99.48901009708925,27.285934782675895],[-99.48756025486972,27.289442708444994],[-99.48759022035784,27.294214308256585],[-99.49331628350194,27.301328240174655],[-99.49460391975344,27.303764218047377],[-99.49781030411776,27.305419674973393],[-99.5049358750772,27.306071057090207],[-99.51102206625535,27.304122255725304],[-99.5218541444246,27.303742904411365],[-99.52551335303724,27.305120907505227],[-99.5295854146978,27.305721720302586],[-99.53671369420101,27.312503029893435],[-99.53800125696955,27.315841036292227],[-99.53750492893539,27.317852697394983],[-99.5348324910596,27.319851765944975],[-99.53102151963361,27.324127546919726],[-99.5244659458433,27.32401462131827],[-99.5216628566086,27.324643161828533],[-99.51448704392715,27.329511939371287],[-99.50598284640654,27.336584544354935],[-99.50435055803649,27.340047842820866],[-99.50685568816914,27.345548513494123],[-99.50795853998221,27.352735150712817],[-99.5053533273504,27.3590732192809],[-99.50370536876017,27.36472660492143],[-99.49902913374797,27.37308410453079],[-99.49671134485368,27.37471210053525],[-99.49302762263324,27.379251739424944],[-99.49182523140149,27.38294480399287],[-99.49278484185515,27.39198427884014],[-99.48946376123035,27.39913279929732],[-99.48777417722857,27.41301002071816],[-99.48956532314389,27.41726550771989],[-99.49102869258667,27.42483256582625],[-99.49442128456747,27.433575677825615],[-99.49594681621039,27.440406436371575],[-99.49533635754136,27.446578303280887],[-99.49261915117756,27.45477617059902],[-99.48671468088094,27.46159712807571],[-99.48306995784833,27.467816436688338],[-99.48239850471452,27.47543597233522],[-99.47880633038676,27.479124942369197],[-99.47946655101379,27.483672677251207],[-99.48134761275776,27.489094140660598],[-99.48469425054833,27.4926439842381],[-99.48861413507763,27.495352149690177],[-99.49383990534517,27.497770540868316],[-99.49663748804403,27.49799427825161],[-99.50147007588157,27.50014529405837],[-99.51062573434785,27.498911307294577],[-99.5144222037764,27.4992533023119],[-99.52038126714348,27.49694408789844],[-99.52569710445107,27.49663836291893],[-99.5281876482482,27.49815322141353],[-99.52814724260753,27.500996764742524],[-99.52497561506033,27.51220765742835],[-99.52555486860342,27.521707134152734],[-99.52247891860543,27.53300108999383],[-99.5220101677179,27.544304747486706],[-99.51947122904011,27.551525106321947],[-99.51818117911785,27.553627974867027],[-99.51325127392863,27.557819245282587],[-99.51281111716992,27.56200332416489],[-99.51154920374643,27.56608201889759],[-99.51585577915284,27.571902464970435],[-99.52068606148839,27.5737657448974],[-99.52795258992478,27.57826902249286],[-99.53083126595214,27.58210994988127],[-99.53539916751203,27.590856155907318],[-99.5362770110155,27.595085257446556],[-99.5385564363304,27.601395085256627],[-99.54125904283467,27.605551980587336],[-99.54878186537735,27.610153149673067],[-99.55483126781047,27.61440993595977],[-99.55797551587034,27.612109807838692],[-99.55877215035406,27.608514761599167],[-99.56125786280677,27.607130284347193],[-99.56999411976824,27.60514169501812],[-99.57800611658053,27.602193795899495],[-99.58241341320019,27.602526490446962],[-99.58452026079988,27.60373667750315],[-99.58433679424354,27.606025094713004],[-99.5796781694417,27.607272406090544],[-99.57682544507378,27.610973991721664],[-99.57695106312127,27.61749247858836],[-99.57830436000057,27.61963489461482],[-99.58312042248252,27.62091531109769],[-99.59084928088453,27.627056749998417],[-99.59224082650752,27.62881124535204],[-99.5926292135058,27.635533222773518],[-99.59590431655153,27.63976376152783],[-99.60317050943183,27.64198826038546],[-99.60572843317647,27.640743656483608],[-99.61076644751887,27.640501715115818],[-99.61274379720419,27.638112312758096],[-99.61585674051372,27.63739934033015],[-99.61879035576925,27.639532678594037],[-99.61989412388203,27.643024594046494],[-99.62171610746134,27.644101746422507],[-99.6251574993941,27.64394172574066],[-99.62653228776571,27.642609244340065],[-99.62736969324584,27.63930850874266],[-99.62313700538061,27.635476559468486],[-99.62320035126868,27.63334424297534],[-99.62800332769308,27.62963308738472],[-99.63741828831274,27.626817099057178],[-99.64045216163356,27.627182756077218],[-99.6495777786646,27.630565306462472],[-99.65234542220372,27.6292295397638],[-99.65546727940875,27.629259643562705],[-99.65932069947638,27.631639400863946],[-99.66007101079907,27.63304309791414],[-99.66539166658322,27.635349195406093],[-99.66629230119844,27.636405943587306],[-99.6651900693613,27.640600879411124],[-99.66134388594747,27.642531521922365],[-99.6583355742838,27.647127707669938],[-99.6582738079585,27.650402893952844],[-99.66265197942482,27.656547909446772],[-99.66899980354214,27.659973179631606],[-99.67287743504022,27.660171681545023],[-99.6770645320654,27.658789944572504],[-99.67969455126348,27.658873688491326],[-99.68789024021936,27.662272558189215],[-99.68947471169184,27.66502351694851],[-99.68933183673465,27.668183371980376],[-99.69123435965724,27.668945781556374],[-99.69686281309043,27.663009458323756],[-99.69875395598802,27.655842405363217],[-99.70365484920421,27.65497381404026],[-99.71043251278633,27.657658440236617],[-99.7159386531552,27.662084517122082],[-99.71848093695985,27.663507828116792],[-99.72258874389962,27.667391055623625],[-99.72469184308409,27.67547476387557],[-99.72814673160735,27.679126215243855],[-99.79331743007538,27.636464800470435],[-99.86014995769011,27.59265584578236],[-99.9264182709108,27.549156996844545],[-99.91915362796328,27.4915151774278],[-99.84338552432189,27.465506441917228],[-99.78476920688456,27.445352968518876],[-99.77146555743906,27.440774968633377],[-99.76037881224744,27.436958728255263],[-99.75855309313937,27.38963803328693],[-99.75528492024813,27.35590208131697],[-99.75297512035331,27.33205378784237],[-99.74767041346291,27.277247007145263],[-99.71044649248728,27.182674085278904],[-99.69530616747295,27.14416216705945],[-99.67891875286341,27.10244829686536],[-99.65891166323883,27.088189071232932],[-99.65005283368026,27.06585788598278],[-99.66269787847767,27.04410072512087],[-99.67437557133428,27.02400004808726],[-99.68034801878758,27.0137862171768],[-99.69938976197363,26.98093405770669],[-99.71859978506063,26.94777093142352],[-99.73164675716049,26.925012174690096],[-99.7341681193414,26.920612861624647],[-99.74029047966127,26.922176548658342],[-99.77013149535281,26.928418208559833],[-99.76666889907068,26.8898419059675],[-99.76438746285322,26.894101787626823],[-99.75921045287242,26.895117881980752],[-99.7591422941889,26.895158240977935],[-99.75212302962882,26.900048322199325],[-99.74766136577227,26.900243822373454],[-99.74614014206304,26.903823024964822],[-99.74743293027717,26.909102996178092],[-99.74434631736943,26.912156365512544],[-99.74161462398479,26.91082930308835],[-99.7395547124309,26.907482402998085],[-99.73306887077564,26.908748295812302],[-99.72772038148986,26.907817880213543],[-99.72764094734453,26.907795311187613],[-99.72352392182228,26.905608773510664],[-99.7241048768081,26.90340032921864],[-99.72790118261781,26.90351533654058],[-99.72633642828004,26.901417089321228],[-99.72655477621566,26.898468776505467],[-99.72267827528572,26.896915979599612],[-99.72259746887892,26.896920734061325],[-99.71858477398268,26.896224792794442],[-99.71579622442044,26.896787259165876],[-99.71252867894634,26.89587606043392],[-99.7104425950252,26.89675240326386],[-99.70998024094422,26.899275910805443],[-99.7136382320283,26.901346897798362],[-99.71339042850343,26.903370174415898],[-99.71104408036621,26.905539530134604],[-99.70852270882511,26.905657243232554],[-99.70692773931808,26.904056633549885],[-99.70347648341186,26.905473433741008],[-99.70103971390597,26.902830063885233],[-99.69888838668311,26.898516854952447],[-99.69695855836602,26.899296086368565],[-99.69689021883363,26.906990803463543],[-99.6940204094854,26.909299335658602],[-99.69162044917033,26.908599651598422],[-99.68929128590662,26.90594134466545],[-99.68552976236418,26.898092848061708],[-99.6872229098093,26.89454700701782],[-99.68208077563787,26.896045340981175],[-99.68199735036825,26.89607545116894],[-99.67629044914793,26.89453778601535],[-99.66762513151428,26.894348366439488],[-99.66489953707156,26.896520350594358],[-99.66281427448064,26.900792831312003],[-99.65951879178084,26.90001111486754],[-99.653374146136,26.896127294872144],[-99.65076519929022,26.89617889002966],[-99.64696023172576,26.894045597852255],[-99.646855902521,26.888884099816153],[-99.64538054074859,26.88600190450404],[-99.64332301141866,26.88545756566498],[-99.63901899192035,26.88619877102144],[-99.63885111146169,26.88626110655838],[-99.63539613520902,26.8886659558313],[-99.6348464745858,26.89102449783269],[-99.63003012420222,26.890290417293386],[-99.62875440298029,26.888427505840696],[-99.6305551853319,26.887651309720695],[-99.63128774419783,26.884503660819746],[-99.62931011317443,26.881603692663987],[-99.62767091958767,26.88393237232782],[-99.62563766472277,26.883659477875938],[-99.62557184359804,26.879966694748987],[-99.62789352843231,26.876257811581297],[-99.62853308525285,26.87350126773299],[-99.62735943494215,26.870663141700504],[-99.62129414373578,26.86840057780512],[-99.61500992035963,26.87065835120768],[-99.61292519318448,26.873206807814654],[-99.61027435394311,26.8730125930648],[-99.59941877331698,26.866064175751433],[-99.59104663691568,26.8625480388244],[-99.59016958143906,26.860107518352095],[-99.59346684891437,26.855631012527965],[-99.592984909716,26.853680767509502],[-99.58851545120325,26.852458899269323],[-99.58463955835845,26.848541456515136],[-99.584355987413,26.843585135621538],[-99.58169343073536,26.833979358779686],[-99.58351957176717,26.83202874081138],[-99.58086610799296,26.829306921243926],[-99.58479548806451,26.82552760426597],[-99.58692314023324,26.824621192672907],[-99.58671701166384,26.822760652187867],[-99.58920499031575,26.819883052961416],[-99.5884643453511,26.8179908413141],[-99.58989524199058,26.816437109942854],[-99.58921410028097,26.814597445386823],[-99.59123996422954,26.813493941597358],[-99.59496736846302,26.81503875930224],[-99.5983665496201,26.814838134086415],[-99.59874311616761,26.812975649265297],[-99.59706027689134,26.809607223589296],[-99.60381151009824,26.807923796942475],[-99.60505281928477,26.804501566280237],[-99.60478804767774,26.79988779875083],[-99.60713012864551,26.799669624086334],[-99.60718624861738,26.797030953042736],[-99.6097670766195,26.79361025944712],[-99.61219042178385,26.792351755986942],[-99.6130263368064,26.789413757503496],[-99.61071534372775,26.785171973211675],[-99.61143694291854,26.781936818498878],[-99.61492127152053,26.779045123265746],[-99.61535405841056,26.775397891816795],[-99.6218884625838,26.77136785765566],[-99.6225643873828,26.766933637257523],[-99.61842452609187,26.7616696608992],[-99.61614358321219,26.754363507686833],[-99.61639573510377,26.74694624988757],[-99.61734870184091,26.74116032422353],[-99.61876569395992,26.73707041061573],[-99.61808152878012,26.728296647999173],[-99.61865300575005,26.726328428036368],[-99.62161747793004,26.723199602874217],[-99.62942268702483,26.719986116651512],[-99.63171699265229,26.715830129228664],[-99.63571892702078,26.710815921284848],[-99.64306704538382,26.705675714953713],[-99.64620458622784,26.704502013967158],[-99.65108760343867,26.701443466152853],[-99.6562047433369,26.696414029519474],[-99.65997541648483,26.6897698718048],[-99.66025053331833,26.68761921748262],[-99.66296416395033,26.6841754402667],[-99.66337827233838,26.679805484513736],[-99.66257979981248,26.676997087038444],[-99.6602957664212,26.67358578018434],[-99.6591644567954,26.670365136781356],[-99.60412210052306,26.667352377248847],[-99.57451427935735,26.66569166121002],[-99.55318689049886,26.66449196727666],[-99.53833524936084,26.664595620991633],[-99.5260677782884,26.65883829566104],[-99.48101606043963,26.637681968129584],[-99.4757823335595,26.635128088570525],[-99.47181525471086,26.633192103364934],[-99.39682481503905,26.596565540039933],[-99.39972019219192,26.55877309304799],[-99.40038563369393,26.550083940266177],[-99.40416617870011,26.500694821683908],[-99.40554901342392,26.482619329298927],[-99.40983214592256,26.442836807396418],[-99.41424298715816,26.444806387277083],[-99.4157231625577,26.438029959307244],[-99.42504578553047,26.382019394339466],[-99.43094658397058,26.35130114343724],[-99.41229750377488,26.320655243589727],[-99.40123612275033,26.30479913994634],[-99.39473722548342,26.306239916321545],[-99.39280374903126,26.309924438970484],[-99.38687046524421,26.314630976210594],[-99.38584901886009,26.317146655384875],[-99.37996964341573,26.317748900227684],[-99.37699369236998,26.321597604883436],[-99.37280218231643,26.321668815219198],[-99.36882024318487,26.32434263534293],[-99.36415026039737,26.3292701611241],[-99.33878531213213,26.310096589641944],[-99.27777252454922,26.26550062140319],[-99.26000157360232,26.25284998855966],[-99.19783597437106,26.25868232280351],[-99.19336402086026,26.233268654178175],[-99.19201789285052,26.225536898573864],[-99.19094930293704,26.21903717973055],[-99.18413210235292,26.177554925812785],[-99.17100182508295,26.094494987168105],[-99.16701941087518,26.075468272961643],[-99.1619164309875,26.07026124873704],[-99.16169750526655,26.064215666341795],[-99.16053476526861,26.061573290703166],[-99.15790567434556,26.061162609986184],[-99.15542302058338,26.06226694584518],[-99.15533417598482,26.06227815310382],[-99.14888172572381,26.062182271508846],[-99.14880129469458,26.062178320853775],[-99.14424695626946,26.061369754360726],[-99.14155852139987,26.059637365346987],[-99.14229458877048,26.0559680255933],[-99.14093302310653,26.05296681225485],[-99.1356258416796,26.053594011104167],[-99.12899870076473,26.053418345612556],[-99.12431520839112,26.055360559665814],[-99.12513184657905,26.05824263824354],[-99.12860228111339,26.060629612513367],[-99.13206460485719,26.064308760857045],[-99.13158084015839,26.06832300868399],[-99.12847860347591,26.068932716200777],[-99.12088606758596,26.06630785894464],[-99.11912907881981,26.067249483906267],[-99.11909506312531,26.067318497729048],[-99.11717959913005,26.07254604839619],[-99.11545269403808,26.075409322567737],[-99.10862314933843,26.07900429709042],[-99.09766886273798,26.080746773770557],[-99.0943106025133,26.080030519833997],[-99.09425182534386,26.07997235587311],[-99.09317537424351,26.0777550034191],[-99.09631358969466,26.072383916465242],[-99.09218093980604,26.070060963898584],[-99.09009378361702,26.069829704440735],[-99.08373075681061,26.07176884273707],[-99.0768999336384,26.071775412954707],[-99.07560622965536,26.07303651385166],[-99.07639653960484,26.0752638995304],[-99.07413358195754,26.078946051236073],[-99.07070989215083,26.07930227499145],[-99.06646400330601,26.077872241159127],[-99.0663833083749,26.077893277225883],[-99.06253535137716,26.080135433745],[-99.0638887889923,26.086307070095074],[-99.06365605480244,26.089114636101385],[-99.06206789169283,26.09095892226145],[-99.05505855092088,26.09247786794748],[-99.04446318498594,26.09856432047542],[-99.04055073944693,26.096342785285685],[-99.03725274884567,26.09347021996581],[-99.0325774693593,26.093879333028212],[-99.0298707083208,26.093108769703065],[-99.02524264001698,26.0933599102338],[-99.02167906668495,26.09876652409389],[-99.02343658743376,26.102468689266914],[-99.02345664679001,26.10254447783626],[-99.023872208064,26.10410244715996],[-99.01603073607708,26.09548231777245],[-98.97885316138405,26.054591190600092],[-98.92372970199153,25.993968891684744],[-98.90075194839551,25.96832273163278],[-98.86562067393317,26.004357334056692],[-98.84936255504726,26.020974243241312],[-98.84657841649005,26.02383862325786],[-98.83433048679984,26.03643727199068],[-98.82322655382234,26.047648680340444],[-98.80970247480849,26.046010853433472],[-98.74628722219768,26.038041204451645],[-98.74672904561919,26.035181531456203],[-98.7404701622284,26.034458505031125],[-98.74115049757239,26.037355703301785],[-98.73001053285498,26.035963295011072],[-98.68967670370324,26.030915078174303],[-98.64172999266714,26.024962749474525],[-98.58512606515592,26.017917607033155],[-98.58475609209012,25.988390494628447],[-98.58424731451333,25.94441914964824],[-98.58401229907815,25.924097182402136],[-98.58332928020195,25.864997812922866],[-98.58238382231758,25.78487284011635],[-98.58218345460966,25.7695776581877],[-98.58094692382946,25.675102390920415],[-98.58035628792504,25.63730272193942],[-98.5818083348965,25.495287876047655],[-98.58175159191774,25.489361742558117],[-98.51609338114872,25.48940156571979],[-98.47695156528863,25.489412326263675],[-98.42157607786493,25.489355542794044],[-98.42313166571353,25.44749290351166],[-98.42613083318673,25.445351737958163],[-98.49838598271265,25.393727842840917],[-98.51000146100739,25.385181648746084],[-98.54670390666729,25.358260090439728],[-98.56892254684504,25.341952729330785],[-98.58191836630056,25.33292560848014],[-98.58284645227184,25.33402942543853],[-98.58525386329279,25.33232962947551],[-98.58425898790466,25.331264608576305],[-98.61320390877387,25.31017444014617],[-98.63198872774672,25.296480582724485],[-98.69388837922264,25.25117760409711],[-98.69957061478993,25.2471136717042],[-98.70922776325415,25.240074599073864],[-98.72191786456125,25.230822603890886],[-98.72194997080175,25.23079928320948],[-98.78160620677085,25.18738612363859],[-98.80189828359107,25.17269448456568],[-98.86384360896778,25.127125022615814],[-98.88812686885086,25.109451040628187],[-98.89600025650225,25.103572247925058],[-98.92380844257508,25.081916412086514],[-98.92529150039502,25.082253258842172],[-98.92955158502133,25.07706579776317],[-98.9338694518811,25.076250478046347],[-98.93231936673055,25.078939533310347],[-98.93356560861145,25.080376514222394],[-98.93524520687646,25.078402260518374],[-98.9341699420188,25.07276318079147],[-98.93765804661905,25.072909946962454],[-98.94117813037525,25.07085664992087],[-98.94188194778638,25.072298941194333],[-98.94645784036112,25.076429828110747],[-98.94638918678856,25.07426997789122],[-98.95128404182526,25.075663868682796],[-98.95540618061875,25.075975537231557],[-98.95582171505191,25.073749523234255],[-98.95737580514907,25.075794092541344],[-98.95924993493048,25.076035136025553],[-98.96057823250908,25.073732569757567],[-98.96881736948262,25.070478424931594],[-98.96839169772,25.073549190547453],[-98.9719778600242,25.07001227054343],[-98.97584671637378,25.068850840861273],[-98.97775227177328,25.069551559753734],[-98.97768666729598,25.071845613616006],[-98.98196826555477,25.070711089136864],[-98.9833238594702,25.07447855884959],[-98.98616492437009,25.0729747890515],[-98.98558019032828,25.07022929011731],[-98.98931265580745,25.067393563809333],[-98.99111076343894,25.070241938729282],[-98.99356192888354,25.06985402608234],[-98.99801482041198,25.071327169587846],[-99.0001441582665,25.07074924769813],[-98.99913928741427,25.068115064940685],[-99.00654930845769,25.067189072389965],[-99.01568067690636,25.07011931090227],[-99.01905589899468,25.069925304702338],[-99.02248351028697,25.07317034538545],[-99.01755652530278,25.07601273268557],[-99.01979222384813,25.078965818038853],[-99.01438307295274,25.08088832820431],[-99.01672798435106,25.082929568918587],[-99.01566425132557,25.086068131221055],[-99.0192901796164,25.087174352172894],[-99.02155679971924,25.090803824417776],[-99.02249262176832,25.093920797061116],[-99.02508910426667,25.092469513780713],[-99.02952248253195,25.096392821595202],[-99.02963604115013,25.099439899449237],[-99.03363665906357,25.10737513522008],[-99.029088829856,25.107945812116043],[-99.02880202574352,25.110354904025826],[-99.03323463084115,25.113078050064075],[-99.0342885890351,25.115178197684884],[-99.03413514356157,25.118697477179182],[-99.03537403125523,25.120221766242707],[-99.04028926245934,25.11990864904317],[-99.0422120929257,25.122843684101326],[-99.04389099012752,25.121224661289205],[-99.0454821692428,25.12220768403222],[-99.04793285667375,25.12028197033277],[-99.05090729518855,25.123879163672598],[-99.0508426406908,25.126137102028167],[-99.05260909467398,25.12711321316408],[-99.05423816607902,25.12381314501164],[-99.0583877898859,25.121994058749237],[-99.0603028807177,25.11753900661421],[-99.06691702456135,25.116788065815797],[-99.06838457034411,25.114704649941302],[-99.06660893976857,25.114608185008876],[-99.06661287808686,25.11182087544796],[-99.0679802480281,25.109829768899147],[-99.07251063480328,25.106988785154215],[-99.06998836991886,25.104786274247715],[-99.0705954218584,25.10226523556736],[-99.07500218490509,25.102392000576174],[-99.07760066376522,25.101668121423415],[-99.0778305013518,25.099204496241896],[-99.0715596833536,25.09721556456475],[-99.07314576458441,25.09336856632268],[-99.076535942683,25.093470729354635],[-99.07876374959494,25.092120405559626],[-99.07498005513929,25.08849535507818],[-99.07561876094621,25.085268977129203],[-99.0799826262247,25.083775806877725],[-99.0788920558544,25.078947034739144],[-99.08172353057046,25.076655107206932],[-99.08203761433901,25.073634935320683],[-99.08436824858472,25.07635434475486],[-99.08680622680515,25.077181112015012],[-99.08954633942847,25.075868293247538],[-99.08936347169424,25.077996374041447],[-99.09720972131362,25.07838264500117],[-99.09763367312621,25.076861201206782],[-99.09482154949535,25.07634876020336],[-99.09467236565195,25.073611820238398],[-99.09833381927456,25.073305350152623],[-99.10138834297334,25.069819392723616],[-99.10083492553565,25.06813765276371],[-99.09751882647998,25.067964902936296],[-99.0955414268322,25.065030580352982],[-99.09744015031305,25.0632392465115],[-99.099443025222,25.0647212601732],[-99.10091636651009,25.06242906247735],[-99.10419623509597,25.061816777711897],[-99.10626986541172,25.059532016131072],[-99.11137184437973,25.059094574959772],[-99.11326461096832,25.056320562746407],[-99.11579881834632,25.05597437081616],[-99.1201700933666,25.057310476858333],[-99.12345348037684,25.055921768231656],[-99.12455646376725,25.0543712572495],[-99.12779541990955,25.055682125351893],[-99.13090817841652,25.05188842142917],[-99.13260027233838,25.05333254740674],[-99.13509279773183,25.050380022447655],[-99.13785671877713,25.050681927778044],[-99.14029985222061,25.053475493029737],[-99.14312026965939,25.054117197558185],[-99.14486902888945,25.052706311679117],[-99.14933581459599,25.05515758843279],[-99.15341658689209,25.054950870675555],[-99.1572782213027,25.05647750928381],[-99.16071961612766,25.055128626047235],[-99.159989022111,25.051028653387164],[-99.16227860260074,25.04705975439498],[-99.16698403644978,25.046486846379707],[-99.16346479284073,25.04464707336524],[-99.16265554548767,25.041337761286798],[-99.16401818968791,25.03820949651356],[-99.16361118774472,25.034924053070938],[-99.15915294567111,25.031677641756914],[-99.15663649953979,25.02879569106375],[-99.15944111696069,25.02587396476372],[-99.16277385599778,25.027337792276967],[-99.16490474971505,25.029511397538442],[-99.16802169575749,25.025941640969336],[-99.17037798582038,25.025450505564436],[-99.171514648389,25.02376158716413],[-99.17098474070497,25.020571772728943],[-99.17532474063813,25.018197717628198],[-99.17769001751259,25.01804215661025],[-99.17902217205778,25.01605024866234],[-99.1795281948967,25.012548575918913],[-99.18094953556283,25.01154155228113],[-99.17988582101208,25.005376007444625],[-99.15894290592263,24.91598816550868],[-99.19436728108928,24.876109524639844],[-99.20743334932945,24.861392154552618],[-99.202872244599,24.846280147317884],[-99.19640077510559,24.824442293883294],[-99.1932574087549,24.813292223034637],[-99.18197126023153,24.776041056110557],[-99.18865312151473,24.78067960450005],[-99.21288547329056,24.77167484308228],[-99.24048972308856,24.782605980915775],[-99.24839353492865,24.785734608401754],[-99.29492848561165,24.804143707343712],[-99.29537034803917,24.800619324567833],[-99.29712052606624,24.797865999103863],[-99.29658940729843,24.794781927623546],[-99.30207582601571,24.79294003704763],[-99.30327183488492,24.791442505251325],[-99.3075216278483,24.79159134659409],[-99.31052214668836,24.787357746485384],[-99.31454819480177,24.78936731870442],[-99.31762898434789,24.78992811576495],[-99.32202804296429,24.787236062247246],[-99.32711069813746,24.78215289759146],[-99.32923126769447,24.77785364575658],[-99.33166528688372,24.776243110503344],[-99.33390733628471,24.77633937602883],[-99.33719133883386,24.774247134968107],[-99.34333464095039,24.773299136101116],[-99.3462447670949,24.77364707538669],[-99.34784137947065,24.772659699697385],[-99.3550312896312,24.771684943949822],[-99.35832757075394,24.77254584639178],[-99.36421270471942,24.771845153684694],[-99.36699782350962,24.76877453928762],[-99.367880079484,24.76556058994612],[-99.37205603005327,24.76563418149533],[-99.37272853008733,24.763377983872317],[-99.37637320377667,24.76144339540423],[-99.37754111126623,24.75771488202122],[-99.37990662266276,24.756127442180627],[-99.3818772898768,24.74688450143276],[-99.38595024671304,24.74506351522666],[-99.38913437242104,24.7399394742028],[-99.3912822617404,24.739361634850127],[-99.39813180654289,24.739674880447012],[-99.40050636109612,24.73712413641755],[-99.40628073971999,24.734574486350425],[-99.40869950788596,24.73453553234316],[-99.41026380572191,24.73607935282081],[-99.41491232344117,24.7352155232158],[-99.41629298429848,24.736067272397406],[-99.42304278516525,24.736697015167522],[-99.4268611500379,24.727676601555515],[-99.43044310880981,24.72587093237371],[-99.4358953090657,24.72632356209641],[-99.4376879398439,24.725332719822063],[-99.44128126526147,24.72728466135152],[-99.44259623655512,24.726836310444355],[-99.44710336223972,24.73054997665622],[-99.4472768282908,24.731966770578424],[-99.45048285411536,24.730995693435432],[-99.45063861786264,24.72846946022935],[-99.45249245404364,24.728509277764033],[-99.45556332067707,24.72528572263525],[-99.45946137931674,24.72491923982267],[-99.46042164217567,24.723241618131283],[-99.46675050932981,24.720185889207528],[-99.47104386828016,24.7148808700245],[-99.47510803912479,24.712865962708292],[-99.48234810555687,24.708021790973817],[-99.48485006709359,24.703491005536648],[-99.48683165544918,24.703253429238828],[-99.48834949551349,24.699799337678485],[-99.49092184396545,24.698970873970893],[-99.49242456259896,24.696477610030684],[-99.49126739804058,24.695300630193174],[-99.49279840060399,24.69338738586754],[-99.49413240998223,24.687995564852656],[-99.49809112865421,24.684426943783762],[-99.50075202173065,24.678410634149145],[-99.49982058056708,24.67660704844309],[-99.50059189230842,24.673004103881],[-99.50057467594326,24.6659853121414],[-99.49958687944604,24.661127628984673],[-99.49779995448188,24.658002306383082],[-99.49780702010008,24.653076848610795],[-99.49603208924606,24.650910069796282],[-99.49805356868956,24.64830940084886],[-99.49837615130912,24.643966411080896],[-99.49972127266454,24.6410146987169],[-99.50182462142459,24.64071656888484],[-99.50468861537468,24.6383770254929],[-99.50870475444657,24.63746863921949],[-99.51282781031972,24.63448145039058],[-99.51851363052691,24.634067912946648],[-99.51860682381675,24.634064070162765],[-99.5203393062173,24.634106207758236],[-99.52890327356374,24.631050498006687],[-99.53052470561096,24.627911141234847],[-99.53249709283091,24.627691365878718],[-99.53620132785744,24.62545768932563],[-99.53627824274452,24.62345735711358],[-99.539211396197,24.623179606817587],[-99.53977034910969,24.626786464867507],[-99.5443471246137,24.626867642429772],[-99.54756098840204,24.624689456591852],[-99.54522602696858,24.6187045039066],[-99.54771628045233,24.61560929288561],[-99.54608111463727,24.613560537561114],[-99.54941949193267,24.611654854365838],[-99.55341553377798,24.612328571462683],[-99.5542334510962,24.610255219219198],[-99.55689711187546,24.60874080413788],[-99.55833233407157,24.609787242979223],[-99.5569910243932,24.61163176809731],[-99.55889859298856,24.613332614032686],[-99.56852025442612,24.617306404854048],[-99.57010183293079,24.619997664710468],[-99.57371306673815,24.620270265547845],[-99.57597507177229,24.623553190994528],[-99.57895954102759,24.62233649964668],[-99.58802886210162,24.62326804629197],[-99.59186709943413,24.619523826598595],[-99.59443835255763,24.61984116595835],[-99.59703427247177,24.622670401496123],[-99.60312734398121,24.621302144556523],[-99.60944858704238,24.62249007671238],[-99.61525125130515,24.619489318320575],[-99.6279631398483,24.613580741637918],[-99.66436404518777,24.59571021723167],[-99.66565245609127,24.59509399128069],[-99.67355336579385,24.591175408645768],[-99.7021520367199,24.576985991559127],[-99.70468567945471,24.575869172173043],[-99.72278099606649,24.562050482861764],[-99.73297776802468,24.55399078216226],[-99.72383352281139,24.50135606848511],[-99.71980386618435,24.483710436533045],[-99.69888639042387,24.489472216254455],[-99.66720380781408,24.498192970194793],[-99.6363793181693,24.506670241999643],[-99.62858145116229,24.49217134654259],[-99.61728725979185,24.463995582506016],[-99.61153349721536,24.452760771604915],[-99.58993110009453,24.396142370452367],[-99.5893408109456,24.35082059833809],[-99.59428973750988,24.330913211484074],[-99.60507322000535,24.308681509224016],[-99.62021381952377,24.278396490955856],[-99.64311240215392,24.22535611108333],[-99.64781782500899,24.21809505095615],[-99.6493021593447,24.206968025784818],[-99.65156723450076,24.180644457726373],[-99.65533416565751,24.136843167751238],[-99.6570806232026,24.117996577765666],[-99.57090171139907,24.039366902608606],[-99.54189271488161,24.033649176813753],[-99.54092298543304,24.02391900387829],[-99.54091206107626,23.997271636445475],[-99.52002486150445,23.9905781453067],[-99.51446057477006,23.98586003528135],[-99.48693986259627,23.960500607841823],[-99.48146712821085,23.940619609422868],[-99.47756824205038,23.92950682570779],[-99.45687072964773,23.86606304921264],[-99.47837507084807,23.873099933618164],[-99.49379107683745,23.878692984774034],[-99.55479424723546,23.802739760838335],[-99.5766808600045,23.77546206666682],[-99.60216747992126,23.762870872020983],[-99.61948632079532,23.759662399941305],[-99.63605888953413,23.764649317175326],[-99.68337773972917,23.776648206727657],[-99.7462754429323,23.782411119419407],[-99.76901388460522,23.784488124417123],[-99.78843085188771,23.784388018842265],[-99.80551890917377,23.784297918733387],[-99.86065997836897,23.774462493849796],[-99.88284730556472,23.723577607756795],[-99.89111957271467,23.70380658821739],[-99.89872045065357,23.691882370294593],[-99.91580026699808,23.665078342555205],[-99.96118762536526,23.556889769551617],[-99.94769842918208,23.497172423217933],[-99.93078108713007,23.421642818431224],[-99.92744193410886,23.406768087587693],[-99.9272792702289,23.406043390526804],[-99.92397628242793,23.391326218264737],[-99.92125340700875,23.379191334215875],[-99.93506263044503,23.382164318662376],[-99.982502481643,23.392367261016147],[-99.9873530521163,23.392632138002284],[-99.99238497379775,23.39267098316543],[-100.00913134018487,23.391988463157816],[-100.04717123208314,23.39600707620866],[-100.08026143174254,23.395748201026777],[-100.09200958918632,23.383864687681125],[-100.10410999578744,23.374028685484234],[-100.11066415705386,23.366605603180176],[-100.1184030665226,23.36067901554958],[-100.12072713796437,23.357764815166718],[-100.14495021894072,23.33951518601981],[-100.08787778309471,23.310726998993744],[-100.07804113055312,23.305983910715725],[-100.07958514198305,23.296093980138835],[-100.08564853548819,23.287037430612486],[-100.09436185365536,23.258309491437046],[-100.10189529204428,23.23108039801508],[-100.10381335990155,23.231535378880892],[-100.10974019930745,23.19971786327079],[-100.11828616211244,23.200545304531715],[-100.11898963736763,23.152427888050568],[-100.11015500738984,23.15106988644237],[-100.11559726738164,23.125989886201864],[-100.08925969143672,23.123444868540332],[-100.06874296293762,23.121156264243496],[-100.0693788503014,23.09685687282166],[-100.06902911216656,23.09594178678077],[-100.0115776944474,23.065602894256813],[-100.01125220841396,23.06392058115324],[-100.01269159193242,23.058893322089432],[-100.01558513264354,23.058660630808617],[-100.01840532210281,23.06067097207773],[-100.0226239284026,23.059625307086662],[-100.02289224315734,23.05949815802154],[-100.0232991477132,23.059627875181036],[-100.02330895220604,23.05996938774041],[-100.02385925777025,23.060321956376924],[-100.02387440308911,23.06010907683344],[-100.02718615843747,23.05874903560573],[-100.0269160982786,23.0561712056612],[-100.03495784912064,23.05306316091128],[-100.04045286220156,23.05182544425145],[-100.04258822923367,23.05273064691073],[-100.04796521532177,23.050366816052247],[-100.04847058009403,23.049136970196514],[-100.05292896689076,23.04591675393914],[-100.05421356423807,23.041968418376086],[-100.05858974661493,23.039999402704836],[-100.061940289299,23.04000806682302],[-100.0661077759928,23.034860639138003],[-100.0669028191071,23.03144622298572],[-100.06184233184257,23.011979634095326],[-100.06470890794117,23.012370107837228],[-100.06749837155496,23.00810728315946],[-100.06621645556936,23.00180999556727],[-100.07003308454176,23.000998201532752],[-100.07165578219747,22.997357204571585],[-100.07418369858055,22.99667034683347],[-100.07985358802443,23.001625729164402],[-100.08569017544642,23.00856775305897],[-100.08618780385478,23.01094425238273],[-100.091644439731,23.011552350194847],[-100.09491513198299,23.013841023919156],[-100.09745530382492,23.013090969802533],[-100.09953208005152,23.00793111284412],[-100.08942101560592,22.968757473019537],[-100.11014545081724,22.97551157574287],[-100.11084695978991,22.97571897160759],[-100.11061944034293,22.970178136186007],[-100.11027758079922,22.94344508752738],[-100.11038362444236,22.91671440891099],[-100.0442390734899,22.917892407264787],[-100.04029642261577,22.895545011204547],[-100.0293841993925,22.824393550897014],[-100.09751605610609,22.765804376452877],[-100.1019204036632,22.76279275439822],[-100.09405993850544,22.751265174652872],[-100.06600979617673,22.741349892962432],[-100.02234326451327,22.725924545818998],[-100.00901805584135,22.731012788902603],[-99.95914477778774,22.75004388573791],[-99.95848933764165,22.74977680201016],[-99.95695814555467,22.751666519702894],[-99.94547259398848,22.751420584254333],[-99.93331342380179,22.749698215031287],[-99.92625489860012,22.749503388275627],[-99.89205910035759,22.74844645854347],[-99.88315370809477,22.748238888669675],[-99.88239697716904,22.749862314262884],[-99.8726815053571,22.74545296561297],[-99.84281900516129,22.7305572027297],[-99.84792357439972,22.67843511425332],[-99.8140289788247,22.660765781364773],[-99.80548584833633,22.657773146315833],[-99.79801684948808,22.666650028399488],[-99.79731417537789,22.66504911053579],[-99.79474597974257,22.667703017921326],[-99.78503694047896,22.66850898103678],[-99.77888004081575,22.66714314987769],[-99.77739012026763,22.66567396149179],[-99.76833143884033,22.6617602439826],[-99.76698343325052,22.661538236938384],[-99.76558853863179,22.66167018960465],[-99.76412127441313,22.662109067840447],[-99.75902086890505,22.657966433021613],[-99.75477858097946,22.65661064774838],[-99.72895088855017,22.65913356488636],[-99.72408516589536,22.65960839262044],[-99.71836925963868,22.66455531590657],[-99.70176450160159,22.67322808800526],[-99.69198063467394,22.67684656517241],[-99.68253545471936,22.681124714827433],[-99.6671246909952,22.67566030772832],[-99.60278695380606,22.654863049886046],[-99.56063829543234,22.641220488498277],[-99.53469190868486,22.61276465329115],[-99.5136516339345,22.6150613655995],[-99.49583132971219,22.619924136223915],[-99.49453637613038,22.620868625863636],[-99.50555630729565,22.644132528548255],[-99.5152870407029,22.664667485967527],[-99.51675746551643,22.664436893981133],[-99.52581929920166,22.69354618274957],[-99.52789254890183,22.695579616210807],[-99.54000561572406,22.731374009307274],[-99.54432737790569,22.744140151875968],[-99.49678850890888,22.74849795937854],[-99.49244868859313,22.741947986764274],[-99.49048448969114,22.74142671879082],[-99.48305207239991,22.74227271111164],[-99.47922031381631,22.742052955148836],[-99.47712682917381,22.740637218151335],[-99.4680640200097,22.719497800803367],[-99.44832782511656,22.673437325728628],[-99.44255352224684,22.664399384259582],[-99.4420528727943,22.66361570749524],[-99.41991271721116,22.662037536908997],[-99.39654012289895,22.67076680020591],[-99.38897525173098,22.670090050269835],[-99.38555311542359,22.670268457122347],[-99.38469999565098,22.66754807959819],[-99.3852357178273,22.665065759073798],[-99.38405268140826,22.662774610243275],[-99.38325305841107,22.65804436093623],[-99.3790939290119,22.6500902498953],[-99.37766396402088,22.646069141347084],[-99.37320046961673,22.629077681675824],[-99.33961430711872,22.63325055004634],[-99.32961768478873,22.634887782339547],[-99.32138785983523,22.61673044203161],[-99.33010752056396,22.614844689285462],[-99.32867611962615,22.61166949708081],[-99.32859003937659,22.608702402754147],[-99.31403439933541,22.609898162050342],[-99.3079831853592,22.594884656266686],[-99.29969103948861,22.574305450616578],[-99.29796984065797,22.57142388247655],[-99.28865339079721,22.555824164967305],[-99.28774080147889,22.553090496217976],[-99.28225537594409,22.536656352163845],[-99.27792397306604,22.52367661877321],[-99.27242581163273,22.51326262335766],[-99.27053732766893,22.5004945674919],[-99.26314854452255,22.469791235587252],[-99.2599785968265,22.46781093790213],[-99.25135968265033,22.443979231996934],[-99.24342540581398,22.433370660742924],[-99.24026744322867,22.42353860965659],[-99.23683875874394,22.412861997028642],[-99.22102407568497,22.412043591878728],[-99.15019909396631,22.408151594884544],[-99.13717319509885,22.407536297211664],[-99.13458845100257,22.407414077000283],[-99.12056704687166,22.406636481403098],[-99.11288333606734,22.406756717005578],[-99.0920611640696,22.410080088519408],[-99.06070730966155,22.41528624629518],[-99.05436346856175,22.414209099704976],[-99.04532139899044,22.412513168989108],[-99.03599330382872,22.41075960074295],[-99.03374157805132,22.410326051637696],[-99.0054610062823,22.405270746883843],[-98.93197272822749,22.392775138663524],[-98.93007159371291,22.382558680009197],[-98.92554485532958,22.371746781793547],[-98.91938076880882,22.371222989263856],[-98.91597861795157,22.372312178299353],[-98.91350979040021,22.374021727811396],[-98.90985625689933,22.371470603055684],[-98.90403938394286,22.368119567781207],[-98.90202836198455,22.365906146895668],[-98.89903392848419,22.365884402629717],[-98.89644516370913,22.362299133703914],[-98.89696041620465,22.359146509876325],[-98.89461602622629,22.357096014711374],[-98.88999725119675,22.35509350353118],[-98.88648661720606,22.35581911877017],[-98.88626701033894,22.355903584238604],[-98.88198131717763,22.358672910836674],[-98.88063250960676,22.35829746143088],[-98.87742151854098,22.361813606597195],[-98.87561654799765,22.361974778349065],[-98.87228948529844,22.36741298638742],[-98.87056927695113,22.367519660489677],[-98.86844511378638,22.366997834521328],[-98.86323884822241,22.365604384008122],[-98.86228360100932,22.36523266186117],[-98.85913813343916,22.36474060015587],[-98.85369448121901,22.368196228677675],[-98.84877836974988,22.36771492044278],[-98.84708484323306,22.366432595463095],[-98.84402820998798,22.366149611034643],[-98.84132440977521,22.363562883723034],[-98.83686578371442,22.362582426115466],[-98.83466228478426,22.360817136123956],[-98.82916922444127,22.36041008394335],[-98.82726970416581,22.35879921169942],[-98.82362456682495,22.358703799553496],[-98.82146731831102,22.356255797671224],[-98.81682665280039,22.357396200641347],[-98.81233320015167,22.359712020063057],[-98.81123144834515,22.361517406239102],[-98.80316178767436,22.361906554699203],[-98.791891512272,22.361868056440073],[-98.78899702226329,22.364782268185763],[-98.78643129132206,22.365979084749654],[-98.77815551740639,22.365644436609728],[-98.77561996217412,22.364223565711256],[-98.77330733985872,22.364404564731842],[-98.76896913953414,22.366913079171184],[-98.7564043201092,22.366940972979194],[-98.75487383727585,22.368612743717392],[-98.75167608015119,22.369023855506953],[-98.75055650324168,22.375198815891565],[-98.74819197791192,22.37896414001642],[-98.74593956728415,22.38086535951294],[-98.74284880609224,22.38177038141373],[-98.73667333497775,22.381840963862032],[-98.73448946952715,22.38079345897512],[-98.7315071797284,22.38125607007032],[-98.73117177324963,22.38348125608195],[-98.72917730449149,22.385355386346305],[-98.72909517924631,22.388317870326546],[-98.72679289152052,22.38815165338218],[-98.72638277383317,22.38977923688833],[-98.72333894404164,22.389353154557853],[-98.71830524128649,22.390813962965467],[-98.71358356252551,22.395636005446818],[-98.71013186154886,22.396795943498034],[-98.70815381462472,22.39725283293916],[-98.70158480721364,22.4005398250614],[-98.70151317033259,22.40213174691189],[-98.69685004722618,22.401773597140732],[-98.69386871768256,22.40423760155727],[-98.69033622251857,22.402738342934583],[-98.68731924495728,22.405107958606095],[-98.6866390211996,22.405027388945257],[-98.67956422815439,22.405686362003053],[-98.67709920249649,22.408927218932945],[-98.67467305122693,22.407007123203414],[-98.67088815523732,22.40567347857808],[-98.67065743902867,22.405513487383757],[-98.67022730442778,22.404860847694806],[-98.66971011070154,22.404651306090443],[-98.6690351827823,22.405467838366576],[-98.66742949038752,22.40583342321412],[-98.66682525791163,22.40594443711086],[-98.66720255881853,22.4054618717239],[-98.66798525819172,22.404488848108087],[-98.66716860375556,22.40435118753112],[-98.66663204230173,22.404372740560177],[-98.66578002979435,22.40372501003958],[-98.66498693303151,22.40393869232372],[-98.6637642383642,22.405318760702585],[-98.66280055353008,22.405475408332563],[-98.66203137744668,22.405870454182775],[-98.66076286783209,22.406015130254787],[-98.65987153540289,22.406500558484538],[-98.65884815700844,22.406135760392715],[-98.65762574379198,22.40736844877057],[-98.65677164044962,22.407581961087885],[-98.65555378290293,22.406961711921895],[-98.65493791503474,22.409229291826534],[-98.6539886870737,22.408692294261357],[-98.65369736976646,22.408147700817267],[-98.65252695011975,22.408065861795478],[-98.65120582863261,22.40899525500572],[-98.65043762209058,22.408966273334784],[-98.64926445303809,22.409435017155943],[-98.64759607851425,22.409640848413574],[-98.64640112580838,22.409805815749394],[-98.64446672862391,22.41020212265545],[-98.64320423617579,22.4103355016843],[-98.64182871345815,22.411281975333964],[-98.64024889320245,22.411418163291444],[-98.64004506531188,22.411794746219982],[-98.63987332492081,22.412841677816914],[-98.63815599735614,22.414524032221664],[-98.6372562625134,22.413873676722062],[-98.63681930818052,22.413715090716778],[-98.63600790171245,22.4133897483552],[-98.63652728127437,22.412743898347912],[-98.63688357174425,22.412161621859582],[-98.63643870950074,22.41161314415649],[-98.63597506543618,22.4114213104138],[-98.63598286979368,22.411852663998673],[-98.6353577136353,22.411992274240447],[-98.63532267239373,22.411735049119784],[-98.6349312558907,22.41123645859159],[-98.6352363779904,22.41059842107154],[-98.6349428080311,22.41022448556498],[-98.63418453793508,22.410073459116234],[-98.63366720193977,22.409939560593386],[-98.63286333620579,22.41015340469579],[-98.63266634973468,22.41038522534984],[-98.63206890044756,22.41016819848562],[-98.63218612337164,22.409720529086314],[-98.63246620137517,22.409618550679284],[-98.63289396279748,22.409299754678273],[-98.63284403919613,22.408709605855165],[-98.6326838543406,22.40764079889152],[-98.63264193849886,22.407265946275004],[-98.63111514948304,22.40713490102212],[-98.63040282716003,22.407228946456826],[-98.63067906318201,22.406583728358328],[-98.63033686822416,22.406216166570573],[-98.6295916164371,22.40578390436076],[-98.62964705018351,22.404289020665487],[-98.62872142664548,22.403944036009364],[-98.62811337798507,22.403543977927768],[-98.62746145738856,22.40350260347725],[-98.62630908590978,22.40454446888384],[-98.62655107143866,22.403875260478685],[-98.62656925774775,22.403492567422745],[-98.62663339151413,22.403196988696322],[-98.62562644021864,22.40241883972311],[-98.62489582523386,22.402716093574156],[-98.62444618701466,22.40282415025689],[-98.62371603877875,22.402701212398426],[-98.62260771096123,22.402528907872238],[-98.62097580010186,22.40268537928739],[-98.62013908404452,22.403374461775],[-98.62029403128287,22.40395676330786],[-98.62028165095063,22.404471596043777],[-98.61807241870264,22.40543061416895],[-98.61758784833313,22.406132645954358],[-98.61735359703948,22.406838343003983],[-98.61552177159439,22.407946300519427],[-98.61447627889521,22.408634855846458],[-98.61375212619271,22.408925047209664],[-98.6125517750196,22.40767479045752],[-98.61152206969757,22.407369226696915],[-98.60934360874347,22.407351845233507],[-98.60804052139201,22.406851629584366],[-98.60943749569981,22.406430678436095],[-98.6091386898537,22.40599350737108],[-98.60848604799935,22.406137401026626],[-98.60843471358407,22.40583418429543],[-98.6076270385978,22.405444273087028],[-98.60627571375687,22.402373608932805],[-98.60540741065279,22.401780272827068],[-98.60438045036977,22.401056141626725],[-98.60376333115829,22.400958988076468],[-98.60331400687295,22.399981218366293],[-98.60249287137265,22.399257580122196],[-98.6001855499573,22.399874916396584],[-98.59935314624414,22.399829383544215],[-98.59794266672759,22.399121641079944],[-98.59544782394829,22.398159055047756],[-98.59426849999033,22.398390842353365],[-98.59475994648807,22.397800150932937],[-98.59473296486124,22.39742622642808],[-98.59413621271597,22.39676397582349],[-98.59368678289042,22.39691064446606],[-98.59298764610338,22.396074227675854],[-98.59232571564866,22.395316164050996],[-98.59166092366223,22.39554053144178],[-98.5920514063103,22.3963587805801],[-98.59113836562966,22.395104501852472],[-98.5906806200498,22.39489467927376],[-98.59012045747562,22.394528101132607],[-98.58977464171124,22.39443159696475],[-98.588137280117,22.39489515360509],[-98.58609058378028,22.39559813944743],[-98.5854273835044,22.39680078656602],[-98.5846967174196,22.396908394965408],[-98.58348230352516,22.397288470348087],[-98.58296132324011,22.396561728067866],[-98.58165495297038,22.396175154976504],[-98.58145458694423,22.396168608262542],[-98.58077117636952,22.396232533945636],[-98.58063163109819,22.395629991905196],[-98.58010110121648,22.395781900749455],[-98.57864353854893,22.394759905202022],[-98.5765082673696,22.39581631919441],[-98.57644123299599,22.394617301950518],[-98.57556950816206,22.394636910139923],[-98.57544145851472,22.39413294535035],[-98.5739332894546,22.394271317704636],[-98.57134964101346,22.39556735624228],[-98.57098260330685,22.396179494447154],[-98.57117878919678,22.39751024739411],[-98.5713527559758,22.398397535258425],[-98.57049082783033,22.399052161586496],[-98.57008837597277,22.39968609686923],[-98.56968701060276,22.400530527520004],[-98.5679907802022,22.401608133275033],[-98.56734915673087,22.401370086649933],[-98.56682425557199,22.40048431456796],[-98.56651152701096,22.400584471937293],[-98.5662658196344,22.40097518365343],[-98.56566832054392,22.400923074470484],[-98.56398459260544,22.40072917812438],[-98.56311522816839,22.40073945770837],[-98.56142088832428,22.399598653063435],[-98.56091871391965,22.399471042109667],[-98.55819302623246,22.40020900423309],[-98.55720096934897,22.40035779106887],[-98.55448678005592,22.40011031562466],[-98.55245995110528,22.400496223411096],[-98.55176875696549,22.400014584561973],[-98.55120520696772,22.399812605159127],[-98.5501307213745,22.400251479480005],[-98.54942334439681,22.400577748371404],[-98.54845853497841,22.40070130474362],[-98.5470735814207,22.400533304316582],[-98.5460831102867,22.40018966197283],[-98.5457022197474,22.40036534525302],[-98.54570004547281,22.401034442323237],[-98.5453184343832,22.401424739462698],[-98.54392923574272,22.402557042205103],[-98.54335852605374,22.402618547692555],[-98.54308535954402,22.40297313974446],[-98.54186095981487,22.405285089311008],[-98.540747609974,22.405734250719377],[-98.54046306739787,22.40551881049265],[-98.54016265240807,22.405997694565485],[-98.53765121613367,22.405523419265364],[-98.53537695069008,22.405721033439647],[-98.5314244468388,22.405608630105917],[-98.52903466770726,22.40649287865989],[-98.52623070535208,22.407007437685195],[-98.52378650824113,22.40793834689248],[-98.52314612033331,22.40850456508076],[-98.52239664162005,22.409196690756062],[-98.52197169102118,22.410319035097473],[-98.52077239010146,22.411451695176595],[-98.52020215560867,22.411361634735556],[-98.51945272547675,22.410744411591338],[-98.51861015463066,22.410842899199054],[-98.51685402278264,22.41193599149858],[-98.51613056119476,22.412721287063164],[-98.51573720470367,22.412552279040142],[-98.5153271246383,22.413286984919182],[-98.51229354023354,22.4145024375253],[-98.5116383145052,22.415409426686438],[-98.51137883865727,22.415800010127384],[-98.51088942953834,22.415899524334918],[-98.50959716194745,22.416387955307414],[-98.50951346840469,22.418182617978516],[-98.51012614824208,22.4193948384156],[-98.51151672171346,22.420333358018752],[-98.51215346967535,22.421205890583735],[-98.51192115698547,22.422000130336983],[-98.50976831941506,22.42339509119722],[-98.50830080918979,22.4248345620544],[-98.50852735938412,22.425387355261535],[-98.5075404525598,22.42661594382821],[-98.50689349088753,22.42863123710913],[-98.50435391088445,22.429494071561862],[-98.50253083413008,22.428914260503518],[-98.50035776354633,22.428217791760744],[-98.49678843868702,22.426676435263005],[-98.49516488728659,22.42743420812991],[-98.49372155294282,22.426828073097965],[-98.49393013523758,22.425461185627],[-98.49456383566496,22.42500105435488],[-98.49698420427228,22.424728043618757],[-98.49655478077472,22.423410163748258],[-98.49551117239503,22.422888110037434],[-98.49498053774164,22.423043184841276],[-98.4929558304433,22.423249553777964],[-98.49311987327593,22.421201327869767],[-98.4916079588325,22.4195396683661],[-98.49128994203357,22.420859708158048],[-98.48943970335654,22.42277946927328],[-98.48849459401049,22.42425426707257],[-98.49083050873259,22.426598613157978],[-98.49063908818232,22.427474497677224],[-98.4903692346715,22.427765049450954],[-98.48523250402025,22.425630100023056],[-98.4751925632765,22.427011455719025],[-98.46878849033772,22.42894909642149],[-98.46680757937685,22.428801744183545],[-98.46498434530372,22.427648191863398],[-98.46413568862437,22.42353728085959],[-98.46530497241844,22.421314980061084],[-98.46671199560598,22.41667961003816],[-98.4650968186831,22.41281158304224],[-98.46095912377695,22.41219191520412],[-98.45680295882289,22.413710040997387],[-98.45250758523446,22.41641083676768],[-98.44748010477895,22.421668745000204],[-98.44479060434833,22.42943812207278],[-98.44257017252829,22.4323961683088],[-98.43717025940265,22.433588313980067],[-98.43197179252763,22.431565881187623],[-98.43108340826257,22.425192850972223],[-98.43201398950805,22.421052473202167],[-98.43335937994198,22.41487690042686],[-98.43245188860948,22.41286402062451],[-98.42790247187264,22.413317560334804],[-98.42312280640965,22.4136532865935],[-98.4190462756057,22.412737692398593],[-98.41688650152048,22.410671667497354],[-98.41416507313426,22.40585442151888],[-98.41138021043196,22.401084629526395],[-98.40954342315365,22.399926693531654],[-98.40619828752347,22.400883907558466],[-98.40490915561088,22.403319120536764],[-98.3993433082826,22.408830688407647],[-98.39661789600598,22.412615401567052],[-98.39432356772392,22.419125801043833],[-98.39207107151987,22.423182233842397],[-98.388643885227,22.424293032625656],[-98.38474513151539,22.4223352041908],[-98.3826784671972,22.417762746034157],[-98.38258113722912,22.414242848018432],[-98.38445988404379,22.40941298509108],[-98.38446111599637,22.40542915972901],[-98.38544006946069,22.401486914950056],[-98.39002795374518,22.397649486779812],[-98.39104284910377,22.39583043495753],[-98.39092640350589,22.39263383132152],[-98.38780920275212,22.389284385913072],[-98.3851892943174,22.38841103264957],[-98.37920570631718,22.38801011689685],[-98.3745778784226,22.389618081210415],[-98.37219114328559,22.39127508275311],[-98.36890062508309,22.39456447939193],[-98.36471745935495,22.399842766802465],[-98.35783693341051,22.406622904278265],[-98.35522535101,22.407445628818493],[-98.35293058863107,22.40672453053469],[-98.35103622291689,22.402426170917465],[-98.35124732422878,22.399079391057626],[-98.35369798870067,22.398568045376976],[-98.35624617270929,22.39707619579798],[-98.35542375828828,22.391024416577295],[-98.35227252949915,22.388703315913972],[-98.34648318882518,22.38850788133101],[-98.34291060244709,22.389742171040723],[-98.33329767345958,22.396834695335144],[-98.33061436413448,22.398304804565782],[-98.3251112908352,22.398039473487586],[-98.32342282172044,22.396699435427365],[-98.32017368075634,22.391244221041177],[-98.31757825702255,22.39097397914901],[-98.31642924400592,22.393342878827752],[-98.3168284316983,22.402393490502106],[-98.31551403224938,22.407303042431522],[-98.31322053465806,22.411043449049203],[-98.31271099572206,22.414272764256623],[-98.31347146348236,22.416798672273615],[-98.31694053118196,22.420430529201724],[-98.3257356865115,22.423872166141564],[-98.32692131500886,22.425083440878097],[-98.32675096309976,22.429084375650746],[-98.32481423775414,22.433543434303033],[-98.32218327105676,22.438433534126546],[-98.32091248548602,22.440037968263766],[-98.31367780276145,22.443256897485412],[-98.31186389563527,22.447412820556906],[-98.3136106392189,22.45618958997727],[-98.31508953163689,22.458520583212533],[-98.3183671051467,22.462825809987066],[-98.3189514506538,22.466167001579777],[-98.31682298001618,22.46856234609345],[-98.31380655573355,22.469324652051],[-98.30883420431405,22.468461054860086],[-98.30366864956551,22.4629609562661],[-98.30241827601697,22.461907440317475],[-98.29966609796963,22.461418774527374],[-98.2982358666464,22.462282692805445],[-98.29166451092516,22.467798557345304],[-98.2895998229227,22.467848804171922],[-98.28531326365135,22.465397460409633],[-98.28361298667073,22.463383267243785],[-98.28084576957093,22.455054283082916],[-98.2776214341551,22.448948967115655],[-98.27293689521576,22.44729105254271],[-98.26210679093634,22.450316553078153],[-98.25842360453157,22.452056231489962],[-98.2566341738434,22.45340615197381],[-98.25499597312466,22.4573141687535],[-98.25447156397382,22.46215500605041],[-98.25200759874542,22.469203482004957],[-98.24793142461476,22.471656623478907],[-98.24519062570977,22.47171462467844],[-98.24285427080468,22.471177173788476],[-98.24030823085542,22.469721584759213],[-98.233829830189,22.462010311222173],[-98.2323651355428,22.46133098170634],[-98.22967912708378,22.462148750826657],[-98.2272364090204,22.465142946922697],[-98.22373739098782,22.469503024094365],[-98.22151495464647,22.471242257434824],[-98.21782203792054,22.471652242787343],[-98.2166722293228,22.47128991316964],[-98.21597368404821,22.471069781523795],[-98.21408578726653,22.46995316866486],[-98.2088277624365,22.464762363688976],[-98.20538241931797,22.464349921555026],[-98.20335560173203,22.465229818575324],[-98.19881878745099,22.46872745414032],[-98.1967709233407,22.469547834968694],[-98.19355284599999,22.4687211981082],[-98.19256221751323,22.46705511120831],[-98.19341475449511,22.463163624831225],[-98.19797558573669,22.45487106989907],[-98.1998979035053,22.450440007012332],[-98.19783267486417,22.4469295015017],[-98.19343336333111,22.444903451545827],[-98.19122878138944,22.44344881609618],[-98.1891366000063,22.439987906473505],[-98.19045320113975,22.429563729077927],[-98.18898752301493,22.425339446317878],[-98.18576100212516,22.422862566942854],[-98.17654505507335,22.4198693179095],[-98.17345765594041,22.41834896366663],[-98.16604622690886,22.411086732116473],[-98.1632872440901,22.409984823896707],[-98.15758886661621,22.410523455925613],[-98.15420827884293,22.412544570871262],[-98.15156019489143,22.412944633561438],[-98.1383794570641,22.40755960760066],[-98.13365397297105,22.40505071119054],[-98.12588032755815,22.400172165344884],[-98.1230741095431,22.399183475997916],[-98.1159052881568,22.39676975356747],[-98.11203442799285,22.393759513521104],[-98.11114762762753,22.39031965353189],[-98.11226346862998,22.380738380910373],[-98.11186567766339,22.37815218150604],[-98.10727158877552,22.368333155546793],[-98.10513535380164,22.366023079553543],[-98.10245293575929,22.366695545064886],[-98.10058773807452,22.367964776037866],[-98.09685155934278,22.372374846618413],[-98.0954936697907,22.372694443631985],[-98.08823758880885,22.37122921795998],[-98.08471020002725,22.368684623938634],[-98.08205024464615,22.36346845147716],[-98.07914041005716,22.35832283553617],[-98.0770982222731,22.35164073133558],[-98.07426330879792,22.347781200793804],[-98.0708018370878,22.34695412298686],[-98.06639370951035,22.348306694589326],[-98.06355366642242,22.348314232124892],[-98.05945171702228,22.34637702500487],[-98.05737612649438,22.349075662094094],[-98.05672744103225,22.352048341911086],[-98.05396049878561,22.35554016642152],[-98.05166954085757,22.3562443049139],[-98.04424701642085,22.35593941050712],[-98.0387244813686,22.355764283001406],[-98.03493973991385,22.3562372310368],[-98.03135998323245,22.35762756144402],[-98.0284721098875,22.358392096681655],[-98.02461492941165,22.356835993087202],[-98.02212508443836,22.353683469332793],[-98.01949291826628,22.352237906500193],[-98.01440867630782,22.353279657586256],[-98.01131775036998,22.352821138304364],[-98.00874453822405,22.351289775199405],[-98.0034294256971,22.34889282480799],[-97.99912139320992,22.347923520015286],[-97.99625126026149,22.34848271229123],[-97.99379082083124,22.350626276289574],[-97.9912859981456,22.351406145309397],[-97.98891882637838,22.34977562390958],[-97.98739603845098,22.345186613858687],[-97.98524296587283,22.341178071026434],[-97.98303062047313,22.340343888604423],[-97.97759420448199,22.339025947680227],[-97.9756572425411,22.336535451897817],[-97.97346013257851,22.333638044091003],[-97.97040542351539,22.332897786616286],[-97.97077014923389,22.331738686416656],[-97.97081928360791,22.329425679411884],[-97.97050974440447,22.328050222156207],[-97.97280980059236,22.324498399864297],[-97.97675839075185,22.318917281837173],[-97.9776358005031,22.318061002424486],[-97.97874752058334,22.317309099215436],[-97.97875500663986,22.316280108868455],[-97.9791139715652,22.314455839655068],[-97.97941372018676,22.31297359112142],[-97.97985757988988,22.31247338217247],[-97.98161320437254,22.31146671679153],[-97.98257223580629,22.31045791160534],[-97.98297859670794,22.30737906848708],[-97.98397991009551,22.304671258230883],[-97.98458361139228,22.305318184822852],[-97.98559775481556,22.305912708869528],[-97.98627150251366,22.30588335608587],[-97.98703775050376,22.306369261379814],[-97.98913322726264,22.30716028237839],[-97.99227200294416,22.309962410748255],[-97.99530574508788,22.3112650050017],[-97.99541926953441,22.31369069880236],[-97.99715425800417,22.31451576682798],[-97.99894208028257,22.31385552339225],[-97.99839356900293,22.312778986071294],[-97.99843700569261,22.309660875942086],[-97.99880280393188,22.30485558191981],[-97.9976466176534,22.3026784725609],[-97.99832661219659,22.29898730977004],[-98.00032404925724,22.297432499261788],[-97.99266415172639,22.292774712051767],[-97.99013322061052,22.29687007970233],[-97.98885811303984,22.298101930134976],[-97.98842878816129,22.30003424140773],[-97.98631917548784,22.3006302834018],[-97.98542226183179,22.300441925033624],[-97.98273117799744,22.29938578850414],[-97.98315121356899,22.30225766219303],[-97.98111496493175,22.30188620256712],[-97.97880259840201,22.30161560198377],[-97.97324497084412,22.297279263728],[-97.97045965075205,22.297105339163295],[-97.9677653155062,22.29631979885704],[-97.96507553721216,22.294919258922164],[-97.96210628748906,22.294080568455627],[-97.9585764707341,22.29451915227213],[-97.95670761002356,22.293892371490188],[-97.95617901501515,22.29086600167966],[-97.95386293122164,22.287041980654976],[-97.94936802558237,22.283938819263483],[-97.94247567745839,22.27728472694298],[-97.93418269775054,22.272651412122457],[-97.93166064295673,22.271046565956453],[-97.9314732921386,22.266690327271647],[-97.93248856679014,22.263571579686868],[-97.933012381102,22.259912216300165],[-97.93490391619036,22.257465208575695],[-97.9346432429171,22.255516568057033],[-97.93243219555688,22.253694627965274],[-97.92952877245494,22.25157489154708],[-97.925679617338,22.250678565392263],[-97.92226418229183,22.25070713170743],[-97.9209386872626,22.251159592813735],[-97.91862524360198,22.251144250932725],[-97.91846488578409,22.25222972616882],[-97.9170818570214,22.252268534137727],[-97.91728257194552,22.250320429342935],[-97.91739483495155,22.24913999472193],[-97.91806758266773,22.247531143602032],[-97.91842760932235,22.24767758700574],[-97.92028412284253,22.246004211143884],[-97.91819790895482,22.242027106787646],[-97.91793966021805,22.239985828694387],[-97.91733234983775,22.23920816384208],[-97.91641651667368,22.2384882143387],[-97.90909145926986,22.23593127494587],[-97.90616600986777,22.235329112098782],[-97.9042638847539,22.2346581757713],[-97.8978329110883,22.229706718864975],[-97.89600016079027,22.224114061012756],[-97.8949624610596,22.22237843895067],[-97.88307430773614,22.21899455917236],[-97.8701061911134,22.213415047558385],[-97.86026832644905,22.210084196437947],[-97.85128869326331,22.207489500959582],[-97.84488828937873,22.206965827019246],[-97.83968323638123,22.208886272597113],[-97.83769338745776,22.212433755237896],[-97.83821384694392,22.218872656205008],[-97.83722581650477,22.226977332397723],[-97.83649439979303,22.22992724083008],[-97.83638067191544,22.230139441126028],[-97.83211250498931,22.2381027033108],[-97.82481537430834,22.244145011789783],[-97.81164377658979,22.251773682889223],[-97.80034118773801,22.25700149636606],[-97.79241483005234,22.260350596675323],[-97.78459981764945,22.262357526255016]]]},"properties":{"cve_ent":"28"},"id":"inegi_refcenesta_2010.9"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-92.45850620623082,18.61036430184049],[-92.46272553470277,18.613170181900557],[-92.46574504812537,18.61656341041504],[-92.46710305884926,18.62127408089043],[-92.46708900640533,18.62578474037582],[-92.4659763165775,18.63042302738222],[-92.46507275356049,18.634587845718272],[-92.46582126276087,18.636681888476687],[-92.46676531432666,18.64211047357793],[-92.46784752480033,18.64727795073361],[-92.46879002209761,18.65096495314367],[-92.48063360322965,18.647906065726204],[-92.50292846216064,18.640256515039084],[-92.51085752703295,18.638169148151746],[-92.52920731344688,18.63385747645293],[-92.54286318226411,18.630170329962766],[-92.56730658369196,18.62420580070261],[-92.58092255244247,18.621424287350862],[-92.59328536022576,18.61924453919505],[-92.60258556247834,18.61805080756716],[-92.62597561425918,18.614082351053924],[-92.64522844267611,18.611408154987203],[-92.65313166275911,18.61063427781596],[-92.66343362900113,18.610158541163003],[-92.6723081145953,18.610951163593995],[-92.67702308750017,18.612630739049962],[-92.68044329880263,18.615485330396723],[-92.6859226820859,18.619036751076578],[-92.68767204382385,18.61928917657133],[-92.69939926091081,18.607165806814862],[-92.70173196107459,18.603709289438882],[-92.69985287817411,18.59833101772699],[-92.70291744659357,18.589712209132188],[-92.70993904210349,18.57945901716471],[-92.71089441849182,18.577092600705157],[-92.71904293171917,18.565913712949055],[-92.72184331056968,18.560012721184307],[-92.73669898766741,18.540852234417855],[-92.74637311784409,18.52960534844067],[-92.76113160785911,18.51457174036011],[-92.77154721780602,18.505301915257746],[-92.77745897778755,18.500415093809977],[-92.79471558062261,18.487469041851682],[-92.80828393278495,18.478945359153215],[-92.81026336155077,18.47744711653877],[-92.82203813279739,18.471215714722348],[-92.83361078215586,18.465394726884824],[-92.8506472870526,18.45817869233821],[-92.8663249915441,18.45240555676685],[-92.88323411588442,18.446867419237492],[-92.90358334074841,18.441353778039286],[-92.9115139299027,18.439697734970764],[-92.92413964240012,18.4376645699204],[-92.95143319327633,18.434901442961348],[-92.96926869706289,18.43371475280435],[-92.97605384529146,18.433025869721348],[-92.99518452858746,18.43195620206268],[-93.01574472136014,18.431142493891457],[-93.0285472325578,18.431080465916864],[-93.04681703424717,18.43187921341348],[-93.05732207077574,18.432849659096746],[-93.0627356217746,18.4337849128691],[-93.07075612037607,18.435897010780423],[-93.07904146226389,18.438553066529096],[-93.08436552079218,18.44074246141338],[-93.09031413828347,18.442174761561546],[-93.09710313877184,18.442820744514506],[-93.11462306960186,18.44280995114883],[-93.1276619215567,18.44245706370623],[-93.14247420617511,18.442432430442807],[-93.1465282147725,18.441783757141195],[-93.14976123722727,18.442164663793562],[-93.163577396282,18.441855865647767],[-93.17080895027539,18.441193587002488],[-93.17934634468787,18.44154487916711],[-93.18487945746915,18.44108097193964],[-93.18881441251665,18.443003100184455],[-93.18876424084868,18.446513719332586],[-93.18977199048601,18.448594758849993],[-93.1983629059635,18.453165000824526],[-93.1985948290822,18.452887552428876],[-93.18977134623452,18.448008141539503],[-93.18911335205638,18.446366283177895],[-93.18918936929373,18.440891141440034],[-93.19033437804762,18.437878722320022],[-93.18364961596177,18.437674404089762],[-93.18361026567777,18.433244993739265],[-93.1867988563389,18.433356107378984],[-93.18676659796432,18.431129965544187],[-93.18899062808129,18.431141922482027],[-93.18889372389856,18.43281992492092],[-93.19410192385669,18.432814671586982],[-93.19343862900814,18.43631003540827],[-93.19447687089627,18.44060778508532],[-93.19949174782198,18.438605477442593],[-93.20519210245669,18.439234320902926],[-93.21051697293512,18.438902351101774],[-93.21417840726934,18.440730423431205],[-93.21451861109318,18.441990171955013],[-93.21943845766918,18.440772211471426],[-93.24310116526033,18.438916446325436],[-93.25257252524409,18.439033229425206],[-93.28940003465794,18.43881688311319],[-93.33133631089828,18.437142913017283],[-93.35948651364504,18.434871343577015],[-93.37065634693295,18.434235276382196],[-93.39555512999067,18.433595013996694],[-93.40957541544356,18.431642711383233],[-93.41725891760882,18.43093921312129],[-93.42610421598692,18.429536401839414],[-93.43678436754101,18.42723677080039],[-93.45384129832064,18.42414551516333],[-93.46501663818418,18.421732462957095],[-93.47197257807261,18.420800552834123],[-93.48115971936897,18.418544953973367],[-93.49590449956469,18.415442315970495],[-93.50278769620377,18.41310478393342],[-93.50742729448922,18.412351031794685],[-93.52063506732219,18.409124954301546],[-93.55116254811855,18.401111864608424],[-93.55182978238685,18.40124021641992],[-93.56810749445629,18.396537226979376],[-93.57170636548034,18.395203718868117],[-93.58551981785092,18.39209507105926],[-93.58844298638195,18.388256218980928],[-93.59239147736332,18.38846118126378],[-93.59582261067868,18.387397174517957],[-93.603375375599,18.38614497484639],[-93.61432035285515,18.38252637071679],[-93.62421887805635,18.379657602597035],[-93.64227090786483,18.37373692914241],[-93.64587978401795,18.372284182412386],[-93.66283752084979,18.366649007566707],[-93.67278820978356,18.362705379165277],[-93.69041004267382,18.357167388899768],[-93.69356450728867,18.355549929275412],[-93.70565718085425,18.35175665082511],[-93.70790656629038,18.35039412657011],[-93.72165088698193,18.346433526434794],[-93.72792105441698,18.343787204890134],[-93.7362397141589,18.341140650727993],[-93.74120534505533,18.33897353601185],[-93.74582234327869,18.337999945654758],[-93.75179773065258,18.3359435682612],[-93.75663087156869,18.33365691881704],[-93.77756520646938,18.32648089683113],[-93.7831718835543,18.324927728721832],[-93.78833305793995,18.322843580471954],[-93.81214016993425,18.314553786988995],[-93.81607550091917,18.313728574041022],[-93.81944030214618,18.312150433476347],[-93.82343823948548,18.311361919597402],[-93.83953620793119,18.306536885386663],[-93.84636094304085,18.305419064855073],[-93.84397129114973,18.301103578864456],[-93.84590748070138,18.29889733705994],[-93.84922778516227,18.297691259685223],[-93.85131026091807,18.29983515073127],[-93.85694770276547,18.29871965234446],[-93.87808673730552,18.292249731870243],[-93.89483180635006,18.287560919073883],[-93.8964457966805,18.286582116935335],[-93.91851384962791,18.280294608061297],[-93.92052707756261,18.279202733221155],[-93.92701212227848,18.27761391775033],[-93.93208720615235,18.27568451881956],[-93.93858362812881,18.274011345534802],[-93.94206984156318,18.27229241389267],[-93.94687686442347,18.271177881100698],[-93.95535998733135,18.268161909011212],[-93.96531019051713,18.265183669033206],[-93.96899895240176,18.263674708153076],[-93.98146850351293,18.25995482223766],[-93.99251806014462,18.25582402115748],[-93.99786337155643,18.254420412270406],[-94.01658966743855,18.248256999750822],[-94.02938627614117,18.244493885817462],[-94.036966450112,18.24184253120427],[-94.05774117712224,18.23541023883513],[-94.06843640264594,18.232319510949594],[-94.08325513693404,18.228354785665374],[-94.10104780783956,18.22252164823874],[-94.10519444685394,18.22173653260228],[-94.11970305544935,18.217683826736447],[-94.12363107900381,18.217204315388983],[-94.12707807990131,18.215701265856353],[-94.13002516429543,18.212851201126682],[-94.12915443071444,18.175140408792686],[-94.128496175988,18.172918150464056],[-94.12793036768397,18.1711344039079],[-94.12785302039646,18.16987717760884],[-94.1276654736767,18.169437000719938],[-94.12601086118718,18.167130060489285],[-94.12171601093274,18.164920840237926],[-94.11885467085426,18.165448682265435],[-94.1173476758189,18.166088900099908],[-94.11609421971025,18.16699825486279],[-94.11443398657218,18.168300858768077],[-94.11055742334878,18.17259311882458],[-94.10785860881344,18.1739618069613],[-94.1028812539069,18.1734491834585],[-94.10142693879135,18.172465236267612],[-94.09990723383117,18.17109074864254],[-94.09870100051472,18.16947049754981],[-94.0969974905102,18.16695838509571],[-94.09588698352064,18.16392725159261],[-94.0954036380856,18.162524607938735],[-94.09468018980118,18.160669976488236],[-94.09404942569199,18.158452128506497],[-94.09394831825409,18.157455326193087],[-94.09388791956735,18.155370240939135],[-94.09472247192053,18.152192013115098],[-94.09825639051826,18.14809168765072],[-94.09844028626947,18.147138595292404],[-94.0990304236143,18.14283415391327],[-94.10082009635425,18.133031469069124],[-94.10044357275359,18.125915943821724],[-94.09850188936531,18.118905036866636],[-94.09713983748418,18.113517855388864],[-94.09484467940075,18.11067475430525],[-94.09055827456984,18.10806957272723],[-94.08674505477018,18.105234946058147],[-94.08426540439643,18.103208786986386],[-94.08340667998408,18.10244290310311],[-94.08206824856887,18.100818323605495],[-94.08155808979967,18.099732707457804],[-94.08117577490356,18.09463332963753],[-94.08245965877694,18.0914231426857],[-94.08305160514414,18.090779224259393],[-94.08460897965688,18.089667226354436],[-94.09106721472216,18.086107546133064],[-94.09492854320206,18.08419948110304],[-94.09613141043002,18.08309890672598],[-94.09634404101195,18.082705336323897],[-94.09680758613746,18.081787185305416],[-94.09709540368272,18.080907399389844],[-94.09696016192652,18.078012138847782],[-94.09618637240607,18.076185495674338],[-94.09549495779464,18.075031006331074],[-94.09473444898697,18.07406581907935],[-94.09243571712005,18.072229110233195],[-94.09118027830084,18.071544894781766],[-94.08978950429042,18.071104327617547],[-94.08836032574868,18.07077607270361],[-94.08783168242144,18.070648260035057],[-94.0863224812407,18.070021492636215],[-94.08461744477347,18.069339760232538],[-94.08138627108889,18.06524735877997],[-94.0792765845897,18.062310978939877],[-94.07685367900586,18.06070920638473],[-94.07569771529347,18.0602859070965],[-94.07532493394251,18.060063770863735],[-94.07455668349394,18.059347989714524],[-94.07439936751723,18.058947865105324],[-94.07437189637739,18.05764012455535],[-94.07552648588324,18.051393171454947],[-94.07687711734508,18.046977618778953],[-94.07701184339669,18.046315677880386],[-94.0775434798934,18.04443609802985],[-94.07781050377008,18.043695938882593],[-94.07844836536918,18.04211522459707],[-94.0788822270768,18.041334209511206],[-94.08014443322077,18.039390653159614],[-94.08080912232737,18.038790250228715],[-94.0823032123111,18.037204736884803],[-94.0824275471569,18.03704432950815],[-94.082923419662,18.036163137918265],[-94.0832928825032,18.03510297378523],[-94.08355706820959,18.03390365333678],[-94.08359359608738,18.033044996247156],[-94.08354793104797,18.032406402120216],[-94.08341799607177,18.031648495961406],[-94.08236053702478,18.029478330348525],[-94.0817919473879,18.028705135673647],[-94.08160180384806,18.028346846634008],[-94.0810540937427,18.02757130677054],[-94.0809052385286,18.027132928954188],[-94.08020649158152,18.025559667144137],[-94.07986046666355,18.02360511833365],[-94.07985270108179,18.022327459319172],[-94.07995262442302,18.021588228930113],[-94.08025688258346,18.02010919069454],[-94.08074543785261,18.018030196888105],[-94.08101452697917,18.016992310643957],[-94.08154021892432,18.01415447386239],[-94.08215136391715,18.011635582079066],[-94.08332616113682,18.009093574802023],[-94.0835105670979,18.00851358383727],[-94.0828202918683,18.004892113039546],[-94.08189947475626,18.004557867927247],[-94.08089744058913,18.004603387002874],[-94.0802728342988,18.0049063303872],[-94.07728147539865,18.007478395095973],[-94.07636753569432,18.008282038695484],[-94.0749948061918,18.009188047376313],[-94.0746410269449,18.009389651896072],[-94.07314973056128,18.00999873456857],[-94.07231555569194,18.01024302562263],[-94.07127271670583,18.01052841356949],[-94.0677190561363,18.0101685475571],[-94.0661659750491,18.008978736254278],[-94.0651540226371,18.00744639978592],[-94.06470791725201,18.006210542372514],[-94.0644285730175,18.004913845273165],[-94.0642532082,18.00353669005966],[-94.0643667171617,18.00155876188319],[-94.06452917304989,18.000797981557696],[-94.0650193877155,17.99898514373706],[-94.06547978949965,17.99827146748845],[-94.06627791738367,17.997052205571777],[-94.06670662403451,17.996220176970553],[-94.06698569088252,17.995094270156585],[-94.06710748365867,17.993479697337648],[-94.06699227149323,17.992537138448938],[-94.06659095934236,17.991386558258],[-94.06548724533275,17.990030238771396],[-94.06419061083557,17.989387603810314],[-94.06179819591932,17.98870904202829],[-94.06151197944422,17.98848005039963],[-94.0614003009643,17.98812434572943],[-94.06228873844594,17.986096975736302],[-94.06470639360651,17.98367333763315],[-94.0656862037431,17.982640926283466],[-94.06731840555841,17.98078748897973],[-94.0677096419617,17.9802613399969],[-94.06851631773196,17.97959264809822],[-94.07033790743486,17.9800959977091],[-94.07119730423489,17.980908687470446],[-94.07155214969049,17.981619362512106],[-94.07169004267172,17.9826875503353],[-94.07156564579986,17.98386198665736],[-94.07129897367798,17.98688166932959],[-94.07218183437186,17.987945741569376],[-94.07353268699131,17.98777058395774],[-94.0739654622983,17.98686691747355],[-94.07422434223605,17.986194772996043],[-94.0746120220573,17.985081757995488],[-94.07515281929278,17.983925971776046],[-94.07586876295784,17.98274825674531],[-94.07748021241423,17.981104451941235],[-94.07974840856627,17.979373141037],[-94.08180307066772,17.97856522705507],[-94.08250047905005,17.977953504774405],[-94.08262789415943,17.9772885441854],[-94.08253796403682,17.976911771257335],[-94.08070067906357,17.97381996711681],[-94.08009249326852,17.971077620095343],[-94.08010134855346,17.970375894061647],[-94.08040044209201,17.969116641606774],[-94.0805078235378,17.968759726840062],[-94.08177278006764,17.96780949250865],[-94.08221132486369,17.96786992555991],[-94.08284767980086,17.968034055543114],[-94.08520053127887,17.969446182662182],[-94.08698456890812,17.970987229253694],[-94.08888842982276,17.970620242209748],[-94.09007621199271,17.96780496345417],[-94.09008940182991,17.966379624518765],[-94.09017241754185,17.965624606465894],[-94.09025701116587,17.965127560254587],[-94.09053668231866,17.964287598718556],[-94.09140515890368,17.963004173211516],[-94.09203174720068,17.961575387704897],[-94.09182970025671,17.960780052860684],[-94.09149878239043,17.96040463749381],[-94.09059828114675,17.96003241957777],[-94.08996182114231,17.959847354138333],[-94.08862395223287,17.959603342036473],[-94.08765799536815,17.959273398558764],[-94.08712302495024,17.95776728750866],[-94.08722188540258,17.956016712853284],[-94.08723063032801,17.953857803412575],[-94.08711445526501,17.95276854323646],[-94.08743320916864,17.951152851969823],[-94.08893129115881,17.94894368025882],[-94.09004005896645,17.947558507884708],[-94.09004634188597,17.94500137454355],[-94.08940417817763,17.943873142480527],[-94.08860562028758,17.942242750081846],[-94.0885577191035,17.941572302425868],[-94.08864137587949,17.940922079807194],[-94.09002630128185,17.9389756360286],[-94.09085836230184,17.937673019661304],[-94.09119793752728,17.934037090860954],[-94.08994646476106,17.926934300967673],[-94.08622615177558,17.921827646607994],[-94.08497336528461,17.91553058347114],[-94.08799526764352,17.908912960773307],[-94.08744557056411,17.904975914074498],[-94.08213360640286,17.901061399884725],[-94.08182211618833,17.89991102061839],[-94.08542061230276,17.89427980923341],[-94.08434983237396,17.892287952520746],[-94.07984480790384,17.892083380333304],[-94.07952627375766,17.890300058149307],[-94.08205070452078,17.887867161865245],[-94.08326417264914,17.88222402555698],[-94.08158390790061,17.87710844534331],[-94.0838655559836,17.87294535221497],[-94.0834307482362,17.869868488606585],[-94.07956756161065,17.869545285645472],[-94.07778995096209,17.869263128418652],[-94.07479492510072,17.867803467984004],[-94.07423358969226,17.866792557868223],[-94.07360813482802,17.86590861457063],[-94.0723009381532,17.865558860265992],[-94.07065207197235,17.865975851597227],[-94.06768061173727,17.86792982883577],[-94.06688416159659,17.868367616836792],[-94.06511344889111,17.868453780825803],[-94.0645495835717,17.867691981464645],[-94.06484813742884,17.864146409514433],[-94.06420453934697,17.863410535502055],[-94.06319034320086,17.863059122910045],[-94.06260455549057,17.86308780829478],[-94.06151786355713,17.86398608735925],[-94.06006099650034,17.86534529512727],[-94.05889271854926,17.865963543512237],[-94.05723231386958,17.866686440449712],[-94.05374878144056,17.86764863887663],[-94.0531704016388,17.868161916439306],[-94.0516630670104,17.87079591112581],[-94.04936822983314,17.870853334051787],[-94.04851231438323,17.870811242215666],[-94.04742156434077,17.870580627049947],[-94.04663734496717,17.869956074587037],[-94.04606085059874,17.86893536922946],[-94.04447472909953,17.867700447348966],[-94.04378418457253,17.867417978274375],[-94.042037194111,17.86783023276621],[-94.04163964175137,17.86883114217153],[-94.04200617104459,17.869634232826854],[-94.04231445692142,17.87044847076328],[-94.04330223058668,17.872196047182683],[-94.04342435241978,17.872908053709125],[-94.04334651538898,17.87318724206159],[-94.04250123222084,17.873584575335258],[-94.04195847844397,17.873625487475238],[-94.04092284908029,17.87317484941559],[-94.04012619038411,17.872824297802595],[-94.03911720281843,17.872398845420264],[-94.03343731168428,17.87268245276499],[-94.03261853743714,17.871546144381455],[-94.03264453347907,17.871002378901153],[-94.03285752414979,17.87065196308407],[-94.03355579925181,17.870161807443537],[-94.03405557073893,17.870017641950312],[-94.03455678926872,17.870123842187922],[-94.03618854821337,17.8709533998462],[-94.03687110768641,17.87093888703373],[-94.03803224373428,17.86945376424262],[-94.03774431523783,17.868481678846763],[-94.03716059879173,17.864871876415236],[-94.03728322735049,17.864141966363206],[-94.03742899216479,17.86347642476784],[-94.03715261861288,17.862157365222686],[-94.03679722145068,17.862101091393868],[-94.0357619590352,17.862106589063785],[-94.03316918023819,17.86230539205792],[-94.03268201706237,17.862126422932874],[-94.03248183553745,17.861574817458006],[-94.03233031608352,17.86087875395799],[-94.03240830323676,17.86022667559712],[-94.03311694538229,17.857817423980237],[-94.03321507410038,17.857360263646967],[-94.03318052009985,17.856377047028843],[-94.03303873852576,17.8554633735028],[-94.03271575632004,17.854692175537764],[-94.03112405832655,17.8540649988567],[-94.02963446534318,17.853081745368286],[-94.02901925206305,17.852051303867995],[-94.02841422351065,17.84970311186271],[-94.02905229688884,17.848313451081083],[-94.02946491626199,17.847791530520055],[-94.0295916530207,17.847569685478504],[-94.02970773870959,17.84695504913526],[-94.02979555874947,17.846614275980187],[-94.0294475144425,17.845669535508534],[-94.02856329570432,17.845307017479456],[-94.02759305351248,17.84536512255505],[-94.02463913208351,17.846175323805994],[-94.02345374671012,17.84636067913283],[-94.02303867859183,17.84625724785542],[-94.02263861853822,17.844872986400276],[-94.02279679323618,17.844186481661325],[-94.02309127817455,17.843698814090487],[-94.02516576096775,17.84266180513356],[-94.02609989897007,17.84213800180555],[-94.0266652090898,17.841371786473303],[-94.02377224206924,17.84105986403023],[-94.02277561968589,17.84111960126478],[-94.0208788924262,17.840679751197456],[-94.02019357919949,17.840383485015764],[-94.01877969216804,17.839695763376994],[-94.01796667304694,17.839481927690258],[-94.0170271024869,17.839554970175925],[-94.01677291349563,17.839937917616794],[-94.0167050233132,17.84052433666892],[-94.01698094562062,17.84146333124204],[-94.01744217394571,17.842428617950418],[-94.01755997152674,17.843109474913717],[-94.01720979127697,17.844147134895138],[-94.01674142355972,17.844435792682248],[-94.01339260770118,17.842844917299885],[-94.01232130135105,17.842291663142703],[-94.0110647796115,17.84172573416879],[-94.01046523302773,17.841483505973258],[-94.00869478648053,17.840702147347088],[-94.00678111574769,17.840064152904574],[-94.00517852366846,17.840331835971085],[-94.0048236841946,17.840922465356982],[-94.00426936998991,17.841971100111323],[-94.00374794901177,17.842334094636612],[-94.00323374475494,17.842345523123754],[-94.00296837845275,17.842255146757452],[-94.0014983033924,17.841112860608916],[-94.00037768511652,17.839992630884296],[-94.0001052865037,17.839653245570503],[-93.99965968504,17.83927799621904],[-93.99910104870793,17.838738793128528],[-93.99877728646453,17.83835008892089],[-93.99792663090511,17.83710429839681],[-93.99748425755462,17.83681706429769],[-93.99616039097322,17.836662934432752],[-93.99491602347217,17.83678843612853],[-93.9940797265354,17.839626071885846],[-93.99505200046008,17.839577325697576],[-93.99577201599402,17.839431314517412],[-93.99622760520543,17.839056712663478],[-93.9968330859524,17.838889382827972],[-93.9975903427827,17.839268747067024],[-93.99757037958386,17.83979442110075],[-93.99742306393813,17.840051336445242],[-93.9971214077541,17.84064804708686],[-93.99676623612572,17.841141518453014],[-93.99652643842359,17.84207332585669],[-93.99635970311118,17.843069210687304],[-93.99578830790608,17.8451059712674],[-93.99548409471367,17.845634413891617],[-93.99461467612622,17.846020115213378],[-93.99443753027447,17.845775726368743],[-93.99414918229945,17.845361117940456],[-93.99361510001404,17.84396231019082],[-93.99288740151837,17.842723329568173],[-93.9917673430167,17.840878564161073],[-93.9905937049582,17.836402963872104],[-93.99046507628555,17.835899940555805],[-93.99018656157119,17.835189639439022],[-93.98949683572323,17.834601861422698],[-93.9865013157168,17.834989287510894],[-93.98637750818057,17.835362194564027],[-93.98626850962859,17.8363481947149],[-93.98640977425242,17.837070145336668],[-93.98719044937093,17.839633774579795],[-93.98777765817692,17.840910607711123],[-93.98824140660389,17.842014154921344],[-93.98838225317348,17.843690868069416],[-93.98837298151983,17.84408509544727],[-93.98823917745949,17.844720841010826],[-93.98678685571855,17.844870526904742],[-93.98596040250851,17.844392923520502],[-93.98475903687552,17.84207386730037],[-93.98464125720164,17.841461289871233],[-93.98430542979088,17.840729368990367],[-93.98317261692375,17.839857152559375],[-93.98280732863628,17.84001228178795],[-93.98266014754029,17.84029770833007],[-93.98158265229142,17.844499128588893],[-93.98139241095913,17.845196501283795],[-93.9812658887933,17.84699641480705],[-93.98228512090492,17.84715553389259],[-93.98334880420617,17.847073535671086],[-93.9850864756832,17.846791041955896],[-93.98629305334168,17.847726607179425],[-93.98547526782096,17.85022804324518],[-93.98539713047069,17.850585304368053],[-93.98514786776377,17.851035491776997],[-93.98481796562908,17.851387538939093],[-93.98432745224557,17.851663748973863],[-93.98343483840677,17.851646345584356],[-93.98259799427268,17.851365872879228],[-93.98163745244437,17.851202154883083],[-93.98086506157398,17.851231533939426],[-93.97990674243948,17.851363811455485],[-93.97916181800355,17.851545989054728],[-93.97852302091934,17.85165116015162],[-93.97709387588884,17.851105473268547],[-93.9763996638718,17.8506718854602],[-93.975581981946,17.84998132895032],[-93.97423003232404,17.848062602661344],[-93.97398132134043,17.847460458572982],[-93.97385175234695,17.84669070184276],[-93.97383530972473,17.845850940488617],[-93.9738555838594,17.845504348860686],[-93.97405808592623,17.844652031084365],[-93.97419721614307,17.844136981442148],[-93.97425987188342,17.84362495201276],[-93.97406160885572,17.84311032775014],[-93.97389038486091,17.842865001256598],[-93.97255289899329,17.842288024991774],[-93.97165452538434,17.842393688098696],[-93.97060744246966,17.84296763117021],[-93.97005452390619,17.843516790534977],[-93.96886772569849,17.84469777309505],[-93.96826443929223,17.84528109063922],[-93.96795502876341,17.845286722019182],[-93.96778616516639,17.84525233778362],[-93.96746667103491,17.844953147924628],[-93.96633815369535,17.84315272513578],[-93.9659303296495,17.842366269166632],[-93.96564706434788,17.84164959223608],[-93.96562820138257,17.84126195888416],[-93.96582244003616,17.84104251357246],[-93.96755555077038,17.83987390546332],[-93.96822618962995,17.839392856356824],[-93.96858739546639,17.83891507464358],[-93.96864823343901,17.838714886531648],[-93.96844640273315,17.837783870048384],[-93.9636131844037,17.834471272343933],[-93.96265052315954,17.834417843321887],[-93.96218344495117,17.834699194702296],[-93.96087168590168,17.836653931952583],[-93.9602466190986,17.83732550893575],[-93.95983877070165,17.837271041071915],[-93.958914237621,17.835163010977283],[-93.95634921293117,17.834195357180704],[-93.95604067571168,17.833933735135986],[-93.95597542734407,17.83309096442548],[-93.95619004271026,17.83101480524158],[-93.95663429540349,17.828777381772454],[-93.95688721623878,17.826819174026127],[-93.95725718350599,17.825548824852717],[-93.95774456006245,17.825248790070816],[-93.95798350729893,17.825143214329216],[-93.95915548259728,17.82615401924636],[-93.95883812139772,17.82804541147442],[-93.95839820695505,17.829286831842523],[-93.95825591148099,17.82996857859223],[-93.9584445465714,17.830243851309547],[-93.95934853949882,17.830613006205397],[-93.96251972980161,17.830604333658414],[-93.96422657812201,17.830585377223088],[-93.96450165371976,17.83054186629505],[-93.96466628146038,17.830435670530505],[-93.96499469840671,17.829967562491618],[-93.96467197330736,17.82929229967101],[-93.96434413908696,17.828826075437917],[-93.96385650001048,17.82818480447611],[-93.96351383537149,17.82769421802533],[-93.96344784699602,17.82612014337019],[-93.96343512471475,17.825597887073513],[-93.96311776243579,17.824042444410622],[-93.96262323864073,17.823453281496086],[-93.96118696367466,17.8223534345251],[-93.9606228142552,17.82219555205677],[-93.9602077467153,17.82203930503539],[-93.9597300443603,17.821781270163],[-93.95884044896474,17.82119761764767],[-93.95858261215534,17.820906032988887],[-93.95976766135573,17.819111848485477],[-93.96073152305308,17.81887587588386],[-93.96113175410653,17.818713212598368],[-93.96171266832727,17.81860054236097],[-93.9622304814543,17.81842116886355],[-93.96266448632736,17.818421464219853],[-93.96297400627373,17.818397304493544],[-93.96504152224617,17.819019184238527],[-93.96638743888417,17.819475069461646],[-93.96686370824659,17.81947271493209],[-93.9673588456709,17.81928983073044],[-93.96799617191306,17.81787167693426],[-93.96803335316031,17.81740615424718],[-93.96752165089976,17.816354558266937],[-93.96704309426605,17.81592957321925],[-93.96619716851075,17.8154589212549],[-93.96475118811168,17.814096474008693],[-93.96447558543838,17.81366727048885],[-93.96288949861798,17.812633181205342],[-93.96172205761059,17.812511725056368],[-93.96020395936694,17.812509685020302],[-93.95902204346464,17.812287560394452],[-93.95807789397145,17.811997787073153],[-93.95740506937096,17.811533998407583],[-93.95711576795304,17.811236420683883],[-93.95680097045954,17.81064025070384],[-93.95671430973306,17.80955312356491],[-93.95698825396818,17.8076602367056],[-93.95725632980054,17.80658069139554],[-93.95879878130359,17.804394011285126],[-93.95913144012923,17.803763482330965],[-93.95959028874512,17.80305269146635],[-93.95999267658186,17.802716252585185],[-93.96226272898667,17.80092734060929],[-93.96286553823666,17.800478032969863],[-93.96311188785188,17.800163428999213],[-93.96318062416805,17.800030136727628],[-93.9631985039245,17.799663558594943],[-93.96316787743098,17.79950226570287],[-93.96262873305233,17.798868638614636],[-93.96184237581582,17.798388169428392],[-93.96101775818983,17.798173794548802],[-93.9605333988332,17.798508556618742],[-93.96049554082992,17.798850623870464],[-93.96049535284305,17.800673993543853],[-93.96014221527605,17.80143065685803],[-93.96006345339669,17.801545003557464],[-93.95976702968721,17.801774377495633],[-93.95949004534401,17.80192768313242],[-93.95865822437412,17.802226157341863],[-93.95807347336768,17.802342980541482],[-93.95738361820526,17.80246031916886],[-93.95636590003835,17.80225534866304],[-93.95596788822098,17.802038868744603],[-93.95339363302611,17.80117772167148],[-93.95263931371295,17.801124413083357],[-93.95189531873064,17.80114702581352],[-93.95126997797962,17.801093084284616],[-93.95082536012137,17.799566268641627],[-93.95163439891252,17.7987115024643],[-93.95189164432105,17.79857729681453],[-93.95243700720738,17.798517663894927],[-93.95284442796878,17.798639141051467],[-93.95376039390919,17.79924247286351],[-93.95470587670826,17.799798170553174],[-93.9551325414327,17.799805587627077],[-93.95537860481608,17.79943401453744],[-93.95539612708228,17.79899707710024],[-93.9551530781834,17.798067583880993],[-93.95506202101103,17.797809584383288],[-93.95500199672267,17.797640621980293],[-93.95488062741265,17.79720436143117],[-93.95422618884658,17.7944648008924],[-93.95392168339424,17.793989454674545],[-93.95355625150142,17.79332641526662],[-93.95310894766283,17.792123924286784],[-93.95305955928808,17.791751535348794],[-93.95296267191202,17.79088413237838],[-93.95295666275564,17.79025768957888],[-93.9530562981517,17.789634892689435],[-93.95333071929554,17.788813217697225],[-93.95329264535695,17.78808605049909],[-93.95319259194287,17.78784891559593],[-93.95306927753563,17.787603621464257],[-93.95295955022425,17.78704223025801],[-93.95300527579707,17.78642410250086],[-93.95306487484294,17.786223862776865],[-93.95318573488936,17.786025175921452],[-93.95402921150145,17.784919880674636],[-93.95434516292721,17.784647095915602],[-93.95504393040204,17.783984895927063],[-93.95591223757253,17.783043120295872],[-93.95605589370149,17.782779474198776],[-93.95413422104627,17.780139261229976],[-93.9535653905125,17.77966997852286],[-93.953084418988,17.778921854452108],[-93.95256085944294,17.777369621068658],[-93.9519367667105,17.776191525292006],[-93.95176971905084,17.77588262909751],[-93.95102819213395,17.77499478261211],[-93.9503365898388,17.774239599734983],[-93.94924722240245,17.773178291840452],[-93.94946341703178,17.770916728095813],[-93.94955884099568,17.77068917374214],[-93.94966359636948,17.770094778082182],[-93.94949857603086,17.76948877936678],[-93.94886170674908,17.768910883526985],[-93.94775319473518,17.768399820974196],[-93.94710569931743,17.768364218335478],[-93.94621350271444,17.76795538368293],[-93.94583482965027,17.767727896475037],[-93.94474548608656,17.767044187490285],[-93.94203459519247,17.765882000340582],[-93.94084802245698,17.765106010108866],[-93.9406627787032,17.764675632594958],[-93.94036599488157,17.763676186126474],[-93.94002631534755,17.763187211587194],[-93.93991540667093,17.762606762568907],[-93.93988661963158,17.762258313843915],[-93.94047517279148,17.761338835349875],[-93.94157946199107,17.76054715300461],[-93.94114363677977,17.75984972243674],[-93.94083388306399,17.75960971542213],[-93.9401974084833,17.759243325146315],[-93.93953848002928,17.75905491451647],[-93.93899118462713,17.759078254360645],[-93.93804894087373,17.759405529531364],[-93.93679156200398,17.75976089962097],[-93.93656724722968,17.759775396348175],[-93.93609015171842,17.75972396588793],[-93.93569622130246,17.75948415763179],[-93.93525945760598,17.759096853216988],[-93.9364840533753,17.75709872004944],[-93.93772200389856,17.755782284362738],[-93.93814687952568,17.75563341498173],[-93.93901336869408,17.755548447966078],[-93.94150598224087,17.755477726600986],[-93.94048940279436,17.75383942751256],[-93.94026257705048,17.753370566869307],[-93.93991016978043,17.753023149650403],[-93.93930611125529,17.752824636073967],[-93.93859527336673,17.752519947340318],[-93.93771304856392,17.752546625376112],[-93.93721724300104,17.752582711062757],[-93.93579837552693,17.75299733707095],[-93.93487045487666,17.752925178899034],[-93.93360481853352,17.75185153882211],[-93.93284460404004,17.752273111704483],[-93.93260112804035,17.752659754321996],[-93.93227634026357,17.75311053748493],[-93.9318362551362,17.753279249495336],[-93.93161539072094,17.753307701928122],[-93.93132368039454,17.753311679350247],[-93.93006949853583,17.7533628275998],[-93.92932664229653,17.753280458548318],[-93.92912550169166,17.753256798506015],[-93.92805618580593,17.752577074526187],[-93.92781723361577,17.752470786256083],[-93.92671419814263,17.751882940108146],[-93.92525791438754,17.75153047204452],[-93.92490636172465,17.751373389833077],[-93.924717368742,17.751166827444592],[-93.92479069545254,17.750721325688914],[-93.9248609946406,17.750637506677606],[-93.92579083259488,17.75017501390215],[-93.92673493475917,17.749478254193207],[-93.9271015774487,17.74869771496634],[-93.92715434585818,17.748265185664764],[-93.92638404173607,17.74793649614486],[-93.92587690272086,17.748004548738493],[-93.92471438149482,17.74817704415875],[-93.92436440383835,17.748341096457068],[-93.92393930963885,17.748380288137525],[-93.92333940835618,17.74796577244024],[-93.92306428711555,17.747349936198134],[-93.92293293948853,17.74698651982061],[-93.92231463741285,17.74632833546218],[-93.92184121284629,17.746578466457947],[-93.92162829741204,17.747392579175084],[-93.92139601311703,17.748117320790243],[-93.92011562036646,17.749704227163704],[-93.91958416061294,17.749644101170077],[-93.91876655846988,17.749272411160632],[-93.91838397965785,17.749879810995765],[-93.91488059365594,17.749705505504323],[-93.91428735269398,17.74982784785459],[-93.91356355817686,17.751188522550365],[-93.91348670199108,17.75290652034255],[-93.91337493848607,17.753444861437288],[-93.91317837344644,17.75377450489384],[-93.91292708900846,17.753845930817306],[-93.91280141227475,17.753853517284767],[-93.91255416860662,17.753853562576694],[-93.91203222303335,17.753776668721343],[-93.9118134795703,17.753787204286823],[-93.91097475460163,17.754229602924738],[-93.91046446250192,17.754579109436804],[-93.90955035616702,17.754769921108732],[-93.90911111323157,17.754822471222838],[-93.90882127342684,17.75485536632283],[-93.90841911662704,17.754831992443826],[-93.90810046764938,17.754733821657112],[-93.90782075862904,17.754095352966715],[-93.9078708982837,17.752926279535245],[-93.90748708731775,17.752668736889007],[-93.90655876688675,17.75213985644399],[-93.90641422879412,17.75199055530362],[-93.90608220539877,17.751685452185257],[-93.9059072701773,17.751451401287625],[-93.90573908917384,17.75117223503611],[-93.90558987556074,17.750875549713726],[-93.90554048444773,17.750768883121566],[-93.90536461408965,17.750539676695098],[-93.90500098084584,17.75025540440106],[-93.90433336494908,17.750122501449994],[-93.90353123458897,17.750486276658194],[-93.90275860663235,17.751142520998656],[-93.90138859017128,17.753169464933478],[-93.90149022590612,17.75468569065856],[-93.90106887221935,17.755669328754493],[-93.90075360013304,17.75572347049058],[-93.90058062852177,17.755691171721026],[-93.90024466133997,17.75531768030777],[-93.89876741093735,17.753513641666984],[-93.89756961863532,17.753585305934223],[-93.89577005179194,17.75319335497113],[-93.89489395444411,17.753087049573935],[-93.8923671308483,17.753698689839837],[-93.89185168587841,17.75353925436599],[-93.89083472885716,17.752904107988854],[-93.89047580117597,17.75188617160535],[-93.89057938260811,17.751420970788445],[-93.89068557870485,17.751126904029604],[-93.89131814679644,17.750785330062797],[-93.89298726563203,17.75135419298755],[-93.89332206416333,17.751496064580635],[-93.8935409471261,17.751495068271595],[-93.89386324427062,17.751438447073042],[-93.89388615283252,17.750237335907343],[-93.89386312345164,17.749883155244902],[-93.89382559783019,17.749470662293106],[-93.89304801920309,17.74864535524199],[-93.89266816172187,17.74845573884346],[-93.89193638892647,17.74813737442031],[-93.89165746195079,17.748080061237147],[-93.8912801641348,17.74808079150364],[-93.88895934571377,17.748732871339087],[-93.88846282006779,17.74935929098484],[-93.88789351584347,17.749906102099658],[-93.88727399287819,17.750335242915867],[-93.887065131621,17.75053114517368],[-93.8867857963175,17.75085026259734],[-93.88657110377375,17.751334050499906],[-93.88687149920355,17.75229504389779],[-93.88790255328422,17.753601924432417],[-93.88773909043402,17.754116121153743],[-93.88756117464038,17.75428808058888],[-93.88733188617556,17.754399143994988],[-93.88689902270806,17.754657828942243],[-93.88639074849931,17.755161360190755],[-93.88610773656694,17.755766488591803],[-93.88579278827041,17.756635903113875],[-93.88534876668365,17.75722471770655],[-93.88448032338414,17.757191957890313],[-93.88309825815236,17.756574695601955],[-93.8830199123887,17.756220515416828],[-93.88492697763365,17.754537068515674],[-93.8848873537429,17.754268293214295],[-93.8844244563399,17.753610214733158],[-93.88272088201717,17.75251761272426],[-93.88252824553945,17.752292383613906],[-93.88196369282082,17.75173255983225],[-93.88123703620596,17.751298215997394],[-93.88075345435885,17.7516304686809],[-93.87996212437605,17.753252585145674],[-93.87788144084834,17.75600036137058],[-93.87762587100536,17.756366269143427],[-93.87739123342055,17.75654153756227],[-93.87704878012454,17.75656358064589],[-93.87678190342211,17.756381756677],[-93.87729822236969,17.754900192470075],[-93.87764011693935,17.754311852310366],[-93.87771494215735,17.75394475902391],[-93.87754802918539,17.753737727933697],[-93.8773429935062,17.753604113917845],[-93.8770117282013,17.75375229973986],[-93.87535877978655,17.755089593609114],[-93.87519332280795,17.755200360867036],[-93.8748875884026,17.75534842658459],[-93.87446634635558,17.755374753589706],[-93.87262921036086,17.75410667256375],[-93.87148720964836,17.75295034366144],[-93.87133280821735,17.752706525373185],[-93.87113945305953,17.752328398882696],[-93.87089710121796,17.75194129810035],[-93.87062493039548,17.751523924564594],[-93.87014914297669,17.750829194428775],[-93.87003316743011,17.750609651356],[-93.8699677954628,17.750292083345926],[-93.86999274175395,17.750169719945802],[-93.87010700762255,17.750034736365535],[-93.87064132433449,17.749628932430028],[-93.87095975809422,17.7494685922793],[-93.87139287252626,17.749258839241236],[-93.87199149600451,17.748950548236564],[-93.87279810409132,17.748620652874877],[-93.87426156611588,17.74825079697075],[-93.87457216157145,17.748033913571874],[-93.87466809119888,17.747206310843126],[-93.87455134205874,17.7468278468408],[-93.87441730833393,17.74661467373687],[-93.87386893258423,17.746035971526453],[-93.87273935563314,17.745252692105225],[-93.87148805529023,17.744625483601283],[-93.87084159119956,17.744294777390394],[-93.87034211260107,17.742072944510596],[-93.87027727350988,17.741865402774465],[-93.87001516465438,17.740786584528337],[-93.86989798534671,17.74033556160157],[-93.86963518637037,17.739762090918532],[-93.86980587485021,17.738975599319417],[-93.87025587716704,17.738935255785748],[-93.8709176157376,17.73938578128974],[-93.87153322326185,17.73995763941025],[-93.871765804218,17.740175198019813],[-93.87226189281427,17.740732204592916],[-93.87263521115841,17.740884820001213],[-93.87300419748391,17.74070026583587],[-93.87356497223243,17.740489649014478],[-93.87394259000422,17.740264893007748],[-93.87432615222622,17.739929097469883],[-93.87444008046282,17.73978715435095],[-93.87469709192862,17.739492597674825],[-93.87480860111492,17.739034221067925],[-93.87483743058868,17.7385420749265],[-93.87469848233701,17.73814911588306],[-93.87383648114746,17.737453039186164],[-93.87351125062861,17.737282708218856],[-93.87327767924717,17.736874440781435],[-93.87340490449407,17.736260099770107],[-93.87342316887464,17.735942024305132],[-93.87346228462786,17.735551477889828],[-93.87349275037218,17.73539658653391],[-93.87353294304387,17.734897460744833],[-93.87464934089587,17.735142140723156],[-93.87491218928676,17.735310056959634],[-93.87536353900055,17.735580785576758],[-93.87580969193641,17.73553223741908],[-93.8763042045245,17.735362018340254],[-93.87687297248516,17.735430999820153],[-93.87765237412145,17.736894651420982],[-93.877944017564,17.737324806312586],[-93.88091745091037,17.73602154983439],[-93.88208205378515,17.736342271557533],[-93.8832806985589,17.73614971272127],[-93.88361160845233,17.73565885927502],[-93.88358584166167,17.735179501630455],[-93.88316151559115,17.734695928988742],[-93.88289800603258,17.7345111910401],[-93.8825358152173,17.73427371095204],[-93.8808830414876,17.733766273155197],[-93.88020061375397,17.733589123293314],[-93.87976100962783,17.73340257993374],[-93.87884051774023,17.733256200527137],[-93.8781976699168,17.73331123250898],[-93.87728461403327,17.733396576646612],[-93.87609817676548,17.73317697705795],[-93.87592943934862,17.732754061551418],[-93.87601278120701,17.73218197610271],[-93.87663079760694,17.731603555152503],[-93.87692549696635,17.731160971184238],[-93.87740107995393,17.730904595504967],[-93.87782817350359,17.73051557339852],[-93.87834194875006,17.729847075856412],[-93.88011664324188,17.729069712288776],[-93.88043304765705,17.728704445928145],[-93.8807548394795,17.72667809144889],[-93.88073957331602,17.72643207723263],[-93.88061466036157,17.72595581469551],[-93.88002683625848,17.725211111366605],[-93.87924860155675,17.72480392718603],[-93.87827392377613,17.72453725857082],[-93.8766931251605,17.72521908305447],[-93.8767759988126,17.72605642577622],[-93.87616231480587,17.726663220700743],[-93.87593222259267,17.726603120449],[-93.87580642054183,17.72519872123769],[-93.87580461405969,17.72472581833364],[-93.87587368285074,17.723194558221337],[-93.87584562115092,17.722759588098825],[-93.87575251980223,17.722300058833696],[-93.87573837605919,17.722063932852222],[-93.87520914966944,17.720294634304196],[-93.87466254390205,17.719138288357158],[-93.87455364040204,17.71856906146951],[-93.87441640134813,17.717888485673598],[-93.87365045448763,17.716732046801667],[-93.87252490855525,17.71606884613641],[-93.87182545123335,17.715858965560017],[-93.87146406357141,17.715599292731213],[-93.87120665320293,17.715391734778336],[-93.87078109897499,17.714928386193037],[-93.87066227527453,17.71467758792363],[-93.870339392787,17.713992278584556],[-93.86999707620146,17.713536039222163],[-93.86951519123642,17.71344090610603],[-93.86935124796992,17.713497060795135],[-93.86898882673324,17.713844086889935],[-93.86878304777917,17.713963718087484],[-93.86830551462305,17.71423744122677],[-93.86795829382953,17.71429348971543],[-93.86728310726403,17.714036948353794],[-93.86657692584049,17.713981627663713],[-93.86638955746872,17.71463562011428],[-93.86681457283134,17.715009715940596],[-93.86733229036338,17.715878448470278],[-93.86721758505075,17.71614627343706],[-93.86474089778136,17.71650539758815],[-93.86461927831942,17.71671568224002],[-93.86551107683681,17.717444818414606],[-93.86584399801768,17.71792626373997],[-93.86610333395936,17.718063786131324],[-93.86629554869006,17.718043126007217],[-93.86654843695038,17.718056885758585],[-93.86669533713751,17.718004943042843],[-93.86720794721924,17.71769526584984],[-93.86795194582703,17.71747435052697],[-93.86832347843864,17.717417965156642],[-93.86875771436479,17.71748692741977],[-93.86914726640583,17.717815517174643],[-93.86915606383297,17.718118171428102],[-93.86899485065123,17.71823686264372],[-93.86871056195616,17.718423981165813],[-93.86791721595944,17.718654458397793],[-93.86758631775672,17.718721074781286],[-93.86726489781478,17.718829252390037],[-93.86564301023964,17.72032182214548],[-93.86507382613291,17.721063687382127],[-93.86525389656276,17.722019203242326],[-93.86473436563784,17.72217571569439],[-93.86447959704714,17.722030866451917],[-93.8639058971483,17.721838980184316],[-93.86340002500481,17.7217332527822],[-93.86262700238007,17.7215668446878],[-93.86230239812573,17.72133902709436],[-93.86164292219206,17.72094388560828],[-93.8606987783748,17.720862031287425],[-93.85984347072315,17.72091822398471],[-93.8586785906869,17.72089053611205],[-93.85900780892837,17.720128990048863],[-93.86023480257984,17.718182234114977],[-93.8604049392581,17.717831472161834],[-93.8604084520241,17.717370855744093],[-93.85976105025327,17.716927741661948],[-93.8592859224882,17.716852725984552],[-93.85794558540351,17.717872145994477],[-93.85712322932488,17.718740238543603],[-93.85645592288722,17.719353389261016],[-93.85600050956276,17.71955645152366],[-93.85480334693398,17.719827878872877],[-93.85387659103992,17.72018564886912],[-93.85330313269696,17.720205855781842],[-93.85208046426868,17.719876115165732],[-93.85157403193688,17.719740796277335],[-93.84986164221488,17.720428262627536],[-93.84951322601705,17.72084268264848],[-93.84917852161459,17.720886981164085],[-93.84858130931582,17.72070889931757],[-93.84834004387358,17.720550481747694],[-93.84820569720557,17.7203265944255],[-93.8480338209281,17.71965794070678],[-93.84797607717042,17.71874407110755],[-93.8480308560126,17.718371823800624],[-93.8484356361896,17.717770205652982],[-93.8492951228418,17.71765622807203],[-93.85014793975529,17.717541869643696],[-93.85053378904479,17.717199206258385],[-93.85040268141643,17.71665621779084],[-93.84915907773967,17.716239909276453],[-93.84848985608681,17.715738578446064],[-93.84699616133224,17.71409325974912],[-93.8464998606591,17.714588304757854],[-93.84641443969838,17.71493050796903],[-93.84657977202716,17.71552441332699],[-93.84579914058554,17.717098175556885],[-93.84563311947721,17.716855076895854],[-93.84544230522101,17.715970582335046],[-93.84515923673894,17.7148949769321],[-93.84442830883467,17.713079703916662],[-93.8441839493724,17.71233467599552],[-93.84381644150608,17.711727482179185],[-93.84337490597972,17.711420205999218],[-93.84123561829784,17.711793089456876],[-93.84066258885002,17.71190197051925],[-93.84015637802275,17.711768442302514],[-93.83954274150477,17.71160457499326],[-93.83883586099483,17.711490055720787],[-93.83890314093583,17.713144468532164],[-93.8393863110054,17.713674345862444],[-93.83957396476006,17.713826334254634],[-93.83985796310225,17.714332401622926],[-93.83999078845756,17.714781770205605],[-93.8398289675464,17.714986224946585],[-93.83952820504828,17.715044558730767],[-93.83738056869208,17.713611078149597],[-93.8370058539104,17.713839803264705],[-93.8357025538213,17.71608546445259],[-93.83490716699964,17.716549743769633],[-93.83454438054429,17.716607947981572],[-93.83415153232386,17.716623401355264],[-93.83311565558068,17.715893488853226],[-93.83166212018273,17.714401506006993],[-93.831216225952,17.71399588032142],[-93.82981050906716,17.714067002260492],[-93.82887295438883,17.715072182813515],[-93.82869673072162,17.715569001141546],[-93.82864305281373,17.71647096371231],[-93.82882693446993,17.717488194014948],[-93.82820615074212,17.71869618870943],[-93.82769443963673,17.718924349154975],[-93.82682650479762,17.719204744201193],[-93.82649333496119,17.718188461790817],[-93.82696018096385,17.717702140431413],[-93.82705525938428,17.717197643870804],[-93.82665778128967,17.71499539561114],[-93.82722506094046,17.71425337393663],[-93.82781710137618,17.713948825586215],[-93.82842911183286,17.713727939001615],[-93.82867424386228,17.713300256344326],[-93.82832738075786,17.712386453644683],[-93.82755438967968,17.711044126066554],[-93.82683334035994,17.710921767761874],[-93.826074935171,17.71025801664524],[-93.82569806106102,17.709886221297324],[-93.82488784654447,17.709613423302812],[-93.8241603865107,17.709734268554655],[-93.82351079691131,17.709428605867345],[-93.82347607544204,17.709154322717723],[-93.82374371518824,17.708524736070558],[-93.82424125383852,17.7079478300235],[-93.82490828977177,17.707351079751902],[-93.82546223591942,17.70669813477366],[-93.82599556761892,17.705959409156947],[-93.82538659386569,17.70534366065715],[-93.82432149340463,17.70513116389884],[-93.82329661063494,17.704623062559676],[-93.8228867865792,17.704100052401316],[-93.82285681664217,17.703486367185235],[-93.82328530380039,17.702263460722747],[-93.82327124783899,17.70148341904138],[-93.82308183842429,17.70091950827316],[-93.82267255911108,17.70006788411831],[-93.8223406809883,17.699576503022115],[-93.82165030276917,17.70027035883811],[-93.82163345022815,17.701042758867914],[-93.82091060015739,17.700889017598968],[-93.82047371977325,17.699977563148764],[-93.8184333947301,17.70076939768944],[-93.81761105644802,17.70124141727854],[-93.81685513422678,17.701760924954897],[-93.816224148059,17.702726187607084],[-93.81610602483244,17.70323569215816],[-93.81572559618303,17.703537140873266],[-93.81490730671698,17.703505330488156],[-93.81438743248196,17.703628924859856],[-93.81397751334606,17.70415333493611],[-93.8136082667852,17.704861508732336],[-93.8134881262452,17.705230756713718],[-93.81307495923465,17.705972253162656],[-93.8128982828755,17.706547358135538],[-93.81172495720875,17.706956791479456],[-93.81123074001141,17.706814674047166],[-93.81111580096274,17.705331934033723],[-93.8116492833002,17.705055900021364],[-93.81238452484286,17.704520150978567],[-93.8129865895105,17.703607585478437],[-93.81260942615438,17.70251793300048],[-93.81204041241273,17.702860783132223],[-93.80752482885214,17.70619882418771],[-93.8071406134062,17.706106503454578],[-93.80698908167557,17.70591903438111],[-93.8069831734183,17.705404578715672],[-93.80697064394377,17.70450954992981],[-93.80531290701794,17.702633979677273],[-93.80598510894146,17.701901301899966],[-93.8063237187971,17.70094526771038],[-93.80611809088623,17.70019325040613],[-93.80651064949342,17.69922414330756],[-93.80705919527293,17.69827222057529],[-93.80720616821088,17.697835428672022],[-93.80724051040426,17.697259822585693],[-93.807184522581,17.696521164973944],[-93.8071050810878,17.695394695523248],[-93.8069771244248,17.69457608022435],[-93.80661979406096,17.693712775072356],[-93.80612684417184,17.692960300796585],[-93.80573072481724,17.691074055044112],[-93.80542973880597,17.690113402574184],[-93.80539807002322,17.689731736892725],[-93.80515466374737,17.689355506460856],[-93.80477347827491,17.689250645876996],[-93.80454822308991,17.68937640765057],[-93.80353060593956,17.68923820396799],[-93.80284264071247,17.688696665960833],[-93.80205716451371,17.688071225961266],[-93.80012506573263,17.68751799543662],[-93.79968456554656,17.687460047630225],[-93.79889115143925,17.68740331814638],[-93.79864448812737,17.687564101571525],[-93.79818784488458,17.688122738055256],[-93.79768952286508,17.688594903883313],[-93.79647855498524,17.689214812618673],[-93.79664426922528,17.690779205580498],[-93.7974485664239,17.691109800908123],[-93.79724630751053,17.692450135596005],[-93.79609797806052,17.692573794433144],[-93.79496507420703,17.69246893809884],[-93.7935996708984,17.692549740502898],[-93.79135976873215,17.693724941305334],[-93.79141571342547,17.69437238166978],[-93.79126901433091,17.694636358971138],[-93.7898044654674,17.69413696621075],[-93.78882112949469,17.694045602045435],[-93.78811032234216,17.694297671415086],[-93.78754822620903,17.694381470748453],[-93.78665025863887,17.69381589732143],[-93.7864246397586,17.693443443540332],[-93.78577890639173,17.692117772206927],[-93.78528836163855,17.691046273108782],[-93.78407929042919,17.691127670730737],[-93.78379555659319,17.69138018306586],[-93.78201258463264,17.69322974523402],[-93.7815760819285,17.693309757553777],[-93.78094300093812,17.69284193252264],[-93.7817776264668,17.69189162265559],[-93.78143345012074,17.688885763895826],[-93.7789694122622,17.688904528304874],[-93.77859672928133,17.689144809564993],[-93.77797981186279,17.69043274250572],[-93.77862775749674,17.69171925713391],[-93.77855985830433,17.69200409375111],[-93.7780786769992,17.69249717246589],[-93.77765707766662,17.692307530385165],[-93.7773353006454,17.691177230924893],[-93.77689978257933,17.69069354611503],[-93.77572977348007,17.690371047642486],[-93.77531818351156,17.690842644871452],[-93.77493009455611,17.69170006205087],[-93.77411318632238,17.69231148067098],[-93.77311892848735,17.69272129683594],[-93.7725698846516,17.692708985607283],[-93.7724037811974,17.69259735055641],[-93.77242714805703,17.69220735018024],[-93.77264020953828,17.691608401729923],[-93.77276487559561,17.690867450295343],[-93.77278449065523,17.69054005120472],[-93.77274585650486,17.689698662321916],[-93.77284708040071,17.689199615592997],[-93.77290803686031,17.68857984471748],[-93.77293286204889,17.687653547544983],[-93.77191908868338,17.68702319832755],[-93.77154008655839,17.68691745595214],[-93.77091236577087,17.686814629634057],[-93.77035812513134,17.68678411188216],[-93.76883027135887,17.68810872537216],[-93.76763600342241,17.68553715149403],[-93.76790285526687,17.684903190444004],[-93.76820832042989,17.684134108854494],[-93.76815420244122,17.683666543467723],[-93.76803276796647,17.683267038307747],[-93.76760193522483,17.681106270552277],[-93.76745831939229,17.680583027423438],[-93.76694090296195,17.679603439205266],[-93.76633516574668,17.678883439042806],[-93.76535814955741,17.676649597154665],[-93.76540989148566,17.6758542971981],[-93.76574500040681,17.675086543980967],[-93.76504125764018,17.67457324934537],[-93.76329783792823,17.67507793029756],[-93.76342548640656,17.67542671880085],[-93.76398820451857,17.676979346012388],[-93.76495461812829,17.679095507146883],[-93.76531272305459,17.680186303950165],[-93.76500194236905,17.680925548283824],[-93.76368521365339,17.682103290291536],[-93.76265164094428,17.682212959077788],[-93.76244237170721,17.68231719625436],[-93.76194129775735,17.68259343281636],[-93.76164586772313,17.682740513194062],[-93.76097028792611,17.68323766852626],[-93.76058048978075,17.68370628837266],[-93.7599923858105,17.685018000286334],[-93.75937762489002,17.684971033396778],[-93.75837783125661,17.68403173611324],[-93.75723341837022,17.683713770335828],[-93.75711051553083,17.683942237280746],[-93.7569273996117,17.684435307029162],[-93.7564497008263,17.685426365073113],[-93.75539299848492,17.685902575875673],[-93.75428118784055,17.68572362188945],[-93.75299893461562,17.685276959894964],[-93.75178888548345,17.683986556042726],[-93.75170375145592,17.68329276834328],[-93.75202701718297,17.68256892633451],[-93.75307865077855,17.68211740478779],[-93.75376277728509,17.682116113896996],[-93.75428738860927,17.682145059385164],[-93.75556725587433,17.682502690918056],[-93.75620501580534,17.6827468873376],[-93.75638161248708,17.68273145137539],[-93.7565347156891,17.68262435949731],[-93.75673174790813,17.681391481017613],[-93.75680682067065,17.680397940602347],[-93.75703654114051,17.679199708339638],[-93.75728821509801,17.67823737537907],[-93.7572332193368,17.677690083063112],[-93.75693367323174,17.676994185030196],[-93.75651607132772,17.676941839714573],[-93.75584346594718,17.677357498043477],[-93.75387625819661,17.678631573132293],[-93.7534517440535,17.67900153421874],[-93.75341066853235,17.67968556645212],[-93.75338362618152,17.680134634253875],[-93.75288975195627,17.680078070267143],[-93.75230042176622,17.6795730167604],[-93.75204363258564,17.67865252693133],[-93.75233282066347,17.677343806836745],[-93.75206154663954,17.676634604762057],[-93.75183631904918,17.676563564632715],[-93.75144994791691,17.676882906117726],[-93.75131736639162,17.67717961614136],[-93.75128861886265,17.6779747012925],[-93.75127441657094,17.67884831184],[-93.74973517494368,17.679504678341914],[-93.74892393472703,17.67907434094758],[-93.74816041022507,17.6754022761977],[-93.74783533313342,17.675384326213134],[-93.74712836910896,17.6758113048906],[-93.74543929817088,17.676656641848012],[-93.74486659844433,17.676839023640696],[-93.74348493358002,17.67733906638034],[-93.74200234817118,17.677866285450364],[-93.74055095934801,17.67841737176576],[-93.73957824103803,17.679047819713844],[-93.73882046434773,17.6793833656414],[-93.7383018431882,17.67915306982934],[-93.73813300902896,17.6786590727134],[-93.73803838984543,17.677991442047244],[-93.73841007273211,17.677254576663245],[-93.73906411014451,17.67682579991083],[-93.73951833989946,17.675965334672924],[-93.74004273974055,17.674838598392682],[-93.74028273200662,17.674700257314157],[-93.74065877813399,17.674740907407738],[-93.74087303023157,17.675391303865013],[-93.74122601206352,17.67570467708407],[-93.74175929590638,17.67558688597444],[-93.7420326359703,17.675384558583687],[-93.74247131486288,17.674937444818454],[-93.7430004502512,17.674023591747016],[-93.74326137986014,17.673074063593504],[-93.7435648931916,17.671489922312958],[-93.74396377003887,17.67072780744519],[-93.74707931061437,17.668350567990842],[-93.74656751906218,17.66612417935437],[-93.74633011254559,17.665480197013324],[-93.74626396901681,17.665071147390677],[-93.74610037872554,17.664291955945316],[-93.74594257401384,17.662896600122963],[-93.745620294628,17.66222034169607],[-93.74536225858151,17.662206088164055],[-93.74453460573739,17.66305455760414],[-93.74387769890421,17.664366325098797],[-93.74182956990234,17.66628761622536],[-93.74140722564437,17.665749570117384],[-93.74116046815101,17.664286296888235],[-93.74189824977861,17.66283152875684],[-93.7422357500111,17.66229843001662],[-93.74267445911426,17.660950195733278],[-93.74613780535009,17.66082322812565],[-93.74655491038578,17.660576408331337],[-93.74651039512611,17.659540539515376],[-93.74552607526653,17.65861264287372],[-93.74496643645773,17.65769482169594],[-93.74448040050947,17.65694723499206],[-93.74377279145187,17.65712242113733],[-93.74309146423724,17.657487629276943],[-93.74208047143088,17.65598484500589],[-93.7417668214108,17.654302925546745],[-93.74203754200789,17.65367858646283],[-93.74207298085531,17.652848489918426],[-93.74167182169964,17.652177935481404],[-93.74116325219865,17.650833492252616],[-93.74094614710901,17.649611284502498],[-93.73835556940918,17.65118403931973],[-93.73760839616983,17.651607390802667],[-93.73454829691991,17.650251271364937],[-93.73344749866055,17.64971676286899],[-93.73257734197614,17.648528170257805],[-93.7324331247658,17.64761271126457],[-93.73157740913268,17.645739241710544],[-93.73116825926917,17.644505568239083],[-93.73043276588857,17.643105491515144],[-93.73015154422893,17.642285904794562],[-93.73159669909438,17.640007715642014],[-93.73372840942005,17.638863664906467],[-93.73444247453574,17.63852683755681],[-93.7352497731676,17.63809365848408],[-93.73718789207595,17.63743024517902],[-93.7377527437913,17.636758702593397],[-93.73787930614617,17.63354707604077],[-93.73788980794336,17.631925496981978],[-93.73773462484803,17.631619641854286],[-93.73713767896356,17.631203434125553],[-93.73580075148334,17.63027665841389],[-93.73528020977699,17.63008187531119],[-93.73457808517054,17.63027912739784],[-93.73437496930626,17.63101171775031],[-93.73439577805499,17.63144570928921],[-93.73410241551551,17.632452209200892],[-93.73343915802036,17.63313140159869],[-93.73226604316352,17.634800126034634],[-93.73240670917818,17.635289791763796],[-93.73234520493651,17.635850282266347],[-93.73173650596311,17.636187433014356],[-93.73100016037893,17.635486134472615],[-93.73128562128943,17.634383973288436],[-93.73205928597156,17.632902611855968],[-93.73249858602708,17.631681989818958],[-93.73274159176918,17.631236096135694],[-93.73347212510816,17.629688657793622],[-93.7335793893725,17.629153255852373],[-93.73362651119982,17.628304939140378],[-93.73353913292277,17.62707674421131],[-93.73176998000764,17.62556009253757],[-93.7313099574414,17.62613732022919],[-93.73100577426737,17.62657683874761],[-93.73056451293519,17.62716678779759],[-93.73015336604459,17.62808888352805],[-93.72992566865753,17.628751784109568],[-93.72960911748504,17.629365419518365],[-93.7294887485022,17.629544227409383],[-93.72911917509617,17.629865241120626],[-93.72861777610831,17.6296127398831],[-93.72724644292299,17.62775608282317],[-93.72678004809609,17.626906983206936],[-93.72552283400051,17.626243879134336],[-93.72493617728566,17.626048541747878],[-93.72435201956603,17.626094359031015],[-93.72375726895984,17.62621800838508],[-93.72354657296842,17.62620633662641],[-93.72315484954066,17.62542988229535],[-93.72325735611406,17.624665423861018],[-93.72360560023435,17.62373547185723],[-93.7227352096088,17.623109492753827],[-93.7211514382073,17.622758627494136],[-93.72071477752422,17.622864376019663],[-93.71918241954552,17.623045976423327],[-93.71778485584946,17.622627222569008],[-93.71707554651204,17.622105083705662],[-93.71606035719225,17.62131606469643],[-93.71402844091017,17.62145216189691],[-93.71302222438032,17.621691098056317],[-93.71197553510012,17.623535550145505],[-93.71245971134914,17.624010137663447],[-93.71279806572397,17.622919859037665],[-93.71318988422331,17.62271132996949],[-93.71365883909988,17.62296996769902],[-93.71382286568024,17.623483096260884],[-93.71335386239701,17.62460910462073],[-93.7130591906137,17.625199126566315],[-93.71336695184743,17.625811696902815],[-93.71354012128205,17.625934317151007],[-93.71408809240006,17.625882834267088],[-93.71480710931297,17.625874092251422],[-93.71552784068632,17.62620912943663],[-93.71595073161518,17.627301206826928],[-93.71651064952482,17.628257517385293],[-93.7171611776966,17.62913482170518],[-93.71752155166746,17.629806000053634],[-93.71814793128078,17.630556247744437],[-93.71885813111794,17.631896977254428],[-93.71916009985932,17.633056862073943],[-93.71917042251289,17.63346353143612],[-93.71903894165638,17.63365069072313],[-93.71852124355343,17.633908554659],[-93.71747715534826,17.633523275830782],[-93.7171579189449,17.633413466981665],[-93.71622152954433,17.63310784396674],[-93.71415924532732,17.631564919371215],[-93.71267980188429,17.63003315796425],[-93.71330807497225,17.628837700921224],[-93.71318614267989,17.628630897993162],[-93.71163395188523,17.6281468084901],[-93.70995448463907,17.626927590943467],[-93.70971467943264,17.624988525720767],[-93.70923754434199,17.624375113611052],[-93.70849269590775,17.623415842237762],[-93.70871873181403,17.621405688966718],[-93.70931868897344,17.620081594966223],[-93.70956081069033,17.61908541391199],[-93.70963659365992,17.617829654770674],[-93.71047297760731,17.61408080444272],[-93.71032705711337,17.61335281848892],[-93.70969133758808,17.6116329873243],[-93.70772119831008,17.611973753104166],[-93.7072139561028,17.612237715246465],[-93.70683321015434,17.612211529473086],[-93.70653476896717,17.612088867169803],[-93.7057059330607,17.61098346670161],[-93.70567196700131,17.610835261760315],[-93.70533235484845,17.610716945218485],[-93.70460084176045,17.610380520333365],[-93.70372370420534,17.610397148601578],[-93.70330550131757,17.61070142707689],[-93.70276997475582,17.61109890881238],[-93.70211022606708,17.611283934011453],[-93.7014073965218,17.61178328778135],[-93.70063290802102,17.612932393860092],[-93.7003819467028,17.61350159022038],[-93.70011080870995,17.613904050019016],[-93.6999945419879,17.613926045012022],[-93.69986144391856,17.613906273253065],[-93.69965743996153,17.613685619963462],[-93.69997708237673,17.612605719533747],[-93.70005532701771,17.61230061927739],[-93.70046999605603,17.611256632982986],[-93.70118084234906,17.60706960749826],[-93.70080722835877,17.605368147458023],[-93.70032986146356,17.60353509219476],[-93.69973487334897,17.601382473697583],[-93.69945117980154,17.599940336341774],[-93.69978593116366,17.598492045658304],[-93.69973717894902,17.596411812997303],[-93.69794633010576,17.594322981977143],[-93.69692774770664,17.593104829162826],[-93.69559540488984,17.592108737852584],[-93.6947713323251,17.59124726000192],[-93.69371982895228,17.58990454555226],[-93.6935256617067,17.58968072425722],[-93.6931185243754,17.58949551797508],[-93.69280787334924,17.589626486955638],[-93.6916512758757,17.590175995321545],[-93.69140392647643,17.59071649369156],[-93.691422360265,17.59099220321042],[-93.69155087441277,17.591388147296072],[-93.69331028282016,17.59326417226896],[-93.69280427305841,17.593652490800253],[-93.69148017185046,17.593958869718392],[-93.69022024759244,17.593888784767614],[-93.6888772475919,17.59389858652878],[-93.68720937034732,17.593694375550342],[-93.68510739117227,17.59265228367974],[-93.68616987940032,17.58909529766578],[-93.68541883954191,17.587086363654976],[-93.6834159255987,17.587061654327044],[-93.68281209882196,17.587028033027195],[-93.68069100142776,17.58712712969492],[-93.67953457859517,17.585859203249868],[-93.67984090656614,17.585876266860282],[-93.6807304737037,17.585281744997246],[-93.6808133869398,17.584927619496796],[-93.6801379049461,17.58273036082079],[-93.68001579141526,17.58243978055515],[-93.6795837425779,17.581620927170263],[-93.67890966437602,17.580822637351275],[-93.67863993621302,17.580197654100004],[-93.67823297902032,17.57969073164452],[-93.67727778750577,17.579164622120572],[-93.67743642785643,17.57831677255831],[-93.67763428071726,17.57787816564644],[-93.67773659122793,17.57736985383673],[-93.67772204582064,17.576544943565068],[-93.67738322011218,17.575902732873715],[-93.67596018021823,17.57609101844446],[-93.67444775573898,17.576329073392117],[-93.67423421233468,17.576317169930974],[-93.67399972715623,17.57648284957895],[-93.67348512543447,17.57671583442334],[-93.67316645500875,17.57678241329711],[-93.6724926890601,17.57678065376308],[-93.67016363024231,17.575449534951645],[-93.67054293451122,17.574724448166933],[-93.67070753448417,17.57440979003286],[-93.6715046633912,17.57359701275027],[-93.67205617696743,17.5729738297444],[-93.67208929685694,17.571950974800018],[-93.67199191615504,17.571337155407548],[-93.67121858389805,17.569560624119788],[-93.67015516236648,17.56953890435659],[-93.66903230402062,17.56980913250169],[-93.66860783817674,17.569785455088947],[-93.66785633502735,17.569756885922345],[-93.66728924575267,17.56936969254491],[-93.66696934937255,17.568963913184177],[-93.66676870344315,17.568844760767888],[-93.66574906607343,17.56824067817064],[-93.66512064383465,17.567860277012073],[-93.66494096688825,17.567747861673695],[-93.6643238134734,17.56734625458779],[-93.66345268447566,17.56679967753945],[-93.66260025423009,17.56645592001371],[-93.66141530397118,17.566002504123105],[-93.66060127430802,17.56583278369129],[-93.65916928015832,17.56548634624295],[-93.65877928369207,17.564842466385414],[-93.65890597303144,17.5638325715027],[-93.6590602753601,17.563283522028883],[-93.65944353230293,17.56208987944359],[-93.6595360095568,17.560035496261605],[-93.659462052876,17.55952622626421],[-93.65924600249343,17.55885261291246],[-93.65831590341674,17.557483994975087],[-93.65671229515158,17.55534257917344],[-93.65654206146701,17.555238083191057],[-93.65476231177047,17.555456034074552],[-93.6544513858413,17.55573054607737],[-93.65442195288131,17.55621520258768],[-93.65454387951206,17.556627688261187],[-93.65461769622942,17.557244436992562],[-93.65468825532196,17.55929969196609],[-93.65303112166998,17.559798583332338],[-93.65136666335843,17.558595426905583],[-93.65010298140282,17.55786733901391],[-93.64887644168982,17.555450668925687],[-93.64750240018151,17.555364903098734],[-93.64494507801294,17.55549370330533],[-93.64372523026691,17.555833538977595],[-93.64352221535773,17.556316155922957],[-93.64276356228874,17.558044456155642],[-93.64175332961372,17.557832402171528],[-93.63932308679529,17.55562637396605],[-93.63829180299086,17.55528828055111],[-93.63743072451143,17.55550650914097],[-93.63618346436584,17.556092914082683],[-93.63552522741992,17.55643746615715],[-93.63390701300779,17.556867818358683],[-93.63254815501028,17.556922999296035],[-93.63114354637065,17.556734740424247],[-93.62932253745214,17.55509901234643],[-93.62999468160581,17.552175147776268],[-93.63093011117536,17.551918086771764],[-93.63135900545694,17.551599925729022],[-93.63172309714008,17.550789813406368],[-93.63163714656491,17.550386540243267],[-93.63074348340194,17.549823264969177],[-93.63004145302892,17.549537105342324],[-93.62912369436606,17.549397868683513],[-93.62768483087547,17.549262356741565],[-93.62679819757795,17.549278956187493],[-93.62618604778282,17.54906050196655],[-93.62543564230464,17.54883038117623],[-93.62390869667985,17.549554627720738],[-93.62342626206811,17.55042789628203],[-93.62272712905184,17.55135512216225],[-93.62152139200367,17.552883928306358],[-93.62005960965217,17.553769050304652],[-93.6194906400633,17.554295296754617],[-93.61843451988904,17.554921601309843],[-93.61752251056595,17.55516506348772],[-93.6157522996649,17.555300750267577],[-93.61524659607477,17.555111789858472],[-93.61498414493246,17.55438796307044],[-93.61360112529195,17.55251127309691],[-93.61692845211019,17.5492727951368],[-93.6182715735257,17.54790732383242],[-93.62002662852439,17.546502413865767],[-93.62100760555813,17.545465234267738],[-93.6213605255868,17.5450517803136],[-93.62086434723017,17.54329963172387],[-93.61961191849247,17.54301457946275],[-93.61830551834976,17.54245411900905],[-93.61828546549549,17.54174040372061],[-93.61880042441527,17.540377198786075],[-93.61911065185052,17.53934417637447],[-93.61930531272981,17.538946032021613],[-93.61956475346057,17.537558602859463],[-93.62005451271648,17.537006878503462],[-93.62089058101037,17.537034316218694],[-93.62352597228164,17.538509943192878],[-93.62469184915767,17.53826353189919],[-93.625168217382,17.53766864080461],[-93.62547995693217,17.53695729304701],[-93.62678318992454,17.533081707778138],[-93.62726325126374,17.531682213304066],[-93.6274744329096,17.528952049168936],[-93.62788126562191,17.528546147221505],[-93.6269368581797,17.527419095553853],[-93.62611328169464,17.527168900060758],[-93.6251221914294,17.526283165883],[-93.62580473561627,17.525071969119324],[-93.62619551238714,17.5244063168999],[-93.62665606811686,17.523997370865004],[-93.62661620831182,17.520378275251403],[-93.6264817341011,17.519513319545638],[-93.6259561101873,17.51831981647183],[-93.62534814760318,17.514402129214375],[-93.62767027642246,17.514224180520728],[-93.62971892076314,17.51273071312795],[-93.6300148155795,17.511610604100042],[-93.63333029212072,17.50976932528613],[-93.63518725182018,17.51029087411763],[-93.63652567805889,17.510444065410013],[-93.6369589396358,17.51033972030109],[-93.63724218038897,17.51002821462157],[-93.63718270353729,17.509481666207023],[-93.63573759617788,17.507926707072784],[-93.63455384830837,17.507216436742908],[-93.63385348016607,17.50705950588582],[-93.63147096740272,17.50693585573117],[-93.63005897163771,17.50670728734582],[-93.62720474445439,17.50556685796289],[-93.62607154809984,17.50442127828603],[-93.62567180173494,17.500833495470488],[-93.62721358264207,17.50135476451885],[-93.6287712425584,17.5019305409445],[-93.62946189019402,17.502005078254],[-93.62969455624483,17.501744277402167],[-93.62990926734864,17.500876629431275],[-93.62829134262779,17.49916659123204],[-93.62712703163982,17.498113501870364],[-93.62661002534077,17.49711437934309],[-93.62589335417829,17.495861725612997],[-93.62479728947909,17.495086802030983],[-93.62427395428944,17.494544774086535],[-93.62410483902613,17.493457238981136],[-93.62459178183656,17.493026158420037],[-93.62612659672874,17.492184742402287],[-93.62668727594013,17.49176506896265],[-93.62778669311638,17.490805788226908],[-93.62825812140323,17.49035563790011],[-93.62857632756334,17.489948868300417],[-93.62972288084802,17.48889464663813],[-93.63087980101665,17.487366333143484],[-93.63139842361034,17.486399991272435],[-93.63136165100343,17.485819490448307],[-93.63165328768258,17.48306426576829],[-93.63164195205138,17.48197398964186],[-93.63179555867737,17.4816845723318],[-93.63218945924109,17.481278247012995],[-93.63464177766497,17.478368984554663],[-93.63479974734923,17.477688655197937],[-93.63512523236375,17.476854049702467],[-93.63527882961682,17.47661448801017],[-93.63582591165533,17.476196224857688],[-93.63606294647889,17.47604406069661],[-93.63621130773464,17.475487086945066],[-93.63690992593064,17.473703065902498],[-93.6371476749631,17.472598365873637],[-93.63663143726296,17.471437256445313],[-93.63579310568252,17.470794672363013],[-93.63566802979102,17.46982965764863],[-93.63569020669524,17.46917509507665],[-93.63557116544791,17.46842549725892],[-93.63570123975398,17.468063675349413],[-93.63631031495021,17.46748906705602],[-93.63717651954954,17.46693293442928],[-93.63867025960127,17.466256011942335],[-93.63928893790995,17.46518978776089],[-93.63995646549978,17.464631039900098],[-93.63959313522759,17.46408340385392],[-93.63920932518681,17.463267921047475],[-93.63946592220037,17.46239244807316],[-93.63958911882474,17.462122664129367],[-93.64027015871056,17.461323517517883],[-93.64017107546977,17.460837557961895],[-93.63961218130146,17.459267122828862],[-93.64044352765563,17.458820829317915],[-93.64112265972602,17.459020084593874],[-93.6419415481663,17.459281917646877],[-93.64302367970419,17.46079885668115],[-93.64610376143554,17.46182542920559],[-93.6470371539707,17.461591652854963],[-93.64771241965889,17.46174409799056],[-93.64846458841106,17.460946286537762],[-93.649437218939,17.460063349477934],[-93.64980639524799,17.45982346881806],[-93.6499389545836,17.459553311646403],[-93.65031612743155,17.459047948638784],[-93.65036785861366,17.457968134642158],[-93.64949226278242,17.45710118473562],[-93.64840707485979,17.457701161979344],[-93.64789980215676,17.45891600083428],[-93.64739360475363,17.45918863460355],[-93.64579418977257,17.459036275363644],[-93.64463510092645,17.45784396606416],[-93.6439625055545,17.456821817000844],[-93.6444336286138,17.45623771108643],[-93.64580521744114,17.455746140984672],[-93.64603172241021,17.455437505469263],[-93.64643987449693,17.454676364214038],[-93.64681081524554,17.453767920866255],[-93.64647873266176,17.453189566706328],[-93.64493210592951,17.4526660144669],[-93.64415711730743,17.45217120703967],[-93.64335232068669,17.452126149233493],[-93.64310721201832,17.452208360013003],[-93.64290444051528,17.453298465758053],[-93.64325756794426,17.45407949105936],[-93.64323460420803,17.455236328113244],[-93.64246233995777,17.45606997824018],[-93.64181952890021,17.456033983265172],[-93.64006497858611,17.45489197981442],[-93.63955924309693,17.454692112791577],[-93.63880298210341,17.455128261827724],[-93.63659740354615,17.455276881003215],[-93.63614984950965,17.454410535234388],[-93.63647433860308,17.453294673508367],[-93.63639147645739,17.452754104327312],[-93.63568441984256,17.452452514430036],[-93.6353951227465,17.451093847336892],[-93.63652038983543,17.450251548982123],[-93.63692441223503,17.45006526827143],[-93.63780661403212,17.45011469814409],[-93.63878758617392,17.450235558985582],[-93.64095441221178,17.449380636308376],[-93.64194133142854,17.4479045524497],[-93.6439806359823,17.446556373932083],[-93.64401429901511,17.446002418803403],[-93.64359938633169,17.44539647358033],[-93.64304894769998,17.44426439503883],[-93.64268266273388,17.44375151156305],[-93.64279053586279,17.4434370616587],[-93.64383227728933,17.44284988234574],[-93.64401308759676,17.44262464653991],[-93.64439265993701,17.442565778164465],[-93.64477354928488,17.442657210897153],[-93.64517987776821,17.442401588069345],[-93.64516515475577,17.442035902745033],[-93.64292969358104,17.440370489026975],[-93.64166356656199,17.43923715210792],[-93.64077223430598,17.43927705055529],[-93.6392097758519,17.439480765410053],[-93.6371997906515,17.43871142157394],[-93.63732601545053,17.438347064135314],[-93.63788900427733,17.437968870960617],[-93.63820632607548,17.436086258334115],[-93.63870979653689,17.435605667023708],[-93.63973078633313,17.435043298766857],[-93.64098801766852,17.43470753753826],[-93.64395354907487,17.43347101526507],[-93.64451448834524,17.43343487514909],[-93.6456944023069,17.43261968261146],[-93.64607838309024,17.432172917738512],[-93.64615812185542,17.4320197935578],[-93.64591626240218,17.431673063883693],[-93.64559757019629,17.43081112327144],[-93.6458760805516,17.430340440568898],[-93.64606594193219,17.43040360605005],[-93.6465628888306,17.430609364670886],[-93.64675252449456,17.431084438762753],[-93.64740125285306,17.431603421985926],[-93.64876712624016,17.432463666514707],[-93.64985426202838,17.431394164100936],[-93.65039504033274,17.430490640315725],[-93.65076319522854,17.42929782159831],[-93.65096302136448,17.426874480515494],[-93.65110419646737,17.42590136465384],[-93.65200215359732,17.423438139660107],[-93.65311492327373,17.42215060667604],[-93.65327197889968,17.421671641433306],[-93.65355415553535,17.421407419622994],[-93.65357794683865,17.42101540821443],[-93.65285677297686,17.420084527552262],[-93.6540499189453,17.419616322930665],[-93.65573829259188,17.419912371906776],[-93.65622373643771,17.419536733929704],[-93.65714162432937,17.418094326445953],[-93.65854055770001,17.416746501152602],[-93.66094914885036,17.41700671611153],[-93.66148767299683,17.419239134576912],[-93.66226456503375,17.419362819859884],[-93.66259717236778,17.419537018990752],[-93.66308391358717,17.41970384244621],[-93.6633780957514,17.41962428701129],[-93.66422220626924,17.4186578164734],[-93.66522544752866,17.417594170072903],[-93.66537397462656,17.417105702250296],[-93.66528613226313,17.416508513586052],[-93.66523577167197,17.41607762060204],[-93.66573973720341,17.4160005482741],[-93.66629192672224,17.41647316395847],[-93.66639321694242,17.41787174683361],[-93.66676083426319,17.419787402235556],[-93.66809922797836,17.42017742473837],[-93.66897228521577,17.420166257323274],[-93.66929570553981,17.420060446139985],[-93.66949687133405,17.41984084480947],[-93.66981068465446,17.41931224225891],[-93.67024087505581,17.419018219748978],[-93.67117857551813,17.418850986978555],[-93.67172069820651,17.419081339486468],[-93.67189625404336,17.419365607328643],[-93.67217792206998,17.419633389249725],[-93.67267566433628,17.419863525911637],[-93.67310232158201,17.41977275970214],[-93.67367596788375,17.419200074487662],[-93.6739474319333,17.41886841827869],[-93.67203903356847,17.41763441592309],[-93.67173780944114,17.417451423761236],[-93.67182368826394,17.417166726355333],[-93.67201813454568,17.416665671829435],[-93.67312779970695,17.415926250046994],[-93.67315957675089,17.415401406924786],[-93.67301561998244,17.414972571252235],[-93.67223422034562,17.41409811311911],[-93.67241175460276,17.41373422335704],[-93.67290361544912,17.413185008696814],[-93.67334019647353,17.412492103422835],[-93.67377733071612,17.412148501714],[-93.67570666833865,17.411255068154674],[-93.6771308476196,17.41025322512695],[-93.67805516645535,17.410748291462596],[-93.67816118393404,17.410937247033246],[-93.67827766444987,17.411090830717],[-93.67863117962469,17.411051972116923],[-93.68041562452242,17.40801195858961],[-93.68095190321577,17.407068347770235],[-93.68146595479726,17.406216082612275],[-93.68357080791554,17.40465073968585],[-93.68380772169456,17.404261264020988],[-93.68358858366281,17.403618267623017],[-93.68353005305028,17.40337357856697],[-93.68333155409476,17.403105650538407],[-93.6825276246069,17.40239514464872],[-93.68227234698958,17.40219621821052],[-93.68205428138504,17.40192200076342],[-93.6819185381546,17.401637101131143],[-93.68200385051989,17.400694041529903],[-93.68221409448017,17.399688169105957],[-93.68237683978629,17.399001329621854],[-93.68283216660052,17.39831519852254],[-93.68289577777637,17.39726323460974],[-93.68417618114086,17.395076342726895],[-93.68457942574935,17.39475556801557],[-93.68504047644171,17.39401617673809],[-93.6856781718904,17.394124895150128],[-93.68610941083034,17.395069926463805],[-93.68681839413637,17.395626336519058],[-93.68734431356597,17.395423468628394],[-93.68795262602941,17.394348109376438],[-93.68824601471954,17.393858175030743],[-93.68867288396251,17.3929557455769],[-93.68854356530397,17.392741366924838],[-93.68826940778825,17.39236353553605],[-93.68822649541818,17.391286421957147],[-93.68895729176171,17.391028289422422],[-93.68958168392385,17.390753339509047],[-93.69059191717736,17.390343452734612],[-93.69129554538068,17.390709104665007],[-93.69175483395998,17.390465359949076],[-93.69178623754306,17.389945446305887],[-93.69176156151002,17.389114100498432],[-93.69214953470367,17.388315262643687],[-93.6930710431609,17.387996665483854],[-93.69349271213679,17.388281442944105],[-93.69389170862206,17.38869166120969],[-93.6947716408796,17.388243527637144],[-93.6948806665767,17.388032958705594],[-93.69490036044607,17.38761797721628],[-93.69476706056997,17.387241675000723],[-93.69400265268098,17.386820525953],[-93.6937002872595,17.386371507548517],[-93.69346562039539,17.385816542255952],[-93.69297650275672,17.385802077665687],[-93.69181060515729,17.38520180208002],[-93.69178703846961,17.384876881985804],[-93.69172919605722,17.38446055970587],[-93.69167060055969,17.383843684624026],[-93.69157400144718,17.382892578870383],[-93.69170302669221,17.382292700885444],[-93.69129255992812,17.382153186316827],[-93.69086353573965,17.38267887584749],[-93.69049417563537,17.382989204207263],[-93.690448350753,17.383000585839966],[-93.69012191642918,17.382960655030217],[-93.6896903693351,17.382649018888458],[-93.6894837637754,17.38233217907731],[-93.68945404099475,17.38159425861005],[-93.68970697353188,17.381184020962962],[-93.68991628390393,17.380628839460087],[-93.68980376544891,17.379303040935213],[-93.68879747957953,17.37910389227926],[-93.68628927762114,17.377525104184542],[-93.68559783942919,17.377177086291113],[-93.68516785777518,17.377707613624068],[-93.6848412378813,17.378154401638483],[-93.68460230863434,17.378192676580625],[-93.68417314896226,17.377864428711916],[-93.68282950551395,17.37570402493128],[-93.68292884369623,17.374819780243854],[-93.68287458739911,17.37415990173679],[-93.68302511089536,17.3741477679161],[-93.68297064039984,17.37356379270193],[-93.68414063147037,17.37461296801621],[-93.68413323499004,17.37527372760087],[-93.68381583650842,17.375808136708088],[-93.6845568098978,17.375741083471837],[-93.68528545086389,17.374187290056682],[-93.68559521572297,17.374312919598992],[-93.68566821695629,17.374184268613135],[-93.6857960039045,17.373626294527526],[-93.68588288803045,17.37321495978489],[-93.68586615901529,17.372678038303434],[-93.68553893843597,17.372241360019814],[-93.68245046148047,17.370713804691547],[-93.67974430335522,17.368731942042473],[-93.67787518511255,17.36635063528945],[-93.67648175763514,17.365475026235174],[-93.67621636176762,17.36539113755606],[-93.67583361868037,17.365434821622955],[-93.67546269557386,17.365623207643296],[-93.67530443168329,17.365705097450075],[-93.6748028362145,17.36546655978509],[-93.67447573743931,17.364619795303952],[-93.67416522875459,17.36428169692425],[-93.67357496719762,17.363958666474616],[-93.67301610330213,17.363765662397327],[-93.67072028204643,17.36251842255706],[-93.66930206517156,17.361915891228023],[-93.66682534445926,17.36028864412424],[-93.63572747121736,17.338421000534424],[-93.63518187822791,17.33787603417619],[-93.63487662768023,17.337430083291963],[-93.63517846281178,17.33688505406292],[-93.63570509353269,17.336941678081075],[-93.63651572767037,17.33715285054052],[-93.6370016671512,17.3371513075586],[-93.63758662102231,17.336508220432847],[-93.63807703963283,17.335890723857517],[-93.6383975436068,17.335618335917445],[-93.63862853896171,17.335458824022737],[-93.63913486426299,17.335224274636573],[-93.63939902760609,17.335085822677684],[-93.63973981586742,17.334798908721098],[-93.63986068453647,17.33467147232352],[-93.63999164680888,17.334279395018655],[-93.6399348058103,17.33378203450235],[-93.63975794061321,17.333655549555374],[-93.63953641966373,17.333370431906076],[-93.6396776222852,17.332755946726706],[-93.63995264564994,17.332575126050017],[-93.64009582750117,17.33253233500625],[-93.64038263129851,17.3325737513307],[-93.64084677741766,17.332879258349124],[-93.64145215844502,17.332580886232222],[-93.64151533453497,17.331712649642952],[-93.6415912217434,17.331352472786932],[-93.64194344170352,17.331171352075614],[-93.64229307011635,17.331160323132735],[-93.64281676838499,17.331259121864207],[-93.64311980444631,17.331447998451154],[-93.64376664933906,17.33176357021631],[-93.64413246510571,17.33159416125568],[-93.64425484198875,17.331488335024858],[-93.6451983426341,17.330685716845494],[-93.6451118396534,17.33046432090407],[-93.64509793799766,17.33027431596588],[-93.64529533103854,17.32951773444381],[-93.6453886742658,17.329255977658875],[-93.64542998984899,17.32909496775909],[-93.64536499553685,17.328471685957084],[-93.64510573309815,17.327275577994556],[-93.64470372473465,17.326736896825366],[-93.64439993385542,17.326457503435506],[-93.64413996398207,17.326333741434496],[-93.64346315800645,17.32524946017878],[-93.64335651532781,17.325164735646126],[-93.64319607519843,17.32490994955259],[-93.64320361819978,17.324535480019506],[-93.64321155069717,17.324254633065323],[-93.64309267548316,17.32387331367039],[-93.6426559732551,17.323712587258285],[-93.64216257331469,17.323444006393913],[-93.64220323528531,17.322984513617087],[-93.64252617911751,17.322807889549892],[-93.64291956968714,17.32224573492732],[-93.64244161379946,17.321054577071777],[-93.64231275639872,17.320821405886647],[-93.64213853452924,17.320591582531108],[-93.6420244968765,17.320392340448564],[-93.6416829188422,17.320003276747457],[-93.64132263052028,17.319650550935876],[-93.64103035499517,17.319108257338655],[-93.64134298942639,17.31788721652333],[-93.6358680964205,17.31435452146792],[-93.62743197387812,17.312843152537482],[-93.62622849954806,17.31615022557355],[-93.62653310011308,17.31642131390896],[-93.62649656869911,17.317587304575625],[-93.62661956136458,17.318033838890585],[-93.6266204194485,17.318286444019407],[-93.62635815073702,17.318559299866138],[-93.62621913813177,17.31935641475718],[-93.6257156396453,17.320135234686063],[-93.62452471418601,17.3213927292756],[-93.62438667846573,17.322481311011643],[-93.61855474997492,17.32172642514604],[-93.60793980869431,17.314930016503922],[-93.59771197121552,17.328269818683225],[-93.58970672196887,17.339852958925064],[-93.58408718467018,17.347023359477475],[-93.57105212809898,17.365261801335066],[-93.55539308612703,17.386331738614786],[-93.5523668310691,17.39081013477056],[-93.54354484946401,17.40259794099501],[-93.53922848367125,17.408904585169182],[-93.53166910118853,17.41898106777552],[-93.52410442955266,17.429646134463667],[-93.52525076188135,17.430542065279212],[-93.52435267621854,17.43288422609902],[-93.51991679019915,17.43543212793162],[-93.51943122953924,17.43952298747996],[-93.51544149581707,17.440333188240515],[-93.51380472015921,17.442805267816766],[-93.51333156220602,17.446143452753574],[-93.51101155671893,17.448369365732674],[-93.51222479833825,17.45226606106354],[-93.51093812942605,17.460125740873252],[-93.50804583034386,17.463286085114532],[-93.50721863535944,17.467256246408965],[-93.508258748586,17.468744998953355],[-93.50770783465953,17.47173008548117],[-93.50940433838315,17.470902348832],[-93.50988312217834,17.473730275443643],[-93.50623290251042,17.47862057147222],[-93.51164713626883,17.483385941762037],[-93.51140504785968,17.485838387099705],[-93.51402234853151,17.486344393195395],[-93.51455376528816,17.490624141653427],[-93.51199903526185,17.49144693943191],[-93.50906347340657,17.490571700855583],[-93.50768721147853,17.493585148051864],[-93.50962874794033,17.49399596127637],[-93.50849509072287,17.49618625903929],[-93.5067887865439,17.493934411954115],[-93.5043993791648,17.49753164940654],[-93.50765172354193,17.50115976132804],[-93.50334724165668,17.501288224877158],[-93.50486027116841,17.500000872368673],[-93.50258854574633,17.499428151367738],[-93.50161231307959,17.502566461469996],[-93.50222454282641,17.507509768915327],[-93.50032276859804,17.51134702605725],[-93.50138210172724,17.512899026710386],[-93.49951039959632,17.513979364833688],[-93.49970337844178,17.519346479283456],[-93.49773784943557,17.520267743383158],[-93.49816452570337,17.5228577632667],[-93.49561682416146,17.522728969213233],[-93.49452238954149,17.530659292766416],[-93.49062642405607,17.535129041057417],[-93.49051006299055,17.535484487851534],[-93.49029968008159,17.535834576475565],[-93.48933618593037,17.537680578766526],[-93.48910903834218,17.53830127188263],[-93.48863239107635,17.539903466367264],[-93.4884433945237,17.5414315404621],[-93.48708041692981,17.545155719101672],[-93.48633840149273,17.546471234724493],[-93.48263471614047,17.55141977479434],[-93.4815612278748,17.55199219879586],[-93.47570778868186,17.553559156549454],[-93.47176961447275,17.553153256209953],[-93.47074645657142,17.552913774810463],[-93.46881098321398,17.55216955431456],[-93.46689793566713,17.551064498614267],[-93.46509015344662,17.549784389841022],[-93.46038559288121,17.546528179073846],[-93.45864953179853,17.54561418597325],[-93.45592836913823,17.545367988471753],[-93.45411943125526,17.54562656296423],[-93.45239890270284,17.545980699379015],[-93.45095771000877,17.54942858886227],[-93.45086231196171,17.550962023059867],[-93.45076554161727,17.554034286511694],[-93.45083575693207,17.555939310599456],[-93.45073474094949,17.557562964611236],[-93.45076006062766,17.560189627736293],[-93.45062536676858,17.562354516098935],[-93.45020293813843,17.564593465239852],[-93.44999664209712,17.566392167329695],[-93.44949698875985,17.56835513140527],[-93.44901977600387,17.56995728043114],[-93.44881345644836,17.571755997058517],[-93.44848783762484,17.57698792102991],[-93.44813691990566,17.57959312957712],[-93.44758665610112,17.58236799105407],[-93.44689318927828,17.584410434601864],[-93.44524792738525,17.586579428366747],[-93.44447302487998,17.586897158719182],[-93.44181141035585,17.58719731874328],[-93.44105335534124,17.587244409828656],[-93.43783864291674,17.587331745181643],[-93.43520512289228,17.587180752106008],[-93.43275409155916,17.587130709662006],[-93.43067365133305,17.587192419490748],[-93.4290634792037,17.58728108762631],[-93.42735925099396,17.587364340092904],[-93.42496286185929,17.587951015793635],[-93.42313078010784,17.588570060995778],[-93.42216207355057,17.588967081384624],[-93.42048991012922,17.5900479331209],[-93.41760667079268,17.59540467620326],[-93.41695214400784,17.596815570363503],[-93.4160531171218,17.599117734217884],[-93.41537037166876,17.600979671858056],[-93.41451075491221,17.602650381923468],[-93.41370571451404,17.60495796063259],[-93.413021115243,17.608358870440213],[-93.41248130652474,17.610953316251084],[-93.41177972732919,17.614624885082662],[-93.4110799255941,17.616757482850517],[-93.40959929549217,17.619297862514145],[-93.40559924004867,17.62287028304206],[-93.4041033997106,17.62414226007229],[-93.40265270270237,17.62469253304488],[-93.40168368258196,17.62508944463525],[-93.39805023925254,17.62732476366091],[-93.39771150180718,17.628210628819375],[-93.39494160609507,17.630224001850706],[-93.3934136838842,17.63049813553357],[-93.39159785488488,17.630846202151588],[-93.38948845873114,17.63135840325981],[-93.38783249220944,17.632168329797025],[-93.38627058976454,17.63298366374579],[-93.38411729517213,17.637205348379837],[-93.38459482145225,17.640130139722658],[-93.38467548159002,17.641855041504584],[-93.38478872778109,17.644377940131847],[-93.37894565219506,17.645433781255576],[-93.36196220557457,17.646287923136526],[-93.35627777628275,17.648037441491226],[-93.35682339391906,17.650954405860148],[-93.3602043997954,17.662021969833347],[-93.36041700555762,17.666025993168603],[-93.35509604864149,17.67705658694871],[-93.35383658929356,17.68135704130168],[-93.35497983015154,17.68502252443062],[-93.35672217319427,17.68715073294652],[-93.35594402621427,17.692860602745725],[-93.35348572932344,17.695310568519233],[-93.35319183474212,17.697858273087775],[-93.3552660676458,17.698758052900416],[-93.35546147672449,17.701065571445895],[-93.35357737117636,17.701954941974066],[-93.35340986328885,17.70728209556927],[-93.35519568940043,17.70639363890797],[-93.35642192734929,17.710953784092283],[-93.35482583766924,17.711157118296683],[-93.35505948282088,17.71422779996334],[-93.35768377954554,17.716597557328043],[-93.35968449051131,17.719925118454626],[-93.36005447165724,17.722466646434157],[-93.36252072721311,17.723197743143203],[-93.36449845035827,17.726666852193148],[-93.3630294698412,17.727293229476004],[-93.36710485123336,17.727947952017587],[-93.36959112960972,17.729352756365472],[-93.3693065318829,17.73279583651356],[-93.37170620633151,17.732561423038135],[-93.37332445582439,17.73395367214698],[-93.3707121651376,17.734657815702747],[-93.3699398966678,17.737422458000594],[-93.37375713165767,17.742415588976257],[-93.37679455725333,17.74365956192156],[-93.38076645123664,17.747298265847974],[-93.38231757985267,17.749875745407394],[-93.38536350370089,17.760395464856515],[-93.38746348749152,17.76308523276481],[-93.39027366653045,17.771268243148825],[-93.38965914945123,17.77595537935258],[-93.38736625533846,17.777577330200018],[-93.38568054651324,17.776674680914198],[-93.3843933546579,17.773085291781058],[-93.38061767525267,17.774354382861986],[-93.37759840581793,17.771822824288904],[-93.37541994918035,17.766798011374533],[-93.36174608871573,17.76452787482134],[-93.35281967102958,17.763736192785473],[-93.34913508935904,17.767085270469124],[-93.34619359974334,17.77561648118956],[-93.34310784675449,17.787516685887283],[-93.3551084519342,17.787504634428274],[-93.35850308481184,17.78839632306034],[-93.36375854584401,17.782312573928152],[-93.36441870307226,17.77908431535286],[-93.37216716668269,17.781172505671464],[-93.37747899981315,17.781402063303574],[-93.37919920849083,17.78050484958709],[-93.3809484949627,17.78316494832302],[-93.37851575559108,17.784557733438362],[-93.37743871559957,17.789403523389865],[-93.37760682758596,17.79319663138898],[-93.37640878463736,17.795852332248728],[-93.37410343261092,17.795988733174624],[-93.37422425054365,17.794245255597218],[-93.37048597088972,17.794037428567663],[-93.36736845705599,17.798823287241817],[-93.36557389927287,17.799437776052628],[-93.36661094756403,17.802923324560936],[-93.36464358110061,17.803019704078793],[-93.35209246974478,17.795423462648273],[-93.3418881923846,17.796964924759436],[-93.34105538982828,17.800169715724167],[-93.34346921254757,17.80365406203731],[-93.34928560693106,17.814909338418772],[-93.34695855662972,17.82369904460569],[-93.34305299524624,17.828673769804425],[-93.342441276574,17.83171342883412],[-93.33949369156068,17.835674126216304],[-93.33979333298777,17.839961504369967],[-93.34095290050635,17.843235029908783],[-93.33615807750374,17.84519497445035],[-93.33470886448373,17.847316609208747],[-93.33429510261095,17.851698891870456],[-93.33656315279279,17.856408471321345],[-93.34434304776983,17.862031440182705],[-93.34971272887367,17.867962807646165],[-93.34932521538224,17.873546560064824],[-93.35058276362679,17.876066036869986],[-93.34997486221039,17.882592346834258],[-93.34764084924944,17.885727980975958],[-93.3444939198634,17.888063407196853],[-93.3445984790003,17.893788000992345],[-93.34236425071526,17.898431210435717],[-93.34126191805586,17.903143968135225],[-93.33602244067635,17.904986561584394],[-93.3372900723034,17.911423135004952],[-93.33930565342206,17.914948613749118],[-93.3389674413117,17.92100343653607],[-93.34076673497538,17.92364022541949],[-93.34116589447336,17.928751991571744],[-93.33993965228638,17.93285233130456],[-93.3366701940156,17.93660124867381],[-93.33381245633996,17.933894750145384],[-93.33073009948413,17.932294048137464],[-93.32855004216805,17.928781591457266],[-93.32526703396383,17.927942740835988],[-93.31722134050784,17.93052091498447],[-93.31353274052202,17.930864043910276],[-93.311012702764,17.932279345035965],[-93.3077038807246,17.935870208077915],[-93.30170171497025,17.93625966259134],[-93.29800969288493,17.93858178233512],[-93.2955274849046,17.9412453210046],[-93.29838059377335,17.947861735450772],[-93.29547091271883,17.949704813227584],[-93.29458193211434,17.955605629908348],[-93.29354983301204,17.957129417018166],[-93.28770745570938,17.961014897186544],[-93.28300761644454,17.967499382085123],[-93.28165201991419,17.97196598069894],[-93.28190661155844,17.975050158797046],[-93.28088981307116,17.978971488955267],[-93.28141850075383,17.982359287990164],[-93.27832268988146,17.985287798472086],[-93.27737953399173,17.982281047129447],[-93.27492329347461,17.98284700536294],[-93.27271578197212,17.981337014422877],[-93.26815959531172,17.974289158754175],[-93.26509896411102,17.971255827752145],[-93.26124248993943,17.96978529144485],[-93.26048917452414,17.966069734218365],[-93.2567149055107,17.963043186813138],[-93.24640125002367,17.96090431335591],[-93.24437742909458,17.95910873705583],[-93.24222356026127,17.955458092803326],[-93.24134140239272,17.950511941014042],[-93.23376912128765,17.948890822989313],[-93.23096121466426,17.94875271256757],[-93.22539937261246,17.95130335787411],[-93.21571709477331,17.957492847724893],[-93.21421111321797,17.956732088176864],[-93.21109030698557,17.957918717431824],[-93.20735876193743,17.960637935950274],[-93.20349931465603,17.95893613734637],[-93.20074340485371,17.956371435910626],[-93.19450625514321,17.955594066648132],[-93.19200158525126,17.956135720347106],[-93.18845911345892,17.953634992532955],[-93.18721458032007,17.94821521203994],[-93.18504565554633,17.946144626240596],[-93.18314389840185,17.94030905323956],[-93.17899231561353,17.938902820347323],[-93.17266370265196,17.9397370761655],[-93.16661745554978,17.935044107153374],[-93.16334895402468,17.936237557035383],[-93.15787126040038,17.936362786649624],[-93.15655585254433,17.93549977069671],[-93.1488974217923,17.934505609307564],[-93.14759283584368,17.93275419007307],[-93.1450780274198,17.93235297657651],[-93.14434872525447,17.930711877684132],[-93.14486767620645,17.92604011677622],[-93.14707006209585,17.92378775062008],[-93.14598207133025,17.919926668799064],[-93.14254465102306,17.91871449183492],[-93.13693278998511,17.91835893433432],[-93.13314845048717,17.913304823008275],[-93.13228358465045,17.910461562273497],[-93.12807988223176,17.90728452266609],[-93.12240706760491,17.906822720257537],[-93.11499746755175,17.908986474275594],[-93.10975961786255,17.908572013222397],[-93.10497503763162,17.907419322982946],[-93.10376234275282,17.90629800191016],[-93.10082005227423,17.906034965998174],[-93.10055535987914,17.902090976215618],[-93.0978612635642,17.901415289081797],[-93.09598713400828,17.89848655473554],[-93.0913759357436,17.897561251997104],[-93.08970463042942,17.892674961645753],[-93.09142246820448,17.887051877722854],[-93.09544492165577,17.885649682299743],[-93.10234533178033,17.88209470539971],[-93.10728850421822,17.87871131134108],[-93.11156479501733,17.876583212111314],[-93.11362399347843,17.877092376769838],[-93.11425423991534,17.875379532486363],[-93.12137621068172,17.876645305123986],[-93.12362598958845,17.8744503877993],[-93.12360825459149,17.86777092074726],[-93.1294314373722,17.858757308540646],[-93.12949296097963,17.856417866567654],[-93.13180031656071,17.852316416907797],[-93.13047738439622,17.84897063016041],[-93.12902789252041,17.84474184592949],[-93.12040466442653,17.8338840671841],[-93.11564075114313,17.82221262575797],[-93.11459079230661,17.824312248062085],[-93.11054801686208,17.83012006110215],[-93.10715850613747,17.835646834009026],[-93.10546066830074,17.8392452046146],[-93.1035707116414,17.842804388320417],[-93.1016454666472,17.84582833208924],[-93.09868766823905,17.842858404203923],[-93.09408988079281,17.84117175779454],[-93.09023074610093,17.841691517258255],[-93.08884358243546,17.841464844673908],[-93.08054031668576,17.84207613305665],[-93.07970219045455,17.84222350732574],[-93.07713543334467,17.84248851622732],[-93.07562637679172,17.842677738421514],[-93.06407963726178,17.84387586253979],[-93.06118853057768,17.84406746481983],[-93.05870782946454,17.844190684953276],[-93.05799020744644,17.844140446459733],[-93.05580375270563,17.843813109617315],[-93.05185115935853,17.843394404707624],[-93.04801188450847,17.84303572698775],[-93.04312630694534,17.842577305889847],[-93.04336779215595,17.841881180337452],[-93.04445005959337,17.84059640173149],[-93.0421872113003,17.838607230237642],[-93.04130617567466,17.838287614230182],[-93.04027649728499,17.840934482233536],[-93.03316445370501,17.833097258327086],[-93.02543628426099,17.825418447759603],[-93.02751097629823,17.821938979091726],[-93.02703706979105,17.819970871409737],[-93.02148420386726,17.815319087206205],[-93.01966644394219,17.81275591279274],[-93.01948273903224,17.809367001354644],[-93.01668481166513,17.808558651024725],[-93.01699640405275,17.80614396272614],[-93.01957100972157,17.803721704356974],[-93.01591679082958,17.80114805527967],[-93.01573526129772,17.798099037890665],[-93.01285748249109,17.798931907808765],[-93.01217023055528,17.79616870085681],[-93.0139390198504,17.79483310647845],[-93.01460174229487,17.792358009251018],[-93.01870300420478,17.790708118190082],[-93.01733264604911,17.789372767219447],[-93.0183785852339,17.787052029838378],[-93.01588720882222,17.78602680068326],[-93.01680880587787,17.78416659717027],[-93.01892826756892,17.784126660869447],[-93.02001236705945,17.780650634601727],[-93.02170640780838,17.780924709400324],[-93.02385067854658,17.779119327451497],[-93.02341439930655,17.77659151285701],[-93.02662793063541,17.776448012133017],[-93.02593266875215,17.774900435631935],[-93.02801222310586,17.771477986345133],[-93.03722618069219,17.76898919179621],[-93.0365904313287,17.766354126975443],[-93.03916286027146,17.766373254004634],[-93.04019744447811,17.769997913634313],[-93.04263828443771,17.768411512749708],[-93.04316311644925,17.763910868124185],[-93.04528007077022,17.762503370442573],[-93.04437053439835,17.76048471193951],[-93.04776713710373,17.75835277520639],[-93.04568801466678,17.756041714719913],[-93.04606415715637,17.75306727465164],[-93.0486243155367,17.751283841030784],[-93.04671196890826,17.750145526876906],[-93.04708737314252,17.748071696681507],[-93.05156871156288,17.74569456388423],[-93.05433971279047,17.74217110592309],[-93.05259334882237,17.742113922918293],[-93.05419709825821,17.73828610465199],[-93.0532179898409,17.736588918916766],[-93.055123324428,17.73512090041214],[-93.05410580153443,17.732349665786558],[-93.05539320944672,17.73037045838396],[-93.0546925626142,17.7270544326812],[-93.0571760431647,17.723655790407292],[-93.05546579300125,17.721589919487656],[-93.057625614382,17.72065953777178],[-93.05354704471625,17.71894032904106],[-93.05490806018912,17.717312631281686],[-93.05362813131103,17.71579941830828],[-93.0547862654376,17.713199327634698],[-93.05370014944981,17.71133676774275],[-93.0515777403113,17.712659967648676],[-93.04978480171485,17.714187415150832],[-93.04786227209252,17.71123747977913],[-93.04728311933013,17.71260703970347],[-93.04436798578695,17.713387960211605],[-93.04205548211911,17.71033016645083],[-93.04318445350384,17.70880458593507],[-93.04478156476051,17.711077007854158],[-93.04479592179217,17.707975047055186],[-93.0414973996809,17.707228877959608],[-93.04303189451434,17.704218899967373],[-93.0407568488369,17.704125815210432],[-93.03885154342709,17.70681774628315],[-93.0393158095282,17.70437877478355],[-93.03775808110453,17.704919648431087],[-93.03737974264823,17.70127362964996],[-93.04015663307462,17.700819002327023],[-93.03809464284808,17.699046894172],[-93.03997577378334,17.697878906046583],[-93.03948626099492,17.696257321423957],[-93.04072177954026,17.69297852166511],[-93.03769566651164,17.693849149150424],[-93.03764878043609,17.690584456639954],[-93.03889751239501,17.688421971035496],[-93.03911842647051,17.69196300012345],[-93.04111982207695,17.690492271246228],[-93.0420310629521,17.686385248129966],[-93.03788070111523,17.683248023821022],[-93.04193106442779,17.680494855675988],[-93.04026612307871,17.67520002538538],[-93.04442992496314,17.673406251687425],[-93.04076408044438,17.670326138412918],[-93.04076969299615,17.66735846916822],[-93.04306750905221,17.66798237551467],[-93.04423333308205,17.666443905508743],[-93.04338215167292,17.662923592725406],[-93.0436595983283,17.660020534115915],[-93.04545764851366,17.65910544184584],[-93.0451915064429,17.641619948105813],[-93.04394394307207,17.635452781543506],[-93.0437155125025,17.630733450265893],[-93.04264527975636,17.625746289922176],[-93.0441490903159,17.62004595465652],[-93.04310819862792,17.617149379101818],[-93.04145954930925,17.616394312417583],[-93.04190694519139,17.613956260614657],[-93.04022114056323,17.61164808961189],[-93.04052533492376,17.60982815131672],[-93.03763772800187,17.607777690510943],[-93.03596589911365,17.605202849388434],[-93.03283364158642,17.60258041626497],[-93.03303832036033,17.60235976720503],[-93.03306276570225,17.602321687417884],[-93.03305664723598,17.60227482946874],[-93.03242394918936,17.600912502040444],[-93.02881635183127,17.597362513949065],[-93.0243570492351,17.596238175511758],[-93.02333014693534,17.59510237035164],[-93.01949798444775,17.5943704371972],[-93.014966663206,17.591469582575257],[-93.01367918376638,17.586700644693337],[-93.01046957750447,17.582654653306406],[-93.01075387476044,17.580597187959143],[-93.00709973412927,17.581495577853218],[-93.00437839970817,17.57773369882375],[-93.00614901877555,17.571408570970107],[-93.0044888462487,17.569173816366174],[-93.00711520849859,17.56542235971898],[-93.00579650548718,17.56410847538001],[-93.0068515589931,17.561916299351083],[-93.0076864984577,17.56124878058796],[-93.0075596673019,17.56071962061702],[-93.00755215744095,17.560109551064954],[-93.00754092145132,17.56006648719125],[-93.00581002182554,17.55928277462334],[-93.00593134641451,17.555982181864408],[-93.00458599876123,17.555198980938428],[-92.99380311634167,17.550565086424797],[-92.99057580551846,17.5511824285976],[-92.98793561634147,17.548925323652327],[-92.98938219846451,17.544006662582945],[-92.9873498599315,17.540136186576603],[-92.98048967185969,17.537562829107628],[-92.98016733740428,17.534995898112186],[-92.98219067270179,17.53344339859001],[-92.98795130422064,17.532042707906953],[-92.9908503266251,17.531943376216873],[-92.99264831646622,17.530015730203047],[-92.99048380020025,17.52756132066628],[-92.98830215679004,17.52350369097337],[-92.98299382365013,17.518910908626765],[-92.98563478170797,17.51517020931078],[-92.9848734179347,17.511307862894228],[-92.97882465716441,17.51248044165345],[-92.9772412481932,17.51607333326649],[-92.9748880987213,17.51695387928197],[-92.97506458379092,17.51863873524178],[-92.96922536369345,17.518314856790425],[-92.96737291772155,17.51743693495547],[-92.96607883180195,17.51127188094665],[-92.96269343809143,17.507178541082112],[-92.96257832438994,17.503265560784428],[-92.95900759028939,17.497397859461728],[-92.958067521457,17.49197423346152],[-92.95590357993547,17.49076642057804],[-92.95568051092027,17.488655345572226],[-92.94691771336687,17.48213378063474],[-92.94524082783846,17.482796244832684],[-92.94366360260165,17.48613702360791],[-92.94448104333338,17.487266596316545],[-92.9415536479533,17.49078109900114],[-92.94219584729814,17.493174170418285],[-92.94093168221661,17.494830714193824],[-92.94149558144693,17.497022198478703],[-92.93875523436452,17.499536220658285],[-92.93948333331173,17.50217984218216],[-92.93787245646621,17.50264683323718],[-92.92046113840695,17.502677802949847],[-92.91612346811132,17.499411981670335],[-92.91293754424072,17.498213061662227],[-92.90996715175265,17.50007798183026],[-92.91065597532673,17.50237242107346],[-92.907101210549,17.50526380570227],[-92.90455031318072,17.50327273204482],[-92.89909804242791,17.50276138212547],[-92.89682643953466,17.50340327211495],[-92.88735617359413,17.510463542397872],[-92.8778783590717,17.507981390041664],[-92.87069843088574,17.505308656777288],[-92.86618975759501,17.504327307529195],[-92.85980874968442,17.5002815472875],[-92.8593111462576,17.499051410032166],[-92.85618175617702,17.4838718849565],[-92.85568948827904,17.478965942508523],[-92.85075649996253,17.469571208145965],[-92.84702564096574,17.469577091137637],[-92.84180665894144,17.472567455526473],[-92.83568142098034,17.475152873678212],[-92.83431695912617,17.477925954508407],[-92.83584984017153,17.48052451151301],[-92.83390200419603,17.482187641171038],[-92.83062627335931,17.479604217140036],[-92.82889795196172,17.472865867312578],[-92.8280149209665,17.467365882367062],[-92.82753488746022,17.45593874950083],[-92.82647023253287,17.453036161426894],[-92.82225572153698,17.45220163223769],[-92.82237959995348,17.44786370918189],[-92.81975503077643,17.437664163083014],[-92.81963083890685,17.432745958125054],[-92.8222797632422,17.427110243393543],[-92.825824746075,17.4237842140447],[-92.8339717608967,17.421724699961317],[-92.84453763068541,17.421322036030517],[-92.85619101150223,17.418876218487185],[-92.85426445754109,17.411197632489404],[-92.85155399614877,17.408951117511606],[-92.84624637811265,17.40655258300177],[-92.84012800804732,17.404621097648032],[-92.83465656801786,17.401328063163305],[-92.83115867810011,17.399124378521265],[-92.82921631737469,17.39630049305623],[-92.8275817392772,17.39895384027551],[-92.82904156007106,17.39976262294374],[-92.83027516394168,17.406983295455007],[-92.8293996068607,17.40859933900998],[-92.82422802419359,17.408647874974235],[-92.82260938542197,17.408876240641746],[-92.81243971533468,17.410475986353674],[-92.806277313608,17.410562137035242],[-92.80016374200056,17.413844529130643],[-92.79839839459157,17.41316819333298],[-92.79105429817372,17.4150101425746],[-92.78579470380924,17.417527298648963],[-92.78575710260594,17.416030317422496],[-92.78622011290031,17.413168791218595],[-92.78753519922185,17.412781073474832],[-92.78987348833994,17.408343250808343],[-92.79079422551735,17.404985134067203],[-92.77436800823966,17.392252539511446],[-92.7731074655315,17.389493518625727],[-92.77095121472678,17.38884264455038],[-92.76729038634596,17.38340441835851],[-92.76705656080276,17.381237887384316],[-92.77001767226477,17.368047901589193],[-92.76926549703387,17.365135537424237],[-92.77066330898094,17.360396326101522],[-92.76357666859593,17.358562539236914],[-92.75873740886601,17.35819778472819],[-92.75760796538151,17.350354099737956],[-92.75839622193888,17.349624588576432],[-92.75601585608007,17.34710465838498],[-92.7561016428777,17.34473456334939],[-92.75418020197765,17.34329866569118],[-92.75175521074459,17.34365811251729],[-92.73259792083519,17.348118988555598],[-92.72950834186389,17.348128502399902],[-92.72037885489118,17.355335604962306],[-92.71851941449262,17.355452647940808],[-92.71692953419671,17.35783067810752],[-92.71149027422695,17.361009602064826],[-92.70851933875855,17.363407532484757],[-92.70478063082948,17.36328936476309],[-92.70160120129219,17.364999084072338],[-92.6970605985241,17.36974340637238],[-92.68897590451394,17.373249254084044],[-92.68332518270313,17.376779518829494],[-92.68125625991615,17.377075541693273],[-92.67770273512849,17.37998861329271],[-92.67893779039906,17.385161048135956],[-92.67851538561655,17.397749346312253],[-92.6759124558846,17.41260922068858],[-92.66790536858059,17.425954832706566],[-92.66769928382769,17.450212680377945],[-92.66818515753624,17.456694562263408],[-92.66579586648214,17.45684675889504],[-92.65961959702088,17.445397547010202],[-92.65875069603635,17.444784268197736],[-92.65582581598693,17.452092120319435],[-92.65453117297699,17.455667266528167],[-92.64886228939781,17.46070203360466],[-92.64219102126572,17.46329720594838],[-92.63780510134268,17.463661773223578],[-92.6291408468964,17.465495822194555],[-92.62433803654159,17.46586340354179],[-92.61914466131509,17.469293266369164],[-92.61655410854974,17.470302101435664],[-92.6058251451172,17.47737573937917],[-92.6032580069824,17.481161117437807],[-92.60058209491768,17.483700053814516],[-92.59476268322328,17.49151127814406],[-92.59439339391582,17.49424397966959],[-92.59990142595524,17.500800019180133],[-92.59465801163526,17.504457436825874],[-92.59308983486329,17.506420687553202],[-92.59230736568975,17.51289160300979],[-92.5969850047668,17.520365104344933],[-92.57141092574875,17.54960860946977],[-92.56301619554131,17.54562857070738],[-92.56296457106066,17.54558631455467],[-92.55964646323355,17.54452826571628],[-92.55803053598936,17.54022541925633],[-92.553448887954,17.542798855794842],[-92.53619663206354,17.547942339461542],[-92.53007341148486,17.549998408220745],[-92.5201047150448,17.571879333085406],[-92.51998489950137,17.57304976277493],[-92.51344463160672,17.573267448016168],[-92.50859259650576,17.57395483272211],[-92.50063377365547,17.57235594198073],[-92.49719636280128,17.572249152482755],[-92.48468836178165,17.574920742715904],[-92.47381146985992,17.574569800603513],[-92.46842844812471,17.57703328214194],[-92.4617350172881,17.57599590479225],[-92.45736219620096,17.573191050498508],[-92.45457358397482,17.57312882654702],[-92.44839463232518,17.574366272790826],[-92.44416870967535,17.574002451868978],[-92.43812218927025,17.57046481831702],[-92.4357697632924,17.570232929174097],[-92.42853116411146,17.574122823774985],[-92.42123687249097,17.577243701297448],[-92.41781177783321,17.57636479568697],[-92.40945973372368,17.57995672092403],[-92.40656846157901,17.580349677223865],[-92.40207859559132,17.57804011399378],[-92.40085814023251,17.586032547299396],[-92.37285871729347,17.604281413081424],[-92.35955182519655,17.61273534469342],[-92.35067370675097,17.6179340628006],[-92.35149818112393,17.619632073178252],[-92.35119542960007,17.624739434031085],[-92.35366334850806,17.628194247682927],[-92.35627970544539,17.636005024152098],[-92.35802894128653,17.636295998201433],[-92.3581316758337,17.64195914556882],[-92.35585769776873,17.642013374692795],[-92.355801360096,17.646059804614197],[-92.35479476946762,17.646305600409335],[-92.35494144435239,17.6540560595638],[-92.34915948689871,17.654727521857183],[-92.35000583763593,17.67404478800688],[-92.34989905891223,17.70278467276603],[-92.34588935080916,17.7015571466124],[-92.34401804475601,17.7018876229439],[-92.3436512023805,17.704066261480648],[-92.34012921636372,17.703757986580285],[-92.33823066517812,17.70623365214317],[-92.33685427636908,17.71220182876982],[-92.32955930846987,17.710712855032284],[-92.32808997021698,17.713730032260514],[-92.32158924243714,17.709804110212247],[-92.31527812725494,17.709671064061297],[-92.31510112869859,17.706702170508265],[-92.31331592593585,17.704511816231957],[-92.30867154290132,17.706284776788323],[-92.29835468849632,17.703236935617895],[-92.29480096034911,17.6999294181864],[-92.28868154043067,17.702667337352636],[-92.27462288534826,17.692258052442014],[-92.27367001585827,17.693328248230728],[-92.26984542215496,17.697719002341557],[-92.25771310190152,17.711985389250003],[-92.24739562964766,17.7245496341896],[-92.2306969793056,17.74412497735449],[-92.21304654368163,17.760453053769368],[-92.20335356916826,17.769107095413744],[-92.19449939720516,17.776641184741266],[-92.18848714932255,17.768134633188822],[-92.17195018783747,17.78656785108899],[-92.16097368786967,17.782238761757696],[-92.15245401468877,17.77906557090313],[-92.15170817183798,17.76456887507004],[-92.13082541584174,17.766080360504247],[-92.1299134235627,17.766974407741202],[-92.13204722086363,17.770278157758582],[-92.13255446912797,17.775063936831202],[-92.13597188910967,17.77901230422708],[-92.12713808148692,17.785898377563115],[-92.14662262706912,17.812419562753348],[-92.14658277062568,17.81467600180423],[-92.1395177896265,17.809527712467855],[-92.12101865052244,17.796841651259058],[-92.12048163664485,17.795972696181025],[-92.11167629012039,17.80625648619224],[-92.10553518226294,17.812938722364265],[-92.10380930032488,17.827669948894822],[-92.10460131286698,17.827626009191363],[-92.09939825472469,17.83463356315957],[-92.10646288923056,17.838127049862862],[-92.10203335910973,17.85088017238803],[-92.09049762700863,17.8507277814993],[-92.090468813818,17.85659948840612],[-92.08488781262491,17.85519526672124],[-92.07247342826247,17.850554520316848],[-92.06829520761255,17.848689842877036],[-92.06233027215683,17.848661400233937],[-92.05806498309056,17.846689979836697],[-92.0534286871632,17.848493935455508],[-92.0535869745434,17.85225231054028],[-92.04940707043681,17.854772036408576],[-92.04844939070182,17.858038060123363],[-92.05031469908931,17.861315103772597],[-92.05164678437973,17.866091237704666],[-92.05416678620543,17.868612541210382],[-92.05908277651218,17.871327462099373],[-92.06332059675049,17.87189912761022],[-92.0666487218864,17.870185035656675],[-92.0720682954896,17.874518226925773],[-92.07234121309779,17.877054140103724],[-92.07054671950948,17.87772851329356],[-92.0670732366911,17.876405769792143],[-92.05970741468428,17.878817525099066],[-92.02969894024392,17.889143931605645],[-92.019707901429,17.887823926116596],[-92.02060819809645,17.891804002802246],[-92.0192496550834,17.895472072023722],[-92.01554662361741,17.897501116593105],[-92.00335506007355,17.890518189280613],[-92.00050161022335,17.898736933120574],[-91.99840254709181,17.898965789349347],[-91.99351262315236,17.911079709886735],[-91.99128973596726,17.91961230290042],[-91.9954516159425,17.929002772511012],[-91.99988789931729,17.94334464548166],[-91.99567109052037,17.942589969466667],[-91.99048981636247,17.936021791081316],[-91.98882163518965,17.932026388481972],[-91.98659845340802,17.92306273011883],[-91.9839991550715,17.918522932574547],[-91.98139024387274,17.915688142006786],[-91.97363681060762,17.911431189781354],[-91.9699309636768,17.91039525450782],[-91.95820162561739,17.910053798201545],[-91.94498618346444,17.910259508204206],[-91.94152760883196,17.908752666248972],[-91.9395978409679,17.906293065379316],[-91.93943418602038,17.901114958875212],[-91.94689916721984,17.892731056213847],[-91.95010233165362,17.888036139712767],[-91.95542560890402,17.882309488468536],[-91.95683277214704,17.879929915001412],[-91.95746257901448,17.871975370154075],[-91.95611902036649,17.869023038511273],[-91.95260865161754,17.865408044008404],[-91.94840916542142,17.86330834714954],[-91.94141117589822,17.863301489593937],[-91.93398668851245,17.866018793172373],[-91.92806133199821,17.870822505802664],[-91.92441249027934,17.878915864776957],[-91.92390557014676,17.88238520321198],[-91.92549682733062,17.89193417478208],[-91.92343341765036,17.89558092290531],[-91.92085765025132,17.898201761795576],[-91.91583902611194,17.90007445354837],[-91.9124705638759,17.899807655974598],[-91.9073930741609,17.898167179584334],[-91.90296680935325,17.89603422591341],[-91.89883704618757,17.89312782521199],[-91.89583886272698,17.88871881379947],[-91.89115088496283,17.887049131309766],[-91.87847053642889,17.89005065811091],[-91.87068931401166,17.890780720377904],[-91.86512868665449,17.88879535312367],[-91.85793714914041,17.884649172710795],[-91.85438128418173,17.88335727514857],[-91.84968628773083,17.88286459988086],[-91.84125251134947,17.884333647979474],[-91.83540557369747,17.886592819122257],[-91.8316399565598,17.888945034605456],[-91.82583941774857,17.893963205433124],[-91.82072780206897,17.897652353125693],[-91.81618438767418,17.90014633203748],[-91.81252126693857,17.900372025794127],[-91.80927197854493,17.89684916144438],[-91.80886855484766,17.89418068164491],[-91.80914366055475,17.886874893841764],[-91.80780532099999,17.878574620721395],[-91.8043687378435,17.86886644821817],[-91.8005771227551,17.86419313362029],[-91.79796680586759,17.86213105153564],[-91.78816665056297,17.85773742747267],[-91.78187294071529,17.85428822244336],[-91.77969045793952,17.851298584814685],[-91.78068342406402,17.847130163905433],[-91.78609757118704,17.841707901466236],[-91.79038699375474,17.83541672590792],[-91.79181219589418,17.830620523709854],[-91.79237157914332,17.82451693988378],[-91.79174067229343,17.81757211604298],[-91.7885327782028,17.808190193373093],[-91.78361302592958,17.7972171046668],[-91.78222099537857,17.791952255028605],[-91.7820300580031,17.786730285808346],[-91.78296586789355,17.777605940223168],[-91.78529340680643,17.768599298960453],[-91.78859478353007,17.75963706147286],[-91.7885943584597,17.756515470329248],[-91.79115869351767,17.756540529255233],[-91.79190038377135,17.750793889359727],[-91.79016173973582,17.746018107509883],[-91.79338927873198,17.74448381915454],[-91.79836865564891,17.74418347932027],[-91.80406069316848,17.746544888211815],[-91.80694071191328,17.74887639214893],[-91.81113317017304,17.750868333640483],[-91.81284593974891,17.750317807487477],[-91.81677386582584,17.747056536416324],[-91.81982952131148,17.745191254606084],[-91.8224110764649,17.74315650765311],[-91.82553387559062,17.7413204266677],[-91.82694181292345,17.74056716969858],[-91.8284720041541,17.739235612405878],[-91.83066169129211,17.737677237451976],[-91.8291674522689,17.736743289901028],[-91.82623272889276,17.735382628286004],[-91.82526782079674,17.734863144067504],[-91.82531486852588,17.734592593376362],[-91.82131813644156,17.731960791781376],[-91.81843394735932,17.727432232724937],[-91.81557610013209,17.727756885207214],[-91.8128049565471,17.72619851399918],[-91.80821087526147,17.724842267946997],[-91.8040379702013,17.7245537154339],[-91.79542961453535,17.72274284801466],[-91.78651588413175,17.719025684333474],[-91.78401454626612,17.716741206514826],[-91.7822675148559,17.70950051595372],[-91.77862432809422,17.707336655017457],[-91.77595616835805,17.709158325469446],[-91.77563467349995,17.712272399012647],[-91.7766025876603,17.715431683404063],[-91.77149259711877,17.709986595239513],[-91.7678526167374,17.7031154453814],[-91.75391477844346,17.70534731773762],[-91.75207647775278,17.702674738916812],[-91.74905278514609,17.700286306909618],[-91.74437534827842,17.70672437250971],[-91.73915341425169,17.710914242643582],[-91.73855213064957,17.706884971471425],[-91.74098689598338,17.70628414558763],[-91.7396855258823,17.70470899830832],[-91.73809044454674,17.705473409441993],[-91.73824761377654,17.702846946818454],[-91.73683524724402,17.70079322891837],[-91.73403342710697,17.700193738683822],[-91.73329399990979,17.696580331390294],[-91.72773714371743,17.69424950019055],[-91.72476354269673,17.692063899213053],[-91.71921292708242,17.693270677945804],[-91.71985741228787,17.697509233846745],[-91.71754541166342,17.69840923428484],[-91.71857322840197,17.695506529426666],[-91.71762736151078,17.69447908561557],[-91.71464083898155,17.69501405042189],[-91.71685460482007,17.69347171315951],[-91.7176516532727,17.689615525841816],[-91.71707749676102,17.68774651383444],[-91.71272436935021,17.68933647887104],[-91.70823176054,17.688130066438305],[-91.70452455512458,17.68985990679778],[-91.70403576348122,17.692225088521695],[-91.70103767575097,17.68967964056742],[-91.70185958374412,17.687178969633067],[-91.70161994251316,17.681699889835784],[-91.70007818656029,17.68101150237635],[-91.70036993277489,17.67880815883194],[-91.69669878913794,17.679606679320614],[-91.6991418870968,17.68276033652961],[-91.69694866896037,17.683181131245476],[-91.69655781987456,17.685391504457755],[-91.69371123666275,17.685001195682787],[-91.69049254376733,17.68330964027126],[-91.68744259566296,17.67910724066877],[-91.68519278120755,17.678144621797912],[-91.68302111450441,17.675574248204157],[-91.68321709461293,17.67266560179081],[-91.68137726677946,17.67013371742678],[-91.67843000282312,17.671255632725206],[-91.67922928588746,17.674464075650974],[-91.67688501776695,17.675294555650908],[-91.67299249593196,17.6834724340531],[-91.66616844322311,17.68364814928111],[-91.66451431695293,17.682053255067956],[-91.66573244693666,17.679997845395974],[-91.6609999359722,17.678765892564854],[-91.65854412499772,17.67480962624336],[-91.65474350607627,17.67615712249608],[-91.65930756403515,17.670301984362084],[-91.65829646168305,17.66751800171926],[-91.65900758266764,17.66593522994623],[-91.66141634950361,17.666836973621173],[-91.66419663422892,17.66623634624915],[-91.66039150361252,17.665524406780378],[-91.66047107795475,17.66377048856242],[-91.66252485899491,17.664141103480915],[-91.6606492828621,17.660733347780365],[-91.66115062383449,17.658870665388577],[-91.66315368534993,17.658453160387296],[-91.65865879034862,17.656454713433277],[-91.65878033488713,17.654186909393786],[-91.66064248822187,17.652936847150556],[-91.65976449315997,17.649194767189783],[-91.6564950869303,17.64953322505454],[-91.65444041976974,17.646750151973606],[-91.65484974185227,17.64314067326228],[-91.65681740957046,17.64547255717048],[-91.65671628796383,17.642672539762827],[-91.65804375318504,17.642859849546028],[-91.65810948246428,17.63963731595493],[-91.65594969174703,17.641929187402013],[-91.65601467397141,17.63955403356755],[-91.6528112580562,17.638570744141987],[-91.65325211734392,17.635829330736897],[-91.65576264128174,17.636183786099934],[-91.65444957136822,17.63396199255118],[-91.65812393809495,17.63436050451412],[-91.65724152284253,17.63177283114294],[-91.65490495317579,17.63054819597221],[-91.65663630620145,17.62958160589369],[-91.65934152010465,17.631005843448577],[-91.65624193572836,17.62606328927751],[-91.65309739666822,17.624808004964734],[-91.65182014739833,17.62590920598751],[-91.64987787684129,17.623731367761536],[-91.64514562490518,17.62295123608402],[-91.64683550801783,17.62130147597844],[-91.64644384960519,17.618000729042194],[-91.65219367956774,17.619759171857027],[-91.65066024372146,17.617599655201957],[-91.65224251651586,17.615928757306165],[-91.65699560723027,17.61533665757463],[-91.65679621027232,17.612203979827882],[-91.6594819659507,17.613633764339852],[-91.6630664421304,17.612709176769215],[-91.66208974462103,17.608363817672682],[-91.65634955296161,17.6054662289132],[-91.65694731373219,17.603994800480734],[-91.6528529670855,17.603213016040172],[-91.65213285481639,17.600379007678328],[-91.65308489156024,17.59866527589145],[-91.64922593555099,17.598003256791856],[-91.64768852494842,17.594177278302766],[-91.64483709247679,17.595878732484948],[-91.64433653579101,17.59338502006335],[-91.6469292430383,17.593056873721252],[-91.64692979865572,17.59173865468489],[-91.64433336072767,17.59145330322758],[-91.64689727164239,17.59013815205617],[-91.6423455311288,17.58674891166612],[-91.64334400681093,17.584501702932926],[-91.64139974694768,17.58501242477871],[-91.64021635655808,17.581775355617708],[-91.63882739467073,17.58146942839994],[-91.63925461410673,17.57726215782924],[-91.64040057758712,17.5759437914773],[-91.64055654378876,17.572638033424084],[-91.63892970993544,17.571691449178957],[-91.64048655403718,17.569974235799123],[-91.64161302450134,17.566342429006397],[-91.64009187121286,17.560991760496506],[-91.64104313900623,17.55817004792766],[-91.63965342053888,17.55530462563945],[-91.6357672998414,17.55192299866559],[-91.63497515302106,17.548222139276334],[-91.6371147977689,17.54294619548284],[-91.63900548361448,17.54177757990061],[-91.63749973408187,17.540396159386432],[-91.63428773346868,17.53462426116448],[-91.63471515198427,17.533174537087177],[-91.63749299418282,17.53205321093168],[-91.64020949429471,17.532980682561515],[-91.63918919467659,17.52961087183644],[-91.64174062471255,17.529321006750024],[-91.64141760671396,17.52715938525438],[-91.64289360588867,17.524921275095096],[-91.64066711460009,17.52046136753148],[-91.6431989779893,17.517570942991256],[-91.64907716583838,17.517772740095268],[-91.64895960748413,17.510615465126307],[-91.64680227753502,17.509867099612734],[-91.6488257829343,17.50836290903584],[-91.64994570985704,17.505785046654182],[-91.64825519218806,17.505893743338504],[-91.64832673403703,17.503373498084954],[-91.65059911939136,17.502588755619115],[-91.65031360322382,17.500150428790846],[-91.65224915331788,17.50056366601325],[-91.65035186762799,17.498061639240973],[-91.65076960771069,17.495395710998707],[-91.65224242180147,17.497524594542313],[-91.65465291267054,17.49638810625129],[-91.65288279604329,17.49537176672726],[-91.65221749442276,17.492193514300368],[-91.65584848865814,17.490427945202498],[-91.65768802564764,17.48665506240269],[-91.66043543500507,17.486275615596128],[-91.66194338922321,17.482706393532965],[-91.66281677503264,17.479816735459053],[-91.66432507514048,17.481692395387597],[-91.66525765313122,17.479897039711034],[-91.66713458715003,17.48182050044113],[-91.66739071328152,17.478927580265008],[-91.66941620238293,17.47974322638362],[-91.67106100536682,17.478715467744394],[-91.67241593475097,17.475701842392425],[-91.67145965495479,17.4736521871597],[-91.67672211889106,17.474126586954526],[-91.68190565839677,17.46944797672336],[-91.68361910997072,17.47007343963878],[-91.68581999803143,17.47320673198135],[-91.68934127894494,17.47499194206688],[-91.69171170944156,17.47377384249262],[-91.69237372564436,17.46683597933861],[-91.6972589807005,17.468216990304256],[-91.69957352056429,17.466977702517568],[-91.69296951707577,17.465613579741046],[-91.69005905946227,17.46587606703804],[-91.68229522136647,17.462965674954035],[-91.67610139104778,17.462794030114367],[-91.6729605449076,17.46180879636063],[-91.67163124856,17.464493752447595],[-91.66473792729391,17.460995314098056],[-91.67204314444342,17.444058815445317],[-91.66767643210017,17.44189514071968],[-91.65436584450117,17.436438703635474],[-91.65338302920111,17.43603620621292],[-91.64665612937966,17.433315545359108],[-91.64332643490906,17.430987991607253],[-91.64274192284415,17.432008611680715],[-91.6373373516929,17.42995718687149],[-91.6348873463869,17.43649492501129],[-91.6307409871942,17.43558754562207],[-91.6245520798168,17.432464114006848],[-91.62016710836542,17.431662296203797],[-91.61797199971636,17.428665292470043],[-91.61748594417406,17.426242490096058],[-91.60894816595203,17.425499825224392],[-91.60689818800677,17.416891383230848],[-91.57968832945602,17.40734381108979],[-91.57549414852286,17.40630441144026],[-91.57433693023825,17.40601761270989],[-91.55879353773906,17.400529584104447],[-91.55813964295936,17.41089289727438],[-91.55785669222195,17.422244158883416],[-91.5524333298377,17.421506278810114],[-91.55209323676598,17.42256694231736],[-91.53724421060036,17.419736166589246],[-91.53707888660313,17.414217809630657],[-91.53684713287231,17.407362680699862],[-91.53032305290401,17.405499735885428],[-91.52727501833363,17.402356748130217],[-91.51724425030716,17.398232721360557],[-91.5150845903022,17.39482341910474],[-91.51446871301681,17.394690860543108],[-91.50993554353084,17.39220271029302],[-91.50500476419887,17.399482443313275],[-91.50050033516544,17.398330074327305],[-91.49873933059655,17.395767659486467],[-91.48427307013145,17.38806159894176],[-91.47617187607756,17.38552228676201],[-91.47255579339014,17.382613091486405],[-91.46785264168176,17.380341185563793],[-91.45649563726295,17.37572154177701],[-91.45271589663184,17.37582317369072],[-91.44717644964703,17.382899365142748],[-91.44449963110304,17.384005048377105],[-91.4392984682595,17.384287368766252],[-91.4348438654672,17.382133512315022],[-91.43032070288012,17.37771296046617],[-91.4220786441407,17.375345803811626],[-91.41983261995904,17.37407066949936],[-91.41729927452855,17.369691837836058],[-91.41681350779817,17.363624860064704],[-91.41437588725512,17.35918551117959],[-91.41491399347422,17.35588846262965],[-91.4167708755798,17.352055219380077],[-91.41749542349851,17.34719644389611],[-91.41677534684857,17.345627118871164],[-91.41360178124057,17.343872704778903],[-91.40510406599424,17.342696329870876],[-91.4001721747884,17.340275927030746],[-91.39699740808521,17.337945061617518],[-91.3883600552374,17.323489438493766],[-91.3850446099799,17.32025222556973],[-91.38353975180348,17.315086750092348],[-91.38389958148855,17.3101003854149],[-91.3880615771468,17.304320265377896],[-91.38831996097821,17.300591247968725],[-91.3925308316824,17.299540369226122],[-91.39843647260813,17.3016975418347],[-91.40400056310295,17.30406693676116],[-91.40797551266678,17.306510911009013],[-91.40965500587953,17.307114380909184],[-91.41259251001514,17.30754899801451],[-91.41642145784965,17.3058904929062],[-91.41762609007196,17.304308204078723],[-91.41868175960298,17.30347550829407],[-91.4251808718621,17.302305303537707],[-91.42647661867534,17.29706302209263],[-91.42681640230933,17.28870758229823],[-91.4274980272645,17.285982838986854],[-91.4271624951217,17.279200371168372],[-91.43099581937457,17.268762796486158],[-91.43122287150021,17.266494464332766],[-91.43888333704433,17.25428889209786],[-91.43969686072813,17.250966883295803],[-91.4273746917932,17.251038790863674],[-91.39729358355885,17.25089333127903],[-91.37016980873182,17.251051402584608],[-91.35596708626775,17.250899379602856],[-91.32571730590581,17.251051920144278],[-91.282326456014,17.251484892743576],[-91.27852436973069,17.251733414975888],[-91.20870343973434,17.25119943763707],[-91.05324958443401,17.251272160833253],[-90.98745919998447,17.251024892337796],[-90.98785645618523,17.425965365020602],[-90.98839258851183,17.500792254286694],[-90.98821009779135,17.553614299688036],[-90.98802809676607,17.646177970350607],[-90.98792247032549,17.674627262937406],[-90.98798406246908,17.707654560711546],[-90.98778082262118,17.750797304290074],[-90.98782072355823,17.81184244658266],[-90.98764764660166,17.82086345010498],[-90.98763792791186,17.823557050652767],[-90.98765030818168,17.826250048502686],[-90.98763896211659,17.82898457684547],[-90.9876400427217,17.831728216426995],[-90.9876532927014,17.834452909709],[-90.98766284479206,17.837134535269],[-90.98768670888046,17.839856619857642],[-90.98769823417717,17.842578060702067],[-90.98769328335857,17.845255084346775],[-90.98768010532501,17.847468829258958],[-90.98766823436318,17.85252808727489],[-90.98766231725762,17.855049760952227],[-90.98765149888493,17.864861174498003],[-90.98765295329883,17.86717933496726],[-90.98766048551852,17.871968462537154],[-90.98766254814927,17.875356559081467],[-90.99044858213699,17.875339615788675],[-90.99563737097128,17.875489465194278],[-90.99552413277303,17.898553904449443],[-90.9955064197265,17.90215663965546],[-90.9876659945391,17.9013506840721],[-90.98764779213775,17.920581178416967],[-90.98763025808336,17.93888127356462],[-90.9876309959248,17.94022354245783],[-90.98762716877076,17.9420898118463],[-90.9876186935814,17.95082433856436],[-90.98795171594458,17.962545041822807],[-90.99044201310807,17.962597723842975],[-90.99347186637306,17.962686962023895],[-90.99505569272617,17.962683545803145],[-90.99616199558818,17.962681050436572],[-90.99856239382854,17.96273265787346],[-91.00157113368073,17.962740275720478],[-91.00389360636399,17.962777641477373],[-91.00637875005401,17.962763436610203],[-91.01169271808965,17.96279149268497],[-91.01401932231363,17.96284585242728],[-91.01617558663128,17.96284840296255],[-91.0206118896175,17.962869126815065],[-91.02297776534903,17.962886658413424],[-91.02535737120252,17.962890828939408],[-91.03010111966182,17.962945367751843],[-91.04299907950968,17.963031881646202],[-91.05194874393345,17.963085434002323],[-91.05775245973865,17.963125632442484],[-91.05825229248194,17.96312726085256],[-91.06628286436967,17.96315319516134],[-91.07961574641087,17.963205552833642],[-91.08602673420188,17.963219573197534],[-91.08633181038283,17.963220233540426],[-91.0894629884055,17.963295090783674],[-91.09181821363018,17.96329757701875],[-91.09421687568727,17.96328128991655],[-91.09669532853468,17.963285213806785],[-91.10697762668303,17.963343774244493],[-91.1177245388858,17.96334986768119],[-91.12020031397799,17.96337525564246],[-91.119416196212,17.965433700564517],[-91.11843592294667,17.96739655331595],[-91.11622205206629,17.97125961266994],[-91.11622434510474,17.971290385749],[-91.11358064747958,17.975850478292898],[-91.13066915481659,17.982250200836802],[-91.13318226003986,17.958009721619305],[-91.1511229760327,17.962673444446636],[-91.15039642853736,17.96477821630259],[-91.14966373415649,17.966903278391555],[-91.14923363695442,17.96765465737002],[-91.14639781697622,17.972233008806654],[-91.14472674025689,17.975159854232743],[-91.17084601905458,17.978037286567087],[-91.17175885169013,17.977838382855452],[-91.1737036215523,17.97724813893842],[-91.17400948060782,17.97696123349982],[-91.17449481958846,17.976893356474022],[-91.17473759486143,17.976852193655645],[-91.17645429850876,17.97486879051047],[-91.17709035762158,17.97487477006524],[-91.17748230693508,17.97505229572471],[-91.17778584135584,17.974997200566747],[-91.1780899067004,17.97488416255368],[-91.17866267921613,17.97515033034955],[-91.1789925949077,17.975472213316607],[-91.17974328771578,17.976116781115877],[-91.18122298766548,17.976565393810972],[-91.18211217431013,17.97413453500127],[-91.1850023238581,17.97291550784115],[-91.18804081173806,17.974972480134625],[-91.18837222343677,17.975149468607754],[-91.19022285747309,17.9758978591056],[-91.19076423000558,17.976279644689384],[-91.19151261249249,17.977155989283574],[-91.19199072177673,17.977798020915884],[-91.19235274561993,17.97794629004568],[-91.19271359075725,17.97821044299053],[-91.19371811423889,17.977727172564016],[-91.19423096103617,17.97793479087784],[-91.19512615620494,17.976291291023927],[-91.19869208767682,17.977135864939783],[-91.19893121089495,17.97606310064765],[-91.20120761760143,17.975620595439864],[-91.20162697054508,17.97608811781305],[-91.20180780718346,17.97617674139974],[-91.20247301382074,17.976298853815592],[-91.20274770578573,17.976098507424354],[-91.20275005111995,17.97586673720872],[-91.20314408519783,17.975841389675054],[-91.20353841202444,17.975787094823033],[-91.20402629763794,17.975472825133465],[-91.20427178790607,17.9751563098381],[-91.20456541518945,17.97476628044103],[-91.20521507934302,17.974892056237422],[-91.20588157507422,17.97583233201391],[-91.20657959987778,17.976126198920213],[-91.20778488812772,17.975778102649997],[-91.2081377679695,17.975541837867354],[-91.20863892162237,17.975498582290072],[-91.20898751628931,17.97569339263964],[-91.21008567690319,17.97540100099576],[-91.2108291507052,17.975945257724845],[-91.21139099838797,17.97593249573464],[-91.21169149344774,17.97584574211203],[-91.21200526821474,17.97443348887714],[-91.21234321776456,17.974347029723162],[-91.21314684473339,17.974497744409973],[-91.21351948513689,17.97468032611897],[-91.2144314613094,17.975226121732874],[-91.21502806417271,17.975482392473282],[-91.21571986835181,17.975578283441166],[-91.21624701951339,17.975296563516622],[-91.2164728947401,17.97517322656512],[-91.21729669732753,17.975180800697558],[-91.21768327669713,17.975078470312326],[-91.21792093393628,17.97565384253687],[-91.22037290480438,17.97761096350706],[-91.22078301790805,17.977793876177316],[-91.22098125671295,17.97856592842612],[-91.22088390667949,17.978941229198426],[-91.2237548412217,17.981325805162157],[-91.22725893817778,17.98237757207727],[-91.22752130775956,17.982207902230073],[-91.2295562905216,17.982166141646246],[-91.22998676144005,17.982188016891882],[-91.23043649799115,17.982156282343226],[-91.23084877565395,17.982124204924446],[-91.23181614537339,17.982760006030446],[-91.23189242715648,17.982617391479835],[-91.2338197882442,17.98329577635451],[-91.23400549631322,17.9835141595006],[-91.23382788745897,17.984023681398526],[-91.2343286640043,17.98430548493883],[-91.2376438325382,17.98539890600398],[-91.23900213828796,17.986271064626635],[-91.24068072584208,17.9876546248081],[-91.24118169669981,17.98812494375204],[-91.24173727456997,17.9888034233378],[-91.24206446215419,17.98889085057516],[-91.24356266763857,17.992148689915325],[-91.24374701032713,17.99292713547544],[-91.24357352940223,17.993881348777222],[-91.24350806610602,17.994465697535418],[-91.24544509327632,17.996773041995596],[-91.245665777797,17.997070402938448],[-91.24865047812364,18.001702561942864],[-91.24808184051454,18.003295428478964],[-91.24819619630091,18.003718960113076],[-91.24838307287831,18.00443170289219],[-91.24841306973968,18.00466897518595],[-91.24862706216612,18.004815212902997],[-91.24898289737604,18.004979587209505],[-91.24910893018006,18.005310475903343],[-91.2494691134192,18.00593203659554],[-91.24977924594998,18.00616157955028],[-91.25068837721187,18.006691637541905],[-91.25088003682333,18.006608308051057],[-91.25129124578791,18.006886292155798],[-91.25152029194578,18.007232931759916],[-91.25254321646634,18.008386027739846],[-91.25282199603083,18.008522535163877],[-91.25305371863232,18.009060493887148],[-91.25322397601195,18.009278409541707],[-91.25404310629511,18.009244603552247],[-91.25414098759035,18.009453289983583],[-91.25425752993442,18.009650148321384],[-91.2545270767601,18.00963195666168],[-91.25473022039114,18.00978840148497],[-91.25488007899872,18.00989281146059],[-91.25660312950657,18.00992444455369],[-91.25692051538869,18.009958730481912],[-91.25729202530016,18.0100564094098],[-91.2576749996436,18.01010174406656],[-91.2580896471361,18.0102731261058],[-91.25918576986089,18.010862080240656],[-91.25952474627627,18.010928034172252],[-91.25973227778968,18.01099275651154],[-91.25997090618216,18.011235918610907],[-91.26019704424118,18.011636110343773],[-91.26034849649352,18.011836600608717],[-91.26046858317363,18.01187956767575],[-91.26081902491609,18.011893225289498],[-91.26149585370325,18.012140321707648],[-91.26154833590289,18.012371301266683],[-91.26176681863444,18.01243611993766],[-91.2618431110962,18.012478742561655],[-91.26189106322204,18.012694115882766],[-91.26266078498304,18.013518412613735],[-91.26302008634264,18.013752145205615],[-91.26435854752708,18.014675823745677],[-91.2644775085704,18.014834032699696],[-91.26497230775993,18.015082609034152],[-91.26524389782583,18.015315601306042],[-91.2688739739175,18.01718185992604],[-91.26944643745429,18.017515838573217],[-91.2706462050881,18.018071455749862],[-91.27094011493665,18.018262702518484],[-91.27111460833805,18.01834808730382],[-91.27153966469564,18.018571933259068],[-91.27321798870003,18.019488081997622],[-91.27356691727539,18.01965884712041],[-91.27464211811849,18.02021754378535],[-91.27488149436442,18.02038732999813],[-91.27531808352245,18.020558873611435],[-91.27576541874242,18.020751480974354],[-91.27846083260295,18.02235127218853],[-91.27855648688478,18.022655999442293],[-91.27878614260538,18.022699980266054],[-91.27908261490842,18.022629250601085],[-91.27921109361466,18.022764578640704],[-91.2805427190691,18.023459574018204],[-91.28081400019681,18.02373443237633],[-91.28141926732798,18.02400625892392],[-91.28183143236993,18.024439560258656],[-91.28543800424012,18.029804580574478],[-91.28575253154423,18.03086786069622],[-91.28775992075111,18.032702578121814],[-91.28831812433248,18.033266595992643],[-91.28925276371172,18.033774018299482],[-91.28994870711534,18.033891968516173],[-91.29027977293879,18.034194417350363],[-91.290985152764,18.034659888836416],[-91.29271824993566,18.03590809642509],[-91.292868702602,18.036353658321957],[-91.29410699257204,18.03784213887195],[-91.2945624656723,18.03824546958748],[-91.29674319570307,18.04194032923897],[-91.29810525015989,18.042423082212565],[-91.29841911092285,18.042851462416195],[-91.29905985666653,18.043030479015272],[-91.29955954645072,18.04317463227369],[-91.30033009376939,18.043381090514742],[-91.30362856827225,18.044994826555182],[-91.30403052869542,18.045050814268507],[-91.30517243822874,18.045719751275612],[-91.30601785759626,18.045893880973097],[-91.30707880189533,18.046302540891304],[-91.30765840930911,18.046826730901444],[-91.31265719984583,18.048108348295898],[-91.31334349557756,18.048393904806062],[-91.31359370753705,18.048436004632606],[-91.3161686610431,18.049121481853888],[-91.31675286719695,18.049166487608034],[-91.31788027444975,18.0491763036934],[-91.32073857983102,18.051272940417903],[-91.32069313743193,18.052203516608074],[-91.32334835076398,18.053294365435534],[-91.32415007089418,18.054080779278706],[-91.32421268494005,18.0551060588802],[-91.3235975899612,18.055600426247338],[-91.32365629255764,18.057371001263164],[-91.32337313894175,18.05804468759993],[-91.32493189040099,18.05944871978096],[-91.32669173264378,18.061636867939285],[-91.32667644606255,18.06242132597822],[-91.32702432132385,18.06266535728537],[-91.3276752286153,18.06289937405279],[-91.33117297079855,18.06269692547346],[-91.33164013256891,18.062926688412063],[-91.33306914165854,18.06332758093731],[-91.33351023156223,18.0632817981093],[-91.33408897651685,18.06311068678349],[-91.33709631703198,18.063939952704118],[-91.33751309114842,18.06387946731428],[-91.33953414511217,18.06346460903177],[-91.34015811707411,18.063729532953857],[-91.3407595518899,18.064173987740787],[-91.34151027037251,18.06428027858749],[-91.34211876323559,18.063966017241285],[-91.34284956689515,18.06397228939585],[-91.34451204658205,18.06402741483214],[-91.34499379512835,18.06387182565294],[-91.34516143535865,18.06381333659664],[-91.34570075686969,18.064197369093847],[-91.345847292175,18.06415865718725],[-91.34645465657098,18.063964223120536],[-91.34947443750247,18.064828664153595],[-91.34984508070107,18.06539087117426],[-91.35056892985494,18.066135821912894],[-91.35079658357881,18.066357410495016],[-91.3534883915691,18.06788412745641],[-91.3536539200582,18.068045257529263],[-91.35404624579814,18.06852780829911],[-91.3551312830794,18.068616939033348],[-91.35712821677822,18.06945259341427],[-91.35772252789457,18.069459200103836],[-91.36064326415044,18.069763542201315],[-91.3616028158749,18.069871530418254],[-91.36213004398701,18.069316911506576],[-91.36251283607072,18.06925683088059],[-91.36393180634491,18.069368703165367],[-91.36595927175227,18.0669099957899],[-91.3661061754263,18.066831354095314],[-91.36817813121058,18.06632974816324],[-91.36852724998465,18.066971626639486],[-91.36994215703015,18.067522661111752],[-91.37097755002395,18.06746912162231],[-91.37143763590615,18.06739311759094],[-91.37233536529368,18.06742064561439],[-91.37317242731757,18.0672280622166],[-91.37324698435776,18.067178079800158],[-91.37373672287896,18.067172889252276],[-91.3771163267948,18.065264521106087],[-91.37803838304222,18.064912859384833],[-91.3813317767623,18.06439855240029],[-91.38162575029367,18.06422133676614],[-91.38496660237405,18.064249303747374],[-91.38552694056165,18.064633356893466],[-91.38853109401413,18.06628166872025],[-91.38913733881634,18.066206841326903],[-91.39006531426872,18.06749244825943],[-91.39045865405336,18.06787514605287],[-91.39157406732306,18.069424450246117],[-91.3920929441378,18.0696111860903],[-91.39315676626319,18.071990841452305],[-91.39294700513818,18.07509692901567],[-91.39458035103905,18.0769075713406],[-91.39518118740227,18.077431699422334],[-91.39632997580401,18.078368861857086],[-91.39832326241151,18.079643376419256],[-91.39898699593044,18.080148057028396],[-91.39996828825429,18.08017615447949],[-91.40060207866014,18.080221126063464],[-91.40093566749124,18.080283817348175],[-91.40206386341106,18.080233235617754],[-91.4029648597255,18.079901241779282],[-91.40341182127582,18.07984751889586],[-91.40493069395262,18.07959805648761],[-91.40549437257147,18.079622673547306],[-91.40775219783626,18.07936178919374],[-91.40818983274818,18.07946519436365],[-91.40904154116816,18.07895213301242],[-91.40968834202226,18.079017390954732],[-91.41031410978059,18.07910243252161],[-91.41121209977683,18.079109827250875],[-91.41215269631499,18.07901772319957],[-91.41252781782345,18.07910064527198],[-91.41304720997528,18.079404452454412],[-91.41713256615941,18.08157672436414],[-91.41918320961071,18.081134325443088],[-91.42125684213534,18.08045243284397],[-91.4221138942861,18.080359596849405],[-91.42344251831798,18.08021258356041],[-91.42411693836357,18.08020907894212],[-91.42939802694428,18.08171055741616],[-91.4298360393289,18.08177399944111],[-91.43336622793299,18.082097820677063],[-91.43465566873448,18.083433352174723],[-91.43828032648167,18.084481043598487],[-91.4385889577863,18.0850026811583],[-91.44117909036885,18.09088673621926],[-91.44528045821079,18.095783492432588],[-91.44659532903256,18.095893935056836],[-91.4468043356402,18.09587560930828],[-91.44902853787664,18.09471546359032],[-91.45329386624348,18.098087275912803],[-91.45607381486315,18.097849984104016],[-91.45636481012889,18.098012088548728],[-91.45715681944705,18.100594231425134],[-91.46091149743324,18.102127395990408],[-91.4612660814675,18.102190104572003],[-91.46341887998568,18.102027591260082],[-91.46389745731767,18.102231098970492],[-91.46484466497861,18.10379607608121],[-91.46509302818976,18.104057625831103],[-91.46964155095941,18.103398011945274],[-91.47377037463912,18.10660559764807],[-91.47398739342066,18.10721810494789],[-91.47546340246782,18.108028464001166],[-91.47690911806501,18.11235293839877],[-91.4798137697058,18.11305925038971],[-91.48435301890493,18.11275779896681],[-91.48682671367703,18.116591060699022],[-91.48752341287275,18.11664145307941],[-91.48944078251105,18.11715568513347],[-91.48893589563806,18.117571025899906],[-91.49206000288257,18.116405786159817],[-91.49661819663856,18.116310129777617],[-91.4978500599276,18.11517404803692],[-91.50059323228675,18.11730639574654],[-91.50311480978615,18.11675082235945],[-91.50350670509675,18.116871690131404],[-91.50196638115779,18.118142521452796],[-91.50357154279419,18.120109218166192],[-91.50197329070716,18.121993907005333],[-91.50469594285164,18.12423580944096],[-91.50272176498822,18.12593821664052],[-91.50466471490233,18.126676363200772],[-91.5062498025813,18.130011332322226],[-91.50716953675567,18.130053542693588],[-91.51653218144372,18.13048525224707],[-91.516309565879,18.13358447229865],[-91.51608080712509,18.137888809904098],[-91.51605438012814,18.13931073137428],[-91.51584627079677,18.1428084949672],[-91.51566456514172,18.147576555322587],[-91.5152128452849,18.154952469431066],[-91.5096403648256,18.154575016441527],[-91.50233429492363,18.15434889646224],[-91.50205094160987,18.154958889553484],[-91.50240787623329,18.157805606063107],[-91.50408088005423,18.159714427931135],[-91.5045896053951,18.160485144400468],[-91.50466912748408,18.162792169794443],[-91.5032109760341,18.164604740219602],[-91.5042851766487,18.16565886800288],[-91.50507169989294,18.166151528617036],[-91.50727668842688,18.170476287555402],[-91.50933734412257,18.17105475116216],[-91.5136085302766,18.169057965516004],[-91.51355084908221,18.170284766529846],[-91.51374155446382,18.170225662408996],[-91.5140590547706,18.170167538600083],[-91.51592341253394,18.169740720979576],[-91.51727093667796,18.165209188039228],[-91.52038241591782,18.16251935553953],[-91.52039282661457,18.16238339657508],[-91.5201205575388,18.16051396061863],[-91.52452276443029,18.159897104459446],[-91.5345149361167,18.146180908855797],[-91.53799090351367,18.148501994756657],[-91.54104378322927,18.15047037434755],[-91.54496684118641,18.153061507689415],[-91.54769302340725,18.154825558753885],[-91.5503601631446,18.15657839507338],[-91.55276106286203,18.15817622874198],[-91.55537875214276,18.156722860077423],[-91.55565424900948,18.15657200337961],[-91.5586526815203,18.15787857248074],[-91.56154075480197,18.15757635944459],[-91.56734577427414,18.1591572222099],[-91.56757058905504,18.158966850735453],[-91.5700011164979,18.157169084141174],[-91.57337740638405,18.15719520871994],[-91.57377618788132,18.157582260956247],[-91.57802988904348,18.158958096010508],[-91.58012330679009,18.158052950135072],[-91.58019237046551,18.15779738024554],[-91.5811627207791,18.15377144520386],[-91.5810306292882,18.153535751424727],[-91.58179334260416,18.15271163446141],[-91.58272926781848,18.152461407058524],[-91.57862729610241,18.148365902333808],[-91.57219912550266,18.14201513156536],[-91.57506746099546,18.139212677396927],[-91.57794311783397,18.13643594395461],[-91.58056973733079,18.13488763114225],[-91.58123799079192,18.13524723641723],[-91.58271262336353,18.133831959700103],[-91.58426521345973,18.132328310269884],[-91.58668025206356,18.129931205400624],[-91.5874099902365,18.129186040584898],[-91.59199967767853,18.130501706453742],[-91.59166020837358,18.12990180747329],[-91.59152823683348,18.12934410309765],[-91.59178339550073,18.12885497127587],[-91.5922796866522,18.128347883007393],[-91.59495057285392,18.125753710114168],[-91.59508815247762,18.122552806009594],[-91.59305796393124,18.12057237933965],[-91.59245917914524,18.120158243938647],[-91.59167373067055,18.119364500884046],[-91.5920679043922,18.118547860648107],[-91.5910420152178,18.115714179504835],[-91.59060775508948,18.115356401512543],[-91.5898836570858,18.11468554153413],[-91.58994239409208,18.11394209715735],[-91.5901184711721,18.113376025013167],[-91.59055886080779,18.112761452807774],[-91.58953012723185,18.10949547677859],[-91.58945953374126,18.108423277486736],[-91.59137189926275,18.10689908322047],[-91.59244248920061,18.10667995977326],[-91.59665657830743,18.108546480750874],[-91.59773776788734,18.108655214369435],[-91.59809312265378,18.108443150800213],[-91.600613972232,18.10778876076347],[-91.6008830795696,18.10739363763139],[-91.60357753602335,18.1072066959062],[-91.60381402530919,18.106731916984074],[-91.60373506484206,18.106207203374083],[-91.60377120320146,18.10584215328737],[-91.60527939630282,18.104312411449087],[-91.60539838535965,18.10397972837461],[-91.60538490425228,18.103582553267017],[-91.6052045787012,18.103263586038224],[-91.60549605994328,18.10251090586013],[-91.6059977308264,18.102133340377236],[-91.60793194293723,18.100922652910185],[-91.60837317330333,18.100055733490365],[-91.60950468118381,18.098438396701624],[-91.60961075641251,18.09810298571],[-91.60971801152823,18.097609400353235],[-91.60965872023945,18.09594942686141],[-91.60991900852605,18.095732215978728],[-91.60885332093034,18.092074421035704],[-91.60964428903645,18.089198664390608],[-91.60855662492452,18.08848455227718],[-91.60793744845557,18.088310596606675],[-91.60645135932936,18.085672642859492],[-91.60611897125017,18.08276942362221],[-91.60762015236975,18.079625574929196],[-91.60744062206595,18.079294265090255],[-91.60683557478984,18.078085191355456],[-91.60897321759273,18.070487386801403],[-91.61274275907567,18.068932859554195],[-91.61496881305453,18.067698871557468],[-91.6165586366406,18.065434341294406],[-91.6168048950484,18.06481607085459],[-91.6175126740855,18.063201509768135],[-91.61929490920176,18.060803690775174],[-91.61811141148144,18.055720772375935],[-91.6168155189223,18.0552249461507],[-91.61593262903591,18.05470702058375],[-91.61518413059991,18.054166701724398],[-91.6139686624482,18.05172963357319],[-91.61357521590946,18.051408877925724],[-91.61350214000402,18.049958326736714],[-91.61376935506019,18.049462681428793],[-91.61392034198661,18.049224732227515],[-91.61376681703439,18.04865820072206],[-91.6125120024384,18.045645672264982],[-91.6134082049324,18.0440218634277],[-91.61378201436293,18.043231532516927],[-91.61393263657618,18.04256976220921],[-91.61408907902774,18.040113695548598],[-91.61516784455995,18.035170390968347],[-91.61401553912634,18.03259510118869],[-91.61411371053725,18.032199792249514],[-91.6143037230899,18.03201735106751],[-91.61452654667085,18.02927883350901],[-91.61456816480529,18.02852271595151],[-91.61537674522964,18.02771438284367],[-91.61556256455822,18.027291942794136],[-91.61575877747862,18.027026592805782],[-91.61606806716935,18.0265177710873],[-91.61642316252903,18.026030503283778],[-91.61709709424065,18.025179484454895],[-91.61738483331817,18.024511035367652],[-91.61750782719355,18.023960716650322],[-91.6163719341597,18.021792480274826],[-91.6165913911446,18.02105417140956],[-91.61845990530873,18.018154890220046],[-91.61905368995497,18.01769557285388],[-91.61917516218813,18.017232645516515],[-91.6189474701302,18.016750356234013],[-91.61923318479194,18.01439547830688],[-91.61918015509582,18.01339468033086],[-91.61924856712193,18.012491936228287],[-91.61949250196028,18.010416641404106],[-91.61952399239311,18.009024117840966],[-91.6193504488457,18.00848109913045],[-91.61727286658214,18.004783658579186],[-91.61777830945039,18.00369794320966],[-91.61824801304738,18.0030029798055],[-91.61802421125827,18.002462962080074],[-91.61698802592821,17.99990328493743],[-91.61727364189767,17.9970101818829],[-91.61582113612172,17.989084062043332],[-91.6163634469649,17.986904689756614],[-91.61653485778555,17.98469555054959],[-91.61695633048924,17.983870134631047],[-91.61776672173568,17.9819157920096],[-91.61998964225819,17.976440284949774],[-91.61918202485998,17.972854218663315],[-91.6207593768167,17.967237892687876],[-91.62116610259136,17.96509107775387],[-91.6215125532039,17.9615873197597],[-91.61977338199472,17.957574112176417],[-91.62047629447687,17.953578594054704],[-91.62184232839337,17.95172117555319],[-91.62328694325691,17.95040088807366],[-91.6247403864495,17.94907184494855],[-91.62204679630389,17.94257474855948],[-91.62026886048727,17.922230056222247],[-91.61962488083259,17.919189619300994],[-91.61321833060879,17.91334351736066],[-91.61271359378532,17.91291902282677],[-91.61484669773495,17.912037538508343],[-91.61751083340204,17.910820845657327],[-91.619363219153,17.909212301508944],[-91.62330243780337,17.90837384887044],[-91.62491352059874,17.908053418906093],[-91.62773738227139,17.90745281371278],[-91.62916140577096,17.906838699777268],[-91.63308921590055,17.905016024258657],[-91.63154238886273,17.898149440962186],[-91.6291014175361,17.897127896737004],[-91.63431820997079,17.885096380774485],[-91.63274893362558,17.884196371279074],[-91.63621459201374,17.878334541113645],[-91.63880593640613,17.873953789841494],[-91.66145302761845,17.88808925817068],[-91.66598543087792,17.890965897588217],[-91.67194204567897,17.894661394994444],[-91.6747299016024,17.896385392097727],[-91.69620716760033,17.908741923012087],[-91.69775303310405,17.90961422531558],[-91.71282723359712,17.91892721758535],[-91.71240406052976,17.92164285982551],[-91.71569590718701,17.922391721405177],[-91.72510105750513,17.92449461321769],[-91.72508715878382,17.926671212057727],[-91.7370281085552,17.934216965613587],[-91.7386938426551,17.936182524516425],[-91.73953705368683,17.935213958622057],[-91.74511459145253,17.940805102899787],[-91.75487015530331,17.95143667098165],[-91.76048730085273,17.95762567762091],[-91.76058509518776,17.956480038831558],[-91.7613893630886,17.946001363565244],[-91.75710069227392,17.939733641914586],[-91.76226653426187,17.939014273163366],[-91.76800603669716,17.948547589025566],[-91.77118527218022,17.944366924992494],[-91.77222798523087,17.94524915084844],[-91.80464421751094,17.972550514390036],[-91.85555615874773,17.981060733974005],[-91.86504684027051,17.98288779218757],[-91.86720785353077,17.98326635284701],[-91.87843754990763,17.99563123552241],[-91.88811014387778,18.006337584085713],[-91.89806463177035,18.011111331780228],[-91.90035477252144,18.012147002674567],[-91.90416638987074,18.012693667420706],[-91.90972267419437,18.013786307323016],[-91.91004320011888,18.013655822854275],[-91.9101056576136,18.013642616901507],[-91.91349325850246,18.013091606978833],[-91.92854492679402,18.011105183967857],[-91.92871319443566,18.011079633685426],[-91.935355623801,18.010202440550074],[-91.94012158521116,18.012563974658974],[-91.96674770040443,18.015988439599028],[-91.9677974302491,18.019177599319676],[-91.96841952888872,18.020797486566778],[-91.9686166129456,18.021810932770336],[-91.96900515917139,18.023415168251006],[-91.96961308015767,18.025229146756317],[-91.97459409302394,18.03335623709677],[-91.97540173707722,18.03694110843378],[-91.97877858318805,18.04282971567153],[-91.98280125123568,18.043104456492188],[-91.98736247771257,18.038880853440048],[-91.99079872003551,18.038739041398458],[-91.9996077148586,18.04425937206497],[-92.0000000089729,18.04455374524025],[-92.0073443920387,18.049981806987887],[-92.01181754938426,18.050945003561026],[-92.0149320764657,18.053622259363692],[-92.0169337005953,18.058089477319243],[-92.0187443549375,18.06067542650402],[-92.02098687755614,18.06290235853743],[-92.02286516974289,18.064705549628457],[-92.0248864880478,18.070133165832942],[-92.02580619176138,18.073718609550838],[-92.02663094134863,18.075863800948355],[-92.02824216896096,18.077172044083],[-92.02998717119334,18.077980279657083],[-92.03215204387823,18.078236716319566],[-92.03484170520954,18.07814874775363],[-92.04002806631377,18.07756350560254],[-92.04209542437405,18.078318814851798],[-92.04246913802007,18.0812616434323],[-92.04127373671543,18.08233406585566],[-92.03979088791277,18.08346386203283],[-92.03729854250855,18.085200695808282],[-92.03598625002144,18.08736333197976],[-92.03590120899105,18.091140748987414],[-92.03701739702433,18.09495485408047],[-92.03875385370975,18.09708175924129],[-92.03993880899702,18.09795034167871],[-92.04166111749862,18.09807655062582],[-92.04398539542638,18.096892088505285],[-92.0457856410161,18.09527851539957],[-92.04915433708709,18.094323456071947],[-92.05388325247901,18.094248562819985],[-92.05503513492664,18.09473866470279],[-92.05734552334252,18.09715679118193],[-92.06027481018128,18.098534191071735],[-92.06217167036152,18.09816393430998],[-92.0664629995519,18.09366955422655],[-92.06802259013364,18.09211329726486],[-92.07096810911418,18.092816712874026],[-92.07296485409341,18.094008197590767],[-92.0748172315586,18.09444256700408],[-92.07776966667882,18.092589328985923],[-92.07883252884653,18.087937792490777],[-92.08044150537506,18.08605633013434],[-92.08414163555341,18.085861471833482],[-92.08552305627177,18.08673655926816],[-92.09062677131482,18.091134316882574],[-92.09223100379364,18.092049962432384],[-92.09509713640279,18.092512547935996],[-92.09770019346848,18.092604506464966],[-92.10016471852487,18.092867164061943],[-92.10375775930356,18.093488812751787],[-92.10828145998141,18.093806808902286],[-92.11010835580555,18.09440619935509],[-92.11200626554586,18.095644099728418],[-92.11478375849458,18.099265248035124],[-92.11638145118854,18.10095906283823],[-92.11825567232023,18.102007717802508],[-92.12113818468123,18.10194950287081],[-92.12218166757987,18.102385594106806],[-92.12447788713456,18.105140567878607],[-92.12573800203535,18.106649527863112],[-92.12742457344945,18.108657861808297],[-92.12748740282268,18.110777503293946],[-92.12833569230372,18.120149856023374],[-92.13130386219984,18.122283558575646],[-92.14904346009723,18.136730366103677],[-92.14878203865948,18.149296387230777],[-92.1609029957915,18.15542416844886],[-92.1605621180866,18.18866857527928],[-92.16172432929426,18.19374865938522],[-92.16442396491738,18.19786561672879],[-92.14893751693756,18.210406073222998],[-92.17126689775017,18.252953210261808],[-92.17925707143411,18.268665793904688],[-92.18119492751197,18.2711616613754],[-92.18324385258433,18.27406322735669],[-92.17295136308053,18.27533769156355],[-92.17495654103965,18.287043109295723],[-92.17425197041837,18.290101532665574],[-92.17519755891482,18.294043426434655],[-92.1772278674332,18.288744861632665],[-92.18042882027936,18.28982357647385],[-92.17810611701776,18.30188217009345],[-92.17448369984191,18.322288460753725],[-92.17395119750734,18.32498217422892],[-92.17194361210579,18.336332447101256],[-92.17135755680636,18.338954304729157],[-92.18194872652754,18.375902438275148],[-92.17736021796071,18.375882697050486],[-92.17647378231459,18.41578935319791],[-92.17651037784805,18.425923563761785],[-92.17614773536701,18.45823322457062],[-92.20451719818044,18.456857031009235],[-92.23760789321341,18.458609578666824],[-92.3081919003734,18.457165736571653],[-92.31028747096883,18.45557936956874],[-92.31055568568536,18.46052863096611],[-92.3215522759566,18.467527682140258],[-92.32149248590628,18.470687985492987],[-92.32252893718743,18.473080899052377],[-92.3315750873449,18.460299677335627],[-92.33319873976478,18.459736120639207],[-92.33733506246426,18.457824128250422],[-92.33894678827681,18.45646936052202],[-92.34032361187894,18.454921588520108],[-92.34160214093902,18.45353349436334],[-92.34356763159406,18.451039382519525],[-92.34464590696967,18.4494488443014],[-92.3456970416832,18.447630890751043],[-92.34679950486412,18.445567407574515],[-92.34871364629089,18.44309368196315],[-92.35380194763525,18.442294399488105],[-92.36013721837412,18.445863650885315],[-92.36110182208313,18.449949320512985],[-92.3609822925605,18.4511155675973],[-92.35997287046325,18.45485710065367],[-92.35965782568218,18.45694631999629],[-92.3603049259898,18.458988570963356],[-92.36222147752329,18.46178390436529],[-92.36432450980288,18.463729180178973],[-92.37007329041381,18.466753195740637],[-92.37304318110347,18.468125920959267],[-92.37541605114473,18.46938890269945],[-92.37791614698244,18.471600818510126],[-92.38012250074365,18.47388006755955],[-92.38241047431131,18.476317273195775],[-92.3848172287785,18.478144106514037],[-92.38709416680018,18.47905065609251],[-92.3919765603938,18.479251250999994],[-92.39446573130192,18.47910157728461],[-92.39798034693825,18.478920001989877],[-92.40056447456675,18.479171511665356],[-92.40331079144556,18.47996454365125],[-92.40623756497297,18.48138768856603],[-92.40867745855633,18.482596281449787],[-92.41032939202404,18.48350047472843],[-92.41291759043378,18.485611415631354],[-92.41405172612002,18.487291751301427],[-92.41478675328318,18.489297275605225],[-92.41533282900389,18.49090706192993],[-92.41662173391558,18.49286119866059],[-92.41846311020385,18.49600512618281],[-92.41977412125652,18.49896690449964],[-92.42104677700814,18.502812607744545],[-92.42227074751702,18.506019988018636],[-92.42314837906417,18.507802601092294],[-92.42441379824004,18.50959877523968],[-92.42526594157067,18.51130518275062],[-92.42595520912272,18.513024970699462],[-92.42643102613869,18.514973576181944],[-92.42654575568821,18.516509377744512],[-92.42652277440459,18.518190006068323],[-92.42641194788087,18.520018916904576],[-92.42611425273384,18.521698380195346],[-92.42560134371939,18.524662953384052],[-92.42496854903527,18.527060839896535],[-92.42421408682577,18.52935245715605],[-92.42346975430081,18.532235821019583],[-92.42349990295429,18.535488777052137],[-92.42346548079365,18.540046368005505],[-92.423478615271,18.545116575736643],[-92.42389044688417,18.54929811263065],[-92.42503542842735,18.553336764803873],[-92.426229639398,18.557041442516038],[-92.42840862261755,18.562082318405032],[-92.43045504818156,18.565749787902007],[-92.43257147441085,18.569025166019856],[-92.43489535413346,18.571843483869543],[-92.43667118040787,18.574398616765563],[-92.43755429187064,18.577147215442608],[-92.43919231609641,18.579898054442026],[-92.44020740854722,18.581724117728754],[-92.44213042050757,18.584188236839623],[-92.4443816253135,18.587110340242248],[-92.44658951984661,18.589847352394088],[-92.44922115017437,18.59422483073638],[-92.45106189779466,18.59787011265928],[-92.45215291834108,18.600062667789643],[-92.45210726852127,18.601652164143218],[-92.45194424933555,18.603515215148377],[-92.45319181963634,18.60534304363307],[-92.45587614025214,18.608167656260605],[-92.45850620623082,18.61036430184049]]]},"properties":{"cve_ent":"27"},"id":"inegi_refcenesta_2010.10"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-110.85954712964826,27.87851740307491],[-110.86000789346355,27.880669930107103],[-110.86135467875954,27.878459942921324],[-110.86583395162097,27.875621135807137],[-110.86377406497581,27.875583370453228],[-110.85954712964826,27.87851740307491]]],[[[-110.8360441989181,27.89487383613249],[-110.8331276842988,27.899944770096624],[-110.83459077626657,27.90056206427272],[-110.83886922440013,27.899233531843038],[-110.84153443103736,27.895947804310367],[-110.84070891247126,27.8940660600843],[-110.84333438275758,27.89009385179827],[-110.84669746399419,27.887364439066516],[-110.84311569744904,27.886796115264985],[-110.84097576800144,27.88811020143021],[-110.8360441989181,27.89487383613249]]],[[[-110.87998155167895,27.91098978861328],[-110.88189426462458,27.909840831848726],[-110.8809248970548,27.90791935390996],[-110.87911043243287,27.90890979629853],[-110.87998155167895,27.91098978861328]]],[[[-110.87138256252922,27.912388768222968],[-110.87476730812807,27.911427516097774],[-110.87498111369996,27.906620659909663],[-110.87034614287512,27.908928807064626],[-110.86950153922385,27.911775430262594],[-110.87138256252922,27.912388768222968]]],[[[-110.99039681645013,27.93524615384149],[-110.9928974243715,27.934666058626078],[-110.99019184840813,27.9335507733756],[-110.99039681645013,27.93524615384149]]],[[[-111.02866614538198,27.952554353206438],[-111.03199733369075,27.94779228554802],[-111.02951749335784,27.94860415568712],[-111.02866614538198,27.952554353206438]]],[[[-111.12283315466226,27.952741082027842],[-111.12094221317653,27.95334763316032],[-111.119136287429,27.958393387591855],[-111.12129979647881,27.95844168235419],[-111.12301237007375,27.955630282955212],[-111.12283315466226,27.952741082027842]]],[[[-111.38684245490509,27.98390088751387],[-111.38831509854822,27.98615735933504],[-111.39042594163908,27.984852781768495],[-111.39198207804071,27.981673930402565],[-111.39019509167969,27.979473517914982],[-111.38940454851081,27.972715463665054],[-111.38847559765742,27.970337351069134],[-111.38594106656603,27.969392149359862],[-111.38500402622782,27.964701331061804],[-111.38308347645108,27.96382238811833],[-111.38215067699713,27.96028788672311],[-111.3764670512549,27.957922722803858],[-111.37538771647621,27.95629315248283],[-111.37078320133804,27.955419465691477],[-111.36831872181625,27.95236509994288],[-111.36679319947552,27.954816085297807],[-111.3696476356015,27.959774020570137],[-111.369035930662,27.96031981863092],[-111.37227831121015,27.96650465930003],[-111.37350806361155,27.967249577009795],[-111.37451734399036,27.970783928508183],[-111.37651913465595,27.972955162735616],[-111.38036073069145,27.974781220837826],[-111.38101888681769,27.97833640948585],[-111.38450540714729,27.982607475083398],[-111.38684245490509,27.98390088751387]]],[[[-112.55318311829217,28.729301889596684],[-112.55606923718511,28.73329582857815],[-112.5581369268179,28.73485912641212],[-112.56247245349493,28.73154031889902],[-112.5683401250966,28.7300446415274],[-112.57035809469602,28.72869001453938],[-112.57732161988059,28.730887868194884],[-112.58318353481468,28.731482738175032],[-112.59121583229256,28.73162614930402],[-112.59559496986122,28.732166178036152],[-112.60460218269577,28.727465407893988],[-112.60788944926827,28.72782911658237],[-112.61004864040939,28.726548051653367],[-112.61290449253306,28.72684570458381],[-112.61354288833417,28.724862877010025],[-112.61132113628844,28.721475635998615],[-112.61260455269553,28.719889893667528],[-112.61089675483811,28.71831042077821],[-112.61088532684977,28.71562766305783],[-112.61247529032107,28.713686494565593],[-112.61233236917718,28.708044484366496],[-112.61391311679904,28.70769359629412],[-112.61385712505177,28.705410866122975],[-112.611888588233,28.703093291382515],[-112.6101176858495,28.693021783182303],[-112.60596554963075,28.688030767906184],[-112.6053656870277,28.6845526069784],[-112.60339827951788,28.68227034027035],[-112.6037882134043,28.67897472846414],[-112.60253537301031,28.678170160047046],[-112.60196452989555,28.675032938795425],[-112.60469850273046,28.670362915079068],[-112.59900588228544,28.67272217079551],[-112.59188138929869,28.67183577121159],[-112.58998257421734,28.672606147853003],[-112.5880100704573,28.670584118286456],[-112.58296953043555,28.670643032269993],[-112.5770132338094,28.6692746343287],[-112.57504749552953,28.670010515333388],[-112.5733141762878,28.668602510769233],[-112.57020585233198,28.67020033584629],[-112.56756256947318,28.669785302091725],[-112.56481906006178,28.67152051607826],[-112.56112505936562,28.671499404393444],[-112.55920680351198,28.672928087931496],[-112.55551879933932,28.673424183895975],[-112.55447110466076,28.672487102068033],[-112.551262929448,28.678055529785354],[-112.55110940617658,28.680931481044524],[-112.54722936790944,28.686569787518124],[-112.54847683078162,28.690757139800496],[-112.54568383443063,28.694365297256525],[-112.54559436834609,28.69685528395121],[-112.54735544344601,28.70176867627191],[-112.543655011493,28.70762685611163],[-112.54311580900679,28.713030942095486],[-112.5473143911666,28.71777407303847],[-112.54756822524814,28.724120646990855],[-112.54882880773687,28.72937560150683],[-112.55318311829217,28.729301889596684]]],[[[-112.2981798718447,28.73506338354099],[-112.2972129249307,28.732220752688534],[-112.29875511617632,28.729417269137798],[-112.2966131359276,28.72842697863149],[-112.29401854640429,28.722278683483637],[-112.29394524238711,28.719653111077946],[-112.29224329697769,28.71696184460319],[-112.29167730801214,28.71256303635505],[-112.28699362893292,28.7096383401244],[-112.28513228931104,28.714813781943008],[-112.28805705711795,28.71955575443411],[-112.28740756893268,28.722531148980863],[-112.29148414043476,28.72599407173226],[-112.29663718190153,28.73451860351264],[-112.2981798718447,28.73506338354099]]],[[[-111.96631546355513,28.80879979080072],[-111.96447354358293,28.812423085252533],[-111.96367639699343,28.815960042994163],[-111.9659573388534,28.81662736689185],[-111.96756184281998,28.813925184699883],[-111.97288383900207,28.81073667464335],[-111.97262945759093,28.807852041828255],[-111.96792446830068,28.80770524974787],[-111.96631546355513,28.80879979080072]]],[[[-112.29183719016811,29.2262757009575],[-112.2956862240647,29.224315575600542],[-112.30063463809108,29.222971160241457],[-112.31006355929674,29.223264950025737],[-112.31084560914252,29.223728149400586],[-112.31613110842528,29.22023654066959],[-112.32139362966132,29.219775023267687],[-112.32399133546136,29.221029876963485],[-112.33237687137716,29.218825235965028],[-112.3397878756104,29.222275061962137],[-112.34436011047887,29.22021915880333],[-112.35723107909592,29.22006985410883],[-112.35910728077278,29.22051509756818],[-112.36424959433214,29.21661410612279],[-112.37187809300406,29.212153590059245],[-112.37898465016707,29.20623037668929],[-112.38726424311545,29.19869972265758],[-112.3939994698423,29.193415033539793],[-112.40004269452396,29.189433830315295],[-112.40665974151023,29.186622047194987],[-112.41187368792333,29.18555799680496],[-112.41458936072212,29.18573780000645],[-112.41774047690211,29.18735902832941],[-112.42055110651836,29.185939180164496],[-112.42064783829642,29.188929133209513],[-112.42582238263901,29.189205274196524],[-112.43109076068032,29.194251588676252],[-112.4342912169725,29.199539384935235],[-112.43681178245254,29.199884976158955],[-112.44289321777569,29.1964186536066],[-112.44897833999727,29.1999047008228],[-112.45655996779305,29.194151103761612],[-112.45970841996984,29.189627058483836],[-112.46288542105515,29.186555665600565],[-112.46447929068518,29.181951672290552],[-112.4678537384736,29.17529902335167],[-112.47430279037968,29.168909318885824],[-112.47775939415453,29.167222523095177],[-112.47606083449568,29.163894254050092],[-112.47575526665548,29.159885777525858],[-112.47687256463371,29.158923590134066],[-112.47621439464649,29.154717554036495],[-112.47752509830428,29.147348146822424],[-112.47847420414217,29.144640887382536],[-112.4774048355892,29.141937141545327],[-112.47884418968783,29.138132162490308],[-112.48582902782346,29.130823699629616],[-112.4877133174437,29.130382315213694],[-112.48850526295575,29.122098401347557],[-112.49053063927431,29.1187001083386],[-112.48790863903338,29.114995021685104],[-112.49039280230261,29.10203683264831],[-112.49354496860053,29.096053738476712],[-112.4934501065743,29.09150837750343],[-112.49176103002634,29.087715803200638],[-112.49166655265924,29.084399687472853],[-112.49316266565853,29.080165740283007],[-112.49336844991785,29.07669377437162],[-112.49469777695782,29.071229011893536],[-112.49919810822871,29.065859058615388],[-112.50362427081598,29.063265425045643],[-112.50583656898345,29.063074962936753],[-112.50324781764431,29.060025268464017],[-112.50247066650178,29.057020831994976],[-112.50081612089741,29.05623961200922],[-112.50129553013488,29.052396136640994],[-112.50005493891172,29.048412011229175],[-112.50309497646015,29.044958530881274],[-112.5046140154306,29.0420159843419],[-112.50368517091044,29.03827282866206],[-112.50454013731371,29.03617006289329],[-112.50277641921485,29.02929614293862],[-112.50143022349562,29.027441020972162],[-112.5025079063359,29.022708021119684],[-112.5057329997399,29.01440412696303],[-112.5044657069958,29.009877038361594],[-112.50160668107793,29.00789129327609],[-112.50133246505732,29.004691014492437],[-112.50000908560702,29.00265544758662],[-112.49992189505025,28.999597406490352],[-112.5009974837456,28.997500867887368],[-112.50058083073105,28.99490676302827],[-112.49770639564707,28.990438667938975],[-112.49287815987151,28.987788913601264],[-112.49016265873047,28.983053772640346],[-112.4895964002709,28.97610205577473],[-112.49306301112028,28.970243020965768],[-112.49295414112214,28.968528410670956],[-112.48669925080185,28.96126743810447],[-112.48688231468634,28.956991186640778],[-112.4892952286213,28.95170938167263],[-112.4894963857003,28.949047735141505],[-112.49492989740588,28.943208662198685],[-112.50033455729653,28.939634696966834],[-112.50188523631982,28.937857577110037],[-112.50398847512383,28.932834275438893],[-112.50408582717887,28.929420623517046],[-112.50721099574923,28.924475073998508],[-112.51247201681815,28.92120691153127],[-112.5139221651242,28.917905206599585],[-112.51717601183202,28.91524639388365],[-112.52113950317238,28.91454051321773],[-112.52291968927722,28.913251893201334],[-112.52300570240709,28.911152841177966],[-112.5293708030714,28.906287294374636],[-112.54050426021479,28.89946093935953],[-112.5432241118063,28.899037782375217],[-112.5447659791991,28.896317159544537],[-112.55052530240545,28.892512101972386],[-112.55973286342572,28.88826330522261],[-112.56266535460884,28.888496115997896],[-112.56314808492192,28.89153964735391],[-112.56393240638755,28.88813535240928],[-112.56548731494485,28.885955082886653],[-112.56953353272826,28.885083372227655],[-112.56741900706942,28.8835431775085],[-112.56985428618742,28.879809549856816],[-112.5725220976725,28.879986739251535],[-112.57504132013895,28.878679287299292],[-112.57804428622433,28.87853760870155],[-112.58327825448606,28.876985736793415],[-112.57961595304585,28.874594569893418],[-112.57592878518818,28.86987462703354],[-112.5718650431188,28.86827006851621],[-112.57052922502538,28.86959354281862],[-112.56413958971461,28.87089282044792],[-112.5548905328215,28.86798346246053],[-112.55178637943641,28.86457149094292],[-112.55058375233796,28.861127509057837],[-112.54708779775393,28.85736082539404],[-112.54364239280466,28.857229050287287],[-112.53991086363493,28.853443702305754],[-112.5372343610216,28.853215271657803],[-112.53615261800138,28.851628837881094],[-112.53190352629491,28.8507142315907],[-112.52710762505973,28.847161744731352],[-112.51788330826054,28.843154962423455],[-112.51262665641633,28.842336844741737],[-112.50787267443155,28.84068927925466],[-112.4984708025898,28.83483770501192],[-112.49762858251529,28.831616750689648],[-112.49593472611241,28.830250947584034],[-112.49436895356035,28.8268250624335],[-112.4953092806428,28.824989686890035],[-112.49369586678728,28.822660398272262],[-112.49196018610297,28.824135481843086],[-112.48560086095443,28.823133041037522],[-112.47775188431115,28.823266695893437],[-112.47235673380152,28.821724421832243],[-112.46812645893607,28.81795520105163],[-112.46659236603006,28.81290154842509],[-112.46703940736694,28.807286312806752],[-112.46292119699751,28.803409583701182],[-112.45754364413301,28.801911187167946],[-112.4501975748235,28.803154515541735],[-112.44647964177341,28.80196697431512],[-112.44436837858262,28.80283949548476],[-112.43848573202308,28.803176281524145],[-112.43522077122105,28.801957571717992],[-112.43521276696936,28.80065676259926],[-112.4321871141945,28.800127954518416],[-112.42557826160498,28.79770812856259],[-112.41612009772979,28.80033620049994],[-112.41102084689663,28.800364224691066],[-112.40683511354223,28.799479669541256],[-112.40222749811642,28.796123782636528],[-112.3977479193822,28.788543326124056],[-112.39330627989295,28.786924951082085],[-112.39137321884795,28.785248587791955],[-112.38936092782285,28.780490769907544],[-112.38766352183666,28.778427434094226],[-112.38301923499961,28.775694625310905],[-112.37476367403747,28.773665247838778],[-112.37104141255202,28.775388759497503],[-112.36662517165655,28.774782395674322],[-112.36451134610871,28.773568045552906],[-112.36298135352854,28.76941776054798],[-112.36332954339241,28.76744828765618],[-112.36108065087006,28.761419118885897],[-112.3564354733698,28.75940318260416],[-112.3550488559793,28.76259402912416],[-112.3500146592163,28.76597221789217],[-112.34144533548454,28.766630852508],[-112.32794550936603,28.763407788254824],[-112.3263379907932,28.760893287287047],[-112.32274445945433,28.759071104752024],[-112.32185573565835,28.75452650814242],[-112.31963666563894,28.755837077921],[-112.31416665957289,28.754218249221253],[-112.31189866125999,28.751652485355578],[-112.31342541219476,28.7476562474489],[-112.30970577688805,28.747013966254826],[-112.30551533205801,28.75061992399452],[-112.3053121223038,28.75229355214276],[-112.29548692408878,28.76112864764758],[-112.28159465375148,28.76789007514884],[-112.27663773842528,28.769549734377563],[-112.27259689691357,28.76950058673674],[-112.27021402482666,28.76841606527387],[-112.26735465617696,28.764946356643406],[-112.26373960490821,28.76765588039899],[-112.25710723126417,28.769363234160494],[-112.25497963552937,28.766898450857184],[-112.25365597334559,28.767811853792523],[-112.2544133667933,28.77296553510712],[-112.26224674668106,28.776110789700397],[-112.26309289316629,28.778334715003325],[-112.26648415279948,28.779840954899896],[-112.26888928826867,28.778967071545424],[-112.27171262161767,28.780174467643178],[-112.2739897535867,28.786311945102057],[-112.27193137653131,28.790628310238503],[-112.27508852626931,28.794649687028993],[-112.27326504208708,28.799240224362677],[-112.27722350165931,28.804067818676856],[-112.27652183786842,28.807641137628877],[-112.27394702106608,28.811595356382725],[-112.27520680157062,28.81664150539018],[-112.27193080507863,28.824686906405304],[-112.26836116899932,28.827591967275907],[-112.2652899884622,28.831206751730235],[-112.26546505277298,28.832924610085],[-112.26223316105296,28.836048411352067],[-112.26241064878371,28.837220518220022],[-112.2580137895958,28.842979276902724],[-112.25824656284692,28.845547046452623],[-112.25687608234489,28.849630845568925],[-112.2581364275328,28.852371815221943],[-112.2570139516871,28.8580933959131],[-112.25398903657049,28.860872985912863],[-112.24531325160922,28.866460070429355],[-112.23955362945009,28.871748054358818],[-112.23955154997378,28.87688859304899],[-112.23790718587594,28.8805055240922],[-112.23947864293251,28.8821330044031],[-112.23990366483815,28.88559111940117],[-112.24221989251936,28.888668946803875],[-112.24209768484411,28.890918722017148],[-112.23953350503632,28.894916438095322],[-112.2343783332903,28.898807511326424],[-112.23018992491257,28.9034629185104],[-112.23071767088749,28.906580592497278],[-112.22809935651003,28.910408740746902],[-112.22858836297138,28.914116045190042],[-112.22690697382188,28.917890387035527],[-112.22283342093107,28.92487765177316],[-112.22108232970817,28.929567889915745],[-112.22066287569976,28.933320797934584],[-112.21764400039507,28.938200981990576],[-112.21825220001739,28.941048855474094],[-112.21613317376034,28.943817401349122],[-112.21554569172594,28.94701179243839],[-112.21625565897006,28.94978505307091],[-112.21576999746304,28.954788809633442],[-112.2098998842024,28.964926963460982],[-112.20664842522098,28.967379843717197],[-112.19857191047691,28.97095786728886],[-112.18955918156792,28.976567220860545],[-112.19093721461479,28.97667434512323],[-112.19947259340876,28.970759253268],[-112.20874465293588,28.966391975146962],[-112.21039425350472,28.96467463332465],[-112.21510210698966,28.95690354894475],[-112.21673611233274,28.960309172795235],[-112.21647551680212,28.965361070237805],[-112.2136369338449,28.96965802135361],[-112.21502357971775,28.9749531510231],[-112.21358167968026,28.97924453669731],[-112.21406687461717,28.98380350728877],[-112.21200741396592,28.984951491283198],[-112.2127667932753,28.987147535190957],[-112.21105547515174,28.994871026885164],[-112.20822391898957,28.9981617129892],[-112.20439605610835,29.000931098531453],[-112.19543634698528,29.00582781020654],[-112.19644903143427,29.006786088077604],[-112.20513166363673,29.000666134695166],[-112.20389924212179,29.010100996273536],[-112.20248428048671,29.012039371330104],[-112.20236701713117,29.014904539049212],[-112.19748694283902,29.018087293710096],[-112.19703740201919,29.017169586834598],[-112.19994733321198,29.01387773305146],[-112.19818238373517,29.013365676532658],[-112.19635234926909,29.016230124798426],[-112.19507627535074,29.020702416443896],[-112.19949380728309,29.02195396293314],[-112.20426598898325,29.02513771818741],[-112.2052914415807,29.029520325146166],[-112.2046983547097,29.03055081200182],[-112.20587281160203,29.03570743954083],[-112.20964534052064,29.04079233263144],[-112.21102253535298,29.04397332399259],[-112.21016888548502,29.04582257543666],[-112.21418715328662,29.04803459707614],[-112.2189692963384,29.05406113974243],[-112.219180334778,29.057203856368233],[-112.22051782775873,29.058208562496816],[-112.22389112984501,29.06336997067342],[-112.22427366361939,29.066472580781067],[-112.22309198540336,29.069664052238522],[-112.22553082702348,29.072530400640176],[-112.22803401027909,29.077189558969906],[-112.22943220273095,29.081527513188632],[-112.23160312645342,29.082733356577194],[-112.23458388943209,29.08719905682534],[-112.2324629804362,29.09203130486526],[-112.23497273735421,29.093110749225843],[-112.23535318374678,29.096140173838364],[-112.2418290717028,29.09848462394757],[-112.2434711751252,29.10046833461672],[-112.24360566837476,29.10390496253018],[-112.24246064979047,29.10560738973419],[-112.24540658713653,29.10609552209752],[-112.24921502922984,29.109349198863413],[-112.25057145468713,29.11374391239923],[-112.25300092250473,29.11510942860781],[-112.25643602246475,29.118478184334265],[-112.25817122298707,29.12213548474398],[-112.26333770803848,29.125203725950144],[-112.26853936914983,29.12912374437451],[-112.27249632346684,29.135015958220038],[-112.27437761066568,29.136796615872868],[-112.27472783225289,29.142818021391918],[-112.27279685369166,29.14753338826756],[-112.27145804998304,29.154360687048268],[-112.2719911465739,29.160321976651005],[-112.2747985120422,29.16491012641444],[-112.27307355981651,29.16987424755098],[-112.26960929237862,29.174540814451348],[-112.27095059605574,29.178600079941475],[-112.2710315476811,29.18532549075411],[-112.26829169479458,29.189207769457937],[-112.26248439090864,29.193774524399828],[-112.27069683512337,29.196221334258382],[-112.27243960311426,29.198770753289807],[-112.2715236434401,29.203362723436157],[-112.27232035614196,29.20463567597011],[-112.2770137979519,29.2041811298339],[-112.2794213631363,29.206344999225337],[-112.28157413981899,29.210531890391906],[-112.28137904072253,29.21244341115488],[-112.2853488411933,29.213848238507126],[-112.28951306615016,29.218783232298847],[-112.29304893853055,29.220376752090544],[-112.29804128118542,29.221502456154553],[-112.30044304466486,29.222737757929906],[-112.29543104301825,29.2231396248892],[-112.29543782507238,29.224121981372093],[-112.29183719016811,29.2262757009575]]],[[[-114.63252134469008,31.75766715227752],[-114.66274887073496,31.757475365114146],[-114.68073600186011,31.756098739667777],[-114.67920654450819,31.753729691737135],[-114.67033843460894,31.748970330929296],[-114.65959625759501,31.74403763967348],[-114.64459118159851,31.738192152455667],[-114.63701273963608,31.734618629281897],[-114.62770822192982,31.73126175380355],[-114.61557600590896,31.727890618838558],[-114.61092513601511,31.72740182816807],[-114.60555090904029,31.728987507574857],[-114.60022589369385,31.73212190558371],[-114.59752117174025,31.734618165105303],[-114.59567640244,31.738893975938538],[-114.59259603092187,31.743685519485553],[-114.59195946355175,31.746680278207634],[-114.59543456189186,31.749793294395033],[-114.60245571994272,31.753109843192192],[-114.60881191569734,31.754910292850013],[-114.62112008431836,31.75698603744081],[-114.63252134469008,31.75766715227752]]],[[[-108.79199815241856,31.277472401227953],[-108.75591614520187,31.33241901142094],[-108.8003710589582,31.332154511722024],[-108.8303779548732,31.33227859463892],[-108.90848921165588,31.332330577367998],[-108.95697800090642,31.332207944261654],[-109.08484248530596,31.33303383892985],[-109.18680144548466,31.333600983778467],[-109.31236274177382,31.33418828530074],[-109.37631143998186,31.33410890473226],[-109.47477471563082,31.33413109154344],[-109.47892157663301,31.334011697467645],[-109.52081195453553,31.333999173911593],[-109.55324039770272,31.33387967816924],[-109.56905178322961,31.334025809835452],[-109.62714976136351,31.334089078148168],[-109.66731736200194,31.334026040516164],[-109.73899094565462,31.334133084828068],[-109.95466626181911,31.334055775215347],[-110.09796131149449,31.334138246768987],[-110.14763407093733,31.334128242118368],[-110.37602694812722,31.333219152492063],[-110.3994480059336,31.33261487688435],[-110.4433278252722,31.33234770417107],[-110.48778494515454,31.33228128991317],[-110.585800853266,31.332468717592917],[-110.62168597991683,31.332749002338232],[-110.6426137741451,31.33281548961469],[-110.70073948172717,31.333263527854967],[-110.84757487320775,31.333735502687887],[-110.92768742744539,31.33294165515332],[-110.95177523477923,31.332770820198107],[-111.07500200925483,31.332569458998535],[-111.21387939152123,31.37713759307354],[-111.27606691772979,31.3970322524184],[-111.33407032635921,31.415371537364308],[-111.42346539359022,31.444135706605266],[-111.47152417672226,31.459826537668903],[-111.52662188709814,31.477378730187525],[-111.58141728467706,31.4945061731417],[-111.64826049709853,31.516015126849993],[-111.751703649702,31.54876629228778],[-111.78225450492494,31.558322013120517],[-111.84611407506918,31.57859916315175],[-111.94721265758153,31.610426980397506],[-112.0007727567434,31.62736566757394],[-112.12049936335058,31.66493110995151],[-112.33411703595743,31.73136496692854],[-112.39403366673622,31.750068712568634],[-112.47360600206883,31.774577080397137],[-112.55234092577905,31.7989365791953],[-112.62951348881813,31.822457349116576],[-112.69497728338524,31.84252165347533],[-112.81034536825439,31.877934366298973],[-112.84268712226043,31.887743451819517],[-112.88955823901006,31.902112960728005],[-113.0096950851505,31.93856016970028],[-113.06524216863164,31.95586543584642],[-113.07434600116443,31.95836332954383],[-113.21020518944295,31.99997743978406],[-113.33403216983794,32.03902619968568],[-113.40567204294467,32.06158864959605],[-113.45591179857468,32.07746123883135],[-113.57652887172492,32.11529147317435],[-113.6674604019484,32.143645158841935],[-113.77732550763966,32.17771787756806],[-113.90900797893903,32.21863123518489],[-113.95010477516036,32.231566844868894],[-113.99234612805003,32.24403850171609],[-114.09674356536487,32.27659267374952],[-114.10996881891236,32.28159415676379],[-114.12941134699435,32.28666643422099],[-114.15449142428002,32.29432690488363],[-114.16429358205187,32.29756194500192],[-114.21299916661894,32.31229043948656],[-114.24867845835018,32.32337549714498],[-114.26366543285712,32.328317169622096],[-114.27022683799163,32.33005368262462],[-114.28827436392515,32.335395401633434],[-114.33397589819617,32.34933162336864],[-114.36643792485239,32.359141662973286],[-114.48627070139833,32.3956887998487],[-114.55556718243099,32.41664924582403],[-114.66687874810839,32.45037425284272],[-114.72791960590052,32.468628262012714],[-114.78356568924795,32.48542356182088],[-114.81357276428088,32.49391316192646],[-114.81302818003627,32.49102698533238],[-114.81572999191093,32.48332308237218],[-114.81971649927254,32.48092119033652],[-114.82535173205895,32.48004299690871],[-114.83107815796342,32.48169017850836],[-114.83417053200725,32.4807511787028],[-114.83841654216991,32.47581260966376],[-114.84907753902087,32.473423422969745],[-114.85134911580059,32.47400385885152],[-114.85696327657587,32.47771048642579],[-114.8601640714075,32.477916460975734],[-114.86758758883866,32.48127055327706],[-114.86957354040521,32.4864116121268],[-114.87338070042472,32.48920619103893],[-114.87655806907122,32.48851290624151],[-114.88024491505183,32.49203080344245],[-114.88685277438816,32.491751223312576],[-114.89387168687671,32.48742557833202],[-114.89741201392957,32.487728885105696],[-114.90009165825262,32.48350135218675],[-114.90435556387115,32.483462742445056],[-114.90705849230841,32.48210944526886],[-114.91516580191569,32.48322392919624],[-114.92290893554394,32.482921462444835],[-114.92772588959235,32.484664357964505],[-114.93146443694388,32.4840853282642],[-114.93499657675926,32.48187467773846],[-114.93683746028393,32.477521385054615],[-114.93922492961246,32.47427435797431],[-114.93935006016653,32.46840401189115],[-114.9377824748293,32.460083706781745],[-114.93835489861453,32.457512704597946],[-114.9359795361168,32.453384424576996],[-114.93457769193174,32.44777574653483],[-114.93157040046196,32.44106608344339],[-114.93275015279528,32.438149740727795],[-114.93977964121297,32.4330890789372],[-114.94485194835221,32.42624014173526],[-114.94591695999526,32.42215984062693],[-114.94828678198735,32.4192765266381],[-114.95524339337089,32.41409496854851],[-114.9592241177121,32.414096267991],[-114.96085972489192,32.41068636749799],[-114.9602397996112,32.40154513342452],[-114.95703243100797,32.398696853542674],[-114.95381963247416,32.396996906475636],[-114.95449597098207,32.39335409084924],[-114.95971108927233,32.39190379523427],[-114.96295420895217,32.3942366897499],[-114.96683017557234,32.39345376090438],[-114.96849821579855,32.389226656774724],[-114.96660964087971,32.38462246258774],[-114.96745314845344,32.38351021029911],[-114.96535199005234,32.38144657484389],[-114.96559668997389,32.379298317876874],[-114.9632151453626,32.37669193676203],[-114.96456817222435,32.366049259254396],[-114.96234021343366,32.35970095431617],[-114.96219649566723,32.35196671252635],[-114.96420036712203,32.34800432634154],[-114.96563362594344,32.34102942791469],[-114.96587658838376,32.340406337831325],[-114.96841539876726,32.3372301293856],[-114.9721842584064,32.33574807111444],[-114.98047749822138,32.32944790182029],[-114.98297548886364,32.325660366576415],[-114.98747648404293,32.32176417568104],[-114.9897678525403,32.32060574136881],[-114.99196290399016,32.31783989128223],[-114.99351994387712,32.31172205087893],[-114.99638364802792,32.30970141325031],[-115.00350972575689,32.307424394505176],[-115.00760024250673,32.30542183788316],[-115.00792348368032,32.302451951426406],[-115.01200844967786,32.30027700071548],[-115.01795276264511,32.29461277176597],[-115.02520985698737,32.28986160478735],[-115.02610192965318,32.28617393164893],[-115.02862985491089,32.28363245621176],[-115.03142903894337,32.28235226269754],[-115.03565720536864,32.278483289930136],[-115.04272049430176,32.270066367280265],[-115.04176710884423,32.267276456669265],[-115.04149023983297,32.26183929045402],[-115.04365642251543,32.258620171653035],[-115.04961276096395,32.25288995714391],[-115.05302232711051,32.24517401636837],[-115.04859883801578,32.24396083978411],[-115.04555870136278,32.24118372334152],[-115.04328955197093,32.234918572636616],[-115.04124876515601,32.23232470803367],[-115.01212287831731,32.20953957647987],[-115.01194537091845,32.20939835611131],[-115.0118537823065,32.20932549030175],[-115.00719162621732,32.205628883906],[-115.00576986643034,32.20640524057296],[-115.00363099076645,32.20246500388032],[-115.00291122815304,32.20110856026173],[-115.00251318336393,32.20091444687807],[-115.00217690086703,32.20107032216498],[-115.00271099956245,32.202130081137284],[-115.00070547034693,32.200498082799925],[-114.99454598061402,32.19564704022764],[-114.9922503133244,32.193145003809605],[-114.99182923609231,32.192765311203345],[-114.9926400152284,32.192036165561206],[-114.99284940278807,32.191847857343475],[-114.97531824815366,32.177995474356976],[-114.9754080979501,32.177798503704935],[-114.98972725372107,32.146397566371206],[-114.98043248541074,32.11577615429019],[-114.97339508012243,32.09261695440421],[-114.96945653394135,32.079651068630085],[-114.96546195652371,32.066497497215266],[-114.95827522375117,32.042823846138106],[-114.95824491239233,32.04272397472403],[-114.95700591323805,32.038641488291034],[-114.96743444198614,31.996880298723624],[-114.96657905654172,31.962476970927412],[-114.96548456771308,31.918423881972217],[-114.9562249743363,31.91552458446455],[-114.94712664650064,31.911772170988456],[-114.94513447799415,31.91012096140588],[-114.94322120949715,31.906600547674145],[-114.94246221135796,31.90108082045998],[-114.9391510457329,31.892123586352284],[-114.93688991170535,31.890275764411],[-114.9293263147668,31.88724360455359],[-114.9266495796129,31.88687628525861],[-114.9228378124273,31.884875659597014],[-114.9147587416877,31.882210268585254],[-114.91280951796739,31.880577025358377],[-114.91071395636703,31.875331911377373],[-114.91218836447757,31.870068867377995],[-114.91075947326999,31.867760796418395],[-114.90674365908853,31.86730417207832],[-114.90315081803129,31.86847048084428],[-114.89896347140547,31.871205411321966],[-114.89202758653494,31.87239191332668],[-114.887031511413,31.87159134815147],[-114.88181142249755,31.869426198751967],[-114.87508509164542,31.86561906517983],[-114.87161882191242,31.864483058783662],[-114.86744930691009,31.864520194040495],[-114.8607785328316,31.866303925371653],[-114.85357172145098,31.8663835001405],[-114.8469338721203,31.865265634143384],[-114.84318574096432,31.863553822688345],[-114.84048140123872,31.860112906386917],[-114.8387611986422,31.85537457461959],[-114.83513089129889,31.84890786394726],[-114.83337375176461,31.843436387298425],[-114.83126807089445,31.83896441142349],[-114.82569195470472,31.82881958491913],[-114.82156111700738,31.82353908563681],[-114.81885741677985,31.820905899384513],[-114.80687765061259,31.816680133091722],[-114.80453737635406,31.81996906990065],[-114.80014471411505,31.820361060688185],[-114.79586720917109,31.821742608216653],[-114.78706982124845,31.82309537431388],[-114.78152470154822,31.82272797438452],[-114.76839871123781,31.820873535204726],[-114.76418032912164,31.81978393917956],[-114.75668532334606,31.816402324250873],[-114.7466381014932,31.808929729294903],[-114.73982422495794,31.802072616917826],[-114.73592085014297,31.796248642391163],[-114.73263079063628,31.78881272648789],[-114.72965731621548,31.78391910164669],[-114.72618616332448,31.779930485635873],[-114.72268793644537,31.777058362570983],[-114.71061222271942,31.77075438133636],[-114.69280182682638,31.763121217169157],[-114.6823171954988,31.760749303425314],[-114.67820550888177,31.76030204445715],[-114.670031000564,31.76062662545303],[-114.65524725566644,31.76208158138047],[-114.63004202192343,31.763376124749527],[-114.62389937427764,31.763295487455878],[-114.6166628953211,31.762584793101325],[-114.6068462625347,31.76050372116589],[-114.59981153337196,31.75832251880871],[-114.59221724902307,31.75647012942335],[-114.58523129280996,31.752882036941912],[-114.58278890392762,31.752221342885093],[-114.57823064262385,31.747724041931406],[-114.56775104992266,31.74291796822655],[-114.56323083733508,31.74127017519777],[-114.55402806475348,31.735542577273463],[-114.54968774530812,31.730335322282542],[-114.54169541569735,31.71814583515726],[-114.53326319336179,31.712637939969113],[-114.53194112180859,31.709340108749814],[-114.52761632465763,31.707451213816398],[-114.52883778952514,31.705245872553917],[-114.52712557125471,31.702059763076818],[-114.51912111081214,31.699162472367448],[-114.51213881675324,31.6973268559733],[-114.50667479405632,31.693858233295998],[-114.50522474971558,31.69082299410468],[-114.50627214604026,31.68996377750102],[-114.50911273702962,31.69143366588804],[-114.51272122496971,31.69452278607895],[-114.51412314998686,31.693632151488316],[-114.50874451046661,31.687669175731628],[-114.50026204498323,31.68275041139958],[-114.49668656495362,31.682045776483676],[-114.49454278728251,31.680058389367616],[-114.49423733629595,31.67759201846758],[-114.49174339655491,31.67567893950354],[-114.48401949208181,31.674150980006118],[-114.47717796063415,31.672323393975205],[-114.46449356509771,31.66983783141586],[-114.46011682225662,31.667686005112216],[-114.44985935890787,31.65930157844815],[-114.4491178014145,31.6574589646998],[-114.45120060707433,31.65658670857931],[-114.44887187559078,31.651970683716],[-114.44828317532449,31.648975386859263],[-114.43886804938984,31.647608484798184],[-114.43230553896171,31.64581802054488],[-114.42658820397901,31.643536562461804],[-114.4193259149622,31.639869710132132],[-114.41295148382022,31.635611209519027],[-114.41540350334827,31.635694750127925],[-114.40843906991915,31.63274413824672],[-114.39433477271547,31.628979679610154],[-114.39011235249978,31.62709947828523],[-114.38811862606968,31.62479091900633],[-114.36696193697321,31.61441560727519],[-114.3658887639204,31.613174966932377],[-114.36099720586196,31.61121233784837],[-114.35580252819642,31.607381663375463],[-114.34847002141584,31.604995668198058],[-114.34860305935047,31.60449072803334],[-114.33791844586415,31.600415452667846],[-114.32800616269617,31.594183664875175],[-114.32477585421742,31.58994849485265],[-114.32573388521257,31.585997391981152],[-114.3272703294374,31.59283930181499],[-114.32812528033503,31.593865727920218],[-114.3273002518348,31.587618619331522],[-114.32597949506965,31.584799551919673],[-114.32806442651741,31.586366955575954],[-114.32771989683175,31.584221241108708],[-114.32342169741241,31.581105730206616],[-114.31786167830313,31.578598255629345],[-114.30997889563753,31.57234781723173],[-114.30654639916168,31.567909277618526],[-114.30379906170589,31.565786679096902],[-114.30002841494172,31.561435802280016],[-114.29212632053759,31.556808321543997],[-114.28741280997792,31.55295138710443],[-114.28133431004568,31.549809873331014],[-114.279071196296,31.54739246064804],[-114.27418898388328,31.545291479769503],[-114.27147568466563,31.54340587775971],[-114.26245271418503,31.541019387204983],[-114.25632548616755,31.53824799593616],[-114.24327463988061,31.534277943412462],[-114.23466706659445,31.531181255131003],[-114.22639445751508,31.52749117544937],[-114.21924361292184,31.52330818072437],[-114.21550151138041,31.52018062178098],[-114.20667687786829,31.5138282276194],[-114.1908393385612,31.506870606568157],[-114.18858336780448,31.506794723958308],[-114.18595643186052,31.505148800942266],[-114.18027356420413,31.503768862598577],[-114.1742395592355,31.5006228995494],[-114.16923297354487,31.498833785226793],[-114.16286595920252,31.49725843430025],[-114.15701119175122,31.496426543095254],[-114.15356007315665,31.495068108415524],[-114.14767087555697,31.494204512668944],[-114.13554325977236,31.493472613670292],[-114.11295600456447,31.493334614926994],[-114.10210357728477,31.493974104239555],[-114.09590855496299,31.493803057498155],[-114.07326635454245,31.49432629539649],[-114.0586620176681,31.4930147540303],[-114.05022374149371,31.491159683455464],[-114.04194773047976,31.49145675818511],[-114.03360000005233,31.490999999961332],[-114.02550000005164,31.492799999962642],[-114.02400000005144,31.494199999962802],[-114.02300000005141,31.49779999996298],[-114.0254748541542,31.50173874690489],[-114.02250000005131,31.50789999996323],[-114.02203192164507,31.511537238656956],[-114.0196463252372,31.515603211114865],[-114.01860000005098,31.521299999963844],[-114.02367307206026,31.521515700153316],[-114.02182817988472,31.527450033123046],[-114.02015835190139,31.53002497477388],[-114.01668458810883,31.532487487301296],[-114.01124634211982,31.529727345775825],[-114.01110952365997,31.527553821595973],[-114.00621511491192,31.52378749952379],[-113.99698259197163,31.525779798256906],[-113.98702915897286,31.5295306315586],[-113.98140000004753,31.534799999959432],[-113.98153667036792,31.537491880723792],[-113.97789314015802,31.53985034637998],[-113.97743997275813,31.542123259527102],[-113.9811326713637,31.543673125235728],[-113.98131450701453,31.54539298454847],[-113.97828991761958,31.549394265809326],[-113.9700642583689,31.55586863988566],[-113.96314921159092,31.559949980290128],[-113.95620000004533,31.562399999962963],[-113.961111036597,31.5642672373026],[-113.96147385508539,31.565343521640557],[-113.95840000004546,31.566899999962573],[-113.95970000004564,31.567599999962454],[-113.96120000004578,31.572399999962386],[-113.96040000004564,31.574999999962415],[-113.96150000004582,31.576899999962393],[-113.96810000004638,31.57869999996143],[-113.97370000004679,31.57829999996062],[-113.97430000004698,31.584299999960592],[-113.97270000004676,31.585499999960916],[-113.97470000004694,31.588899999960688],[-113.97460000004696,31.591999999960706],[-113.97210000004674,31.594299999961095],[-113.97150000004666,31.598499999961177],[-113.97250000004681,31.601599999960968],[-113.9766000000472,31.607499999960623],[-113.97820000004725,31.613099999960355],[-113.97830000004728,31.618799999960345],[-113.98069733712163,31.625538886369043],[-113.97941098593003,31.631428722911437],[-113.96543640790503,31.62838708014857],[-113.96477403303908,31.625643488878325],[-113.96128563140059,31.62356510384535],[-113.95990784091595,31.617047219884796],[-113.95479086940759,31.61389792859427],[-113.95364119915098,31.612309962743893],[-113.94960923657675,31.610041632023467],[-113.94370000004432,31.608899999964763],[-113.94240000004413,31.607099999964817],[-113.93440000004352,31.603099999965877],[-113.93030000004313,31.601899999966406],[-113.92480000004275,31.60169999996691],[-113.92000000004231,31.598299999967537],[-113.91620000004207,31.598999999968044],[-113.91426676574878,31.60448473699512],[-113.89754969066672,31.60685512016323],[-113.87781919865921,31.59818536097606],[-113.87696852116534,31.591831985298256],[-113.87335291750895,31.588713198545634],[-113.86957890178326,31.587594811411634],[-113.86668624800478,31.589625724199095],[-113.86104344303669,31.59203289061145],[-113.85621965802227,31.59511635810145],[-113.85247933233768,31.595398690072102],[-113.84142673643191,31.584204557191697],[-113.82276571528337,31.573749279978813],[-113.81819948785369,31.570915032556798],[-113.81007498694379,31.566995781585035],[-113.80418643122727,31.565063665001503],[-113.79598314224279,31.564590047879108],[-113.78981238389821,31.565451537299168],[-113.78805879126907,31.566347759198038],[-113.77666669733287,31.56453966773745],[-113.77863616128604,31.560343521251525],[-113.77283980883016,31.55739167397968],[-113.76811804415297,31.558412709618835],[-113.76482883151834,31.55597175779434],[-113.76496257625541,31.552236030649624],[-113.76332790557314,31.55062302869311],[-113.75757097136807,31.548155951538263],[-113.74314258342508,31.54316643399477],[-113.71745475702068,31.53203081451261],[-113.71010865356754,31.528442591101225],[-113.70343286129179,31.525861051794493],[-113.6887514818552,31.51933848013624],[-113.67542335505942,31.512041462985167],[-113.66435609484887,31.50414324283281],[-113.657370060765,31.498155243540282],[-113.64851325122174,31.48937838776692],[-113.64383861360659,31.483706161686257],[-113.64031421336108,31.480508683843766],[-113.6380934564097,31.47732515546187],[-113.63357736601205,31.468195374698496],[-113.63309251053141,31.46067439584351],[-113.62926207676264,31.452283456946702],[-113.63121685773166,31.44491438721468],[-113.63603310099995,31.439130400072315],[-113.63707381295495,31.435360115650553],[-113.63580871469804,31.4298202676448],[-113.63128489038621,31.42072187006528],[-113.62182544226795,31.405046177817553],[-113.6166402938432,31.39195885602203],[-113.61794591232132,31.38947506342413],[-113.6148551393506,31.38397087379883],[-113.61215660835126,31.377959481204982],[-113.61272547842168,31.37508375018615],[-113.61454544206464,31.37517062250953],[-113.61509095587843,31.37283013869103],[-113.61260598226016,31.372608732302524],[-113.61054218286745,31.370120027424605],[-113.60919535088692,31.364587935573354],[-113.60884012376499,31.359896001844163],[-113.60942138963742,31.35478924524398],[-113.61129568145702,31.3469440165444],[-113.6112638177807,31.343864621205682],[-113.61830643016418,31.34009636604054],[-113.62424886652877,31.34093314316266],[-113.62691486741409,31.33963479851451],[-113.63074385939223,31.340664866163422],[-113.63366775787296,31.343808279122356],[-113.63729782068947,31.34610766858765],[-113.6438598542967,31.34291818554749],[-113.63596522338662,31.337775550985043],[-113.63640772990516,31.33580948978215],[-113.63470058031282,31.335639525152544],[-113.63029231478936,31.333088240067127],[-113.6281828744577,31.330295230733668],[-113.62237150178458,31.3269512624168],[-113.61350951509672,31.325777843184085],[-113.60831975858304,31.32636904373163],[-113.60190561158032,31.326074481250373],[-113.57917077895246,31.322989747843565],[-113.56627403105318,31.320389225320014],[-113.55460380506582,31.316168737984754],[-113.55067722698658,31.313505031525267],[-113.54877192629561,31.311297391572964],[-113.54905139787871,31.306961990133914],[-113.54625258879719,31.305861989602363],[-113.54535629109711,31.308414153184515],[-113.54370466244086,31.308451087020558],[-113.54342564580503,31.30413049189781],[-113.54588986481616,31.303814738518327],[-113.55156360052314,31.305739822834994],[-113.55264404593021,31.303777534296387],[-113.54987497697113,31.29950911395531],[-113.54536321260713,31.296317534217167],[-113.53725315524423,31.296104406401525],[-113.51688982774044,31.29253761117775],[-113.50315111224825,31.290625650420736],[-113.47853093847675,31.286536183416388],[-113.46474839068185,31.283933168622468],[-113.44486768842006,31.28080459529849],[-113.44168908584692,31.28117889929149],[-113.43775235430377,31.283867729433837],[-113.43214285804657,31.284001198869703],[-113.43032740360053,31.279700517046024],[-113.42774684751515,31.278177276485167],[-113.41940497631293,31.275686681292825],[-113.38850313154012,31.27159000526865],[-113.36808445431518,31.26809135376186],[-113.35362215162621,31.265092799669333],[-113.32288720319042,31.257929700683746],[-113.31643587555902,31.255619902264925],[-113.29967313540004,31.251953625889428],[-113.27591894065563,31.24618229411675],[-113.25511016902317,31.240536649667035],[-113.2523298012959,31.240813477548897],[-113.2449353387396,31.24003572411874],[-113.22577065226562,31.23921391874228],[-113.22087701774234,31.24122866180494],[-113.20715352085614,31.24052853618457],[-113.20630232900669,31.236122663222773],[-113.20246094918457,31.23135398994964],[-113.18907955800915,31.22276068269224],[-113.16276494637623,31.210922469800664],[-113.15672424168702,31.207397026974093],[-113.14261573764242,31.201335407415968],[-113.13403722392206,31.197935585203936],[-113.12040180079288,31.191667524689592],[-113.11843933034208,31.192832180991502],[-113.11629356838438,31.196426994936644],[-113.11645507124064,31.20158973372304],[-113.11027362996231,31.199616187301444],[-113.10150925559623,31.189443840130252],[-113.09847941763849,31.1809463163724],[-113.09818995484403,31.17478421890064],[-113.09522627348832,31.1679932634637],[-113.09267708703703,31.16354463613959],[-113.08955089642222,31.15567033234089],[-113.08465447564436,31.153719586568172],[-113.07750767685803,31.151666894477728],[-113.08075728253425,31.147904432123426],[-113.07982323541796,31.141674819873572],[-113.08095658655316,31.138812366517982],[-113.07800963710349,31.134504469344392],[-113.07419648486501,31.120248015001664],[-113.07228472151189,31.109146093044615],[-113.06883219981808,31.094562346862404],[-113.06668032711497,31.089839682588888],[-113.06548939010435,31.085323383879654],[-113.06254522949695,31.080518121641546],[-113.05895567876217,31.0723498901761],[-113.05883106784847,31.060480954486934],[-113.06006434447391,31.056754696645783],[-113.0598210209186,31.051396777736898],[-113.06052154102173,31.045820715649427],[-113.06181382219796,31.04410860756036],[-113.06062885963439,31.042589712178426],[-113.06186763260189,31.039907075302096],[-113.06204837009983,31.03343616382466],[-113.06835743890332,31.02428169960831],[-113.07737190915714,31.01532633791254],[-113.08480125534862,31.01251221963014],[-113.09024498552725,31.004977850171485],[-113.09194231504677,30.99526766764575],[-113.09431479071623,30.997026493900307],[-113.0975649621443,31.001396421829497],[-113.09938598693225,31.009462876006694],[-113.10404101249316,31.01292762497917],[-113.10297383020998,31.015743201319424],[-113.10734034078001,31.017230460996984],[-113.11176495992913,31.025628851181352],[-113.11751299671505,31.035714089604767],[-113.12149061518056,31.04680543921296],[-113.11790000000695,31.06010000000458],[-113.12060000000707,31.064700000004507],[-113.12594433532729,31.063161002395134],[-113.12841145033968,31.05890878670249],[-113.12691651952764,31.052878100414034],[-113.12454859206554,31.04580509279498],[-113.11382964694764,31.022668892285935],[-113.11073200816776,31.015251698821885],[-113.10684763517088,31.004071974706733],[-113.10062901069898,30.98969643787416],[-113.09940326515533,30.98598197595902],[-113.0976470343636,30.977672428911603],[-113.09760084376853,30.973227931156373],[-113.09645501154034,30.9700478681479],[-113.09736338705494,30.964248968926086],[-113.0968281860558,30.95876915558415],[-113.09682942609089,30.951314262394817],[-113.09746246596546,30.92612029456501],[-113.09804654072497,30.915324784435256],[-113.10089677934724,30.89185142421735],[-113.10277236188648,30.882222624223573],[-113.10460517799078,30.875677837861303],[-113.10606854008057,30.86766077358999],[-113.10907541695474,30.856795448581067],[-113.11147291518296,30.843660625875316],[-113.11513722747503,30.832493687204305],[-113.11779288114133,30.827539914522447],[-113.12574144766631,30.818292871984],[-113.12687623589932,30.81573822410644],[-113.12683299125393,30.810476776533676],[-113.11897444609605,30.794972078027968],[-113.11353899797484,30.781579228706676],[-113.10478534258351,30.757717703416972],[-113.10202798595714,30.74723296781582],[-113.0969046581933,30.718814002749127],[-113.09423421600769,30.707368660489408],[-113.09202380449477,30.699699744239638],[-113.08808691176836,30.68801625744112],[-113.08381668804867,30.678231758650043],[-113.07778745752512,30.667445595955826],[-113.07074444414826,30.656579935727734],[-113.06748919958682,30.652041086310703],[-113.06320551852167,30.6450153268936],[-113.05205342259865,30.627600921614942],[-113.04523348017517,30.61576373124052],[-113.03976171681876,30.607199797397755],[-113.03274417573084,30.598338073383047],[-113.02328039199665,30.585266019325218],[-113.01918871766128,30.580391408438686],[-113.00513111970298,30.561206230105938],[-112.99623340693796,30.547440511142497],[-112.98763142890084,30.536085793092752],[-112.98440912942254,30.534872160677935],[-112.98256442487389,30.537885033032353],[-112.97990048613906,30.539448695963245],[-112.98082709206142,30.535731806447245],[-112.9797168198732,30.5320393519234],[-112.97489216409696,30.529161495835922],[-112.97021128361973,30.525251461056996],[-112.96388615052757,30.52075606698844],[-112.94466193195944,30.504964125508593],[-112.93337783590755,30.494539396617256],[-112.91469135509578,30.475913569460772],[-112.90730944661368,30.469465955439375],[-112.89908953373453,30.46140315202814],[-112.89268262631845,30.45108026338238],[-112.88714110383631,30.44604940526176],[-112.87620203786958,30.432729372596953],[-112.871669205513,30.426091258063366],[-112.86463023908311,30.41391546723304],[-112.86173706074283,30.407984341845918],[-112.85753887915689,30.398028128462613],[-112.85308351392547,30.3844798610686],[-112.8494253957665,30.369408860571923],[-112.8478602085251,30.35909154369233],[-112.84669994341613,30.34867474214286],[-112.84598137839265,30.330161867305435],[-112.84622715685691,30.317576934678243],[-112.84686598189802,30.306202412270522],[-112.84820027152057,30.296389889177988],[-112.85109570966625,30.284694667857877],[-112.8533506783391,30.278593874232058],[-112.85800017204008,30.271925973607495],[-112.8616898507338,30.269304703600596],[-112.85774752953307,30.266374445641304],[-112.85793693067615,30.264637795220153],[-112.85414048105059,30.266529152371902],[-112.85399020751771,30.268635056455764],[-112.84773180412918,30.271026722841555],[-112.83900866984123,30.270935885001222],[-112.82766825920578,30.26837044446671],[-112.82383248306996,30.267026516984345],[-112.81821462994395,30.264084748679863],[-112.80716170530508,30.256672730739638],[-112.7949001436125,30.245815003598068],[-112.78893898577019,30.23859454444215],[-112.78674099140983,30.236893665686978],[-112.77587134690026,30.225725559537977],[-112.7700098642519,30.217323410720383],[-112.76653244407748,30.211014555689076],[-112.76577090853459,30.20787558784201],[-112.76183379073126,30.20271019912883],[-112.76031575201154,30.199335078278978],[-112.7559098785976,30.186823557253717],[-112.75390093494076,30.17782704309076],[-112.7526538254017,30.167957466689984],[-112.7524979751147,30.150780529804194],[-112.75407416808059,30.131044978729733],[-112.75433022657171,30.12461915568076],[-112.75333241233693,30.122545208345514],[-112.75366733674355,30.11426991881808],[-112.75613867459407,30.096604130706453],[-112.76026396112496,30.081818243632995],[-112.76191785192111,30.068640472317384],[-112.76147475547543,30.062359074140147],[-112.76035151039235,30.05733314872441],[-112.75689634679634,30.052017293879032],[-112.7515662411065,30.046086296103454],[-112.74970863964757,30.04126267281032],[-112.74650231050873,30.039539334416702],[-112.74448410647204,30.03606630664234],[-112.74338168903904,30.02850544712078],[-112.74210120535207,30.02707754420379],[-112.74135700260189,30.02252797898467],[-112.73992503250997,30.020877282582887],[-112.73824242554048,30.015861200750862],[-112.73778766213655,30.01095459757306],[-112.73817737843598,30.0057799574318],[-112.73372369551805,30.002306756136136],[-112.73310210844477,30.00055258429211],[-112.73340661442296,29.992585612065966],[-112.7343440205064,29.9849313961505],[-112.74078452477232,29.966357463714303],[-112.7420125227469,29.96059375493934],[-112.74209123049087,29.95664334595824],[-112.74119121943824,29.953701230401748],[-112.74162187158169,29.950841135699363],[-112.73835446381008,29.943306606254907],[-112.74104122758825,29.93412171637266],[-112.74394414081382,29.927115709257748],[-112.74736143012979,29.92212568185505],[-112.74780867701554,29.916641181480884],[-112.74647204707554,29.914025970786838],[-112.74228603753352,29.908751262813837],[-112.7385692883015,29.90557430665666],[-112.73330107467535,29.903781329629],[-112.72851388931855,29.903148523310904],[-112.7259370177216,29.903834149229453],[-112.71710301521273,29.909255097471544],[-112.7134551076075,29.910543699665027],[-112.70775253990536,29.910754094045217],[-112.7028476476055,29.90936592120329],[-112.69511692745596,29.90574344698365],[-112.69090319776507,29.901800260444077],[-112.69068228450203,29.90370904577759],[-112.68803946493847,29.905025592979143],[-112.6825874691578,29.90401014376306],[-112.6777537046691,29.901838372248278],[-112.67373308158932,29.899315454362977],[-112.66937299589875,29.895624806963212],[-112.66264311038066,29.887875049658362],[-112.65629660119401,29.877360981016864],[-112.65245894820089,29.868517295808317],[-112.65025576191874,29.86009993003239],[-112.64973760216373,29.84880490158065],[-112.65038570212738,29.83873605333605],[-112.65179935201962,29.834682681912113],[-112.64960676127225,29.83355956622671],[-112.64982294710427,29.831958339660446],[-112.64760672975581,29.82817907520456],[-112.64430032246264,29.82569385460954],[-112.64175196179644,29.81934317054703],[-112.63946901295083,29.81931934759467],[-112.63836478013599,29.81653348000492],[-112.63487718248581,29.81579440358422],[-112.62914612845304,29.810053218877044],[-112.62920149836856,29.80414041941276],[-112.62832481713417,29.802319957552243],[-112.62520396312198,29.80154120802638],[-112.62346753198034,29.797079904917382],[-112.61984042001137,29.795066982760943],[-112.61436668123002,29.787727038668777],[-112.61279430242871,29.787170179436316],[-112.60599499338014,29.77893629981054],[-112.60611664051021,29.77553079869972],[-112.60384965686973,29.771448424499624],[-112.60488895921117,29.76755262077768],[-112.60265702132307,29.763854828923115],[-112.59990553616603,29.76221838476056],[-112.59962351855398,29.754421501730462],[-112.59569617463842,29.752927608617085],[-112.59608084027934,29.751638536702615],[-112.59275723314443,29.74872438424552],[-112.58977058569843,29.74381521726292],[-112.58992749801729,29.741695824330122],[-112.58770318782092,29.741142722595214],[-112.58632879572485,29.738044439169983],[-112.58596973279828,29.72935950259921],[-112.58465249978423,29.72515280135798],[-112.5832248214104,29.724728606291876],[-112.58309726283642,29.720791353753157],[-112.58158889670591,29.71711087750259],[-112.58062285006457,29.71181439050605],[-112.57400084685548,29.707168774011393],[-112.57271012498165,29.70504210065309],[-112.57000035773285,29.704420888065727],[-112.56574382692088,29.700519543584505],[-112.55923593350389,29.69598382492501],[-112.5522362122943,29.697084023663876],[-112.54408991739672,29.690001926230025],[-112.5421487472139,29.68679120320229],[-112.53858449402833,29.68359698118104],[-112.53680988035723,29.67697144993508],[-112.53284366092129,29.671705556423774],[-112.52970660638857,29.668650242676563],[-112.5270990973554,29.667514414906577],[-112.52490643185382,29.66190765577619],[-112.52329540445157,29.65964477973],[-112.5226698462593,29.655043584539612],[-112.52317133735664,29.65121254242888],[-112.52184625489326,29.647850626188017],[-112.51871211828285,29.64544346273192],[-112.5164528878309,29.64092613670914],[-112.513934746406,29.638932546195292],[-112.50843498094594,29.630863648283878],[-112.50705711864367,29.621346731642802],[-112.504779600402,29.61906050166698],[-112.49531085301123,29.615442558726215],[-112.49221757015033,29.608702902971118],[-112.48343596255842,29.60269060753876],[-112.47943646004353,29.595684098570757],[-112.47746108236566,29.59133879396711],[-112.47570520247103,29.5894315677221],[-112.46697820667606,29.585995917286652],[-112.46221631040532,29.582130707775264],[-112.46085295442646,29.5819209340537],[-112.45183210900444,29.57222646904762],[-112.44509626018748,29.569056545712613],[-112.43541435169584,29.559207534177915],[-112.43173661551072,29.553852235537477],[-112.42828803351284,29.546471236576622],[-112.43008949734872,29.535663640553537],[-112.43113201489433,29.534014636963718],[-112.42796065282437,29.52871941690995],[-112.42929242633522,29.521511737954086],[-112.42882765714376,29.51981473644321],[-112.42088814317844,29.51434423096879],[-112.41935060997076,29.5112061489005],[-112.41623009745865,29.51076692435396],[-112.4124919842809,29.5061502458542],[-112.40858538836852,29.50526038998288],[-112.40204296670197,29.502375104525754],[-112.39491811907703,29.50296284018873],[-112.38957342732192,29.49985331146769],[-112.38683150263273,29.49681839288047],[-112.38083299028085,29.486862028574308],[-112.37825214685262,29.48072296185194],[-112.37784715705101,29.475557773178707],[-112.37809970026535,29.467077111129868],[-112.3793225335553,29.45974247581637],[-112.38069209094374,29.45462238310438],[-112.38532771232951,29.44176078131352],[-112.39328374128542,29.423919160707385],[-112.39661792874773,29.41746164509908],[-112.40671140787697,29.400304353560102],[-112.41443774020183,29.38843676046571],[-112.4177584013189,29.38429331787421],[-112.42098829108005,29.374612833695664],[-112.41712356683314,29.37055769220001],[-112.41708131681924,29.367507316614137],[-112.41438953379725,29.363874889334966],[-112.41461775958646,29.359151697898994],[-112.41270401807265,29.349936012459693],[-112.40965335403803,29.344321786143837],[-112.40699217306963,29.34259386338624],[-112.40279108054182,29.33735819142339],[-112.39452239110398,29.332606753943708],[-112.38604678638973,29.32963578065585],[-112.38342003701803,29.329131253978517],[-112.37481806184559,29.326121598645386],[-112.3689589051678,29.325829073822547],[-112.36699788078636,29.32453246580303],[-112.36131084215958,29.324333677012078],[-112.35754461077204,29.32206719654937],[-112.35408732987747,29.3216452970687],[-112.35182858299265,29.319998232101796],[-112.34290309899791,29.30406523588482],[-112.34116445983273,29.30289447014752],[-112.33747035561163,29.29267239884325],[-112.33430000000061,29.291899999996872],[-112.33380000000062,29.293999999996856],[-112.33580000000057,29.295399999996903],[-112.33764288299602,29.300361140647396],[-112.340309970497,29.303534761707567],[-112.34141430683849,29.30946178328685],[-112.34624775239269,29.3135612075086],[-112.34084609960178,29.318138882386165],[-112.33377716868443,29.320648757099946],[-112.33202417779216,29.320553085742176],[-112.3184578182445,29.32593349893415],[-112.30844432240872,29.328697587411],[-112.3009858762972,29.32999663067858],[-112.28627431310031,29.332026721682723],[-112.27613417451437,29.33170117213467],[-112.26952157918993,29.330832889606995],[-112.26330616814931,29.32944669650732],[-112.25605031719084,29.32694595329218],[-112.24932647352932,29.322930403359408],[-112.24134302789884,29.317303292733243],[-112.23819899954799,29.314226166904234],[-112.23315909658174,29.307648149517263],[-112.22968728636198,29.30029714950217],[-112.22487523972893,29.28823458512602],[-112.21583413193218,29.27396142897004],[-112.21055348972004,29.259139989372443],[-112.21057096142926,29.25419625160663],[-112.20904171066888,29.245699365258815],[-112.20928390640148,29.238246266592625],[-112.21289437347701,29.22395472439831],[-112.21663588308883,29.21403050344111],[-112.21674884853843,29.208088005160107],[-112.21859960548232,29.203510680237798],[-112.22243394151457,29.19678823149917],[-112.22626365287664,29.19110705522536],[-112.22590000000031,29.18889999999061],[-112.22831414797167,29.18491652350542],[-112.2300028474653,29.179847542646883],[-112.22637751608733,29.1771686823368],[-112.21869644130754,29.179115710054703],[-112.20821982137551,29.17941731636813],[-112.20285756113549,29.178700017409597],[-112.19959879894884,29.176403631294875],[-112.19856898545044,29.174109351027766],[-112.19429267415518,29.169382503344366],[-112.19480335206708,29.163567671825547],[-112.20015412786313,29.157959971638093],[-112.19957850325926,29.156757944589742],[-112.1898274028801,29.15449797814341],[-112.18443451514747,29.152460816898383],[-112.18158262606613,29.146074892109027],[-112.17617001278501,29.138290149507725],[-112.17198573621789,29.13087572003542],[-112.17221292236434,29.129046766635497],[-112.17062434638024,29.1245321915182],[-112.16513765884412,29.114872349992936],[-112.16516607237361,29.113163915196424],[-112.16770984848381,29.10707654108461],[-112.17031972881182,29.102217015370513],[-112.17847517012655,29.089296280358667],[-112.18250737460511,29.083327307157106],[-112.18215516302479,29.08090485771089],[-112.18763194667707,29.07332773203734],[-112.18020482509053,29.07580490890257],[-112.17592272029356,29.07570375546652],[-112.1725066262855,29.07449248982232],[-112.1708003687761,29.07256786003768],[-112.17086901776702,29.068509948359008],[-112.1687116501987,29.06144196863079],[-112.16989735633331,29.05498757219641],[-112.17225792396573,29.048384066412268],[-112.17043112495185,29.044028002338905],[-112.16683812230872,29.039886397801183],[-112.16610746161632,29.03398447814118],[-112.16806588623172,29.028048123965448],[-112.16785027560866,29.02470508585634],[-112.16383055240749,29.016759263330187],[-112.1646996348939,29.01381769759803],[-112.1609032064759,29.0129807291554],[-112.15827514696701,29.01014737104782],[-112.15784244525167,29.008088582117693],[-112.15423642575882,29.003799606357006],[-112.15046589867893,28.994230099831896],[-112.15039737673817,28.98860112143899],[-112.15319914976732,28.98438432530287],[-112.15759291493464,28.98113745371154],[-112.16316535221279,28.978257559434383],[-112.16772324730312,28.975237624301997],[-112.16940000000022,28.9727999999875],[-112.17140000000023,28.97289999998742],[-112.17324267663571,28.97117403633422],[-112.17226752373932,28.968966431009164],[-112.1680222611065,28.965213503650943],[-112.15883614046226,28.962249553263973],[-112.15038653201964,28.96158336976646],[-112.13052368220013,28.962588628718606],[-112.11849117369519,28.96178991925666],[-112.10937198865628,28.960002589812404],[-112.1070552498021,28.95753285646549],[-112.1024252440996,28.955585133318834],[-112.09679671731578,28.951610817361257],[-112.09363719653368,28.94516822984548],[-112.09384097729378,28.94232477935867],[-112.09170062295067,28.94035130225501],[-112.09154310916779,28.936443725034962],[-112.08760081176422,28.932644031954965],[-112.08736506004607,28.930214251623568],[-112.0852523442955,28.92816644891127],[-112.08606195413216,28.925347006824154],[-112.0835530001417,28.92498418884037],[-112.07997456563015,28.92164052064311],[-112.07513904131577,28.920362374955516],[-112.07098702931171,28.916420245892823],[-112.07017290337632,28.913167486081136],[-112.0616845687295,28.91067395639135],[-112.05775615289457,28.90636368163166],[-112.05320524325867,28.904528299324227],[-112.04779865060556,28.899284283100087],[-112.04721415413582,28.89597083236322],[-112.04849839881444,28.89351483365658],[-112.05170280763974,28.891280401539007],[-112.05170802685637,28.889650823628017],[-112.04961755285683,28.88757639887018],[-112.04985161910776,28.885796969905982],[-112.04470921681809,28.88500156395918],[-112.04096144673122,28.882873079947956],[-112.03452569835173,28.880279426346704],[-112.03256967917974,28.875290144122175],[-112.03399711024173,28.87269682433947],[-112.03114722132841,28.869985846505926],[-112.03116838076556,28.866526112456143],[-112.0323994537469,28.86382742172748],[-112.0309941938022,28.859199163119285],[-112.02803679144569,28.85929377964635],[-112.01305339209006,28.85659780729077],[-111.99686854569256,28.85286377008009],[-111.9825011250598,28.848262624112067],[-111.9745606720735,28.844610655055817],[-111.96744077930913,28.840624667017323],[-111.9616880060297,28.83637565589663],[-111.95757181125185,28.83200179991809],[-111.95325005925758,28.826059594153833],[-111.95062043578713,28.824065017720557],[-111.9441269943377,28.8218482461171],[-111.9396361100591,28.81958329372935],[-111.93357801888914,28.8142729842682],[-111.92482583728872,28.80430044421206],[-111.92190470336709,28.79999737613508],[-111.91878385261293,28.79365896097562],[-111.91463000444588,28.79015399586814],[-111.90100000000001,28.7869999999848],[-111.90891385186876,28.779727880960365],[-111.91201556500647,28.775595648300623],[-111.91842891113174,28.7688460986181],[-111.92165430573948,28.766415153832554],[-111.92569166959589,28.76507064632915],[-111.93047414111896,28.761376139667675],[-111.93602989208517,28.762622551636696],[-111.94194371388988,28.761785682106222],[-111.94480442207089,28.76350017083712],[-111.94710817056853,28.760079362728504],[-111.95018380501159,28.757327588302246],[-111.94598002202241,28.752282176926997],[-111.93989401870783,28.748791465464706],[-111.93789413514287,28.74585675672256],[-111.93309033042806,28.742415143039068],[-111.9320605313647,28.739963920045625],[-111.9334116890168,28.73828344685228],[-111.92999272689963,28.7360034810431],[-111.92527993694694,28.730976810436232],[-111.92414617133267,28.726897257616372],[-111.92504366972747,28.72496530257689],[-111.92344939804002,28.722572582332532],[-111.92552681278272,28.719034825924894],[-111.92012375051428,28.716847085095708],[-111.91357546793847,28.713247192062397],[-111.90815412120054,28.709381384724168],[-111.90620791236466,28.70529221992274],[-111.90801208856396,28.702949822765618],[-111.8984721370345,28.698059824827112],[-111.89074325738954,28.69343818068222],[-111.8843352775421,28.688826969376294],[-111.87988375848084,28.683180118713665],[-111.87904670159821,28.680689684452375],[-111.86899851183608,28.6714404140846],[-111.8574837721751,28.662571900694104],[-111.84581966997223,28.6549250184529],[-111.82807427546555,28.644480408837865],[-111.80880648896652,28.633591836959567],[-111.79700314188699,28.62635190022411],[-111.78861433318514,28.62020160214263],[-111.78637331956105,28.617677054146213],[-111.78135402263968,28.61381942394729],[-111.77573734743885,28.60867226206659],[-111.76475287377667,28.59263019410048],[-111.76286158802878,28.587724684682257],[-111.76081690843807,28.57799537590671],[-111.7531284989347,28.56580381374937],[-111.7511739512629,28.55827053710476],[-111.74780182051336,28.54846526364082],[-111.74496593397788,28.543441655186484],[-111.74106533178792,28.535227793219008],[-111.73980281247606,28.529167874233167],[-111.73697087155108,28.521375565077562],[-111.72945487938335,28.51522229249258],[-111.72518103101612,28.5100686005037],[-111.72270027072591,28.505681782714305],[-111.71762211654561,28.498295793478235],[-111.71358672767872,28.489387947840783],[-111.71194749085413,28.483678825926518],[-111.71136761372702,28.47816843555961],[-111.71097585902965,28.463313361086875],[-111.71226859978054,28.458987768318252],[-111.70089977388949,28.45500140650978],[-111.6872216985073,28.451967801606543],[-111.66883878944373,28.448438125267728],[-111.65161648780548,28.44537369099197],[-111.6445136904536,28.443526255141137],[-111.64010169433743,28.44165184785146],[-111.62406128457843,28.433516402204532],[-111.61141388557724,28.428614596825355],[-111.60276951714559,28.42488947038055],[-111.59478063284394,28.42066411742269],[-111.58749283399226,28.417868955150198],[-111.58191683182827,28.415105398639298],[-111.56989851168066,28.411462092246893],[-111.56153859430088,28.409716085770583],[-111.5380134389303,28.404284194515753],[-111.52818144688297,28.401110372213907],[-111.51616008585017,28.396059709567908],[-111.50501960384997,28.392632168291527],[-111.49966702731325,28.389797030863576],[-111.49201600170676,28.38705819488746],[-111.48125863897383,28.380959630341124],[-111.47313835176146,28.375600890326723],[-111.46510328371232,28.368898236759094],[-111.46211530293937,28.36550666930657],[-111.45886538905097,28.360516611395894],[-111.45664595451564,28.354277022416852],[-111.45765471737582,28.344259955989344],[-111.4600041984026,28.34133122602981],[-111.46189805964468,28.341675554043377],[-111.45974639010632,28.338524720396038],[-111.45898452297274,28.335164917645557],[-111.45443185635725,28.329092997271403],[-111.45270798038638,28.324364527510966],[-111.45412848631753,28.322738748358574],[-111.45431294344854,28.319303372122477],[-111.45745088215801,28.31707648219208],[-111.45402108408928,28.313433214648796],[-111.45145693696264,28.3135397675307],[-111.44986998789904,28.310563551102007],[-111.45140963568161,28.307934206389916],[-111.44860707318605,28.30534905090127],[-111.4460931113469,28.306926299031943],[-111.44120058241566,28.304800707323636],[-111.44159829891885,28.30279945840681],[-111.43567016766923,28.299962055792605],[-111.43296270568965,28.294015864686003],[-111.42964369892195,28.294980386608813],[-111.42714850940825,28.294335200651517],[-111.42499563093071,28.291804137186375],[-111.42626657297609,28.289375348570445],[-111.42545392682615,28.28697543893003],[-111.42287893873993,28.28635105185481],[-111.41921717320372,28.287936413039404],[-111.41619363139597,28.28744141902456],[-111.41273022509233,28.284463830943537],[-111.41216151412476,28.282054180168984],[-111.41357681821887,28.28065155609363],[-111.40830524767063,28.275991388907414],[-111.40788653119307,28.273016454718856],[-111.40116034871352,28.27632966119262],[-111.3984379530242,28.27598269786597],[-111.39403699880313,28.274162324543624],[-111.39041253022197,28.270908721307023],[-111.38638203734945,28.26314114497643],[-111.38568473707903,28.256886550292847],[-111.38790054797096,28.255413030257102],[-111.38841524877381,28.248813149770342],[-111.38563662420694,28.247518763056974],[-111.38182898734124,28.24332834282268],[-111.38140026089826,28.245022854851527],[-111.37895058465159,28.244795062368496],[-111.3779805670722,28.241227086120205],[-111.3757863243502,28.240623441290268],[-111.37502572374831,28.236767090553883],[-111.37598801341414,28.235106056644725],[-111.37302103800698,28.233760795010028],[-111.37337430092316,28.23096502988875],[-111.3754971607579,28.228855037360518],[-111.37718182961612,28.2298536524537],[-111.37870199084358,28.226713966280613],[-111.37640783360928,28.225748460528962],[-111.3794262557409,28.223542917773443],[-111.37539672530488,28.221793206339726],[-111.37711060505848,28.21880252557662],[-111.37345714090054,28.217214011224712],[-111.36838244202562,28.220284065866167],[-111.3624783941815,28.21878348868688],[-111.3610140044492,28.220078845746002],[-111.3569964374392,28.218429965795167],[-111.35657914116263,28.216098977877834],[-111.35377370088554,28.21470087971187],[-111.35476162121893,28.21364304647932],[-111.34882181459892,28.213114847456836],[-111.34383843624556,28.20968352589165],[-111.34356298998466,28.207723355455187],[-111.34068833575151,28.203765825327082],[-111.34234628463423,28.2013363819309],[-111.33988562908115,28.201575644718957],[-111.33659124281826,28.1997410653795],[-111.33409865784427,28.195357426196495],[-111.3317034123856,28.18713647175821],[-111.33143111251678,28.181194106660826],[-111.33352309730515,28.178344238743136],[-111.33271968699148,28.176697682678707],[-111.33415497857663,28.172940757430126],[-111.33249027214941,28.171607497393666],[-111.33305585304379,28.169044132470844],[-111.33128172992639,28.16764096921753],[-111.33130991383041,28.16500669544064],[-111.32946148656958,28.16048457153704],[-111.3302536981879,28.15858732240804],[-111.32697462059758,28.158002854911956],[-111.32538198109836,28.156330181666192],[-111.32033930518617,28.154659534018947],[-111.31898222312111,28.152640641076346],[-111.32030492303966,28.15131893038574],[-111.3149747188802,28.14988499221522],[-111.31317040923585,28.14639400116488],[-111.31596393400042,28.142027286941243],[-111.31494534665876,28.14043846321391],[-111.31300737763962,28.140908440518444],[-111.3069162528272,28.139371250615227],[-111.30621539759335,28.136797587958938],[-111.30359479040999,28.13698350905537],[-111.30091155754803,28.13569765418697],[-111.30285135339795,28.133913050830472],[-111.30126065604196,28.131247454217373],[-111.29875434863663,28.13417745535753],[-111.29701139275824,28.13337812008382],[-111.2983903723374,28.131547117675836],[-111.29640313933874,28.130430075340428],[-111.29363507927809,28.13082870192227],[-111.2952173082428,28.129012844545286],[-111.29336047993098,28.126566742729608],[-111.29510477683249,28.12481795815131],[-111.29332060945029,28.122368170951006],[-111.29177268080895,28.122379599162457],[-111.2893287280566,28.11791040823988],[-111.29063716744275,28.11637150229302],[-111.28961034068112,28.114502036303918],[-111.28497758040999,28.11376392546032],[-111.28738229672865,28.10571012717071],[-111.28360384136192,28.104732419085053],[-111.28282799213963,28.10225664102228],[-111.28456904039712,28.100656623999043],[-111.28278599111803,28.099173660358474],[-111.28205264059568,28.094673190457343],[-111.28052595185574,28.093102204562058],[-111.28218123618996,28.090980392725214],[-111.28076436382952,28.089794683803802],[-111.27496763783904,28.091459316921714],[-111.27317722699189,28.090106051905025],[-111.27258184380958,28.087577602260524],[-111.27716404607185,28.085304505689635],[-111.2738965713383,28.083319305010775],[-111.2773739425325,28.082348573458944],[-111.277225478822,28.08099962436893],[-111.27267100416401,28.080151991444154],[-111.27272406789314,28.078342255816494],[-111.26953556905619,28.078830435938414],[-111.26459922816997,28.07607728739123],[-111.26555313076199,28.074632411949892],[-111.26229012697723,28.07425323217325],[-111.25985791068496,28.072683721572503],[-111.25978141212681,28.071013364480223],[-111.2565881836855,28.06944524724554],[-111.25636393790808,28.066586527831134],[-111.25791762335069,28.064591849497674],[-111.25491508807073,28.06606344685315],[-111.25471233151711,28.063735157633573],[-111.25255252175765,28.064055702538155],[-111.25109202794846,28.059400228759785],[-111.25191122184856,28.05766833061307],[-111.25549553652979,28.056216073359963],[-111.2550195841477,28.054160948112212],[-111.2513038913695,28.052268212559056],[-111.2478437604803,28.05391707423678],[-111.24796074295898,28.057514888623302],[-111.24618748416759,28.058610337295534],[-111.2425988520223,28.058231220823814],[-111.2394416296604,28.05627713149454],[-111.2377689061799,28.053677889790492],[-111.23961007961816,28.05052641813637],[-111.23633033010032,28.04775242700822],[-111.23228807641937,28.049575244001915],[-111.2280450925964,28.04804033687998],[-111.22220843594829,28.046797024777447],[-111.2112205890316,28.04145832986768],[-111.21081912963928,28.0399811791454],[-111.2067161507643,28.035521997618446],[-111.20667274144063,28.031763386639],[-111.20062967770917,28.026474024353604],[-111.19674806061437,28.02368472745559],[-111.197422036641,28.022728447297595],[-111.19113151497328,28.023050148015557],[-111.18837424653447,28.020805169509742],[-111.18768147844918,28.018236077681763],[-111.18389467775086,28.013501032945328],[-111.18235125203455,28.00597385073803],[-111.17628776198501,27.997179362574002],[-111.17570720072592,27.994520072985495],[-111.17078353431094,27.992284859167512],[-111.17014363403007,27.993978867924966],[-111.16681899163757,27.993340875571107],[-111.1656416530023,27.990055792834596],[-111.1615149853568,27.990313119478117],[-111.16075316431534,27.988616638126132],[-111.15880163070705,27.9891496185939],[-111.1578868608716,27.987625645867183],[-111.1502220166189,27.986902753706318],[-111.14802659509184,27.983866854350936],[-111.14732189072197,27.984817725313178],[-111.14159017209886,27.986098024108514],[-111.13584206838226,27.98400505593554],[-111.13268531442537,27.979092910770248],[-111.13434998011394,27.9781596410117],[-111.13134057559796,27.97511061124078],[-111.12696338185503,27.97893767560595],[-111.12428429478132,27.979582633210043],[-111.1193925007529,27.976920539550065],[-111.11670950157276,27.973903016987776],[-111.11485865736472,27.970113742567833],[-111.11448504269157,27.96549448654838],[-111.11228033001703,27.966142257135914],[-111.10838696468369,27.965578834513224],[-111.10276682446619,27.963431505107224],[-111.09761098671089,27.95950725065194],[-111.0951156842932,27.9543476081343],[-111.09413803053303,27.947075909971886],[-111.09597670484789,27.944947488596767],[-111.09854777635024,27.945748808264455],[-111.1042307013659,27.944812978491484],[-111.10107918392015,27.942759275366598],[-111.10498313267595,27.93674881347482],[-111.10012114863002,27.935844949235047],[-111.09603072963495,27.935976356831304],[-111.09393457121183,27.939897163734656],[-111.09205310347386,27.941054970375035],[-111.08872154983345,27.939739999823246],[-111.08990420715787,27.938088665856583],[-111.08514470487768,27.9391940481122],[-111.08217615568981,27.937569899951143],[-111.07713480234355,27.936148873779246],[-111.07398757437466,27.93923468410668],[-111.06979792526664,27.940126199641668],[-111.0675832344441,27.937341493796907],[-111.06679358110267,27.940641710812145],[-111.06491052999075,27.939614583844843],[-111.0633147825771,27.934603681165527],[-111.06208020544369,27.92792204809564],[-111.05965515512196,27.928147996213966],[-111.0605988404842,27.932741594944844],[-111.05815693888076,27.932313171115993],[-111.05792552098768,27.937586645050544],[-111.0542462214292,27.942151874695526],[-111.0510516367965,27.942873692069213],[-111.04858116305792,27.94095667881777],[-111.0509787346802,27.94465865640268],[-111.05033019385854,27.94946257240389],[-111.0480904696521,27.951049989457488],[-111.04434297433733,27.95197113545447],[-111.04248864587908,27.950950000058867],[-111.04070754758663,27.95348962779559],[-111.04113091963262,27.95614487103103],[-111.03994263594677,27.956921683343978],[-111.03363899421578,27.957945382549212],[-111.03072315657579,27.960566632438372],[-111.02398172091091,27.96288011147476],[-111.0122777123288,27.963699456355073],[-111.00456799278334,27.96347841097503],[-110.99877463272128,27.962707473861087],[-110.98773145817131,27.959847733630852],[-110.984002301862,27.958433814415343],[-110.97763476744285,27.953113727190043],[-110.97704457933798,27.949866262172236],[-110.97940960706597,27.94756191918418],[-110.97662282137077,27.94127121427607],[-110.97311986351286,27.93703030289771],[-110.9719627772331,27.931954168683262],[-110.96960351886344,27.927697312246494],[-110.96747824262621,27.928602468092947],[-110.96484850279046,27.926967508963457],[-110.96481606781418,27.925188106446],[-110.96115980545375,27.92650428505442],[-110.95956191498232,27.925560390115322],[-110.95427609360212,27.92593257632234],[-110.95112757108359,27.926893566793694],[-110.9490766072932,27.925850159393576],[-110.94612692470321,27.92008053142655],[-110.94613027896196,27.913312236289755],[-110.94767268532513,27.911448158939834],[-110.95017575763677,27.91160054095178],[-110.95540010771276,27.909102124762285],[-110.9608184880982,27.904733626230666],[-110.96415602256849,27.90707096361757],[-110.96600185426132,27.906557407718083],[-110.96603868125504,27.904501350826763],[-110.96221414951174,27.904588645524427],[-110.96340514280683,27.900744401325028],[-110.96300864112357,27.8961180762077],[-110.96112779996162,27.89383667086912],[-110.95779921341727,27.892614892559664],[-110.9572209717357,27.890783536535707],[-110.95443534099877,27.889497589044424],[-110.95151829965624,27.891249976763618],[-110.9487153984947,27.888027928523854],[-110.95156825975374,27.884775980522306],[-110.9505572430217,27.880181578496376],[-110.9485679811466,27.87873517100377],[-110.95041470734537,27.87536258837565],[-110.94947541207068,27.872406630307978],[-110.94998380729436,27.868294663153506],[-110.94733100229746,27.866575341007888],[-110.94558615262747,27.868769285800624],[-110.94350261947397,27.86851390260216],[-110.94052022370988,27.870887525487944],[-110.9389625425282,27.874517111521072],[-110.93436352236085,27.881647001898216],[-110.93280770236083,27.881678380007543],[-110.93150694784333,27.878882763650154],[-110.92589978244695,27.877723332342214],[-110.92441761576538,27.87595558729123],[-110.92702595268236,27.870848918167724],[-110.92648478026871,27.868664044680656],[-110.91892539584722,27.86650734933619],[-110.91772934738731,27.869462259730085],[-110.91114919678051,27.86844050501901],[-110.90888567106276,27.865006054251694],[-110.90659151144138,27.867762844294873],[-110.90339428471515,27.866912161470054],[-110.90325621242118,27.864784252143465],[-110.90606291738703,27.86294580514118],[-110.90606494227671,27.86048505704838],[-110.90381314193917,27.859568739672625],[-110.90301281057867,27.85594209352803],[-110.89922122423894,27.857220249434647],[-110.89350733617084,27.855706018484057],[-110.88943701820227,27.85201016454772],[-110.88720991249113,27.84614133268957],[-110.8887215150238,27.843950553340335],[-110.88780791661645,27.842242649835498],[-110.89082247191112,27.840771724076546],[-110.88998769390525,27.83970972148967],[-110.88771173714775,27.841090490385],[-110.88695935854821,27.83949960036864],[-110.88386866524792,27.83945412221226],[-110.88268817274974,27.842696837742665],[-110.88427304356657,27.84368987354594],[-110.88390714519682,27.847641105855303],[-110.88263958086111,27.84914997387608],[-110.87742815173544,27.85171555033719],[-110.87572537894602,27.854091367804244],[-110.87590258245359,27.859258034976392],[-110.87490968842656,27.86152316902826],[-110.8805467522522,27.86125231754886],[-110.88105198454741,27.86402825397431],[-110.87886338169398,27.864143852216557],[-110.87542297684655,27.86741766619241],[-110.87077679863052,27.865677298201888],[-110.86876422714249,27.872339467192376],[-110.87123615561285,27.874194214486465],[-110.8691884408695,27.876945608076937],[-110.86702486626416,27.87669302734298],[-110.86405284088642,27.87795061775438],[-110.86567328972865,27.87934127220194],[-110.86830598710048,27.878511875760466],[-110.86921853890021,27.88013683769225],[-110.86468101907207,27.880985552917082],[-110.86312064399067,27.882992617424236],[-110.86422374053609,27.884896240521414],[-110.86633488973803,27.884780946439435],[-110.86891045256118,27.881814490559748],[-110.87097301808393,27.88344332103219],[-110.87006432498725,27.88648150039984],[-110.86738983296101,27.889575531923413],[-110.86524445800308,27.88976979751567],[-110.86255858076584,27.893075697030326],[-110.85878051306179,27.89568923565122],[-110.8644147934109,27.89464379397225],[-110.86700302017385,27.895448403894193],[-110.86256293301062,27.8981423796551],[-110.86118552389502,27.89772148562929],[-110.85666650326772,27.901236937648378],[-110.86535421447206,27.903213989004655],[-110.86911145126078,27.90109390953495],[-110.87154459808193,27.900994640991883],[-110.87306713946236,27.899104807433105],[-110.87672757888726,27.898668044063072],[-110.88112654815671,27.896626734609356],[-110.88437391147392,27.896286964684066],[-110.8865272122606,27.89883172609882],[-110.885086485628,27.90217841480188],[-110.88079251931498,27.90054817213553],[-110.87951545897795,27.901883389565455],[-110.88215506085487,27.90406579167285],[-110.88515642210189,27.902345206715836],[-110.88647958577809,27.903908960137187],[-110.88746237576294,27.901883020302648],[-110.89064876022644,27.90288292680208],[-110.89120148145435,27.90151320576149],[-110.88943039344252,27.89872563192216],[-110.89379910854802,27.896807244063325],[-110.89542924990195,27.89396082005817],[-110.89877018319328,27.894209264689835],[-110.89753234064943,27.89694400881484],[-110.90013004288852,27.89639317251647],[-110.90067841686346,27.894260304272336],[-110.90364001992964,27.89269614650385],[-110.90708862849522,27.89303704264097],[-110.90721152596865,27.897586077515598],[-110.90405673845083,27.89873491434571],[-110.9005102492527,27.90324008358732],[-110.89843050096346,27.90321336327247],[-110.89923618801305,27.905279064796446],[-110.89842899952328,27.908155852363336],[-110.89555821215987,27.907750766158927],[-110.89511516192994,27.90629758074391],[-110.88997592713184,27.91367690699724],[-110.89066253401563,27.918780810575583],[-110.88962832579011,27.921414852273244],[-110.88725589266369,27.92168386919809],[-110.88658453579103,27.92342601342591],[-110.88237892039405,27.920725845594006],[-110.88008044314967,27.924269604798496],[-110.87600398034226,27.92358228126045],[-110.87565529398682,27.920745589640546],[-110.87391842890884,27.92136465808153],[-110.87333471054598,27.91618585805486],[-110.86632062788613,27.91568560910872],[-110.86837871885007,27.926317918616576],[-110.8674986779111,27.925528350899754],[-110.86287922550753,27.925843433728915],[-110.86091264899147,27.928691154647595],[-110.86096419781848,27.93068359118672],[-110.85871576385881,27.934792887496485],[-110.86035974773176,27.93660568480078],[-110.85819214064105,27.93703673533986],[-110.85645070594052,27.935121699430795],[-110.8522556273092,27.93646368338534],[-110.85656135072384,27.936775440922304],[-110.86086153896912,27.93790334210081],[-110.86050776381222,27.939334193219793],[-110.85291621266089,27.941911825300394],[-110.85571142267747,27.94253370612563],[-110.8558782382637,27.944063445331494],[-110.8537132773904,27.947224702991434],[-110.84521212940587,27.952488426448724],[-110.83003721041291,27.95421681776287],[-110.82641511939482,27.953881348119523],[-110.82200218968461,27.95060009031573],[-110.82201881750979,27.947984418972055],[-110.81893990786875,27.944188444176916],[-110.81714380133536,27.93859191322889],[-110.81527987854815,27.937602712324235],[-110.81257329322102,27.930565742354133],[-110.81292613522942,27.92724695212752],[-110.81185913046266,27.92363546625677],[-110.80971671528204,27.92143762716705],[-110.80775018789609,27.92416172029698],[-110.80402598375485,27.92216582745914],[-110.79931635838454,27.92213445353468],[-110.79944990731121,27.920098786019423],[-110.80374642640379,27.920669632896022],[-110.80801983130317,27.919667783653324],[-110.8131539565274,27.919415168619196],[-110.81474221082209,27.920744557056253],[-110.81441565275446,27.922809586846427],[-110.81740487024064,27.92110757819421],[-110.8267669684177,27.9176607823087],[-110.83032264634517,27.91788498741579],[-110.83576203569476,27.915213547012684],[-110.83957700024399,27.914011495490684],[-110.84608645439846,27.913221215723183],[-110.8507818901291,27.91652459760752],[-110.85350699887397,27.916956151083866],[-110.85238393581648,27.91515620740637],[-110.85376766379738,27.913989811882004],[-110.84806034336088,27.91268935685588],[-110.84307840900624,27.910441927000136],[-110.84156369597201,27.910589931890968],[-110.83484822565805,27.914638483315002],[-110.82849981918503,27.916705150334224],[-110.81396726595062,27.91851248611414],[-110.79683969120447,27.91903275579051],[-110.78113328691188,27.91796196509989],[-110.77110701200189,27.916731497241983],[-110.75762313538985,27.914692221812743],[-110.7414291395612,27.911544943702438],[-110.72193990487233,27.907187162714138],[-110.71088789621103,27.90412867295737],[-110.69981506696149,27.900163897716993],[-110.69255966696312,27.89693959955912],[-110.6890805568014,27.89452030962275],[-110.67936852947787,27.8899124970834],[-110.67242538213901,27.892535521804746],[-110.66246017105624,27.891528749620534],[-110.65442641821198,27.888758085933773],[-110.64970189243616,27.885872471612572],[-110.64130370645131,27.87999165440391],[-110.63290452653791,27.87256834700264],[-110.62708371422019,27.869132319406106],[-110.62335464158008,27.86482140153936],[-110.61972366553414,27.864391484808152],[-110.6173823386033,27.8617406690409],[-110.61233621356462,27.85818752163118],[-110.61263441441764,27.85938617066705],[-110.619075715637,27.864395015843172],[-110.62011985221386,27.867338865103193],[-110.61919589043617,27.87109461612698],[-110.62144076608962,27.869513782584306],[-110.62756546850358,27.870046474710307],[-110.62979399896278,27.875329414454427],[-110.62850709634318,27.87753636496177],[-110.63247935232351,27.877890001333355],[-110.63689382053957,27.882271691221433],[-110.64106084372014,27.883575136829393],[-110.64572696305885,27.883993767048935],[-110.6481785312601,27.888990447807714],[-110.64892853497673,27.89204432042095],[-110.65264722675789,27.89150245567572],[-110.65898199778104,27.89260224153719],[-110.66539479459396,27.895211992758902],[-110.66315628566304,27.899674034693078],[-110.6616812856438,27.900844995247894],[-110.66009208744515,27.898039910010937],[-110.65793666924219,27.89952335210097],[-110.65682492941784,27.90343787065916],[-110.65512825908041,27.905159153600437],[-110.65307621380941,27.90433744098783],[-110.65216674522372,27.901806160896513],[-110.64816328909427,27.903915777337488],[-110.64531966569939,27.900901677688182],[-110.6419895071852,27.901064708806018],[-110.639817920756,27.89874698237992],[-110.64333981486118,27.897483091976596],[-110.64374842550603,27.895515148425375],[-110.64271146286842,27.888032207985816],[-110.63640543222976,27.88590592039003],[-110.63100352623127,27.88224970561214],[-110.6175451383466,27.887254695709373],[-110.61388707476203,27.88829821531681],[-110.6067767249101,27.888295830602544],[-110.59869160593479,27.886978921691707],[-110.59095784265105,27.88467842596765],[-110.58601542343735,27.88404829514883],[-110.5818611677567,27.882719635228966],[-110.57849856559733,27.88257830767344],[-110.57017240987773,27.878337097752933],[-110.56739245243836,27.877775218549345],[-110.56318124845939,27.87437687224616],[-110.558793707652,27.873097640006904],[-110.55666647805589,27.870087028271143],[-110.54820161120779,27.860595534345578],[-110.54528490065303,27.859981754341334],[-110.54241089136275,27.85659461504889],[-110.53583552471503,27.853142343691047],[-110.52646771482625,27.850803015650968],[-110.52320000000009,27.846799999986274],[-110.52377536827913,27.844579668085885],[-110.52081909529954,27.842417009734618],[-110.52397808671344,27.839568749179932],[-110.52562951703271,27.84121123616086],[-110.52774699851022,27.8411122838059],[-110.53576349798982,27.838302116963575],[-110.540612920267,27.83911037738841],[-110.54170284154975,27.84167316404381],[-110.54464800543201,27.842521811010897],[-110.54722499357945,27.84147541709342],[-110.54899477526374,27.839423592641765],[-110.54641007653004,27.835332334723546],[-110.5489,27.8320999999861],[-110.55040000000002,27.83479999998616],[-110.55309999999997,27.83509999998614],[-110.55480000000006,27.83389999998616],[-110.55959999999999,27.833999999986247],[-110.56230000000005,27.835299999986148],[-110.56370000000004,27.834599999986153],[-110.56350000000003,27.837199999986183],[-110.56670000000003,27.84099999998614],[-110.56920000000002,27.839399999986313],[-110.57150000000007,27.839799999986155],[-110.57760000000002,27.834599999986153],[-110.58159999999998,27.83389999998616],[-110.58220000000006,27.83919999998625],[-110.58790000000005,27.841899999986197],[-110.58900000000006,27.843299999986243],[-110.58840000000004,27.84569999998621],[-110.59030000000001,27.84529999998631],[-110.59070000000003,27.84179999998628],[-110.58660000000003,27.83769999998617],[-110.58599999999996,27.83479999998616],[-110.58710000000002,27.831399999986047],[-110.58940000000007,27.829999999986228],[-110.5908,27.826199999986045],[-110.58980000000003,27.823899999985997],[-110.59369999999996,27.823499999986097],[-110.59560000000005,27.818799999986084],[-110.59860000000003,27.816499999986036],[-110.59949999999998,27.814399999985994],[-110.59680000000003,27.813799999986088],[-110.59930000000003,27.812699999986023],[-110.60129999999998,27.814199999985988],[-110.60170000000005,27.812599999985935],[-110.60510000000005,27.810999999986052],[-110.60430000000002,27.808599999985915],[-110.60860078998792,27.805434339199223],[-110.61051192823015,27.80313650317487],[-110.61292542174692,27.796469307805353],[-110.61554500939718,27.796899037590833],[-110.61594779281262,27.80021555052565],[-110.61491991835027,27.80068609711242],[-110.61463585029401,27.810188436124236],[-110.6119713715234,27.812670824318275],[-110.61215118622954,27.813983795072602],[-110.6150580288882,27.8129135498545],[-110.61615605890603,27.809299738909772],[-110.6167201281865,27.80019971463696],[-110.61660000000006,27.789899999985664],[-110.61610000000007,27.786799999985874],[-110.61599999999999,27.777899999985777],[-110.61349999999999,27.7690999999856],[-110.6105,27.7562999999854],[-110.60969999999998,27.751599999985558],[-110.60810000000004,27.732599999985382],[-110.60760000000005,27.72949999998525],[-110.60590000000008,27.726599999985297],[-110.60380000000004,27.726299999985315],[-110.60310000000004,27.721399999985238],[-110.60390000000007,27.71739999998522],[-110.60399999999998,27.711899999985235],[-110.60240000000005,27.708699999985186],[-110.60090000000002,27.700499999985084],[-110.60160000000002,27.699099999985094],[-110.60240000000005,27.692099999984976],[-110.6035,27.690899999984993],[-110.60310000000004,27.68499999998494],[-110.60449999999997,27.684099999984937],[-110.60630000000003,27.67529999998493],[-110.60570000000007,27.673299999984863],[-110.60490000000004,27.67779999998487],[-110.60440000000006,27.67559999998491],[-110.60840000000007,27.662399999984814],[-110.60689999999994,27.659999999984848],[-110.61040000000008,27.653599999984635],[-110.61270000000007,27.6576999999848],[-110.61213695545092,27.66288102260654],[-110.6095425591406,27.66713211559687],[-110.61386468969943,27.667032185222695],[-110.61689647334941,27.665728704186165],[-110.61837818960743,27.662512547267795],[-110.61968701327635,27.657119544988745],[-110.62075214492813,27.656711502635233],[-110.62289221171892,27.64938842336244],[-110.62548290522676,27.637542987270365],[-110.62553788351346,27.63117024520244],[-110.62651245359478,27.620282697702805],[-110.62421560977253,27.6093889493942],[-110.62248818926741,27.605018400858512],[-110.62202696270481,27.601512085068237],[-110.61591100087082,27.58748004375269],[-110.61217497813567,27.577834998030596],[-110.60866114779793,27.569926146264777],[-110.60743619255749,27.568543429114015],[-110.60769999999997,27.565799999984108],[-110.60390000000007,27.558199999983913],[-110.60325669725682,27.55544383940861],[-110.59900259658855,27.545742242220626],[-110.59713353379288,27.54545467826682],[-110.59712256460699,27.54085488900887],[-110.59486928765762,27.53522956282336],[-110.59234639444395,27.531980261024387],[-110.59017764361084,27.531081549393377],[-110.58853448476248,27.52757259215184],[-110.59014837317744,27.526757342209635],[-110.5881417475232,27.519476630482757],[-110.58735766168962,27.510558853522127],[-110.58767773279152,27.489747267269593],[-110.58886285371983,27.474715899643286],[-110.59050344910071,27.45930280698741],[-110.59139438949364,27.444350842785013],[-110.5908959294303,27.43973188743331],[-110.59304062443931,27.4268467141938],[-110.59354424080368,27.416103146355397],[-110.59656828694739,27.41392431534092],[-110.59680000000003,27.41139999998279],[-110.59570000000008,27.401199999982794],[-110.59620000000007,27.395099999982733],[-110.6035,27.36319999998244],[-110.60540000000003,27.35319999998228],[-110.60610000000003,27.346799999982295],[-110.60460000000006,27.338999999982263],[-110.60493066122604,27.334258247599166],[-110.60426086537649,27.328854561309072],[-110.60210000000006,27.318299999982116],[-110.60140000000007,27.316699999982063],[-110.59670000000006,27.311399999981973],[-110.59169520440673,27.307371897055532],[-110.58330392179545,27.303575103144794],[-110.5613011959847,27.29738131998556],[-110.55358900749849,27.294447857837667],[-110.5440330101249,27.2895457772255],[-110.5354480567824,27.285659007562572],[-110.5345009203499,27.28667448517126],[-110.52283208163453,27.291622809570356],[-110.52222598665122,27.29090735457271],[-110.51581165077545,27.28983105835647],[-110.5057916144961,27.290146216383448],[-110.49524206644281,27.289280094477704],[-110.4843061828002,27.28736916374811],[-110.47206646016264,27.28437020641485],[-110.45411368404643,27.278272349270992],[-110.43989638603745,27.27134172746156],[-110.43232635872755,27.267038183729312],[-110.42204134784868,27.26012366605994],[-110.41326548533044,27.25279406635019],[-110.40372681475998,27.243693941423885],[-110.39828950350505,27.23804826268531],[-110.38572401096638,27.22424328647088],[-110.38335903321786,27.222658613349665],[-110.37352579179674,27.212462497311208],[-110.37017759536104,27.20971770581383],[-110.36381254600201,27.203391834129604],[-110.35193076582698,27.193634702125223],[-110.34553270151974,27.187983301194322],[-110.33842707700728,27.179660889171714],[-110.33593132608235,27.176147121171596],[-110.33202947478776,27.17231119426708],[-110.32569022017628,27.167889061798917],[-110.32050172258266,27.16489528921352],[-110.31068412910008,27.15772595639686],[-110.30666564453725,27.15537242397494],[-110.29190364610446,27.150290975784515],[-110.28548047020263,27.147823531806125],[-110.28187483242334,27.14854760944769],[-110.2789925482785,27.14634996743638],[-110.27514351725472,27.144990296959236],[-110.26341794397155,27.142881166769598],[-110.2549698653429,27.14081109484846],[-110.25409999999994,27.139499999980558],[-110.23459999999994,27.136399999980597],[-110.22759999999994,27.134199999980638],[-110.22325306108962,27.135141061770184],[-110.2068376124692,27.132001641046827],[-110.18280656991703,27.126581388994623],[-110.18096720534538,27.125439234052124],[-110.17433239396252,27.12446193899831],[-110.16210628099122,27.12153763813501],[-110.1552992187253,27.119421888973363],[-110.14776967461933,27.117729079626088],[-110.1412048970409,27.11724358781879],[-110.13711155847358,27.11602551085099],[-110.1275928868859,27.11433773079375],[-110.11558233463563,27.111802940199766],[-110.10436029775218,27.10866169826477],[-110.09663940063331,27.10600087387411],[-110.09161896059055,27.103785699417585],[-110.0808717395879,27.097807286312047],[-110.07353856206623,27.09237412665317],[-110.05997664298269,27.081684392788475],[-110.05754245625735,27.08031695844477],[-110.05154987479011,27.082570725679147],[-110.0455453996683,27.084260831361746],[-110.04442382952078,27.08267972277298],[-110.03779623513901,27.081390066588995],[-110.03562937029426,27.07954365433818],[-110.03288904793567,27.079004344814223],[-110.02427862948002,27.079009831616872],[-110.01884288524502,27.07749643703562],[-109.9925492933171,27.067224080406504],[-109.98513036618192,27.06404211341635],[-109.97188202133987,27.05707719618016],[-109.96720712602001,27.054180322054492],[-109.96028957845795,27.048245342806524],[-109.95544646511718,27.042888399696437],[-109.95100382269084,27.035725997935174],[-109.94566767398373,27.021904792475027],[-109.94167085117323,27.017963631074963],[-109.93985678081947,27.009339921439505],[-109.9436934508251,27.008165628501445],[-109.94662674096077,27.00284245240988],[-109.9470472235268,26.99811034569575],[-109.94649627808514,26.996012561294606],[-109.94298615733987,26.989390667740793],[-109.93542751755683,26.98138973808949],[-109.93049684563982,26.974299924540674],[-109.92735829419252,26.971020995639435],[-109.92205262004501,26.96666818824366],[-109.91445486533598,26.95804501906389],[-109.90746649427041,26.947631414267278],[-109.8945692995751,26.930477439108927],[-109.89007704302486,26.92246981074925],[-109.88765962311874,26.91340424197074],[-109.88535370803044,26.906535669859807],[-109.87987026479772,26.896068603722256],[-109.87741469368143,26.890334416624512],[-109.87676776049813,26.886545443947],[-109.87315476857259,26.878427377750313],[-109.86984882368267,26.863243931948148],[-109.8682391090399,26.85157252385659],[-109.86666212290748,26.845964509141083],[-109.86477973314868,26.844282110837355],[-109.86461964464496,26.839344000411927],[-109.86349410633449,26.837665316036748],[-109.86180923232484,26.832119284942507],[-109.85651305795875,26.806386226946188],[-109.85253110765592,26.795045866275416],[-109.84683370011152,26.784994155851052],[-109.83999901272932,26.774562582058365],[-109.83467155922915,26.767088613018814],[-109.82223371313103,26.75384254971584],[-109.81815474526655,26.74990880389595],[-109.80640099147735,26.740241337995258],[-109.80033017763952,26.73457932136455],[-109.79349475752753,26.729514069089873],[-109.7864963521468,26.725143992117978],[-109.7826717836777,26.72200602508758],[-109.77555192451547,26.71301221189151],[-109.77109513060782,26.70914807188069],[-109.76727475371547,26.707147234220486],[-109.75191918141911,26.70214376054281],[-109.74435308455105,26.699358555352774],[-109.73214214213294,26.694311393516386],[-109.72907828296457,26.69272125237319],[-109.712741601814,26.686072463917753],[-109.69206382939399,26.67822741899721],[-109.68750148436618,26.67621248319182],[-109.68063384429712,26.674943783266258],[-109.66876498801673,26.67329604454551],[-109.66435490768811,26.67450907343988],[-109.661977717289,26.678414366662935],[-109.66322007881854,26.68331973437779],[-109.66249469276153,26.687944307904786],[-109.65660297991826,26.691297774347106],[-109.65174494851664,26.692927027450878],[-109.63932229085526,26.694177709805217],[-109.63364437100125,26.69516463839153],[-109.61984595653314,26.695540650844862],[-109.61189649923034,26.69526007400185],[-109.59398658324051,26.693837459691792],[-109.57359938916358,26.691475161740186],[-109.55916331122245,26.689093186530954],[-109.53351014704828,26.683654936093262],[-109.52507617813336,26.68153867560534],[-109.5149551244046,26.67792712300826],[-109.49535468035401,26.670292932198436],[-109.4928798369885,26.671683019370732],[-109.49190012257355,26.674099152884082],[-109.49319407810901,26.678580015192836],[-109.48548045494135,26.683997836719016],[-109.48328514076661,26.6810240632185],[-109.47833964267505,26.6796416034814],[-109.47634023880448,26.677339055785637],[-109.47358603965745,26.675945108389328],[-109.46759973347218,26.67562555778983],[-109.4521639421547,26.67311163691801],[-109.44230875642455,26.672135189503194],[-109.43023767321245,26.66832204027162],[-109.41584188667076,26.6618809772678],[-109.40762543450126,26.65691672715633],[-109.39771586049312,26.64892041547705],[-109.3837341916032,26.635616191040413],[-109.38127575010151,26.632697448422903],[-109.36944103592373,26.614539022298914],[-109.36442618070294,26.60875686128793],[-109.35816539812589,26.599083302056783],[-109.34899016066095,26.59481615846755],[-109.34314378268891,26.590988209462296],[-109.3407750653866,26.58799349122569],[-109.33629692963711,26.586551145241913],[-109.3319302954394,26.583829606626466],[-109.3227046831492,26.57678182670628],[-109.31552831671519,26.570707887918388],[-109.30946311209436,26.564682496325815],[-109.30366747268488,26.55700640326154],[-109.2992186482295,26.552506105869384],[-109.2898079613804,26.5410615301991],[-109.28598139090775,26.535479609766924],[-109.27377878367639,26.515075054167426],[-109.26967264356944,26.505119487395575],[-109.26771405643211,26.50160961480816],[-109.26426416020075,26.491602811927123],[-109.26083175963288,26.477212789102225],[-109.25987295834909,26.471569622231698],[-109.2569778026189,26.45968987392945],[-109.25522778656301,26.45005417992445],[-109.2541957837289,26.44152656980509],[-109.25202943212929,26.412233456083584],[-109.25338169059518,26.374708791991793],[-109.25520308658952,26.358772368540713],[-109.25998142120272,26.338143978493747],[-109.2612599150059,26.330377514526504],[-109.26115231730182,26.325212304437343],[-109.26000796575096,26.319702191890144],[-109.25832413865083,26.319928432633617],[-109.24759782190688,26.315984660131278],[-109.23399986960419,26.324399550940313],[-109.21563945039094,26.334532267597183],[-109.21360588700213,26.339993825211877],[-109.20988612092822,26.34318932038377],[-109.20452138233406,26.341730697388755],[-109.20262087978796,26.344407943112003],[-109.19871932037023,26.3417302212232],[-109.19324036947478,26.340929857179674],[-109.1900357839483,26.337648619989636],[-109.1888387932816,26.334421791630632],[-109.19011546249624,26.33274856050599],[-109.18827880487675,26.332414096503328],[-109.18817079230763,26.332373599054392],[-109.18499404270221,26.328228773461603],[-109.1820351455795,26.32709180015746],[-109.17945739809045,26.322211874102777],[-109.1771934912149,26.31962303670889],[-109.17457896839602,26.318969563720998],[-109.17517847733671,26.315983727278535],[-109.17490784385365,26.315325987366748],[-109.17463340717626,26.314783056360625],[-109.17174436951177,26.311632394738183],[-109.16694742595348,26.310391980388317],[-109.1651026053184,26.306998988458247],[-109.15906656675298,26.306562953430955],[-109.15694137086109,26.305374366076194],[-109.15551312089764,26.30694981641011],[-109.15219950703806,26.307000007481122],[-109.14379945118014,26.30459951910916],[-109.1347994094553,26.30119951655621],[-109.13312374391421,26.29785877718058],[-109.12939200799491,26.2979308665673],[-109.12916345898918,26.29807725621049],[-109.12744797122497,26.29864881751297],[-109.12552372391372,26.296987932537434],[-109.12100792693707,26.298910171960927],[-109.11965674831339,26.303077576368423],[-109.10247059801816,26.31173509459626],[-109.10011273124547,26.312928591081004],[-109.09668035930417,26.312124438893136],[-109.09407583957812,26.317187195545102],[-109.09347895925794,26.32028009072701],[-109.08713304797135,26.326221743588462],[-109.08754144665261,26.330818512244832],[-109.08540549907241,26.336495184968726],[-109.08121822366104,26.337738980800566],[-109.08038417944437,26.341356411319282],[-109.07870916414271,26.34295565505954],[-109.07655181851106,26.347443123679],[-109.07620437627628,26.350137361050486],[-109.07314036718014,26.353992440636034],[-109.06994022291366,26.357261053151262],[-109.0681144666911,26.35855564939976],[-109.06586963704524,26.360149776231538],[-109.057682429171,26.365986555450604],[-109.05704558664132,26.366414332413058],[-109.05698564994833,26.36644562317008],[-109.05373280425846,26.36870437907578],[-109.05150980286044,26.370277391178774],[-109.04666277435336,26.37369564478496],[-109.04663250609184,26.37374700446611],[-109.02049942510547,26.392316224512513],[-109.00637347331201,26.402393527120182],[-109.0029781025097,26.399983562190016],[-108.98152133542965,26.3968442378457],[-108.95886779590165,26.393526286491124],[-108.94100533573521,26.390861293229136],[-108.94075292796765,26.390822947579295],[-108.93652230182647,26.390180260149293],[-108.93555122622041,26.391115713280044],[-108.91627807959253,26.40967743357453],[-108.91520811637639,26.410708871115048],[-108.90918497973024,26.41658526431752],[-108.91011501582352,26.421714519155273],[-108.8813924459206,26.406252480290902],[-108.86033955119916,26.432770155617902],[-108.87610763651435,26.447576437228633],[-108.86354972316849,26.457157921237695],[-108.85968441045333,26.459809936853333],[-108.85233317340715,26.46498764611789],[-108.83776201885604,26.472523305332174],[-108.8377950608845,26.476857108461388],[-108.84594561578297,26.484723836928936],[-108.84747992001911,26.487217450403023],[-108.85065163438338,26.486362345750877],[-108.8567400077311,26.480515141561284],[-108.88817092307244,26.480110915496027],[-108.91466995337998,26.47954002204864],[-108.90270717376217,26.484320522405994],[-108.89136296072513,26.48985405628207],[-108.87315215418016,26.55107142694169],[-108.82478974302063,26.564745195420414],[-108.80642284717845,26.57060364932005],[-108.80387666307354,26.570564758100375],[-108.79721775923406,26.56784026276739],[-108.79551169786265,26.565627120381237],[-108.78772371608488,26.565255750605786],[-108.78521885992888,26.56805111441696],[-108.78258161183811,26.56946917470941],[-108.7784504312213,26.569950237664614],[-108.7764382536675,26.573501084141867],[-108.77659034277991,26.580109498211527],[-108.76332961354831,26.584332632195014],[-108.76199796575008,26.584785448385276],[-108.76114564676845,26.585076894712984],[-108.7559495897109,26.586794926317964],[-108.73400033233281,26.593564309537953],[-108.71346444033952,26.593495883202422],[-108.71074088948455,26.593627536228837],[-108.71059048291824,26.58705765144032],[-108.68974259898971,26.58702024462309],[-108.67883073226801,26.587015085533267],[-108.67882130405212,26.589020367298758],[-108.67870454131543,26.612545699997042],[-108.67911181272382,26.61638418589058],[-108.67928212478677,26.633999030271582],[-108.67898791436329,26.64288944718959],[-108.67454872006203,26.646615587733436],[-108.67443211443316,26.646713462611785],[-108.66726223528366,26.652601346805852],[-108.6665762082165,26.65374232954224],[-108.66368864586178,26.657898052294286],[-108.66147029936388,26.66452701239001],[-108.65768056502202,26.669129188605723],[-108.640795092914,26.673705472288077],[-108.63036636037094,26.676573447765236],[-108.63369772796182,26.6795684752002],[-108.62996824703487,26.680434534259177],[-108.63179835727664,26.687200433335363],[-108.63599431486273,26.690515361547284],[-108.63537469770267,26.69161733419213],[-108.63119688358427,26.701436832273146],[-108.63146610367016,26.70697404896754],[-108.62838499240257,26.718387128992788],[-108.61776191109396,26.72224588577444],[-108.61784820814654,26.724526337333543],[-108.61784751463426,26.724533269286894],[-108.6149363995251,26.7268861711176],[-108.6010239580836,26.727222501870017],[-108.59948758595317,26.730023669125103],[-108.59795354403508,26.736096092463356],[-108.5972144025186,26.74322373137369],[-108.59885723856172,26.75030690419959],[-108.59569026642424,26.754379418318763],[-108.59453405325331,26.756951547913957],[-108.59383738232606,26.75916922386756],[-108.5819814202157,26.759026851206727],[-108.58038587592364,26.759596562816512],[-108.57812337926373,26.763624323807562],[-108.57803925961696,26.769148391314275],[-108.57874029806618,26.772687088798136],[-108.57598040168352,26.777764750792812],[-108.57747475224869,26.781061382040946],[-108.58084943727675,26.789576579559593],[-108.57824536620342,26.791254955059003],[-108.5752045587297,26.79321656691468],[-108.57304076404284,26.790160841331556],[-108.56815216397774,26.783259202862496],[-108.56477008156708,26.778483296891864],[-108.55681271962936,26.78031850136273],[-108.55403380697135,26.779856987707547],[-108.55147274233752,26.781535435953174],[-108.55140370329957,26.781678003485183],[-108.55046679144027,26.786422794625423],[-108.54839551744601,26.788760002714184],[-108.54190438284013,26.792865698130527],[-108.53691208986072,26.79842871015245],[-108.53685338706691,26.803131274031728],[-108.54184955416616,26.805446476596842],[-108.54593597171714,26.805404154932432],[-108.55000641818759,26.806929378582595],[-108.55535239588397,26.811584069830985],[-108.55786492052351,26.817312124652915],[-108.55762075987536,26.821970672213638],[-108.55480437588665,26.826326915684092],[-108.54704269827715,26.828556761776042],[-108.54574381886869,26.832021329900897],[-108.537612405446,26.838114564668672],[-108.53311803661848,26.844393537817723],[-108.5225353804845,26.878156235291783],[-108.5200438567029,26.880233195313735],[-108.51942275077914,26.879008230947875],[-108.51772524267574,26.88154864749913],[-108.49280212835993,26.925352126376822],[-108.49247224744772,26.925931665463565],[-108.4669776767197,26.97070184775481],[-108.44349344886842,26.973743203480467],[-108.42889898507627,26.975631352312746],[-108.42878135693633,26.97564656552214],[-108.42427083549762,26.976229833760613],[-108.42982312076106,26.976972379034066],[-108.49954210406867,26.986279209253667],[-108.50248612035597,26.987357031622594],[-108.50761242932418,26.989223766644614],[-108.55176343083588,26.99714529949972],[-108.56074288360833,27.003291275462516],[-108.57224741093859,27.012655835066766],[-108.56253526975013,27.046018938480756],[-108.60227604636145,27.036943274665987],[-108.60618896706478,27.063585016654997],[-108.59695618204807,27.076899649716324],[-108.5981000753045,27.089651788913386],[-108.6007307451232,27.118972487581857],[-108.60440495299474,27.131057065182517],[-108.61142670567449,27.15414474777259],[-108.62093532189971,27.156519525426802],[-108.62242243641163,27.156890872802933],[-108.6320821353653,27.168945768901153],[-108.64432015727022,27.178811154520133],[-108.6496698688519,27.175837591515972],[-108.65215585234745,27.175686577598697],[-108.6529848230727,27.178324478280217],[-108.65097352831538,27.180009979996214],[-108.64869856397439,27.18249846034422],[-108.6474236538578,27.18558421931698],[-108.64934388815442,27.191204949683822],[-108.65334142504179,27.189981538359064],[-108.65294718541304,27.19256862272516],[-108.65310526852159,27.19532026678445],[-108.65558420734459,27.201482354365794],[-108.65730394559927,27.20732439363144],[-108.66231479072832,27.21824944702621],[-108.6610735232747,27.2245314997391],[-108.65823966686281,27.227550704703503],[-108.65808851036024,27.23165221055899],[-108.65936686199615,27.234807382162614],[-108.66251016898906,27.238672844363975],[-108.66437549829243,27.239395829675402],[-108.64733896711357,27.256983919981167],[-108.62559062704963,27.28924586027182],[-108.5910451262439,27.318080477439764],[-108.61890151946028,27.3661273108915],[-108.61958057251354,27.36724288289514],[-108.62912519639286,27.38292059641134],[-108.62825582224082,27.400265464841084],[-108.62820195242375,27.40133990171904],[-108.62773924857004,27.41056702750035],[-108.63341768489488,27.428136475047268],[-108.65977935667155,27.462451516601845],[-108.66164840201236,27.464744355182916],[-108.66101427616417,27.46499094814567],[-108.65302290542002,27.469031626202877],[-108.65577870443235,27.477310915551584],[-108.65288348150068,27.528574786136517],[-108.6524053575605,27.537032908809863],[-108.65527706862099,27.54379743282834],[-108.66723009032683,27.549055723590754],[-108.6764929966019,27.553129572226112],[-108.69025645322876,27.55918112042872],[-108.71280771472698,27.566246479302492],[-108.72295808803636,27.588147734373194],[-108.73985238027444,27.599954587784055],[-108.75419937837734,27.636733423606813],[-108.75405505154657,27.645641285591182],[-108.74931378959923,27.664730815024825],[-108.76049113414712,27.673679417882454],[-108.76255445800678,27.67602579722859],[-108.76475698032652,27.693497352901034],[-108.77278676580829,27.69650147641488],[-108.76602478745161,27.70583356476783],[-108.78444693549301,27.714906863460612],[-108.78449462958145,27.730465244237564],[-108.7986154334335,27.72303098672859],[-108.80087866246038,27.72433696306689],[-108.80131652703182,27.727331106098347],[-108.80383651677022,27.73020199646038],[-108.80488126223077,27.736176081049734],[-108.80822736355486,27.738165465879945],[-108.81700365589387,27.732166080116656],[-108.81898113056718,27.733675849499036],[-108.83296377672895,27.74434956358641],[-108.8632583983167,27.744541546094865],[-108.89551564229743,27.744807098504793],[-108.90121091738746,27.754042722710665],[-108.9134249356112,27.77298202491147],[-108.92029421059976,27.783973054990952],[-108.91046413789638,27.809135754556905],[-108.90451774597824,27.807682794395305],[-108.88608172664698,27.81367003023132],[-108.88314572606208,27.819964366487625],[-108.87283157589303,27.831597291293292],[-108.86914021084402,27.839286334402857],[-108.90470337766203,27.850748587874193],[-108.91441166999795,27.853859047565095],[-108.91486799130979,27.854005230827568],[-108.91975075687151,27.87094455159979],[-108.92008976020867,27.890813747423522],[-108.92452555423694,27.900860932991463],[-108.92528062275653,27.920720598838443],[-108.92651102333804,27.940594233119953],[-108.95031378647059,27.95403953352951],[-108.96370539321026,27.972524013914096],[-108.98198197106899,27.980272515182264],[-108.99168493436906,27.97998089582336],[-109.00536459611732,27.995531794375495],[-109.01636071090877,28.008028006867505],[-109.02953133129739,28.01672453531546],[-109.0318996136615,28.018288031848044],[-109.03656788265994,28.033093492883893],[-109.0391927824665,28.051233414381727],[-109.04156332484712,28.06388743958047],[-109.04342196670115,28.067877208907476],[-109.0481690146018,28.080420909212933],[-109.04992711253811,28.083567736581415],[-109.0494961425033,28.087067342173384],[-109.05156932422875,28.089635266828168],[-109.05178897027452,28.090572947768862],[-109.04889789435055,28.09242653575012],[-109.05220527840623,28.09539661877426],[-109.05300071146394,28.097712235623135],[-109.05119439148518,28.09907183335207],[-109.05359121448481,28.10019611189682],[-109.0539512577534,28.102422646963532],[-109.05587567763166,28.104209703516403],[-109.05651457857539,28.1082239821111],[-109.05883678817486,28.11140402131622],[-109.05952982104799,28.112649660031252],[-109.05966725882121,28.115561260426375],[-109.06142478806754,28.117803045569815],[-109.062031493299,28.118088507353264],[-109.06233596110462,28.12146554956695],[-109.06262440021482,28.12231320716478],[-109.062801938522,28.12580155889617],[-109.06513083813661,28.125830737399838],[-109.06798584901497,28.12901250223456],[-109.06946948571425,28.133890960632186],[-109.06836684754484,28.13442694956825],[-109.06828090469583,28.14067380886479],[-109.06670055762584,28.14120766145021],[-109.06766837710734,28.143670184238715],[-109.07104641658981,28.14535997410053],[-109.07289420574278,28.148572349006542],[-109.07170561946998,28.150307491731155],[-109.07083307399182,28.155127155143532],[-109.07083342755283,28.159071656565516],[-109.07018792526947,28.163140940851406],[-109.06199011083055,28.19920194055453],[-109.06683982362154,28.233309122301705],[-109.06712402283102,28.235307957842167],[-109.06918854573132,28.249821015193618],[-109.0748861682523,28.272609408043877],[-109.07026108132959,28.274022471270143],[-109.06253948160321,28.269971168895665],[-109.06061506853183,28.267723330788044],[-109.05843617745131,28.2672688636095],[-109.05959289875119,28.272324792525524],[-109.0619426693483,28.274724986715455],[-109.06331933610943,28.280064932061066],[-109.067087929634,28.280988172676757],[-109.0701078914546,28.28428421272423],[-109.06869640590048,28.286138839132036],[-109.06625689234289,28.28644296891548],[-109.0638829636834,28.283596655897668],[-109.05951149053095,28.28473605267402],[-109.0564174113324,28.279183045878654],[-109.05151147326836,28.27644746185183],[-109.04966807885097,28.28119237579358],[-109.04576473980876,28.28116164940485],[-109.04441705139669,28.27845590806953],[-109.04657472969416,28.275592161187546],[-109.04494079950825,28.270488250036635],[-109.04068194768581,28.26699002186689],[-109.03891052322115,28.26956998649939],[-109.0331133667712,28.273241084105905],[-109.03149366288483,28.272559856284033],[-109.02862965104265,28.27677588974899],[-109.02571794123685,28.278271483890308],[-109.02277700415817,28.27753194126194],[-109.01787245983365,28.27213490130015],[-109.01690331628612,28.27036255738585],[-109.01249665187419,28.2662829845861],[-109.00828465426025,28.265654724221633],[-109.00648812301819,28.263246687323942],[-109.00309584661443,28.262179709052702],[-109.00050742650853,28.25909626856719],[-108.9987774035111,28.255452902082368],[-108.99509604575462,28.255463521509682],[-108.99313992300631,28.260478632052013],[-108.98864544953892,28.26185887240797],[-108.98858281068414,28.267054715585914],[-108.98956172320823,28.270933890710467],[-108.98705476379075,28.277832683179838],[-108.99183851342531,28.281481822978208],[-108.99554508534413,28.286386967202873],[-108.99570007145581,28.29177368913895],[-108.99692177364653,28.29549606960876],[-108.99457190450164,28.297933852949996],[-108.99030048910407,28.297637394018068],[-108.98804954667378,28.294986115804022],[-108.98905587593822,28.291451821523367],[-108.98319107972111,28.287581044943522],[-108.9831858685439,28.28633563494941],[-108.98607840250702,28.283709724397283],[-108.984216116239,28.278307460060944],[-108.98105006297277,28.27621551032024],[-108.97367120742399,28.27309543868415],[-108.97217674206416,28.271764687387474],[-108.96895787269085,28.266171121770526],[-108.96141270693744,28.262004205291987],[-108.95331898611954,28.26226975504983],[-108.94226034602275,28.25969562880647],[-108.9288161335412,28.259555900565033],[-108.92730509192592,28.258590036341786],[-108.92201445338213,28.251491779031312],[-108.92115397711285,28.251453290827783],[-108.91267539490303,28.26000125125438],[-108.90851889533116,28.259725894686426],[-108.90370582147068,28.26170570832835],[-108.89592579030108,28.260479266551044],[-108.89130894132268,28.261020642743063],[-108.87952840526367,28.264505151750086],[-108.87601034105018,28.261646729946506],[-108.87296589329094,28.26047751233881],[-108.86925920917264,28.257014922099017],[-108.86382517411045,28.256357809831286],[-108.86158287915026,28.25678705388424],[-108.85608856622866,28.251538285110144],[-108.85184552434629,28.25933778166808],[-108.85033635885884,28.2590060684675],[-108.84473305741255,28.25463997722676],[-108.84199691158665,28.253257368908635],[-108.84054893298872,28.254330413719515],[-108.83583541315829,28.262753781209597],[-108.83268168181814,28.26483063558112],[-108.83042295301459,28.265049281535596],[-108.8232896418013,28.262576093906148],[-108.8187126128999,28.26176613103803],[-108.79166318697872,28.25361706199709],[-108.79744139091326,28.266597040808335],[-108.79668450598723,28.267163442524122],[-108.75098388203861,28.2715693466792],[-108.71389044577899,28.28797507287328],[-108.68722510615879,28.30346248780495],[-108.6764865464973,28.302894036627833],[-108.67489020314673,28.302112079040626],[-108.6733792874926,28.29907388026305],[-108.67059609193689,28.298047346062503],[-108.66721251014775,28.299403915556923],[-108.66193388177948,28.295475102551336],[-108.66111043539826,28.296329678020356],[-108.65583228621068,28.301806958624752],[-108.65237313013256,28.298351767512997],[-108.64436450028751,28.298280203327522],[-108.64129313347348,28.291608645651422],[-108.63548597463807,28.30625610451324],[-108.6361809387111,28.335228012760467],[-108.61116729424452,28.335256815608545],[-108.60350743060883,28.347561908678756],[-108.55092784485646,28.318055449994176],[-108.53588274903734,28.323731980834395],[-108.51963772424102,28.334762177398716],[-108.52165100695481,28.365060622854003],[-108.50568286813012,28.36080588440018],[-108.50136539830248,28.35572926282248],[-108.47970101095603,28.369551057916908],[-108.48898192012183,28.375115699052174],[-108.5155414059592,28.42628431709619],[-108.51363380137218,28.439603336403366],[-108.50865054524968,28.44929913609286],[-108.50414121788185,28.454439273715252],[-108.51254038201074,28.454907535092502],[-108.51744292187271,28.455622691127132],[-108.51969589310806,28.45878155715957],[-108.52038878510268,28.45975881765537],[-108.51682673812229,28.465215922188065],[-108.51546416498906,28.470836715425662],[-108.51347162644964,28.474274805016137],[-108.5131985341489,28.47740916734773],[-108.51448364979512,28.481310956138657],[-108.51369675842642,28.48448995207019],[-108.50914088585603,28.487767337573473],[-108.50888564631845,28.488239820060016],[-108.50684987191187,28.490438353493403],[-108.50504195391989,28.492853782234306],[-108.50628784681777,28.49780332261986],[-108.50773175914856,28.499853182627476],[-108.507671714065,28.508215902419295],[-108.51270855473217,28.508213158105548],[-108.51889716469753,28.506499777359124],[-108.52328665307618,28.505910353123113],[-108.53185998019615,28.53897309664427],[-108.53128684603479,28.55666858206132],[-108.55162502247424,28.57777403021953],[-108.55563573439218,28.58726228914759],[-108.55820949183959,28.588655791752103],[-108.56194553481203,28.592301616857526],[-108.5643963690386,28.612709643150083],[-108.58015120382288,28.632446339680314],[-108.57898421511663,28.65733605239126],[-108.58390764492839,28.66593136658446],[-108.5837852072213,28.740139376988623],[-108.60143309816254,28.74381252080707],[-108.60662043982279,28.744597137668677],[-108.62074340370862,28.750327506643714],[-108.62523376113938,28.75933653270772],[-108.63009947673976,28.7598174812062],[-108.64329442262829,28.7650675560497],[-108.64555675232504,28.794727085538966],[-108.63632843134252,28.791882763848776],[-108.63158337081438,28.794550228113735],[-108.62439564785802,28.800116411259978],[-108.62381737858163,28.80612300283468],[-108.62962509508083,28.811722358308884],[-108.65784954853666,28.809224487742313],[-108.66583516176189,28.82821612328405],[-108.68120052142217,28.85477116527443],[-108.67817623189057,28.863275881585196],[-108.68175761604283,28.867076626904918],[-108.68712966416786,28.87565025234153],[-108.6947110116788,28.879501731188157],[-108.70684419517954,28.884264322535557],[-108.70619669876982,28.889419905041336],[-108.70875882590781,28.88848674965908],[-108.70968211946337,28.889824703875263],[-108.70604323685353,28.893232509395204],[-108.7061042149229,28.897338379282473],[-108.70493297736994,28.90002167418521],[-108.70631898977848,28.903627007325838],[-108.70892094307663,28.905900728584754],[-108.7059380436163,28.906585815853248],[-108.70512190007469,28.911609999900406],[-108.70106844519057,28.92764530874365],[-108.69782011049858,28.931388371015146],[-108.69814537243315,28.936265660657853],[-108.70781310695213,28.98557135973539],[-108.71000008109638,28.983230960293497],[-108.71421815905336,29.001465335258843],[-108.71131340054336,29.003489343090394],[-108.72435312089146,29.069897004152438],[-108.71594802956338,29.069818008723928],[-108.713107128888,29.070367345630757],[-108.7149666138771,29.076608265336063],[-108.71104978352935,29.077547033267535],[-108.70943818044356,29.083003330207305],[-108.71152874323116,29.087417777193764],[-108.72747148528629,29.085761201172488],[-108.7295895217141,29.096532698025158],[-108.72642686029968,29.098174349522594],[-108.70826122057929,29.114277287699792],[-108.69852820303004,29.127739564855233],[-108.70001712214435,29.1350466756586],[-108.70950050269403,29.1491335411377],[-108.72885354125486,29.17180114215114],[-108.74529690652923,29.162342745623448],[-108.74602497489798,29.164016518758842],[-108.74519054634771,29.172230846411423],[-108.74659505962467,29.176280487325926],[-108.74915834046692,29.18063717065644],[-108.75134086103174,29.189653613381722],[-108.7538694909482,29.20009805607515],[-108.73982995898285,29.200820328937823],[-108.73540833363307,29.217712690046483],[-108.74282836744811,29.225864348887967],[-108.74124456111804,29.240426992627363],[-108.75109597229425,29.250936829571742],[-108.75749013893773,29.250781846997427],[-108.75976895663263,29.25150992363035],[-108.76188762507525,29.2538835868732],[-108.76103040853235,29.25545890375139],[-108.7572585826997,29.255667342925562],[-108.75430299708916,29.25945720424704],[-108.75005009918249,29.256727466818802],[-108.74447395478995,29.259567002464337],[-108.74142231814471,29.258535319140663],[-108.73066708867395,29.263402784428195],[-108.73030240225671,29.269093611977837],[-108.6822085770471,29.26742981391959],[-108.66973291722013,29.307416924379595],[-108.70362203958041,29.408454854419574],[-108.70351893417654,29.410073147786647],[-108.70737965757803,29.439479105877012],[-108.71907824888865,29.459789258944284],[-108.71775386692792,29.465953828428667],[-108.69433192238614,29.46711419275738],[-108.68960645525999,29.484000419387883],[-108.67652460866884,29.484660918759346],[-108.66428586783906,29.48531688242406],[-108.64888863960687,29.488061623318174],[-108.64398631700487,29.488839506080467],[-108.64067190465067,29.49114536034199],[-108.63633337044485,29.493712367817523],[-108.62614646248676,29.50038245272077],[-108.62645111887036,29.502447938886178],[-108.63071401571563,29.504310308079823],[-108.640120813755,29.50713464764999],[-108.64523684108781,29.50772011465415],[-108.6487126576373,29.509101029122576],[-108.6494589142016,29.509979071572218],[-108.66230913056921,29.544481654234232],[-108.63832420048095,29.558318838068715],[-108.65950507199204,29.58404067800967],[-108.64113712144672,29.588885666900694],[-108.64632510289317,29.610442277733057],[-108.64619771500412,29.611819381906457],[-108.64465714997436,29.627549215649424],[-108.65498792628904,29.649432890913317],[-108.61828002970105,29.660525438246566],[-108.64516732262945,29.69195757713578],[-108.65627641289126,29.71198792325515],[-108.65909895367093,29.716127400716744],[-108.59253438269246,29.71764572978026],[-108.59275130120966,29.728391494758],[-108.54780934951077,29.737350275105996],[-108.5407755639389,29.73622797404164],[-108.53839743372555,29.747611334651708],[-108.53694072117395,29.749203876126217],[-108.53605798547102,29.750168891551084],[-108.53496427720808,29.751364504972003],[-108.54125877478793,29.79613784900215],[-108.54875762178347,29.796529363422678],[-108.60166766464948,29.797111675876238],[-108.60757976767184,29.797915730788475],[-108.61855959354745,29.800466007126886],[-108.62401863413885,29.802655052695343],[-108.62944418285997,29.806273845019405],[-108.63216645455515,29.81803343800857],[-108.63571773441902,29.829684476924456],[-108.63475011040947,29.832054312069488],[-108.61489306174883,29.844077998655393],[-108.60838319451244,29.845144070706112],[-108.60719925769178,29.847140063440065],[-108.62169071503024,29.878209484453805],[-108.61469338516645,29.884464015198148],[-108.61486306116825,29.895125264174396],[-108.61911297910694,29.909377696357126],[-108.6187755240673,29.93132132707956],[-108.62287155149806,29.950471651274427],[-108.62807521430966,29.95133569582697],[-108.62870897485021,29.95303439218651],[-108.62850091118457,29.95348186535739],[-108.62774850778504,29.954447645247967],[-108.61549957736781,29.965872427322097],[-108.61402402435647,29.97993931980602],[-108.61227178882228,29.992393813083083],[-108.61112583476876,30.000156498166803],[-108.61061955514202,30.003585351721995],[-108.60692209266688,30.028617928140136],[-108.61059820104629,30.04236418450637],[-108.61314006099008,30.051867021522128],[-108.61473558873882,30.058138511997527],[-108.61453011776115,30.089275556049984],[-108.61822289196215,30.08945253772322],[-108.61448047103647,30.096780286405703],[-108.61448032205914,30.096802779423456],[-108.61165574584965,30.102349423124053],[-108.61757294190988,30.235977233538165],[-108.61908577953352,30.271383815400497],[-108.6202176256491,30.298229730008984],[-108.58603374293654,30.28606957129648],[-108.58352670221353,30.285407081698338],[-108.58307098880942,30.28140986274002],[-108.57315202035767,30.276927855679048],[-108.57294292521124,30.274330313702876],[-108.56719812678477,30.272899275977977],[-108.56500078420709,30.26973146752755],[-108.5599520659631,30.26992838581299],[-108.55054665771422,30.266642181031614],[-108.54219901767965,30.28351216694682],[-108.56577376750988,30.308186380314623],[-108.57145301671608,30.327733857906253],[-108.5749170990083,30.32754351119786],[-108.58000597644337,30.337482108580105],[-108.62205648994274,30.340318167383714],[-108.6198398925913,30.374796382021714],[-108.62043449564607,30.375667447166336],[-108.636953640282,30.399860779571895],[-108.64865225224497,30.416864715866097],[-108.61742635499962,30.433798767931364],[-108.61355868433549,30.435716381536338],[-108.60384323343027,30.46511299339278],[-108.66098292637628,30.466650193710564],[-108.66477187258903,30.468151644506975],[-108.65711650339148,30.47031675129341],[-108.6599302240432,30.500132786733502],[-108.66197290214302,30.521941889869197],[-108.67293283375153,30.531025655755684],[-108.67468497480627,30.535074377637898],[-108.67779220553899,30.55707272231905],[-108.68739831400427,30.554764762441437],[-108.72743949346358,30.58047690853317],[-108.72666566498236,30.59454807746937],[-108.75654172083154,30.59607572447146],[-108.7620197485412,30.587271967957633],[-108.83064742299547,30.60173301958099],[-108.83426436372969,30.605741317657248],[-108.83939057685507,30.60590244354495],[-108.8482772861633,30.614252036605137],[-108.8575196225708,30.61740281993127],[-108.87646528299308,30.624574316434746],[-108.87774358574,30.637838393489233],[-108.86902898448801,30.681070353634368],[-108.86692524164948,30.68938662633542],[-108.88691946229056,30.719286530393674],[-108.9189683646398,30.739353655885623],[-108.94830243975588,30.73691128014542],[-108.93545680160713,30.77363126568315],[-108.9353782615334,30.7763626507504],[-108.92984923878993,30.861020929600556],[-108.93924273239185,30.90756516549743],[-108.84315158162843,30.90547590174259],[-108.80239257358306,30.904101002728396],[-108.80301542074687,30.976750747408744],[-108.80325546047601,31.004829266336117],[-108.68380744139932,31.00597332850947],[-108.68401189043283,31.024534130543827],[-108.68438668374756,31.033739540588726],[-108.70865899252072,31.03387229661695],[-108.72259169877924,31.03374685968464],[-108.75246602091329,31.033847500946877],[-108.74902312666791,31.037625634031144],[-108.7438505233697,31.042075964149433],[-108.74034270952558,31.046878899156297],[-108.7298991351085,31.052154183846994],[-108.73454628306803,31.053622577522276],[-108.74018873283853,31.05808622015377],[-108.74449116307204,31.062628921126645],[-108.74719529005677,31.06677312640909],[-108.75045100982959,31.069750738293237],[-108.75376781008998,31.07053526531081],[-108.75670168975091,31.07098235837759],[-108.75968656957053,31.071603607670454],[-108.76381578321542,31.072411459911905],[-108.76646253192115,31.074104777102548],[-108.7661493563013,31.078482156467146],[-108.76703941915628,31.083029998463815],[-108.76935377114216,31.088357926326125],[-108.7690151582782,31.0894352234576],[-108.77019448764764,31.092328680691253],[-108.77052524826166,31.099940769260115],[-108.77012742372682,31.101924866469687],[-108.76999685877695,31.10247182458528],[-108.83329732466575,31.12545854276715],[-108.84564005792328,31.135576222868565],[-108.83501234861501,31.16933470456837],[-108.80502466862197,31.19295553796468],[-108.84833197283052,31.195107590677026],[-108.86068718883911,31.21892719382066],[-108.90033230804386,31.20245212437095],[-108.90301895371175,31.20313909633046],[-108.90531557458132,31.205118617270728],[-108.90664749521437,31.20805091547851],[-108.90629080720976,31.213343086823386],[-108.89870398133581,31.22478279466344],[-108.893446404982,31.22764292371255],[-108.88169513164377,31.235560182170275],[-108.87981247312655,31.23878593805722],[-108.81723143567928,31.239005658513122],[-108.79199815241856,31.277472401227953]],[[-110.84907555295683,27.98157812250247],[-110.84830234693175,27.984457529901363],[-110.84572847269516,27.98194667650239],[-110.84142022032864,27.979856201571124],[-110.8388483698073,27.977091693329953],[-110.83274777358162,27.97240999929039],[-110.82970782046891,27.969205230785064],[-110.82936267941062,27.965871863653206],[-110.82781221437085,27.96079455212572],[-110.82707224097345,27.955404631867168],[-110.82933378499024,27.956033487286277],[-110.84246091712583,27.954524401610115],[-110.84517011863608,27.953041652150773],[-110.84644536243002,27.957065090888307],[-110.84955353918633,27.959792301706216],[-110.8487259146562,27.961369377853373],[-110.85161780820624,27.960692331434473],[-110.85522981959224,27.95865809955069],[-110.8581223139949,27.96039753268923],[-110.85883453819497,27.965997392888937],[-110.86589700208646,27.966866016259303],[-110.86956706765272,27.9692716764539],[-110.86612066238217,27.968301712488255],[-110.85766093453884,27.966946387175994],[-110.8560929940453,27.964530025495662],[-110.85432673895514,27.966489255198383],[-110.85519154034267,27.967916091228176],[-110.86178477427387,27.970882216332427],[-110.85841345333631,27.971433294219935],[-110.85965042418718,27.97299052630956],[-110.86549502141548,27.974421467920592],[-110.85729822256735,27.9742181509817],[-110.86229467749843,27.977936952805294],[-110.8588330160776,27.97875179646718],[-110.86426804561353,27.980956900305728],[-110.86188471817678,27.981415887830337],[-110.85662110210757,27.97990781671666],[-110.8540687391457,27.977972352615666],[-110.85083569715573,27.977926747907418],[-110.84907555295683,27.98157812250247]],[[-110.82857068714708,27.955570327055398],[-110.828127862609,27.95463229998728],[-110.84487914379054,27.952846931991644],[-110.84239551829444,27.954187860444165],[-110.82857068714708,27.955570327055398]]],[[[-110.8564685918754,27.974214487014592],[-110.85997316830577,27.974047587077905],[-110.85748282301614,27.97073774269211],[-110.85546833152563,27.97302132083024],[-110.8564685918754,27.974214487014592]]]]},"properties":{"cve_ent":"26"},"id":"inegi_refcenesta_2010.11"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-106.46623420348686,23.222467190491727],[-106.46315862642166,23.224486322914743],[-106.4634595764607,23.227685513660845],[-106.46549257036185,23.226000291661194],[-106.46623420348686,23.222467190491727]]],[[[-106.4659670022391,23.23881156182364],[-106.46811418512908,23.23870456952858],[-106.4709166432828,23.23400291334457],[-106.4693442449572,23.232059021589293],[-106.46603381108508,23.23133357901395],[-106.4634314845066,23.227785474845973],[-106.46217119504502,23.230883693046337],[-106.4659670022391,23.23881156182364]]],[[[-106.47518103092551,23.25843097689983],[-106.47861389305132,23.25753887018402],[-106.48032506213042,23.252762978268322],[-106.47978746295576,23.25083565643746],[-106.47449100718711,23.250678371839342],[-106.47271822889059,23.25651778008961],[-106.47518103092551,23.25843097689983]]],[[[-108.37577722990255,25.15078164181483],[-108.37763945467867,25.152759881072598],[-108.37652312465127,25.14918952571918],[-108.37710709155874,25.14665291640864],[-108.37542298447778,25.144098779663693],[-108.37278263983518,25.142478660289953],[-108.37115072925303,25.143513874042185],[-108.3734992173932,25.144509196108572],[-108.3751127404359,25.147186006752293],[-108.37411016054517,25.14970081177478],[-108.37577722990255,25.15078164181483]]],[[[-108.36665691078485,25.1580806151174],[-108.3664288145128,25.16125461758628],[-108.36218285972075,25.166658668455796],[-108.36334068581317,25.16929874273626],[-108.36896125071439,25.163376633574273],[-108.37164004035827,25.157736237742256],[-108.3741509008322,25.15851606531453],[-108.37597894865496,25.162231841863957],[-108.37251734549625,25.160774102697587],[-108.37157038080682,25.16257656602852],[-108.37350892242705,25.16657228513236],[-108.37765334872535,25.16570330987372],[-108.38014701878404,25.16389684270689],[-108.37962187450256,25.157375554496866],[-108.3780211486968,25.154045215722476],[-108.37319709979334,25.152803813474463],[-108.37256566181316,25.14889000452149],[-108.36888132318046,25.149234099998353],[-108.3627468618725,25.151651474235678],[-108.35965069436298,25.153857347453823],[-108.35436002462387,25.162339092796003],[-108.35547355628535,25.162914052504107],[-108.35883404135308,25.158161707547606],[-108.3608549452253,25.157087528693637],[-108.36606825071146,25.15651280532677],[-108.36665691078485,25.1580806151174]]],[[[-108.38060449412791,25.17532647376987],[-108.37971587895277,25.177962446003562],[-108.38016794221568,25.18224439685207],[-108.38375207466822,25.1799298230041],[-108.3838129099986,25.17717048378705],[-108.38177274015158,25.17472926928309],[-108.38060449412791,25.17532647376987]]],[[[-108.23407312506413,27.034394457291228],[-108.23604482897849,27.03550636336172],[-108.23729950714812,27.03814236927377],[-108.24121869609502,27.041846041490146],[-108.24294056920888,27.042047993246058],[-108.24616657486547,27.03881066396002],[-108.25087030467137,27.040912455701744],[-108.25566865043311,27.036577494709036],[-108.2585856326304,27.035269108580394],[-108.26098816061483,27.03219943202265],[-108.260462886156,27.029324566906723],[-108.2630277156627,27.028949161316348],[-108.26232479555375,27.027590531366684],[-108.26552086614805,27.02587759203334],[-108.26673667703977,27.02636054882896],[-108.27313021295976,27.022493886506368],[-108.27474916675362,27.01819929750269],[-108.27879755499214,27.016163008549768],[-108.28160536899532,27.013165515301466],[-108.28601014204497,27.012470641025118],[-108.28929797120236,27.013935719820324],[-108.28979639728453,27.01446604822388],[-108.29081119568025,27.01737086885663],[-108.2893100435748,27.020745946611328],[-108.28891423235643,27.026579915265984],[-108.29313716850749,27.025376528786637],[-108.2982348403192,27.030258317401945],[-108.29928734661269,27.03220749575047],[-108.30162441136213,27.033262106304335],[-108.30338765989075,27.036620354227125],[-108.30742630310516,27.034852795272627],[-108.31013024257743,27.035483811844415],[-108.31747590658978,27.034111127054587],[-108.31867741706316,27.03067853235933],[-108.32271354710082,27.027665009669306],[-108.32305107498922,27.025526051059956],[-108.32598137301017,27.02049295294904],[-108.32471556112046,27.016781750982318],[-108.32261396018077,27.015280704502345],[-108.32202602295973,27.008936548124495],[-108.3249073524234,27.006206499773555],[-108.32761230288321,27.00773013803871],[-108.33211962377277,27.00473908029943],[-108.33499959323649,27.005237357074293],[-108.33937157367069,27.009996131032665],[-108.34099087183398,27.013670373933167],[-108.34764688356273,27.018360204121564],[-108.35010993213643,27.022554425970156],[-108.37163739563073,27.023011830099108],[-108.40964044963533,27.01340494749695],[-108.4111434667467,27.017780767183297],[-108.4148893346657,27.02071233644301],[-108.41945106232794,27.020482529484298],[-108.4220128653838,27.02154281768162],[-108.42524342020778,27.023955360467426],[-108.43353048979469,27.026465815460824],[-108.4371769356693,27.026663307676472],[-108.44310159973287,27.02949806493774],[-108.44806691665212,27.029179927126393],[-108.45479106635821,27.027035860508988],[-108.45827403777253,27.029667198179425],[-108.45895251025883,27.034619639798677],[-108.46430896273097,27.040099913497727],[-108.46550568286176,27.039914119949003],[-108.46952887001925,27.035874005726782],[-108.47022084023769,27.03449862306053],[-108.46994156659099,27.031282955057577],[-108.47193875951012,27.030598632182546],[-108.47362592504362,27.035417428044468],[-108.47399280412998,27.036982655207623],[-108.47551446821933,27.039945202632794],[-108.47772388975244,27.038829496743006],[-108.47828798408193,27.03890260910765],[-108.48102147196295,27.038334924954313],[-108.4817196304499,27.038007127994263],[-108.4854403057447,27.037615723308704],[-108.48614954014141,27.037154943124392],[-108.48775696481192,27.034050383261672],[-108.48747207102275,27.03370449327923],[-108.48703533484502,27.03253110316456],[-108.49173488110802,27.031380198050044],[-108.48684716909378,27.02954738335626],[-108.48512900969598,27.027069399373488],[-108.48350700817144,27.021154131031494],[-108.48417187279932,27.017438941077558],[-108.4869745360894,27.015344976479412],[-108.48880914723037,27.01627938682691],[-108.49730042758262,27.013408754830778],[-108.49779431154036,27.010423055066212],[-108.50159646467961,27.00805251370656],[-108.50086772915915,27.004437057631776],[-108.5030733529506,27.005006521264818],[-108.50377599598272,27.007045230805033],[-108.50625147873029,27.002903016670302],[-108.50448592428677,27.0023375011653],[-108.50185287631803,26.996280941758755],[-108.50418977332117,26.99243297834738],[-108.50248612035597,26.987357031622594],[-108.49954210406867,26.986279209253667],[-108.42982312076106,26.976972379034066],[-108.42427083549751,26.97622983378392],[-108.42878135693633,26.97564656552214],[-108.42889898507627,26.975631352312746],[-108.44349344886842,26.973743203480467],[-108.4669776767197,26.97070184775481],[-108.49247224744772,26.925931665463565],[-108.49280212835993,26.925352126376822],[-108.51772524267557,26.88154864752312],[-108.51942275077909,26.879008230971863],[-108.52004385670284,26.880233195337894],[-108.5225353804845,26.878156235291783],[-108.53311803661842,26.844393537793394],[-108.53761240544583,26.838114564644172],[-108.54574381886857,26.832021329876568],[-108.54704269827715,26.828556761776042],[-108.55480437588659,26.82632691570865],[-108.55762075987536,26.821970672213638],[-108.5578649205234,26.81731212467747],[-108.55535239588397,26.811584069855712],[-108.55000641818754,26.806929378607265],[-108.54593597171709,26.805404154956932],[-108.54184955416605,26.805446476621512],[-108.53685338706674,26.803131274056398],[-108.53691208986066,26.79842871017729],[-108.54190438284002,26.792865698155254],[-108.54839551744601,26.78876000273908],[-108.55046679144027,26.786422794625423],[-108.55140370329957,26.781678003485183],[-108.55147274233752,26.781535435953174],[-108.55403380697123,26.779856987732387],[-108.55681271962936,26.780318501387796],[-108.56477008156702,26.77848329691676],[-108.56815216397774,26.783259202862496],[-108.57304076404284,26.790160841331556],[-108.57520455872958,26.793216566939407],[-108.57824536620342,26.791254955059003],[-108.58084943727675,26.789576579559593],[-108.57747475224869,26.781061382040946],[-108.57598040168347,26.777764750817653],[-108.57874029806618,26.772687088798136],[-108.57803925961684,26.769148391339343],[-108.57812337926367,26.763624323832403],[-108.58038587592353,26.75959656284158],[-108.5819814202157,26.759026851206727],[-108.59383738232606,26.75916922386756],[-108.59453405325331,26.756951547913957],[-108.59569026642424,26.754379418318763],[-108.59885723856172,26.75030690422483],[-108.59721440251843,26.743223731398928],[-108.59795354403497,26.736096092488538],[-108.599487585953,26.730023669150512],[-108.60102395808349,26.7272225018952],[-108.61493639952505,26.726886171143008],[-108.61784751463426,26.724533269286894],[-108.61784820814654,26.724526337333543],[-108.61776191109396,26.72224588577444],[-108.62838499240252,26.71838712901814],[-108.63146610367005,26.706974048993118],[-108.63119688358421,26.701436832298725],[-108.63537469770267,26.69161733419213],[-108.63599431486273,26.690515361572864],[-108.63179835727652,26.687200433360942],[-108.62996824703487,26.680434534284927],[-108.6336977279617,26.67956847522595],[-108.63036636037089,26.676573447790986],[-108.640795092914,26.673705472288077],[-108.65768056502202,26.669129188605723],[-108.66147029936383,26.66452701241576],[-108.66368864586178,26.657898052294286],[-108.6665762082165,26.65374232954224],[-108.66726223528366,26.652601346831773],[-108.67443211443316,26.646713462611785],[-108.67454872006203,26.646615587733436],[-108.67898791436318,26.642889447215737],[-108.67928212478677,26.633999030297673],[-108.67911181272365,26.6163841859169],[-108.67870454131531,26.612545700023475],[-108.67882130405212,26.589020367298758],[-108.67883073226801,26.58701508555987],[-108.68974259898971,26.58702024462309],[-108.71059048291824,26.587057651466978],[-108.71074088948444,26.593627536255326],[-108.71346444033952,26.593495883202422],[-108.73400033233281,26.593564309537953],[-108.7559495897109,26.586794926317964],[-108.76114564676845,26.585076894712984],[-108.76199796575008,26.584785448385276],[-108.76332961354831,26.584332632195014],[-108.77659034277991,26.580109498211527],[-108.77643825366744,26.573501084168527],[-108.77845043122124,26.569950237691216],[-108.78258161183805,26.56946917473624],[-108.78521885992876,26.56805111444362],[-108.78772371608477,26.565255750632616],[-108.79551169786265,26.565627120408067],[-108.79721775923394,26.56784026279405],[-108.80387666307348,26.570564758127034],[-108.80642284717845,26.570603649346708],[-108.82478974302057,26.564745195447074],[-108.87315215418016,26.55107142694169],[-108.89136296072513,26.48985405630964],[-108.90270717376217,26.484320522433563],[-108.91466995338357,26.479540022048468],[-108.88817092307244,26.48011091552354],[-108.8567400077311,26.480515141561284],[-108.85065163438338,26.486362345778275],[-108.847479920019,26.48721745043059],[-108.84594561578297,26.484723836956448],[-108.83779506088445,26.4768571084889],[-108.83776201885593,26.472523305359914],[-108.85233317340715,26.46498764611789],[-108.85968441045333,26.459809936853333],[-108.86354972316849,26.457157921237695],[-108.87610763653038,26.447576437243754],[-108.86033955119916,26.432770155617902],[-108.88139244592048,26.406252480318926],[-108.91011501581784,26.42171451915226],[-108.90918497973013,26.4165852643456],[-108.91520811637639,26.410708871115048],[-108.91627807959253,26.40967743357453],[-108.93555122622041,26.391115713280044],[-108.93652230182647,26.390180260177488],[-108.94075292796765,26.390822947579295],[-108.94100533573521,26.390861293229136],[-108.95886779590165,26.393526286491124],[-108.98152133542965,26.3968442378457],[-109.0029781025097,26.399983562190016],[-109.00637347331201,26.402393527120182],[-109.02049942510547,26.392316224512513],[-109.04663250609184,26.37374700446611],[-109.04666277435336,26.37369564478496],[-109.05150980286044,26.370277391178774],[-109.05373280425846,26.36870437907578],[-109.05698564994833,26.36644562317008],[-109.05704558664132,26.366414332413058],[-109.057682429171,26.365986555450604],[-109.06586963704524,26.360149776231538],[-109.0681144666911,26.35855564939976],[-109.06994022291366,26.357261053151262],[-109.07314036718014,26.353992440636034],[-109.07620437627628,26.350137361050486],[-109.076551818511,26.347443123707762],[-109.07870916414271,26.34295565505954],[-109.08038417944437,26.341356411319282],[-109.08121822366104,26.337738980800566],[-109.08540549907241,26.336495184968726],[-109.08754144665261,26.330818512244832],[-109.08713304797135,26.326221743588462],[-109.09347895925794,26.32028009072701],[-109.09407583957812,26.317187195573865],[-109.09668035930417,26.312124438893136],[-109.10011273124542,26.312928591109937],[-109.10247059801816,26.31173509459626],[-109.11965674831339,26.303077576368423],[-109.12100792693707,26.298910171960927],[-109.12552372391372,26.296987932537434],[-109.12744797122497,26.29864881751297],[-109.12916345898918,26.29807725621049],[-109.12939200799491,26.2979308665673],[-109.13312374391421,26.29785877718058],[-109.1347994094553,26.30119951655621],[-109.14379945118014,26.30459951910916],[-109.15219950703806,26.307000007481122],[-109.15551312089764,26.30694981641011],[-109.15694137086109,26.305374366076194],[-109.15906656675298,26.306562953430955],[-109.1651026053184,26.306998988458247],[-109.16694742595348,26.310391980388317],[-109.17174436951177,26.311632394738183],[-109.17463340717626,26.314783056360625],[-109.17490784385365,26.315325987366748],[-109.17517847733671,26.315983727278535],[-109.17457896839602,26.318969563720998],[-109.1771934912149,26.31962303670889],[-109.17945739809045,26.322211874102777],[-109.1820351455795,26.32709180015746],[-109.18499404270221,26.328228773461603],[-109.18817079230763,26.332373599054392],[-109.18827880487675,26.332414096503328],[-109.19011546249624,26.33274856050599],[-109.1888387932816,26.334421791630632],[-109.1900357839483,26.337648619989636],[-109.19324036947478,26.340929857179674],[-109.19871932037023,26.3417302212232],[-109.20262087978796,26.344407943112003],[-109.20452138233406,26.341730697388755],[-109.20988612092822,26.34318932038377],[-109.21360588700213,26.339993825211877],[-109.21563945039094,26.334532267597183],[-109.23399986960419,26.324399550940313],[-109.24759782190688,26.315984660131278],[-109.25832413865083,26.319928432633617],[-109.25189163022355,26.312178261769247],[-109.26074693346504,26.302989113431522],[-109.27441806886003,26.29103077497325],[-109.28192039520422,26.28298556747643],[-109.28679936876972,26.279420729625542],[-109.28985195796332,26.27407588253385],[-109.29283136427262,26.251884406926365],[-109.29573024183401,26.23628398718722],[-109.29895052603234,26.226394126240336],[-109.3102875507114,26.202494687087096],[-109.31737966170658,26.189733269173587],[-109.33120642611954,26.167294901260732],[-109.3442557654385,26.146622433351524],[-109.35931580250758,26.124329179084157],[-109.37181818529172,26.10720613055753],[-109.38092182430273,26.095713242475767],[-109.38402810781162,26.09054239977172],[-109.38645715566588,26.088023037269295],[-109.38796477703931,26.08833855905914],[-109.39682709311415,26.075392717869704],[-109.40000728411934,26.069506010881526],[-109.40375019714378,26.064065650950397],[-109.40831598005514,26.058497685180555],[-109.41114237354452,26.050852097625295],[-109.42018379433438,26.03263763584448],[-109.42308647107762,26.024541482287134],[-109.43023049880452,26.008058407388546],[-109.43455890236203,25.9994259959675],[-109.43735732381361,25.987819967148994],[-109.44131411212862,25.97481927101086],[-109.44586668755,25.957160908611684],[-109.44590445424217,25.954536158683027],[-109.44459431688,25.95197975066776],[-109.44504521537004,25.949953684749744],[-109.44769260311949,25.948987965640754],[-109.44412609680103,25.93961471274588],[-109.4439570124548,25.937437430892544],[-109.44028436012621,25.92347006942481],[-109.4371939235375,25.9167280988961],[-109.43459727211643,25.912232115508345],[-109.42666543127069,25.902631106509148],[-109.42381867044816,25.896233074677525],[-109.42113286958681,25.893893493275698],[-109.42309897587631,25.88604323431366],[-109.42062818823996,25.881478061120276],[-109.41914098130519,25.87396455918588],[-109.42014677211228,25.862758146002818],[-109.42208963541628,25.850330662580063],[-109.42509484030126,25.83586195606324],[-109.42701689807899,25.828932532418435],[-109.4283868276487,25.820311749954556],[-109.43119006665319,25.81351181281849],[-109.43337176230779,25.811671439021836],[-109.43360333480268,25.80940939177242],[-109.43009058298674,25.801137581016576],[-109.42959426208466,25.79829511874766],[-109.42574909589337,25.787744746817964],[-109.42332462417352,25.78254617067705],[-109.41827480580764,25.774437516357466],[-109.4124807650665,25.76203036124548],[-109.40964935699105,25.75475190299835],[-109.40668667844199,25.743774523306513],[-109.40517431842164,25.73601465027241],[-109.40307067161689,25.717199309277817],[-109.39984478231827,25.70050638126088],[-109.40011015043535,25.689525021275983],[-109.3997066272762,25.6853979085256],[-109.3973035148739,25.68098457670311],[-109.39248605331943,25.67707243201403],[-109.39050000062218,25.669599997615137],[-109.39119660413877,25.654269686868247],[-109.39214800742013,25.642822379107145],[-109.3981583049486,25.638682514746165],[-109.39343737897536,25.6372594002367],[-109.38351188235328,25.63773609666538],[-109.37642883804136,25.637241958064067],[-109.37015412300457,25.638187015482345],[-109.35980000059504,25.640999997742256],[-109.35023075912989,25.644067052958803],[-109.3410943491001,25.646130521489056],[-109.32912133514463,25.647322501445785],[-109.30480000055223,25.645999997956267],[-109.29090000054157,25.644699998007354],[-109.27686238220377,25.64214645206232],[-109.26545414722318,25.639245417544828],[-109.25104432496846,25.635223453136746],[-109.23183910379942,25.628584536469873],[-109.22546429471862,25.626089508387054],[-109.2155350250494,25.62116854305583],[-109.20474750497885,25.613755427445028],[-109.1918150192887,25.603665417415414],[-109.18490000046404,25.597699998360156],[-109.17770000045886,25.5899999983817],[-109.17480000045674,25.58629999839053],[-109.16798617371882,25.574449387404513],[-109.16476750182409,25.567121607237823],[-109.16293334184849,25.560825791357274],[-109.11922312711641,25.544999313102437],[-109.11748234924153,25.541643598756025],[-109.11200651160004,25.53760508376621],[-109.1049554257254,25.529212498969173],[-109.09387393597888,25.518501832347965],[-109.08427011792537,25.50834094959481],[-109.08077461114374,25.501979875555435],[-109.0808821727141,25.4983856063061],[-109.07963091644592,25.496038672310135],[-109.08084034564638,25.493449701665327],[-109.07511904603513,25.489593155209434],[-109.06922990402785,25.487669934410462],[-109.0647397149653,25.484625354000855],[-109.05384058292293,25.47211407232652],[-109.04696700350695,25.46611724016003],[-109.0410480364805,25.462574018577584],[-109.03639753570775,25.46217994691301],[-109.03458769917512,25.459406088964727],[-109.02596480397847,25.44327726156058],[-109.02524883385735,25.440035010722454],[-109.02043633973261,25.43773495279987],[-109.01552560157978,25.437170941158],[-109.00158068340335,25.436574917107805],[-108.98550000033885,25.435099998873852],[-108.9750576355384,25.433411183909357],[-108.96272367635129,25.431749727507054],[-108.93703178473072,25.42694319258834],[-108.92775360732105,25.424921169704817],[-108.91120000030116,25.420599999024546],[-108.89490000029338,25.415099999054917],[-108.88380000028809,25.410999999075216],[-108.86830000028078,25.40469999910266],[-108.83741381861557,25.389659081416767],[-108.82463879139186,25.382366618812114],[-108.81167959763968,25.376294966766636],[-108.80588569267297,25.373042842401446],[-108.80006427153074,25.368689781486182],[-108.79807433578577,25.369623807331834],[-108.75121079856035,25.368510490941276],[-108.74565529865146,25.364629118389928],[-108.73995238949135,25.36343951101378],[-108.72721760640457,25.36178751677653],[-108.68984593853276,25.354564145742586],[-108.67582934873576,25.351048010483396],[-108.65211044234485,25.344172506086977],[-108.6296428927559,25.33690291503342],[-108.6050832545136,25.328312343649543],[-108.56915296491303,25.314817433894007],[-108.5502869601811,25.30678814948834],[-108.53479854964326,25.299092692117256],[-108.5247329591964,25.295300965558397],[-108.49566884587733,25.28256711839481],[-108.49484363013033,25.280671981012688],[-108.47290364125524,25.27098921649076],[-108.45028158711511,25.256603598430274],[-108.44401267635396,25.251615014838194],[-108.43507662856689,25.243602163320247],[-108.42877725477348,25.235800208390117],[-108.41055085929736,25.214496333195882],[-108.40378204704098,25.20691362553623],[-108.39884555173069,25.200407984348715],[-108.39620189898693,25.194703233675398],[-108.39589310236084,25.192735522769397],[-108.39059178575548,25.19033447974988],[-108.38704358238914,25.185295067652476],[-108.38462495098918,25.187302502951013],[-108.35745287895139,25.169193837400655],[-108.35814583152876,25.167281676719995],[-108.3558097170307,25.165962510794145],[-108.33422987620611,25.124512054029594],[-108.33865600911162,25.12274336080128],[-108.33961422935835,25.1155505199672],[-108.33506930189276,25.10979488280708],[-108.33245923272466,25.10568782569493],[-108.32756881056173,25.101504263278457],[-108.30672357504142,25.090146454539763],[-108.29707320509169,25.084255332399607],[-108.28693130649344,25.07709452624232],[-108.26842887125173,25.06203683826334],[-108.25730101011516,25.052111417554215],[-108.24952468372953,25.04473291388979],[-108.23957960774447,25.03453163859666],[-108.2325361557356,25.026492883358856],[-108.2243707413387,25.01579388958828],[-108.21922443658679,25.008241947141926],[-108.21195342098491,24.995746392633862],[-108.20852935174315,24.98897051407323],[-108.20123777215707,24.9767799561439],[-108.18889878832897,24.95899505439843],[-108.17569659141986,24.937311388447824],[-108.16611870235658,24.920450142441837],[-108.15398507966023,24.90001163213384],[-108.13621181767326,24.871684754152056],[-108.12685894303394,24.851812074591805],[-108.12387191856902,24.84244508518708],[-108.1243977206039,24.836722315833356],[-108.12349263403377,24.83248712735383],[-108.12175823313942,24.82947797688456],[-108.11865490893183,24.82694759114753],[-108.1065746904971,24.820276616959006],[-108.09332695084476,24.815227527015907],[-108.0899675093026,24.814729574058617],[-108.06991126499167,24.78514102716548],[-108.07189757232157,24.78028640734999],[-108.0685446548452,24.777385053808246],[-108.04787164718817,24.762743303441596],[-108.03504272547639,24.750498718257404],[-108.0232130252457,24.736286778058854],[-108.01789798884681,24.726518746877275],[-108.01638033950479,24.71969356612533],[-108.01653642159062,24.712315565065296],[-108.01825398898916,24.70854144066044],[-108.01917519374854,24.69877759349606],[-108.0181348067797,24.68157690787058],[-108.01404616251574,24.6733657556008],[-108.0092090828997,24.665260611948895],[-108.00392860341583,24.6580266933056],[-107.9991633958723,24.652871100378093],[-107.98688342771896,24.641426966656184],[-107.97436528293667,24.63198629691118],[-107.95045077932065,24.61566604819876],[-107.9384752082741,24.607952032386663],[-107.92222272384168,24.598410016756077],[-107.90140935650169,24.586923749782386],[-107.89499674781098,24.58433830553139],[-107.88562069233478,24.580027303259556],[-107.88141290302269,24.57880770459218],[-107.87531580946444,24.57340616759336],[-107.87264287966991,24.570006982254256],[-107.8650708879876,24.566717371711547],[-107.84454857959832,24.55529147325626],[-107.8393369978931,24.551178445587254],[-107.83352148989962,24.544280243626815],[-107.83092810198167,24.540315797573953],[-107.830137466086,24.52974129170002],[-107.8291254401949,24.527149601171857],[-107.82845554942725,24.521483783474366],[-107.82313286252082,24.522419191842744],[-107.81050943833691,24.51008476157432],[-107.81291230488347,24.507119478579853],[-107.81277634734721,24.503266072821816],[-107.80928587786042,24.49632519486198],[-107.80612106909552,24.492691574063258],[-107.80008492828779,24.48799910811499],[-107.79569461327526,24.485473144269804],[-107.77976606198672,24.47984150461417],[-107.77498687864744,24.478373229066108],[-107.76622508251126,24.474728706010865],[-107.74711231339376,24.465532067574998],[-107.7271657959273,24.454492267516514],[-107.71259278464629,24.44594706921714],[-107.67956324716994,24.425749293639967],[-107.64944950747633,24.406995511327636],[-107.61909250609119,24.387588426587513],[-107.58654717623654,24.366295872277533],[-107.55569999995947,24.345799999755343],[-107.54232367519393,24.337401329338434],[-107.5133999999531,24.31819999974158],[-107.48779999994917,24.300699999732274],[-107.48020153981065,24.29512349368548],[-107.4750098079083,24.292200288732374],[-107.4705543408657,24.288062173233925],[-107.45929999994485,24.27949999972094],[-107.44010022640413,24.265579865418317],[-107.42303745889313,24.251693602402383],[-107.41670233371508,24.245671209863588],[-107.41437096682807,24.245128226480347],[-107.41083415239973,24.24166220178182],[-107.41096040354057,24.23837188112111],[-107.40748219674168,24.233560696175516],[-107.39542363440574,24.226107165370365],[-107.38594337426218,24.22094837205674],[-107.35138768718434,24.20135748451645],[-107.33021912982338,24.189190198643757],[-107.31075676440634,24.176716338863457],[-107.30378684463398,24.172633153301717],[-107.28812568310758,24.16243229586121],[-107.27137199299085,24.151181408484604],[-107.24334804218614,24.132750383657537],[-107.23057320418059,24.124784984788164],[-107.21915071426503,24.118067057814358],[-107.20713583196442,24.110359875851486],[-107.19953360720928,24.10684892194024],[-107.19399192740804,24.102000177141292],[-107.19540150423029,24.098190265627238],[-107.19480148527668,24.09638365281927],[-107.19002977487492,24.09154391624577],[-107.18375945320417,24.087091173225076],[-107.17499803134103,24.081887931707456],[-107.16767497355767,24.07681418076362],[-107.14689999989275,24.061599999529278],[-107.13839999989119,24.05499999952218],[-107.08299999988071,24.011199999471785],[-107.07709999987952,24.00679999946624],[-107.07199999987853,24.0022999994614],[-107.05579999987538,23.989699999445236],[-107.03559999987141,23.972799999424524],[-107.0256999998694,23.963999999414227],[-107.01159999986652,23.952799999398962],[-107.00639999986544,23.948199999393182],[-106.98599999986135,23.92949999937042],[-106.97479999985899,23.918499999357493],[-106.96239999985647,23.907499999342804],[-106.94829999985342,23.894499999325888],[-106.93809999985137,23.884499999313164],[-106.92823250470514,23.875302922766025],[-106.92219999984792,23.868999999293123],[-106.90339999984377,23.85159999926867],[-106.89329999984164,23.841699999255127],[-106.89089999984105,23.838799999251933],[-106.8883999998406,23.833399999248513],[-106.88588724142738,23.823452674761597],[-106.88500522905542,23.816057644050204],[-106.88505926358152,23.811919611043834],[-106.88313299735518,23.807655619551838],[-106.8826041085623,23.80295386802561],[-106.88378358200896,23.801009261319564],[-106.88203916868298,23.79577328496714],[-106.87319245544955,23.78768080558706],[-106.8679913347745,23.78186997789652],[-106.85845290413346,23.769901506956387],[-106.84772326569845,23.75925956537634],[-106.84478099636885,23.755267223138162],[-106.8431161607445,23.75088191555284],[-106.84439999983215,23.742599999185927],[-106.8470038476894,23.740091405842406],[-106.84118635049475,23.735471204151622],[-106.82234783224396,23.718076732699615],[-106.81538542411954,23.71013498039298],[-106.8124987839974,23.7063417512677],[-106.80916719029915,23.700008464081463],[-106.80357822517755,23.69484623394976],[-106.79652714593675,23.684113176957567],[-106.79435408239834,23.677866819263727],[-106.79505560705604,23.67170505715592],[-106.79655185289147,23.668186590685934],[-106.79900958132032,23.66596180068393],[-106.80189923634236,23.665945074644526],[-106.8029946187134,23.668177632730476],[-106.80448944705358,23.667136516362973],[-106.8033777708792,23.66541867264499],[-106.80430506796426,23.660429117517197],[-106.8052385902227,23.659465412550503],[-106.81040096287995,23.659087024787596],[-106.8115999998264,23.658099999136027],[-106.8100810808694,23.65172242897586],[-106.80646918284617,23.648001293042228],[-106.80446208312799,23.647203501838135],[-106.80209999982418,23.64819999912106],[-106.79369999982214,23.64319999910788],[-106.78896857815613,23.63935156112808],[-106.7893253611391,23.637568690117234],[-106.78719999982059,23.63709999909736],[-106.78478430955909,23.63469898545401],[-106.78441491914396,23.63164124470859],[-106.78119999981925,23.631199999087585],[-106.77126567999665,23.624016896928083],[-106.7687805462636,23.621456323775988],[-106.76417477786521,23.613223622086366],[-106.75359999981242,23.609099999041746],[-106.72915880965303,23.595157324639388],[-106.7043999997997,23.577599998954497],[-106.69939999979829,23.573499998945124],[-106.693899999797,23.567799998934845],[-106.69057997096974,23.562011830734605],[-106.68794009456622,23.5604572030648],[-106.68509999979477,23.556799998918166],[-106.68388151096025,23.553534505001835],[-106.68582102371971,23.55021244288173],[-106.68398489082148,23.546141044227397],[-106.68201692922571,23.543892720199096],[-106.68175972553092,23.540591407223587],[-106.67709116450123,23.53888986212303],[-106.67220000000066,23.53539999994831],[-106.6696849554379,23.53226546217394],[-106.65949999978847,23.524399998868205],[-106.6532999997869,23.518199998855778],[-106.65119999978634,23.51759999885161],[-106.64599999978486,23.51419999884098],[-106.63639999978221,23.50599999882138],[-106.63029999978062,23.49899999880887],[-106.62754927007762,23.496920614352234],[-106.62628089280179,23.491956759397453],[-106.62849999978039,23.491299998805005],[-106.6301999997811,23.488199998808398],[-106.62929999978087,23.486499998806664],[-106.6294978337761,23.481635267920637],[-106.6263215538824,23.477702118121385],[-106.62309999977936,23.477699998793526],[-106.60581965791943,23.46259240591513],[-106.59774380607843,23.455280582833723],[-106.59378189812054,23.45047588829908],[-106.58709999976946,23.444699998715407],[-106.58169999976792,23.44109999870335],[-106.56969999976445,23.431299998676025],[-106.55289599202104,23.416034124344776],[-106.54469699315308,23.40818140301633],[-106.53709999975518,23.400399998599312],[-106.5287805399766,23.39112276516221],[-106.5239079812784,23.38507621666389],[-106.51649999974944,23.37459999854866],[-106.51255486064304,23.368390490603133],[-106.50939999974759,23.36439999853087],[-106.50419999974605,23.358899998517757],[-106.50238045923686,23.354084464804828],[-106.4946255699337,23.346065351752827],[-106.4903297158757,23.338449450656583],[-106.48690091210102,23.335512406698115],[-106.48358272378516,23.331268636988455],[-106.480792302118,23.325733035087637],[-106.47976054182448,23.316921169584248],[-106.48101841589533,23.312702679675397],[-106.48323057272711,23.30911587595756],[-106.48910053018125,23.30740124212332],[-106.49114364577099,23.30849386910478],[-106.49326944908944,23.30788782322179],[-106.49408052858439,23.305896066278194],[-106.49319932868184,23.303558245650095],[-106.49175864960847,23.30404421391944],[-106.48666463965623,23.299623593755484],[-106.47990008568672,23.292600166113516],[-106.4720134874699,23.283368403231236],[-106.46819592292997,23.27675008255642],[-106.46620142031816,23.269903049456616],[-106.46814869580356,23.269140723348244],[-106.46853987283095,23.26653186224155],[-106.46684448855791,23.265393437454406],[-106.46650488811599,23.260608467502607],[-106.46267164322279,23.2579770091005],[-106.45732151928405,23.25216025724427],[-106.45625458824304,23.250195888520636],[-106.45444509854752,23.243503034869775],[-106.45268658520939,23.241436485059353],[-106.4485200934306,23.239842489556338],[-106.44643850322245,23.237758955688207],[-106.44314628705797,23.23714019207881],[-106.4362227837874,23.232877485291624],[-106.43051752098819,23.228229274188095],[-106.42627072795,23.224129543052925],[-106.42296665665737,23.219072348482257],[-106.42145106129863,23.213962745881133],[-106.42339113846413,23.20856234037859],[-106.42546170807839,23.207649601810317],[-106.42604772277753,23.209605323208507],[-106.42908779077487,23.208303394611562],[-106.42887746387504,23.20487142847378],[-106.43087030396845,23.201213311628806],[-106.42773017912839,23.198488970303117],[-106.42659023626845,23.19599403913179],[-106.42831015949764,23.193605394092856],[-106.42823511311445,23.189507996042835],[-106.4251817341044,23.187637020887394],[-106.42493946837567,23.184523936034907],[-106.4265789171572,23.184085198873845],[-106.42815457540974,23.178604499431287],[-106.43017366569313,23.177046955535275],[-106.4246454033592,23.17716918411685],[-106.42400361628086,23.17955480786395],[-106.42028589420818,23.179456287260734],[-106.4183315782766,23.17789500449419],[-106.41578605995022,23.179025230023342],[-106.41401869730174,23.178111593701374],[-106.41191146412473,23.179987337241243],[-106.41356947009484,23.181717934124435],[-106.41163139148836,23.186498271909784],[-106.40845832108715,23.18731583744386],[-106.4034276525162,23.186506633826298],[-106.3940077276892,23.18270676843258],[-106.38681177609237,23.177746801362446],[-106.34918293690754,23.147073924472124],[-106.33352715213238,23.133955089669314],[-106.3198362687233,23.121621267166233],[-106.31337742189811,23.11544138572731],[-106.30217329557138,23.10386831956731],[-106.29730526587593,23.098013447786172],[-106.29219864154925,23.092686226090564],[-106.27923568873808,23.083889826431573],[-106.26756082828831,23.075657037160624],[-106.25530140482738,23.066508628127508],[-106.24539631703544,23.058407811222196],[-106.23646538753019,23.05065620079756],[-106.21258047826234,23.028839510010812],[-106.18791759519297,23.004895119529806],[-106.17478796054331,22.991707902433177],[-106.16184591790477,22.978120143186857],[-106.14745520403301,22.962702011880992],[-106.1351172898116,22.948840919003203],[-106.12561411854722,22.938669138411683],[-106.1083010318743,22.919402527052796],[-106.09220528746795,22.90084389088304],[-106.0625238088528,22.867021751399136],[-106.05731507568117,22.860636676263482],[-106.04827408370346,22.84860575961477],[-106.04197879434167,22.839803812110574],[-106.0395544186959,22.835753272608542],[-106.03780117172704,22.835276331717125],[-106.0354689847722,22.832155267108078],[-106.03346180686236,22.831473617740357],[-106.03449097898721,22.829713245436608],[-106.02793685723799,22.83164521071592],[-106.01184751895357,22.82202800763264],[-105.97965933961575,22.801333900754912],[-105.97452689449796,22.79753511653564],[-105.96401437710426,22.79060295078756],[-105.94613330576158,22.77660870747974],[-105.93431845568364,22.766744973102163],[-105.91791572377588,22.75242861372402],[-105.90445417153035,22.740247237271035],[-105.8898038721386,22.726055100361634],[-105.87086269012917,22.708446671142383],[-105.85972763678456,22.697463924410044],[-105.84391747847553,22.680576775515533],[-105.83515558144637,22.670363049902164],[-105.82168147878127,22.654023146759982],[-105.81402944178774,22.643899998851225],[-105.80289899578054,22.627830585577783],[-105.79608763879503,22.617282095960547],[-105.78624023687559,22.600952421836155],[-105.7740291244391,22.578050242745007],[-105.7693199336486,22.567594320585272],[-105.76550064746209,22.55651346847793],[-105.76398270276809,22.554633053113037],[-105.76261077252951,22.550598111394493],[-105.76022136225248,22.550076514109662],[-105.7575861126719,22.54145892959633],[-105.75829524287269,22.537676969693393],[-105.75608779750212,22.537849146311032],[-105.75293863747947,22.540859992902085],[-105.75021208259795,22.539336081615374],[-105.74617240708415,22.53290273977069],[-105.74378548917122,22.526863324484054],[-105.73977983488277,22.520154760416744],[-105.73809408351502,22.514840248146356],[-105.73707541104369,22.514416293482952],[-105.73540774575628,22.50994953291871],[-105.7315663525643,22.50286085131893],[-105.72771712798789,22.4924384910737],[-105.72423308554687,22.48712371935443],[-105.72039603637955,22.483120573529675],[-105.7171087735419,22.47825498753525],[-105.71411626518011,22.47494605825517],[-105.70818224780038,22.472041089937363],[-105.70474254717351,22.46929306900779],[-105.70118725236819,22.467690181449655],[-105.69647136959543,22.468240057285925],[-105.6928378832202,22.467230956319554],[-105.68559714741156,22.467568474886264],[-105.68352122938751,22.46715944728993],[-105.67703580229346,22.46813510588794],[-105.67264931275292,22.47409498161386],[-105.67110577915662,22.481562417869497],[-105.67430876438954,22.496464000319975],[-105.67438241800289,22.501523528691735],[-105.67523487083469,22.50720038698381],[-105.67715424188333,22.51292760439219],[-105.68387144146533,22.525427069530508],[-105.68512795039635,22.528798063277577],[-105.68767586215341,22.532626782913496],[-105.68907509151194,22.536485648729013],[-105.69173208557226,22.540536925826075],[-105.69303869427836,22.54517353735548],[-105.69700687517388,22.55076718224177],[-105.70044206286303,22.558455900546278],[-105.70048146679409,22.56191500451291],[-105.6985617088771,22.568380717907644],[-105.69480052778732,22.567978556913204],[-105.69004983368762,22.56838913938344],[-105.68748217398291,22.571890553660182],[-105.68174546938207,22.572189108988766],[-105.67639990243873,22.576785364428986],[-105.67415602922404,22.575756007722646],[-105.66997004577593,22.57688120814595],[-105.66678702354204,22.57956259858082],[-105.6654331980805,22.58366031711205],[-105.66356823149891,22.58544968447211],[-105.6621313456767,22.584679388613722],[-105.66056203781682,22.58636298721666],[-105.65732384764146,22.583533852956464],[-105.65538707739478,22.583735836095286],[-105.65386274581027,22.581129609440154],[-105.65057171930033,22.579469758409346],[-105.63971240502298,22.576887002612523],[-105.6421861962308,22.582929128189505],[-105.64316965389958,22.59007299380056],[-105.6421584123683,22.593888639541603],[-105.6340293906922,22.593466368816905],[-105.6305575350296,22.592324740664537],[-105.6314086353886,22.588753771895654],[-105.62203646343772,22.571425527647136],[-105.61766898716553,22.568238265949333],[-105.61211262633861,22.56815897643787],[-105.60630065454131,22.56400641552409],[-105.6053507650152,22.561166182667137],[-105.60047657907859,22.55888780382071],[-105.59986103647014,22.546549034393365],[-105.60012955850283,22.54376666251858],[-105.60163557086975,22.542547677615687],[-105.59828823005614,22.536671131438197],[-105.59173253704245,22.535825439555424],[-105.58990774085959,22.533771024086434],[-105.58389317336622,22.53348422532872],[-105.57595113218275,22.535149757443435],[-105.57619051276521,22.538021491913526],[-105.57364433301825,22.539251168881435],[-105.56038174781912,22.53729823342826],[-105.55251692934667,22.539126773185217],[-105.54167593852668,22.53653688251029],[-105.53993477470112,22.53559333840468],[-105.54003835913733,22.531326555848636],[-105.53835728661892,22.530224539275878],[-105.53359632824595,22.51503122806264],[-105.52958424024695,22.515958801114607],[-105.5293695242853,22.518907979978792],[-105.5219380686089,22.520995280454883],[-105.51729476516874,22.52018307162365],[-105.51582462923608,22.518026270086636],[-105.51342232639666,22.518484982993584],[-105.51317435271955,22.51702209144827],[-105.50956657970437,22.516962712042186],[-105.50317935396816,22.52768185612348],[-105.50267631085069,22.525593683016723],[-105.49319803243031,22.52342245067132],[-105.49318070639976,22.520279817295375],[-105.49201565938296,22.51944837797589],[-105.48379648842939,22.517712811805097],[-105.48066135402541,22.51392998132053],[-105.48070167259112,22.509950721064286],[-105.47847355302196,22.505064412603815],[-105.47485261994422,22.50545824120593],[-105.4740602979117,22.502900425333223],[-105.47081044447447,22.505630563642228],[-105.46644832417059,22.505387873854318],[-105.46236719081548,22.51074122822655],[-105.46083680677123,22.508568102929246],[-105.45867487410766,22.511153748504057],[-105.45673120122802,22.516295875776848],[-105.45353605761727,22.51942680531772],[-105.45053238371042,22.51969104494293],[-105.44491888366747,22.52157906831968],[-105.44172469353828,22.524268425329467],[-105.44208076607072,22.52711824758694],[-105.44398452675938,22.528728529239345],[-105.4433976063844,22.53060323650874],[-105.44082810196761,22.53101381118165],[-105.43629462698448,22.5383214913399],[-105.4368165587565,22.540742683127405],[-105.43540548132881,22.54467530340162],[-105.4346255338508,22.549984195611557],[-105.4376513425384,22.555739625698607],[-105.4355030872158,22.56039245762969],[-105.43704497547873,22.561611470387277],[-105.43872758754299,22.56523626112704],[-105.43751054350344,22.57085368205543],[-105.43801494460627,22.577703222583636],[-105.43693045720096,22.581907399549095],[-105.43906019881797,22.58788530226667],[-105.442320203581,22.5903644612859],[-105.45237007204571,22.595323629240966],[-105.45598640705015,22.598739086090745],[-105.45489017353373,22.60433097722307],[-105.45157906490886,22.608318699617712],[-105.44811138163391,22.610122819291973],[-105.44856336851865,22.614548159453477],[-105.45016448801431,22.62013079404437],[-105.44947113512677,22.623272937309025],[-105.45045862233377,22.62675548162224],[-105.45226262635089,22.627076660967248],[-105.46871959837546,22.625078314223174],[-105.47235609827783,22.62650390689322],[-105.47419889047347,22.6328107344375],[-105.47135283291539,22.636448692773683],[-105.46936785436009,22.64143683262256],[-105.46741507687034,22.642438281863463],[-105.46485551555764,22.646108828362173],[-105.46039093491027,22.647549941693796],[-105.4605567895212,22.65123040897214],[-105.46237352846288,22.656904774238114],[-105.46396310361075,22.65923830597609],[-105.49806384576584,22.651390756097555],[-105.51151231464002,22.685249302691204],[-105.5136941305555,22.69379073411841],[-105.5228934592825,22.724334798734617],[-105.52079860282379,22.729415215783433],[-105.51526282975368,22.739469898308073],[-105.51408222595444,22.759328439809053],[-105.51936820057142,22.759002266111054],[-105.5231947696696,22.77307532124155],[-105.52435547970214,22.77564693747064],[-105.52258137963838,22.775566267534487],[-105.52117160017968,22.77267953098641],[-105.51980919828458,22.7730453113046],[-105.51923600115475,22.776028212722565],[-105.51658152260745,22.779923864942248],[-105.51897416480534,22.784068822189],[-105.51655534699546,22.784453535676903],[-105.51444238218664,22.7867966102159],[-105.51499417613337,22.787875759853478],[-105.5120748569143,22.788788500322994],[-105.51144468482522,22.790909984279665],[-105.5085846866632,22.79340671642035],[-105.51130530918226,22.794043649557864],[-105.51118203815003,22.796910487608898],[-105.50665149987628,22.7975682468242],[-105.50521135646551,22.803354208407825],[-105.50628613564334,22.804163807365626],[-105.50495344224947,22.806512722529703],[-105.50278633735246,22.806315484583195],[-105.50240927833397,22.809776791909087],[-105.49978205504499,22.810778726395938],[-105.49496886489186,22.810518892329867],[-105.4949022452974,22.812984233881195],[-105.49628638166303,22.814583986179343],[-105.49356099783961,22.814953428559136],[-105.49575852363319,22.817793505755105],[-105.49285176281467,22.82135727759379],[-105.49321064955933,22.82633680183278],[-105.49019240348656,22.824442423150288],[-105.48762547609573,22.826938695063518],[-105.48878301429238,22.829607975886745],[-105.486802075794,22.830692189685692],[-105.48825224924474,22.832342572984658],[-105.48588413491115,22.834693567532838],[-105.48693669600834,22.839447614468895],[-105.48135142360627,22.84219989016617],[-105.47917783631033,22.841991966965395],[-105.47856652758873,22.84634543925455],[-105.47662282310807,22.84770594322788],[-105.47682634189988,22.8500543804098],[-105.4745886296987,22.85141601539823],[-105.47742497760345,22.854208417877942],[-105.48358203563237,22.85743460624849],[-105.4842012903527,22.858702969842682],[-105.47533286729481,22.880624434056017],[-105.4712199095892,22.88328595554418],[-105.47408803263295,22.88877202853405],[-105.49818492038054,22.933477751622092],[-105.49610424777904,22.93422183633612],[-105.50126392758119,22.958560041140174],[-105.45331134636837,22.977401796121114],[-105.43259456366155,23.023968803886874],[-105.40895033608712,23.023640811101757],[-105.40913506174581,23.026920160301415],[-105.4106155968534,23.027205947812604],[-105.41168242580045,23.030362165833196],[-105.41154955946172,23.0346131436753],[-105.41316181634596,23.037054753455607],[-105.41012517852329,23.039082267428],[-105.41156783222749,23.041163915325058],[-105.40994730040745,23.043673117636217],[-105.4120491181443,23.04827085274445],[-105.41135219940941,23.051732007447185],[-105.4120877346092,23.053732482215594],[-105.41040251171069,23.06009575223794],[-105.41308877110623,23.064634401540218],[-105.41219715867567,23.06780541358586],[-105.41377843378137,23.068947235336964],[-105.41299649545414,23.07409920182863],[-105.39224539040015,23.084081987575132],[-105.39231363223729,23.085331441746007],[-105.39579795055073,23.086489119065334],[-105.39926057376113,23.089276016265444],[-105.39901605088272,23.09181356932538],[-105.40097078676558,23.095129820032696],[-105.40034869861557,23.100013184699264],[-105.39879553045296,23.102210946675598],[-105.40141915455416,23.103476719409173],[-105.4079362189978,23.102953954000952],[-105.41311242511244,23.109528110271526],[-105.41324266653197,23.113055933678595],[-105.41589235759312,23.116897342303787],[-105.4197673274453,23.11752844887576],[-105.42442738043832,23.12029232585354],[-105.43054851203351,23.11997387092424],[-105.4340808588966,23.120461437904794],[-105.44036619514799,23.11669645425286],[-105.44514320712545,23.119163671357285],[-105.44618796651389,23.11962928334998],[-105.45153912072675,23.118835044071545],[-105.4553191863605,23.11733566903689],[-105.47467575424832,23.121993735197236],[-105.50197815580185,23.12801163635845],[-105.50403374815357,23.127729419762034],[-105.50777451416013,23.125062467198006],[-105.51236503044981,23.12515779187845],[-105.51388073781288,23.124022720716425],[-105.51668301439622,23.125027455671216],[-105.51915741747729,23.124365372762327],[-105.52116206394783,23.122242376416523],[-105.52510861212534,23.119888713694195],[-105.52749740181423,23.11994338888178],[-105.53121628989732,23.118061327039015],[-105.53245266249672,23.115135299147425],[-105.53162363543078,23.11336304809589],[-105.53413289462355,23.10992192089992],[-105.53744444502735,23.107647714952236],[-105.53707398393186,23.10454107003227],[-105.53962974097846,23.10356452434229],[-105.5419153007058,23.104440835132266],[-105.54756683227396,23.10329177880942],[-105.54861212722642,23.10441770048709],[-105.54928376836176,23.10047333273826],[-105.55099634466978,23.099193130465324],[-105.55506757623198,23.098990729959212],[-105.55825427089968,23.101830298043183],[-105.5589408243901,23.103688512465],[-105.56305582475858,23.10498171585857],[-105.56569056279216,23.10830476850532],[-105.56934276512862,23.110057503046676],[-105.57104972558056,23.108691395645053],[-105.57016826612232,23.106717919748576],[-105.57388529999378,23.106197670453014],[-105.57537674437424,23.10496689080435],[-105.57621683343956,23.10758389467628],[-105.57518903312388,23.11017936442522],[-105.57814988958575,23.109066332305076],[-105.5797663006548,23.109321583856],[-105.58340203876281,23.112300353717558],[-105.58424808580912,23.112860307983055],[-105.58642726452223,23.111209157162193],[-105.58779157408276,23.11081801254062],[-105.5886241005665,23.11021983817352],[-105.58920929380542,23.109744730986847],[-105.5903274443117,23.10929372734546],[-105.5945653235346,23.11116691857586],[-105.59764086075603,23.1091496077226],[-105.60180396600856,23.114138079610257],[-105.60377264622855,23.112925517226756],[-105.60583394940346,23.115987038932076],[-105.60904624429406,23.116635378397177],[-105.60774143304349,23.118509280709077],[-105.60574298786435,23.11844930587972],[-105.60695992091559,23.12178868288595],[-105.61153421771951,23.122553619460803],[-105.61751438251815,23.12221408397488],[-105.61619674574922,23.124900567131363],[-105.61875504274826,23.126303476179828],[-105.62352927775561,23.122336000246946],[-105.62672576575335,23.125482989086777],[-105.62994488610497,23.130881971408485],[-105.63708717140213,23.136202812101317],[-105.64093557957972,23.14013744017251],[-105.64399074908602,23.141768069909688],[-105.64525944275817,23.143696081082453],[-105.64617925413705,23.148890576685517],[-105.64580539831093,23.151501519522753],[-105.63981601032299,23.154323062031324],[-105.63861698402951,23.154828472748534],[-105.6367688949536,23.157567626978732],[-105.63855769146056,23.162261528080137],[-105.6390095627221,23.166917533661945],[-105.63784184642856,23.168902905462915],[-105.63348311282402,23.171894640655125],[-105.63317218361027,23.172751029473318],[-105.63303894275049,23.173448993808677],[-105.6341603707454,23.17645297012831],[-105.6385527148758,23.18156997303913],[-105.64071790632653,23.18545119089896],[-105.63952579707541,23.18712392181112],[-105.63614958986079,23.188489312001707],[-105.63552993566111,23.18854290802426],[-105.63515031703844,23.188938803219287],[-105.63416512943888,23.190822446929644],[-105.63522648365745,23.196922642194636],[-105.63177674241354,23.201530752171266],[-105.62971252522641,23.202294527257095],[-105.63034095822263,23.207495765548913],[-105.63567741284021,23.214054065886558],[-105.63408463899549,23.21650454262044],[-105.63094903628593,23.217709802486752],[-105.62953382455697,23.220176891972017],[-105.63071618011656,23.222136070484737],[-105.6314438922297,23.22364026629441],[-105.63152669511538,23.229633986065778],[-105.63031734641021,23.235581089633456],[-105.63188033034538,23.23738553775877],[-105.63439670992886,23.238106999801232],[-105.64072897996226,23.23747744843621],[-105.64234394850371,23.238076011182443],[-105.64131560457167,23.24175760730816],[-105.63987976232676,23.24298416003029],[-105.63918182533854,23.24501738578448],[-105.64609776281998,23.25177474568295],[-105.6468431156955,23.253365803619374],[-105.64774840624256,23.260310667366753],[-105.64631550718246,23.26368132451944],[-105.64279398859338,23.265969694919818],[-105.64546107844615,23.269368352877905],[-105.64500496713379,23.272407302415616],[-105.64287065773442,23.275433156638087],[-105.64493059254704,23.277616195705605],[-105.64691712400725,23.278716838316996],[-105.64887041446877,23.278608675586497],[-105.65437528294177,23.28196949039392],[-105.65828453933113,23.282194013575634],[-105.66110728657384,23.284262849184984],[-105.66370825909246,23.28742015713607],[-105.66522534325196,23.28664942694951],[-105.66378510532962,23.284339296288692],[-105.66594546185752,23.282192411729],[-105.67033384664836,23.2826014143252],[-105.67136428287557,23.28227100928251],[-105.675127002316,23.282160889475563],[-105.67623754582729,23.285269057533412],[-105.67818058535892,23.286013800431874],[-105.6848097431947,23.285742113642527],[-105.68545644630075,23.28611549320715],[-105.68708411108628,23.287520012808557],[-105.6907711534231,23.29461596864394],[-105.69016131586045,23.297802833085086],[-105.6938158404352,23.30030488431936],[-105.69262002595252,23.30277208172396],[-105.68735997632535,23.306425611847942],[-105.68888840052676,23.30747004822672],[-105.69140661603825,23.30528086872505],[-105.69936723897331,23.307547900809595],[-105.69833894519627,23.310232312487415],[-105.69233118475051,23.310974820370006],[-105.69327465688127,23.319013545897008],[-105.69456744185152,23.32157057554332],[-105.70077716642828,23.324240337874016],[-105.69872317729488,23.327479421757403],[-105.7021935010452,23.331881090738023],[-105.7001634857429,23.335963584285878],[-105.69405592097183,23.34015445484613],[-105.69707855330114,23.341763084867296],[-105.70165835853868,23.339893406495037],[-105.70396123369528,23.34048363831505],[-105.7051713736821,23.348731734301168],[-105.70743920757707,23.35015278940483],[-105.71400074647534,23.34961680309135],[-105.71541783433611,23.352621976653438],[-105.71305098987489,23.353942222917055],[-105.71166797226243,23.361347950720642],[-105.71224505812154,23.364281373683127],[-105.71556109776299,23.36552465251168],[-105.7153793947619,23.366820099920403],[-105.71780847906496,23.368334448907206],[-105.71906388544852,23.36941415907296],[-105.72420296027713,23.37238682644721],[-105.72994598709238,23.374010386411555],[-105.73051669079621,23.376951290669297],[-105.72921725666703,23.378107391535366],[-105.72698135881183,23.377460320335558],[-105.72587186800405,23.376996409687308],[-105.7232857936304,23.376572235878882],[-105.71885753545388,23.377665099014678],[-105.71729254866938,23.380037022087436],[-105.72026664739252,23.381133596611903],[-105.72280170808551,23.384794988706687],[-105.72130616786399,23.388014542357382],[-105.71800823168206,23.39192406033004],[-105.71509067706114,23.393256308349123],[-105.71305717563746,23.39234757009598],[-105.71174973054809,23.393496075669987],[-105.71133059687577,23.399084526236834],[-105.70972766900826,23.40076265695086],[-105.70860056994479,23.404121503525403],[-105.71040920988258,23.40758317010335],[-105.70968679310181,23.409083804547606],[-105.70400234962017,23.41126299940504],[-105.7003208449317,23.41968587015083],[-105.70363854542052,23.422302055170917],[-105.70457707444541,23.424846668724342],[-105.70778580048017,23.425963601000092],[-105.7111373927986,23.425431214681055],[-105.71723486469392,23.427066674926152],[-105.72092357511201,23.42634716594256],[-105.72506640088608,23.42855776822995],[-105.72833091088052,23.428984465103667],[-105.72956691483932,23.430322465817255],[-105.73053369357496,23.434619938900823],[-105.72803869302402,23.43889505442513],[-105.72923171033483,23.440231301529593],[-105.73839205856223,23.444638248565866],[-105.73869061694478,23.447951898918916],[-105.73388450751463,23.452178622054987],[-105.73041683984712,23.452697716039893],[-105.72872996466538,23.45858308500732],[-105.72694520351973,23.45909298415262],[-105.72515070822692,23.460092547697116],[-105.72454879069704,23.461408663069903],[-105.72712308586273,23.464023743816313],[-105.72806348724782,23.46681726717776],[-105.72651430392978,23.47141064633354],[-105.72344477915249,23.474840145978703],[-105.72774863972023,23.478809874222407],[-105.72980355100668,23.48232660980341],[-105.73415426166633,23.482382977406246],[-105.73645025458853,23.484376609170283],[-105.73935465324479,23.485340566938135],[-105.74009421938467,23.488641084333665],[-105.74304808561646,23.489918296148005],[-105.74471954462393,23.492144696054595],[-105.7486304348094,23.49367174544784],[-105.74842830089204,23.49581572832443],[-105.75069051508899,23.498025578223917],[-105.75103755880116,23.500274990809373],[-105.75501324027374,23.500983784491268],[-105.76040729790623,23.50320095257365],[-105.76007778651149,23.509139373842686],[-105.75662502365293,23.515548562678134],[-105.75764473911704,23.519479673850924],[-105.75679754319685,23.52447626510309],[-105.75754991652758,23.526284178937942],[-105.75781464757,23.526341714840214],[-105.75965226341935,23.52687606635169],[-105.75893427826912,23.532008104035754],[-105.76037570330169,23.53510615595104],[-105.76416127688668,23.538740405051442],[-105.76912351309954,23.541939345717196],[-105.76800562470146,23.545661705964108],[-105.76934231789392,23.54802775854],[-105.76755953820123,23.551545271230907],[-105.76770692497638,23.552384586852895],[-105.77028373398355,23.557664429899035],[-105.77250126932228,23.558578078482867],[-105.772352318419,23.558913152304513],[-105.77291202665475,23.560997693164268],[-105.77495888260734,23.56134425473465],[-105.77657993041623,23.56391850838895],[-105.77829507749362,23.56413504045912],[-105.77966589794448,23.566829743005542],[-105.7848767036794,23.569126784813136],[-105.78519026469172,23.56912232864636],[-105.78433183891826,23.573242037481577],[-105.78983845809438,23.57852404328088],[-105.79342406082571,23.57803644005145],[-105.79607749028531,23.580580092639025],[-105.79672802487909,23.583391699875506],[-105.79885397930838,23.583428609215787],[-105.80232080483069,23.586499284836748],[-105.80209849750719,23.58771348906066],[-105.80664678311382,23.588873019505684],[-105.80734990840631,23.59063386664627],[-105.81164389711438,23.611028555696066],[-105.82483243916073,23.607789673101763],[-105.84551601139367,23.603255535505866],[-105.84537522232205,23.596572977473272],[-105.84518580933161,23.583694837568203],[-105.8535960138476,23.597287592493387],[-105.88431791529524,23.59039386690887],[-105.89265538921336,23.552645278804107],[-105.90890536166052,23.588269552516067],[-105.90902955262669,23.590188524548694],[-105.92073429992018,23.655836377263313],[-105.92663376096101,23.68413565951988],[-105.91655570274293,23.715355767830204],[-105.91590583808505,23.726424749222815],[-105.90620291700964,23.73707089486345],[-105.90609335094081,23.739398850169323],[-105.91066007623834,23.741397047913438],[-105.92306290601226,23.747753762957927],[-105.9229484758581,23.75224010226583],[-105.91991340505558,23.757965077083213],[-105.9205295552141,23.75855036205627],[-105.92331815519083,23.76129967462481],[-105.9266676880406,23.7615223493479],[-105.9281311200653,23.762906467025402],[-105.92936853938306,23.766576307298692],[-105.92647397437679,23.768376608941196],[-105.9247988096489,23.771476193350452],[-105.9249365124108,23.773815464471625],[-105.9295313841194,23.7809648142142],[-105.92822154476949,23.784022332703103],[-105.92926319065543,23.78771714879673],[-105.93123654198519,23.790578674739663],[-105.93198849797739,23.79408426605272],[-105.93217460562573,23.794696003109095],[-105.9393302263723,23.79143022386438],[-105.95188070223816,23.81964958119528],[-105.96126556727637,23.840742146491266],[-105.95366198764953,23.90858459222875],[-105.88520217526082,23.879575073204762],[-105.88227404498679,23.878542356775768],[-105.86724132889572,23.875242982701423],[-105.86477326371573,23.87515622435029],[-105.86286357704046,23.878273363749372],[-105.86301024441491,23.878525617657942],[-105.86532367020334,23.88086516655568],[-105.86323873822039,23.88109812917412],[-105.86356090394031,23.884405603078676],[-105.86156673256664,23.88435391482625],[-105.86073698234901,23.8864229595236],[-105.86326923703257,23.889448308262217],[-105.85842630629583,23.893367441397572],[-105.85758795102561,23.8992961543114],[-105.85852074328466,23.90174484643444],[-105.86354841119714,23.904251086482645],[-105.86527737729057,23.908221609988004],[-105.86388644134615,23.912824013384352],[-105.86834310816567,23.918643557151597],[-105.87227980071947,23.92016812736921],[-105.87899231210213,23.92606631435035],[-105.88155350219262,23.93281961988953],[-105.89991939692237,23.94392128546957],[-105.94541506418932,23.948025686491462],[-105.90846158002421,23.98342663461426],[-105.90871790211219,23.986630173218998],[-105.91072092104861,23.988310876173045],[-105.91292549836726,23.992008406000082],[-105.91244008566122,23.995913419926694],[-105.91209429955506,23.997239192833092],[-105.91461470189847,23.999511595892898],[-105.92046764254553,23.999643580213103],[-105.92404332181678,23.99801729525626],[-105.93164872981856,24.00063233238302],[-105.93763203811386,24.004990943573773],[-105.93957949790416,24.007640595769885],[-105.94234293804357,24.014317915689276],[-105.9452689309249,24.012261019019036],[-105.94713155136589,24.014971807709117],[-105.94806225360179,24.012010112627536],[-105.94967595055732,24.01241498257582],[-105.95025811507878,24.01481883659227],[-105.95361588395087,24.015956646757445],[-105.95708806839707,24.01583473033702],[-105.96037140702055,24.017883572490575],[-105.96097084995131,24.02192266162041],[-105.95937216260336,24.023002078005447],[-105.96322994221993,24.026757054356494],[-105.96541345132465,24.027068849589284],[-105.96625635547719,24.031256664695547],[-105.97304319514114,24.032738102873395],[-105.97340367696535,24.034426814541632],[-105.97853100897021,24.039557781178644],[-105.9798164489386,24.042037368392755],[-105.98157726115431,24.041675161829573],[-105.98323892255888,24.038882009479266],[-105.98577084925097,24.03889645539249],[-105.98878239618034,24.041874773938446],[-105.9911737765695,24.041119544883827],[-105.99339735823264,24.044264889723365],[-105.99493187918495,24.04478299389325],[-105.99536217860901,24.043836859804117],[-105.99788088431444,24.04252040365668],[-106.00007399305395,24.046522915072444],[-105.99950144199136,24.049708948944044],[-105.99698853541219,24.054629574396017],[-105.99986440733812,24.055065983621205],[-106.00145055835702,24.060037421860443],[-106.00118168935722,24.06309295143734],[-106.00294848340474,24.066060902157744],[-106.00688767084915,24.067692535849517],[-106.00760194074519,24.073107836729093],[-106.00513990492846,24.073775972970907],[-106.00410040276324,24.075918274391597],[-106.00100071113854,24.075560974745542],[-106.00054211672699,24.07830997709698],[-106.00181226059425,24.08212439852798],[-106.00263592373557,24.082790833074796],[-106.00059796440735,24.086391421030385],[-106.00199161569009,24.087721023681695],[-105.99941579723946,24.090110284630043],[-105.99632049478896,24.089360197936685],[-105.99400698578108,24.093566924511208],[-105.99573820687476,24.097892467090276],[-105.99364344218623,24.098959894634675],[-105.99320311644163,24.101224962471463],[-105.99063447540749,24.101686908510715],[-105.99106863596899,24.105319940723575],[-105.98907722870405,24.10799767424811],[-105.98972399419421,24.114390167299803],[-105.99085459969899,24.115014440304265],[-105.99664961721112,24.114455670982977],[-105.99982992654674,24.11649551597492],[-106.00411863084571,24.12149707192475],[-106.00367257775588,24.125271946282396],[-106.00200380146015,24.126630490042714],[-106.00178748404187,24.12708624633217],[-106.00129148238426,24.128641389922393],[-106.00204378342164,24.129242979417768],[-106.0041981075737,24.129958104837613],[-106.00351799741873,24.13573332060065],[-106.00403915226764,24.135986991390098],[-106.00198894742465,24.13868688743088],[-106.00376474442817,24.139799417136942],[-106.00306069195273,24.143527954118838],[-106.00431797069979,24.144895865904118],[-106.00321076663738,24.146841034068245],[-106.0059113085004,24.147984989044858],[-106.0074671115492,24.153773008295445],[-106.00972171195235,24.155757663211034],[-106.00982429806459,24.15645456551067],[-106.01205346831404,24.161238470821104],[-106.01403039892705,24.161395235383168],[-106.01806708350279,24.164277384932916],[-106.01877026769642,24.166643334474657],[-106.0190048524504,24.167651023240467],[-106.02107526757737,24.173181826694986],[-106.02489129658676,24.17596925739406],[-106.02662093373715,24.17972748249423],[-106.0283719007681,24.180071883086555],[-106.02864103186187,24.180687943281782],[-106.02685167298188,24.185934549772014],[-106.02823837635896,24.187275812410576],[-106.02932553487335,24.18759500828901],[-106.03398248738631,24.19189240142049],[-106.03482150288124,24.197119943558164],[-106.03568297161763,24.197544515022344],[-106.0358892057597,24.199027294091138],[-106.03532835784574,24.199743521272694],[-106.03638206063238,24.204023417143617],[-106.03713359981037,24.204864292063917],[-106.04088420368834,24.2075759280238],[-106.04400035072359,24.211586505258026],[-106.04462964992052,24.213491978134925],[-106.04388357006547,24.2208503591184],[-106.06994835235054,24.220200585348323],[-106.0712960611109,24.249572573377293],[-106.07280999113584,24.25794465340863],[-106.072867330098,24.260878736803193],[-106.0743791284479,24.26501038217998],[-106.0742415646082,24.26568581298119],[-106.07453953606961,24.26942209295032],[-106.07754031364163,24.272593831694337],[-106.07854784417793,24.27297015457316],[-106.07912269599763,24.272851994080384],[-106.07974836090062,24.273065729911366],[-106.08202284506729,24.274082702083092],[-106.08243577939618,24.27460129070687],[-106.08690469494763,24.27769222818796],[-106.08919656746139,24.2815537240877],[-106.0892643723522,24.282291410027938],[-106.08887730521514,24.284408967859974],[-106.09250982781839,24.287374288769684],[-106.11845655633897,24.309597136024877],[-106.1525396173526,24.33877037449531],[-106.16997520105974,24.33365018311389],[-106.17358115679963,24.336327474743314],[-106.1944056595757,24.351785103407508],[-106.2688694072803,24.3747552876099],[-106.32784825397823,24.361062994952135],[-106.33632981625982,24.35569532188117],[-106.34410076637982,24.34880565059933],[-106.34614527957103,24.34493398030878],[-106.34785857342314,24.33827076912405],[-106.35158443408926,24.323778152392435],[-106.35262369401238,24.31646815795284],[-106.35919765638863,24.30746988989165],[-106.36301326451576,24.30417250372153],[-106.3675446637746,24.30194080643571],[-106.37453559206153,24.299817585250366],[-106.38325574040022,24.297930067067682],[-106.40313005088649,24.293095321057763],[-106.4294700957334,24.285074302139208],[-106.43753526428145,24.28389973019779],[-106.44795527306286,24.282080655777634],[-106.45772310983284,24.280574477822142],[-106.4696546660083,24.277856955831226],[-106.50856909211075,24.290961747347012],[-106.50909660325112,24.291139304234605],[-106.51709355570603,24.286984254680533],[-106.52799120943229,24.295123735958498],[-106.53324437862506,24.302672862794168],[-106.53408891783016,24.30954779147845],[-106.58595861040448,24.37900030281787],[-106.58346565485795,24.39026992463704],[-106.59528837070053,24.40947220312114],[-106.60158830492185,24.41456584619698],[-106.56927602129139,24.437020591696978],[-106.56845843144498,24.438501744847713],[-106.56868466906536,24.442047549499193],[-106.56763216921945,24.442172547624125],[-106.56926650613866,24.446190830031526],[-106.56832153772677,24.453099189540183],[-106.5664457447237,24.455872930886983],[-106.56283841560787,24.45878427642674],[-106.56242849122293,24.461178762336374],[-106.5594525816303,24.46964504585776],[-106.56001580190775,24.472710609604974],[-106.56409695387202,24.473167042843386],[-106.57231604643084,24.4773091966548],[-106.57627288299102,24.481919782859677],[-106.57866196477704,24.482224193595414],[-106.580064839496,24.487244175685362],[-106.58375866261395,24.490759915483807],[-106.58712449597044,24.49263977134433],[-106.59157392770425,24.491431099518252],[-106.59403878912605,24.49423727207369],[-106.59587311122891,24.493825632976836],[-106.59777248816727,24.49098853568853],[-106.59843390977375,24.49101086779234],[-106.59845638901402,24.48711817514271],[-106.60006606436718,24.486711228028298],[-106.60036171830268,24.483210810356354],[-106.60999494531848,24.49785127497654],[-106.6247750021688,24.500236050999206],[-106.62736319054653,24.503228492154335],[-106.6300670715093,24.50650314189113],[-106.62260700221606,24.524896675452112],[-106.62603430768297,24.52714144202082],[-106.63223782379026,24.529989500843726],[-106.63778161557855,24.53031177520114],[-106.64546066856991,24.528979459215805],[-106.66282154323505,24.56030023202277],[-106.66865210870986,24.57167276152967],[-106.68360860521267,24.598530470256208],[-106.6890504035917,24.623753726389907],[-106.70594836714452,24.665261655735662],[-106.71149270407739,24.670304853460664],[-106.71512530470096,24.672081869582996],[-106.77591665132144,24.73309566351719],[-106.78425429224728,24.741456435771795],[-106.79301071505847,24.74391033299412],[-106.79612871397319,24.75336113468984],[-106.86101517848817,24.818357735158372],[-106.86781575342826,24.824164272640814],[-106.88599839914656,24.826351189934655],[-106.90294888013864,24.828387851485388],[-106.91927678187312,24.813953120966403],[-106.93066256883907,24.820916674886746],[-106.93816675599766,24.834697299185848],[-106.93806094555629,24.835251013960146],[-106.94648781775481,24.83975316978075],[-106.9431366963588,24.843057459488534],[-106.94396112341678,24.851527366817095],[-106.94639325069585,24.858507924342746],[-106.95083182287686,24.857947698057274],[-106.95141810558465,24.85902372007706],[-106.9285541199975,24.866164230541017],[-106.92708026010729,24.866624380879102],[-106.9328628949666,24.8714792967088],[-106.93061611874009,24.87347310850413],[-106.93148510697534,24.87505032240142],[-106.93450764280851,24.880535846034434],[-106.94627807765983,24.888951740289656],[-106.95100943933818,24.88799666449046],[-106.9575369253078,24.89428761434516],[-106.97310321636547,24.909285903160537],[-106.97324942052018,24.909614691602883],[-107.00057542864084,24.928241010396846],[-107.02105288346758,24.909908271923598],[-107.02514667857662,24.92838050663704],[-107.01834390845897,24.933617363720657],[-107.03897407661555,24.968112176320744],[-107.04395874945112,24.976443597457376],[-107.05727797170664,24.9986978888395],[-107.06041980133693,25.002427434341826],[-107.06056437675824,25.005656785251006],[-107.0620141617132,25.012449569200896],[-107.06610092947267,25.01890535511137],[-107.0666997860659,25.02213007231734],[-107.06357128483415,25.025255353883836],[-107.0673989951514,25.03015520781537],[-107.12989163564322,25.053138794849815],[-107.12543008284462,25.172958056420498],[-107.1249737254077,25.185207064569227],[-107.12582101154493,25.187556230221105],[-107.12901368996296,25.18840137130786],[-107.12925597028169,25.189445332133175],[-107.13634667214433,25.201734901261773],[-107.14877479568975,25.224548138647492],[-107.1353849739213,25.225342638426923],[-107.13202137354415,25.226711797685596],[-107.1304232136963,25.229482754006312],[-107.13167506529629,25.232202223804507],[-107.12349000361968,25.2414361769396],[-107.12124742564254,25.24262201326809],[-107.13238310559365,25.250325809703554],[-107.1336587719174,25.25045011384526],[-107.14140541018656,25.255700259652997],[-107.14772182650597,25.258943959774285],[-107.14907094270296,25.259415450415645],[-107.1583908635796,25.262980292206464],[-107.20005399057993,25.320798919678055],[-107.20781657169823,25.331564228379023],[-107.17155080618664,25.32635787277303],[-107.21013222750827,25.417100508792714],[-107.18487440709339,25.436815801029525],[-107.16417354798011,25.43988550373308],[-107.16411471400204,25.440091496198875],[-107.1585796292548,25.442166245965836],[-107.16090628053985,25.44420265629492],[-107.16036666026446,25.445716017688994],[-107.15579568386397,25.44687158338013],[-107.15555019891025,25.449568479972925],[-107.15678794073176,25.455452923998678],[-107.15478399327736,25.457079305656464],[-107.15189447706393,25.457093277191007],[-107.15052815298475,25.458286116947534],[-107.15310631111493,25.46047451218874],[-107.15185499501274,25.463493792607835],[-107.15305090275666,25.465550402832037],[-107.15125485259085,25.467475735110895],[-107.15263237211184,25.469696331638488],[-107.15064516351055,25.473949436432747],[-107.15120508847372,25.47628268347097],[-107.14946678830955,25.478794207697945],[-107.14724184304242,25.47927043704442],[-107.1465784545884,25.483073517942785],[-107.14192277400991,25.486218564789397],[-107.13901846970839,25.491664508426766],[-107.13982230746831,25.496620898109427],[-107.1476842364525,25.505027214239362],[-107.16253699340746,25.50312031946453],[-107.16629029963644,25.502995321249728],[-107.17210582129019,25.50738996599256],[-107.17763478569049,25.51440031290832],[-107.1780555881096,25.515734172779958],[-107.17602897662732,25.51824522978569],[-107.1762509892414,25.521946254167403],[-107.17201082475754,25.523843377350545],[-107.17211546965098,25.526369760930777],[-107.17393653523925,25.52675874481389],[-107.17425439236024,25.529101287411322],[-107.17070960687022,25.5305128060088],[-107.16959626560777,25.5328257464343],[-107.17384746557696,25.534289527346232],[-107.17390726931302,25.534431528327673],[-107.17334234660512,25.538032018204603],[-107.17666103280663,25.54012510193354],[-107.17616751974242,25.54440384461492],[-107.17182888933212,25.542798941292688],[-107.17158639591486,25.546108073505764],[-107.1751650260789,25.549198327291606],[-107.17261468522554,25.551702044483704],[-107.17387949754965,25.556552564263143],[-107.1702500276865,25.557254417563627],[-107.17006991024226,25.55954680996041],[-107.13874935030918,25.56009509061971],[-107.13845475018303,25.55239443115562],[-107.13197675323937,25.55234956113702],[-107.12916974002133,25.549949542931472],[-107.12484465744217,25.550392328881628],[-107.12209014569794,25.553519507397425],[-107.11953429578523,25.5542217057843],[-107.12119101938862,25.556290826031557],[-107.11541058556696,25.558986573016114],[-107.11308094275222,25.56106029231745],[-107.10998841705032,25.560556463972546],[-107.0984576443945,25.565867600046772],[-107.03415932207042,25.59632320599451],[-106.9732904561559,25.62957043758564],[-106.9943958583666,25.661794811478103],[-106.9943245249006,25.662232595183582],[-106.98611862319518,25.664060541428057],[-106.96693981772921,25.66833082188316],[-106.96684523379855,25.672833667073576],[-106.96594617873154,25.6770950077061],[-106.96915241412881,25.683005683777708],[-106.96532269379264,25.697878585617957],[-106.9902987597514,25.714924060531644],[-106.99140739879255,25.71048987662641],[-106.99503462827522,25.709792919739186],[-106.99676264113396,25.708209737862035],[-107.00056199181006,25.707035365417084],[-107.00476675687963,25.703134013066915],[-107.00428906674648,25.70123971637321],[-107.00609939990238,25.698471763368275],[-107.01061713988912,25.698368011339255],[-107.01032402618029,25.691989653819235],[-107.01504200413888,25.69135099281192],[-107.01673347889266,25.692669335519497],[-107.01742903398087,25.692807035865542],[-107.01963076660695,25.69216573597322],[-107.02529300604061,25.696202574995596],[-107.03386094176864,25.698189705403195],[-107.0407551182401,25.697016197463654],[-107.04312661279829,25.697698780019607],[-107.0468996071474,25.700579200977586],[-107.04737146262727,25.70273473976465],[-107.04748695674533,25.70391506024157],[-107.04763727072515,25.704837402211297],[-107.04742028634189,25.70648139147619],[-107.04731376147157,25.70974898613042],[-107.04850927014212,25.7112622531003],[-107.05830422572359,25.71434137855539],[-107.06093494155044,25.715686288174084],[-107.06412866936387,25.718812482419935],[-107.06242112679837,25.721636726153577],[-107.06221639671492,25.72430141414634],[-107.06537973519409,25.725203367017116],[-107.06455124027002,25.728335383898525],[-107.06474224517461,25.732777972192537],[-107.06094715357403,25.737688153649174],[-107.06049828557195,25.739996197243272],[-107.0636439084974,25.744329725706848],[-107.0647684243562,25.747648921861355],[-107.06174212218627,25.753850272787645],[-107.05790477030479,25.757367968298013],[-107.05932771719,25.75821389078311],[-107.0907256279512,25.780083165802296],[-107.113244803116,25.795758759432374],[-107.19457701452643,25.852307811931837],[-107.19654455430839,25.85297713019986],[-107.19821287385452,25.85308686585489],[-107.19901780665936,25.85320416128036],[-107.20125833138451,25.855286044173283],[-107.20439935704263,25.856703213309117],[-107.2088655341704,25.856312775114304],[-107.20851438981816,25.85874086276715],[-107.20746899756824,25.861406657588134],[-107.20694914455339,25.863919411592462],[-107.21157749716485,25.862583248078067],[-107.21312327419122,25.86189441508617],[-107.213649648856,25.862077644754095],[-107.22527973144787,25.868615404779348],[-107.22903295897879,25.869741749282127],[-107.23135731340284,25.871481958387335],[-107.23701958800183,25.878827836153846],[-107.24031565206178,25.880379388717245],[-107.2414813002913,25.881010760685115],[-107.24512345858335,25.877153636059177],[-107.2448250925222,25.878141223399837],[-107.24626832127836,25.877753890672864],[-107.24574478802293,25.88349916007013],[-107.2432219839502,25.885232203111684],[-107.24450042860275,25.887410721859112],[-107.24247065954643,25.892369639311767],[-107.29612821382375,25.924793407003335],[-107.29023074605504,25.943726913516173],[-107.28703478227169,25.953984836005702],[-107.28440193773724,25.956604005326767],[-107.28028788286508,25.95739508934446],[-107.27994293472847,25.95931080178434],[-107.28205074059395,25.962421677442194],[-107.28157344154556,25.96825658875315],[-107.28009313282178,25.970233874122016],[-107.28052725686427,25.972844474043313],[-107.28256860689862,25.97537611767939],[-107.28228021774254,25.977992345044413],[-107.28048936689987,25.980701644975852],[-107.28237630147868,25.983185988185767],[-107.28203021311867,25.99198062014301],[-107.27878069652809,25.993504677086946],[-107.27808362373997,25.99798587254719],[-107.27634626293923,26.001976534207472],[-107.30669172185645,26.048784151613006],[-107.3048897979885,26.07640243208823],[-107.3270351399837,26.090889840356283],[-107.34652779297346,26.10952312983835],[-107.41611823408755,26.141220245063664],[-107.43234746548882,26.13824576603224],[-107.43104269812818,26.142859925443247],[-107.43909145739116,26.141149877481155],[-107.44286366237083,26.13961612121426],[-107.4477087580517,26.13918270067734],[-107.44993291869906,26.13780348153915],[-107.45797595807073,26.138558235333505],[-107.4631993775476,26.136548567761793],[-107.46638918628207,26.133336028654185],[-107.46956116541833,26.128852119637827],[-107.47287316235975,26.126192656577018],[-107.47791629469646,26.123452223033667],[-107.47774014487658,26.122070816535654],[-107.47777903736431,26.121917524116157],[-107.47792122958202,26.121681481368853],[-107.4778801359289,26.121324469949684],[-107.47775322393949,26.120957014923306],[-107.47863888070373,26.12101020914406],[-107.48288157296827,26.12088615101618],[-107.48545201156713,26.119698795835802],[-107.48526138091268,26.115421385554725],[-107.48835436128218,26.11478500342122],[-107.49374465943009,26.110580287477433],[-107.50050184877693,26.11307369351357],[-107.50390669426861,26.115917327843533],[-107.50611521272464,26.11578747459822],[-107.50888135535268,26.11361367043878],[-107.5101864271416,26.111100586310954],[-107.51334117414319,26.11093886799671],[-107.51694624185325,26.10840493213857],[-107.52001998766099,26.10422717686191],[-107.52394021931804,26.107230115767436],[-107.52214330082148,26.108552102218084],[-107.52212945712,26.111820450343885],[-107.5234892634017,26.112104274694047],[-107.52811257197334,26.12138069556744],[-107.52681759139006,26.122456583815108],[-107.52626705150641,26.12774763944782],[-107.52861568186495,26.129196844973364],[-107.53261172777212,26.129849832947457],[-107.53282092559056,26.13020958054824],[-107.53569534189785,26.132564003563573],[-107.53714622984364,26.13750091456143],[-107.54193035203048,26.1368548792924],[-107.54384425784394,26.137623495680884],[-107.53999657314768,26.140804367920623],[-107.54020965073056,26.14235267055699],[-107.54327740515134,26.14634893611492],[-107.54794420341881,26.14744110231362],[-107.55060508552413,26.14911202415965],[-107.55185580170792,26.149924258110502],[-107.55395717205943,26.151750247928533],[-107.55567733569069,26.159623061465993],[-107.56113026118362,26.161535576016092],[-107.56206926978518,26.162021217354436],[-107.56493483348066,26.164481989001843],[-107.56716793941484,26.164705309355384],[-107.57028402198983,26.163342122099664],[-107.57459029229625,26.16496360010683],[-107.57726153595218,26.164604800526035],[-107.57956571085464,26.166125885197744],[-107.57957360782285,26.166484572299964],[-107.58229607160047,26.17065319336166],[-107.58291414441538,26.17066523617018],[-107.58566500221497,26.169652519998806],[-107.58943469626814,26.16992754073192],[-107.59347406097709,26.16601459072774],[-107.59746185181808,26.165335141976243],[-107.60388349636708,26.16548120485737],[-107.61313658958596,26.16258714571177],[-107.62095962620816,26.162472190967037],[-107.62523586564629,26.159499395365515],[-107.63234511997791,26.157163850980623],[-107.63534625407681,26.154657896774836],[-107.64096459431948,26.15579524550293],[-107.64226723910633,26.157559338553597],[-107.6460820153655,26.158288979683505],[-107.6527642894194,26.163640963287207],[-107.65508938105546,26.16393136916821],[-107.65914179576191,26.162649471388306],[-107.66281860269663,26.163764519227584],[-107.66372548119585,26.163986947358808],[-107.6689543017215,26.164511996558133],[-107.67680859051774,26.163531484962107],[-107.67941169027449,26.164395104064738],[-107.68052662902682,26.16300891046518],[-107.68340099493389,26.163425242060384],[-107.68726461491838,26.16539189432325],[-107.69139185671327,26.165725769456117],[-107.69183864588149,26.165764948283424],[-107.69631928371774,26.165473647436727],[-107.6964415887154,26.166770579932518],[-107.69661695108226,26.16740268527036],[-107.69919351966945,26.170736509394487],[-107.7043501318571,26.170223331761633],[-107.7057163431395,26.170010681622557],[-107.70793628525729,26.173376043232565],[-107.71166114718977,26.174299656561686],[-107.71352393949223,26.172455615289095],[-107.7139749012004,26.16930539443854],[-107.71412954930503,26.168793401882624],[-107.71577845673261,26.165546932934888],[-107.72397261880656,26.163284742664416],[-107.72887436251898,26.164394807491135],[-107.72960075896094,26.164835510151818],[-107.73373251225723,26.167495229481915],[-107.73621684039796,26.16821589667859],[-107.73920106975675,26.166722217766676],[-107.74007456318094,26.162289472097314],[-107.73801214403977,26.15872402040486],[-107.73820701479042,26.15644410279549],[-107.74519514702837,26.155648881385844],[-107.74759715872483,26.153793173871975],[-107.74866442917488,26.148271197848146],[-107.74774464834411,26.145095416867036],[-107.7494038897521,26.14061039860485],[-107.7527134926712,26.137557911533577],[-107.75346668868053,26.136642122273656],[-107.7551721505597,26.134512443021322],[-107.780690464587,26.136937591302967],[-107.78779193675854,26.16345224174927],[-107.7889239078794,26.168613785034836],[-107.78980772599152,26.168760090548858],[-107.79081703413948,26.168740513666705],[-107.79356813599549,26.168629448996512],[-107.79625359468878,26.172663332807474],[-107.7988430702735,26.17375706129161],[-107.80453597855961,26.17480193479099],[-107.80617364283972,26.177570895896565],[-107.80641498212896,26.177916418998223],[-107.8102767696509,26.18368142841939],[-107.81524259709619,26.182714646475972],[-107.81755222958088,26.183261013433196],[-107.81824577143072,26.183454492941507],[-107.82086571435917,26.185477167492877],[-107.82133473872068,26.185882105051917],[-107.82167047035853,26.186200893969897],[-107.82208258249716,26.186961931197573],[-107.82381696038027,26.186779964043353],[-107.82383118032249,26.184649836535016],[-107.8269449958621,26.184529500196447],[-107.82736624876497,26.1843141487783],[-107.83808092794152,26.18241698434315],[-107.84150390135449,26.18491147273255],[-107.85401850267914,26.19651939220438],[-107.8562645691618,26.22603512073573],[-107.87331991191917,26.25033436439645],[-107.91216212162647,26.303670686670444],[-107.97411783281797,26.388634305482583],[-107.97302545111211,26.39252697795706],[-108.00058629906243,26.422162159285563],[-108.01279701556047,26.439048057947275],[-108.00058567141775,26.447559967801396],[-107.96963910543116,26.47016786746417],[-107.98562260006986,26.472099776450705],[-107.9837554664702,26.47495092745669],[-107.98273227043774,26.4761181512481],[-107.98189213697646,26.477169047660993],[-107.97861366532362,26.480716524711795],[-107.97785350442922,26.481463006415595],[-107.97260647500974,26.487298249873447],[-107.96884076532604,26.49014888743625],[-107.96024911088915,26.491966835162657],[-107.95726530671982,26.493743954413674],[-107.9580698231232,26.49685508107507],[-107.95656608742036,26.500011592599378],[-107.95579153046538,26.507373437358638],[-107.95881487080635,26.51012411110605],[-107.95938819140287,26.512888060142984],[-107.95937151535213,26.513131485773386],[-107.96199138091066,26.51780457972626],[-107.9611441643118,26.51989216632478],[-107.96216770014479,26.522857240877954],[-107.96115572841956,26.527067627398992],[-107.96364721901887,26.52725860328991],[-107.96859536317936,26.530817527868237],[-107.97068175401705,26.533045842498836],[-107.97649708771223,26.535459614705474],[-107.97779736710572,26.53675010556333],[-107.97784451116496,26.53699976908905],[-107.97969100667257,26.54318460134374],[-107.9822627739328,26.543180209235913],[-107.98364394307094,26.546036973364835],[-107.988039650892,26.546127518586616],[-107.9897448247396,26.548039797563035],[-107.98997031230107,26.54833081377808],[-107.98983190827869,26.55158907244703],[-107.99230465942605,26.562576655843543],[-107.99544181356822,26.563310865713675],[-107.99697943308996,26.564088845005358],[-107.9972844037863,26.567532564167266],[-108.00051815239982,26.57201608158914],[-108.00724760936146,26.57578976852966],[-108.01000027367536,26.578136894588],[-108.01050961239508,26.57820420039036],[-108.01248401279292,26.579643018328397],[-108.01288867841777,26.58192690500016],[-108.01129633562022,26.587370692221157],[-108.01104806395222,26.58796439481756],[-108.01217489074185,26.591395509658525],[-108.01451932953483,26.593415125295735],[-108.01841343748941,26.595147911237518],[-108.02129629961195,26.597339418026195],[-108.02709958138092,26.59849850796843],[-108.03251363639743,26.60318221190562],[-108.0336141684636,26.607765031842177],[-108.03540742309997,26.60920648951202],[-108.03472516609025,26.611482187379465],[-108.03253070714271,26.61375459930707],[-108.03223591140608,26.61412830193717],[-108.0318095431324,26.61592434956816],[-108.03387658851153,26.616304893282745],[-108.03634343864894,26.619110286846592],[-108.03853538183046,26.619790030784714],[-108.03971794015018,26.619566581040317],[-108.04515006787472,26.619713485171474],[-108.04453294334797,26.624968168796784],[-108.05044293264882,26.628140702166093],[-108.05158235359124,26.629835841271472],[-108.05389952476162,26.627173709411636],[-108.05651068752638,26.627727302432277],[-108.06091815767257,26.62696562695527],[-108.06351013731455,26.630648844369375],[-108.06625294855854,26.630283292815193],[-108.06700864611565,26.630314851417495],[-108.06842148508298,26.631451013941046],[-108.0688167066549,26.631448239850215],[-108.06914837729335,26.63139886381788],[-108.07023890592001,26.629888989355095],[-108.0704924857535,26.629425812042427],[-108.07116979170064,26.62770663331719],[-108.07131158295414,26.62734712777643],[-108.07455837902876,26.627993746690265],[-108.07606536277461,26.630228746895057],[-108.07597529996866,26.630602103553713],[-108.07438381239433,26.632404520265084],[-108.07399840345312,26.635427104257587],[-108.07734173325736,26.63920239045234],[-108.08093963335688,26.641163338069987],[-108.0809405144708,26.641263792290943],[-108.08065137811303,26.644509114102732],[-108.07673820543994,26.645318442289238],[-108.07615036075907,26.645456277157052],[-108.07454060622035,26.646424788865033],[-108.0744759688273,26.646607272376855],[-108.07399562082986,26.64697118725553],[-108.0738270527649,26.64682456350772],[-108.07321578916111,26.64686364012522],[-108.07279019763524,26.64718229086145],[-108.0712983840155,26.646050046798507],[-108.07115118686443,26.646141342858982],[-108.07082110107211,26.646623159448097],[-108.07076361539288,26.646921811082734],[-108.06988472057469,26.647253857364035],[-108.06960120472604,26.647190625007624],[-108.06464627507722,26.647370501020873],[-108.0601961981352,26.65157374723617],[-108.05875532092216,26.65073247908697],[-108.05618744386396,26.652026400576915],[-108.05501881846209,26.65475391902413],[-108.05554124389647,26.65646221913937],[-108.0553071270948,26.65649440299154],[-108.05325278210853,26.65630600241053],[-108.05313151628286,26.658048812225616],[-108.04642796242916,26.659886933990265],[-108.0449815531868,26.662763825213972],[-108.04278097005351,26.664165794225255],[-108.04269789072288,26.664705931631033],[-108.04289825178796,26.666509215493306],[-108.03960197547127,26.66625248563531],[-108.03445764520905,26.668155414694468],[-108.0328695324211,26.667671769579385],[-108.03060647074295,26.67051265372777],[-108.03054778033612,26.674018229314754],[-108.02884314494361,26.67344253982469],[-108.02658427925661,26.675231913476978],[-108.02635450704611,26.676273991579365],[-108.02515748862749,26.67855230647666],[-108.02290415278611,26.679851019329476],[-108.022751579844,26.680156439212283],[-108.02147747242344,26.680537760668983],[-108.0211164316625,26.680847077225508],[-108.01943262579988,26.683544002264398],[-108.01427564912336,26.68604363051611],[-108.01498187469213,26.68714415984175],[-108.01174663842141,26.689482429816223],[-108.01171602872557,26.693609089902566],[-108.00789662425882,26.699330465213166],[-108.00896886663833,26.70158072449874],[-108.00678549024303,26.705531343556913],[-108.00705980797437,26.70641785554875],[-108.00671003907559,26.71478258982961],[-108.00880239077964,26.7233118581305],[-108.01085114773082,26.725650009580022],[-108.01866019823467,26.72983029207421],[-108.01881208096,26.731781464454343],[-108.01824683843148,26.7322633351568],[-108.01524184953388,26.737054026074873],[-108.01372172777712,26.75031253612775],[-108.01086893371968,26.754131299175924],[-108.00570073374229,26.761048798594913],[-108.01426423371493,26.77315294062936],[-108.0376490418393,26.769780806615188],[-108.02682084689212,26.79846637418575],[-108.03683121746337,26.810075236206387],[-108.0845568990311,26.86133827718544],[-108.09410724905484,26.870463674601467],[-108.14424734749178,26.867649329537983],[-108.13960045457475,26.89547949846525],[-108.1399545626337,26.89623399738582],[-108.14200097675757,26.89775722355057],[-108.14149430682744,26.903787111340932],[-108.14154011170905,26.904920751699933],[-108.14172114117821,26.90659018961918],[-108.14420310132016,26.90843947754803],[-108.14538235710819,26.90886312449277],[-108.14831480061514,26.907589806839667],[-108.1503511755489,26.903499820554543],[-108.15317411024023,26.897693270659772],[-108.15591325436321,26.89521651201966],[-108.1598657694451,26.89476304933231],[-108.16586107724163,26.895883022058626],[-108.16705194479022,26.8958403047331],[-108.17174976842921,26.89233640711467],[-108.17097241619962,26.887723237486682],[-108.17094292754177,26.885923583785257],[-108.17251554705524,26.882490236059994],[-108.17454863430754,26.881464825522357],[-108.17758443000105,26.882200453479868],[-108.17870848202,26.884523208604264],[-108.17922364785176,26.88782170533068],[-108.18020849467854,26.890282044529556],[-108.18172892606952,26.89818351022518],[-108.18566947526864,26.899712537660662],[-108.18707898316222,26.897262807266486],[-108.19008050384588,26.89587213745125],[-108.19583502947921,26.900398278804005],[-108.19766697716034,26.90267074342455],[-108.2005458960445,26.903513513736584],[-108.20235982354694,26.90379120996721],[-108.20422810385224,26.90569574461881],[-108.2073901873519,26.906000071198605],[-108.20796368513265,26.90462140426132],[-108.20627488148841,26.89926969953558],[-108.2037100370635,26.89390063588519],[-108.20277959302058,26.890618711069692],[-108.20352659323191,26.887672181374626],[-108.20620857801697,26.88554959062776],[-108.21232949447148,26.88615401454365],[-108.2162122673032,26.8900380349437],[-108.2185125030773,26.89522038214767],[-108.22067445351126,26.89780124798267],[-108.22690224083107,26.902335508438853],[-108.2302369003882,26.90572458018886],[-108.23032428921778,26.90645606000976],[-108.22853341730479,26.91031231875337],[-108.22865988110982,26.912825924299796],[-108.22734432019968,26.914397545879865],[-108.22780150175947,26.918028394632017],[-108.22653998902803,26.921296226928348],[-108.22514020729483,26.92209142850902],[-108.22625106402535,26.929533579562644],[-108.22937699901036,26.930620573701788],[-108.23101629786277,26.932804556123017],[-108.2295809751298,26.93980072712236],[-108.23041564049453,26.940200373478035],[-108.22933898190956,26.941453591752918],[-108.23094542471608,26.94419697291181],[-108.23073867835029,26.945566145802047],[-108.23050651038136,26.9479648226864],[-108.23497890423022,26.953965754379624],[-108.23501571478636,26.958619842585676],[-108.23355855065091,26.959618020219352],[-108.23328880355683,26.960243007942097],[-108.22629970786045,26.963644195291977],[-108.21837356592317,26.964787004566062],[-108.2189578070288,26.971675019311476],[-108.21602842559616,26.97039687217972],[-108.21452670547228,26.97732336945427],[-108.21069087888259,26.978119800471575],[-108.21085141647336,26.98038190255147],[-108.20797247716052,26.98106456815816],[-108.20471162360616,26.980293467990464],[-108.20126884211578,26.98302472396881],[-108.19879230343207,26.98092727481651],[-108.19690724364841,26.98112356742854],[-108.19730766176201,26.98360195609456],[-108.19459216802068,26.983558135072542],[-108.18958173387779,26.986793634550338],[-108.18789331278919,26.986361116861247],[-108.18849632677023,26.98888418500661],[-108.18822388231354,26.98950608550234],[-108.1864030501805,26.99296444548986],[-108.18244908896497,26.993020860483966],[-108.18152401703799,26.99410992308532],[-108.1836242542467,26.995309896921015],[-108.18193290322637,26.996580692665873],[-108.18154287091613,27.003195636215594],[-108.18391925539595,27.006682461813455],[-108.1838196975628,27.00925113219637],[-108.18728403670042,27.010270391843903],[-108.18733646996736,27.013438198854544],[-108.18907251194588,27.014118743794086],[-108.18983469745882,27.01859604435049],[-108.1920802993152,27.021015021253902],[-108.19273088223662,27.021393208911263],[-108.19370096651858,27.022422190339512],[-108.19365908723495,27.022586026946726],[-108.19486185031576,27.026226795171567],[-108.1922314937512,27.02644902547172],[-108.19236237393983,27.026625204427376],[-108.19445209939198,27.028925631596508],[-108.19427440594632,27.031953351743994],[-108.19948576232042,27.035172222505594],[-108.20064288266775,27.032047349062566],[-108.2035935991629,27.03074669341396],[-108.20542727949032,27.0325716989924],[-108.20954780853157,27.032294394058226],[-108.21156619843373,27.03444889614144],[-108.21332018657398,27.033570584979145],[-108.21472062566579,27.030216142889344],[-108.21946574277177,27.0290937294518],[-108.22113843072339,27.027731661065502],[-108.22269855145618,27.027690910093497],[-108.22585404841988,27.027221360952808],[-108.23214276133518,27.031602051745665],[-108.23298936850836,27.032942269088778],[-108.23407312506413,27.034394457291228]]]]},"properties":{"cve_ent":"25"},"id":"inegi_refcenesta_2010.12"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-100.53645134626277,24.111402436473327],[-100.53868325414493,24.11851603127417],[-100.51958001184215,24.11838234476147],[-100.51682748710647,24.13989667813496],[-100.5487711248964,24.14603057651567],[-100.54962419979688,24.148302405196034],[-100.58915218774985,24.16433981257819],[-100.61339988924078,24.173944185149082],[-100.5935125375953,24.178200251100805],[-100.58509290240511,24.223925436830996],[-100.61579399671893,24.225056299710616],[-100.63306647924946,24.22598024930869],[-100.61453599060877,24.296334016559967],[-100.59993552805815,24.348791051229057],[-100.60061309908855,24.372904981415388],[-100.6035333362928,24.401300065779708],[-100.71121009316442,24.49152182721184],[-100.74232428782403,24.460435469160075],[-100.77274677134369,24.426862578058945],[-100.80994755536369,24.386963410717158],[-100.80771464282321,24.387327793327984],[-100.8185080159534,24.377870411778474],[-100.85038150199193,24.34354082519485],[-100.85067517306311,24.34339695067598],[-100.8511627405772,24.342890460723424],[-100.87008731260835,24.330600401317724],[-100.895104336712,24.314277602634547],[-100.90611786269005,24.307091662155415],[-100.90712373663393,24.306435624720052],[-100.91872815361711,24.298866374171894],[-100.93418988036615,24.2887818474386],[-100.9452859906072,24.28119589009077],[-101.00667463114502,24.335834778094352],[-101.00607487743696,24.33751956009627],[-101.00548198966476,24.339184999757833],[-101.00686475298255,24.34552206151136],[-101.00985540974665,24.34842714413014],[-101.01066860681908,24.352500581287643],[-101.01062690337375,24.35681985101121],[-101.0061943139442,24.35859705102115],[-101.00552722791355,24.36220122913852],[-101.00329707576509,24.367702434675493],[-101.00543461484921,24.36857070100865],[-101.00674206756793,24.37410746663312],[-101.00643162562545,24.374807156881047],[-101.00610541493126,24.37562018552353],[-101.00475700212542,24.377502193962187],[-101.0074294493761,24.377615916117463],[-101.00811331786292,24.381983756681905],[-101.00868703193436,24.382535302213455],[-101.00950595064853,24.384180853308123],[-101.0096811555203,24.38447881397616],[-101.00739146022613,24.38511374941976],[-101.00737172496258,24.38586834450558],[-101.0074044009167,24.38636163747026],[-101.00798285359741,24.38687170184926],[-101.00849586455121,24.387574202114365],[-101.00551621423261,24.390051264112174],[-101.00549219490983,24.39013439579736],[-101.00143907823599,24.394767641243845],[-101.0029497498565,24.397542626592042],[-101.00002180000826,24.39844153488491],[-100.99966597513213,24.403631330309963],[-100.99966879859375,24.403871182540627],[-100.9977798147143,24.404936332374234],[-100.99783759741325,24.405478378853218],[-100.99778800739267,24.40656771592569],[-100.99766542691907,24.40730386623227],[-100.9949602378083,24.407392778214557],[-100.99306040049328,24.41134912756138],[-100.98823465384902,24.409551944150735],[-100.9882159589572,24.411978504250612],[-100.98760951017096,24.41254161953549],[-100.98930740563031,24.41430573122284],[-100.98970266194118,24.417993619002345],[-100.98791818847195,24.417793389766302],[-100.98707517015367,24.420008621265538],[-100.98630313608419,24.423674997211094],[-100.98617737631457,24.42406275777057],[-100.98592688832554,24.424254177812884],[-100.98610676557581,24.42446640568744],[-100.98487354066492,24.426808521691726],[-100.98581059265666,24.430751811302628],[-100.98711137615072,24.432217163641837],[-100.9873270582375,24.432519322276505],[-100.99606514424539,24.418155287039895],[-100.9987178101469,24.413794040566245],[-101.00699665384371,24.40018066595519],[-101.01268867220483,24.390819137674953],[-101.02690406201793,24.341484376300343],[-101.04790574225723,24.268236305703283],[-101.06540152223704,24.207021108209346],[-101.0704353582297,24.205021432574142],[-101.08567161830172,24.198967500049037],[-101.14429902423421,24.175653490333218],[-101.17323215588186,24.164136610171113],[-101.21674638210771,24.15973190806818],[-101.20694923718128,24.062314528852653],[-101.20183283569162,24.01103971411152],[-101.19250494627772,23.918559145786958],[-101.19417783354459,23.9174169786682],[-101.19664556806168,23.915556778049563],[-101.20051343806108,23.91269404769656],[-101.20244142270974,23.911210319831014],[-101.20406385254341,23.909985380232342],[-101.20662031519618,23.90803744123133],[-101.20923799093799,23.906123102582285],[-101.21190610214006,23.90419132991161],[-101.21316008925106,23.903168889553797],[-101.21558398799544,23.901333662595277],[-101.22004121362778,23.897923982816394],[-101.22279565887771,23.895789069342698],[-101.22704054545335,23.89256091540898],[-101.22937069507003,23.89086312233701],[-101.23758668287343,23.884592227980704],[-101.24168668402706,23.881423748423572],[-101.24880496333901,23.875902003864212],[-101.25095216438797,23.874182177775708],[-101.25646916849973,23.86970389874972],[-101.26256741284664,23.86488422078594],[-101.26790282488969,23.860690763119862],[-101.27626247085686,23.853914123598315],[-101.2853508834138,23.846534676701935],[-101.2889452012949,23.843617619734573],[-101.2948780861081,23.838831584851334],[-101.31260458349675,23.8244221987851],[-101.32699343697595,23.812668567020012],[-101.34038625178005,23.797116720338465],[-101.34099180049486,23.79648735240363],[-101.34205919108587,23.795734416281448],[-101.3450721929687,23.79300617122493],[-101.38100928777669,23.763448514317986],[-101.3909415437119,23.755237822743368],[-101.43711472654758,23.71703107397434],[-101.46341587133918,23.696267745908756],[-101.46671590442259,23.693661768631387],[-101.51798154241351,23.65315586257202],[-101.52639744416632,23.646502293225694],[-101.54052893892168,23.635327458107497],[-101.56099521199167,23.61898600270314],[-101.5823507796556,23.60165835417382],[-101.5886080071831,23.596839494655455],[-101.62608894925648,23.566794493460748],[-101.63929803106731,23.556308783250415],[-101.66705552945609,23.534014506163942],[-101.67036930042366,23.531247833837142],[-101.67796336899755,23.525380831808377],[-101.71209987201155,23.497940385810807],[-101.72235149403724,23.489721200446127],[-101.77512244524883,23.44762936145122],[-101.82739825400358,23.43113857729753],[-101.84860555638306,23.424442386315206],[-101.86891806178443,23.418025374167428],[-101.91084451078251,23.404769830515704],[-101.95328430131764,23.39133774537362],[-102.01194383725141,23.37274855103408],[-102.07097355866154,23.363006223380125],[-102.10066254284465,23.358176118867334],[-102.10555186408362,23.357211503221095],[-102.12253245396982,23.353860092518005],[-102.16879912103508,23.361025646624],[-102.16861496517663,23.39890752326204],[-102.17454175475359,23.39955412293898],[-102.1913422658157,23.401387920364527],[-102.19616030773216,23.42489401875082],[-102.19361521315358,23.447599111150282],[-102.23815030651025,23.446901434249867],[-102.24219986557921,23.427284223419008],[-102.24477998681954,23.4126237381916],[-102.24603501060261,23.403890324613315],[-102.2501121680803,23.379960827649825],[-102.25071859651854,23.378289967391822],[-102.25207734662314,23.3720268328276],[-102.25273204632214,23.36900878929464],[-102.25361148171686,23.364955888710824],[-102.25627493613439,23.360847297663327],[-102.2583433160732,23.35765703537311],[-102.26826193966951,23.34227789981162],[-102.28633064651581,23.328069810052284],[-102.2883298332016,23.327274610455845],[-102.2960384100682,23.320501284735087],[-102.29408485033332,23.318480736071024],[-102.26457905360769,23.290092928462457],[-102.26953366823597,23.279912882493193],[-102.25780389984072,23.28007903907752],[-102.2563924266567,23.28242038898776],[-102.25469769675897,23.28083216916508],[-102.24985346361598,23.29101767418956],[-102.24717070565788,23.292409075978355],[-102.24594807305232,23.297282924457818],[-102.24210750327609,23.309117737170254],[-102.24106911643315,23.31498161577673],[-102.23401912269958,23.314117028503688],[-102.23182041783133,23.315184938061975],[-102.23267918958788,23.31211858628609],[-102.23655190916912,23.30097533563037],[-102.23908412844605,23.293451544243283],[-102.23978794183762,23.29149125774734],[-102.24046877879107,23.289337972546548],[-102.24170524800576,23.285780966599475],[-102.24467212742582,23.276768756394006],[-102.25279624023767,23.27123520171233],[-102.25699586573933,23.27148478956832],[-102.26310059035836,23.27181865178619],[-102.28582547243377,23.273320143773446],[-102.28936898636283,23.231690932242373],[-102.26087226529313,23.219038248135178],[-102.25982779598502,23.218577430469736],[-102.23945770471158,23.2094932897881],[-102.24097403062984,23.169380428278373],[-102.22992522823722,23.151884311182982],[-102.21415463713652,23.131319867045704],[-102.21494391261126,23.129641065700127],[-102.21988283593174,23.1247653614447],[-102.22373132767495,23.11941818974941],[-102.2277931610638,23.11091290979283],[-102.23063546043505,23.106537601065213],[-102.23080652769585,23.1062073374747],[-102.23747200718918,23.095274348278963],[-102.24153883715815,23.086335462356317],[-102.2478214270837,23.078381045550373],[-102.24873053942821,23.076551885350682],[-102.24903310330427,23.076251030541357],[-102.2497314180161,23.0754575937126],[-102.25019827570463,23.074346310232045],[-102.25079279090039,23.073123117201476],[-102.25131912742506,23.07159171939469],[-102.25253790857562,23.066555420675115],[-102.25279977979801,23.065238375328192],[-102.25323837250471,23.064184365156223],[-102.25368374787149,23.063130343560204],[-102.25427161456622,23.061182915112],[-102.2545300832412,23.060310615426204],[-102.25499404970725,23.05928328974551],[-102.25531863824085,23.058556994355797],[-102.2557625159132,23.057984870429948],[-102.25611233780967,23.05749522473758],[-102.25620542198203,23.056904319837827],[-102.2564499276707,23.056104942017726],[-102.25731507256597,23.054583995857058],[-102.2588528674504,23.052061673387584],[-102.25894138640564,23.051617624279686],[-102.25909029822589,23.049626928693215],[-102.2591984080027,23.048398958918995],[-102.25953661547197,23.047454718813867],[-102.25983096628988,23.046965835860192],[-102.25992702970473,23.04667410700131],[-102.26005097243296,23.045915508568726],[-102.23808164712693,23.04764387986529],[-102.23681424707212,23.04009641736519],[-102.23555115928872,23.032842557284027],[-102.23380082110339,23.026401575234274],[-102.22815162411018,22.99652339271188],[-102.20993147984865,22.929978080869773],[-102.19959991583642,22.89221369460529],[-102.19213176850053,22.864902055642574],[-102.17613125663127,22.84302348552609],[-102.17264784495023,22.839106524350257],[-102.1676570532901,22.833179008252557],[-102.16609125937157,22.831767058590287],[-102.16565021384338,22.831176590461666],[-102.16404237076398,22.829052869406667],[-102.15862919560061,22.822524335187495],[-102.15075386757587,22.812774018536686],[-102.14448634825249,22.805138270216844],[-102.14066782596774,22.800530667509463],[-102.13152731383417,22.790343319257204],[-102.12489687370157,22.782952205930144],[-102.1018231308816,22.765877304140588],[-102.09047175790198,22.757474263667177],[-102.08859647253126,22.756085871208256],[-102.06307136183585,22.737182893718966],[-102.05414146431372,22.73056747949704],[-102.04502017854418,22.723809075416966],[-102.03956918692825,22.719769588685892],[-102.03490397094998,22.716312059394227],[-101.9482140329983,22.652005529156668],[-101.94605260495979,22.650400775033347],[-101.93975602893937,22.64572548596385],[-101.8675495221492,22.654652259795796],[-101.85328423182472,22.65602510758538],[-101.85664049989913,22.639991994219884],[-101.85678333875853,22.639268837102065],[-101.85815851748481,22.631214817939167],[-101.86219167689279,22.613949531561502],[-101.86774130125451,22.587343853151253],[-101.8681209219015,22.585577884454096],[-101.87295770852978,22.563073355040956],[-101.87277895075874,22.56303454403519],[-101.84733208542224,22.55750730639835],[-101.83823259464555,22.554897242819038],[-101.82628337697543,22.552265042910165],[-101.81989152721468,22.55129470783902],[-101.82565548477248,22.53400405694856],[-101.8278722675218,22.521752323102817],[-101.8304379101823,22.512013475770175],[-101.83714104912144,22.499692133343274],[-101.79913815822397,22.470515659217313],[-101.78336073381428,22.465033835066606],[-101.77849501257504,22.48486809132112],[-101.77153528577065,22.488163324443576],[-101.76789913004842,22.487260998383817],[-101.75728522549468,22.48454787286545],[-101.73536074699956,22.480214960330727],[-101.74617508252152,22.50869326183937],[-101.69601849818599,22.520422107438776],[-101.6949020016337,22.517768914596843],[-101.689886127553,22.515817493192117],[-101.68796904574629,22.515991657744564],[-101.68494974813666,22.511364452096927],[-101.68052473686834,22.510342750386542],[-101.67474957871502,22.506539898000653],[-101.6684390186208,22.50642309407482],[-101.6624790759655,22.505101098115176],[-101.65952631938421,22.505735597545595],[-101.65609034615971,22.512869604513014],[-101.65647740810522,22.513262143830502],[-101.63744498985562,22.534994854342756],[-101.59580201370505,22.58251347708358],[-101.59555713917649,22.58279277005954],[-101.59048296915489,22.588579794218447],[-101.59008315635862,22.589035747229275],[-101.59038974520757,22.591082132681265],[-101.59531301459077,22.62393482606865],[-101.58773232176031,22.62661186769543],[-101.58732500282673,22.62113172478712],[-101.57377842944828,22.61289817365929],[-101.57367417538086,22.62417683206985],[-101.57279717936825,22.630124210353245],[-101.57379475024902,22.63326291984481],[-101.5738796914431,22.633732422418518],[-101.57371463601669,22.634394341125414],[-101.57244809138797,22.637169586939876],[-101.57082895253103,22.64411786942651],[-101.56921157625317,22.65345274108546],[-101.56739799847958,22.656776324888142],[-101.49998961028064,22.69964057560037],[-101.49700359690951,22.70154100902488],[-101.49096453982946,22.742877356355166],[-101.44062211874575,22.745908933648195],[-101.41107707315626,22.747680689734068],[-101.3927981721493,22.738131083463657],[-101.36005760960819,22.71433720078852],[-101.3594967536659,22.71466952597524],[-101.34923392193076,22.711779297368594],[-101.36155689203639,22.69690513200112],[-101.36195784317675,22.696267903412433],[-101.36424260258616,22.693689379374064],[-101.37896773007566,22.67702585380954],[-101.38001824281685,22.675834920202306],[-101.37331641126576,22.668345376160858],[-101.36512558016886,22.660278126801813],[-101.35937609682856,22.653532942663276],[-101.34765993676416,22.656190081944146],[-101.34700925221176,22.657622140764488],[-101.33693697632793,22.65875603975286],[-101.3360064897231,22.656091502777087],[-101.33463355288086,22.64970503923439],[-101.33472988118609,22.64858940063317],[-101.33387374588636,22.64211314214384],[-101.33172097673958,22.642147744925467],[-101.33041159108643,22.641529220835025],[-101.32698899161602,22.63894279128823],[-101.32674304587073,22.638686662676378],[-101.3257346646891,22.637694045453657],[-101.32613401269344,22.630662986101356],[-101.32475857328467,22.629093076112667],[-101.32340890260082,22.628255590548747],[-101.32210300334259,22.628280661682368],[-101.32036161822123,22.624098915401362],[-101.32004837436114,22.623643642841614],[-101.31873910308673,22.622967246958524],[-101.3185488902592,22.621319837685178],[-101.31796600716211,22.62016268646869],[-101.31621928146507,22.61752366316466],[-101.31206716604595,22.61367265594879],[-101.3112181795172,22.613668826950345],[-101.30709738149574,22.61130862333806],[-101.3055027716203,22.60918738426119],[-101.30503130523692,22.608239861909055],[-101.30362153361278,22.60193035085888],[-101.30179501624735,22.599701955022],[-101.29861289256547,22.59386258530708],[-101.29795279319063,22.59320593664046],[-101.29750297841196,22.59150895492496],[-101.2991517222672,22.589440215487627],[-101.29681037084947,22.583539050434467],[-101.29510203580611,22.58373747820292],[-101.29358956322113,22.584513985917567],[-101.28833839913148,22.56218977208556],[-101.28769703717433,22.560328039310832],[-101.2875192894137,22.559811316683295],[-101.2876294635517,22.55974915128553],[-101.2890862309767,22.558613536885673],[-101.28930468946754,22.554014265459728],[-101.29154343994907,22.545680963220377],[-101.29190121516308,22.54448382571462],[-101.29408464950245,22.540172699411187],[-101.29460763349562,22.53642323599712],[-101.29632363063035,22.535478197093482],[-101.29491150485029,22.532756089005204],[-101.29428215268774,22.529063167893355],[-101.29511077331131,22.528450302660474],[-101.28690862305075,22.51557121899691],[-101.28627643509657,22.509032455918543],[-101.2857263835055,22.507855651071054],[-101.31538349513141,22.469648962616077],[-101.31372633554037,22.453490173677892],[-101.37478575561346,22.45645836438962],[-101.3739175258118,22.444029456396663],[-101.37358847710186,22.439554148723232],[-101.37558934254957,22.41673664114279],[-101.37759530273473,22.401395137104657],[-101.3776503090599,22.401063617742977],[-101.37842900048673,22.39462201975624],[-101.38191054629021,22.357485079753417],[-101.43297235880311,22.36327674511955],[-101.43512541698249,22.34153398314379],[-101.43483876213315,22.33864145263783],[-101.43266638983437,22.33541188228571],[-101.42907772981988,22.332896895934994],[-101.42762273555269,22.328637220058965],[-101.42624049653386,22.32857232146455],[-101.42547748413529,22.32438786293409],[-101.42389859919018,22.32359802446075],[-101.422501003913,22.319979648240405],[-101.41842848248962,22.316067292930086],[-101.41973248764646,22.315041808519084],[-101.41685351886076,22.31322154293548],[-101.41076021540289,22.31130068039039],[-101.40889072692659,22.30965869334807],[-101.4084133156814,22.30598364649296],[-101.4055161103604,22.303457757745548],[-101.39920956440704,22.30385746996444],[-101.3937960002657,22.30047454701571],[-101.39143494730223,22.299901873589533],[-101.3920293758523,22.29837422795964],[-101.39536515255622,22.296745311093332],[-101.39854929342238,22.293891429668292],[-101.39913218482269,22.289964778111482],[-101.40075302469256,22.28698627597572],[-101.39800010204914,22.28241387703929],[-101.39815041831781,22.281426817075726],[-101.40490160150557,22.27868330264181],[-101.40761377191791,22.28087186267527],[-101.40899935757471,22.280436608131197],[-101.41013332682974,22.275080952223846],[-101.41164770941805,22.272414953688667],[-101.4162589158754,22.26734553534311],[-101.39693587395902,22.26594502260889],[-101.39666039759896,22.265921355686032],[-101.3853540153674,22.26509325849503],[-101.38318253663454,22.261625490458755],[-101.3820188656037,22.261018415186243],[-101.37899995992626,22.26103738634191],[-101.37740374956024,22.261125203197935],[-101.37441464381556,22.258572595273563],[-101.3726534039202,22.255341615530995],[-101.37060343540969,22.253293557538996],[-101.36948952715943,22.253260294254403],[-101.3694652006036,22.25321104968566],[-101.36704466070341,22.25310339750888],[-101.36342634914689,22.249440548640223],[-101.36327993436498,22.24814133206661],[-101.36444928644073,22.24441595113842],[-101.36167068332787,22.238483815884308],[-101.35285398511121,22.22920364556461],[-101.34869526356232,22.226046490420174],[-101.34520361118041,22.224303667573963],[-101.34052445969314,22.220524492980246],[-101.33872402995826,22.22016417412624],[-101.33646895575515,22.217462260939328],[-101.33638573029504,22.217351034443766],[-101.33263644146547,22.212788035441463],[-101.3323395277032,22.212041775137948],[-101.32425316153171,22.209893457645535],[-101.33273137687178,22.20005924655402],[-101.35130591793126,22.176759685475133],[-101.33769286481794,22.143522508830415],[-101.32774499056819,22.144112061104806],[-101.32938230445353,22.135605190403226],[-101.33830837427689,22.115618853597596],[-101.35076348407011,22.087758967044863],[-101.35475102698882,22.068914049079353],[-101.3524376789976,22.06808492199343],[-101.35117649130797,22.06755408844299],[-101.35207757773946,22.063208792445835],[-101.35238683255153,22.061671212175952],[-101.35335910890757,22.055924544513346],[-101.34588527612863,22.05360639757282],[-101.34658727091778,22.049690076114587],[-101.35167041485556,22.051613013991584],[-101.35406890913782,22.044827265707397],[-101.35417597361163,22.044704071733804],[-101.35679094936324,22.043487880341218],[-101.36025165607873,22.043917100642318],[-101.36101176472596,22.04100105956155],[-101.36420302973937,22.04178571716176],[-101.37002630467487,22.043290150518658],[-101.37707837596179,22.044962136157892],[-101.3776093938339,22.042127238725868],[-101.37446371882567,22.041365135755598],[-101.3755383218546,22.035387188427194],[-101.37572727597711,22.034686224333313],[-101.37589797585355,22.033885288700446],[-101.3685733651784,22.033031021302122],[-101.36900061653984,22.03096381432465],[-101.36952932547138,22.028828524600215],[-101.37129327745168,22.027716382079177],[-101.37328295405348,22.0280754540334],[-101.37465538048934,22.02829567485685],[-101.37716861736902,22.02857321943651],[-101.37837539180805,22.028648050375466],[-101.38069119364354,22.028759334444715],[-101.38275537653499,22.020737904944724],[-101.36569229130419,22.01854843146151],[-101.3640043155919,22.02637959572951],[-101.36239301202818,22.033508655034154],[-101.35462068448885,22.030413064677873],[-101.35167499453945,22.04378915419136],[-101.33090075788323,22.035315192151586],[-101.33213545057572,22.02772707163831],[-101.33246661049361,22.02461149807226],[-101.3272084754617,22.021498046033287],[-101.32794249830795,22.016468457451253],[-101.3392353099614,22.014985709849725],[-101.33776503277721,22.025133009950196],[-101.33932909530779,22.02443320076179],[-101.34857244076807,22.028071116479623],[-101.35243928867135,22.013081587408692],[-101.34474261070216,22.014142429656147],[-101.34529856149993,22.00587992453768],[-101.3386318725369,22.006029571933993],[-101.33542198663008,22.007116485716267],[-101.3293974493991,22.007169096633675],[-101.32981488278313,22.004819325744847],[-101.32679624545915,22.005079066098347],[-101.32651029051107,21.999728051739964],[-101.3274846266757,21.99702644508818],[-101.34201046937085,21.996058425547915],[-101.35431623636168,21.995548575851217],[-101.36054023435344,21.99524112190892],[-101.36218987142314,21.990289777062117],[-101.36376417030357,21.991279965215597],[-101.36770135594844,21.99008895954711],[-101.37084660527387,21.991477940656296],[-101.37336572432935,21.990249361177405],[-101.37494648753574,21.98734049600148],[-101.37493248729015,21.98454588298563],[-101.37659029020676,21.98118421352069],[-101.38443575168111,21.982296402366273],[-101.38395044573252,21.974803282609912],[-101.38391788269621,21.97411971055567],[-101.38808601351428,21.973846903435856],[-101.38862046677752,21.97135998409516],[-101.39048900524051,21.97114910935511],[-101.39154724991471,21.96991911282703],[-101.3935745969344,21.968092512295016],[-101.39575360163747,21.968054596625507],[-101.39638353264507,21.967950577650186],[-101.39716835143827,21.96580318942671],[-101.39966914538235,21.963708393902436],[-101.39929278005224,21.96234780535218],[-101.4008184576,21.96062434627538],[-101.40049752109542,21.95858724157341],[-101.4007626169327,21.957351749094073],[-101.402367483999,21.95640373023616],[-101.40434290739023,21.952634280009875],[-101.40516117454143,21.94849212583165],[-101.40808408186649,21.947218248469653],[-101.409381313751,21.9466317262424],[-101.4121149012542,21.945117063626128],[-101.41390889789227,21.94357099400287],[-101.41586684923601,21.941893907092606],[-101.41829480735953,21.93997617510962],[-101.41964729270717,21.938965893649538],[-101.42115043243325,21.93957743414137],[-101.42241220614909,21.93946065487745],[-101.42688817538283,21.9351091668471],[-101.43008807345876,21.93282714669698],[-101.43038399297194,21.93229856021628],[-101.42456375631218,21.927921373398476],[-101.4201184353787,21.924544135962435],[-101.41786682622472,21.9227743172778],[-101.41199138518368,21.918655937103665],[-101.4126792766425,21.915030841338194],[-101.41022762141813,21.90869354165318],[-101.4153146153659,21.90638094933587],[-101.42734560763756,21.901770707142532],[-101.434595921354,21.897065064867093],[-101.44011215626017,21.910265274784763],[-101.44639445442203,21.90625567467964],[-101.44076294675295,21.892895988941348],[-101.44439904562313,21.890764122428322],[-101.44533496876124,21.889978185645134],[-101.44664135853475,21.889109165188643],[-101.45019695991806,21.88671293351473],[-101.45220316763033,21.88538570309356],[-101.45749329367658,21.88344935779469],[-101.46276093013176,21.881591374729],[-101.46645764971447,21.880224910456946],[-101.46619770292733,21.87051147635026],[-101.46890571124669,21.871070231207796],[-101.47039270216914,21.870703147432835],[-101.47070384517548,21.870621590659937],[-101.4727231471129,21.870101147360458],[-101.47911888064118,21.868587747921254],[-101.48319167278498,21.86768153401772],[-101.4811730533753,21.861332172157233],[-101.48041132028015,21.85925805554882],[-101.48417336637641,21.858145216492744],[-101.48364884408767,21.856453418343506],[-101.48818333570551,21.853427726329073],[-101.48704470392607,21.84900260639887],[-101.4867316858784,21.847943015811495],[-101.48609134420218,21.841886728057887],[-101.50351527027215,21.830123990877496],[-101.50261805994245,21.827515324106912],[-101.50085107569777,21.822662116056904],[-101.49634592674772,21.809987089607148],[-101.49633124512786,21.80993965897011],[-101.47617040693706,21.825423026190833],[-101.47387339916861,21.827391016438582],[-101.47023064145475,21.82717659888516],[-101.46596323975768,21.827058798968153],[-101.46406140479581,21.820225035786507],[-101.46073559404357,21.82390561452604],[-101.45886244185647,21.825872594480813],[-101.45820615202189,21.8261647078877],[-101.45507234353897,21.829958544724207],[-101.45358587864388,21.82669178413647],[-101.45044971835301,21.826687164502914],[-101.44997219252303,21.826676242503254],[-101.4472102658774,21.826550563238925],[-101.44393424326762,21.826521624392058],[-101.44372619690944,21.826540661789124],[-101.43561413449794,21.825918812409327],[-101.42635682837971,21.825214680928923],[-101.423387119356,21.825024194316654],[-101.42266893118028,21.824962937728742],[-101.42029261375569,21.825940324311773],[-101.4138371461122,21.828650913388913],[-101.41250583406878,21.82920139478165],[-101.40700350817724,21.831455184988158],[-101.40034783975557,21.832866504886113],[-101.39432731058787,21.834167627780175],[-101.39020354027036,21.835054346285347],[-101.38793502615363,21.835550757464546],[-101.38551434628312,21.836005570851682],[-101.38438742063715,21.836194799740213],[-101.38274053922993,21.83648399568068],[-101.3799374422295,21.836928675864897],[-101.37889393661516,21.837105800709992],[-101.3778483641143,21.837258055406835],[-101.37378272988809,21.837918606944925],[-101.37144566511614,21.838340528306617],[-101.36566353971597,21.839361621435046],[-101.35139161340686,21.838089278215648],[-101.33978302703662,21.83700100899034],[-101.31948394367515,21.83533444733098],[-101.3145043304429,21.832394028255294],[-101.31124605867166,21.830374075119153],[-101.3058755816769,21.827014513012614],[-101.29695834337474,21.819267144700746],[-101.29589971933893,21.81791366283909],[-101.29354344833325,21.81486328476575],[-101.29109554366909,21.812623610806725],[-101.28766855850199,21.811846537908593],[-101.28681466947256,21.813387378041455],[-101.28654783992317,21.815692319480206],[-101.28415901819795,21.819392490805114],[-101.28367225570781,21.820204668236215],[-101.28045040663557,21.82163430173523],[-101.27883993436296,21.8211968219195],[-101.27548121434086,21.822134621055795],[-101.27223746430434,21.821928935450728],[-101.26610843097905,21.82152367915552],[-101.26495905042344,21.822570270224787],[-101.26072509255903,21.823449955468902],[-101.24818166530741,21.821935160132625],[-101.24505443617147,21.822091809780034],[-101.24231843107862,21.8206465732805],[-101.22903460054482,21.817829678153373],[-101.21721216083495,21.815813491216318],[-101.2185247495691,21.808852436810014],[-101.2197946251552,21.80220039197519],[-101.19873793420254,21.784939867269543],[-101.19206194215064,21.779297467306776],[-101.19016350184518,21.777478048183696],[-101.16392541504274,21.759047911428297],[-101.16126698216499,21.757505921689585],[-101.14321996976753,21.755556612689816],[-101.13613888738865,21.753225912812468],[-101.10451806621217,21.75744636858701],[-101.08454001678513,21.76050153625272],[-101.08233703366955,21.761493559591372],[-101.05967076284497,21.76506055063311],[-101.05924796670632,21.76552074088329],[-101.0490386051028,21.763898077162025],[-101.04884402876644,21.76388269067172],[-101.0379802267837,21.76221940937046],[-101.03449544808586,21.762968189694732],[-101.03199496208964,21.761462506148177],[-101.03031682737941,21.761088750476972],[-101.02885144630693,21.76083223156121],[-101.0260750690025,21.76037168408635],[-101.02266305256148,21.759846848444397],[-101.01141069335512,21.758122369963303],[-101.01011644933874,21.7579381527691],[-101.00517262249508,21.757231141597742],[-101.00611951365283,21.751910298149937],[-101.00315713307646,21.751046834916394],[-101.00230330929008,21.75081693885403],[-101.00163658225438,21.752811480516186],[-101.00002931909194,21.75640722935509],[-100.9948132578632,21.755581304113832],[-100.99162841502971,21.75507057166891],[-100.99108033449517,21.754908450986306],[-100.9856641962196,21.754097106721304],[-100.98197436681795,21.7535273598549],[-100.97711614257815,21.74977765797223],[-100.97113779923217,21.744895401510007],[-100.96540241875454,21.734858111010794],[-100.95444503630841,21.733772747485375],[-100.95020727434996,21.733286436882565],[-100.94350280762734,21.732621624384137],[-100.93805454568377,21.720534558971792],[-100.92949132149965,21.718051682016892],[-100.92608731879534,21.71690486530383],[-100.91800062267555,21.714454963350533],[-100.9125775728088,21.713648731724163],[-100.92127346187601,21.7002735726756],[-100.92120188827198,21.699959607823416],[-100.92044429261233,21.699733037911813],[-100.91987807030989,21.69913239091835],[-100.91774027451646,21.69626677624035],[-100.91651622001717,21.695260703119175],[-100.91578025067764,21.69456868359498],[-100.91484179712774,21.69410737876973],[-100.91453866136169,21.69375969177088],[-100.91354870392229,21.693161122027448],[-100.9134992408417,21.69288566386041],[-100.91302310052504,21.69246515132056],[-100.91278445473637,21.69231707868147],[-100.91240449784704,21.6920893805667],[-100.9121401312309,21.69203418417328],[-100.90933063821302,21.692265508662956],[-100.9082273619353,21.689392306418142],[-100.90765893730145,21.685236092757805],[-100.90771421412597,21.684728121075636],[-100.90718336572724,21.681636795098257],[-100.90445971095744,21.681124848184936],[-100.90237510529965,21.682018344107348],[-100.87011468039879,21.672489422023432],[-100.86982179599386,21.672969580418055],[-100.869778790076,21.673398416796033],[-100.86514988067239,21.68707959349939],[-100.85985794583542,21.68189885966899],[-100.85654812063348,21.678130023871063],[-100.85310578597779,21.674371389360033],[-100.85269160126825,21.67386090974327],[-100.85216602398464,21.67335020392568],[-100.84121900788591,21.667440498491544],[-100.8343214940258,21.66455877956281],[-100.84260116024211,21.64902660576962],[-100.85006052200805,21.63507204945239],[-100.85767824039067,21.61898658428862],[-100.83500826750702,21.609820786643127],[-100.81656096242779,21.602653399016106],[-100.8145776916632,21.60137794169765],[-100.80949610033218,21.592049827393566],[-100.80670391988951,21.593166448040733],[-100.8058693797866,21.59385985970073],[-100.792308372136,21.594834176087772],[-100.79071660808273,21.594070930178418],[-100.78386260069203,21.592028162662928],[-100.77617572643481,21.588629991964694],[-100.77518365090964,21.588546180490823],[-100.77329500144492,21.588121796256587],[-100.77185837350333,21.59298636164641],[-100.77246761321805,21.595451628676017],[-100.76872331584781,21.594051259386333],[-100.76702739305597,21.59228621740249],[-100.76611481404211,21.592143801036457],[-100.7660930662463,21.591992344780067],[-100.76619443637207,21.590466519324764],[-100.76575837600012,21.590511841660998],[-100.7652638759036,21.59047633348314],[-100.76517529766159,21.590287704783975],[-100.76320290954493,21.58799274005173],[-100.76202360752063,21.58505116151491],[-100.7617631853513,21.58493521085927],[-100.75759935376999,21.583890187426675],[-100.7571268708881,21.583706998494904],[-100.75614320343362,21.583570120043248],[-100.7525470616248,21.58134974975951],[-100.75018175060097,21.580364047147157],[-100.74818101875076,21.58056013051788],[-100.7472464983112,21.580941015969586],[-100.74490476285553,21.580723054451084],[-100.7434446228936,21.580178409160794],[-100.73970845450208,21.579178030818127],[-100.7340726364518,21.578543721649567],[-100.73354008516623,21.577502567875854],[-100.73272764273361,21.577355364145433],[-100.730360474203,21.575532590822718],[-100.7295183331143,21.575045224976407],[-100.72755525223727,21.568026266839013],[-100.72661061661864,21.56720543192256],[-100.72485579711531,21.566183799842975],[-100.72455737849367,21.564740816902713],[-100.72418317302288,21.564090000639283],[-100.7222039107968,21.562761118622063],[-100.7208795439285,21.561490577772474],[-100.71763023388758,21.550231512288235],[-100.71473011825549,21.549522435450285],[-100.70996342925679,21.550168179279922],[-100.70738271279936,21.548890556409276],[-100.70259369227102,21.548678767024853],[-100.70130158789891,21.55134536370963],[-100.70071747679339,21.552548658416185],[-100.69209792590487,21.546369141996536],[-100.68235782878065,21.54772377111391],[-100.68069368953275,21.54713947071326],[-100.67718414429493,21.54142254263712],[-100.66951272812793,21.5365992122467],[-100.66562017350537,21.53522306643822],[-100.66559957124701,21.527821214755875],[-100.65745607072552,21.52471797694801],[-100.63854157046819,21.52829301332963],[-100.63466351521924,21.537131281427776],[-100.63703520591696,21.54134502514762],[-100.63544731963475,21.5431916267533],[-100.61429931283152,21.533134546096278],[-100.61915612685152,21.522601893313265],[-100.62191020969829,21.51898592010781],[-100.62042984741521,21.510232195809124],[-100.61495500475064,21.5057891680421],[-100.61303281081712,21.50783385879714],[-100.61139152277707,21.50934883451373],[-100.6092000045578,21.50842694144427],[-100.60878205602717,21.508658224372766],[-100.60695468069571,21.508809565668344],[-100.60651708841095,21.508902437160714],[-100.6059463665,21.508871584299982],[-100.60543863755152,21.508545304734298],[-100.59723466429142,21.512018204381263],[-100.59030748605471,21.516354754465283],[-100.5879099860449,21.519902740736825],[-100.58442773768826,21.522306426928765],[-100.58421375543429,21.524333756321653],[-100.57962333643161,21.52673836177155],[-100.5783578458308,21.52567361846326],[-100.5753024113917,21.527731994082558],[-100.57452587231688,21.527017168941256],[-100.57110368761425,21.530063323080128],[-100.56726961941558,21.52907256485372],[-100.56533169615614,21.530723601388615],[-100.56136104218615,21.53000144519649],[-100.55971903126988,21.528586335742716],[-100.55624339251091,21.53068785440155],[-100.55304445851414,21.530538182653288],[-100.55105093842457,21.53212606133019],[-100.54665070910863,21.532291261824582],[-100.54458421169983,21.534781073469787],[-100.5394753757949,21.53832630122912],[-100.5355184519234,21.539012002324682],[-100.53395002148756,21.54232682236534],[-100.51334866029498,21.54187157667974],[-100.51080447720108,21.542448495380995],[-100.48044404551638,21.54311806062924],[-100.46427392168158,21.54316816127215],[-100.46108027423725,21.545334850318454],[-100.46036777647015,21.550533047318766],[-100.46484597056951,21.55362154486363],[-100.46056405018288,21.554975760270963],[-100.45813711999807,21.55487958739741],[-100.45538121977938,21.55625644440005],[-100.45800260258841,21.564447142717825],[-100.46070197763902,21.57121001643452],[-100.4630461387747,21.57567139909088],[-100.46665135598931,21.57938239242236],[-100.46774514077413,21.58208727345334],[-100.46991915761942,21.583826754567724],[-100.47145312662263,21.587570319335953],[-100.47603155590969,21.589875033013243],[-100.48084286231364,21.59085839207927],[-100.48580214897419,21.59440427394935],[-100.48376925479619,21.59811703907701],[-100.47947465603153,21.59987388583096],[-100.47838181117692,21.602189589997522],[-100.47500273855155,21.60418293964483],[-100.47242806543034,21.604347368453375],[-100.47049036852707,21.60646546468155],[-100.46973694439322,21.610090410586054],[-100.4647011721948,21.618490697066534],[-100.46039691451438,21.62399091211438],[-100.45947901198298,21.629245818052652],[-100.4608785735989,21.63353611682885],[-100.45988910276031,21.634676210386715],[-100.46158822187266,21.637579196754416],[-100.45842205708487,21.63909126103175],[-100.45666640116468,21.641970937695646],[-100.45831634398945,21.644005548425127],[-100.4560612737996,21.64645006366692],[-100.45693157868277,21.64896235608461],[-100.45487346065403,21.6529669471945],[-100.45275150484127,21.65517094280557],[-100.4525278122145,21.660554468124815],[-100.44882400380419,21.663010082969095],[-100.4512820313235,21.666349062703944],[-100.4495087320932,21.668930012733767],[-100.44514024152375,21.672267464699075],[-100.44734173704711,21.6749234398809],[-100.44295613099706,21.678518984558707],[-100.43969187453115,21.67666425461431],[-100.43929515752842,21.6781810267924],[-100.43421413173633,21.680821659713274],[-100.43380013369222,21.679522873552344],[-100.43361500304707,21.678662788591055],[-100.42921289707107,21.67831793368731],[-100.4260533831469,21.6760844239663],[-100.41904253801874,21.674736771151345],[-100.41012299071764,21.67719315535868],[-100.40755321340436,21.677214985069156],[-100.40153130270102,21.67458304453612],[-100.39775498984068,21.674874623178027],[-100.39471368108593,21.678155208017017],[-100.3913702492573,21.67850313792735],[-100.39017894938769,21.679793642306947],[-100.3899258085188,21.680938162379448],[-100.38934885382128,21.68141120951833],[-100.38628208527115,21.68061158930152],[-100.3835769576313,21.679163264654676],[-100.38271705165477,21.680322769702002],[-100.38124063572161,21.680654651801945],[-100.37553113076592,21.679821088458993],[-100.36859203447318,21.68395262983148],[-100.36214670309647,21.686356687488058],[-100.35466203659558,21.690553130692876],[-100.35136554896542,21.691670840929987],[-100.34268755241334,21.688674443931347],[-100.33623366511131,21.686036821221933],[-100.33434324201932,21.686225942501324],[-100.32779884813948,21.684451306601545],[-100.32207813413612,21.68209417346327],[-100.3066660435382,21.68336580247535],[-100.3010273267675,21.68414634725508],[-100.29147958240924,21.68471103334673],[-100.27190360527703,21.68717365701974],[-100.27132620227235,21.68613536488033],[-100.27039300339504,21.684917031048997],[-100.26901475785405,21.6831101871212],[-100.26637371844805,21.68163702481371],[-100.26469273265394,21.68061608161173],[-100.26389588557299,21.679225780539923],[-100.26203475726226,21.67877048359543],[-100.26136276508015,21.67830503574112],[-100.25871544418771,21.676210943619367],[-100.25751970524811,21.6756911266649],[-100.25716716012965,21.675318151527904],[-100.25220746395502,21.671554036122075],[-100.25031016824579,21.669504608351474],[-100.24631148944428,21.664932605289607],[-100.23970412748645,21.665325828728328],[-100.22227543357354,21.665651517658887],[-100.21067691691871,21.658867036038316],[-100.20560504821742,21.657173939381664],[-100.20108043595877,21.65263327214285],[-100.19389505240804,21.647183372081997],[-100.18944959741867,21.64750210066171],[-100.18529360740229,21.650397864797753],[-100.1832140190781,21.649362487191866],[-100.18041752081126,21.65031967146041],[-100.17963474182926,21.65079048817296],[-100.17757212750365,21.648828926176236],[-100.17744082670691,21.648649175879996],[-100.17420579207686,21.644225058878362],[-100.17236885891805,21.641810124752794],[-100.17023597592436,21.63900652909689],[-100.16966945071766,21.638283274554567],[-100.16783784936575,21.63602408477658],[-100.16850129231932,21.63318497149595],[-100.17109518165802,21.631393770394368],[-100.1724830679455,21.629330986511434],[-100.17136898812447,21.62341269984961],[-100.17229634852362,21.61893510088197],[-100.17409006986378,21.6151736776726],[-100.17458959464932,21.610500494192934],[-100.17109824924586,21.604122507474244],[-100.17122332427675,21.602846823719005],[-100.17128279700995,21.602362041804497],[-100.17050975696571,21.600880824249316],[-100.16741089821193,21.60139134796094],[-100.16532972549885,21.60257400215653],[-100.16129350154387,21.604976576962656],[-100.16049860779128,21.60675266980644],[-100.16052256321967,21.607080208902744],[-100.15752157310357,21.613436482421832],[-100.15436637199969,21.617353545612445],[-100.15017781125601,21.61888448084403],[-100.147634483344,21.617693320547744],[-100.14740467595942,21.617817503465005],[-100.1471947924336,21.618125310514017],[-100.14702844644165,21.617943218206563],[-100.14490850926279,21.615360441233122],[-100.13945314668132,21.609589559732626],[-100.13261680906663,21.601932873342832],[-100.12493000383438,21.594114539960913],[-100.12490469913081,21.59364199820351],[-100.11245406851782,21.58729330876588],[-100.08903343766633,21.568156130217176],[-100.0758436900918,21.557931680032766],[-100.06227605417581,21.52330547648438],[-100.05084861065626,21.524244883956726],[-100.04410330291034,21.525561386955815],[-100.04144392976292,21.525415094247705],[-100.03322405377082,21.525075876145763],[-100.02075448296875,21.524568688142153],[-100.00436986648396,21.524412023982848],[-99.99866894969256,21.52418197944081],[-99.99478579025936,21.5251379944811],[-99.98915533918546,21.52475813460177],[-99.9830111058684,21.52541105487211],[-99.9818766816914,21.525684254048826],[-99.97361211522389,21.52709464915995],[-99.97059443500933,21.527021884606427],[-99.96762623256836,21.52699395084676],[-99.95996006174693,21.52643291195608],[-99.95936222516917,21.52622187343411],[-99.95880275589735,21.526308563708994],[-99.95648859364832,21.524799067759602],[-99.95692722199561,21.521592821116997],[-99.956975034339,21.521588464321553],[-99.95610940826373,21.51941025425856],[-99.95955386053646,21.511905282663633],[-99.96511059407254,21.505121379287687],[-99.96092649450725,21.50269235707424],[-99.95945433899897,21.500327942919114],[-99.95412838926183,21.496945605155304],[-99.9529559802649,21.49617983345115],[-99.95065482646362,21.494677376500988],[-99.94570529365052,21.49743168712871],[-99.94592094634834,21.493974697029557],[-99.94794334763122,21.490688158465616],[-99.95174252607046,21.48771221821886],[-99.9576754265326,21.484893381904953],[-99.95795217725339,21.48265709940199],[-99.95218645784519,21.47316687118837],[-99.95161237102258,21.472580646832228],[-99.95297961684463,21.470619714799113],[-99.95205459344197,21.467118931029404],[-99.95029080856295,21.466308789352638],[-99.94960460104909,21.463173214928872],[-99.95064789816382,21.46152593373563],[-99.94764705050875,21.457455399645767],[-99.94925227218806,21.456002219527818],[-99.94673763094039,21.45557350540355],[-99.94759662087756,21.45434569214376],[-99.94270237430766,21.449874674006537],[-99.93896442168943,21.449788958160923],[-99.94213866964861,21.456452304731442],[-99.94376646358052,21.46121120716498],[-99.942413626355,21.46178576390281],[-99.92644987060862,21.456040751964792],[-99.92104367788437,21.45366735258432],[-99.91147243672066,21.45018264443081],[-99.90600538467856,21.448136586840064],[-99.90340868601248,21.449024743290522],[-99.89214069277818,21.45758470727668],[-99.88982527192485,21.45934301943157],[-99.87509318340528,21.467836695831977],[-99.87211717076843,21.47015161045715],[-99.86700037769407,21.47346238843835],[-99.86377537716277,21.47431028671491],[-99.85869221282462,21.475029895980413],[-99.85164859170027,21.475669001308916],[-99.84602186450542,21.476820152841015],[-99.83579261485465,21.47788125416446],[-99.8354343703516,21.47657524219602],[-99.8372403290802,21.471587976518435],[-99.83853736154487,21.466020492637938],[-99.83918134655232,21.462385632835833],[-99.83719005220678,21.464314942490773],[-99.83403489015109,21.464482264752235],[-99.82865502058365,21.466359140558666],[-99.82731802083424,21.466473791701276],[-99.82442076212692,21.466339905557334],[-99.82274923111038,21.464561708051633],[-99.82229880331795,21.463527602182808],[-99.81634865506544,21.461961799657843],[-99.8160456753406,21.462372853403167],[-99.8148492447657,21.464081082417238],[-99.80792899996555,21.46841777180424],[-99.80653062976523,21.4712442275752],[-99.79530157485965,21.473227149282707],[-99.788362144453,21.477099977004684],[-99.78796109507459,21.48054906942133],[-99.79077385994538,21.483214156460747],[-99.79234543043867,21.487376192954684],[-99.7910398340365,21.490671885975246],[-99.78523161707199,21.493342291943236],[-99.77734978407113,21.495022667737658],[-99.77582851861735,21.500112523046766],[-99.76989149136068,21.507704248383163],[-99.76691334744288,21.508588979730916],[-99.76203714183328,21.513290873899336],[-99.75861997918611,21.513428400858572],[-99.75634579178796,21.514732174475284],[-99.75500370410407,21.52078838500745],[-99.75253373456496,21.522480381292382],[-99.74929225966827,21.523173474154248],[-99.75006412418367,21.526613212727],[-99.74862070047885,21.52695959076914],[-99.74923221899974,21.530345602357215],[-99.75096373176382,21.52952501021457],[-99.75263034587658,21.531629253541496],[-99.7518071954812,21.53397983163029],[-99.75016391485872,21.533614826619896],[-99.74824940398389,21.531073126354556],[-99.74673514063977,21.53149244366466],[-99.74644456699627,21.536359624013585],[-99.74726830653009,21.536795984345588],[-99.74920464148784,21.537265593449547],[-99.7504746209114,21.5353759119551],[-99.75144784766474,21.536907267869537],[-99.7527548000458,21.54390751993924],[-99.75233065797829,21.547300709411047],[-99.75218793859773,21.548487184713622],[-99.75171799029573,21.552393882140677],[-99.75080652895014,21.559856512632734],[-99.748841457151,21.563166616580304],[-99.74862943003637,21.566418726637437],[-99.74764261399292,21.572667988965122],[-99.74674319559824,21.578363287026207],[-99.73994879043101,21.577154014523444],[-99.73909003764248,21.577009232885075],[-99.73329192612783,21.576031565061726],[-99.73324009560179,21.57602282443446],[-99.72744986224825,21.57500897053268],[-99.72437074667533,21.574469730783107],[-99.7213694617783,21.573944057825315],[-99.7172798350087,21.573251638799036],[-99.7136092153296,21.572531611343777],[-99.71244366091196,21.572276435836898],[-99.70553366108862,21.57073006139865],[-99.69975044896984,21.57280107227558],[-99.68577791676682,21.57201413767632],[-99.67553631815588,21.57022602008044],[-99.66834819078451,21.568280220969086],[-99.66644584817351,21.567751342430086],[-99.66106085998035,21.568581986176923],[-99.65648371413903,21.56208826061345],[-99.64972093613056,21.551466634900407],[-99.6440849461552,21.542651125374505],[-99.64492755674308,21.541520687188097],[-99.64337931752414,21.534535287867413],[-99.6378834270671,21.526865621980107],[-99.63476058842025,21.525013205873734],[-99.63039283593332,21.519777097934366],[-99.6256103114892,21.511228795505076],[-99.62580079006455,21.507301913751803],[-99.60988958219104,21.49386445856925],[-99.59198307804752,21.48626094532443],[-99.5902844486738,21.477697147336528],[-99.57318472591624,21.46627958431992],[-99.57060816573784,21.462532966181527],[-99.56938458822646,21.460801929554236],[-99.56605180034552,21.45616771095729],[-99.5653762438235,21.455204431539073],[-99.56497309992267,21.45463835628027],[-99.56435311527798,21.45366339442569],[-99.56028746642136,21.45397326644087],[-99.55569773544136,21.44978092693418],[-99.54934520361377,21.447067720695316],[-99.55659642612005,21.43660865301422],[-99.55290039898404,21.429068727352103],[-99.55102563218776,21.42815911901198],[-99.54444005623634,21.430192850959656],[-99.54252900174231,21.429327855233737],[-99.53725609440465,21.431465060442633],[-99.53459647650413,21.429630459238183],[-99.5299017723587,21.428433027275332],[-99.5243004310559,21.428833948184945],[-99.51376022709519,21.424490827493628],[-99.50887771606324,21.4205140802286],[-99.5056106816977,21.418940188795602],[-99.50131173634833,21.418543285450426],[-99.49309128603852,21.42021720044744],[-99.4879502959426,21.42247605822928],[-99.48697581503018,21.42494275626467],[-99.4848801840846,21.431579056406065],[-99.48392125807857,21.4327920443057],[-99.47842934532582,21.433967775758845],[-99.47526037048175,21.434007397330163],[-99.47077189619654,21.436617075132006],[-99.47049458619767,21.4375493396779],[-99.4735726476124,21.44110458630604],[-99.47106082255806,21.445651103258797],[-99.46912920691523,21.446755641049265],[-99.46235290385005,21.44617390745219],[-99.44698298643232,21.443603829456265],[-99.43761032982366,21.449486709352357],[-99.43570815536941,21.449833253559348],[-99.43275955016719,21.44755547413547],[-99.4273882569799,21.44211718687137],[-99.42622335182534,21.440194399551785],[-99.41551961935119,21.42913338555337],[-99.40464617075855,21.428926190338245],[-99.40152213591995,21.437776055791005],[-99.40253068191214,21.441186058004917],[-99.3984868300571,21.44275092635644],[-99.39678104405783,21.446036055682555],[-99.3981080166925,21.44886558045596],[-99.39589100850588,21.452638858349644],[-99.39607290682812,21.45602228467294],[-99.39868132319441,21.46207575206074],[-99.39787997445205,21.464162334763103],[-99.39539579692382,21.464992442742584],[-99.39025452181181,21.463780078309412],[-99.38887602719831,21.464897304812723],[-99.38838289817892,21.469562324296305],[-99.38230346361257,21.481512731386147],[-99.3834935668844,21.48329106007293],[-99.384210293877,21.48889713886723],[-99.3872727433615,21.49405690955399],[-99.38670817424713,21.500372946062384],[-99.38403119072302,21.49884432305697],[-99.37885700263303,21.50045939859052],[-99.37437722920572,21.503298819039344],[-99.37305903763638,21.505135577392252],[-99.37197620897348,21.50710408929524],[-99.37280493972906,21.514485065806298],[-99.37045203448099,21.519075830129793],[-99.37010634281495,21.522140288047638],[-99.37167261771492,21.52437378845218],[-99.3779045488713,21.52782245309635],[-99.37858057320778,21.5307478121141],[-99.37636283073567,21.53446615760288],[-99.3766739160281,21.544692054790573],[-99.3759068472686,21.547930583350023],[-99.37060177881267,21.549953611439946],[-99.36369165466164,21.553288663105207],[-99.36020521091035,21.55343647172333],[-99.35352475466539,21.551913972909006],[-99.34986091199147,21.552357388587268],[-99.34583612861559,21.55057797509852],[-99.34085747506555,21.547207602711126],[-99.33817516537528,21.544690775554443],[-99.33313423515392,21.53787502426451],[-99.32728678502076,21.535171133892675],[-99.32006352050786,21.533499080643196],[-99.3146497309408,21.534809229736766],[-99.30742125664932,21.53203487652155],[-99.30548865200552,21.53291428699913],[-99.29843163801718,21.54038753255344],[-99.29741187295099,21.54391201160672],[-99.29509969120636,21.54621320466117],[-99.29133303765025,21.54813425555659],[-99.28929710375667,21.550361880307207],[-99.29148096369687,21.55618776201868],[-99.29046958704822,21.55823805078461],[-99.28536483394595,21.558372449610545],[-99.27932145818204,21.56014451105176],[-99.27534870505673,21.563466019074895],[-99.27402578667193,21.567797411591926],[-99.27737927386005,21.57438781855126],[-99.27868578526443,21.57988341620677],[-99.28145002349288,21.583823497357912],[-99.28238365562896,21.59100010622899],[-99.28163703985962,21.599041422000994],[-99.28036278066946,21.603273009177656],[-99.28128918370436,21.606630151527213],[-99.27940023294963,21.608222551203482],[-99.27393279866334,21.60620920963038],[-99.26612768269388,21.60980280850771],[-99.26521091283087,21.610290941391497],[-99.26405224053877,21.610907843262794],[-99.25981362499232,21.611739267907296],[-99.25533005435722,21.609913533971735],[-99.25186300156895,21.610952701768497],[-99.24710730117857,21.61325165344215],[-99.24349644957528,21.61505716753362],[-99.24247716423093,21.61664207731252],[-99.24239442741941,21.61808745235726],[-99.24224690960466,21.62066435198284],[-99.24064043574424,21.623790131263206],[-99.23740204063614,21.6252702651974],[-99.23389834310547,21.628786212150544],[-99.23188088296217,21.63134631591612],[-99.22777320489354,21.631491578488237],[-99.22512460322952,21.633286192999662],[-99.22469921394793,21.635451418365733],[-99.22592209186018,21.63826208833467],[-99.22478049352384,21.641267211793377],[-99.22295982472099,21.642516846497927],[-99.22265376831035,21.64688756804884],[-99.22067493203457,21.64807721950632],[-99.21883694040935,21.651540743098167],[-99.21673102017178,21.653366260009705],[-99.21686538032367,21.65658399399365],[-99.21842040873759,21.6629997922671],[-99.21715237850549,21.666940428774524],[-99.2107958720419,21.667542981763347],[-99.2009010098983,21.66512809142057],[-99.1982945548474,21.665013286088197],[-99.19391167409191,21.66655362319125],[-99.18817506539352,21.670005426322746],[-99.18166790029801,21.661396979438166],[-99.18035727911797,21.65516719737178],[-99.17844172952408,21.65195230156479],[-99.17403980463291,21.641025621293977],[-99.1712332862412,21.6348817675713],[-99.16945421209113,21.631446281395426],[-99.16888954975042,21.630982130152802],[-99.17189550264396,21.627031484259874],[-99.16735027872744,21.62388325446483],[-99.1621683169472,21.620244522609084],[-99.15140193021307,21.612796631940455],[-99.13872405448785,21.603751039487577],[-99.13509180107656,21.597343241186934],[-99.1306093215498,21.596649582125337],[-99.13049298746728,21.592545399883818],[-99.12829736182454,21.589817052495277],[-99.1284676237529,21.586473595805785],[-99.12807652154379,21.58338117091347],[-99.12896832689665,21.580358427931174],[-99.13050711432737,21.578972269300266],[-99.13399958673023,21.565560892246367],[-99.13572519255769,21.559967254166168],[-99.13718305865035,21.555376697300687],[-99.14077270349242,21.543785826727856],[-99.13960844010603,21.54198775848704],[-99.14228220525342,21.53543955390296],[-99.13692035827563,21.51407636149395],[-99.13593087821693,21.513211044817126],[-99.12949620939509,21.500393491609714],[-99.12929474015681,21.48677922332206],[-99.12928123488268,21.485866461221804],[-99.1290651710006,21.47126232442099],[-99.12832543230604,21.467929319461632],[-99.12603004365621,21.460542844617464],[-99.1223966217326,21.453415882766535],[-99.12194120530194,21.452543485076603],[-99.11602133022689,21.441202227327494],[-99.11122980942889,21.43162953701102],[-99.10858914736008,21.426520982425416],[-99.10623083932461,21.422406309035125],[-99.10516230798288,21.420480392205604],[-99.1059154274098,21.411560077596278],[-99.09813022730685,21.40841267935508],[-99.09283920012598,21.381700453525355],[-99.09788304490445,21.377641901361017],[-99.09262075790764,21.363360484013242],[-99.12945551791461,21.362046244526596],[-99.13782959153639,21.329791894146695],[-99.10294884256774,21.321194424432235],[-99.10298601736548,21.318920173904587],[-99.10283960444093,21.31788193606718],[-99.10754534884433,21.31804166451758],[-99.11753540986382,21.3184336896],[-99.12460745609826,21.318484003284766],[-99.12755889598316,21.318336548449793],[-99.12490931659318,21.315041250754632],[-99.12407732100439,21.31389659737914],[-99.12246914612496,21.311325651876814],[-99.1216622986222,21.310181410310975],[-99.12017212825742,21.309284426337626],[-99.11791107489455,21.30797380160692],[-99.11547885881527,21.30642470444525],[-99.11351239161161,21.305472338508253],[-99.11104540330979,21.30441708812566],[-99.1086542647397,21.303339579701344],[-99.10658602117502,21.30245601079457],[-99.10542442182526,21.301470384207107],[-99.10136951815002,21.293711507809064],[-99.10046117737551,21.291938074385087],[-99.09317717394833,21.29174159756809],[-99.09097885793335,21.294739284868058],[-99.0888389387942,21.294740427755812],[-99.08299075153911,21.296346893710563],[-99.07893314428287,21.295215950812462],[-99.08002327163945,21.2933179178072],[-99.07821397618437,21.292803112789386],[-99.07796245877819,21.29266405825848],[-99.07621755528885,21.289745685987725],[-99.07601821324681,21.28936775580263],[-99.06275251312695,21.281139525101878],[-99.0623878188187,21.28036659515641],[-99.06181125678307,21.27975860885016],[-99.06095089983597,21.279500203884822],[-99.05842751099658,21.283301956832815],[-99.05819962914728,21.284599973913487],[-99.05791944011014,21.284697802051085],[-99.05741188373713,21.283689293197597],[-99.05581977935992,21.28267223256563],[-99.0551384966779,21.282538470507802],[-99.05465626679586,21.282766481462318],[-99.05420902128009,21.283103191956627],[-99.05371525400477,21.283131123790156],[-99.05285586169316,21.283218580666755],[-99.05184200583244,21.282944568766993],[-99.05032757558388,21.28271567262749],[-99.0471903069884,21.281983964790925],[-99.04700513105178,21.282121850019337],[-99.04609293425187,21.27987555011356],[-99.04416215187331,21.27972961021021],[-99.0399590823381,21.283433379161295],[-99.03979854941764,21.283862950092498],[-99.03901802358246,21.284201489790973],[-99.03713266611197,21.28257081854815],[-99.03166381133389,21.285963232502695],[-99.03024491764734,21.28392038148388],[-99.0260218893601,21.28722620138842],[-99.0232435966642,21.28726862427925],[-99.02292741491522,21.287621037696283],[-99.02206040906083,21.290018068667848],[-99.0199750747089,21.29160629481828],[-99.01541256707026,21.292606222380016],[-99.01338900050769,21.295162211640616],[-99.01278450123533,21.295370906951405],[-99.00882844038028,21.29533115319714],[-99.00227936561794,21.297957694640502],[-98.99574078820564,21.297737096960645],[-98.9933518476006,21.29934705765396],[-98.98820783339289,21.297413641425067],[-98.98559189812238,21.297985364423255],[-98.98507526640958,21.29795931314851],[-98.9830993748609,21.29830665885629],[-98.98169139321885,21.298404671637627],[-98.97738136583996,21.29657757763016],[-98.9764619272982,21.297089967064665],[-98.97455371924565,21.297458775758116],[-98.97571540481874,21.30034576842013],[-98.9747259982401,21.302026233900506],[-98.97483777058562,21.303084840716963],[-98.97418119779422,21.303653512787434],[-98.97297130508224,21.303777000482512],[-98.9710302744216,21.30401633552833],[-98.96884147632352,21.306008471505947],[-98.96858477740858,21.305830144240645],[-98.9653014699885,21.306940514422934],[-98.96281105770385,21.302710319442326],[-98.95966668380919,21.30344071257656],[-98.95731840419967,21.30187638360104],[-98.95545433927742,21.30257129017332],[-98.9547657667735,21.306422291858496],[-98.9526685066636,21.306749933733954],[-98.95342188492913,21.30842822220319],[-98.94529095295002,21.311173805108922],[-98.9449607519283,21.31133658485504],[-98.94089552132704,21.296785425253745],[-98.94028331046917,21.2946024632717],[-98.9364287318719,21.29578750000411],[-98.93258013570471,21.298294885702603],[-98.92927699557413,21.292729443826545],[-98.92821292346008,21.28277374811995],[-98.92648390798394,21.27866731536932],[-98.92653867074273,21.27447309423252],[-98.92823455755843,21.269759305934144],[-98.92514946126505,21.265203666379307],[-98.920991748868,21.262434351689762],[-98.92215654711663,21.258689082217813],[-98.91816899875641,21.256676445665107],[-98.91776487529052,21.251967987065882],[-98.92098698716961,21.248393342975817],[-98.9226416400308,21.247869968897362],[-98.92159959647324,21.245917177769286],[-98.92152804759485,21.24575085823102],[-98.91766012598015,21.239717492030763],[-98.91298741370656,21.24003187721638],[-98.90995141800454,21.24193588295242],[-98.90537072023864,21.239116961835236],[-98.90280778472709,21.238397457094493],[-98.90065561196968,21.240329416448617],[-98.89939167808473,21.235799436759976],[-98.90143317504811,21.235947419023034],[-98.90096292287876,21.234179638968953],[-98.89860667590085,21.23296308103852],[-98.89991150467432,21.231124789845296],[-98.90600981304169,21.233136097140232],[-98.90781187736906,21.232793172584252],[-98.91476449236512,21.22726208848883],[-98.91422408673668,21.224294874448447],[-98.90637411251191,21.223136024459677],[-98.9036387676095,21.212657132513527],[-98.90171750588502,21.211464000643957],[-98.89513520220345,21.210378798605007],[-98.89542350685963,21.203895941191263],[-98.88182122073266,21.193962975862405],[-98.88308719103384,21.190003102728838],[-98.88265880989456,21.179610870332453],[-98.88000748136744,21.179264349279492],[-98.87637819719788,21.180379957871878],[-98.87469731045383,21.180896611800563],[-98.87266073184287,21.183274130579207],[-98.86938768293118,21.18437541334356],[-98.86375309376587,21.188369390673984],[-98.85969521659763,21.18926614189229],[-98.85596433837384,21.188674444962658],[-98.85309322818568,21.18643930874572],[-98.85120991608068,21.18358703758264],[-98.85104386153319,21.179440214892963],[-98.84723742194984,21.177496520675675],[-98.84635189653233,21.173970535247065],[-98.8436295824747,21.170704080616872],[-98.84049155267184,21.169080030098314],[-98.83756969548352,21.17055097483069],[-98.8325484899861,21.167075504044362],[-98.82928117763123,21.166679183690007],[-98.82848310654208,21.163522192529456],[-98.823283220944,21.16121443779315],[-98.82300705402753,21.161190544441865],[-98.82059516128788,21.160353799563666],[-98.8195527713616,21.16118416829903],[-98.81160568344131,21.163228319857808],[-98.80605064822959,21.16355938636167],[-98.79983239780063,21.164717082924255],[-98.79771107425552,21.16459101669909],[-98.79651678816941,21.16135862095956],[-98.79395336096343,21.16018363103234],[-98.78879543136838,21.166385587202456],[-98.79033575920766,21.170047273115188],[-98.79085065112878,21.17359996176242],[-98.79079803622864,21.175864075573884],[-98.79069887612786,21.17951965445991],[-98.79388912350453,21.179523566171213],[-98.7978381584777,21.177801327323664],[-98.80164740712007,21.182215841763536],[-98.80248950387517,21.18319165409332],[-98.80808438147511,21.18956299462957],[-98.80814320653229,21.193244913591798],[-98.80480498959201,21.193203020476858],[-98.80298527600303,21.193217198548723],[-98.79771855005691,21.191629141653493],[-98.7966679416628,21.190209279353212],[-98.79908994549254,21.186266258092473],[-98.79797067886346,21.18334342198915],[-98.79526100097934,21.184810723220608],[-98.79402002973075,21.185956525730205],[-98.7913477848673,21.18795317224391],[-98.78906145843041,21.187443008666037],[-98.78772618205892,21.18686767441045],[-98.7822360598625,21.18622800284993],[-98.78097760481387,21.185565076241744],[-98.77919796120432,21.182398519791946],[-98.77657710416372,21.18200949307999],[-98.77647601165432,21.181037840327065],[-98.7763082806922,21.177716997608],[-98.77606522938913,21.17736357041383],[-98.77633513814396,21.173641643846167],[-98.77387799088933,21.17251047843382],[-98.77341381538486,21.172064033982963],[-98.7709323377623,21.17399953030565],[-98.77039827539176,21.174119057186147],[-98.76999971133137,21.173918770895114],[-98.76588347225157,21.17587047693047],[-98.765829537466,21.17807726830557],[-98.76375416602474,21.180514615173365],[-98.76409891773113,21.184565024299502],[-98.759720570973,21.186226874246245],[-98.75411594698585,21.18639253927654],[-98.75384394037457,21.186150577440173],[-98.74667828556483,21.18435450406963],[-98.74631001094104,21.184550748885954],[-98.74587329212142,21.184960535492564],[-98.74054111334408,21.18940685033789],[-98.74188827019663,21.190993001539027],[-98.74091592441283,21.192670363007778],[-98.73628245995911,21.186724816701826],[-98.73572880826123,21.182792917831023],[-98.73464393967487,21.181544434374985],[-98.73028419160414,21.181198039176593],[-98.72677299018972,21.179652023244955],[-98.72671326633531,21.181975324522057],[-98.7283365172267,21.184342809275506],[-98.72474074818524,21.183331393579067],[-98.7243657048852,21.183002405909804],[-98.72383487298816,21.183049563996803],[-98.72122937957522,21.18634372461895],[-98.72087424676664,21.18648946445535],[-98.72034223973861,21.18713097935307],[-98.71942859154979,21.1871341760218],[-98.71903914292614,21.186558872938576],[-98.71952329023236,21.184158845279114],[-98.71665844958454,21.18594484978837],[-98.71471840955485,21.183439969340952],[-98.7126573353766,21.185161065905618],[-98.70746400614638,21.187396984387647],[-98.70487244710301,21.18658683379266],[-98.70487743265767,21.18652078797635],[-98.70200798854887,21.184802232604966],[-98.70196766929087,21.184481955195565],[-98.70116461762473,21.183102050143987],[-98.70117457272761,21.182966882270307],[-98.70150060611866,21.18074031317957],[-98.69937297257997,21.17622851674696],[-98.70191057183592,21.172772718525835],[-98.70151343541687,21.171336859450662],[-98.70365512600142,21.168481439671098],[-98.7026464927111,21.163078528713925],[-98.70182009444682,21.160771135166726],[-98.69833018861306,21.16213354269007],[-98.69675492752918,21.161503830738525],[-98.69167028625759,21.16598250692556],[-98.6928158116333,21.170663091718552],[-98.69261688811821,21.173110276679722],[-98.69389788018015,21.176899597889587],[-98.6926034690535,21.1785555710386],[-98.6946048134622,21.181532546118603],[-98.69231408846804,21.18397752688844],[-98.69098223407292,21.18698038934349],[-98.69169933460478,21.188028488975988],[-98.68850753770823,21.189908412003888],[-98.68515277574602,21.190197131267666],[-98.68505608712468,21.195703034780706],[-98.68372827991215,21.19864499050385],[-98.68375344706777,21.198762622538254],[-98.68233659849045,21.20072373915383],[-98.68038984099809,21.1984802309467],[-98.67974525154204,21.19847621784629],[-98.67715449316614,21.199471209850458],[-98.67306433017569,21.194561350460106],[-98.66893113982388,21.194859702055282],[-98.66908424372963,21.19285449688732],[-98.66581237824022,21.18916744504355],[-98.66378250737006,21.184050588378796],[-98.65829707954236,21.18280592486076],[-98.65894198182497,21.186047420139687],[-98.65069557735353,21.180936475123872],[-98.65062533384872,21.183517946724294],[-98.64242164644548,21.182156559430894],[-98.64010801819256,21.18289118252642],[-98.63861463719564,21.184961429546263],[-98.62958370643395,21.189139393643075],[-98.62509307417287,21.19172811560378],[-98.62250003798812,21.192270631584563],[-98.62023089157856,21.193413477808804],[-98.6179765538219,21.194284881211217],[-98.61670694291121,21.19525551320197],[-98.61599045882093,21.195801980020974],[-98.6150161233557,21.196469475074878],[-98.61363295669275,21.19729351111158],[-98.61329676764734,21.19746751488833],[-98.6131415194352,21.197575434330588],[-98.61266869982211,21.197989359075052],[-98.61242614820901,21.198159796021912],[-98.61133337521869,21.19914732109038],[-98.61096960710637,21.19969270961849],[-98.61028410395932,21.200675356718534],[-98.60912063923752,21.200998963313907],[-98.60756952523474,21.203767293410124],[-98.60832610047908,21.204717273543054],[-98.60822720874381,21.20711865548526],[-98.60522611403661,21.215213352789192],[-98.60654473513699,21.216323693727986],[-98.60359212290103,21.218376336753863],[-98.60441931470314,21.219888687886737],[-98.60466729523966,21.220891915182108],[-98.60389998570065,21.22533737558973],[-98.60337059467133,21.226529425966362],[-98.60225382355833,21.228915510121283],[-98.6023173403155,21.229954205003253],[-98.60215219458962,21.230946499539186],[-98.60231797181552,21.2311451871023],[-98.60232235588353,21.231174751677827],[-98.60215871461537,21.23137881633454],[-98.60134092406162,21.232076798286244],[-98.60127407988716,21.23244196235322],[-98.60121527894944,21.232610175595482],[-98.6012726233131,21.233208865969743],[-98.60128714846883,21.234637567670347],[-98.60233514995957,21.24287647516951],[-98.60153805350086,21.245463706414228],[-98.6007656297931,21.245685759357343],[-98.60012511268161,21.246418293650834],[-98.59980910546687,21.24702320726641],[-98.59969486463365,21.247977899314833],[-98.600121379918,21.24779023567538],[-98.60030586870562,21.24802197758993],[-98.60159517192284,21.24824678479439],[-98.60180639823716,21.248261754570592],[-98.60258340733185,21.248601353266395],[-98.60289672002085,21.248945043175297],[-98.60486614041014,21.24923600313491],[-98.60485428328701,21.248771917981117],[-98.60693530932446,21.24885618302534],[-98.60716891754072,21.249177288227997],[-98.60755433208067,21.2493967196134],[-98.60774547604319,21.249418986815044],[-98.60816922494377,21.25020028207871],[-98.60863016982955,21.250427321776158],[-98.60864293303865,21.25106621381957],[-98.60856308291949,21.251649530098973],[-98.60880244831839,21.251673266012972],[-98.60847943398807,21.25258961985702],[-98.60892490389404,21.252704002464384],[-98.60767480266668,21.256547731148146],[-98.60441249328323,21.258931503636347],[-98.60257232904229,21.259129298953724],[-98.60206560925525,21.259459975526966],[-98.60114850666713,21.259865391904953],[-98.60093922238656,21.26005366465398],[-98.6000215428113,21.261053667613567],[-98.60179857475327,21.26210221520131],[-98.60154453074608,21.263654939815467],[-98.60203194393085,21.2639667828534],[-98.60179962171736,21.264096048016995],[-98.60246858242988,21.264713048434487],[-98.6022739879935,21.265886492113793],[-98.60261749226589,21.26646034502636],[-98.60302473798527,21.266978153382183],[-98.60462811671482,21.269201694192304],[-98.60418248796987,21.269482282923036],[-98.60324854175678,21.269611498815095],[-98.60325526831133,21.270103363902933],[-98.6031757486432,21.27018608236847],[-98.60417041941474,21.271814598668925],[-98.60376268564079,21.272375576572017],[-98.60319176950429,21.27283250146371],[-98.60273879948778,21.274115954662705],[-98.60325102888561,21.275630024063048],[-98.6039524009376,21.276171381169718],[-98.60361506119727,21.27664845616897],[-98.60258028342963,21.279367867574365],[-98.60086996734896,21.279655885004388],[-98.60026392180151,21.279890179770348],[-98.59893568416209,21.279529973757406],[-98.59872637335047,21.279576278269133],[-98.59875956506937,21.280865546088364],[-98.5972722280107,21.28152112171557],[-98.59725879497887,21.28281101706665],[-98.59574456928948,21.282120823261096],[-98.59541768942125,21.282707638493036],[-98.59596569901919,21.28534999232619],[-98.60099809282246,21.285677866525646],[-98.60169862154589,21.28760785636024],[-98.59979793345576,21.289455136949357],[-98.59913146108778,21.292050411983553],[-98.60142596680316,21.296351891009863],[-98.60391263796896,21.297990849665723],[-98.60385137946571,21.30042472910435],[-98.60610326776464,21.30182042441743],[-98.6094927321945,21.299270561223636],[-98.61253133532477,21.2998126965457],[-98.61609083012621,21.30495572762578],[-98.61842338542442,21.304865581542515],[-98.6190301089876,21.305026750190848],[-98.61887848386021,21.305432139978222],[-98.61910124552895,21.305814711180687],[-98.61969998180803,21.30591567588573],[-98.6249469340209,21.30816403921642],[-98.62497276525329,21.30832205627206],[-98.62440170545517,21.309485042220274],[-98.63015360936618,21.312343395448863],[-98.63083829447646,21.31264607636018],[-98.63195919783965,21.313104327299754],[-98.63244244382008,21.313203140654934],[-98.63409492953679,21.313298273677105],[-98.6356520294234,21.31323745473486],[-98.6363791666065,21.312934325745573],[-98.6368876724232,21.312879308721392],[-98.6373780092461,21.312976404614687],[-98.63848260679174,21.313201419161032],[-98.63886599792698,21.313150716831103],[-98.63996403329281,21.312908265747353],[-98.64119040378625,21.31287423407315],[-98.64180258221643,21.31272715085379],[-98.6431291834611,21.312750203922178],[-98.64368363653347,21.312688367563055],[-98.64436373390885,21.31309380166641],[-98.6455698648412,21.312718768133664],[-98.64645956039516,21.312801989479567],[-98.64759532390286,21.312315663729578],[-98.64816794919898,21.312714944035463],[-98.65089702270262,21.315086550157048],[-98.65650253500559,21.317981302349324],[-98.65688880001443,21.318055414236426],[-98.65692767249931,21.318081268452488],[-98.6599180074175,21.320641492760046],[-98.6655430403668,21.322961418006457],[-98.66571340180275,21.322888760769388],[-98.66676657718637,21.322860785150965],[-98.66703133584292,21.323308868418167],[-98.66761938681526,21.323915616036913],[-98.66788320236788,21.3240706936989],[-98.66837243299267,21.324075651843884],[-98.66853092522257,21.32461175193464],[-98.66908950022395,21.324246982207512],[-98.66953853991419,21.324942921184856],[-98.67061571496396,21.324754657647816],[-98.67072729641569,21.324719653412444],[-98.6709082834509,21.324858782951765],[-98.67093829811819,21.325383000901354],[-98.67062871857513,21.325701040358013],[-98.67109381765471,21.3258005654871],[-98.67138362407593,21.325941064342487],[-98.67245780806718,21.327328767187964],[-98.67277548167431,21.32791596654107],[-98.6727591639247,21.328476818361708],[-98.67280012524515,21.328704475655286],[-98.6731921982473,21.328876913091335],[-98.6731509903799,21.329713897286695],[-98.67388564970037,21.330263852942835],[-98.67572994190351,21.334151574416467],[-98.67576283661447,21.334465697765324],[-98.67638102765432,21.33495372085855],[-98.67667426998122,21.336134206467193],[-98.67695004115075,21.336551243957558],[-98.67722118870546,21.336750420621172],[-98.6779632337363,21.3375415454924],[-98.67818733520193,21.337614006826925],[-98.67888211760715,21.33807103314291],[-98.67911904355907,21.33821912006806],[-98.68015290890537,21.338596241146774],[-98.68059983439036,21.339074264638498],[-98.68104776320104,21.339364564988273],[-98.68134191660687,21.339365116501824],[-98.68177177344177,21.33990726331922],[-98.68213400931808,21.340211232137847],[-98.68254435404288,21.34088292317182],[-98.6833708306288,21.34159601322],[-98.6835470121975,21.3420006975864],[-98.68267197394323,21.342815035253352],[-98.68114083976502,21.34431079085948],[-98.68109567250332,21.344435076692832],[-98.68111278386624,21.3453424815616],[-98.68026869552824,21.346839642652526],[-98.6750912861068,21.349842945894522],[-98.67182731795157,21.3482778558963],[-98.67065998134876,21.34828376877806],[-98.67029445783544,21.348425099439567],[-98.66558734645173,21.348125555798447],[-98.66120465314691,21.347802499572254],[-98.65866856988612,21.347618016471984],[-98.65658008780531,21.347352844562124],[-98.6557442723377,21.347290655751408],[-98.65333500080203,21.346907878474326],[-98.65275015820936,21.346844184237057],[-98.65172702917346,21.352786417574805],[-98.64960081607217,21.35263961826024],[-98.64968796941992,21.35482749514682],[-98.64538972346668,21.35765172591482],[-98.64415451577946,21.363340961794393],[-98.64498428648295,21.36402714421689],[-98.64487368504439,21.364279624995447],[-98.64404665371393,21.366539466906545],[-98.64251963355667,21.3660878832747],[-98.64248071137803,21.366330202106724],[-98.64198605851306,21.366737387206797],[-98.64196568640108,21.3667234761773],[-98.64037401341102,21.365954474400894],[-98.63833780505001,21.367706059911654],[-98.637219713663,21.364019870445986],[-98.63524900177356,21.363557435336247],[-98.63513230212095,21.363530570191642],[-98.63428083938737,21.36375501412158],[-98.63390289507981,21.364223291313692],[-98.63380169980172,21.36434424908282],[-98.6331910885653,21.365053143915077],[-98.63297150034992,21.365120528593536],[-98.63243924472255,21.365283849691707],[-98.63222917720998,21.365348306661417],[-98.62962490788846,21.36446969231622],[-98.62948601843794,21.364527824732818],[-98.62845235223722,21.36290322344587],[-98.62846036230167,21.362887231079014],[-98.62853665953429,21.362499162544907],[-98.627155652196,21.35981473857305],[-98.62506452192662,21.36105209161832],[-98.62420546912006,21.364283322097606],[-98.62067965320472,21.36378135297531],[-98.61907711288876,21.3623382981026],[-98.62018298247511,21.360003055740435],[-98.61859255819894,21.358773614292033],[-98.61705034510749,21.359656395276545],[-98.61644518912641,21.35978293539165],[-98.61564921355716,21.360150564031187],[-98.61535899510494,21.36046188043707],[-98.61510733254607,21.361136380386995],[-98.61484702505635,21.361801681210125],[-98.61276870413218,21.359810054974105],[-98.61165600585849,21.35916626892299],[-98.61141224761133,21.359196072442842],[-98.60955601658014,21.358854124383242],[-98.60906954008948,21.358956113045735],[-98.60869017876854,21.359326919951286],[-98.60857051770773,21.359356496321823],[-98.60692237207286,21.358136304861034],[-98.60623742982273,21.358577331815013],[-98.60463260337696,21.358332253366825],[-98.60380589690976,21.358822078116987],[-98.60244178590017,21.357868638913146],[-98.6019483773357,21.35818805565384],[-98.60189446772017,21.358379605309608],[-98.60166944885333,21.359155605925025],[-98.60012719547711,21.359931945192216],[-98.59688568100597,21.359165789614508],[-98.59688349156676,21.359245382611732],[-98.59711406667617,21.36008528344331],[-98.59666430382981,21.360145783583846],[-98.5963116309066,21.360980925445972],[-98.59638572947301,21.362435498975344],[-98.5959250204262,21.36306608450832],[-98.5960908101332,21.36419088934514],[-98.59434192111314,21.36465853001016],[-98.59138557387809,21.366337594592096],[-98.59129724243496,21.366405410700906],[-98.59131232458861,21.368712666282022],[-98.58941425058583,21.372160456629615],[-98.58586537917904,21.371841571146092],[-98.58563095806375,21.372187458710926],[-98.58407229657143,21.372690391318997],[-98.58373485752139,21.37283584144666],[-98.58348625512895,21.37283368816537],[-98.58346141223171,21.37244933693529],[-98.58253896323788,21.36973105529603],[-98.58105041625532,21.36972442634476],[-98.58096301293295,21.369767415581975],[-98.58050605141563,21.37126291449124],[-98.5802282739449,21.371274526782088],[-98.58012039038653,21.371539591461442],[-98.58075013635187,21.374076902733123],[-98.57876732186082,21.37321810217304],[-98.57844208776868,21.373540835546066],[-98.57775460596963,21.374259015265636],[-98.57646994930514,21.374336489455573],[-98.57601145382642,21.374633695447983],[-98.57595545363517,21.37456697739009],[-98.57432103456733,21.372999212103082],[-98.57409399530457,21.3729954108353],[-98.567106140558,21.37143383290828],[-98.5667792958547,21.3727488006856],[-98.56665270829984,21.37261284444287],[-98.56562113155724,21.373266593360995],[-98.56469016107093,21.37193709995887],[-98.56302766243192,21.37477238536303],[-98.56293336626436,21.37477679850008],[-98.56030581064772,21.377489214490538],[-98.560094341063,21.37738395932581],[-98.55698650472476,21.379601306085704],[-98.55176495011068,21.379728543074123],[-98.55077789898831,21.384015063571212],[-98.54777422880284,21.384260393288116],[-98.54702478835532,21.3813092851546],[-98.54458268487264,21.380939941495342],[-98.5451377990409,21.384102433455723],[-98.54368309223707,21.384049831228083],[-98.5425759824214,21.383967847124097],[-98.53927378721266,21.38284983279732],[-98.53941054364196,21.38086895057353],[-98.53452678736386,21.379847912871867],[-98.53480753966215,21.37857803616447],[-98.53144349930045,21.378040169304768],[-98.53192841282555,21.377162108285518],[-98.53360629508097,21.37489143257602],[-98.5310988225877,21.37099333501942],[-98.53034283370573,21.371038276176705],[-98.52968676552672,21.37085255950501],[-98.52946634828169,21.367673030214632],[-98.52495267766858,21.366152308060578],[-98.52052001068114,21.36862858259144],[-98.52064644082162,21.365460261429007],[-98.51744451343262,21.36186470416925],[-98.51516952291746,21.36202960850352],[-98.51526859401156,21.365094996468542],[-98.51188880076643,21.362491153595272],[-98.50834146254391,21.364077309845186],[-98.50660359375314,21.366851496696256],[-98.50737905342442,21.369970979041796],[-98.50907000960984,21.37065074827484],[-98.51159158366983,21.368974267463784],[-98.51575184357688,21.37228964158055],[-98.51300380750138,21.374691507120247],[-98.51293135301472,21.377067892215166],[-98.50952598204879,21.377971213500132],[-98.50495426661251,21.381997005154858],[-98.50708164976686,21.386161033783594],[-98.50346379884093,21.390729235180117],[-98.50553069120946,21.394184813318645],[-98.50767371170616,21.39162112223272],[-98.50907377004893,21.394231991890763],[-98.50763243964644,21.395961369791905],[-98.5087211435062,21.396085368653928],[-98.50930967724724,21.39576012605113],[-98.50967588753485,21.395683284749282],[-98.50937100418696,21.397318666859746],[-98.50931326619764,21.397535390983023],[-98.51019086648279,21.399006553731056],[-98.51041024746291,21.398961514294513],[-98.51078383757653,21.401963484026737],[-98.5133651333698,21.40049078709501],[-98.5136476644281,21.400346366902397],[-98.51893698396458,21.401096864220904],[-98.51792917906045,21.40356072786932],[-98.52094673645462,21.40406967652359],[-98.52071567980329,21.407424034119515],[-98.52161581168673,21.411105349993875],[-98.52053497284584,21.414633861464097],[-98.5192977857239,21.415502078820566],[-98.5199622668485,21.418832469293875],[-98.5202529521971,21.421310927698073],[-98.52023898191709,21.421401133825043],[-98.52290570619482,21.425142552559862],[-98.52155611071038,21.42882343907172],[-98.52171143179004,21.432721147938707],[-98.52294860032191,21.43501421844462],[-98.52238802501216,21.436971721725],[-98.52464143873635,21.440163935579847],[-98.52094921564259,21.443176685485014],[-98.51989878915384,21.446506917023555],[-98.52092589055547,21.448645603985312],[-98.52073735757273,21.450003767454632],[-98.52182500331571,21.450551345452368],[-98.52076527222096,21.4547179185451],[-98.51943277279139,21.455613838867237],[-98.51986547804614,21.458537303175547],[-98.51878995133302,21.459456947711885],[-98.51788995325677,21.45967683222534],[-98.51762362143313,21.458854858554673],[-98.51697950553864,21.45892808490555],[-98.51691306581722,21.46070170059346],[-98.51892721403652,21.464735888215444],[-98.52295544137922,21.471379100053184],[-98.52574044178732,21.47492661542691],[-98.52609991435759,21.47568270499545],[-98.52701847217674,21.47849945797617],[-98.52706316766421,21.478548039920838],[-98.52982305052814,21.481547584973384],[-98.53340505314259,21.486759773294864],[-98.53589347033221,21.493852774893696],[-98.53225585661505,21.501139523281154],[-98.53696009823034,21.505868050028937],[-98.54058183653103,21.50762544879035],[-98.54250496989914,21.50997073233833],[-98.54302806671694,21.513831007389456],[-98.54753679983287,21.514841380935707],[-98.5510376003433,21.514833785521432],[-98.55380368136389,21.516135783814093],[-98.55745200520738,21.521978280211158],[-98.56342459753341,21.52188699119978],[-98.56505072781016,21.5200860783184],[-98.5677612985391,21.522321695250298],[-98.5688596101914,21.521678243686438],[-98.57606998141307,21.52570814045049],[-98.57589893830345,21.527156286986497],[-98.57923004723386,21.526871489277028],[-98.57986696595862,21.52919081958811],[-98.58264957216534,21.531381805815897],[-98.5843785094097,21.535308423989648],[-98.58752990956395,21.53357794243584],[-98.58833566688992,21.535251365871034],[-98.59640574022586,21.53821698723715],[-98.60096750722744,21.539061214270134],[-98.60064139867677,21.540960267630226],[-98.60216747723462,21.543596999492763],[-98.60106392827913,21.546219751509],[-98.60109739580929,21.54701976745406],[-98.60102544997602,21.54725289802849],[-98.60088135363935,21.54778584371462],[-98.59916974526931,21.549429929192172],[-98.6004808765295,21.551937532226532],[-98.60025943557378,21.554670082669872],[-98.6024326372563,21.555441872271558],[-98.60532594903083,21.553682245614198],[-98.60742525134026,21.555420375663857],[-98.60749360422625,21.55652043253309],[-98.60692124114178,21.557185689776873],[-98.6035219892076,21.562231879767523],[-98.60526954738248,21.562202699151385],[-98.60552043550564,21.561736661197017],[-98.60708788192466,21.562373640566193],[-98.60762146867228,21.5628748586725],[-98.60772622265051,21.563708355333176],[-98.60800892480773,21.564919539609775],[-98.60790132211156,21.565152602422188],[-98.60583212829687,21.56541436560451],[-98.6074647411341,21.568351271372364],[-98.60756949760679,21.569184767631384],[-98.6091372523133,21.571004570860737],[-98.60952611202157,21.57478999264066],[-98.61029118144137,21.57563101522294],[-98.61124734455854,21.575997739717934],[-98.61254219136782,21.575567345057095],[-98.61310470010557,21.57515805488447],[-98.61341917610395,21.576230907092054],[-98.61314885272719,21.57691460425906],[-98.61426554152047,21.57924392254398],[-98.61453393317584,21.57929017192197],[-98.6164150218475,21.578724232908996],[-98.6169649752577,21.578942197568495],[-98.61940217743893,21.580407690522463],[-98.62010274987023,21.583215044630947],[-98.62046821393676,21.583489605091017],[-98.62176049566278,21.58406282725872],[-98.62294161437512,21.5845829138064],[-98.62374694615323,21.584675977808956],[-98.6252838356001,21.585067226961655],[-98.62572142847404,21.585775349890696],[-98.62572084232721,21.58600346135694],[-98.62566973719368,21.58689296992503],[-98.62075615766872,21.58760661451862],[-98.62062014458672,21.58784643649227],[-98.62271932057985,21.591394395601355],[-98.62489124748288,21.591695844553897],[-98.62542743861292,21.59203922078467],[-98.62565212083155,21.592595622512192],[-98.6235853882875,21.594205949030197],[-98.62298790708843,21.596795102750775],[-98.62189796251505,21.598112227309514],[-98.6193540970176,21.602461396125705],[-98.61922616852735,21.615145956711046],[-98.62079345357006,21.62637756284812],[-98.62112699652528,21.627822151338194],[-98.6261878719003,21.630408796383392],[-98.6289633422819,21.630082877805535],[-98.63460027042936,21.626334889087957],[-98.63535591988608,21.626296187948924],[-98.64222256574533,21.62881787702338],[-98.64352092952805,21.631928066499484],[-98.63941240181288,21.633482628064485],[-98.63725863451822,21.63537886319233],[-98.63374354911866,21.64258939397331],[-98.63327573515386,21.645895845022096],[-98.63401870937503,21.650512230995673],[-98.63322175041884,21.653888164063176],[-98.62998563762716,21.654812161740665],[-98.62269187761194,21.65257737606464],[-98.62114995996927,21.652795440636908],[-98.62003109461159,21.653526869752056],[-98.61865362231902,21.654776506801397],[-98.61744251921169,21.655647173013733],[-98.616089116995,21.65882080806324],[-98.61520759060284,21.66018544475935],[-98.61390075828956,21.663578464139846],[-98.61007481915658,21.66653497912023],[-98.6095010352808,21.669638664918523],[-98.61313455943576,21.67212782141212],[-98.61516986986999,21.671967730813208],[-98.61789089089149,21.671463959037055],[-98.6194793046306,21.67132163390761],[-98.62386679379892,21.67222121855241],[-98.62444259451627,21.672609746039768],[-98.62590326146119,21.67564873337176],[-98.62574017104754,21.67631143220359],[-98.62544003738697,21.67732989055378],[-98.62487614100928,21.678662010479798],[-98.62428465172479,21.679622807573935],[-98.62365827225295,21.68051450144202],[-98.6229034109329,21.681420437237705],[-98.62199696590028,21.68238257518658],[-98.6208422670203,21.68317720849882],[-98.62002670531263,21.68358635205533],[-98.61904953087588,21.68387233449306],[-98.61840590691793,21.683994828475875],[-98.61783672875299,21.684067710578347],[-98.61520912926795,21.68303594793963],[-98.61398975397361,21.681317676024833],[-98.61296213610763,21.67997948718812],[-98.61165273845023,21.6786012075832],[-98.60666375171854,21.674519208297056],[-98.60418026366386,21.67273916869317],[-98.59701419579767,21.668696262570222],[-98.59325831372485,21.669361397273065],[-98.59243667135081,21.669209109118185],[-98.58952258840208,21.66912759581527],[-98.5859862573555,21.670377784793914],[-98.58234211333934,21.6719720672873],[-98.57987868157733,21.67178316040446],[-98.57413295625815,21.675624355594266],[-98.57330278521175,21.676497194134015],[-98.57100095695,21.679196043405227],[-98.57073250857053,21.679654380615546],[-98.57020205614936,21.68094568865257],[-98.56987974407463,21.681627512823013],[-98.56952498931065,21.682323587628275],[-98.56898466074682,21.682745890157946],[-98.56828629426627,21.68307478582102],[-98.5655343664132,21.683783406098314],[-98.56482916683001,21.683752641250408],[-98.56302250483492,21.68287335889005],[-98.56217295301587,21.682839347774518],[-98.56057797642251,21.683717312010742],[-98.56019723271112,21.684173126502344],[-98.55942610391054,21.685458994869123],[-98.55775000382454,21.68975351102199],[-98.55863180472494,21.693956055537228],[-98.55867538559647,21.694877706832244],[-98.55793697874941,21.70091348812531],[-98.56058461229054,21.70545256882258],[-98.56494329547559,21.707022980772706],[-98.56685420452072,21.706934333546485],[-98.57117031273668,21.70761491813073],[-98.57159766209224,21.708033333320486],[-98.57204982566122,21.712214474133418],[-98.5671163743591,21.717571670326436],[-98.56188989307532,21.7171948918309],[-98.56093367203482,21.71717346499497],[-98.55948524573114,21.717352065003354],[-98.55665070397998,21.718329313135143],[-98.55085616609523,21.71986291499576],[-98.54887617384537,21.72291760482983],[-98.54524439270386,21.723928808480252],[-98.54241684655426,21.72183746070175],[-98.54236675970031,21.721390529238874],[-98.5420278721648,21.71693682016445],[-98.53764752029537,21.71323512042892],[-98.53566177656717,21.70847681182471],[-98.53513268478684,21.70423754878493],[-98.53314908629648,21.701139244464798],[-98.53315839524663,21.700779425484654],[-98.5329054241501,21.69758740709443],[-98.52832579364667,21.698479292454124],[-98.52372075944663,21.703277120733674],[-98.52151554878077,21.70635025683646],[-98.52053169196455,21.71023146787701],[-98.5212028756086,21.71148049069143],[-98.52239005906341,21.713112374014656],[-98.52711235161485,21.715275479364777],[-98.52990055670483,21.715302734010777],[-98.53480871080575,21.713274382868065],[-98.53540777742126,21.713359553443013],[-98.53641076214359,21.713656818328445],[-98.53754538701219,21.71561801658771],[-98.53832070029148,21.718714639050518],[-98.5377198808302,21.720270961886627],[-98.53741050380012,21.720624251465722],[-98.5367679870186,21.721143490623547],[-98.53022767089948,21.722265607538134],[-98.5251174521706,21.72084231579305],[-98.52422262543604,21.720193160170822],[-98.52306980621506,21.718203608673036],[-98.52229971573053,21.71722629424687],[-98.52132624702239,21.71618780061374],[-98.5208508316403,21.71596428847124],[-98.52027173117256,21.71583296334802],[-98.51914228982349,21.715925542132823],[-98.51842956485251,21.71606301590333],[-98.51530806291674,21.71776501319613],[-98.5129707355108,21.720400273462303],[-98.51372577554321,21.72417945323656],[-98.51266492154173,21.726601736486145],[-98.50850369381311,21.728385181155033],[-98.50470182439409,21.728524334016356],[-98.50076251723601,21.726399943757485],[-98.50001507220253,21.726458157371837],[-98.4989462230862,21.727242791593255],[-98.49865040650428,21.7308483978303],[-98.50053819540352,21.732762397136696],[-98.50368325250486,21.733103018475504],[-98.50425152649416,21.733160271394866],[-98.50555869786245,21.736439237145873],[-98.50300841482209,21.73873719215476],[-98.50192549306598,21.73899312296834],[-98.49942283820644,21.739068985468293],[-98.49525657206965,21.735302758129023],[-98.4906670347259,21.735332663592544],[-98.48779446537486,21.737407147754254],[-98.48708860514762,21.738054570425106],[-98.48168109839742,21.74035196631428],[-98.4759986999461,21.746608127948036],[-98.47597507893818,21.748719982681564],[-98.47844624610684,21.749823920515894],[-98.48204633194075,21.749651197118908],[-98.48375574906072,21.750595361341084],[-98.48243447222563,21.755038684967815],[-98.48136650655198,21.757461080869973],[-98.48041171374041,21.759750865142564],[-98.4800930427499,21.760199093335245],[-98.47629521300206,21.762334441692076],[-98.4753656582601,21.76244279733919],[-98.4747401296533,21.762442843769236],[-98.47302195620512,21.76249450756478],[-98.47022578603554,21.763571541040903],[-98.46989105808558,21.764082620284],[-98.46939477882859,21.76509722707351],[-98.46907004984223,21.766122621796796],[-98.46881729957892,21.767742304983074],[-98.46841939954368,21.769686880995152],[-98.46819972371685,21.77005074170188],[-98.46759695909833,21.770698139092133],[-98.4670360619188,21.770881216348926],[-98.46619540522005,21.770896455106595],[-98.46575204130522,21.770840138175572],[-98.46544726031766,21.770683246095757],[-98.46212663093644,21.767166225533003],[-98.45991046023738,21.76255258374175],[-98.4577964090239,21.762596045943553],[-98.45492602197879,21.765538685446813],[-98.45471657488758,21.76673833055736],[-98.45637196905608,21.77004618211288],[-98.46033346732105,21.774657929004093],[-98.46233576326591,21.77841437309587],[-98.46268798890338,21.78145447478147],[-98.46157559236781,21.78703441515114],[-98.46150841718577,21.787538835796283],[-98.46155330192931,21.789531095563063],[-98.46172324747494,21.79007072116559],[-98.46236525929413,21.79127640187852],[-98.46296960430459,21.79218992299309],[-98.46342929616219,21.79283730246277],[-98.46410316080642,21.793580576693728],[-98.46495559636162,21.794252925093645],[-98.47166396432533,21.79805175634567],[-98.47309878718158,21.798837978157962],[-98.47523636072066,21.80127868577],[-98.47633667223232,21.804401125272875],[-98.47626379873782,21.80757969747441],[-98.4747573055007,21.812400187473543],[-98.47469113286394,21.813355133953337],[-98.47745919679915,21.81534469679616],[-98.48189676794544,21.815006403024654],[-98.48530445976019,21.813928313656334],[-98.48953570501845,21.81144967644775],[-98.49043288377231,21.811413707317],[-98.4910817428779,21.811609262539662],[-98.49311892655038,21.81394031935372],[-98.49323169107629,21.81425916647538],[-98.49331123934292,21.819104153533885],[-98.49328662179624,21.820052783189055],[-98.49092774985633,21.827741861603045],[-98.48661734459199,21.8326254347935],[-98.48558957524398,21.834259314088854],[-98.48663334729264,21.836574942499965],[-98.49168152841008,21.83827560254815],[-98.49536427815832,21.838003313023364],[-98.49608180640485,21.837449617413483],[-98.5007848577551,21.833701369704272],[-98.50934214352179,21.824448059932706],[-98.5116804703124,21.82348296384947],[-98.51311718426268,21.823554241061515],[-98.51448114404906,21.82389343235633],[-98.5179463541869,21.82970218927761],[-98.51847941186827,21.831446678188854],[-98.52001623723328,21.838920682465982],[-98.52093797896396,21.842643852838705],[-98.52175487510652,21.845495244625226],[-98.52636762691628,21.85569349887146],[-98.52665012075056,21.857202615110168],[-98.52749885125849,21.861361265891617],[-98.5309759469207,21.863952063873796],[-98.54346099787313,21.859324230269635],[-98.54561234557673,21.85859094330516],[-98.54589526403578,21.858575353862193],[-98.54793336505679,21.860794278063395],[-98.54444985508258,21.867227704315553],[-98.54044110735111,21.873484433874182],[-98.54028882704938,21.87662583288693],[-98.54489382975925,21.88639230667252],[-98.54484675106937,21.88991155022228],[-98.54417990290676,21.89127813211951],[-98.54205001460963,21.89422179494892],[-98.53877226146915,21.89642483196161],[-98.53775834834806,21.898768234047168],[-98.53874547500419,21.904770683263962],[-98.53759063261128,21.906208710652834],[-98.53467838794836,21.90643513453091],[-98.53015916315246,21.903439228448917],[-98.52632403327311,21.900143509792883],[-98.52133796220073,21.897162557950708],[-98.51820674062628,21.897768667866785],[-98.51596753048693,21.899830130903297],[-98.51188996524587,21.90454409687942],[-98.51091047399137,21.907189086857443],[-98.51086391405937,21.910306089257062],[-98.51302157790548,21.916484795541123],[-98.5165862253848,21.917503625051665],[-98.51922096158984,21.915760557904832],[-98.52492297719823,21.914550507256365],[-98.53310498998559,21.91881434292401],[-98.53493743591747,21.91908766932022],[-98.53856953691985,21.918662157386393],[-98.54101620952844,21.917965123946374],[-98.54522144374465,21.917153573738346],[-98.54658378657484,21.919298210314253],[-98.54625433647414,21.921197344306393],[-98.54567301831679,21.92313976938101],[-98.5454506373112,21.925250769514662],[-98.54508445428934,21.927361374349744],[-98.5447533598192,21.929740215615936],[-98.54384703866958,21.932117462065946],[-98.54240643885169,21.93291788813235],[-98.53751170494502,21.93458008945879],[-98.5343470071873,21.934872822825582],[-98.53107684673421,21.93442780823898],[-98.52105719565463,21.932024889482364],[-98.51728632517876,21.930840758957174],[-98.50859806072384,21.927396257436556],[-98.50257145490048,21.923657709052463],[-98.4991542468864,21.92425066617335],[-98.49881959033257,21.927433812461572],[-98.50035140536329,21.931460574418736],[-98.50579292603345,21.940455391090097],[-98.50851131164865,21.944552670812925],[-98.51234160237414,21.949491141451915],[-98.5145207423958,21.950990969746385],[-98.51559733858994,21.951267837798923],[-98.52377307595538,21.950194986200472],[-98.52912919580746,21.950579100928906],[-98.53157635048387,21.94991573753606],[-98.5344152013023,21.946126618780795],[-98.53560798790164,21.944185969269142],[-98.53911188191063,21.939101141830918],[-98.54213820887009,21.937132049768877],[-98.54714221167285,21.935034282844413],[-98.5492296134201,21.934336143156713],[-98.55400734811076,21.933477444661094],[-98.55499438157887,21.933788935116183],[-98.55802796826936,21.935102557239986],[-98.55961296345288,21.93555061997108],[-98.5686933915926,21.93897447292619],[-98.57355928637577,21.94304134105556],[-98.57561340579053,21.945708010387307],[-98.57711192754584,21.949633444290384],[-98.57893072100035,21.95938895085652],[-98.5793202600633,21.961434525930827],[-98.57883910561537,21.966092252584247],[-98.57485118421454,21.969141248192955],[-98.56704922667899,21.968651634003947],[-98.56255917846238,21.96773095658949],[-98.55766586619734,21.96480975976158],[-98.55204213606646,21.96086885338559],[-98.54941519940661,21.9612127881191],[-98.54618230259769,21.96341083183944],[-98.53168999167036,21.974665583976844],[-98.52664375571504,21.97817046081002],[-98.52358306130566,21.979334723951922],[-98.52038373855032,21.97892320664033],[-98.51738086036039,21.976831187233017],[-98.51551696552252,21.97501575991538],[-98.51254175942904,21.97219149872228],[-98.50464953862775,21.966637531743004],[-98.49514395202613,21.96110535589048],[-98.48727088905008,21.959531780994837],[-98.4799965266792,21.95991569745877],[-98.47523925947695,21.96130327470462],[-98.47349202777326,21.962000495377595],[-98.46880576941783,21.964601316240817],[-98.46859138345354,21.966049551229446],[-98.46861458121987,21.966204817221694],[-98.47639708384202,21.97597351668969],[-98.47950785591831,21.97987900959106],[-98.48199396455982,21.982998816539634],[-98.48001190339949,21.988741463893916],[-98.47989061407253,21.988983198970175],[-98.48147636966854,21.990514029380336],[-98.4814239783272,21.990605489306176],[-98.4788519958222,21.99509473339748],[-98.47628607883308,21.99957305155681],[-98.47615295060297,21.995490497411197],[-98.47607382014257,21.993890195303322],[-98.47351747955099,21.988946447305864],[-98.47118104164076,21.988427961248192],[-98.46997214544206,21.990397440830463],[-98.46640518152049,21.989887985708492],[-98.46357609735213,21.99098714385218],[-98.46242940188847,21.99617578052238],[-98.45954448391745,21.995169054560222],[-98.45939263736409,22.000179142428692],[-98.46019149994731,22.001136458368137],[-98.45840787029044,22.00498356111558],[-98.45891759749247,22.00634716216831],[-98.45679491699195,22.009281307040965],[-98.45589894868095,22.01051975669401],[-98.45356807424491,22.013741444355162],[-98.45272051999393,22.01491289389628],[-98.45072142963107,22.017675783515983],[-98.4481929370836,22.021170195012473],[-98.4488467206993,22.02142176108339],[-98.44825553537271,22.02732425153181],[-98.44354899105832,22.03298174651735],[-98.44318758879251,22.03679274884456],[-98.44439824894175,22.038754064092927],[-98.44630607172257,22.041298484222807],[-98.44641430541668,22.042215342872964],[-98.44313449082517,22.049115486761593],[-98.43513953210248,22.051177726348158],[-98.43437523906925,22.056939116734952],[-98.44089164681316,22.063523661231613],[-98.44123013400798,22.064227988530888],[-98.43973025691326,22.06997667073722],[-98.43968387468783,22.07487676258131],[-98.43845361730092,22.07696483385331],[-98.43650332092835,22.07809533992321],[-98.43151368104498,22.078633293967926],[-98.43099313441184,22.081592521850382],[-98.4333512439697,22.08565773927296],[-98.4328382376728,22.089076875297053],[-98.43238676052698,22.089670004271966],[-98.43172149974646,22.09005014876226],[-98.4309720793641,22.090409475722254],[-98.43022072107021,22.090457296069076],[-98.42934451323032,22.090717547622717],[-98.42853792842527,22.091045798071548],[-98.42781797279139,22.091566256638657],[-98.42740259110883,22.092068175617214],[-98.42612884071326,22.09253747007847],[-98.4245631753725,22.09442704223744],[-98.42289989136555,22.096849238500738],[-98.41908089314478,22.09766479761913],[-98.41952593798533,22.100861651243974],[-98.42144914188844,22.102784132403997],[-98.42662761319474,22.10678322484023],[-98.42762656661574,22.108781767106507],[-98.4302569753786,22.108463781299918],[-98.43237195724589,22.110535890748565],[-98.43873705462005,22.111914930514843],[-98.43866465117475,22.1141354735189],[-98.43824846046658,22.114754860660298],[-98.43596927252543,22.115309055255977],[-98.43455480031656,22.116016355144495],[-98.4322579012935,22.117814623601987],[-98.43123289803958,22.125449676006724],[-98.43221013727498,22.12761463990995],[-98.42938544002982,22.1300973334761],[-98.4262407189301,22.13102280208733],[-98.42672008289418,22.131831187531247],[-98.42457469404201,22.132228396836354],[-98.4206352667236,22.13686021761322],[-98.42063941971162,22.13831319190217],[-98.41674579607076,22.141203261012436],[-98.41108444231804,22.143381969373706],[-98.35528008020958,22.180288444807502],[-98.34945708538442,22.18289284389482],[-98.34440133013095,22.186474175991123],[-98.33654501810673,22.187693252093993],[-98.33482941041768,22.19024060191464],[-98.33432712930602,22.197108707816255],[-98.33310445484568,22.197430797189213],[-98.33253092376287,22.1977166275571],[-98.33041317692454,22.20134444498649],[-98.33199648834307,22.20173559727823],[-98.33369157377507,22.20202481187323],[-98.33475837718902,22.202479374561733],[-98.33522002253062,22.210011760398913],[-98.33909955698937,22.211656014987057],[-98.34495895379587,22.213961650662327],[-98.34306157607676,22.21589324689387],[-98.34612270599183,22.217032361040026],[-98.34794205021149,22.21833135764041],[-98.34988911878088,22.21944866128524],[-98.35211618590102,22.220726586310775],[-98.35226121244085,22.222798785844702],[-98.35039808523942,22.222771511509563],[-98.34561134191472,22.22228909528735],[-98.3449132094396,22.222143293020054],[-98.34461514182101,22.22208873527063],[-98.32596704913294,22.243052800111172],[-98.3328765867746,22.241771914639344],[-98.3452607794195,22.23964060008393],[-98.3519467349011,22.238582851989293],[-98.35275963516335,22.24015958534153],[-98.35985186064994,22.238788214091016],[-98.36322777471923,22.238899302362938],[-98.36962758330202,22.23809747796139],[-98.36950344625188,22.2360611423901],[-98.37455585312387,22.236079396398566],[-98.36982567054287,22.24593514296106],[-98.36976673674343,22.246057320225304],[-98.36973404342001,22.246125084696814],[-98.36830128039225,22.249095019461606],[-98.36786764282789,22.249993867455714],[-98.36743835257272,22.250883698698317],[-98.36751687097222,22.252617031695138],[-98.36813667789562,22.25537310657171],[-98.37112344481892,22.254803993197697],[-98.37141561261643,22.254748315748543],[-98.375432398425,22.253966887926538],[-98.37633642400147,22.25082910232328],[-98.37826029057521,22.25343035832975],[-98.38183292387697,22.25333478259222],[-98.38254701977235,22.25588213767287],[-98.38628217530157,22.25596444663944],[-98.3889163370481,22.255997683377984],[-98.3936422446942,22.256057199963436],[-98.40509330494632,22.25607629062614],[-98.40419466867843,22.259165793281625],[-98.40566007924616,22.262483441043116],[-98.40320813393384,22.266384830025288],[-98.40577397442325,22.26717628783979],[-98.40641878746578,22.269350983277036],[-98.40176304024959,22.269675433928455],[-98.40112686594335,22.27216041791985],[-98.40055696637415,22.272648717421987],[-98.39637811154762,22.276261905477952],[-98.39911891528953,22.27808255609949],[-98.40109666096475,22.27746438216326],[-98.40266989883531,22.278716378843683],[-98.40317368373604,22.28221851332563],[-98.4075578953395,22.284209515610996],[-98.40867188266918,22.28374305713379],[-98.42475560563429,22.27426774629157],[-98.42585994610596,22.274256975506944],[-98.42864838931735,22.274456072327894],[-98.43345099925409,22.27656984607313],[-98.43328308152087,22.279718852228825],[-98.42970508688552,22.28021877539271],[-98.42794719690511,22.283847580728377],[-98.43255549409037,22.288156573195067],[-98.43546119511194,22.289880859554046],[-98.4397215800168,22.294119531224283],[-98.44665903381099,22.305621269726146],[-98.45439575967958,22.30393117458499],[-98.4554112645618,22.30316801751303],[-98.4568472189141,22.301962432084053],[-98.45755870018002,22.301324418795275],[-98.46148545767909,22.304886069090685],[-98.46451663508668,22.303465730577386],[-98.46511995157641,22.300795448299027],[-98.46590462083878,22.29997728422353],[-98.46437575037237,22.296688934848532],[-98.46696379024263,22.295758527146347],[-98.47045436596238,22.292495177686533],[-98.47590837692195,22.288639796543123],[-98.47757040551107,22.291247176514105],[-98.47783053478929,22.296213910484312],[-98.47953392149265,22.29625997677448],[-98.48056077397035,22.296983620386698],[-98.48199898554248,22.298516963740155],[-98.481993993473,22.299437628135024],[-98.48689205618086,22.29892029083652],[-98.48795245699785,22.30350552872295],[-98.49183657082096,22.303587385017295],[-98.49224380310363,22.30486109574565],[-98.49599135985363,22.303681675908877],[-98.49681563640996,22.307697481284208],[-98.49899588219517,22.307033116902403],[-98.50378368726075,22.30970138915177],[-98.50568897016092,22.309336121230047],[-98.50604281125698,22.31037613278818],[-98.50605821481088,22.311492193732477],[-98.50612007970949,22.315974402128177],[-98.51573512700708,22.319155222130803],[-98.52555101281098,22.318834850696362],[-98.52553198238945,22.323289550492063],[-98.52552461328912,22.325204112980884],[-98.52555069581575,22.327985097460896],[-98.53529604980673,22.327997525432238],[-98.53521452187732,22.33787830748861],[-98.54022041009364,22.337906868789673],[-98.54136390846537,22.33791475529108],[-98.55454201779219,22.338007528519825],[-98.55481548004849,22.339158675517467],[-98.55478618069947,22.342556266159363],[-98.5645191377098,22.342572428730534],[-98.56446464838126,22.34750716375686],[-98.56846957544644,22.347326003459784],[-98.57211026779726,22.346583939617062],[-98.5745210164614,22.34861875647391],[-98.57929064489974,22.348628110188713],[-98.57909473866141,22.35210243260815],[-98.57894634491078,22.35301112836521],[-98.5808363110778,22.354336263322864],[-98.58114081865972,22.354932179255286],[-98.58059662230613,22.35687192715926],[-98.58057333482378,22.35750371404646],[-98.58226634842572,22.360570279875276],[-98.57959039410582,22.363043055055073],[-98.57883390699908,22.36593689037028],[-98.57905874055388,22.370950362220412],[-98.57930685706378,22.376482580171],[-98.58027235966762,22.377012812453756],[-98.58285565831096,22.37305254145093],[-98.59007126956851,22.373070143097436],[-98.59871290598795,22.373171974353397],[-98.60962782260879,22.373163820392904],[-98.61560143977624,22.373171847881054],[-98.61854838037027,22.373158582584097],[-98.6242736363713,22.37315235817715],[-98.62786470265189,22.37314829697391],[-98.63106688129875,22.37314398773117],[-98.63320166694751,22.37314107805065],[-98.63533645250271,22.3731381388169],[-98.63756133510759,22.37313571572639],[-98.63787575467808,22.373088575788017],[-98.64562366699539,22.37309819372365],[-98.65880181338565,22.37313864501357],[-98.66758092318378,22.373190486126134],[-98.67653979289975,22.37280519172691],[-98.68154660421436,22.37157486837424],[-98.6810059933772,22.373249007040158],[-98.67686768623133,22.386285890411216],[-98.67646982353102,22.387517887597767],[-98.67418239834461,22.394600533017638],[-98.67382860127725,22.39569593972891],[-98.67328722797566,22.39737207361094],[-98.67088815523732,22.40567347857808],[-98.67467305122693,22.407007123203414],[-98.67709920249649,22.408927218932945],[-98.67956422815439,22.405686362003053],[-98.6866390211996,22.405027388945257],[-98.68731924495728,22.405107958606095],[-98.69033622251857,22.402738342934583],[-98.69386871768256,22.40423760155727],[-98.69685004722618,22.401773597140732],[-98.70151317033259,22.40213174691189],[-98.70158480721364,22.4005398250614],[-98.70815381462472,22.39725283293916],[-98.71013186154886,22.396795943498034],[-98.71358356252551,22.395636005446818],[-98.71830524128649,22.390813962965467],[-98.72333894404164,22.389353154557853],[-98.72638277383317,22.38977923688833],[-98.72679289152052,22.38815165338218],[-98.72909517924631,22.388317870326546],[-98.72917730449149,22.385355386346305],[-98.73117177324963,22.38348125608195],[-98.7315071797284,22.38125607007032],[-98.73448946952715,22.38079345897512],[-98.73667333497775,22.381840963862032],[-98.74284880609224,22.38177038141373],[-98.74593956728415,22.38086535951294],[-98.74819197791192,22.37896414001642],[-98.75055650324168,22.375198815891565],[-98.75167608015119,22.369023855506953],[-98.75487383727585,22.368612743717392],[-98.7564043201092,22.366940972979194],[-98.76896913953414,22.366913079171184],[-98.77330733985872,22.364404564731842],[-98.77561996217412,22.364223565711256],[-98.77815551740639,22.365644436609728],[-98.78643129132206,22.365979084749654],[-98.78899702226329,22.364782268185763],[-98.791891512272,22.361868056440073],[-98.80316178767436,22.361906554699203],[-98.81123144834515,22.361517406239102],[-98.81233320015167,22.359712020063057],[-98.81682665280039,22.357396200641347],[-98.82146731831102,22.356255797671224],[-98.82362456682495,22.358703799553496],[-98.82726970416581,22.35879921169942],[-98.82916922444127,22.36041008394335],[-98.83466228478426,22.360817136123956],[-98.83686578371442,22.362582426115466],[-98.84132440977521,22.363562883723034],[-98.84402820998798,22.366149611034643],[-98.84708484323306,22.366432595463095],[-98.84877836974988,22.36771492044278],[-98.85369448121901,22.368196228677675],[-98.85913813343916,22.36474060015587],[-98.86228360100932,22.36523266186117],[-98.86323884822241,22.365604384008122],[-98.86844511378638,22.366997834521328],[-98.87056927695113,22.367519660489677],[-98.87228948529844,22.36741298638742],[-98.87561654799765,22.361974778349065],[-98.87742151854098,22.361813606597195],[-98.88063250960676,22.35829746143088],[-98.88198131717763,22.358672910836674],[-98.88626701033894,22.355903584238604],[-98.88648661720606,22.35581911877017],[-98.88999725119675,22.35509350353118],[-98.89461602622629,22.357096014711374],[-98.89696041620465,22.359146509876325],[-98.89644516370913,22.362299133703914],[-98.89903392848419,22.365884402629717],[-98.90202836198455,22.365906146895668],[-98.90403938394286,22.368119567781207],[-98.90985625689933,22.371470603055684],[-98.91350979040021,22.37402172775012],[-98.91597861795157,22.372312178299353],[-98.91938076880882,22.371222989263856],[-98.92554485532958,22.371746781793547],[-98.93007159371291,22.382558680009197],[-98.93197272822749,22.392775138663524],[-99.0054610062823,22.405270746883843],[-99.03374157805132,22.410326051637696],[-99.03599330382872,22.41075960074295],[-99.04532139899044,22.412513168989108],[-99.05436346856175,22.414209099704976],[-99.06070730966155,22.41528624629518],[-99.0920611640696,22.410080088519408],[-99.11288333606734,22.406756717005578],[-99.12056704687166,22.406636481403098],[-99.13458845100257,22.407414077000283],[-99.13717319509885,22.407536297211664],[-99.15019909396631,22.408151594884544],[-99.22102407568497,22.412043591878728],[-99.23683875874394,22.412861997028642],[-99.24026744322867,22.42353860965659],[-99.24342540581398,22.433370660742924],[-99.25135968265033,22.443979231996934],[-99.2599785968265,22.46781093790213],[-99.26314854452255,22.469791235587252],[-99.27053732766893,22.5004945674919],[-99.27242581163273,22.51326262335766],[-99.27792397306604,22.52367661877321],[-99.28225537594409,22.536656352163845],[-99.28774080147889,22.553090496217976],[-99.28865339079721,22.555824164967305],[-99.29796984065797,22.57142388247655],[-99.29969103948861,22.574305450616578],[-99.3079831853592,22.594884656266686],[-99.31403439933541,22.609898162050342],[-99.32859003937659,22.608702402754147],[-99.32867611962615,22.61166949708081],[-99.33010752056396,22.614844689285462],[-99.32138785983523,22.61673044203161],[-99.32961768478873,22.634887782339547],[-99.33961430711872,22.63325055004634],[-99.37320046961673,22.629077681675824],[-99.37766396402088,22.646069141347084],[-99.3790939290119,22.6500902498953],[-99.38325305841107,22.65804436093623],[-99.38405268140826,22.662774610243275],[-99.3852357178273,22.665065759073798],[-99.38469999565098,22.66754807959819],[-99.38555311542359,22.670268457122347],[-99.38897525173098,22.670090050269835],[-99.39654012289895,22.67076680020591],[-99.41991271721116,22.662037536908997],[-99.4420528727943,22.66361570749524],[-99.44255352224684,22.664399384259582],[-99.44832782511656,22.673437325728628],[-99.4680640200097,22.719497800803367],[-99.47712682917381,22.740637218151335],[-99.47922031381631,22.742052955148836],[-99.48305207239991,22.74227271111164],[-99.49048448969114,22.74142671879082],[-99.49244868859313,22.741947986764274],[-99.49678850890888,22.74849795937854],[-99.54432737790569,22.744140151875968],[-99.54000561572406,22.731374009307274],[-99.52789254890183,22.695579616210807],[-99.52581929920166,22.69354618274957],[-99.51675746551643,22.664436893981133],[-99.5152870407029,22.664667485967527],[-99.50555630729565,22.644132528548255],[-99.49453637613038,22.620868625863636],[-99.49583132971219,22.619924136223915],[-99.51365163396173,22.61506136559649],[-99.53469190868486,22.61276465329115],[-99.56063829543234,22.641220488498277],[-99.60278695380606,22.654863049886046],[-99.6671246909952,22.67566030772832],[-99.68253545471936,22.681124714827433],[-99.69198063467394,22.67684656517241],[-99.70176450160159,22.67322808800526],[-99.71836925963868,22.66455531590657],[-99.72408516589536,22.65960839262044],[-99.72895088855017,22.65913356488636],[-99.75477858097946,22.65661064774838],[-99.75902086890505,22.657966433021613],[-99.76412127441313,22.662109067840447],[-99.76558853863179,22.66167018960465],[-99.76698343325052,22.661538236938384],[-99.76833143884033,22.6617602439826],[-99.77739012026763,22.66567396149179],[-99.77888004081575,22.66714314987769],[-99.78503694047896,22.66850898103678],[-99.79474597974257,22.667703017921326],[-99.79731417537789,22.66504911053579],[-99.79801684948808,22.666650028399488],[-99.80548584833633,22.657773146315833],[-99.8140289788247,22.660765781364773],[-99.84792357439972,22.67843511425332],[-99.84281900516129,22.7305572027297],[-99.87268150535624,22.74545296527492],[-99.88239697716904,22.749862314262884],[-99.88315370809477,22.748238888669675],[-99.89205910035759,22.74844645854347],[-99.92625489860012,22.749503388275627],[-99.93331342380179,22.749698215031287],[-99.94547259398848,22.751420584254333],[-99.95695814555467,22.751666519702894],[-99.95848933764165,22.74977680201016],[-99.95914477778774,22.75004388573791],[-100.00901805584135,22.731012788902603],[-100.02234326450247,22.725924549286958],[-100.06600979617673,22.741349892962432],[-100.09405993850544,22.751265174652872],[-100.1019204036632,22.76279275439822],[-100.09751605610609,22.765804376452877],[-100.0293841993925,22.824393550897014],[-100.04029642261577,22.895545011204547],[-100.0442390734899,22.917892407264787],[-100.11038362444236,22.91671440891099],[-100.11027758079922,22.94344508752738],[-100.11061944034299,22.970178136073912],[-100.11084695979014,22.975718971495724],[-100.11014545081724,22.97551157574287],[-100.08942101560592,22.968757473019537],[-100.09953208005152,23.00793111284412],[-100.09745530382492,23.013090969802533],[-100.09491513198299,23.013841023919156],[-100.091644439731,23.011552350194847],[-100.08618780385478,23.01094425238273],[-100.08569017544642,23.00856775305897],[-100.07985358802443,23.001625729164402],[-100.07418369858055,22.99667034683347],[-100.07165578219747,22.997357204571585],[-100.07003308454176,23.000998201532752],[-100.06621645556936,23.00180999556727],[-100.06749837155496,23.00810728315946],[-100.06470890794117,23.012370107837228],[-100.06184233184257,23.011979634095326],[-100.0669028191071,23.03144622298572],[-100.0661077759928,23.034860639138003],[-100.061940289299,23.04000806682302],[-100.05858974661493,23.039999402704836],[-100.05421356423807,23.041968418376086],[-100.05292896689076,23.04591675393914],[-100.04847058009403,23.049136970196514],[-100.04796521532177,23.050366816052247],[-100.04258822923367,23.05273064691073],[-100.04045286220156,23.05182544425145],[-100.03495784912064,23.05306316091128],[-100.0269160982786,23.0561712056612],[-100.02718615843747,23.05874903560573],[-100.02387440308911,23.06010907683344],[-100.02385925777025,23.060321956376924],[-100.02330895220604,23.05996938774041],[-100.0232991477132,23.059627875181036],[-100.02289224315734,23.05949815802154],[-100.0226239284026,23.059625307086662],[-100.01840532210281,23.06067097207773],[-100.01558513264354,23.058660630808617],[-100.01269159193242,23.058893322089432],[-100.01125220841396,23.06392058115324],[-100.0115776944474,23.065602894256813],[-100.06902911216656,23.09594178678077],[-100.06937885440817,23.09685671585794],[-100.06874296293762,23.121156264243496],[-100.08925969143672,23.123444868540332],[-100.11559726738164,23.125989886201864],[-100.11015500738984,23.15106988644237],[-100.11898963736763,23.152427888050568],[-100.11828616211244,23.200545304531715],[-100.10974019930745,23.19971786327079],[-100.10381335990155,23.231535378880892],[-100.12240688561178,23.235593147558745],[-100.15289905390557,23.240063828421057],[-100.16328812317772,23.241505987331607],[-100.22823651059872,23.250476146183928],[-100.22036308474833,23.27086790857902],[-100.21357039176218,23.288455642931638],[-100.20948885077371,23.29902140198243],[-100.20690020278022,23.305721689711504],[-100.20636423847412,23.307108860831875],[-100.21823772416388,23.31013436017679],[-100.21868596399707,23.3072986234846],[-100.2194936097959,23.30218886992901],[-100.21981045758378,23.300184171450326],[-100.22070406896313,23.298046584606823],[-100.27843498416524,23.31036840269428],[-100.30625693272225,23.260942126636678],[-100.32581223596969,23.26309265608296],[-100.33169253110992,23.2590923695912],[-100.37431657242172,23.26532381139822],[-100.36376430595391,23.189005380336823],[-100.32351520749017,23.195627451820883],[-100.32634088945719,23.18502405986601],[-100.33175793908418,23.162683185280514],[-100.35030911664256,23.165705898184115],[-100.36091881336665,23.168149665252656],[-100.40562556953262,23.178068367614685],[-100.43274148889645,23.18403192657422],[-100.44864791406951,23.187503997383544],[-100.45131639366332,23.188086298173914],[-100.457812263135,23.18950357711202],[-100.45788661829522,23.189519798459116],[-100.47984966986064,23.194365360685595],[-100.48386909029279,23.20883201395435],[-100.483607850873,23.21404566934001],[-100.45708323947468,23.366409595681432],[-100.51401744108836,23.41563100341955],[-100.51721132850804,23.421042839180757],[-100.49761692396737,23.49402702047928],[-100.49416867408212,23.528406397084552],[-100.46441600701957,23.512082036253673],[-100.45917610604982,23.51156610612162],[-100.4591474916794,23.533163764936944],[-100.46751624485023,23.54356640215542],[-100.46954495166938,23.56678311050854],[-100.49163689807949,23.5686125123965],[-100.48865346119732,23.605047050096573],[-100.4866493074856,23.604138905472723],[-100.47737862477459,23.633818693413843],[-100.46335053392238,23.653140203430667],[-100.45435512457004,23.64990454772959],[-100.44984459617046,23.656008932912357],[-100.4583284388163,23.660112551444286],[-100.44572012413323,23.677331523701014],[-100.44710043688548,23.69653452499699],[-100.45748949071185,23.69551686411944],[-100.46203818257663,23.69462735884042],[-100.46102227880334,23.691880381411238],[-100.4625305810518,23.691370509467447],[-100.46186189104782,23.689064691644944],[-100.46448709248193,23.688722792239787],[-100.46475794755008,23.690882787007922],[-100.46648328171153,23.68894102632163],[-100.46802036672204,23.692600699521677],[-100.46626301002073,23.69327307213274],[-100.46793256591201,23.70008699783307],[-100.47414736559108,23.706843125426587],[-100.49030233494909,23.739600881725778],[-100.4940581477295,23.737931423349437],[-100.49770627758141,23.736309702363314],[-100.49777214340264,23.739754739952218],[-100.49805525278799,23.75455795982947],[-100.49760172667442,23.79871269062204],[-100.52879142355891,23.816352625715467],[-100.5255299562752,23.83952591568982],[-100.55029868855144,23.84220258586066],[-100.53984560878075,23.888393054436904],[-100.5494343042829,23.88931460517682],[-100.54676780649714,23.91743661110843],[-100.56240160960613,23.91964108365761],[-100.55086422087908,23.977528040418633],[-100.54877624321853,23.988589092817392],[-100.5412826646151,24.025747622609742],[-100.53919405591137,24.033398124846258],[-100.52375899373015,24.071454949440522],[-100.53461009918533,24.105525689833428],[-100.53645134626277,24.111402436473327]]]},"properties":{"cve_ent":"24"},"id":"inegi_refcenesta_2010.13"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-87.30943895448479,18.60356195973742],[-87.32081903867595,18.598437955380746],[-87.32397113367279,18.592054250044157],[-87.32279255942711,18.58534412597959],[-87.3299121782776,18.58093191443413],[-87.33249868630065,18.580947312654416],[-87.3362055345163,18.578985565994742],[-87.34123495836837,18.57449225237525],[-87.33935993583111,18.572560076047296],[-87.33980208109767,18.57548699006196],[-87.33830502536637,18.573384532866783],[-87.3324744799018,18.571958137341483],[-87.32619899343905,18.572368282705952],[-87.32007003664302,18.57572120699632],[-87.31377918628334,18.582063041980973],[-87.30858911404971,18.58947598375744],[-87.30545919568885,18.59753898807179],[-87.30549398997863,18.601078648351006],[-87.30943895448479,18.60356195973742]]],[[[-87.30545241643819,18.74193549839157],[-87.30689706435868,18.739672932300095],[-87.30589112793473,18.73766209772765],[-87.30353587631964,18.738307066812695],[-87.3034318293183,18.740851095302276],[-87.30545241643819,18.74193549839157]]],[[[-87.29913699838858,18.75097029687373],[-87.30095413427034,18.751378850530898],[-87.30366000515158,18.747963359453763],[-87.30343628417205,18.744803200920842],[-87.30117063505156,18.745305876812324],[-87.30174429532889,18.747441172523622],[-87.29850409287923,18.748072720983032],[-87.29913699838858,18.75097029687373]]],[[[-87.6411454811186,19.18799558058356],[-87.64566343646533,19.187980021368503],[-87.64708385217818,19.18639387516356],[-87.64304330142039,19.186859606487246],[-87.64453713174578,19.184595555367707],[-87.6402892877789,19.18454106296207],[-87.6396385319988,19.186952614971915],[-87.6411454811186,19.18799558058356]]],[[[-87.62966015386638,19.19278055725499],[-87.62753513703797,19.19670020629519],[-87.63283581729416,19.194875011909346],[-87.63401774507463,19.19306383866683],[-87.63194694378456,19.191345125711564],[-87.62861635344404,19.19097698563405],[-87.62966015386638,19.19278055725499]]],[[[-87.62817628563573,19.20272210637245],[-87.63014263271924,19.204335460807556],[-87.63104002204727,19.202715025941416],[-87.62817628563573,19.20272210637245]]],[[[-87.64976016698341,19.215550072478493],[-87.6409478485607,19.217051157723915],[-87.63250150259887,19.220812176796812],[-87.62026044038362,19.229674343977536],[-87.61634122740742,19.233306167182718],[-87.61527959834632,19.236249844034376],[-87.62097888417412,19.230576556573396],[-87.6249056261816,19.2289800688651],[-87.62977618030038,19.224892476102355],[-87.63726815771463,19.2207956583743],[-87.64095223189395,19.21818194790916],[-87.6489304660368,19.216683820271385],[-87.64976016698341,19.215550072478493]]],[[[-87.46776310379107,19.334019680544486],[-87.46641758954166,19.331344791578374],[-87.46554181930912,19.326554216238378],[-87.46427020613248,19.328953863729964],[-87.46591696965078,19.33303765295443],[-87.46776310379107,19.334019680544486]]],[[[-87.51064441952178,19.366092712544003],[-87.51821603113211,19.371115922856575],[-87.51735193212227,19.36708269818058],[-87.51797992319854,19.363751469949193],[-87.51477350228737,19.359321305965977],[-87.51497999396116,19.357302876028314],[-87.51252841397024,19.35599819109825],[-87.50869760812418,19.35600893101389],[-87.50998207284766,19.358426757379675],[-87.50593806535915,19.358337145399048],[-87.50720909558618,19.356416653484416],[-87.50549718432,19.35339464090822],[-87.50548972584954,19.350973240490646],[-87.50219446794699,19.352092173558788],[-87.49772437068123,19.351801765977086],[-87.49484798352682,19.350699782302797],[-87.4946233109037,19.346765581679904],[-87.48705653216865,19.34275025424796],[-87.48630244375312,19.33962459230571],[-87.48150374259711,19.336005185278623],[-87.47926760271383,19.33540572335727],[-87.47842699093087,19.33904007721162],[-87.48034338533972,19.339438606467752],[-87.48344386906854,19.344475050443407],[-87.48909802802399,19.349403705200302],[-87.4916554352535,19.35060753432805],[-87.4959233412385,19.35442988241033],[-87.5000924222324,19.36067381719164],[-87.50563904401128,19.364895978289724],[-87.51064441952178,19.366092712544003]]],[[[-87.57108691392489,19.39826025636728],[-87.57333905433376,19.397980353741218],[-87.57161318616721,19.39434565000539],[-87.56943411049559,19.394943584601435],[-87.56736691408491,19.393244958320395],[-87.5655468849614,19.39370531858907],[-87.56527975710168,19.396995740038847],[-87.57108691392489,19.39826025636728]]],[[[-87.55194009642167,19.412818730869674],[-87.5544386416658,19.413714786733294],[-87.5555078915649,19.411678578691692],[-87.55192482515531,19.40837330510118],[-87.54874630782348,19.409141774477007],[-87.54939550011613,19.412374554300925],[-87.55194009642167,19.412818730869674]]],[[[-87.65851780694925,19.50560724000809],[-87.6596324995428,19.507862141830344],[-87.66184950234953,19.50469175579076],[-87.65961678532256,19.50402209129004],[-87.65851780694925,19.50560724000809]]],[[[-87.65641442762558,19.51563516614624],[-87.65894579703655,19.514722579971078],[-87.65957167857329,19.511630183154466],[-87.66163013673997,19.509291635687816],[-87.65782612484293,19.51125692675214],[-87.65641442762558,19.51563516614624]]],[[[-87.69992995331836,19.59099023069433],[-87.70215197560657,19.592535630959333],[-87.70549289525201,19.590869169552775],[-87.71210594267103,19.590843170819312],[-87.7130458486647,19.589746279247265],[-87.70111163351078,19.589952144564563],[-87.69708808473735,19.58921240357381],[-87.69771104351526,19.587619913767128],[-87.6828199521201,19.586958948247627],[-87.6754579380056,19.587704646482166],[-87.68413381558275,19.58758556238456],[-87.69058449911745,19.587930534670704],[-87.695534856726,19.589157225550423],[-87.69992995331836,19.59099023069433]]],[[[-87.49649482887048,19.589948623422288],[-87.49771830121796,19.592584803133946],[-87.49925496577129,19.59127089560343],[-87.49649482887048,19.589948623422288]]],[[[-87.45744327028706,19.59828872545296],[-87.45826668316869,19.596136188680305],[-87.45556599356945,19.595803141968133],[-87.45541190314606,19.598176290360414],[-87.45744327028706,19.59828872545296]]],[[[-87.46211691513321,19.594352350386487],[-87.46351760909226,19.598381982912997],[-87.46465034861131,19.59770145553938],[-87.46315302507958,19.59431684303604],[-87.46211691513321,19.594352350386487]]],[[[-87.49033847685519,19.597634929736728],[-87.49081906354951,19.598880575715782],[-87.49390655007062,19.595140593237033],[-87.49176044744667,19.59492043768546],[-87.49033847685519,19.597634929736728]]],[[[-87.46376353880777,19.60098364192106],[-87.46484793190558,19.60334826189893],[-87.46686223801106,19.60085835793967],[-87.47145166399315,19.601813498929573],[-87.46804989337346,19.599391565641383],[-87.46376353880777,19.60098364192106]]],[[[-87.4923821834069,19.6048580360125],[-87.49333263790993,19.6038434974667],[-87.48773176489732,19.602728936522],[-87.48510364368326,19.600811267551535],[-87.4847471224166,19.602736807441715],[-87.48319690044377,19.600933738273625],[-87.48462003129816,19.598553617308767],[-87.48151764221086,19.59743228483245],[-87.47890254644977,19.59981548113626],[-87.4783585510931,19.60231498312919],[-87.48129284366831,19.6019507156156],[-87.48320745501337,19.604430523627343],[-87.48474849032107,19.60318858850036],[-87.4923821834069,19.6048580360125]]],[[[-87.49228650160768,19.610957389896328],[-87.49597066637659,19.608914482976047],[-87.49513511722381,19.607001159962806],[-87.49228650160768,19.610957389896328]]],[[[-87.4640186241673,19.606738736111254],[-87.46521488873788,19.60820854059807],[-87.46511522198153,19.613286857476226],[-87.46702099103015,19.612776040890537],[-87.46640324512958,19.606958612124288],[-87.4638996078948,19.605157788849795],[-87.4640186241673,19.606738736111254]]],[[[-87.51927513558184,19.61280757930564],[-87.52340334977856,19.612902551262835],[-87.52213279427508,19.611605530581073],[-87.52166750941723,19.607653862962707],[-87.52342365380872,19.6047451897486],[-87.52087658276224,19.606248380424688],[-87.52005297217556,19.609881804500276],[-87.51790301523278,19.611752493828135],[-87.51927513558184,19.61280757930564]]],[[[-87.51554457629982,19.629369419184002],[-87.51905787728509,19.62857307014025],[-87.52081720957904,19.623720277103985],[-87.51554457629982,19.629369419184002]]],[[[-87.69756631084931,19.643077775719235],[-87.69674064868241,19.645454569639128],[-87.69938069340577,19.64623579738793],[-87.69994890009394,19.64379905269533],[-87.69756631084931,19.643077775719235]]],[[[-87.6740862223582,19.641217695269404],[-87.67364681451767,19.6437755903184],[-87.68015539672012,19.64697738184384],[-87.68143615943171,19.645694497620298],[-87.68007001556953,19.641986873620624],[-87.6740862223582,19.641217695269404]]],[[[-87.7079942416799,19.649976949153768],[-87.71345415115871,19.64878601224183],[-87.71016404958033,19.64628042137923],[-87.70502859909362,19.645581018520204],[-87.7042297678745,19.647653013813738],[-87.7079942416799,19.649976949153768]]],[[[-87.45937187883817,19.69468394075119],[-87.46165992025038,19.695808282782423],[-87.46420166674307,19.694054953893044],[-87.4582369783434,19.690846414890757],[-87.4576974996886,19.693186255957983],[-87.45937187883817,19.69468394075119]]],[[[-87.4654376648678,19.696620409573313],[-87.46685737885798,19.69916778564749],[-87.46861183998203,19.695930578510627],[-87.46652003890102,19.6938807311887],[-87.4642526750884,19.69376592964784],[-87.4654376648678,19.696620409573313]]],[[[-87.47588596989999,19.7046003480595],[-87.47776222842248,19.703261601189126],[-87.47296587979054,19.701689192782453],[-87.4713013492692,19.69937332342306],[-87.46831414990453,19.699173744366306],[-87.47027938787778,19.701268501356594],[-87.46856885418458,19.70165355132451],[-87.47138390784659,19.70407136523056],[-87.47588596989999,19.7046003480595]]],[[[-87.50062572168468,19.71122068331141],[-87.50555357442511,19.711169121411956],[-87.50536201884739,19.709716485808144],[-87.49775287526097,19.708397879361712],[-87.4935822377958,19.70605620820197],[-87.4864513847038,19.704153085041412],[-87.47968072555449,19.704913261740217],[-87.48530116898985,19.70754063395833],[-87.49050189194622,19.708159007431448],[-87.49761294234088,19.71077204011874],[-87.50062572168468,19.71122068331141]]],[[[-86.86484029775448,20.54821934323718],[-86.86442684936145,20.546284873492596],[-86.85957217930581,20.546640011829652],[-86.86484029775448,20.54821934323718]]],[[[-86.72688659251503,20.577724425462407],[-86.72407983226174,20.585921071989958],[-86.72395289816848,20.590405304275578],[-86.72693919746087,20.592156781094616],[-86.73156620672574,20.59103428216042],[-86.73460995475187,20.586705466661158],[-86.74089129993507,20.582389577551396],[-86.74766716536311,20.578718950757434],[-86.75425356545509,20.5760847978504],[-86.75933722683868,20.57537015708607],[-86.75982424279204,20.57358808551487],[-86.76727070159313,20.567577733074586],[-86.76324768132707,20.567849442147235],[-86.76694667830168,20.56491927093458],[-86.76823077771144,20.561042249990805],[-86.77236291894485,20.560789163062168],[-86.77363258699057,20.56254728305896],[-86.77062036977458,20.56714151437825],[-86.76898042919123,20.566877568993732],[-86.76756082903967,20.56889149427525],[-86.77224351669099,20.56573909737915],[-86.78010241931219,20.562141407656327],[-86.78321528901893,20.559493959320378],[-86.78751304290938,20.558227574610385],[-86.78991107185936,20.556046402113225],[-86.8003267863595,20.5566925424626],[-86.80582284886805,20.555282186890167],[-86.80814753181579,20.5539249868541],[-86.81524982918938,20.553587582257194],[-86.8233195185449,20.55451056435669],[-86.82371036542918,20.552322458723836],[-86.82140547305016,20.55254979565285],[-86.8191111987947,20.549675195618534],[-86.81482309615222,20.550599395412917],[-86.81300652363046,20.54874797439271],[-86.81437475581271,20.546457242371048],[-86.81265413249253,20.543107807896718],[-86.81400998172711,20.541626887589985],[-86.81543497787948,20.54280087126989],[-86.81577162124688,20.549579501950973],[-86.81765020314208,20.54826315179713],[-86.81747817560637,20.545627789907883],[-86.82349214660013,20.543673254677515],[-86.8313776369015,20.5433677120854],[-86.83551584437532,20.539518206270145],[-86.83721901192018,20.538883644544626],[-86.84123258916685,20.541226511554385],[-86.84415602489906,20.54085308807271],[-86.8452122185899,20.542461997251394],[-86.84255827544928,20.546125457404628],[-86.83780387454544,20.548238208211444],[-86.83259973428636,20.549319997632892],[-86.83214986640883,20.550600529657117],[-86.83955953156936,20.54966274162109],[-86.84782638629628,20.549803809311925],[-86.84825114336104,20.547434195527444],[-86.84507124824694,20.547012360256417],[-86.84732847352205,20.5456295621388],[-86.8469129071313,20.54274996543603],[-86.84926259067919,20.54210531125051],[-86.85371235980904,20.544991045040717],[-86.85338716793672,20.54794387038089],[-86.85168396930663,20.547497301835563],[-86.8514316778431,20.550163873144754],[-86.85433860876725,20.549904018035022],[-86.85868774152146,20.547917248865758],[-86.85685054457002,20.543658502085293],[-86.85930885821233,20.541155100549474],[-86.86489638556736,20.537204945786186],[-86.86978303787578,20.53730331130032],[-86.87352784555986,20.54048444426678],[-86.87542370916321,20.540867411666056],[-86.88062446956013,20.544794795448695],[-86.88370017270682,20.553464078872253],[-86.88321639905837,20.556105238245266],[-86.8816001078115,20.557692763639068],[-86.88843889378563,20.562770373018793],[-86.89266498478048,20.56339806237935],[-86.89739251795766,20.56554906085023],[-86.89923654606707,20.56198032243043],[-86.90430186893462,20.55993262461277],[-86.9085825959927,20.557478907231314],[-86.91482259539237,20.555276120477572],[-86.92195000352808,20.553770535915646],[-86.92748801301462,20.550804457819993],[-86.93155454449237,20.54545473244957],[-86.93329980110911,20.541382759519706],[-86.93730071175253,20.537653368128076],[-86.93932819079231,20.533057423917626],[-86.94081736066312,20.527621139773885],[-86.94390795562055,20.52164921088331],[-86.94559380723592,20.51713239458809],[-86.9475059330864,20.514038115648873],[-86.95181802629213,20.509427241534183],[-86.95654413247058,20.506899795687787],[-86.9609799286115,20.501034531585674],[-86.9638776196768,20.49641514242984],[-86.96421965791757,20.494686285094133],[-86.9741008490962,20.478667391205136],[-86.97546228186138,20.475318901936646],[-86.9781891373936,20.47286995210476],[-86.98164567141782,20.467943844547165],[-86.98001254778853,20.46660575167016],[-86.98239795590035,20.466463750894548],[-86.9861331244453,20.45973470443016],[-86.98682583971339,20.455917561858712],[-86.98977057099944,20.45161171116581],[-86.99079577462913,20.447505752479856],[-86.99531244959951,20.441720223655125],[-87.00001902929512,20.437987751933917],[-87.00329175523751,20.43366855152027],[-87.00538781258575,20.433355567072113],[-87.00559324968418,20.431081625892602],[-87.00749419870886,20.42984782469216],[-87.00739129277002,20.426710335452242],[-87.0100151916908,20.424727683528886],[-87.01081120068915,20.42005880980264],[-87.01497056482566,20.415442957578477],[-87.01699452924868,20.41162498685435],[-87.01715970931036,20.404992078412135],[-87.01955432928645,20.39549155459207],[-87.0215027867319,20.39182769955471],[-87.02157926392857,20.38631386442154],[-87.02257713203278,20.380139319509055],[-87.02427977134215,20.373129035723196],[-87.02440202538281,20.36825340680838],[-87.02526731029354,20.36636839965837],[-87.02455515383622,20.362464768567804],[-87.02478982596193,20.356056720118943],[-87.02087209366778,20.347856630160095],[-87.02025872589968,20.343419953054365],[-87.02144033631157,20.339763800289518],[-87.01607898993024,20.333113961681363],[-87.01373223524376,20.32874187020974],[-87.01285090790316,20.323922669137403],[-87.01091777620672,20.319986526771572],[-87.00988518658414,20.315561797760836],[-87.00996250755668,20.31001345463619],[-87.01684317095663,20.300430863758947],[-87.01675986959003,20.29855133159066],[-87.01140155364811,20.29965658675502],[-87.00349656058,20.29769670592583],[-87.00163851757645,20.294950521654016],[-87.00092535753981,20.291184603123725],[-86.99646261414262,20.285648315339984],[-86.99701582917379,20.28260484897305],[-86.99437575236385,20.274540707147082],[-86.98912950973892,20.271613937998666],[-86.98759367910742,20.271922049869943],[-86.98315627604251,20.276295255496052],[-86.97970988397992,20.27890576933794],[-86.97366551859244,20.28084566769826],[-86.9676278231475,20.287438613700715],[-86.96376611480588,20.291008641302483],[-86.95784883226611,20.292154621890404],[-86.95571368464454,20.294335541680937],[-86.95092628539771,20.300866005361854],[-86.94731984344469,20.304317620579127],[-86.94234944365212,20.30562493628196],[-86.93850232605234,20.30810886333478],[-86.93504245152963,20.311662158234697],[-86.93286954716882,20.31174158093853],[-86.9289984683287,20.31586221498884],[-86.92327851521407,20.32421560801697],[-86.91792400042561,20.329971235874325],[-86.91393774095144,20.33693363425749],[-86.9080809823563,20.343302846754284],[-86.90367645329093,20.3463819243388],[-86.90097281150969,20.346011292139224],[-86.9007421424497,20.344273167611902],[-86.89846654073062,20.344187584660858],[-86.89802964948262,20.345842739529473],[-86.89292106664277,20.353180867205992],[-86.89224641041693,20.355919043357062],[-86.88864720383822,20.361161188412154],[-86.88518677178166,20.368198776474173],[-86.8789065394364,20.378370118106773],[-86.87689593794357,20.381083743647935],[-86.87417525931306,20.38246093787768],[-86.87216691869577,20.38624303917527],[-86.8660206950899,20.3946578254006],[-86.86136207720699,20.399938398993584],[-86.8571860314197,20.402209354106958],[-86.85404821006279,20.408553708517275],[-86.8410461129829,20.424655981904152],[-86.8352802521377,20.430627578007602],[-86.83483354243549,20.43241388589604],[-86.83058696372734,20.438061079129966],[-86.82736044060044,20.437793518677267],[-86.82109528784792,20.439311572908537],[-86.81811775557111,20.438271682229015],[-86.8151386723199,20.440936997272217],[-86.8155232803789,20.44325154860485],[-86.80769347577052,20.45398520332526],[-86.8048136668287,20.457289337227735],[-86.80027281957433,20.4581924897343],[-86.79849947658755,20.461942462054367],[-86.7956065916008,20.46250609663639],[-86.79134927819854,20.468703662419102],[-86.79051148080157,20.47213893435105],[-86.78902087228175,20.472911240998485],[-86.78094111651143,20.484243425880152],[-86.77872913598202,20.485608902134345],[-86.77368567369211,20.492967087637396],[-86.77148509246604,20.494763470628754],[-86.76338022227117,20.507081829325557],[-86.761697345762,20.512045084071076],[-86.76159126124952,20.515506243921152],[-86.75777888049447,20.525527617649914],[-86.75479116033102,20.528221211027414],[-86.74950794330289,20.534532626635325],[-86.74536042503371,20.54268349484039],[-86.74183113280526,20.548339710253572],[-86.73989668349145,20.550427665527536],[-86.72978876992488,20.5702542082725],[-86.72688659251503,20.577724425462407]]],[[[-86.74861693881553,21.264864764359288],[-86.74935407285005,21.261932638533438],[-86.75307887288363,21.25797629777918],[-86.74561256180044,21.254667314688106],[-86.74120231872462,21.246060161594414],[-86.73969769140058,21.239830225148012],[-86.73806093646596,21.235865394348366],[-86.7369652731785,21.235641085508405],[-86.7342855239612,21.231101337141126],[-86.73031574001112,21.221283852352656],[-86.74005004272612,21.23383950071809],[-86.73865752266562,21.235770595129736],[-86.74008917151986,21.239012112746195],[-86.74274674191594,21.238770136581934],[-86.74357260404264,21.237336420274858],[-86.73477359041647,21.224317168662594],[-86.73047340452263,21.218964929954723],[-86.72559270650316,21.214766437305684],[-86.71844664246152,21.20554521039901],[-86.71682228245703,21.205160083322653],[-86.71190514084782,21.201732729738637],[-86.71328784338061,21.20517160005602],[-86.71467872235894,21.206088315397494],[-86.71593514271763,21.209381086757958],[-86.71839517567452,21.21218578410401],[-86.72114078854435,21.219084576860098],[-86.72075988969277,21.219573909915027],[-86.72492920452777,21.22583632845044],[-86.72986804539136,21.234651075994407],[-86.7391634931131,21.246320440857232],[-86.74177615560592,21.251298974408712],[-86.74687336424972,21.259119753648918],[-86.74861693881553,21.264864764359288]]],[[[-86.85186488873194,21.436382142288664],[-86.85869942688595,21.43516807328831],[-86.85969652939986,21.433941777594725],[-86.863917565348,21.43249724315882],[-86.8686931929854,21.43202605255567],[-86.86891372621886,21.430443341009834],[-86.8727156508167,21.431002544114847],[-86.88006854036627,21.435053149229248],[-86.88358556455648,21.433994148317936],[-86.88756695823804,21.431506142818534],[-86.8873014688728,21.42994846323802],[-86.88114399454832,21.42651137076126],[-86.88264778433745,21.424841604691665],[-86.879110550299,21.425044267423573],[-86.87898255433578,21.428415173456983],[-86.87710712141995,21.425189392997538],[-86.87507082413492,21.427239773092936],[-86.87729721708757,21.42252205921136],[-86.87917498471973,21.42287518779301],[-86.88317556502932,21.420441619752978],[-86.8851597431688,21.42114397260349],[-86.8878878403496,21.418624052209907],[-86.88707301068371,21.416588565804147],[-86.88507159429997,21.418345125768496],[-86.87851789187533,21.420434174695913],[-86.87393076518384,21.425859146909772],[-86.86997708401225,21.428883618895725],[-86.8588183743255,21.432196442939755],[-86.85571894225501,21.43263350366533],[-86.85293142329164,21.43415531817459],[-86.85186488873194,21.436382142288664]]],[[[-86.90379622166398,21.466240691162625],[-86.90511428219725,21.466241444087075],[-86.9043040334472,21.459764871958157],[-86.90232261434073,21.457029202806496],[-86.90515496524182,21.45539343371263],[-86.90483318471433,21.453429425186357],[-86.90957792459295,21.453507588051707],[-86.9097200818884,21.452166975633986],[-86.91361779839207,21.45052621623472],[-86.9113079388631,21.449448679727766],[-86.90848012130812,21.45139338402612],[-86.90393747958814,21.451126476881598],[-86.90387528807298,21.453600106946453],[-86.90242092424387,21.454562295152527],[-86.90193437702573,21.457299052008352],[-86.90360206989112,21.46012093457489],[-86.90228908261071,21.465388535460534],[-86.90379622166398,21.466240691162625]]],[[[-86.93613711954225,21.475479619685814],[-86.93668558432648,21.473372382051082],[-86.9347602618127,21.470295842362702],[-86.9336034721722,21.47198517728424],[-86.93198270684303,21.46832018329718],[-86.92733852914267,21.46829925845094],[-86.9294666559341,21.47111013129779],[-86.93141348411558,21.471262807662356],[-86.93179743049569,21.474205820568613],[-86.93613711954225,21.475479619685814]]],[[[-86.92215815532671,21.477944897691543],[-86.92370827358951,21.47722273389951],[-86.92082483029287,21.47582419471439],[-86.92092185477117,21.473255527836955],[-86.91861537408181,21.471962548586532],[-86.91626663255397,21.4691555585444],[-86.91233083077401,21.46620520992866],[-86.9107367667907,21.467639318223007],[-86.91319834131144,21.471912853757658],[-86.91562586614896,21.47335365659012],[-86.91842746345412,21.47677251966718],[-86.92215815532671,21.477944897691543]]],[[[-86.7971441263328,21.51352526845551],[-86.79863962526474,21.520482809699445],[-86.8011358247087,21.52474797315068],[-86.80124735102783,21.527301432362606],[-86.80302460978976,21.53011306091622],[-86.80246276304172,21.524960518563603],[-86.799621734288,21.51867761359449],[-86.80176924729489,21.511003361707935],[-86.79876387025388,21.513452130417136],[-86.79807884328613,21.512094170389673],[-86.80044987175444,21.508416854651387],[-86.80149212734739,21.509013311644708],[-86.79921504772011,21.499864124402222],[-86.7988492259309,21.49072605696739],[-86.79577132274028,21.489367205301846],[-86.79878191532885,21.501411033364207],[-86.79578094366195,21.501358125304762],[-86.79378020317881,21.495955718404957],[-86.79509998645881,21.49357744384224],[-86.7945271688871,21.490555437446915],[-86.79159236146637,21.487378569289547],[-86.79089412647932,21.483883713476644],[-86.79278915584825,21.482670801832455],[-86.79174485706739,21.479455913958873],[-86.78868500560105,21.475647785539138],[-86.78827791988755,21.470378466486068],[-86.79015509027744,21.468979910402652],[-86.78941965904511,21.46352363105433],[-86.7866579054106,21.458396389375082],[-86.78422278069877,21.45799937051305],[-86.78388159894536,21.46109027788134],[-86.7861983865995,21.466827340750342],[-86.78734802921286,21.473894192148634],[-86.789946389573,21.483991695674035],[-86.79086281461616,21.491083859198795],[-86.79282791962208,21.497258756107612],[-86.7943097794547,21.49975141937398],[-86.7971441263328,21.51352526845551]]],[[[-86.97589803836576,21.534344519639717],[-86.97750779406579,21.535505683469864],[-86.97406736040188,21.53021184461869],[-86.97547069052865,21.52891293968429],[-86.9719999372532,21.52882944850927],[-86.97589803836576,21.534344519639717]]],[[[-87.00599916103488,21.56779411242934],[-87.01000655258753,21.564888750301975],[-87.00934091574709,21.559708958865485],[-87.00526684903343,21.562242667488817],[-87.00365668392703,21.562060155665563],[-87.00381702410851,21.56746047752938],[-87.00599916103488,21.56779411242934]]],[[[-87.02280619998959,21.57378118106186],[-87.0231401123977,21.57284377178263],[-87.0206970901259,21.56878207279692],[-87.01860986348214,21.570325076493816],[-87.02280619998959,21.57378118106186]]],[[[-87.03811882227137,21.585985605402698],[-87.0419223844591,21.585802066627593],[-87.04184395724582,21.583709123673145],[-87.03534815881511,21.583778684534593],[-87.03539028487802,21.581038727260932],[-87.03071940587188,21.57641643034856],[-87.02918002398644,21.575876728033734],[-87.02947980095206,21.578336622136874],[-87.02708531701836,21.57809703266969],[-87.02312261044085,21.58021835432868],[-87.02099689326928,21.576292922312064],[-87.01637876008544,21.57421349042761],[-87.01657081869871,21.57133351788218],[-87.01377016983218,21.56957378467075],[-87.0099526854824,21.569293716516484],[-87.00982452924819,21.571133679042816],[-87.00721629764735,21.568413839155653],[-87.00142839309524,21.570414406027623],[-86.99897913769416,21.56921966290878],[-86.99840611736823,21.566031987094277],[-86.99568631185463,21.563826585003994],[-86.99251305966226,21.563996107821993],[-86.99251571406143,21.565670057212344],[-86.99892607301939,21.570672643568514],[-87.00377063185545,21.57255982089987],[-87.00457808730897,21.573597774279506],[-87.00917045214271,21.575012988842786],[-87.01411637136482,21.578362452690612],[-87.0253498224555,21.583912104861838],[-87.02787321700742,21.583770150952375],[-87.0298417353261,21.58509086239326],[-87.03811882227137,21.585985605402698]]],[[[-89.15195662489174,17.94025690988184],[-89.15156274774006,17.94138623652242],[-89.14812225773187,17.942370908543637],[-89.145768634366,17.946107700875245],[-89.14497090390228,17.951071086364834],[-89.13621084622469,17.95543991763776],[-89.1351995102927,17.95990478501369],[-89.13363912594104,17.960399478349075],[-89.13372294999823,17.964197394471626],[-89.13268272782085,17.968619936965638],[-89.13396755213472,17.971218287081854],[-89.13036616037562,17.973259079321224],[-89.12421399639675,17.97527835063653],[-89.12291104664092,17.972635690163884],[-89.11932818124205,17.97151092170293],[-89.11837589209523,17.96988940277987],[-89.11546468734997,17.968996801596347],[-89.11488920141664,17.970275396076772],[-89.11159218244478,17.96976008177478],[-89.10724671315779,17.973420530100043],[-89.1071673454698,17.975702668928307],[-89.10327473298679,17.977766508164564],[-89.10132976150749,17.98133366100666],[-89.09605364516602,17.981864102683517],[-89.09480018927815,17.984404505451323],[-89.09035961076302,17.98743503404529],[-89.0801664697509,17.992722692291295],[-89.07635293106961,17.993818298404335],[-89.07046044194851,17.99257002021966],[-89.06736064256955,17.99084680335909],[-89.06348897196023,17.99102152427116],[-89.05859768589409,17.99030748645771],[-89.05553916046205,17.992578268212014],[-89.0522638766625,18.000190599358064],[-89.04916817181527,17.999233138462046],[-89.04830515479085,18.000668242492907],[-89.04480565735105,18.001564623137426],[-89.04355023837815,18.003553213513555],[-89.04172965682261,18.003431288696788],[-89.03752070707583,18.005121687164603],[-89.03695130878998,18.002634944667534],[-89.03332147810266,18.003378517479746],[-89.03143988545884,18.00222241511443],[-89.03012652840602,18.00345901512469],[-89.02814179330852,18.001880664194573],[-89.0286103172183,17.997306622600547],[-89.02535061365285,17.996287630251743],[-89.02156838246094,17.992736813122917],[-89.01751923340623,17.991775780924],[-89.01516181078574,17.989898475948507],[-89.01264367901013,17.990164639505508],[-89.00955183136068,17.98801604328031],[-89.00809093691373,17.98841705479549],[-89.0009848139332,17.984741520738623],[-89.00043768464428,17.981305450873037],[-88.99887264753193,17.98009601346166],[-89.00011780662015,17.977293185372048],[-89.00356932185383,17.97613713618233],[-89.00398874671333,17.972485533983047],[-88.99928681962768,17.97222599874351],[-88.99791573262667,17.970919471914726],[-88.99962109894983,17.967473829745472],[-88.99722885489024,17.96587072245734],[-88.99296685928738,17.959719828085724],[-88.99362986066802,17.955931189770467],[-88.99152792074608,17.954086960234804],[-88.99127698385985,17.951692376781637],[-88.98828546690288,17.948411442510746],[-88.98627864557892,17.9479831701438],[-88.98520566249886,17.95154798706443],[-88.98561605831804,17.95440354231482],[-88.9847493244718,17.95695686179738],[-88.98113184492053,17.957551350378992],[-88.98034365720713,17.955516353598966],[-88.97767714355706,17.95627806240526],[-88.97369382971215,17.955762024471255],[-88.97302716299157,17.953361221090972],[-88.96920272822672,17.952572629566475],[-88.96542738214066,17.95419454868761],[-88.95976584822625,17.9517169485988],[-88.95500655688363,17.956768883467248],[-88.95382117973429,17.954628718559547],[-88.94865060452435,17.958233790495456],[-88.94583257110645,17.95944220285071],[-88.94405665183888,17.9581328431982],[-88.94527210461979,17.95274047926381],[-88.9442612965583,17.950660338741898],[-88.9397453595646,17.94954593149862],[-88.93736642641193,17.946420815466183],[-88.9387620567959,17.94173850593569],[-88.93600662001444,17.939936644864872],[-88.93349227075782,17.943082175555503],[-88.93047570426222,17.94139043292654],[-88.93115472120269,17.939285213179573],[-88.93069977533611,17.93492753266355],[-88.93394766651323,17.932798085527054],[-88.93220404921709,17.930585062822274],[-88.92694686085338,17.929747461005377],[-88.92431782200833,17.926262214430835],[-88.92286226984032,17.9208239321988],[-88.92046158621321,17.9158111861434],[-88.9161624122878,17.916865712272056],[-88.91311730342028,17.91414175104393],[-88.91368210336867,17.910594558411844],[-88.90956587092802,17.912496262948082],[-88.90788280755294,17.915496582068556],[-88.90594302075311,17.915498608216296],[-88.90207546452592,17.909625288265772],[-88.89625338213142,17.90612065372693],[-88.89331542889812,17.907454557264032],[-88.89043573992006,17.906904952709283],[-88.88598543170968,17.907783245411338],[-88.8872772157655,17.903819366644598],[-88.88517434507389,17.900698308061123],[-88.88262119712493,17.900606962825748],[-88.88362518681896,17.899043997050796],[-88.88294372600132,17.896225481466672],[-88.88116484904782,17.896377777590658],[-88.87763312911892,17.894391062688214],[-88.87562569634423,17.89592908080016],[-88.87223625858974,17.89447373852505],[-88.8688058610681,17.894859491388615],[-88.86661252997521,17.896179700035418],[-88.86527333329065,17.89479283162666],[-88.85976616680864,17.894461346178844],[-88.85790808379124,17.899980418205814],[-88.86013821660634,17.901145474937778],[-88.8549457990672,17.904239480631418],[-88.85532373092786,17.906407077019992],[-88.85416486771686,17.910074631888506],[-88.85548239008284,17.915344005364545],[-88.85503205563248,17.919787507748936],[-88.85599175342554,17.921927390842768],[-88.85803854291169,17.922684612010983],[-88.85770287771959,17.924557947858148],[-88.85543501774515,17.926510377248917],[-88.85565525042745,17.927989474343008],[-88.85259390142,17.933060899840825],[-88.84940060998053,17.93430695506322],[-88.84740013095296,17.93700521232904],[-88.84391110071613,17.937434886514836],[-88.84426559589951,17.940269348347954],[-88.8394124074768,17.940020913374155],[-88.83371755449872,17.941928269884272],[-88.83379843013228,17.945232377991374],[-88.83084304839127,17.946077123377563],[-88.82985753465914,17.948740886427686],[-88.82589855325517,17.946682528010456],[-88.82311610220836,17.947507976552515],[-88.82129031627437,17.9493719674345],[-88.81638998399245,17.949428028111868],[-88.81399110982426,17.95296767889306],[-88.81026088125975,17.954813872540967],[-88.80483254912474,17.962259894366753],[-88.80420550169771,17.9662627118945],[-88.80001764909724,17.9682407115169],[-88.79923673648392,17.970593693225226],[-88.79615995715682,17.971373400474363],[-88.79626644541003,17.973737229500045],[-88.79288628867738,17.973884140453492],[-88.79306273915773,17.97161244972233],[-88.79084475034745,17.973630513862133],[-88.79173337202269,17.97698571091371],[-88.78877732447535,17.980967892010597],[-88.78676621256358,17.97931883040843],[-88.78445535097876,17.979860826109757],[-88.78486472084325,17.98254292905858],[-88.78204777359036,17.985528889664067],[-88.78428639332424,17.98487075998247],[-88.78594752971463,17.987598444061803],[-88.78563042194361,17.990032052860556],[-88.78770220051882,17.989641214866424],[-88.78849561972106,17.993037476529253],[-88.78441027410878,17.9958595481703],[-88.78308502455263,18.000213423954335],[-88.77771308860446,18.002481133480956],[-88.7777214403477,18.00461508239755],[-88.77305467915085,18.005241732616412],[-88.76984619638813,18.00678527439078],[-88.77299093864639,18.007476022209346],[-88.7728021863312,18.012056046114765],[-88.76802582272586,18.014117660491536],[-88.7669670693574,18.01663833618602],[-88.76912795639828,18.017274782554182],[-88.76767419091891,18.019867102876333],[-88.76800660760381,18.02456317391642],[-88.77077847682676,18.02917745385895],[-88.7655957684891,18.03477936614945],[-88.76153272546458,18.034493061334558],[-88.75724977639175,18.036021362747988],[-88.75691340866348,18.037853206482964],[-88.75422134729678,18.038108746182786],[-88.7495517128661,18.04099067753765],[-88.74742271486616,18.04020168626147],[-88.74597660767563,18.042503743161035],[-88.74293358497488,18.04414925774074],[-88.74075134272431,18.043708628795002],[-88.74042970863508,18.047481422733767],[-88.73148328799823,18.049572124053896],[-88.7247772459881,18.054464701790437],[-88.72029890968633,18.05954959150364],[-88.71668661661107,18.060526313695846],[-88.71902778905684,18.067252422772867],[-88.71914893022824,18.071981375673772],[-88.71628571641145,18.071873544585685],[-88.71415567016567,18.073291702069582],[-88.71575378854675,18.081134835966054],[-88.71867658308588,18.08084246306612],[-88.71959485657635,18.083881237769276],[-88.71764391492377,18.08570491781768],[-88.71866071965849,18.08819591852773],[-88.71573810733969,18.094228385661552],[-88.7103129988592,18.096960505994048],[-88.71207981835994,18.104122000848406],[-88.71470370215513,18.10657457149898],[-88.71637984220263,18.106354264017398],[-88.71860801086774,18.10882939114657],[-88.71375222064921,18.11424421245829],[-88.71071958926035,18.116243480298976],[-88.70952098061503,18.11847066451611],[-88.70950783534983,18.123905145669028],[-88.70607679599158,18.12888813974149],[-88.70497484737086,18.132708829322382],[-88.70197500412985,18.13635737164276],[-88.69940336590525,18.138099451856533],[-88.69848571588193,18.142452510711053],[-88.69519960097443,18.148206821527367],[-88.69292180426436,18.149466274368194],[-88.68922419243944,18.155814686979625],[-88.68633646205353,18.15589828338466],[-88.68042264864636,18.159514447784034],[-88.68008677087545,18.162520291079375],[-88.68330169469664,18.166847635899614],[-88.68478082759344,18.17823022820778],[-88.69496254970721,18.178865938746753],[-88.69732302717011,18.18022704916899],[-88.6975639221589,18.18241858484248],[-88.69433151413904,18.186869927493035],[-88.68992997656204,18.190867047730478],[-88.68668223428244,18.194695991641026],[-88.67349456128835,18.194229730392237],[-88.6698043058903,18.197551313751717],[-88.66638275274113,18.20283320899324],[-88.65746110954711,18.204176554316916],[-88.6518387949987,18.20833977642161],[-88.6483854792005,18.20956597256071],[-88.6410357513318,18.216664941848876],[-88.63699457482653,18.214055136634613],[-88.63237745532382,18.21292845498442],[-88.63232394635128,18.21573473210549],[-88.62900742089641,18.218968499110417],[-88.62580521863543,18.218678816805266],[-88.62455115422438,18.220882133052555],[-88.61886833516013,18.223744355118697],[-88.61554439864994,18.22327809870137],[-88.61386674031473,18.228513600382826],[-88.61217783843597,18.22965584359713],[-88.61246241559485,18.232088352328276],[-88.60919702431386,18.234625377680572],[-88.60841148283106,18.238267403833788],[-88.60468617119221,18.2410344474888],[-88.60403620449455,18.244737269006464],[-88.60658189897435,18.245575857810366],[-88.60435827772051,18.24761705819543],[-88.60320435322171,18.251160054764966],[-88.60546506232163,18.252161510589588],[-88.6055774961913,18.256478706693088],[-88.6039040038433,18.257770942268564],[-88.60555583319882,18.25917684770735],[-88.60646742637994,18.263777896676913],[-88.60233784598142,18.268266274961093],[-88.60238082693104,18.27101832025619],[-88.60073964782947,18.273244072672185],[-88.59997167189056,18.2768253849095],[-88.60098419610227,18.27928227461524],[-88.59861384788832,18.286500377634354],[-88.59725372681373,18.28887841824286],[-88.5987227821073,18.291237468702718],[-88.60073038175534,18.290440006234405],[-88.60583159268583,18.29174105367042],[-88.60208862231491,18.295829596866326],[-88.59865720820204,18.296838674892285],[-88.59629212145,18.300911166999867],[-88.58656287653105,18.310949060123335],[-88.58517006965934,18.313329194809683],[-88.57984415220653,18.317955852997784],[-88.57883592522899,18.320413406695764],[-88.57526619250666,18.320224701890936],[-88.57275361068798,18.323214502122823],[-88.57099770987094,18.328228132015226],[-88.5683894755532,18.331298604007827],[-88.56446604494221,18.33407799583972],[-88.56164215736982,18.33776336781318],[-88.55937629412472,18.34205923566003],[-88.5557908950451,18.34547138548669],[-88.55278439432988,18.35023114692524],[-88.54720586298464,18.35562338905538],[-88.5443847504448,18.360024451825552],[-88.5440380664831,18.362601844298695],[-88.545874513819,18.368395208286017],[-88.54878252388409,18.370357754946838],[-88.5518523490411,18.37515966276044],[-88.55016740667253,18.379393592979113],[-88.54738716251222,18.38241273239936],[-88.5451998177574,18.391207333609486],[-88.54138450314701,18.393859668670586],[-88.53582142278071,18.40140615804728],[-88.53193527540753,18.408221624483986],[-88.52955619798519,18.417993141997556],[-88.52816187112421,18.42772878122156],[-88.52794308087277,18.435360943331148],[-88.52504739705603,18.4417701544171],[-88.52262854980023,18.449684919424215],[-88.52159861316449,18.45647463736003],[-88.52058736358009,18.459250014370184],[-88.51761408924995,18.463465208650234],[-88.51380782700727,18.464884741727417],[-88.50818608369497,18.46999681351963],[-88.50471716925216,18.471717218242304],[-88.49643290912593,18.47711311217614],[-88.49397944929007,18.481074504220885],[-88.49087437335697,18.484383867395138],[-88.48716576308931,18.48492154465964],[-88.48193866878472,18.4908583612102],[-88.47830706305052,18.493909373238807],[-88.47432916529306,18.494505420986513],[-88.47311712476687,18.49058478567605],[-88.47174589519653,18.489550331947328],[-88.46763925298671,18.490100816526876],[-88.46570359085479,18.487328176343112],[-88.45839544851964,18.489602964373944],[-88.4534441266859,18.487780919776753],[-88.45274365766915,18.48303430299768],[-88.44805225144847,18.47641564414488],[-88.44633528971542,18.475768803678534],[-88.4424892791684,18.481401409208786],[-88.43897389203244,18.481565916313798],[-88.43481890154447,18.482819750474903],[-88.432446269612,18.485017519318433],[-88.42799221943733,18.48523673096446],[-88.42335600027826,18.487277427404024],[-88.42021520063423,18.490643459035027],[-88.41749936362237,18.492470044133313],[-88.41355866004466,18.49232162044484],[-88.40528626046603,18.495890745850602],[-88.40239546225052,18.496658479345683],[-88.39937881791894,18.494966076167884],[-88.39443417631344,18.489355093568633],[-88.38985464709248,18.4862784665479],[-88.38640594365114,18.481319670482776],[-88.3801329737417,18.478946352431194],[-88.37684966352356,18.479229446081945],[-88.3727292711115,18.48274255103894],[-88.36723476321606,18.48610675978199],[-88.36227658694389,18.48666087798557],[-88.35488065332254,18.484641191769413],[-88.3511177775892,18.48447368179302],[-88.34744017955774,18.485686799306166],[-88.33843874623528,18.487057395533952],[-88.3311116777162,18.488684237353937],[-88.32761935146277,18.49014525023142],[-88.31918653269622,18.488227413901313],[-88.3137111535334,18.48556839536616],[-88.3103584287008,18.48521644376052],[-88.30449967529921,18.478753116981522],[-88.28898660670575,18.475272953080946],[-88.26080080575457,18.47492288483653],[-88.25009437503724,18.473072286838658],[-88.24963363857694,18.415552451702524],[-88.06578407685134,18.41507853768144],[-88.03036589207238,18.414794293378122],[-88.0306437454168,18.321766839170095],[-88.03073888229602,18.250806897789516],[-88.03029888924561,18.160361087237675],[-87.99998874749684,18.15959307712899],[-87.9254525687208,18.160235812601172],[-87.90242566617195,18.14269224318673],[-87.86751131083719,18.188238667495455],[-87.86607748338065,18.18919959014869],[-87.860188588401,18.18983032386211],[-87.85737144739369,18.18184635032418],[-87.85457065766832,18.183089521146314],[-87.8540258530436,18.184724240011292],[-87.85029169336275,18.1840483174974],[-87.84740197885935,18.189198038361724],[-87.84559430818132,18.1894940597885],[-87.84401734534498,18.19219101065056],[-87.84391848605162,18.200372858618607],[-87.84270663202267,18.204343171588732],[-87.84183661367109,18.213314069122873],[-87.84227579657147,18.218675851129035],[-87.84182238007162,18.22913556321714],[-87.84003069457106,18.235547203484884],[-87.83923689871665,18.24188429374209],[-87.83673993257065,18.24757678433366],[-87.83538395999483,18.26245236978633],[-87.83427353492806,18.284300380315813],[-87.832233012585,18.296167910182362],[-87.8299781546877,18.30236688708942],[-87.82799310836805,18.31027585690697],[-87.82375646115293,18.321968464744316],[-87.82113668722303,18.32828845723276],[-87.81860627750132,18.332901351420276],[-87.81329341409179,18.340122465065292],[-87.80401443867089,18.34933165568441],[-87.80070200965571,18.35596161270496],[-87.79862735719246,18.364227778089344],[-87.79356495585489,18.37177763740857],[-87.78846746260865,18.38373592533395],[-87.78496528598731,18.385792696984367],[-87.78267099204055,18.390218929285936],[-87.77706704654099,18.397324185921832],[-87.77133941523317,18.401551777015527],[-87.77094172324763,18.404362510770795],[-87.76760041907403,18.41109722082996],[-87.7658090880218,18.411968346872527],[-87.76635502556081,18.413934748051645],[-87.76410789501392,18.417832484216035],[-87.76492506164749,18.421857819679587],[-87.76477068151047,18.432468309883916],[-87.76363360145422,18.437081695359666],[-87.76163543437184,18.44045030678558],[-87.76220883331979,18.445799626445876],[-87.76155756919121,18.450969798514677],[-87.76428966464738,18.45909267674284],[-87.76441003621585,18.46221331297312],[-87.76317726654611,18.46671166375654],[-87.76332755198666,18.469999053337574],[-87.76198541239467,18.474804850497947],[-87.7612374007312,18.48552964223427],[-87.76230805308705,18.494522308729813],[-87.7620569435108,18.49692772386942],[-87.75959743154425,18.50339353742936],[-87.7595025905286,18.507970407160542],[-87.7580119984346,18.51056827360219],[-87.75708422451004,18.51510290073128],[-87.75467424215185,18.51636515988855],[-87.74901886438681,18.523052914887387],[-87.7472672347327,18.526951586126245],[-87.74481256530942,18.528968011220513],[-87.74371480667963,18.53791323315596],[-87.74220539969224,18.53946265565645],[-87.74215668333454,18.541898362498728],[-87.73995458118742,18.545467499467122],[-87.74010570390601,18.54968173819043],[-87.73945290541104,18.554739772876985],[-87.7400571931222,18.562124795139482],[-87.74016926493516,18.56975727032824],[-87.73918937351527,18.5773726236813],[-87.73947060961467,18.58145082389848],[-87.73760726881352,18.593270427962523],[-87.73578189457919,18.600935487494496],[-87.73420052607395,18.60487494601017],[-87.73353989853382,18.609802661239996],[-87.73172190862391,18.617536818894905],[-87.73159664705634,18.623586282603753],[-87.72968973647266,18.626375788741484],[-87.72916736005908,18.632813200786472],[-87.72783801298374,18.64010054625419],[-87.72835526209133,18.6450079983357],[-87.72698092676819,18.649419806386106],[-87.72570960933837,18.657871345017554],[-87.72597873036375,18.664340314697824],[-87.72523049977463,18.66854382493017],[-87.72200968279856,18.676745654523586],[-87.72154270794726,18.68007721879036],[-87.71934991953498,18.684571892139957],[-87.71763090401583,18.685550445234355],[-87.71745613738585,18.690821923699275],[-87.715302015063,18.694119318440755],[-87.71516492643809,18.697480371071435],[-87.7139586393485,18.699984247450175],[-87.71410776410443,18.703070141237276],[-87.71316041031304,18.706677933338597],[-87.71068839402733,18.712383779817458],[-87.70771050700341,18.714934039936452],[-87.70460017489393,18.722117218303765],[-87.7021400004432,18.7232035219032],[-87.69939706907229,18.728119309180727],[-87.69488921856157,18.729413866307823],[-87.69228579068442,18.73315419578256],[-87.68799010331799,18.73685907540454],[-87.68486762448998,18.73791855025138],[-87.68457656044308,18.740752060288116],[-87.681686152081,18.74175705962665],[-87.67722680026856,18.74710961120195],[-87.67383375330161,18.752574170039168],[-87.67012321006945,18.762560817267627],[-87.66934921008988,18.763380602186203],[-87.66858037924288,18.771749794097218],[-87.67125226337703,18.774827389369705],[-87.67114754176856,18.77722961159583],[-87.66892144385065,18.782064069174453],[-87.66940582669275,18.78365816166962],[-87.66738825601817,18.788730279417848],[-87.66822753627525,18.795248049415875],[-87.66916540304999,18.798482891615265],[-87.66890988432232,18.802014648454076],[-87.6668869142448,18.807601027049714],[-87.66652312071113,18.810664514155462],[-87.66276706787045,18.816113825340892],[-87.66339579614345,18.824594901350906],[-87.66257893313997,18.82777453149606],[-87.66082533937015,18.83020390596829],[-87.65776608522725,18.832237008010907],[-87.65774411626433,18.83695280081662],[-87.65352022979425,18.84042418884252],[-87.6543349706186,18.842389620071685],[-87.65392358416938,18.846306617177163],[-87.64667136550526,18.855369516315875],[-87.64394664809129,18.8564279468726],[-87.6417021515652,18.861632632219653],[-87.64086210279982,18.869246461407954],[-87.642491450553,18.87617459900241],[-87.64204394993686,18.88452395385241],[-87.64050126800765,18.889928235169805],[-87.63800231874899,18.89498024298524],[-87.63363562894585,18.89836483048549],[-87.63147539923261,18.9030109225489],[-87.63126211087041,18.905682257102285],[-87.63247497145056,18.91515854654648],[-87.6322946005273,18.922496771450653],[-87.63153606275239,18.92641199063786],[-87.62951463801193,18.931292369641767],[-87.62743211367575,18.939660740633997],[-87.62555155247617,18.943304633362004],[-87.62197093220897,18.947070987601876],[-87.61784903943686,18.949490941754107],[-87.61661975065482,18.952327250578207],[-87.61427490747246,18.96243695620211],[-87.61145913198874,18.96878374216027],[-87.60887836406448,18.973281500815574],[-87.6058686477952,18.984033305638206],[-87.60533028749381,18.987667710911467],[-87.60064506596171,18.991609392101793],[-87.59866575162101,18.994319082669563],[-87.59515504520886,19.00089459811636],[-87.59002774584013,19.007439968289873],[-87.58858515936447,19.013637447226643],[-87.58543414648858,19.018069773189097],[-87.58486725837986,19.021811594037445],[-87.58100230382291,19.032335519877904],[-87.57832865948899,19.037835714526977],[-87.57351378504285,19.042968437016498],[-87.57122934290595,19.05304268418206],[-87.56683887239416,19.062639214731632],[-87.5623247282611,19.06882905500629],[-87.55656611422933,19.06884652199966],[-87.5551589189842,19.07101106984817],[-87.55116027401226,19.08388888774806],[-87.54989983086392,19.08466075939714],[-87.55006902091134,19.089464302534452],[-87.55222816567425,19.093731458940624],[-87.54984992813229,19.102855134929882],[-87.54968646031705,19.11131313405997],[-87.55008311432061,19.123314722943746],[-87.54941298777311,19.130523769919648],[-87.5473745218909,19.136391967194243],[-87.54849187148756,19.141390370883926],[-87.5483379420017,19.145505888306957],[-87.54681422006456,19.148416474509247],[-87.54172611546949,19.152467079019004],[-87.54075690504459,19.155073061228734],[-87.54069309943912,19.161252803264915],[-87.54217247575684,19.165424997126422],[-87.54218126546698,19.16811333303889],[-87.53986981743515,19.17229669564881],[-87.54039594462392,19.178631993160252],[-87.53975320520772,19.183050467852013],[-87.5379894414587,19.18473586103113],[-87.54004107627969,19.19485456159731],[-87.53962338860583,19.19982796862024],[-87.5372432945818,19.20797623644637],[-87.53543933739172,19.212664997834793],[-87.53157693869144,19.21955449796002],[-87.52915635053148,19.22152975964383],[-87.52788613050518,19.227196222356383],[-87.52612621682817,19.230273684300187],[-87.52102821516911,19.23312062367063],[-87.5202773078949,19.235523072033914],[-87.51744926660797,19.2366832327628],[-87.51481551934262,19.235298476016908],[-87.51038595156558,19.241839719182167],[-87.5064002683884,19.24482717789175],[-87.50464035664868,19.24809646386575],[-87.50039996157824,19.250556425574587],[-87.49594825368143,19.256511861874287],[-87.4884305206217,19.26243685857304],[-87.48788244770088,19.265222685520996],[-87.48547406618604,19.266134111243446],[-87.48238990302394,19.272102147637952],[-87.47810298682094,19.276289947326347],[-87.47536854402671,19.281039784974325],[-87.4711753852381,19.282778874670214],[-87.46623728710529,19.28941639632677],[-87.45806780038129,19.298366223674122],[-87.4535806786185,19.303802129734493],[-87.44612081237591,19.31156612582248],[-87.44577098431444,19.31315118629948],[-87.45249781563098,19.312558556185422],[-87.45771881036893,19.31624200282755],[-87.46116932870399,19.31992978774747],[-87.46315809460509,19.32549344823235],[-87.4664465233434,19.3254370568705],[-87.46710000000229,19.324199999948917],[-87.47040000000231,19.32579999994914],[-87.47250000000224,19.32329999994886],[-87.4752000000023,19.324099999949],[-87.47650000000232,19.326099999949065],[-87.47910000000229,19.32569999994905],[-87.47940000000233,19.323899999948935],[-87.48878998717316,19.326221347396938],[-87.49177414018465,19.32367081240892],[-87.49693268639464,19.32303275101623],[-87.49830862425233,19.321542581230403],[-87.5007127465098,19.32426418377088],[-87.50561858490966,19.322409124740773],[-87.50975489736499,19.319669438996186],[-87.51415146669626,19.31237575421511],[-87.51384132633137,19.31026436704599],[-87.51560604896457,19.308387161909025],[-87.52126487181613,19.306162825038598],[-87.52617041099205,19.30571669410449],[-87.53425802938546,19.30720067596593],[-87.53875697154177,19.306179338204913],[-87.54304845351163,19.303622311549077],[-87.54638489886764,19.302940277603682],[-87.5479956402965,19.300535171117247],[-87.55425444042294,19.296435793105445],[-87.55621097997226,19.29609080892311],[-87.55839174846744,19.293324419212183],[-87.5623103859844,19.290447824187424],[-87.56649251491405,19.28516193016003],[-87.56899748049045,19.278193338422057],[-87.57401926193819,19.274144695669463],[-87.58076747855267,19.26980308210517],[-87.58218108940201,19.267804883201393],[-87.58726467161836,19.264723618735786],[-87.59118250501785,19.260442088463265],[-87.59208880231336,19.257214970317705],[-87.59696435025404,19.251969406935302],[-87.60141576960262,19.2494048706572],[-87.6035367911939,19.2490980291077],[-87.60745384837088,19.24589004735958],[-87.60894003362716,19.243045088733027],[-87.6124442520142,19.238735955018456],[-87.6080020256511,19.24233820324332],[-87.6055838064803,19.246215322859598],[-87.59923444283567,19.249289670435417],[-87.59465368821162,19.250103370377133],[-87.59316080700978,19.25117322222036],[-87.59177100097327,19.25490525374647],[-87.58943138233985,19.254646553818702],[-87.59024087450649,19.257899439255993],[-87.58785345106696,19.259856888937975],[-87.58609617050791,19.26379859764228],[-87.5820862795639,19.267450182920697],[-87.5778227180042,19.26984499852273],[-87.58120000000218,19.262899999947194],[-87.58310000000228,19.261499999947148],[-87.58250000000226,19.25789999994703],[-87.58600000000223,19.25119999994689],[-87.5857000000023,19.24859999994669],[-87.58670000000222,19.245399999946585],[-87.5891000000023,19.246699999946713],[-87.59200000000226,19.24209999994656],[-87.59339416737635,19.236854966168266],[-87.59730000000229,19.236599999946463],[-87.59884824369999,19.237384823463174],[-87.60160000000229,19.235299999946335],[-87.60155000027754,19.23364999962314],[-87.60700000000224,19.229999999946244],[-87.60840000000223,19.227099999946063],[-87.60770000000224,19.22499999994608],[-87.60840000000223,19.222099999945897],[-87.61330000000225,19.216399999945736],[-87.6144000000022,19.21049999994557],[-87.61800000000227,19.207699999945532],[-87.61930000000228,19.202099999945233],[-87.6226000000022,19.197999999945125],[-87.62440000000225,19.191699999945058],[-87.62750000000227,19.1881999999448],[-87.62875592275418,19.189961541408252],[-87.63386316569216,19.187916131720954],[-87.6308000000023,19.185799999944834],[-87.63000000000227,19.183399999944868],[-87.63360000000222,19.181699999944726],[-87.63361460014653,19.179147921511003],[-87.63624440640984,19.177735606799217],[-87.63927738041389,19.177773069815373],[-87.64024870754355,19.18060201737336],[-87.63924499385752,19.182477737577926],[-87.64515629496833,19.18173696410389],[-87.64809088012225,19.182446711165596],[-87.65131858046851,19.180563066052287],[-87.65519128083702,19.181139484071196],[-87.65787184962716,19.18388987614742],[-87.65891066898877,19.186273294900786],[-87.65717940010472,19.190135569881306],[-87.65988721198505,19.19074613600361],[-87.66133957278788,19.188647370210788],[-87.66218939841019,19.18976288346255],[-87.6654511390181,19.187953210957517],[-87.66617137691327,19.19107094753508],[-87.67081714522226,19.18985389023925],[-87.67077728630568,19.19249433065579],[-87.6736149563406,19.19416411991409],[-87.6694144613192,19.197795971607604],[-87.67520475751184,19.199726888001692],[-87.67788867638762,19.19986446415038],[-87.67433919734589,19.206365999381603],[-87.67783643447052,19.205035284531675],[-87.68059607032149,19.2071925103927],[-87.68301380566174,19.205023283935418],[-87.68220455599192,19.208314279862236],[-87.68230928011639,19.213623928685422],[-87.67729464291585,19.216427543957593],[-87.67685035353878,19.21909623394663],[-87.67914296874193,19.218036607981162],[-87.68161715356405,19.218792509658215],[-87.68334457825728,19.22082629121843],[-87.68613650447736,19.220458812614993],[-87.684611498984,19.222796853763953],[-87.68242838878848,19.22331667167657],[-87.67729111915583,19.2225500508722],[-87.67374109962577,19.223871182336893],[-87.6735965722794,19.22795214975139],[-87.67639719016529,19.229676019437136],[-87.68177178618595,19.229467549565186],[-87.68650000000224,19.230899999946075],[-87.68685112084034,19.234752418148844],[-87.68340000000228,19.2393999999465],[-87.68005674587954,19.241310096738346],[-87.67675836318341,19.244494663610567],[-87.67440000000227,19.248899999946673],[-87.67210000000227,19.251399999946727],[-87.6692000000022,19.252899999946862],[-87.66640000000228,19.25749999994696],[-87.66120000000228,19.260699999947064],[-87.65840000000225,19.27409999994751],[-87.65790000000231,19.282099999947718],[-87.65992327161496,19.28740529015613],[-87.66490000000226,19.29079999994798],[-87.66840000000218,19.291399999948055],[-87.6692000000022,19.29499999994823],[-87.66751613259612,19.297394182088055],[-87.66376718142118,19.298710689758025],[-87.65922899937573,19.301821813565653],[-87.6562685377462,19.302797685543396],[-87.6564000000023,19.30689999994854],[-87.65500000000219,19.319799999948827],[-87.65260000000222,19.330899999949224],[-87.6501812994644,19.33934586559252],[-87.64810000000222,19.34169999994947],[-87.64530000000224,19.347899999949675],[-87.64420000000229,19.35289999994984],[-87.64190000000224,19.359499999950003],[-87.6398000000022,19.363899999950092],[-87.6373000000022,19.37109999995039],[-87.6359554752242,19.373433901603164],[-87.62970000000229,19.37669999995063],[-87.62554547597858,19.380314531883414],[-87.61891586282155,19.38181605627824],[-87.6165913210782,19.38555651836299],[-87.6129563395923,19.38770583647903],[-87.61004317558496,19.39062562190776],[-87.60732669340655,19.394908768647213],[-87.60347943398892,19.398081659619265],[-87.60060650266064,19.398132329710677],[-87.59647694822888,19.402829213796565],[-87.59374969972225,19.4042931343767],[-87.59065323768345,19.403098310818564],[-87.58871398553765,19.403741155223486],[-87.5842399474343,19.40815145470873],[-87.5792703774506,19.410682759253575],[-87.57630672700401,19.413978393262255],[-87.56555817502442,19.417154597913054],[-87.55836461821991,19.423610687666496],[-87.55386921206758,19.42701189176836],[-87.55195110429594,19.42504134834178],[-87.54843784504743,19.427427144398507],[-87.54644390755368,19.4270359061789],[-87.54390795731922,19.42861220126798],[-87.54052473589508,19.427735659251994],[-87.53553966507963,19.42818238765716],[-87.53907913417032,19.42555744322931],[-87.54188927718315,19.419910928559773],[-87.54378543024933,19.42061003155129],[-87.54713716417359,19.41928136348912],[-87.54705335493452,19.417043792755294],[-87.54301062396274,19.419624924704863],[-87.53926689303506,19.418408413684574],[-87.53915677227803,19.414089188114133],[-87.53781279549747,19.413615746092546],[-87.53948921056303,19.404756364289653],[-87.54218089184502,19.39819041234165],[-87.54423973476094,19.397434019463503],[-87.54645209795615,19.399587167043194],[-87.54898643654332,19.397669828023766],[-87.54912385664619,19.395759709599986],[-87.55293434330565,19.395589019219756],[-87.55072539366898,19.394458995410787],[-87.55335655947306,19.392859598909183],[-87.55791076083176,19.393276836832683],[-87.55885313736422,19.39550192795133],[-87.56471038342306,19.397124564258945],[-87.56456481620683,19.393890246654962],[-87.55981634735917,19.393109219343557],[-87.55830145941644,19.391681600426068],[-87.55338782563439,19.39165115061536],[-87.54951691672852,19.39361515376396],[-87.54927166302923,19.39195627091277],[-87.5435185269202,19.39174621160595],[-87.53868107461852,19.393011009162592],[-87.53261640089255,19.39282426266857],[-87.52506698222061,19.395635458187087],[-87.51959588067916,19.401243898696748],[-87.51437467332062,19.410216175316236],[-87.50698174121561,19.41866969987052],[-87.50502830290168,19.42265370227301],[-87.50087617987646,19.42682012280744],[-87.49631498425532,19.432675437219814],[-87.4913412362032,19.43698581360718],[-87.48645853042439,19.43974984651743],[-87.47953603169225,19.4419507976055],[-87.4769950488315,19.44211663757534],[-87.47026813513236,19.445518329380718],[-87.46465394653444,19.452648734493152],[-87.45888357551166,19.455573452375234],[-87.4576044263585,19.457779239113393],[-87.45276973757848,19.460996964093738],[-87.44435077472951,19.46892944979885],[-87.44020251526058,19.469030511285098],[-87.43718226472993,19.480904182551228],[-87.43553488992598,19.483659044096896],[-87.43265579731883,19.486118222285427],[-87.43186993461984,19.49042442113341],[-87.42948428121417,19.495438332647325],[-87.42860730008607,19.500814294594193],[-87.43072197545263,19.504464677934152],[-87.43144068553056,19.50880091060253],[-87.43164486346569,19.514956975115297],[-87.43102290816694,19.51800219478889],[-87.42669863635592,19.523472274968412],[-87.42806275048554,19.52795455687459],[-87.4265827042106,19.53354649401001],[-87.42465065338348,19.535211264696443],[-87.42264813952528,19.5393373723511],[-87.4245245818941,19.546118791410834],[-87.42383146962857,19.55143602486953],[-87.41994604036614,19.557997487215573],[-87.41662512777606,19.55765566127542],[-87.41650915563548,19.56037926566688],[-87.41432699005293,19.564065854584044],[-87.41424789550587,19.569206877003865],[-87.41346642512462,19.571072075355744],[-87.41360786765387,19.578309693247945],[-87.41304838057613,19.582749735147445],[-87.4118120036934,19.586218620124725],[-87.41151938608266,19.593601008205155],[-87.41037852510095,19.598409477047596],[-87.41265531569354,19.601286236410772],[-87.41643640867414,19.60086977091902],[-87.41594704195285,19.601890325392674],[-87.41897864242537,19.602960976585223],[-87.42125073656331,19.607572218597625],[-87.42300746970267,19.609082681038274],[-87.42598506574421,19.61669125823215],[-87.43108420244732,19.620945277292037],[-87.43531533937255,19.621910828567763],[-87.44165131401047,19.627837163963875],[-87.44294329411531,19.627950497773952],[-87.44871240533979,19.632071351132936],[-87.45051676849386,19.639450346746912],[-87.4524040276574,19.64075535474052],[-87.45333162646665,19.647976316477354],[-87.45499159777057,19.647637179128537],[-87.45563879220384,19.642675586813766],[-87.45725452148008,19.64302100212916],[-87.45670239529062,19.638114635277702],[-87.45550884124009,19.634768146508918],[-87.45370949872694,19.634714442395932],[-87.45334848465666,19.63758428392123],[-87.45131210073919,19.631531806214127],[-87.4490330042583,19.63037245171091],[-87.44944094198502,19.62776463514996],[-87.44659128924616,19.625995027720478],[-87.44514788239258,19.622767553414576],[-87.44651462997649,19.622123386821272],[-87.44570000000232,19.61999999995794],[-87.44740000000229,19.619899999957852],[-87.45030000000224,19.616399999957764],[-87.45250000000232,19.617599999957747],[-87.4562000000023,19.615799999957687],[-87.4592999999989,19.612099999961686],[-87.46230000000224,19.60729999995749],[-87.46030000000235,19.606299999957514],[-87.45830000000223,19.608299999957637],[-87.4562000000023,19.602799999957483],[-87.45720000000233,19.60079999995736],[-87.45320000000231,19.60209999995749],[-87.45160000000226,19.59949999995729],[-87.45170000000229,19.595999999957257],[-87.45390000000225,19.59459999995721],[-87.45860000000226,19.594799999957047],[-87.46160000000225,19.592999999957158],[-87.46460000000224,19.59319999995722],[-87.46580000000222,19.59199999995701],[-87.47050000000223,19.59019999995695],[-87.47430000000224,19.591799999957175],[-87.47620000000234,19.58889999995705],[-87.48190000000227,19.587899999956903],[-87.48392138457041,19.589000441751296],[-87.49022542123544,19.590262670249217],[-87.49260466664111,19.589672470658343],[-87.49210000000232,19.587899999956903],[-87.4949000000023,19.587299999956997],[-87.49660000000233,19.585699999956944],[-87.4981000000023,19.587499999956833],[-87.50020000000222,19.587699999957067],[-87.50110000000228,19.590499999957103],[-87.50478840580018,19.590131984108723],[-87.50420000000224,19.58849999995698],[-87.50720000000223,19.58669999995692],[-87.50280000000225,19.58239999995675],[-87.50200000000228,19.58059999995669],[-87.50870000000225,19.581799999956843],[-87.50980000000231,19.579999999956783],[-87.50990000000223,19.576399999956607],[-87.50450000000228,19.574599999956547],[-87.50280000000231,19.575699999956612],[-87.49670000000225,19.5735999999564],[-87.4924000000023,19.570699999956446],[-87.49530000000226,19.56959999995638],[-87.49730000000227,19.570599999956528],[-87.50000000000227,19.569299999956456],[-87.50250000000227,19.57039999995652],[-87.50680000000227,19.56829999995631],[-87.50720000000223,19.564699999956133],[-87.5103000000023,19.564899999956197],[-87.51500000000226,19.563099999956307],[-87.51890000000225,19.55739999995592],[-87.52170000000228,19.550599999955864],[-87.5255000000023,19.54639999995561],[-87.52490000000222,19.54149999995559],[-87.52720000000227,19.540999999955602],[-87.52790000000226,19.543099999955643],[-87.5298000000023,19.543099999955643],[-87.5313000000022,19.54509999995571],[-87.5368000000023,19.546599999955845],[-87.53470000000226,19.547799999955828],[-87.53590000000224,19.551099999955852],[-87.53380000000232,19.55199999995591],[-87.53360000000225,19.557199999956083],[-87.53150000000227,19.55769999995607],[-87.53193251637623,19.562089443775335],[-87.53399320544719,19.561089247104576],[-87.53530000000222,19.55739999995592],[-87.5381000000022,19.55769999995607],[-87.53790000000225,19.559699999956138],[-87.5408687496626,19.56094927923425],[-87.54608338772766,19.56179195462414],[-87.55041669491027,19.566099449330864],[-87.55387623109124,19.564123465592445],[-87.56653686021508,19.561810761822073],[-87.57745362488305,19.558861770697717],[-87.58250165044115,19.556452586975524],[-87.59210574611876,19.55520707366435],[-87.59660560109586,19.555362916250488],[-87.60416358245055,19.553766313169433],[-87.61023257154176,19.554054608075603],[-87.6106804034518,19.553008101029775],[-87.61451819683464,19.552767742379842],[-87.61850816099945,19.550100728319364],[-87.62465336033347,19.546966916506676],[-87.62603718198426,19.544984272159297],[-87.63285438285988,19.53826264367939],[-87.6367665118371,19.52610051415843],[-87.6407470771851,19.51965275210813],[-87.64499067093419,19.516230716428595],[-87.64361301415232,19.515579720334927],[-87.6472809452826,19.513107994203438],[-87.64793502950488,19.50985424444883],[-87.6504429451893,19.505166643310815],[-87.6560813459256,19.503810941022778],[-87.6565108911442,19.502239714516406],[-87.65924948679248,19.50019656925167],[-87.66313007798016,19.50072309254756],[-87.66323362079794,19.503196800887054],[-87.66537126827706,19.5036124624674],[-87.66950000000219,19.500999999954274],[-87.67003336708052,19.502939136905525],[-87.66871834204562,19.505849013760212],[-87.6717000000022,19.507499999954575],[-87.67012076528073,19.509903588385043],[-87.66715667142103,19.510114896223286],[-87.66352984987697,19.51319094042526],[-87.6641918487104,19.513777032139274],[-87.6690000000022,19.51259999995466],[-87.66883450051802,19.516174760657748],[-87.67283429857952,19.517251031347712],[-87.67180000000224,19.519799999954955],[-87.66852449066914,19.51995320009229],[-87.66627151563887,19.521369332363292],[-87.66414853839143,19.521119169164535],[-87.66320000000218,19.523299999954986],[-87.66430000000224,19.526499999955092],[-87.66345236967749,19.528743017743807],[-87.66585606197884,19.52981541995689],[-87.67030000000227,19.528599999955077],[-87.67300000000222,19.529999999955294],[-87.67230000000222,19.532999999955337],[-87.67638371418803,19.534687425194363],[-87.67867852163471,19.533270375098994],[-87.68302494646878,19.532927946998313],[-87.68720886085652,19.530463585203734],[-87.68694314730982,19.532912275376816],[-87.68385759064779,19.533210143426174],[-87.67856955073296,19.536377980256532],[-87.67683249990392,19.5382287287365],[-87.66935709021169,19.537550718156922],[-87.67112112406676,19.539702501687486],[-87.67375473297494,19.540434220552356],[-87.6738690200799,19.543663274166192],[-87.67136640723697,19.547043077056912],[-87.66841581543349,19.547594571481795],[-87.66711422707931,19.549316420439936],[-87.6693761613243,19.550020555276433],[-87.67223959990315,19.557421143183888],[-87.67279861341427,19.560357625643405],[-87.6757781967047,19.565148584852864],[-87.67758555948643,19.569662511385502],[-87.68378451604963,19.56738155074646],[-87.68921902610697,19.566883928115374],[-87.69208973910537,19.563279897541292],[-87.68967978127324,19.564751777594324],[-87.68666034225362,19.564954063438563],[-87.68213706034157,19.566656451048118],[-87.67640000000216,19.563799999956302],[-87.68179881167276,19.55804077228038],[-87.68622630741072,19.557547047314415],[-87.68786654126757,19.556586892865482],[-87.68966441480603,19.553241367735097],[-87.69569243634447,19.5530965532634],[-87.69799175905399,19.550634917379682],[-87.7021220995693,19.550200953173032],[-87.70419685157458,19.553821210980175],[-87.70952635428279,19.557535583428376],[-87.71241292008244,19.557683195810455],[-87.71430918206374,19.56155490172665],[-87.71446022293242,19.565369913363895],[-87.71243034920343,19.56928893820583],[-87.70807572728097,19.571150284394264],[-87.70771545712762,19.573186688343583],[-87.7198844612546,19.57771726892429],[-87.72239682245413,19.577506680106467],[-87.72372802893835,19.574989413200456],[-87.72568290954399,19.57685755437302],[-87.7286346788373,19.576495894672462],[-87.73046943334799,19.581480536175206],[-87.73487463993808,19.583370435265408],[-87.73420787281418,19.584358846913233],[-87.72991091696679,19.584153713377304],[-87.72745404101943,19.582637399061753],[-87.72689475787485,19.58515159282109],[-87.7236843012671,19.587740031400983],[-87.72780952242312,19.587055698856602],[-87.73042108820579,19.585646083685162],[-87.73632761438398,19.585526671447724],[-87.74054593061135,19.58768373574327],[-87.74066347742871,19.589355883072642],[-87.74366465545762,19.59022599491709],[-87.74590929778395,19.5952481695561],[-87.74566988180385,19.59818558460313],[-87.74870738331032,19.600138967461078],[-87.74860912778394,19.60270072750518],[-87.74605289036532,19.60555173207962],[-87.74591831718215,19.609367435979323],[-87.7422585064204,19.61271266197525],[-87.74377532980856,19.614725165658115],[-87.74324216400362,19.616720285369468],[-87.7410401377598,19.61738328777409],[-87.74238494180162,19.619111202729414],[-87.74058649365651,19.62130991935703],[-87.74221919990094,19.624594406780943],[-87.73970528849611,19.637783056835474],[-87.73963211184252,19.640930500774175],[-87.73840074302979,19.641173476319636],[-87.7416759750704,19.644460107948703],[-87.74288991346094,19.64788938632944],[-87.7422550110249,19.65227418576393],[-87.74329260424582,19.654424822882106],[-87.74302014126334,19.660880584206893],[-87.74063973139278,19.66616546810326],[-87.73511390565955,19.666314221673645],[-87.73425261154563,19.664437580054084],[-87.7310186216202,19.665181772114238],[-87.73218949220058,19.66907118076614],[-87.72731856056168,19.670355999780327],[-87.72615376832965,19.668700365659674],[-87.72210797909014,19.671219684022503],[-87.71616470591056,19.673313668685694],[-87.7136049686955,19.673118905857223],[-87.70787258462815,19.674530133921564],[-87.70631419951741,19.676023355274708],[-87.69789046968702,19.68004340599515],[-87.69025551900006,19.6814748092346],[-87.68491813579612,19.681473952598594],[-87.68181928030526,19.682168472537967],[-87.67507161141504,19.682128038981034],[-87.66895519030874,19.681018304394286],[-87.6661189383517,19.682611423742003],[-87.66332518923639,19.68173373384917],[-87.65585329241236,19.681672787090974],[-87.65110312673227,19.688601048839246],[-87.64910000000225,19.68809999995989],[-87.64970000000227,19.68489999996001],[-87.65110000000226,19.68399999995995],[-87.65120000000229,19.680799999959845],[-87.65280000000223,19.678499999959797],[-87.65080000000222,19.675599999959672],[-87.65210000000224,19.673299999959625],[-87.6539000000023,19.66519999995927],[-87.6557000000023,19.662499999959152],[-87.65710000000223,19.658099999959063],[-87.65600000000222,19.65599999995908],[-87.6597000000022,19.65289999995906],[-87.6602000000023,19.65039999995878],[-87.65758305552811,19.649672712641348],[-87.65703336647027,19.646931134563886],[-87.65991150243798,19.64630679099696],[-87.66330211637018,19.64772653394914],[-87.66287993200882,19.64429533225075],[-87.66170368323003,19.644299663002528],[-87.65898587155482,19.64140728456016],[-87.65949689802449,19.637222440565097],[-87.66381759384598,19.637206552521832],[-87.66068501457323,19.63426271327728],[-87.66490465000385,19.633042302718366],[-87.6642250809972,19.631226124030945],[-87.6665294705536,19.631240338465886],[-87.6676110018575,19.628557420936147],[-87.67755061994512,19.62913408744447],[-87.66996004494638,19.627775751110562],[-87.67244760426365,19.625674985750152],[-87.67626621315117,19.626206287246816],[-87.6763574732422,19.62506926569756],[-87.6818534359013,19.62493486594775],[-87.68832265203741,19.627888339950516],[-87.68927497966013,19.62606601400438],[-87.6814824869843,19.622344655814572],[-87.67737659909034,19.62197367888507],[-87.68132880722231,19.62004914718466],[-87.68364006110028,19.62172718758677],[-87.68346299126529,19.61958638804839],[-87.68016373728756,19.616961796337876],[-87.67933768792744,19.614577887569],[-87.6757840969774,19.614227518361588],[-87.67073238304977,19.61474568332102],[-87.66677943662921,19.616488117124675],[-87.6622413801332,19.627757987979862],[-87.65954410984801,19.63210736081669],[-87.65338815146879,19.64856420500206],[-87.65009542453282,19.6602575840044],[-87.64746018516473,19.673611680767692],[-87.64511443479131,19.68223343973915],[-87.64159344432193,19.690430118542054],[-87.63898085689732,19.694212078441126],[-87.63491387150322,19.698068478979053],[-87.63100192619652,19.704765926653863],[-87.6292920675915,19.70959752637009],[-87.6219940587236,19.71854947275608],[-87.61899772680647,19.720037521272616],[-87.61153920055739,19.731632652226494],[-87.60829734234369,19.738145465461002],[-87.60642381146312,19.73926196768025],[-87.60305264929752,19.749254655046684],[-87.59878263969671,19.757610654996768],[-87.59467198937398,19.763993887562776],[-87.59205285151245,19.766018932860277],[-87.58746091803215,19.77202879417183],[-87.5852375355114,19.77192528487342],[-87.58730041305637,19.774120803907408],[-87.58233152968847,19.78364513191508],[-87.5813164036793,19.78687109144198],[-87.57891062858698,19.79036632147819],[-87.57123692714879,19.795176693508324],[-87.56854823720539,19.79586727155072],[-87.56410938960886,19.802555071683628],[-87.55776423971793,19.80758534600443],[-87.55420578138194,19.808558306079988],[-87.55159841546049,19.80495840871845],[-87.55259760230422,19.80078460802349],[-87.54620047839148,19.795908557105236],[-87.5429403290521,19.797302771727573],[-87.54415942470712,19.79939127586539],[-87.5402000000023,19.799699999963423],[-87.53773150595208,19.797029145721808],[-87.5332514886444,19.795553665702414],[-87.52574253841522,19.796667739485315],[-87.52160126378948,19.800871358847644],[-87.51499859796223,19.799046014303826],[-87.51031200430447,19.801525351096757],[-87.50787978165931,19.804049636733453],[-87.50267767231469,19.80664316422792],[-87.4977229452777,19.806903624532083],[-87.49381257934982,19.810889513607094],[-87.49362898496861,19.814862187269625],[-87.49223272302959,19.81583986529847],[-87.49084789761338,19.824396306580752],[-87.48723291782255,19.824768062725695],[-87.48716445179684,19.827205596987255],[-87.4886088315265,19.82980109804987],[-87.48759145858452,19.833074386546116],[-87.48395210014627,19.837821098461575],[-87.48036634180801,19.83911257544736],[-87.47913160804285,19.84149200317387],[-87.47783364234374,19.849141509175126],[-87.47387665068123,19.856098921245746],[-87.47171805550903,19.857718733205502],[-87.46723708244735,19.858786068878715],[-87.46473655110827,19.861214084481503],[-87.46188169793692,19.861089868077897],[-87.45936237497591,19.85860057307508],[-87.46018377344791,19.86552078893925],[-87.45875468841058,19.870395482197182],[-87.45520816336972,19.874537288481974],[-87.45679037970689,19.879212065379477],[-87.45670437592884,19.881147022684956],[-87.45476267752395,19.884538007144045],[-87.45103903285701,19.885547745340205],[-87.44745060928904,19.8902058137038],[-87.45021189323512,19.890619431400694],[-87.45289821792113,19.888339258596716],[-87.45748741470487,19.887327247886276],[-87.45964653109792,19.888065632249493],[-87.45990189043471,19.891295357725028],[-87.46217403015874,19.891751934116826],[-87.46420884553004,19.894686567142287],[-87.46410106000098,19.905653739686443],[-87.46318518703214,19.908903264284504],[-87.45903899022352,19.91484507528702],[-87.45808480686168,19.917507345080594],[-87.46041114891818,19.915364398921042],[-87.46233604658238,19.91576860813842],[-87.46536402955428,19.92115589023581],[-87.46618010897566,19.926460680394996],[-87.46567430873142,19.929414636994295],[-87.46915339360254,19.93162865144376],[-87.4732321957274,19.937364813681086],[-87.47361014755347,19.940872229682952],[-87.47203814652954,19.943637987873785],[-87.46727260777317,19.94505590309086],[-87.46186147824,19.94201322303377],[-87.45926060325348,19.938546273380382],[-87.4577347918264,19.938289690027602],[-87.45751190826547,19.931691932121737],[-87.45590822126258,19.929889733665107],[-87.4573548604875,19.928201276727464],[-87.45945180956676,19.929029563167433],[-87.46082355296136,19.92687231625706],[-87.45475588055552,19.92203282584154],[-87.45021264827,19.921562055194556],[-87.44802273434391,19.919916518513787],[-87.44511347154071,19.91527216835584],[-87.44029285283364,19.91118687812616],[-87.43649477002134,19.910157760218624],[-87.43836562301419,19.9131363434808],[-87.43598183068269,19.91231923679271],[-87.43531367137547,19.915231932744007],[-87.43298452354873,19.909251860435347],[-87.4327794855837,19.902556781216674],[-87.43127618720274,19.89532676279896],[-87.43173807598583,19.891040352059917],[-87.43128792890599,19.88708058038702],[-87.43408237216607,19.886439608534033],[-87.43822037627376,19.88776013218586],[-87.43769143159693,19.88653389324719],[-87.43335814412177,19.886054318302456],[-87.43533740716919,19.884998354330378],[-87.43810973662477,19.880239406591045],[-87.43985289146616,19.879522872024097],[-87.43973433839255,19.877064480590718],[-87.44195441697764,19.875411848347937],[-87.44052907813148,19.872232389294197],[-87.44097531765607,19.87076205220069],[-87.43851071501592,19.866422430865555],[-87.44284197195964,19.859894326776043],[-87.44646289006857,19.85557242586799],[-87.44880833919831,19.851373973019292],[-87.448892617453,19.846442579507993],[-87.45273033591121,19.83645182757749],[-87.45996235174863,19.837404915974844],[-87.4609701274681,19.836655468415188],[-87.46528607887348,19.836904789551568],[-87.46673890905032,19.838417475408846],[-87.46685616010842,19.836146609577327],[-87.47262623692399,19.832621896083083],[-87.46945621979847,19.835348342837847],[-87.4704800399038,19.836887004994082],[-87.47249800703798,19.835836455441154],[-87.47591531433113,19.83167947037441],[-87.47529499887611,19.828860463308956],[-87.47687031151344,19.82805584839167],[-87.47413241674343,19.826908145091807],[-87.47513926091182,19.825793745790975],[-87.47397115705166,19.82234960732177],[-87.47555316328499,19.821248926006604],[-87.47762732262856,19.814188349733456],[-87.48016971927973,19.813615238760235],[-87.48006337110024,19.811421147329554],[-87.48325333394183,19.810563109662496],[-87.48090131814928,19.80806833179537],[-87.48171905101685,19.806242091736806],[-87.4810622974116,19.803483323137982],[-87.48375493891893,19.803169324696],[-87.48726491502663,19.80098911116363],[-87.48530307500317,19.79554414082571],[-87.48531325995503,19.79189257797043],[-87.48647039589332,19.78695820252176],[-87.4786356147278,19.78554008483252],[-87.47561360692964,19.7840145107063],[-87.47565613360473,19.781536984391664],[-87.47794746036743,19.780563504506915],[-87.48091741953004,19.781381347144247],[-87.47956290526338,19.77874240873706],[-87.47698987621692,19.777215650277867],[-87.47108601327227,19.779284011265588],[-87.46870024983957,19.783049694026545],[-87.47170484375226,19.789897116813393],[-87.47355427879631,19.796957621641468],[-87.47675034746914,19.802847403634814],[-87.47693196282182,19.80832048054276],[-87.47525341106984,19.81419995078636],[-87.4738850346829,19.816154597675506],[-87.47386707340314,19.818753488232858],[-87.472416145902,19.818958270642895],[-87.46966920232626,19.82621046110279],[-87.46734408699302,19.82865858324442],[-87.46197900007394,19.832066230753696],[-87.45860508973749,19.83349914444466],[-87.45518550850534,19.83334918342257],[-87.45100392374928,19.835777934969826],[-87.44647205017725,19.844186023868758],[-87.4450929586663,19.852320428729172],[-87.44367154168992,19.855352066736316],[-87.43980313999032,19.86004451229661],[-87.43824883969023,19.863619663984537],[-87.43557556200415,19.865252349722823],[-87.43691285240328,19.870699362146297],[-87.43190786888471,19.883903150777314],[-87.43033035811925,19.88494260026806],[-87.43096069051893,19.89067265182291],[-87.430803034581,19.896923362020345],[-87.43239879073809,19.905602171997828],[-87.43302041791804,19.911533850677642],[-87.43485559080983,19.916447395418515],[-87.43747615362975,19.92976003442533],[-87.44092444782501,19.93065981759719],[-87.44809180761308,19.929168963883285],[-87.45224467305297,19.93248521300609],[-87.45390022898982,19.935335881945207],[-87.45787863183841,19.944713573892784],[-87.45778626686166,19.947309153780168],[-87.46374826222944,19.954419091546356],[-87.46516169560721,19.958277263818673],[-87.46572577626233,19.963614148294198],[-87.46498586278904,19.96670690149864],[-87.46739119112488,19.971432221685518],[-87.46810406334055,19.98204116529979],[-87.46407918875457,19.985743235505197],[-87.46399653561241,19.990594254449093],[-87.46511172922283,19.99411611446959],[-87.4693001342307,19.992258796305634],[-87.47153803565891,19.99247385601467],[-87.47443494545689,19.995283185925587],[-87.47626642037187,19.99899184807009],[-87.47824854686797,20.007226158357753],[-87.47603459720938,20.02031271840349],[-87.47634657563049,20.02514227088534],[-87.47781789166919,20.036609343152747],[-87.47971308339498,20.041653666501247],[-87.47844187354684,20.053913516324087],[-87.47733621921856,20.057941528899107],[-87.47824155621691,20.069852477038182],[-87.47819284090087,20.078747534692923],[-87.4764661090233,20.086133978913267],[-87.47458748371304,20.091572795690297],[-87.47359452249071,20.100802806372087],[-87.46971457246929,20.1108200120442],[-87.46558160403407,20.12327526570442],[-87.46359377061691,20.133093240817345],[-87.46062762307304,20.14147482439705],[-87.45809987881114,20.150396508084896],[-87.45289966064234,20.164062206568644],[-87.4500408916166,20.17027722537688],[-87.44435115719705,20.180984356017632],[-87.43939346650734,20.193795376980802],[-87.4367344005118,20.198347023630618],[-87.43130933423578,20.203856259176973],[-87.43064227676837,20.2100339394961],[-87.42934193454778,20.21225089069827],[-87.42559245443715,20.221870250163704],[-87.42239769106914,20.227825594010028],[-87.4157411341236,20.234222547143986],[-87.41295572939902,20.24044832324006],[-87.40994021988882,20.244316201039794],[-87.4027318016141,20.251876871839954],[-87.40108808987821,20.252690790477345],[-87.39419933103994,20.262545416698515],[-87.3895605580758,20.26746045150952],[-87.38630958797938,20.26952265990201],[-87.38253422313727,20.267824538628872],[-87.3791149059893,20.272768564049954],[-87.37867559824292,20.274593915064656],[-87.38144185025493,20.277896090928436],[-87.38052080145474,20.28149501420762],[-87.37854170054544,20.2842907977643],[-87.376000639035,20.28611765189413],[-87.3718484775481,20.284721134649374],[-87.3699445545422,20.286766161232833],[-87.37261985256742,20.286235052692746],[-87.37467351791463,20.28856303686814],[-87.37461934644892,20.29084171399313],[-87.37311594696018,20.291095069743733],[-87.37121531773295,20.295617413465322],[-87.36754404508548,20.29595227272563],[-87.36470167919464,20.294267106865448],[-87.36065985575647,20.30092309134011],[-87.35597529476786,20.312203107542814],[-87.35610817752001,20.31550431169302],[-87.35447470721834,20.31496504836946],[-87.35392350548625,20.318839388724655],[-87.35185389184738,20.32157539301835],[-87.35422779052402,20.32555360598201],[-87.35401992991103,20.329750922862388],[-87.35116996632337,20.33277057741492],[-87.34860032978645,20.333892188541597],[-87.34883512232096,20.336338269826285],[-87.34740610812173,20.33931209209652],[-87.34468665275068,20.340261215466114],[-87.3411588098088,20.343482719440942],[-87.33904217956655,20.348352940320012],[-87.33986355256656,20.352008294042093],[-87.33704123545215,20.352660267878434],[-87.33795332707456,20.35699759354293],[-87.33551182351255,20.35644195711967],[-87.33332380244417,20.35736038153351],[-87.33139295005071,20.36152237133274],[-87.33244851241454,20.36435865472862],[-87.33162340065235,20.366781613812975],[-87.32948536083512,20.368866253041006],[-87.32864422311434,20.371922322855596],[-87.32279738540274,20.37666368331793],[-87.32419259943754,20.383715633535303],[-87.32270122151175,20.38701691329078],[-87.32029889308222,20.388454039991984],[-87.31912056123673,20.391398848572294],[-87.31294343035302,20.39617144784006],[-87.31058202170527,20.395908059188002],[-87.30827912070544,20.399678067660545],[-87.30880198154114,20.4053866888965],[-87.30314918539443,20.407889724020777],[-87.30355541183206,20.410943155532834],[-87.30174838322085,20.41115840297988],[-87.30187660261288,20.414136704080022],[-87.29878084213647,20.415402045285532],[-87.29319479258811,20.423500197917576],[-87.29138832419136,20.427075249145105],[-87.29259014458859,20.429106343957585],[-87.29056201640253,20.429089718159105],[-87.28839181668559,20.430978899142644],[-87.28906025892593,20.433376345478678],[-87.28653273072763,20.434023216998753],[-87.28387193713712,20.43824159723073],[-87.2854329190996,20.439843096818947],[-87.28511113706509,20.442100322060696],[-87.2822396274027,20.44606306587343],[-87.27631544391767,20.451502930998004],[-87.27393909132877,20.45188735394254],[-87.27013126592203,20.45552162616559],[-87.26742818892131,20.45716144774684],[-87.26028689719783,20.46595057563104],[-87.261040827496,20.466903952537507],[-87.25724211654318,20.471927754076546],[-87.25670740143448,20.473558306105588],[-87.25288308247724,20.477520739981742],[-87.25039901387441,20.478751601861518],[-87.24787557508279,20.478234764554145],[-87.24504212187395,20.479719327279156],[-87.24698499791248,20.4831408023947],[-87.2463485859866,20.484854076311706],[-87.24221443781414,20.486205197596973],[-87.23892359733236,20.489157421149002],[-87.23566954779068,20.48935189859452],[-87.23473317017499,20.4927733419118],[-87.2330244328121,20.492606985043608],[-87.23229601328427,20.496194847269805],[-87.22986402934686,20.498240774306282],[-87.2270478795636,20.49887613945151],[-87.22405944568379,20.49717799479032],[-87.21842224403298,20.50241991707503],[-87.20799127808215,20.50997891213069],[-87.20794627727003,20.510388527184546],[-87.19547796779466,20.517690117594555],[-87.19293497650563,20.521910490594962],[-87.18976878349469,20.52179609106014],[-87.18840887550385,20.523612875193578],[-87.18786150682882,20.527107279096185],[-87.1860942609415,20.52972531125272],[-87.18253015803413,20.531997057276556],[-87.17994996969827,20.532541481078056],[-87.17838969987451,20.531422193703122],[-87.17246396428101,20.533740065314362],[-87.16632980225904,20.538183274342828],[-87.16431591603202,20.54085585788556],[-87.15967607004308,20.544064318216954],[-87.15713645263736,20.54688658870822],[-87.15390675076571,20.548539182441345],[-87.15269245602025,20.551424693673596],[-87.14639686905895,20.556004842863842],[-87.1440797152705,20.56130383969895],[-87.13925375197397,20.564485763945527],[-87.13249720466177,20.565094727885594],[-87.12763267924993,20.569506637746827],[-87.12032247100302,20.57739285283475],[-87.11255705072256,20.58254631869039],[-87.10555518172885,20.588317133177497],[-87.10096528516243,20.590925798103513],[-87.09812040735017,20.594736857160285],[-87.08747719711033,20.605651906313312],[-87.08381954524532,20.61029230037383],[-87.07911461067971,20.61424164013266],[-87.0763132612019,20.619382796973355],[-87.07223483448314,20.624331074658414],[-87.06865943966676,20.627529895541613],[-87.06737911640477,20.62699129714497],[-87.06104229904622,20.634538058456315],[-87.05924658665322,20.6353319663433],[-87.0579554449098,20.63956298938473],[-87.05495473608056,20.645025114586986],[-87.05291218482506,20.64705087877394],[-87.04704366702845,20.647965586300757],[-87.04545916276226,20.651553222751602],[-87.04090301431955,20.65468062927414],[-87.03967230970596,20.65702522781345],[-87.03627048402853,20.65996112726998],[-87.03346748341926,20.660570408674687],[-87.02841445627524,20.667401503590554],[-87.02181846114888,20.67417117096835],[-87.02099751424652,20.681541807444944],[-87.01840340644083,20.69073733020582],[-87.01484420520796,20.696410513326214],[-87.01116182319993,20.7013159059714],[-87.00812250108072,20.704245743610386],[-87.00515783616862,20.705419212313927],[-87.00266184714081,20.70521737474826],[-86.99767482409777,20.71068249628081],[-86.9925876578601,20.71353337531764],[-86.9877736296068,20.71520286228815],[-86.98323054944774,20.718014360142263],[-86.97811765329948,20.722551931049566],[-86.97129748552697,20.725118481773507],[-86.96477717920209,20.728182131962512],[-86.96243872310896,20.730496928308185],[-86.96250439315207,20.7323129215971],[-86.96457116488864,20.734036410282044],[-86.9652363299594,20.738106917057962],[-86.96415872301901,20.747800362485236],[-86.96141076009224,20.74947683491314],[-86.95865094396379,20.75470867834491],[-86.95802328455864,20.75739831916144],[-86.95542877308611,20.76064933869452],[-86.9536439383063,20.760500719053823],[-86.94640656659328,20.768325407852387],[-86.94291894247107,20.778412048416953],[-86.94045322658519,20.782329217975985],[-86.93872432145633,20.78337105137598],[-86.93386393383258,20.788805976985998],[-86.92949466198053,20.796358587599002],[-86.92460037721679,20.80296738075225],[-86.92024555169922,20.808005822735367],[-86.91803491321923,20.80845737619717],[-86.91444293741489,20.81093647369761],[-86.91240242012083,20.810637721539138],[-86.91012998052105,20.81246689086305],[-86.90473524606739,20.812385927749688],[-86.90231781782882,20.815373325838266],[-86.89476074873511,20.82715810187699],[-86.88616812711734,20.835524383865447],[-86.88136516900431,20.841616162255775],[-86.87646996815886,20.84536788781287],[-86.8728770045509,20.85097709319888],[-86.8699236329175,20.8603853150492],[-86.86481630998344,20.873765076179666],[-86.86439382143698,20.87962308746495],[-86.86330396824428,20.884636430400235],[-86.85904320477096,20.89313558534468],[-86.8571883766192,20.893813556149553],[-86.85388530105911,20.89782355929492],[-86.85004889782948,20.900505717815804],[-86.84628480580545,20.905515770935153],[-86.84585388235797,20.91260617415776],[-86.84480102521587,20.918292248252726],[-86.84265152938849,20.923392273915454],[-86.84041988055844,20.9267991567786],[-86.83806439345483,20.92865502614859],[-86.83684100459902,20.945563571592004],[-86.83545191389283,20.94963128535005],[-86.83502324742034,20.9544905464889],[-86.83288493003528,20.96107861810549],[-86.82991482638243,20.96689513418903],[-86.83012332457804,20.9713581786404],[-86.828720861563,20.97959201025725],[-86.82484312127377,20.99125000050458],[-86.82194495297233,21.00128009412316],[-86.81569263959102,21.01715317299505],[-86.80980031113171,21.029186131716244],[-86.80731112454657,21.03154806132227],[-86.80089034304746,21.035459576485948],[-86.79702806979589,21.035665390105976],[-86.79106005031377,21.033785625328164],[-86.78714104740016,21.029800928395787],[-86.78282604372896,21.031858802878844],[-86.77976515921449,21.031504832423593],[-86.7775830882374,21.0363275739586],[-86.78077594415919,21.039241771649756],[-86.78149433388415,21.043767084064143],[-86.78139661096327,21.048290253490165],[-86.78012002105385,21.055383761995245],[-86.77719573530021,21.0652073179495],[-86.76970707019939,21.085834509973665],[-86.7669282175923,21.09273438339136],[-86.75854863691688,21.111492185384407],[-86.75168231279451,21.123357435467312],[-86.74469115395095,21.13338926434676],[-86.74114262790027,21.13444055861885],[-86.74100788802349,21.138299728414268],[-86.74353859197595,21.136291806726717],[-86.74699419975008,21.13705543254264],[-86.74915899740989,21.13954521767289],[-86.7519934819768,21.13964464509081],[-86.75305599425536,21.13777878592515],[-86.75598664944226,21.136735015781937],[-86.76207358014807,21.136588890251062],[-86.7690914989854,21.13941138751437],[-86.7722583691363,21.14289464787504],[-86.77708529328044,21.14534521251585],[-86.7857287083936,21.144802492142333],[-86.78810601435003,21.143475100037108],[-86.7880064281656,21.145944724923538],[-86.79527887348246,21.152150533564395],[-86.79997359205794,21.15761913528911],[-86.8030457405277,21.15993944817353],[-86.80413584892699,21.16411850564282],[-86.80324041201482,21.166882493818036],[-86.80478122989985,21.170301613077243],[-86.80688720615706,21.179451676530107],[-86.80675302780435,21.18942407015976],[-86.80492896919174,21.197303156110024],[-86.80477087132567,21.204021911018003],[-86.80238455930123,21.21116699036412],[-86.80074396105971,21.213544265173823],[-86.80150273232323,21.21700047537115],[-86.80204152384175,21.228149313289975],[-86.80126272268029,21.233246455294307],[-86.80123540653182,21.238249748836097],[-86.80249795926477,21.242150676812457],[-86.80686014452715,21.250323986355568],[-86.80733420134902,21.252850530979913],[-86.81198983888771,21.26549262615208],[-86.81485006699432,21.275994969404735],[-86.8158725941775,21.28325786820659],[-86.81508831449759,21.29017909393491],[-86.81387393297456,21.292398135551707],[-86.81270785746688,21.299428629532656],[-86.81160179025278,21.303033444765617],[-86.80832745061736,21.309855059348706],[-86.79960364301303,21.325109118102432],[-86.79829290397288,21.326186855486924],[-86.79608767607624,21.330616335466175],[-86.79156432837948,21.341366822353734],[-86.79040002881072,21.34564099748627],[-86.78970232903521,21.355748701049663],[-86.79045694191598,21.35902724943338],[-86.7905971587241,21.371153525094883],[-86.79114695458298,21.37642139633948],[-86.78972477915045,21.384605999570226],[-86.78984908674488,21.3887424558215],[-86.79370666774804,21.397599959971046],[-86.79507062467741,21.40355538194791],[-86.79485834254945,21.405196849997083],[-86.79673646512396,21.40861843396044],[-86.7993079475047,21.402374077414606],[-86.79769719396393,21.397212938096573],[-86.79628945956904,21.396019322328414],[-86.79704904146763,21.392867075268896],[-86.79542458559348,21.39163298379492],[-86.79437972283938,21.388152348353003],[-86.79587579139053,21.38919785571244],[-86.79921974591451,21.388798866230275],[-86.80124850787496,21.39280349784559],[-86.80389837789295,21.40004616037254],[-86.80399442967388,21.404905639168476],[-86.80517732056808,21.408943795269522],[-86.80983471882439,21.412905279064375],[-86.81417706310037,21.414617806038677],[-86.81530257150649,21.414006165196497],[-86.82014804425131,21.41881443172275],[-86.82360530339542,21.4198895027601],[-86.82450810400684,21.41675191795889],[-86.82685856064359,21.415686843036042],[-86.82792069198359,21.412998047663052],[-86.82648504253814,21.409706652764896],[-86.8201577837981,21.409116669168327],[-86.82261545098214,21.40562214752987],[-86.8183865818545,21.40433555813098],[-86.81577269068038,21.40081024424643],[-86.8114201579017,21.399585947072183],[-86.80999324861938,21.397460051067355],[-86.81303869163821,21.393269824770925],[-86.81224687507682,21.390640695415982],[-86.80852500661751,21.388437498527082],[-86.8046774673889,21.382983940198926],[-86.80414735076397,21.37965216698234],[-86.80614566111558,21.378053861816795],[-86.80568657973441,21.37523923883674],[-86.80049161718517,21.373901080518408],[-86.7971445892,21.370648472220466],[-86.79487403027008,21.365515629835954],[-86.79642361267281,21.363558429125987],[-86.79418875448448,21.359989922820773],[-86.79551944891904,21.358511915813153],[-86.79528406026077,21.350348115529187],[-86.79658650968054,21.347893542584302],[-86.79254354725657,21.345427546521137],[-86.79216117090084,21.342108407838623],[-86.7936529894991,21.337718440186507],[-86.796844187862,21.33070908169782],[-86.79996415169552,21.32741103114978],[-86.80505549123649,21.323831041688834],[-86.80759178873853,21.323099472858246],[-86.80877614571949,21.32141294792416],[-86.81327914469477,21.321188981185117],[-86.82016817621593,21.31687361362657],[-86.82203505923798,21.31406575798451],[-86.82228347781472,21.3053380763223],[-86.82630618063524,21.299243958663112],[-86.82744919746835,21.29632626359944],[-86.8255062177895,21.297721811000997],[-86.82437047596386,21.294006135644054],[-86.82537651653917,21.29258608323829],[-86.82464777380119,21.289504795926007],[-86.82303321508084,21.289983287182224],[-86.82230723801712,21.28735417936224],[-86.81977608461204,21.28559545699079],[-86.81949434651625,21.282919241378806],[-86.82151431622634,21.281129025119355],[-86.82317257224088,21.281673076895743],[-86.82456471938883,21.27950632577557],[-86.82789547162128,21.278829824579134],[-86.83065815506984,21.27692968813949],[-86.8310982285002,21.273044344813684],[-86.830384354035,21.268763521831374],[-86.82788237514217,21.267041098250502],[-86.83130260326698,21.261978944967836],[-86.83009380879793,21.257438404435447],[-86.83156303774132,21.25372569704558],[-86.82589063963616,21.252880429269794],[-86.823159283145,21.25144819534279],[-86.82295420665298,21.24961586583123],[-86.8202432204194,21.245770375132565],[-86.82271332718653,21.24582310773627],[-86.82265857268783,21.244029904266256],[-86.82590494711593,21.245198707984628],[-86.83151365904132,21.248511093111006],[-86.83407267895058,21.24663978924798],[-86.83696908113717,21.247483621668664],[-86.84318214426605,21.251897435436263],[-86.84849859933024,21.251870379894456],[-86.85091626419694,21.255861852230964],[-86.85184007656585,21.259553268499815],[-86.85410725894093,21.262787087193885],[-86.85369901225027,21.26685346335927],[-86.85586651715852,21.271906687124726],[-86.85345777833425,21.27632322914286],[-86.85877701155738,21.283017508866124],[-86.86142509245155,21.28722611026012],[-86.86116222093625,21.292023566360058],[-86.85879462496882,21.29404652381544],[-86.86321274943026,21.29909217870687],[-86.86427268402639,21.303872004931463],[-86.86368676697833,21.310041374587684],[-86.86413436909328,21.315043760732067],[-86.86106935771494,21.318781188487435],[-86.86180808928731,21.323057502341214],[-86.86663617317896,21.330991054903166],[-86.87155711232401,21.341027524392985],[-86.87447893149863,21.344547177364007],[-86.87455010999423,21.347676672039483],[-86.87591093244947,21.350056568196976],[-86.87561478442899,21.353221949046997],[-86.8791838734843,21.36005002758162],[-86.88011188752608,21.36505735766127],[-86.88026503208152,21.369615302306272],[-86.88310328744535,21.376498857023762],[-86.8858288595481,21.388212144779516],[-86.88457070607603,21.392037694679118],[-86.88648143768694,21.394625298624476],[-86.88700995205227,21.3980250172649],[-86.88615341786004,21.40110996932833],[-86.8882576021648,21.405865040840183],[-86.89050419562284,21.407570954109815],[-86.89233420756074,21.411346629353773],[-86.89670868244315,21.41041034946369],[-86.89898206229464,21.417824271798395],[-86.90715937835313,21.42549557078962],[-86.90842422623842,21.432124922109608],[-86.91248361619796,21.43669130151119],[-86.9141252726053,21.43565542785217],[-86.91853584535801,21.438470455694812],[-86.92011613046373,21.44284866551368],[-86.9206615203712,21.446668176059006],[-86.92309346938748,21.44782129951244],[-86.92551860539231,21.452282889864364],[-86.92599751051063,21.456152874523696],[-86.9296903861001,21.45640340960756],[-86.93298588222393,21.461806613261672],[-86.93667124915066,21.470246172793622],[-86.93924833542405,21.47257492899496],[-86.93875561279083,21.47379866769876],[-86.9420421427227,21.475103615510818],[-86.94435149220254,21.479812262673647],[-86.9483503978438,21.483543423424123],[-86.95245547488076,21.488594915612964],[-86.95250487077749,21.489954413437147],[-86.94860771008484,21.491848318383973],[-86.94757158643296,21.495246591475166],[-86.94793665681169,21.499394195233037],[-86.94954523106782,21.50199750672192],[-86.9514599555227,21.508275523252507],[-86.95231888595163,21.51468673373006],[-86.95531751518399,21.51671031068247],[-86.9558370439023,21.518695958493424],[-86.95966174272144,21.524231847256658],[-86.96737371300605,21.53426896657902],[-86.97206871380706,21.538264680323948],[-86.97513143129044,21.54321755082168],[-86.97553793200893,21.546653365465318],[-86.97732724693691,21.549007949909196],[-86.98248916458346,21.54395106044325],[-86.98409530470559,21.54711836789494],[-86.98031120955773,21.548820858040415],[-86.99139550414748,21.563541333257888],[-86.99307268648278,21.56045886373539],[-86.99017000120807,21.559275530950742],[-86.98639467778838,21.554675742668735],[-86.9851409877366,21.55104016327084],[-86.98720702796095,21.550968733578145],[-86.98982180929829,21.554080128877047],[-86.98955229248725,21.551737175995015],[-86.99087800075142,21.54989255204208],[-86.9957668265236,21.549585345629055],[-86.99730052406699,21.548770757641023],[-86.99765942373529,21.541354023358338],[-86.9968525610928,21.5423187037012],[-86.99193745042658,21.54196072874862],[-86.9900547488628,21.543281785594218],[-86.98471602062284,21.540554499319],[-86.98357457066538,21.53896470157258],[-86.98143976960671,21.53939577084992],[-86.97020446189947,21.531332808176217],[-86.96960039053533,21.529128141952242],[-86.9765170085742,21.52377294739756],[-86.97787405706305,21.518824758538017],[-86.97739026832954,21.51605019978001],[-86.97436105073552,21.512331055845152],[-86.97482719428496,21.51054241549798],[-86.98210742137292,21.51937244542694],[-86.98167745237294,21.5248719076356],[-86.98883279295194,21.525962985815738],[-86.99045969811186,21.528433673852476],[-86.99574490882867,21.532611098667417],[-86.99662510162801,21.535281345832857],[-86.99935458195324,21.535914169881835],[-87.0022622620931,21.54227777730705],[-87.00100850094657,21.54534729819568],[-87.0033026583418,21.54337579553021],[-87.00483231296113,21.54750389695306],[-87.00574505146591,21.552237223270993],[-87.0070575945876,21.55105831517716],[-87.0103051053984,21.55744331171786],[-87.01155135816396,21.556641744606907],[-87.0156409061401,21.55747932751018],[-87.01761595806613,21.559038170045767],[-87.02320581483104,21.557108779232067],[-87.02581804505422,21.559765723677856],[-87.02732977652204,21.557793917467848],[-87.02815515107466,21.56092256904509],[-87.03149965477138,21.558736104008688],[-87.03269149836979,21.56096460157687],[-87.03676547127867,21.560663476958098],[-87.03836990110864,21.563234722292805],[-87.04165458694405,21.565876973855097],[-87.04550240031722,21.562798618162788],[-87.04847804726688,21.56374231837708],[-87.05327798227086,21.567204846055915],[-87.05689537310047,21.567806158874248],[-87.06150791165885,21.569793539116347],[-87.06361412138938,21.569720555536776],[-87.06859602561207,21.571600759474563],[-87.07869726044294,21.57841932338755],[-87.07758267801108,21.58076936184932],[-87.07524972354031,21.582221104695464],[-87.07909651492514,21.58400233653532],[-87.08274995271665,21.58479520020694],[-87.08371899299772,21.588370790364422],[-87.0857471987203,21.58941369532289],[-87.09244860109942,21.589264149347798],[-87.09469149837844,21.588300596214197],[-87.09384763967677,21.583985540989204],[-87.09867630811459,21.5830088374488],[-87.10152015512767,21.5849695547019],[-87.10314256176594,21.583343366256656],[-87.10458516187128,21.578804224704584],[-87.10651454634069,21.577427483490226],[-87.10628203030984,21.574341085788205],[-87.1102031868636,21.57047541581204],[-87.11205069259057,21.570014282214288],[-87.11887606077153,21.561904779313807],[-87.12538200901213,21.557889678697506],[-87.12870933952678,21.55453733082146],[-87.1250735540591,21.55123746628925],[-87.1152342552378,21.55096147796604],[-87.11220551803433,21.54921786652875],[-87.10705823581094,21.548183287308404],[-87.10332284509394,21.545826612193764],[-87.10251295303362,21.54209986242296],[-87.10311735485243,21.540636891178167],[-87.10148468494958,21.538799960507504],[-87.10158356463012,21.535874701722435],[-87.09885669444071,21.532196255730526],[-87.10011525347011,21.52827951703307],[-87.10263605121776,21.525918957569104],[-87.1076797317931,21.524405996771748],[-87.10929211804864,21.52181001829797],[-87.10813019106394,21.519593287427824],[-87.11080418935813,21.520063336983526],[-87.11105199959775,21.514259953136957],[-87.10993947264245,21.510580596274053],[-87.10701127124247,21.507138306113575],[-87.10766565332398,21.50529783720316],[-87.10968346291173,21.50553242605872],[-87.10790694208146,21.50294088284562],[-87.10859213861306,21.498722133130855],[-87.11049161791891,21.49830367500266],[-87.10887526104841,21.49519080196916],[-87.11073856963912,21.49136793377562],[-87.10941228900413,21.490243889453836],[-87.10990017813782,21.485939385091456],[-87.11118675404714,21.48381870526731],[-87.11350679700212,21.48395868738055],[-87.11208983335649,21.479467214537635],[-87.11057651863496,21.477166614585315],[-87.11234078427265,21.476080273567447],[-87.11163129839832,21.47155138709894],[-87.11585426503956,21.468851519788245],[-87.11559949634085,21.46712852991959],[-87.12148845293183,21.469799148515733],[-87.12347470200814,21.467169245096613],[-87.12419811666689,21.464281491334816],[-87.128733549748,21.460881032310397],[-87.131758060719,21.459746340931474],[-87.13628295075358,21.459600095395103],[-87.13821327869772,21.460590384123293],[-87.1418940997932,21.46035139901511],[-87.14290426115627,21.4620490534478],[-87.14734001516769,21.462743380719587],[-87.14955226144923,21.464912446572896],[-87.15226829270654,21.463590877592992],[-87.15837517821558,21.463252992471496],[-87.16277088953751,21.45794584879303],[-87.16661073199316,21.44971339569298],[-87.17086363971436,21.448425894671118],[-87.17465722162979,21.445004534596364],[-87.1798322965085,21.443273771658994],[-87.18552927571704,21.44293728957109],[-87.18626970116236,21.440516873631395],[-87.18837452997127,21.43970677129795],[-87.19578770206596,21.4409721562576],[-87.20458961455529,21.444809907828017],[-87.21038654227891,21.443859110377105],[-87.2141175824035,21.443854380060486],[-87.22170227983736,21.438509999139058],[-87.22245407759652,21.4313275616708],[-87.22557585593387,21.43071613377242],[-87.22897591615487,21.432716129939195],[-87.22801774293623,21.430980982356402],[-87.22965579898874,21.427736657579942],[-87.22929566588647,21.424607132793597],[-87.23195882215913,21.419083291303593],[-87.23599237112711,21.41950228519204],[-87.23811338982887,21.421811149392],[-87.2380431117291,21.42443560849165],[-87.24056938819683,21.422955767999156],[-87.24171161749729,21.4257229746907],[-87.24405535545407,21.42631443365019],[-87.24606631428333,21.429838882500462],[-87.25010670600335,21.43407918419865],[-87.25340173843682,21.434886650704755],[-87.25463770237764,21.433548141554127],[-87.25791711858784,21.434911370245516],[-87.257820353824,21.4372233772566],[-87.26129938846395,21.437359526087448],[-87.26422018414536,21.43546771058942],[-87.26382210393336,21.438393552718196],[-87.2657393367893,21.43914540930689],[-87.26528113172759,21.436692737829105],[-87.26729369576452,21.43442486107034],[-87.27097606215693,21.43550409533725],[-87.27143538757582,21.438522925618827],[-87.269823687079,21.439421960262735],[-87.27375917634993,21.440972538713424],[-87.27244557390816,21.439512075533344],[-87.27212977607576,21.43234111825774],[-87.2743987347169,21.432478957766932],[-87.27788211563137,21.43497379227216],[-87.28100629914894,21.434119329924897],[-87.28463890008999,21.43548142937908],[-87.28620659295564,21.437932163156063],[-87.28807063799644,21.43722124913205],[-87.29054507353982,21.43924574399182],[-87.29342047735526,21.440042807702696],[-87.29315972754034,21.435702631696017],[-87.29567835628671,21.434613053092505],[-87.29673947996531,21.435790698021947],[-87.30026717336824,21.43507669259867],[-87.30183124910332,21.436540796897077],[-87.306068012212,21.437382364578582],[-87.30702841131915,21.438560116433734],[-87.31575669150584,21.441374727151924],[-87.31933196947688,21.43933918057064],[-87.31942786853438,21.43707431928317],[-87.32169331728892,21.43556021078183],[-87.32678125242666,21.433710315095425],[-87.32738349525488,21.432482438935722],[-87.33222356411358,21.432567268472553],[-87.3353528625313,21.434117993227403],[-87.33877709784053,21.4323654188687],[-87.34250846557632,21.432640911394003],[-87.34518578329363,21.434900079301485],[-87.34710214696992,21.435132019629805],[-87.34836902822269,21.437865865535684],[-87.35134758223057,21.439510961262215],[-87.35463461713005,21.446319307413376],[-87.35711439502728,21.44733730603855],[-87.35978521906645,21.446806014174],[-87.36938499963696,21.44877105113062],[-87.37875790122968,21.454617832807912],[-87.38713013845563,21.455400733878832],[-87.39439519390783,21.45694071821532],[-87.3973691255166,21.45655624241192],[-87.40281663669094,21.457203736154668],[-87.40998714561107,21.4609135528014],[-87.41684751636603,21.46209717177902],[-87.42144188166748,21.464067234343304],[-87.4245242543945,21.466276901173956],[-87.42881598258748,21.46815315476573],[-87.43764292931331,21.4688851664298],[-87.44469109416207,21.465044999059216],[-87.45245431046243,21.464269306164056],[-87.45713914201588,21.46274680977126],[-87.46251881830767,21.457730948839696],[-87.46952413217099,21.456626306245767],[-87.47773544391862,21.458439788532417],[-87.48546704850622,21.463512954112673],[-87.48719686045933,21.46813153601323],[-87.48686002054052,21.47299203310945],[-87.4856556891055,21.47478836471379],[-87.48598768678676,21.48365717291489],[-87.48833323204968,21.485183134461863],[-87.50308771502455,21.48602096343444],[-87.50664677828553,21.487062987900117],[-87.51640868412068,21.4884653060671],[-87.53086591031814,21.490148828790666],[-87.53491290091256,21.490222449389137],[-87.5340169052771,21.241960377251985],[-87.53320400203728,21.01595620351617],[-87.53314528031325,20.999602132447592],[-87.57834068492554,20.925736655858827],[-87.67572730258041,20.76626335653441],[-87.74425947136587,20.653787090857747],[-87.87926756058232,20.525932396409928],[-87.96273213553661,20.446715438880233],[-87.97796539411172,20.447010964735966],[-87.97837008330913,20.454294043842708],[-87.9929488298547,20.45388649417754],[-87.99296002510272,20.4179929209169],[-88.03403006595676,20.37894009483051],[-88.04753328251581,20.378818166534302],[-88.04730660491805,20.36630872636573],[-88.1364896002462,20.281371785152032],[-88.16716243858787,20.28541803958882],[-88.23270516629856,20.286998448625695],[-88.23266947279592,20.29017891122703],[-88.26463419339888,20.290342031396165],[-88.26681494693753,20.269120326883012],[-88.27296138764171,20.26993127020546],[-88.30878843372119,20.253510036926002],[-88.34156945833678,20.257582424568227],[-88.3519033719727,20.259023064029066],[-88.35660149991043,20.25831351006184],[-88.3708070199479,20.25778968137797],[-88.39540419874749,20.253543439544615],[-88.40097336841751,20.25176751200587],[-88.40912773799664,20.25209732413623],[-88.4051941326943,20.246145039505507],[-88.40289200106173,20.23948887008794],[-88.4091223986158,20.23972814204467],[-88.41511379814591,20.232970443834233],[-88.44342618128883,20.238149782202697],[-88.5199299497171,20.192328028816974],[-88.50234525113399,20.190077958320614],[-88.50762119430033,20.143391092223965],[-88.576681547514,20.148078303093712],[-88.57815046077559,20.139174272829678],[-88.587675666277,20.14046968064696],[-88.58797352198076,20.131451195444242],[-88.61270595653303,20.133125051812442],[-88.61277255377257,20.134297478641656],[-88.61638362507688,20.13446081459972],[-88.62080845762961,20.131803559779655],[-88.6209386849809,20.130431738707102],[-88.61862356953657,20.127769160905814],[-88.61917315388303,20.11717153502144],[-88.63986639490162,20.12035606200112],[-88.69060890430757,20.089856127802648],[-88.69080211043553,20.077029564328882],[-88.68489182938742,20.07741431750793],[-88.69179628627728,20.029213409371607],[-88.69475253222686,20.030035662783064],[-88.70017616178643,20.01035672596612],[-88.71252358310483,20.01229559138011],[-88.71304142443284,20.00916345156702],[-88.71843477193426,20.010321245254772],[-88.72214820079455,20.005124068786188],[-88.7237775577562,20.005499174896272],[-88.72278249627033,20.01319974783894],[-88.7265700079817,20.01476894681292],[-88.73597890692196,20.017576552633273],[-88.73581072759498,20.015987553072364],[-88.73234814535783,20.01406619863593],[-88.7362455675837,20.009661309838748],[-88.74261536088369,20.008582790648347],[-88.74247207016958,20.015087354688433],[-88.75777327495325,20.013936209491874],[-88.7576975980619,20.012191928027733],[-88.77146564433667,20.013463235848178],[-88.77118053181084,20.007670390810176],[-88.78350258673424,20.008180188257825],[-88.78441571245492,19.995239627095657],[-88.78921226339025,19.995568217158507],[-88.79047987646436,19.992133508341794],[-88.79077080359588,19.972020183328823],[-88.7980223851115,19.974930071104723],[-88.79875598828437,19.970493879190258],[-88.79837764082339,19.952523010267498],[-88.80563950779549,19.953830742208368],[-88.806040752336,19.9445686401217],[-88.8101762097096,19.94494667146921],[-88.81141816429653,19.93524220940793],[-88.80888834013382,19.934121300885465],[-88.80974486834742,19.92599094449963],[-88.81258438250592,19.925555030360727],[-88.81333318439164,19.918282817729164],[-88.81614280596625,19.91549903412198],[-88.81650328662829,19.90447352039405],[-88.82016590501269,19.905558513502342],[-88.82273400469995,19.90414367175481],[-88.8244254112733,19.904762909368685],[-88.8231524912564,19.90814914358333],[-88.82728274560134,19.910920368352436],[-88.82943671990029,19.906014600007097],[-88.82736545267522,19.90448769076022],[-88.82982472490431,19.898554441074566],[-88.82041404928509,19.890473157503664],[-88.82592633077752,19.879925582547855],[-88.83213942635331,19.881606057184797],[-88.83304300389835,19.878227115082495],[-88.85422770464203,19.878482509812955],[-88.88019153508446,19.87812487247703],[-88.87912483142571,19.862393229455165],[-88.89056856898986,19.860968611402313],[-88.89042159151427,19.858544532135568],[-88.90048801235451,19.861114021437572],[-88.89881164274323,19.8516626035738],[-88.89758543540904,19.836862535686123],[-88.89972485960448,19.833346877964914],[-88.90348110718509,19.831046235783788],[-88.90506588657092,19.82670352024371],[-88.90820975066003,19.82066109169756],[-88.90973094513271,19.8135877031242],[-88.911103973796,19.80093758477244],[-88.92029413854618,19.803973914180972],[-88.92951246600524,19.79094856112829],[-88.94543375720951,19.79194632065486],[-88.94385213597315,19.81344278149379],[-88.9580767987569,19.81046653808579],[-88.95638671787242,19.816823561308127],[-88.9744517669933,19.81810082625151],[-88.97610850838731,19.81076583810915],[-88.98443914713653,19.80520513703692],[-88.98440499142816,19.798160255841367],[-88.99946797103871,19.797994377731186],[-89.00408743710818,19.772007405157865],[-89.0251629918821,19.776709672432617],[-89.04882706699078,19.721493324570304],[-89.01695185278652,19.72638671320857],[-89.01538533089331,19.722973380223436],[-88.99474127840779,19.727439604487643],[-88.99752938408551,19.704883889625194],[-89.03052362652147,19.70883175397472],[-89.03620045390176,19.678039520037316],[-89.07603060599314,19.685432547754658],[-89.07421269929478,19.694194101961443],[-89.12339852094283,19.703424148859767],[-89.1336406063295,19.614632028283324],[-89.1083916785085,19.61233848463621],[-89.10902446232734,19.582349378628464],[-89.14952064561248,19.581249340188606],[-89.14486168688654,19.637398729114523],[-89.18920313082396,19.644005935007897],[-89.19024963740668,19.63331773969702],[-89.22286874611973,19.636656969725493],[-89.21955656808746,19.608022252343233],[-89.2348609384668,19.596911673425893],[-89.27094496390129,19.56995542319123],[-89.2965618139308,19.551174096041393],[-89.1466668511996,19.423861639332017],[-89.14696067195746,19.26199378022534],[-89.14699860828887,19.19856520215103],[-89.14695142397613,19.133156663569196],[-89.13581978364914,19.132372660714054],[-89.14712174609213,18.99504559222447],[-89.14860154800414,18.877307054817038],[-89.14557305732308,18.8087946168543],[-89.14493837870339,18.799626957518115],[-89.14438184640375,18.755918734218596],[-89.15574224997147,18.753114748283053],[-89.15300210134649,18.740976831293494],[-89.15211511602735,18.735730732574837],[-89.15131362365355,18.72402126103475],[-89.15133263848725,18.70127085249561],[-89.14962074338098,18.549610888515303],[-89.1502378158533,18.4510593929445],[-89.1254901829077,18.4506254225185],[-89.1248870391749,18.44449362839663],[-89.12406502918503,18.428970156216565],[-89.12122919740148,18.385849635893635],[-89.13821406769819,18.385543895977037],[-89.13235953705714,18.293402639542705],[-89.15167365672727,18.293562636141758],[-89.15805867635623,18.221326982976564],[-89.14287263662862,18.22416383455476],[-89.1431699333371,18.175857215481358],[-89.14306597233161,18.145819600704556],[-89.20023664163796,18.144629340606798],[-89.20245791083426,18.08327632268754],[-89.14438284967491,18.082443610870314],[-89.14475353042002,18.057699078152382],[-89.16336068614629,18.05788511998037],[-89.16300383624144,18.018517313988184],[-89.20673894043199,18.021079958855694],[-89.20731085495981,18.007445370157825],[-89.20741427753478,17.992648593483807],[-89.20713694768904,17.973362257181634],[-89.20587204440506,17.954099721065234],[-89.19057357879899,17.953758364408145],[-89.15217009805286,17.95360998189176],[-89.15195662489174,17.94025690988184]]],[[[-87.09689830962304,21.604451634610314],[-87.10386332141888,21.605504132703402],[-87.10953176197626,21.60310294069552],[-87.11164704339677,21.600328461720437],[-87.1187428009116,21.596138605655142],[-87.12183679189633,21.59340345499362],[-87.12419567952628,21.58895191232864],[-87.1293475638551,21.583045536314046],[-87.13411030048331,21.57930338819523],[-87.14712386797322,21.571359352489367],[-87.16500332835392,21.563689948773856],[-87.18811745680051,21.555403066544216],[-87.19862587309223,21.550321200185692],[-87.20877731423576,21.54677276909206],[-87.22119063850334,21.543715917043585],[-87.2281522130479,21.542588257232865],[-87.24961118361864,21.54018844710629],[-87.25717631816462,21.539921581274427],[-87.27031251160929,21.54028056225502],[-87.28092650739262,21.541485314989757],[-87.29771402660691,21.54484788913419],[-87.3080032587053,21.54812656590485],[-87.31139951404543,21.549761017351898],[-87.32071865142711,21.5555828349257],[-87.3275040151961,21.56175671945641],[-87.3325340278214,21.565623739699106],[-87.33492196110211,21.56617992423844],[-87.33916698140519,21.564334920314934],[-87.34500000773858,21.56050198814222],[-87.34819280070906,21.555692859682495],[-87.36006895413186,21.540136622592513],[-87.36882938101701,21.53178082934693],[-87.37762449795594,21.527578094543742],[-87.3846663887656,21.52287886721541],[-87.39560979505461,21.514570113566776],[-87.39673789656774,21.51249376560793],[-87.39189225052291,21.504464752689955],[-87.39031303994398,21.503092590561153],[-87.38626079469248,21.50432157334245],[-87.38530135266541,21.506319987758843],[-87.37952024739178,21.51473396243688],[-87.37891707667814,21.511372626466425],[-87.37743643383112,21.510979608676394],[-87.37528851425293,21.514675779025026],[-87.37281222023978,21.512888486819747],[-87.37627497940775,21.519793266745353],[-87.37225297330917,21.521053056149867],[-87.36459485460387,21.518837369084792],[-87.36545095989061,21.521317511814516],[-87.3607910997485,21.5223962203454],[-87.36200019132559,21.52713954632253],[-87.36394697789052,21.528694062030866],[-87.359737943406,21.528656828979365],[-87.35769450075873,21.53176165640565],[-87.35738525443082,21.533919487321896],[-87.35467958833698,21.536721980441598],[-87.35296231963872,21.53592356831075],[-87.34585527097227,21.538674887187994],[-87.34481552392634,21.540981325459654],[-87.33855224057714,21.540317001259723],[-87.33656641566074,21.54140650591478],[-87.33541804376716,21.546645797349413],[-87.33184071669774,21.548823230866446],[-87.32780568733057,21.549444548481233],[-87.32565267561779,21.548446955200177],[-87.32692993859393,21.541135815618645],[-87.323367036116,21.54161031048369],[-87.3225237094378,21.540450349995183],[-87.31917658070455,21.54029733832249],[-87.31846067640657,21.53591096526179],[-87.31524134225157,21.533996006960365],[-87.31691206943015,21.532344719803575],[-87.3176380034028,21.527685485265863],[-87.31587917287482,21.525835835931503],[-87.30922095632855,21.526332609861754],[-87.30653914293009,21.52871473674861],[-87.30220174911904,21.529288807183036],[-87.29513837066366,21.529018370772178],[-87.29065425660201,21.528042446011057],[-87.28738144541273,21.525879174316515],[-87.28723508918961,21.522389732715226],[-87.29232992590983,21.51815516874376],[-87.28979351650793,21.51650220920436],[-87.29078428266229,21.51389890697976],[-87.28984641450984,21.511123305144963],[-87.28410367957866,21.513577834508908],[-87.28006332444176,21.517251823118272],[-87.27683836736327,21.522622687084606],[-87.27334028217308,21.525363638990257],[-87.27379651369665,21.52792243524175],[-87.27028153879883,21.528143527812688],[-87.26936989701534,21.526210611277236],[-87.26513092815526,21.525462519538962],[-87.26251605017018,21.53013749639632],[-87.26125464899332,21.53004511622686],[-87.26341554565812,21.525370865412526],[-87.257058507127,21.52500333824952],[-87.24348888301688,21.525448309282012],[-87.2323420993689,21.52678525449255],[-87.21852600721581,21.529264624111477],[-87.2203865644401,21.52525183434858],[-87.21746301277045,21.526859805101253],[-87.21645207828306,21.52554007543364],[-87.21882079925524,21.523980030805944],[-87.21760634433736,21.521481049113277],[-87.21488460918533,21.52308871184613],[-87.21206533293167,21.527055472654183],[-87.20828286266476,21.527862309986915],[-87.20994502974304,21.526020190337192],[-87.20681739439209,21.526118456275185],[-87.20906125785262,21.52160350414482],[-87.21841445153302,21.518794818155413],[-87.2232070980919,21.5178610284853],[-87.22563284955021,21.516446498498283],[-87.22288573382133,21.516532568027912],[-87.21547712532771,21.519247342278675],[-87.20994225723888,21.519644595575585],[-87.20857831574313,21.520594229028177],[-87.20577953304769,21.52696142149989],[-87.2018524316747,21.531002169121393],[-87.19499481567874,21.533652431192365],[-87.18568612065621,21.54153659673551],[-87.18296253365492,21.542247307429363],[-87.1829259838791,21.544509887292065],[-87.18055354246218,21.5464539113824],[-87.17511079445569,21.549059004731248],[-87.17244468706849,21.549621053842486],[-87.16874565483124,21.5517927295449],[-87.16799237873107,21.554907397054023],[-87.16653072237887,21.556324275949294],[-87.15573478457583,21.558363461441047],[-87.15263518931079,21.556833697859304],[-87.15130613103304,21.557950140564003],[-87.15508584520398,21.559630243439983],[-87.1620421201365,21.558310271644302],[-87.16234576294687,21.559112037514183],[-87.15846224039507,21.56081426628259],[-87.15760610240847,21.562372030319295],[-87.15215617194951,21.562188372570574],[-87.1508458155107,21.563746515914147],[-87.1480692590128,21.56256949260421],[-87.14807361678083,21.566862895309782],[-87.14630417291875,21.563609022879973],[-87.14393283554966,21.563941347352966],[-87.14201393267967,21.56252757996839],[-87.13883483205984,21.56243589717758],[-87.13207683784742,21.566546075681288],[-87.12625569018098,21.57129177658021],[-87.12352504056156,21.57615152531679],[-87.12331675225852,21.581174608722904],[-87.12087894110812,21.586700318340604],[-87.12046306251,21.589187696593285],[-87.11726103398485,21.59133072362522],[-87.11880274284283,21.588809970246018],[-87.1160168487732,21.589953857604883],[-87.11364775392354,21.593824268011815],[-87.10966069528342,21.59406284047992],[-87.11146657272627,21.5986314534116],[-87.10667182851438,21.59891768684821],[-87.10531096307363,21.60156063969606],[-87.10329027281671,21.599155720334807],[-87.09885082920158,21.602413842490023],[-87.09889941660282,21.599630187877267],[-87.10152322325212,21.59844909860749],[-87.10177412757463,21.59637301757965],[-87.10010792635723,21.595477609487318],[-87.09687900225322,21.59741390928974],[-87.09490827816956,21.593923707613442],[-87.08959563279933,21.592511053744545],[-87.08848030256178,21.590225882295158],[-87.0851014444392,21.590821863441704],[-87.08461201921051,21.593523103864868],[-87.0796922171898,21.59218107087952],[-87.08004010030379,21.59453076612732],[-87.07839377057383,21.594531550050817],[-87.07824819436718,21.592370826006857],[-87.07628358904617,21.591237321303424],[-87.07484084901722,21.59391195814237],[-87.07388601275778,21.59056315572053],[-87.0699585696189,21.591672259789163],[-87.06819790825051,21.59415790430768],[-87.06321472416715,21.592427038462347],[-87.06252094956301,21.591049794410935],[-87.05919974198241,21.591672238038427],[-87.0576973198468,21.590322269056628],[-87.05818756036399,21.58843140257585],[-87.0555585886957,21.586514595546134],[-87.05204777152323,21.586401831623107],[-87.0500254909017,21.584700825236894],[-87.04783095196075,21.585970938465152],[-87.04618445221246,21.585134095114483],[-87.04640373113631,21.58732224191192],[-87.04977097702726,21.589856548470266],[-87.0546380001399,21.590855848322747],[-87.056289983039,21.592175831820725],[-87.06481613722718,21.594793823716884],[-87.06961144192877,21.595782665610386],[-87.08276094258326,21.59691043847414],[-87.08695108008567,21.598418070075184],[-87.09689830962304,21.604451634610314]]]]},"properties":{"cve_ent":"23"},"id":"inegi_refcenesta_2010.14"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.1712332862412,21.6348817675713],[-99.17403980463291,21.641025621293977],[-99.17844172952408,21.65195230156479],[-99.18035727911797,21.65516719737178],[-99.18166790029801,21.661396979438166],[-99.18817506539352,21.670005426322746],[-99.19391167451533,21.66655362278391],[-99.19829455493851,21.6650132859848],[-99.20090101002921,21.66512809172002],[-99.21079587185477,21.667542981473105],[-99.21715237867124,21.666940428761905],[-99.21842040860759,21.66299979217206],[-99.21686537995566,21.656583994344146],[-99.21673101974153,21.65336626000294],[-99.21883694086824,21.651540742953955],[-99.22067493199262,21.648077219307197],[-99.22265376815955,21.646887567735803],[-99.22295982506193,21.64251684613697],[-99.22478049323053,21.641267211611307],[-99.22592209234472,21.638262088242698],[-99.22469921379587,21.635451418779667],[-99.22512460358479,21.633286192847947],[-99.22777320483362,21.631491578312193],[-99.23188088308939,21.631346316069084],[-99.23389834310547,21.628786212150544],[-99.23740204063614,21.6252702651974],[-99.24064043574424,21.623790131263206],[-99.24224690960466,21.62066435198284],[-99.24239442741941,21.61808745235726],[-99.24247716423093,21.61664207731252],[-99.24349644957528,21.61505716753362],[-99.24710730117857,21.61325165344215],[-99.25186300156895,21.610952701768497],[-99.25533005435722,21.609913533971735],[-99.25981362499232,21.611739267907296],[-99.26405224053877,21.610907843262794],[-99.26521091283087,21.610290941391497],[-99.26612768269388,21.60980280850771],[-99.27393279866334,21.60620920963038],[-99.27940023294963,21.608222551203482],[-99.28128918370436,21.606630151527213],[-99.28036278066946,21.603273009177656],[-99.28163703985962,21.599041422000994],[-99.28238365573685,21.591000106000763],[-99.28145002347316,21.583823497451533],[-99.27868578512101,21.579883416408222],[-99.27737927360619,21.574387818140735],[-99.27402578667193,21.567797411523543],[-99.27534870534208,21.56346601933285],[-99.27932145806471,21.56014451113157],[-99.28536483352832,21.55837244981109],[-99.29046958724888,21.55823805086561],[-99.29148096382875,21.556187762128445],[-99.28929710375667,21.550361880238825],[-99.29133303728548,21.54813425529511],[-99.29509969126372,21.546213204962783],[-99.29741187326937,21.543912011230134],[-99.29843163814905,21.540387532178272],[-99.30548865214371,21.532914287135895],[-99.30742125703932,21.532034876183843],[-99.31464973054807,21.53480922947176],[-99.32006352050786,21.533499080574472],[-99.3272867847657,21.53517113388466],[-99.33313423478825,21.537875024352275],[-99.33817516555439,21.544690775467075],[-99.3408574746204,21.547207602509673],[-99.3458361290705,21.550577974740918],[-99.34986091183845,21.552357388786902],[-99.35352475484808,21.551913972570787],[-99.36020521068059,21.553436471286147],[-99.3636916543287,21.55328866320201],[-99.37060177920614,21.549953611358433],[-99.3759068468562,21.547930583775837],[-99.37667391617697,21.544692054663358],[-99.37636283043662,21.534466157195197],[-99.37858057326537,21.53074781224359],[-99.37790454873488,21.52782245328177],[-99.37167261811584,21.524373788797675],[-99.37010634305244,21.522140288501873],[-99.37045203436782,21.51907582992129],[-99.37280493926522,21.514485065658334],[-99.37197620905783,21.50710408931087],[-99.37305903763638,21.505135577392252],[-99.37437722920572,21.50329881897062],[-99.37885700223654,21.500459398939256],[-99.38403119083972,21.498844323019682],[-99.38670817457319,21.500372946091545],[-99.38727274349617,21.494056909527387],[-99.38421029380879,21.488897139185156],[-99.38349356689747,21.483291059654107],[-99.38230346361257,21.48151273124813],[-99.3883828986103,21.469562324083313],[-99.38887602752311,21.464897304850695],[-99.39025452152686,21.463780078572142],[-99.39539579711897,21.46499244301293],[-99.39787997438918,21.464162334579044],[-99.3986813228309,21.462075751830355],[-99.39607290681153,21.456022285014853],[-99.39589100846473,21.45263885836738],[-99.39810801695933,21.448865580649738],[-99.39678104402174,21.446036055536354],[-99.39848683022575,21.442750926050564],[-99.40253068216003,21.44118605811451],[-99.40152213575925,21.437776055697896],[-99.40464617037765,21.428926190477682],[-99.41551961933317,21.42913338585322],[-99.42622335181773,21.440194399626932],[-99.42738825721466,21.44211718684636],[-99.4327595503317,21.44755547409693],[-99.43570815507411,21.4498332539427],[-99.4376103300113,21.449486708969346],[-99.4469829865381,21.443603829014307],[-99.46235290402751,21.44617390702689],[-99.46912920731819,21.446755641290167],[-99.47106082282733,21.445651102974978],[-99.47357264735098,21.441104586230722],[-99.4704945857755,21.437549339712916],[-99.47077189574071,21.436617075309982],[-99.47526037008447,21.434007397043104],[-99.47842934562226,21.433967775876454],[-99.48392125782186,21.432792044597193],[-99.48488018426428,21.43157905672831],[-99.48697581503018,21.42494275626467],[-99.4879502959426,21.42247605822928],[-99.49309128603852,21.42021720044744],[-99.50131173588477,21.41854328541183],[-99.50561068159283,21.41894018914269],[-99.50887771653521,21.420514080552607],[-99.51376022710389,21.424490827257387],[-99.52430043065215,21.428833948105932],[-99.52990177193522,21.42843302684406],[-99.53459647617649,21.42963045921897],[-99.53725609398157,21.431465060441724],[-99.54252900158593,21.429327854796043],[-99.54444005592717,21.430192851193226],[-99.55102563260891,21.428159119239695],[-99.55290039908112,21.429068727453682],[-99.55659642641575,21.436608652987616],[-99.54934520360217,21.447067721020062],[-99.55569773526304,21.449780926840617],[-99.5602874664753,21.453973266420633],[-99.56435311527787,21.45366339442569],[-99.56497309992267,21.45463835628027],[-99.5653762438235,21.455204431539073],[-99.56605180034552,21.45616771095729],[-99.56938458822646,21.460801929554236],[-99.57060816573784,21.462532966181527],[-99.57318472591624,21.46627958431992],[-99.5902844486738,21.477697147336528],[-99.59198307804752,21.48626094532443],[-99.60988958219104,21.49386445856925],[-99.62580079006455,21.507301913751803],[-99.6256103114892,21.511228795505076],[-99.63039283593332,21.519777097934366],[-99.63476058842025,21.525013205873734],[-99.6378834270671,21.526865621980107],[-99.64337931752414,21.534535287867413],[-99.64492755257749,21.541520691808728],[-99.64408494673876,21.542651126387227],[-99.64972093613056,21.551466634900407],[-99.65648371413903,21.56208826061345],[-99.66106086018766,21.5685819865015],[-99.66644584822961,21.567751342812016],[-99.66834819078451,21.568280220969086],[-99.67553631846744,21.570226020427015],[-99.68577791658447,21.572014137538304],[-99.69975044937314,21.57280107184124],[-99.70553366108862,21.57073006139865],[-99.71244366091196,21.572276435836898],[-99.7136092153296,21.572531611343777],[-99.7172798350087,21.573251638799036],[-99.7213694617783,21.573944057825315],[-99.72437074667533,21.574469730783107],[-99.72744986224825,21.57500897053268],[-99.73324009560179,21.57602282443446],[-99.73329192612783,21.576031565061726],[-99.73909003764248,21.577009232885075],[-99.73994879043101,21.577154014523444],[-99.74674319559824,21.578363287026207],[-99.74764261399292,21.572667988965122],[-99.74862943003637,21.566418726637437],[-99.74884145714782,21.563166616275282],[-99.75080652897697,21.559856512886938],[-99.75171799029573,21.552393882140677],[-99.75218793859773,21.548487184713622],[-99.75233065797829,21.547300709411047],[-99.75275479959049,21.543907520194352],[-99.75144784766474,21.536907267869537],[-99.7504746209114,21.5353759119551],[-99.74920464148784,21.537265593449547],[-99.74726830653009,21.536795984345588],[-99.7464445668133,21.536359624440422],[-99.7467351406815,21.53149244411071],[-99.74824940384559,21.531073125975638],[-99.75016391482558,21.5336148262636],[-99.75180719552338,21.5339798313056],[-99.75263034634548,21.531629253645463],[-99.7509637322251,21.52952501016466],[-99.74923221887337,21.5303456021814],[-99.74862070088892,21.526959590853153],[-99.75006412405872,21.526613212588984],[-99.74929225966827,21.523173474154248],[-99.75253373456496,21.522480381292382],[-99.75500370410407,21.52078838500745],[-99.75634579178796,21.514732174475284],[-99.75861997918611,21.513428400858572],[-99.76203714183328,21.513290873899336],[-99.76691334744288,21.508588979730916],[-99.76989149136068,21.507704248383163],[-99.77582851861735,21.500112523046766],[-99.77734978407113,21.495022667737658],[-99.77407386937091,21.491784753352704],[-99.77526664857885,21.488743548377556],[-99.7728767903335,21.487103166955762],[-99.77449265038013,21.48459160833687],[-99.77460490781158,21.481633160498177],[-99.77310586639516,21.476344466008698],[-99.7768017582145,21.469787629609016],[-99.77219990637786,21.467312228924243],[-99.77325071558772,21.463092325213836],[-99.77688423349656,21.46017971915228],[-99.77430337666345,21.456278866342245],[-99.77815987666412,21.446513500717174],[-99.77616293893357,21.442522196008213],[-99.77876303068854,21.44087537757349],[-99.7803822873945,21.433771820677748],[-99.77867466583587,21.433280022713063],[-99.77970752331782,21.42991727505938],[-99.77592888760307,21.427033778239775],[-99.78043163730001,21.414772428050014],[-99.77581656730734,21.40725347999455],[-99.77217712451221,21.406731885822637],[-99.77302974520154,21.401325050160608],[-99.77559739338636,21.398064857083284],[-99.77863542668598,21.395653702885056],[-99.77983832602911,21.387000808882476],[-99.7770127278227,21.385182332027853],[-99.77545600721834,21.379112377381603],[-99.77549553349286,21.374968594804614],[-99.7809670085278,21.368518486335574],[-99.7856363816332,21.365629151852772],[-99.79210353222771,21.36021520691952],[-99.79452201090976,21.357399414592237],[-99.79213267533487,21.343906598550006],[-99.77756527760408,21.34323542370521],[-99.7843080942169,21.332517706737065],[-99.78487839679167,21.32786850571256],[-99.78779082593547,21.329621727886433],[-99.78400308895255,21.32014956640495],[-99.77993479800159,21.313028166886284],[-99.77218627221447,21.309261362292204],[-99.77229614632665,21.308862789229636],[-99.76572348387361,21.303350414874103],[-99.76533919213978,21.301434889390237],[-99.75789357520142,21.292140369223034],[-99.75242473375835,21.291783398870223],[-99.73416115774688,21.301443921144084],[-99.73425053326969,21.308280541974625],[-99.73725312300166,21.312884970740527],[-99.71891103878085,21.31391729393812],[-99.71516868374573,21.313757989584246],[-99.71349678497404,21.314770472319196],[-99.70756530898092,21.31454583287973],[-99.70140009666238,21.310541693143648],[-99.69026875701434,21.307963837323996],[-99.68558561221829,21.30830403833096],[-99.67130261500336,21.301193760138915],[-99.67801273282527,21.288813254733896],[-99.69824377828019,21.268169710789607],[-99.69907630952144,21.26669840047225],[-99.69843849089972,21.258312278333847],[-99.6987063495427,21.24075209271092],[-99.69187601692795,21.234142009771972],[-99.68785487945223,21.225780281242464],[-99.69554888406714,21.2282279494583],[-99.7384834594605,21.235817763256023],[-99.74240520137687,21.229901524908996],[-99.74459346603027,21.228734984145262],[-99.74649637637316,21.225294757697895],[-99.74999380618584,21.22382992863487],[-99.75067074415387,21.222244506917264],[-99.75389224347083,21.220685477566292],[-99.75810563703226,21.216402964545978],[-99.76212861246876,21.215463654695327],[-99.76845071579561,21.21167160802611],[-99.76995775878822,21.209464036443308],[-99.77324564100707,21.20706556411892],[-99.77583353205722,21.207282320796594],[-99.77539483819066,21.20490462768646],[-99.77696962572685,21.195938514749002],[-99.80005189722795,21.17987789740897],[-99.8080214372871,21.176253452144863],[-99.80743346767207,21.17530851003437],[-99.81506356441264,21.16700893563842],[-99.81801957462989,21.16686614063309],[-99.81722950630149,21.165629483441364],[-99.82914529792265,21.157934869944427],[-99.83125855109472,21.157322722535355],[-99.83662436455444,21.157530332792362],[-99.84170704700585,21.158891794304623],[-99.84926844557407,21.16420584819116],[-99.85972881573815,21.165341852111226],[-99.86046034281571,21.166046957696892],[-99.86339664704934,21.166239174289046],[-99.86603987081963,21.16776931873784],[-99.87164676579681,21.169712616142988],[-99.87551033022015,21.16873926683644],[-99.87932767151051,21.168037914931347],[-99.88342027135263,21.16862616628083],[-99.88528818415972,21.170190401513878],[-99.88825095984333,21.169595020294935],[-99.88860518455351,21.173787166419572],[-99.89521443424792,21.177579238583746],[-99.89934718114176,21.183897293494624],[-99.92199296187766,21.1905181953083],[-99.92951627187682,21.190745820998643],[-99.93148441879379,21.191919021114586],[-99.9409153597993,21.19376508924512],[-99.94321813433254,21.19525637594529],[-99.94455360324241,21.199870141493193],[-99.94472905965671,21.208827250504157],[-99.94630825961161,21.210296165529655],[-99.94902653644243,21.210124867046375],[-99.95471412484545,21.205671813893275],[-99.95509973333918,21.20705877154569],[-99.947864834244,21.212374933732747],[-99.97858259773193,21.21597291345438],[-99.98636804617246,21.218310032062732],[-100.01108573377422,21.18946433953903],[-100.00122184209681,21.18852407423094],[-99.99641765387463,21.1825949031101],[-99.99878847483586,21.180500191505416],[-100.00410744886625,21.17366269697999],[-100.00238743766062,21.168696579612174],[-100.00590868672111,21.161108244989975],[-100.00333125207294,21.15953502733055],[-100.00327892850032,21.157164228414956],[-100.00685203638665,21.15724859964871],[-100.00874085873403,21.151109730699147],[-100.0083723405998,21.14837494088306],[-100.0101514763,21.145320564401743],[-100.0134191380111,21.136757312532495],[-100.01385503103069,21.13170358646505],[-100.0157406876184,21.129530654979817],[-100.01570116946846,21.126301387185833],[-100.01677119547423,21.123027093526503],[-100.01996781627713,21.118809723655374],[-100.02077812660559,21.113831936570477],[-100.02450315438841,21.109463010791103],[-100.02469013383103,21.10646307941829],[-100.02754307071154,21.100253018523063],[-100.02187762851304,21.100084447127642],[-100.02191677823782,21.093003162132845],[-100.02360621454977,21.089209228700668],[-100.02375815008003,21.08522968061851],[-100.02473396795989,21.082838578759436],[-100.02331786528634,21.07804750761835],[-100.02629880387599,21.07404507430823],[-100.0254941191053,21.071270422084865],[-100.02031346182059,21.064001972133667],[-100.02168258662283,21.060905916705963],[-100.02007413545596,21.059795639439017],[-100.01976521038313,21.055129530358784],[-100.01574096750392,21.051648215213618],[-100.00665758364232,21.04639446809807],[-100.00881061668838,21.04371242295548],[-100.0108696081204,21.043050784822185],[-100.0111146003278,21.03684189260423],[-100.0121997439511,21.035960307676703],[-100.0110695624312,21.028504632609156],[-100.01656261024107,21.02346304337152],[-100.0186253970059,21.017582538788133],[-100.02256316205694,21.014621200897295],[-100.02906237883957,21.015063679647824],[-100.04063252022684,21.02221234754728],[-100.04842852984302,21.024961419075908],[-100.04848957792854,21.0231930238636],[-100.05402257507495,21.026442905272347],[-100.05448012394334,21.027785076409828],[-100.06122841922263,21.028521487865703],[-100.06425595309253,21.027149404266765],[-100.06894972548395,21.022813406566],[-100.06864971635423,21.0201766720636],[-100.06563616896125,21.018381232400202],[-100.06428664683341,21.015618882709703],[-100.06454054248644,21.013556351666125],[-100.06239513687996,21.010662277742483],[-100.06242186498451,21.00788072067411],[-100.06074631565633,21.005815789229246],[-100.06425637748089,21.000444425980447],[-100.07142176137177,20.99233015161036],[-100.07281149801253,20.993201431541593],[-100.0739329298512,20.98973939149795],[-100.07318067921682,20.987677777653346],[-100.06984424057009,20.983802168651437],[-100.07643029376305,20.97806335564036],[-100.07804317385154,20.97265747014535],[-100.07623148725543,20.97140701157025],[-100.06981365170515,20.96478557625983],[-100.06904086941813,20.96290643110177],[-100.06880277334744,20.957912010027883],[-100.08073849587697,20.94985751256229],[-100.07792929728168,20.948033885504003],[-100.07456039992906,20.948122990520346],[-100.07206091441753,20.944778689592795],[-100.06689968727312,20.942200932083836],[-100.06417193990484,20.936288595798032],[-100.09273789646329,20.93168123857413],[-100.11782777823367,20.922155115934288],[-100.12432564396255,20.92747330799466],[-100.12695979772246,20.928067514503198],[-100.12879455875066,20.93441609320098],[-100.1344215899797,20.934813617047382],[-100.13531185123577,20.93726383050881],[-100.1783700796529,20.938665073343657],[-100.18125733306539,20.933406042401373],[-100.18152760170915,20.93040166518398],[-100.18448380021488,20.931411273632534],[-100.18420437452284,20.933177050997188],[-100.18781112871835,20.93254755367593],[-100.2008877768248,20.937012405977157],[-100.21359236764454,20.94407393001569],[-100.23932628385887,20.960797707432675],[-100.25052263141231,20.965198675907118],[-100.25422393574974,20.967482105978263],[-100.25930255912897,20.96817309169012],[-100.2636233000585,20.970998839619654],[-100.26913305001875,20.967212463550766],[-100.27064109434042,20.96385137671274],[-100.27206109025559,20.963029467988406],[-100.26786904708166,20.957437662427765],[-100.26334175254595,20.955015595283783],[-100.26179669642505,20.953373079901723],[-100.26337059005846,20.94928031158298],[-100.2626539870763,20.933487547914467],[-100.26554323517888,20.929247382148958],[-100.29920917249063,20.931327756051587],[-100.30419502044134,20.928319931415274],[-100.30537822084398,20.92382683192426],[-100.3036908813682,20.91954792623335],[-100.29839429988107,20.915291722891936],[-100.30018778182216,20.91386493620331],[-100.31401638348115,20.90477491138421],[-100.33358537136593,20.890728370072054],[-100.35478918017913,20.891137413771958],[-100.3559570233885,20.890457531372363],[-100.36312191285384,20.890516771767693],[-100.362741137598,20.89140124589329],[-100.38132375686251,20.890483681789647],[-100.3944153091793,20.892166957297434],[-100.40845491711303,20.888241287964547],[-100.41279144711416,20.887806995624658],[-100.42452512125726,20.891539991347145],[-100.43266396128041,20.893279988073402],[-100.4539560128216,20.90017938490132],[-100.45312889662517,20.919584205793683],[-100.45317647961554,20.92319905028603],[-100.46098532734663,20.923317497134292],[-100.46591904789437,20.925342046957894],[-100.46654973874308,20.9268775458292],[-100.47223286994034,20.92844606177033],[-100.47002869730358,20.90770199972394],[-100.4699582980839,20.907039352705624],[-100.47945302887928,20.909061272779297],[-100.48536676979603,20.908799715622024],[-100.48499610146945,20.900784720199283],[-100.48820615869124,20.89968992203444],[-100.49158726867728,20.896189877763163],[-100.49228916167539,20.892615633141986],[-100.49573568431265,20.886270301771788],[-100.50273628459263,20.875520500681773],[-100.50902352366182,20.870706706265196],[-100.50728661816072,20.86953822286398],[-100.50250011459053,20.85521739148612],[-100.50204862243675,20.852920462713087],[-100.51719380451357,20.847046192184223],[-100.52495754160793,20.84498479900259],[-100.52547283388554,20.843975369558734],[-100.53184905015058,20.840224582686858],[-100.5403658156772,20.83656287438356],[-100.55933222220801,20.829914671333768],[-100.56628310408291,20.820810398928472],[-100.56901123782245,20.82142689982078],[-100.57113072778372,20.8196304021871],[-100.57545604082384,20.81842011766844],[-100.57758894137254,20.816669753298186],[-100.57668849790286,20.81358960313412],[-100.57781484383293,20.80844452303012],[-100.57393707842431,20.805280802781112],[-100.57336444243919,20.803674174634352],[-100.57070538534185,20.805863340514748],[-100.55832829435968,20.80457115422132],[-100.55904309443952,20.799777293567786],[-100.56407730520954,20.774696869321758],[-100.56289449134181,20.76854706142791],[-100.5594679731409,20.76259131151454],[-100.55418350732077,20.75618408803672],[-100.54812107394429,20.74956087262882],[-100.54891461711611,20.73638341660734],[-100.55580573290575,20.734682315993552],[-100.5688234357392,20.732816238693545],[-100.58292417563734,20.729522453482048],[-100.58554632357755,20.728129647262904],[-100.58580429466173,20.726058619882565],[-100.58828481206524,20.722410456787543],[-100.59583316976983,20.71815973732049],[-100.59653571430613,20.717260918903264],[-100.59321022958858,20.715134252202233],[-100.59281627224692,20.71315850439629],[-100.59018562399308,20.71069372426433],[-100.58840188216294,20.70565662643429],[-100.58128445706927,20.69293263530085],[-100.5807759263609,20.68977941932792],[-100.58233510768156,20.688475416349036],[-100.58415185511814,20.682923614708784],[-100.58360348893228,20.678424260369013],[-100.58230659655516,20.676821146030477],[-100.5739592991606,20.672066053783794],[-100.569750323464,20.671349024296433],[-100.56193062366867,20.671427780621116],[-100.55532451815901,20.64907915628345],[-100.55165319410793,20.63451334541986],[-100.55112518004375,20.633766040640012],[-100.53978651884552,20.637203732130104],[-100.5370295744213,20.6385259076975],[-100.52953527922978,20.638667264617084],[-100.52709424135003,20.635506277508625],[-100.52596904642166,20.630881988524493],[-100.52706934906803,20.629819519191926],[-100.52466391268575,20.62868518635821],[-100.52148632954481,20.624864293182327],[-100.51836174715794,20.62580923439026],[-100.51625003577828,20.622567838882844],[-100.51427941686171,20.623845878145744],[-100.49945025091085,20.61714225931985],[-100.49617743716374,20.616193739341156],[-100.49425467947992,20.6105102132791],[-100.49568028921641,20.609165216757162],[-100.49399975163362,20.607034663397656],[-100.49350627223788,20.60396985051733],[-100.49117893123974,20.598761665713198],[-100.4896880758439,20.598171685441287],[-100.48877492888352,20.59404908777077],[-100.48639965048051,20.58831998850036],[-100.48753900229428,20.587946900386726],[-100.4846403753541,20.580111803932084],[-100.48221602803875,20.57635630333533],[-100.48211180672922,20.571448476182525],[-100.48389870311769,20.57144040771766],[-100.48500338119948,20.553804209047144],[-100.5047654452552,20.555033403462915],[-100.50509562520887,20.550194729382497],[-100.50742665278807,20.528822031528307],[-100.50852060688624,20.5262092643772],[-100.50774853405409,20.51852398041882],[-100.50315964135456,20.51966540083623],[-100.50169871893706,20.51714981635166],[-100.50111136876933,20.51259573823762],[-100.50726474516222,20.508748508658755],[-100.50976128325294,20.506527389611847],[-100.49735716821715,20.50483040978372],[-100.5003121445825,20.50022012423858],[-100.49815495007016,20.495736951996093],[-100.49766366347012,20.49137309238216],[-100.49238213085454,20.490415544531174],[-100.49250285956998,20.481411418765504],[-100.49087783174087,20.47544739821342],[-100.48838368241178,20.473312680447464],[-100.48864969009236,20.471115999642564],[-100.48987437983106,20.46154630916908],[-100.48925155543367,20.456454842934136],[-100.48990049940556,20.453214161615676],[-100.48946000018088,20.44498286808482],[-100.48949800253047,20.43139410368235],[-100.48847680157456,20.425833307816276],[-100.4806169061032,20.419110738249856],[-100.47826992187038,20.416286369919362],[-100.47593160413766,20.4033141466179],[-100.47558527067179,20.392077632597022],[-100.47618106357896,20.38961079601171],[-100.46971468902802,20.38700635373243],[-100.45675156716987,20.38630518837533],[-100.44436237629196,20.387172446230068],[-100.43910260477406,20.38570882402189],[-100.42694847381455,20.381404490331022],[-100.42120386633167,20.378681332459337],[-100.41537034105124,20.37810219273581],[-100.40999519206889,20.37600640850269],[-100.40954335602635,20.370691892555556],[-100.40497130528087,20.367053024415952],[-100.40463646381255,20.36455885430854],[-100.40301064355901,20.36337631608245],[-100.40327326891605,20.360750586762947],[-100.40066729137874,20.358626997949727],[-100.39891969579622,20.35510841192115],[-100.39401649390624,20.350231917568806],[-100.39186653517572,20.33739658652547],[-100.39078749190651,20.33641316541383],[-100.39236378179578,20.323210381814988],[-100.3920229769185,20.31432746732247],[-100.38604966686063,20.306493255985913],[-100.37918595775972,20.301931883063503],[-100.36982941436503,20.302634251674817],[-100.36300099623173,20.296383236852762],[-100.35743923218331,20.292199710524358],[-100.35065647315287,20.288413098576655],[-100.34835095695883,20.29269194452229],[-100.34828687212149,20.29282382848328],[-100.34583311323826,20.298000213690898],[-100.34110855583998,20.296450356924026],[-100.33972429203027,20.295998528684834],[-100.32856825179852,20.29234030637366],[-100.3155658541134,20.288110753928663],[-100.30750579094689,20.28557508265999],[-100.30748454279149,20.28546938697042],[-100.30898748035071,20.28328726429106],[-100.30957627816002,20.282478013577872],[-100.29773334922237,20.278545717004363],[-100.2802239425908,20.272802424085057],[-100.2743468214083,20.271115655306573],[-100.27091153859789,20.270194083935166],[-100.27055772459153,20.27009904989518],[-100.26991841324798,20.26997757601282],[-100.26947143388287,20.269965664339395],[-100.26906924702752,20.269814695681532],[-100.26780581519671,20.269444436727213],[-100.2668028092645,20.269186621785707],[-100.26672350810378,20.269163019431517],[-100.26610343194199,20.26903391141019],[-100.26328867916436,20.268248627231344],[-100.26198622973436,20.267879155944172],[-100.259909587386,20.26701530755298],[-100.25972654634603,20.2668171181391],[-100.25966016866761,20.26677446337851],[-100.25940370344858,20.266509808682315],[-100.25899070614554,20.266079330672937],[-100.25622313854956,20.26306848877772],[-100.25346696956444,20.260930344878602],[-100.25290266794991,20.259696908101375],[-100.25015095527044,20.256516519288084],[-100.24512634409842,20.250364435090603],[-100.23852020586605,20.245781433335083],[-100.23703833477674,20.244788266848275],[-100.23141702015869,20.242071620374475],[-100.22749250855964,20.239826652683973],[-100.22430009444639,20.23787713272941],[-100.22162485934768,20.234578314745306],[-100.2182159347393,20.23380726902576],[-100.21173109816937,20.230842114274708],[-100.20758119284818,20.228880353342333],[-100.20368317192464,20.226346110847885],[-100.19645484520197,20.222276931850217],[-100.18809542724216,20.21463196189893],[-100.1845366537317,20.211649338002758],[-100.18291911535903,20.20826942371673],[-100.18114401952914,20.208800541116773],[-100.18238512881544,20.198927673130868],[-100.18304943353343,20.195430203613114],[-100.18314981139082,20.194910179261342],[-100.18348927514143,20.193234194097727],[-100.18419347737995,20.189423069293184],[-100.18534342053209,20.194273365003824],[-100.18851157277948,20.193659388550145],[-100.1885086263195,20.188718540764512],[-100.1905057435194,20.188043611749436],[-100.19043752578591,20.18387994062067],[-100.19116024939717,20.182793989388983],[-100.1917024569965,20.179478230736947],[-100.19186581502157,20.176239956260872],[-100.19662412849715,20.174214450196473],[-100.2018674603782,20.17274493107692],[-100.20249841524407,20.172330077607285],[-100.20357653605794,20.167554557077494],[-100.20433496750235,20.166354641643295],[-100.20561528777552,20.164965037738114],[-100.20956674582817,20.16345376757522],[-100.20943582698078,20.161310822777807],[-100.21193021169262,20.159720578996712],[-100.21217953679451,20.159057350539456],[-100.21331373105545,20.157574881951575],[-100.21441859878121,20.155919374075722],[-100.21653838682488,20.15521143620083],[-100.2224324688799,20.150564504324564],[-100.22354733183465,20.14999859709843],[-100.22425615859657,20.149978651205117],[-100.22464077565195,20.150124475308132],[-100.22543331771067,20.15017168043221],[-100.22686031602484,20.150220363155825],[-100.22769416293693,20.149467389925576],[-100.22870758873023,20.147723534676402],[-100.23016543470402,20.146517454030572],[-100.23084053235408,20.14623732719207],[-100.23104970738882,20.146558890302572],[-100.2316393782175,20.14653094044894],[-100.23263378746907,20.145788130093138],[-100.2326702324163,20.14565368930397],[-100.23422991032197,20.14457043236382],[-100.23497263817518,20.143923140003835],[-100.23312439776794,20.14257896627987],[-100.23235740251368,20.142328973969995],[-100.23071460353623,20.141754190100812],[-100.23011955899716,20.14154155481151],[-100.22707497653442,20.14048336795389],[-100.2231056964522,20.13920218063339],[-100.22116391262591,20.138525710966974],[-100.20373201326584,20.13214427454875],[-100.19751038644995,20.12989167622561],[-100.19745807960828,20.129036204148576],[-100.19759861450808,20.127965921854354],[-100.19775792612904,20.12577956580384],[-100.19789802757253,20.12408699296674],[-100.19803941741338,20.122673427922905],[-100.19800377195219,20.12257883340186],[-100.1981374315722,20.12100455054292],[-100.19823309723188,20.119893532813194],[-100.19812539946889,20.11425565196498],[-100.19827877963496,20.112919364570814],[-100.1983182961045,20.112575017379356],[-100.19857220169229,20.110362793807212],[-100.19865028522668,20.10968255360507],[-100.19890187673093,20.107490506402655],[-100.19915654647303,20.105271466312672],[-100.20059859588889,20.08917973358149],[-100.2006872766973,20.088104174522584],[-100.20187344057018,20.07623663504188],[-100.20093707454947,20.076267316546307],[-100.19649802962937,20.07672614931363],[-100.19321580137057,20.074830441803726],[-100.1902589811009,20.075799192581997],[-100.18929869203396,20.076396856516737],[-100.18875344615253,20.07712878757792],[-100.18820962624477,20.07810442439404],[-100.18803263155326,20.07875084775867],[-100.18802512708783,20.079181772022196],[-100.1879858856646,20.079775708747093],[-100.18769932210824,20.080069518373136],[-100.18739047531892,20.08015223776323],[-100.18641548670143,20.080095533096312],[-100.18500081091832,20.08028457338463],[-100.1842625329594,20.081587285696514],[-100.18367010399572,20.082606126095413],[-100.18349399929241,20.08273918796874],[-100.18304712898743,20.08278617345036],[-100.18264240477873,20.082650718452044],[-100.18167942780889,20.0824302722919],[-100.18141939754156,20.082404912450556],[-100.18047419585821,20.082846511739945],[-100.17941111206682,20.082771688047615],[-100.17887709757412,20.08211203802591],[-100.17915073651335,20.080575796100447],[-100.18026557444546,20.079070585852435],[-100.18107837304404,20.076501326397818],[-100.18263116715258,20.07481087891165],[-100.18245352414908,20.07343354328566],[-100.18164948840445,20.073058215166668],[-100.18055303190022,20.072757378322876],[-100.17991116202381,20.07273914342767],[-100.17929283285207,20.07258652775471],[-100.17871176445743,20.07205870395137],[-100.17823540968755,20.071725915354705],[-100.1776312760988,20.071265504999303],[-100.1767356003648,20.070909482020056],[-100.17621704674679,20.071989412941434],[-100.17607736299226,20.07210938067925],[-100.17585189604517,20.072164643463452],[-100.17561659444749,20.072193228042806],[-100.17524771223208,20.07204480941448],[-100.17316714516988,20.073028510002132],[-100.17270896143884,20.073515134985257],[-100.17250896459717,20.07383160331341],[-100.17224518253147,20.074368313448588],[-100.17209105338577,20.074633375541225],[-100.17215301436335,20.075051177793966],[-100.17238980048995,20.075688972304818],[-100.17234441542644,20.076610475222708],[-100.17269403879084,20.077345913738668],[-100.17253285765287,20.077590426518498],[-100.17130884108815,20.078403234839016],[-100.17059813407536,20.078297257525378],[-100.1704725478154,20.078199740224477],[-100.17005447876375,20.077151582075032],[-100.16987999511275,20.076068552217237],[-100.1698092228512,20.075730255901817],[-100.16921714207052,20.075396392101766],[-100.16889936669588,20.07535687142115],[-100.16870339078366,20.075409774224],[-100.16862642328374,20.07541216419986],[-100.16840832953943,20.07535475308208],[-100.16799953258715,20.075267868483706],[-100.16684100779753,20.07483527285308],[-100.16658342165545,20.075672368629625],[-100.16637907313446,20.076513268992812],[-100.1651096367001,20.07806895396817],[-100.1648660384032,20.07831341283338],[-100.16350527144186,20.0762727422711],[-100.15795694289534,20.07443321048021],[-100.15749015936018,20.069741649319667],[-100.16226214161071,20.067298752452245],[-100.15885920045588,20.065578008086447],[-100.15892989878574,20.06544867966005],[-100.15916021763985,20.06511242106876],[-100.16025966137386,20.064810861102274],[-100.1607988934851,20.06461686553331],[-100.16279074536897,20.06355402731856],[-100.15892352583813,20.061597679741453],[-100.15570778430867,20.058850479941725],[-100.15545210699963,20.058770339261343],[-100.1529703703875,20.057653103678717],[-100.15272034343326,20.0574979804789],[-100.15111013165102,20.057033828190413],[-100.15029229192078,20.05703623855601],[-100.14710050131254,20.057669702279213],[-100.14329346405918,20.0526568120153],[-100.14344233990965,20.051042850327633],[-100.13893874384036,20.04827904286293],[-100.13857057714569,20.047980051260595],[-100.13840568534283,20.047873166376576],[-100.13793737515857,20.04431153520295],[-100.13336218596174,20.04283697558185],[-100.13336069246719,20.04096740160304],[-100.1265975949608,20.03805882823991],[-100.1232524845309,20.03946828227282],[-100.12025204219873,20.038911686871984],[-100.11886066876048,20.037351837276674],[-100.11951890228096,20.035335955608332],[-100.11701876009187,20.033524228095985],[-100.11297677098935,20.03440012317367],[-100.11080876027785,20.033269105783575],[-100.11106409815613,20.031649158541597],[-100.10590474207913,20.02783164231738],[-100.10404566958778,20.026321180264517],[-100.10157282394329,20.026682733543396],[-100.09699734978506,20.023328800307922],[-100.09708625916073,20.027306231381147],[-100.09134324361821,20.024259567916317],[-100.08784751084744,20.015814922048605],[-100.08741964123453,20.01621941830217],[-100.08683491142153,20.0189353138922],[-100.08590979055441,20.019745268832082],[-100.08463915349051,20.022463330749304],[-100.08501835808357,20.02477844654385],[-100.08124298584931,20.028210106084543],[-100.07960696779656,20.03011118894284],[-100.07242220589308,20.029237793475602],[-100.07217744092105,20.03120771899853],[-100.06562642517349,20.03135913774065],[-100.06619720530875,20.036235293582024],[-100.06288627950607,20.036882211617637],[-100.0617258111564,20.038790546164876],[-100.05750198258522,20.039862353411763],[-100.05347313551408,20.038265355122235],[-100.04689128492782,20.036545284554848],[-100.04633986572713,20.0360960524921],[-100.0437979711466,20.03656621696831],[-100.04113168411868,20.04037530646974],[-100.03869797947215,20.043471319517664],[-100.0346976325792,20.04789020453751],[-100.03160062591246,20.053147998035342],[-100.02761599840704,20.05657708418744],[-100.0198318008542,20.059770030316088],[-100.01406921543088,20.05934021145805],[-100.00789530547382,20.063691186530207],[-100.00563976195815,20.064200514537504],[-100.00559666319134,20.064612438927952],[-100.00339656992759,20.07195842069109],[-100.0003523359888,20.07748039266852],[-99.97846822262494,20.07404544281951],[-99.98041827197983,20.060908640357695],[-99.97964627758608,20.059678340199923],[-99.97328206418075,20.06061310176017],[-99.96906672338372,20.061864494005306],[-99.9641481778221,20.060432904870254],[-99.96147755355673,20.062289910573952],[-99.95696914905415,20.061003521765656],[-99.943524013522,20.062913589500738],[-99.933556303785,20.064328959729778],[-99.92880370165443,20.06433011945012],[-99.92633745206376,20.064330675587826],[-99.92735093067057,20.06706516842297],[-99.92436090574381,20.078625759559316],[-99.92373275172201,20.080411347487995],[-99.92376685034912,20.084134673011476],[-99.92503735116509,20.086669519235215],[-99.92708966441677,20.087406838069285],[-99.92936593531101,20.091629769148255],[-99.932343552578,20.09388322390953],[-99.93605134729972,20.099060760044836],[-99.93763838326419,20.104556448952167],[-99.93695230671199,20.110793417778382],[-99.93789801896929,20.115178774328967],[-99.94220644785457,20.1201003403159],[-99.94027928496939,20.12543573893373],[-99.94080340382419,20.132007940183996],[-99.93917459229783,20.135292027331445],[-99.9310878504752,20.142440905922797],[-99.93102918311558,20.143960222157375],[-99.93605346739878,20.14939756440407],[-99.93771696525147,20.153834206257045],[-99.93624795800997,20.15699409358149],[-99.93651301397858,20.16181932003417],[-99.93572367034301,20.16293919672745],[-99.93221555666048,20.16139437547804],[-99.92974628434791,20.161706188093035],[-99.92717560741937,20.157141538828967],[-99.92288142878118,20.15661575060659],[-99.92237877455335,20.15915238133408],[-99.92632487563736,20.1595992004992],[-99.92703918474359,20.161292889372476],[-99.92720552344929,20.162800961748587],[-99.92952682301217,20.16340441892919],[-99.93520621163617,20.16525344720526],[-99.93575337988574,20.169311576912037],[-99.9323451933592,20.174012032872668],[-99.93564926704579,20.174095949072353],[-99.93813131576093,20.175337192429538],[-99.93981438262551,20.176239420099876],[-99.94118309098025,20.179015194104124],[-99.93756971095934,20.18130348700788],[-99.93744698495908,20.181751112918448],[-99.94241976048204,20.181724555354833],[-99.94707116449104,20.184508082209163],[-99.94807000889733,20.18595280656035],[-99.94633597473182,20.189242905753474],[-99.94863179183795,20.19132834536788],[-99.95100731085677,20.19129351829048],[-99.95621481679046,20.19522598585877],[-99.95610585059995,20.19684121117865],[-99.95820902010104,20.198299030237195],[-99.95982508934435,20.199838685046018],[-99.96060224950128,20.201626758503835],[-99.96498851902834,20.20100320368664],[-99.96431736895522,20.20464062174011],[-99.96681970992927,20.20745310387906],[-99.96563839685064,20.213396203302295],[-99.96495012152246,20.213944979551286],[-99.96493216638464,20.214300915390993],[-99.9646439473583,20.216541161774103],[-99.96633164056675,20.21783570386998],[-99.96978497680232,20.218391582161473],[-99.96861356300701,20.221043258039288],[-99.97162556881153,20.22481679446929],[-99.9711042792593,20.226078255219704],[-99.97566821952063,20.23224136793465],[-99.9733239837808,20.23521382346081],[-99.97520895068442,20.23905291506685],[-99.97812280463359,20.23883333786779],[-99.9811582465889,20.24394377242328],[-99.97949685565067,20.247112202606615],[-99.98087445848404,20.25307203400922],[-99.9863757720006,20.256700960941316],[-99.98494289820337,20.264800473376283],[-99.98320128680393,20.266179984977214],[-99.98109649761443,20.271493899729535],[-99.97765748178693,20.27241027048626],[-99.97444079873839,20.269574732782758],[-99.975335860624,20.266957992541904],[-99.97420033984832,20.262803929888605],[-99.96878528040969,20.258210514828704],[-99.9607446756064,20.254533614164757],[-99.95750694699558,20.25077393756129],[-99.9559569029858,20.247718548681462],[-99.95546505695074,20.24299455926314],[-99.95283854381887,20.24060241711618],[-99.95212668753072,20.23312069651365],[-99.9507350172467,20.225485781589725],[-99.95191108210753,20.22050738483125],[-99.95121618609897,20.2166694162039],[-99.95114866277885,20.21648175172635],[-99.95093301517437,20.215903501587036],[-99.92513227804369,20.21262160341388],[-99.92269536689844,20.212313656407673],[-99.91841458462892,20.21178844429977],[-99.91866268416936,20.21616609499557],[-99.9202835091906,20.21711442036883],[-99.92296694764292,20.225713097369805],[-99.92235567455594,20.230844047655808],[-99.92254672427384,20.231366405145707],[-99.92591022081382,20.233023972955095],[-99.92839531839866,20.232686568524628],[-99.92940403974177,20.235496272080354],[-99.93000772802299,20.240585629957707],[-99.9328279174228,20.244286926106213],[-99.93396220933045,20.250407539754804],[-99.92846695220715,20.2502211321069],[-99.9293343134118,20.260419755034945],[-99.93040580571068,20.264876889706954],[-99.92895428182385,20.269254134631183],[-99.9266392964687,20.269433340581543],[-99.92554915941258,20.273051627340465],[-99.92369813552142,20.27321120228305],[-99.92384000845254,20.275764474413847],[-99.92037293951631,20.278008973157682],[-99.919875459602,20.28125796772065],[-99.91334740052514,20.28586666665177],[-99.90972301356953,20.28504269793649],[-99.9015099232509,20.280533881136023],[-99.87741097219282,20.27139545171002],[-99.86257288016424,20.26898596110391],[-99.85910642188622,20.268470547257152],[-99.84369283421512,20.40411432302733],[-99.83850741543444,20.45109383955429],[-99.82807117949517,20.543007652779636],[-99.82232456931115,20.54080913963122],[-99.81528889002618,20.541628452386647],[-99.80747144476214,20.544705834173044],[-99.80295560314926,20.545477819708765],[-99.80105145060907,20.547723666463924],[-99.79493105387883,20.551103056790794],[-99.79084479943435,20.55231430433588],[-99.78819615396054,20.552182874961318],[-99.78353132544254,20.554712715660173],[-99.78312574770223,20.556580496205868],[-99.78080714232254,20.558707368511023],[-99.77344977076069,20.559903821330522],[-99.7696603637255,20.55754548835415],[-99.7684190067107,20.559814866422187],[-99.76127118104318,20.560926576467068],[-99.75822699471456,20.561986739955273],[-99.75626537824735,20.561362000278393],[-99.75324390232021,20.563002324294928],[-99.74590334091181,20.559274580108877],[-99.73840905871918,20.56064768226264],[-99.73827394662118,20.561907687721202],[-99.73483772719243,20.565707215888324],[-99.73446095363119,20.566349618796608],[-99.73384858667049,20.567256109348364],[-99.7317791464074,20.567748580153477],[-99.73125882855311,20.568190976972573],[-99.7308244851834,20.56939208248184],[-99.73032193726067,20.570639227309243],[-99.73017351767095,20.571160299507085],[-99.72997369197782,20.572304238664913],[-99.72991929433749,20.572675340040462],[-99.72685626238871,20.575682620839075],[-99.72628076881938,20.575823701566605],[-99.72428920126697,20.57611540777765],[-99.7236906029745,20.57619830551198],[-99.72297038911921,20.576210215579238],[-99.72182561817044,20.5764085314475],[-99.72072672614746,20.57674189072901],[-99.71981517590007,20.57696125745946],[-99.71851525789191,20.577077286687313],[-99.71640613907908,20.576628403567668],[-99.71527987570306,20.57672830007226],[-99.71465836462846,20.57688395426237],[-99.71392463067161,20.57712523042767],[-99.71363812061207,20.577264365474434],[-99.71116984324834,20.58124181436574],[-99.71094123165727,20.58123214179028],[-99.710113755323,20.58117718055263],[-99.70927421871687,20.58098143114728],[-99.70800461772194,20.579592023657256],[-99.70395013264391,20.57628632841687],[-99.70054921534614,20.575338108464166],[-99.70030326053671,20.575357638929972],[-99.69993381557987,20.575558426306543],[-99.69786162312164,20.574643249617793],[-99.69641295029828,20.57444502258886],[-99.6955010166198,20.574967552293344],[-99.69432528236541,20.576131264204037],[-99.69421973723001,20.57765871320902],[-99.69440796204202,20.577917821834205],[-99.69470170115551,20.578202906222316],[-99.69485862199832,20.57832093829478],[-99.69606961994157,20.578761071319377],[-99.6947000649073,20.58118720582388],[-99.69050311353595,20.58138399918346],[-99.68697357204883,20.580059254546597],[-99.68624509525313,20.57956798519109],[-99.68497633433299,20.578986859813938],[-99.68440040394017,20.579149887740243],[-99.68415075319058,20.57952481088273],[-99.6840102364693,20.579854904],[-99.68384189153744,20.580403414923637],[-99.68371620721041,20.58071105577011],[-99.68301194592709,20.583115633498153],[-99.67876629005087,20.58569384264564],[-99.67990243188012,20.58697503240262],[-99.68042920453229,20.587713287209397],[-99.68058817756673,20.58813241626831],[-99.68051320521579,20.58843119072469],[-99.6799918145262,20.589061634222844],[-99.67918496050243,20.58920581875077],[-99.67716366928244,20.588407352224465],[-99.67535094869999,20.588364952139784],[-99.6741359676356,20.58857431518686],[-99.67375086321226,20.58870109955899],[-99.67315664704859,20.58894374770398],[-99.67076415413936,20.590121015945613],[-99.6691642716059,20.591838780099295],[-99.66911228476556,20.592478640172487],[-99.6690119858743,20.593126832352027],[-99.6642993668616,20.59364936344798],[-99.66288519620343,20.594231473559205],[-99.66259121122067,20.5945189428424],[-99.66180579922349,20.595090848809946],[-99.66180360077317,20.59521781269757],[-99.66173485776454,20.595293296052034],[-99.66169949982742,20.59538800143605],[-99.66006481262457,20.597714054830192],[-99.65997165509754,20.597808438935317],[-99.6599080508397,20.59800419508423],[-99.65988317809558,20.59818864029569],[-99.65982180336664,20.598255731883967],[-99.65981455156123,20.598396225360943],[-99.65838659678963,20.60143584008722],[-99.6567569157827,20.60193917962954],[-99.65661252020732,20.60193242235283],[-99.6557741759525,20.60194219945498],[-99.65525967819673,20.60202726059623],[-99.65047947803436,20.602259751405427],[-99.64863400698084,20.601321304537123],[-99.64468073659361,20.603027428077894],[-99.64387921941807,20.60341076798312],[-99.64208087363278,20.60432692410211],[-99.64166091148536,20.604376550904306],[-99.64127843458346,20.60434851672261],[-99.64046317308464,20.604414696249137],[-99.63413160663765,20.605478177027237],[-99.63162282538383,20.60308687078924],[-99.63078353499446,20.602875381704337],[-99.62491024565065,20.601162969470465],[-99.62300990300565,20.599247619062965],[-99.62260111412525,20.596611122652575],[-99.62385965231078,20.594893608620964],[-99.62412216156389,20.59434662285213],[-99.61951127974203,20.59140696112314],[-99.61643791182843,20.5944249872025],[-99.61291447166269,20.594965106557083],[-99.61217377365102,20.599806088292723],[-99.6090093437046,20.60114549367546],[-99.60764507597054,20.60623352261956],[-99.6062411534457,20.60648757499922],[-99.60423346006252,20.606153250067052],[-99.59832947775095,20.607665907139165],[-99.59256014666545,20.61094032618513],[-99.59380694361283,20.61626342970169],[-99.59108341250703,20.617971178420987],[-99.59007189363695,20.62025423676357],[-99.58783939026102,20.620898129168722],[-99.5831410147373,20.618263220080678],[-99.58051629418844,20.617673292291897],[-99.57849035542102,20.619156040397172],[-99.578182335061,20.62249570161589],[-99.57836125448637,20.624876425032653],[-99.57862426757163,20.628747361443743],[-99.57467565005203,20.63130566860275],[-99.573464787626,20.63514182249952],[-99.56779230998501,20.6364177777034],[-99.56679978518224,20.63962236612275],[-99.56533223381632,20.640575258157185],[-99.55599879913046,20.64349998089085],[-99.55121721531987,20.643051257528725],[-99.54821747640119,20.64425320629772],[-99.54444244744019,20.64449630907808],[-99.53857417317647,20.64352335338839],[-99.53663879446589,20.649370563407672],[-99.53100823660151,20.654888054463356],[-99.52341150126045,20.658143447352472],[-99.51190851111426,20.65903728607782],[-99.5056417876765,20.65913156636077],[-99.50219929514003,20.659062998432546],[-99.50171384049673,20.662531535262758],[-99.50167659852508,20.663111526001217],[-99.50161395307117,20.66350172448614],[-99.50239073593463,20.666319947865247],[-99.5043466441154,20.667927108988522],[-99.50366528004241,20.669979245952163],[-99.50078076476814,20.671149303557968],[-99.50061613284811,20.671320671322746],[-99.50058678303503,20.672905515067384],[-99.5033810891428,20.67179408262956],[-99.50720385442276,20.67449264149252],[-99.51073524888324,20.678101484557033],[-99.51014666411413,20.680091109862644],[-99.50585986386233,20.680451925923933],[-99.50578790402608,20.684736713375344],[-99.50608706029243,20.684980884626384],[-99.50879729484842,20.68663321684801],[-99.50853245373236,20.6885504802288],[-99.51168723175846,20.690908031716674],[-99.51550592067474,20.696484465943968],[-99.5166007426169,20.697370964948277],[-99.51733299106587,20.69752804916311],[-99.51795571791251,20.698004839265423],[-99.51958720003302,20.69946309513648],[-99.52135309900035,20.701085118069898],[-99.52502080948233,20.702576987460247],[-99.52594401194722,20.702575533680374],[-99.52759039517099,20.704280597381967],[-99.52837786167447,20.705110430388913],[-99.52950635301477,20.705087902396485],[-99.53315542810913,20.70576391528499],[-99.53328732037244,20.705801204581405],[-99.53513190734787,20.707219654347057],[-99.53618721868543,20.71186579427018],[-99.53814590623045,20.712850024080183],[-99.53924303480704,20.71349315553175],[-99.53969470543825,20.713708540550158],[-99.54000304697695,20.71464568602306],[-99.53966495512344,20.716001060127383],[-99.54057158523409,20.717045955559797],[-99.54367160147814,20.71890301839113],[-99.54337680198063,20.71973574762353],[-99.54347842363393,20.71998006769809],[-99.5434703425201,20.720423910027023],[-99.54317959998383,20.721165982827415],[-99.54352374025461,20.72159565678976],[-99.54476337609952,20.722493936580406],[-99.54504982513902,20.72264994352713],[-99.54550064378702,20.72357690335997],[-99.54535882772467,20.724613960467536],[-99.54507693627448,20.724869681341488],[-99.5445248417222,20.725665952495945],[-99.54443273662406,20.726222980584282],[-99.54483375245695,20.72684011784844],[-99.54699907511741,20.727745350663724],[-99.54764616403116,20.73021095103968],[-99.54658416456289,20.732497159139143],[-99.54802906759272,20.735672974604313],[-99.54832920501087,20.736536838824122],[-99.54534063339958,20.741779631576605],[-99.5456677899578,20.74341112351368],[-99.5455063596134,20.74526512631104],[-99.53959732139049,20.746172392370966],[-99.53807110546302,20.74920405294762],[-99.53602877305872,20.74997943146883],[-99.53262766433642,20.750444956199033],[-99.52911339218628,20.751689936926823],[-99.527133407902,20.753681561423093],[-99.52446747501716,20.756519945283117],[-99.52272831627437,20.75431940176628],[-99.52153399622136,20.754752481031517],[-99.52143009378557,20.755157919852877],[-99.52077861142567,20.755705852498465],[-99.51925293066404,20.756586016853362],[-99.51806709137799,20.759963806698693],[-99.51160548482522,20.763440436195538],[-99.51059573004153,20.764711689418903],[-99.50946911155353,20.765780864896158],[-99.50415662541354,20.76535989109118],[-99.50322282750113,20.76717214549143],[-99.50637747149318,20.771241191712818],[-99.5019232841139,20.775084780580414],[-99.5013661677242,20.779004800611688],[-99.49737438712737,20.78026444309677],[-99.49638738603994,20.7831494016678],[-99.49773099008473,20.784957644414646],[-99.50017444940079,20.7852046918631],[-99.50222854650946,20.787462300822426],[-99.50371407348939,20.79411880013629],[-99.50087665928214,20.79338506563579],[-99.4966556717248,20.79095209026383],[-99.49034714601186,20.796102184404504],[-99.48852521685473,20.79981170749693],[-99.48883345490867,20.801942854170647],[-99.49277745973342,20.802188827671046],[-99.49791023858995,20.802363153150793],[-99.49918190201271,20.805303326867374],[-99.49843654007196,20.805692576060096],[-99.49574278658577,20.80553849746468],[-99.49375174211053,20.806757095049647],[-99.49339413391749,20.810392296529756],[-99.49158094793393,20.81217765101144],[-99.4871958513707,20.81603120142495],[-99.48511228039888,20.817983213860373],[-99.48530117587057,20.8202200243702],[-99.48526800159675,20.82122260584208],[-99.48469117626979,20.826407939072567],[-99.48481909168015,20.826793382282574],[-99.48528727298799,20.827174228503452],[-99.48610303646672,20.827805206103903],[-99.48756420610596,20.82940628164522],[-99.48894177095207,20.83148230148089],[-99.48902944958121,20.831826818340744],[-99.48864630958246,20.83283725654087],[-99.48607545943435,20.834459810823432],[-99.48535456261021,20.83533765372937],[-99.48415049764668,20.837799280465788],[-99.48344502903541,20.83823676047939],[-99.4816629690738,20.839474178663693],[-99.48105329405138,20.839303632390227],[-99.47871057918519,20.83955356685891],[-99.47822008913607,20.8402350134603],[-99.47733891117457,20.84077673757315],[-99.47684107060871,20.841205713542536],[-99.47644903506796,20.841782742088924],[-99.47257191831181,20.843692522430956],[-99.46925041776609,20.844662718292568],[-99.46592061432528,20.847612350866655],[-99.46302558634574,20.848608213177158],[-99.4616923463642,20.848290590955287],[-99.45918472449927,20.84793355441434],[-99.45550362859359,20.849974780266507],[-99.45689447593861,20.852426874516652],[-99.45680728652354,20.856051978801133],[-99.45352114814551,20.858344060660897],[-99.45135557289314,20.856854973878853],[-99.44811416899472,20.85269047244236],[-99.44545835308804,20.854500485356994],[-99.44817298383003,20.85667740698983],[-99.44835620324096,20.858970129852082],[-99.44650145631539,20.860950195205874],[-99.44604256574974,20.86352248261329],[-99.44551651274946,20.864538955366186],[-99.44299884807009,20.87054923653693],[-99.4423473772917,20.871304445501437],[-99.44076548612446,20.871489441853555],[-99.44052953133615,20.871586991720392],[-99.44002752062545,20.87781422507851],[-99.44080719295937,20.878952968451017],[-99.44204166789444,20.880927279193656],[-99.44110296332889,20.881934563981304],[-99.436911594153,20.886216091776532],[-99.43601671323455,20.888572015050954],[-99.43447894497791,20.89378211763585],[-99.4343727017112,20.894798261481583],[-99.4349869830304,20.896766191180916],[-99.43477901606616,20.899321987806672],[-99.43380772470948,20.89949563431003],[-99.43342919882241,20.900358624007197],[-99.43298861821438,20.9006772929082],[-99.43253622883384,20.900982151699793],[-99.4315702460496,20.901509740910114],[-99.43066254790665,20.901385579200394],[-99.42853704727861,20.90132255847027],[-99.42717997029058,20.901218590891347],[-99.42641032395039,20.901450031486263],[-99.42134555426782,20.90310381800697],[-99.41797263495056,20.903637135809845],[-99.4154444939777,20.904427406482228],[-99.4136996279837,20.904780069787705],[-99.4117732948684,20.907039055139876],[-99.41260232232514,20.91000429565844],[-99.41249284696886,20.911808085632742],[-99.41247217352048,20.912884658849407],[-99.4124384306046,20.913636062401622],[-99.41327513676617,20.914946638985214],[-99.41381950296363,20.915766252287426],[-99.41447617216761,20.919666565938314],[-99.41363545438998,20.920826792746993],[-99.41445200366655,20.923190706332207],[-99.41530908179703,20.923569303837553],[-99.41498018086622,20.924982062870185],[-99.41005626783681,20.926665124905355],[-99.40605140028543,20.928261007142737],[-99.40318739314228,20.929756376483283],[-99.40218821325527,20.93405267240297],[-99.40321010088763,20.935625370103935],[-99.40431156707774,20.93560383968861],[-99.4045152756687,20.934680646424738],[-99.40590154080024,20.93391252732806],[-99.40674188248158,20.93403399003057],[-99.40715059140331,20.93437666173577],[-99.40753939790176,20.935000847710853],[-99.40724056902616,20.93710371930257],[-99.40660454524755,20.937907285259428],[-99.40607436800741,20.93822946941185],[-99.40478397995417,20.93890678400294],[-99.40357195978487,20.939401110025187],[-99.40240733937162,20.939565607314933],[-99.40104129291797,20.94065843116948],[-99.39961590473644,20.94232244972352],[-99.39688074792963,20.944160349221875],[-99.39606673817588,20.945672002526805],[-99.39523777335592,20.946457491284775],[-99.39372003283705,20.949018765693324],[-99.393199251711,20.94960024115221],[-99.39231410782338,20.950541281550557],[-99.39103461032494,20.951644012255883],[-99.39056103690632,20.952155964354347],[-99.39024703597869,20.95365515915165],[-99.39086479103565,20.95492585432561],[-99.39159032768924,20.956243191821045],[-99.39254893551197,20.95712328921246],[-99.39270121548077,20.957989612160986],[-99.39269267812767,20.95843068508225],[-99.39246338360533,20.958673465815934],[-99.39193660966674,20.959686984272082],[-99.39181725665827,20.961859851276472],[-99.39075544591356,20.96393722016495],[-99.3885608953695,20.965267596271303],[-99.38827011621657,20.96581556647152],[-99.38834961131124,20.966573467730598],[-99.38871295745889,20.967016367157953],[-99.3912453630889,20.96906784173325],[-99.39216364159591,20.969665397950166],[-99.39302503779498,20.97095613700452],[-99.39367494257095,20.97194382027601],[-99.39428998902429,20.97286115003874],[-99.3946858930272,20.973495713121338],[-99.39576053220082,20.97550238703178],[-99.39568906911728,20.979198263154956],[-99.39578329062903,20.980071544317923],[-99.39334768648598,20.982613817843287],[-99.39137904382784,20.98635841136604],[-99.39123875399787,20.98699176719407],[-99.39166453841455,20.987831020877138],[-99.3930337153572,20.98947526166762],[-99.39331742340192,20.99091664793093],[-99.39209262622722,20.992917559598197],[-99.39210358734368,20.993973180014905],[-99.39138861904996,20.99870900892489],[-99.39046712644392,20.99951390849253],[-99.38951096143256,21.000611419236122],[-99.38982973708954,21.002112404186846],[-99.39003525118784,21.002726721936085],[-99.38768198801824,21.005231793260123],[-99.38564007780968,21.005756615315477],[-99.38418731043504,21.006546147681547],[-99.38389853971739,21.007482650032557],[-99.38422247374479,21.00896445978998],[-99.38418601754654,21.00947312587556],[-99.38398182217537,21.010284039701787],[-99.38291856719502,21.01141541438176],[-99.38334173613038,21.013136561964075],[-99.38399474945965,21.01359805821454],[-99.38459648261897,21.014336572384366],[-99.3847467352723,21.01481043920961],[-99.38508689026429,21.016080420638275],[-99.38455424486949,21.017879346933682],[-99.38161867456085,21.019497012810973],[-99.37981641060662,21.020110378513948],[-99.3772727728686,21.02070362134623],[-99.37697354447408,21.021676805232914],[-99.37608610629871,21.023821246691853],[-99.3752177583105,21.024241326272715],[-99.37400522782434,21.02446889321368],[-99.36865708462761,21.02427873157683],[-99.36820004870333,21.02664663040622],[-99.36816040982535,21.028056440521084],[-99.36633416395722,21.033962999577],[-99.36715155327897,21.035535617011817],[-99.36742566400125,21.036840815742607],[-99.36661268372615,21.038130680257893],[-99.36606458297427,21.03860274081177],[-99.36503934040616,21.039254296497973],[-99.36386226581595,21.040254859349204],[-99.36312474630114,21.042130745025872],[-99.3647581990279,21.043987999902868],[-99.36382942787378,21.047978913500287],[-99.36390120677936,21.04850930710205],[-99.3640151585343,21.0488606405915],[-99.36438912739197,21.049385472508618],[-99.3649770601595,21.049350242776768],[-99.36761865232268,21.049339637603282],[-99.36807785638092,21.049708260187344],[-99.36821334040508,21.05019494438477],[-99.36845623099379,21.050626763392188],[-99.37231492299361,21.055987015574033],[-99.37556969960224,21.055397541397042],[-99.3758945686605,21.055468912188417],[-99.37642925593042,21.055686809099257],[-99.37712774604142,21.057048634942817],[-99.37709407993833,21.058156281020956],[-99.37689885749376,21.058996858742148],[-99.37670770614443,21.059380377747175],[-99.37623378765232,21.05988778525233],[-99.37525477293423,21.06039388741624],[-99.37465789332225,21.060637718075725],[-99.37333244520914,21.06217632159337],[-99.36892653693934,21.06081419051577],[-99.36668232241243,21.06446773000431],[-99.36636559965109,21.067190878972156],[-99.36801046645189,21.070336343177132],[-99.36845580020531,21.070676371198545],[-99.37002742953041,21.071636981737583],[-99.37038188638672,21.071927798275908],[-99.37149204949907,21.072756242309993],[-99.37295241406622,21.073475566358468],[-99.37617971938016,21.073200935330306],[-99.38312126181995,21.068490044063537],[-99.38472390719386,21.067609463524207],[-99.38767320489495,21.067827233203502],[-99.38950698888289,21.071850817534823],[-99.38943140790178,21.072632208261325],[-99.38822982134946,21.076883536257128],[-99.38864751487182,21.078028971618096],[-99.38895216400084,21.07951957883529],[-99.39135119999969,21.079956437100407],[-99.39223939675344,21.079525808416236],[-99.39456186176164,21.080422413064184],[-99.39487510478136,21.08122291758798],[-99.3947381340094,21.08305422367647],[-99.39450044443896,21.083844768287406],[-99.39443048699275,21.084586561293236],[-99.39464637006415,21.08567182642753],[-99.39514705455349,21.0862804237629],[-99.39580241089237,21.086891088633422],[-99.39674267331264,21.087269529737284],[-99.39849641900105,21.0904590811798],[-99.39830892150059,21.09165487986263],[-99.39847768263348,21.092053635879097],[-99.39884734191514,21.092939605631955],[-99.3992888695044,21.09385969381856],[-99.39936710162704,21.09406463856152],[-99.39892395889922,21.09622991803741],[-99.39686379563017,21.098879249135734],[-99.39745426598392,21.100723534711733],[-99.39747747348508,21.101523640444157],[-99.39736665951062,21.102003281180373],[-99.39351632161112,21.100835643440632],[-99.39078400231335,21.100985256104025],[-99.39024536444998,21.1014592879946],[-99.38978540158104,21.102364010853535],[-99.3895319248956,21.102843478467037],[-99.38912883708394,21.103682245528205],[-99.38764250231111,21.10365684430252],[-99.38611328574865,21.102851967818992],[-99.38522628293691,21.102590073409544],[-99.38459903953401,21.102397277380987],[-99.3843077993248,21.10233103802318],[-99.38339049885883,21.10201132996349],[-99.38242989636433,21.101432244330567],[-99.38213982844957,21.101305900702755],[-99.38171931220677,21.10129869626087],[-99.37986195720424,21.10182949611135],[-99.37931182831227,21.101774121754886],[-99.3788355334139,21.101279319201808],[-99.37822633776273,21.099292275469054],[-99.37553091595112,21.098790000930308],[-99.37490428003633,21.099311244285616],[-99.37184421437422,21.10175987539543],[-99.36862730154417,21.101962012471915],[-99.36762676084612,21.10182113680895],[-99.36419314300593,21.10358257790631],[-99.36359826394187,21.103960263125373],[-99.36267185651218,21.10435377761536],[-99.36086372859626,21.104710509409358],[-99.35985869873258,21.103195809317924],[-99.35976227448094,21.102811868164395],[-99.35957566827972,21.102218783262344],[-99.35943490252458,21.101014510353707],[-99.35784832165484,21.099447211566428],[-99.35491990302,21.10219271598828],[-99.35351120057686,21.102892040503548],[-99.35110536493448,21.102417035545557],[-99.34936374909665,21.10185142382079],[-99.34858240935682,21.10150663933274],[-99.34834208223941,21.101311331607008],[-99.34663048813633,21.10069573111798],[-99.34513128472582,21.10303991505458],[-99.34483572573055,21.10429617780494],[-99.34395046205844,21.107134256621862],[-99.34316230391613,21.107868662285057],[-99.3428923959076,21.10806928764424],[-99.34174207258292,21.108900615474283],[-99.3413482635122,21.109498376009924],[-99.34115724692816,21.110111007725948],[-99.34185931150529,21.111410714740714],[-99.34233012557723,21.111810823246685],[-99.34294012482923,21.11263136085023],[-99.3432648979641,21.113203618512955],[-99.34360076254512,21.113826547348594],[-99.34387500669862,21.114876624956253],[-99.34365997999339,21.115603414717043],[-99.34297652800922,21.11764472527068],[-99.34283932063204,21.118225968412332],[-99.34267915729095,21.119112522940952],[-99.34266710891717,21.119722600106286],[-99.3424435205959,21.121861523686732],[-99.34217268658273,21.12284200913672],[-99.34195517821792,21.12344851459875],[-99.34154675995347,21.123926919277665],[-99.3411865085921,21.12417021298677],[-99.33961851646467,21.124961372545044],[-99.33864605244105,21.125471922624968],[-99.33688340313296,21.128033250016017],[-99.33649505268744,21.129450683366997],[-99.33550771653415,21.130465751272652],[-99.3342154794176,21.130514683905858],[-99.33346069314473,21.130287688771546],[-99.33310334148257,21.130139090414957],[-99.32949707484818,21.130914424260993],[-99.32883248135579,21.13138208315928],[-99.32634866103996,21.133471276478588],[-99.32488162281953,21.13440472110028],[-99.32428228004324,21.135967041816798],[-99.3242589718397,21.13713901174043],[-99.32421724318556,21.137778069861497],[-99.3228162491439,21.13964284456415],[-99.31858841249931,21.141376371034767],[-99.3122394611512,21.146142144519956],[-99.30922247452514,21.14705102546276],[-99.30850156690303,21.147182967988613],[-99.30689866780227,21.14655351200247],[-99.30581730719251,21.145362636481934],[-99.30506562554643,21.1446165733592],[-99.30425591933101,21.14338737017158],[-99.30402134508148,21.142783711257835],[-99.30336013261706,21.14162745504541],[-99.30322191567842,21.141284134550574],[-99.30121753406405,21.139817735114548],[-99.30061327969293,21.140284072920224],[-99.29761803808935,21.141798298412994],[-99.29671434286263,21.141881010412874],[-99.29483184468359,21.141211316873353],[-99.29410752316596,21.14043165295965],[-99.29389732104647,21.14018177051298],[-99.29346143440836,21.139610264550072],[-99.29303715825881,21.139183029701712],[-99.29266093624659,21.13877139186127],[-99.29036938085716,21.136922580999],[-99.28776923510412,21.13503025948171],[-99.28757334288372,21.133591792308607],[-99.28743364599154,21.13236475066151],[-99.28622704709164,21.130563492384],[-99.28342587044835,21.1319300029852],[-99.28314835974123,21.131542217461686],[-99.28261654030314,21.13057591482294],[-99.28258317673567,21.130192468978407],[-99.28318214366578,21.12879138400467],[-99.2838885185281,21.126021881198028],[-99.28273287350078,21.12278028438891],[-99.28253190663008,21.12243469781714],[-99.27713785439454,21.12050044278385],[-99.27672241951223,21.12298696033696],[-99.27509122248864,21.123417875199493],[-99.27457057780788,21.12297866379589],[-99.27379190339548,21.12250535453387],[-99.27269248445077,21.121990585259198],[-99.27226744474217,21.121606954941456],[-99.27151215858606,21.120934969052996],[-99.27047127465767,21.11944283229451],[-99.27042890278938,21.11831337523421],[-99.27194594823203,21.114327627834314],[-99.2715944584649,21.113537504426006],[-99.26935624268532,21.11183567984466],[-99.26159020643394,21.109345175156136],[-99.25856282752557,21.106514535759857],[-99.25677768601139,21.104660143939327],[-99.25654683095098,21.104599281436037],[-99.25622442752348,21.10452259532559],[-99.2527966065096,21.104383307107128],[-99.24962091955814,21.102199250699528],[-99.24725996979305,21.10128844568021],[-99.2462419310657,21.103256321763467],[-99.24333523521796,21.10408077114124],[-99.24050473656621,21.107707304903215],[-99.23663257860926,21.11130645737512],[-99.23530762347394,21.112365819375157],[-99.23406977452527,21.112832902862976],[-99.2330642685539,21.111759734011798],[-99.23185888998415,21.108532737383825],[-99.22969382721135,21.107650667068697],[-99.22938157807289,21.107668260879905],[-99.22671825231174,21.108088446608804],[-99.22607005283425,21.107983096417115],[-99.22548226078732,21.107527752316003],[-99.22486136128464,21.106684984367803],[-99.22411216486154,21.105967500402755],[-99.22297209882271,21.10579761739166],[-99.22241939715622,21.105868680029175],[-99.22123753101164,21.10620111765735],[-99.22081532216367,21.106275114513096],[-99.2200159906617,21.10646419513239],[-99.21559959371825,21.106193782958997],[-99.21314895154603,21.1075506286698],[-99.21198455543248,21.108204909258973],[-99.20927105175633,21.109991932870912],[-99.20966364051355,21.113212789842294],[-99.2099854917563,21.114598636747417],[-99.20945663411896,21.115733002001605],[-99.20622540383044,21.118689718451037],[-99.20187389219222,21.11969911711384],[-99.19584137366832,21.121890217654993],[-99.18458707128508,21.122166559919663],[-99.18406211344768,21.122640704928756],[-99.18365431570277,21.12398651626546],[-99.18312635623187,21.124603536535176],[-99.18177501035251,21.126087930443248],[-99.18096964362132,21.126672036331854],[-99.18017596357743,21.12727507139431],[-99.17983383827686,21.128253978511054],[-99.17894067789712,21.13014100743726],[-99.17883514383561,21.130907044413505],[-99.17728597337924,21.13351647900015],[-99.17716673725232,21.134473976689094],[-99.17698936307733,21.137164896406205],[-99.17574851142507,21.13839625132647],[-99.17315209822027,21.138175059837522],[-99.1724638311897,21.138129998869374],[-99.17140116349043,21.13794925222578],[-99.17061171530486,21.13788586161479],[-99.1697152564746,21.137966255950232],[-99.16901193513189,21.13863670774299],[-99.16728570483053,21.140108943133498],[-99.16387270084789,21.13957033892052],[-99.16109387549284,21.14118292333535],[-99.16049453905998,21.1418507319828],[-99.16009462322478,21.142236373723563],[-99.15960283075299,21.142620874493844],[-99.1577071428411,21.14397925447298],[-99.15688063712452,21.14440913844743],[-99.15618013060214,21.144941757443803],[-99.15183830545436,21.146576711758314],[-99.1509393157387,21.147458411168373],[-99.14891631447284,21.148083755219204],[-99.148214579806,21.147873277604504],[-99.14490174787625,21.145343526502757],[-99.1442482508063,21.145140170885952],[-99.1439849751776,21.145124475108673],[-99.14355698948458,21.145576481140893],[-99.14168772059628,21.148527309434257],[-99.13912734495534,21.150650112132496],[-99.1371281925924,21.151740859874565],[-99.13489258471378,21.152576445137584],[-99.13201674023725,21.1530381091099],[-99.12956781871748,21.15128654822371],[-99.12844652556748,21.14886449815208],[-99.12736116449588,21.14702677362095],[-99.12679492584027,21.146701898784613],[-99.12293973502057,21.147953247595808],[-99.12224688267378,21.148007703120015],[-99.12125804633996,21.14799248718748],[-99.12066448113097,21.148040864454515],[-99.11764823757403,21.148284639439566],[-99.11686431763928,21.148299917703184],[-99.11526360462551,21.14828446515213],[-99.11248548415728,21.148363036885257],[-99.11150849240852,21.148584507636883],[-99.11095700180289,21.14915093679042],[-99.11098300352626,21.150305131421646],[-99.11221149507719,21.15402882107429],[-99.11181568759059,21.15567930030528],[-99.11144858608156,21.156105146140305],[-99.110155876058,21.156609354925422],[-99.1087795204075,21.15639104517578],[-99.10790932907696,21.15625433575724],[-99.10305319635364,21.153423321990147],[-99.10194662745704,21.153594631894407],[-99.09913916965212,21.15413071421409],[-99.09835472046058,21.154280884619936],[-99.0976341063307,21.154386886120506],[-99.09716975911448,21.15449775082334],[-99.09633696531114,21.154646425737667],[-99.09275071674864,21.153725176582327],[-99.09093827080528,21.152984517180982],[-99.09063112794837,21.153095517460144],[-99.09033539974166,21.1533496718107],[-99.08964004629604,21.154076646486715],[-99.08637238652688,21.156092100059084],[-99.08620162651403,21.15627092075067],[-99.08490253875789,21.158627316763045],[-99.08432744866474,21.15938265578228],[-99.08262219316481,21.159051200203407],[-99.08179094581226,21.158791999390075],[-99.08141380344131,21.15867249100785],[-99.08045881490534,21.158654255422732],[-99.07898158522534,21.15873834434342],[-99.07834168875104,21.158800988294615],[-99.0779024603703,21.15886746546522],[-99.07743863903943,21.159063930646255],[-99.07686292662976,21.16084759223213],[-99.07676658399151,21.162720965733627],[-99.07183617602368,21.165542670684033],[-99.07131536387561,21.166022203166335],[-99.0707727719032,21.167279540013965],[-99.07232573710593,21.168054612425408],[-99.0776894159012,21.17056677746814],[-99.07791664842796,21.17090748156471],[-99.07606376653166,21.17357769268392],[-99.07548825205816,21.173346036318378],[-99.07284065981929,21.17218078095152],[-99.07014300271891,21.17253863986008],[-99.0647365094,21.175094633646665],[-99.0640765240741,21.175076288997104],[-99.05985822278546,21.168527775982227],[-99.0602560744486,21.167257481750312],[-99.06368007196863,21.16764035971164],[-99.06741334968643,21.163712564504692],[-99.0721433954223,21.159651771590518],[-99.07255289254368,21.159062336102863],[-99.07283960279096,21.158335551526193],[-99.07281933706508,21.158155356316342],[-99.07224661612685,21.15702073605229],[-99.07202912665952,21.156900858719155],[-99.0685157732969,21.156634432557667],[-99.06821411055381,21.156603689935366],[-99.06729378692665,21.15632738667523],[-99.066612084035,21.15608912263616],[-99.06484980470799,21.155160230944773],[-99.06440302946771,21.15490774957192],[-99.06341708262374,21.154425398218223],[-99.06307583682349,21.15432468480833],[-99.0609713330756,21.15455990382185],[-99.06082363963282,21.154788487782298],[-99.06050365973039,21.1564817116236],[-99.06038861946047,21.156654769035924],[-99.05771071558075,21.15966054530452],[-99.0549279718661,21.159384611683322],[-99.05477214381511,21.15954213192856],[-99.05400423403756,21.16136285044189],[-99.05396153943053,21.16154523896381],[-99.05399712386964,21.161908376835925],[-99.05432834816304,21.16533905656007],[-99.04937925210493,21.16898613270604],[-99.04703640300158,21.174247264551752],[-99.0421967242853,21.175254712078925],[-99.0503904244714,21.207002731992247],[-99.05138187085896,21.26553625525628],[-99.04710248192816,21.268636874248102],[-99.04217902378463,21.2733576636507],[-99.03824435991208,21.278177190615224],[-99.03933032932463,21.28421342551627],[-99.03979854941764,21.283862950092498],[-99.0399590823381,21.283433379161295],[-99.04416215187331,21.27972961021021],[-99.04609293425187,21.27987555011356],[-99.04700513105178,21.282121850019337],[-99.0471903069884,21.281983964790925],[-99.05032757558388,21.28271567262749],[-99.05184200583244,21.282944568766993],[-99.05285586169316,21.283218580666755],[-99.05371525400477,21.283131123790156],[-99.05420902128009,21.283103191956627],[-99.05465626679586,21.282766481462318],[-99.0551384966779,21.282538470507802],[-99.05581977935992,21.28267223256563],[-99.05741188373713,21.283689293197597],[-99.05791944011014,21.284697802051085],[-99.05819962914728,21.284599973913487],[-99.05842751099658,21.283301956832815],[-99.06095089983597,21.279500203884822],[-99.06181125678307,21.27975860885016],[-99.0623878188187,21.28036659515641],[-99.06275251312695,21.281139525101878],[-99.07601821324681,21.28936775580263],[-99.07621755528885,21.289745685987725],[-99.07796245877819,21.29266405825848],[-99.07821397618437,21.292803112789386],[-99.08002327163945,21.2933179178072],[-99.07893314428287,21.295215950812462],[-99.08299075153911,21.296346893710563],[-99.0888389387942,21.294740427755812],[-99.09097885793335,21.294739284868058],[-99.09317717394833,21.29174159756809],[-99.10046117737551,21.291938074384916],[-99.10136951815002,21.293711507809064],[-99.10542442182526,21.301470384207107],[-99.10658602117502,21.30245601079457],[-99.1086542647397,21.303339579701344],[-99.11104540330979,21.30441708812566],[-99.11351239161161,21.305472338508253],[-99.11547885881527,21.30642470444525],[-99.11791107489455,21.30797380160692],[-99.12017212825742,21.309284426337626],[-99.1216622986222,21.310181410310975],[-99.12246914612496,21.311325651876814],[-99.12407732100439,21.31389659737914],[-99.12490931659318,21.315041250754632],[-99.12755889598316,21.318336548449793],[-99.12460745609826,21.318484003284766],[-99.11753540986382,21.3184336896],[-99.10754534884433,21.31804166451758],[-99.10283960444104,21.31788193606718],[-99.10298601736548,21.318920173904587],[-99.10294884183793,21.32119442425227],[-99.13782959153639,21.329791894146695],[-99.12945551791461,21.362046244526596],[-99.09262075790764,21.363360484013242],[-99.09788304490445,21.377641901361017],[-99.09283920012598,21.381700453525355],[-99.09813022730685,21.40841267935508],[-99.1059154274098,21.411560077596278],[-99.10516230798288,21.420480392205604],[-99.10623083932461,21.422406309035125],[-99.10858914736008,21.426520982425416],[-99.11122980942889,21.43162953701102],[-99.11602133022689,21.441202227327494],[-99.12194120530194,21.452543485076603],[-99.1223966217326,21.453415882766535],[-99.12603004365621,21.460542844617464],[-99.12832543230604,21.467929319461632],[-99.1290651710006,21.47126232442099],[-99.12928123488268,21.485866461221804],[-99.12929474015681,21.48677922332206],[-99.12949620939509,21.500393491609714],[-99.13593087834653,21.513211044679792],[-99.13692035793821,21.51407636108712],[-99.14228220521517,21.535439554141362],[-99.13960844030498,21.541987758565938],[-99.14077270387622,21.543785826595126],[-99.13718305865035,21.555376697300687],[-99.13572519255769,21.559967254166168],[-99.13399958673023,21.565560892246367],[-99.13050711400354,21.578972269545545],[-99.12896832652388,21.580358428089937],[-99.12807652122672,21.583381170837242],[-99.1284676237529,21.586473595805785],[-99.12829736199188,21.589817052176045],[-99.1304929871103,21.592545399554126],[-99.13060932194406,21.596649582127498],[-99.1350918010587,21.597343240846385],[-99.13872405345757,21.603751038752364],[-99.15140193021307,21.612796631940455],[-99.1621683169472,21.620244522609084],[-99.16735027872744,21.62388325446483],[-99.17189550264396,21.627031484259874],[-99.16888954975042,21.630982130152802],[-99.16945421209113,21.631446281395426],[-99.1712332862412,21.6348817675713]]]},"properties":{"cve_ent":"22"},"id":"inegi_refcenesta_2010.15"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-97.8421775340999,20.83988654734759],[-97.84251662989874,20.8399597474384],[-97.84308324748218,20.839892666893206],[-97.84448089461335,20.839724842354542],[-97.84584135042803,20.839485838841426],[-97.84889908964533,20.836721955456824],[-97.8513819929936,20.835446017824836],[-97.85200335726853,20.83414617062965],[-97.85473345187813,20.832922160499038],[-97.85710123965958,20.833983579694063],[-97.8573823132449,20.83437924685211],[-97.85962625492351,20.835212663453262],[-97.86487727080606,20.834503029311975],[-97.86992294131085,20.831738305031536],[-97.87259821410987,20.832241146311617],[-97.87529199430168,20.833845756283438],[-97.87618568712611,20.833848475000934],[-97.87911978696832,20.834275881396366],[-97.88005482739572,20.83265430210031],[-97.88407059382365,20.825329169554607],[-97.8849090179458,20.823407112281245],[-97.88763577634512,20.81693690223051],[-97.88863769717256,20.814624517613368],[-97.88979432999366,20.81126395708185],[-97.89152700028808,20.80661447273303],[-97.89171357600554,20.806044880425475],[-97.89326521026965,20.802003289377524],[-97.89390168164499,20.8002494963485],[-97.89420682409104,20.799428062362097],[-97.89460298680001,20.79830277612632],[-97.89579221431558,20.79507758191488],[-97.89709307915132,20.791397607397982],[-97.89800954611002,20.788199862917395],[-97.8990148588565,20.78517211272441],[-97.90007189942907,20.78199478412614],[-97.90081000474362,20.779639998805806],[-97.90322452154453,20.77564144419057],[-97.90456997176295,20.77207573284909],[-97.90577061321767,20.76813679688803],[-97.90615710471832,20.766997281122713],[-97.90752344900716,20.76276557067223],[-97.90818625152491,20.76054451451887],[-97.9086236008406,20.759278369035428],[-97.90935746097034,20.757012165384594],[-97.90987406951615,20.755463656958398],[-97.91117929934785,20.751211839977202],[-97.91141280563039,20.750703833084344],[-97.91755565058054,20.730788844690096],[-97.91895454661562,20.726593872514627],[-97.92206472179038,20.71727433523887],[-97.92244660021686,20.71651878771513],[-97.90035806938914,20.704711253738765],[-97.89742568599536,20.703213827840273],[-97.89740280540548,20.70220830870494],[-97.89734559359067,20.70145308758748],[-97.89747761007345,20.70062758115239],[-97.89812847231872,20.699448348838644],[-97.90105769278222,20.698017256992557],[-97.90186129702744,20.697699645325088],[-97.90279261422023,20.69634518572815],[-97.90379466156122,20.695037836196605],[-97.90447779926745,20.6931171536977],[-97.90586065925106,20.69111001389183],[-97.90646718552176,20.690603280948267],[-97.91036188900688,20.69054969993823],[-97.91099084533312,20.690653011704626],[-97.91180324035929,20.690515020836642],[-97.9124923094721,20.690130670867745],[-97.91403746798284,20.68675316272879],[-97.913490321746,20.68571490456776],[-97.91341482192348,20.68487523186394],[-97.9133248151129,20.684553992639735],[-97.91399224618294,20.68303619980611],[-97.91547122676928,20.6818691645567],[-97.91557571079454,20.681140288402958],[-97.91590524809618,20.680537974075833],[-97.91610541060663,20.679618564786836],[-97.91573319312704,20.679515135796123],[-97.91580135500658,20.679293650686986],[-97.91613200368568,20.67919468924083],[-97.9161690040441,20.678968295483912],[-97.91628723030755,20.67821583309319],[-97.91672309319625,20.677387578681476],[-97.91677358485254,20.675974384305903],[-97.9172919743014,20.674710270963203],[-97.91781330146222,20.673637054871392],[-97.91775170542621,20.671917255420965],[-97.91783470409098,20.671244552534517],[-97.9165278034007,20.671240600669933],[-97.9153343384558,20.671521092412604],[-97.91414878391646,20.671839179945835],[-97.91386012541074,20.67194076053636],[-97.913478382513,20.672016824417767],[-97.91319071432792,20.67185571310023],[-97.91180669706546,20.67074178911929],[-97.90974951169255,20.668650397695842],[-97.90912023009594,20.667872349828087],[-97.90896300194498,20.667568174439225],[-97.90850210887282,20.666096420505767],[-97.90840308763211,20.665724375739728],[-97.90794072451712,20.66463835383621],[-97.9077910872731,20.664294039484105],[-97.90778351553314,20.66408441551806],[-97.90781782513625,20.663392621766718],[-97.90785363700667,20.663194806791125],[-97.90805915901035,20.66222868198429],[-97.90830247772078,20.661167578921834],[-97.90837977463099,20.660754279555874],[-97.90840299430624,20.66021594214925],[-97.90859545879528,20.65982680463253],[-97.90943842810299,20.65903823166292],[-97.90956845656012,20.658741693885304],[-97.90951312038584,20.658492990165826],[-97.90939268583105,20.658316574212904],[-97.90923244883896,20.658037617843945],[-97.90905037208188,20.65766524920349],[-97.90901090579422,20.657279231431062],[-97.90904682771031,20.657190351306838],[-97.90916447116604,20.656973073241602],[-97.909287306245,20.656752984977572],[-97.90964851925708,20.656157086802637],[-97.9101550255807,20.65582099897489],[-97.91046809775537,20.6556940674177],[-97.91104103153151,20.655429878651546],[-97.91147097102566,20.65499283533336],[-97.91187071188165,20.654400994731986],[-97.9118108526032,20.653455341644417],[-97.91162559467233,20.653208755461435],[-97.91068357723219,20.65215596218951],[-97.91050732864545,20.651953610298335],[-97.91015871545284,20.651694350012406],[-97.90964362876502,20.651349061259282],[-97.90896600187125,20.650631631902456],[-97.90891991695963,20.65057998645932],[-97.90884320505114,20.650359471858962],[-97.90879284050573,20.650153663570507],[-97.90870280841915,20.65005534593149],[-97.90855578137234,20.64995463904586],[-97.9086731658465,20.648844406173794],[-97.9086933094274,20.646826847221007],[-97.90873919345091,20.646512072437872],[-97.90873121510157,20.646241467535503],[-97.9086697972134,20.646084225478774],[-97.90847205368897,20.64590109859904],[-97.90843866938957,20.64579807583044],[-97.90836059957502,20.64553387508363],[-97.90789046151883,20.644864074832128],[-97.90739114699568,20.64429931397592],[-97.9071458338957,20.644044851867477],[-97.907083357847,20.643996948031713],[-97.90695101370869,20.643822349649554],[-97.90648786514743,20.643532553014495],[-97.90619719516343,20.64339068528733],[-97.90595883704884,20.643224067343567],[-97.90555761732162,20.642839643212994],[-97.90544692256685,20.642702393345132],[-97.90510246387026,20.642398007812176],[-97.90484709299727,20.642277483572002],[-97.90461131244922,20.642235843479057],[-97.90431012033059,20.64218081768837],[-97.90402555409582,20.64197019374552],[-97.90349277795991,20.641744060991925],[-97.90247414316963,20.64129306762129],[-97.9017666929355,20.64089242064972],[-97.90155697654706,20.6406750042226],[-97.90136304180606,20.640199966772514],[-97.90080548989681,20.639056305155407],[-97.90041742044576,20.63841338085757],[-97.90030009412033,20.63783760796082],[-97.90014783339058,20.637574731159077],[-97.90013902800041,20.63732320661478],[-97.90016841925063,20.637174273974892],[-97.9001671419631,20.637052590993335],[-97.90014336673556,20.63674811828548],[-97.90011887680481,20.636508656483954],[-97.90006379821392,20.636293824671725],[-97.89987386822304,20.635738632919583],[-97.89978067889416,20.635255804045983],[-97.89984345898569,20.634490164981514],[-97.90002255954676,20.63412582757985],[-97.90008141703896,20.63398154318986],[-97.90006445540342,20.633134058796315],[-97.89974903227926,20.632727460453566],[-97.89938202001377,20.63235474198484],[-97.89919242231935,20.63186746111478],[-97.89915199172822,20.631362675976106],[-97.899071859294,20.631001363950304],[-97.89895805898351,20.630743158786913],[-97.89876796475755,20.63052004124046],[-97.8985436521628,20.630336312059967],[-97.89795964628962,20.62996815610819],[-97.89755380178838,20.62949357371133],[-97.89726486733866,20.628701423020345],[-97.89687211687982,20.6273436650265],[-97.89606866849681,20.62602290710231],[-97.89562627688167,20.625476266620467],[-97.89533298553062,20.625116965399684],[-97.89518343134512,20.624640498812767],[-97.89497081212068,20.623899405219163],[-97.89498851155992,20.62345694185882],[-97.89514571483494,20.622698444147943],[-97.89521319646298,20.622533311864288],[-97.89574058343351,20.621665671904395],[-97.89595197504536,20.62129895159427],[-97.89635011696026,20.620578782504936],[-97.89682828652883,20.619689479949955],[-97.89718806136722,20.619132948224944],[-97.89879194421252,20.617711532021872],[-97.90147370933846,20.614193630733382],[-97.90271038139747,20.612619240984657],[-97.90300228297531,20.612222329842325],[-97.90380194543064,20.61114584205859],[-97.90430375591865,20.61053334931762],[-97.90573153382451,20.6092923297079],[-97.90603494467331,20.609220414303593],[-97.90769049799866,20.60870208023408],[-97.9081571906944,20.608483473614115],[-97.90875782055434,20.608134160737904],[-97.90840271528339,20.60777550594156],[-97.90697549597405,20.60657384625],[-97.90651510439596,20.606203973926995],[-97.90608673170351,20.605792145142743],[-97.90568789917643,20.6054168771945],[-97.90564648906837,20.605334022938052],[-97.905726703288,20.605186548118695],[-97.90591540964175,20.60485137390782],[-97.90611448869134,20.604532524621447],[-97.90643439255217,20.604224048527897],[-97.906542139095,20.60380139338946],[-97.90652527480802,20.603483864210318],[-97.90649207755587,20.603329749395186],[-97.90626196336126,20.602986451288075],[-97.90592260184815,20.60254972451247],[-97.90579332726759,20.601910843693133],[-97.90583378676865,20.601545463566083],[-97.90581415102872,20.60149297802269],[-97.90572028128082,20.601366588146675],[-97.90570173554511,20.60127816344624],[-97.90572972702705,20.601055125027415],[-97.90606867452368,20.59968347218171],[-97.90602205781624,20.59897886853372],[-97.90604025814633,20.598668011875475],[-97.90622203173587,20.598137391916453],[-97.90636303108272,20.597829494754137],[-97.90669750277885,20.597306969778856],[-97.90684990272928,20.597052390837632],[-97.9070060368914,20.59638521708672],[-97.90715847881575,20.59598169280656],[-97.90748958342544,20.59524320986759],[-97.90774196853948,20.594674016137958],[-97.90816767806012,20.594304426749147],[-97.90832180805518,20.594093414575184],[-97.90854378391856,20.594000765807095],[-97.90880029386204,20.594025585088104],[-97.90927590926549,20.594370057628907],[-97.91011285513258,20.59426705005933],[-97.91074926864161,20.59377671128709],[-97.91087578229457,20.59353357553715],[-97.91092130588879,20.593288264825844],[-97.91094354779659,20.592712744085247],[-97.91089673768869,20.59252771300646],[-97.91088771327912,20.59203887928379],[-97.91086030826887,20.59152712191559],[-97.91081433562317,20.590537020119143],[-97.9107786562422,20.590298478542593],[-97.91061946937691,20.589712443453323],[-97.91031080239941,20.58904971640567],[-97.90995465708886,20.588538107685167],[-97.90961730371703,20.588192849483733],[-97.90955150449008,20.588134023162297],[-97.90955991216163,20.587385703118514],[-97.91005730016661,20.586222208844106],[-97.91041676761682,20.586151178428395],[-97.91095552252028,20.586138771614173],[-97.91107850594256,20.586168950579065],[-97.91120744458703,20.586239845989326],[-97.91133246567352,20.58635974295919],[-97.9118565795822,20.58698792270991],[-97.9120009323778,20.58709936045409],[-97.912637453505,20.587161280434714],[-97.91286218854987,20.587135933710897],[-97.9134735336716,20.5869282123719],[-97.91368680585185,20.586808447189753],[-97.91407894743952,20.58654048955094],[-97.91455054157348,20.586544166211524],[-97.91470311260423,20.586539310631736],[-97.91494018587002,20.58626325712123],[-97.9150142361641,20.58554805062488],[-97.9150611739853,20.585098513550804],[-97.91557436475614,20.58375128566763],[-97.91773253497166,20.582242567214166],[-97.91798249087145,20.58204540347498],[-97.91850910696701,20.581172010930004],[-97.91890358907796,20.58057295669164],[-97.91905987068935,20.58034959666122],[-97.91927475245251,20.580176058659504],[-97.91998874643048,20.579881401641217],[-97.92094294083267,20.579678365076234],[-97.92155845110085,20.57856295353497],[-97.9216347291059,20.578246759529804],[-97.92209906773502,20.577698876118973],[-97.92334018461833,20.57671606904256],[-97.92340008267269,20.576325505849752],[-97.92353649510886,20.575700693839053],[-97.92372806656738,20.57502967755636],[-97.92482083930406,20.57460665707373],[-97.92578586865011,20.57440690324688],[-97.92649886658074,20.57401993565452],[-97.9268430986213,20.573735875906152],[-97.92721949791115,20.573576766813176],[-97.92781074573554,20.57305115965255],[-97.92728001386149,20.572418504526354],[-97.92720606711498,20.57208942738805],[-97.92729005218285,20.571888665808558],[-97.9277993464296,20.571496244010746],[-97.92865324578128,20.57100587510439],[-97.92929043321334,20.570619091858248],[-97.92973853073403,20.57027014399955],[-97.93001432111214,20.57006883752689],[-97.93024866146123,20.569849521901176],[-97.93082698066502,20.569554811212072],[-97.9314141733492,20.56936182517711],[-97.93262729495251,20.569352429786136],[-97.93295400642631,20.569108103744952],[-97.93309980447765,20.568870829076275],[-97.93361827097812,20.568398377746462],[-97.93416152606909,20.568145668428258],[-97.93464027521048,20.56787379263244],[-97.9348679564273,20.567709868239263],[-97.9350652256876,20.56757673830782],[-97.9351801695899,20.56766679004386],[-97.93536610096766,20.568051320520453],[-97.93581070061879,20.568774841346112],[-97.93605909388992,20.569107372616713],[-97.93643490554433,20.569465335218865],[-97.93659712145666,20.569521050826665],[-97.9366988399625,20.56949213033539],[-97.93710354860383,20.569309214780674],[-97.9374186169182,20.56917133066611],[-97.93770576218196,20.56898527643824],[-97.93797938369664,20.56868813740539],[-97.93824943278781,20.568440828970495],[-97.94310582704577,20.56260691746229],[-97.95021925199705,20.55895771715825],[-97.95631190275986,20.556861543281627],[-97.96446451560445,20.555883821925306],[-97.96735162668256,20.530897901962078],[-97.97093810336264,20.52528970384799],[-97.97263033962452,20.52320242344348],[-97.97944850007752,20.51501593473381],[-97.98504340794506,20.517036493659816],[-97.98760485691452,20.515601159856885],[-97.98815428730688,20.515674864109712],[-97.98976076041617,20.51508512161155],[-97.99015721361144,20.514740412982746],[-97.99103927586486,20.51364069960266],[-97.99131731592553,20.513264822014435],[-97.99193178200943,20.510830418565263],[-97.99204928039075,20.51069698102674],[-97.99288050290585,20.50763282886402],[-97.99742609986095,20.506095239026706],[-97.99524359146,20.503025831406887],[-97.9951064091241,20.502938567422405],[-97.99332841513421,20.502525333333324],[-97.9931909612169,20.500380249863554],[-97.99143577911457,20.49837018993452],[-97.99104707681153,20.49813017298993],[-97.9899526991992,20.497029597260678],[-97.9898303697255,20.49671773194757],[-97.98879099378473,20.495385200931537],[-97.99208852120938,20.491937550327066],[-97.99217168882365,20.491351119902333],[-97.9933703776008,20.48522135838084],[-97.99502937825633,20.485443520364925],[-97.99587343873259,20.486096303895465],[-97.99939798538855,20.486594593900293],[-97.9993449902185,20.486259185536937],[-97.99908783289214,20.485842786802095],[-97.99898060986817,20.485694929318868],[-97.99803156349617,20.483926937143792],[-98.0008781642203,20.483057756592984],[-98.00107653476243,20.483032988196214],[-98.00694689593666,20.482984455567816],[-98.0073472342998,20.483093707631213],[-98.00873756618125,20.48136132176427],[-98.00857644735328,20.480761164361013],[-98.00862671971942,20.480273181798736],[-98.00834252453183,20.474746036655404],[-98.01192263188659,20.471000125997136],[-98.01390900340664,20.465331206690337],[-98.01194656441231,20.463633682809586],[-98.01175779091523,20.462871309128104],[-98.01156195415774,20.461233006870316],[-98.01396933724521,20.46017215171088],[-98.01449999523413,20.459934675142506],[-98.01234047833486,20.458610970550012],[-98.01397292425287,20.456386182790084],[-98.01171030055781,20.45646211554123],[-98.013037404118,20.454725046394003],[-98.01683408402135,20.45482659546235],[-98.01721320670748,20.454495824410913],[-98.01759510323973,20.453794146961286],[-98.01805557962149,20.45335373645304],[-98.02002173995515,20.44997064556651],[-98.02357677345339,20.44924387236415],[-98.02397107045238,20.448934514831535],[-98.03348216383705,20.44778457898684],[-98.03405162765591,20.446838586874435],[-98.03386532281348,20.446524094371853],[-98.03472004738694,20.44532256764751],[-98.0349501390802,20.445166915660366],[-98.03775860263028,20.44350622050655],[-98.03805078334312,20.44325526537375],[-98.03892055339963,20.44242319810303],[-98.03900530940513,20.442233675280875],[-98.03907372975527,20.441595009193406],[-98.03914317174491,20.44127034974673],[-98.0399909565241,20.440185092320576],[-98.04040521256354,20.440081208137883],[-98.04278561057572,20.440567882438586],[-98.04441160084127,20.43674506788284],[-98.04613205113355,20.43666572871541],[-98.04662599546327,20.436801599686078],[-98.05251295412472,20.441453474135585],[-98.05265833957424,20.440845613994213],[-98.05361878495125,20.438589090698315],[-98.0553033808917,20.43867551675646],[-98.05566118589888,20.438776777728663],[-98.05699233392352,20.438747611125507],[-98.05741389321577,20.43856135920265],[-98.05860709078036,20.43783722559249],[-98.05904504624675,20.43743437112272],[-98.06127272360283,20.43548555130394],[-98.06316157628095,20.435984738671323],[-98.06651422272364,20.432724748070484],[-98.07005890734251,20.430326877381958],[-98.07048425990484,20.43027316257286],[-98.07188324310204,20.42609924619495],[-98.07345368650249,20.42416893916004],[-98.07390081711844,20.42336539486621],[-98.07479706232732,20.42109236324228],[-98.07660101406651,20.42080995343315],[-98.07685314436395,20.41887313663392],[-98.07610837933242,20.41768504541301],[-98.07244736655628,20.417053729090412],[-98.07269501254035,20.414432793437356],[-98.07385992293075,20.413564906609167],[-98.07735249848093,20.411310813997943],[-98.07904468012833,20.40892807563148],[-98.07746261839463,20.407834351867166],[-98.07686777528727,20.4070252243132],[-98.07678099620563,20.4060195649368],[-98.07731790098336,20.40311976007854],[-98.0883750324885,20.396402624993243],[-98.08860427898452,20.39479896122947],[-98.0886692641239,20.394021237374545],[-98.08860910671223,20.393221388448637],[-98.08857391784841,20.392421256128046],[-98.08858656079866,20.391455765620435],[-98.08864823702419,20.390419083378674],[-98.08898846468668,20.389685325150253],[-98.08938012782238,20.389068707413855],[-98.08979765767691,20.388522430065677],[-98.09041402092782,20.387903257783023],[-98.09110528109358,20.387283231962613],[-98.0931591573605,20.386590824182292],[-98.09902999692503,20.383048690377336],[-98.1015007042563,20.380876199332135],[-98.10193745358401,20.38028357478663],[-98.1020856649439,20.375404231778248],[-98.10432786289681,20.37437267884519],[-98.10533351038185,20.374279184751856],[-98.10606785486067,20.374026451599946],[-98.10774275442867,20.37407448536959],[-98.10802157815198,20.37356502062846],[-98.10807897550046,20.37160835666566],[-98.10785185071188,20.370976622308433],[-98.10764717442345,20.370453722313982],[-98.1067403051037,20.368123375023572],[-98.11105158778241,20.36631390240848],[-98.11306048679751,20.364614156481707],[-98.11418514913964,20.36414011726083],[-98.11560990235444,20.3632033964966],[-98.11334344607576,20.35950748140158],[-98.11355181070292,20.35920768374217],[-98.11332728226358,20.357733352692208],[-98.11250377939467,20.354295728771717],[-98.1131301654728,20.354485893843503],[-98.1138346210061,20.354511627429986],[-98.11473468224978,20.35395126962095],[-98.11517848121775,20.353647407617984],[-98.11740541147304,20.3501456544584],[-98.1239998953593,20.348502834273404],[-98.12618400477686,20.346296345815176],[-98.12689392859164,20.345069427788076],[-98.12719467123168,20.34439288871266],[-98.12540752913469,20.34329305806955],[-98.12494263337521,20.339752210403276],[-98.12629925724082,20.337012926523357],[-98.12683550316297,20.336231014269345],[-98.12759833191541,20.336278414478784],[-98.12794664651568,20.33601862051927],[-98.1326222655756,20.335822706032843],[-98.13294807920511,20.33548328584135],[-98.13477794967685,20.334060513009547],[-98.1351660629075,20.334000572143736],[-98.13871419074292,20.332766677343898],[-98.14421106551572,20.334471168389086],[-98.14455789567569,20.334679570435128],[-98.14264793879806,20.331969796110002],[-98.14491144549123,20.33054888890001],[-98.14801902428076,20.330439287442687],[-98.15096248507712,20.331439012174656],[-98.15761343611081,20.332451768283136],[-98.16287407046491,20.327978329229097],[-98.16745009300172,20.33064137969086],[-98.16772287082853,20.330861389566223],[-98.16967154211943,20.332314578494163],[-98.17020738682697,20.33227921516891],[-98.17038640881958,20.33235523301181],[-98.17065968768412,20.332635743978415],[-98.17614640881123,20.335219944563846],[-98.1802638833687,20.336011782593857],[-98.1817632544591,20.336282006080296],[-98.17923608464588,20.332355056983715],[-98.17956348108123,20.326520527310095],[-98.1793921051771,20.326193288911952],[-98.17922169056891,20.32567020138538],[-98.1788953654127,20.325123313192023],[-98.17869545665747,20.324548542586115],[-98.17849723267216,20.323654929617078],[-98.17843973467785,20.32174183982653],[-98.17820515570855,20.32132627814474],[-98.17853424229168,20.318954688398094],[-98.17847740174466,20.318209945958984],[-98.17953700084558,20.312785787380903],[-98.17792303821511,20.30941344712619],[-98.17869680610505,20.305132116626112],[-98.18042004721485,20.303449294345285],[-98.179834556716,20.299489482448962],[-98.17813647471701,20.297066629786286],[-98.17806782411719,20.294825840384817],[-98.18567671234024,20.294905740979743],[-98.18608709462842,20.294933260057405],[-98.1871712924202,20.293746441210146],[-98.18994418453667,20.29441083219149],[-98.19028696416285,20.294016408050652],[-98.19144805594033,20.291355122160667],[-98.20044753185158,20.292100445159576],[-98.20649988780525,20.29623883637396],[-98.20899870481543,20.29527410477823],[-98.21000766946958,20.293489762155218],[-98.21461957106726,20.292271162647182],[-98.21503869794276,20.291857809298108],[-98.21619281351451,20.29154583140712],[-98.22394097527177,20.294716875663482],[-98.22417538727137,20.29480435513102],[-98.22914390404793,20.2946519854666],[-98.23188774170893,20.296227824666005],[-98.23267153722026,20.300629243827416],[-98.23380924830371,20.300611135130964],[-98.23626546111592,20.30418532282596],[-98.23647647374139,20.304347479657395],[-98.24222073731005,20.304119347419487],[-98.24471037823156,20.301920245988015],[-98.24828566910566,20.301145149144816],[-98.25199747944123,20.30187550977581],[-98.25426911259461,20.301271296587345],[-98.25454824354307,20.301040558515467],[-98.25741754994328,20.298556423290336],[-98.25652644239403,20.29262990253511],[-98.25609263998973,20.29175121436947],[-98.25595924173257,20.290208721505053],[-98.25598344641867,20.289867637094176],[-98.2560311864043,20.286967800364323],[-98.25619816967765,20.286293648715684],[-98.25998703014534,20.285745035462924],[-98.26289200353074,20.281018268572666],[-98.26558709816015,20.274701546998756],[-98.26568332506565,20.274458459190384],[-98.26722613587503,20.272310610401632],[-98.27120553585604,20.270998952983575],[-98.2716661962744,20.270571949213263],[-98.27358420857689,20.26920192489297],[-98.27395096884072,20.269148956846834],[-98.27499019863228,20.26817384386908],[-98.27512314304118,20.26742855872311],[-98.2771054558986,20.26664667671065],[-98.27759030596775,20.266612985777954],[-98.28056650875271,20.266166632801855],[-98.28171577781575,20.26512800129109],[-98.28268629270963,20.26430617215857],[-98.28410809028998,20.263075147077927],[-98.28449165456624,20.2615936275609],[-98.28462420339042,20.26068237890712],[-98.28453942803185,20.260225416139576],[-98.28445801003704,20.259306347758866],[-98.28439522607187,20.257884154682188],[-98.28405436523747,20.257782668194523],[-98.28386742146716,20.256437388289953],[-98.28381552676376,20.255960078272835],[-98.28387145410369,20.25405988678193],[-98.2842194783833,20.249979295586854],[-98.28420341123012,20.249907359757117],[-98.28385614295854,20.248050385103795],[-98.28365636256149,20.24649278068233],[-98.2828527316762,20.24242388470134],[-98.28173001663873,20.236136532735145],[-98.28138318970127,20.233649169182172],[-98.28013479552772,20.229994717648424],[-98.27892478538223,20.22527289489426],[-98.27774178354679,20.222703741946987],[-98.27654165363515,20.220505177008363],[-98.27532404780743,20.219293115376672],[-98.27295096232012,20.217344802398713],[-98.2716478185028,20.216643730873102],[-98.27005050455477,20.215779777237003],[-98.26605495760299,20.21556676061681],[-98.26193795043554,20.215256660238197],[-98.26146653028144,20.21558357907719],[-98.26115817551374,20.21571281739915],[-98.25974057300158,20.215263809996998],[-98.25919349783021,20.21551228680488],[-98.25553226974353,20.217032450363263],[-98.2541559437874,20.21772581218562],[-98.25208720968106,20.21838234798969],[-98.25034288637386,20.218393660170022],[-98.24939235104449,20.21838817992102],[-98.24850578421803,20.218337854073354],[-98.24736467533063,20.218182191609856],[-98.24653555362204,20.21807345158396],[-98.24289232671157,20.218551941486055],[-98.2425151734447,20.219118260218238],[-98.24235755191955,20.219559843892398],[-98.24230933374395,20.21981520728258],[-98.24126734542062,20.22193487740077],[-98.23609108416923,20.22348279583491],[-98.23519629284812,20.22469569796135],[-98.23522603877171,20.225246566768476],[-98.2348375891516,20.227883292338788],[-98.23472422861249,20.22833463575637],[-98.23465731013852,20.228747400573525],[-98.23479576284802,20.229889892131098],[-98.23389172160154,20.23265306590514],[-98.23332482217859,20.23318858596099],[-98.23203490721573,20.234397738502253],[-98.23070546635688,20.23543138225989],[-98.22958877920081,20.236388327799943],[-98.22913872755078,20.236613217569868],[-98.22529270596874,20.236209320363514],[-98.22074632960027,20.236623873353324],[-98.21622027453304,20.237920564655383],[-98.21396224392794,20.234710722918805],[-98.2134096840835,20.234172228845637],[-98.21305171880431,20.234259656358518],[-98.21290961333062,20.234348049915354],[-98.21158592363525,20.235865897494705],[-98.2114029255232,20.236036776869526],[-98.20829264617242,20.239364654969222],[-98.20966254314436,20.242817091020015],[-98.20915189131614,20.24418166901978],[-98.2034460981518,20.24634111646037],[-98.20337382456898,20.24644976385565],[-98.20100029046273,20.24922545039493],[-98.20079808994649,20.24936397502347],[-98.19962146701556,20.25006265631015],[-98.19965724931228,20.250196635502505],[-98.1999261397603,20.25121028176335],[-98.19993320824886,20.251320586897236],[-98.19907356970452,20.251833007481935],[-98.19893649613005,20.25188775723285],[-98.19840552883079,20.25220356352753],[-98.19816901858303,20.252534193735926],[-98.19810136494203,20.2528629281216],[-98.19799226943223,20.2531450476161],[-98.19783913173615,20.25397531348284],[-98.19754041226952,20.25412209971114],[-98.19536994927603,20.25428654365777],[-98.19527649728764,20.25439992716906],[-98.19505576623254,20.255091071734455],[-98.19482934086449,20.255422777182275],[-98.19239567374518,20.258217746873356],[-98.19088221149332,20.258296646664974],[-98.19075495690731,20.25842402808945],[-98.18736404910334,20.258465499027466],[-98.18698684149996,20.258436511958337],[-98.18459355470094,20.25910682549403],[-98.18029899262376,20.25694627554958],[-98.18064775101448,20.25520290750444],[-98.17646745462258,20.254392176905355],[-98.17386038438895,20.25289106406973],[-98.17374253806236,20.25269839918036],[-98.17369312820938,20.25241000182956],[-98.1737125589978,20.2519458282473],[-98.17371433735775,20.25160964461827],[-98.17382997586895,20.250949746960373],[-98.17161072674458,20.250582936020123],[-98.16881174481205,20.246425261213744],[-98.168277421683,20.245916395386416],[-98.16759332559081,20.245519333278082],[-98.16678564942362,20.245111133160606],[-98.16327938553042,20.241517499862482],[-98.16280491131272,20.240980771086242],[-98.16253882347189,20.24052942388556],[-98.16239221391504,20.240050518904468],[-98.16126912561145,20.238076063974404],[-98.16118158028075,20.2377099608467],[-98.16109766763947,20.23666875659319],[-98.15706193044542,20.238196557135268],[-98.15610397940355,20.236423816945262],[-98.15598425629292,20.236102597598688],[-98.15342410079944,20.233410612998455],[-98.15265294044684,20.232284641718138],[-98.15226446804962,20.231560557377236],[-98.15197511966642,20.23116980650269],[-98.15175875913877,20.230756507795093],[-98.15161501324337,20.230389364699647],[-98.1514709046615,20.230090929395942],[-98.15113261031553,20.229768650260667],[-98.15089146297794,20.229446840448645],[-98.15023891587384,20.228848205358133],[-98.1496343283111,20.228364314805617],[-98.14878948633083,20.22739829465803],[-98.14835392508223,20.227098438885093],[-98.14739064793787,20.225582165353273],[-98.14734481810967,20.225078075218846],[-98.14741942512586,20.224757798754865],[-98.14746987342403,20.224414495505528],[-98.14754308533986,20.223781778254533],[-98.14766676600084,20.223370125428573],[-98.14781461371228,20.222981489885058],[-98.14700521092772,20.220614025652083],[-98.14890738114144,20.220975334774607],[-98.14924319840009,20.221012167249796],[-98.15171703420782,20.219620853545223],[-98.15202673283324,20.219353842879684],[-98.15510992158295,20.217217110825118],[-98.15517325262374,20.216776615161166],[-98.1552400031627,20.2162704630303],[-98.1529480776058,20.21246481833333],[-98.15409579544166,20.209101816133966],[-98.15401152352041,20.208752497403566],[-98.15139822446469,20.207873038619027],[-98.14850921569939,20.205051058712172],[-98.14835268508051,20.2047519829747],[-98.1451523617477,20.20191533032431],[-98.1446102006127,20.20139871304326],[-98.14402467559489,20.200020217489623],[-98.14383514329535,20.199505315094257],[-98.14241095457356,20.199075093816646],[-98.14195342790839,20.199101596175353],[-98.14082078827465,20.200056119462772],[-98.14044342791988,20.199911590143586],[-98.13843667264939,20.19859467676224],[-98.13817296986832,20.198110254006963],[-98.13788770439817,20.197818976151098],[-98.1377305458933,20.197410869308555],[-98.13768113386129,20.19685085768964],[-98.13781787624981,20.196450512501315],[-98.13768899058874,20.196263185074883],[-98.13740668517289,20.19575704787161],[-98.13741121330838,20.19508341634912],[-98.13724815158139,20.194554409214845],[-98.13708615490498,20.194156211993004],[-98.13701122533325,20.193857402032393],[-98.13658677536682,20.193792353326955],[-98.13607723435337,20.19334783669916],[-98.13570966256236,20.192672570296054],[-98.13494401825761,20.191672087267705],[-98.13491724470367,20.191348697873877],[-98.13489136347368,20.190863679362792],[-98.13420888551894,20.190321549362352],[-98.1335271663882,20.189644736102366],[-98.12965599517918,20.18880343556839],[-98.12948105383964,20.187568875381714],[-98.1292097307064,20.1870999458273],[-98.12795854757695,20.185941370679473],[-98.12796910438647,20.185461003479816],[-98.1281198858884,20.18354632380243],[-98.12806618230167,20.1833387699794],[-98.12932408916947,20.181208598002115],[-98.12937873723513,20.180958139291988],[-98.13178659734376,20.178586698994877],[-98.13005421967347,20.17620231853732],[-98.1303164306675,20.175866475315843],[-98.13255864238704,20.17058395886346],[-98.13205404258616,20.167027739855655],[-98.13309249259117,20.16602625444017],[-98.12983973512848,20.161241422888793],[-98.13042170122833,20.160858882616935],[-98.13355426883646,20.15947566683235],[-98.13367974314025,20.155099506460544],[-98.13398184677254,20.154569331801326],[-98.13563953462602,20.156157995279273],[-98.13958546545132,20.154961110608042],[-98.1399862245994,20.152594438692006],[-98.13989287280265,20.152381125824547],[-98.13969437122637,20.150347425917232],[-98.13620091921905,20.146986718034384],[-98.13296783221722,20.149504688694094],[-98.1294537957346,20.148256055795855],[-98.1251395397664,20.14858286621319],[-98.12473972277917,20.148518980343283],[-98.12181280846653,20.14779852379604],[-98.11723240711876,20.145485727165408],[-98.11285287789661,20.145336585203495],[-98.11020006289692,20.14328980025914],[-98.10741191999426,20.142846156569533],[-98.10708169667714,20.142688279569143],[-98.10593341796084,20.14242577729607],[-98.10283784692018,20.143246012507404],[-98.10245333607025,20.145616281117213],[-98.10233704262481,20.145809971984477],[-98.10095604868224,20.146525697739946],[-98.10064368847651,20.14682675198776],[-98.09929761085709,20.146800230886925],[-98.0978794437014,20.145389659133457],[-98.09903999599408,20.142163386529205],[-98.10073828611496,20.140112832131763],[-98.103143365714,20.13715103714918],[-98.10329510104151,20.135793857330157],[-98.10363105358545,20.13386425187838],[-98.10155656604303,20.129729543024325],[-98.10209196491547,20.12860921343224],[-98.10319897950012,20.127741357709112],[-98.10439485429788,20.12674916413488],[-98.1047873835609,20.12520098101379],[-98.10591880575589,20.12313596482801],[-98.10846246652295,20.12080339652931],[-98.11370074851993,20.12159797130704],[-98.11658722825865,20.12008607803955],[-98.12191332021996,20.124634568816305],[-98.12460706441146,20.12406989009014],[-98.12389965571134,20.121221228778666],[-98.12697938643367,20.11795074004567],[-98.12797363239781,20.11331120610589],[-98.12806487082355,20.11250916665682],[-98.12803186350789,20.112197838688587],[-98.1278953524697,20.111787719783536],[-98.12775847900764,20.11144311845402],[-98.12748346279903,20.110983192246692],[-98.12739210544242,20.11077467666621],[-98.12732652780392,20.110457317743283],[-98.12715713531475,20.11019046439941],[-98.12711971402786,20.109505343139574],[-98.12721682191261,20.109141394145468],[-98.12764017163022,20.1082129543463],[-98.12785361205295,20.107895333125953],[-98.12809734119782,20.10806308353682],[-98.12819681029248,20.107867607919104],[-98.12813876705746,20.107386746809766],[-98.12844414816311,20.10719660002877],[-98.12918097369754,20.10726518792626],[-98.1297594288053,20.10746827360981],[-98.12997919599718,20.107557632622786],[-98.13076675268758,20.107458167728907],[-98.13100464881285,20.10745811139384],[-98.13235166137014,20.106944054135568],[-98.13267531021893,20.106484721116885],[-98.13272485430485,20.10582239893131],[-98.13344392275604,20.1053920877917],[-98.13759550417859,20.104654783386252],[-98.13774613858493,20.104828795328388],[-98.14010795468585,20.102666660687987],[-98.14002260201755,20.10218178667077],[-98.14079361346353,20.100955387981173],[-98.14091580878397,20.100915652970116],[-98.14129020767757,20.10085772546165],[-98.14134249767937,20.100773790601693],[-98.14576186354287,20.097342045381993],[-98.14598530791147,20.0973275072447],[-98.14741853203736,20.09753820197659],[-98.14780658699254,20.097413818218172],[-98.1493639976078,20.097024939484868],[-98.14938387134254,20.09697931254709],[-98.15128448384917,20.09601532228578],[-98.15160801448286,20.0960927771589],[-98.15461470861942,20.09518313432318],[-98.15478305701254,20.095393283596252],[-98.15970474075851,20.092569967770885],[-98.1593037722721,20.09134322768108],[-98.15950481739407,20.091072645338443],[-98.15707193384054,20.085479109989365],[-98.15719080258151,20.084867442600114],[-98.15883273340216,20.082882948676968],[-98.15988574109241,20.081346108228615],[-98.16013203193319,20.080484182808732],[-98.1611177797094,20.079291871736075],[-98.16163077943042,20.077818889506204],[-98.16267736516221,20.07617788159621],[-98.1631188391425,20.075637892443808],[-98.16420496993322,20.07470967050432],[-98.16452078641066,20.074430116891165],[-98.16537422654494,20.074103156281467],[-98.16531381879219,20.073421360470718],[-98.16476523347546,20.071486601554057],[-98.1645477850737,20.07057971357301],[-98.16464021362248,20.070012114700944],[-98.16813350242751,20.057268716466865],[-98.17448263600352,20.053604400600136],[-98.17472031051426,20.053453143769445],[-98.1774206487986,20.04989252540412],[-98.18090285319539,20.046985539291484],[-98.1790370528089,20.041532843731545],[-98.17352919363174,20.034476337035926],[-98.17468841599589,20.02925790165773],[-98.16396113227108,20.022457818798785],[-98.16496095909054,20.019250371617147],[-98.16975861696483,20.013031247174695],[-98.16987632165097,20.01174105249703],[-98.17035857336634,20.011430644114284],[-98.17145267351361,20.003498884556677],[-98.17141634700641,20.003451728649054],[-98.17270958580673,20.001748632950125],[-98.17291154458792,20.000705267893693],[-98.17420123678482,19.997449055775803],[-98.17115526400801,19.994075614659494],[-98.1679535410434,19.990529443618243],[-98.16714163148646,19.987551774847645],[-98.16468831734636,19.98585136600707],[-98.16398811793113,19.98233378755191],[-98.16250524453704,19.98048806532387],[-98.16224001216023,19.98037662271321],[-98.16042798346689,19.978129571906265],[-98.164215327092,19.97455792443884],[-98.16496257770194,19.97357260836941],[-98.18069764033646,19.95975156774864],[-98.19782504468219,19.959792997415605],[-98.19812275344827,19.96199555888876],[-98.19882278679165,19.962370006387346],[-98.20003649961131,19.962314835605127],[-98.20114052796339,19.964469557897985],[-98.20742480763442,19.963918166505664],[-98.20734241050803,19.964317031309633],[-98.2097457533763,19.964382310512974],[-98.21310577886197,19.966520669256226],[-98.21311644901618,19.966930084967146],[-98.21313461570395,19.968144432333816],[-98.21320165997287,19.968370105385986],[-98.21708891529539,19.968129061338686],[-98.21976835914518,19.966536687333416],[-98.22006893267366,19.96621564328359],[-98.22236685504026,19.964043122381725],[-98.22356810023018,19.9604146055525],[-98.22587136308243,19.958268957261282],[-98.2267464910629,19.95622216972413],[-98.22654908295164,19.95341128733895],[-98.22619723895554,19.952322362056577],[-98.22102453719191,19.947914532696586],[-98.22208169451511,19.946932064855275],[-98.22522047700807,19.94858900824562],[-98.22732472057271,19.94737489358647],[-98.23017228264655,19.949406351324342],[-98.2317951501775,19.94902906106273],[-98.23389302912068,19.94881385061433],[-98.23738630595392,19.949780963082105],[-98.24377434290409,19.949125725629358],[-98.24956666904558,19.94918899299813],[-98.25094619351052,19.948489574302414],[-98.25160378149087,19.948149764331106],[-98.25384648594599,19.946070220161005],[-98.24951858613315,19.943914246566692],[-98.24914317469558,19.94369315749873],[-98.24881534726433,19.943563125072842],[-98.24669855632447,19.94311754633327],[-98.24638055186927,19.94313319973662],[-98.24591703669262,19.942955077733245],[-98.24219274914401,19.941149463595764],[-98.24402812389349,19.939528089156795],[-98.24421495304097,19.939219150846327],[-98.24609133496284,19.937172050959532],[-98.25104127967046,19.934851288365905],[-98.25222709571244,19.93245382750547],[-98.25121559732509,19.93054937174901],[-98.25386782293896,19.92892395036057],[-98.25626444945044,19.92930501623954],[-98.25561258700668,19.926210349515202],[-98.2555404367501,19.92586128642],[-98.2522040346584,19.92502764715107],[-98.25009868938747,19.926231567259606],[-98.24808580986974,19.92525889632452],[-98.2477166681656,19.924862887321297],[-98.24524023324653,19.92384439258194],[-98.24825192039606,19.92038941569882],[-98.24851308310787,19.917344086736477],[-98.24917585220464,19.917335876832965],[-98.25137156580598,19.91798911711885],[-98.25633930135353,19.915024171698633],[-98.25698470158278,19.916149346215775],[-98.26341725045802,19.915189801862823],[-98.2620291167147,19.9162623058956],[-98.26717057369422,19.915972846858438],[-98.26782019964264,19.916113919320594],[-98.26871587099475,19.91315628436479],[-98.26778857071463,19.9052763393193],[-98.2666411740222,19.901693719543346],[-98.26855327169307,19.90050138891786],[-98.26820993028213,19.897208277436903],[-98.26971178328728,19.895438960084732],[-98.2712083796726,19.89467481235829],[-98.27170826801506,19.89439998386166],[-98.27182593241542,19.894399386822954],[-98.2762457447397,19.893160380430345],[-98.27886317362652,19.892018149291175],[-98.28554846144539,19.8878644915186],[-98.28677440886264,19.887388564191156],[-98.28805951602601,19.888660547117468],[-98.29105260786571,19.888550199048666],[-98.28889440007333,19.886015815093685],[-98.28791833489106,19.88499548069484],[-98.28808432557992,19.88492042052502],[-98.28847151181992,19.883149899242028],[-98.29097731898662,19.880262857758964],[-98.2918853952566,19.87999869403734],[-98.29253245911536,19.879275487982795],[-98.29228289334162,19.878648173083434],[-98.29168835172914,19.87725382631436],[-98.29112960424618,19.87590864679919],[-98.2930827677398,19.8747515698073],[-98.29723562118858,19.87262025954942],[-98.29905296854412,19.871833380695932],[-98.30285416315917,19.870650987515432],[-98.30423515716785,19.87020072164836],[-98.3042832026548,19.87017650101609],[-98.30447291515634,19.870115870835548],[-98.30563634624934,19.86837484630479],[-98.3076099449894,19.86539762357262],[-98.30975906169704,19.862227411502374],[-98.31003237669307,19.86180579385416],[-98.3124598379789,19.858175241660547],[-98.31269596752321,19.857849264249467],[-98.31446613411532,19.855751416484622],[-98.31500434616237,19.855115604806258],[-98.3146266417283,19.85478566526092],[-98.3144314631192,19.854377720107323],[-98.30960615416114,19.851780057007943],[-98.30951924449732,19.851506097507183],[-98.30914265136329,19.851278604245806],[-98.3068502834193,19.85141046272014],[-98.30571417911835,19.850227437301385],[-98.30521258945743,19.850012785217018],[-98.30365687131672,19.849056336783633],[-98.30174500146575,19.847377078270767],[-98.30529208463412,19.845870525926784],[-98.30452976081756,19.845906853279075],[-98.30404967249683,19.845651614446695],[-98.30056392716938,19.845265717245923],[-98.29947078302331,19.845408090343597],[-98.29894985222774,19.845961698122608],[-98.29644402002839,19.846396122523913],[-98.29599990603714,19.847581024950273],[-98.28674989829511,19.84909761325656],[-98.28658359433501,19.84833725958606],[-98.28376931369058,19.84725119915123],[-98.28354150929567,19.84697121363166],[-98.27747164309324,19.848162051157487],[-98.27389009317568,19.846402009009353],[-98.27329129544927,19.84620374791558],[-98.27298550952958,19.84613735887467],[-98.27268576502036,19.846106204492116],[-98.27206352943836,19.84607744268658],[-98.27121204814063,19.846280677954837],[-98.27108009191619,19.846308748802358],[-98.2702247175605,19.845645056215233],[-98.2692297766049,19.84494675932308],[-98.26714388149998,19.8433373841321],[-98.26655041460901,19.841693917675002],[-98.26625374272362,19.84087373501933],[-98.26590706366562,19.839839070672383],[-98.26558782621856,19.838847049278513],[-98.26565696693262,19.836504686791557],[-98.26573198041757,19.835786455065374],[-98.26602174231806,19.835110201391558],[-98.26621052811083,19.83473916094198],[-98.26615459824052,19.834226242084526],[-98.26613229802007,19.833398668106327],[-98.26568120361657,19.832707389529162],[-98.26558046368939,19.832171686920333],[-98.26548589429495,19.832043814176643],[-98.26538818479827,19.831704562638834],[-98.26535047889632,19.831167810746308],[-98.26531977069038,19.8307858082257],[-98.26532064064412,19.830490411793733],[-98.26502860993196,19.825121766823713],[-98.26494495694226,19.82443247878996],[-98.26422044656942,19.822561464328032],[-98.26306686582205,19.821192482077777],[-98.26248607244582,19.821023366046575],[-98.26159064600012,19.820649575516143],[-98.26102399970426,19.82025640357972],[-98.2559746167916,19.81995476996599],[-98.25488387799521,19.819186195092925],[-98.25373814192113,19.81800988378359],[-98.2533620335351,19.81721942631947],[-98.25297227525772,19.816345090471657],[-98.25203651412335,19.815040374059947],[-98.25160859949659,19.81438146311848],[-98.2514128940237,19.813702180985388],[-98.25109405604172,19.813203315775752],[-98.25111884909796,19.812581982686993],[-98.2531757526665,19.811750360251324],[-98.25309670343233,19.811607084857656],[-98.25295302141694,19.811399400785945],[-98.25290541878002,19.811319713215653],[-98.25175366290341,19.8096423918318],[-98.25143476660008,19.809232942173082],[-98.25125852650905,19.80878240583064],[-98.25126394625545,19.808525790076942],[-98.25136448000796,19.80826355338712],[-98.25137081317092,19.808034280501147],[-98.25130158696237,19.807838432652602],[-98.25108417272844,19.807603623326997],[-98.2509977680192,19.807354408445747],[-98.24993226802286,19.806075002740272],[-98.24970852312453,19.806069464177426],[-98.24972124497276,19.798761902732565],[-98.25102747949143,19.79506446974898],[-98.25093942732559,19.794938688514833],[-98.24682447669852,19.792750999289865],[-98.24582734836741,19.79235297685335],[-98.24333838734117,19.789217989787517],[-98.24290875796453,19.788872692471045],[-98.24291174551678,19.7886466017207],[-98.23665279601039,19.781122181275407],[-98.23522261783779,19.77750707867233],[-98.22983835439385,19.77448304516338],[-98.22583671705667,19.776595447045793],[-98.22563971540194,19.779787116075454],[-98.22097256893511,19.77814174772635],[-98.21615555019889,19.778416963787834],[-98.22142424649991,19.77357635511271],[-98.21994412992319,19.77309719137503],[-98.2147474377532,19.774865731742523],[-98.20975860445589,19.773919679418213],[-98.20264141507289,19.767954911431843],[-98.20209431108907,19.768285484948876],[-98.19562875196436,19.765740602882545],[-98.19526902342977,19.7656735062327],[-98.19482654477713,19.76554817236763],[-98.19351749408537,19.762954092354278],[-98.19522077268743,19.762973203392676],[-98.19579782922528,19.763074563848534],[-98.19828703930625,19.76127872425576],[-98.19863814151802,19.757576821028977],[-98.19577448936911,19.75430450493144],[-98.19622841911064,19.75031560480602],[-98.19784547613472,19.7487878415065],[-98.19661189659183,19.741720867857737],[-98.19687183256019,19.741713749358325],[-98.19739328764206,19.741801521340562],[-98.19800200840729,19.741552393039626],[-98.19860936758118,19.741541440416484],[-98.19903667924171,19.741279849956413],[-98.20437723812114,19.73859369799675],[-98.20692678239487,19.73913957041333],[-98.20771588164712,19.73897569226068],[-98.20821591198558,19.739149819851093],[-98.20860421404319,19.739152197180488],[-98.21082795857387,19.738639808014227],[-98.21194949058531,19.73994766887455],[-98.21225489386859,19.740183987543162],[-98.21510934330291,19.741314451184792],[-98.21738316882897,19.740145975823737],[-98.21896015490591,19.7369869621196],[-98.23136937712513,19.729234877902172],[-98.23307460131088,19.72756082831222],[-98.23721534610877,19.722889876144222],[-98.23771929406422,19.72269060061427],[-98.23876792169477,19.722233254719413],[-98.23936198728586,19.722183183876666],[-98.24390700348556,19.721615082882693],[-98.24862112713492,19.71918388085578],[-98.25531891771476,19.718829019189343],[-98.25386915627473,19.7167205828527],[-98.25512356947957,19.712954439063708],[-98.25503449797776,19.70819897504134],[-98.25344622858023,19.707151873425403],[-98.2525759645124,19.702730680253126],[-98.2524113088204,19.693125799718132],[-98.24611061459842,19.685310490997438],[-98.24451230236525,19.685491972822888],[-98.2410650808236,19.679112848285513],[-98.24085597696069,19.67815333720762],[-98.24078628936115,19.675856639520305],[-98.2327541311538,19.676829289984994],[-98.22808151852837,19.68041945026357],[-98.22909220122483,19.674875859916256],[-98.22066471875189,19.67367207962053],[-98.20958143780024,19.677174178703467],[-98.20686362371106,19.67468348238424],[-98.19615675425132,19.675363602115056],[-98.194380352807,19.674703070033786],[-98.18981993488512,19.671012487514872],[-98.19054585440625,19.676278773028855],[-98.18900354231226,19.679548419666048],[-98.18736851928946,19.67973239529846],[-98.1826723222859,19.676917126303124],[-98.18130284759872,19.673698801160583],[-98.17667894115789,19.674640864082107],[-98.16960745322808,19.672762893870924],[-98.16948968817002,19.671651918236932],[-98.16452621513167,19.668979503454864],[-98.15972159018838,19.669390997285518],[-98.15806255490355,19.670739395592477],[-98.15759592984523,19.67090517461321],[-98.15412433260053,19.67393547280801],[-98.1528355288745,19.676459311312783],[-98.14864170955127,19.676914698152984],[-98.14883798195717,19.680112900145843],[-98.14521230942324,19.681940811249206],[-98.1437262591025,19.683652531155474],[-98.12470375317855,19.685209904711996],[-98.11862127797298,19.688242310405485],[-98.1149176201933,19.6879630137164],[-98.11228029577819,19.685561050408523],[-98.11039692187762,19.685781423587912],[-98.1107796036431,19.683950882644922],[-98.10651301494147,19.681781218913386],[-98.10658825633487,19.679092736578696],[-98.10270610566175,19.67578149949327],[-98.10194346233993,19.674294736332513],[-98.10001859321841,19.671160694981268],[-98.1010079208026,19.66804988963588],[-98.09606645858406,19.67180522804432],[-98.09504017101096,19.672586424700626],[-98.09417288834288,19.673236671940174],[-98.09286049319093,19.67449856611813],[-98.09209158154795,19.675702309071596],[-98.09142493605509,19.676791096331613],[-98.09091550287519,19.67761802462985],[-98.09050532635308,19.678600601182268],[-98.0927017582332,19.6832979484534],[-98.0904484116599,19.689455896795266],[-98.08427303289642,19.693398986515035],[-98.0824174018777,19.698238518024425],[-98.08280739626338,19.700755792422797],[-98.0742879465663,19.700692423073235],[-98.07387518885776,19.702653102591853],[-98.06880907924068,19.703366046161477],[-98.06754179019276,19.706987976419214],[-98.06734040533286,19.707058262399812],[-98.0650962434704,19.708142239345534],[-98.0646128279156,19.708655218766808],[-98.06618302533116,19.711317243460428],[-98.06574886134047,19.71323149605263],[-98.06811277715661,19.716010215833478],[-98.06723291197909,19.71920598410128],[-98.06692925440365,19.72519177779111],[-98.06597156848329,19.728076961220154],[-98.06451757940084,19.728780147687303],[-98.0636314508734,19.72886895739498],[-98.0608084411669,19.728917430073068],[-98.05625122158386,19.726022666709866],[-98.05609976727544,19.725436253669045],[-98.05600737042431,19.722795180067294],[-98.05316125501935,19.72037825263277],[-98.05393404921563,19.719529754365],[-98.05452652043982,19.71785292360488],[-98.0544687461612,19.717393170358207],[-98.05404486717504,19.716453217376284],[-98.0540960288298,19.716003212130943],[-98.0537100149968,19.714953391649715],[-98.05291537640232,19.713143003614334],[-98.0498780871107,19.71230849323655],[-98.04604507346073,19.707154969082467],[-98.0456463709595,19.706669221706818],[-98.04344409489062,19.702546842375227],[-98.04006687455364,19.69959261849317],[-98.03979263532267,19.69574965818248],[-98.03966278364271,19.694110404415255],[-98.03984458115423,19.689510654780236],[-98.03735026658308,19.688172094774302],[-98.03614651113281,19.683054904081757],[-98.03601338699207,19.677683662102027],[-98.03694787568674,19.671826788881162],[-98.03600387554735,19.665082096634137],[-98.03788387003533,19.648474729849227],[-98.04221202205292,19.640224705335186],[-98.03140712717311,19.63779302771752],[-98.00398408035312,19.632024670006388],[-98.00293114616704,19.631997324305928],[-98.00244812260866,19.631829715122024],[-98.00110360930057,19.63211258830836],[-97.99667630411005,19.630152190805575],[-97.99109484109545,19.628977935253033],[-97.98973527711644,19.629571818226054],[-97.98357665635507,19.629299280919554],[-97.98329365441026,19.628955918419194],[-97.98271346067071,19.62897926735957],[-97.9824009429866,19.629062655247765],[-97.9795903120206,19.6277223844711],[-97.9793970013526,19.62759265220103],[-97.97409576268751,19.625055953034575],[-97.9679192728903,19.624712553926315],[-97.96847573548621,19.622521977012866],[-97.96797988946435,19.621731033026094],[-97.96918364694062,19.61950018613453],[-97.96721648005712,19.618448162828372],[-97.96662125535619,19.617785686647778],[-97.96463469214956,19.614128223138664],[-97.9577235589702,19.6107443663725],[-97.95772695065983,19.610518635737265],[-97.957750410612,19.61022983265002],[-97.95708972444385,19.608677533334287],[-97.95628491071625,19.60808576150805],[-97.95608303377242,19.607419661732024],[-97.95600529097948,19.607263280243274],[-97.95478467399766,19.606130572616223],[-97.95465764530638,19.605864637768207],[-97.95435115561355,19.605764293824393],[-97.95374789923653,19.604843237512625],[-97.95385760898574,19.604229041684903],[-97.95063008403906,19.60286273520967],[-97.94995764307782,19.59840737994574],[-97.94970293759985,19.597848214045314],[-97.95054456745589,19.592541177466217],[-97.95018919052848,19.59225313241444],[-97.95015136830114,19.591857964170174],[-97.95035085925497,19.591505192907846],[-97.94998598349957,19.59057584041011],[-97.9497461838522,19.590459181151857],[-97.94971032738323,19.590242749482854],[-97.94981387769167,19.59004703732205],[-97.94792711406302,19.58726954887942],[-97.9471717255002,19.586771443839382],[-97.94658859673092,19.585523724214],[-97.94302158087174,19.58592546805113],[-97.93976674126998,19.588297639038387],[-97.93886861154454,19.587338448994217],[-97.93544279150808,19.588468341632336],[-97.93264384618777,19.58733028923689],[-97.92908711409063,19.58899666102144],[-97.9284867602932,19.58949057994215],[-97.92784215477792,19.589688672795205],[-97.92710458655756,19.589748955635628],[-97.924872427678,19.58921653894015],[-97.92475943821591,19.5896409814693],[-97.92452029150985,19.589973813830795],[-97.9222861318633,19.590172703724647],[-97.92158853150306,19.59037907926512],[-97.9166346505906,19.593746227206793],[-97.91643545080831,19.5938676557584],[-97.91612246384653,19.593658755435456],[-97.91612113836209,19.593574896200494],[-97.91280571335363,19.59007329046625],[-97.91162293377232,19.587522278370272],[-97.91159328293577,19.584092532084014],[-97.90821743875273,19.579501231861514],[-97.9068734444694,19.57912788838945],[-97.89822546815441,19.577064333071178],[-97.89264965759043,19.572829314765045],[-97.89091012787816,19.57339533584002],[-97.8863329474114,19.571421484352243],[-97.88437648223743,19.572362536095966],[-97.88101117694805,19.571349291542447],[-97.8785542173967,19.569056916471197],[-97.87583282425936,19.563819985689918],[-97.87243820695562,19.56195912377609],[-97.86920750697152,19.55757353257445],[-97.86832641234281,19.55349482123188],[-97.87030517207353,19.54589537491131],[-97.86948967553292,19.542891329089457],[-97.87168098490736,19.532152174661462],[-97.87793690966521,19.524101596423634],[-97.88080515708992,19.522989928735058],[-97.88755762405009,19.517267660414745],[-97.88705998906084,19.51549032976908],[-97.88845943675807,19.511662633391097],[-97.88818026815647,19.509169448298394],[-97.88960571001365,19.5043476201364],[-97.88126455267513,19.49983072157613],[-97.87743502838299,19.502732526879754],[-97.8749415882732,19.503339020940587],[-97.87085541217954,19.500227177859927],[-97.87190886091844,19.49855459087388],[-97.86694312047808,19.497615985921186],[-97.86584327032733,19.49639474950783],[-97.86252636119525,19.49588012736382],[-97.86201761546437,19.494619059371757],[-97.85817079365796,19.493127937907047],[-97.85190169268736,19.487465991495412],[-97.84873909587287,19.482781909974904],[-97.84741887309804,19.47782079916084],[-97.84735320961443,19.47400309807813],[-97.84893201084122,19.47160597691237],[-97.85068785097008,19.47121699872207],[-97.85227389629642,19.467999572738506],[-97.85383659649813,19.467872112606983],[-97.85747691780074,19.464785947155804],[-97.86081985344919,19.45984961440365],[-97.86227149521403,19.456175525231515],[-97.85942247956837,19.454345936352922],[-97.85760384390085,19.456468948745794],[-97.85393049297761,19.45830306845187],[-97.85231783911638,19.46206357423455],[-97.84594647416361,19.468927320569435],[-97.83986537230766,19.472184530152504],[-97.83062101741109,19.47532033207591],[-97.81474803225404,19.48252126115824],[-97.81257296399076,19.48685514382504],[-97.80545912394058,19.489469852787465],[-97.79453866935268,19.498374600654017],[-97.79533403852287,19.49569158213359],[-97.79490105978255,19.48648675571286],[-97.79682020253682,19.485034507541172],[-97.7977513284199,19.4768427201887],[-97.79685926296042,19.472442842239957],[-97.7865801257833,19.47045228872861],[-97.77804574746688,19.472877405223812],[-97.77396355834111,19.469174549413765],[-97.77413851908238,19.463663585759775],[-97.77363907057565,19.45877521672594],[-97.7707112321603,19.45661419657324],[-97.76935313456175,19.45798263531725],[-97.76342144750731,19.457227762227035],[-97.75480144733206,19.457542873860348],[-97.7569267409886,19.453155032002314],[-97.75398212479541,19.45036853725412],[-97.75097217865931,19.451484975948347],[-97.74698649956343,19.450437010409246],[-97.74464688030315,19.44354791780779],[-97.74520624027713,19.439353162413568],[-97.74727873038853,19.436333971930367],[-97.74358169463068,19.434471937738977],[-97.74213779433319,19.432322205014543],[-97.73850987201769,19.432902703794582],[-97.73672946716903,19.43484691825995],[-97.73518956646512,19.432529267701],[-97.73410261911982,19.43497992597395],[-97.73043037791598,19.432502723066932],[-97.72694597145363,19.43295719491448],[-97.7245251239587,19.431636946326364],[-97.72335711304271,19.42512045886224],[-97.72068180565856,19.4225780283042],[-97.72113942765736,19.418575016881277],[-97.71194062237913,19.40632099414978],[-97.70878378121785,19.405785369496527],[-97.70659248733682,19.403042212943944],[-97.70772456276836,19.39980732693067],[-97.70545484076462,19.393641375791503],[-97.70250971705804,19.393212849157578],[-97.698173065726,19.395614983972393],[-97.6964119848916,19.390957728134367],[-97.6938103979063,19.38916338347019],[-97.68570245821252,19.387039687790775],[-97.68196936242617,19.38844601297228],[-97.67909347304914,19.384774642641844],[-97.67627778233941,19.376166909936217],[-97.6765220102605,19.371400365388865],[-97.6738588154883,19.367471463062373],[-97.67005169162991,19.367047761975698],[-97.66881319736018,19.368349133072286],[-97.66612469994163,19.3653104580103],[-97.65797940837257,19.363674068443345],[-97.65571848499712,19.361663156780594],[-97.65564536951615,19.35983579911914],[-97.65365094949556,19.359362101819443],[-97.65363115330962,19.35379997602945],[-97.64029032520267,19.360751456485787],[-97.63602737893063,19.357452518919445],[-97.6314461598015,19.355395432630246],[-97.63565868128887,19.34374958973683],[-97.63871172797224,19.33826312641918],[-97.63578956117544,19.337473599586644],[-97.63071689149734,19.33452353482545],[-97.62799136610232,19.334645399490853],[-97.62567420883772,19.33139363827587],[-97.62551982111017,19.32637865439864],[-97.62635556461453,19.323933965303922],[-97.63285446306298,19.320278076411682],[-97.63312229343012,19.31615797679217],[-97.63894874025567,19.319049990447922],[-97.64248181570429,19.311477127007947],[-97.64608887372037,19.30640931596372],[-97.65804469382249,19.310664525462585],[-97.66021897879608,19.30746336697854],[-97.66506205748794,19.297279803398226],[-97.66652238986194,19.294723060043395],[-97.66952020451879,19.292134219963714],[-97.67530335534269,19.292795971541466],[-97.6783479957304,19.29242881589107],[-97.69093324448357,19.285888115455066],[-97.69412716372256,19.28902324011665],[-97.69921749705492,19.29185922037294],[-97.7003544861962,19.295123774381068],[-97.70473688410135,19.297057700576943],[-97.7104674063392,19.295635437114015],[-97.71574954807204,19.297849102710813],[-97.71650306466904,19.300433371162285],[-97.71964294687706,19.304753230650192],[-97.72932342554952,19.293109915443495],[-97.73833273694322,19.287099632209163],[-97.73765564054054,19.290733166155064],[-97.73680229174306,19.293160019203754],[-97.73702680414755,19.296690314748332],[-97.74149726857695,19.30242625477797],[-97.74509180876362,19.305259933040134],[-97.7537052107524,19.299584522613884],[-97.75705409362723,19.299767988123676],[-97.76508548237143,19.28685914012766],[-97.76967763369748,19.286595476393757],[-97.77138552480318,19.28375265226282],[-97.77351686301506,19.284043421109345],[-97.77336939252245,19.28625011475259],[-97.77673568041894,19.28631736240328],[-97.78465273185623,19.28849473701524],[-97.78727901609938,19.290123843401204],[-97.80047142542594,19.30158338672578],[-97.82085689465157,19.304730994951797],[-97.83927042555962,19.301376166664625],[-97.83724806173086,19.29480090839587],[-97.83960224416359,19.29227981369081],[-97.83842866695886,19.28726440479926],[-97.84596556640719,19.287975687312326],[-97.85971698837892,19.287199516904366],[-97.86177652282663,19.285408459252096],[-97.86392513376848,19.27986719724521],[-97.87028704958641,19.27058598757452],[-97.85405180854957,19.257328296841365],[-97.86129543497503,19.25624046283218],[-97.86513558872076,19.253949391085996],[-97.8661832544002,19.251312138533137],[-97.87047257023465,19.240276852710053],[-97.86038336348503,19.24407737385775],[-97.8546773140153,19.228204485244305],[-97.85465423560004,19.228141570957916],[-97.85390542930185,19.226090751312086],[-97.8509882918903,19.222934223703362],[-97.85422004079203,19.220222799833607],[-97.85426564060015,19.22018597870573],[-97.86212320885033,19.21384063710269],[-97.89058808578835,19.201963532757304],[-97.89557830714199,19.19751836158622],[-97.8936297037709,19.192286733927858],[-97.89420757803168,19.1911539903669],[-97.89074914127508,19.189621139247265],[-97.88983906691084,19.186956742405073],[-97.89661005339406,19.183240514902423],[-97.89723751763819,19.181779062648104],[-97.90250634508868,19.1796078593801],[-97.90460587816739,19.17758640699435],[-97.90801773805026,19.18083348044678],[-97.91137424105415,19.17960925699191],[-97.91499001390923,19.176147541592798],[-97.91507003756823,19.17316806962691],[-97.92047390669018,19.171016125223616],[-97.92568648598035,19.167261285078325],[-97.9282026391561,19.164213416637494],[-97.9375895394291,19.170450732719075],[-97.95031273545118,19.17730937053551],[-97.96671861979956,19.187468823394227],[-97.97443294027619,19.191013187890007],[-97.97895015310507,19.192570141199724],[-97.99396861626252,19.19639675065679],[-97.99862340862933,19.19832473753428],[-98.00136555218211,19.203667836004627],[-98.00440676761724,19.206265333556985],[-98.00572820080254,19.20885361044651],[-98.00940026236958,19.211376441942207],[-98.03168626745281,19.230938382566706],[-98.03523386956101,19.22412642939878],[-98.03461789056627,19.218771969240663],[-98.04069489528791,19.21255083159656],[-98.04153060077459,19.21023172129378],[-98.04631694353742,19.20858896176253],[-98.04756478220122,19.207053324455842],[-98.04988037150957,19.207474412914337],[-98.0550656432963,19.20316430933468],[-98.05932663269868,19.20122641423285],[-98.06277261993353,19.194924188261382],[-98.06889808111038,19.1895576601936],[-98.06961271739209,19.18516703653853],[-98.07558530827532,19.179907500050774],[-98.07625045302552,19.178771353237323],[-98.08585551850354,19.17136348432348],[-98.09034659055658,19.169392420045995],[-98.09357057993378,19.166181203885458],[-98.09695267187476,19.165013645439842],[-98.09734107849539,19.1647339275151],[-98.10031874747591,19.163366651788863],[-98.09935773982897,19.161394750857255],[-98.1026969960746,19.15752034078787],[-98.103222872846,19.15257359956945],[-98.10760078703555,19.147654357551062],[-98.10843821031028,19.14522584876022],[-98.11227100383144,19.141487505045063],[-98.11549607028547,19.140043698333045],[-98.11611934309565,19.13805635707348],[-98.11673834648423,19.137713063816193],[-98.11942123469703,19.13528118733643],[-98.12383404401464,19.132983900576335],[-98.12458220952402,19.13242113879744],[-98.12815303803615,19.12938660285829],[-98.13216521055102,19.128703901894085],[-98.13628487195439,19.124007053034745],[-98.14042367791467,19.121361425453927],[-98.14314549410489,19.118303619532412],[-98.14340324172042,19.118166608319143],[-98.15012812629669,19.114145263304863],[-98.14829785265414,19.117554513300036],[-98.14557203472992,19.119336402713145],[-98.14475872250642,19.121268821504884],[-98.14664581438808,19.12275337189078],[-98.15140069380658,19.11855647509111],[-98.15487249124214,19.11648001494507],[-98.15695441209698,19.112898850616943],[-98.1600981749994,19.110478221143183],[-98.16175425253647,19.107272184557473],[-98.16617577653756,19.105071860902115],[-98.16922368243917,19.10715525800225],[-98.17711371441573,19.111474377961542],[-98.17774636247333,19.11181743288506],[-98.18255211526468,19.114374540888605],[-98.18543336065699,19.115592597419607],[-98.18625179852228,19.115837898066275],[-98.18653723230068,19.115946483414803],[-98.18763352873822,19.115832668714575],[-98.18777928694954,19.11583331190195],[-98.18871394026985,19.11525481804324],[-98.18921045352835,19.11534092445504],[-98.19234412511048,19.116105950682822],[-98.19278132903207,19.11612268100731],[-98.19409569069052,19.116346484358473],[-98.19460572610984,19.116373403816965],[-98.19515628533009,19.116632558204344],[-98.19651834357353,19.116594603673263],[-98.19676327320735,19.11654136039607],[-98.19810216654622,19.116495546915985],[-98.19923299224678,19.11561065307012],[-98.20047055361971,19.115302149583897],[-98.20131873282372,19.115379891210353],[-98.20176457172596,19.115227812700198],[-98.20426171541948,19.114914283690723],[-98.20434781419954,19.11492892749726],[-98.20421557900687,19.115201094149825],[-98.20386129103065,19.115780968779006],[-98.2019666839899,19.116640268256674],[-98.20065855781036,19.11736106620117],[-98.19973238098135,19.11816900357826],[-98.19903482870467,19.118230040294065],[-98.19727753540724,19.118777970571216],[-98.19500171190504,19.119579900998474],[-98.19412294075028,19.119896592417206],[-98.19373465949917,19.121112789296546],[-98.19238243882688,19.121619700694225],[-98.19163865499792,19.121936971996604],[-98.19170769029108,19.122786426178266],[-98.19714263831264,19.12749707781734],[-98.1881839678257,19.135516560810743],[-98.18904005444534,19.1368316394354],[-98.18953812599602,19.137589189158803],[-98.19070669341892,19.13998573650764],[-98.19639388007067,19.13919970611522],[-98.20048035198283,19.13754471249058],[-98.20513782900866,19.133632352571567],[-98.2080402177807,19.13269947180123],[-98.21719854153082,19.134925253223344],[-98.22018153645985,19.136438619860144],[-98.2230389009759,19.136637600000768],[-98.22587207495866,19.140217933795157],[-98.22441769143518,19.14185361378412],[-98.22670516716738,19.14604153480991],[-98.22989608048772,19.149039773877632],[-98.22839654305511,19.153906238722243],[-98.23024123779288,19.15672860753716],[-98.2367485337927,19.15725720470175],[-98.23787792766802,19.155862468019336],[-98.23796586248494,19.15767165489291],[-98.24207540018477,19.157576493839656],[-98.25457795043934,19.160665786965694],[-98.26001191514882,19.16036614585056],[-98.26267604059643,19.160919298865338],[-98.26368136921013,19.16113851771695],[-98.26478683340434,19.1614357816685],[-98.26558182632988,19.1616075191875],[-98.2661454733186,19.161772607284433],[-98.26663052096637,19.161903362366957],[-98.2672963707177,19.16207097708036],[-98.26791033355971,19.16226746576592],[-98.26839508833086,19.162345534751182],[-98.268807467089,19.162295658838502],[-98.26934458394089,19.162308939603292],[-98.26970279308563,19.162389884053027],[-98.27019476403547,19.162666369944077],[-98.27102964005962,19.162958180140322],[-98.27133035454415,19.163120224220734],[-98.27150829735308,19.163308224716957],[-98.27184225667077,19.16448574133858],[-98.27206336616734,19.16495504579825],[-98.27239246521822,19.16519509698037],[-98.27384749280083,19.165549925064113],[-98.27714574745642,19.166793949419457],[-98.27944787993346,19.167965645633103],[-98.28367357450776,19.17101803524082],[-98.28759687942278,19.173931902509196],[-98.28893598679434,19.174723723047236],[-98.29334801311501,19.177433958439963],[-98.30241435072429,19.18683360281409],[-98.30547836551148,19.188313561090922],[-98.3071559338884,19.189203939408856],[-98.3121726924465,19.190398822523264],[-98.31547749191952,19.184344567709843],[-98.315912441835,19.183526082236824],[-98.31612500577955,19.18315409835901],[-98.3161501585912,19.183109007102075],[-98.31669798284543,19.18195349536103],[-98.32264450443915,19.17097180555055],[-98.32371459207951,19.168910253810566],[-98.32392928533665,19.168661884492167],[-98.32532902610296,19.170092197204724],[-98.32639084109383,19.17057052424633],[-98.32775878290369,19.171203076956488],[-98.33130941678695,19.172900125031504],[-98.33508841083807,19.174719093812257],[-98.33658872723561,19.175339465829836],[-98.34115649221934,19.177192475817947],[-98.34251866164868,19.177841783724602],[-98.34271029250505,19.17793974214004],[-98.33984425502382,19.186115091797205],[-98.33789275075657,19.19205009448649],[-98.33604293523837,19.19312660829314],[-98.33492217032506,19.193777903425996],[-98.33433298721246,19.1945497162439],[-98.33256872882373,19.197291327400137],[-98.33068096495992,19.200150050782383],[-98.33493584349327,19.204469578997703],[-98.33684579435322,19.2036327864746],[-98.33768568317544,19.20389218035109],[-98.33905395436449,19.20396186323029],[-98.34415679982277,19.20530111907931],[-98.34453737597295,19.20607259360463],[-98.34655371046904,19.21032428925031],[-98.34917069656535,19.214441478385538],[-98.35186206540828,19.219003621564866],[-98.35383004295886,19.220428210533612],[-98.35441399248373,19.220859606794534],[-98.35690902811052,19.221582415122384],[-98.36069361534976,19.22298195905148],[-98.36070032109001,19.223528571830343],[-98.36599533399476,19.225315420793038],[-98.36891677921614,19.22611812011121],[-98.36822041998994,19.227673734833786],[-98.36454634232126,19.233125252927607],[-98.37039647565331,19.236020145272676],[-98.37590289965277,19.245481493814964],[-98.37656034571194,19.24734077703033],[-98.37673493730921,19.24872144736787],[-98.3778678215487,19.250157630954504],[-98.37669243922204,19.252380071630114],[-98.37747935957589,19.252757046315537],[-98.37803869057512,19.254583800287776],[-98.38040346670914,19.26171561180479],[-98.38910231177749,19.270988993155072],[-98.40132862666599,19.28239818358162],[-98.40229839080291,19.28575178460602],[-98.40176317971492,19.287880175973044],[-98.40693156722051,19.288232667219347],[-98.41025103710047,19.291711420560887],[-98.40930507597454,19.298823509008685],[-98.40894375209507,19.305325903411358],[-98.40881530459347,19.306724376497982],[-98.40800792966388,19.312102659431332],[-98.4077213762485,19.31593170858696],[-98.40998270938508,19.31597723722416],[-98.4107878900241,19.316176518527072],[-98.41126300640349,19.316424801462063],[-98.41173544904143,19.316774583677216],[-98.41261900336355,19.317108015654128],[-98.41312753949899,19.31779564264184],[-98.41338214087915,19.31832300228865],[-98.41573447704889,19.31960803775371],[-98.41669870842827,19.31971587805981],[-98.4207041903926,19.319946799208708],[-98.42114091687824,19.320364990039252],[-98.42471996187328,19.323507395080355],[-98.42692511688216,19.32704859789277],[-98.43048482249071,19.32739142366654],[-98.43345982445811,19.325981857345482],[-98.43802746456385,19.325657010671307],[-98.44127299821588,19.325251128580703],[-98.44170664371745,19.32668980997215],[-98.44228635397343,19.328039532251864],[-98.44582407915198,19.332689604392897],[-98.44770725627433,19.336587700712414],[-98.45091549155467,19.340327124727082],[-98.45305795033744,19.344800569047493],[-98.4543528516316,19.345048424510594],[-98.45461955681765,19.34539581223521],[-98.45491972669282,19.34550049710043],[-98.45510119302867,19.34568629886803],[-98.45515526007728,19.34574422058182],[-98.4553261394235,19.34594628895985],[-98.45588758312311,19.346495369589718],[-98.45783429588965,19.34866099169409],[-98.45925543397385,19.350335138798243],[-98.46208091735605,19.35351109062657],[-98.46355454971865,19.355232796342477],[-98.46357126460299,19.35526809079215],[-98.46416660260206,19.355950587470375],[-98.47027770275156,19.36083090576136],[-98.47200084742872,19.363498346790323],[-98.47260021526637,19.364394749640383],[-98.47298469321106,19.36507891740638],[-98.47345781046249,19.366051007810483],[-98.47454879470524,19.368424120082523],[-98.47510980304344,19.369611045053432],[-98.475406526489,19.370193175023587],[-98.47634134112695,19.371770725728595],[-98.47685025349529,19.37212237392663],[-98.47730414893988,19.37255745520679],[-98.47749992597596,19.37277534912249],[-98.48105925449369,19.378594300812097],[-98.48684376127329,19.389458858830835],[-98.48730480958375,19.39018767574146],[-98.48715995024776,19.39038930132523],[-98.48703483906831,19.391037547077246],[-98.4870666063133,19.39204586034782],[-98.48724797860626,19.39229682926282],[-98.48734090497686,19.392895310195172],[-98.48735798967664,19.39353535265917],[-98.48722405335718,19.394726468309898],[-98.48725651890697,19.395741213162182],[-98.48734215630708,19.397655520120793],[-98.48969632624232,19.40174789676297],[-98.4900779042548,19.402015613849528],[-98.49051571905534,19.40407293948772],[-98.49097914788399,19.404374914952086],[-98.49206860632768,19.406080173589658],[-98.49217910070763,19.406373932861698],[-98.49507911115603,19.411120898588138],[-98.497486815679,19.41370393924774],[-98.49872085381878,19.41649364489541],[-98.49919153504823,19.416589000312626],[-98.50374134079522,19.42043655338415],[-98.50367960298337,19.42212151404385],[-98.50381457349414,19.42234226941912],[-98.50609740365735,19.425801377065625],[-98.50641309086717,19.426136775460748],[-98.5080315553447,19.426676580652952],[-98.50835858065182,19.426991728970677],[-98.50999993057206,19.427775343871133],[-98.510344186586,19.428000027476344],[-98.51303058969609,19.436035294549754],[-98.51627989852483,19.439175941661006],[-98.51660425710116,19.44132502203672],[-98.51698676082606,19.44182323972001],[-98.51916659848291,19.448330897554285],[-98.51892695518234,19.449434524299875],[-98.51888049595527,19.449871064999286],[-98.52124937592151,19.45577301882804],[-98.52136236327209,19.456312766221117],[-98.52203509440454,19.458342355561797],[-98.52238963118674,19.458646705978822],[-98.52313896061315,19.460456266887604],[-98.52319214109525,19.460868680696137],[-98.53521381748567,19.462322370187735],[-98.54149900336722,19.460821388788872],[-98.54157649623846,19.46079221447644],[-98.54186663314272,19.46074098506091],[-98.5423196103668,19.460590759250465],[-98.54385219342896,19.460410381687097],[-98.5579198675859,19.46264328578087],[-98.57027613694368,19.466769353101768],[-98.57750112517357,19.460276031200976],[-98.59127564600152,19.44921419805212],[-98.60915811535295,19.45061331116119],[-98.61573379866337,19.452064536078865],[-98.62940658100695,19.457017952793535],[-98.63411472731804,19.46784816828597],[-98.64053589210351,19.46330406525999],[-98.65322655538432,19.4659862238683],[-98.66143520732828,19.458090356466414],[-98.65709610121297,19.45360332069646],[-98.64926118715198,19.445537866354016],[-98.64284437665833,19.439399205230984],[-98.63847200031245,19.434666965029635],[-98.63482205048945,19.431241876137335],[-98.63469711106552,19.429548097259442],[-98.63707190127087,19.425967150287647],[-98.63894075497313,19.430106983841654],[-98.63911367579436,19.429999897417645],[-98.64011364384629,19.427108639088885],[-98.6409757800925,19.427681719652355],[-98.64269158912674,19.427809368455485],[-98.64368249061897,19.428969885654624],[-98.64948203072493,19.43419267279927],[-98.65020316513301,19.434638844767278],[-98.64936306675816,19.431698826355785],[-98.65073044265773,19.43209947175427],[-98.6559813020557,19.432545711137834],[-98.66017837673701,19.43209357571061],[-98.65664409710246,19.425979362941632],[-98.65634849051293,19.4220925709746],[-98.65677998827795,19.420653110087017],[-98.66176327058685,19.41291108588166],[-98.65900022929304,19.410129012777134],[-98.65900904214607,19.40977012887396],[-98.66003968871837,19.407484516532065],[-98.66003003627196,19.40723916327488],[-98.6600319945041,19.40472373643155],[-98.66284794875861,19.402998252873033],[-98.65713702614181,19.39707820643258],[-98.65771160640713,19.39078856276143],[-98.656421541452,19.386029975738495],[-98.65812963799794,19.382708544117065],[-98.65600748848419,19.37750996618962],[-98.65615265787557,19.37589452196164],[-98.6540592497347,19.369402684635645],[-98.65043952424884,19.3645548589044],[-98.64458909189614,19.364173671147626],[-98.64039591949432,19.364716229087037],[-98.64002869592485,19.361457179349543],[-98.63820679476453,19.358688568379193],[-98.63919786103145,19.35693758252296],[-98.63965196797233,19.35687434286467],[-98.64027794035889,19.357003513503685],[-98.64430567252958,19.358231454097847],[-98.64437091787278,19.35626677488989],[-98.64447926558194,19.351999980016558],[-98.64892227824481,19.351426867403745],[-98.64959080376906,19.351027182641815],[-98.65261833696132,19.349517355394767],[-98.65375790563593,19.349333550375377],[-98.65494903186772,19.349299688510087],[-98.65595348011647,19.34945288261764],[-98.66049537769271,19.35126246416837],[-98.66106614330619,19.339247497142424],[-98.66347588451646,19.32479238319678],[-98.64577587139382,19.29013859933798],[-98.63187126905353,19.26393674860617],[-98.63131919400456,19.263268219988504],[-98.6292553270847,19.26187384724676],[-98.62752487577984,19.25775917352786],[-98.6318967099943,19.25389648853985],[-98.63249506665113,19.25220801540769],[-98.63239585514617,19.251875815813094],[-98.63236237150318,19.25044978844346],[-98.6383856049265,19.2446536336912],[-98.63944945663519,19.2441688161407],[-98.64080612952557,19.243413740827634],[-98.64357120446425,19.23872986638645],[-98.64288379235438,19.22066870357861],[-98.64702238983756,19.184827898842286],[-98.64293041342688,19.175686182562515],[-98.63629355870881,19.154058359825854],[-98.63533870726229,19.1470323337403],[-98.63891620008496,19.150599067962787],[-98.63910952170966,19.14839115378112],[-98.64008559606344,19.136979370825543],[-98.64065706326676,19.125455733672595],[-98.63964042693652,19.123214493264754],[-98.62696800269077,19.12476347166063],[-98.62548934649709,19.11957198375211],[-98.62634324673968,19.1171838375559],[-98.62880304367542,19.11626926636967],[-98.63075436555482,19.102385217410244],[-98.6325593198045,19.1006069153853],[-98.63096743682394,19.097469612503858],[-98.62983781206623,19.096412007807373],[-98.6261324083726,19.092189543721304],[-98.62589248820092,19.08937645847101],[-98.63108407336927,19.08795685392687],[-98.63157513033298,19.087518951882146],[-98.63520700994923,19.084265927444562],[-98.6357495953485,19.082120335347327],[-98.63875844422842,19.077990286488898],[-98.63736623205489,19.07444522989499],[-98.63023184459684,19.06779412476152],[-98.62755678361975,19.069389253852705],[-98.6234705154971,19.066381773718263],[-98.62776788896247,19.06321413566525],[-98.63122531918492,19.059031934918664],[-98.62751461040034,19.05436468449909],[-98.62696912211965,19.04982878492723],[-98.62978820754194,19.04360297819045],[-98.61987463242457,19.035059573182252],[-98.62649119150848,19.024307338249116],[-98.62803556851759,19.021455562491326],[-98.62927386840096,19.017086785504944],[-98.63294665148777,19.015549520665104],[-98.63497182340893,19.01160870580844],[-98.63855366916778,19.007684918964685],[-98.64538766989438,19.00361467510362],[-98.64961170273892,18.999577407668596],[-98.6504199765763,18.997021989128882],[-98.65019457106507,18.995475222417383],[-98.65031660047333,18.99471218383502],[-98.65088389309687,18.99219447295934],[-98.65112596378447,18.99162248078784],[-98.65125307128602,18.988416994626903],[-98.65209935763761,18.986853887242717],[-98.65306589812951,18.985367320902697],[-98.65447424769184,18.98376709405437],[-98.65552704327763,18.982668952994175],[-98.65576922866842,18.982020626898247],[-98.65585170709454,18.98095220124793],[-98.65625618889317,18.97946457796968],[-98.65722155641271,18.978512282210772],[-98.6574259400142,18.976718976807945],[-98.6579529204572,18.974201155472883],[-98.65883851153956,18.972981561319045],[-98.6592819226567,18.97206645148492],[-98.66121794350869,18.970255847965348],[-98.66162050224233,18.96968413320218],[-98.66247104983859,18.965907490737436],[-98.66287543455286,18.96441984911013],[-98.6631995370625,18.962932060374726],[-98.66376384404504,18.96175001583339],[-98.66464917349487,18.960606710595528],[-98.66529283382926,18.959882768260286],[-98.66577509429771,18.95957832930054],[-98.66665986777787,18.95870216199046],[-98.66678156539422,18.958053602040707],[-98.6675461442008,18.95706271955089],[-98.66887157277756,18.956607127853715],[-98.6697551127985,18.956341561771865],[-98.67194189143498,18.95257811519349],[-98.67362938922054,18.951665164383996],[-98.67391151869583,18.951055048380567],[-98.67419898629163,18.949672842307393],[-98.67436085588764,18.948986179620363],[-98.67492704326827,18.946773683637502],[-98.67518489664087,18.94546704040988],[-98.67585352889802,18.945019773194133],[-98.67621913273649,18.943975531202227],[-98.67604613977733,18.9434683404142],[-98.675536456874,18.941203205027705],[-98.67563784018728,18.939577869514608],[-98.67565888873622,18.93802138453941],[-98.67588135288503,18.936134560458243],[-98.6762474070917,18.934872874979988],[-98.67635587796525,18.934405455902322],[-98.67672294725782,18.93349403203956],[-98.67721981588261,18.93193616258941],[-98.67733381260723,18.9312720071066],[-98.67737125579754,18.93045905841194],[-98.67754742144149,18.9297717794978],[-98.67764757118306,18.928202237796597],[-98.67768437002997,18.927041954193328],[-98.67773520575565,18.926766226524535],[-98.67794634484227,18.92425957998887],[-98.6791520580233,18.923341672253798],[-98.67885024189894,18.922689040220405],[-98.67973935087178,18.922054266277485],[-98.6810845673026,18.92124542629125],[-98.68192907399953,18.920292774897007],[-98.68348414890295,18.919201378475066],[-98.68467646647412,18.91702447017559],[-98.68528007778843,18.91687835179806],[-98.68661385652427,18.91656171517218],[-98.68715369774515,18.915407477495933],[-98.68756530900737,18.91517324001296],[-98.68843715954324,18.915341365713573],[-98.68896878127572,18.915252378658693],[-98.69050488924387,18.914497535423095],[-98.6919212719526,18.914435582711008],[-98.69285595280707,18.914464490653188],[-98.69369129273485,18.9135826492751],[-98.69754556476158,18.911936125171053],[-98.69769682135637,18.911519979121522],[-98.69817234394623,18.910913616469486],[-98.69910822654793,18.910162318473056],[-98.69937771648034,18.907839811250255],[-98.70115746311609,18.905129303357796],[-98.70489382507947,18.90297585897764],[-98.70734322815849,18.902855500806766],[-98.70722506364524,18.901580514588318],[-98.7072258333647,18.901137938870363],[-98.70740494073516,18.899094690203015],[-98.70712189863474,18.89839221303788],[-98.70758560492243,18.897823503152836],[-98.7075639485364,18.895805973057634],[-98.70607421764032,18.894277124712858],[-98.7057278621927,18.891751498119277],[-98.70568061464394,18.890789618608665],[-98.70621019068665,18.8892802076075],[-98.70651227605458,18.88850806786178],[-98.70721954482576,18.886619241155188],[-98.70798834313672,18.885909988029425],[-98.70877444903579,18.884408774301335],[-98.70970501464757,18.88355278922046],[-98.71049308272217,18.88093709734727],[-98.7109049614445,18.879587097944523],[-98.71134502484898,18.878560042366132],[-98.71180884639762,18.87791687050759],[-98.7125253991486,18.877971238192913],[-98.71299453850236,18.877905976871943],[-98.71379690202593,18.876824547395643],[-98.71415407160976,18.875217295438176],[-98.71407085383947,18.873866576517628],[-98.71377204814473,18.871315019283145],[-98.71357952027347,18.868015717675235],[-98.71347151096552,18.86724361024301],[-98.71259987710494,18.868112148549358],[-98.71250523434003,18.867986475672467],[-98.71249525843609,18.867840360558148],[-98.7110783376055,18.868053918712235],[-98.71068220578064,18.868350860956923],[-98.71024896035095,18.86949065231613],[-98.70936732087984,18.870112308875605],[-98.70864584661348,18.871497466426945],[-98.70791603440671,18.87239883884132],[-98.70635020681112,18.87228545539898],[-98.70446895103669,18.87242962458845],[-98.70400607081274,18.872695010822156],[-98.7032385118435,18.87379392280542],[-98.70180291938061,18.875788150056508],[-98.69986767991497,18.876252108552308],[-98.69775995239519,18.876952525833474],[-98.69750646516172,18.877807779101488],[-98.7021855365249,18.881912784386884],[-98.70275287926518,18.887789014367172],[-98.70294051211556,18.889744944018105],[-98.70282468673275,18.89045313500594],[-98.70146763396775,18.8919505696702],[-98.69847625274247,18.894607816060386],[-98.69804910739617,18.89463016787556],[-98.69792584603408,18.894720345620442],[-98.69678816537356,18.895074163898585],[-98.69495003391478,18.89518231657263],[-98.69470291001369,18.89518528389641],[-98.68968159688689,18.898135907092524],[-98.68752071044491,18.898854485616482],[-98.68687646212936,18.90026192073873],[-98.68543645568218,18.901125748082052],[-98.68321467648826,18.903368764079914],[-98.68185973438966,18.905385879862536],[-98.68141455868442,18.90716732348824],[-98.67291475008534,18.9094408642473],[-98.6659289006792,18.9060397221902],[-98.66518544001468,18.90459122294061],[-98.66513639928854,18.9042128388146],[-98.66519358028177,18.903781317126743],[-98.66528055432508,18.90356130741634],[-98.66527622489059,18.902784422776165],[-98.66533838569143,18.901980924885947],[-98.66502734973898,18.901233962078948],[-98.6649724990661,18.900483963433544],[-98.66471131993336,18.89963297880871],[-98.66421994270041,18.899180663407776],[-98.66341456241503,18.898629995982674],[-98.66334650887711,18.898478197321026],[-98.66327795457818,18.89834688754678],[-98.663206395896,18.898338469312478],[-98.66259466370025,18.898365953864754],[-98.66203193599137,18.898345936111753],[-98.66168585123205,18.898224998857415],[-98.66143195155786,18.898226923350137],[-98.66172256105165,18.89737251742514],[-98.66250638680128,18.897246990143742],[-98.662824640608,18.89698267182473],[-98.6628366591051,18.896855738071963],[-98.66315677361138,18.896454390188865],[-98.66339059211975,18.8964424682012],[-98.66362942387946,18.896225462547534],[-98.66394257486195,18.8959074982605],[-98.66424164685304,18.894492139629108],[-98.66611321116466,18.891821132842153],[-98.66644789805059,18.890617630808492],[-98.66729227746686,18.889376967908106],[-98.66730055165192,18.889038100886864],[-98.66751815389063,18.888461678378064],[-98.667120979821,18.888247093735572],[-98.66630097411286,18.88818183454765],[-98.666099651313,18.887913530038702],[-98.66569126909803,18.887612369246767],[-98.66510263376574,18.887678127174752],[-98.6648603016987,18.887665427618117],[-98.6651783332357,18.88748665445189],[-98.6656501995746,18.887245718757413],[-98.66604173977743,18.88711390983059],[-98.66740739092364,18.88626546969965],[-98.6676411639587,18.88598903739222],[-98.66838306754386,18.88518682705444],[-98.66872187338492,18.884842962432856],[-98.66940812930147,18.885443576506873],[-98.67021004147244,18.885499491263772],[-98.67135737219132,18.884684165848398],[-98.67233155731776,18.88452241212798],[-98.67253241395798,18.884186847937826],[-98.67248556825217,18.88376223887917],[-98.67237620712808,18.883033694338224],[-98.67227862115556,18.882963422755495],[-98.67211656254653,18.882211592114913],[-98.67203056793403,18.88151051448432],[-98.671979797321,18.88028215357673],[-98.67208567876628,18.879710639887776],[-98.67228699253246,18.879316604988105],[-98.67335535306393,18.878756333791387],[-98.67378296153191,18.878487769867547],[-98.67462556990006,18.878934604354868],[-98.67618427672403,18.878544417117496],[-98.67724665425618,18.878122676951307],[-98.67956636106766,18.877860921916977],[-98.68007139134903,18.87756435781921],[-98.68101170729221,18.876768506811402],[-98.6819771705982,18.875961369347863],[-98.68128768913448,18.875673254928245],[-98.68011043801795,18.876204008446905],[-98.6796053792524,18.875081567375616],[-98.68019410492388,18.87319468630733],[-98.6803482764264,18.872791241959703],[-98.6805871618842,18.872100991080117],[-98.68118275310974,18.87047910970125],[-98.68219278528983,18.867410558913207],[-98.68407899180465,18.862962597754517],[-98.68579366443214,18.86155182825439],[-98.68688915475764,18.85817700312674],[-98.68843401989949,18.858514979097322],[-98.68866440468281,18.858105061185654],[-98.68872489134259,18.85784467230826],[-98.68894990339032,18.857802281156467],[-98.69173881505685,18.85521953813918],[-98.69148087064019,18.8525359681081],[-98.69491112026361,18.851224114933757],[-98.6949945424139,18.846302777182018],[-98.69737981274352,18.84495625876417],[-98.69734062687155,18.843542494562485],[-98.70271027063052,18.839452473260735],[-98.70301806453409,18.83796351281552],[-98.70319586755761,18.837813567623584],[-98.70369826068224,18.837102706990095],[-98.70386591429667,18.836857866326454],[-98.70344654360684,18.836706681324017],[-98.70327188365218,18.83672652784435],[-98.70331693266576,18.835954191716496],[-98.70368489038037,18.835807135725645],[-98.70406980223004,18.835189270463218],[-98.70486528613537,18.834721260889694],[-98.70367231749282,18.83413265010398],[-98.70362512657385,18.834025063265358],[-98.70413704340302,18.833444297351946],[-98.70436811576093,18.833153369341403],[-98.70451210242766,18.832860538770205],[-98.70477005644807,18.83248732135877],[-98.70503303152594,18.832442632377195],[-98.70518457722142,18.831839297038698],[-98.70550972948729,18.831257286073196],[-98.70493754039558,18.83082432030102],[-98.70490253657783,18.83051989051296],[-98.70454349954645,18.828497800635546],[-98.70633966850187,18.826258445826568],[-98.70619762534659,18.825979773064034],[-98.70610478744521,18.825184511365592],[-98.70614838817448,18.82492500423848],[-98.70843386220281,18.823254233516536],[-98.70714624103437,18.821800961857264],[-98.70748194507752,18.8214048817469],[-98.70820429464567,18.821279492743543],[-98.70849845170102,18.820999639493948],[-98.70859208906847,18.82072938557053],[-98.70869204102826,18.820426007164087],[-98.70911448665294,18.819710794721743],[-98.70937999291812,18.81953901056255],[-98.7097192913518,18.819424345323284],[-98.71004111028867,18.81898149058128],[-98.71279964470625,18.815209353576222],[-98.71292859390013,18.815022742092935],[-98.71345806717108,18.815259242690047],[-98.71446543678553,18.81477214644758],[-98.71456418260499,18.814288900850613],[-98.71471800239789,18.814102830771787],[-98.71479804714374,18.81387963407866],[-98.71483061423277,18.813560691939813],[-98.7152211811528,18.812391985844556],[-98.71574731124804,18.812249553444985],[-98.71697361020875,18.810544930807453],[-98.71891521907094,18.813764639073156],[-98.72274744441643,18.81232639516253],[-98.72319836357667,18.812205978977204],[-98.72420947187021,18.810523165797747],[-98.72358166518916,18.808195003161757],[-98.72356701293677,18.807768481250264],[-98.7236860519381,18.807475097325266],[-98.72405022294669,18.806820043116545],[-98.72424696856842,18.806919032190535],[-98.72504302732358,18.80693634855612],[-98.72549748128017,18.8069081203721],[-98.72699345681298,18.80666695709624],[-98.72706582558413,18.806475121844358],[-98.72744887347903,18.806208772353273],[-98.72753942122068,18.805990606765477],[-98.72800078896142,18.80522868000861],[-98.72803474072964,18.80485057418423],[-98.72807350480366,18.804271312103822],[-98.72788243785811,18.80393567105108],[-98.72747843120038,18.80156600050242],[-98.72749965707982,18.80119945766529],[-98.72761017679562,18.801052562028474],[-98.7277264116849,18.800565089262477],[-98.72779824432905,18.800164130450753],[-98.72812612199971,18.800022857308193],[-98.72853064745885,18.799759354959008],[-98.72874917515861,18.799468135453083],[-98.72927272442524,18.79891124672025],[-98.72949861689136,18.798312375244336],[-98.72973861825034,18.79816368266728],[-98.73006212783685,18.797960832066792],[-98.73016605310636,18.797462639845094],[-98.73203845844978,18.795746521373985],[-98.73206171690777,18.795317690592242],[-98.73187727754691,18.79453027171263],[-98.73174094007345,18.794162372109213],[-98.73181020202242,18.793867907095603],[-98.73167626989402,18.793504881740205],[-98.73167680563944,18.793166680548723],[-98.7313601868002,18.792394230513082],[-98.7309320128374,18.792252480403818],[-98.72997364066617,18.79157470017151],[-98.72968962205931,18.79140518829996],[-98.73191117630876,18.786027665459073],[-98.73135918100542,18.785696042082293],[-98.73275985073462,18.784150101106718],[-98.73290209536901,18.78408265986087],[-98.73392923238589,18.782367535494416],[-98.73394055046816,18.781894240342922],[-98.73382750711232,18.78141824752356],[-98.7338240876685,18.78105798528378],[-98.73390070234495,18.780455883630623],[-98.7337916637461,18.77825156216943],[-98.73385822628353,18.77808285562662],[-98.73764043255687,18.77299280104296],[-98.73753359920073,18.772777396253332],[-98.7397171605619,18.766882462163267],[-98.74174140491289,18.76552633261258],[-98.74195815637017,18.765306099488555],[-98.74322547336214,18.762854524103204],[-98.74321811184188,18.762641278278466],[-98.74508477602723,18.7595940086822],[-98.74542331702514,18.75948294879572],[-98.74734690529692,18.758185166944884],[-98.7473828281095,18.757914649804434],[-98.7480610777697,18.755751088065438],[-98.74864107757469,18.755531694068623],[-98.74818393734574,18.75352653982486],[-98.7476573665673,18.75080539397277],[-98.74676169500884,18.750389838010335],[-98.75349392009275,18.742969383252273],[-98.75339684881163,18.742927315782424],[-98.75209427287615,18.742414014258145],[-98.73866953197847,18.737165367589],[-98.73168209116875,18.74238429106248],[-98.72893937605232,18.745236455003237],[-98.71892467330827,18.741060683924616],[-98.71629203320987,18.73946248808943],[-98.7185581046349,18.73656346664893],[-98.71883740239224,18.732258652576604],[-98.72019285806715,18.731091936431937],[-98.72011136103418,18.727895685819988],[-98.72079843988269,18.727594650878302],[-98.7234590285916,18.724877043990546],[-98.7239854618586,18.719067415990537],[-98.72655936724504,18.71763266345647],[-98.72841211108454,18.714282066196233],[-98.73546019553442,18.710666389512824],[-98.73560347958596,18.710624353608125],[-98.74130647773956,18.707861123634245],[-98.73978714920975,18.707271459031574],[-98.74183082649802,18.70294359549132],[-98.7364815270717,18.685605832492683],[-98.73527738243808,18.68378371016786],[-98.73271733924457,18.673772215941142],[-98.73091072074095,18.67142223640451],[-98.72789962839232,18.67058194257885],[-98.7278571153389,18.667567797866013],[-98.72649192220223,18.667439649579194],[-98.72664354750992,18.666960808653528],[-98.72770075258666,18.66619584723685],[-98.72579377765658,18.66190148954587],[-98.72559636280431,18.661647906226904],[-98.7237716547071,18.65819559381174],[-98.71989608290033,18.655953372435533],[-98.71948199995131,18.653640256389792],[-98.71952228962613,18.653337056997316],[-98.71932378814978,18.65307140160769],[-98.7193638812223,18.652881917328557],[-98.71847429346275,18.647866283666588],[-98.71893509249492,18.643793887194988],[-98.71911927571409,18.64336156375998],[-98.71779699864715,18.63833172994441],[-98.71907319140252,18.636438230740737],[-98.71804070975139,18.635299439647667],[-98.71772344278156,18.63469243665685],[-98.71773082846153,18.630219277001004],[-98.71665024195352,18.62962964342904],[-98.71638432289154,18.62951851888232],[-98.71729454009949,18.627949860886076],[-98.71666243662992,18.62529533357025],[-98.71407930009707,18.62373718929939],[-98.71201940851796,18.618578524211216],[-98.71178169578047,18.618009540006085],[-98.71218553599181,18.614408869230488],[-98.71402250592183,18.61328879282587],[-98.71354904583939,18.606309771559722],[-98.71476564540751,18.60658181545722],[-98.71839029196803,18.603851951129172],[-98.71798594399468,18.603587354661443],[-98.7177657304963,18.60289046256736],[-98.71788599338112,18.60248686142944],[-98.71988308991558,18.600228492834333],[-98.71725766158733,18.59902000527933],[-98.71701841805441,18.598458106406838],[-98.71751931361206,18.596016663233513],[-98.71739328094856,18.595343687759623],[-98.71568313535914,18.594963254312006],[-98.71256629595189,18.587957606177497],[-98.71246966366573,18.585800834870724],[-98.71259534980294,18.585171692732672],[-98.71290696526819,18.5840350831524],[-98.71324264716435,18.583647041892107],[-98.71374601622188,18.582658411270472],[-98.71390253608661,18.58206003464096],[-98.7143502242248,18.578902883122453],[-98.71437659389403,18.577932216746376],[-98.71195894123525,18.57545988016949],[-98.71171748535437,18.573679310087016],[-98.71363005278715,18.572953840201933],[-98.71584147307328,18.574250876235737],[-98.7167689930775,18.57311268152978],[-98.71461530075817,18.57143250753603],[-98.71514563950262,18.56842010762574],[-98.71181474769679,18.569988733920354],[-98.71435733005495,18.567702172213785],[-98.71444850785798,18.567399797602604],[-98.7137730227447,18.5654159586785],[-98.71667356353561,18.565919978246143],[-98.71473749358228,18.56203767169967],[-98.71448256036615,18.55971690042884],[-98.71040881805368,18.559632475924502],[-98.71228756247416,18.55732860013711],[-98.70568932265866,18.552300067223825],[-98.70529130691546,18.551779836230992],[-98.70627515896206,18.549284991103832],[-98.70663883097848,18.54868053033084],[-98.70750229513897,18.54738540387075],[-98.70600374474918,18.54193417731119],[-98.70314997137689,18.539789985345863],[-98.7029527918537,18.535825990523847],[-98.70310439301943,18.53514259486417],[-98.70357300499774,18.534413566351077],[-98.70354762925615,18.533597531007217],[-98.70502862725067,18.5322649685678],[-98.7057085002429,18.5322660285359],[-98.7060264451564,18.531877582317804],[-98.70648065177699,18.53131648526454],[-98.7063888316693,18.53074593045227],[-98.70639578677776,18.529668865878193],[-98.70637155680907,18.528310500783448],[-98.70638838170709,18.527414700248585],[-98.7069859958894,18.52446772726489],[-98.70859251131799,18.52488622324819],[-98.70963751478843,18.524028040800545],[-98.71085581598408,18.521019035337133],[-98.71158372788705,18.52082966253414],[-98.71292738983266,18.518657957836638],[-98.71047406830928,18.514531125890812],[-98.71005494895718,18.5142006462072],[-98.70676177809759,18.513452010864114],[-98.70583745510578,18.513499861372907],[-98.70193993973407,18.512185957259078],[-98.70268438588113,18.511053729543562],[-98.70489972898707,18.5126042578907],[-98.70667227548563,18.511367878157728],[-98.70431093850056,18.50407794454435],[-98.70582811577992,18.50276214375083],[-98.70835180382505,18.497917800961375],[-98.7078115641931,18.497223574715292],[-98.70708397994031,18.49703798969523],[-98.7081889848534,18.49512326257434],[-98.70733009915602,18.492850846347608],[-98.70462759084171,18.493799620129437],[-98.70180621489675,18.49698608791067],[-98.69897388412426,18.4949804921323],[-98.69953265315547,18.48967557770652],[-98.70026406204784,18.488509821837965],[-98.70072857153411,18.4885270035262],[-98.70167913851327,18.487460118314743],[-98.70202496620101,18.48714441370936],[-98.70283922813582,18.486353512685753],[-98.70278962075872,18.485093795395642],[-98.70188370597828,18.48394200569095],[-98.703290944446,18.482001837790108],[-98.7024628055492,18.47992493645586],[-98.70386115378113,18.478522796891582],[-98.70707170519421,18.479133344143975],[-98.70772461996626,18.477425063745216],[-98.7063519361567,18.47630104197856],[-98.70534717880969,18.475692837945246],[-98.70755732877149,18.47273854361913],[-98.70446204402742,18.471827853470074],[-98.70726842524141,18.468919506020086],[-98.70860808881162,18.46994396641321],[-98.71041556574409,18.468066808537117],[-98.70991061667104,18.464894837024815],[-98.70639472663328,18.46471651752097],[-98.70664772400681,18.46353635735528],[-98.71025177208901,18.463015422394676],[-98.70813017807245,18.458145149506777],[-98.71028306653568,18.45742088036485],[-98.70587106698281,18.45590020631596],[-98.71118082667562,18.45293139197281],[-98.71149464968283,18.45180101830914],[-98.70712736873804,18.447021020077443],[-98.70673567739067,18.445897430257673],[-98.7100513598869,18.44558737127261],[-98.7156498633804,18.444463454709762],[-98.72451869070528,18.44159030047257],[-98.72640000169497,18.44026214895331],[-98.73004678557766,18.440456089281838],[-98.7346248185105,18.443974958275703],[-98.73527897805593,18.447370857825888],[-98.73710948951293,18.45031568274652],[-98.73692343944708,18.452949597718714],[-98.73808317776121,18.45573792107666],[-98.7449602969536,18.454580073630666],[-98.74544046942714,18.452842702880105],[-98.7475935473048,18.451434316626262],[-98.74922876757876,18.4535879892681],[-98.75219134707726,18.453924204247528],[-98.75349390257298,18.45720795916702],[-98.75486362461749,18.457130297248398],[-98.75535830418306,18.4570372534551],[-98.75549603658811,18.458290655119697],[-98.75454832433934,18.461362302764712],[-98.75778550948871,18.463086766018876],[-98.75750460278982,18.46558950908394],[-98.75878050689789,18.46967573338202],[-98.75849599957093,18.470335245460944],[-98.75831121624594,18.47248147892674],[-98.76020185195978,18.471970239927316],[-98.7607508100736,18.475036830196018],[-98.7629672193508,18.476344077330737],[-98.7650778018695,18.476038000514563],[-98.76542560279916,18.476116556540262],[-98.7704016242406,18.477923457319832],[-98.77120918751706,18.477399573032756],[-98.7744332599317,18.481993905477736],[-98.77646211414265,18.482052336514244],[-98.77963560594958,18.480386616632586],[-98.78225606662346,18.481906375299616],[-98.78259745255986,18.482154376446886],[-98.78677324614927,18.484627181011717],[-98.78694413437472,18.48510850082505],[-98.7861880610829,18.485602525609124],[-98.78361056615898,18.487217663442607],[-98.78386803348843,18.488126088160584],[-98.78464771214624,18.488385363075054],[-98.78601048474633,18.48908079247957],[-98.7871733793362,18.49085076952042],[-98.78753360658675,18.492709469254976],[-98.78910370204449,18.490962918417893],[-98.79317921191353,18.49431829101792],[-98.79319464608727,18.495679469996162],[-98.79345695288293,18.497208140581677],[-98.79515836111659,18.49750396665479],[-98.79895421562003,18.498089373473988],[-98.79939258159015,18.4989676681368],[-98.7995450544405,18.499810389737377],[-98.7994587756387,18.501063937597394],[-98.7994243744314,18.50141997957246],[-98.79947098636472,18.50208916339068],[-98.79982600423887,18.502762019151874],[-98.80017310101726,18.502769409044618],[-98.80082242087332,18.502677924480565],[-98.80381514812882,18.502431978425705],[-98.80234006696003,18.504085492187016],[-98.80344350333024,18.505835488630055],[-98.80422119095323,18.506335066587212],[-98.80442378039982,18.5064372691657],[-98.80545356366503,18.50724164302369],[-98.80676944180829,18.507474094057613],[-98.80721250573293,18.50877486623432],[-98.80747167875421,18.510463759486242],[-98.80984645384962,18.511362216636144],[-98.80936557392931,18.513029869744912],[-98.80866325308631,18.51389260371417],[-98.80884562330618,18.514775277795025],[-98.81128576624377,18.515327871148827],[-98.81050713440237,18.519203557455114],[-98.81243359710942,18.520337012607058],[-98.81640862190852,18.51817807228082],[-98.81804253423309,18.521076373184314],[-98.82029073292864,18.519456813423858],[-98.821545978232,18.521075832197482],[-98.8218566933673,18.521062623614796],[-98.82414832005969,18.520932559856817],[-98.8268433175017,18.522585214168885],[-98.82736307186036,18.52225411314072],[-98.83027171453546,18.522193141781543],[-98.83132362141635,18.520972669442187],[-98.83484552936278,18.520827388236796],[-98.83521994719177,18.520050663832194],[-98.83708272412048,18.51833675665472],[-98.84034406872189,18.512771618114357],[-98.83850781416743,18.50690949822564],[-98.8417416612022,18.507285702093327],[-98.84295172993188,18.505164148883978],[-98.84209621665707,18.50525547083629],[-98.84097013120612,18.50480514487964],[-98.84020761604864,18.504381381476094],[-98.83971887137386,18.504028326094897],[-98.83950687874312,18.50382760571216],[-98.83707545681477,18.49869225114196],[-98.83648596914242,18.49455695448222],[-98.83952384299891,18.4931811489123],[-98.84192280732191,18.492402972497246],[-98.84458076876257,18.48996685338443],[-98.84449853739471,18.48340991628322],[-98.84608525078602,18.483201050539833],[-98.85018808696873,18.478244649298063],[-98.85180901033345,18.47876793132434],[-98.8574927922977,18.477049333353364],[-98.86101674262056,18.477124057207106],[-98.8651087201817,18.479751465835022],[-98.8659987745583,18.478695737873977],[-98.87057955784212,18.47920232781695],[-98.872427182509,18.477043713579747],[-98.8747238050189,18.47680932409628],[-98.87965214464305,18.474277959407573],[-98.87976463810531,18.473794451263984],[-98.88404472967682,18.472981263533484],[-98.88429418928655,18.472862485312817],[-98.8896994808656,18.46989241237361],[-98.89350522094031,18.469058105050465],[-98.89656767409895,18.466345279947063],[-98.89668767670929,18.466068375104726],[-98.8979773118557,18.465789177239515],[-98.89854952391204,18.465514791352007],[-98.91086127667029,18.462061493176577],[-98.9122213632428,18.46065479311312],[-98.90557211701042,18.459541569337773],[-98.908232144419,18.45934465711133],[-98.90898035946287,18.459146792553838],[-98.91450813291294,18.458871859772955],[-98.91575603129883,18.453976036787367],[-98.91409675879908,18.447671883572298],[-98.91509466891586,18.446641582580526],[-98.9149537594825,18.441424562040368],[-98.92033253068746,18.442299139870272],[-98.92051861928155,18.441590377999034],[-98.91959207239319,18.43674626784548],[-98.92022761696325,18.434409460197458],[-98.91931732915828,18.43196484173319],[-98.92214077313338,18.428455055725237],[-98.92244087891658,18.42827707840081],[-98.92429815379467,18.429272568347244],[-98.92800621073314,18.427219530290756],[-98.9295371164668,18.427484874963568],[-98.93515195137672,18.422903849289014],[-98.94147317482413,18.421685315416823],[-98.94439895853964,18.420445728256766],[-98.94560585031167,18.421730851609766],[-98.94940314909462,18.42260863909314],[-98.9506118630926,18.41769138587364],[-98.95544090226105,18.417914091252214],[-98.95720481078399,18.420218226325005],[-98.9596661235455,18.41893399051395],[-98.96677055509656,18.418713854604448],[-98.96803344347268,18.417767667941405],[-98.97034593211049,18.418891656862513],[-98.9710891098,18.417474094053205],[-98.97397036480152,18.417139049224318],[-98.97719963596995,18.42363411661171],[-98.97898230771682,18.422471930797258],[-98.98170922432001,18.423592237826313],[-98.98342216700394,18.421375333377114],[-98.985372439927,18.421153982188912],[-98.98351522285105,18.41942603976173],[-98.98379399617778,18.417653965253237],[-98.98629856173267,18.416382948407318],[-98.98449073985842,18.414951570652534],[-98.9876948234002,18.411850636287056],[-98.98590107037586,18.4111161704011],[-98.98687248534213,18.409482825322016],[-98.98550331731178,18.40791470799337],[-98.98549389704374,18.407717753617362],[-98.9834864221836,18.405801630756457],[-98.98624071030127,18.405049810222977],[-98.98752045743169,18.40220283748738],[-98.9870636765321,18.400233147081394],[-98.9890245861522,18.398691959142184],[-98.98839442063957,18.396698589409084],[-98.99086365728334,18.396842420321775],[-98.99063162724957,18.39476019227226],[-98.99509521566131,18.39500087463017],[-98.99922358068164,18.391930211831493],[-98.99835009101758,18.390364913786357],[-98.9981854440149,18.38971887536769],[-99.00093492251898,18.388257157138753],[-99.00277377051833,18.38941871105169],[-99.00369033310096,18.389514049500633],[-99.00455478169704,18.389620043788113],[-99.00536487962569,18.389910218727152],[-99.00609870878367,18.38907912806775],[-99.00820640217444,18.388174048242092],[-99.00929127184338,18.386026681868316],[-99.01031819491624,18.38606668657718],[-99.01263864312222,18.386045537174596],[-99.0140933277815,18.388109857672077],[-99.01498744706885,18.386640817451223],[-99.01781564804918,18.387955914174654],[-99.01817507650657,18.387784376736022],[-99.01874649475474,18.382566139696166],[-99.02052774013322,18.377019820213775],[-99.0237914444516,18.376395661621757],[-99.02396954658889,18.372282963330463],[-99.02613287973105,18.37224857370512],[-99.02893298580568,18.368584019619846],[-99.02914345509072,18.368391430089048],[-99.03146314685569,18.367430926373913],[-99.03144069894819,18.364941692646653],[-99.03464506814419,18.365237197858107],[-99.0349259976777,18.365244039234597],[-99.03520211687578,18.365325697997378],[-99.03563090572135,18.365478605581416],[-99.0358245565618,18.364599957649034],[-99.03510216867915,18.363570105832423],[-99.03692470985357,18.360910255683052],[-99.03836782500628,18.358785716370733],[-99.0435426651843,18.359447237140444],[-99.0432628753768,18.356301503734414],[-99.04373259997601,18.355585410635683],[-99.0476645839795,18.354173727592126],[-99.04852625250544,18.35124177553479],[-99.05877252141585,18.348855516885465],[-99.05907220339071,18.34718101229464],[-99.05949836820281,18.346362847983755],[-99.05833823726863,18.34278839133509],[-99.05792030431041,18.34216828061409],[-99.05764836849397,18.341370112695472],[-99.05769460422647,18.340979132656912],[-99.05768918795968,18.338457698097102],[-99.06058456569178,18.33518377136079],[-99.06060597389325,18.33513256050037],[-99.0630401824119,18.332789004077654],[-99.06596398478155,18.33256650179402],[-99.06682761665803,18.332111009726702],[-99.068132689501,18.33010340872943],[-99.0699681635532,18.328371083464845],[-99.07049427463988,18.326839703186465],[-99.06991332719258,18.32423177548668],[-99.0674412746809,18.31920960993284],[-99.06332892803141,18.320171753526097],[-99.06195534709752,18.31642233433962],[-99.0620545355228,18.31367996291152],[-99.0642618506256,18.310280985698057],[-99.06364361265571,18.306809636562434],[-99.06189679736917,18.305063265101865],[-99.05969817982816,18.304873205229114],[-99.06063034550283,18.299044512285548],[-99.06009310139319,18.296665284441303],[-99.05279814467451,18.291389187165407],[-99.05177255826175,18.289815246931425],[-99.05770869959508,18.28424344556413],[-99.06083952373672,18.281960698218484],[-99.0626906034177,18.281729211006507],[-99.06485845313506,18.28475045194716],[-99.06522658041393,18.28483063005359],[-99.06911825695744,18.283586139061242],[-99.06936388314574,18.283234674507582],[-99.06945986587397,18.282659168226928],[-99.06953929873436,18.28225532152169],[-99.06773588196342,18.280595028121468],[-99.06736575976197,18.280679729913174],[-99.0649960647736,18.279220443580357],[-99.06521402420441,18.277070773374078],[-99.06245332034484,18.272269220345493],[-99.05943098374422,18.27125822185826],[-99.05714301981374,18.272920108209803],[-99.05483272945935,18.27135429991506],[-99.05317113349736,18.26347323519491],[-99.05335274400392,18.26309365855616],[-99.05395453210184,18.26252964190627],[-99.05442020700218,18.26235602534973],[-99.0583733404145,18.263113912551432],[-99.06308970593409,18.262985191814437],[-99.06405218548002,18.260501524994538],[-99.0616163957697,18.258852046110178],[-99.06149364727816,18.25682468413089],[-99.06335105337769,18.25466437270535],[-99.06389882258509,18.251869521623235],[-99.05728200536828,18.249924092364836],[-99.05445430554909,18.251551485788923],[-99.05302667304153,18.254337662571174],[-99.04909369114631,18.25958837649796],[-99.04365662851927,18.263145237101185],[-99.03170550800098,18.272314520556677],[-99.02674578943618,18.269970490830985],[-99.01690332826536,18.266391421132255],[-99.01470740078918,18.263265864315542],[-99.01585457533764,18.257974262962875],[-99.01718926153745,18.25954101336731],[-99.01891577860454,18.257155479638016],[-99.02177111471656,18.24992671374332],[-99.02359300258792,18.249186327880295],[-99.01932995962164,18.24541105303149],[-99.01129908139552,18.24749736999064],[-99.01093340109486,18.24745372522534],[-99.00663909705895,18.2440829280348],[-99.0042625908277,18.248115187189853],[-99.00135973999897,18.249328359904496],[-99.00063883138114,18.2497050791265],[-98.9995099226436,18.250380564627847],[-98.98904085038492,18.249317739013804],[-98.99183157488102,18.24451754339043],[-98.99500390485781,18.237391992828577],[-98.9948191041156,18.229292432811064],[-98.99535212683111,18.225710969933687],[-98.99529866421256,18.224372151345392],[-98.99406225487161,18.21285895017911],[-98.99545899019802,18.20898547436491],[-98.99815606144898,18.19986350721399],[-99.00006631628582,18.190204909318652],[-98.95721908963617,18.1886975073229],[-98.9416178087053,18.184306993749033],[-98.90717161478449,18.17372688252175],[-98.88478567164299,18.167032270797563],[-98.88187688562329,18.16616209765334],[-98.8663305460421,18.140581043937175],[-98.85236977210377,18.11760093134336],[-98.87071087574282,18.058199988267177],[-98.86981181090232,18.057216659085043],[-98.85723174239104,18.05925387830291],[-98.834056860884,18.063492451515856],[-98.83019697401454,18.064478077463434],[-98.82816221120316,18.06366188311614],[-98.82121727913943,18.063375058814245],[-98.81994963487233,18.064912192082716],[-98.8129997305698,18.06487536013117],[-98.81229011803333,18.06169021803447],[-98.81410240378699,18.0563741094889],[-98.8118062741429,18.053908285314378],[-98.81238821084048,18.051205668698856],[-98.8107473090302,18.050757271744658],[-98.80634594805639,18.054230201348787],[-98.80281582882543,18.052910791263287],[-98.80033664193604,18.053077821032673],[-98.79912512980178,18.05571881805463],[-98.79819744032721,18.06101233515642],[-98.79707011438978,18.062646476066504],[-98.7918883555335,18.060795191341526],[-98.79107876225663,18.058478848145853],[-98.78506994243173,18.05930566750743],[-98.78313580393706,18.0577733099729],[-98.77742517037882,18.05603699761997],[-98.77262926458206,18.048922849656094],[-98.76827679807519,18.049590335479877],[-98.76610914224204,18.05076091328982],[-98.76334016504245,18.049754024262768],[-98.75862475371287,18.044751632874863],[-98.75610616684537,18.047024099223506],[-98.75158276919461,18.045884331240018],[-98.74652347786616,18.04657752510201],[-98.7435099066804,18.044405674548898],[-98.73891517215333,18.045540438631235],[-98.73545532199574,18.045321088675962],[-98.73507763448515,18.044717518822836],[-98.73790297653818,18.039997488903055],[-98.74018768787215,18.040093093679218],[-98.74129459197565,18.03758145748685],[-98.74401664945907,18.036892099643353],[-98.74414479615251,18.033334998395162],[-98.7450950958629,18.03391922838523],[-98.74777152077206,18.031451896441126],[-98.75123986813543,18.03010380063904],[-98.75169594674628,18.02869050442615],[-98.75626281554958,18.027169206348447],[-98.75880417837669,18.027365851386094],[-98.7620223821528,18.02437242379142],[-98.76480139255875,18.02472751939729],[-98.76594883005578,18.022501504177683],[-98.7641912403605,18.0224993709744],[-98.76558898902101,18.0202724857769],[-98.77170719311499,18.01914838303412],[-98.77412637225973,18.02040104699796],[-98.777843506166,18.01955318251197],[-98.78189119005538,18.02144061500013],[-98.78688992903784,18.020766486212835],[-98.78941472363454,18.02254358562749],[-98.7940706305676,18.02397548744449],[-98.80125961387802,18.022052427888127],[-98.8027679936838,18.019819237566026],[-98.8066333341825,18.016802757536368],[-98.80604961732172,18.014962077203563],[-98.80869090454723,18.0152468216055],[-98.8132402974706,18.01124040866563],[-98.8128401225838,18.009533934282672],[-98.81515183812127,18.008815924218425],[-98.81648868699989,18.004394518233312],[-98.8149384239544,18.00169670480767],[-98.81362071598676,18.00087583258056],[-98.81100511622759,18.000834215813143],[-98.80801928591785,18.003019620368775],[-98.8045462570982,18.002195518836515],[-98.80169470933447,18.003001915625816],[-98.76694679786044,17.989265669112115],[-98.76242294287846,17.99093652092563],[-98.75880654889897,17.990829928686424],[-98.75850285202557,17.989592185855315],[-98.75463703028123,17.990729439348854],[-98.75408618886593,17.98683831637055],[-98.75067294637529,17.986760598461785],[-98.74991912427845,17.983560080818904],[-98.74891816403346,17.98566563846697],[-98.74512607505534,17.985304327499648],[-98.73769187478172,17.983622927317754],[-98.7340647106567,17.98185259759299],[-98.73320748900073,17.982960129171943],[-98.73036929036346,17.980859045877764],[-98.72756028404251,17.9801670023557],[-98.72561518090384,17.97792572527038],[-98.7185449695549,17.974823128665662],[-98.7166570294363,17.973251180234],[-98.71590488382748,17.97018938748431],[-98.71344935077695,17.966628252882913],[-98.71260486209917,17.96771145137984],[-98.71248216552311,17.968019925946066],[-98.71198033238676,17.969208871771457],[-98.70710637791774,17.96559754132892],[-98.7085074012358,17.963448421305827],[-98.70850285136709,17.96329893788146],[-98.70954647900419,17.959530406589806],[-98.70594805419324,17.955614446220295],[-98.70166833746663,17.9541385792038],[-98.69843202278054,17.9560645920929],[-98.6975564603394,17.95806419652763],[-98.69334525618433,17.959212689665208],[-98.69178708399949,17.9613898464479],[-98.68810201939647,17.961938171278916],[-98.68508563950263,17.955894133968457],[-98.68251888530506,17.95628313070017],[-98.67885756915553,17.953397540851142],[-98.67310282353515,17.950302748774334],[-98.67428058994034,17.945191639658844],[-98.67270207981187,17.94308882374827],[-98.66559703374526,17.944816454176532],[-98.65667066434742,17.94029263316395],[-98.65396428241434,17.936447318577564],[-98.65119805868738,17.936169497157096],[-98.65221285603525,17.934116263688338],[-98.65053817563171,17.933161050598756],[-98.6477212996769,17.934844878859224],[-98.64455850868205,17.933592391952175],[-98.64356241463986,17.93501505692325],[-98.64033108606412,17.93532395880186],[-98.63817711095555,17.93953576644674],[-98.63574556454853,17.94056755692685],[-98.63393186425674,17.94305169591803],[-98.62610803313584,17.944877532893543],[-98.62243795421415,17.94390309891253],[-98.62351124087297,17.942347703509483],[-98.62370241969023,17.941762024012405],[-98.61813262728106,17.946838217986567],[-98.61322090715277,17.950496816443263],[-98.61283198372274,17.950871218247983],[-98.6124761043796,17.951488347138707],[-98.61205867897888,17.95242067800899],[-98.6104835224358,17.958062792460566],[-98.6085983682126,17.95833107364109],[-98.60807972202292,17.95832069187844],[-98.60526013686592,17.959807787348666],[-98.60423716955279,17.95962033130104],[-98.60314538877037,17.960184872195782],[-98.60227579775068,17.961524369329766],[-98.60092115703293,17.96098815233381],[-98.59580090015737,17.96277151981633],[-98.59636241780123,17.960172761798617],[-98.59625131547608,17.959792145881522],[-98.59365208601236,17.963148781023847],[-98.59518892916287,17.965626315178724],[-98.59390377362666,17.967302827229332],[-98.58805288667179,17.970355204110717],[-98.58787331164416,17.97030967982289],[-98.58838252702833,17.972256249607028],[-98.58595526359676,17.9747434293879],[-98.58060230409257,17.975941526957172],[-98.57539728779494,17.97635323921787],[-98.56951421896935,17.97215492248364],[-98.56480339011222,17.974234724333655],[-98.5595900243311,17.974149301823502],[-98.55539031924019,17.97284011097838],[-98.55535022275245,17.976177078600244],[-98.55394741947731,17.978773145916193],[-98.54377690039644,17.973353390420755],[-98.5419751694846,17.976363017504866],[-98.54040286540373,17.981876156794158],[-98.53809863465165,17.98371595195215],[-98.53606168207011,17.975684981653387],[-98.52962826903945,17.975822522665908],[-98.52711857337374,17.979135857736082],[-98.5271839026671,17.98214680478509],[-98.52559597493604,17.985160202400778],[-98.52670593195182,17.98983172956713],[-98.52478375478773,17.99299252035604],[-98.52672482199051,17.996288849054793],[-98.52365314724182,17.994242292909973],[-98.51518361635704,17.992595137459716],[-98.51451377037807,17.992556854887027],[-98.5100011136679,17.992520525384407],[-98.50497343430777,17.99341086928132],[-98.50049177067547,17.995578937960033],[-98.49844258845673,17.991951092008208],[-98.49449485866904,17.98908134387881],[-98.49197021711348,17.988928670440828],[-98.48928199883215,17.990901153557388],[-98.48679693240979,17.990798747543238],[-98.48371872789454,17.986036740726604],[-98.47961043431269,17.983464554279692],[-98.47936257152872,17.98188750187512],[-98.47638665620582,17.981043621880588],[-98.47433779595463,17.98352283199813],[-98.47189426691426,17.99131417705223],[-98.4690650130006,17.991189986251868],[-98.46076140058341,17.9893344702092],[-98.45619705992027,17.98983244409476],[-98.44814048325202,17.99071109623941],[-98.44018758407526,17.981981542876724],[-98.434220809799,17.983907520913363],[-98.43079452876083,17.982297152994875],[-98.4302599543322,17.98012469088866],[-98.42661662459574,17.97854416885275],[-98.42509433260182,17.976933543581026],[-98.42781040781483,17.97461510527694],[-98.43190647937774,17.97694122847639],[-98.43163945827615,17.975655338581248],[-98.43193087052566,17.975405267354006],[-98.43273263678975,17.97199888567701],[-98.43196719028407,17.970671132189068],[-98.4321890953305,17.964673270458434],[-98.43213029946429,17.96446291312901],[-98.4318032870022,17.96309044301671],[-98.42764394579291,17.95760431412009],[-98.42563426801246,17.956633851461618],[-98.42466449239697,17.952240196548303],[-98.42297639580539,17.949327712946058],[-98.4229431619562,17.94244114448128],[-98.42512809731011,17.93569705210905],[-98.42603554621411,17.93602678524195],[-98.42833073004431,17.930073281414593],[-98.43197772445842,17.9274847554816],[-98.43229032550931,17.927595410966944],[-98.4351364297076,17.924867289045153],[-98.43939500912,17.923123606239187],[-98.44138409627288,17.92333344435474],[-98.44192414829945,17.92344151492398],[-98.44358772340945,17.922296450481213],[-98.44223559482975,17.921108493006273],[-98.44195921468105,17.920818413797633],[-98.43922954890007,17.918995804081817],[-98.43918779331614,17.916317499422746],[-98.43652041938532,17.913924330794146],[-98.43664146909452,17.91146435129758],[-98.43443821865213,17.908372311958715],[-98.43460135807635,17.907698164148428],[-98.43403630785184,17.90386766388491],[-98.4323643542595,17.901331270364835],[-98.43272454765253,17.897644585578405],[-98.43551162755318,17.893401040702372],[-98.43551791791629,17.89141136875213],[-98.43243337101865,17.889044887454645],[-98.42936810354689,17.892596066035367],[-98.42615250959398,17.89317909328139],[-98.42432705021406,17.891860837866375],[-98.42650350725762,17.890298294048478],[-98.42654773680869,17.887847163063498],[-98.42496437096605,17.881650742693125],[-98.42356009694561,17.879630551231514],[-98.42359898771372,17.87936329454311],[-98.42355901015725,17.873639784486272],[-98.42458505472541,17.870571760314135],[-98.42498010216576,17.866031169065025],[-98.42489178018167,17.865989764252447],[-98.42076696342542,17.863694210415304],[-98.3987553767268,17.860911930121347],[-98.39785995594849,17.86175094706971],[-98.3980918466957,17.865492532076473],[-98.39471980278955,17.86612683990745],[-98.39160363794065,17.869553073716645],[-98.38927646597062,17.869891154422305],[-98.38891803018225,17.871938243240436],[-98.38988702658281,17.87642899034188],[-98.38764549464548,17.878252753806237],[-98.3869722525169,17.87864093352124],[-98.38260395824221,17.88366974288931],[-98.37836701171346,17.8836915633496],[-98.37695391136663,17.88195370251708],[-98.37315028566525,17.88322213910311],[-98.37056135525432,17.88236930311939],[-98.37046303710844,17.88007035562373],[-98.3628617151553,17.88163379801813],[-98.3604478951471,17.884216564005328],[-98.35780945017439,17.88493457947021],[-98.35882027786545,17.887059131854016],[-98.35556819149429,17.888588958922583],[-98.35427574331106,17.89031259924849],[-98.34954279841327,17.891146693372605],[-98.34907343315683,17.89317279303964],[-98.34697020504535,17.890007269158048],[-98.34679176308236,17.88976077181252],[-98.34359009112848,17.890197711979397],[-98.34275610957792,17.888225121962876],[-98.34034571284485,17.887343167576034],[-98.34019644141705,17.884746828800417],[-98.3385958337978,17.88335831388207],[-98.33431679712942,17.8840335022378],[-98.33200942410537,17.88034461528548],[-98.33177165502406,17.879953851346215],[-98.32882490306588,17.878926460672346],[-98.32638748614522,17.883713688412058],[-98.32369930094148,17.882521112708105],[-98.32437861322416,17.88485506274759],[-98.32092652915799,17.88611236039651],[-98.32016806976628,17.88786844397231],[-98.31677219871096,17.886397289888407],[-98.31556943097695,17.889674943319903],[-98.31096776994019,17.890340169678893],[-98.30806045638872,17.8898687619145],[-98.30619460886447,17.891607716529847],[-98.30240321552839,17.892713988443177],[-98.30152207742975,17.895153659411562],[-98.30330903179953,17.897644468457315],[-98.30352715768595,17.900348396856543],[-98.30154372403877,17.904154892115287],[-98.30144134041655,17.904594748377292],[-98.30083093039298,17.907861482894305],[-98.29861588644178,17.90952288599209],[-98.29826736192473,17.91137314287522],[-98.2955133493391,17.912658380482583],[-98.29451976874691,17.912682638014928],[-98.29227493834594,17.9144264594849],[-98.29167731771827,17.91407523487925],[-98.29015889752372,17.916053075029026],[-98.29195404641746,17.919717476936114],[-98.28795014005914,17.92568120614152],[-98.28670745311467,17.93073600349237],[-98.28472306821192,17.931531848106886],[-98.2823101472182,17.935150323306402],[-98.27857588935211,17.928792793142577],[-98.27844319598444,17.92867469292156],[-98.27498099383251,17.924078969538755],[-98.27425477522121,17.92325633193576],[-98.27394592416141,17.92295860735919],[-98.27332302221402,17.92236536819098],[-98.27280510051128,17.922379413225826],[-98.27209765889592,17.92283129080778],[-98.26657348827155,17.92528176846764],[-98.26613441825305,17.925233777007577],[-98.26369891500684,17.928107573554087],[-98.26286310313247,17.927063742199607],[-98.26262957252135,17.926917952501412],[-98.26144204722993,17.923988575222722],[-98.26120282290725,17.92362874105919],[-98.26104752038157,17.92279268036083],[-98.26124995312853,17.922334733636376],[-98.26522617176641,17.920127653266377],[-98.26610905722697,17.918875891101493],[-98.26891862089252,17.91715775026603],[-98.26996817398185,17.915305858078852],[-98.26983046082006,17.915259634797337],[-98.26963687661504,17.915139463444632],[-98.26894270494512,17.91483039796225],[-98.26832628724122,17.91411867213128],[-98.26832784117641,17.91378112162232],[-98.26772572013374,17.91169226653767],[-98.26330322849469,17.910380517110184],[-98.26108506064378,17.908604496409566],[-98.26101730140363,17.906914456666016],[-98.2587725205725,17.903420090197642],[-98.25861362505879,17.899467771621403],[-98.25768069664969,17.898548632051984],[-98.25791981040607,17.898475167363983],[-98.25832349728915,17.895463937764077],[-98.25583274783367,17.893556148421055],[-98.25601946009391,17.891914310683433],[-98.25343142105356,17.889057324326643],[-98.25537558133578,17.88663948620632],[-98.2547748925931,17.883626531660752],[-98.25247796290233,17.884899194786556],[-98.24754673037171,17.883228213943823],[-98.24653759481697,17.878442637327566],[-98.24496907872708,17.87855359078128],[-98.23481594465989,17.87926594503955],[-98.23383809026836,17.879351680838795],[-98.20974640186176,17.87975814483582],[-98.20711701307204,17.886996215135753],[-98.2046668130053,17.888074859864503],[-98.20542571907527,17.889269078508278],[-98.20498048611722,17.889263642392564],[-98.20271011211855,17.890973577094996],[-98.19749668609086,17.891217968120657],[-98.19512281121581,17.89372996241218],[-98.19643720592705,17.89549825218188],[-98.19462630667556,17.8961436809696],[-98.18770765358619,17.895350876559576],[-98.18366576727527,17.897759584777532],[-98.18303961121904,17.89579038711412],[-98.1768946255255,17.89741692398178],[-98.17477718582887,17.89909353916198],[-98.17499845421719,17.901507709122313],[-98.17091110073318,17.90205837611643],[-98.17211603305469,17.903329451265733],[-98.17010667358994,17.90588161871716],[-98.170181981562,17.908363576958777],[-98.16757462862267,17.909873265493502],[-98.16762979749495,17.911486594875953],[-98.16764401473364,17.912522939661926],[-98.17015932896732,17.913052460289975],[-98.17046392606039,17.91485918704518],[-98.16629300346466,17.915778591538356],[-98.16529265586638,17.91764408295836],[-98.16686067173765,17.919859876292776],[-98.17074257321303,17.920891759854328],[-98.17202823311618,17.922553396238527],[-98.17289427714968,17.93154393806634],[-98.17291031290273,17.93171159275238],[-98.17255284253139,17.932980018620356],[-98.16900454072106,17.93329879023463],[-98.16910815573596,17.93581670135262],[-98.1734892998262,17.941122006760224],[-98.17356392345073,17.941929567315185],[-98.17055307007081,17.943085286007488],[-98.16921335300202,17.947978414018735],[-98.16969798689553,17.952615671584738],[-98.16550901373256,17.95434694710201],[-98.1652224952187,17.956596255935608],[-98.16242998731457,17.962527040861005],[-98.16005424366432,17.962052371356208],[-98.15539436164727,17.963611277228154],[-98.15336945069367,17.967409421797356],[-98.15298321556872,17.968500599632534],[-98.14815950570562,17.971806220323515],[-98.14406472870115,17.970635830454228],[-98.14333057721495,17.97163433014248],[-98.13705906495824,17.974718655055824],[-98.13443308492856,17.97463404002741],[-98.13063012054454,17.97839584502276],[-98.130325711225,17.97836566826669],[-98.1321385591391,17.98344226914969],[-98.12936085297162,17.98722192353557],[-98.12301839820981,17.984387456720924],[-98.11689324097051,17.98247673271186],[-98.11555773961567,17.979760002246167],[-98.11302616066678,17.978425226606817],[-98.1110337669042,17.981761705332644],[-98.10778620433723,17.982847568585157],[-98.10440354996365,17.981747181171613],[-98.09923401000196,17.98165840362043],[-98.09473173645449,17.985299576689613],[-98.09267878676155,17.983620190810882],[-98.08954035292652,17.984366978950334],[-98.08777138459851,17.98309771613242],[-98.08186969560052,17.981342803043106],[-98.07918892737183,17.9821186505618],[-98.07494108552709,17.98070628793971],[-98.06995778358123,17.982606107947333],[-98.06545680894095,17.9855713939113],[-98.06083537259826,17.984496766758355],[-98.05917941094015,17.98193532697934],[-98.05422996582081,17.982927902471545],[-98.05202769575982,17.98218007922395],[-98.05161561590728,17.982190768104317],[-98.04756515331894,17.98106558682298],[-98.04633919214217,17.97935836345266],[-98.04671375822352,17.976205799501827],[-98.04447681678175,17.97939043677019],[-98.03769646231888,17.982705163409832],[-98.03855232533954,17.98627994853217],[-98.03787452652864,17.987531853105054],[-98.037376908292,17.987836228698427],[-98.03501458049772,17.98768501053297],[-98.03416580152475,17.98818289154491],[-98.03360831217071,17.988765899655164],[-98.03070316658119,17.991847717157157],[-98.03041127205273,17.991874147795613],[-98.02978684024487,17.99183644063271],[-98.02971101065344,17.99165611935217],[-98.026436743673,17.98647331760742],[-98.02450404937753,17.98526730575844],[-98.02021169198747,17.985738285001617],[-98.01970537631115,17.985672537206312],[-98.01904822384438,17.98499519104564],[-98.01878690571664,17.98444622334108],[-98.01806392741435,17.983726410652196],[-98.01771356387144,17.983345498065887],[-98.01541271206361,17.981143248394744],[-98.01526025600384,17.980826524888812],[-98.01515164409432,17.980552147249114],[-98.00359157512514,17.97768627739373],[-98.00267387237795,17.97734425086429],[-98.00228776692381,17.97732174724473],[-98.00205255702792,17.97717691853444],[-97.99888059061112,17.97546754821377],[-97.99861445257534,17.975356874074237],[-97.99485820573045,17.974694313190753],[-97.99441870460566,17.974742932900767],[-97.98998611763636,17.975357637523985],[-97.98667359656042,17.978682189664937],[-97.98355887446445,17.974449876856625],[-97.98263585358268,17.96897466692195],[-97.97937669643937,17.964441640369273],[-97.97445754175607,17.965530705245214],[-97.9718061230609,17.967381434744823],[-97.97129599713662,17.967378731206452],[-97.96891875054007,17.968513653933144],[-97.96756287858466,17.970701640280765],[-97.95171631519713,17.966567930430813],[-97.93738031659399,17.967900846436805],[-97.93516503624625,17.96252288955378],[-97.939713218176,17.960339858632267],[-97.94292090626902,17.956019791879726],[-97.94869615061691,17.94843602264939],[-97.94428604876663,17.94806560565769],[-97.94200575478101,17.945081078848375],[-97.9414547981757,17.944548244208306],[-97.93783942512016,17.940176325111338],[-97.93976697804226,17.93465746189213],[-97.93597075353995,17.9248449807896],[-97.93650737377288,17.924007121308478],[-97.93749195190128,17.92247642540616],[-97.93788904957086,17.92066475559983],[-97.9375213952681,17.918967858799647],[-97.93630192416049,17.91717912293535],[-97.92976552523862,17.916921714403372],[-97.9287270449048,17.9164811285504],[-97.92659277340289,17.917360702750557],[-97.9201020035166,17.916880465933104],[-97.91847435000881,17.91534833984008],[-97.9181920678351,17.915124764559494],[-97.91706952769096,17.915458157918636],[-97.91573767064068,17.915486116668774],[-97.91480559199931,17.912889020867283],[-97.91468452814678,17.912684526433793],[-97.91399201567913,17.912045824383597],[-97.91329807498755,17.911862282820834],[-97.91062176643379,17.91165999596194],[-97.90763945816383,17.910098956141496],[-97.90310485884157,17.90915696378113],[-97.90223967310448,17.909295682558763],[-97.90137683596106,17.909904639645276],[-97.90079178243934,17.910204427752888],[-97.89918115799628,17.910871019272292],[-97.89894153301356,17.911389687118174],[-97.89851459699798,17.911613368204826],[-97.89815813882905,17.911905275733886],[-97.89710125968082,17.91222505995364],[-97.8965869579684,17.9122606538848],[-97.89610029503547,17.912536243859677],[-97.89549496239232,17.912808582111495],[-97.89436825055498,17.913006388548524],[-97.89344556336022,17.912745919239285],[-97.89017656279248,17.912532932878662],[-97.889689281845,17.912492546929855],[-97.88797433777432,17.91333752073473],[-97.88729817705809,17.91337298349191],[-97.88665747978848,17.91340797626947],[-97.8850571469581,17.913935974013327],[-97.88467027145379,17.913742999536908],[-97.88430522244363,17.914009736397077],[-97.88293427970359,17.914789234901377],[-97.8829254357608,17.91555493347579],[-97.88250625741375,17.916091072029815],[-97.88198989556889,17.91659014474027],[-97.88141377196575,17.917248185214817],[-97.88119492079034,17.91742743801086],[-97.88083606025742,17.917539544055842],[-97.87911162952986,17.9179092132473],[-97.87210318689705,17.917498176295283],[-97.85938971439174,17.914052947418668],[-97.85401065972763,17.911573028294413],[-97.8495982602463,17.910758136623997],[-97.83235576397612,17.908532345215008],[-97.83083989573845,17.913700809720126],[-97.82696628952965,17.91457112924303],[-97.82175001695941,17.914626695253503],[-97.81921201623499,17.915823648071978],[-97.815110689434,17.926410070063298],[-97.81122605785765,17.938145398697486],[-97.81184389429143,17.93915313894513],[-97.81251624601595,17.939962868030705],[-97.81302067870371,17.941329942184836],[-97.81312423021535,17.942912799194232],[-97.8130017596381,17.94416692180141],[-97.81275822948623,17.946456924199083],[-97.81073294835699,17.949902590615636],[-97.80558276682035,17.952053357975558],[-97.80478023339413,17.952594013215787],[-97.80386210038301,17.95335219354746],[-97.80346379371787,17.953775384210246],[-97.8033023476512,17.955362541302406],[-97.80322741538157,17.955939575425816],[-97.80336587110435,17.95648395761509],[-97.8035403082564,17.956960618115886],[-97.80428095581414,17.95778047440359],[-97.80426924488404,17.958289743887235],[-97.80337465045523,17.960458566323723],[-97.80242538143295,17.959405864390476],[-97.80045875845161,17.960089830901268],[-97.79955157004474,17.959821753604558],[-97.79862263958773,17.96135302353713],[-97.79629300899842,17.960895650468615],[-97.79631833147664,17.961404084885487],[-97.79634030061465,17.961777000155735],[-97.79139579662717,17.961992248450315],[-97.79077117861135,17.961820627297243],[-97.7879112197719,17.963500439910035],[-97.78734516063616,17.96399968827268],[-97.7850178396555,17.96538855541769],[-97.78445327578129,17.96565350298647],[-97.78397463512874,17.965972098276154],[-97.78346946314957,17.966298973557684],[-97.78001976130867,17.96644503115766],[-97.77811527126727,17.96889781637242],[-97.7760288881189,17.96895149942935],[-97.77574088324855,17.96918428075776],[-97.77277870741068,17.971545817873675],[-97.77326173081224,17.97254286452761],[-97.774057721661,17.97404014700163],[-97.77425882052933,17.976548145178924],[-97.77413026359363,17.976848982231616],[-97.76817795741522,17.97650410571123],[-97.76818835280005,17.976782760956212],[-97.76724361445628,17.982521994698516],[-97.76734755547398,17.98867755215946],[-97.76494595474082,17.990723005907853],[-97.76663952955909,17.992350230524266],[-97.76632925275806,17.995017027061465],[-97.76956215600916,17.997415771711644],[-97.7688098980368,17.998846317302764],[-97.76888399632026,17.99904177167616],[-97.76638100317354,18.00591488312415],[-97.76307618755635,18.00693881046334],[-97.76252852666403,18.00684429483158],[-97.76012998762337,18.006652804506984],[-97.75832805994156,18.00408553227703],[-97.75448461008807,18.005351484722098],[-97.75353062494787,18.004707780028298],[-97.74943041278846,18.006407000455397],[-97.74869421222712,18.00756302077525],[-97.74508168300338,18.007135420222937],[-97.74330279863955,18.008889161962657],[-97.74082557512605,18.009086483603653],[-97.7285381583111,18.012225602765966],[-97.71874846728133,18.00382380882536],[-97.69974223090924,18.001636527609662],[-97.70046597084513,18.004276833521885],[-97.7004356359505,18.004727512344687],[-97.69995425164495,18.011421487415987],[-97.70032569393254,18.014042232961913],[-97.70026595381046,18.014288901297277],[-97.70012242367528,18.01600792880714],[-97.69978115141669,18.01644614378182],[-97.69777484389164,18.018816455580236],[-97.69858594710303,18.02085491813915],[-97.69878332843786,18.021263136576522],[-97.69883006772409,18.021693893182373],[-97.7150025841683,18.029755627908912],[-97.72992615597542,18.037322928557046],[-97.7402769969118,18.046715037069646],[-97.74380242246559,18.051657870625093],[-97.74246425778006,18.055509060825955],[-97.74875547418424,18.058680059413234],[-97.74882714661595,18.060422799528112],[-97.74944213912772,18.060847391331606],[-97.75281061320538,18.06091613347246],[-97.75859766157265,18.063777720865687],[-97.76020342851308,18.066129402707645],[-97.76427982783378,18.068399582133964],[-97.77167109154101,18.06836754752237],[-97.7800634205966,18.058117996588862],[-97.79760536101384,18.03687753560041],[-97.79775943809113,18.033500195884756],[-97.79675278366199,18.01621484749836],[-97.79312364200291,18.01418998760971],[-97.79088652920467,18.01406914063],[-97.78905994671692,18.011169546284066],[-97.79042836238091,18.008235553444763],[-97.79092097609748,18.00415809887346],[-97.79530373730876,18.003026407977075],[-97.79567807818478,18.00266416668842],[-97.79606566391334,18.002306073987654],[-97.79643143135002,18.00216166209742],[-97.79676084927098,18.001870937573642],[-97.8027613350618,17.998448284517224],[-97.80665171322278,17.99889923724197],[-97.80987997303077,17.998303477022148],[-97.81236262814167,17.99453650102754],[-97.815582977357,17.994123670072895],[-97.81624812759401,17.99195482354935],[-97.82140414728514,17.988161612654608],[-97.82601139442056,17.97284080742054],[-97.82627191085885,17.972677156168174],[-97.83563138721235,17.983450183988396],[-97.8426044503421,17.99608173540389],[-97.84269077089323,18.005197612783263],[-97.84273349790152,18.01893061521946],[-97.83793854244772,18.030228501605393],[-97.83651823943893,18.034552208178752],[-97.83616239077105,18.03637254129785],[-97.83557166852557,18.04538741463864],[-97.83519583191821,18.047505607682524],[-97.83478214779001,18.049798523991285],[-97.83299851797602,18.050734772793476],[-97.83056273480418,18.051040754061034],[-97.82918014676017,18.051140399390192],[-97.82640675316264,18.053264271723663],[-97.82517045695175,18.05416364255086],[-97.82020454837556,18.05764106625628],[-97.81843856270791,18.060150952657068],[-97.81371798456604,18.0628656555549],[-97.81067031695892,18.067717176501503],[-97.81836026019533,18.073015242308713],[-97.82585269402784,18.07609549486591],[-97.84945998408705,18.083740671622138],[-97.86050797289033,18.101829084222743],[-97.86057480122332,18.10313535910001],[-97.86282896777135,18.11032452445886],[-97.8640484524716,18.111375497133963],[-97.86722086370588,18.114895317878904],[-97.86666013380108,18.12834077811067],[-97.86748293733467,18.14457129675651],[-97.86394149042889,18.1479666089769],[-97.85734381726456,18.15558091296316],[-97.85565765409251,18.15923317439882],[-97.85362667440063,18.167925005968698],[-97.84790231360165,18.17248284258403],[-97.84419445775706,18.171041418539005],[-97.84310833363241,18.16955595421001],[-97.83959449092038,18.170771138701753],[-97.84101277283264,18.17180776025407],[-97.8444819061911,18.174218092778574],[-97.84712079245429,18.180672821569487],[-97.85052101414607,18.18305708042385],[-97.84995074612073,18.18808678830976],[-97.84982015628009,18.189172327814788],[-97.85463301994992,18.191136325448838],[-97.85922661894932,18.192289155452727],[-97.84932349184953,18.204992893376243],[-97.84476319403541,18.213298157293707],[-97.84410307251773,18.216151147275184],[-97.83956573180353,18.21827993000221],[-97.8247236167698,18.222859243624384],[-97.82296059180658,18.223403998625315],[-97.82432285080966,18.227293298911377],[-97.82761713817405,18.23657957122765],[-97.81545511299032,18.262046669301753],[-97.8075553801105,18.2705257298893],[-97.79882887666014,18.281201631116176],[-97.79729701825266,18.283174867720845],[-97.7941154229527,18.28387632831391],[-97.79402528299914,18.283893097877638],[-97.78319462050274,18.28628188147968],[-97.76186219464859,18.280956691893323],[-97.74974722866307,18.275763949613236],[-97.72127383104583,18.276048183456112],[-97.72123201953872,18.27608445252457],[-97.71413454153617,18.279652381708672],[-97.71085630060719,18.285342160091147],[-97.6997063115794,18.28822905619694],[-97.68633147170794,18.289376832628193],[-97.68069728808405,18.28970974879178],[-97.67747145834772,18.291180470125482],[-97.67472483137487,18.29072100805996],[-97.67317210601686,18.290779109096434],[-97.6667770335809,18.290742196972815],[-97.66235133009809,18.292151881528525],[-97.66039211630272,18.292750466196253],[-97.65471371224947,18.29309255433344],[-97.65311011447756,18.291051981191345],[-97.6518764126161,18.28949647003037],[-97.64985706563527,18.28694325727662],[-97.64455414407189,18.280148135516413],[-97.64327363831882,18.27563593915835],[-97.64309280949601,18.274204770632252],[-97.6429204706871,18.272836651868772],[-97.64165132373978,18.26276131205367],[-97.63955162539656,18.252482919022953],[-97.6389699925877,18.24520317412538],[-97.63895244830036,18.24200734086139],[-97.6389429874647,18.23825095383563],[-97.63747521669552,18.232038688179387],[-97.6374607830723,18.220198615168158],[-97.63822301529393,18.212987700451606],[-97.63745623590381,18.207098718579118],[-97.63713121492361,18.205304842639066],[-97.63641960448933,18.20243292750405],[-97.6340236535807,18.200068050772984],[-97.63541518745825,18.195310044531027],[-97.63585328349967,18.193746722736307],[-97.63594431028861,18.1935952062081],[-97.6379688184951,18.191425034498593],[-97.63941402356824,18.18986538532681],[-97.64047155477607,18.18877975487493],[-97.65317592199148,18.175288716927355],[-97.65253659566139,18.17488940538408],[-97.63770322518928,18.165551361837288],[-97.63638214860737,18.164821803276027],[-97.63382112241084,18.163419228344424],[-97.63193812828922,18.162344909879664],[-97.62993796300981,18.16123737617545],[-97.62946455608738,18.161037462974264],[-97.62664203311596,18.15944370871324],[-97.62448021902941,18.1582621212022],[-97.62340458351969,18.157641751629797],[-97.6205765422228,18.156053509164053],[-97.62057394188605,18.15584239635149],[-97.61797897793656,18.15369600666935],[-97.6121438094429,18.15247552705847],[-97.60999358236074,18.153942239422634],[-97.60856317506625,18.152909623635253],[-97.60820236915424,18.152472062915137],[-97.60817423144931,18.146828606234862],[-97.60667262133569,18.144458013211818],[-97.60614610632012,18.141098123765687],[-97.60439399616627,18.137388054123107],[-97.60578242583011,18.135223169859614],[-97.60815351362317,18.13101065680354],[-97.59700877705598,18.125499115726484],[-97.59745500289779,18.126457696111174],[-97.56961978980377,18.103387367377024],[-97.56808545099352,18.09211300470281],[-97.56739516698258,18.089778046916763],[-97.56681641207564,18.081645070885088],[-97.56550508462601,18.079387899207802],[-97.56296329418859,18.07625605134905],[-97.56174299462151,18.07296047937001],[-97.56379168708946,18.06258058939244],[-97.55632300751085,18.051681407260503],[-97.5576307410139,18.04688137479212],[-97.54965517928156,18.039813280865076],[-97.54823815043608,18.038279873884505],[-97.54390545867898,18.03344457536133],[-97.54275948651832,18.03396358394798],[-97.54121736800863,18.038639311381644],[-97.54003244861758,18.040235689575923],[-97.5369007774122,18.04332016398854],[-97.5351304894599,18.04615762915182],[-97.53181020193762,18.045662950711346],[-97.52237450281802,18.04464770444332],[-97.5154886837056,18.039107851366282],[-97.51389712897867,18.037695028096493],[-97.5059151063399,18.02782160761319],[-97.5032663473146,18.029207759234737],[-97.49918815877476,18.02978844971375],[-97.49432655111957,18.028127803297252],[-97.49283158299374,18.02726895004423],[-97.48993400774646,18.02612750411356],[-97.48924458238218,18.02559156918369],[-97.48255482239045,18.02721334698373],[-97.48064112822374,18.027384324202615],[-97.48041656693056,18.027355507826485],[-97.48016573588109,18.02716446776043],[-97.47989867873218,18.02718090604793],[-97.4797211514321,18.027202301293187],[-97.47973598360608,18.027063332694922],[-97.47156439027776,18.026665107640383],[-97.46691820541434,18.02695130302675],[-97.46534801471768,18.029007824388657],[-97.46874052971629,18.03070746465079],[-97.46683958749276,18.030878626791946],[-97.46480979226612,18.031555172931405],[-97.46330951504552,18.033803459543435],[-97.4629274711856,18.03759846441841],[-97.4598338036136,18.036802126196903],[-97.45801613835494,18.04082696469368],[-97.4551559126686,18.041480818174705],[-97.45322497578002,18.043749383348654],[-97.45545441244201,18.04554035191569],[-97.45470421603386,18.048645202792216],[-97.45117253597226,18.050270693166],[-97.45146920197641,18.051620690389484],[-97.44785727278565,18.05291813693043],[-97.44748097418608,18.05551617957707],[-97.44952547958235,18.06142070743499],[-97.44688442668757,18.061785533336035],[-97.44671167464821,18.062101111927404],[-97.44840173092865,18.065416427906143],[-97.44763822899961,18.06623180144601],[-97.4444576133618,18.06395206327619],[-97.44317153792804,18.066196143124728],[-97.44370238622673,18.06862719157067],[-97.4418265467391,18.068924975145876],[-97.44136299641059,18.071943188356613],[-97.43822091483139,18.071396235876136],[-97.43782259331721,18.069231639557643],[-97.4347627237014,18.068581310404397],[-97.43487343929053,18.070730294389477],[-97.43236001692367,18.068519717520758],[-97.42956259759899,18.06967941265782],[-97.42555917786405,18.069275975613664],[-97.42579395799851,18.0745403468664],[-97.42389175607298,18.074897179272682],[-97.42309162228815,18.077732759689923],[-97.41827320685559,18.086036334585287],[-97.4158449770951,18.08634313208256],[-97.41842485881926,18.08954363058649],[-97.41543605251519,18.09158349221741],[-97.41440880389251,18.095852388186188],[-97.41441511613641,18.096494187626433],[-97.4142217563732,18.097010564677078],[-97.4141154766964,18.097140100360775],[-97.41382521233407,18.097228597781907],[-97.41370326575338,18.09723503821442],[-97.4117783398429,18.09629217640486],[-97.4115895267787,18.096342597953367],[-97.41134013445458,18.09655018978316],[-97.41125362555408,18.0967639565622],[-97.41128666293616,18.09794571922629],[-97.41127237355653,18.09809577292708],[-97.41131185845563,18.098300587478036],[-97.4113964519442,18.09854219226702],[-97.41156741689349,18.098972342001503],[-97.41158090296068,18.09912324604346],[-97.41104135192296,18.100023150846766],[-97.41097121379153,18.100180347930745],[-97.41096960352758,18.100782266416275],[-97.41108975306474,18.10106922331596],[-97.41135021841711,18.102148344820478],[-97.4113272610615,18.102280429931113],[-97.41091247546848,18.10248904632124],[-97.41078802142994,18.102469729365396],[-97.40863753905882,18.10220027961384],[-97.40821645322092,18.102320170645328],[-97.4074767172686,18.102545382283267],[-97.4052161809119,18.102234874255657],[-97.40516467637661,18.102371203285486],[-97.40533902581558,18.10322129636836],[-97.40558464042078,18.10363603917517],[-97.40578414656107,18.104687923305733],[-97.40559122359292,18.104822478589995],[-97.40513071988897,18.105011974306876],[-97.40486132231877,18.10503027574123],[-97.4046277737952,18.105085084848838],[-97.40442200148561,18.105140745619053],[-97.40422578518718,18.10518784594518],[-97.40396090218411,18.105347924646765],[-97.40378564309208,18.105599275479904],[-97.4036581618276,18.10580782847063],[-97.40358277988298,18.106049491895362],[-97.40352031414284,18.107083326577026],[-97.40346868212782,18.107241089568674],[-97.40340927261184,18.107354351530432],[-97.40277609670716,18.107441168730077],[-97.40254817776184,18.10732794901918],[-97.39908698823808,18.10282399728277],[-97.39748924821856,18.103483158490917],[-97.39721331971748,18.103696000819014],[-97.39702101836235,18.103902557785545],[-97.39682212766479,18.104029239866236],[-97.3958922249962,18.10329248282011],[-97.39577032341049,18.103058573531882],[-97.3942666296241,18.10003238893279],[-97.39408086346612,18.100044386776574],[-97.39377498466655,18.100503552642635],[-97.39367229589016,18.10080138270564],[-97.39130081358621,18.10021505523514],[-97.39121481077217,18.100292084072862],[-97.39072677979601,18.10212725574189],[-97.3906335985198,18.10214209587548],[-97.39051382939817,18.10212070858779],[-97.39046585738743,18.102031368189785],[-97.39033827604925,18.101691049111253],[-97.39030030814132,18.101442011358188],[-97.38976381972947,18.10085895409668],[-97.38962493969552,18.10085468334438],[-97.38801501678256,18.10215074970654],[-97.38618450440936,18.099810477854476],[-97.38611430544296,18.099693234967788],[-97.38595958789415,18.099608801313252],[-97.3858681934991,18.09957057806946],[-97.38568448879681,18.099436693978078],[-97.38553066471871,18.099325729442228],[-97.38536639376912,18.099249852989715],[-97.38290216391215,18.097249975495913],[-97.3826545701616,18.097171530044363],[-97.38232874080558,18.097214609021194],[-97.38174337934129,18.097258545650618],[-97.38139992626003,18.097274522441012],[-97.38111232174589,18.097283366683143],[-97.38066700861106,18.0971929814134],[-97.3803506143791,18.0971351877742],[-97.38005203650039,18.097045912994417],[-97.37982670611058,18.096937542113437],[-97.3790513244715,18.09616245408131],[-97.37904802631886,18.095985302851602],[-97.37911939106272,18.095792748184294],[-97.37936737419096,18.095607950228157],[-97.37964818673629,18.095484388815123],[-97.38001562878827,18.095377867600178],[-97.38037665303165,18.095225762855364],[-97.38039124700487,18.095083923808886],[-97.38028961281299,18.09457888116566],[-97.38020890916289,18.09453100050814],[-97.37987069312044,18.094420711096973],[-97.37964348400749,18.094398577530683],[-97.37939107486784,18.094372640674635],[-97.37911316008137,18.094351969726517],[-97.37883392079101,18.094370598667012],[-97.37836794149035,18.094352033070322],[-97.37715096118967,18.094413220444267],[-97.37677963910573,18.09441459703129],[-97.37613646699282,18.095115355172197],[-97.3761107928288,18.09532702241006],[-97.37623695391625,18.095568883474925],[-97.37627916764296,18.095784631693675],[-97.3763675245549,18.0960018030853],[-97.37657135201357,18.09651266943257],[-97.37650903955011,18.096750669641665],[-97.37645285592674,18.096873310739795],[-97.37633454340977,18.096973307029998],[-97.37612603894428,18.09702542848504],[-97.37558845867011,18.097223543638847],[-97.3754122823762,18.097306881706857],[-97.37508309594654,18.097544381064438],[-97.37491508828543,18.09770120871258],[-97.37480002577195,18.097896391838958],[-97.37457717492447,18.098316042002807],[-97.37417211276244,18.09882632081559],[-97.37380196685422,18.099158003966068],[-97.373418660462,18.100055327550024],[-97.37348138129266,18.100119230490577],[-97.37353847152929,18.10172330276771],[-97.37319596676889,18.10200182667279],[-97.37165754042036,18.10238083645652],[-97.37121400590229,18.10223109285357],[-97.37075740833956,18.101957262281132],[-97.37064941057258,18.101834368199206],[-97.37020345252643,18.101284892032083],[-97.37006905355281,18.101147953365967],[-97.3698979173945,18.10100102752932],[-97.3691948632158,18.100687178746796],[-97.36893024868101,18.10056392194224],[-97.36870326526855,18.100424122174047],[-97.3681689583837,18.1003279425629],[-97.36776438383953,18.10039338376947],[-97.36655625301347,18.10118000536579],[-97.36651753236794,18.10138722958436],[-97.36669357136844,18.101692038729425],[-97.36684317097388,18.101840662055338],[-97.36704142595477,18.102012038446787],[-97.36715043775575,18.102077375390138],[-97.36785113388834,18.102199902679615],[-97.36804514413427,18.102267156368782],[-97.36863491761187,18.102595504240526],[-97.36882655086117,18.102669167587408],[-97.36898603879678,18.10288655602318],[-97.36904723669954,18.103000411559776],[-97.36904215870453,18.103150748961298],[-97.3670207357851,18.10413751348119],[-97.36677284970835,18.104204914635545],[-97.36659603620791,18.104226007981822],[-97.36588558776526,18.106562424158938],[-97.36394087815125,18.10726768601603],[-97.36377823952506,18.107551668702456],[-97.36338388618123,18.109101417736667],[-97.36308833038413,18.10926693871488],[-97.36151130977555,18.110827411420246],[-97.36131529378872,18.111018231152002],[-97.36028093089828,18.112961293062483],[-97.3600708111502,18.113201249688984],[-97.35964560740848,18.113609763815703],[-97.35942887173451,18.113832034396808],[-97.3591250940176,18.114084402214473],[-97.35640979296602,18.115780644230995],[-97.35613257772059,18.11602878874504],[-97.35539138596579,18.116481242485634],[-97.35523873778891,18.11660930605518],[-97.35477329448833,18.118672973476464],[-97.35472659771972,18.119012905591603],[-97.35485787220983,18.121801129175708],[-97.35476227634564,18.12188669629569],[-97.35450209695847,18.12190519394835],[-97.35434497764447,18.12189147310204],[-97.35259188511031,18.123487996998733],[-97.35244042581508,18.123580684281308],[-97.35134143911819,18.12373252639088],[-97.35100807542892,18.123722190652757],[-97.35010208760855,18.123649833075206],[-97.34990136507076,18.123555079163623],[-97.34971170361479,18.123407550981085],[-97.346420385682,18.124355574927733],[-97.34591534667078,18.125579308320937],[-97.34531540382903,18.1259103861222],[-97.34347030172648,18.126157804630964],[-97.34326127877125,18.126280718922715],[-97.34228321106735,18.127857686202105],[-97.3420855193782,18.128332320501613],[-97.34199184029035,18.12866043624615],[-97.34185163752397,18.128900409520668],[-97.33983731531208,18.13001976404513],[-97.33967244950117,18.130189859144878],[-97.33967411102992,18.130485549543437],[-97.339674593322,18.13071413084134],[-97.33814596535024,18.13602503824052],[-97.33801956061637,18.136344256684765],[-97.33763488915366,18.136734262005575],[-97.33744311741305,18.13679135262811],[-97.33657104721613,18.136709062484556],[-97.33644416125543,18.136799696446587],[-97.33507418916525,18.13966193716834],[-97.3351386413978,18.139868905615515],[-97.33522221508775,18.141278730359943],[-97.33516030916547,18.141536945717462],[-97.33250846442166,18.14464720169343],[-97.33239665287812,18.14502204687801],[-97.33209224887753,18.145477596996557],[-97.331885312194,18.145494800725828],[-97.33132946020709,18.145335624286474],[-97.33112735239285,18.145211105144483],[-97.33072789393435,18.145064677394373],[-97.33060260568686,18.145108066950684],[-97.32220485870471,18.145333023823525],[-97.3219272119577,18.145410068483784],[-97.32096941518353,18.146099350140616],[-97.32076972673684,18.14625532814233],[-97.32059012511951,18.146438887510214],[-97.3204214553229,18.14654396965176],[-97.31960041729991,18.146415882808412],[-97.31941373290823,18.14632335605876],[-97.31927042629286,18.14616912850147],[-97.31903695921477,18.14599632288082],[-97.31824514300109,18.14597948617495],[-97.31813042315599,18.14619659549959],[-97.31803997882628,18.146324239649402],[-97.31483469186679,18.148971710008425],[-97.31466359227551,18.14914764715047],[-97.31430974651266,18.14935728354169],[-97.31406551324005,18.14949940753553],[-97.31189646366062,18.1522750008063],[-97.31176183967455,18.15234961125941],[-97.31154260559612,18.15248463165534],[-97.30954470632048,18.153426860595175],[-97.30949092054846,18.153551289094537],[-97.3094304613777,18.15453168243772],[-97.30934601320615,18.154745529527816],[-97.30923409057942,18.154917061557455],[-97.30909912291634,18.15506551365661],[-97.3090269589166,18.155244541071397],[-97.30812260525221,18.156343369310605],[-97.30784429021583,18.156515946821855],[-97.30740024875934,18.156706984192624],[-97.30719383256462,18.15670840713443],[-97.3068876546281,18.156730353778528],[-97.30667859901973,18.156726889296692],[-97.304031920304,18.15685494822975],[-97.30393104754967,18.15708592460163],[-97.3036048174136,18.158895532128042],[-97.30354250934573,18.159027574870322],[-97.30340868360412,18.159078557932332],[-97.30203867438047,18.15762477062742],[-97.3019695888209,18.157472848729242],[-97.30183183609103,18.157397595485747],[-97.30148550702154,18.157386745425924],[-97.30017263413833,18.15781203646776],[-97.29966060509781,18.157795989319595],[-97.29949364163139,18.157772958818214],[-97.29912217243617,18.157734618888014],[-97.2977713339011,18.158908422718696],[-97.29779792567894,18.159192920875796],[-97.29744499342024,18.159738999957312],[-97.29730663267924,18.15984832365018],[-97.29671007338482,18.160070875773556],[-97.29634764292751,18.16007525238325],[-97.29321021664254,18.159083981885033],[-97.29287424167734,18.15907942645572],[-97.29255445817495,18.159053111413698],[-97.2897440710289,18.15999806407183],[-97.28938374893744,18.160054269583213],[-97.2887267839871,18.159974984301925],[-97.28806119267756,18.159761922889857],[-97.2876561172871,18.159426192085277],[-97.28507602474212,18.158565334282287],[-97.28138985047605,18.160526547091877],[-97.27881624761767,18.160093612431467],[-97.2778048084752,18.157784195359113],[-97.27751226748421,18.15727907270326],[-97.27676428940839,18.156863587668227],[-97.27651518351468,18.156799751949677],[-97.27196480000788,18.158596042499198],[-97.2679780823454,18.158947403936224],[-97.26767069995742,18.15884003884304],[-97.26709115839361,18.158634911609283],[-97.2668094805623,18.158586462099265],[-97.26644295024306,18.158526902070207],[-97.2662663976298,18.158545325083878],[-97.26560282077725,18.160466758037785],[-97.26553335932891,18.160685402633362],[-97.26111921598198,18.16229680480984],[-97.26091479094481,18.16239432758357],[-97.26074162712331,18.162556827371418],[-97.26013134590647,18.163489381515546],[-97.25998383721497,18.163636694009995],[-97.25979697446536,18.16371077484996],[-97.25939005168749,18.163849887324886],[-97.25906314025144,18.163855550802793],[-97.25876693731885,18.16394217111315],[-97.25853823259177,18.164014927461494],[-97.2583340791308,18.16410445710011],[-97.25818234618112,18.164131654526273],[-97.25679638050985,18.163416985397816],[-97.25651013291622,18.163215963806238],[-97.25598480580675,18.16290339658292],[-97.25566093893883,18.16282116342967],[-97.2552249680279,18.162831367147362],[-97.25503865705781,18.162889461895247],[-97.2548847117493,18.162980575226868],[-97.2547818044863,18.163049307328663],[-97.25447227576268,18.165121593101844],[-97.254308016665,18.165221443830262],[-97.25233764335411,18.167100739133446],[-97.25223059019964,18.16716287108102],[-97.2516933150971,18.166547891826667],[-97.25187609880271,18.166157726220888],[-97.25135751622236,18.16528549881201],[-97.25100607067895,18.165269886602914],[-97.2507758924869,18.165276050150965],[-97.25056291392957,18.165327598769693],[-97.24814516654487,18.167309959952263],[-97.24788846534369,18.16739071385092],[-97.24748596249248,18.16765134970194],[-97.24746952056216,18.167808367276564],[-97.24762468209292,18.169042084227897],[-97.24753942102922,18.169280942048715],[-97.24744499372724,18.16946699624799],[-97.24715247321006,18.16965727584767],[-97.2467866976558,18.169740207463065],[-97.24575769025142,18.16928748796863],[-97.24590667944221,18.16911366724156],[-97.2451445263859,18.166896272885765],[-97.2449281216555,18.16679231559982],[-97.24443568404035,18.166782514193017],[-97.24412192966417,18.16688300543484],[-97.24389529971097,18.16710251142331],[-97.2438318928975,18.169584282424978],[-97.24375896131369,18.16994886613736],[-97.24276934567229,18.171247132211022],[-97.24268671539738,18.171308558106375],[-97.23782729304486,18.17217370930092],[-97.23774642520658,18.17239872409209],[-97.23765677715954,18.172602219101577],[-97.23761858604422,18.172822096112554],[-97.23688020959509,18.173164835867738],[-97.23277651843102,18.170330762572405],[-97.23258397331011,18.170457448763898],[-97.23252080485503,18.170627308577536],[-97.2313573543367,18.172476319284442],[-97.23118143040261,18.17251060668417],[-97.23103973792843,18.172486269016986],[-97.2295251984084,18.172040856691126],[-97.22913481256654,18.172039093100807],[-97.22907807053383,18.17302810773026],[-97.22925268918186,18.173459821879703],[-97.22818601181672,18.174432310726274],[-97.22802319626646,18.17416283064182],[-97.2279103190848,18.173885892274996],[-97.2277840097052,18.1736687935948],[-97.22758602251173,18.173587915628275],[-97.22684166191164,18.173819924376858],[-97.22618903413843,18.1741239139119],[-97.22532419652362,18.17434302019717],[-97.22514100282848,18.17429360465036],[-97.22430050647739,18.173195807945092],[-97.22420845154375,18.173012104596694],[-97.22288542393983,18.170171278337477],[-97.22258741187585,18.170002142696205],[-97.22184063480864,18.169308333819515],[-97.22005471806898,18.169015553178383],[-97.2173221748539,18.16443167421147],[-97.21434846514165,18.16366763257173],[-97.21275075196985,18.165136871396214],[-97.20522349065709,18.171480142148084],[-97.18722193873572,18.17515719686139],[-97.19235318105405,18.192374985322147],[-97.18339377161561,18.199009157085243],[-97.16736801633147,18.200903284920628],[-97.16813600657196,18.19792161455507],[-97.16717828356201,18.19417310313679],[-97.16382448904773,18.19394739593116],[-97.16402610529991,18.191303788950393],[-97.16101013409889,18.189754104115536],[-97.1611907307398,18.189194403458487],[-97.1614673853918,18.185208674929413],[-97.1588679569266,18.184942690171113],[-97.15425045645372,18.18159360142647],[-97.15412499904329,18.179773497443364],[-97.15076747437752,18.176733995700488],[-97.14762998261227,18.172250575685666],[-97.14698580037759,18.17209150879853],[-97.14675391741406,18.171223682015125],[-97.1457486338897,18.17001994611377],[-97.143684370411,18.168025855419444],[-97.1446217874743,18.16600217374264],[-97.1440347703458,18.163428589168518],[-97.1415063516572,18.170524992853643],[-97.14055425235892,18.173198007408075],[-97.14029895695677,18.17335275813639],[-97.13510256339646,18.173980871101776],[-97.1333926881291,18.172682044383237],[-97.13444718937723,18.17151513495355],[-97.13397632656324,18.170745563193066],[-97.1381137653238,18.16967684187756],[-97.13786445661964,18.168329419862687],[-97.13864043464633,18.167100652893964],[-97.13388521714205,18.157720319970053],[-97.13133500666123,18.158854595078594],[-97.12390311429039,18.162464150876474],[-97.1178676666575,18.156798499501065],[-97.11290089940138,18.15143949935873],[-97.11375802737518,18.149468438732015],[-97.11108763112992,18.149562302557342],[-97.10923406928077,18.150174974399476],[-97.10574035294843,18.148094364169083],[-97.0993202324122,18.15048686597089],[-97.09815234803256,18.150811669349082],[-97.09456377967837,18.151814030240757],[-97.09335468747787,18.152151587610888],[-97.0921160994285,18.152497604450105],[-97.09020456478146,18.15303118460082],[-97.0887217136347,18.14917492628689],[-97.06179340936427,18.15388792021713],[-97.04209413199521,18.156569417075843],[-97.0377095546591,18.172503329536767],[-97.03905890481309,18.172352761733407],[-97.04020449316181,18.174819248403594],[-97.03836371649373,18.176306135116363],[-97.02839238204308,18.18632240884307],[-97.02251594982863,18.192313792940013],[-97.01893741394946,18.19575755186372],[-97.00904483524675,18.20586725204504],[-97.00914424312418,18.206226515345406],[-97.00943248949199,18.20786553245074],[-97.00738328426314,18.208194707701182],[-97.00294975872828,18.212728089039047],[-97.00034437809416,18.218492311260377],[-96.99928308927673,18.22223520569088],[-96.99878493900263,18.227341330396655],[-96.99514391012235,18.227170243453486],[-96.99147942839267,18.230739432022347],[-96.98594505128415,18.230396215636347],[-96.98353424418087,18.23163515774172],[-96.97861563245175,18.232584003483964],[-96.97350020319413,18.231787573405654],[-96.96535043788259,18.22919093301175],[-96.96349743867927,18.229105674342634],[-96.9590542942388,18.226340913033482],[-96.95637666101112,18.222569688220005],[-96.95163908819944,18.219788799919],[-96.94765494960603,18.221243177190445],[-96.94465713379975,18.221211052483795],[-96.94091128071028,18.21956782980783],[-96.93805691539274,18.219314271255882],[-96.9380064236725,18.21811126426462],[-96.93698033393275,18.21619582365338],[-96.93636253254414,18.21658640924602],[-96.93700543336604,18.220776782072903],[-96.93238286759492,18.221563297181035],[-96.93185185203657,18.22514554702485],[-96.93072811827841,18.225760387846265],[-96.93093971999303,18.230088817196872],[-96.93024943570094,18.232902914966985],[-96.92880186660727,18.23338408191165],[-96.92673465601922,18.237499403197717],[-96.92187583207277,18.24061938603461],[-96.91948119803118,18.23836377775683],[-96.92015982646313,18.23593276718833],[-96.9185789679687,18.231771123348494],[-96.91615419602772,18.230641843339413],[-96.91458252624352,18.232538278921538],[-96.91439082659838,18.236193406451207],[-96.91241079150535,18.238777359897483],[-96.91074913703346,18.238755529047808],[-96.90696272354421,18.23650795643266],[-96.90497210097203,18.2375349808907],[-96.90415965734115,18.23771447812942],[-96.90354839706248,18.237900805351558],[-96.90232931394343,18.238457305437578],[-96.90037893252918,18.239234177393485],[-96.89872120679746,18.237838590569083],[-96.89801459288503,18.238088666951057],[-96.8967531480638,18.237661362710185],[-96.89633231511391,18.23826210222893],[-96.89636634177617,18.240534552292274],[-96.893958067462,18.24080620515906],[-96.89338882140919,18.240726228747405],[-96.89233657665937,18.24103695614889],[-96.89013451335205,18.240916356590674],[-96.889544737145,18.24072995010573],[-96.88921210896524,18.240772672570756],[-96.88826579972874,18.240875229483436],[-96.8872970420723,18.241588300635783],[-96.88525847170587,18.243963495502896],[-96.88015309482068,18.243166626190998],[-96.87990647819112,18.243216617472683],[-96.87709503124472,18.243633689449098],[-96.87676575457846,18.243622445944652],[-96.87574324602969,18.243729767516413],[-96.87526535169172,18.243713444764865],[-96.87464799996889,18.243287088433874],[-96.87290915796046,18.242705406932828],[-96.87252686489518,18.242611994629897],[-96.87195818608814,18.242349853104486],[-96.87143178927852,18.241983682597095],[-96.87064343349005,18.242057170001885],[-96.87019508926687,18.24204184119361],[-96.86938349072136,18.241544421667925],[-96.86884782469969,18.241613147011947],[-96.8675120519668,18.241694675356882],[-96.86706670764903,18.241786571146918],[-96.86656621007984,18.24198447080994],[-96.86598825893799,18.242058436049206],[-96.8655666983413,18.241890007841846],[-96.86526673702281,18.241471578361597],[-96.86388332797185,18.241424225755168],[-96.85969360248049,18.241955677091767],[-96.85846243291047,18.241913490451452],[-96.85789120832032,18.242755388279022],[-96.8576634121751,18.24286143282069],[-96.85608746560428,18.24191975724051],[-96.85574695150132,18.24153083713975],[-96.85546984220946,18.24127234816325],[-96.85495541698504,18.241333326170206],[-96.85305271543444,18.243931156810277],[-96.85130780845395,18.245510834258653],[-96.84621955091256,18.246850639790807],[-96.84661659609446,18.25043396241341],[-96.84618951620212,18.251249599080438],[-96.84377175546456,18.25386819450165],[-96.84456192368793,18.255685248846476],[-96.8417122117545,18.256452619972947],[-96.8419829442746,18.258591361149286],[-96.8422238726817,18.259582153742826],[-96.84165132387528,18.262281543168285],[-96.84265668847513,18.265031158157456],[-96.83866938954003,18.267655814208524],[-96.84323078071691,18.271071623477383],[-96.84188528591073,18.2721627319018],[-96.8383263225611,18.271418706133545],[-96.83629793381346,18.27372848638646],[-96.83642385971314,18.275575174757023],[-96.83400166507795,18.27592761507168],[-96.83300258850181,18.279721216589735],[-96.830928261145,18.280559535331633],[-96.8292634377911,18.28396802161984],[-96.8289064424219,18.285467189416693],[-96.82888285243638,18.288772209035585],[-96.82620073075714,18.29391887157402],[-96.82567238148704,18.29640489592572],[-96.82085438093571,18.30044528816535],[-96.8192184304599,18.299719958500418],[-96.81796524531865,18.300799717291966],[-96.81726629483012,18.304014667985314],[-96.81814917504732,18.3061914749577],[-96.8222819596769,18.31015852990413],[-96.82112750687111,18.315296950678487],[-96.82214738362967,18.317795534146114],[-96.82137801722922,18.321251590030784],[-96.81875261055688,18.323267431384863],[-96.81310988743809,18.324756528549585],[-96.8105832842254,18.328662392792637],[-96.80870438321563,18.329595996061073],[-96.8046364628799,18.32954697648603],[-96.8040369882973,18.32945564268681],[-96.80026710092909,18.329310447909904],[-96.79799198525768,18.330699717435493],[-96.79749451263831,18.330858309812413],[-96.7950464943155,18.33175146190723],[-96.79535673626174,18.334895411460593],[-96.79084461715541,18.336109333877573],[-96.78635683879327,18.336548011456784],[-96.78499778605993,18.337727882717388],[-96.78370590429165,18.342361142765014],[-96.78383262269148,18.344662471334857],[-96.78324084121397,18.345270813035825],[-96.78294039709988,18.345912352165556],[-96.7829138161984,18.348187784652055],[-96.78406436753573,18.350598303980348],[-96.78476783600905,18.35185410490317],[-96.7860016777181,18.35345209768252],[-96.78477582654091,18.355548546331704],[-96.78369349267172,18.35638468038934],[-96.78223256493811,18.35767264649678],[-96.78145098878463,18.358342089050097],[-96.7811754153845,18.35925526538182],[-96.78103057645973,18.36237531509994],[-96.77973416409384,18.364191697101887],[-96.77827121697442,18.36436161310388],[-96.77535050242773,18.36588691605857],[-96.77497150355856,18.366202879750574],[-96.77351512323361,18.367742301677936],[-96.77340021023173,18.367876804130162],[-96.77279747134475,18.36866292283753],[-96.77168964845771,18.369573555118222],[-96.77077144737564,18.37052225846361],[-96.77015937234654,18.371273212844244],[-96.76868214279295,18.37312441023124],[-96.76638325559742,18.373703355864563],[-96.76349573573134,18.375006837097715],[-96.7639626972848,18.378949954758752],[-96.76276393549398,18.383229826215995],[-96.76218496817262,18.383233981538467],[-96.76110263801866,18.38289204666728],[-96.76047162765292,18.382455913252215],[-96.75692749467765,18.382086311989383],[-96.75614722483778,18.381644948337794],[-96.75528192939589,18.381193816196742],[-96.7535338628054,18.380146994728136],[-96.75133762656611,18.38043432890288],[-96.74962286967667,18.382155799548002],[-96.75130634070683,18.389405803600596],[-96.75219178145227,18.39050471965527],[-96.75500261649029,18.389911812047274],[-96.75330858822446,18.392942897612215],[-96.74791060201949,18.39382459792961],[-96.73947994576025,18.396852146510867],[-96.73266670950926,18.398151904698352],[-96.72887861783994,18.396756859303764],[-96.72865000283906,18.39573688177927],[-96.72813249166126,18.396644967759585],[-96.72821070912158,18.397300138942285],[-96.72990292000463,18.39857104947481],[-96.73124250790914,18.3994303239964],[-96.73043581815824,18.402363974629566],[-96.72832332580441,18.40387391716928],[-96.72485329809308,18.406886789276825],[-96.7259046416836,18.408803795179665],[-96.72852255295498,18.409147137089747],[-96.73551099644811,18.40855701378382],[-96.74008645672473,18.40718707080981],[-96.74277090598139,18.407341063181548],[-96.74709185580639,18.40933620117096],[-96.75003494600219,18.410630972543572],[-96.75520834002663,18.411264685708147],[-96.75598714819074,18.410295025685514],[-96.75607957200032,18.409395987254072],[-96.75651530083576,18.40840662320437],[-96.7570594421378,18.408066909462036],[-96.75831766016853,18.40808296963479],[-96.76133301763554,18.41162211446158],[-96.76301476269839,18.411855202181926],[-96.76605541681027,18.412496020037963],[-96.76636498463603,18.412685273306806],[-96.76707534351158,18.413958344951936],[-96.76590583194223,18.416512647322577],[-96.76569346277125,18.41735141193749],[-96.76617435776967,18.418231840275723],[-96.76972464315907,18.420974120116625],[-96.77060771617352,18.422258793396225],[-96.7702929563091,18.42379753932545],[-96.76899033191063,18.424112278452867],[-96.76808130823156,18.42378647394503],[-96.76573336119714,18.42339276756661],[-96.76478765292296,18.42361379343231],[-96.76336508205264,18.4245871378605],[-96.76307374392877,18.425002990302914],[-96.76287245036457,18.426330753879483],[-96.7643028986347,18.427813413116496],[-96.76576377519541,18.42872339666809],[-96.76742337904648,18.429050041785445],[-96.76870888373503,18.429218355092246],[-96.77044176569012,18.429301170999793],[-96.77259980990561,18.427866403224073],[-96.77346886304929,18.426408802819992],[-96.77546876320429,18.42621235006743],[-96.77705772506255,18.427172651341095],[-96.78101196085595,18.42906950718293],[-96.78020595433946,18.431118038035265],[-96.77748840823966,18.432844098716657],[-96.77739888723335,18.433276110239206],[-96.77755278340868,18.434320025740817],[-96.77780723006606,18.4349676852695],[-96.77864089265637,18.43578538414272],[-96.77956665847006,18.436607288423545],[-96.78284084367624,18.43867746421398],[-96.7840042246819,18.439586238789047],[-96.78489711878325,18.44090783900424],[-96.78409244150515,18.445003187472764],[-96.78069447378908,18.44554882992844],[-96.77950377630907,18.445534892116825],[-96.77645525145653,18.44619785048542],[-96.77594509655626,18.446826878551803],[-96.77547469927919,18.447674375029806],[-96.77590268252789,18.44900692890502],[-96.77652800243095,18.449810985651936],[-96.77771629897796,18.450290990189558],[-96.7818882590534,18.45235891258733],[-96.78350427046706,18.453173599042145],[-96.78601788886948,18.457603920346457],[-96.78617279316944,18.45792589215762],[-96.78617440477257,18.458345002591102],[-96.78621226401071,18.458966508582137],[-96.78582890355159,18.459658017708875],[-96.78200888313552,18.46129954812517],[-96.780351630687,18.464548153220505],[-96.78066937494413,18.46548187455153],[-96.78224664793146,18.466709904277252],[-96.78300332633023,18.466741576724303],[-96.78643905276522,18.4663529439498],[-96.78797279666583,18.46668666693523],[-96.78958395899025,18.46755689770356],[-96.79103720923405,18.47036011288975],[-96.7914348735556,18.471884645386126],[-96.79067051655471,18.473328877871154],[-96.79143693513566,18.477402567716013],[-96.79288459418706,18.478685062574925],[-96.79425004339765,18.478983519921087],[-96.79579549746433,18.480223281187136],[-96.79592859197982,18.482340844220857],[-96.79632066803038,18.483166555188745],[-96.79688340031134,18.484526294426928],[-96.79655250567066,18.48699368270411],[-96.79404581638698,18.48956198820764],[-96.79296003553497,18.491911769653882],[-96.79532180180468,18.49472926816145],[-96.79783603436226,18.49695372290131],[-96.79786345714462,18.498171020968982],[-96.7976405665114,18.499296199941057],[-96.79425409856435,18.5017027701046],[-96.79430858608924,18.502479450488636],[-96.79586075811045,18.506184217454745],[-96.79529058356468,18.507840542326107],[-96.79565889041527,18.50851056843038],[-96.79668457990755,18.51143018355822],[-96.7974657180402,18.51200891512383],[-96.79950131219312,18.512009801710974],[-96.80082101395112,18.511842624234816],[-96.80211929574278,18.511424205467108],[-96.80262341607846,18.5113616152056],[-96.80419008252579,18.511982567852954],[-96.80462009491265,18.513059011785515],[-96.80568526384252,18.513794663788815],[-96.80628548565409,18.514714077636313],[-96.80645390485904,18.51508877775308],[-96.80714430777334,18.51599301197001],[-96.80759462607449,18.516408935596758],[-96.8100463973887,18.517578553926967],[-96.81065147294157,18.517083595758606],[-96.81196550975204,18.517304161761047],[-96.81291921302937,18.517657450325714],[-96.81344614696741,18.51761791321786],[-96.81460625368351,18.516809564355185],[-96.81516679178014,18.51606309082581],[-96.81652579266307,18.5140144173958],[-96.81706957185986,18.513131566409697],[-96.81815272115864,18.511772888070595],[-96.81879732558832,18.51137396899685],[-96.82092401293738,18.511779496641736],[-96.82210965412128,18.511805833963933],[-96.82309876250633,18.511550303835463],[-96.82403863352289,18.511110579972637],[-96.82419460027762,18.510401067340524],[-96.82418035000865,18.509397684429928],[-96.82407033887307,18.507568169594833],[-96.82407940938242,18.50581571889842],[-96.82605704256719,18.50516899056072],[-96.82719825557268,18.50436349404447],[-96.8266935893692,18.50281014337844],[-96.82509230619576,18.502586048953958],[-96.82473241325766,18.502312533227666],[-96.82454176191851,18.498792796448072],[-96.82509504675073,18.498114752115953],[-96.82745693298824,18.497756223769386],[-96.83007283543645,18.497490336362205],[-96.83097989203986,18.497502302084627],[-96.83218926374155,18.49698585063254],[-96.835882244824,18.494299848337107],[-96.83860563977072,18.49318842328006],[-96.84144213722055,18.49336819163193],[-96.84181557526193,18.49361270888278],[-96.8419715146785,18.49361608814894],[-96.84240768436678,18.493420001017853],[-96.84236397202636,18.496489340593598],[-96.84258699046023,18.498740120193247],[-96.84276741978317,18.50166523598483],[-96.84336490118449,18.502525698125794],[-96.84395065166018,18.50230573207955],[-96.8443338372993,18.502360408067204],[-96.84573570433963,18.50388025148203],[-96.8456481255547,18.503963128503415],[-96.84873451735814,18.506501396882356],[-96.849052089395,18.50638498254409],[-96.84962985955968,18.506423232743373],[-96.8497777369875,18.50685307179964],[-96.85138855446752,18.507158437119642],[-96.85150888910925,18.506684444235248],[-96.85319880650337,18.506831296064775],[-96.85335442438117,18.506661250368325],[-96.8538403330922,18.50665542575007],[-96.85402673018649,18.508396090194083],[-96.85525924063671,18.509323151980198],[-96.85647432319496,18.511345279146724],[-96.85709490683593,18.51157886070132],[-96.85752548493798,18.511622501390775],[-96.85740464917217,18.511063168084547],[-96.86078015481621,18.51097509161309],[-96.86105267383505,18.510733974704806],[-96.86208257323005,18.510889511421624],[-96.86322407351724,18.511786483972458],[-96.86336173517134,18.511929556700863],[-96.86384740020804,18.512489003495375],[-96.86429557663786,18.51278932309475],[-96.86480015425371,18.513604922178843],[-96.86484513450245,18.51429995324088],[-96.86515116040908,18.51447041148998],[-96.86559214693727,18.514554156097347],[-96.86572666347098,18.514402382418382],[-96.8667798163566,18.514469303737883],[-96.86735921720162,18.514679558078058],[-96.86749236357213,18.516016074404092],[-96.86701335318531,18.516590945649284],[-96.8658766329379,18.516456243440075],[-96.8646716287634,18.515926372251045],[-96.86382822972303,18.515873252384665],[-96.86365727051009,18.516822129267837],[-96.86434084756229,18.517716368595757],[-96.86488685680087,18.51897849406231],[-96.86443171540657,18.519725569794446],[-96.8643569467688,18.520972669752155],[-96.86409825458992,18.521926823472768],[-96.86469474676494,18.52244662201832],[-96.86422245182979,18.523523489558727],[-96.86727415751085,18.526275078449657],[-96.87015362094075,18.523483605130707],[-96.87028256404841,18.523475953612888],[-96.87051362659946,18.522270821770178],[-96.87106699178611,18.52191378594671],[-96.87254494311475,18.52286969324598],[-96.87351326702378,18.52323168065209],[-96.87725410210913,18.530658993627753],[-96.8769633746486,18.53102706594882],[-96.87721286757619,18.532396816073515],[-96.87656108735126,18.533011537132836],[-96.87592746351913,18.535088843462233],[-96.8777040445176,18.53631942806379],[-96.87933677033101,18.536842954087035],[-96.87961447961175,18.536609975901456],[-96.88001770323075,18.536184373367973],[-96.88021455122083,18.536098784365606],[-96.88055409183141,18.535822378164767],[-96.88468630231745,18.53393252169502],[-96.88588275199982,18.533443608297432],[-96.8863288232672,18.53431938327708],[-96.88685800136898,18.5349764823884],[-96.88798918774671,18.53511338895146],[-96.8937223946989,18.542201227913097],[-96.89476168892764,18.54341316468515],[-96.89925097771749,18.548647949305177],[-96.90010597157408,18.54846989667402],[-96.90162146527467,18.547924050589245],[-96.90378898561409,18.547698057737477],[-96.90672383255242,18.546846080474836],[-96.90695799723608,18.546231429537045],[-96.90788024216965,18.54452343492858],[-96.9090075185394,18.541428630027838],[-96.90961755607793,18.539809825384282],[-96.91633868319678,18.53732070355261],[-96.91877907203065,18.536222202391457],[-96.92332355022853,18.53470916545126],[-96.9259447898059,18.534925536863966],[-96.93155535418902,18.54050284170023],[-96.9377038963716,18.541572282884033],[-96.93695684824053,18.544421462554567],[-96.94214332335179,18.544136236402665],[-96.94319952897297,18.54486669542007],[-96.94429354546833,18.546147318487385],[-96.94592046928824,18.547391477039014],[-96.94692929658657,18.548375151994037],[-96.95295763345314,18.55389900491042],[-96.95617090759777,18.552369070832697],[-96.95750949820433,18.551749205189992],[-96.9591527197174,18.55101216685864],[-96.96020834815016,18.549946765337836],[-96.96206544664983,18.547254069826124],[-96.96315536248824,18.54695522853075],[-96.96488272472021,18.54557601898688],[-96.96476533545393,18.544070972240775],[-96.96520630488777,18.541661823455627],[-96.96710347536333,18.541338524521677],[-96.9695819720539,18.54140815431748],[-96.97460326350568,18.543739227099195],[-96.97614080654756,18.543326055278214],[-96.97680595057233,18.5430753963156],[-96.9777508041031,18.542069908785606],[-96.97722164199348,18.539893801356243],[-96.97619155877089,18.53932421809907],[-96.97547748113402,18.53871505570669],[-96.97378755150783,18.536763521636885],[-96.97901265101086,18.534276349329105],[-96.98154321863535,18.533744860472495],[-96.98481858892308,18.531201937915682],[-96.988611019833,18.530683804911632],[-96.99299244637075,18.52991407686625],[-96.99624049109593,18.528511974563514],[-96.99800439362525,18.529205822679387],[-96.99891733685843,18.531916454012276],[-97.00052177299011,18.530880594988844],[-97.00225134408674,18.529588353127394],[-97.00320618683998,18.528698004848593],[-97.00386105933228,18.526619457578818],[-97.00462076359639,18.52553966672633],[-97.00749215098142,18.523293451637358],[-97.0099524780531,18.522753727030874],[-97.01127951242074,18.52263098262796],[-97.01525986318859,18.5208827386885],[-97.01706932179684,18.517862365151075],[-97.01738648686825,18.5155377954012],[-97.01991619581719,18.513456098336178],[-97.02104418459675,18.51242662227446],[-97.02353877552162,18.51451904562515],[-97.02402753876737,18.515818244238005],[-97.02451019807359,18.516290878286895],[-97.02576458141345,18.517071803696354],[-97.02643873059696,18.516486814665654],[-97.02700200322585,18.514104341192024],[-97.02871344660025,18.512940379888335],[-97.03125497994802,18.511476978777125],[-97.03388923503542,18.508968747330016],[-97.03658413758711,18.508071828800155],[-97.03670109512484,18.50503799048181],[-97.0385213870951,18.504551086840365],[-97.04101567822227,18.501759112991238],[-97.04167980848047,18.501379117753686],[-97.04260268332598,18.500633589640472],[-97.04637815088944,18.499560220324213],[-97.0466285203712,18.498620892512008],[-97.0470718419765,18.497633556813526],[-97.04704729320724,18.495688207400917],[-97.04922573267936,18.49202471381068],[-97.04957382927944,18.489943920355415],[-97.05088292159797,18.487806846532806],[-97.0519659833293,18.48573806979408],[-97.0537726147615,18.48387593793541],[-97.05458897834745,18.483967232922794],[-97.05495462026624,18.482974030691082],[-97.05576129112933,18.481950885776655],[-97.05638094714391,18.481233277859587],[-97.05722318756978,18.480509017860584],[-97.05768440425868,18.47840803283765],[-97.06010567926035,18.47796210660374],[-97.06063646290067,18.47725503848966],[-97.0613347946371,18.475928333277636],[-97.06489414107398,18.473116871353227],[-97.06758772088091,18.472479346412513],[-97.06908013649183,18.470473699085346],[-97.07176772920201,18.467805272229498],[-97.07607376241566,18.466001252661272],[-97.07996752655617,18.454507778594234],[-97.08347138902417,18.48394275302047],[-97.08942626074906,18.488426840460477],[-97.11269823171625,18.52131452386567],[-97.1135807199446,18.52400819728831],[-97.11360850241482,18.52531489061431],[-97.11369724800534,18.53137938506086],[-97.11539788214827,18.532870095760757],[-97.11582539607525,18.53336461818168],[-97.12378739324492,18.542852184364506],[-97.14456306895698,18.570927854928527],[-97.14400399539534,18.578383388290604],[-97.14585782930419,18.582159427333295],[-97.14144276136619,18.59641790019913],[-97.14651066872591,18.596831467382117],[-97.14780090855538,18.59728233579176],[-97.14898932336371,18.596793539064777],[-97.14957968482406,18.597043653054357],[-97.15047887253394,18.597495393900317],[-97.15194716066912,18.59901241130325],[-97.15247584345855,18.599126417143736],[-97.15397488424588,18.599511272071766],[-97.15638983513412,18.600994052464614],[-97.15710700684423,18.601805246984554],[-97.15779448514138,18.602843969118453],[-97.15953883629714,18.604351962735507],[-97.15992803016627,18.604542314735795],[-97.16167719079044,18.605677603704407],[-97.16297838137257,18.606000734904796],[-97.16488167264129,18.60604074716622],[-97.16721637731393,18.606166282903757],[-97.1678719645642,18.605862231983167],[-97.16819837809732,18.605803104355175],[-97.1694244461126,18.60503873264952],[-97.17086965250866,18.605640122944408],[-97.17276014194255,18.606158226382775],[-97.17373830970126,18.606373628059714],[-97.17447298727603,18.60703413063169],[-97.17437198169091,18.607975240954488],[-97.17442341395468,18.60921855652782],[-97.17454240476167,18.61033791949137],[-97.17460113231141,18.610897412382712],[-97.17458343049015,18.611891245830236],[-97.17464047772813,18.613262816354222],[-97.17676706111467,18.617189655406946],[-97.17741239573115,18.617245731171238],[-97.17971397035859,18.617306670663424],[-97.18116935828874,18.617618920374696],[-97.18158767894721,18.617256063297134],[-97.18425460205037,18.6170791927226],[-97.18493043189454,18.618861378840563],[-97.18554790864783,18.619694180406555],[-97.1860256191166,18.62017634153591],[-97.18798193477755,18.62025749612917],[-97.18861715451499,18.62187881177357],[-97.19203933564654,18.623535293634234],[-97.19249295338182,18.625457287452377],[-97.1945083781838,18.626647772741933],[-97.19526977385539,18.628155427428],[-97.19691875353146,18.62958115026862],[-97.20009847856863,18.628670633219997],[-97.20093676555456,18.628955198221263],[-97.20133260695565,18.628523939632203],[-97.20270855992533,18.627915859119867],[-97.2032346736762,18.62754814524402],[-97.20460343508807,18.627623520040004],[-97.20492478204017,18.628123574752294],[-97.2061712110708,18.627451926874926],[-97.20643621927115,18.62708171306633],[-97.20695960046237,18.626900151303346],[-97.20787500758541,18.626722685683035],[-97.20898799751853,18.626360545019793],[-97.21023114634437,18.625999635862854],[-97.21081933569957,18.625880984134028],[-97.21307299079035,18.62535803266735],[-97.21415362906441,18.62523933206444],[-97.2145653787531,18.625283515632873],[-97.21593543032077,18.62593077582727],[-97.21638807425285,18.62647611924325],[-97.2182479123187,18.62782828507693],[-97.22027736859553,18.628938594784586],[-97.2234039125218,18.634666497164176],[-97.22414141050456,18.63630832529259],[-97.22659090005283,18.638921692700535],[-97.22691897434026,18.638896046952084],[-97.22859617807075,18.639373816037732],[-97.23065015021513,18.641091077059457],[-97.23188153634845,18.641725686406232],[-97.23184574665868,18.64137254971604],[-97.23184032309643,18.641105506918905],[-97.23228976082231,18.64118159623257],[-97.23392706533082,18.642317677007668],[-97.23480591312375,18.642680778607655],[-97.23522616634381,18.643016400996885],[-97.23542915086091,18.643569479327027],[-97.23859316576272,18.64374584049483],[-97.24272438773914,18.641671919318014],[-97.24524325774541,18.640218639585896],[-97.24615369302637,18.63810072662443],[-97.24889679540502,18.634263446354055],[-97.24947873682345,18.63265365237396],[-97.25073949687425,18.629154431289862],[-97.25123231702958,18.62817621341287],[-97.25185131429697,18.627241042440176],[-97.25661261799343,18.626319305596894],[-97.25825645446179,18.625030091953704],[-97.2594307622337,18.624267026664143],[-97.26004479608434,18.624415357375767],[-97.26071448398699,18.624505343364547],[-97.26306097469325,18.626537424309504],[-97.26379336380626,18.627036586366955],[-97.2640306754181,18.62693553264586],[-97.2654474430501,18.6271225987702],[-97.26630964858367,18.627231900097115],[-97.26666213048611,18.627212290478496],[-97.26741925801832,18.627301263197296],[-97.26855920367325,18.62687432639615],[-97.26832350824691,18.62786530192534],[-97.26809058092698,18.62838156817594],[-97.26984596312911,18.62820512352522],[-97.27072435974327,18.627771953742126],[-97.27185192870445,18.62777915450266],[-97.27261619349173,18.628689160600175],[-97.2722502585446,18.62922849507237],[-97.2734064727623,18.631417263719413],[-97.27351772251046,18.632929757926263],[-97.27385211787157,18.63339562809449],[-97.27440248787667,18.634978025326006],[-97.27633252380855,18.636562243949356],[-97.27717590453028,18.636875480619153],[-97.27918353520886,18.640149261603597],[-97.27875585696052,18.640531471552833],[-97.27802844550826,18.643347222115665],[-97.27990552169331,18.64573410797425],[-97.28092905918515,18.647524226263897],[-97.28102520237331,18.649134387627612],[-97.2818655038235,18.65249328844982],[-97.28208351553388,18.65224326013356],[-97.28657217987143,18.653228156782745],[-97.28800360448503,18.65361395891773],[-97.29185183681062,18.656404602738974],[-97.29258507609103,18.657402874658487],[-97.29297887261913,18.65909585583404],[-97.2934239053871,18.660280105380423],[-97.29333658221759,18.661591995316144],[-97.29334040202838,18.662081170149406],[-97.29347708633867,18.664040375347327],[-97.29712791200632,18.66419697933219],[-97.29767814364789,18.665475327296576],[-97.29796450353098,18.669516273616352],[-97.2986108589472,18.670143389226666],[-97.3002294790748,18.67140056596429],[-97.30132715011234,18.67259107208963],[-97.30256211749997,18.673575584220657],[-97.30320266717632,18.67428561219606],[-97.30451383934331,18.673613895676],[-97.30583604933622,18.672527955980115],[-97.30811122517514,18.672776593027095],[-97.30894963000401,18.673778162812766],[-97.31032518903226,18.673293542812075],[-97.31157776290274,18.67199998680809],[-97.31321432382856,18.671455746418815],[-97.31367856807879,18.67071440457579],[-97.3161199945859,18.668939642495047],[-97.31502420290417,18.666625801626253],[-97.31624501361966,18.66699748338806],[-97.31769543365658,18.66702251120182],[-97.31939496826834,18.6667272810447],[-97.32024748933634,18.66629984481358],[-97.32175621638805,18.665505874980795],[-97.32253708323356,18.66455478354851],[-97.32317805633107,18.664308526935542],[-97.32418645766455,18.666088459393166],[-97.32473301357999,18.667703077783926],[-97.32508714343254,18.668012061184584],[-97.32539847199422,18.669064660405866],[-97.32827663241119,18.670726748067864],[-97.32994783026624,18.672097133088812],[-97.33040139411855,18.673144025697866],[-97.33054088725788,18.673664762400506],[-97.3306879556493,18.674701012996252],[-97.33057512689913,18.675439641205344],[-97.3301255039753,18.676065780498107],[-97.32931784192073,18.67634682998454],[-97.32875693804687,18.67681180833989],[-97.32828070317044,18.67727366657141],[-97.32815971753507,18.677550806190027],[-97.32860281559306,18.677946781027117],[-97.32914854989667,18.678040923853473],[-97.33107459705133,18.679748678805822],[-97.330877468761,18.680217300469792],[-97.33078102191513,18.680654510681677],[-97.33071419818651,18.681550123655995],[-97.33160037783875,18.682958055373376],[-97.33194072422174,18.68241078377889],[-97.3321500828934,18.68188981074212],[-97.33248978428583,18.681291734619435],[-97.3331135021279,18.680479309242685],[-97.33341877669034,18.68026561919089],[-97.33482035466147,18.679112150711433],[-97.33581913154273,18.67853450089507],[-97.33726109762466,18.678590788863687],[-97.33821433887772,18.68127085872146],[-97.3439745903188,18.685759006487444],[-97.34355350139356,18.686826404761746],[-97.3433821668844,18.687944453737998],[-97.34284116641373,18.688846957643023],[-97.34089970573262,18.691475140049306],[-97.3403834613793,18.69345492386742],[-97.34063299226455,18.693835492211008],[-97.3410103655192,18.694479603835305],[-97.34192882634466,18.69564320681178],[-97.3437381570356,18.69679770919987],[-97.34437925502283,18.696755361068313],[-97.34466568831647,18.697286043565327],[-97.34398313008921,18.699631582256643],[-97.34330981267482,18.700491350487425],[-97.34296784463766,18.701252651398306],[-97.34269068293037,18.701605895930754],[-97.34172867470397,18.70336988111285],[-97.34220029208575,18.705209993836036],[-97.34326994408292,18.70708542299576],[-97.3446307320608,18.708131520363395],[-97.34589424269814,18.70943821820117],[-97.34611292349979,18.709612930145624],[-97.34647488443079,18.711340001156827],[-97.34847538031795,18.71568443741768],[-97.34869854140652,18.715948632250786],[-97.34921642381909,18.716254064314455],[-97.34967921399141,18.716334664224632],[-97.34946470268824,18.71700248416232],[-97.3500058537283,18.717008967991603],[-97.34835945940864,18.719088074292756],[-97.3469271470546,18.720789373723562],[-97.34675916464448,18.72241489057393],[-97.34383700400468,18.724081960261344],[-97.3421494993894,18.725815923965172],[-97.34719436478628,18.72743693284997],[-97.34698284250089,18.727906231660654],[-97.3465135266984,18.730747911982462],[-97.34564959494543,18.733624693522017],[-97.34543226311087,18.734077131545746],[-97.34174668903268,18.740081833537204],[-97.33950576098846,18.74240959037303],[-97.339823192381,18.742785279055],[-97.34152694993747,18.741617901782092],[-97.34351452420043,18.747462297282823],[-97.34410562008287,18.748589951269196],[-97.34423828760066,18.74944393061935],[-97.34360662909302,18.750432622447136],[-97.34137349720135,18.754540154569042],[-97.34097382269232,18.755022973259656],[-97.34055130992459,18.755919623414115],[-97.34016867206168,18.75696258711747],[-97.33824834070589,18.75951692274026],[-97.3378345396348,18.760678576737632],[-97.33510328324485,18.76150073518704],[-97.33121486460453,18.76243741768502],[-97.33078617691137,18.763912322398596],[-97.33064376584684,18.76439679391001],[-97.33042930811627,18.764956020987825],[-97.330098902521,18.765552188359266],[-97.33005900321979,18.7659744003887],[-97.33014226451803,18.76663731314966],[-97.33032051119073,18.767075863405694],[-97.33128555146197,18.76699442770024],[-97.33223677306944,18.76723569226766],[-97.33321291424369,18.767333415509597],[-97.33469742333432,18.76696778128911],[-97.33534731539072,18.767284019532156],[-97.3360748586203,18.767773249466075],[-97.33701276024254,18.768377296246285],[-97.33779453583276,18.770722914895657],[-97.33812571546082,18.771486046864652],[-97.33856293705213,18.77426581760534],[-97.33932531998909,18.777630142371493],[-97.3395735903544,18.777921086469632],[-97.3409176664602,18.778299446305027],[-97.34151586632805,18.778159915794333],[-97.34197966963211,18.77817161594345],[-97.3425061278432,18.778222642553544],[-97.3436915611561,18.778330734763585],[-97.34405942290118,18.77838069186447],[-97.34445267900281,18.77834063811497],[-97.34870367741246,18.777647338461918],[-97.34920688847689,18.77748489927251],[-97.35018262057503,18.776732341575496],[-97.35085894927892,18.776247839339817],[-97.35132257124934,18.776055935406703],[-97.35168575205603,18.775813894615226],[-97.3519969840188,18.77552249067122],[-97.35231325062477,18.775247854089855],[-97.35361012474965,18.775443740653884],[-97.35408749137383,18.77607565773735],[-97.35482436641547,18.779364190261106],[-97.35425371230605,18.783308971636302],[-97.35365689709351,18.78490950764899],[-97.35284342239163,18.787200585491803],[-97.35358965832245,18.787721032065974],[-97.35355882210786,18.790064055057087],[-97.35203696642242,18.792893948918902],[-97.35099515092907,18.794012078684375],[-97.3493811794159,18.795762706672576],[-97.34527223788552,18.799012648932944],[-97.34445192060394,18.80032107472465],[-97.3414323820245,18.801239194122786],[-97.33997799936878,18.800802110539735],[-97.33805249447369,18.799664983461014],[-97.3377544570497,18.79909112991237],[-97.33685534205836,18.801788858939517],[-97.33643339261266,18.803097636307257],[-97.33489950005617,18.80329594659264],[-97.33436822837632,18.80285009241595],[-97.33364965760813,18.80375032310218],[-97.33322209129449,18.804349005783422],[-97.33277773816809,18.806605441838315],[-97.33272454228768,18.807479903718104],[-97.33253574422685,18.807900261169323],[-97.33140762859944,18.808233809620788],[-97.33073563497254,18.808423774676214],[-97.3295982876121,18.808805909801322],[-97.32861612014341,18.809091258670662],[-97.32633938502983,18.81156120344042],[-97.32599533928209,18.811608013795137],[-97.32595301307015,18.813028373465386],[-97.32565392208039,18.813887702710645],[-97.32677332820737,18.81573610697069],[-97.32638272481472,18.818606028097577],[-97.32367667024943,18.818922621626598],[-97.32318231257489,18.818890407427432],[-97.32207194663579,18.81914645685356],[-97.32092239744208,18.820049333568818],[-97.32055128774869,18.821075496847413],[-97.3204843231963,18.82269268777725],[-97.32129211407761,18.824366660717374],[-97.32172030142175,18.825561434534166],[-97.32206052298193,18.827316973240045],[-97.32246660736831,18.82784800898588],[-97.32350662667551,18.8293886230299],[-97.32453419421972,18.830421977516494],[-97.32354042863346,18.83149526606752],[-97.32261777274044,18.83229711016247],[-97.32245249390576,18.83271447881674],[-97.32239126913703,18.83369315088936],[-97.32266707882098,18.835071921408485],[-97.32211194724056,18.835939322944512],[-97.32089627254055,18.837038826348703],[-97.32053194142486,18.837378589793502],[-97.31986079299782,18.837470707418277],[-97.31816078597734,18.83740646606509],[-97.31749012756819,18.837449314038963],[-97.31485406173391,18.83820975146824],[-97.31407348740225,18.838987312697498],[-97.31357431910675,18.839712124564414],[-97.312799259418,18.84030483113372],[-97.31139999270732,18.84109700270494],[-97.31054441202144,18.841707569397215],[-97.30996670803245,18.84243054863174],[-97.30949977199356,18.842769356993756],[-97.3091378583888,18.842864240257825],[-97.308828109547,18.842910331192456],[-97.30774706851759,18.84280270701106],[-97.30733496023328,18.842749697318425],[-97.30666406795262,18.84289067058279],[-97.30609181169302,18.843424848509244],[-97.30608689525081,18.84391491975714],[-97.30685541784965,18.8443453662328],[-97.30695268296898,18.84495228899516],[-97.30731087846783,18.845151880984304],[-97.30830771263476,18.846292141145625],[-97.30788375704776,18.84700250718464],[-97.30796231093427,18.848157216548373],[-97.30634138369368,18.849291212278217],[-97.30582100130084,18.849853135064564],[-97.30545367945592,18.850343391337447],[-97.3050453366676,18.850804677624694],[-97.3045622807067,18.851033984936805],[-97.30430123521461,18.85137465222641],[-97.30393486714655,18.85191069553605],[-97.30367283232181,18.852349520628763],[-97.30339699831148,18.854160758690853],[-97.30338467800993,18.855386114740952],[-97.30286995842022,18.855332520230775],[-97.30204053494526,18.855815071568145],[-97.30193323619164,18.856206401824693],[-97.30113870079362,18.858355945262872],[-97.29978190092987,18.85996133130709],[-97.29874337302982,18.860370593492632],[-97.29805838609298,18.86076174195165],[-97.2974688754,18.860924118363528],[-97.29666111811031,18.861076686407955],[-97.29644733203384,18.8619088679867],[-97.2965977367881,18.862297985167686],[-97.2966254343882,18.862673807554245],[-97.29700486025638,18.863285637336958],[-97.2974060097689,18.86392201731661],[-97.29724177784362,18.86504514993129],[-97.29686988869213,18.867646398438865],[-97.2947532181364,18.869419072223877],[-97.2744189420452,18.888051669129823],[-97.27322907637335,18.88935373012589],[-97.27245353094838,18.890124971422495],[-97.27061238398028,18.891216045406736],[-97.26932950152587,18.89172545404182],[-97.26849938017926,18.891672321814326],[-97.26786326810753,18.89161183277389],[-97.26733849592244,18.89153053765034],[-97.26695598730896,18.891518518380167],[-97.26647175201282,18.891495202947908],[-97.26577089615023,18.891552311757152],[-97.2653592835826,18.891733153866426],[-97.26431586125466,18.89262251533995],[-97.26335183751394,18.892930432130356],[-97.26172746352643,18.893066629039538],[-97.26008472769053,18.894072211627247],[-97.25908335093015,18.894184586143695],[-97.25833758272256,18.893227916967817],[-97.25661447939007,18.893300884569555],[-97.25506479166285,18.89336341991799],[-97.25341239244761,18.893411439318527],[-97.25231710587667,18.893214931252032],[-97.25197051274552,18.892736718299375],[-97.25122788016216,18.89233230243326],[-97.25068324439832,18.89244870447095],[-97.24941632017658,18.892765821934802],[-97.24888640354982,18.89289799315685],[-97.24826908682655,18.89304316095962],[-97.24716291722285,18.893289399375078],[-97.24677884241612,18.893397824421584],[-97.24616144133262,18.89320693870866],[-97.24580248911934,18.893300629254327],[-97.24504376337416,18.894221506436452],[-97.24504205305908,18.894385581757945],[-97.24510313437361,18.89452090920622],[-97.24511482904626,18.89487926791446],[-97.24503520029532,18.895042969605072],[-97.24482812364607,18.895294938994425],[-97.24473229805466,18.895458125294283],[-97.24472964696832,18.8957123876354],[-97.24477374756759,18.895996432441734],[-97.24489699942137,18.89623667024813],[-97.24504507320518,18.89668615072867],[-97.24517901629798,18.89715904280331],[-97.24441391299075,18.898245395638924],[-97.24431339972597,18.89841397072138],[-97.24423256160787,18.898545421709912],[-97.24379138377822,18.899050188702745],[-97.2437498926891,18.899181649117736],[-97.24388481599931,18.89956037071778],[-97.24376286781734,18.8998605953837],[-97.2433830527886,18.900177580231855],[-97.2432817619765,18.90034650944756],[-97.2432583582048,18.900666863763433],[-97.24315665871995,18.900948805489065],[-97.24265706706825,18.901283491877678],[-97.24241768712892,18.901450751938796],[-97.24189547287165,18.90203045312893],[-97.24176831723497,18.902607009791268],[-97.24194263204299,18.902981396379857],[-97.24229657194144,18.903222007824183],[-97.24264944995491,18.90356439584491],[-97.2426075279763,18.904106260717356],[-97.24276946133921,18.90566647747937],[-97.24254584877156,18.90661340969251],[-97.24241814044763,18.908645771424233],[-97.2424500909002,18.90898476064831],[-97.24250312291667,18.90966915638535],[-97.24274578721662,18.910074979175818],[-97.24298852419543,18.91054781531409],[-97.24312451076543,18.91112070396241],[-97.24380698577829,18.91344725581189],[-97.24422429752417,18.914123867386877],[-97.24446704366335,18.914596702205245],[-97.24467535203087,18.914968510680808],[-97.24512535617407,18.91591420595529],[-97.24589225472084,18.91703097068097],[-97.24627479489072,18.91763987488497],[-97.24690219955022,18.91851986745536],[-97.24721586778321,18.918926356282157],[-97.24760051960737,18.91933351481481],[-97.24844473767484,18.919845710448783],[-97.24889995270985,18.920220207075204],[-97.24999369005633,18.921224850845874],[-97.25041454667519,18.92156497038235],[-97.25055398861997,18.921734722980943],[-97.2507296978273,18.921904455076742],[-97.2512134251449,18.922951157244313],[-97.25131710104688,18.923221273078923],[-97.2516265949518,18.924030881418958],[-97.25190591413246,18.924403352375748],[-97.2521156474238,18.92464077921113],[-97.25242136910151,18.925887928335726],[-97.25245189805969,18.926291380998805],[-97.25244350621114,18.92709835670712],[-97.25278647377297,18.928177780181784],[-97.2529600228844,18.92848187874091],[-97.25317081290007,18.928618251735088],[-97.25334610634826,18.928754652596012],[-97.25344559817592,18.929427893404863],[-97.25346442605615,18.93132834418526],[-97.2534243874353,18.93176518224965],[-97.25342089299636,18.932101301381635],[-97.25338225476372,18.932403401978263],[-97.25351723790664,18.93307733906272],[-97.25368904557365,18.933549496861076],[-97.25368520112613,18.933919300326465],[-97.25357347273967,18.934422838682337],[-97.25367506430973,18.934894335441868],[-97.2539902451644,18.93523381667518],[-97.25423437040808,18.93550489117689],[-97.25482750064936,18.93635121507748],[-97.25492727488012,18.936923757258967],[-97.25513283856156,18.93756430774681],[-97.25526555080461,18.938457735751285],[-97.25525507056767,18.93946645557287],[-97.25521608273692,18.939802240809115],[-97.25510617509872,18.940204734040037],[-97.25499619531513,18.940539851186372],[-97.25502018988868,18.940956048384635],[-97.25491882060533,18.941432169608902],[-97.25486265319779,18.941898425678744],[-97.25483591549721,18.94245432367603],[-97.25486974687561,18.943399751327945],[-97.25528969984765,18.944584537771846],[-97.25524410301261,18.945209055265195],[-97.25519495978102,18.94654602534507],[-97.25544940170164,18.947599253997282],[-97.25526273923322,18.948988371381063],[-97.2565677699024,18.952840480805207],[-97.25777033532478,18.953273427612714],[-97.25842015486711,18.95543155969],[-97.25858780587788,18.956307202703954],[-97.25856850735295,18.958538012409065],[-97.25863322338694,18.959143911334593],[-97.25883707297089,18.959952881310926],[-97.25889752915265,18.96089489199744],[-97.25920404367912,18.962074665943703],[-97.25922733283801,18.96325141622509],[-97.2591406259429,18.964763646748338],[-97.25910233112631,18.965032425609365],[-97.25916216474712,18.966108818368298],[-97.25905286702863,18.966376929858257],[-97.25829842828682,18.9672279659095],[-97.25804510205944,18.967763498553495],[-97.2577201424296,18.968433107251258],[-97.25732864940068,18.96859749984924],[-97.25703744335152,18.969435137993344],[-97.25660317510307,18.970372491440287],[-97.25659862837108,18.97080966255311],[-97.25654844146516,18.97222116991975],[-97.2579868780432,18.976633651978773],[-97.25812118824234,18.97737604211943],[-97.25825892922228,18.97771421366531],[-97.26056990751528,18.9795085931695],[-97.26129278682271,18.981281999071427],[-97.26961997948717,18.988585105807317],[-97.27289304430974,18.991930726146165],[-97.27892244656465,18.99674697079405],[-97.28512576777462,18.99943084551313],[-97.28424853413117,19.00087566500241],[-97.28373046600962,19.00166730368983],[-97.2829516054203,19.00219671110176],[-97.28247838933271,19.002481020422238],[-97.28230768278655,19.00261677549628],[-97.28197110322901,19.002805595364066],[-97.28150336148343,19.003453793753806],[-97.280909221927,19.00430243616063],[-97.28044394379208,19.004993583898454],[-97.28007426528575,19.00550012732947],[-97.27970944997446,19.006101541352734],[-97.27937576741562,19.007681440088845],[-97.27923004777733,19.008081702630875],[-97.27895020256807,19.008837479461192],[-97.27859006220416,19.009404613896606],[-97.27820882413255,19.010826973444978],[-97.27783816812018,19.011446824835446],[-97.27762070631536,19.01206483313331],[-97.2772299504104,19.014949136947962],[-97.26889709552898,19.02826871844843],[-97.26662570244491,19.030313206450103],[-97.26888206057765,19.058606881500225],[-97.2695972852058,19.059152342266373],[-97.26972021106019,19.062130392437155],[-97.26951952166132,19.063917868242527],[-97.26885034577197,19.065220192321192],[-97.26734866090732,19.069854048598188],[-97.26688197513232,19.07129121424424],[-97.26638264053304,19.073258096741256],[-97.26601471522486,19.074464814493638],[-97.26512947449339,19.078645408794273],[-97.26431354186525,19.079611146451953],[-97.26345179498634,19.08098062374387],[-97.26374444995389,19.083730938475355],[-97.26235208627594,19.08493898422944],[-97.26197410761182,19.08609116078611],[-97.26210287244601,19.087032625501536],[-97.2622957380654,19.08752337048702],[-97.26232513259725,19.08839381808599],[-97.26209294605724,19.090128885163722],[-97.26201322112126,19.090623844445474],[-97.2622720716696,19.092019024012018],[-97.26190022703958,19.09430524837063],[-97.26171587570764,19.0953435392168],[-97.26081214829128,19.096871449413584],[-97.26052022740333,19.097109253438077],[-97.2597174239989,19.09885949913223],[-97.25881638444491,19.09884245423393],[-97.25838358155164,19.09934769135964],[-97.25790476728048,19.09983882138181],[-97.25777161996473,19.099879368191125],[-97.25743956736534,19.100226808780974],[-97.25705298970985,19.10051884264101],[-97.25681300904466,19.100654446839997],[-97.25566582890133,19.101709892164195],[-97.25512698379652,19.10181830164828],[-97.25482872622518,19.101808917624396],[-97.25440838885402,19.101660849301652],[-97.25421600465916,19.101612215915964],[-97.25391478504059,19.101687903002414],[-97.2535036890987,19.101703351688343],[-97.25310124786046,19.101470676782128],[-97.25247370477007,19.101787001012383],[-97.25200737379907,19.102069269368144],[-97.25184740265672,19.102178447902077],[-97.25146268406905,19.10253181737528],[-97.25094515301771,19.10290384836179],[-97.25045846187902,19.103425320344343],[-97.24851728087367,19.104917569871134],[-97.2467377911309,19.105435550371396],[-97.24571301641754,19.10577693154346],[-97.2443491489197,19.10598995458156],[-97.24266113973692,19.10669447766486],[-97.24229085686937,19.10737466602842],[-97.24202030753372,19.1076791164096],[-97.24143937133528,19.107940834738542],[-97.24040020378442,19.108457652868708],[-97.23965879272515,19.10852412608375],[-97.23818706722659,19.109305211239587],[-97.23754888866756,19.1095066058478],[-97.23678899740065,19.11012785746857],[-97.2347831406118,19.112167638288383],[-97.23431206564493,19.112423830659168],[-97.23378128871144,19.112869321414223],[-97.23359527408763,19.113423171430895],[-97.23332758100997,19.11472427579332],[-97.23274378373617,19.11556224434969],[-97.23248989360974,19.116447323054956],[-97.23152395327435,19.1172039287394],[-97.23110034765392,19.1174781430733],[-97.23036662680533,19.118423729034987],[-97.2297580004311,19.118979704205458],[-97.22928958018372,19.119557017639636],[-97.22874611024889,19.119978273480513],[-97.22848582034783,19.12066514241343],[-97.22841392944952,19.121112016432107],[-97.22724896697616,19.12231845981927],[-97.22668956272531,19.12261849726201],[-97.22644139047412,19.12263082530211],[-97.22571479756272,19.122560729858662],[-97.22483267061148,19.12268756214877],[-97.22348762103246,19.123313351386628],[-97.22276887491057,19.12334473518547],[-97.22219919343286,19.123673202077214],[-97.22180798279288,19.12432877025617],[-97.22174642940291,19.124766211401152],[-97.22195573939405,19.125387995418123],[-97.22196343146777,19.125827637676366],[-97.22215504827187,19.12629507306542],[-97.2221267980762,19.126993184571973],[-97.22203210567818,19.12720162715766],[-97.22188186530241,19.127408317108177],[-97.22183583334584,19.127588094098257],[-97.22199428621241,19.128053762010666],[-97.2205695341255,19.129208659751328],[-97.22042996939501,19.129896491262343],[-97.22026551918316,19.13024795866437],[-97.21870948997827,19.132107377757222],[-97.21807465044293,19.13256925852994],[-97.2170233464812,19.134296035485477],[-97.21773606452416,19.134944753215905],[-97.21809931610295,19.13506297425363],[-97.21891979719322,19.135690737597372],[-97.2182652428013,19.13677751886337],[-97.21741416061991,19.136740777395573],[-97.21699392830885,19.136717693156697],[-97.2164389840703,19.1371101720747],[-97.21543453621189,19.138461486474057],[-97.21425897753625,19.13839751550421],[-97.21297476637278,19.137849925876367],[-97.21224043545618,19.137671748789614],[-97.21105077489153,19.1390700435835],[-97.21023224172177,19.139995819564376],[-97.2095738065284,19.14034344645978],[-97.20404851897149,19.140829492496437],[-97.20271606060908,19.141259856203817],[-97.20150394064484,19.142090103891633],[-97.20114624127473,19.142704777011716],[-97.20069128874718,19.143604671468267],[-97.20000034849892,19.14401981151576],[-97.19935355272128,19.144333509033117],[-97.19852315975072,19.145816893425888],[-97.19773284302295,19.146125835627117],[-97.19694799357882,19.147146726497795],[-97.1976180754092,19.147647419663485],[-97.19883980402409,19.148107566575675],[-97.19976522478544,19.14877193750675],[-97.20021665644401,19.149569144776024],[-97.20039133587687,19.149756280298902],[-97.20066523202638,19.149966307281602],[-97.20136311409885,19.15059718710836],[-97.20210985222042,19.15113361606757],[-97.20236252853078,19.151837973373574],[-97.20253754972202,19.15207217122935],[-97.20271273989374,19.152329900962172],[-97.20333652071878,19.15298478761906],[-97.20341266286096,19.153243158515124],[-97.2038663156672,19.154346275131843],[-97.20409272244666,19.154839003106872],[-97.20546235318977,19.155711422676575],[-97.20585831159906,19.155638018567117],[-97.20680090836822,19.155749218417498],[-97.20702557141601,19.15595961277154],[-97.2073504481944,19.156310614389326],[-97.20835004971303,19.157386993385956],[-97.20910347929203,19.15867704054341],[-97.20960546933242,19.159497821430364],[-97.20911309638751,19.159925166816492],[-97.20812199737173,19.159955619079028],[-97.20747875257308,19.16010140017255],[-97.20686047001476,19.160270556123123],[-97.20619298430177,19.16048715340031],[-97.20463623485256,19.16108673505488],[-97.20324551671524,19.16147209280075],[-97.20229031600923,19.162380543925906],[-97.19927976572887,19.164907310384763],[-97.19738888798611,19.1660441585218],[-97.19727770893076,19.16625044124197],[-97.19664416230182,19.166538835064898],[-97.19641659683248,19.167099349000466],[-97.19537321210055,19.168908269455983],[-97.19516204761953,19.169936635876297],[-97.19491941428089,19.170621273915515],[-97.19458906534163,19.17181258221217],[-97.19133889235019,19.170389653406062],[-97.18945563482089,19.169151566067853],[-97.18947327555759,19.168209423316284],[-97.18911988648449,19.167364025825407],[-97.18843165503984,19.164848833509836],[-97.18805510043046,19.16421554832965],[-97.18554353126422,19.163102309066232],[-97.18397976228187,19.162783285718376],[-97.18368202088027,19.16273821743806],[-97.18353461995173,19.163321894738317],[-97.18339290548926,19.164720155327245],[-97.18323248702757,19.165567342963584],[-97.18237983639273,19.16752784633138],[-97.18216051897906,19.16802390076947],[-97.18169514485629,19.16875713566094],[-97.1803363334489,19.169331597418932],[-97.17944254829598,19.169125723220134],[-97.17837208686359,19.16876952392289],[-97.17779154681574,19.16808590641415],[-97.17712545622885,19.167540986638187],[-97.17568812349168,19.166470044315815],[-97.17500769314415,19.166023626780145],[-97.17433874134025,19.166051709583826],[-97.17401480454828,19.16581839993347],[-97.17334268028856,19.1654225943592],[-97.17132791192495,19.164447106597322],[-97.17092946018624,19.16419074538686],[-97.16911772377671,19.16384972211057],[-97.16810293798596,19.163849050252793],[-97.16708541396775,19.16383987128461],[-97.16659519322582,19.16379639323111],[-97.16581319052017,19.16367642250816],[-97.16479964464753,19.16364880802729],[-97.16397526854308,19.163864797917313],[-97.16303140197692,19.164315881553307],[-97.16181528755311,19.16427963821218],[-97.16114330144455,19.164633403409596],[-97.16045184377282,19.164967739247004],[-97.15988377155168,19.165230595624905],[-97.15926351851817,19.165140546706937],[-97.15866857121625,19.16512097698171],[-97.1576285892346,19.16524568101653],[-97.15691094905804,19.1653917764952],[-97.15661321452893,19.165346664571587],[-97.15566836222399,19.164929069110258],[-97.15507477917845,19.164441405525338],[-97.15459479342695,19.16343544703568],[-97.15444856835347,19.163193078844927],[-97.15356144240843,19.162648250199254],[-97.15332565013966,19.162538233590453],[-97.15305158408387,19.16253355800518],[-97.15223352347101,19.16292664887777],[-97.15101082922382,19.16434786792422],[-97.1505859520891,19.164680310737026],[-97.14919053375553,19.164807888276187],[-97.14871119420445,19.16498999621217],[-97.14808469433035,19.164932414933958],[-97.14647058414562,19.164495661287162],[-97.14567738896233,19.164477362695948],[-97.14503099067554,19.164199039799996],[-97.14443467510586,19.163991033635853],[-97.1440123504675,19.163852525653397],[-97.14207421109307,19.16315882729043],[-97.1416253910262,19.16278498952704],[-97.14120255701732,19.162575829089633],[-97.14058250162515,19.162509267551457],[-97.14003747809659,19.162536409347126],[-97.1397889758531,19.162443846794304],[-97.13958986548658,19.162327408692477],[-97.13904244209971,19.162024864501348],[-97.13804946863848,19.16179590013212],[-97.1377228560757,19.16118575090354],[-97.13687498320814,19.160461278594198],[-97.13652547871794,19.160110327072687],[-97.13613154584351,19.160466163493993],[-97.13566395144682,19.160916682082984],[-97.13496135751876,19.163134981405733],[-97.1343961624396,19.163798084652512],[-97.13408134192889,19.164812792342843],[-97.13334351666691,19.165594772045495],[-97.1328755585684,19.165998184008913],[-97.13144756990971,19.16730276831794],[-97.13073160964433,19.167684245657085],[-97.1298773719459,19.16769381698606],[-97.12880661637837,19.168101323377698],[-97.1279001817154,19.16833869176736],[-97.12608445709839,19.167404746153693],[-97.12516841361764,19.167770111047957],[-97.12456344147006,19.167741189096716],[-97.1208728267622,19.166810445813894],[-97.12039270803876,19.16634461117087],[-97.11932473895365,19.166303993335532],[-97.11826006599676,19.167171632677423],[-97.11796535470148,19.167743447735347],[-97.11775320002658,19.167638843480802],[-97.11718683516489,19.16728449023435],[-97.11693719178089,19.167101088329844],[-97.1166391572537,19.1668382088385],[-97.11642289730725,19.166724064790174],[-97.11629336816833,19.166763704234256],[-97.11598197915117,19.166955530172288],[-97.11588078441451,19.16707504322386],[-97.11553996936561,19.167211353699656],[-97.11537198009432,19.167212057173742],[-97.11464941657312,19.167004478005992],[-97.11429544543807,19.16683995464132],[-97.11405198861092,19.16647103097688],[-97.11390385419554,19.165734394365074],[-97.11317174868162,19.164676354834796],[-97.11254406198663,19.1647145647907],[-97.11184749276947,19.166161559658462],[-97.11173174970219,19.16634781458248],[-97.11122961728466,19.16691882218936],[-97.11103743481385,19.16704655970966],[-97.11051255192854,19.166951848107885],[-97.10983176544897,19.167181106473436],[-97.10895795398471,19.167719253754626],[-97.10815420132258,19.167457780961],[-97.10573263261529,19.16686771775204],[-97.10494922882532,19.16624621286553],[-97.1040701725803,19.16585181122815],[-97.10409486371788,19.1665213819806],[-97.10294317015308,19.166391104714307],[-97.10035234471792,19.164643382675195],[-97.09961550773227,19.164444561332004],[-97.09786215889824,19.164088276456084],[-97.09597754490989,19.163489023914792],[-97.09580135301121,19.16191558585672],[-97.09397284711929,19.16132387482952],[-97.09345069243057,19.161172885665223],[-97.09297275362115,19.161303818899114],[-97.09190744015251,19.16283841342363],[-97.09114632399451,19.162838025298186],[-97.09088885411768,19.162765940998383],[-97.08939628610239,19.1616554861713],[-97.089169558148,19.162970951333875],[-97.07510158070914,19.157882535892327],[-97.0715093657837,19.157937850347594],[-97.06783179266682,19.15930951415112],[-97.06669270395457,19.159455316510957],[-97.06645642806905,19.15927961956828],[-97.06452837327032,19.158056308070115],[-97.06469072214412,19.157272371107524],[-97.06491469014952,19.156459978857868],[-97.06504911536678,19.155442956509376],[-97.06600732546735,19.15472558237559],[-97.06642014663538,19.154046572988193],[-97.06645272125155,19.153139436887557],[-97.06798019396973,19.148459004580104],[-97.0670282411242,19.147175301854077],[-97.06589972654791,19.145780224063003],[-97.06529958108018,19.145485263866476],[-97.06441792446537,19.145229924277032],[-97.06399058705085,19.144504260107567],[-97.06109088605666,19.142421695406256],[-97.05980773022014,19.14223656569129],[-97.05750430240101,19.14016266126606],[-97.05808021583493,19.137864199107298],[-97.05802238795798,19.13740516032857],[-97.05633011596672,19.135564043096565],[-97.05563307065074,19.134002174271018],[-97.05473287110306,19.133657839256102],[-97.0531337409335,19.132351307256727],[-97.05281735918675,19.13227267310225],[-97.0525257830152,19.13223811063807],[-97.05217074637591,19.132320190222117],[-97.05151830155239,19.132150991304115],[-97.05099313689016,19.131977160197096],[-97.05040639735597,19.131565744303373],[-97.05012639139863,19.13124502343379],[-97.04965163907059,19.130865990737732],[-97.0492494190213,19.13075546049322],[-97.04885046545957,19.130655331502567],[-97.04849437312242,19.130456756719298],[-97.0481772563711,19.130134129449175],[-97.04792512312235,19.129769811828282],[-97.04763443943864,19.129513786284974],[-97.04741253920844,19.129333297712435],[-97.04671394413634,19.129147582485245],[-97.04665396162909,19.128985143730176],[-97.04699529415802,19.128583732061998],[-97.0458398722891,19.12802893582017],[-97.04319252426615,19.128239106726085],[-97.04200824580437,19.128597905225945],[-97.03964766278284,19.132851752001045],[-97.03445600757368,19.137668256375946],[-97.0343144483175,19.137139464788902],[-97.03423298660749,19.13685287133592],[-97.03402060108527,19.13637634422338],[-97.03387586478482,19.13593480462316],[-97.03378964700642,19.135779096057433],[-97.03320487049359,19.135748924094912],[-97.03267503145497,19.136102730617324],[-97.03220163436481,19.13654112150715],[-97.03200857289954,19.136672427806843],[-97.03176267148086,19.13666432874743],[-97.03095328602734,19.136131281611085],[-97.03033277872055,19.135591086680165],[-97.02882031550428,19.134958560218706],[-97.0284482206809,19.134723901073812],[-97.02799011873196,19.134135561005735],[-97.02786353813264,19.133802242329978],[-97.02755288008376,19.133604759757475],[-97.02690605056029,19.134350231782378],[-97.02765293493155,19.1353754168328],[-97.02778317712011,19.13656458651377],[-97.02808189038751,19.13703182613483],[-97.02815727052041,19.137502522331488],[-97.02825774226909,19.138114422274327],[-97.02853193371857,19.138867220218287],[-97.0289790996186,19.139431321254563],[-97.02957293194652,19.140364450352138],[-97.02976605687991,19.140827314089677],[-97.02959599778535,19.141528878088593],[-97.02945021585555,19.141729127412702],[-97.02927559146912,19.14233066379876],[-97.0294329536685,19.142938228359185],[-97.02968605304346,19.143174408868276],[-97.03035973693869,19.14369551324893],[-97.0306842031589,19.144018954287844],[-97.03112725081951,19.144663557829972],[-97.03142750318915,19.14475961855021],[-97.03204439577388,19.14502695208239],[-97.03241052435368,19.1452142584036],[-97.03284947371242,19.145410869313594],[-97.03334067778638,19.145524758469833],[-97.03377820577629,19.145823672574863],[-97.03470529077538,19.146619481928383],[-97.036136922087,19.147702944235107],[-97.03649608483403,19.147902973907378],[-97.03704745043132,19.148170077283964],[-97.03740396088313,19.1485122064571],[-97.03781292482068,19.148786936008776],[-97.03810504656605,19.148886235899226],[-97.03854420882072,19.14906999528114],[-97.03898370218178,19.149257031883337],[-97.03945766786245,19.149452985373955],[-97.04015054229438,19.149813846141],[-97.04047308669197,19.15002504800873],[-97.04067182118655,19.15026005422601],[-97.0407712985932,19.15042464242066],[-97.04084627788825,19.150706995917176],[-97.04109511028491,19.151177322610465],[-97.041739105685,19.15112887149394],[-97.04213608506461,19.151386998244334],[-97.04208769641826,19.151881497813235],[-97.04211302124725,19.15211687105466],[-97.04204013421287,19.15272913607828],[-97.04159619262481,19.153577615100403],[-97.0412003091364,19.153790338264457],[-97.04080480919879,19.154167858444225],[-97.04038475313763,19.154639600178257],[-97.03912265696573,19.155230829305594],[-97.03900026329842,19.15586673867415],[-97.03914923508393,19.1560076809684],[-97.039365476444,19.156958027845178],[-97.03913940396143,19.157158524932356],[-97.03858219085367,19.15744053781151],[-97.03830628919661,19.157674052600214],[-97.03855816865104,19.158351524948102],[-97.03846250035758,19.158627361250353],[-97.03846373132723,19.158929628954752],[-97.03892747301165,19.15929359612045],[-97.03919994294665,19.159872137205753],[-97.03911523138567,19.160183201499876],[-97.0386862575208,19.161215266614136],[-97.03889161876657,19.162023441768497],[-97.03896834297808,19.162304976509233],[-97.03904604498416,19.162410870372355],[-97.0392615361535,19.16261429435366],[-97.03936900595244,19.162648832555647],[-97.0396309535883,19.16277111674799],[-97.0398447558664,19.162923268196096],[-97.04015819020009,19.162905385258625],[-97.0403504147543,19.163032145766863],[-97.04060408629118,19.163576888775424],[-97.04074096824803,19.163737219388736],[-97.04107103401867,19.163950737774144],[-97.0412111772618,19.163991724040784],[-97.04135239154999,19.16400363731009],[-97.04147527219476,19.163993125538695],[-97.04175005173494,19.163805699722843],[-97.04192153577276,19.163772355101912],[-97.04217747293427,19.163728497040722],[-97.04256291036586,19.163715031959953],[-97.04303607919627,19.165004938249467],[-97.04147260237119,19.17234534445305],[-97.04130854855345,19.17394684366633],[-97.04138561368882,19.17441721094474],[-97.04153713281823,19.17491072370308],[-97.0419886691962,19.175873425766724],[-97.04219042345642,19.17648436638143],[-97.04278936332844,19.177234439645247],[-97.04477515816706,19.17790655349245],[-97.04519798031669,19.178476986298335],[-97.04515670436234,19.179123437408578],[-97.04496621990592,19.179769409300377],[-97.0448000180644,19.180055566888882],[-97.04538703445314,19.18087147920221],[-97.046103897504,19.181687909047014],[-97.04601384882892,19.182352659896765],[-97.04601834751122,19.182832720901047],[-97.0462005737225,19.183256014511528],[-97.047515687648,19.18392515956998],[-97.0476306505679,19.183782873432108],[-97.04824553699785,19.183177081142503],[-97.04868191076332,19.183253997429915],[-97.04890270651327,19.183824619795985],[-97.0491749428121,19.18418826757255],[-97.05016360804427,19.18522220495555],[-97.05001957621943,19.185794607193543],[-97.04985068389789,19.18632437508512],[-97.04977303362125,19.187007693639202],[-97.04948874723908,19.18793641698028],[-97.04950275682216,19.18864564068707],[-97.04964250094673,19.18890538652596],[-97.05022643429038,19.189155273566428],[-97.05079482391596,19.189361323339256],[-97.05115969517396,19.189957985547778],[-97.0513708087276,19.19030078786659],[-97.0518345929151,19.190795573023422],[-97.05200129279245,19.19125881324061],[-97.0538394858649,19.193121353192396],[-97.05410523185321,19.19424688778912],[-97.05438683146502,19.19493592350227],[-97.05485193707756,19.194793357321885],[-97.05511463707637,19.19459559544015],[-97.05525223516219,19.195502669176108],[-97.05577568319609,19.196393911676182],[-97.0560637500945,19.19709304385941],[-97.05567963179402,19.19826814143636],[-97.05327969473973,19.200374641666258],[-97.05198986929622,19.20195156960841],[-97.05229196992809,19.20250889547833],[-97.05285359085269,19.20284291613109],[-97.05286090884414,19.20497843819834],[-97.05155961934673,19.20681293312532],[-97.0503119761824,19.20696722021529],[-97.04972725547287,19.20729316833939],[-97.04892426751161,19.207524635205516],[-97.04819057307856,19.207541818053414],[-97.04762941984171,19.207741350822175],[-97.0476610439303,19.20835778594875],[-97.04628231434708,19.208842305029634],[-97.04571566962272,19.20912774622832],[-97.04556071792632,19.20968378999629],[-97.04517597002314,19.210323638594218],[-97.04496053842075,19.210637189449187],[-97.04376444344393,19.210418146724464],[-97.0422381047295,19.210518523233702],[-97.04176278836633,19.211084932009385],[-97.04143951052538,19.21169075599397],[-97.03950731409321,19.211053820695668],[-97.03901355780607,19.21139595995004],[-97.03736343253433,19.212000237313305],[-97.03620973906266,19.212330216140117],[-97.03544444014562,19.213163407189995],[-97.03520917657949,19.21480422218673],[-97.0350828338893,19.215383972350708],[-97.03471619502284,19.21625681225953],[-97.03224516069963,19.217446620764008],[-97.0312073655,19.21763537105909],[-97.03093759821706,19.21844203964963],[-97.0300916899032,19.218621541521316],[-97.0296852565101,19.218283746864756],[-97.0293178215324,19.217774554501943],[-97.02888417470149,19.217498924456436],[-97.02777870375081,19.217186646767402],[-97.02700004255973,19.217911834320034],[-97.02632988941707,19.218654244548475],[-97.02603349139946,19.218820546557424],[-97.02551381732616,19.218940925542597],[-97.02489543242848,19.21913242804959],[-97.0246511450577,19.21974568750312],[-97.02450704617866,19.220546736151334],[-97.02441035179692,19.220970925936513],[-97.02396876936638,19.221749970708345],[-97.02369808281446,19.222080903972596],[-97.02317973993075,19.22243665175796],[-97.0218463594652,19.222573940037194],[-97.02123431310434,19.22248835601482],[-97.02065896220375,19.222607491544693],[-97.02027730563793,19.223183771406923],[-97.02037456383187,19.223505289419506],[-97.0204700316545,19.224105277938122],[-97.02042152302005,19.226020647463145],[-97.01984887335948,19.226335754331558],[-97.01989163189705,19.226743176477726],[-97.01979042011862,19.227239479792615],[-97.01868625827188,19.227951039272057],[-97.0172535589569,19.22825207065017],[-97.01591367030369,19.229863578049162],[-97.01547852836796,19.23063762251553],[-97.01486579620172,19.23194597912277],[-97.01391616149601,19.231922987497114],[-97.0127200692416,19.23178924147237],[-97.01059165390217,19.23138167134573],[-97.00982583657998,19.2316613381048],[-97.00876293925091,19.230993209676853],[-97.00827171689724,19.23098542215689],[-97.00748495817862,19.231204279140456],[-97.00709909750623,19.23151039248671],[-97.00620885815528,19.23184442946433],[-97.00564260094927,19.23250635813156],[-97.00543978148414,19.2337761501322],[-97.00541200632898,19.234190130041043],[-97.00545146768087,19.234370645321974],[-97.0052363264906,19.234693145809956],[-97.005016078893,19.234746278323314],[-97.00415121684944,19.234519148658364],[-97.00381434594084,19.234882180068098],[-97.00343531215503,19.235719653376748],[-97.00296648900638,19.235967456471087],[-97.00175801987433,19.23621165947486],[-97.00123451131572,19.236546014067756],[-97.0011930388531,19.237150629175403],[-97.00102355334747,19.237615259616177],[-97.00117296153508,19.23880898109377],[-97.00090562377557,19.238858043446157],[-97.00097081523029,19.24059312613116],[-97.0013826896145,19.240784704317548],[-97.00229043079958,19.241257225170727],[-97.00239716120996,19.24146571565427],[-97.00244486620124,19.24203636573884],[-97.00243922173371,19.242502770746967],[-97.00237897281977,19.242968594661647],[-97.00231994595111,19.243330769259558],[-97.00225969635125,19.243796577928663],[-97.0033181823959,19.2466069783884],[-97.00374449534769,19.2474927482844],[-97.00492856312388,19.24895692853238],[-97.00503011928737,19.25087800168467],[-97.00428785507182,19.251908524636463],[-97.00394853986643,19.25230874308096],[-97.00271667600231,19.25359356892244],[-97.00249231921504,19.25454319651857],[-97.00338871196794,19.255851260781697],[-97.00420997967638,19.255831379124118],[-97.00440989718089,19.25690104367112],[-97.00419043112248,19.257446805594384],[-97.00388255999815,19.257760809312003],[-97.00354432845666,19.258223703531485],[-97.00323240089978,19.25851290956001],[-97.00206348632304,19.258825271312162],[-97.00168656672463,19.25882115208185],[-97.00097134540204,19.258455698337798],[-97.00066456890005,19.258322297560937],[-97.00011633311465,19.25831630174963],[-96.99913878502082,19.25980116925257],[-96.99892769188477,19.26025403595031],[-96.99875203239213,19.260609747934097],[-96.99833612264433,19.260995348428196],[-96.99785207113763,19.261347682434405],[-96.99746646063454,19.262058727824808],[-96.99666456425433,19.263187882907857],[-96.99628368508479,19.26350882349965],[-96.99530094507907,19.26372956777442],[-96.99434982732214,19.264262690616818],[-96.99507086873939,19.265231833047324],[-96.99514261005828,19.26740338625143],[-96.9947815134409,19.268094272411076],[-96.99467937041948,19.26839495157816],[-96.99468915948307,19.26918333420167],[-96.99469054100865,19.27023913551278],[-96.99438859691645,19.270499872697144],[-96.99318298507893,19.27072211065689],[-96.99345971517067,19.27197320866736],[-96.99152370902516,19.273204597804124],[-96.99141384572863,19.27395658158656],[-96.9910672956886,19.274905721351615],[-96.9912327865784,19.275345242859316],[-96.9912602007546,19.275518918926082],[-96.99151486113641,19.276040092394226],[-96.99130247920101,19.27626782351831],[-96.99079932829608,19.276232097566663],[-96.99036674117303,19.276266116817396],[-96.98984619317065,19.276468216286446],[-96.98950628688459,19.276941076889216],[-96.9896390374617,19.277478562260967],[-96.98984799807016,19.27822298022187],[-96.98943439569126,19.278676204537874],[-96.98919648871322,19.27873495174748],[-96.98811704233799,19.27881319647213],[-96.98748599508633,19.278848405233532],[-96.98723095949333,19.27857188905574],[-96.98669363392804,19.277818677675725],[-96.98595219157278,19.28051325538462],[-96.98594248755518,19.281306807887233],[-96.99375975992837,19.28776459436898],[-96.9948868682423,19.288039372347498],[-96.99573959958775,19.288157310369854],[-96.9961030555425,19.288199666389346],[-96.99686730700518,19.288534103308052],[-96.997259503539,19.289535750629568],[-96.99819781455773,19.290524194748343],[-96.99848386936418,19.290277998185616],[-96.99866678205166,19.290203284332392],[-96.99882896199756,19.290166710057235],[-96.99901044386229,19.290207050977358],[-96.9993732067208,19.290306921160948],[-96.99971547063285,19.290425757148228],[-97.00001476771342,19.290755087660955],[-97.00045910456276,19.290798321487955],[-97.0004553773635,19.2911051565344],[-97.00043094986489,19.291450116784063],[-97.00044675798966,19.291814708760057],[-97.00100918202588,19.29279464112534],[-97.00165169636097,19.293321043413528],[-97.00213341797371,19.29373025046681],[-97.00273797361473,19.294044633361125],[-97.003012501483,19.29481706349503],[-97.00300526661977,19.29541328326917],[-97.00463506525807,19.29646982823556],[-97.0058717016804,19.29650257883725],[-97.00668393551746,19.29641526822695],[-97.00681096023237,19.295974231928426],[-97.00713958569463,19.295631578835184],[-97.0081951152008,19.2955469321887],[-97.00845568883148,19.295799834312106],[-97.00865798998728,19.295840514310328],[-97.00898219044757,19.295863287262534],[-97.00926544739843,19.2959432923426],[-97.01081506623336,19.296307016871538],[-97.0117508864301,19.296403920462808],[-97.01227511531022,19.296518007109796],[-97.01261786464579,19.296521739216644],[-97.01303128960564,19.29635282430064],[-97.01328445989111,19.29620384876455],[-97.01394843715406,19.296102681839443],[-97.01518181044332,19.29615945112664],[-97.0158019270745,19.29590606899768],[-97.01625316675631,19.296387867451983],[-97.01645646530801,19.29658517732156],[-97.01672909825703,19.296718201787485],[-97.01825722345001,19.296973238667817],[-97.01947505051743,19.296830887548822],[-97.02056075401254,19.29653487846406],[-97.02138915586306,19.296261234732185],[-97.02249098870402,19.296120989578924],[-97.02338795873692,19.295763546865658],[-97.02463998329563,19.294296303176793],[-97.02523459639713,19.29466433365735],[-97.02528463345573,19.294769490163276],[-97.0309905802498,19.2973267706127],[-97.03221518604897,19.30060343044329],[-97.03450838493939,19.30677330214445],[-97.03479749741041,19.30694640030464],[-97.03512170564613,19.307252822527687],[-97.03657864189734,19.30831686012118],[-97.03669939702309,19.308594356133483],[-97.03611902972102,19.309318434132138],[-97.0367321809349,19.30954225249542],[-97.03688303832132,19.309619292190064],[-97.03700602229173,19.309884372061163],[-97.04182504662168,19.31233664235822],[-97.04200333341521,19.312863615120193],[-97.04204740659043,19.31358917603626],[-97.04230207714477,19.314342006744596],[-97.04251055878541,19.31454427327685],[-97.04300007020163,19.315499637393543],[-97.04290701858099,19.31667378817707],[-97.04305803295284,19.317275480381397],[-97.04320419399568,19.318591569911575],[-97.04330599462014,19.318810492346017],[-97.04378004637869,19.3193304522768],[-97.04419358509949,19.319671538841646],[-97.04446265452799,19.319872443754264],[-97.04472721643913,19.320449572772077],[-97.04505704039661,19.32080955588583],[-97.04513820107854,19.32100846037423],[-97.04568045336913,19.32125618955064],[-97.04614912246069,19.320044380390925],[-97.04658819081124,19.31977892650542],[-97.0465647759944,19.318261255462517],[-97.04685102119606,19.317442488241],[-97.04714661545273,19.317168405318796],[-97.04796081660169,19.317177122068586],[-97.04860658451776,19.317185195254467],[-97.04903856109206,19.31724447724622],[-97.04926262888625,19.31729694197037],[-97.04974973438664,19.317046428462618],[-97.05002920135121,19.316779566995308],[-97.05040580363442,19.315902625050626],[-97.0507355614318,19.315179100780483],[-97.05180045828166,19.314412320214842],[-97.05212398311278,19.314325006358047],[-97.05251659118414,19.313940817733],[-97.05342951045697,19.313423643559815],[-97.05436117297688,19.312696147380393],[-97.05507883619475,19.312196133674945],[-97.05614201689667,19.312060757956147],[-97.05748919324299,19.31203405089417],[-97.05774546739423,19.311922055336595],[-97.05838887680761,19.31129328712757],[-97.05858658879191,19.31100087406986],[-97.05895753015062,19.31038942018398],[-97.05958551235392,19.310150637211905],[-97.05993967656104,19.310191461845875],[-97.06022824948968,19.310599261288473],[-97.0611490820749,19.311671463477182],[-97.06170761659735,19.31180388230257],[-97.06156801677287,19.312333597914403],[-97.06153836057268,19.31258624905405],[-97.06195849154102,19.31314720901628],[-97.06246189502303,19.313430804878976],[-97.06288676728502,19.313587097379866],[-97.06315285038289,19.313640516302655],[-97.06352559900768,19.313695067309936],[-97.0641605603007,19.314131820291834],[-97.06493124697715,19.314367668214686],[-97.0651686061745,19.314597841148895],[-97.06519346254214,19.314749884823982],[-97.0652432395986,19.3150539577386],[-97.06627674703998,19.31562142988855],[-97.06750822045922,19.315229750385527],[-97.06688207101229,19.318923219967246],[-97.06772728727714,19.32069414619474],[-97.06963417011048,19.321157670100774],[-97.0701846520762,19.32132470683331],[-97.07152547652674,19.321137380240486],[-97.07190903480381,19.32029694270085],[-97.07201229522013,19.31957858876507],[-97.07239787502596,19.319043091901847],[-97.07238584550629,19.318449428252563],[-97.07254221070832,19.31805538491966],[-97.07313213383208,19.317881761178683],[-97.07384215574518,19.31716983037211],[-97.0739957446583,19.31700957734813],[-97.07422582749109,19.31679616849982],[-97.07483449161714,19.316640719407303],[-97.07548131228128,19.316467688056093],[-97.07580512712047,19.316345210183783],[-97.07603583833071,19.31607784195296],[-97.07641950256397,19.31570418987957],[-97.07670708380982,19.31543743553101],[-97.07705262001008,19.31508136260379],[-97.07729930798013,19.315065965374174],[-97.07743204141292,19.31506736456106],[-97.07758478371323,19.314979045444602],[-97.07779421962312,19.314909306484424],[-97.07814756380458,19.31490689469399],[-97.07834086749762,19.314781555742513],[-97.0788019249357,19.31473182967676],[-97.07890825008758,19.313841334645076],[-97.07929254730101,19.313790798643367],[-97.07939249265962,19.313446112533313],[-97.07966085091726,19.313467132385654],[-97.08004217250357,19.313671314988085],[-97.08152036040258,19.313595881317895],[-97.08200332301595,19.313309819779363],[-97.08214505261628,19.312674445486437],[-97.0824698760074,19.311220494429108],[-97.08253603082716,19.310760012909896],[-97.08424354621621,19.310273540884566],[-97.08453457226938,19.310074826071627],[-97.08521555104869,19.310312563629964],[-97.08568907552376,19.310101360889348],[-97.0853622927886,19.310760879892484],[-97.08525376698088,19.310947080013193],[-97.08664652452961,19.31139405312331],[-97.08723755108781,19.311529954724904],[-97.08811390662112,19.311957085233473],[-97.08852762815724,19.311658779416973],[-97.09142534653341,19.310985126722812],[-97.09273504665157,19.309977273131835],[-97.09296720302581,19.309010555911755],[-97.0928913487648,19.308407304421962],[-97.0933364899692,19.308123837038863],[-97.0953729862016,19.305518051794422],[-97.095941178504,19.30540992495395],[-97.09677162012764,19.305743451996364],[-97.098380686464,19.304215238237646],[-97.09894079480068,19.304221074317013],[-97.0994701522244,19.30419706002101],[-97.10152297111898,19.30416422825226],[-97.10165956139184,19.303899553100734],[-97.10199869085619,19.30361544691044],[-97.10220742701085,19.303988995900568],[-97.10293125838695,19.304027960192627],[-97.10332511012206,19.304476731162538],[-97.10305813979124,19.30516330182064],[-97.10594753479387,19.30638071028909],[-97.10642125524538,19.30631086905248],[-97.10733225523433,19.305909173962107],[-97.10875380847648,19.305662267738114],[-97.10899154291286,19.305552586805163],[-97.1093320571718,19.305412030170544],[-97.11088426785642,19.305154609253123],[-97.11172230691704,19.30529378369198],[-97.1128544083586,19.30548044878941],[-97.11311934603191,19.305355372591862],[-97.11345873601863,19.3049096818732],[-97.1145459973618,19.304841657783925],[-97.1157389100656,19.30527674967459],[-97.11707090006854,19.30576974275988],[-97.1177635315704,19.306063908724525],[-97.11853998120057,19.30627537152202],[-97.12188407494017,19.307398345563968],[-97.12347313787313,19.306852898171996],[-97.12382084326464,19.30745693560044],[-97.125623366355,19.308179383987408],[-97.12605042680298,19.30834358823796],[-97.12634758990367,19.30844590139253],[-97.1270659154763,19.308575155286917],[-97.12765132770159,19.30889777446589],[-97.12816352253861,19.30875404149549],[-97.12869386310189,19.308740848865398],[-97.1293597046598,19.308896681029296],[-97.13018770091054,19.31033924893012],[-97.13065827854234,19.310399940399407],[-97.1307737611753,19.310605996633512],[-97.13096247209359,19.311278402798393],[-97.13116767138786,19.312230352699544],[-97.13116704835431,19.31420676476273],[-97.13122794611024,19.314690125286063],[-97.13124578043676,19.315068091993965],[-97.13163690211127,19.315701738944824],[-97.13142937205976,19.318386111727193],[-97.13179765669105,19.319082496303167],[-97.13283788575535,19.319072159406176],[-97.1333259117049,19.318972217999203],[-97.13385387387592,19.31925046818617],[-97.13376083089418,19.319648290802434],[-97.13393667074229,19.31975504291944],[-97.1345383617728,19.31993769184936],[-97.13485956194671,19.320201160353633],[-97.1354690330603,19.321437297005332],[-97.13615627373417,19.322414074294784],[-97.1373240062955,19.32280444169953],[-97.13785089787376,19.322525990029987],[-97.13825709502015,19.322358526108815],[-97.13859884757068,19.321962196989432],[-97.13975131371978,19.321947315740147],[-97.14090800154372,19.321559294028305],[-97.14147576679824,19.321058647710515],[-97.14220792140469,19.32093283555264],[-97.14366379882796,19.32142743944985],[-97.14461926525667,19.321437163970757],[-97.14701783436215,19.320581956493527],[-97.14845491687265,19.320250049216895],[-97.14909974209962,19.32038986875898],[-97.1501900312133,19.320907368165706],[-97.15285977507892,19.323367222386082],[-97.15338011564148,19.3239434584533],[-97.15478072335725,19.32431449600972],[-97.15547874412306,19.324702202992],[-97.15590623643021,19.324611366440024],[-97.15702535060717,19.325479116588724],[-97.15832617722293,19.325801546658226],[-97.16049014322238,19.32722877783641],[-97.16151915055354,19.327597165032046],[-97.1628286319978,19.327761095251276],[-97.16417491432787,19.328189184805126],[-97.16506385716445,19.328650351590454],[-97.16579722154006,19.328808476192933],[-97.16637103933505,19.32902151266495],[-97.16704648679143,19.32902830581037],[-97.16790200162683,19.328923852064236],[-97.16905657602132,19.32872818886625],[-97.16971153694726,19.32879128590139],[-97.17020569209427,19.32902235567343],[-97.17437303222158,19.328053796645406],[-97.1751116957688,19.327928915266227],[-97.17543049100169,19.327932106333378],[-97.17597117343314,19.327691852532894],[-97.17667925548477,19.327127584584957],[-97.17766213833227,19.326921484264346],[-97.17824699413012,19.32667243184494],[-97.17987170032217,19.325520388938855],[-97.18029984751684,19.325269759294372],[-97.1808163598098,19.325126227301496],[-97.1812416852714,19.325130465657992],[-97.18189415894727,19.32483959002633],[-97.18272946914635,19.324210672137042],[-97.18412909156268,19.323162549817425],[-97.18482678611156,19.322829635455378],[-97.18834457163507,19.32162566285234],[-97.18953873195869,19.320305617486895],[-97.18983180463522,19.319363161464707],[-97.18980178366814,19.318233810118386],[-97.18992211336342,19.317456791262885],[-97.19011898120556,19.317150067399723],[-97.19038802204574,19.316372425470206],[-97.19036148968064,19.315996044034137],[-97.19343259508696,19.312836123745342],[-97.19486114304527,19.311509462277172],[-97.19592197358782,19.311335917620283],[-97.19807358152815,19.309771597669908],[-97.20062680852948,19.309499413792878],[-97.20148869612319,19.311374939063967],[-97.20153381658798,19.311751532484948],[-97.2015045285018,19.312312740218374],[-97.201503097758,19.312434192252056],[-97.20133150818407,19.313131237320135],[-97.20146134261086,19.31401853952002],[-97.20148400621508,19.314423607558354],[-97.20154008616868,19.315285926964975],[-97.20146066662943,19.31542768925135],[-97.20114473998177,19.315843810791932],[-97.20165676449096,19.316849840446025],[-97.20194272460361,19.317110836404026],[-97.20251863568075,19.3173978045059],[-97.20313467761287,19.317442168399452],[-97.20423420324687,19.317942444474568],[-97.20495212240638,19.318201348763353],[-97.20505680835271,19.318013809251056],[-97.20681371600335,19.31590242547429],[-97.20703899272382,19.31562581929063],[-97.20798893580343,19.31519112624676],[-97.21060716903077,19.31704283142301],[-97.2118290021325,19.31860525290176],[-97.2127970358082,19.320225943281173],[-97.2142483964364,19.321683857923347],[-97.21534679266347,19.322974356391626],[-97.21560526891062,19.323319721135533],[-97.21429565390963,19.325477559731837],[-97.21353044050244,19.32707558481161],[-97.21171378756475,19.327485558177614],[-97.21001027006923,19.327843809437354],[-97.20929944094712,19.32769555897903],[-97.2084985926906,19.32787715968101],[-97.20810084580035,19.327721686007067],[-97.20727162843934,19.326842019058006],[-97.2062311478436,19.327021256146793],[-97.20578643879588,19.32750948991651],[-97.20525937082624,19.328224262303365],[-97.20525482046827,19.328641033984184],[-97.20472112520565,19.329962014695298],[-97.20470995150117,19.330985003849662],[-97.2053328494282,19.332468929217328],[-97.20572649475412,19.333349766542028],[-97.20611193397173,19.334133941155073],[-97.20793617649139,19.335686710927746],[-97.20948381258921,19.337025059049495],[-97.21013770799863,19.338460467553375],[-97.20984434180275,19.33978074281424],[-97.2092137031434,19.341330258667256],[-97.20926314813596,19.341912927322312],[-97.20982046546175,19.345069680446613],[-97.20919758884486,19.346464191002894],[-97.20747476454682,19.347293798754833],[-97.20735820339223,19.3477562310224],[-97.20680849957625,19.348521410950013],[-97.20670132957929,19.348986496909788],[-97.2071537114411,19.349916479018702],[-97.20723054174925,19.350264534113307],[-97.20783979497838,19.350732948908444],[-97.20822212375884,19.352290445054393],[-97.20854467753702,19.352655679652116],[-97.20871553365578,19.353341521732148],[-97.20826994616044,19.35387483517178],[-97.20822174275429,19.354927101552107],[-97.20882406528801,19.35530976660499],[-97.20998068357153,19.355716917049904],[-97.21039751970704,19.35557893316212],[-97.2110894988212,19.35612658032659],[-97.21070353560987,19.356921881870278],[-97.21086297339468,19.358003640467132],[-97.21020604467765,19.35944165204768],[-97.2108260610562,19.359077308231576],[-97.21156893114926,19.358841799050367],[-97.21194033454799,19.358677029543912],[-97.2125841164451,19.358418068226058],[-97.21278213084338,19.35822989407444],[-97.21347516197596,19.35754777566933],[-97.21471316059325,19.357006362083496],[-97.2160008466783,19.356699977774838],[-97.2171647092593,19.356417168595726],[-97.21736283016031,19.356393537319093],[-97.21780857344555,19.35629922898994],[-97.21822959839324,19.35627545603228],[-97.21857643700429,19.356416277865605],[-97.21889575293977,19.35666428913595],[-97.21964154142489,19.356580147334682],[-97.22003789992044,19.356697427842676],[-97.22041001417938,19.356783044077474],[-97.22120182514851,19.35650862020094],[-97.22165832205974,19.356518830476773],[-97.22183488070709,19.35662406156979],[-97.22339109275902,19.35693876732921],[-97.22396130615908,19.357232004710568],[-97.22469609927805,19.357611741077903],[-97.22649192077301,19.359008419260817],[-97.22707315006323,19.359704278500203],[-97.22685132721142,19.3599368931296],[-97.2281153199512,19.361040862482696],[-97.22915595116194,19.3615337950111],[-97.22980015477219,19.361838940987127],[-97.23108876946065,19.362707804359673],[-97.23059524809315,19.365105870633442],[-97.23069457562735,19.365434900379114],[-97.23076913478184,19.365763947364655],[-97.23079415664705,19.366093028873024],[-97.2309681896246,19.366939161932294],[-97.23096889509372,19.36785593704036],[-97.23119239601635,19.368608007203477],[-97.23139105694514,19.36926606629089],[-97.23193659950277,19.370064924632516],[-97.23243226123441,19.370417182376343],[-97.23312613626064,19.37083982000223],[-97.23493453513919,19.37112061644916],[-97.23602464096382,19.371425423537175],[-97.2417737301488,19.37445359992944],[-97.24320551779476,19.3759253922031],[-97.24412842813138,19.376261864696005],[-97.245067352675,19.376899014143874],[-97.24622290911805,19.377283817436933],[-97.24698172164102,19.377898273975575],[-97.24752190033843,19.378215653401924],[-97.2476846206585,19.37840939770132],[-97.24802179499494,19.378680736822048],[-97.24824824777716,19.378736283828175],[-97.2495425691585,19.379235516003064],[-97.25195424807384,19.3802397283892],[-97.25329155588543,19.380804011806674],[-97.25416005702692,19.3813603339849],[-97.25479672892845,19.381789426894727],[-97.25535923615723,19.381677538472786],[-97.2576491008283,19.381781098625254],[-97.2598016264804,19.381275571305537],[-97.26003032131013,19.3810428993998],[-97.26444034251267,19.380621566200887],[-97.26548744066059,19.381459567841034],[-97.26881858829813,19.383038315711246],[-97.27363471264539,19.383648988470895],[-97.27524694973448,19.38398295638717],[-97.27712172027549,19.384715079400564],[-97.28053170303264,19.386575075445023],[-97.28108733267084,19.38688068381032],[-97.28177931850684,19.387343815654845],[-97.28315988377688,19.388824504117338],[-97.28341423702386,19.389125859672788],[-97.28374735958835,19.38930837527562],[-97.28394035561791,19.389496849848285],[-97.284711796581,19.39035169898392],[-97.28518590726753,19.39164353921518],[-97.28534867129576,19.39147507184532],[-97.28553049711326,19.39138571145088],[-97.28595449512079,19.39122539491035],[-97.28611017836789,19.391107533410263],[-97.28715201026688,19.389295738368787],[-97.28924502283922,19.389462271084255],[-97.29593799759255,19.39005221699699],[-97.29871456927526,19.390377274892273],[-97.31309716021212,19.39178026982495],[-97.31435509941338,19.39191470112553],[-97.31813623973574,19.391992053591082],[-97.32356485597575,19.39211494723321],[-97.32595109187389,19.392180593424996],[-97.3325676141705,19.39235963244647],[-97.33357541123434,19.392395557644363],[-97.33766286870843,19.392470614294666],[-97.34862009561346,19.37849370267105],[-97.34987772543286,19.37815157169024],[-97.35035799298043,19.37820444333812],[-97.35102553825948,19.378201184292493],[-97.35211221930223,19.37816602378274],[-97.35304330092481,19.377838072455518],[-97.35361049975359,19.377664507316524],[-97.35449529438733,19.37749584563761],[-97.35601885053268,19.37797083887557],[-97.35690381929237,19.378361283439574],[-97.35876649693523,19.377095280192464],[-97.35978512610427,19.37593331672565],[-97.36045311238007,19.376029327790718],[-97.37169987428808,19.4030591323139],[-97.37411032280426,19.405393878285906],[-97.37596422992243,19.405707830460926],[-97.37690565149035,19.40586841775513],[-97.37968863934225,19.406347921231884],[-97.37893224540136,19.404644802697305],[-97.39410235158346,19.40729556283759],[-97.39398395999916,19.407794671956765],[-97.3944510337933,19.408828166546414],[-97.39493746645695,19.408926865832314],[-97.39489686829933,19.410080977603627],[-97.39485855311978,19.41014408531538],[-97.39447254285619,19.410699726006726],[-97.39433845167952,19.41096092203577],[-97.3942934435687,19.411208416787588],[-97.3942779246857,19.411453703420023],[-97.39420692994656,19.411759661932763],[-97.39426774317428,19.412121813878173],[-97.39432442149996,19.41257198428866],[-97.3947143038792,19.413499987716705],[-97.3950964294931,19.41433939288271],[-97.3950857624854,19.41593273299128],[-97.39541995061785,19.417138963507966],[-97.39597410430139,19.418142605555317],[-97.39234756393057,19.41813069759627],[-97.39171787809295,19.420954238171475],[-97.39121318473082,19.423513740166356],[-97.39056613162603,19.42636980081886],[-97.390226788218,19.42806466539747],[-97.38920179260401,19.429349684806766],[-97.38899755239402,19.429407323473754],[-97.38895905653465,19.429425057971912],[-97.38884271704381,19.429476331817852],[-97.38847044577437,19.42960437923182],[-97.38313620317916,19.431726295959095],[-97.3815213689204,19.4322430545742],[-97.38006668653793,19.430356219249234],[-97.37563184801184,19.432230955215005],[-97.37223914009695,19.431433871668787],[-97.37168402064265,19.431320446211146],[-97.3696790038482,19.432179666808395],[-97.36746326934644,19.432025521347384],[-97.36435150905015,19.434849382022094],[-97.36212675309275,19.434917003616135],[-97.36096520779688,19.43453803397182],[-97.35861636349568,19.433119505714103],[-97.35782396731798,19.432673194410654],[-97.35729564708703,19.432375870526016],[-97.35669863894225,19.433985023443256],[-97.35658315190346,19.43428736004398],[-97.35476002181122,19.43590904641036],[-97.3540829784859,19.438028462564546],[-97.35214654281498,19.441952755411876],[-97.35328792210004,19.44404599739039],[-97.3523796938714,19.44583115891686],[-97.35388890513661,19.4472299143805],[-97.35011945496984,19.44886565278358],[-97.34929047479665,19.447669772903964],[-97.34825455537162,19.44912792260436],[-97.34696648155659,19.450897259075134],[-97.34699725186482,19.452733337446205],[-97.34821172908067,19.483718202352918],[-97.34825852817391,19.484626962187633],[-97.35207800836895,19.484722862833962],[-97.35239458607123,19.4894043254929],[-97.3557298512884,19.492910249166414],[-97.36074610030875,19.488493444116045],[-97.36499431794795,19.492342603685756],[-97.37067061305237,19.494994915573557],[-97.37999022993006,19.4932709658093],[-97.3949236293588,19.49242103107389],[-97.4004936561746,19.493864695396383],[-97.40378201352672,19.495696668503626],[-97.4042433455042,19.49984737180398],[-97.40584402747822,19.500778650721088],[-97.40406491814554,19.503100889072925],[-97.40422377411454,19.50388548423672],[-97.40415789826568,19.504281048222026],[-97.40379331920514,19.505341043374813],[-97.40370685772524,19.50546547860654],[-97.40283292894645,19.506812499424598],[-97.40171336483172,19.506399092956258],[-97.40095798893128,19.50725418465686],[-97.40117099454784,19.50825696098707],[-97.40130357237547,19.508947585863837],[-97.40168427509042,19.510755107744444],[-97.40186750889853,19.51160440383569],[-97.40226974328294,19.51361445820021],[-97.40212134375952,19.515417124994883],[-97.40409838675208,19.516582917461903],[-97.40524785576275,19.517222798416356],[-97.40562189320963,19.51802770333029],[-97.40644202663782,19.519953675490854],[-97.40651515169014,19.51994184980697],[-97.40703403475078,19.520817224083487],[-97.4072234967548,19.52132815246989],[-97.40752266701145,19.521869316029324],[-97.40750203554632,19.521880342489794],[-97.40703273533603,19.52408540644825],[-97.40600298182079,19.52625748686563],[-97.40620600463626,19.52655432365117],[-97.40668917431861,19.527341537412724],[-97.40718403173821,19.528118216812288],[-97.4080886680303,19.529526264815843],[-97.40872566945842,19.53054280169289],[-97.40902459891686,19.531040424218816],[-97.4116029040498,19.535031804189714],[-97.40958967873979,19.5373293327051],[-97.41027369728675,19.537700281102786],[-97.42074924998042,19.539818156529975],[-97.42285645446572,19.541379791606516],[-97.42301955400262,19.543405752245405],[-97.42397755633579,19.54368384477999],[-97.42493357453134,19.543580905607826],[-97.42664686521323,19.54167601377702],[-97.42685281643168,19.544285857327054],[-97.4271648133033,19.547998952768467],[-97.42744472946708,19.551252775470743],[-97.42761646924328,19.55324915719416],[-97.42762693223744,19.555864002938506],[-97.42772027195508,19.556436353586832],[-97.42785182072873,19.55695994836219],[-97.42784934334361,19.557147488288535],[-97.4278072462451,19.558225145168194],[-97.42773479845334,19.558632662440573],[-97.42712372776737,19.56178825780421],[-97.42681207566653,19.565871636720658],[-97.4268812991096,19.569159670671013],[-97.42818603908432,19.572080922444457],[-97.42871044102833,19.5727852039318],[-97.4298851069176,19.575014989414797],[-97.43058838383092,19.576170418906997],[-97.42990100358156,19.57779660568991],[-97.43007702503064,19.578634702257546],[-97.43012938175957,19.580418490789498],[-97.43009584901415,19.581415603469964],[-97.42990711455491,19.582667727405862],[-97.43023979380848,19.58540347253836],[-97.43050115294085,19.586522523059728],[-97.43145236780282,19.5869587391129],[-97.4314874452271,19.58773378665387],[-97.43239137074374,19.588085267657448],[-97.43412124416864,19.5883560394214],[-97.43414245663001,19.590124986379408],[-97.43249952634858,19.593169309887344],[-97.43204646277053,19.594023984274088],[-97.43130488568539,19.596136742561157],[-97.430905121975,19.597673367518723],[-97.43115698285379,19.598062795808346],[-97.43165251998266,19.599395130919902],[-97.43166465521483,19.599758061000728],[-97.43066067461399,19.600026911486623],[-97.42919082797613,19.600465909165393],[-97.42913357701349,19.60109467068378],[-97.42937638396342,19.601225583888493],[-97.42836699706447,19.6016650145462],[-97.42794268735958,19.6026332230212],[-97.42807442294816,19.604860979670946],[-97.42837901637046,19.606270147649525],[-97.42859297146333,19.60825982986745],[-97.42776574088168,19.609356959253205],[-97.42771365713344,19.614611855883197],[-97.4280466505827,19.61589717992257],[-97.42376224898919,19.617513589408304],[-97.42275754931961,19.619111763875367],[-97.42113692695858,19.620594480610748],[-97.42027748653993,19.6238432599132],[-97.41939438640645,19.62509845616927],[-97.4184672772069,19.627216553648736],[-97.41709479580788,19.62689572133212],[-97.41642607183223,19.627967006942526],[-97.41298438792182,19.62394416816028],[-97.40810890788339,19.62197156047847],[-97.40632884795156,19.620374006925033],[-97.40575522197605,19.619934338894325],[-97.4052344388167,19.619467464838294],[-97.40517659438461,19.61906802338342],[-97.40493357653486,19.618191407425456],[-97.40274729258738,19.615343012531127],[-97.39952242666612,19.618396799463426],[-97.39812657253901,19.619631781575038],[-97.39759767309965,19.61981419092365],[-97.3970016269817,19.6201207297251],[-97.39528309551974,19.62095673824706],[-97.39477370642163,19.621571747561973],[-97.39335942669453,19.62323934209661],[-97.39274499771096,19.62455900411254],[-97.39180193458805,19.62663156062331],[-97.39043673086297,19.627179245066202],[-97.38836992789766,19.626779592934724],[-97.38705967940092,19.626637004445797],[-97.38430172451814,19.629838948865086],[-97.38280134695083,19.63533321153284],[-97.38158193493928,19.63456715979703],[-97.38042081284993,19.633984820032197],[-97.37947821478394,19.63454331969291],[-97.37890219459842,19.63456125034702],[-97.37769072286153,19.634035451327577],[-97.37451098567857,19.637135572582963],[-97.37010856029718,19.64190030646597],[-97.3658596037535,19.648284515026887],[-97.36315210054636,19.64991340563023],[-97.36198821542831,19.650574681341595],[-97.36089864946274,19.651303657655376],[-97.3588124863548,19.653578308100123],[-97.3574845803962,19.655095656290655],[-97.35585530665884,19.656069555498846],[-97.35531459306316,19.656469972665832],[-97.35450579648057,19.65747194751276],[-97.35407034426754,19.658145983200654],[-97.35331169618911,19.659148593725547],[-97.35003369389062,19.66135545426556],[-97.34907068149732,19.66206871496138],[-97.34736421219094,19.663375345144857],[-97.34513371896537,19.665862681155772],[-97.34187981451248,19.670204178486642],[-97.34116584506052,19.674017471658203],[-97.34116290317542,19.67566046792024],[-97.33751210709198,19.675236056764106],[-97.33729157121525,19.67607801071472],[-97.33360509907106,19.67649404096926],[-97.33160897792197,19.676399443401067],[-97.32988541680993,19.677051280126307],[-97.32966324599226,19.677946590718363],[-97.32972862962049,19.678278509930976],[-97.32640262023205,19.678918260798184],[-97.32496594664974,19.67866187854679],[-97.31966997034618,19.676591571589995],[-97.31893946431728,19.675674566316843],[-97.31788139737228,19.675229602965885],[-97.31714504120976,19.674786545162476],[-97.31719239325355,19.674089804894834],[-97.3160691896681,19.67375196346785],[-97.3146632092554,19.674171536076813],[-97.31396605205481,19.67412144249812],[-97.31091153282728,19.67515981977067],[-97.3094689700377,19.673642311144874],[-97.3081396571153,19.673376811083642],[-97.3075143802692,19.67296734260816],[-97.30643939230413,19.672680108123586],[-97.30573124606951,19.672200860934822],[-97.30393001200315,19.671155531449983],[-97.30437580951116,19.675112596421172],[-97.3047947236089,19.676075227952424],[-97.30635932981329,19.680186002046014],[-97.30689226442723,19.683019668125553],[-97.30742386189178,19.68453738935125],[-97.3077876282872,19.684759276269347],[-97.30851005435932,19.68499919076612],[-97.30986126048094,19.68565448060116],[-97.31040007375725,19.685974505460933],[-97.31095592578282,19.686559785005727],[-97.31286377714105,19.688910051853043],[-97.3145409306764,19.69079316585021],[-97.3149110632275,19.691278022057304],[-97.31560535060112,19.692035674323392],[-97.3165548545137,19.693274188123155],[-97.31654447348922,19.693723296683288],[-97.31725930060549,19.694577848283757],[-97.31778384842062,19.695318461779493],[-97.31885896781108,19.697066632931296],[-97.3201738394456,19.699531131508422],[-97.32205467693552,19.701292508697577],[-97.32279849936202,19.702198595174195],[-97.3231740525896,19.70279775569736],[-97.32432224583681,19.70459710039512],[-97.32462018386792,19.705456460875155],[-97.32470982536279,19.70755202460873],[-97.3250654492611,19.707804067677785],[-97.3257125431823,19.70816324096961],[-97.32680460708457,19.70917231781499],[-97.32767745592088,19.710944923627892],[-97.32781993727099,19.71151519904123],[-97.32862859255584,19.71199655370532],[-97.32920606307073,19.71275066985737],[-97.32965795758025,19.71432713167144],[-97.33127396960685,19.714772976467202],[-97.33249847125592,19.715829180242338],[-97.33314040495765,19.716779815348445],[-97.33036120909969,19.718778819661622],[-97.32970083518262,19.71898023981737],[-97.32711041462466,19.720149693683936],[-97.32661349912718,19.720456420502614],[-97.32512169203528,19.72148040546432],[-97.32391173416397,19.72178046014443],[-97.32275766208909,19.72197725126739],[-97.32192567541085,19.722851690495247],[-97.32125877228191,19.72367577497289],[-97.32031814147751,19.72444539481046],[-97.31987281756273,19.72506396360467],[-97.31959204264268,19.725684073990124],[-97.31903699946798,19.72630161139375],[-97.31831794132944,19.726865711262803],[-97.31792961598467,19.72727723836266],[-97.31698623069258,19.72830627917574],[-97.31515810607544,19.730001650316638],[-97.314761462776,19.732886118554063],[-97.31378165609863,19.736046330709826],[-97.31872400915103,19.73562254569015],[-97.32054328868577,19.734599736141945],[-97.32181231870516,19.73444626687359],[-97.32189108360137,19.735273827252172],[-97.32179849797507,19.7357690443622],[-97.32009328656869,19.73730520953592],[-97.32004448762132,19.738277657791684],[-97.31967769790475,19.739597575234768],[-97.3202395668144,19.7427734592153],[-97.32047215529639,19.744655884692975],[-97.32108378001249,19.74783155845853],[-97.31893972682417,19.750567824856034],[-97.31908905328311,19.751884145112342],[-97.31913595717185,19.752183019188976],[-97.31911801847576,19.753130693463106],[-97.31914900264456,19.754906056352183],[-97.31903095083482,19.756312147995857],[-97.3195979469258,19.761347898428482],[-97.31894143574738,19.76233157991942],[-97.31867220406485,19.763004064642985],[-97.3188449174479,19.764589914049225],[-97.31888270605987,19.76515508304084],[-97.31829605430863,19.768245103756442],[-97.32000335288961,19.76982613976594],[-97.31909412756988,19.771659150555138],[-97.31958722664103,19.774158295152176],[-97.3190065924357,19.774806399198837],[-97.31805784406401,19.775624239959313],[-97.31742052084599,19.777249288070834],[-97.31708275228107,19.777944649852145],[-97.31713592281943,19.778154686586845],[-97.3175560087501,19.778548952613562],[-97.31741246250846,19.779114789044968],[-97.31720713540398,19.77962778219745],[-97.31662862859724,19.7819946694259],[-97.31623996280928,19.782472029297878],[-97.3158268464573,19.78303697878738],[-97.3155716284686,19.78337752401478],[-97.31541415000498,19.783795249248726],[-97.3152448362751,19.784102508635954],[-97.31516601227895,19.78435266659409],[-97.3152423622804,19.784597683024174],[-97.31483796250342,19.785747696236115],[-97.31491717987018,19.786115116482506],[-97.3144853770944,19.787682530628217],[-97.31413938815581,19.788988838136788],[-97.31377340343391,19.78956159318676],[-97.3132151084489,19.790117439817493],[-97.31315081924083,19.79019132158345],[-97.31307717139788,19.79125128601771],[-97.31323050740917,19.791638519858964],[-97.31416284002802,19.793609317401547],[-97.31328347056001,19.797370075801723],[-97.3151054208679,19.799722721745013],[-97.31441848101304,19.801881288516597],[-97.31659931288863,19.806876516529485],[-97.31654425620604,19.80870176083488],[-97.3164362847046,19.80880471981544],[-97.31640227375271,19.809092196166603],[-97.31645451316876,19.809207701271987],[-97.31648293658128,19.80931487736575],[-97.3164854646729,19.809474408263384],[-97.31649242096177,19.810203526279338],[-97.31647907027241,19.81128908264111],[-97.31664989452884,19.81159438993484],[-97.31680123140643,19.81167622030881],[-97.31673629637805,19.811979151746243],[-97.31676778922792,19.81290591899051],[-97.31659408269422,19.813209149025568],[-97.3156595243612,19.813800208208136],[-97.31556446107169,19.814055447497026],[-97.31549718005385,19.814338722668026],[-97.31552557009184,19.814557021287385],[-97.31560034381619,19.81468162887205],[-97.31559626527923,19.815007623782265],[-97.31619874019174,19.815942277560282],[-97.31628143866533,19.81621581728359],[-97.31670040518475,19.817021688430827],[-97.31648709429606,19.81726913875133],[-97.31633762455016,19.817706080039272],[-97.3166551574696,19.81777638162481],[-97.31668590353945,19.817832761768216],[-97.31642475275464,19.81828222796844],[-97.31626048278713,19.818645917918616],[-97.31623301640337,19.819232355527845],[-97.31619448709512,19.819511155096677],[-97.31594101986605,19.819698827998252],[-97.31561986092271,19.82000302886172],[-97.31536694616352,19.820213733130856],[-97.31502673135412,19.820442228241518],[-97.31463135795718,19.82059389449779],[-97.31360912907519,19.821542939299434],[-97.31355984472714,19.82192383422199],[-97.31360470876336,19.822089122963064],[-97.3138108640266,19.822395969350282],[-97.31392859955815,19.822543021169565],[-97.31438106579685,19.82283018004756],[-97.31509226609728,19.8236363083505],[-97.31538751264634,19.824372890135066],[-97.31510853323931,19.826081173964837],[-97.31496891901105,19.826410824495383],[-97.31472486852118,19.82684494527541],[-97.31483399045123,19.82713410570966],[-97.31507633271315,19.827280158535302],[-97.31509153623415,19.827635697213452],[-97.31463021730497,19.827993816884998],[-97.31454953973645,19.828207825175184],[-97.31429830854688,19.82855267433223],[-97.31419404762886,19.828653367009167],[-97.31393736173544,19.828922551982316],[-97.31358796408836,19.829223510186637],[-97.31332420702,19.829431854834866],[-97.31323683327486,19.830104642727292],[-97.31301149495471,19.830262216793585],[-97.31278839179748,19.831091927045748],[-97.31251360568717,19.831228305182947],[-97.3123004882973,19.83127000221066],[-97.31217573641499,19.831500708151054],[-97.31206674328303,19.831697409054982],[-97.31160142692113,19.83185548685475],[-97.31118405696816,19.83210473343314],[-97.31093667580183,19.83250412019521],[-97.31077238015143,19.832681277126255],[-97.31051563882244,19.83288953056598],[-97.31009904171356,19.83321076145677],[-97.30965262520658,19.833491757226],[-97.3093107514951,19.83375633643311],[-97.30892429028273,19.83410798251424],[-97.30855295106016,19.83432251083127],[-97.30841675149532,19.83522634531448],[-97.30855625898795,19.835683260281144],[-97.30858418411754,19.836003513185517],[-97.30871914430617,19.836234950755227],[-97.30895712440724,19.836494143225536],[-97.30914042875492,19.83683148966952],[-97.30966927938175,19.837723636601993],[-97.3098761075002,19.837999038862847],[-97.30980643334516,19.83812062183921],[-97.30966374218093,19.838460909898117],[-97.30930447344537,19.83857353416215],[-97.3092527597966,19.83898735007523],[-97.30946994748791,19.83919736350731],[-97.3097076426742,19.839354976208313],[-97.30993448349119,19.839862507513146],[-97.30993760697328,19.840313374004495],[-97.3100484837621,19.84035216530816],[-97.31018110377352,19.840303235078352],[-97.31036104533382,19.84023809326834],[-97.3102948725869,19.84134088178132],[-97.31013654053339,19.841592306259315],[-97.3100433053304,19.84185458378721],[-97.30987200347397,19.842259319440927],[-97.30956565189945,19.842544065322556],[-97.30937280724646,19.84276227621598],[-97.30900494505858,19.843325331385074],[-97.30891020131361,19.843553075783177],[-97.30863777148596,19.84382004385924],[-97.30836300812757,19.843882606592558],[-97.30811044870165,19.844390057163366],[-97.30854428714684,19.84489211260609],[-97.30811642407474,19.845852284534374],[-97.30794390467508,19.846220073158463],[-97.30798655052337,19.846345770784808],[-97.3080630800523,19.84657912365998],[-97.30794210725395,19.846815246152175],[-97.30779008775215,19.847405760751542],[-97.30777363584832,19.847609584714405],[-97.30865046444444,19.848102654490674],[-97.3087540660539,19.84809697663377],[-97.30894175009757,19.848378191775225],[-97.30907616794934,19.848568915798637],[-97.30940580741867,19.849094394269912],[-97.3090924240459,19.84945782464689],[-97.30882682348505,19.849513675133096],[-97.30863257082132,19.849694223560277],[-97.30857826073338,19.84990575466759],[-97.30852384416096,19.850500430710383],[-97.30859442750307,19.850645482111872],[-97.30845580227373,19.85082871386095],[-97.30839084506903,19.85106779708491],[-97.30841052126704,19.85131842704135],[-97.30833754260294,19.85178943049641],[-97.30831854095663,19.852065655111517],[-97.3082242019542,19.85260743402091],[-97.30821251032393,19.85287407249149],[-97.30831733584057,19.853021145574075],[-97.30853710156975,19.853267657773927],[-97.30877099227109,19.853594509596462],[-97.30921786624225,19.854119722277858],[-97.30945507188176,19.85435079537484],[-97.30949122675543,19.85452770445403],[-97.30957194876169,19.855619910356154],[-97.30946082072688,19.85614383407369],[-97.30912634648081,19.856525001749617],[-97.30894594237492,19.85660731197453],[-97.30863730752822,19.856836010366692],[-97.30870075740961,19.857143516800136],[-97.30887451493106,19.857378054472633],[-97.30766328150435,19.859383495086774],[-97.30763678575448,19.859872298472624],[-97.30757413084115,19.86029651732747],[-97.30748128552784,19.86048405086251],[-97.3072128440358,19.86108602568754],[-97.30711551704229,19.86143011384212],[-97.30689436909427,19.861649290832418],[-97.30646833440488,19.862112354902365],[-97.3063322103634,19.86232749882015],[-97.30617678799342,19.862640200086673],[-97.30589834119917,19.8628204748494],[-97.30549365448684,19.86333043353676],[-97.30538070575176,19.863514981855076],[-97.30530487255783,19.863991741962934],[-97.30525179393169,19.864122618075385],[-97.30521473888848,19.864404790146523],[-97.30519584520658,19.864638663815185],[-97.30511443403776,19.864809436208418],[-97.30451969459455,19.865684626989605],[-97.30449719604763,19.865742103108175],[-97.30453527962283,19.865827308194582],[-97.30468639845168,19.866006503671883],[-97.30493924909501,19.86640861824958],[-97.3049901072664,19.866520077614723],[-97.30501915774448,19.86706391955488],[-97.30476345959391,19.86728465715521],[-97.30415727147164,19.86766956830172],[-97.30391915733355,19.867999975444604],[-97.30375725566336,19.868143254287418],[-97.30443991864462,19.868823495412357],[-97.30451361128274,19.86921299497152],[-97.3045137834618,19.869460156320883],[-97.30467070355115,19.8700284607184],[-97.30461560735256,19.87048252510482],[-97.30445428855239,19.87087388638156],[-97.30433211484149,19.870991022707813],[-97.30396623633345,19.871323833687654],[-97.3035977668103,19.87173097931486],[-97.3029112826161,19.87250961780495],[-97.30222070396582,19.873569230200076],[-97.30201631492531,19.87406419947473],[-97.30185497279632,19.874738002428046],[-97.30184806881545,19.87493731591894],[-97.30188375761998,19.87519044575214],[-97.30201703300168,19.87652097688607],[-97.30186616878336,19.876705317845847],[-97.30108892415001,19.877647337140388],[-97.30084741985576,19.877881376496646],[-97.30093026892445,19.878377497416636],[-97.30082662760009,19.87934844887826],[-97.30070853843534,19.879869849754698],[-97.30033420831592,19.88072984585142],[-97.30009217517784,19.881299913185785],[-97.29956136390211,19.88178074701841],[-97.29907667708903,19.88222582210153],[-97.29887805699178,19.882336781142953],[-97.29878728409733,19.88240089692158],[-97.29835333171155,19.88240416444097],[-97.29757488623363,19.882639347068164],[-97.2971090489209,19.88305154911808],[-97.2968914255606,19.8834547166407],[-97.2960427954053,19.883670984338494],[-97.29541074901601,19.883664068216433],[-97.29413220208824,19.88376658829901],[-97.29394575128248,19.88403687014977],[-97.29380293277143,19.88432523634009],[-97.29346712278652,19.88481675589719],[-97.29258281810303,19.88504026186223],[-97.29212549465882,19.88546107953772],[-97.29179824979366,19.885702080854003],[-97.2914933246933,19.886069064218418],[-97.29079782543351,19.88642895349733],[-97.29058033079684,19.886572782032715],[-97.29044286305253,19.886961696797812],[-97.29038079494586,19.887219110940464],[-97.29040370291625,19.887579550272505],[-97.2904722758953,19.887899584659976],[-97.290496173424,19.88801372599511],[-97.2904680646543,19.888823177465554],[-97.29046162742435,19.890098045162517],[-97.29492172110167,19.892494937640947],[-97.29509307074937,19.89316643212993],[-97.29524588121717,19.893640334195084],[-97.29514026476005,19.89382364192761],[-97.29474894602424,19.893901384867547],[-97.2943196779841,19.894493453612142],[-97.29463858203871,19.894827644593704],[-97.29421118481338,19.895517585463836],[-97.293345906956,19.895624899157383],[-97.29351324848119,19.89627226901291],[-97.29335578007613,19.896837298611104],[-97.293129271684,19.896858444986606],[-97.29270281312813,19.896605883812697],[-97.29202434136289,19.896371930709392],[-97.29177777593657,19.89713469021973],[-97.29158471760985,19.897772031769023],[-97.29089338195683,19.898575096483853],[-97.29115029044766,19.89923471543051],[-97.29194750133468,19.899866286662814],[-97.29182251257708,19.900255981333828],[-97.29107135494553,19.90010504066055],[-97.29073086133803,19.89931774313311],[-97.28972308172598,19.90054344176508],[-97.29015303579911,19.900973361054582],[-97.28915619111757,19.902957394521366],[-97.28905641989314,19.903600547853898],[-97.28850122943453,19.903756931472856],[-97.28848880056444,19.90223573072774],[-97.28765414506273,19.901739213748044],[-97.28694988910598,19.901456911009177],[-97.28681250823809,19.90143639996296],[-97.28644216187519,19.901561767552323],[-97.28579644161817,19.903175619027195],[-97.28570915433488,19.9037429367022],[-97.28590824289336,19.903997596814918],[-97.28625820330313,19.904453612117777],[-97.28635570865532,19.904772847184233],[-97.28594686841524,19.905331885089083],[-97.28560165287837,19.905355893231786],[-97.28435809966544,19.905278136984464],[-97.2838986485736,19.905558752919205],[-97.28368114706416,19.90608455952122],[-97.28291757672298,19.907258791160586],[-97.282185230084,19.906737269122402],[-97.28173975764321,19.906879046371046],[-97.28156026464461,19.90712383967076],[-97.28146039671566,19.907744122007216],[-97.28140439353791,19.909297287565494],[-97.28114677345593,19.91202434937975],[-97.28069328856247,19.912494127636023],[-97.28024699113297,19.912649786365876],[-97.27973302986067,19.913044822312543],[-97.27932085156556,19.913435789000573],[-97.27687615556817,19.916246094802887],[-97.275783053601,19.916257140538733],[-97.27519443667666,19.915733459759622],[-97.27528279321882,19.915342965824664],[-97.27532998759142,19.915108697323376],[-97.27461984591696,19.91481534321332],[-97.27411674238078,19.91518209679532],[-97.2737143727914,19.91554319238287],[-97.27328116494874,19.915865723604156],[-97.27326924606245,19.916245681475516],[-97.27333523126782,19.91657130426313],[-97.27341800179443,19.917270873858058],[-97.27299416665579,19.917613696455078],[-97.2720330423686,19.91696005901008],[-97.27180027171465,19.915645144170128],[-97.27160705646492,19.915297085450504],[-97.27137598456346,19.915301322924336],[-97.27118501056003,19.915572326732217],[-97.27119687673058,19.91612872386429],[-97.27126830016226,19.916669662552806],[-97.27154528560038,19.917869455014113],[-97.2714877075,19.918271954046418],[-97.27037606077295,19.919571196832692],[-97.27038948069759,19.92021625996307],[-97.2697459928242,19.920857562055005],[-97.26923204825243,19.920913984634353],[-97.2680653580191,19.921071039618994],[-97.26705918684092,19.920621273996403],[-97.26686710042401,19.920489182385836],[-97.26642849644696,19.92050576014759],[-97.26509738190185,19.9209879336741],[-97.26315540831752,19.922488254245707],[-97.26227014423034,19.924041644777276],[-97.26126527758453,19.924770435538562],[-97.25917688682813,19.927479758160075],[-97.25876133152633,19.928651718483366],[-97.25727790906109,19.930698456625862],[-97.25629989162394,19.93188656514127],[-97.25626970608238,19.932529085567808],[-97.25756830410751,19.932867291639695],[-97.26060053094238,19.93515802343734],[-97.25978616152344,19.937224680287272],[-97.26036775258382,19.93776078706918],[-97.26185348693838,19.93849213813263],[-97.26226902746998,19.940049634359013],[-97.26221608575656,19.94131172106529],[-97.26337736331328,19.942598238043388],[-97.26356974137934,19.944408629205498],[-97.26604658616242,19.94609911201951],[-97.26785331055407,19.946250519859404],[-97.26878456510377,19.946297870186754],[-97.26924909062473,19.94702727703867],[-97.2691486219939,19.948339351585275],[-97.2683822403165,19.94951676541234],[-97.26797813459632,19.952131587472707],[-97.26797942849561,19.9531921591917],[-97.26811121169084,19.954756881036417],[-97.26783944225417,19.955210014239015],[-97.26754529823233,19.95604078013156],[-97.26814198149395,19.95715977053021],[-97.26802624867315,19.95776655774074],[-97.26820252139424,19.958252338256102],[-97.26873414499676,19.959204929436055],[-97.26853956342444,19.959507436510762],[-97.26817229213577,19.95999449892389],[-97.26633624657717,19.961391525085673],[-97.26625820959612,19.96233194703575],[-97.26567417849645,19.964131753431616],[-97.26569570934913,19.964461416914276],[-97.26551033411153,19.964955722749266],[-97.26513160511297,19.965812479104216],[-97.2646842207239,19.966269554860446],[-97.26427883136068,19.96675211458205],[-97.26358369588462,19.96749304308429],[-97.2633656272256,19.96841114512472],[-97.26448061458422,19.96886683245117],[-97.26383629171971,19.969524629545617],[-97.26369672910528,19.97045231555967],[-97.26187684666365,19.971108771510615],[-97.26153814640548,19.971765862721554],[-97.26144430991963,19.97214285517782],[-97.26088909140321,19.97360609269799],[-97.26103488481789,19.97480211412193],[-97.2609455386455,19.97551815166105],[-97.261048626211,19.97635842617325],[-97.26087670097189,19.976830525346145],[-97.2601947768461,19.977408686040405],[-97.25816842977468,19.97898026588109],[-97.25764282469044,19.97948668656744],[-97.25603462166595,19.980967429297266],[-97.25480491136301,19.98211089591149],[-97.2527900719906,19.983713591360697],[-97.25223324388065,19.983931855722517],[-97.25159807330124,19.98401280976759],[-97.25019485535307,19.984162480457996],[-97.24931024692177,19.9846362590132],[-97.24901380322297,19.98505756967552],[-97.24773895653152,19.98592194947736],[-97.24564958120004,19.98648737125626],[-97.24503139880738,19.987425784372363],[-97.24336650079431,19.987303367364632],[-97.23996940798958,19.987320268907922],[-97.23931883293301,19.988162241485952],[-97.23890359651415,19.988483088290366],[-97.23776797095371,19.989174220667508],[-97.23720552481632,19.990396430066085],[-97.2368250600623,19.99068116725209],[-97.23618925028751,19.991385386237596],[-97.23602319355115,19.992321979680582],[-97.2358910583639,19.99268576374709],[-97.2354198582886,19.992897577933036],[-97.23518372195048,19.99399776868148],[-97.2350919004661,19.994442788583854],[-97.23498806023264,19.996334718939522],[-97.23423202028874,19.997048928264064],[-97.23249313177922,19.997983525148754],[-97.23162595133613,19.999428072595038],[-97.23132792259469,19.99968705948868],[-97.22994692117783,20.00019827504582],[-97.22953361155129,20.00036680986875],[-97.22898952269526,20.000585815754334],[-97.22812149719579,20.000628593763565],[-97.22723654004238,20.001105956058495],[-97.22556072725979,20.001916554475713],[-97.22541972717858,20.002887879848913],[-97.22575044051564,20.00361292642276],[-97.22458178199736,20.004347825653497],[-97.22378384962781,20.004941761004886],[-97.22366514566704,20.005776924432553],[-97.22435352722965,20.00836725041114],[-97.22381889537127,20.009607572256925],[-97.22297931755219,20.00986437777192],[-97.22044037522409,20.010430713993344],[-97.21924141153033,20.010457191332648],[-97.21293224196478,20.012283456644752],[-97.21145194008983,20.013318078231578],[-97.21064329773623,20.014079376375378],[-97.20844245507072,20.014668329873814],[-97.20718033854268,20.015317239425826],[-97.2068258328274,20.017299527927378],[-97.20781078353775,20.018697548721434],[-97.20730481879389,20.019337965041927],[-97.20594898351561,20.020293316773007],[-97.20594700742066,20.02304233399593],[-97.20358513225926,20.025315200404236],[-97.20436129207417,20.02625624068321],[-97.20435234018532,20.027859903344847],[-97.20423924049112,20.02822903100008],[-97.20566263282666,20.031065744590876],[-97.20590973511293,20.031315431979294],[-97.2066962779329,20.032405398702736],[-97.20657432416846,20.033242154286143],[-97.2069330239251,20.03323877072961],[-97.2069431504521,20.034866472204044],[-97.20716142910089,20.035565823971808],[-97.20795153577126,20.03606729151238],[-97.20840296069474,20.036403138016396],[-97.20870644083772,20.036715372493404],[-97.2087116477503,20.037252297349085],[-97.20922174907781,20.039150944930668],[-97.20948272893793,20.039719116311176],[-97.20978366398077,20.04039354712495],[-97.21026175961356,20.040769333845276],[-97.21054170230326,20.040988031257484],[-97.21054676240965,20.04135129067288],[-97.21086155580565,20.042182986412],[-97.21068609477788,20.04371652901318],[-97.21006405386692,20.044405841697653],[-97.20861544194815,20.04470575935312],[-97.20810732396109,20.04552235705995],[-97.20793279901102,20.045827949177408],[-97.20740082310726,20.046411734807577],[-97.20709387143677,20.046934306092624],[-97.20728011682542,20.048222269707367],[-97.20702980809494,20.052828447446302],[-97.2072901480783,20.05316366119854],[-97.20751998426908,20.05308284509931],[-97.20776364783683,20.053334745206655],[-97.20638773754496,20.055579498074678],[-97.20569674746451,20.056653606645625],[-97.20372052975205,20.05727120008322],[-97.20304076882343,20.057551883898043],[-97.20224647740002,20.057767185565012],[-97.20190035905034,20.05793127682648],[-97.20174132612942,20.057979541773364],[-97.20114132642789,20.057744956042654],[-97.20017064050671,20.05673305869874],[-97.19904562722695,20.055579174464924],[-97.19774258840857,20.055430172699687],[-97.19694655602171,20.05449975053847],[-97.19600377598442,20.05422154854108],[-97.19479053892746,20.05473014339651],[-97.1941485430034,20.05532279080819],[-97.19474236377579,20.057011159445096],[-97.19458104847695,20.057676955549425],[-97.19459320963915,20.05791215469327],[-97.19426078696534,20.058717089941013],[-97.19353446777751,20.05926267172947],[-97.19256082193624,20.059106433254158],[-97.19176321008598,20.058411641958344],[-97.19079270410703,20.058050273232823],[-97.19018029122412,20.059158169318096],[-97.19015099743399,20.059325926701888],[-97.19009658571974,20.059724225996433],[-97.18944388280022,20.06016306144511],[-97.18894577403199,20.06018653183429],[-97.18867466499307,20.0602026169027],[-97.18832725913722,20.06039996556933],[-97.18816454951616,20.06053767593994],[-97.1880311143006,20.060677173197575],[-97.18784281036307,20.060968435267853],[-97.18743816046646,20.06125943650858],[-97.18702215166047,20.06162467672266],[-97.18665121011401,20.062102136223757],[-97.18685119892257,20.062569569478853],[-97.18657682828001,20.062618466417803],[-97.18509382455164,20.063341324696978],[-97.18489155105522,20.063781413835613],[-97.18488147471749,20.064150437587614],[-97.18492797060276,20.064333825190715],[-97.18422881458878,20.064616662238507],[-97.18411847991626,20.06468335971931],[-97.1837719810436,20.064767632083658],[-97.18361503043383,20.065406241258984],[-97.18432948318713,20.066496896147385],[-97.18370795411795,20.067671067886238],[-97.18298239806973,20.06710904380452],[-97.18241546243644,20.066870777147642],[-97.1821980249963,20.06715026899849],[-97.1818060775746,20.067498458929947],[-97.1815462980407,20.068031157617042],[-97.18090637146531,20.068486123376317],[-97.1809062648569,20.068852198341347],[-97.18119894444965,20.069690045282528],[-97.18175795424446,20.07123093681264],[-97.18203048014851,20.07157308234514],[-97.18220428650051,20.07223605674352],[-97.18212126137269,20.07255950566224],[-97.18203700307811,20.07275298883161],[-97.18153485945311,20.07291404673373],[-97.18100830124416,20.073289021797336],[-97.18085877234051,20.073315662566586],[-97.18045676252052,20.073241085264556],[-97.18006658058448,20.073434309955417],[-97.17977872367976,20.073811744132797],[-97.17952330876062,20.07396408622037],[-97.17901327748172,20.074198342894874],[-97.17836237223332,20.073920214374482],[-97.17764540832707,20.074003475950974],[-97.17715954234131,20.074263964730335],[-97.17733089297224,20.075167214390262],[-97.17676102425071,20.0754149301884],[-97.1757501723032,20.07637661898525],[-97.17556511043472,20.076895994015842],[-97.17596405249878,20.0771048142783],[-97.17637102485673,20.07705268617167],[-97.17708005555784,20.077199764530008],[-97.1769508452187,20.077582974217478],[-97.17694870579965,20.077962082612316],[-97.17790973672561,20.078203371669645],[-97.17811643215657,20.078961896004557],[-97.18049011053239,20.07823988477668],[-97.18163350014942,20.078215098597695],[-97.18266072624829,20.07900149665511],[-97.18323724745471,20.080503404262856],[-97.18227854991096,20.081911227809655],[-97.18071419034311,20.08390114935912],[-97.17873615346804,20.086602244099367],[-97.17722395220807,20.086362179061098],[-97.17550487909665,20.087599406985873],[-97.17495196016654,20.08815649162989],[-97.17418227088586,20.091885510145175],[-97.17376002437044,20.09231653800498],[-97.17189653907741,20.09336891310545],[-97.17175927385256,20.0938443482529],[-97.16973139648803,20.094486799395497],[-97.16782900002028,20.095669588104954],[-97.16760218633061,20.09628921815215],[-97.16750640405144,20.096972406588634],[-97.16667971549577,20.098187064457647],[-97.16667393375224,20.098684594029862],[-97.16502022961231,20.100169818572],[-97.1646224323269,20.100313004661302],[-97.16326448728427,20.101101651897352],[-97.16258621740815,20.102180597595463],[-97.16176385793403,20.10258966615686],[-97.1619264651332,20.10363751046225],[-97.16074604564449,20.105007766299366],[-97.15890209995075,20.107072391834436],[-97.15821654730019,20.108209804263936],[-97.15795127996739,20.10830902742839],[-97.15769339065287,20.10880496139623],[-97.15776182954795,20.109111646581766],[-97.15782816229097,20.10959962956963],[-97.15742979380502,20.109788119597113],[-97.15571576499212,20.11058615196299],[-97.15562418279359,20.111231137832704],[-97.15207017580781,20.113324444248008],[-97.15056841326805,20.114017777958452],[-97.15053192472556,20.11428496217951],[-97.14922220267795,20.115003253382554],[-97.14704700982475,20.116737626538054],[-97.1455768537578,20.116593544422926],[-97.14580047990614,20.116785077142197],[-97.1456250701421,20.11720575380957],[-97.14600944401712,20.117448325410805],[-97.14535569711484,20.117740505015206],[-97.14429924724107,20.11824879245404],[-97.14381482422067,20.118322391900733],[-97.14363143313784,20.118320463066595],[-97.14349972414976,20.11817742683803],[-97.14270837502147,20.11808333726475],[-97.14252422385516,20.11805270783026],[-97.14199316475401,20.118456235589747],[-97.14192362866913,20.11891632260165],[-97.14038516307227,20.122364204300368],[-97.13644590918676,20.123157057311346],[-97.13579724174065,20.12323764467851],[-97.13414661521023,20.12368762716909],[-97.13347533884212,20.124750859956578],[-97.13345243471156,20.125012307658437],[-97.13315032872998,20.125439034851752],[-97.13319311739042,20.12684139376381],[-97.13308967816283,20.127214138242266],[-97.13159075333806,20.12856823018376],[-97.12928864097302,20.130238425139282],[-97.12874998377669,20.130481603218357],[-97.12879122759597,20.131123532496304],[-97.12829211355626,20.132152227752385],[-97.12722067356407,20.132686569812222],[-97.12609418246768,20.132732051342032],[-97.12565657508685,20.13325928832785],[-97.12340547188052,20.13521431938932],[-97.12289630838399,20.13619867839077],[-97.12387744583128,20.137309467523266],[-97.12571661744067,20.13736521641283],[-97.12887105089868,20.138884599152846],[-97.12941678043074,20.13917465756282],[-97.12978883059571,20.139458928078568],[-97.13133681598475,20.139709665643352],[-97.13197718663076,20.139601559077505],[-97.13302207628186,20.139769704042294],[-97.1337904699389,20.139697123658834],[-97.13953089059925,20.139957841674004],[-97.14019094528834,20.139249722061606],[-97.1437832729336,20.136379162936123],[-97.14573125247205,20.136251045938934],[-97.14864487625022,20.13707052385945],[-97.14891517270581,20.137236956364745],[-97.15139350343429,20.137618685942982],[-97.15271314932073,20.139015508923478],[-97.15235169573685,20.142595598426226],[-97.15216720546374,20.144361494198222],[-97.15200842665996,20.146148552809734],[-97.15659406049662,20.146861255320403],[-97.15669412935318,20.146861821535367],[-97.15657936816012,20.148033201459498],[-97.15644615825693,20.149213397987012],[-97.157529237473,20.149575445763446],[-97.15725432992855,20.15000998179852],[-97.15698177358263,20.15031324311576],[-97.15628309908533,20.150821293875595],[-97.15565004187425,20.151187561227175],[-97.15507374406849,20.151116486049773],[-97.15464814581122,20.15147739267013],[-97.15396172800297,20.15138126065807],[-97.15387107390495,20.151992587706275],[-97.15303742752519,20.152415528120343],[-97.15341527283408,20.15283598188779],[-97.15355969320836,20.15410362199532],[-97.15308071807652,20.15428974837738],[-97.15258363091573,20.15499574164886],[-97.15178617188627,20.15529018373644],[-97.15229750176934,20.15548084832068],[-97.1524766947677,20.155554043178142],[-97.15245994153832,20.155822248958714],[-97.1519741200949,20.15605328614845],[-97.15145441866252,20.1562788865686],[-97.15160085056522,20.15691066652687],[-97.15183330226063,20.156911734126027],[-97.151680397691,20.157154698019838],[-97.15165025615403,20.15739894950201],[-97.15139779367257,20.15798841150354],[-97.15105020162099,20.15801285284192],[-97.15093093947098,20.15815727247889],[-97.15105672590175,20.15867671185498],[-97.15053084546321,20.1586357885206],[-97.15032520616586,20.158723734768728],[-97.15014509391989,20.15906682087757],[-97.15043710321288,20.15928145063424],[-97.15005432190827,20.16027606597345],[-97.15016397405697,20.160282755627122],[-97.15007987467135,20.16062659900399],[-97.15277783993162,20.159993575824842],[-97.15305593278163,20.160167772753937],[-97.15684673578806,20.160255092315992],[-97.15713452644513,20.160548995591228],[-97.15882061653838,20.160624914674315],[-97.16082205345316,20.160807808556797],[-97.16100843586855,20.16071703923069],[-97.16091042478723,20.160232052608592],[-97.1619105967253,20.156525614852455],[-97.16125827308122,20.156215584148185],[-97.16180377713096,20.156021775148588],[-97.16229007115805,20.15565385824084],[-97.16285344642529,20.154619218873563],[-97.1634146727597,20.153403345454365],[-97.16393098080977,20.152909705712318],[-97.16426617557016,20.152310936285915],[-97.16441342980323,20.151831547746042],[-97.17297258373873,20.154594109701577],[-97.17907150200097,20.156620072804117],[-97.17942322667943,20.15675815961862],[-97.18037043749666,20.156811562618714],[-97.18223779645916,20.157748677955112],[-97.183416524557,20.158045289179256],[-97.18932773606974,20.159897406563687],[-97.19702908198201,20.16244509393124],[-97.20255462659003,20.164249666471335],[-97.2039758741152,20.16468644686489],[-97.20902995313281,20.16632467520577],[-97.21387141244475,20.167941071236157],[-97.2185984354877,20.169479656100634],[-97.22130337183086,20.170408037698564],[-97.22274668146571,20.170832842843367],[-97.22663513574952,20.172023797976863],[-97.22850904543134,20.17261705917042],[-97.22860554816702,20.171999778620034],[-97.23195792568004,20.17195238602244],[-97.23534307512966,20.17276308073184],[-97.24332478851449,20.17510708902938],[-97.24250320834238,20.178044632966362],[-97.24370797276697,20.17854503954902],[-97.24314483353459,20.179847937684542],[-97.2436428529927,20.179888732488678],[-97.24393360094916,20.1801818021047],[-97.24393575292413,20.180564939600288],[-97.24377242239609,20.180848749151835],[-97.24393087308783,20.18100143939256],[-97.24395407619704,20.182109825766872],[-97.24393477321456,20.182243955801766],[-97.24550820584551,20.180947340688874],[-97.24613790070043,20.181212222669046],[-97.24655438950867,20.181217071859635],[-97.24895740515291,20.17913741747526],[-97.249194893852,20.179385957671002],[-97.24950717923605,20.17905773505032],[-97.24969247265426,20.178391514672626],[-97.2518044493296,20.178329547942383],[-97.25340666714402,20.177485790535684],[-97.25458322172108,20.177295972434706],[-97.25491979328768,20.177433631657607],[-97.2555268824986,20.178850035195012],[-97.25566344134603,20.17937188757213],[-97.25606913738056,20.17969492101298],[-97.25789715433268,20.180132775564573],[-97.25919900502998,20.18048186306106],[-97.25962109138635,20.18054737889969],[-97.2596133844396,20.17890235642676],[-97.25949417289337,20.178277619580513],[-97.25989764913965,20.178114533478038],[-97.26215944111925,20.1780133747705],[-97.26383051840753,20.179214687103126],[-97.26512151416995,20.18060422428107],[-97.26791305340123,20.182239654344414],[-97.26777469687158,20.184946237097563],[-97.2696234785717,20.185162857305897],[-97.26954226393843,20.185853113945825],[-97.27054391864579,20.187518977099046],[-97.27208115548115,20.18612146962039],[-97.27231324256792,20.18591064629004],[-97.27264150358184,20.185489601851998],[-97.27382411333463,20.184812692041817],[-97.27417459820299,20.18450264006964],[-97.27452352462478,20.18377177746936],[-97.27537641950482,20.183412462891454],[-97.27620812578522,20.18294597368805],[-97.27686668509426,20.18389388773096],[-97.27705878840163,20.183921172336284],[-97.27768916974344,20.183600104067636],[-97.27843671427718,20.18322017939903],[-97.27900162621006,20.183071357559356],[-97.27916399284959,20.182863059166777],[-97.27987703710522,20.181317893036294],[-97.28233728920173,20.18108832377311],[-97.2833746971009,20.182336374731165],[-97.28326441867574,20.184515993748903],[-97.2829837891523,20.185135897495],[-97.28291156019321,20.185438616515853],[-97.2838359769068,20.187029772446806],[-97.28362286736558,20.187612865314122],[-97.28440703371922,20.18891272426208],[-97.28471859670901,20.189244482565357],[-97.28499209840487,20.18930571962062],[-97.2854104028579,20.190101023970442],[-97.28528174193548,20.19073070882905],[-97.28775163093087,20.19161110766322],[-97.29333785989263,20.193399334697915],[-97.2971005899177,20.194629915550422],[-97.29824297396544,20.19499896295872],[-97.30421765895841,20.196975617440955],[-97.30443588345634,20.197013282114995],[-97.3093338183391,20.198577255689088],[-97.31177541492656,20.199342478763185],[-97.31277711398565,20.19966364776144],[-97.31544119405527,20.200556182121602],[-97.31558999958696,20.200596061218107],[-97.32463648248222,20.203533104567782],[-97.33220988041109,20.2059373267532],[-97.33720197593578,20.207524325741076],[-97.33802233404106,20.207779637793465],[-97.33922674223413,20.208143684183085],[-97.34493107745806,20.20999898542709],[-97.34499853180125,20.210017356103094],[-97.34957934231232,20.211497625001527],[-97.35153875316018,20.212142316409142],[-97.36086867786724,20.215128586166315],[-97.36339147589666,20.215939827607826],[-97.36443317425125,20.21621170493006],[-97.36484411576612,20.216087155640423],[-97.3655123926705,20.215751202561705],[-97.36583220348223,20.21628298588132],[-97.36595868090194,20.216441880650336],[-97.36678731196605,20.217317296195517],[-97.36754364525433,20.217752753316574],[-97.36770909256813,20.218687774569503],[-97.36790682753372,20.21899557945119],[-97.36813151805251,20.21931185455827],[-97.36849852079308,20.2196119531377],[-97.36886098283895,20.21961399822868],[-97.37006817614258,20.21943449509689],[-97.37031323063013,20.219284355479147],[-97.37114152762297,20.218991352513626],[-97.37141702675768,20.21911952424017],[-97.37165271278712,20.219115507187553],[-97.37286623269694,20.22187343776301],[-97.37323521887907,20.223260366912655],[-97.37474334707065,20.224010761821546],[-97.37750202601603,20.222743992917003],[-97.3777957245918,20.22308854763918],[-97.37813812158299,20.226150211479535],[-97.37673163984107,20.231345929061376],[-97.37488377726345,20.232421052754376],[-97.3741667504799,20.235514963363016],[-97.37638021451608,20.237440580384543],[-97.37533027870268,20.24149921844804],[-97.3746173538874,20.242085104584305],[-97.37421132788586,20.24300633952629],[-97.3770868573414,20.245612027052687],[-97.37753417107427,20.24698259979988],[-97.37719255493863,20.24776041581663],[-97.3771493535649,20.248816247515492],[-97.38028881333855,20.249830074081842],[-97.38060506866685,20.24988161336222],[-97.3809695272015,20.2498697130211],[-97.38520183987862,20.248243736246366],[-97.38681111074692,20.247544322148713],[-97.38788452973154,20.247071285214986],[-97.39034812216931,20.246145451765244],[-97.3925677831154,20.24479775331804],[-97.39306051861001,20.244287379387345],[-97.39699468443115,20.24184705255624],[-97.40026768390038,20.23915137698333],[-97.40284666822737,20.23603919021565],[-97.4072830720832,20.23218518643165],[-97.409637101111,20.232712293880354],[-97.410272968772,20.234572336432336],[-97.41090224433361,20.235968873174954],[-97.41273977980131,20.237199324045548],[-97.41498563319914,20.23782654121817],[-97.42080589383295,20.242423111126698],[-97.42506247719535,20.24400368872955],[-97.42977988975957,20.243635120335227],[-97.43063534860022,20.243155468504995],[-97.43094517168572,20.24260868875922],[-97.43174212277967,20.2409228482947],[-97.43747769060514,20.240893421095166],[-97.43810074228412,20.241246125787654],[-97.44200946209963,20.244173939387395],[-97.44497339332969,20.246014248502945],[-97.44724034750652,20.242759445792217],[-97.44978164365477,20.240637217428002],[-97.45188491369646,20.238282330171785],[-97.45607348435459,20.235752589654453],[-97.45956275863631,20.2331034424966],[-97.46183822534442,20.228335309539546],[-97.46361477186036,20.226131390166472],[-97.46494151407626,20.22123605017356],[-97.46498542247923,20.2211588800169],[-97.46479346652279,20.217081928938796],[-97.4644568832498,20.21586514222389],[-97.46341342555905,20.212922550563576],[-97.46325665232223,20.209691906112596],[-97.46465274846122,20.206745364311814],[-97.46458399401871,20.205556201311026],[-97.46443184318304,20.20466978110801],[-97.463791047467,20.201631529142276],[-97.46272400098604,20.197692816374285],[-97.46274452269307,20.196196571686983],[-97.46269647719134,20.1959583020556],[-97.46241405735958,20.19491366830721],[-97.4624957710123,20.194103468136063],[-97.46233893871192,20.19324182786619],[-97.46322457171766,20.19081850017193],[-97.4634322878095,20.1891458636822],[-97.46272300133512,20.186018062110293],[-97.46283981992559,20.183886064587398],[-97.46505939911572,20.18021840730802],[-97.4674364586532,20.178583299688796],[-97.47041299718205,20.17798692049473],[-97.47538922883217,20.177693624665324],[-97.47759962378433,20.17752529935609],[-97.47959115970673,20.176734584618487],[-97.48548152180916,20.173318705115662],[-97.48644526468365,20.171014614277055],[-97.48650476615495,20.169290266485916],[-97.48617787531174,20.168697213667485],[-97.48673914216226,20.167530535663843],[-97.48692218225875,20.16693796841315],[-97.48713340388048,20.16633568900511],[-97.48728465252475,20.165742249698155],[-97.48760725387791,20.16488328100661],[-97.48882467127709,20.16456982264691],[-97.4915789012523,20.164016897139902],[-97.49321878490525,20.16302259852864],[-97.4945752067137,20.162341125930652],[-97.4964982010992,20.161037619083288],[-97.49714550834756,20.160663414994247],[-97.4983589747597,20.16005021678967],[-97.50019430729276,20.158977842001434],[-97.50227802761015,20.157972351948217],[-97.50511209633152,20.154377380733308],[-97.5055456316104,20.152969089804117],[-97.50485228741553,20.150217364179696],[-97.50456284304448,20.149176069080454],[-97.50349089436617,20.148634142554954],[-97.50200513140368,20.148473310575753],[-97.50005638039931,20.14824993337436],[-97.49967476207394,20.148178931129394],[-97.49945024604602,20.148208541908105],[-97.4982600982886,20.147911900517556],[-97.4966750004159,20.147497617870954],[-97.49580242982637,20.147063554651993],[-97.49478815500134,20.146193457390552],[-97.49455181957518,20.144959522849888],[-97.49455768750948,20.144347956573142],[-97.49489176706936,20.143970329698675],[-97.49574557273968,20.14375453502589],[-97.49657205415713,20.143777743777946],[-97.49769766481825,20.14334907309751],[-97.49875657702381,20.143302258366703],[-97.49916737184009,20.14331868642654],[-97.49975919021529,20.143026395407787],[-97.49969856061972,20.142048997609663],[-97.49940093878234,20.14155951623212],[-97.49904729207537,20.140864677217905],[-97.49839633774974,20.140152207878202],[-97.49770167219492,20.139875963662234],[-97.49737306855468,20.13986023379772],[-97.49679890909312,20.139738982511176],[-97.49472122029886,20.13784673840314],[-97.49483845588043,20.13734828181157],[-97.49534085602522,20.136881560118468],[-97.49660567256251,20.136059994866002],[-97.49821528648641,20.13426997375086],[-97.50086266825082,20.13244386536917],[-97.50223514393724,20.13215820303202],[-97.50703532093405,20.13086192101821],[-97.5095518764025,20.12991167386525],[-97.50982117364885,20.12916925637421],[-97.5102105878288,20.128238612371263],[-97.51033918693776,20.126872622743008],[-97.51209994389609,20.124967990197092],[-97.51279102192149,20.124914447048013],[-97.51582769550441,20.124403087462042],[-97.51654847426846,20.124274964066046],[-97.51815086487488,20.124104344787156],[-97.51862014796325,20.123883941071597],[-97.51884580585846,20.123674453710635],[-97.51904645407137,20.12340940955852],[-97.51979451995072,20.122884010989253],[-97.52028604962459,20.122586583230373],[-97.52182867321113,20.121966430110604],[-97.52469075287712,20.119874743193748],[-97.52542994538265,20.11867434341559],[-97.52589518731651,20.117828836651597],[-97.52636995700647,20.116414702362476],[-97.52739416627901,20.114878946160786],[-97.52848210893688,20.114788534020988],[-97.52899048090916,20.114733985735995],[-97.52954726051325,20.11487639904186],[-97.53120171542378,20.115591525634102],[-97.53244763326978,20.116009102853866],[-97.53324139077148,20.11621721562159],[-97.53553889701868,20.11679088498761],[-97.5391945450873,20.116230815713664],[-97.53959256410559,20.11600924325245],[-97.53996155333596,20.11495407029298],[-97.5401866948938,20.114613752256105],[-97.5408000272696,20.1138866949575],[-97.54098907488816,20.113597368351066],[-97.54109405029828,20.112495480902396],[-97.5411725778971,20.11138377544762],[-97.54163933502258,20.109721095504028],[-97.54190084680187,20.10844424180317],[-97.54215677733498,20.107823999190714],[-97.54265127882957,20.106848612942883],[-97.54445904750281,20.103890126119495],[-97.54655247726481,20.102233267795214],[-97.54856146198853,20.101048079520922],[-97.54954947192061,20.1007672683848],[-97.55251926831352,20.100695415100233],[-97.55326672431221,20.10130293140628],[-97.55366731162178,20.101810293395147],[-97.55403342482856,20.10286873442118],[-97.5544753473759,20.104618665122132],[-97.55558549724162,20.10637660495854],[-97.55608758348006,20.106807157972924],[-97.55805129289979,20.106910885630327],[-97.55882667524014,20.106209428815532],[-97.55950055141085,20.105023641530124],[-97.5594363143158,20.102552717749518],[-97.5591763274428,20.101803110810863],[-97.55889504717271,20.100842956773135],[-97.55865094659197,20.10052959934336],[-97.55868251467462,20.09981990368931],[-97.56003535607528,20.098227717379245],[-97.56044177081856,20.09794129259984],[-97.56105735045998,20.097482766041992],[-97.56147675347273,20.09664033587069],[-97.56174091727564,20.0941892333783],[-97.56186948311432,20.093434827130295],[-97.56216468930586,20.092311263069803],[-97.5623187495242,20.091910212404457],[-97.56289081392663,20.090932681869333],[-97.56344653809464,20.089977787021496],[-97.56245837406095,20.088843833438034],[-97.56103359777546,20.087569591147314],[-97.56129569585175,20.08602190221137],[-97.56175097205931,20.08557596935418],[-97.56515047978132,20.085151972746587],[-97.56580213556629,20.084734503904656],[-97.56621452070175,20.08432471102435],[-97.56691485253594,20.08385561125357],[-97.56758674500207,20.083442177566837],[-97.56988526151616,20.082128079553115],[-97.57085386377395,20.08191696032668],[-97.57220222323366,20.081969090770258],[-97.57285134178096,20.082258324893132],[-97.57347674552813,20.082729131762733],[-97.57474585113846,20.08375698972094],[-97.57604132414764,20.08464305851919],[-97.57686869003686,20.084626065066345],[-97.57753258549388,20.084202447953203],[-97.57799354315705,20.08219759022677],[-97.5780494418945,20.081559073451672],[-97.57851446195696,20.07974912835016],[-97.57892994559074,20.079433672333153],[-97.57910443226518,20.079373984129745],[-97.58077824905507,20.078941886893404],[-97.58140430975595,20.07894671116469],[-97.58359354264445,20.079323332352942],[-97.5850656559781,20.079546655453214],[-97.58602801477679,20.079329923601733],[-97.58715322240067,20.080322194232394],[-97.58747094454498,20.080548407567903],[-97.58751555378961,20.081164069111367],[-97.58756399212956,20.081353779141978],[-97.58771226411068,20.081591616188575],[-97.58842528441869,20.082000327234027],[-97.58931221067593,20.081819216726444],[-97.58961090002839,20.081760625321124],[-97.5900469797125,20.081599231679036],[-97.59123593032717,20.081713168932424],[-97.59136750627744,20.08209412355245],[-97.59181150092525,20.082580421826435],[-97.59195028871142,20.082983678245625],[-97.59195735467495,20.083551349522395],[-97.59334537607225,20.085313655719915],[-97.59348732305085,20.08874479722965],[-97.59357797997166,20.08953403530205],[-97.59386574630878,20.08993921221986],[-97.594960467144,20.090843301734196],[-97.59574567214588,20.09209081066183],[-97.59607188657753,20.09354308092395],[-97.59595081137184,20.094387998141713],[-97.59552207663648,20.094996785301987],[-97.59547853261716,20.095854409577555],[-97.59562437281159,20.09657888225371],[-97.5954484443983,20.096986728549325],[-97.59530388527088,20.097040716473316],[-97.59487203293645,20.097290272147916],[-97.59459565373498,20.09735906415324],[-97.59436900703844,20.097463994030306],[-97.59341876498081,20.09720769341402],[-97.5929180483364,20.0971327088522],[-97.59212033706797,20.096629371682354],[-97.59156269319448,20.09660445381087],[-97.59112548063314,20.096271113670298],[-97.59074519153211,20.096086886404862],[-97.59014532037281,20.096021964363786],[-97.58981651425881,20.09613883940625],[-97.58913139255321,20.09726813369133],[-97.58835112786517,20.097616874177618],[-97.58764228202341,20.097595301504384],[-97.58615881072501,20.096793446802053],[-97.58585169450134,20.0966662766711],[-97.5857223342964,20.096360383730826],[-97.58575252407132,20.095482346351275],[-97.58393546442971,20.095173665532627],[-97.58315013503358,20.09585266815475],[-97.58216327668919,20.095786442115354],[-97.58180124293926,20.09616399711024],[-97.58144172610423,20.096473581666658],[-97.58082619061338,20.09672819263875],[-97.58029308248774,20.096691061743627],[-97.58014844310753,20.096943715485622],[-97.58031095734623,20.097823870551622],[-97.58024773368362,20.09812392503187],[-97.5801637400046,20.098453685060406],[-97.58010724176262,20.09919983149166],[-97.58030049794877,20.099445288094614],[-97.58070844205315,20.09967201653859],[-97.5810383497057,20.10013803158705],[-97.580956276579,20.100616802622653],[-97.58059404804294,20.10076643793036],[-97.5795691850634,20.10108907279158],[-97.57919993673886,20.101539928191187],[-97.57875189058973,20.101772934546887],[-97.57865135261176,20.10251987385692],[-97.57888022493955,20.103200523424732],[-97.57948019137257,20.10340299064177],[-97.57981496219236,20.10389515518682],[-97.57988892635285,20.104260462216416],[-97.58026996049227,20.104847072267432],[-97.58080649018967,20.10532551724657],[-97.58145825187216,20.10587782137162],[-97.58185723832884,20.106848276689163],[-97.58106915668793,20.10753762991061],[-97.58130373232052,20.107825498515297],[-97.58215987174174,20.10864936911139],[-97.58258177556093,20.109294664279105],[-97.58281915680499,20.10853998493343],[-97.58385531907646,20.108762604520734],[-97.58420178333643,20.10878633201321],[-97.58526577115202,20.108720574488643],[-97.58606770667012,20.10862243157544],[-97.58741393385333,20.108585956745742],[-97.58726972824962,20.109278926970774],[-97.58779755224037,20.109895663533734],[-97.58759051921055,20.110357655084158],[-97.58753189373004,20.110929640033874],[-97.58767707920953,20.11156676848009],[-97.58750407095141,20.112345288469896],[-97.58937398286719,20.11270311923363],[-97.59026700507093,20.11276313070215],[-97.59107019108598,20.11308263901742],[-97.59209811453695,20.11358583050128],[-97.59236559209393,20.113916212463266],[-97.5926671515399,20.114757464714387],[-97.59358842966543,20.115421297071123],[-97.59436171162486,20.115354512031388],[-97.59560342361738,20.114744371805443],[-97.59807126567216,20.115274590077377],[-97.59853071588543,20.116374873065297],[-97.5995665405805,20.116562963494573],[-97.60008810331385,20.11677176475439],[-97.60101714313817,20.117454940312484],[-97.6020644404145,20.11835000975151],[-97.60254734516934,20.118948189258845],[-97.60270217125338,20.11961366118777],[-97.60280434484821,20.121013577578253],[-97.60276400547184,20.121430678662023],[-97.60257679539694,20.123187582569187],[-97.60315561155096,20.123928667488315],[-97.60364744529198,20.12723113420691],[-97.60506124619724,20.131721967592398],[-97.6045501646214,20.13325407124296],[-97.60386396152512,20.134241421188563],[-97.60391947952792,20.13559006705043],[-97.60294422107233,20.137568045906335],[-97.60298366986945,20.138532329748955],[-97.60098060266279,20.14129370430163],[-97.60165352710021,20.141472663543368],[-97.60221000095885,20.140956248693783],[-97.60313384414798,20.14050061741426],[-97.60383921621923,20.140477281732217],[-97.60584706748972,20.142788172563655],[-97.60633489265797,20.144801455478955],[-97.6066424523849,20.146135123192096],[-97.60671472009227,20.14698969848496],[-97.60692250710485,20.14756904733099],[-97.60671496313182,20.148777625420337],[-97.60678442547328,20.14980343429852],[-97.60822756356748,20.150297717721116],[-97.60838190727827,20.15164048505875],[-97.60792527125255,20.151734088420085],[-97.60514190493922,20.157166205615113],[-97.60565637329904,20.15774868772013],[-97.60448911328285,20.16687361180044],[-97.61639134332074,20.16899717731235],[-97.62098467947061,20.17186554951701],[-97.62159787034648,20.17232591126782],[-97.62116120643964,20.17313122019567],[-97.62126263237894,20.17370128899438],[-97.62144034300434,20.173836119300802],[-97.62195655709922,20.174406023661618],[-97.62249031394015,20.174299001687416],[-97.6246722577576,20.174183683410718],[-97.62522998052981,20.1747583654643],[-97.62562965459523,20.175282287517973],[-97.62758801867733,20.17682208257031],[-97.62814129746624,20.177908050530846],[-97.6286119014145,20.178914711244943],[-97.62883687764372,20.179408129678677],[-97.628897336011,20.179644599362007],[-97.62887169128811,20.180195066094427],[-97.62888766176286,20.180893130639447],[-97.62895236081613,20.181274190777913],[-97.62914940704462,20.181809889821295],[-97.63009963694196,20.182568959337118],[-97.6312440146512,20.183025841295375],[-97.63280295158665,20.183227015690875],[-97.63487625232466,20.182613511188208],[-97.63526040814224,20.18256622188386],[-97.63609943443169,20.182374950125393],[-97.63775084767593,20.182905958504705],[-97.63825247436324,20.182909128153085],[-97.63879864073334,20.18242168949496],[-97.63881193095682,20.181884447465222],[-97.63827981405802,20.179466690202048],[-97.63815517552598,20.17802330890669],[-97.63815824348433,20.17766933307081],[-97.63921066752096,20.17649587164823],[-97.63978823215973,20.176539932443063],[-97.64017078162198,20.17665717463626],[-97.6407737791219,20.17682562791782],[-97.64165291038739,20.17710340376135],[-97.64198849730474,20.177321433570683],[-97.64277822623092,20.178021345628395],[-97.64322959184335,20.1783473329603],[-97.64364914021371,20.178338314759912],[-97.64484801565004,20.177378970090615],[-97.64517938515797,20.176410112491283],[-97.64522748726375,20.175515262275496],[-97.64634771933066,20.171330278147366],[-97.64561302487215,20.17023340221681],[-97.64644217918305,20.168002706187337],[-97.6476582768268,20.16697850233902],[-97.64808908362619,20.166891131669956],[-97.6485576610338,20.166761752532466],[-97.64910002091972,20.166706911333677],[-97.64941296070339,20.16666997898068],[-97.64985212089533,20.166496343959295],[-97.6499647634015,20.16639286130703],[-97.65029059581661,20.166153337817775],[-97.6512578745473,20.165405774190447],[-97.65149099108032,20.16495522525878],[-97.6515162136028,20.16444408492623],[-97.65244076536709,20.163566153376337],[-97.65354645539577,20.163436935387324],[-97.65472828276529,20.164153964966488],[-97.65531000984902,20.164824631431827],[-97.6557671898521,20.165537077181114],[-97.65603962495516,20.166603226114376],[-97.65608212770019,20.16691333791408],[-97.656190988336,20.16748053096319],[-97.6562736643001,20.167677307418103],[-97.65649567691878,20.168064364613258],[-97.65753365518407,20.168737818621025],[-97.65778331777551,20.16879303228825],[-97.65857338519214,20.16870426273391],[-97.65918096018981,20.168335216337596],[-97.66023272453788,20.16828001253606],[-97.66065833125066,20.168498143527586],[-97.66265704904879,20.16838575474003],[-97.66288354287622,20.168814911404354],[-97.66474390202552,20.168554464018257],[-97.66520490501898,20.168262954710883],[-97.66685471481179,20.168085456206825],[-97.66766428885194,20.167188502942622],[-97.66881422087727,20.167103265361675],[-97.66952874110473,20.16845423750277],[-97.67035031713777,20.169075757470353],[-97.67056294071023,20.168921376204707],[-97.67085263345689,20.16843396498757],[-97.6710058824583,20.168197653463608],[-97.67168466037742,20.168434309367],[-97.67194446616406,20.168414551949468],[-97.67245039593729,20.168323193373794],[-97.67314957092958,20.168122362581812],[-97.67354347976311,20.168007282565725],[-97.6741885074257,20.167578930484467],[-97.6744207087371,20.16750783138201],[-97.67626476692709,20.166954504107196],[-97.67697198633562,20.16663587807392],[-97.67784455635444,20.165951099957],[-97.67894785853508,20.16560470841489],[-97.67987891288044,20.165385509290616],[-97.6805756919403,20.16514790250409],[-97.68093593265553,20.165150599448623],[-97.6813439658518,20.165590737775688],[-97.68159904014851,20.165859751779806],[-97.68213534130933,20.166272518204437],[-97.68442029949466,20.165833118155263],[-97.6854404150863,20.166011054487058],[-97.68656697571464,20.165842945890518],[-97.68709367230775,20.165917961455477],[-97.6875123982835,20.16641234648796],[-97.68785890071354,20.166877201140323],[-97.68837491529456,20.167022186845372],[-97.68899341160346,20.16693594214189],[-97.68935085371663,20.166782583007944],[-97.68964120014141,20.166918536250762],[-97.68969082340271,20.16705558355244],[-97.68986892824506,20.167360472403345],[-97.68993315582975,20.1675813338656],[-97.69055960277649,20.167604080751914],[-97.69093012635136,20.16755424606356],[-97.6913418275571,20.167482167533933],[-97.69147944701797,20.168456606112784],[-97.69302459278168,20.169379527773685],[-97.69326913448919,20.170563199035996],[-97.69258059473572,20.172746863111513],[-97.69389388260055,20.17353726095331],[-97.69351646335485,20.174267646637134],[-97.6940986458543,20.17497547717352],[-97.69527976042366,20.175686229464873],[-97.6953237291898,20.17642448364711],[-97.69592876301442,20.17689583999021],[-97.69657231222726,20.177107372676005],[-97.69683682421214,20.177549877318143],[-97.69696340661517,20.17773366286707],[-97.69700324326578,20.1779471556477],[-97.69701367321807,20.178914133793228],[-97.697295596863,20.179950683719824],[-97.69795046425997,20.181081406321255],[-97.6983805311171,20.181877033387195],[-97.69852929108055,20.182127581136285],[-97.69992355170245,20.182445538091315],[-97.70316746877614,20.182156564476998],[-97.70474322674181,20.18236675682141],[-97.70511261228847,20.182318765584114],[-97.70694885163937,20.182113581319527],[-97.70731796038007,20.181561955956568],[-97.70756191802269,20.18158099680261],[-97.70782296934743,20.182142763979527],[-97.70785169435925,20.18242320378124],[-97.7084824196744,20.182732179837387],[-97.70944973401254,20.18261475101764],[-97.71018862301071,20.18292999720876],[-97.71091979954122,20.18294327171344],[-97.7116682120423,20.183943850748335],[-97.71210442243142,20.184459773633932],[-97.712472367479,20.184582002430602],[-97.71289106870415,20.184618269260852],[-97.71322325601932,20.184441967460486],[-97.71402973869533,20.18483923304092],[-97.71383122838739,20.185230869856866],[-97.71387660546054,20.185822300861503],[-97.71405228495797,20.18614820518087],[-97.71396146802505,20.187122969941868],[-97.71464962868669,20.18781198800525],[-97.71646221365353,20.1878066563649],[-97.71702849169486,20.18795681715926],[-97.7171177753865,20.18807915142554],[-97.71927521961004,20.187525031721634],[-97.71987075792373,20.187531702379772],[-97.72007628664124,20.187851839594146],[-97.7202269202279,20.188566396672],[-97.72118120562101,20.188830122324873],[-97.72351956519464,20.187619191991416],[-97.72456185071002,20.18897056142589],[-97.72487298923528,20.189009730741873],[-97.72502557498109,20.188851839664437],[-97.72506651909953,20.18859616091055],[-97.72522528399202,20.18776883558172],[-97.72573138301675,20.18720894846126],[-97.72575915426677,20.186856591923913],[-97.72553820929494,20.186455430113995],[-97.724946654142,20.185675517691152],[-97.7246078576203,20.184450865440795],[-97.72486287906696,20.183724093730632],[-97.72491384723565,20.183583438490245],[-97.72496634452864,20.18325476681497],[-97.72546551002455,20.183140866013844],[-97.72731326327624,20.18261366241819],[-97.72793848497736,20.182312638941482],[-97.72871089150772,20.182294718760375],[-97.72865687763203,20.182811417120945],[-97.7290518248966,20.183260844078802],[-97.73025532392063,20.18230587659258],[-97.73065788643538,20.18181520750585],[-97.73241555633507,20.182292546758788],[-97.73335318421539,20.183660266222546],[-97.73339097297321,20.185569113751626],[-97.7345626045294,20.187020984422077],[-97.73517401886602,20.187885400322727],[-97.73548512213517,20.188421425274953],[-97.73553178765951,20.188588610086015],[-97.7357228934809,20.189166618168315],[-97.73591381378588,20.18943441120672],[-97.73621720582423,20.18991444806892],[-97.73680975186528,20.189867077252984],[-97.73762746803851,20.189765048079266],[-97.73827899637837,20.18950170801594],[-97.73925651418966,20.189249021516787],[-97.73957203876057,20.189711670800648],[-97.73946132768958,20.190037037500304],[-97.73923195911135,20.190724451190192],[-97.7397136480559,20.191119021046802],[-97.74032238823645,20.191133367463976],[-97.74065243180087,20.19128493444788],[-97.74114317493462,20.19178679579005],[-97.74127005499275,20.191917056045952],[-97.74145962741937,20.192220964415696],[-97.74114284017406,20.193387641748245],[-97.74040962044222,20.19472210868804],[-97.73886519271576,20.197790033051433],[-97.73889505441917,20.200548356121146],[-97.73820961935496,20.20216014068137],[-97.73670390826499,20.202305109937697],[-97.73391284585375,20.2023790356061],[-97.73306218202958,20.202819476033028],[-97.73255744076363,20.20361496555404],[-97.73077905399538,20.20477731226856],[-97.73066320302496,20.20677429336439],[-97.73066944929747,20.209077710943575],[-97.7311999816514,20.210938479080824],[-97.73147790020812,20.211371896414676],[-97.7323660575824,20.21247341343377],[-97.73294434473155,20.212743072444482],[-97.73314385551168,20.214171472739054],[-97.73348933551506,20.21495381866646],[-97.7336568521082,20.21625994367514],[-97.7328576546231,20.21937358599814],[-97.73370113385221,20.221580314718096],[-97.73396082699884,20.22209655499705],[-97.7343265896418,20.22254719015342],[-97.73448046250104,20.223095860012506],[-97.73342492292937,20.22527846486969],[-97.73334676651638,20.226240274370866],[-97.73290247750015,20.22728951755778],[-97.73321614695686,20.227656821594394],[-97.73351479180201,20.227708749431713],[-97.73430717118669,20.227614910532054],[-97.73550614420373,20.227275107778837],[-97.73624641803252,20.227097918574202],[-97.73731864425758,20.22877974926257],[-97.73699422575424,20.23000888561529],[-97.73709916667917,20.230174587854265],[-97.73742666916411,20.230493612299483],[-97.73694338235265,20.23192318520381],[-97.73656844318361,20.232786686876636],[-97.73621272080476,20.23326531656045],[-97.73555836314853,20.233692004293232],[-97.73513550212073,20.23377192296209],[-97.73478153080003,20.234034848899114],[-97.73460279283609,20.23438200363961],[-97.73458076908514,20.23492940482231],[-97.73464939075137,20.235145604328068],[-97.73502930008408,20.236022898071838],[-97.73513807864845,20.237799092408693],[-97.7352053595547,20.238181205481624],[-97.73528847567752,20.23877913730996],[-97.73540987673675,20.23899571698928],[-97.73548819475059,20.239190722221906],[-97.73547193741967,20.23930983455506],[-97.73532343213088,20.240110399869707],[-97.7354851452273,20.240392542941265],[-97.73553469190091,20.24049905094421],[-97.73565832952647,20.24070794460164],[-97.73570767336952,20.241157411104382],[-97.73545970255435,20.241563758607754],[-97.73529078883274,20.241764871460532],[-97.73511192162567,20.24239194184014],[-97.73528648599273,20.242714863470212],[-97.73549446212849,20.243394645992396],[-97.73612623339625,20.243911960559217],[-97.73627559496373,20.24398967389169],[-97.73651236869296,20.24407508475514],[-97.73650686791945,20.24430157724197],[-97.73652173296676,20.245515466842903],[-97.73682598680631,20.245950668566593],[-97.73729242572517,20.246328225427078],[-97.73841100885824,20.246611950660963],[-97.73858439578214,20.246928456408227],[-97.7385467978707,20.247226848174137],[-97.73822879069473,20.247390484162622],[-97.73789384767412,20.247471040177288],[-97.73760261780023,20.24785141689955],[-97.73802818675222,20.248223183508003],[-97.73869175622917,20.248565076728937],[-97.73870759438478,20.24868132416566],[-97.73870896542564,20.248915818647845],[-97.73857810002045,20.249333904566583],[-97.73843561267933,20.2505068907102],[-97.73863746967305,20.251089409737688],[-97.73867414090887,20.251470970329535],[-97.73871856389621,20.25168136082226],[-97.73889280073973,20.251996159708597],[-97.73906450142772,20.25254493269125],[-97.73899983961883,20.253206462388732],[-97.7394810325668,20.25333857359908],[-97.74103603872345,20.253729014889416],[-97.7415373894575,20.254229316102283],[-97.74181607586809,20.254579759478645],[-97.742323086981,20.25498162156606],[-97.74322821303122,20.256199374055484],[-97.74375846773643,20.25687929247573],[-97.74421350854385,20.25718122306239],[-97.74438838569216,20.257315214381435],[-97.74449021693044,20.25778053790515],[-97.7448350261352,20.258662414138144],[-97.74539617549772,20.25889872378025],[-97.74602889261706,20.25898621660673],[-97.74708089229136,20.25924399468613],[-97.74752390104754,20.259467112404025],[-97.74728395726419,20.260455334041524],[-97.74730583299379,20.262114751507568],[-97.7477235951103,20.2627878964484],[-97.74766350399653,20.26340710960153],[-97.74920298163073,20.2625352643488],[-97.74992727518838,20.26200842129998],[-97.75028980404022,20.261281024289815],[-97.75124118092123,20.260120838982857],[-97.7543060322526,20.269691947655588],[-97.75704692651402,20.278307503656322],[-97.75720299035083,20.27923460552836],[-97.75365814117316,20.280290115051173],[-97.74875278642537,20.27879873978685],[-97.74822826987713,20.276904824532153],[-97.74539318142502,20.274886472327694],[-97.74089498596084,20.274572724531595],[-97.73732115070527,20.2761374507852],[-97.73584125112353,20.277900385543944],[-97.7307849070051,20.28112236963733],[-97.72234135427578,20.284142886438985],[-97.71544250569383,20.28396583237884],[-97.71297471634614,20.28592718925063],[-97.70840563798595,20.28529323145517],[-97.70588872909155,20.28810712304886],[-97.7068589094277,20.290685679814317],[-97.70703537634489,20.299186910117328],[-97.70511921152882,20.30274421415163],[-97.70300440275963,20.30294014267122],[-97.69967753406286,20.30130016377808],[-97.69504443997846,20.300436832446508],[-97.69164813686098,20.301038577345253],[-97.69125711007268,20.302243581965058],[-97.69052586458196,20.30256133899553],[-97.68867802724122,20.303153561259478],[-97.68811784780735,20.303512992922037],[-97.68446407406532,20.302553763136643],[-97.68367324361759,20.302518776024954],[-97.68312225806369,20.302549241689633],[-97.68262053826794,20.302329745169118],[-97.68237879095318,20.30219054524855],[-97.68139761453688,20.30243241366236],[-97.68097059093691,20.303213745014887],[-97.68022912207397,20.30368972218082],[-97.67979991030228,20.30499884771092],[-97.67906174518424,20.304858652707594],[-97.67801041829898,20.305740903477613],[-97.67727299661226,20.30581458589387],[-97.67703845019349,20.305835958684327],[-97.67676822430445,20.30609554651113],[-97.67687069098992,20.306557981444882],[-97.6768056416712,20.307003168496863],[-97.67707069072821,20.307358045762214],[-97.6768100186876,20.30778874061906],[-97.67638631827577,20.30783736399053],[-97.67631120905742,20.308371609500227],[-97.67638455187927,20.308933284509692],[-97.67697047478157,20.310103463725056],[-97.6773781684131,20.310252744402874],[-97.67759169724684,20.31115396551462],[-97.67732689919063,20.312169683206264],[-97.67730816753976,20.312978699483722],[-97.67765039389786,20.313260411054387],[-97.67835738250346,20.313874969666756],[-97.67858280229626,20.313673258501296],[-97.67868858745828,20.31345528308492],[-97.67958157866178,20.3131311614718],[-97.68107425399285,20.312639392763913],[-97.68171373719372,20.312989944789365],[-97.6819231319954,20.313028207798823],[-97.68237400688969,20.313384188733153],[-97.68322834131618,20.313816075199156],[-97.6834167602625,20.31483582553858],[-97.68354082299743,20.31560686821456],[-97.68363980200468,20.31601941503061],[-97.6835771322302,20.316285693500447],[-97.68363887513925,20.316569852288012],[-97.68402304325662,20.318016590892285],[-97.68540528690835,20.31913943188954],[-97.68588126647103,20.319315098785864],[-97.68714753022266,20.319033375093284],[-97.68946381709532,20.31915722829939],[-97.6895082094386,20.32125799114806],[-97.68407491747416,20.32150088117828],[-97.68316763943233,20.32328523420665],[-97.68419706657613,20.325659127843835],[-97.67988137462316,20.32811361277362],[-97.67470799653722,20.33494781347889],[-97.67312511946221,20.336607287892605],[-97.67472601472718,20.33782085280143],[-97.67525663735137,20.337980893986924],[-97.67689866948064,20.33919122548184],[-97.67440128322329,20.3472364855146],[-97.67934493797856,20.349917877061444],[-97.68105055183855,20.34490125725563],[-97.6836531661612,20.345204383267912],[-97.68640023347422,20.340858143703088],[-97.68848572868518,20.337206326651994],[-97.69020508906692,20.336905356535283],[-97.68973345062244,20.337027950398863],[-97.69008892771438,20.33360931868708],[-97.69462477217849,20.335162414344666],[-97.69612929932669,20.32886589755566],[-97.69623793613727,20.3287031807194],[-97.69724634374438,20.32693288182878],[-97.6972276007516,20.326536570330006],[-97.69563378169062,20.32561355293558],[-97.69529871615015,20.325518816738338],[-97.69672300597949,20.321598316486245],[-97.69634344858014,20.321332576705856],[-97.69650524172641,20.320662151918384],[-97.70000863078639,20.320751106764874],[-97.70068949636106,20.319919023144905],[-97.7008619422096,20.323456712036773],[-97.70352948824097,20.32467260738207],[-97.70250901436367,20.32554012013884],[-97.71006303791978,20.32785949408401],[-97.7131316080272,20.329432001459338],[-97.71357062379832,20.329843862961923],[-97.71957082951263,20.33432194008276],[-97.719994647161,20.3348182291154],[-97.72516702586722,20.33887025322025],[-97.72760897070475,20.340587823000703],[-97.72798743276593,20.34117200439107],[-97.7305635712313,20.34359018826501],[-97.73067094269567,20.343936706296347],[-97.73408556943605,20.347263224601647],[-97.73751845789798,20.349265764556264],[-97.73788925128639,20.349495478873905],[-97.73895502522129,20.350329909665902],[-97.74002025578255,20.350467626035595],[-97.74260280190964,20.35120556780464],[-97.74199572879735,20.35291084109042],[-97.74291025599007,20.353391413310305],[-97.7443536412951,20.356444076724586],[-97.74422211752909,20.356636271487275],[-97.74345781388678,20.36004509880746],[-97.7431822094523,20.360625846690652],[-97.74401725596249,20.362054146039327],[-97.74493329961086,20.3622044870458],[-97.74566523694153,20.362345679466387],[-97.7455671217769,20.362747325122484],[-97.74534310942204,20.363073545955274],[-97.74499356065724,20.363279658964927],[-97.7449293415346,20.363398410691786],[-97.74470518530512,20.363753110832704],[-97.74430707034838,20.36428106949012],[-97.74409093323442,20.36586366816141],[-97.74421724604645,20.36739974004479],[-97.74374747378374,20.367928543640346],[-97.74722949242408,20.37055064790013],[-97.74739525387116,20.371565147456863],[-97.7472673337466,20.37203506377284],[-97.74710270759522,20.372838565890106],[-97.7474865681732,20.373358780725596],[-97.74805455878999,20.37442497276038],[-97.74727549963643,20.374940936681526],[-97.74669282475645,20.37463871491053],[-97.74610757425648,20.374454158254196],[-97.74596115958099,20.374959760510592],[-97.74453229647298,20.375368809526776],[-97.74374430352077,20.375716953194626],[-97.74402332471897,20.376143787287504],[-97.7432878089341,20.376920500368726],[-97.7438552829098,20.378892278895478],[-97.74437853403651,20.379275558830955],[-97.74518880049754,20.38020730525318],[-97.74561976310946,20.379918587822033],[-97.74597592437635,20.378838088371253],[-97.74725455885186,20.378661272906754],[-97.74791362841347,20.378566316978493],[-97.74894833322782,20.378540505126807],[-97.75383333154195,20.37984007866322],[-97.75439925895381,20.379898294601787],[-97.75495819955898,20.38023014787376],[-97.75575992645071,20.379410658631798],[-97.75668940112502,20.37902725750547],[-97.75749808643394,20.378958725425377],[-97.75816866067015,20.378907784080354],[-97.75847896576488,20.378868471768044],[-97.75928297276602,20.37918228527974],[-97.76062237504391,20.379595688783866],[-97.7621648132154,20.380069603779134],[-97.76303345416744,20.3803216753131],[-97.76379755867185,20.38052066738038],[-97.76448819658731,20.380580815102178],[-97.76513932613466,20.38087650046407],[-97.7656417347705,20.381228351769835],[-97.76520639729705,20.381700242473755],[-97.76525779172312,20.382239987843093],[-97.76518046615007,20.38269774834174],[-97.76552538057587,20.38370258831776],[-97.7654809401854,20.384322984707865],[-97.7652248612066,20.38466540135272],[-97.76509109509078,20.384787051486626],[-97.76452659756376,20.385217028504712],[-97.76414328957424,20.385799423271067],[-97.76398661563962,20.38670757788549],[-97.76376217603615,20.387011752298633],[-97.76328971302354,20.387285191757826],[-97.76287099044782,20.38807225058872],[-97.76252384350613,20.38865675713447],[-97.76289181242834,20.39072111139302],[-97.7635434899974,20.39171107017995],[-97.76358801423163,20.393204572759544],[-97.7633361281346,20.39417038112117],[-97.76259698654763,20.39614726319718],[-97.76259182436746,20.396737827818868],[-97.76180317369068,20.398655748093233],[-97.76144139547768,20.398707349248014],[-97.76106020462646,20.398667944458055],[-97.7598655950606,20.3985403396822],[-97.75748807653378,20.399704647498083],[-97.75723062814154,20.400741570381626],[-97.75741432798606,20.401328976131083],[-97.75753829799987,20.401772224150704],[-97.75791020117106,20.402664090529697],[-97.75803614183508,20.402902555877063],[-97.75816014736773,20.403109589684732],[-97.75717236490402,20.404298432924065],[-97.75692937745384,20.404427326168047],[-97.75669015770097,20.40447950994411],[-97.75649920835565,20.404560304712845],[-97.75603244522449,20.404867982353892],[-97.75572190161438,20.405376245723062],[-97.75553140307068,20.406509566069474],[-97.75537816360645,20.40744452479055],[-97.75531513682523,20.407987682891473],[-97.7552543074994,20.408679035391856],[-97.75534588440473,20.410070423258674],[-97.75582525548481,20.412315781127006],[-97.75569537040496,20.413164671677407],[-97.75392306120386,20.413410986376505],[-97.75352025795195,20.413509796707785],[-97.75301124227667,20.413730730302234],[-97.75235174859017,20.41384143170427],[-97.75187527098416,20.41409218274231],[-97.75134820734041,20.414298090585476],[-97.7509524617069,20.414564900950893],[-97.75085921877417,20.415044473117916],[-97.75123703900249,20.416331310234284],[-97.75099160246731,20.41872575869189],[-97.75044146791589,20.419867573477916],[-97.74921451674396,20.421309724284697],[-97.74849950684057,20.42168958341074],[-97.74664065561836,20.422434509111383],[-97.74605060518633,20.423808489791043],[-97.7458653574235,20.42492740722315],[-97.74585426082501,20.426296530772788],[-97.74549618586872,20.426999296170493],[-97.74412241102578,20.428026670709528],[-97.7434011906326,20.43005451846892],[-97.74304209582635,20.430881746194757],[-97.73759390802991,20.440311617013492],[-97.73667298333811,20.440701127062425],[-97.73521409756859,20.441410873006248],[-97.73482789090849,20.441876292522466],[-97.73455493085572,20.442522616061694],[-97.73431990668945,20.44320522788479],[-97.73422897848315,20.444969409351643],[-97.73407307058432,20.445328446191922],[-97.73479410745193,20.4483716228533],[-97.73402100520491,20.451752404653803],[-97.73349480672965,20.45243675506248],[-97.72874317813034,20.457316908372206],[-97.7258302543305,20.458228921565706],[-97.7231088354701,20.457534060485386],[-97.72105474008731,20.453648314454654],[-97.7203290756334,20.45353493049572],[-97.71814642483076,20.453879027685616],[-97.7158818946101,20.454870796342334],[-97.70918749335863,20.4551093760723],[-97.7078919684418,20.453100190474345],[-97.70784236825648,20.451601903933124],[-97.70790165201822,20.449092784727895],[-97.70590384327943,20.447194471631292],[-97.70453715788233,20.44685732230829],[-97.70224622486319,20.446221164753183],[-97.70148510316073,20.445783284788888],[-97.69955528936964,20.44335574547341],[-97.69886964742625,20.441741539068744],[-97.69878070165657,20.438679445950697],[-97.69912082412338,20.4346120811324],[-97.6973811380854,20.43233001071178],[-97.69637712650075,20.431724685957533],[-97.69606341613667,20.431429293518647],[-97.69256642059395,20.430310195241475],[-97.68908242552948,20.427981725727932],[-97.68806823656354,20.42743292134554],[-97.6868827552774,20.42715657855973],[-97.68554946225572,20.42691121276505],[-97.68406308507105,20.42629782932073],[-97.68198677036685,20.42539056878877],[-97.68073542282121,20.42550230886627],[-97.6796694457505,20.425083847944506],[-97.67658300556076,20.42163665557473],[-97.67492606797902,20.41885281434628],[-97.67423714288498,20.418792361283636],[-97.67327983633407,20.418965150565327],[-97.67286269616721,20.418565794775134],[-97.67263763882164,20.418059848118673],[-97.67304944299491,20.415265097224506],[-97.67401567444398,20.412230269660995],[-97.67207520053495,20.408529399697272],[-97.6691576683566,20.40835219567589],[-97.66717984624296,20.408324591101234],[-97.66670354142178,20.4083092039819],[-97.6657549178961,20.408215397543245],[-97.66489482020205,20.40860009623549],[-97.66469591560286,20.409498988724295],[-97.66459583612766,20.410300157348388],[-97.66365609155974,20.41075601811741],[-97.6633311472217,20.411150521274863],[-97.66046961045248,20.412534802784194],[-97.65938001328732,20.41235012364217],[-97.65775042953271,20.412225765739663],[-97.65698793167581,20.411978655421137],[-97.65673621207867,20.411792469304487],[-97.65623780409896,20.41111779726839],[-97.65582801137106,20.41044265347813],[-97.6549774255243,20.40992819000985],[-97.65379828642847,20.410078232457465],[-97.65290506788955,20.41026352372546],[-97.65216046218688,20.41063704732312],[-97.65152252856024,20.41083431134888],[-97.64960278769848,20.410979748957857],[-97.64786726221223,20.410346434986423],[-97.64713032513635,20.409352577573202],[-97.6468528678725,20.409033762516685],[-97.6458830305425,20.408366993268373],[-97.64391059945319,20.409027051249268],[-97.64321323946416,20.410021683396735],[-97.64223615448458,20.410867726722813],[-97.6416625660869,20.41141527228899],[-97.6411159125064,20.411931247419375],[-97.64108504235293,20.41364390117667],[-97.64157799452107,20.41461701706214],[-97.64169205755434,20.41551480952154],[-97.64126498007488,20.416282091745813],[-97.6398080237712,20.417195578574194],[-97.63843393856814,20.41747431865872],[-97.6375541144767,20.417905560260238],[-97.63742237198858,20.418517111257813],[-97.63655921706237,20.422592789761495],[-97.63647366397811,20.424254074043745],[-97.63684622994793,20.4266829757143],[-97.63696451459737,20.428239394911884],[-97.63695254427489,20.43066039180229],[-97.63546816609875,20.432354090791364],[-97.63602108035963,20.43447202904406],[-97.63616382765895,20.43488428145065],[-97.63646514715708,20.435453624761863],[-97.63689133453636,20.436338356460396],[-97.63743442234932,20.43655387930886],[-97.64072373286882,20.44227166312595],[-97.637744876142,20.447594783260342],[-97.63619789117928,20.449894613742288],[-97.63615924459799,20.45088111009443],[-97.63609315924992,20.451585458130353],[-97.63536507210472,20.452185561289696],[-97.63252123795121,20.45163008299164],[-97.63097462081436,20.45062368082864],[-97.63003702599087,20.45023785088324],[-97.62952963179026,20.45011257357595],[-97.62904418007332,20.4500723936531],[-97.62803242048165,20.450292226168813],[-97.62610152566276,20.452445198403097],[-97.62546661406117,20.45348782535922],[-97.62539571242053,20.454727821223116],[-97.62527314110008,20.45666651208694],[-97.6233562436139,20.457795723773586],[-97.62259896390793,20.457657508764385],[-97.61991013578006,20.45539019355482],[-97.61937620870964,20.455313491079153],[-97.61780838281294,20.455379938405372],[-97.6144368747344,20.456223619349544],[-97.61455145217172,20.457295790982414],[-97.61161472489545,20.459508414518893],[-97.60963816726462,20.460714157294944],[-97.60815450372291,20.46128112378682],[-97.60413353074318,20.461595873553165],[-97.60276322066727,20.460985791990822],[-97.60081891913381,20.461116029825575],[-97.5985375960891,20.46227947391492],[-97.59701003346322,20.463614280425702],[-97.59642164041071,20.464084127708247],[-97.59542355625717,20.465672796874912],[-97.59450705533845,20.466919438938817],[-97.59449840718594,20.46694343245872],[-97.59395524458154,20.46749403069947],[-97.59367400877312,20.4678989696215],[-97.59306873549656,20.468368573693397],[-97.59262886117318,20.468585887814072],[-97.58984920850367,20.470640888404546],[-97.58798710304012,20.47161306191373],[-97.58717004951939,20.472085585107095],[-97.58627018658001,20.472507063320165],[-97.58598263995981,20.473263433332818],[-97.58529337339803,20.476513811704592],[-97.58358091145021,20.47920247200699],[-97.5809000512308,20.48357947714385],[-97.58039244172812,20.484218383840982],[-97.57897292642832,20.485429062355593],[-97.57825624250489,20.485673129093755],[-97.57669527473718,20.48691710807509],[-97.57781002723885,20.490002488733808],[-97.57604554759212,20.49090017152787],[-97.57101450015824,20.49074067324659],[-97.5697774801938,20.490840104781057],[-97.56656367417003,20.49040026403327],[-97.5656399927679,20.490148993838716],[-97.56354156537026,20.48994092102714],[-97.55983145194136,20.48927378086057],[-97.55883191532547,20.48807736714241],[-97.55711690058928,20.48571785040116],[-97.55605712651345,20.484690027543536],[-97.55366347274133,20.486081115079003],[-97.54784209029219,20.485687029472217],[-97.54674411532773,20.484988511097185],[-97.5449358296778,20.484572566015743],[-97.54331152314506,20.484742701211815],[-97.54220876438546,20.48783907545328],[-97.54216447981923,20.487775380909056],[-97.54180214900106,20.488513469022507],[-97.54104333325387,20.489711621621893],[-97.545157527529,20.49509658238503],[-97.54539152134521,20.495485742881783],[-97.5464191408596,20.497461320763136],[-97.54784548179339,20.500001177709976],[-97.54825413370037,20.500755160383733],[-97.55207794676755,20.507361637290956],[-97.55357083502855,20.504539849048456],[-97.55475891928904,20.506059418329187],[-97.5558600797674,20.50936623354812],[-97.55494825515734,20.51039566334839],[-97.5571591456856,20.510433183208875],[-97.5607191508642,20.514732213263642],[-97.5621193608539,20.516352238315733],[-97.56205551276906,20.51696115839877],[-97.56849906953533,20.526285216289864],[-97.570534311946,20.52935982292655],[-97.57271700088563,20.532284438534532],[-97.57303106468152,20.53230660970098],[-97.57431790476028,20.532296513608458],[-97.57463095571148,20.532290246161494],[-97.57504210429289,20.532875471376258],[-97.57595081693421,20.53415302997223],[-97.57715905687172,20.53583424183529],[-97.57881739026516,20.538248944338307],[-97.57499228301697,20.543343212251784],[-97.57855397409969,20.545004808512147],[-97.58035646777682,20.547820265279086],[-97.58353085574771,20.548298299383816],[-97.58318583561339,20.551018948514013],[-97.58324581819647,20.551646485807623],[-97.5840658362714,20.55195408976641],[-97.58436263000794,20.551919817854525],[-97.58483324034734,20.552286036553994],[-97.58434608161116,20.552577069277277],[-97.58486699832588,20.552847400436292],[-97.5855342366109,20.55318926081759],[-97.58656150816046,20.554852850753434],[-97.58719667841427,20.555032420509974],[-97.58736348443944,20.55531276840918],[-97.58788156263171,20.555768689550575],[-97.58877270681734,20.55621981259617],[-97.58899512970021,20.556232802024738],[-97.5893218862455,20.55646132131602],[-97.58934693858112,20.556667912783894],[-97.58925243147905,20.557199545812864],[-97.58771536223247,20.558112282358195],[-97.58823259119083,20.558559255271803],[-97.5889277156561,20.55874528542256],[-97.58979194793801,20.559320019329277],[-97.58906475563145,20.560151102546456],[-97.58864784710067,20.56063262673905],[-97.58860707733544,20.56111626961217],[-97.58923192183101,20.560879453539997],[-97.58985662786193,20.559966516504517],[-97.59003917245178,20.559673066191237],[-97.59001796088666,20.55931119396962],[-97.58995277205793,20.556149684943875],[-97.59234523728952,20.55674633444221],[-97.59284076155842,20.556877474789474],[-97.5949250628704,20.5573390483724],[-97.59592630088974,20.557555308187773],[-97.59834203796225,20.55822099146303],[-97.60264526809937,20.559284382186945],[-97.60790121333514,20.56263218289223],[-97.60857335378802,20.563008386846604],[-97.60975876033916,20.563714313640276],[-97.62375398524898,20.563576692318975],[-97.62404429149194,20.56324078634219],[-97.62502003943126,20.561379152492634],[-97.62508928465274,20.56075427738631],[-97.62601291632387,20.55833944602847],[-97.62751498132286,20.557967411280742],[-97.62806446049007,20.557339610573194],[-97.62884821623902,20.55703257447618],[-97.62873821068189,20.556341701221243],[-97.62945858339856,20.55576750702096],[-97.62984338158958,20.55639557730649],[-97.62982115952957,20.556819639624734],[-97.63034622679345,20.55681796900592],[-97.63085662165025,20.55641281654482],[-97.63144201941066,20.55634238969202],[-97.6316559858264,20.556193982421007],[-97.63234970719645,20.55589925736524],[-97.63269500281666,20.555926998196412],[-97.63344542879736,20.555232444272008],[-97.6344055978912,20.55486475923277],[-97.63467159621433,20.55484184107155],[-97.63475989221985,20.555089503401803],[-97.63523182621049,20.555210088912304],[-97.63609487649939,20.555313871605676],[-97.63664919407398,20.554621324206664],[-97.63666451276754,20.55371173041584],[-97.63718231632947,20.5538314595301],[-97.63775471999048,20.55445069650858],[-97.63769939233435,20.555492088970993],[-97.63829745881122,20.555484949044114],[-97.63751478531037,20.556939759558134],[-97.63745154689457,20.55734931953623],[-97.63792020550318,20.55735251425824],[-97.63780149559778,20.557718637298194],[-97.6376794799379,20.55785557275817],[-97.63753590249962,20.55872542988226],[-97.63827141813272,20.559520346836564],[-97.63879602777689,20.559932929563104],[-97.6396764271567,20.559935403683596],[-97.63957202138681,20.560493059306395],[-97.64078040842685,20.56014430841975],[-97.64122617057063,20.560317748539433],[-97.64146306801854,20.56079131966186],[-97.64205019809731,20.561147294892464],[-97.64277666108165,20.561092984151855],[-97.64371470025463,20.56143615493147],[-97.64386478271604,20.561671480599955],[-97.64409305293111,20.561474485518545],[-97.64447190276468,20.561677853463266],[-97.64459935920894,20.561890526436173],[-97.64477792079856,20.561967141306525],[-97.64481148635588,20.562193633167],[-97.6447149183312,20.5626529395185],[-97.64482011120651,20.562650449583884],[-97.64543556546266,20.56239851486845],[-97.64542300323745,20.56260718194602],[-97.6455179084951,20.562921716039227],[-97.64578289667605,20.562910598966766],[-97.64635632309529,20.562771215211058],[-97.64652473558834,20.56308760657447],[-97.64629278565991,20.56330530453687],[-97.64612894211024,20.563462641992487],[-97.64613393701359,20.563718277266503],[-97.64632139647875,20.563854500807736],[-97.64663503350454,20.563975635809356],[-97.6460039092508,20.564262929689733],[-97.64578541906343,20.56385786822807],[-97.64561053246712,20.564357618879058],[-97.64581680133045,20.5647311771217],[-97.64589029256638,20.564913992230174],[-97.64593634242118,20.565127183530137],[-97.64616406899626,20.565245862402378],[-97.646221743235,20.565359335723258],[-97.64605540948901,20.56563695440707],[-97.64620899186542,20.565987252124444],[-97.64661787855658,20.565857760910944],[-97.64674770622548,20.566050631267444],[-97.6466204189976,20.56630498973226],[-97.64651422707425,20.566459000668146],[-97.64675992726228,20.56659502594914],[-97.64688901624714,20.566469718023882],[-97.64714537440688,20.56627513282382],[-97.64758463211462,20.56618418286513],[-97.64789046060088,20.566273697469967],[-97.64819649622285,20.566312192531484],[-97.64793518021804,20.565588079718736],[-97.64782635980066,20.565188182827853],[-97.6506087473295,20.564950883891072],[-97.65160826802094,20.563375959444215],[-97.65178744628355,20.563062010741305],[-97.65361345853546,20.560443435283503],[-97.65655869809001,20.55744027762563],[-97.65673223502779,20.556492435801033],[-97.6571306202494,20.555996767763418],[-97.65763580228969,20.555719330883733],[-97.65743972632544,20.55495804110086],[-97.65680941903241,20.55400678735805],[-97.65633487936896,20.550549321785013],[-97.65639268598574,20.550153322901394],[-97.6561645598149,20.54827161927932],[-97.65612581659707,20.548041121185292],[-97.65584598354576,20.547412297411256],[-97.65650155916262,20.545810500527864],[-97.65636192819204,20.545381220423565],[-97.65671229397799,20.54526851775205],[-97.65729431987961,20.545068750570067],[-97.65896548366953,20.545115945310783],[-97.65935605491734,20.545373261837824],[-97.6598188747962,20.545308714954786],[-97.66068602062848,20.5453936372071],[-97.66184062752319,20.546018464554322],[-97.66228379166478,20.546509779226994],[-97.66336392061788,20.547306573709307],[-97.66348462363527,20.54759572607213],[-97.6636963895088,20.547939946465647],[-97.66415329401008,20.548436400082892],[-97.66471479719081,20.549480844418383],[-97.66513988992949,20.549719951628504],[-97.66541115520067,20.54984813129323],[-97.66591611356722,20.549942684338646],[-97.66648552298142,20.55032945129875],[-97.66671284733252,20.55105725954371],[-97.66695247718019,20.551095748681803],[-97.66753778801211,20.55132135006295],[-97.66862677839083,20.55158848500946],[-97.6695183454122,20.55185893995929],[-97.66993901375054,20.5521711330735],[-97.67016902528246,20.552333682776066],[-97.67064853055166,20.552652082180373],[-97.67127878520944,20.552386763482843],[-97.67174176508985,20.552121713961867],[-97.67189314240267,20.552083149280293],[-97.67226951671864,20.55180263323024],[-97.67244773273018,20.551658356640473],[-97.67282158948808,20.5517845043301],[-97.67299185355245,20.552095368040682],[-97.67330771485047,20.552301742548934],[-97.6741041376228,20.55283162271212],[-97.67505474602672,20.554146456152125],[-97.67548162129481,20.55499147195752],[-97.67632346836547,20.555458857242684],[-97.67808708410149,20.555360172972144],[-97.68030860077448,20.554619088931588],[-97.68166907933755,20.55506269811741],[-97.68292487693162,20.554263622011888],[-97.68352355454596,20.5546676935993],[-97.68371778126715,20.554654184222557],[-97.68404938474072,20.554520173086473],[-97.68463562972937,20.55423943022288],[-97.68487658600043,20.554415234126736],[-97.68460824267834,20.554864930545136],[-97.68389515074148,20.555720813985715],[-97.68368560832369,20.556143601800102],[-97.68344376686667,20.556900325246318],[-97.68340675214773,20.557075309981826],[-97.68308672995329,20.558455289354526],[-97.6829817373918,20.559548922825797],[-97.68298223088442,20.560418357266315],[-97.68193640079346,20.56079470050787],[-97.68172278383048,20.561848796294157],[-97.68273587313075,20.56263030156481],[-97.68266337858563,20.56285953909702],[-97.68211197487227,20.56315430441532],[-97.68168735902276,20.563648144919114],[-97.68145420301931,20.564011083579032],[-97.68091559573787,20.564889548799215],[-97.68108250823565,20.565338636935678],[-97.68119304805862,20.565454418980437],[-97.68157063340072,20.565940131702746],[-97.68158127218913,20.566160264534517],[-97.68153843115056,20.56628228025812],[-97.68112929072714,20.566542635956523],[-97.68076929063233,20.56680648982791],[-97.68092152130208,20.56782485220492],[-97.68178277968588,20.568538608803067],[-97.6824053126935,20.568976983682262],[-97.68391405037363,20.569514193218822],[-97.68453733795963,20.569458200400277],[-97.68467939297528,20.569723652893344],[-97.6847956633901,20.570296410517926],[-97.6846568795496,20.57061592126894],[-97.68430861235129,20.57096628876593],[-97.68412013116483,20.57147789201315],[-97.6840564425022,20.572510172324144],[-97.68555401393849,20.572896235855694],[-97.68621788918563,20.5728112572138],[-97.68704397342879,20.572587056051475],[-97.68776616784334,20.57217870679534],[-97.68823915790205,20.57190006285225],[-97.68852089934927,20.571790111956545],[-97.6890509634618,20.571813036465812],[-97.68969317009066,20.571907192702724],[-97.69033478515325,20.572020312161612],[-97.6906715685393,20.571648328220192],[-97.69146684662962,20.571446757647664],[-97.69213128299413,20.571607633552787],[-97.69220736319511,20.571102638856587],[-97.69423716474819,20.570678629606846],[-97.6993976956968,20.572365154599254],[-97.69985582769755,20.571521621432737],[-97.69988539033648,20.57068958071494],[-97.70190315707504,20.57186632689121],[-97.7013900017775,20.573551471388384],[-97.70120514582021,20.57421995251127],[-97.70047660116734,20.580163064149815],[-97.70035451794922,20.581068041455183],[-97.69885963905676,20.584597521856665],[-97.69834873489964,20.588616994502217],[-97.69806879033166,20.58926840663412],[-97.6971864607442,20.592800821701417],[-97.69728849444135,20.594077130676908],[-97.69704269710809,20.594948921303796],[-97.69684126491842,20.595329695766225],[-97.69689361860691,20.595589563453245],[-97.69706946779775,20.59658820023151],[-97.69526946735351,20.598258965461127],[-97.6945322526916,20.599431385464356],[-97.69402466934184,20.600085295058193],[-97.69325098230524,20.601999269212115],[-97.6934190846464,20.602680674125565],[-97.6966432633011,20.602805903804835],[-97.69927446738888,20.60220362388128],[-97.70134834024117,20.60304188218106],[-97.7030889895247,20.60166704492616],[-97.70389943596189,20.601652036749954],[-97.7048374076565,20.60166470426958],[-97.70573415566275,20.60496050259769],[-97.70881283410517,20.605150918862876],[-97.71060553743581,20.604578148850806],[-97.71095524745101,20.605898347468838],[-97.71053648698165,20.608671241678337],[-97.71506987471605,20.608843652825044],[-97.71523248193876,20.609568376405036],[-97.71505458128036,20.61087454922631],[-97.714111836391,20.61196974176528],[-97.71396048517607,20.61255416806995],[-97.7136250857792,20.613257776529792],[-97.71321848919035,20.613719741360455],[-97.71290499966142,20.613992953486843],[-97.71264585048925,20.614335471095956],[-97.71245889437148,20.614799069837886],[-97.71238156186342,20.615200241662762],[-97.71264659877124,20.616203119263616],[-97.71239758420342,20.616721237417664],[-97.7125144110575,20.61698597239848],[-97.71225683391583,20.61765366285232],[-97.71223371703798,20.617915991149914],[-97.71233194340317,20.61828659758112],[-97.71256218130117,20.61866475781477],[-97.71259913181063,20.619518171844334],[-97.71259289369493,20.619944129185],[-97.71252942141757,20.62046345497447],[-97.71234692811345,20.62061464378479],[-97.71144242677207,20.621007718881685],[-97.71127520366258,20.62129205068618],[-97.71111896861606,20.621372670693233],[-97.71085825137936,20.621594814349237],[-97.7105314740499,20.621719551896433],[-97.71022411460001,20.621646877047567],[-97.71005371861088,20.62155939099432],[-97.70919361301003,20.621882469123534],[-97.70945544144502,20.622238237353713],[-97.70922003804816,20.622817513606094],[-97.70893364875684,20.622739513783984],[-97.70845426891714,20.622450126518743],[-97.70790307406514,20.622687108699097],[-97.70792440584285,20.6231698715402],[-97.70876306539174,20.624875246876456],[-97.70809358757577,20.62608692634376],[-97.70724701240141,20.62651453026882],[-97.70650801737287,20.626109159068392],[-97.70492395550679,20.6251279844069],[-97.7048333095932,20.626181516689257],[-97.70493187143506,20.62790255334255],[-97.70489497993378,20.628052535962638],[-97.70470849356298,20.628489555855992],[-97.70442407729831,20.628855441254416],[-97.70514528392755,20.629775762222835],[-97.70612366690892,20.630735891019015],[-97.70676722276778,20.631666236060596],[-97.7070260087097,20.631458044217766],[-97.7078936452831,20.6309105459913],[-97.70831897557508,20.630783441276265],[-97.70854570471056,20.630768339240944],[-97.70905449309095,20.631219916384453],[-97.70908965422575,20.631392398415244],[-97.7094004064798,20.631616420949626],[-97.70979183159096,20.6314804177743],[-97.71048358556732,20.632441647578844],[-97.71115271503533,20.632899238200082],[-97.71219261551732,20.63424498689318],[-97.71207574261103,20.63490970061457],[-97.71233708338679,20.635037215249326],[-97.71266279388396,20.634889033324498],[-97.71296792036208,20.63527051985892],[-97.71310352344108,20.635572233891367],[-97.7135137479803,20.635394311489733],[-97.71414064739776,20.63612758046986],[-97.71393944290583,20.636658410545408],[-97.71511964525757,20.636948351912338],[-97.71676201785056,20.63666313865275],[-97.71748556637243,20.636588226260187],[-97.71842286270311,20.63647646117016],[-97.71866410995978,20.63661724532608],[-97.71933293876197,20.636380380946434],[-97.72029207392865,20.636582428114025],[-97.72083282542377,20.637012319905864],[-97.72240657551163,20.63691915609462],[-97.72285196735601,20.636741161777422],[-97.72343112629096,20.63719482469122],[-97.72372389256316,20.637214214324047],[-97.72511939779878,20.63672508106322],[-97.72596151045815,20.636731296735434],[-97.72613738667616,20.63683081687583],[-97.7265254444103,20.63716600683273],[-97.7288068237986,20.63802670148499],[-97.72964681209737,20.638291214041715],[-97.73007071262947,20.638352825916797],[-97.73045143685113,20.63812586701181],[-97.73120270795005,20.637790170421965],[-97.73383018307084,20.639986241710687],[-97.73477889337153,20.640762845717575],[-97.73522809849396,20.64483796335344],[-97.7373262013146,20.64643127505667],[-97.74741458104114,20.643839718967456],[-97.74925840348584,20.643625810587935],[-97.74865654129968,20.644148284252253],[-97.74858307251947,20.644282538051414],[-97.74837652781264,20.64508655267838],[-97.74967130712724,20.646979598944824],[-97.75029649265343,20.647705722536614],[-97.75173911140581,20.64873673864929],[-97.75218069780703,20.649029703579288],[-97.75228492232526,20.64918320141294],[-97.75258681897992,20.649892413910038],[-97.75271755340987,20.65184431326452],[-97.75036036590643,20.65282849238355],[-97.75070097746459,20.653758636319083],[-97.75100934002398,20.65481630252583],[-97.75145190025182,20.656119181066174],[-97.75194294518889,20.657220125700803],[-97.75176643066823,20.65791579923416],[-97.7503869151011,20.65947352031128],[-97.74921867267415,20.659653173836546],[-97.74872148042203,20.659304673601696],[-97.74792504326138,20.658859940560376],[-97.7473843649795,20.65801398541123],[-97.74596762697581,20.656970010491193],[-97.74510295169517,20.65745985814874],[-97.74488464900952,20.658711620091026],[-97.74471849332485,20.658647704651344],[-97.7441541270884,20.658361409537292],[-97.74372078925768,20.658358254530924],[-97.74304895135396,20.658980442654013],[-97.74254995858917,20.658851384890056],[-97.74211532936368,20.659004990958522],[-97.74047005992185,20.660435268396157],[-97.74042657149539,20.661121683945623],[-97.74048315406594,20.66262557246813],[-97.73921587501934,20.66259960955898],[-97.73844709410139,20.662844814114862],[-97.73807885356251,20.663030247985432],[-97.73798289858229,20.663668638315016],[-97.73946392641449,20.66485890301726],[-97.73905614590257,20.665796543076226],[-97.73888817386921,20.665952080844818],[-97.73854156819169,20.66667466743911],[-97.73880817275182,20.6675517057634],[-97.73912592019201,20.66847568999316],[-97.73947088293545,20.671838383974716],[-97.73928185873746,20.67235746360251],[-97.74061969607169,20.674042380129208],[-97.74028089048198,20.67469833830694],[-97.73981769200668,20.675589634428604],[-97.7393178119226,20.67574634072048],[-97.7390234846248,20.675836190924713],[-97.73859489712754,20.676385071897073],[-97.73911400565402,20.67672621271771],[-97.73864823372543,20.677826837923078],[-97.73796122344896,20.678067150174456],[-97.73792381146257,20.678649559895405],[-97.73732619771812,20.68002642757483],[-97.73864406615178,20.68069270975576],[-97.73867568985435,20.681315020764316],[-97.73907860946866,20.681490774913357],[-97.74016788722076,20.681442433589837],[-97.74072883974713,20.681851715802225],[-97.73998672905583,20.68281069541706],[-97.74008646651998,20.684090137672683],[-97.73989693852269,20.68477995155922],[-97.73985592056994,20.685298045039872],[-97.7396624206844,20.686471668963236],[-97.73946720725098,20.68704751785964],[-97.74037845541847,20.687585724335293],[-97.7404548572049,20.688447387264773],[-97.74320397732879,20.689305814842157],[-97.74410043900201,20.68883289404772],[-97.7455474163026,20.68699362667394],[-97.74603799179812,20.686636459900058],[-97.74708390681741,20.68639532345378],[-97.74770980721479,20.686260041244168],[-97.74915239658566,20.686981718690504],[-97.75318958326977,20.68834304370148],[-97.75371356262104,20.68846631525281],[-97.75653446238431,20.689014133766932],[-97.75685970487507,20.689492286264624],[-97.75701462659094,20.692269663989237],[-97.7575371488063,20.69346819107676],[-97.75735238689305,20.694516102810837],[-97.75702171708633,20.695446128613185],[-97.75689966869146,20.696003868946207],[-97.75582765076774,20.69793061149909],[-97.75562271904181,20.698328728528907],[-97.75526541968298,20.698913603155006],[-97.75465932080988,20.69937811686833],[-97.7540532182851,20.699842628241697],[-97.75292373767309,20.700859254882005],[-97.75142046363993,20.701435091792973],[-97.75183885973831,20.702698077482694],[-97.75110341621223,20.70558683804535],[-97.7506387188036,20.707330080506154],[-97.75090857596797,20.708111056826738],[-97.7508469440433,20.708889628099087],[-97.7507601629253,20.70957159397392],[-97.75080024116556,20.710681144273565],[-97.7508673666552,20.71149046035265],[-97.75108238121504,20.71225463691161],[-97.7515883141051,20.713125851362463],[-97.75017484901258,20.724074901630274],[-97.75076710054617,20.72491851672703],[-97.74999386495932,20.725476725946123],[-97.74902473219328,20.73298273498108],[-97.73798251580502,20.738550451619744],[-97.72814061064378,20.74149765300473],[-97.727729615584,20.741911013268975],[-97.72761759609602,20.74259308820274],[-97.72784388741297,20.74307778904773],[-97.72774672055397,20.7432405960991],[-97.72719819917756,20.743205226380383],[-97.7269201848041,20.743354109723555],[-97.72684428999747,20.74395317121497],[-97.72667786657263,20.744784739711008],[-97.72665610136312,20.745267613080216],[-97.72644096868538,20.74556582284464],[-97.7261605524231,20.747612867720136],[-97.7230908972,20.75043238681195],[-97.7250839185997,20.751598766387758],[-97.72549191719156,20.752423741654354],[-97.72570122155827,20.75327816938932],[-97.72567719624953,20.75379861670001],[-97.725423572051,20.754318879628045],[-97.72535691011137,20.75497740032216],[-97.7256406979908,20.756067868991863],[-97.72540988694834,20.757042404205265],[-97.72550611144675,20.757368525221523],[-97.72605280149475,20.757070413992494],[-97.72643578984662,20.75728371398509],[-97.72631600306221,20.757376053415044],[-97.72613293983142,20.757915407612415],[-97.72607093704363,20.758213273358933],[-97.72604641170045,20.758772437967366],[-97.72617402214888,20.758931868562343],[-97.72632075644515,20.759175341949913],[-97.72619870282603,20.759538019922218],[-97.72639455361565,20.759837797038244],[-97.72608530593743,20.760049920412712],[-97.72592841753504,20.759834341371175],[-97.72564146150722,20.75961844397932],[-97.7252831638562,20.7597649447643],[-97.7250072572869,20.75954848196551],[-97.72492877495375,20.759445354762022],[-97.72475103371079,20.759350808584372],[-97.72375827820434,20.759299384679252],[-97.72338045425914,20.759408448932504],[-97.72268062722975,20.76006514711173],[-97.72258925025346,20.760316179279585],[-97.72239829971176,20.76061307616908],[-97.722179879245,20.760888992626576],[-97.7223941545688,20.760910749145637],[-97.72258656090463,20.76098272539673],[-97.72226604372798,20.76211920492466],[-97.721941414166,20.76246953552794],[-97.72150170645773,20.76247634562958],[-97.72130895976863,20.762444674981396],[-97.720742200475,20.762259046906536],[-97.71971538406291,20.761801036388533],[-97.71894627452173,20.762722519958686],[-97.71910397048651,20.76309659518722],[-97.71928353779788,20.763420442419317],[-97.71995358098866,20.764719979797974],[-97.72015543671273,20.765041849439342],[-97.72104275349687,20.764941668983568],[-97.72184578052662,20.765165195747045],[-97.72229494807573,20.765593978186303],[-97.72322490013568,20.766542931921833],[-97.72370540355888,20.76709349496514],[-97.72477160169694,20.767222964484347],[-97.7266445133206,20.767332323630058],[-97.72544525051376,20.76901252146979],[-97.7252839448604,20.769427673678365],[-97.72538939191429,20.76964011002849],[-97.72616022856812,20.770409571527807],[-97.72641372925352,20.770721437473526],[-97.72639658400828,20.771242511069886],[-97.72625307903019,20.771264557335485],[-97.72611188625848,20.77127182310727],[-97.7256210140722,20.77121939562892],[-97.72491351049081,20.771133583236008],[-97.72446695234282,20.770943460647914],[-97.72362699262112,20.770815671249693],[-97.72312362587195,20.77068445897254],[-97.7226303503083,20.77073770791094],[-97.72227813844586,20.771106236413402],[-97.7216535452248,20.770851385356025],[-97.72156868970228,20.770739890412756],[-97.72133481960901,20.77049626810043],[-97.72120665845267,20.770434841496865],[-97.72088513486926,20.77041229265069],[-97.72052789453204,20.7708127673514],[-97.72034381793878,20.7710230410691],[-97.72038399593362,20.771345848802184],[-97.71998223212552,20.771937489201264],[-97.72004795057165,20.77213213605563],[-97.72074441201863,20.77223609835397],[-97.72107849135386,20.772702279879184],[-97.72023612228293,20.774177936833837],[-97.71966644593977,20.774971613407388],[-97.71931772977484,20.775618071694623],[-97.7197808339136,20.775639464508004],[-97.7200603037569,20.775457169953995],[-97.7202412205881,20.775434001135466],[-97.7203881064114,20.77585242639276],[-97.72017001286696,20.776100534575676],[-97.71982130736524,20.776363807442635],[-97.71971831736886,20.77645507543741],[-97.71971264355358,20.776633819313076],[-97.71988758982269,20.776798802364283],[-97.72009581848397,20.776861144049917],[-97.72041507882523,20.776790556073536],[-97.72052082245693,20.77660073118261],[-97.72080985708635,20.776866467513685],[-97.72058335832696,20.777059980678644],[-97.72094822027259,20.777218273973233],[-97.72080775205046,20.77742901369686],[-97.72094716148928,20.77749955041412],[-97.7211122896494,20.777504185176213],[-97.72119315753656,20.777684122687162],[-97.72114303480231,20.778023240112645],[-97.72101711315003,20.778271396186142],[-97.72084166951066,20.778592191673567],[-97.72121345721513,20.77878029475704],[-97.7214338563885,20.778779074629597],[-97.72184512961582,20.77843366119629],[-97.722053456813,20.77846576576667],[-97.72218321666571,20.778554729894267],[-97.72241162548823,20.778613649084832],[-97.72268353843066,20.77862127828064],[-97.72299955342106,20.778557943568387],[-97.72429923805805,20.777959934255023],[-97.7244116298445,20.777345979993015],[-97.72464779995295,20.777317498046614],[-97.72491479426111,20.777450507360413],[-97.7250851821612,20.77759287216145],[-97.72515922926823,20.77771435846762],[-97.72519941850061,20.778037165452474],[-97.72521976695066,20.77816833459434],[-97.72543059940836,20.778603280127072],[-97.72550422437723,20.778775154091022],[-97.72561871629443,20.7791892212],[-97.72534698837245,20.779858722045674],[-97.7250638562582,20.780370618826623],[-97.72538176439292,20.780826514217438],[-97.72623061161693,20.78191120314682],[-97.7280344888311,20.78480376075521],[-97.72501136154,20.785515501402415],[-97.7233068733292,20.78616240943569],[-97.72306512117007,20.786431744952267],[-97.72317012815148,20.786871300144355],[-97.72583525716232,20.790629953657913],[-97.7260509386515,20.791191985521266],[-97.72552382101327,20.791738023472135],[-97.72463001520754,20.792001342478216],[-97.72338038330116,20.791608535193745],[-97.72121451718544,20.793804171615193],[-97.72118943192953,20.795287943198332],[-97.72078617319727,20.79535090860611],[-97.7201993424506,20.79521083057392],[-97.71971245267684,20.795537753695044],[-97.71865728323132,20.796058200685252],[-97.7168172624144,20.79705813033206],[-97.71661817765096,20.79780000143279],[-97.71632637912012,20.79788343128746],[-97.71604483359596,20.798114231594525],[-97.71541969641078,20.798676923534117],[-97.71483292551835,20.798835565478328],[-97.71396805715307,20.799563204072342],[-97.7119586182481,20.799733211796138],[-97.71113391967583,20.799181070283396],[-97.71010767642395,20.799651242256573],[-97.7101060727997,20.79933342815775],[-97.7084183792719,20.799232309378283],[-97.70772053528441,20.798414848118],[-97.7068772884574,20.7976840092511],[-97.7064524762352,20.79776417197587],[-97.70586032462603,20.79760899728626],[-97.70574907089139,20.797579797731316],[-97.70494259768111,20.797439781326602],[-97.70497759556497,20.796239402350636],[-97.70331108044229,20.79376761703554],[-97.70134562418463,20.793603697661695],[-97.70083502148833,20.79395756053367],[-97.700451037797,20.794342180198328],[-97.69966503955902,20.7947256583613],[-97.69888259631699,20.79528605083152],[-97.69851198605977,20.795429383314968],[-97.69818087859159,20.795499943109974],[-97.69792816304471,20.795498025583015],[-97.69763734285692,20.79540448112607],[-97.69670548993844,20.79525125428347],[-97.69631575966025,20.79535790513785],[-97.69465281876825,20.796531571612263],[-97.69517932766081,20.800038841167748],[-97.70211403145748,20.800147078009275],[-97.70361913985766,20.800197956024874],[-97.70827157865199,20.800375418682393],[-97.71538978965526,20.800678787155846],[-97.71686095638552,20.80074597886545],[-97.71779924294088,20.800835061339114],[-97.72007797800569,20.80086181316568],[-97.72434702098121,20.80102212408218],[-97.72446318710485,20.80100076717804],[-97.72493250876772,20.801022593730863],[-97.727523546442,20.80115291992837],[-97.73045226877298,20.801235466156015],[-97.73165431369608,20.801249472353106],[-97.73263485710754,20.80127885900049],[-97.73550363088839,20.80141716625701],[-97.73742296297792,20.80147683333007],[-97.7395269292141,20.802859708763094],[-97.74148366958042,20.803865896575985],[-97.74220442612892,20.80411356040122],[-97.74444039662598,20.80496371510327],[-97.74529999559218,20.80586353783815],[-97.74626403749483,20.808016430732152],[-97.74663092083802,20.808254436494792],[-97.74765353414159,20.808854786592974],[-97.74820992618078,20.809014705388336],[-97.75008146841509,20.814111766766644],[-97.7503485390069,20.81478844388363],[-97.75138482849337,20.81480700986259],[-97.75182609867795,20.81492546026783],[-97.75276554223484,20.815311435325782],[-97.7530006634297,20.815430167686998],[-97.75347114017438,20.815661033129857],[-97.75425807289889,20.816105274016593],[-97.75457194762856,20.816232115588832],[-97.7548990370799,20.81640388515575],[-97.75529872792441,20.81661620845017],[-97.75675711989987,20.81740466919007],[-97.75790439141002,20.81844634044296],[-97.75838653999028,20.81899983540876],[-97.75903161231668,20.81868991052528],[-97.76002684744083,20.81891334486977],[-97.76267586263339,20.818683816947555],[-97.76347943693338,20.819238848400914],[-97.76389201212402,20.820466738964512],[-97.76779722682932,20.823911863563296],[-97.768446487495,20.824417294935586],[-97.76959965519029,20.825212204600064],[-97.77094961073806,20.826084706391782],[-97.77181375254986,20.826429809280967],[-97.77300167248848,20.827201388014146],[-97.77318143666162,20.826419721536638],[-97.77320386966522,20.825773726237117],[-97.77331135663445,20.824310475519724],[-97.7733425349303,20.823513168518843],[-97.77426893164909,20.822795255535937],[-97.77537285993486,20.823368126635103],[-97.7770400075189,20.824328652594318],[-97.78708754784623,20.818632969320845],[-97.79074218745103,20.817196769855684],[-97.79135380466374,20.817538061764765],[-97.79194738661772,20.817791886019336],[-97.79305524778283,20.81822016500621],[-97.79402976992776,20.819091133184997],[-97.79594851468158,20.820550861607273],[-97.79717875794915,20.82116368587043],[-97.7981673056625,20.82084227412571],[-97.79854072014001,20.821018750453504],[-97.79863625949963,20.821017725384195],[-97.7991941022284,20.819572560152494],[-97.79993052563492,20.819288646426514],[-97.80052758491792,20.819527289815824],[-97.80151903284212,20.82003021829638],[-97.80346397411915,20.820782536588865],[-97.80426280328294,20.820561598031418],[-97.80633765247904,20.821342117827612],[-97.80838355523213,20.82069379608322],[-97.80896219432299,20.81994406440009],[-97.81352228384787,20.820109633442996],[-97.81376730441264,20.820066072950738],[-97.81657516086415,20.81801783822084],[-97.82109520914292,20.813229784015277],[-97.82404860246527,20.80980990486546],[-97.83025393973986,20.807957174397927],[-97.83069813995576,20.80799686963485],[-97.83215146173148,20.80965937654122],[-97.83143108176915,20.810433016884303],[-97.830425188204,20.81168832129316],[-97.83092863490458,20.81267960369655],[-97.835494616897,20.812639772165937],[-97.83668763912698,20.812702193658595],[-97.83734252062277,20.81300432179961],[-97.83763755118889,20.81365933619435],[-97.83763545058997,20.81435852754788],[-97.83941504236464,20.814960069433653],[-97.84023601995358,20.814804948650988],[-97.84058058063232,20.815014746803683],[-97.84193640601399,20.81595210117098],[-97.8446517424187,20.816147678890843],[-97.84636939342028,20.81669091529767],[-97.84842682555302,20.815924908007673],[-97.84958420301678,20.81614614993805],[-97.85011842541252,20.816923825470212],[-97.85017694309573,20.817463794273237],[-97.84987552883729,20.819067794710236],[-97.84858291254045,20.82033541517643],[-97.84468575376786,20.822771718482556],[-97.84367952742952,20.82359886899667],[-97.84332845629586,20.824036093399457],[-97.84311390629091,20.824942906557567],[-97.84336640879019,20.826469081007815],[-97.84358575528046,20.82708650076637],[-97.84410728183656,20.827976337803477],[-97.8426750580939,20.83268187953132],[-97.84009953212046,20.83526364659224],[-97.83903528706253,20.836249113275812],[-97.83895546834606,20.83681581400532],[-97.83910315748398,20.837242248196958],[-97.8394373541613,20.837953562524547],[-97.84108747969327,20.839311934155546],[-97.8421775340999,20.83988654734759]]]},"properties":{"cve_ent":"21"},"id":"inegi_refcenesta_2010.16"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-96.67838619151803,18.666900686765985],[-96.68006068841464,18.66788830067469],[-96.68111624742153,18.668771017706206],[-96.6823855757857,18.668906017416987],[-96.68290946028759,18.669332207549076],[-96.68329927248709,18.66931681542701],[-96.68329179648896,18.659061168715937],[-96.68355899554797,18.658574046848855],[-96.68313637989479,18.65625924164692],[-96.68258804526857,18.654841204868603],[-96.68252722208075,18.65424615220138],[-96.68206613482295,18.65254203568395],[-96.68184189130704,18.651888659275187],[-96.68159079421821,18.65055861046949],[-96.68132311217005,18.649639940198085],[-96.68109629134159,18.647949021034663],[-96.6817324126788,18.647186472595877],[-96.68193628482652,18.6469949857256],[-96.68392834064076,18.6452314095539],[-96.68414026752862,18.64406208591828],[-96.68512236404109,18.643053587977704],[-96.68625708215029,18.641648426761662],[-96.68823649539848,18.638368966143958],[-96.68806337029997,18.6380529465182],[-96.68742253684127,18.636717060225067],[-96.68627395471628,18.635447369019346],[-96.68565240693493,18.635865007380403],[-96.68507452345068,18.63549571510913],[-96.68438270607095,18.634829095550117],[-96.68406716119466,18.63466561233173],[-96.683740098903,18.63513412249182],[-96.68308112773258,18.634414719860843],[-96.68281062795444,18.632377217867713],[-96.68291951257658,18.631823208845958],[-96.68259830448801,18.63121561438004],[-96.68214023701364,18.63157664939007],[-96.68117505995315,18.631022033597674],[-96.68073721526758,18.63024083486374],[-96.68021599260317,18.630318956100666],[-96.67966028465634,18.62997626317332],[-96.67972025852964,18.62974048164955],[-96.67990714466038,18.62954396345924],[-96.67957348616551,18.629429419647806],[-96.67933584597426,18.62885744784171],[-96.679017507006,18.62825481236689],[-96.67869084326986,18.627835382144042],[-96.6782777518215,18.626990631851754],[-96.67827946351053,18.62640572332498],[-96.67778118345484,18.6262368377636],[-96.67725636913963,18.62597801180101],[-96.67563206683303,18.625172328810834],[-96.67472957293552,18.623608817945524],[-96.67445229711814,18.621934287948875],[-96.67371685110976,18.620455640874923],[-96.67329051333365,18.620132990379318],[-96.67215466296386,18.61858418332355],[-96.67246351982999,18.60757413033633],[-96.67713756331216,18.607523980329518],[-96.68030141684551,18.606579243737315],[-96.68092860785816,18.605924194279396],[-96.68420010554576,18.60379293378776],[-96.68586393782658,18.600999243724118],[-96.68776346803645,18.595058016322696],[-96.68952386181019,18.5960693863762],[-96.69185053310468,18.593269953623576],[-96.69196397997473,18.59311837613467],[-96.69401002277255,18.59042752664584],[-96.69291212848827,18.588517276946106],[-96.69300499433484,18.5882869527112],[-96.69280790374057,18.588184950812717],[-96.69184413715755,18.58783108473125],[-96.69215637803273,18.58656706476961],[-96.69188995678991,18.586377641385468],[-96.6916516541836,18.58645752266858],[-96.69165199292507,18.586432394759356],[-96.69014729881098,18.58600267505335],[-96.68776257217445,18.583629057987764],[-96.68797335158268,18.58269592220404],[-96.68811362308776,18.582213661252297],[-96.68960033486218,18.58103150368794],[-96.69003477950758,18.58058831793818],[-96.6933137108868,18.57861167448175],[-96.69616049049779,18.57938913567142],[-96.69829310154483,18.580157845326653],[-96.6993411127446,18.581098979860485],[-96.69992296880366,18.581291745823535],[-96.70214898067309,18.581226711883858],[-96.70047033057494,18.57899640828515],[-96.690940579602,18.567974383353658],[-96.69401017720617,18.562849376333986],[-96.6996307226014,18.553342891864872],[-96.70470414062783,18.559529746888018],[-96.70675566369852,18.562228162614417],[-96.70700892500264,18.562605674295014],[-96.70884886632956,18.564954374046522],[-96.7156047921697,18.573241494154672],[-96.71702464470798,18.570515532524723],[-96.71869806271695,18.567839953002704],[-96.71927002764056,18.56694318315499],[-96.72422171553484,18.558987540045393],[-96.72239847775285,18.556426334187506],[-96.71952473058036,18.5551024545112],[-96.71182669105116,18.54805547566184],[-96.71905044761348,18.536914153758573],[-96.72066933031346,18.537198860720764],[-96.72325516475968,18.53699750500715],[-96.72410834887023,18.536311188850163],[-96.7249439988027,18.535996972702492],[-96.72524678804473,18.53596458558377],[-96.72578985912048,18.535863027572304],[-96.72567429345446,18.53475032184724],[-96.72482285819956,18.53321458846699],[-96.72461152262508,18.532655976995386],[-96.72433097604659,18.53181849650207],[-96.7242812818427,18.53033455401072],[-96.72689948406975,18.529829004247404],[-96.72554334467208,18.528259820255073],[-96.71998366787261,18.522755872684115],[-96.71797183031339,18.523364573233096],[-96.71734986799584,18.523291080525723],[-96.71707093991938,18.523547701808695],[-96.71692889090218,18.52406596327637],[-96.71648021246824,18.525389544885854],[-96.71641315730511,18.52593488358275],[-96.71630615678299,18.526215266098347],[-96.71603946012232,18.526336036833072],[-96.71481324535011,18.526726732614065],[-96.71471285251982,18.527216053497398],[-96.71414733399217,18.527558115073475],[-96.71305227326889,18.527532873813698],[-96.71244001750807,18.527463950381048],[-96.71200224296041,18.527710104248513],[-96.71112712942295,18.528191952018517],[-96.71015881394379,18.527354361026255],[-96.70956067971844,18.527104580544403],[-96.70616882400134,18.526336697010436],[-96.70286772294457,18.510269009994147],[-96.70189208428519,18.51060039299483],[-96.7012187132571,18.51057485519169],[-96.69965382970031,18.51054620222311],[-96.69948659689618,18.51076710418033],[-96.69866719269851,18.510630368448403],[-96.69812060685837,18.50991119058716],[-96.6973261166271,18.510277231965517],[-96.69724363073334,18.510451908424045],[-96.69686326444986,18.510820222112216],[-96.69630818143014,18.51150473227119],[-96.69538225877545,18.511302489281547],[-96.69530617770528,18.5115446169886],[-96.69503937662193,18.511072620978496],[-96.69420099363327,18.511131853513632],[-96.6937199183248,18.510850909738508],[-96.69308421952638,18.511189456103523],[-96.69255647844079,18.512246397204024],[-96.69094509576604,18.512484319165083],[-96.68852218148805,18.512520557492962],[-96.68802259688147,18.512641695515242],[-96.68770263055666,18.512030431255425],[-96.68712780694165,18.511710754807268],[-96.68675268647416,18.51161826709381],[-96.68638212042873,18.511637504739383],[-96.6859009320604,18.50907988879834],[-96.68526256900947,18.508643227582183],[-96.68477889122676,18.508598589007022],[-96.68450852537268,18.508258353357917],[-96.68455445041678,18.50794692936023],[-96.68450522896802,18.507547010460257],[-96.68446772330702,18.50756620120262],[-96.68393598827981,18.50766822312528],[-96.68311975264999,18.507201966475236],[-96.68227521699328,18.50711815183041],[-96.68224779081089,18.506586574783853],[-96.6821061576266,18.506162329201004],[-96.68239855316068,18.50624473356345],[-96.68245373940908,18.50606327314557],[-96.68247014027054,18.505837005234696],[-96.68264913993113,18.505788172062353],[-96.68301578905971,18.505675453635718],[-96.68318327367956,18.505559124979868],[-96.6834962553985,18.506121364224384],[-96.68406459330112,18.50506403392535],[-96.68411312510733,18.504682017606115],[-96.68312439408061,18.504486250731247],[-96.68154401207426,18.503272776661902],[-96.6814844208314,18.502235767076513],[-96.68173496915813,18.50203003162386],[-96.68267306941755,18.501295566658882],[-96.68274535800538,18.500978067990104],[-96.68256820376405,18.49996214862142],[-96.6822983436648,18.499581378887967],[-96.68251065467791,18.499001161333638],[-96.68467421045113,18.497585457981756],[-96.6861233632726,18.497172569734403],[-96.68564177413566,18.49652161212964],[-96.6861318352781,18.49391603527613],[-96.68750428520974,18.492484196775592],[-96.69034672526192,18.490496329384143],[-96.69055912272336,18.48935650030984],[-96.69004603803904,18.488716151179347],[-96.68848290018104,18.489680740781637],[-96.68565653053838,18.489605804187818],[-96.68725351971813,18.487265684243084],[-96.68731952792251,18.48633715382516],[-96.68424796039687,18.48691124365365],[-96.68509133620557,18.485233608426483],[-96.68608931202795,18.484848555717804],[-96.68630575921867,18.483725181535874],[-96.68620249798215,18.483489468669234],[-96.68538358093605,18.483550482221517],[-96.68367614015813,18.484762342064926],[-96.68331764932691,18.481014869736157],[-96.6846356582887,18.48030315109554],[-96.68424070246482,18.475450854241274],[-96.6825223156859,18.475533831523023],[-96.68677388397958,18.471964401603373],[-96.68818430890968,18.468420454219483],[-96.68962241232168,18.46934296038944],[-96.68984485855191,18.469332802320537],[-96.69048004081543,18.468349758409715],[-96.69040100406039,18.46670208339765],[-96.68949912729255,18.46563690784774],[-96.68818672280071,18.462735448709395],[-96.69078754427613,18.463262894920888],[-96.69165075458875,18.462379663351612],[-96.69274979252998,18.462359692319467],[-96.6928878108767,18.45851183536996],[-96.6932853479056,18.45744881266046],[-96.69507759097252,18.45854549552945],[-96.69628594551187,18.458031721027567],[-96.69911118216072,18.457295976162357],[-96.70252036871352,18.457734437712247],[-96.70431374781703,18.457166194594436],[-96.70525296326076,18.456314178191974],[-96.7026615791396,18.45468023564871],[-96.70338143577675,18.453749662120288],[-96.70440479194019,18.452927551251094],[-96.70450328377348,18.449720804009132],[-96.70642315199336,18.44946528571853],[-96.70713915792442,18.448525373397956],[-96.70543980281161,18.448339372844146],[-96.70497896930345,18.444957179216203],[-96.70503368822955,18.444192641789243],[-96.70604391358171,18.442168005369126],[-96.7066488173582,18.44024250638006],[-96.70598566162823,18.439960258139138],[-96.70704297130004,18.439245185415245],[-96.70716309731569,18.438207292031564],[-96.70716974547184,18.43735435035495],[-96.70602313489184,18.436754420355612],[-96.70526606986482,18.435451620332913],[-96.7055430549143,18.43496896574925],[-96.70622972056975,18.434931064137402],[-96.70662420322998,18.43571503051635],[-96.70685560848511,18.43623625830992],[-96.70725203319614,18.43644572096349],[-96.7080072256557,18.436153425926648],[-96.70894914158345,18.435285409430946],[-96.70869071626862,18.433293739178794],[-96.70901025643786,18.432628803178147],[-96.70904295833606,18.432419029113362],[-96.70792054495462,18.432299073462787],[-96.70731607496356,18.432010170044066],[-96.70541029824545,18.432583201291607],[-96.70575743537046,18.43153984974157],[-96.7069196436986,18.431691869452322],[-96.70811229781094,18.431122553911678],[-96.70961984932063,18.430341617208455],[-96.70958681926373,18.4296439773953],[-96.70840519457397,18.42932336805552],[-96.70790675881608,18.429180129111614],[-96.70757898210132,18.428836669689645],[-96.7077079617211,18.428441598336406],[-96.70877718273397,18.428139891418994],[-96.70911065956369,18.426817587479775],[-96.70907787839212,18.425695541821256],[-96.70657189967648,18.42398985323109],[-96.70627291755545,18.42335185952328],[-96.70591294704235,18.422894367540096],[-96.68436471509585,18.415688463407548],[-96.68103725200285,18.41220443680254],[-96.68143971233417,18.38565703649408],[-96.68120912055423,18.385864319119094],[-96.67977907855015,18.38686065648426],[-96.67930338831451,18.385763115802604],[-96.679829646499,18.385119683432492],[-96.68013023467688,18.38301784215048],[-96.67890447045494,18.383002903150043],[-96.67686821029002,18.38451170500133],[-96.6764453230503,18.3855722911141],[-96.67490903836602,18.382304308947823],[-96.67554956201599,18.38076024028112],[-96.6816151615285,18.37558406937694],[-96.68330059699474,18.378394019142092],[-96.68957983747174,18.381028816461765],[-96.69183122050265,18.38084978806205],[-96.69095760324592,18.375680182094356],[-96.69314632157807,18.370494235397246],[-96.69259751656637,18.366237145316063],[-96.69630887609173,18.364862227472145],[-96.69753138603284,18.370517106652358],[-96.69582078328085,18.37557220424958],[-96.69716715325688,18.381654665871963],[-96.7001777552208,18.38292904922247],[-96.71089770380223,18.38012828741722],[-96.71727436139707,18.38041159069087],[-96.72335558709767,18.378421037508645],[-96.72919724397707,18.3749005295316],[-96.7323269096691,18.373699795018354],[-96.73358607224384,18.376040602864236],[-96.7336623728309,18.378005967327567],[-96.73571061715512,18.38036842239029],[-96.73818133411714,18.381665226795292],[-96.74149721134177,18.383856545745402],[-96.73713453641903,18.390036124023652],[-96.73146408210243,18.39333766953831],[-96.72865000283906,18.39573688177927],[-96.72887861783994,18.396756859303764],[-96.73266670950233,18.398151904896395],[-96.73947994575343,18.396852146708568],[-96.74791060201284,18.39382459812697],[-96.75330858822446,18.392942897612215],[-96.75500261649029,18.389911812047274],[-96.75219178145227,18.39050471965527],[-96.75130634070683,18.389405803600596],[-96.74962286967667,18.382155799548002],[-96.75133762656611,18.38043432890288],[-96.7535338628054,18.380146994728136],[-96.75528192939589,18.381193816196742],[-96.75614722483778,18.381644948337794],[-96.75692749467765,18.382086311989383],[-96.76047162765292,18.382455913252215],[-96.76110263801866,18.38289204666728],[-96.76218496817262,18.383233981538467],[-96.76276393549398,18.383229826215995],[-96.7639626972848,18.378949954758752],[-96.76349573573134,18.375006837097715],[-96.76638325559742,18.373703355864563],[-96.76868214279295,18.37312441023124],[-96.77015937234654,18.371273212844244],[-96.77077144737564,18.37052225846361],[-96.77168964845771,18.369573555118222],[-96.77279747134475,18.36866292283753],[-96.77340021023173,18.367876804130162],[-96.77351512323361,18.367742301677936],[-96.77497150355856,18.366202879750574],[-96.77535050242773,18.36588691605857],[-96.77827121697442,18.36436161310388],[-96.77973416409384,18.364191697101887],[-96.78103057645973,18.36237531509994],[-96.7811754153845,18.35925526538182],[-96.78145098878463,18.358342089050097],[-96.78223256493811,18.35767264649678],[-96.78369349267172,18.35638468038934],[-96.78477582654091,18.355548546331704],[-96.78600167789205,18.353452097540753],[-96.78476783600905,18.35185410490317],[-96.78406436753573,18.350598303980348],[-96.7829138161984,18.348187784652055],[-96.78294039709988,18.345912352165556],[-96.78324084121397,18.345270813035825],[-96.78383262269148,18.344662471334857],[-96.78370590429165,18.342361142765014],[-96.78499778605993,18.337727882717388],[-96.78635683879327,18.336548011456784],[-96.79084461715541,18.336109333877573],[-96.79535673626174,18.334895411460593],[-96.7950464943155,18.33175146190723],[-96.79749451263831,18.330858309812413],[-96.79799198525768,18.330699717435493],[-96.80026710092909,18.329310447909904],[-96.8040369882973,18.32945564268681],[-96.8046364628799,18.32954697648603],[-96.80870438321563,18.329595996061073],[-96.8105832842254,18.328662392792637],[-96.81310988743809,18.324756528549585],[-96.81875261055688,18.323267431384863],[-96.82137801722922,18.321251590030784],[-96.82214738362967,18.317795534146114],[-96.82112750687111,18.315296950678487],[-96.8222819596769,18.31015852990413],[-96.81814917504732,18.3061914749577],[-96.81726629483012,18.304014667985314],[-96.81796524531865,18.300799717291966],[-96.8192184304599,18.299719958500418],[-96.82085438093571,18.30044528816535],[-96.82567238148704,18.29640489592572],[-96.82620073075714,18.29391887157402],[-96.82888285243638,18.288772209035585],[-96.8289064424219,18.285467189416693],[-96.8292634377911,18.28396802161984],[-96.830928261145,18.280559535331633],[-96.83300258850181,18.279721216589735],[-96.83400166507795,18.27592761507168],[-96.83642385971314,18.275575174757023],[-96.83629793381346,18.27372848638646],[-96.8383263225611,18.271418706133545],[-96.84188528591073,18.2721627319018],[-96.84323078071691,18.271071623477383],[-96.83866938954003,18.267655814208524],[-96.84265668847513,18.265031158157456],[-96.84165132387528,18.262281543168285],[-96.8422238726817,18.259582153742826],[-96.8419829442746,18.258591361149286],[-96.8417122117545,18.256452619972947],[-96.84456192368793,18.255685248846476],[-96.84377175546456,18.25386819450165],[-96.84618951620212,18.251249599080438],[-96.84661659609446,18.25043396241341],[-96.84621955091256,18.246850639790807],[-96.85130780845395,18.245510834258653],[-96.85305271543444,18.243931156810277],[-96.85495541698504,18.241333326170206],[-96.85546984220946,18.24127234816325],[-96.85574695150132,18.24153083713975],[-96.85608746560428,18.24191975724051],[-96.8576634121751,18.24286143282069],[-96.85789120832032,18.242755388279022],[-96.85846243291047,18.241913490451452],[-96.85969360248049,18.241955677091767],[-96.86388332797185,18.241424225755168],[-96.86526673702281,18.241471578361597],[-96.8655666983413,18.241890007841846],[-96.86598825893799,18.242058436049206],[-96.86656621007984,18.24198447080994],[-96.86706670764903,18.241786571146918],[-96.8675120519668,18.241694675356882],[-96.86884782469969,18.241613147011947],[-96.86938349072136,18.241544421667925],[-96.87019508926687,18.24204184119361],[-96.87064343349005,18.242057170001885],[-96.87143178927852,18.241983682597095],[-96.87195818608814,18.242349853104486],[-96.87252686489518,18.242611994629897],[-96.87290915796046,18.242705406932828],[-96.87464799996889,18.243287088433874],[-96.87526535169172,18.243713444764865],[-96.87574324602969,18.243729767516413],[-96.87676575457846,18.243622445944652],[-96.87709503124472,18.243633689449098],[-96.87990647819112,18.243216617472683],[-96.88015309482068,18.243166626190998],[-96.88525847170587,18.243963495502896],[-96.8872970420723,18.241588300635783],[-96.88826579972874,18.240875229483436],[-96.88921210896524,18.240772672570756],[-96.889544737145,18.24072995010573],[-96.89013451335205,18.240916356590674],[-96.89233657665937,18.24103695614889],[-96.89338882140919,18.240726228747405],[-96.893958067462,18.24080620515906],[-96.89636634177617,18.240534552292274],[-96.89633231511391,18.23826210222893],[-96.8967531480638,18.237661362710185],[-96.89801459288503,18.238088666951057],[-96.89872120679746,18.237838590569083],[-96.90037893252918,18.239234177393485],[-96.90232931394343,18.238457305437578],[-96.90354839706248,18.237900805351558],[-96.90415965734115,18.23771447812942],[-96.90497210097203,18.2375349808907],[-96.90696272354421,18.23650795643266],[-96.91074913703346,18.238755529047808],[-96.91241079150535,18.238777359897483],[-96.91439082659838,18.236193406451207],[-96.91458252624352,18.232538278921538],[-96.91615419602772,18.230641843339413],[-96.9185789679687,18.231771123348494],[-96.92015982646313,18.23593276718833],[-96.91948119803118,18.23836377775683],[-96.92187583207277,18.24061938603461],[-96.92673465601922,18.237499403197717],[-96.92880186660727,18.23338408191165],[-96.93024943570094,18.232902914966985],[-96.93093971999303,18.230088817196872],[-96.93072811827841,18.225760387846265],[-96.93185185203657,18.22514554702485],[-96.93238286759492,18.221563297181035],[-96.93700543336604,18.220776782072903],[-96.93636253254414,18.21658640924602],[-96.93698033393275,18.21619582365338],[-96.9380064236725,18.21811126426462],[-96.93805691539274,18.219314271255882],[-96.94091128071028,18.21956782980783],[-96.94465713379975,18.221211052483795],[-96.94765494960603,18.221243177190445],[-96.95163908819944,18.219788799919],[-96.95637666101112,18.222569688220005],[-96.9590542942388,18.226340913033482],[-96.96349743867927,18.229105674342634],[-96.96535043788259,18.22919093301175],[-96.97350020319413,18.231787573405654],[-96.97861563245175,18.232584003483964],[-96.98353424418087,18.23163515774172],[-96.98594505128415,18.230396215636347],[-96.99147942839267,18.230739432022347],[-96.99514391012235,18.227170243453486],[-96.99878493900263,18.227341330396655],[-96.99928308927673,18.22223520569088],[-97.00034437809416,18.218492311260377],[-97.00294975872828,18.212728089039047],[-97.00738328426314,18.208194707701182],[-97.00943248949199,18.20786553245074],[-97.00914424312418,18.206226515345406],[-97.00904483782818,18.205867249739015],[-97.01893741394946,18.19575755186372],[-97.02251594982863,18.192313792940013],[-97.02839238204308,18.18632240884307],[-97.03836371649373,18.176306135116363],[-97.04020449316181,18.174819248403594],[-97.03905890481309,18.172352761733407],[-97.0377095546591,18.172503329536767],[-97.04209413199521,18.156569417075843],[-97.06179340936427,18.15388792021713],[-97.08872171615172,18.14917492546425],[-97.09020456478146,18.15303118460082],[-97.0921160994285,18.152497604450105],[-97.09335468747787,18.152151587610888],[-97.09456377967837,18.151814030240757],[-97.09815234803256,18.150811669349082],[-97.0993202324122,18.15048686597089],[-97.10574035294843,18.148094364169083],[-97.10923406928077,18.150174974399476],[-97.11108763112992,18.149562302557342],[-97.11375802737518,18.149468438732015],[-97.11290089940138,18.15143949935873],[-97.1178676666575,18.156798499501065],[-97.12390311429039,18.162464150876474],[-97.13133500666123,18.158854595078594],[-97.13388521714205,18.157720319970053],[-97.13864043464633,18.167100652893964],[-97.13786445661964,18.168329419862687],[-97.1381137653238,18.16967684187756],[-97.13397632656324,18.170745563193066],[-97.13444718937723,18.17151513495355],[-97.1333926881291,18.172682044383237],[-97.13510256339646,18.173980871101776],[-97.14029895695677,18.17335275813639],[-97.14055425235892,18.173198007408075],[-97.1415063516572,18.170524992853643],[-97.1440347703458,18.163428589168518],[-97.1446217874743,18.16600217374264],[-97.143684370411,18.168025855419444],[-97.1457486338897,18.17001994611377],[-97.14675391741406,18.171223682015125],[-97.14698580037759,18.17209150879853],[-97.14762998261227,18.172250575685666],[-97.15076747437752,18.176733995700488],[-97.15412499904329,18.179773497443364],[-97.15425045645372,18.18159360142647],[-97.1588679569266,18.184942690171113],[-97.1614673853918,18.185208674929413],[-97.1611907307398,18.189194403458487],[-97.16101013409889,18.189754104115536],[-97.16402610529991,18.191303788950393],[-97.16382448904773,18.19394739593116],[-97.16717828356201,18.19417310313679],[-97.16813600657196,18.19792161455507],[-97.16736801633147,18.200903284920628],[-97.18339377161561,18.199009157085243],[-97.19235318105405,18.192374985322147],[-97.18722193873572,18.17515719686139],[-97.20522349065709,18.171480142148084],[-97.21275075196985,18.165136871396214],[-97.21434846514165,18.16366763257173],[-97.2173221748539,18.16443167421147],[-97.22005471806898,18.169015553178383],[-97.22184063480864,18.169308333819515],[-97.22258741187585,18.170002142696205],[-97.22288542393983,18.170171278337477],[-97.22420845154375,18.173012104596694],[-97.22430050647739,18.173195807945092],[-97.22514100282848,18.17429360465036],[-97.22532419652362,18.17434302019717],[-97.22618903413843,18.1741239139119],[-97.22684166191164,18.173819924376858],[-97.22758602251173,18.173587915628275],[-97.2277840097052,18.1736687935948],[-97.2279103190848,18.173885892274996],[-97.22802319626646,18.17416283064182],[-97.22818601181672,18.174432310726274],[-97.22925268918186,18.173459821879703],[-97.22907807053383,18.17302810773026],[-97.22913481256654,18.172039093100807],[-97.2295251984084,18.172040856691126],[-97.23103973792843,18.172486269016986],[-97.23118143040261,18.17251060668417],[-97.2313573543367,18.172476319284442],[-97.23252080485503,18.170627308577536],[-97.23258397331011,18.170457448763898],[-97.23277651843102,18.170330762572405],[-97.23688020959509,18.173164835867738],[-97.23761858604422,18.172822096112554],[-97.23765677715954,18.172602219101577],[-97.23774642520658,18.17239872409209],[-97.23782729304486,18.17217370930092],[-97.24268671539738,18.171308558106375],[-97.24276934567229,18.171247132211022],[-97.24375896131369,18.16994886613736],[-97.2438318928975,18.169584282424978],[-97.24389529971097,18.16710251142331],[-97.24412192966417,18.16688300543484],[-97.24443568404035,18.166782514193017],[-97.2449281216555,18.16679231559982],[-97.2451445263859,18.166896272885765],[-97.24590667944221,18.16911366724156],[-97.24575769025142,18.16928748796863],[-97.2467866976558,18.169740207463065],[-97.24715247321006,18.16965727584767],[-97.24744499372724,18.16946699624799],[-97.24753942102922,18.169280942048715],[-97.24762468209292,18.169042084227897],[-97.24746952056216,18.167808367276564],[-97.24748596249248,18.16765134970194],[-97.24788846534369,18.16739071385092],[-97.24814516654487,18.167309959952263],[-97.25056291392957,18.165327598769693],[-97.2507758924869,18.165276050150965],[-97.25100607067895,18.165269886602914],[-97.25135751622236,18.16528549881201],[-97.25187609880271,18.166157726220888],[-97.2516933150971,18.166547891826667],[-97.25223059019964,18.16716287108102],[-97.25233764335411,18.167100739133446],[-97.254308016665,18.165221443830262],[-97.25447227576268,18.165121593101844],[-97.2547818044863,18.163049307328663],[-97.2548847117493,18.162980575226868],[-97.25503865705781,18.162889461895247],[-97.2552249680279,18.162831367147362],[-97.25566093893883,18.16282116342967],[-97.25598480580675,18.16290339658292],[-97.25651013291622,18.163215963806238],[-97.25679638050985,18.163416985397816],[-97.25818234618112,18.164131654526273],[-97.2583340791308,18.16410445710011],[-97.25853823259177,18.164014927461494],[-97.25876693731885,18.16394217111315],[-97.25906314025144,18.163855550802793],[-97.25939005168749,18.163849887324886],[-97.25979697446536,18.16371077484996],[-97.25998383721497,18.163636694009995],[-97.26013134590647,18.163489381515546],[-97.26074162712331,18.162556827371418],[-97.26091479094481,18.16239432758357],[-97.26111921598198,18.16229680480984],[-97.26553335932891,18.160685402633362],[-97.26560282077725,18.160466758037785],[-97.2662663976298,18.158545325083878],[-97.26644295024306,18.158526902070207],[-97.2668094805623,18.158586462099265],[-97.26709115839361,18.158634911609283],[-97.26767069995742,18.15884003884304],[-97.2679780823454,18.158947403936224],[-97.27196480000788,18.158596042499198],[-97.27651518351468,18.156799751949677],[-97.27676428940839,18.156863587668227],[-97.27751226748421,18.15727907270326],[-97.2778048084752,18.157784195359113],[-97.27881624761767,18.160093612431467],[-97.28138985047605,18.160526547091877],[-97.28507602474212,18.158565334282287],[-97.2876561172871,18.159426192085277],[-97.28806119267756,18.159761922889857],[-97.2887267839871,18.159974984301925],[-97.28938374893744,18.160054269583213],[-97.2897440710289,18.15999806407183],[-97.29255445817495,18.159053111413698],[-97.29287424167734,18.15907942645572],[-97.29321021664254,18.159083981885033],[-97.29634764292751,18.16007525238325],[-97.29671007338482,18.160070875773556],[-97.29730663267924,18.15984832365018],[-97.29744499342024,18.159738999957312],[-97.29779792567894,18.159192920875796],[-97.2977713339011,18.158908422718696],[-97.29912217243617,18.157734618888014],[-97.29949364163139,18.157772958818214],[-97.29966060509781,18.157795989319595],[-97.30017263413833,18.15781203646776],[-97.30148550702154,18.157386745425924],[-97.30183183609103,18.157397595485747],[-97.3019695888209,18.157472848729242],[-97.30203867438047,18.15762477062742],[-97.30340868360412,18.159078557932332],[-97.30354250934573,18.159027574870322],[-97.3036048174136,18.158895532128042],[-97.30393104754967,18.15708592460163],[-97.304031920304,18.15685494822975],[-97.30667859901973,18.156726889296692],[-97.3068876546281,18.156730353778528],[-97.30719383256462,18.15670840713443],[-97.30740024875934,18.156706984192624],[-97.30784429021583,18.156515946821855],[-97.30812260525221,18.156343369310605],[-97.3090269589166,18.155244541071397],[-97.30909912291634,18.15506551365661],[-97.30923409057942,18.154917061557455],[-97.30934601320615,18.154745529527816],[-97.3094304613777,18.15453168243772],[-97.30949092054846,18.153551289094537],[-97.30954470632048,18.153426860595175],[-97.31154260559612,18.15248463165534],[-97.31176183967455,18.15234961125941],[-97.31189646366062,18.1522750008063],[-97.31406551324005,18.14949940753553],[-97.31430974651266,18.14935728354169],[-97.31466359227551,18.14914764715047],[-97.31483469186679,18.148971710008425],[-97.31803997882628,18.146324239649402],[-97.31813042315599,18.14619659549959],[-97.31824514300109,18.14597948617495],[-97.31903695921477,18.14599632288082],[-97.31927042629286,18.14616912850147],[-97.31941373290823,18.14632335605876],[-97.31960041729991,18.146415882808412],[-97.3204214553229,18.14654396965176],[-97.32059012511951,18.146438887510214],[-97.32076972673684,18.14625532814233],[-97.32096941518353,18.146099350140616],[-97.3219272119577,18.145410068483784],[-97.32220485870471,18.145333023823525],[-97.33060260568686,18.145108066950684],[-97.33072789393435,18.145064677394373],[-97.33112735239285,18.145211105144483],[-97.33132946020709,18.145335624286474],[-97.331885312194,18.145494800725828],[-97.33209224887753,18.145477596996557],[-97.33239665287812,18.14502204687801],[-97.33250846442166,18.14464720169343],[-97.33516030916547,18.141536945717462],[-97.33522221508775,18.141278730359943],[-97.3351386413978,18.139868905615515],[-97.33507418916525,18.13966193716834],[-97.33644416125543,18.136799696446587],[-97.33657104721613,18.136709062484556],[-97.33744311741305,18.13679135262811],[-97.33763488915366,18.136734262005575],[-97.33801956061637,18.136344256684765],[-97.33814596535024,18.13602503824052],[-97.339674593322,18.13071413084134],[-97.33967411102992,18.130485549543437],[-97.33967244950117,18.130189859144878],[-97.33983731531208,18.13001976404513],[-97.34185163752397,18.128900409520668],[-97.34199184029035,18.12866043624615],[-97.3420855193782,18.128332320501613],[-97.34228321106735,18.127857686202105],[-97.34326127877125,18.126280718922715],[-97.34347030172648,18.126157804630964],[-97.34531540382903,18.1259103861222],[-97.34591534667078,18.125579308320937],[-97.346420385682,18.124355574927733],[-97.34971170361479,18.123407550981085],[-97.34990136507076,18.123555079163623],[-97.35010208760855,18.123649833075206],[-97.35100807542892,18.123722190652757],[-97.35134143911819,18.12373252639088],[-97.35244042581508,18.123580684281308],[-97.35259188511031,18.123487996998733],[-97.35434497764447,18.12189147310204],[-97.35450209695847,18.12190519394835],[-97.35476227634564,18.12188669629569],[-97.35485787220983,18.121801129175708],[-97.35472659771972,18.119012905591603],[-97.35477329448833,18.118672973476464],[-97.35523873778891,18.11660930605518],[-97.35539138596579,18.116481242485634],[-97.35613257772059,18.11602878874504],[-97.35640979296602,18.115780644230995],[-97.3591250940176,18.114084402214473],[-97.35942887173451,18.113832034396808],[-97.35964560740848,18.113609763815703],[-97.3600708111502,18.113201249688984],[-97.36028093089828,18.112961293062483],[-97.36131529378872,18.111018231152002],[-97.36151130977555,18.110827411420246],[-97.36308833038413,18.10926693871488],[-97.36338388618123,18.109101417736667],[-97.36377823952506,18.107551668702456],[-97.36394087815125,18.10726768601603],[-97.36588558776526,18.106562424158938],[-97.36659603620791,18.104226007981822],[-97.36677284970835,18.104204914635545],[-97.3670207357851,18.10413751348119],[-97.36904215870453,18.103150748961298],[-97.36904723669954,18.103000411559776],[-97.36898603879678,18.10288655602318],[-97.36882655086117,18.102669167587408],[-97.36863491761187,18.102595504240526],[-97.36804514413427,18.102267156368782],[-97.36785113388834,18.102199902679615],[-97.36715043775575,18.102077375390138],[-97.36704142595477,18.102012038446787],[-97.36684317097388,18.101840662055338],[-97.36669357136844,18.101692038729425],[-97.36651753236794,18.10138722958436],[-97.36655625301347,18.10118000536579],[-97.36776438383953,18.10039338376947],[-97.3681689583837,18.1003279425629],[-97.36870326526855,18.100424122174047],[-97.36893024868101,18.10056392194224],[-97.3691948632158,18.100687178746796],[-97.3698979173945,18.10100102752932],[-97.37006905355281,18.101147953365967],[-97.37020345252643,18.101284892032083],[-97.37064941057258,18.101834368199206],[-97.37075740833956,18.101957262281132],[-97.37121400590229,18.10223109285357],[-97.37165754042036,18.10238083645652],[-97.37319596676889,18.10200182667279],[-97.37353847152929,18.10172330276771],[-97.37348138129266,18.100119230490577],[-97.373418660462,18.100055327550024],[-97.37380196685422,18.099158003966068],[-97.37417211276244,18.09882632081559],[-97.37457717492447,18.098316042002807],[-97.37480002577195,18.097896391838958],[-97.37491508828543,18.09770120871258],[-97.37508309594654,18.097544381064438],[-97.3754122823762,18.097306881706857],[-97.37558845867011,18.097223543638847],[-97.37612603894428,18.09702542848504],[-97.37633454340977,18.096973307029998],[-97.37645285592674,18.096873310739795],[-97.37650903955011,18.096750669641665],[-97.37657135201357,18.09651266943257],[-97.3763675245549,18.0960018030853],[-97.37627916764296,18.095784631693675],[-97.37623695391625,18.095568883474925],[-97.3761107928288,18.09532702241006],[-97.37613646699282,18.095115355172197],[-97.37677963910573,18.09441459703129],[-97.37715096118967,18.094413220444267],[-97.37836794149035,18.094352033070322],[-97.37883392079101,18.094370598667012],[-97.37911316008137,18.094351969726517],[-97.37939107486784,18.094372640674635],[-97.37964348400749,18.094398577530683],[-97.37987069312044,18.094420711096973],[-97.38020890916289,18.09453100050814],[-97.38028961281299,18.09457888116566],[-97.38039124700487,18.095083923808886],[-97.38037665303165,18.095225762855364],[-97.38001562878827,18.095377867600178],[-97.37964818673629,18.095484388815123],[-97.37936737419096,18.095607950228157],[-97.37911939106272,18.095792748184294],[-97.37904802631886,18.095985302851602],[-97.3790513244715,18.09616245408131],[-97.37982670611058,18.096937542113437],[-97.38005203650039,18.097045912994417],[-97.3803506143791,18.0971351877742],[-97.38066700861106,18.0971929814134],[-97.38111232174589,18.097283366683143],[-97.38139992626003,18.097274522441012],[-97.38174337934129,18.097258545650618],[-97.38232874080558,18.097214609021194],[-97.3826545701616,18.097171530044363],[-97.38290216391215,18.097249975495913],[-97.38536639376912,18.099249852989715],[-97.38553066471871,18.099325729442228],[-97.38568448879681,18.099436693978078],[-97.3858681934991,18.09957057806946],[-97.38595958789415,18.099608801313252],[-97.38611430544296,18.099693234967788],[-97.38618450440936,18.099810477854476],[-97.38801501678256,18.10215074970654],[-97.38962493969552,18.10085468334438],[-97.38976381972947,18.10085895409668],[-97.39030030814132,18.101442011358188],[-97.39033827604925,18.101691049111253],[-97.39046585738743,18.102031368189785],[-97.39051382939817,18.10212070858779],[-97.3906335985198,18.10214209587548],[-97.39072677979601,18.10212725574189],[-97.39121481077217,18.100292084072862],[-97.39130081358621,18.10021505523514],[-97.39367229589016,18.10080138270564],[-97.39377498466655,18.100503552642635],[-97.39408086346612,18.100044386776574],[-97.3942666296241,18.10003238893279],[-97.39577032341049,18.103058573531882],[-97.3958922249962,18.10329248282011],[-97.39682212766479,18.104029239866236],[-97.39702101836235,18.103902557785545],[-97.39721331971748,18.103696000819014],[-97.39748924821856,18.103483158490917],[-97.39908698823808,18.10282399728277],[-97.40254817776184,18.10732794901918],[-97.40277609670716,18.107441168730077],[-97.40340927261184,18.107354351530432],[-97.40346868212782,18.107241089568674],[-97.40352031414284,18.107083326577026],[-97.40358277988298,18.106049491895362],[-97.4036581618276,18.10580782847063],[-97.40378564309208,18.105599275479904],[-97.40396090218411,18.105347924646765],[-97.40422578518718,18.10518784594518],[-97.40442200148561,18.105140745619053],[-97.4046277737952,18.105085084848838],[-97.40486132231877,18.10503027574123],[-97.40513071988897,18.105011974306876],[-97.40559122359292,18.104822478589995],[-97.40578414656107,18.104687923305733],[-97.40558464042078,18.10363603917517],[-97.40533902581558,18.10322129636836],[-97.40516467637661,18.102371203285486],[-97.4052161809119,18.102234874255657],[-97.4074767172686,18.102545382283267],[-97.40821645322092,18.102320170645328],[-97.40863753905882,18.10220027961384],[-97.41078802142994,18.102469729365396],[-97.41091247546848,18.10248904632124],[-97.4113272610615,18.102280429931113],[-97.41135021841711,18.102148344820478],[-97.41108975306474,18.10106922331596],[-97.41096960352758,18.100782266416275],[-97.41097121379153,18.100180347930745],[-97.41104135192296,18.100023150846766],[-97.41158090296068,18.09912324604346],[-97.41156741689349,18.098972342001503],[-97.4113964519442,18.09854219226702],[-97.41131185845563,18.098300587478036],[-97.41127237355653,18.09809577292708],[-97.41128666293616,18.09794571922629],[-97.41125362555408,18.0967639565622],[-97.41134013445458,18.09655018978316],[-97.4115895267787,18.096342597953367],[-97.4117783398429,18.09629217640486],[-97.41370326575338,18.09723503821442],[-97.41382521233407,18.097228597781907],[-97.4141154766964,18.097140100360775],[-97.4142217563732,18.097010564677078],[-97.41441511613641,18.096494187626433],[-97.41440880389251,18.095852388186188],[-97.41543605251519,18.09158349221741],[-97.41842485881926,18.08954363058649],[-97.4158449770951,18.08634313208256],[-97.41827320685559,18.086036334585287],[-97.42309162228815,18.077732759689923],[-97.42389175607298,18.074897179272682],[-97.42579395799851,18.0745403468664],[-97.42555917786405,18.069275975613664],[-97.42956259759899,18.06967941265782],[-97.43236001692367,18.068519717520758],[-97.43487343929053,18.070730294389477],[-97.4347627237014,18.068581310404397],[-97.43782259331721,18.069231639557643],[-97.43822091483139,18.071396235876136],[-97.44136299641059,18.071943188356613],[-97.4418265467391,18.068924975145876],[-97.44370238622673,18.06862719157067],[-97.44317153792804,18.066196143124728],[-97.4444576133618,18.06395206327619],[-97.44763822899961,18.06623180144601],[-97.44840173092865,18.065416427906143],[-97.44671167464821,18.062101111927404],[-97.44688442668757,18.061785533336035],[-97.44952547958235,18.06142070743499],[-97.44748097418608,18.05551617957707],[-97.44785727278565,18.05291813693043],[-97.45146920197641,18.051620690389484],[-97.45117253597226,18.050270693166],[-97.45470421603386,18.048645202792216],[-97.45545441244201,18.04554035191569],[-97.45322497578002,18.043749383348654],[-97.4551559126686,18.041480818174705],[-97.45801613835494,18.04082696469368],[-97.4598338036136,18.036802126196903],[-97.4629274711856,18.03759846441841],[-97.46330951504552,18.033803459543435],[-97.46480979226612,18.031555172931405],[-97.46683958749276,18.030878626791946],[-97.46874052971629,18.03070746465079],[-97.46534801471768,18.029007824388657],[-97.46691820541434,18.02695130302675],[-97.47156439027776,18.026665107640383],[-97.47973598360608,18.027063332694922],[-97.4797211514321,18.027202301293187],[-97.47989867873218,18.02718090604793],[-97.48016573588109,18.02716446776043],[-97.48041656693056,18.027355507826485],[-97.48064112822374,18.027384324202615],[-97.48255482239045,18.02721334698373],[-97.48924458408999,18.025591570291283],[-97.48993400774646,18.02612750411356],[-97.49283158299374,18.02726895004423],[-97.49432655111957,18.028127803297252],[-97.49918815877476,18.02978844971375],[-97.5032663473146,18.029207759234737],[-97.5059151063399,18.02782160761319],[-97.51389712897867,18.037695028096493],[-97.5154886837056,18.039107851366282],[-97.52237450281802,18.04464770444332],[-97.53181020193762,18.045662950711346],[-97.5351304894599,18.04615762915182],[-97.5369007774122,18.04332016398854],[-97.54003244861758,18.040235689575923],[-97.54121736800863,18.038639311381644],[-97.54275948651832,18.03396358394798],[-97.54390545867898,18.03344457536133],[-97.54823815043608,18.038279873884505],[-97.54965517928156,18.039813280865076],[-97.5576307410139,18.04688137479212],[-97.55632300751085,18.051681407260503],[-97.56379168708946,18.06258058939244],[-97.56174299462151,18.07296047937001],[-97.56296329418859,18.07625605134905],[-97.56550508462601,18.079387899207802],[-97.56681641207564,18.081645070885088],[-97.56739516698258,18.089778046916763],[-97.56808545005862,18.09211300467331],[-97.56961979055922,18.103387368756557],[-97.59745500289779,18.126457696111174],[-97.59700877705598,18.125499115726484],[-97.60815351373412,18.131010656508124],[-97.60578242583011,18.135223169859614],[-97.60439399616627,18.137388054123107],[-97.60614610632012,18.141098123765687],[-97.60667262133569,18.144458013211818],[-97.60817423144931,18.146828606234862],[-97.60820236915424,18.152472062915137],[-97.60856317506625,18.152909623635253],[-97.60999358236074,18.153942239422634],[-97.6121438094429,18.15247552705847],[-97.61797897793656,18.15369600666935],[-97.62057394188605,18.15584239635149],[-97.6205765422228,18.156053509164053],[-97.62340458351969,18.157641751629797],[-97.62448021902941,18.1582621212022],[-97.62664203311596,18.15944370871324],[-97.62946455608738,18.161037462974264],[-97.62993796300981,18.16123737617545],[-97.63193812828922,18.162344909879664],[-97.63382112241084,18.163419228344424],[-97.63638214860737,18.164821803276027],[-97.63770322518928,18.165551361837288],[-97.65253659566139,18.17488940538408],[-97.65317592317695,18.175288718528577],[-97.64047155477607,18.18877975487493],[-97.63941402356824,18.18986538532681],[-97.6379688184951,18.191425034498593],[-97.63594431028861,18.1935952062081],[-97.63585328349967,18.193746722736307],[-97.63541518745825,18.195310044531027],[-97.63402364837805,18.20006805634432],[-97.63641960448933,18.20243292750405],[-97.63713121492361,18.205304842639066],[-97.63745623590381,18.207098718579118],[-97.63822301529393,18.212987700451606],[-97.6374607830719,18.22019861479299],[-97.63747521669552,18.232038688179387],[-97.6389429874647,18.23825095383563],[-97.63895244830036,18.24200734086139],[-97.6389699925877,18.24520317412538],[-97.63955162536672,18.25248291864864],[-97.64165132373978,18.26276131205367],[-97.6429204706871,18.272836651868772],[-97.64309280949601,18.274204770632252],[-97.64327363831882,18.27563593915835],[-97.64455414407189,18.280148135516413],[-97.64985706563527,18.28694325727662],[-97.6518764126161,18.28949647003037],[-97.65311011447756,18.291051981191345],[-97.65471371224947,18.29309255433344],[-97.66039211630272,18.292750466196253],[-97.66235133009809,18.292151881528525],[-97.6667770335809,18.290742196972815],[-97.67317210601686,18.290779109096434],[-97.67472483137487,18.29072100805996],[-97.67747145834772,18.291180470125482],[-97.68069728808405,18.28970974879178],[-97.68633147170794,18.289376832628193],[-97.6997063115794,18.28822905619694],[-97.71085630025556,18.28534215993392],[-97.71413454153617,18.279652381708672],[-97.72123201953872,18.27608445252457],[-97.72127383104583,18.276048183456112],[-97.74974722363135,18.275763949664054],[-97.76186219464859,18.280956691893323],[-97.78319462050274,18.28628188147968],[-97.79402528299914,18.283893097877638],[-97.7941154229527,18.28387632831391],[-97.79729701825266,18.283174867720845],[-97.79882887666014,18.281201631116176],[-97.8075553801105,18.2705257298893],[-97.81545511299032,18.262046669301753],[-97.82761713817405,18.23657957122765],[-97.82432285080966,18.227293298911377],[-97.82296059747449,18.223403993712054],[-97.8247236167698,18.222859243624384],[-97.83956573180353,18.21827993000221],[-97.84410307251773,18.216151147275184],[-97.84476319403541,18.213298157293707],[-97.84932349184953,18.204992893376243],[-97.85922661894932,18.192289155452727],[-97.85463301994992,18.191136325448838],[-97.84982015628009,18.189172327814788],[-97.84995074612073,18.18808678830976],[-97.85052101414607,18.18305708042385],[-97.84712079245429,18.180672821569487],[-97.8444819061911,18.174218092778574],[-97.84101277283264,18.17180776025407],[-97.83959449092038,18.170771138701753],[-97.84310833363241,18.16955595421001],[-97.84419445775706,18.171041418539005],[-97.84790231360165,18.17248284258403],[-97.85362667440063,18.167925005968698],[-97.85565765409251,18.15923317439882],[-97.85734381726456,18.15558091296316],[-97.86394149042889,18.1479666089769],[-97.86748293733467,18.14457129675651],[-97.86666013380108,18.12834077811067],[-97.86722086370588,18.114895317878904],[-97.8640484524716,18.111375497133963],[-97.86282896777135,18.11032452445886],[-97.86057480122332,18.10313535910001],[-97.86050797289033,18.101829084222743],[-97.84945998408705,18.083740671622138],[-97.82585269402784,18.07609549486591],[-97.81836026019533,18.073015242308713],[-97.81067031695892,18.067717176501503],[-97.81371798456604,18.0628656555549],[-97.81843856270791,18.060150952657068],[-97.82020454837556,18.05764106625628],[-97.82517045695175,18.05416364255086],[-97.82640675316264,18.053264271723663],[-97.82918014676017,18.051140399390192],[-97.83056273480418,18.051040754061034],[-97.83299851797602,18.050734772793476],[-97.83478214779001,18.049798523991285],[-97.83519583191821,18.047505607682524],[-97.83557166852557,18.04538741463864],[-97.83616239077105,18.03637254129785],[-97.83651823943893,18.034552208178752],[-97.83793854244772,18.030228501605393],[-97.84273349790152,18.01893061521946],[-97.84269077089323,18.005197612783263],[-97.84260445034221,17.99608173540389],[-97.83563138721235,17.983450183988396],[-97.82627191085885,17.972677156168174],[-97.82601139442056,17.97284080742054],[-97.82140414728514,17.988161612654608],[-97.81624812759401,17.99195482354935],[-97.815582977357,17.994123670072895],[-97.81236262814167,17.99453650102754],[-97.80987997303077,17.998303477022148],[-97.80665171322278,17.99889923724197],[-97.8027613350618,17.998448284517224],[-97.79676084927098,18.001870937573642],[-97.79643143135002,18.00216166209742],[-97.79606566391334,18.002306073987654],[-97.79567807818478,18.00266416668842],[-97.79530373730876,18.003026407977075],[-97.79092097609748,18.00415809887346],[-97.79042836238091,18.008235553444763],[-97.78905994671692,18.011169546284066],[-97.79088652920467,18.01406914063],[-97.79312364200291,18.01418998760971],[-97.79675278366199,18.01621484749836],[-97.79775943809113,18.033500195884756],[-97.79760536101384,18.03687753560041],[-97.7800634205966,18.058117996588862],[-97.77167109154101,18.06836754752237],[-97.76427982783378,18.068399582133964],[-97.76020342851308,18.066129402707645],[-97.75859766157265,18.063777720865687],[-97.75281061320538,18.06091613347246],[-97.74944213912772,18.060847391331606],[-97.74882714661595,18.060422799528112],[-97.74875547418424,18.058680059413234],[-97.74246425778006,18.055509060825955],[-97.74380242246559,18.051657870625093],[-97.7402769969118,18.046715037069646],[-97.72992615597542,18.037322928557046],[-97.7150025841683,18.029755627908912],[-97.69883006772409,18.021693893182373],[-97.69878332843786,18.021263136576522],[-97.69858594710303,18.02085491813915],[-97.69777484389164,18.018816455580236],[-97.69978115141669,18.01644614378182],[-97.70012242367528,18.01600792880714],[-97.70026595381046,18.014288901297277],[-97.70032569393254,18.014042232961913],[-97.69995425164495,18.011421487415987],[-97.7004356359505,18.004727512344687],[-97.70046597084513,18.004276833521885],[-97.69974223090924,18.001636527609662],[-97.71874846728133,18.00382380882536],[-97.7285381583111,18.012225602765966],[-97.74082557512605,18.009086483603653],[-97.74330279863955,18.008889161962657],[-97.74508168300338,18.007135420222937],[-97.74869421222712,18.00756302077525],[-97.74943041278846,18.006407000455397],[-97.75353062494787,18.004707780028298],[-97.75448461008807,18.005351484722098],[-97.75832805994156,18.00408553227703],[-97.76012998762337,18.006652804506984],[-97.76252852666403,18.00684429483158],[-97.76307618755635,18.00693881046334],[-97.76638100317354,18.00591488312415],[-97.76888399632026,17.99904177167616],[-97.7688098980368,17.998846317302764],[-97.76956215600916,17.997415771711644],[-97.76632925275806,17.995017027061465],[-97.76663952955909,17.992350230524266],[-97.76494595474082,17.990723005907853],[-97.76734755547398,17.98867755215946],[-97.76724361445628,17.982521994698516],[-97.76818835280005,17.976782760956212],[-97.76817795741522,17.97650410571123],[-97.77413026359363,17.976848982231616],[-97.77425882052933,17.976548145178924],[-97.774057721661,17.97404014700163],[-97.77326173081224,17.97254286452761],[-97.77277870741068,17.971545817873675],[-97.77574088324855,17.96918428075776],[-97.7760288881189,17.96895149942935],[-97.77811527126727,17.96889781637242],[-97.78001976130867,17.96644503115766],[-97.78346946314957,17.966298973557684],[-97.78397463512874,17.965972098276154],[-97.78445327578129,17.96565350298647],[-97.7850178396555,17.96538855541769],[-97.78734516063616,17.96399968827268],[-97.7879112197719,17.963500439910035],[-97.79077117861135,17.961820627297243],[-97.79139579662717,17.961992248450315],[-97.79634030061465,17.961777000155735],[-97.79631833147664,17.961404084885487],[-97.79629300899842,17.960895650468615],[-97.79862263958773,17.96135302353713],[-97.79955157004474,17.959821753604558],[-97.80045875845161,17.960089830901268],[-97.80242538143295,17.959405864390476],[-97.80337465045523,17.960458566323723],[-97.80426924488404,17.958289743887235],[-97.80428095581414,17.95778047440359],[-97.8035403082564,17.956960618115886],[-97.80336587110435,17.95648395761509],[-97.80322741538157,17.955939575425816],[-97.8033023476512,17.955362541302406],[-97.80346379371787,17.953775384210246],[-97.80386210038301,17.95335219354746],[-97.80478023339413,17.952594013215787],[-97.80558276682035,17.952053357975558],[-97.81073294835699,17.949902590615636],[-97.81275822948623,17.946456924199083],[-97.8130017596381,17.94416692180141],[-97.81312423021535,17.942912799194232],[-97.81302067870371,17.941329942184836],[-97.81251624601595,17.939962868030705],[-97.81184389429143,17.93915313894513],[-97.81122605785765,17.938145398697486],[-97.815110689434,17.926410070063298],[-97.81921201623499,17.915823648071978],[-97.82175001695941,17.914626695253503],[-97.82696628952965,17.91457112924303],[-97.83083989573845,17.913700809720126],[-97.83235576397612,17.908532345215008],[-97.8495982602463,17.910758136623997],[-97.85401065972763,17.911573028294413],[-97.85938971439174,17.914052947418668],[-97.87210318689705,17.917498176295283],[-97.87911162952986,17.9179092132473],[-97.88083606025742,17.917539544055842],[-97.88119492079034,17.91742743801086],[-97.88141377196575,17.917248185214817],[-97.88198989556889,17.91659014474027],[-97.88250625741375,17.916091072029815],[-97.8829254357608,17.91555493347579],[-97.88293427970359,17.914789234901377],[-97.88430522244363,17.914009736397077],[-97.88467027145379,17.913742999536908],[-97.8850571469581,17.913935974013327],[-97.88665747978848,17.91340797626947],[-97.88729817705809,17.91337298349191],[-97.88797433777432,17.91333752073473],[-97.889689281845,17.912492546929855],[-97.89017656279248,17.912532932878662],[-97.89344556336022,17.912745919239285],[-97.89436825055498,17.913006388548524],[-97.89549496239232,17.912808582111495],[-97.89610029503547,17.912536243859677],[-97.8965869579684,17.9122606538848],[-97.89710125968082,17.91222505995364],[-97.89815813882905,17.911905275733886],[-97.89851459699798,17.911613368204826],[-97.89894153301356,17.911389687118174],[-97.89918115799628,17.910871019272292],[-97.90079178243934,17.910204427752888],[-97.90137683596106,17.909904639645276],[-97.90223967310448,17.909295682558763],[-97.90310485884157,17.90915696378113],[-97.90763945816383,17.910098956141496],[-97.91062176643379,17.91165999596194],[-97.91329807498755,17.911862282820834],[-97.91399201567913,17.912045824383597],[-97.91468452814678,17.912684526433793],[-97.91480559199931,17.912889020867283],[-97.91573767064068,17.915486116668774],[-97.91706952769096,17.915458157918636],[-97.9181920678351,17.915124764559494],[-97.91847435000881,17.91534833984008],[-97.9201020035166,17.916880465933104],[-97.92659277340289,17.917360702750557],[-97.9287270449048,17.9164811285504],[-97.92976552523862,17.916921714403372],[-97.93630192416049,17.91717912293535],[-97.9375213952681,17.918967858799647],[-97.93788904957086,17.92066475559983],[-97.93749195190128,17.92247642540616],[-97.93650737377288,17.924007121308478],[-97.93597075353995,17.9248449807896],[-97.93976697804226,17.93465746189213],[-97.93783942512016,17.940176325111338],[-97.9414547981757,17.944548244208306],[-97.94200575478101,17.945081078848375],[-97.94428604876663,17.94806560565769],[-97.94869615061691,17.94843602264939],[-97.94292090626902,17.956019791879726],[-97.939713218176,17.960339858632267],[-97.93516503624625,17.96252288955378],[-97.93738031659399,17.967900846436805],[-97.95171631519713,17.966567930430813],[-97.96756287858466,17.970701640280765],[-97.96891875054007,17.968513653933144],[-97.97129599713662,17.967378731206452],[-97.9718061230609,17.967381434744823],[-97.97445754175607,17.965530705245214],[-97.97937669643937,17.964441640369273],[-97.98263585358268,17.96897466692195],[-97.98355887446445,17.974449876856625],[-97.98667359656042,17.978682189664937],[-97.98998611763636,17.975357637523985],[-97.99441870460566,17.974742932900767],[-97.99485820573045,17.974694313190753],[-97.99861445257534,17.975356874074237],[-97.99888059061112,17.97546754821377],[-98.00205255702792,17.97717691853444],[-98.00228776692381,17.97732174724473],[-98.00267387237795,17.97734425086429],[-98.00359157512514,17.97768627739373],[-98.01515164409432,17.980552147249114],[-98.01526025600384,17.980826524888812],[-98.01541271206361,17.981143248394744],[-98.01771356387144,17.983345498065887],[-98.01806392741435,17.983726410652196],[-98.01878690571664,17.98444622334108],[-98.01904822384438,17.98499519104564],[-98.01970537631115,17.985672537206312],[-98.02021169198747,17.985738285001617],[-98.02450404937753,17.98526730575844],[-98.026436743673,17.98647331760742],[-98.02971101065344,17.99165611935217],[-98.02978684024487,17.99183644063271],[-98.03041127205273,17.991874147795613],[-98.03070316658119,17.991847717157157],[-98.03360831217071,17.988765899655164],[-98.03416580152475,17.98818289154491],[-98.03501458049772,17.98768501053297],[-98.037376908292,17.987836228698427],[-98.03787452652864,17.987531853105054],[-98.03855232533954,17.98627994853217],[-98.03769646231888,17.982705163409832],[-98.04447681678175,17.97939043677019],[-98.04671375822352,17.976205799501827],[-98.04633919214217,17.97935836345266],[-98.04756515331894,17.98106558682298],[-98.05161561590728,17.982190768104317],[-98.05202769575982,17.98218007922395],[-98.05422996582081,17.982927902471545],[-98.05917941094015,17.98193532697934],[-98.06083537259826,17.984496766758355],[-98.06545680894095,17.9855713939113],[-98.06995778358123,17.982606107947333],[-98.07494108552709,17.98070628793971],[-98.07918892737183,17.9821186505618],[-98.08186969560052,17.981342803043106],[-98.08777138459851,17.98309771613242],[-98.08954035292652,17.984366978950334],[-98.09267878676155,17.983620190810882],[-98.09473173645449,17.985299576689613],[-98.09923401000196,17.98165840362043],[-98.10440354996365,17.981747181171613],[-98.10778620433723,17.982847568585157],[-98.1110337669042,17.981761705332644],[-98.11302616066678,17.978425226606817],[-98.11555773961567,17.979760002246167],[-98.11689324097051,17.98247673271186],[-98.12301839820981,17.984387456720924],[-98.12936085297162,17.98722192353557],[-98.1321385591391,17.98344226914969],[-98.130325711225,17.97836566826669],[-98.13063012054454,17.97839584502276],[-98.13443308492856,17.97463404002741],[-98.13705906495824,17.974718655055824],[-98.14333057721495,17.97163433014248],[-98.14406472870115,17.970635830454228],[-98.14815950570562,17.971806220323515],[-98.15298321556872,17.968500599632534],[-98.15336945069367,17.967409421797356],[-98.15539436164727,17.963611277228154],[-98.16005424366432,17.962052371356208],[-98.16242998731457,17.962527040861005],[-98.1652224952187,17.956596255935608],[-98.16550901373256,17.95434694710201],[-98.16969798689541,17.95261567177556],[-98.16921335300196,17.9479784142095],[-98.17055307007081,17.943085286007488],[-98.17356392345073,17.941929567315185],[-98.1734892998262,17.941122006760224],[-98.16910815573596,17.93581670135262],[-98.16900454072106,17.93329879023463],[-98.17255284253139,17.932980018620356],[-98.17291031290273,17.93171159275238],[-98.17289427714968,17.93154393806634],[-98.17202823311618,17.922553396238527],[-98.17074257321303,17.920891759854328],[-98.16686067173765,17.919859876292776],[-98.16529265586638,17.91764408295836],[-98.16629300346466,17.915778591538356],[-98.17046392606039,17.91485918704518],[-98.17015932896732,17.913052460289975],[-98.16764401473364,17.912522939661926],[-98.16762979749495,17.911486594875953],[-98.16757462862267,17.909873265493502],[-98.170181981562,17.908363576958777],[-98.17010667358994,17.90588161871716],[-98.17211603305469,17.903329451265733],[-98.17091110073318,17.90205837611643],[-98.17499845421719,17.901507709122313],[-98.17477718582887,17.89909353916198],[-98.1768946255255,17.89741692398178],[-98.18303961121904,17.89579038711412],[-98.18366576727527,17.897759584777532],[-98.18770765358619,17.895350876559576],[-98.19462630667556,17.8961436809696],[-98.19643720592705,17.89549825218188],[-98.19512281121581,17.89372996241218],[-98.19749668609086,17.891217968120657],[-98.20271011211855,17.890973577094996],[-98.20498048611722,17.889263642392564],[-98.20542571907527,17.889269078508278],[-98.2046668130053,17.888074859864503],[-98.20711701307204,17.886996215135753],[-98.20974640186176,17.87975814483582],[-98.23383809026836,17.879351680838795],[-98.23481594465989,17.87926594503955],[-98.24496907872708,17.87855359078128],[-98.24653759481697,17.878442637327566],[-98.24754673037171,17.883228213943823],[-98.25247796290233,17.884899194786556],[-98.2547748925931,17.883626531660752],[-98.25537558133578,17.88663948620632],[-98.25343142105356,17.889057324326643],[-98.25601946009391,17.891914310683433],[-98.25583274783367,17.893556148421055],[-98.25832349728915,17.895463937764077],[-98.25791981040607,17.898475167363983],[-98.25768069664969,17.898548632051984],[-98.25861362505879,17.899467771621403],[-98.2587725205725,17.903420090197642],[-98.26101730140363,17.906914456666016],[-98.26108506064378,17.908604496409566],[-98.26330322849469,17.910380517110184],[-98.26772572013374,17.91169226653767],[-98.26832784117641,17.91378112162232],[-98.26832628724122,17.91411867213128],[-98.26894270494512,17.91483039796225],[-98.26963687661504,17.915139463444632],[-98.26983046082006,17.915259634797337],[-98.26996817398185,17.915305858078852],[-98.26891862089252,17.91715775026603],[-98.26610905722697,17.918875891101493],[-98.26522617176641,17.920127653266377],[-98.26124995312853,17.922334733636376],[-98.26104752038157,17.92279268036083],[-98.26120282290725,17.92362874105919],[-98.26144204722993,17.923988575222722],[-98.26262957252135,17.926917952501412],[-98.26286310313247,17.927063742199607],[-98.26369891500684,17.928107573554087],[-98.26613441825305,17.925233777007577],[-98.26657348827155,17.92528176846764],[-98.27209765889592,17.92283129080778],[-98.27280510051128,17.922379413225826],[-98.27332302221402,17.92236536819098],[-98.27394592416141,17.92295860735919],[-98.27425477522121,17.92325633193576],[-98.27498099383251,17.924078969538755],[-98.27844319598444,17.92867469292156],[-98.27857588935211,17.928792793142577],[-98.2823101472182,17.935150323306402],[-98.28472306821192,17.931531848106886],[-98.28670745311467,17.93073600349237],[-98.28795014005914,17.92568120614152],[-98.29195404641746,17.919717476936114],[-98.29015889752372,17.916053075029026],[-98.29167731771827,17.91407523487925],[-98.29227493834594,17.9144264594849],[-98.29451976874691,17.912682638014928],[-98.2955133493391,17.912658380482583],[-98.29826736192473,17.91137314287522],[-98.29861588644178,17.90952288599209],[-98.30083093039298,17.907861482894305],[-98.30144134041655,17.904594748377292],[-98.30154372403877,17.904154892115287],[-98.30352715768595,17.900348396856543],[-98.30330903179953,17.897644468457315],[-98.30152207742975,17.895153659411562],[-98.30240321552839,17.892713988443177],[-98.30619460886447,17.891607716529847],[-98.30806045638872,17.8898687619145],[-98.31096776994019,17.890340169678893],[-98.31556943097695,17.889674943319903],[-98.31677219871096,17.886397289888407],[-98.32016806976628,17.88786844397231],[-98.32092652915799,17.88611236039651],[-98.32437861322416,17.88485506274759],[-98.32369930094148,17.882521112708105],[-98.32638748614522,17.883713688412058],[-98.32882490306588,17.878926460672346],[-98.33177165502406,17.879953851346215],[-98.33200942410537,17.88034461528548],[-98.33431679712942,17.8840335022378],[-98.3385958337978,17.88335831388207],[-98.34019644141705,17.884746828800417],[-98.34034571284485,17.887343167576034],[-98.34275610957792,17.888225121962876],[-98.34359009112848,17.890197711979397],[-98.34679176308236,17.88976077181252],[-98.34697020504535,17.890007269158048],[-98.34907343315683,17.89317279303964],[-98.34954279841327,17.891146693372605],[-98.35427574331106,17.89031259924849],[-98.35556819149429,17.888588958922583],[-98.35882027786545,17.887059131854016],[-98.35780945017439,17.88493457947021],[-98.3604478951471,17.884216564005328],[-98.3628617151553,17.88163379801813],[-98.37046303710844,17.88007035562373],[-98.37056135525432,17.88236930311939],[-98.37315028566525,17.88322213910311],[-98.37695391136663,17.88195370251708],[-98.37836701171346,17.8836915633496],[-98.38260395824221,17.88366974288931],[-98.3869722525169,17.87864093352124],[-98.38764549464548,17.878252753806237],[-98.38988702658281,17.87642899034188],[-98.38891803018225,17.871938243240436],[-98.38927646597062,17.869891154422305],[-98.39160363794065,17.869553073716645],[-98.39471980278955,17.86612683990745],[-98.3980918466957,17.865492532076473],[-98.39785995594849,17.86175094706971],[-98.3987553767268,17.860911930121347],[-98.42076696342542,17.86369421060698],[-98.42489178018167,17.865989764252447],[-98.42495698719841,17.839594510562677],[-98.46405432222224,17.797642651908347],[-98.47067309611447,17.789093435389645],[-98.4741833129521,17.78617659907013],[-98.48268598890036,17.781442052964394],[-98.49393977749554,17.772966710026537],[-98.49634267180375,17.76880944414387],[-98.49661636559199,17.761562100726223],[-98.49335125530217,17.753389970017906],[-98.4916939107382,17.747551096748225],[-98.49017947784932,17.744561410762515],[-98.48669900373392,17.73373154703262],[-98.48910956353154,17.721712463073914],[-98.48636054318706,17.70510504867684],[-98.48965562348695,17.703438882637045],[-98.48649648026259,17.69362758985261],[-98.4859233471634,17.68863005226774],[-98.48617251293587,17.68099221366265],[-98.47383879484784,17.678081006695606],[-98.4707045606848,17.67809599069875],[-98.46667287413635,17.662901007008998],[-98.46647487384848,17.64945724935734],[-98.46592820905818,17.64753439657477],[-98.46104483015137,17.630355451885407],[-98.45050465044022,17.63334518059213],[-98.43310792915969,17.622995361198264],[-98.42330190339197,17.612933614971325],[-98.41239705166726,17.601006046355337],[-98.41015194683354,17.599768735240787],[-98.40773370769858,17.601214251649935],[-98.4037350626246,17.602460747160308],[-98.39799273809012,17.60356327304561],[-98.38705887453614,17.60472546327503],[-98.38093724675474,17.605210873292606],[-98.37697158631238,17.60534906522645],[-98.36473110170897,17.58262045460458],[-98.35918931659711,17.584099516283402],[-98.36106587618684,17.582181675777065],[-98.36140430512256,17.579276508368935],[-98.35570021167388,17.58031251323996],[-98.35435700907237,17.577114308768444],[-98.35467203054219,17.576326307836723],[-98.35290104642667,17.574142787144638],[-98.35216508701012,17.57356904712185],[-98.35108223378364,17.57039758703462],[-98.35192092410193,17.566019854821946],[-98.35348084079914,17.564860739346898],[-98.34868892579436,17.564801861841318],[-98.34530491955121,17.56258755160752],[-98.34410985528774,17.55557419022216],[-98.34503532862931,17.550244879635557],[-98.34375442754401,17.547534781992397],[-98.34297111059448,17.54733712409643],[-98.34340569950211,17.5467559299139],[-98.34158993920005,17.543639904010433],[-98.34115967039395,17.54191778328766],[-98.33780146797642,17.540156559731656],[-98.33461622141238,17.537567296593693],[-98.33021225970606,17.534444824923526],[-98.32945183272165,17.532980953925403],[-98.32918883585052,17.531206273790986],[-98.33285887596872,17.52771529089165],[-98.33192356636272,17.526405481054837],[-98.33355639923496,17.525295425795036],[-98.33210306580486,17.524143704326832],[-98.33198056830861,17.521653924186694],[-98.33190005894357,17.521044050351918],[-98.3316448969141,17.51947303269884],[-98.32992530461655,17.51514023974954],[-98.33075936194865,17.512017588498566],[-98.33074110785913,17.51149862938854],[-98.32029762114462,17.506882084197798],[-98.31188427807598,17.477492210088485],[-98.32901351140913,17.47872789950418],[-98.3323807725962,17.471981992702297],[-98.33575707055047,17.46023853803564],[-98.33585076133687,17.456304622843277],[-98.30491478409891,17.39430376673687],[-98.29678014485796,17.36403177913843],[-98.29146876099588,17.345018183390778],[-98.28737318935009,17.329011148153256],[-98.30481051612094,17.327519823957743],[-98.3178373786285,17.302387169381745],[-98.323495217259,17.27594416097054],[-98.30214284603352,17.246285804105185],[-98.28839559775781,17.238608624822177],[-98.28848332996705,17.23822040668415],[-98.27719211584423,17.25007642699103],[-98.2648090704887,17.246360898550165],[-98.25585010778912,17.250502798415596],[-98.24508041305904,17.250484422582247],[-98.24434242271491,17.25146688946205],[-98.23998919684055,17.248513722733833],[-98.23572147853247,17.24747795147465],[-98.22908960821849,17.243096913972067],[-98.22793856267117,17.241694346090014],[-98.22619462750663,17.24188944615321],[-98.2234961033941,17.239384014911536],[-98.22255303700388,17.238629685987917],[-98.22233552740005,17.23753098057523],[-98.22127263738122,17.236174853842556],[-98.21943361986621,17.235474213234454],[-98.22035393240333,17.234326812319352],[-98.21967186302999,17.232952612853524],[-98.21795527448518,17.23213496225418],[-98.2177277063634,17.23169885289701],[-98.21754898455441,17.23110606373973],[-98.21708925134993,17.23055256288336],[-98.21599339375905,17.228147688922263],[-98.21363659345934,17.22761378996148],[-98.21379294100285,17.226977082980625],[-98.21442331239723,17.225842528076726],[-98.21013061777944,17.224158736679215],[-98.21022112813932,17.222860756191153],[-98.20995387762935,17.222439777268335],[-98.20759653664152,17.222214907641956],[-98.20793233701897,17.220747765818828],[-98.20505647521117,17.217964579896716],[-98.2046836771828,17.21779251429905],[-98.20404550309786,17.21745309860171],[-98.20385643416199,17.21721477146042],[-98.20250672956934,17.21203320689881],[-98.20285888909666,17.211712356718976],[-98.20321334108667,17.21171804219432],[-98.20333941914248,17.210474366738936],[-98.20304221111263,17.209863013082156],[-98.20292216735913,17.209143160244537],[-98.20040004216679,17.203811975297867],[-98.20376958873004,17.200954260243805],[-98.20457570613593,17.198859076229212],[-98.20520258884932,17.19847827634976],[-98.20567473787685,17.196037021777784],[-98.2048667511254,17.191339743061576],[-98.20791791794085,17.191915187368693],[-98.2098808964065,17.19018382244525],[-98.21285864472054,17.190647330482932],[-98.21640592159645,17.188937679263233],[-98.21768113429596,17.186864319540746],[-98.21469265655463,17.18532607028726],[-98.21546478534742,17.17789440938259],[-98.21517397897065,17.17739757083416],[-98.21659787475835,17.173785770062636],[-98.21631157433507,17.172945148463498],[-98.21761730792554,17.171537945433613],[-98.21670849351801,17.169808024526844],[-98.2202166013106,17.162619802431436],[-98.21928044888915,17.16102722956782],[-98.22081334478145,17.158785605033643],[-98.22178588857662,17.152394674765787],[-98.22406693139914,17.15280189184398],[-98.2251157689833,17.151132490310545],[-98.22279561858812,17.150292943999318],[-98.2227565795692,17.14767568676598],[-98.22117950196946,17.145859451197623],[-98.21990071831743,17.145046564242193],[-98.22185919357833,17.141530274339345],[-98.22039918691974,17.140451520006934],[-98.22030425842917,17.14036181104416],[-98.22187816049978,17.13812937624965],[-98.2217882325188,17.136469919010267],[-98.22168772815996,17.13625032744352],[-98.22146252990018,17.135903425777713],[-98.2219310137462,17.135178632513373],[-98.22039752220758,17.133935237410753],[-98.22014118066505,17.133169933877696],[-98.2205064838638,17.13069244353005],[-98.22173024514746,17.12912584219265],[-98.22040405565093,17.126561940488557],[-98.2225937691286,17.125051681340608],[-98.22259954287051,17.12214967935239],[-98.2157437016279,17.124519051047685],[-98.21479399825819,17.122321619150057],[-98.21250722658465,17.121704524389372],[-98.2134767309052,17.119754502687726],[-98.21300717255707,17.118967617875853],[-98.20561403089607,17.118488550328777],[-98.20356510327917,17.11922669708497],[-98.1988115940494,17.117779760528947],[-98.1970721219887,17.11618734676847],[-98.1933776074253,17.11744181097157],[-98.18999094167356,17.119566875678856],[-98.18718928185149,17.116480464368692],[-98.18400575925608,17.11820360829512],[-98.1824771238579,17.117716733869543],[-98.17826414795832,17.114589794238896],[-98.17355811464193,17.115747657964903],[-98.16551873283811,17.114921184615184],[-98.16263683192028,17.11050934187716],[-98.15342389182263,17.110402936022865],[-98.15255879496715,17.10932299479788],[-98.15184591046477,17.104583717020546],[-98.15000878056998,17.102431357887156],[-98.14680974190287,17.10194779672412],[-98.14222776413294,17.0999038728703],[-98.13000920195606,17.09547779496239],[-98.11801073554602,17.095515286673447],[-98.10851120634999,17.088380307638147],[-98.09878156096033,17.08385017172037],[-98.08091397679772,17.0665812032733],[-98.04571471651087,17.057262150777603],[-98.00727639428436,17.04013733611191],[-98.02518565937896,17.019216306786973],[-98.03015773260745,17.015757067527147],[-98.03515868247297,17.021120260608086],[-98.05749440400325,17.023776455907125],[-98.07523136758431,17.007220171241613],[-98.0971136842341,16.968884797455303],[-98.10748982948104,16.96160423575367],[-98.11126130398333,16.958868400998995],[-98.10647839993436,16.9567202549556],[-98.1056045075054,16.95127139185513],[-98.106782312208,16.949328793898303],[-98.10643579121398,16.946497643265616],[-98.10745636293257,16.942033607707515],[-98.10178127203454,16.941909714119163],[-98.09920974990126,16.937589934023777],[-98.10002451723824,16.935166444500908],[-98.09891136298972,16.933846174498626],[-98.09527016207693,16.923299867421747],[-98.09375139288193,16.922784419031473],[-98.09261717398044,16.92010353577865],[-98.09199698990864,16.91955169043871],[-98.08968739062072,16.918285968535088],[-98.08710906164708,16.913960096450523],[-98.08756968601767,16.910559574878846],[-98.08681377570997,16.907901520865323],[-98.08671364882764,16.907064655823717],[-98.08648366759269,16.906438899070622],[-98.08608586013548,16.90561805717482],[-98.08375730807518,16.902735340454228],[-98.08287487259128,16.899729828756733],[-98.08253818988709,16.892774283603387],[-98.0805764477173,16.889500371231406],[-98.0809652815102,16.884226292295352],[-98.08081127737648,16.883203029692538],[-98.07955383695838,16.880421353693123],[-98.07618058567681,16.880983727890623],[-98.074364421182,16.876884301233986],[-98.07257211424849,16.875392292577146],[-98.07562893727669,16.868067016832015],[-98.07582758890595,16.867274716010286],[-98.07371708890577,16.863064464898798],[-98.07518917652976,16.86104718379505],[-98.07604157565845,16.85858449812025],[-98.0755235795719,16.857121803884127],[-98.07463804818059,16.854455187771123],[-98.076203325199,16.851003208137286],[-98.07633046949752,16.8503792237222],[-98.07647060989365,16.849145745901353],[-98.08271850744808,16.843136003420284],[-98.08400205476181,16.840934126066543],[-98.08358369888788,16.840583238710053],[-98.08378362061558,16.840305112370856],[-98.08376728735311,16.8397264113691],[-98.08366489487071,16.83918405165923],[-98.08316302568386,16.838223085275786],[-98.08115523701986,16.83455882361511],[-98.08200223890003,16.831399752240486],[-98.08317276804331,16.830447537564112],[-98.08517957224916,16.828330618459063],[-98.08544863118146,16.824300390240865],[-98.0879204224994,16.820796888689244],[-98.08763084831077,16.819431758534165],[-98.08637604442816,16.816308146599056],[-98.08834858444158,16.813978286757276],[-98.09141364598054,16.81374387042507],[-98.093819560935,16.81199604978326],[-98.09298207467867,16.809526598326613],[-98.09238613783538,16.80821657827363],[-98.09330808157506,16.80556862395241],[-98.09411216890237,16.805076183255437],[-98.09877584879683,16.800560052673575],[-98.09967740047136,16.799771667921277],[-98.09860410039971,16.79654674556258],[-98.09783439456231,16.795459407761314],[-98.09787629084133,16.792926295575853],[-98.10250026884182,16.788693989646333],[-98.10288382693489,16.78756599628929],[-98.1046158814176,16.784689177536677],[-98.10393017052792,16.7812978327118],[-98.10446842520957,16.775687961159406],[-98.10474091408872,16.77505501461502],[-98.10688931744761,16.77100813561134],[-98.10724696027165,16.76987475434521],[-98.10747512117064,16.76755939392251],[-98.10706138664392,16.766375811992418],[-98.10718993224839,16.76463815969163],[-98.10785734641462,16.762796292479266],[-98.10870731194723,16.760335517343606],[-98.10998373258718,16.760076311265493],[-98.11443988469631,16.75717795386396],[-98.11845884067861,16.756267707804284],[-98.1205037357351,16.75472965848138],[-98.12395996675605,16.75628874602006],[-98.12403362033535,16.757421623047833],[-98.12460518614807,16.759300761190673],[-98.12872701827001,16.761163234095307],[-98.1298623995699,16.760913927828312],[-98.1319875433087,16.75900082303906],[-98.13420678998523,16.75906662735622],[-98.13537652172647,16.757390841665597],[-98.13474598659809,16.75150573508523],[-98.13393988197299,16.75093778772174],[-98.12473903008367,16.751375797415164],[-98.1242367094548,16.74964064074777],[-98.12801929063039,16.74523927475127],[-98.12569962063884,16.73908231878613],[-98.12711571127585,16.737400747955974],[-98.1309622996124,16.73655641477592],[-98.13347363516579,16.733398465193375],[-98.13653189227682,16.731893689741753],[-98.13722182651952,16.730176858521645],[-98.1364158457352,16.726719428794013],[-98.1389939968804,16.72378380346845],[-98.14426656132952,16.7226100139481],[-98.14928944200989,16.72294752171564],[-98.15371578519245,16.7252826991205],[-98.155989631475,16.721362327801387],[-98.15982194949322,16.71949715178522],[-98.16593343083917,16.721713584648285],[-98.1707958944989,16.719540402247105],[-98.17147507438864,16.7180760224677],[-98.17521076706998,16.71800357390981],[-98.17615406868396,16.71613502004584],[-98.17657401525946,16.71454300191624],[-98.18170386212364,16.712395175376116],[-98.18258899044866,16.71097097463678],[-98.18125247482408,16.709084324312585],[-98.18439310370104,16.705146380858082],[-98.18827437836086,16.704934869907277],[-98.19212913816108,16.70640995187921],[-98.1940454866043,16.703596720543544],[-98.19392909767356,16.701046784756045],[-98.19521126204904,16.698765853314967],[-98.19753635036335,16.697868257069615],[-98.19945575987236,16.69759580339081],[-98.20457162704946,16.69747557300235],[-98.2055169544991,16.69801623284951],[-98.20438076591569,16.70216830237615],[-98.20307181541182,16.705643263594084],[-98.20140163515833,16.708612801916217],[-98.2005015398351,16.711870087311752],[-98.20154461626078,16.712671808803407],[-98.20417293432911,16.713213738001286],[-98.2051371626684,16.71199991016624],[-98.20744961872731,16.711602954231466],[-98.2114272807762,16.711412767408376],[-98.21578314956128,16.711525881116643],[-98.21857773393657,16.710500858371176],[-98.22006545027688,16.709144897553415],[-98.22134678649809,16.708547942787277],[-98.22383779909188,16.711185330904982],[-98.22784685208342,16.712502090577118],[-98.22979210361984,16.714126491069237],[-98.23060816819822,16.717427084542294],[-98.23353455142643,16.71736631714566],[-98.23530643517921,16.713847294696563],[-98.23489199405645,16.707051783111126],[-98.2379685943938,16.707407486417424],[-98.24194873684371,16.697938196234134],[-98.24344229131793,16.69670008124956],[-98.24352500879053,16.680048417838577],[-98.24563553913953,16.67772140384676],[-98.24588351232427,16.670740365724953],[-98.23912855113304,16.671162988167623],[-98.23306667920093,16.670633394405513],[-98.23242485946389,16.66393616863337],[-98.23254448558555,16.656509495568173],[-98.23429523591113,16.65628557757634],[-98.23148701444876,16.65349831234471],[-98.22956223437478,16.64376653747894],[-98.22837724114322,16.64243241780906],[-98.2284587788065,16.639503702642003],[-98.22687285425093,16.638665784128193],[-98.22003673905914,16.631987553829163],[-98.21579863210718,16.624993594698537],[-98.21420637704904,16.618795410520022],[-98.21088629651507,16.62004319490427],[-98.19666577506581,16.6233568297435],[-98.19377577714874,16.621462695063997],[-98.19413966894223,16.61843073670053],[-98.19603562585894,16.615335442049172],[-98.19971032906574,16.60220078525589],[-98.20466912866266,16.591103980827427],[-98.20336421741968,16.587180412391945],[-98.20539254829032,16.585971824324474],[-98.2067707960328,16.58550925039117],[-98.20821504659568,16.584824506181405],[-98.20846846723748,16.584771616899843],[-98.2073171783428,16.589889455716047],[-98.2228466397828,16.583168611198687],[-98.22926877356969,16.580891025396397],[-98.23814570269622,16.57412231606577],[-98.2409794858803,16.57276340183182],[-98.24150383831386,16.567773883396626],[-98.24987251559622,16.563514969612697],[-98.26029088469937,16.562955600503244],[-98.26831101784882,16.55888152964178],[-98.26942656202613,16.55845547306882],[-98.28337501846556,16.558053527470747],[-98.29282949184756,16.55778058051203],[-98.29172854209918,16.567056205658048],[-98.2917032617056,16.57006552614206],[-98.29701276259459,16.569623460325033],[-98.31601298111002,16.569827620094145],[-98.32997000507146,16.572748264228494],[-98.34027982421867,16.55816919780682],[-98.3478269095707,16.55667784165712],[-98.37136217852265,16.552025183512512],[-98.37265486244024,16.552241650170117],[-98.37608889549921,16.55229370088813],[-98.37735667079897,16.550839683231118],[-98.38341818461618,16.54964073509035],[-98.38365237583218,16.545204151158316],[-98.38847933200731,16.546338262519896],[-98.39441658776929,16.546733931924507],[-98.39513951292378,16.546837612461957],[-98.39477318350998,16.537088987159564],[-98.3951404227393,16.536307238624147],[-98.39250593491857,16.5273777475158],[-98.38332397251281,16.51265613112713],[-98.38424067706472,16.509315510266845],[-98.38656702582671,16.501838157695204],[-98.38679281373197,16.50111340501087],[-98.38733293808741,16.497786315390897],[-98.38399735811998,16.498168856616758],[-98.37792210823886,16.499644294516486],[-98.37183134922634,16.499950240308692],[-98.36833165455977,16.500851761893216],[-98.36664964163208,16.498397641327415],[-98.3702731969833,16.4938449115769],[-98.36883835616896,16.491178455205272],[-98.36310624048747,16.490425486432457],[-98.35772405668513,16.492598857052258],[-98.35379965625862,16.491311065310413],[-98.35253227139106,16.48943144590362],[-98.35231678580737,16.485026282373155],[-98.35707191885746,16.482427391380043],[-98.35754415402761,16.48092149939754],[-98.35751829373282,16.477685238691038],[-98.35987792458485,16.47170514080267],[-98.35870574238629,16.466209815727723],[-98.35561132478722,16.461380034145577],[-98.35252212338321,16.45520304269303],[-98.34998866912201,16.44918077750674],[-98.34946504571593,16.44558685611281],[-98.34953352003174,16.44519753674109],[-98.35005813217288,16.444302057966752],[-98.3991578325377,16.38051261143289],[-98.419148992825,16.38058633724677],[-98.42314284548388,16.382230361173924],[-98.43086268049097,16.38319909148089],[-98.43556677825109,16.38448622319339],[-98.44107427509408,16.384513476362883],[-98.45418094138836,16.38579344114453],[-98.45595483637487,16.38042053517745],[-98.4604258290247,16.380807982900592],[-98.46083594496446,16.383273044084603],[-98.46988035736632,16.381082461791095],[-98.47545123590908,16.377006168716264],[-98.4757778286696,16.375608114730085],[-98.47887730162506,16.375195186481164],[-98.47943222215343,16.37310296520775],[-98.4839399306569,16.374152406231815],[-98.48491366206662,16.369175826641424],[-98.49499110327935,16.368644358532947],[-98.4949276042301,16.365042875508607],[-98.49856354847924,16.363984389146424],[-98.50213347449937,16.36182927494309],[-98.50509736011634,16.361420545860483],[-98.50815542018665,16.36042176867454],[-98.5091088213602,16.36306233970214],[-98.52073322149141,16.360054047937467],[-98.5226005646951,16.356634784408982],[-98.5260948547782,16.356959152065315],[-98.52938655427567,16.352739677541535],[-98.53339844942286,16.351582629814402],[-98.53506084717992,16.348019824967196],[-98.53759023615874,16.347464158965238],[-98.53821958912602,16.347215089113206],[-98.5390692243169,16.34408623350589],[-98.54301861361978,16.341842255267466],[-98.5408789634294,16.339835233835572],[-98.54211424414774,16.339372499333876],[-98.54311921014397,16.336142152418006],[-98.54220901435082,16.332703996123428],[-98.54602370725843,16.32832298296853],[-98.5467511899144,16.325720689910497],[-98.54939286453691,16.32624980726058],[-98.54855368939332,16.32455388681916],[-98.54764837570923,16.32397104862332],[-98.54906823111367,16.322719207305965],[-98.54844057660824,16.322324535573898],[-98.54735255160847,16.32119967709002],[-98.55112234612392,16.319388873523735],[-98.55071919251782,16.31885801233136],[-98.5505722779389,16.318220395754793],[-98.55099491225656,16.318441041226606],[-98.55265237789581,16.31603101888743],[-98.54968320520453,16.31365642225643],[-98.53496442363996,16.310635511407327],[-98.52307406021202,16.306809350473998],[-98.51419106620943,16.303424960605582],[-98.50352556045033,16.29865203129333],[-98.48331418575788,16.29090614970528],[-98.46509821961155,16.284610124229573],[-98.45796919077242,16.281370639450643],[-98.44492486662745,16.277391827471547],[-98.43275543798478,16.274325072018087],[-98.42641368913075,16.271615192911156],[-98.41637609658727,16.268993367827193],[-98.40553581672845,16.266963972132885],[-98.39378102494027,16.26616790540851],[-98.38077841015843,16.26483674824499],[-98.36954038146456,16.263060465302203],[-98.35255484267964,16.26145230213018],[-98.33623304880513,16.25936094367131],[-98.31135627573929,16.25549768570727],[-98.2920527541628,16.25212353893835],[-98.28313995100666,16.250261211934628],[-98.27109836667825,16.246999195359024],[-98.25626648401737,16.244264262503577],[-98.24603872341333,16.24211146607371],[-98.22906957923993,16.237806629375598],[-98.22560850197942,16.236704544652184],[-98.20427284396283,16.22854460017561],[-98.19495691816076,16.223452713723077],[-98.19165891183218,16.221165028255314],[-98.1862176531514,16.214861512330117],[-98.18531666847173,16.21245860345772],[-98.17303845875267,16.207812638243524],[-98.16891690079058,16.205567281399112],[-98.14664927202006,16.197117038340537],[-98.13215820918879,16.191010766914644],[-98.1170461895095,16.184050130723676],[-98.10538396342287,16.178438710589944],[-98.07708408374873,16.163909543571094],[-98.0345975139146,16.141132842485547],[-98.01398900654044,16.12957361479141],[-97.9955100541552,16.118519421581766],[-97.9796631378664,16.110303724822018],[-97.96996925082993,16.10556320485665],[-97.96115872759577,16.100554819612],[-97.94793474038437,16.092016038591453],[-97.9176619256263,16.071074652257266],[-97.90257286949708,16.060312014700116],[-97.89006791487702,16.0511246683526],[-97.88222323495074,16.04462749515011],[-97.87608780960261,16.04062258542109],[-97.8571909423672,16.02728312300252],[-97.84819722158483,16.021418384524054],[-97.82748793482727,16.00883584405085],[-97.82129121009655,16.005730306460407],[-97.81055171849687,16.001141993938973],[-97.8043153884613,15.997265747959148],[-97.80118713923514,15.994730117039524],[-97.7925466002473,15.988855828623628],[-97.7885053915864,15.982445067826575],[-97.77836316107135,15.979820291537635],[-97.77302002181221,15.977730479153365],[-97.76699273671727,15.976341207437542],[-97.75441777686086,15.975135314715146],[-97.74470704593517,15.973853536976435],[-97.72793394716888,15.970801761132861],[-97.70035236383217,15.965280679262776],[-97.69003852394547,15.963624801459048],[-97.67961001274381,15.962898428179642],[-97.67648181853264,15.963983581694777],[-97.67832735994597,15.966155611074214],[-97.67403066231066,15.971818416081021],[-97.67104299746046,15.974053470700085],[-97.66656129636999,15.975930264363512],[-97.66107198560269,15.97737844919618],[-97.65316519939472,15.977891729699081],[-97.63837987158695,15.977556144848165],[-97.62345768681229,15.976091031430542],[-97.61118123454798,15.973971162109024],[-97.59467334461209,15.970301351034436],[-97.56532946524402,15.963303332812302],[-97.55864563083338,15.963757666834965],[-97.55605275914866,15.962826770479921],[-97.55264886358714,15.965219359333048],[-97.5453866512226,15.965417925838494],[-97.53985872876939,15.966845941137933],[-97.53590114480875,15.969370825110389],[-97.52766961387812,15.969165609232675],[-97.5196119092655,15.967282630669047],[-97.47933212279241,15.953828989774195],[-97.46856572594129,15.951264792623931],[-97.45218161068186,15.94793320855041],[-97.43364455219472,15.943858368499605],[-97.42020796930376,15.942076522029424],[-97.4175215584574,15.944294646825256],[-97.41156454669903,15.944320449543284],[-97.40197815010168,15.943013493260537],[-97.38393630454112,15.939537486204301],[-97.36983547553928,15.937564184151483],[-97.36823743065156,15.936832890629944],[-97.36627558525902,15.938692047121265],[-97.3617110617688,15.94035982719231],[-97.36209197580439,15.942083578836503],[-97.3580635910082,15.94467580462782],[-97.35335643449355,15.944232858733471],[-97.34533605935923,15.946254126923066],[-97.33615496858084,15.94615325771963],[-97.32249481559262,15.944586076644214],[-97.3055527164309,15.941317795101895],[-97.28996817527394,15.938049304284164],[-97.2844164817256,15.937418307156236],[-97.280459466931,15.939024553448803],[-97.27404738948326,15.938656296218085],[-97.2669637774519,15.937011520563203],[-97.24929577716881,15.931073572843331],[-97.23752441339275,15.927810063612299],[-97.22234983881168,15.925707558851968],[-97.20783156194386,15.9220989364905],[-97.18921067536735,15.916065553737837],[-97.16545738263932,15.907404161207864],[-97.14615321597148,15.899086018810749],[-97.13088187306141,15.890994762102594],[-97.12512754012567,15.887109773705617],[-97.10732003777804,15.8731052081435],[-97.10306923602184,15.868760015218527],[-97.0956250953434,15.866733505101479],[-97.08731727707078,15.863495068193515],[-97.08493092072553,15.860171207241706],[-97.08294673357142,15.858966135954006],[-97.0791763400232,15.859971793440707],[-97.07856083677706,15.858209680616483],[-97.07524142825173,15.856176280433715],[-97.07292006883603,15.85815955366786],[-97.07033331705304,15.855761507069587],[-97.06640070613577,15.856543149786887],[-97.06379294866281,15.860379219498896],[-97.06192448591923,15.860337078976386],[-97.06019073731392,15.858134975059215],[-97.05392957649167,15.846110093621746],[-97.04628787981784,15.835795753842547],[-97.04547451429909,15.831547536205278],[-97.04861424834439,15.82833850616538],[-97.04049381374102,15.821899100935696],[-97.02671023133496,15.81148507752107],[-97.01688167725081,15.806220243606617],[-97.00059533673436,15.802115990071059],[-96.97555422809864,15.79658247104993],[-96.96024041856731,15.792285711856152],[-96.95028733985606,15.788985308019505],[-96.93386635265381,15.782646229706927],[-96.9182558907338,15.77528298924102],[-96.90403943552855,15.767853417673848],[-96.8895218646798,15.759183356486972],[-96.88095216602625,15.753172067520666],[-96.87206612763163,15.747607620023018],[-96.86029813560316,15.742095375472786],[-96.86076025849724,15.740346636921856],[-96.84633286664769,15.734947787818271],[-96.84098926649011,15.733598883330217],[-96.83503414472466,15.73308622469716],[-96.83013471662059,15.734074362230729],[-96.82069956890814,15.73333224813615],[-96.81140752295602,15.732970133318872],[-96.80965396890025,15.734118959712703],[-96.80222793432421,15.733396216437711],[-96.79875558244618,15.732453972979158],[-96.77890143518692,15.72914222473662],[-96.75785147305277,15.726781252624221],[-96.74600684469937,15.726011182220475],[-96.74099282426477,15.725246525750777],[-96.72736291438963,15.72244820837102],[-96.71321364320488,15.719111274832471],[-96.70238735151781,15.71718322059587],[-96.6917204981338,15.713757747213947],[-96.68692922284919,15.71111513941554],[-96.67333504120205,15.707382074594761],[-96.66206947639847,15.70298519035157],[-96.6593327731859,15.70224312162776],[-96.64920593692432,15.69785784112048],[-96.6373905176456,15.691072087520752],[-96.6228106099689,15.683980955101902],[-96.61595954783519,15.680148275170268],[-96.59190882354119,15.672931993104669],[-96.58283176266804,15.67062892283542],[-96.57629606296678,15.66854804309935],[-96.57250469731974,15.666497442373156],[-96.56583848009876,15.664155658514062],[-96.5570045740472,15.659773764707097],[-96.55629840760821,15.657238993445446],[-96.55447673535781,15.658449701414156],[-96.55529053669466,15.66318861651132],[-96.55098160761486,15.6652785768606],[-96.54644819898772,15.663737592334485],[-96.54515797942827,15.665278128675823],[-96.53845155819477,15.664512284405191],[-96.52998126378554,15.661954803385129],[-96.52730729322172,15.661665449418933],[-96.52079505479259,15.663276353298386],[-96.5113897151088,15.661800388015763],[-96.50921646815345,15.658860117706922],[-96.50582087364455,15.659564600494264],[-96.50240271319734,15.657745855365135],[-96.49812034047414,15.657632182997304],[-96.49669362855411,15.659365191655297],[-96.49455993499981,15.658692894647345],[-96.49533935416662,15.660645494312064],[-96.49407381803934,15.663466630820494],[-96.49545294566929,15.665199198619746],[-96.49310185821003,15.666618002105793],[-96.48689904425459,15.662390444337063],[-96.48528247972087,15.664811512468816],[-96.48278120764093,15.66324669692682],[-96.48089122704374,15.665122445002226],[-96.4814597220946,15.668995100596305],[-96.47785121537635,15.669424532141363],[-96.47685234944817,15.674744041674899],[-96.47423342053827,15.673403464166654],[-96.47234548981999,15.675098414853835],[-96.47086874199607,15.673726008894107],[-96.46702175388225,15.675307906119599],[-96.46739260437289,15.680365458003905],[-96.46459004111159,15.683231004187007],[-96.46282767309964,15.682307007842894],[-96.46205635919631,15.684285872278735],[-96.46002179525794,15.682726206599455],[-96.45815157389865,15.682975544490603],[-96.45490921744226,15.680950019572151],[-96.4516299129811,15.681905723686384],[-96.44972152530522,15.685226589795434],[-96.4452061763215,15.68797485253475],[-96.44281414244557,15.686531472972035],[-96.4403971324765,15.691803812687795],[-96.43675101049388,15.692212844013397],[-96.43355761336545,15.695261140229718],[-96.42973039663161,15.69521615048518],[-96.42806489274403,15.69402196322659],[-96.42616735350634,15.696439150540925],[-96.42440737353127,15.695334173227366],[-96.42132013840711,15.695839870027498],[-96.41806667424004,15.694717223145915],[-96.41687138236603,15.693257451630359],[-96.4125627245063,15.694381049769504],[-96.40874356184707,15.69370332461068],[-96.38734474708491,15.687937123658571],[-96.38564921303299,15.68929346126663],[-96.38079019038332,15.689484978790802],[-96.37594574318251,15.688704070211429],[-96.36758229670397,15.685712316608317],[-96.36611555855382,15.683616607686929],[-96.36241616256882,15.683806649412702],[-96.35986899591421,15.682999172696839],[-96.35770553819282,15.686134323321255],[-96.3548902737731,15.687274804740298],[-96.35129521766288,15.690256222875234],[-96.3480771385681,15.689728467504949],[-96.34444536825009,15.685446122670498],[-96.34045610774933,15.685919655138662],[-96.33906530477816,15.684922940990987],[-96.33335538400968,15.687902695443256],[-96.33133449765995,15.688243945835836],[-96.32251872653848,15.687770213122121],[-96.31544330119999,15.686262190266575],[-96.30760719852441,15.683177519472565],[-96.3061851361332,15.685904344395794],[-96.29887452267747,15.685997086594057],[-96.28567556600291,15.683860015690698],[-96.28270461890247,15.686783053006195],[-96.27592467665625,15.686513199891579],[-96.26493067167218,15.685036769875296],[-96.2603188259626,15.683542524842153],[-96.25212458787655,15.685464342445869],[-96.24257083429012,15.68476556050723],[-96.23711620062608,15.682674789301302],[-96.23648230734563,15.685209753372305],[-96.23824658298997,15.687796133892732],[-96.23498946243296,15.691797532717828],[-96.2321464355536,15.691926526215127],[-96.22853103374786,15.690340810680766],[-96.22471101127582,15.691282252580152],[-96.22459005280291,15.694444791913668],[-96.22594175121372,15.69534189491958],[-96.22562342713081,15.697867660768168],[-96.22190181909599,15.695730519672964],[-96.22078801075361,15.698246160627718],[-96.216651569504,15.697368558525625],[-96.21442525600031,15.69811011030896],[-96.21683178982329,15.700835574265682],[-96.21302126621333,15.701061953062151],[-96.20973252891412,15.703460011795585],[-96.20657694941889,15.701494835332255],[-96.20567220668619,15.705332918100282],[-96.2040154672033,15.705971646502348],[-96.20523471436388,15.70824205458132],[-96.20468056391434,15.711369676125685],[-96.20210639503438,15.712601577987584],[-96.19673302156258,15.710387890198604],[-96.1967755922604,15.707277426049245],[-96.19258322541344,15.705633489451202],[-96.19262529102463,15.707777165564096],[-96.19098748638118,15.710233161019119],[-96.18417261447502,15.711875087684518],[-96.18262141632124,15.714190211755408],[-96.17923272988696,15.712732744172001],[-96.17803081614767,15.716552521921585],[-96.1765998754891,15.716620492866355],[-96.17502483255157,15.714178493700274],[-96.17288622866027,15.713718367321178],[-96.17330436696204,15.715799454014189],[-96.16850110152365,15.717552099717238],[-96.16662488619335,15.720556023422546],[-96.16667022248186,15.722698102030733],[-96.16294372987721,15.722602198924676],[-96.16104224550338,15.724693400646117],[-96.15727394459287,15.725619270881396],[-96.15605478658802,15.72326938634285],[-96.15272825644126,15.723166890944185],[-96.15359309678252,15.726841655659484],[-96.14407097253314,15.727909398170937],[-96.15207277186823,15.731123643043532],[-96.15089541850227,15.733863994403578],[-96.14914698791563,15.73287662816324],[-96.14723896406224,15.733889453141103],[-96.14608510644416,15.737491224230325],[-96.14415749848087,15.7378621096899],[-96.14153828102968,15.734228122378454],[-96.13645894544618,15.736766794024504],[-96.13310252403647,15.739535376590197],[-96.12985909544551,15.737270904639843],[-96.1272657502463,15.738149557241172],[-96.12748373949,15.739961551162992],[-96.12435502783484,15.740647416210095],[-96.1258122076618,15.744527659096377],[-96.12833432328313,15.743290179044095],[-96.12935399545574,15.745139151858382],[-96.12884576183745,15.74842693271944],[-96.13035418490313,15.748376208971251],[-96.13156205138318,15.752196200222386],[-96.12924547019134,15.754377654025063],[-96.12692186917752,15.753593966089511],[-96.12330178130344,15.749898726010258],[-96.12546929807797,15.753127693563329],[-96.12414270867288,15.75753417130727],[-96.12144114094662,15.760717149832658],[-96.1194226394968,15.760714007590593],[-96.11737863770634,15.762522413962131],[-96.11378727653795,15.761957112173093],[-96.1117269099409,15.763200501801862],[-96.10744300517769,15.758272386303588],[-96.10429249745403,15.757403153410849],[-96.10399717818126,15.7592104775307],[-96.09926369715276,15.758533453440407],[-96.10026648188352,15.760526911490388],[-96.09904891688944,15.762205649632165],[-96.09582771622223,15.762270129333729],[-96.09624346250126,15.764271129221811],[-96.09855555463668,15.764547541071863],[-96.09992856954102,15.766401970750849],[-96.09918630105284,15.770361551837482],[-96.09457136284516,15.77360005470689],[-96.0912912203595,15.773341318922633],[-96.09022372578534,15.771439086494695],[-96.08479597997678,15.768491256014727],[-96.07976602922673,15.769274001552617],[-96.07721233673334,15.766302172043027],[-96.07490295073092,15.76673711295956],[-96.073987777088,15.769236864206619],[-96.07633957222629,15.770220655020069],[-96.07595897581518,15.77312483522769],[-96.07343088449443,15.777122353686707],[-96.07001506910365,15.77854746267144],[-96.0679477327833,15.778154940600814],[-96.06602229085269,15.781005701666231],[-96.06260971897791,15.778928915989468],[-96.0604031852514,15.781747267030198],[-96.05570427816178,15.783790531353247],[-96.05344222183487,15.787255879572285],[-96.0492994392946,15.787541444028989],[-96.0291673002202,15.792781814183002],[-96.0276195579732,15.795094930341179],[-96.02232964881983,15.796877561731037],[-96.01748642494596,15.799991009493226],[-96.01151244606115,15.802000115115732],[-96.0102619160125,15.804671275460521],[-96.00505284150739,15.80773625187311],[-95.99683071862432,15.809999198477954],[-95.9801771715197,15.813757875314764],[-95.9741225103312,15.815625368302392],[-95.96734189528058,15.818515567660313],[-95.96563836562291,15.820143062684565],[-95.96575092661715,15.822643836443092],[-95.96039446263524,15.82721401705112],[-95.95402940684181,15.82963642997612],[-95.93692602578528,15.834605167222833],[-95.92758751738842,15.836725654418956],[-95.904392231298,15.840840151272062],[-95.88978020507204,15.842916528682508],[-95.88682556202696,15.844713231137234],[-95.88468538671583,15.844536471251558],[-95.88134241350195,15.847767182116797],[-95.87947306157952,15.851134362210132],[-95.87028171327086,15.853785374354175],[-95.85333145638504,15.856654639687235],[-95.84864506995928,15.859319788454513],[-95.8388064304188,15.860694431954528],[-95.83362142130943,15.863718732150403],[-95.81053011208934,15.867079540585848],[-95.80873034232275,15.868776982844793],[-95.80283640911125,15.869859804543921],[-95.78332067781537,15.87096160805919],[-95.77627752042667,15.871914910281589],[-95.77622482711928,15.874160660493374],[-95.77810558515966,15.87531826752047],[-95.7803652426615,15.8810285742843],[-95.7800335835455,15.884754404479736],[-95.77625752487808,15.889883519151567],[-95.77002365679596,15.89460209015806],[-95.76570768938228,15.89638809442323],[-95.76037592034123,15.89774486804879],[-95.73151304293981,15.904148092749665],[-95.70620628387388,15.90883288832299],[-95.69319502022279,15.91057213252708],[-95.68221886844543,15.911616662713016],[-95.6610842605233,15.912976561617938],[-95.65975906014637,15.916853759081107],[-95.65501932563484,15.918567168027607],[-95.64950810487818,15.919637306473703],[-95.64864463476403,15.92130637175967],[-95.64532410134319,15.92338132957218],[-95.6396238346486,15.924323174407903],[-95.63844777715377,15.925401514081102],[-95.63195671423966,15.926612025621523],[-95.61997630361805,15.928049592191883],[-95.61624626490737,15.930412420027324],[-95.61242001902048,15.931571415900976],[-95.61414612784478,15.933516722486104],[-95.61332569037091,15.935733779283112],[-95.60730587998472,15.941647577003266],[-95.603582557457,15.943020759767364],[-95.58781871441846,15.94472904131203],[-95.58441968621742,15.944475871382735],[-95.58406799693341,15.945893300688056],[-95.58012469688072,15.947807463686331],[-95.57941610093025,15.951836318351809],[-95.5727286320556,15.956302664858868],[-95.56852416418292,15.957792241348784],[-95.56140961952627,15.959065127362749],[-95.54063317706533,15.960659639442099],[-95.52692862349176,15.960759158443182],[-95.52070316193704,15.961292920394783],[-95.51638628879999,15.963360631342994],[-95.5078895464444,15.964098607935227],[-95.50039823818616,15.965232908037251],[-95.49601348156278,15.966468101383612],[-95.49473545075472,15.97231331259178],[-95.49149102240148,15.974407138678373],[-95.4822106887409,15.976241883299679],[-95.46162231836888,15.976976662735865],[-95.43561703649874,15.976096406857039],[-95.43547151674773,15.978357432935752],[-95.43108594279505,15.980636701389756],[-95.42876400493662,15.98496568251636],[-95.42961058581517,15.986110593149704],[-95.42655865744177,15.991292689618604],[-95.42727045052419,15.992974140288652],[-95.42654150455962,15.99688602961811],[-95.42512357328962,15.998849463597082],[-95.41844975165282,16.00229785427979],[-95.3995215736901,16.00643573049973],[-95.39962290362075,16.00819333125571],[-95.39742734968297,16.009603922740382],[-95.39604941982992,16.01282348451099],[-95.39365334808707,16.01380324834247],[-95.37005958389545,16.01934920438606],[-95.36783698360733,16.02269717993795],[-95.37256524936515,16.027441909616982],[-95.37452800976234,16.030837259806788],[-95.37507730907055,16.033971239396067],[-95.37675691588453,16.036952873313396],[-95.3783466462786,16.044859734461454],[-95.37707323386985,16.048544156633795],[-95.37268718050979,16.054364507649893],[-95.36433419973906,16.067491082477886],[-95.36049596300671,16.072570706058286],[-95.35465309673316,16.078522668161895],[-95.34780515844483,16.083293931907235],[-95.33998643262805,16.087266081750784],[-95.33191466557332,16.089882539112864],[-95.32550411683445,16.091323818602177],[-95.30553608892427,16.094354676653495],[-95.30539947554206,16.097492982948324],[-95.30313251089132,16.099049462639755],[-95.2982452698376,16.100433024217807],[-95.28648265734529,16.10148547970323],[-95.28543577349211,16.1035842615031],[-95.27651250460076,16.108014838155725],[-95.28131194236181,16.11771171127299],[-95.28104494586864,16.120467858715188],[-95.27214890633456,16.12776515059403],[-95.26691746356533,16.13033068075299],[-95.24749232575613,16.133342134126053],[-95.24625187439511,16.13499809486632],[-95.24927249472205,16.13677701207348],[-95.24953457589135,16.142629210374537],[-95.2480083901288,16.147152911414082],[-95.24025404150433,16.152687119674624],[-95.23722954358902,16.15401246662327],[-95.2364514462671,16.156139029120027],[-95.23321148177564,16.158283482689967],[-95.22885462645627,16.15909356328706],[-95.22098328483321,16.159384917080388],[-95.21329865539866,16.15794661298162],[-95.20996671595617,16.159480698520213],[-95.20989993198225,16.15583537082881],[-95.20892257302114,16.159876930514827],[-95.1982869025598,16.159909409933107],[-95.19795311151591,16.1503213592149],[-95.19780000008404,16.16009999950853],[-95.19520000032037,16.16149999910084],[-95.19230000008122,16.1673999989751],[-95.18789999987769,16.168499999784103],[-95.18232922875694,16.168874276089525],[-95.17004510078135,16.16553779456399],[-95.16881135181029,16.164475360370773],[-95.16526667285922,16.166207244033558],[-95.16194169326172,16.165172001370365],[-95.15401236901437,16.167817984784108],[-95.15166249697455,16.167947517721018],[-95.15232518523891,16.171550249543202],[-95.15422253623399,16.172173017939883],[-95.15589870486127,16.174619989370683],[-95.1571570832578,16.17934913944117],[-95.15225668403298,16.185442774715398],[-95.1423420128371,16.188650755532763],[-95.13288301204051,16.188599796711628],[-95.11370832169712,16.187621976627838],[-95.08358369846837,16.184216083560727],[-95.07013079108498,16.183364863327938],[-95.04344251044176,16.185977841231136],[-95.02770000010725,16.18839999936688],[-95.0032244340735,16.19315290152548],[-94.96267270618182,16.20042886648082],[-94.9409841692489,16.20467818577174],[-94.92830464311879,16.20692836092411],[-94.90431860201141,16.21024630809353],[-94.88831756347179,16.21205099993591],[-94.86443745278063,16.214093282555552],[-94.83184504520591,16.214536786156884],[-94.8020929692853,16.213492349086323],[-94.77356748549829,16.212004443177136],[-94.75759967077869,16.210260503358597],[-94.74368804213236,16.208142572231793],[-94.72513613850492,16.208028917653905],[-94.71808537121751,16.210248519448726],[-94.7153024715372,16.210424187278193],[-94.69976160634212,16.209910334895312],[-94.67136987332424,16.207137504916716],[-94.6539447410928,16.204837454273957],[-94.62798878333479,16.2019019419792],[-94.62133108536841,16.201343227054736],[-94.60670920058999,16.19892076358866],[-94.56473946181461,16.195127439763496],[-94.54004513747901,16.19186536382591],[-94.53140873957204,16.190028659820314],[-94.5242525173536,16.189219651922144],[-94.5031166416112,16.18574399702777],[-94.48006112774522,16.181687859804697],[-94.46328832713476,16.17804536130842],[-94.44079025162955,16.172725649291408],[-94.42736023829735,16.169844951201753],[-94.41597103882776,16.166889329313506],[-94.40149836057799,16.162786474160157],[-94.38404561652305,16.158265034497276],[-94.34004425011562,16.145156821296553],[-94.32448230231932,16.14023029102782],[-94.30711967608528,16.134388052250983],[-94.29478109647147,16.130607508101264],[-94.27327702882695,16.123267616643943],[-94.22652475366488,16.106076149336786],[-94.20236607658745,16.09678301861885],[-94.17701931815992,16.085759462102374],[-94.16651014261595,16.080931005521848],[-94.09115043974026,16.043636003105007],[-94.0333787706225,16.0170917217431],[-94.00021883737037,16.003088722573466],[-94.00021667527864,16.006585262862927],[-94.00440518130091,16.008563012442153],[-94.0103408987897,16.009527189617415],[-94.0136550935137,16.01083426127633],[-94.01577792533561,16.01289562086032],[-94.0213172005702,16.015603303089677],[-94.02463725970676,16.01652728530877],[-94.0360081044164,16.022094724478222],[-94.03726192293732,16.025207079659083],[-94.03943795430968,16.027118849910153],[-94.03936482925957,16.030066747471437],[-94.03963248057107,16.030535350148057],[-94.10276369268774,16.14251592333096],[-94.10956760416656,16.17910124292382],[-94.09540951197602,16.185534162546787],[-94.08481533378176,16.192651175605306],[-94.06265224392473,16.206544251100297],[-94.0579014604794,16.209223435825038],[-94.04846992322433,16.2161714692366],[-94.04695173854492,16.22070159174575],[-94.03850039139417,16.230201750969456],[-94.03519555894258,16.239553672371017],[-94.03513899170184,16.248278924517592],[-94.04353436224926,16.25568691562222],[-94.04085302039141,16.26075133320012],[-94.03748592260439,16.267110705744074],[-94.03296100704563,16.27594497578599],[-94.03720860590096,16.289653909154765],[-94.04323758196307,16.3054493399124],[-94.04404246796969,16.30758395259545],[-94.04916329413476,16.32120732591079],[-94.05163650712518,16.327492277588988],[-94.05066485013492,16.329713928741455],[-94.13831960050146,16.46129511418917],[-94.13915599651705,16.461786428329617],[-94.11313182442586,16.526719521832945],[-94.04952546125452,16.685183900747347],[-93.9931092938159,16.825449657239062],[-93.93011400124595,16.981755648366914],[-93.86742677174806,17.1369649111532],[-93.98020705792845,17.143395484029554],[-94.12834812766079,17.151711933233855],[-94.24460438653034,17.158134778830004],[-94.32255828816278,17.16239049013319],[-94.44530834184661,17.169008712942116],[-94.51906524806623,17.172936569336173],[-94.61158605679196,17.177811848392935],[-94.70993787863824,17.182931146839394],[-94.82358044270734,17.188765197982775],[-94.92281478010057,17.19378843687747],[-94.9228622264381,17.194055340629347],[-94.92311278438706,17.195207966882265],[-94.92344554176753,17.19706419876445],[-94.9233030684822,17.199158651518587],[-94.92368787796676,17.200695591420697],[-94.92377735407496,17.201838667553318],[-94.92356118531615,17.203158501207383],[-94.9194067848486,17.206049004949534],[-94.917204810837,17.206392493831174],[-94.91698779817284,17.206275060475832],[-94.9149621026956,17.206628745301998],[-94.91413409204995,17.207982036274245],[-94.91286688607863,17.20987000458996],[-94.91226612935327,17.21103965248352],[-94.91156804670601,17.21248425909016],[-94.91111314438194,17.214859055507247],[-94.91087106019279,17.21649116987146],[-94.91077075768908,17.21741953116117],[-94.91071666678044,17.21898058090926],[-94.910458908343,17.219397062741052],[-94.91020632891895,17.219712910600776],[-94.91028000267858,17.22077228731797],[-94.91064783215256,17.22219431799465],[-94.91044361639865,17.223191125969834],[-94.91054439404604,17.22402366419925],[-94.91061651348286,17.2248548377666],[-94.91079193784253,17.225911659541737],[-94.9105013341129,17.22706890969664],[-94.91000251857764,17.228936014530575],[-94.90962439355269,17.22995818822278],[-94.90900077001692,17.231095321875955],[-94.90760670743981,17.23292845257191],[-94.90658987897973,17.234019751033998],[-94.9055562884779,17.235435864532292],[-94.90544802346466,17.235892004815355],[-94.90583681129681,17.237794780140348],[-94.90660346541398,17.238514045140278],[-94.90833859843144,17.239635601935618],[-94.90878284641741,17.240012970369207],[-94.90960730719604,17.24201149820965],[-94.90905325332767,17.243766369437367],[-94.90728904219617,17.24579001672464],[-94.90644371657805,17.246691370414965],[-94.89803195924196,17.251773499186868],[-94.8972962224135,17.25287904302911],[-94.8968649427793,17.253564581300566],[-94.89554512301436,17.25589400160237],[-94.89557820519445,17.25666547208243],[-94.89586598360853,17.257076940095487],[-94.89669757236987,17.25809276037336],[-94.89744785537977,17.259082018324307],[-94.89929562673393,17.25962024847894],[-94.90374030080852,17.262083028814516],[-94.90425899426913,17.262632995861907],[-94.90446586376629,17.263168126919425],[-94.9048039777798,17.26494768636178],[-94.90575531567873,17.26544319286893],[-94.90837305298709,17.26655591537093],[-94.90965471909118,17.267976930009866],[-94.90973388078805,17.269429478321058],[-94.90926231281458,17.272008966793464],[-94.90791323435292,17.27402385639226],[-94.9075776166319,17.275632161609792],[-94.90721065867916,17.277296380109533],[-94.90451632084614,17.282746736225988],[-94.90429080811151,17.283148785637195],[-94.9040632240505,17.28345901524915],[-94.90348839466174,17.28388375520558],[-94.90298007334502,17.28417156930061],[-94.90257547646115,17.28460440594114],[-94.90223704083121,17.28521074610336],[-94.90165579788896,17.28599517794055],[-94.90131053706904,17.28677048668436],[-94.90126918312353,17.286979707471858],[-94.90149732006665,17.28768012881642],[-94.90201251810493,17.288355773457454],[-94.90252939034337,17.288761644218823],[-94.90288742277755,17.289048515677678],[-94.90341703989634,17.289325957010874],[-94.90365028141849,17.28942504754133],[-94.90470671795464,17.289447318657153],[-94.90524455679332,17.28914700285111],[-94.90644583547174,17.288644251560413],[-94.90722234799767,17.28843634099269],[-94.91100665636077,17.2868079264789],[-94.91177327067805,17.286537307516426],[-94.9126751221338,17.286271032422405],[-94.91402297522683,17.286897382255916],[-94.91547611326394,17.288158906703984],[-94.91509139428621,17.289377301083903],[-94.91501883556049,17.290787194310553],[-94.91384637749172,17.293509469878757],[-94.91212769460532,17.29529634300485],[-94.9109474273381,17.29621635670668],[-94.90912532098298,17.297189520419863],[-94.90665097308903,17.297236080109087],[-94.90509557286174,17.296946741447073],[-94.90176099983029,17.296357367207918],[-94.90027783631712,17.29727749102949],[-94.89781486697717,17.298926292861097],[-94.89433180416353,17.299476563897485],[-94.8932394446382,17.299424527526185],[-94.89204043885331,17.299465195598998],[-94.89134950661355,17.29953006618007],[-94.88900376523515,17.30007837960534],[-94.88807346750315,17.301818784144757],[-94.8881211111601,17.303361327571395],[-94.88890961545042,17.30555903752287],[-94.88949468991245,17.307022309983722],[-94.89078155364507,17.311056003853878],[-94.89376012865955,17.312633310823344],[-94.89504358189942,17.312694440506334],[-94.89624771635562,17.313416875287146],[-94.89962603973612,17.31660277443342],[-94.90035543123258,17.316881749186393],[-94.90095297338286,17.31706049679974],[-94.90177014020514,17.317155748385233],[-94.90313884828419,17.317183283187205],[-94.90369328669749,17.31705934020721],[-94.90419397376672,17.316838895680405],[-94.90674410855814,17.314853065401735],[-94.90831009395498,17.313795734557857],[-94.90961277624058,17.313741573790253],[-94.9107181213887,17.31399724132592],[-94.91227914141376,17.314796908467656],[-94.91323108141285,17.3156837071445],[-94.91401699652857,17.31627241610073],[-94.91462941672592,17.31670778375269],[-94.91589971578702,17.31787086667373],[-94.91663427110842,17.31828300376759],[-94.9171108292403,17.318421711662552],[-94.91840562821767,17.318754360776836],[-94.9200617125872,17.319229182955212],[-94.92137685990627,17.32002742920156],[-94.92246254790757,17.320701571880136],[-94.92384090110374,17.321417890771954],[-94.92528863988372,17.32250540942772],[-94.92549530471916,17.323647279404952],[-94.92660358228403,17.325030009043985],[-94.92780513595852,17.325171874593025],[-94.92837121707919,17.32505719911694],[-94.92926913240473,17.324222402142652],[-94.9303358500814,17.322971072950224],[-94.93126128826191,17.321599838973384],[-94.93266556029835,17.319515447565436],[-94.93307736336396,17.318983540146007],[-94.93434800435165,17.318861663333337],[-94.94015749653977,17.316527150197658],[-94.94273742374321,17.315202364437255],[-94.94369471805146,17.314793098983557],[-94.9457773779788,17.314140133071305],[-94.94613305852988,17.3141569505579],[-94.94684668298743,17.31441441809818],[-94.95097968191686,17.315649424677645],[-94.95455921765284,17.317996876295297],[-94.95687828362645,17.31962353867749],[-94.95881900668928,17.32123231191855],[-94.9611993096974,17.324136224498943],[-94.96262171014251,17.326354566242685],[-94.96294468165308,17.3274596812127],[-94.96302616455006,17.327884225732248],[-94.96315959338312,17.32882974098999],[-94.96324694274074,17.330332615251848],[-94.96332471799548,17.331049142562733],[-94.96340180884886,17.33129345472969],[-94.96364449029141,17.33181541133439],[-94.96425910936705,17.33258357477564],[-94.9650733606839,17.33330099162157],[-94.96571788642842,17.333791300999962],[-94.9661750626986,17.334156665050955],[-94.96667574287699,17.33443812564127],[-94.9670131275306,17.33451848567705],[-94.96747557946514,17.334561779190892],[-94.96811884063652,17.334489554896777],[-94.97032935931065,17.33295184186983],[-94.97076020585843,17.332282075314026],[-94.97119215967228,17.330969583177875],[-95.07656739707994,17.372933711628036],[-95.12214276705498,17.431988088910032],[-95.19717576491678,17.529084742182647],[-95.25362191015483,17.602013941204348],[-95.25314388398925,17.602619476501957],[-95.25248953846386,17.60433463560736],[-95.25232779479092,17.60467484035439],[-95.25207007907522,17.60586211907861],[-95.25213677786888,17.606404170055384],[-95.25256385217637,17.607075203275087],[-95.25271318283728,17.60729280346561],[-95.25333325403398,17.608106733050306],[-95.25416980857784,17.608585386987613],[-95.25519349217944,17.608919127609227],[-95.25609906869056,17.6088066447723],[-95.25744250504499,17.60833052672882],[-95.25837836002864,17.608008535469594],[-95.25919258899006,17.60771938954582],[-95.25971727142525,17.60718639701429],[-95.2599272794348,17.606948746130456],[-95.26029627943274,17.606300056111763],[-95.26187900085614,17.60557302863441],[-95.26272651950939,17.60285693171744],[-95.26299491370139,17.60220439857295],[-95.2638765942313,17.60157951171925],[-95.2652817252021,17.60179890490656],[-95.26576120751997,17.602032245023054],[-95.26659659181814,17.602516881200813],[-95.26720233609876,17.603179373870603],[-95.2676275308321,17.604208659611004],[-95.2673453246307,17.6048502490965],[-95.26725445702994,17.607452874324395],[-95.2676474755354,17.60827516777158],[-95.26801182261858,17.608577079568647],[-95.26942073741702,17.609246961882718],[-95.26981604992898,17.60940523532082],[-95.27118828952018,17.609069024714813],[-95.27152649403757,17.608896956581532],[-95.27206655532285,17.60859350222495],[-95.27351892532039,17.609115413278914],[-95.27432918527205,17.6092806483731],[-95.27489645848107,17.609669062475405],[-95.27510840401771,17.609830775567218],[-95.2758011694894,17.610400423475255],[-95.2769376445811,17.61153714591876],[-95.2780118983078,17.612295533994825],[-95.2785436152833,17.612785431654515],[-95.27896597449075,17.61409142329694],[-95.27888511740457,17.614797854999097],[-95.2779967419242,17.615445778310857],[-95.27696035246788,17.615332590969274],[-95.27510997380728,17.615350122557004],[-95.27402054551027,17.61502647669346],[-95.27349242908628,17.614943862120867],[-95.2723021460859,17.61500797940903],[-95.2705578828432,17.615517917169484],[-95.26977226303711,17.61652476036909],[-95.26946402176458,17.617475411894418],[-95.27078329949256,17.62114255525796],[-95.27160415591982,17.622185642321597],[-95.27167324886443,17.623001582929305],[-95.2714407443653,17.624151886062748],[-95.27056859488522,17.624872394712668],[-95.26813384305069,17.625121533943684],[-95.26618459130293,17.625112447679328],[-95.26480592789005,17.625050325761777],[-95.26277605297065,17.62482811539718],[-95.26247017850193,17.624748355634438],[-95.26111094118369,17.624390209236594],[-95.25921547557141,17.623034798159892],[-95.25873502107032,17.62230394540927],[-95.25554930522054,17.62156945581762],[-95.25364197253549,17.62241627807265],[-95.25321905755504,17.62311524636226],[-95.2526749412624,17.624090165969733],[-95.25115431325514,17.625111929479772],[-95.25017484940048,17.625320269775727],[-95.24988388357781,17.625313620098495],[-95.24920056366494,17.625295739504963],[-95.24841123021719,17.625582284640984],[-95.24946173958529,17.62710823013117],[-95.25055550667838,17.62763165364902],[-95.2526446534186,17.62750144489644],[-95.25377388796414,17.627302932145824],[-95.25717318866077,17.62753117622634],[-95.25831528579829,17.628131569230106],[-95.25900111567603,17.629010757352944],[-95.25829884466316,17.62952795516145],[-95.25692969792897,17.630166202997543],[-95.25608646643269,17.630375872713785],[-95.2538686503824,17.63225751386352],[-95.25300955559311,17.633374746197205],[-95.25288986503307,17.634057444782],[-95.2529043775138,17.635516880094144],[-95.25301547843179,17.63641823617013],[-95.25321302880411,17.63769260220539],[-95.25324568069294,17.638250105645795],[-95.25331943892911,17.639192936044253],[-95.25340329947267,17.639522672643523],[-95.25348552518511,17.640293323900664],[-95.25343643865216,17.64088548910769],[-95.25323136341643,17.642062479354422],[-95.25193354203748,17.643486393875833],[-95.25103208581027,17.644339903870957],[-95.25003953444019,17.64504810689465],[-95.24895932654834,17.645540557698325],[-95.24750462435196,17.64615727417697],[-95.24679284704422,17.646148651977967],[-95.24623732799273,17.645958829028473],[-95.24525012507678,17.64571331084062],[-95.24458748920307,17.64552889765531],[-95.2442068372689,17.64507403192391],[-95.24374954827681,17.644538466312667],[-95.24290530340369,17.643676470352204],[-95.2426892957468,17.643151809542985],[-95.24264835823544,17.63868671915327],[-95.24289445571668,17.63636860339119],[-95.24251338512198,17.634984215181248],[-95.24090645939879,17.63513638525245],[-95.23796724113379,17.635989228646054],[-95.23620188277027,17.63645254372409],[-95.229501828568,17.637668278055457],[-95.2276467801189,17.638288415029365],[-95.22537502700635,17.6386225421694],[-95.22358603678356,17.638929960100654],[-95.22281198747862,17.63921053036404],[-95.22146356904062,17.639319360323668],[-95.2202993139262,17.639290835658926],[-95.21911097010462,17.639236929125104],[-95.21844761426718,17.639328246298646],[-95.21812166787834,17.639560904361417],[-95.21714094985424,17.640415731732617],[-95.21651104650687,17.64063589570236],[-95.21552169060976,17.641260704381068],[-95.21512521376036,17.64160626745064],[-95.21411121010414,17.642325623543],[-95.21359046653771,17.64276121255199],[-95.21223418488415,17.643762898869852],[-95.21096235785194,17.64540055566863],[-95.20978591179909,17.647172958511476],[-95.20922613982208,17.648481015639504],[-95.20890655438342,17.650247144520165],[-95.20908362885325,17.65203584265231],[-95.20855864359231,17.65351749587768],[-95.20764585947524,17.65417874656032],[-95.20654619566204,17.65446608192684],[-95.20594967833841,17.654663842835816],[-95.2045476673801,17.65432790072333],[-95.20316429036501,17.65168598492164],[-95.20336078768804,17.64884726063326],[-95.20120309180624,17.64741196777129],[-95.19976564728495,17.647440823825207],[-95.19877877043848,17.64790485053453],[-95.19826153015731,17.64877650044889],[-95.19773963384091,17.65025717301569],[-95.19740342232535,17.65170970883139],[-95.19718880682501,17.65257716103355],[-95.19633082794923,17.65395700967457],[-95.19512316278787,17.65485351643713],[-95.19161253403956,17.654369538774915],[-95.19084692473939,17.65290707492659],[-95.19053842872836,17.650989570586546],[-95.18939385159075,17.64965854596926],[-95.18837634525954,17.650147524048066],[-95.18796072734,17.652269968097755],[-95.18782367140699,17.653155967005944],[-95.18742735202926,17.65484483384364],[-95.18717584591491,17.656492829647448],[-95.18730992705292,17.65828276037837],[-95.18728969895159,17.659230548468145],[-95.18722769965063,17.661698690692276],[-95.18706976157023,17.66468872105122],[-95.18727506184337,17.666191809117663],[-95.1879230965925,17.669247120206762],[-95.18777100496158,17.67107246563006],[-95.18767756114579,17.671696751166166],[-95.18738230030351,17.672611145996598],[-95.18614159535161,17.67432051683454],[-95.18568594566534,17.67468885019713],[-95.18529862245799,17.67556911922884],[-95.18493532139433,17.676760687152978],[-95.18527114048987,17.677720591449997],[-95.18639431614594,17.679372355202474],[-95.18679772694952,17.67952193230252],[-95.18754081255548,17.680001858856485],[-95.18757085964631,17.681052784719043],[-95.18677719083905,17.6821448901282],[-95.18611316875956,17.68321404520003],[-95.18542541358244,17.684155097893438],[-95.18467162478026,17.684811655007366],[-95.18353068510669,17.684657281534555],[-95.18259914190332,17.684589215069252],[-95.18176159013439,17.685318706456712],[-95.18146973145053,17.685817189255374],[-95.18185948370541,17.687651825664375],[-95.1820647030118,17.689027606855575],[-95.18221122059447,17.690510224793],[-95.18357375661395,17.69156635216541],[-95.18474050145034,17.69149905575466],[-95.18781500040654,17.691639170838812],[-95.19003388227344,17.69192353400649],[-95.19028962154533,17.692036749598913],[-95.23891299629088,17.739264125886677],[-95.2391298122264,17.73766006780494],[-95.23931860962676,17.736698599952035],[-95.23991016178695,17.736427174330174],[-95.24097080607459,17.736113055944088],[-95.24311972177952,17.735826808656554],[-95.2447862347089,17.735461742757593],[-95.24521107720926,17.735217354529937],[-95.24655758851964,17.734619224638152],[-95.24949285231156,17.73409281023737],[-95.25198827555198,17.733715931300083],[-95.25437733261953,17.73179893281656],[-95.25528155129564,17.730931976394345],[-95.25622337031518,17.7300006995348],[-95.25692548166808,17.72938869102552],[-95.25813754248895,17.728568615276515],[-95.25947148163243,17.729252500305506],[-95.26111914804687,17.7319966862446],[-95.26158002451905,17.733499899697335],[-95.2619373787611,17.73504833669392],[-95.262909439326,17.738927595337316],[-95.26343339246955,17.73936198578872],[-95.26391226307618,17.73952976761626],[-95.26413339339405,17.73961631615083],[-95.26467131021457,17.739765868884945],[-95.26593291689164,17.740133837940164],[-95.2670410630775,17.740632854775868],[-95.2681656215496,17.741158024893366],[-95.26917850515827,17.74071211835019],[-95.26960887143082,17.73990610658177],[-95.2693870522341,17.7383929731497],[-95.26853813452527,17.734863431687074],[-95.26833038465162,17.733133327760243],[-95.26606745229748,17.729321832870767],[-95.26507674871795,17.728175937099422],[-95.264139847536,17.726983147111582],[-95.26317572680216,17.72548164599084],[-95.26307027351902,17.72487880727573],[-95.26319754171294,17.723316583939607],[-95.26417886731213,17.71926100924378],[-95.26555402914823,17.717536215023074],[-95.26766889368099,17.71667095118596],[-95.26976840558672,17.716573362387237],[-95.27431512274518,17.718378748946634],[-95.27765966352007,17.72071041803906],[-95.27835045825117,17.72106856894976],[-95.27947905298333,17.721785611746498],[-95.28007973405124,17.721400699101764],[-95.28044652711259,17.72088412957595],[-95.28064638643002,17.720382020940065],[-95.28072238303389,17.719337002330633],[-95.27985357134395,17.717205497958332],[-95.28095000670288,17.715270073263355],[-95.28190526751615,17.715378711954997],[-95.28366153552417,17.71594391939101],[-95.28463736310442,17.7164740599909],[-95.28549719649806,17.71672952485386],[-95.28780965815355,17.716289792193436],[-95.2888077407369,17.715650121283034],[-95.28926778409124,17.715268138455315],[-95.28999910678101,17.714495699374595],[-95.29065046952053,17.713639144853403],[-95.29090372372195,17.713187486992638],[-95.29123595865951,17.712840030174448],[-95.2922441876824,17.712422240815954],[-95.29266374731537,17.713729464218545],[-95.292064528585,17.714809810903375],[-95.29219547283031,17.717170626871848],[-95.29341215946994,17.718139372060307],[-95.29423720665847,17.719732936065498],[-95.29484386029503,17.72104492699026],[-95.29573606553254,17.72232030363864],[-95.2968135448885,17.7224427301378],[-95.29870605515168,17.721193344447784],[-95.29930975345297,17.718739597063518],[-95.29963843205269,17.717449820264903],[-95.30038187748255,17.71582863743498],[-95.30259153131186,17.711014070583076],[-95.30380820012653,17.710842122321083],[-95.30482328835342,17.711302709151425],[-95.30579979096552,17.711208050341952],[-95.30675836852492,17.710672287303908],[-95.30770139782294,17.71018614154667],[-95.30856334720875,17.70974668396434],[-95.3101882993709,17.70739696053431],[-95.30992717176196,17.706131457149013],[-95.30959411768805,17.705263370336638],[-95.30731541801225,17.702703646298573],[-95.30684364692695,17.700829950861532],[-95.30655900505553,17.697944765066893],[-95.30689855474958,17.697009441615307],[-95.3075258529372,17.69703752066124],[-95.30864375931338,17.69755289321955],[-95.31038897767559,17.698096324951905],[-95.3110322294055,17.697796628975425],[-95.3128682764513,17.697466967092396],[-95.31506223354711,17.697720188339872],[-95.31696086203192,17.696971315318876],[-95.31674587645006,17.695565673960175],[-95.31644005866144,17.694364764262446],[-95.31671053747243,17.69244651165468],[-95.31772963466989,17.69107082252407],[-95.31947933612508,17.68979522670952],[-95.3205780132455,17.68711146750246],[-95.32197515498797,17.68512898990599],[-95.32450756737796,17.685178179528293],[-95.32612436906714,17.685537921326784],[-95.32777600001879,17.68586724738833],[-95.32937425286502,17.685235634171477],[-95.32977438652074,17.68455056051181],[-95.3309695991419,17.68218165302244],[-95.33275637103367,17.679608189119847],[-95.33318527966105,17.678019835194675],[-95.33441916197461,17.674801309666975],[-95.3350748281693,17.67448961335498],[-95.33671318339225,17.673971695535442],[-95.33812748443802,17.673671068091096],[-95.33943802236553,17.673873006044175],[-95.34050477251924,17.674890300934464],[-95.34084218799649,17.676496755888593],[-95.34121504205052,17.680613273818665],[-95.3416960464105,17.681919356094625],[-95.3418626805348,17.68253912607429],[-95.34267590821474,17.683344704060858],[-95.34501266723026,17.683150413076987],[-95.3467787787377,17.68187870705384],[-95.34828812251152,17.681242853697768],[-95.35101384882984,17.68031988929488],[-95.35163893076344,17.6785322673191],[-95.34989330270116,17.67653423947428],[-95.34996128842408,17.673593899442153],[-95.35061694483812,17.67267394107631],[-95.35174244788675,17.67184031923955],[-95.35573999288738,17.6711891838429],[-95.3584400894029,17.67160779108974],[-95.35956197917955,17.671847666034864],[-95.36073124874241,17.67227967574678],[-95.36332561582276,17.673127874298928],[-95.36461456688374,17.673429424510914],[-95.36576997915671,17.673562145513074],[-95.3678907345386,17.67365624009591],[-95.36871255642899,17.6730682838259],[-95.36874001510563,17.672499385296703],[-95.36965539942759,17.669064378106214],[-95.37126440320901,17.66856686440292],[-95.37317809536512,17.66866846313269],[-95.37631792998837,17.66751740305841],[-95.37782950119845,17.667134096443704],[-95.37932900125793,17.666901217755992],[-95.38064732844407,17.666415738936337],[-95.38129198498575,17.66594337316036],[-95.38256462807709,17.664911554060325],[-95.3845878956821,17.66421781388692],[-95.38578453456557,17.66422488679558],[-95.38879368234541,17.661342822305585],[-95.3908156923818,17.658481949389625],[-95.39158456195088,17.65779602622422],[-95.39228467216344,17.656928945146376],[-95.39351222534776,17.655402372445224],[-95.39399235328403,17.654223089084837],[-95.3953232438028,17.651781204092288],[-95.39591116267115,17.651585459648345],[-95.39730054796638,17.65128326061881],[-95.39806973455353,17.651576135629455],[-95.4000857763333,17.65239289056302],[-95.40113483653926,17.652502740874127],[-95.40212777338098,17.652400439474945],[-95.40336566492084,17.651486756726115],[-95.40374413786458,17.649642241295908],[-95.40390008140656,17.648734358713853],[-95.40504284334463,17.646106010160793],[-95.40555298721853,17.645008307213573],[-95.406426338757,17.64375616215949],[-95.40974783421206,17.643253626805517],[-95.41029114597097,17.643628582297936],[-95.41071319387589,17.64445659251959],[-95.41076314357065,17.646105278970026],[-95.41086966396449,17.64692759075814],[-95.41085809872203,17.647637121961907],[-95.41072438782493,17.64965225367581],[-95.41119233957465,17.65056011241478],[-95.41181466107219,17.651367540174988],[-95.41303350292361,17.651861098734685],[-95.41403623795799,17.651803259575786],[-95.41478224846816,17.651372772362095],[-95.41634166382022,17.64676850681991],[-95.4167765106468,17.64573030910475],[-95.41850165111157,17.64404405070502],[-95.42034209459968,17.64435697159348],[-95.42078693953005,17.645175310623813],[-95.42208159511983,17.64679391097286],[-95.42261120219075,17.647255423027048],[-95.42342730981335,17.647646070984365],[-95.42480823886251,17.647762466199822],[-95.425489960464,17.647472486977676],[-95.4261668828587,17.64682755894563],[-95.4266518688409,17.646097681520814],[-95.42704126623761,17.644445684244033],[-95.42576954445701,17.640037423940612],[-95.42730388406096,17.63632660763443],[-95.43146838548563,17.636381806642476],[-95.43422736162364,17.63513087759162],[-95.43801073908634,17.63165374188128],[-95.4391635415609,17.628990046879437],[-95.43950722277532,17.627650671353422],[-95.44112584412,17.626055883601566],[-95.44265076985033,17.624877278515555],[-95.44363578276847,17.623731729210533],[-95.44610738537278,17.621759802014935],[-95.44704992479001,17.621503939293007],[-95.44909985805077,17.622106612057507],[-95.45181354494497,17.622951006403923],[-95.45272906852796,17.623243408181054],[-95.45355907469025,17.623349350938156],[-95.45519423220856,17.623541668750363],[-95.45639963532915,17.62263959658975],[-95.45602913356345,17.620020135583786],[-95.45557016440148,17.619161737466186],[-95.45471046320324,17.61772121872724],[-95.45376559427586,17.613803064836134],[-95.45376022793187,17.612810185861008],[-95.45414273429338,17.611413682561306],[-95.4544589251459,17.61110273051071],[-95.4561214935224,17.61039499891791],[-95.45666023841073,17.610206400174718],[-95.45726644079076,17.609929818300543],[-95.45808283225057,17.609640402762977],[-95.46020194375825,17.60901480227278],[-95.46257942600033,17.6086662834158],[-95.46369831594592,17.608570412806387],[-95.46503995103058,17.60855667894276],[-95.46838796976613,17.609246077550267],[-95.47040467238861,17.609732430844474],[-95.47206587852395,17.60975069734036],[-95.47376430318866,17.607402855199723],[-95.4735480978116,17.605675285608697],[-95.47309873643275,17.60497270964612],[-95.47244920449873,17.60412920566887],[-95.47192059504545,17.60364347097874],[-95.47045260147172,17.602609989501786],[-95.46952151983157,17.602371029815288],[-95.46852371469538,17.602085087894125],[-95.4678064017092,17.601701247490553],[-95.46681905502999,17.60119544356826],[-95.46605378030085,17.60085355839618],[-95.464715140117,17.60012256435806],[-95.46343649334028,17.59916907190933],[-95.46297881436692,17.59860741910279],[-95.46262228105059,17.59761688000475],[-95.46301644346414,17.59639391506886],[-95.46437836934967,17.595809866814477],[-95.46507892724674,17.595724604489078],[-95.4658483596665,17.59571652712009],[-95.46651642242637,17.59580600383572],[-95.4679920270961,17.59589443456582],[-95.46895566834041,17.595784752750717],[-95.469732072895,17.59557383229469],[-95.47138116321406,17.5947794944679],[-95.47267994034473,17.593913332536715],[-95.4733437328461,17.593426119289404],[-95.47397536808057,17.592743778422232],[-95.47492793845868,17.59130419851573],[-95.47528649445576,17.590410782133233],[-95.47578183019147,17.58970981368941],[-95.47693903370299,17.58838507633743],[-95.47744206420532,17.588034083735863],[-95.47964292130985,17.58803305729242],[-95.47983135938574,17.58893087131804],[-95.47973428240613,17.589439443020638],[-95.4793867924464,17.590100256592166],[-95.47837962909762,17.59103729388255],[-95.47809180799936,17.591595192740726],[-95.47793546904023,17.592778241552878],[-95.47808818092187,17.59381755647695],[-95.47869762461124,17.59577035390845],[-95.48030414601249,17.597102524652485],[-95.48074749383653,17.597486176096595],[-95.4818143862841,17.598704289287696],[-95.4836596927583,17.60182098839914],[-95.48582386795931,17.60038083774117],[-95.48663104885838,17.599088966454815],[-95.48694637434295,17.598652925488977],[-95.48769335770169,17.597744072811793],[-95.48906662132549,17.596570768792503],[-95.4902325917202,17.59600562683721],[-95.49088780222525,17.59574019368904],[-95.49156767481122,17.59554711243885],[-95.4922452017068,17.59553028822785],[-95.4945072867846,17.595397124418128],[-95.49514897490786,17.59511618663271],[-95.49567956708552,17.594799525249357],[-95.49623347660832,17.593500577624525],[-95.49765041404646,17.5918858756217],[-95.50168700343676,17.59125515281471],[-95.50314692346456,17.59142640476938],[-95.50388228107528,17.591365202814927],[-95.50491000935278,17.59126033313953],[-95.50631723597866,17.5907705507027],[-95.50699977362495,17.589657041274165],[-95.50751999696945,17.588914625763266],[-95.50717988967051,17.588011873547543],[-95.50570340912867,17.58706487996261],[-95.50506599312331,17.586796235927068],[-95.50254596760482,17.586364695314785],[-95.50206552841291,17.58621921973173],[-95.50182964778332,17.585859935317444],[-95.50313721961686,17.584077173124456],[-95.50511521901342,17.58349458589231],[-95.50646989208803,17.58350760799567],[-95.50790124215484,17.583585084367144],[-95.50838990836849,17.58364123991919],[-95.5102341427297,17.584817305112836],[-95.51069699665902,17.58507345631176],[-95.5117112642987,17.585572745315346],[-95.51318506200568,17.585653590499362],[-95.51421496141052,17.584703500825583],[-95.51416917647629,17.583436946980157],[-95.51405112164798,17.582362888358546],[-95.51410179639316,17.58128888144762],[-95.51438005560868,17.580091886757373],[-95.5147031346853,17.579707312575636],[-95.51599699377596,17.57924415092066],[-95.51886110396362,17.57882295253978],[-95.51979393291475,17.578610674789047],[-95.52120944085851,17.57658016999096],[-95.51945809983636,17.57471561468401],[-95.51898533223857,17.57424254142893],[-95.51853833837959,17.573486927415445],[-95.51815189446825,17.572878201195238],[-95.5176206118856,17.5720393382515],[-95.51736451053887,17.57145985616006],[-95.51774901667284,17.569528583962267],[-95.51886152442842,17.569759067686277],[-95.52012726468939,17.570132916689374],[-95.52112751904002,17.57042669098371],[-95.52208935820966,17.571207054678098],[-95.52244820848728,17.573331950699526],[-95.52249900140805,17.573767017919295],[-95.52298826577601,17.57444248887117],[-95.52321884848016,17.57478129351847],[-95.52393746712164,17.575539438011617],[-95.52572727938286,17.574992727930635],[-95.52599663723623,17.572209946880946],[-95.52672281959138,17.571616418554243],[-95.52780336307103,17.571352946949844],[-95.53087418206559,17.570794000570913],[-95.53133216958105,17.57022803700937],[-95.52923746639613,17.566199792541454],[-95.52712279490413,17.564162091431],[-95.52510191829612,17.562109530664657],[-95.52591786448477,17.56084248801824],[-95.52714671902885,17.559749118636546],[-95.52846627969706,17.558713418477282],[-95.529634735647,17.55762577464236],[-95.53085865639116,17.55661262203631],[-95.53146270866984,17.55616276070623],[-95.53269251606275,17.55571929056208],[-95.53339472779948,17.555935950147273],[-95.53462196594614,17.556465075432754],[-95.53514795180678,17.556756886203118],[-95.53680104335535,17.55695258000668],[-95.53793629846115,17.557601873814747],[-95.53822937008681,17.558256131305257],[-95.53967480287662,17.560574530238682],[-95.54075768593708,17.56004185141427],[-95.54181748885497,17.559424953463974],[-95.54316002493931,17.55835666640337],[-95.54420713860725,17.5563145937777],[-95.54496375940073,17.55533201191878],[-95.54564626179445,17.55450044587559],[-95.5467491170399,17.553923907845615],[-95.54728794582388,17.55371059183011],[-95.54782625736641,17.55350851669499],[-95.54960284265695,17.55321344392752],[-95.55148916921775,17.553585617881083],[-95.55181321316621,17.553808750325118],[-95.55210968316464,17.554309549333084],[-95.5527960073806,17.555850891877014],[-95.55346224225855,17.556678436564027],[-95.55443608543249,17.55823611771126],[-95.55626521588044,17.55797988908165],[-95.55646033901934,17.556357028545563],[-95.55612898673053,17.55574668614389],[-95.55613044299514,17.5549741134991],[-95.55626449896613,17.55453173388065],[-95.55707453518579,17.553026810236304],[-95.55753829796839,17.55150963151408],[-95.55763355118114,17.55068463603203],[-95.55787222743993,17.549268072906557],[-95.55812630518676,17.54870644200247],[-95.5582913872563,17.548315659413788],[-95.55894844738447,17.54748787820307],[-95.5598774903828,17.546773006248202],[-95.56181370930994,17.54625985113603],[-95.5628247737011,17.5467303424781],[-95.56413513929022,17.547537407049674],[-95.56513705296419,17.54808357153189],[-95.56567268896907,17.548316229651846],[-95.56656801907786,17.548867417839915],[-95.5677687225168,17.551195120390446],[-95.56931271837789,17.550883198425936],[-95.57050330775104,17.54948149979907],[-95.57351557877985,17.548272172712075],[-95.57410742316273,17.547921883322715],[-95.575008244326,17.547223413288748],[-95.57650668285555,17.545959731122366],[-95.57741039180445,17.545490776514953],[-95.57877544773248,17.54353011387559],[-95.57843661517535,17.541897665932538],[-95.57759855932017,17.54018330598649],[-95.57758445785606,17.538991385301642],[-95.57886644789488,17.538086964845604],[-95.57956698193004,17.537576414382897],[-95.58069803833092,17.537161596815054],[-95.58243664226046,17.536676659277987],[-95.58386884019478,17.535825579703385],[-95.58533384591055,17.535026595656802],[-95.58595582803542,17.53491810397219],[-95.58670061732357,17.534887927586],[-95.5875157188866,17.535342482012254],[-95.58821334565255,17.536400800605577],[-95.58853528801473,17.537056814681705],[-95.58908246834255,17.537822180695457],[-95.59001073073216,17.538297826014855],[-95.5905624479073,17.538281879633587],[-95.59171511338559,17.538080401981404],[-95.59216607076615,17.537862027767062],[-95.59310719862646,17.5374450309817],[-95.59431585047969,17.537384971991003],[-95.59479517449023,17.537604988087708],[-95.59535081820331,17.5378004935298],[-95.59618360178462,17.537664509341255],[-95.59875226861345,17.534614976506987],[-95.59938196209436,17.535442827314284],[-95.59935167797107,17.537997373148187],[-95.5993882914347,17.539011569753086],[-95.59947285543228,17.540076047709363],[-95.59936903457844,17.54050558540405],[-95.59908112260183,17.541880258046206],[-95.59903372930432,17.54289829559633],[-95.59930704266611,17.543673845620162],[-95.60145352441987,17.54433589509955],[-95.60311495145714,17.54456815630715],[-95.60440837296136,17.546372808542458],[-95.60456493760927,17.547237000778807],[-95.6045802827141,17.548060847780448],[-95.604786810711,17.548816182576957],[-95.60552897669686,17.548932985514398],[-95.60676611893172,17.547146927092683],[-95.60748805240019,17.54610762855623],[-95.60783052873524,17.545535413855532],[-95.6080253581759,17.544628850062622],[-95.60682519384744,17.542527233003568],[-95.60613920908077,17.54180812561873],[-95.60577536560783,17.540637625686543],[-95.60588193491924,17.54014492674321],[-95.60764948420041,17.53982108671181],[-95.60807834749062,17.53986373932497],[-95.6092179026723,17.540102021386815],[-95.60985720574627,17.540197406715436],[-95.61365915587021,17.54206972877887],[-95.61442340315637,17.542446765009345],[-95.61553837371707,17.542703168745106],[-95.61723993553608,17.541742657268514],[-95.61789329510543,17.540994332636558],[-95.61927180519365,17.540821835165332],[-95.62058690630937,17.541264579259348],[-95.62120113001959,17.541604903630855],[-95.62301086461565,17.54279359112826],[-95.6242382344114,17.543498337132405],[-95.624404924553,17.543808734259812],[-95.62491959883175,17.545051636445237],[-95.62714675195537,17.547978331724778],[-95.62785999421482,17.54778370293718],[-95.62951344818725,17.546548910221304],[-95.63063659475739,17.546626801360162],[-95.63100519702823,17.54677754621906],[-95.6319256945664,17.54745649346455],[-95.63260668035934,17.547977152246915],[-95.63381795816468,17.54858186132566],[-95.63590327977528,17.548838727669647],[-95.63765454037076,17.54878625762734],[-95.6390956104429,17.54858131434827],[-95.64003243037672,17.54819101513681],[-95.64096349846841,17.547582457124633],[-95.64134831231382,17.54733839238878],[-95.64237436734959,17.546812338639768],[-95.64449208189677,17.546544329217625],[-95.64557399269393,17.547013568908824],[-95.64589712702332,17.547369141760726],[-95.64637888297563,17.54833373911862],[-95.64697662685995,17.55001684715802],[-95.64725795022957,17.55085206754279],[-95.64746614581361,17.55215843350311],[-95.64733613800712,17.55429840450637],[-95.6468768757025,17.554991221739783],[-95.64702550372084,17.555688728667008],[-95.64874881736915,17.556658229995662],[-95.65004479183,17.557200395797338],[-95.65053930405935,17.557494179310424],[-95.65223465401323,17.55901962482079],[-95.65274300470327,17.55994530290252],[-95.65326643062235,17.560493591925933],[-95.65359187049614,17.56048793173221],[-95.65431975715535,17.56012917675713],[-95.6547158592279,17.558418082244145],[-95.65470155157482,17.557351697416777],[-95.65399346682574,17.555341535338016],[-95.65314351920784,17.55412754094624],[-95.65183368334755,17.552765123655092],[-95.65106692948547,17.55221474036466],[-95.6499305659421,17.550831667909335],[-95.649632614204,17.547289729197075],[-95.64987286963083,17.546515683727932],[-95.64979325806496,17.545139849108182],[-95.64910150170527,17.544620287693874],[-95.6482668789709,17.54409464624723],[-95.64679537621686,17.542333365909656],[-95.64723751792161,17.541204610908324],[-95.647811732391,17.54070080586797],[-95.64938999179799,17.5395624770224],[-95.6515551418646,17.539756805739444],[-95.65585077688519,17.53916154333706],[-95.65812502487074,17.539015087464747],[-95.65892670351298,17.53887749235753],[-95.66039588328567,17.538566300928096],[-95.66292305658465,17.53687890644403],[-95.66367644321355,17.535946534637958],[-95.66431187704882,17.535619809466425],[-95.66574196629261,17.53524803172803],[-95.66675064192196,17.535110600167684],[-95.66857857601724,17.534867734331783],[-95.6703004500987,17.534660394401897],[-95.67395511938219,17.533837334338216],[-95.6759819702612,17.534150059747503],[-95.67646915068468,17.534170681727574],[-95.6783589931091,17.533924475251013],[-95.67915944688781,17.5338874319894],[-95.68033266157943,17.53409832367555],[-95.68184218652397,17.535109966115442],[-95.68255748163057,17.53587739041427],[-95.68289230817538,17.53655851882536],[-95.68367690842405,17.53701293466986],[-95.68706891494497,17.53593689846042],[-95.68756335758309,17.535481623916326],[-95.688248527925,17.535131084731802],[-95.68851014535579,17.535103731940808],[-95.68887346905518,17.535042273029944],[-95.68915242723938,17.53507325825575],[-95.68930026227292,17.534906683377756],[-95.68944131039734,17.534451789088564],[-95.68951119494977,17.53377096833856],[-95.68962551649162,17.532567224556942],[-95.69039890373716,17.531164716711828],[-95.6908758650253,17.53107155866377],[-95.69171765428581,17.531182641012265],[-95.69218541765935,17.5299737347994],[-95.69147455364174,17.52839124584176],[-95.6911075624206,17.528041883788717],[-95.69034176503351,17.52719475622041],[-95.69027262218731,17.526335757258494],[-95.6907271581573,17.525325946865166],[-95.69172450373873,17.52452985559904],[-95.6934419677948,17.52374190658918],[-95.69414434910573,17.523748985916313],[-95.69442483439923,17.52381494736187],[-95.69579685505659,17.52386099427872],[-95.69894021614073,17.5227967393281],[-95.70035914437847,17.521909055024594],[-95.70151217661777,17.52001276324853],[-95.70210192515736,17.518491673881385],[-95.70251880839959,17.518699106732015],[-95.70252545480764,17.51870351349106],[-95.70498675178783,17.52306382102671],[-95.70644058279026,17.52645312604892],[-95.70657564333698,17.53401936303004],[-95.70694002559674,17.533714264350237],[-95.70751265152336,17.534037972104727],[-95.70785043153927,17.53452430127686],[-95.70853725987519,17.533758779926018],[-95.71015553921467,17.532480715735346],[-95.71196753759403,17.534060208462904],[-95.71245793816502,17.534247743984906],[-95.71297370084847,17.53511712857255],[-95.71522216828595,17.535551072404132],[-95.71743695751934,17.537251559699826],[-95.71840096216027,17.536449376908706],[-95.72123530086009,17.53687079591066],[-95.72382497366988,17.53580388839947],[-95.72393624043485,17.537769996020756],[-95.72324891735303,17.538305662874734],[-95.7223650539795,17.53867992242681],[-95.72207162383648,17.53919756347466],[-95.72136740155582,17.541128066660974],[-95.72063259622206,17.544583772212206],[-95.72097848860284,17.546699516950355],[-95.72139700006255,17.548109783366897],[-95.72350771581966,17.55027038561866],[-95.7280934396851,17.551981122912878],[-95.72422351898558,17.55757030435484],[-95.72420186890332,17.55830641315822],[-95.72439309684063,17.559080626445507],[-95.72516955393178,17.56032926581537],[-95.7248308180645,17.56150763553927],[-95.72469714276264,17.561757201588193],[-95.72522645034832,17.563252187804437],[-95.72603742666473,17.563812867707668],[-95.72681863903455,17.56417630326291],[-95.72824790865582,17.568190635848907],[-95.72938324970028,17.570296060296812],[-95.72955811758152,17.57105619233522],[-95.72936463138961,17.57217006135977],[-95.72896288172933,17.57324966289326],[-95.72823531284979,17.575689688553723],[-95.72716654291378,17.577376501252672],[-95.72689688026861,17.578029047481436],[-95.72768655458697,17.578197689727403],[-95.72910103136871,17.578013731273415],[-95.72916830744401,17.57749293661942],[-95.72977470687857,17.576559471652786],[-95.7302268009733,17.576736951161593],[-95.73064956552764,17.576491527552662],[-95.73129273706076,17.57605901159485],[-95.73270503225507,17.575808338703553],[-95.73379727705765,17.575481441718125],[-95.73455648052095,17.57638406469914],[-95.7347054162351,17.577128559506605],[-95.7378215712742,17.58053167774625],[-95.73850380051982,17.58007639635821],[-95.73878594599518,17.57979929076106],[-95.73896019006395,17.58034142512531],[-95.73969811019657,17.58065925535942],[-95.74080847896971,17.580577631274025],[-95.74173916871763,17.581397178283794],[-95.74339425694035,17.58348353857474],[-95.74377224111527,17.583748463835832],[-95.74468338221914,17.584268796005915],[-95.74502773008919,17.58494196549657],[-95.74533575986038,17.586052233939768],[-95.74557491031538,17.585408832188534],[-95.74626230394335,17.58470395071106],[-95.74804205392655,17.583601688421425],[-95.74812380996843,17.58414856479584],[-95.74800981384709,17.584731154359645],[-95.74828256950849,17.584831125220546],[-95.74922861935408,17.5849332894461],[-95.74949657996291,17.585485122785315],[-95.75068599278677,17.58640495203292],[-95.75164405739736,17.586465987521024],[-95.7527564324634,17.58622098436018],[-95.75378627603129,17.585989500046878],[-95.7561644643639,17.58575779330596],[-95.75676051167244,17.585799101588975],[-95.75779581044912,17.585784643514785],[-95.75787881357013,17.585598920283985],[-95.75846456292925,17.585177802470525],[-95.75895113429237,17.5853165863914],[-95.75944204422251,17.58619849331899],[-95.75948485789405,17.58650759837502],[-95.76043526436695,17.586928516011596],[-95.7630325439419,17.5881279237106],[-95.7637052664,17.588713345078133],[-95.76427506576852,17.588439116133543],[-95.76460132120087,17.588533440100832],[-95.76524682228518,17.588947205013653],[-95.76633912657041,17.588840709425142],[-95.76690594852272,17.588437423070786],[-95.76911301520084,17.58836539058541],[-95.77050073192646,17.588311488180523],[-95.77088446184763,17.588634863522657],[-95.77169883999505,17.589867644999913],[-95.77188531331689,17.59021243765926],[-95.77351045265681,17.592382847281215],[-95.77336643877368,17.593631150919634],[-95.773512913341,17.594259600941996],[-95.77383040533243,17.5946572732978],[-95.7736053766539,17.595989682333368],[-95.77386123032522,17.596025116592443],[-95.7731684432091,17.598400209617466],[-95.77148439235327,17.59969923466855],[-95.7722467619704,17.599848458657277],[-95.78175124527229,17.603028259172447],[-95.79109431813993,17.60342512093115],[-95.79298383948617,17.601434382901118],[-95.79314086421459,17.599444881041336],[-95.79260785523712,17.59676145263205],[-95.7926860809344,17.596350370357356],[-95.7921633850599,17.596476258816097],[-95.79108071007681,17.596269852554258],[-95.79046236038414,17.595078943051362],[-95.78960481670407,17.59493711625197],[-95.79027182650577,17.593591141909315],[-95.7904619596186,17.591286630305888],[-95.79225273274926,17.58885014985117],[-95.79154622623429,17.587583874994095],[-95.79209570176977,17.5864204717102],[-95.79357769254011,17.586274833476637],[-95.79366517577347,17.58668245641769],[-95.79399961907774,17.586779477741857],[-95.7944507461878,17.58648235593415],[-95.79471115858621,17.586291103706742],[-95.79511453949152,17.586319602951676],[-95.7952210977777,17.58615595395014],[-95.795965237102,17.58674366905217],[-95.79577314167477,17.58712865733054],[-95.79600902884653,17.58726348681006],[-95.79642459318654,17.58697767092565],[-95.79727275273251,17.58794043511881],[-95.79769131038921,17.588012908708606],[-95.79795417838648,17.587881730302513],[-95.798598273859,17.588294376084775],[-95.79913032937213,17.588005678590946],[-95.7997711606385,17.588341909651547],[-95.80056806925518,17.58907678380899],[-95.80150938116299,17.58937888225978],[-95.801685052751,17.589279325766256],[-95.8020567019069,17.5898197029137],[-95.80250607040779,17.589513831231102],[-95.80264264742851,17.589704934693373],[-95.80230351548869,17.58989175730801],[-95.8023078082216,17.59061684813946],[-95.8030135191741,17.591425719652534],[-95.80387428826913,17.591366259657207],[-95.80424606359293,17.591458293658775],[-95.80456346506833,17.591869875645955],[-95.8050484192691,17.59193595760007],[-95.80566853159718,17.592338692472026],[-95.80669787538989,17.5922129801026],[-95.80708445749815,17.59211377830951],[-95.80754956581126,17.59184159126238],[-95.80731509173813,17.592177556416914],[-95.80734958787116,17.59281496315799],[-95.80787526088164,17.59307870797261],[-95.80876298973476,17.59318740409475],[-95.8086600579274,17.594717609195015],[-95.80780568868636,17.59676809029935],[-95.80748959790674,17.597853606369085],[-95.80683839771626,17.60373251868822],[-95.80644790012047,17.60469714086946],[-95.80554315805966,17.605991789700965],[-95.80201455211312,17.606961683698103],[-95.80083734160644,17.606728535465777],[-95.7961779678136,17.60603090092866],[-95.7955867131165,17.604409581466996],[-95.79470255940555,17.603517592001253],[-95.78902314002522,17.608346651808574],[-95.78905201178554,17.610862341285042],[-95.78037721896987,17.611117268464852],[-95.78010334951983,17.610844492677643],[-95.77909179374001,17.610840634149213],[-95.77697895321103,17.609053225691923],[-95.77649815458517,17.60702859394803],[-95.77663856090345,17.606163256180537],[-95.77656887230273,17.605827812801692],[-95.77675670447297,17.60543392596196],[-95.7767106881629,17.605064877550205],[-95.77725567421572,17.604538121922644],[-95.77722903557208,17.604305634366824],[-95.77639606979841,17.604400348977777],[-95.7760957107422,17.604421095339205],[-95.77527189443566,17.60479354344551],[-95.77462145637026,17.605310174172132],[-95.77365846149638,17.605850402567683],[-95.77364051475053,17.60624271187538],[-95.77353022013682,17.60719036139426],[-95.77349643040844,17.608124887066197],[-95.77423024802152,17.609730648646632],[-95.77385066743074,17.61005936749183],[-95.77296079012194,17.611053214222068],[-95.77288996827224,17.612597809811973],[-95.7734118510445,17.615287659127546],[-95.77340616123473,17.6161101779079],[-95.7731961963861,17.616708085001164],[-95.77262294533023,17.61862350421552],[-95.77266638673228,17.620904076684326],[-95.77274099132836,17.6215387814039],[-95.7732340154912,17.623136827049905],[-95.77339108393994,17.62368889478546],[-95.77337442608325,17.623797998317514],[-95.7738322356355,17.623846878792847],[-95.77433045257942,17.623998165963542],[-95.7751279610261,17.624252636133463],[-95.77569827503135,17.624377378535428],[-95.77636730746275,17.624280584731366],[-95.7769758960406,17.624791772991273],[-95.77730598309705,17.625114989790745],[-95.77803900483826,17.624995179305472],[-95.77868060399362,17.62544385156906],[-95.77889059119468,17.62554913215331],[-95.77962408605526,17.625447628545146],[-95.78249980859277,17.62577322243618],[-95.78275431785625,17.6287704895434],[-95.78294790121367,17.629327394934535],[-95.78302253469957,17.629809581116888],[-95.78300243420824,17.63042028337543],[-95.78214868417092,17.631945735469174],[-95.78202792347497,17.632764943471727],[-95.78192608375866,17.633724002896486],[-95.78178445500077,17.634506147769457],[-95.78151676910244,17.635438631097713],[-95.78107163916252,17.637370956809207],[-95.78105095450621,17.638198755694475],[-95.78149545537485,17.639027832584475],[-95.78346088306392,17.638708212390156],[-95.78375120077334,17.63760022040401],[-95.78403482365434,17.63773567768709],[-95.78446659337033,17.637513824262044],[-95.78442529649817,17.635402144053046],[-95.78563722190108,17.63344342865406],[-95.78636578236166,17.633605856576025],[-95.78792079881475,17.63435660010896],[-95.78828878283889,17.634359055488517],[-95.78972327441738,17.63332445597848],[-95.7913451734467,17.632452411076372],[-95.79153932667373,17.63221813809264],[-95.79228999713916,17.63234572988347],[-95.7924699056395,17.632090445340054],[-95.79294114159046,17.632077120175097],[-95.79374622878402,17.631736385875854],[-95.79429505943978,17.63149600734897],[-95.79470390379521,17.63129740217829],[-95.79522857317392,17.63085914399545],[-95.79604375107635,17.630949736602815],[-95.79727256681974,17.630843720890027],[-95.79906956963481,17.628147537990856],[-95.79911043306424,17.627628429994047],[-95.80058982954813,17.627624746612128],[-95.80124425612507,17.628428794431557],[-95.8033055961003,17.62936575957491],[-95.80431632276355,17.63232645617461],[-95.8051314903442,17.6355931223751],[-95.8073667546488,17.6377052894602],[-95.80891312200322,17.63854901835515],[-95.80712551952172,17.639845219821837],[-95.80644525822117,17.643255509194148],[-95.80563640504596,17.643444990743717],[-95.80637343942442,17.644196079041762],[-95.80718575112718,17.645863967862397],[-95.8096184399543,17.647199421224514],[-95.81133462555601,17.64595872042628],[-95.81266025336981,17.645934701626857],[-95.81336218831296,17.648238991869903],[-95.81390834585972,17.648320286510284],[-95.8146278640898,17.648421064017157],[-95.8155634164603,17.648481245924245],[-95.81632266478363,17.648373012073193],[-95.82003190329891,17.648259585535925],[-95.81987633457697,17.64915291553484],[-95.81992916059829,17.650544190609537],[-95.82168583577084,17.649905730754256],[-95.82259157843885,17.649104734350658],[-95.82465343077615,17.650135466985205],[-95.82745114775696,17.651258867653837],[-95.82833505586251,17.651821499999187],[-95.83001754560763,17.652396966489277],[-95.8311613334431,17.65296700073452],[-95.8322672029247,17.656116669482742],[-95.83268512564683,17.656633123761196],[-95.83555926897674,17.65909634709385],[-95.83681160886539,17.659916853303173],[-95.83850526040754,17.65998709828102],[-95.83850869616907,17.662358731006066],[-95.83868209397247,17.66320477962546],[-95.83956556161297,17.66350873289639],[-95.83977725114028,17.663805125161446],[-95.84087107354554,17.666303983501223],[-95.84133793075188,17.66727003089744],[-95.84210494068992,17.667671492336638],[-95.84351275954191,17.667929735034647],[-95.84375012850808,17.668367965386892],[-95.84414893852511,17.668757225340585],[-95.84349971220723,17.669756488262408],[-95.84350985717441,17.670286878645243],[-95.84406343743149,17.670704243223668],[-95.844013426316,17.672925909092044],[-95.84435086866642,17.673151380005095],[-95.84460672627074,17.673256965501878],[-95.844836236444,17.673397114344425],[-95.84733627544847,17.673650220865284],[-95.84822181470264,17.674896754416636],[-95.84904715895141,17.675348848297745],[-95.85020516553811,17.675841317752827],[-95.8506349619804,17.67578782374096],[-95.8511409732152,17.675692972987576],[-95.85226881729596,17.675098149023768],[-95.85290691134855,17.675308475557756],[-95.85605235986861,17.67821746615283],[-95.85656865641715,17.678804184737317],[-95.85799218278987,17.679295035898235],[-95.85939079167508,17.679896387077235],[-95.86064165581661,17.680806671923335],[-95.86203833853824,17.682386161328566],[-95.86218258344354,17.68270783266894],[-95.86246535719869,17.682989397461597],[-95.86364341191182,17.683315048741065],[-95.8642011165781,17.683383102483447],[-95.86584633292233,17.683352484083684],[-95.86617402736573,17.683717781969847],[-95.86787641108862,17.68551248556571],[-95.86808027267375,17.68618798775202],[-95.86815491769619,17.686834530885506],[-95.86877729189058,17.68953934372911],[-95.86975701189874,17.690419383775804],[-95.87075879242985,17.692686879749715],[-95.87082299091668,17.69417250949533],[-95.8706570611692,17.694693207840032],[-95.8706288055144,17.695048459512577],[-95.87085638319923,17.69651630602533],[-95.87043705723221,17.697211378294753],[-95.87002780620764,17.698134537720478],[-95.8702775291651,17.699199268208815],[-95.87025180156229,17.69966039716178],[-95.870420780931,17.701036974463136],[-95.87050614215798,17.701559021691708],[-95.87101835265952,17.70216893044403],[-95.87242128426493,17.702386875023365],[-95.87428075519006,17.702755283801196],[-95.87511779007076,17.702789569018876],[-95.87561652946943,17.702213066570778],[-95.87698014112539,17.70319468650382],[-95.87841167354571,17.703263539464672],[-95.87913979373474,17.703034417698518],[-95.88045445770587,17.702854008315626],[-95.88183316586293,17.702797628725705],[-95.88257171317849,17.703168751733074],[-95.88370991321278,17.702758469026605],[-95.89097735337367,17.704063272898452],[-95.89444173679902,17.70447055810513],[-95.89519127788975,17.70440003523879],[-95.89497557281686,17.70481099507066],[-95.89385049738968,17.706225346886583],[-95.89361599961455,17.706686630281695],[-95.89326147675689,17.708344621850813],[-95.89360405908644,17.70913786651738],[-95.89389534548161,17.709929190289586],[-95.89405850537838,17.710604876848038],[-95.89402724264653,17.71097370172464],[-95.8941217076943,17.71145958169501],[-95.89412277628503,17.711815122540827],[-95.89402042928083,17.712319984336432],[-95.89374299351101,17.712446492409242],[-95.89259317241198,17.712414854819997],[-95.88943403446171,17.713181736750187],[-95.88814593320342,17.713774083823978],[-95.88751800838719,17.71417266296487],[-95.88639998970893,17.714971234199595],[-95.88514239260098,17.715778902606075],[-95.8837352289562,17.71665389221448],[-95.88213727768147,17.717038719484094],[-95.88164475822481,17.716969455307833],[-95.88028730929955,17.716715182882524],[-95.87884892669354,17.716155750215364],[-95.87701485342586,17.715680220025206],[-95.87511461861396,17.716102973212003],[-95.87393466048138,17.71678046574641],[-95.87339628729251,17.717133836798837],[-95.87269785908637,17.718732066937093],[-95.87226169891244,17.724753550554965],[-95.87210289277351,17.725667653551284],[-95.87280972977834,17.727409040945588],[-95.87509009210561,17.728211212825954],[-95.87634282809353,17.728271348349892],[-95.87738914692022,17.728199251954038],[-95.87802806828847,17.728154677764167],[-95.87897027518011,17.72814019457104],[-95.87987641642269,17.728106548492917],[-95.88064285118526,17.727940294186453],[-95.88522347068664,17.726828610599682],[-95.8865785866443,17.726310531905426],[-95.88711894854958,17.72606251907058],[-95.88806321524197,17.725546172561394],[-95.88936090670984,17.725422397251577],[-95.88992049053661,17.72491485765721],[-95.89013438459841,17.723878865309473],[-95.89029588504576,17.722888953514484],[-95.89061097032913,17.722050433021423],[-95.89114537130479,17.720943690665365],[-95.89210761195585,17.720606803550027],[-95.89370574472633,17.72155721287777],[-95.8941233075717,17.722038968055756],[-95.89442163962133,17.72260436757017],[-95.89455970502053,17.724298484344104],[-95.89458236984814,17.7264141440927],[-95.89464889305555,17.726914897106326],[-95.894817179869,17.727328437594906],[-95.89513077069813,17.727630349516858],[-95.89640734518986,17.728055880641705],[-95.8969063304636,17.728148521700973],[-95.89789757037488,17.72840200359633],[-95.89940341604506,17.72849324848727],[-95.90070529867978,17.72862088853708],[-95.90151096927292,17.729056266867985],[-95.90215788949564,17.730275621590806],[-95.9028637918642,17.73410371617416],[-95.90278941274028,17.734757919877268],[-95.90244292208632,17.73734340710905],[-95.90206826308287,17.73907177892005],[-95.9015744245138,17.740858753342536],[-95.90124129028084,17.742119281344515],[-95.90087166290971,17.74378533172535],[-95.90059814436518,17.744535108943467],[-95.8989881968688,17.747119674469843],[-95.8976774877932,17.74936988543567],[-95.89797117143331,17.749931088359972],[-95.8981970177424,17.750513413700673],[-95.89893946317392,17.75197644808975],[-95.89902422681911,17.75434508545743],[-95.89718190249914,17.756553875044403],[-95.8955463925364,17.757938544710612],[-95.89263368906137,17.760322694993306],[-95.89351120987214,17.762799948369604],[-95.89353257184416,17.764033181155924],[-95.8921706935796,17.76595222350261],[-95.89143911367557,17.76650888044361],[-95.89075164264187,17.767135039087464],[-95.88477920425277,17.77182448699392],[-95.88060525360845,17.77288837315831],[-95.87885977244844,17.773476900777496],[-95.87319549074704,17.773302809427435],[-95.86898448618172,17.773014739010705],[-95.86716468475475,17.77322903478398],[-95.86639040394391,17.774352832748036],[-95.86585858250947,17.77826635170385],[-95.86571056075286,17.77988832809757],[-95.86572630144053,17.781227592895277],[-95.8657723129765,17.782384875469972],[-95.86615363958538,17.78430038399631],[-95.86708611781842,17.788250135720773],[-95.86794647423795,17.7911779370869],[-95.86913080427581,17.795650647232264],[-95.86850717145637,17.797822086411315],[-95.86682070678614,17.799602206092175],[-95.86563752010437,17.800179981088547],[-95.86421178379857,17.800555094782396],[-95.86125336626958,17.801445428999443],[-95.85996754233958,17.802067121831385],[-95.85888261514759,17.802697053534814],[-95.85664098442493,17.80443570366623],[-95.85486308009354,17.807143463347074],[-95.8543195329014,17.808781208508776],[-95.8540949707683,17.813086758606232],[-95.85332530400899,17.81883994926767],[-95.85168531575005,17.821591619302808],[-95.84933641874557,17.82584792754716],[-95.84920575629423,17.82757571097261],[-95.85221399697099,17.831796940085212],[-95.85855002080706,17.839189220659705],[-95.85941092636006,17.841924492009753],[-95.85881556682097,17.844783490425925],[-95.85561593219285,17.846640744682077],[-95.85020464922678,17.844534326088194],[-95.7999247169983,17.95001256241443],[-95.83316693083566,18.129026833889043],[-95.90281522668602,18.135703725342466],[-95.9032086701618,18.135724209601904],[-95.9033416594242,18.13576569377892],[-95.90381176071952,18.135748735320817],[-95.9039942689065,18.135647929690265],[-95.90435481884327,18.135667757030433],[-95.90446962763826,18.135754849688624],[-95.90458672243489,18.13579054996285],[-95.90483223697822,18.1357283808361],[-95.90506829768356,18.135751135052942],[-95.90667101315807,18.135572738507392],[-95.90744402731451,18.135754436475338],[-95.90760027576533,18.135900673564663],[-95.9077366896376,18.13624823054073],[-95.90777971989257,18.136379503340834],[-95.90795021763927,18.136610696168532],[-95.90848390480812,18.13672342799032],[-95.90921448296399,18.136821208298215],[-95.90926518121728,18.13703807036876],[-95.90918836359685,18.137286428280447],[-95.90932282426274,18.137716239425345],[-95.90959424351007,18.13802590521044],[-95.91105076811351,18.138326066068373],[-95.91126265783316,18.138371348529176],[-95.91137265580892,18.138365332677893],[-95.91152851516591,18.138372954245426],[-95.91172044170617,18.138249782554453],[-95.91182898274837,18.13802890468827],[-95.91254794323487,18.137895684416264],[-95.9128329923658,18.138022514970487],[-95.9131361731624,18.13823391750367],[-95.91342137189622,18.13848126591654],[-95.91352062713685,18.138715808130485],[-95.913554369461,18.139068203600573],[-95.9135602584264,18.139449506586743],[-95.9136101264329,18.139807783743663],[-95.91374777232085,18.14029010780581],[-95.91382649943512,18.140864360146736],[-95.91387186386277,18.141201518454636],[-95.91383107724175,18.141377989392367],[-95.91390467658528,18.142071676837645],[-95.9137739222142,18.14266884654495],[-95.91378185730235,18.143075256539476],[-95.91346789714919,18.144508286378652],[-95.91348651894492,18.144792664856197],[-95.91357271606904,18.145139473161294],[-95.91352365108304,18.145540506723194],[-95.91313488960776,18.146024773412364],[-95.91300628901934,18.14628079666369],[-95.91257874345513,18.147283634681116],[-95.91257697352125,18.14750002039648],[-95.9126425051245,18.147607155187643],[-95.91284583451767,18.147779601438913],[-95.91301989334278,18.147906101620038],[-95.91302996894217,18.1483841837275],[-95.91298448294344,18.148703269053613],[-95.91295615000791,18.14881407250664],[-95.91288415850738,18.149027577613026],[-95.91245649586068,18.15058222511675],[-95.91274857263232,18.150691109058755],[-95.91304230413067,18.150762751584637],[-95.91319167514905,18.150918078060954],[-95.91318604918564,18.151044733028527],[-95.91314062109075,18.151363822049518],[-95.9131522483093,18.15145386949405],[-95.91334380764152,18.151646354397087],[-95.91356189554722,18.15182138215505],[-95.91368822614635,18.151931495899134],[-95.91378127584079,18.15196732452739],[-95.9142557036239,18.15200700917194],[-95.914340141828,18.152028519896874],[-95.91458002979812,18.152155528038804],[-95.9148328518865,18.152212710081756],[-95.91492785121721,18.15217433137616],[-95.91511027274055,18.15202568403305],[-95.91518409449884,18.151781461590588],[-95.91546173699106,18.151672454532275],[-95.91569934905306,18.151736046876294],[-95.9162521662958,18.151731775651342],[-95.91659968217738,18.15162560183245],[-95.9168023320318,18.15147344786476],[-95.91736862643285,18.151797110857387],[-95.91760457933009,18.15184008638272],[-95.91779577635185,18.151787705471406],[-95.91813815151278,18.151533589437747],[-95.91834307273837,18.15148846322495],[-95.91848033710323,18.15154746991567],[-95.9186890482166,18.151415625186416],[-95.91866941086727,18.151227717947847],[-95.91865441568649,18.151093467819294],[-95.91900557301716,18.150746887101207],[-95.91948221038416,18.150726147111243],[-95.91978507185928,18.151152692386574],[-95.91998599498595,18.151354619770018],[-95.92016579856676,18.151402012817016],[-95.9203286219751,18.151515523017224],[-95.9204544930065,18.151688873550597],[-95.92054504262632,18.15201326797427],[-95.9209477303595,18.151941793087815],[-95.92108692022794,18.15180042753974],[-95.9218529901342,18.151100015828035],[-95.92221407991485,18.14958448950722],[-95.92217223071242,18.149266517340948],[-95.92214394964981,18.148958016785343],[-95.92225382023372,18.14868848965409],[-95.92229683365349,18.14834944673163],[-95.9220118278148,18.147537457921715],[-95.92238193759727,18.147473100304012],[-95.92256698446158,18.147342785277715],[-95.92261470120201,18.146991485018248],[-95.92260945301427,18.146651638235312],[-95.92232774971615,18.14657353462286],[-95.92217411440362,18.14653861612544],[-95.92200865984927,18.146431495072818],[-95.92197186499305,18.14635828015014],[-95.9219382362329,18.146213470367115],[-95.92208035873512,18.146056657255144],[-95.92233900461605,18.145981071866174],[-95.92242319763136,18.14588885726164],[-95.92231736597864,18.14567895446197],[-95.92220692983238,18.1455032961714],[-95.92250483827348,18.14492628059884],[-95.92248864812967,18.144749662305003],[-95.92248742219397,18.14459660476996],[-95.92246201625494,18.144266600332003],[-95.92249483823457,18.143346902472615],[-95.9226642183304,18.143139550432522],[-95.92263833504643,18.14300079643135],[-95.92249287324842,18.14284953877376],[-95.92269997117728,18.141975593174834],[-95.9224396550743,18.141704924370856],[-95.92217630104363,18.141502989124035],[-95.92200710747443,18.141326006287443],[-95.92209783236433,18.141125154602662],[-95.92235877112375,18.141063581542767],[-95.9226014193647,18.141271910307296],[-95.92277862859493,18.141393359044628],[-95.92300023190148,18.14136626612435],[-95.92348943220645,18.14112743669631],[-95.92362558010245,18.14118107608681],[-95.92368657500515,18.14122566174126],[-95.92369434353958,18.141334234082592],[-95.9243062987614,18.141613458879306],[-95.92463852693851,18.14178933885654],[-95.92477832267923,18.141903291475842],[-95.92509054040414,18.142246753586505],[-95.92522169089449,18.142414484326707],[-95.92550221391986,18.14276269915524],[-95.92558487094897,18.14288635123353],[-95.92564590473137,18.143097769925646],[-95.92559179999068,18.14332416857053],[-95.92552042300775,18.143513761491988],[-95.92542032838531,18.143924744205265],[-95.9253991137374,18.144260733641715],[-95.92550660648101,18.14453576391054],[-95.92549276603143,18.144847991777738],[-95.92532052182503,18.14503950579126],[-95.92526180746387,18.145232555958955],[-95.92535101389205,18.145777521150137],[-95.92522845710386,18.146127458307262],[-95.92554334655068,18.146410892676556],[-95.92573764993216,18.146430780499145],[-95.92598417456287,18.14641070003546],[-95.92622027401808,18.146220450101225],[-95.9264526332588,18.145381701228075],[-95.92694104191457,18.145160909745186],[-95.92709952529918,18.145137231144417],[-95.92739149915832,18.145227277545132],[-95.92772077793722,18.145270562798032],[-95.92832183363765,18.144866440053192],[-95.92843779438692,18.14478009031069],[-95.92855112419,18.14450081840573],[-95.92862140490553,18.144305502286727],[-95.92882107734385,18.144227919243065],[-95.92900146416974,18.14446015034622],[-95.92933007473732,18.144382410986054],[-95.92958331920619,18.14410880395991],[-95.93016146914715,18.14409472480662],[-95.93044938267076,18.144176009803118],[-95.9305074052653,18.14425871106073],[-95.9306349359208,18.144670892005706],[-95.93101088192566,18.145296428272047],[-95.93125221873782,18.14530619759023],[-95.93138861447261,18.145277745448766],[-95.93179148959541,18.144852520438747],[-95.93192496108577,18.14472884845196],[-95.93198728789696,18.14444606807683],[-95.93212577840916,18.1438878563024],[-95.93222149303801,18.14367182065814],[-95.93257205951147,18.14249799997407],[-95.93244947344874,18.14208376943691],[-95.9323774332621,18.14180083865557],[-95.93278762875082,18.141704346339566],[-95.93318416862064,18.141661158608827],[-95.9333417257564,18.141667534415888],[-95.93349476187291,18.14177603681071],[-95.93350878859269,18.141841246356023],[-95.93351920237251,18.142116306008234],[-95.93341803821943,18.1422360594712],[-95.93334156501237,18.142308360571406],[-95.93317377383028,18.142533134460336],[-95.93329151219433,18.14280178385053],[-95.93339694853813,18.142967595495293],[-95.93339803570592,18.143069949387268],[-95.93333792106716,18.143413886707094],[-95.93342134136361,18.14356805390753],[-95.93373680883298,18.14385320510479],[-95.93399623732591,18.14410602009542],[-95.93414108290784,18.144526557866584],[-95.93402498424177,18.14498498959773],[-95.93399977317182,18.14517242936671],[-95.93420347251589,18.145515507307152],[-95.9347197122363,18.145827914379083],[-95.93490266155987,18.146050119229187],[-95.93506649597481,18.14634057859172],[-95.93573455517867,18.146490368845832],[-95.93601488554549,18.146325262876587],[-95.93623037906588,18.146356988133334],[-95.93631570890045,18.147150596325446],[-95.93604663991113,18.147423575603398],[-95.93595503395409,18.147496588276624],[-95.9356349035811,18.147652424870387],[-95.93544001786199,18.147882355229456],[-95.9354498897884,18.14819091795522],[-95.93545506049207,18.148981286477635],[-95.93524016857509,18.14911837021191],[-95.93470005761071,18.14913208630594],[-95.93419682156366,18.148889232459908],[-95.93364497561879,18.148836205224313],[-95.93325865650655,18.14903540800873],[-95.9331198505725,18.149267605323814],[-95.9334362567202,18.149740717540055],[-95.9340236462549,18.150079016826396],[-95.93410644155858,18.150205103789517],[-95.93410990628831,18.1504891074444],[-95.93376922024203,18.150927943116926],[-95.93286874681348,18.15112932111049],[-95.93248954182428,18.151167684183918],[-95.93236883295964,18.15135459504654],[-95.93449701720499,18.152296445825755],[-95.93580764800458,18.153398109033333],[-95.93614651948968,18.1537263790662],[-95.93656305240683,18.15429557487846],[-95.93687530099595,18.155589380691538],[-95.93714170061634,18.156467070124847],[-95.93741131643475,18.15676282955883],[-95.93950043508028,18.15782300734776],[-95.93999481704748,18.158028779729648],[-95.94085375201303,18.158271151485735],[-95.94252745732604,18.157683034427237],[-95.94339953514748,18.157368554108643],[-95.94558618398395,18.157861219207916],[-95.9469420595309,18.158716916193555],[-95.94747919603486,18.15898996420782],[-95.94858992746822,18.159231521345646],[-95.95253419580274,18.159827814139135],[-95.95396728357775,18.15976539406256],[-95.95446233457164,18.159697913074638],[-95.9549556577669,18.159149501528248],[-95.9558577529761,18.15721320267471],[-95.95661499623407,18.15716724862631],[-95.95699190506406,18.15718244024106],[-95.95736839240823,18.15720851791866],[-95.95803131149381,18.157224329434484],[-95.9584425169785,18.157240899461954],[-95.9588337636934,18.157191090012418],[-95.95907991548,18.157058925486012],[-95.95916104625553,18.156515733300523],[-95.95912545639021,18.156284805120492],[-95.95861422256831,18.155422677960814],[-95.95837892167776,18.154748595563092],[-95.95800478634533,18.15429898292348],[-95.95802466921009,18.15397017256271],[-95.95797690747855,18.153853410982038],[-95.95809052514477,18.153542496250566],[-95.95823249612278,18.15328408979184],[-95.95842347802409,18.152985334210143],[-95.95867295240186,18.153048464607025],[-95.95871178094757,18.15323377388893],[-95.95874454803322,18.153459661134207],[-95.95887970711681,18.15349778889771],[-95.95904757415593,18.15331840479155],[-95.95942179674813,18.15329205947984],[-95.95967260021695,18.153310454538484],[-95.9600958908768,18.15315349504209],[-95.96034647805237,18.152782403022],[-95.96053163400029,18.152715306422124],[-95.96099999387462,18.152717590979705],[-95.96146986965203,18.152686802853168],[-95.96273921444663,18.15203358310748],[-95.96323429871472,18.15202038580486],[-95.96344956945148,18.15225277846872],[-95.96355436335011,18.152828746739488],[-95.9644069571662,18.153253689501526],[-95.96459274473108,18.153368885883026],[-95.96477333515901,18.15379876476311],[-95.96464332127863,18.15419126910092],[-95.96470921577242,18.154487328871028],[-95.96480783292031,18.154564601393304],[-95.96518376371807,18.154595738500404],[-95.9667219238084,18.154321294186047],[-95.96716508045569,18.154223727934948],[-95.96765630042387,18.153730908845944],[-95.96820318846972,18.152735807524266],[-95.9682704553768,18.15259735380272],[-95.96928193343331,18.15155351211814],[-95.969798394583,18.15105047927466],[-95.97023356922853,18.150656248410712],[-95.97068505698144,18.150429925008723],[-95.97107076414636,18.151478270500604],[-95.97132916367542,18.151512698473596],[-95.9715067593894,18.151287586438286],[-95.97159359020509,18.149995851296637],[-95.97168745236144,18.14974559770957],[-95.97226965010896,18.14947267338124],[-95.97276038345251,18.149372274754967],[-95.97305439198453,18.1493600565438],[-95.97360368023294,18.149262009059896],[-95.97381782971479,18.149158491937214],[-95.97420927355142,18.148837850863003],[-95.97458870463169,18.148789050277003],[-95.97458960837793,18.1491494684264],[-95.97464852669668,18.14933604340706],[-95.97466138232119,18.149424647493106],[-95.97480190655642,18.149470337318178],[-95.97513833561135,18.149455684643726],[-95.97562718704233,18.149221359422313],[-95.97615732734863,18.14880460373223],[-95.9765436461704,18.148636007314906],[-95.97717801528614,18.1490233613153],[-95.97736845486509,18.14907545674356],[-95.97752886095242,18.14905652417832],[-95.97783247108669,18.148802048101004],[-95.97793281100832,18.148364035755662],[-95.97804765071982,18.14801945308301],[-95.9783624545135,18.147511487669647],[-95.97850571110553,18.147276005943468],[-95.97907215685467,18.146825417572188],[-95.97929639213328,18.146713790136005],[-95.97992611885081,18.146148618413974],[-95.98011618291912,18.145180506339216],[-95.98024454749844,18.14460184563393],[-95.98101667900784,18.144367156052],[-95.98138449390126,18.144013690058443],[-95.98139200903978,18.143842578492468],[-95.98153736992163,18.14295321023519],[-95.98194899940773,18.143115771318207],[-95.98188444747854,18.143525856651877],[-95.98184842712624,18.143740268752424],[-95.98197973906389,18.143929655767977],[-95.98226254856087,18.144906033279653],[-95.98210777553811,18.14511755344921],[-95.9820817488764,18.145256180146873],[-95.98199100007116,18.14550650449513],[-95.98205674325112,18.14565767561345],[-95.98215978310333,18.145707499119624],[-95.98230035384466,18.145700976124374],[-95.98242715152423,18.14549898475724],[-95.98257683992324,18.14533319994223],[-95.98281204398916,18.14557753790683],[-95.98295438188529,18.145818178261948],[-95.98289898137585,18.146359141815026],[-95.98298597840073,18.14664834290619],[-95.9831202971136,18.14676802927437],[-95.98368866938853,18.146993994515014],[-95.98382299035711,18.147113650619417],[-95.98415050979793,18.14737439414273],[-95.98419363338866,18.147452311804216],[-95.98443575247467,18.147842963352275],[-95.98458404347008,18.147998283296374],[-95.98499146259348,18.14825586462797],[-95.98518332028732,18.148605824997617],[-95.98515389978314,18.148762404154922],[-95.98543110292081,18.149320521756977],[-95.98564333124767,18.14961581705063],[-95.98589517819869,18.150034613383525],[-95.98641598565166,18.150141568022434],[-95.98717006383123,18.150783008456017],[-95.98758905409193,18.15081415037281],[-95.98838229325258,18.1503575359705],[-95.98861663038826,18.150459028353737],[-95.98943549016627,18.150932093986455],[-95.9897895827728,18.15090327163199],[-95.99037091336925,18.150998269761317],[-95.99050986060877,18.151082704144187],[-95.9905950711584,18.151193662752746],[-95.99088916339605,18.151877897920258],[-95.99122408780426,18.151914379307755],[-95.99130836762623,18.151874739657842],[-95.99140424926219,18.151742360734886],[-95.99182358155525,18.151147093873988],[-95.99177866596847,18.15159243598424],[-95.99186607314039,18.15165332482377],[-95.99208371985509,18.151654876863688],[-95.9923685305443,18.151494190474693],[-95.99269579780969,18.151220492033588],[-95.99309384200677,18.151387030321075],[-95.9931231800798,18.151574613932837],[-95.99330113549934,18.151624760817185],[-95.99337826395197,18.151577663998296],[-95.99373712866037,18.151269381495126],[-95.99388793421775,18.1512539141479],[-95.99413055426243,18.150942538848994],[-95.99422050801951,18.15046986046815],[-95.99531424743049,18.150606080150226],[-95.99532027674309,18.150445994666143],[-95.99524845510564,18.14995202827322],[-95.99539642762664,18.149775324176005],[-95.99563696675,18.14958406440479],[-95.99632345404217,18.148650781109666],[-95.99646585162219,18.148656483195225],[-95.99654266507292,18.14861651221497],[-95.99657639994541,18.14853182895098],[-95.99645061178109,18.14833752900188],[-95.99647318991572,18.14782216944883],[-95.99705676700859,18.14769497708818],[-95.99706178327858,18.14758046599775],[-95.99686671283831,18.147407727271855],[-95.99659916325106,18.147174730158554],[-95.99660261520188,18.14692393620726],[-95.99665823044404,18.146854468277184],[-95.99690709694727,18.14682855601228],[-95.99705727023263,18.14682739945033],[-95.99736808147594,18.14664308457799],[-95.9973974284157,18.146486530905065],[-95.99743774364975,18.146423619666336],[-95.99771317451615,18.146563692566474],[-95.9977883344335,18.146592774332987],[-95.99786943298466,18.146549072085293],[-95.99784469623705,18.146365572551133],[-95.99779411203775,18.146212337567874],[-95.998070573897,18.14606958225238],[-95.99833319942667,18.1462013373133],[-95.99840191874563,18.146175410292415],[-95.9985328379704,18.145585525158936],[-95.99871329500303,18.145578409776704],[-95.99886842208434,18.145806902585207],[-95.99918945134334,18.145676362831807],[-95.99969754636584,18.14513756954409],[-95.99999637249891,18.145028243031106],[-96.00009394819097,18.1449786596516],[-96.00017550731889,18.1446435608172],[-96.00067427464302,18.144242188336364],[-96.00107585086027,18.144296198695372],[-96.00120287285631,18.144314347549198],[-96.00133231196094,18.14427594209741],[-96.0016841383515,18.144043445282364],[-96.00200711706373,18.144100246873336],[-96.00215582581563,18.144156419027183],[-96.00232674973802,18.14415697905497],[-96.0026679726513,18.14401993071408],[-96.00351932069083,18.144393048568247],[-96.00399318762936,18.144229913211063],[-96.00401869244405,18.143647003121828],[-96.0040309951865,18.14351563034677],[-96.00433660579898,18.143206362028252],[-96.00512597889298,18.143207554870514],[-96.00557287565914,18.143164706939615],[-96.00586205225778,18.143266496646618],[-96.00628291075651,18.14333395482538],[-96.00654206390772,18.14334431518523],[-96.00722439822789,18.14300719990058],[-96.0085765662156,18.142528504729228],[-96.00897302009793,18.142185014456402],[-96.00965743158793,18.142036731133203],[-96.01015160865819,18.14212889606506],[-96.01031874961137,18.142021792023684],[-96.01069196337028,18.14153612984012],[-96.01141360992926,18.14051647075604],[-96.0118621696825,18.139837083325972],[-96.0120632459545,18.13961652742711],[-96.01235670032634,18.139214417330265],[-96.01233791459236,18.1388646042181],[-96.01234258888223,18.138587517059875],[-96.01365805770041,18.137538510903482],[-96.01390815782008,18.137702802071317],[-96.01433397533384,18.137816962058764],[-96.01468715298739,18.137676757959923],[-96.01489386704151,18.13749414526535],[-96.0154782741975,18.137128813229992],[-96.01589585065386,18.137156934833854],[-96.01606507055976,18.136980796692455],[-96.0161302883044,18.13669727067912],[-96.01674921782313,18.136632553093023],[-96.01695325037275,18.13682073975002],[-96.01847684551888,18.136504149462155],[-96.01874353282216,18.136434200202643],[-96.01881108812859,18.136094442679507],[-96.01895009883117,18.13604961650441],[-96.01905273601125,18.136114145838803],[-96.01908651864358,18.136306859806098],[-96.01948256167839,18.13641331122193],[-96.01951312609873,18.13653227586775],[-96.01944233271104,18.136628454020467],[-96.01947463295511,18.13673580352736],[-96.01952913240433,18.13684403860725],[-96.01944753188013,18.137017551771123],[-96.01944688443734,18.13720135307932],[-96.01934255361078,18.13755778677165],[-96.01932420154566,18.13773962038846],[-96.01954089097245,18.137730542670283],[-96.01998259863274,18.137477257452076],[-96.02002139870689,18.13726668297727],[-96.0202123671487,18.137046378670902],[-96.02052758401356,18.13737172782635],[-96.02068274299273,18.137717305691694],[-96.02088871093571,18.137916406306772],[-96.02094133562423,18.13789729887435],[-96.02101954655359,18.137801445705918],[-96.02114285759035,18.13742625405132],[-96.02133641880869,18.136896600592422],[-96.02131410432031,18.13643163807683],[-96.02159453917324,18.13606014035463],[-96.02218658294004,18.135578951523655],[-96.0243791441348,18.13411193257889],[-96.02485764724048,18.133754037073345],[-96.02645147944224,18.13336106958775],[-96.02719546197977,18.133354449770366],[-96.02818060872335,18.13356043379912],[-96.0286202926676,18.1337446856092],[-96.0317729087804,18.13514948205443],[-96.03270628146203,18.135324370599676],[-96.03367440200861,18.135573132260333],[-96.03527259585786,18.13599191997207],[-96.0360313657423,18.136299686488485],[-96.03705826612702,18.136768252924128],[-96.03822709551389,18.13724886411461],[-96.03913348712786,18.137561164637816],[-96.04009090839492,18.137881955430657],[-96.04078665930825,18.13828658121264],[-96.04123009514427,18.13844393038346],[-96.04270940932327,18.135358455690664],[-96.04311135073169,18.134673433403236],[-96.04345021015195,18.134862600736085],[-96.04634063435708,18.13630997479879],[-96.0468737075035,18.136564532377747],[-96.04690718329448,18.135671180401175],[-96.0469848051211,18.134681445681906],[-96.0469675853127,18.133476868449463],[-96.04696982109783,18.132403337812093],[-96.04699031706508,18.131444770211488],[-96.04947146223441,18.128933071797633],[-96.04985798636807,18.12869409340641],[-96.05019731782727,18.127991369056588],[-96.05037754742045,18.127446477897024],[-96.05253905080343,18.127114237844296],[-96.05308995223118,18.127809581126826],[-96.05321781558871,18.12988082099588],[-96.05343347339362,18.13025312153934],[-96.05424912251868,18.130643823392745],[-96.05443589060098,18.131039432932937],[-96.0546647451518,18.131493199444776],[-96.05529252087831,18.13216967087527],[-96.05751786763886,18.134132033065157],[-96.05948447553698,18.13358789173958],[-96.0593668419574,18.133381805838155],[-96.06159497514585,18.131661906915667],[-96.06188127544397,18.13165266241134],[-96.06308065197516,18.13195303440932],[-96.0636610942276,18.13214661497159],[-96.06424589822262,18.132266040392096],[-96.065446396173,18.13233659295429],[-96.06614248060691,18.13168701548102],[-96.06638309573208,18.131588590489685],[-96.06885846499489,18.140765238920153],[-96.07951308541709,18.149954253922942],[-96.08018817159126,18.151951155789902],[-96.08096086311161,18.153977493140246],[-96.08123109353818,18.154362840044712],[-96.0835131705125,18.16078114648144],[-96.08358793586723,18.16096712929277],[-96.08422640043761,18.16253431693133],[-96.0874947665381,18.163193098412023],[-96.08949772286434,18.16365872761213],[-96.0940203618369,18.16555349376449],[-96.09918359466502,18.16684330609303],[-96.10145388137965,18.165612295456356],[-96.10401512915911,18.16484504648406],[-96.10853764808593,18.16603643270787],[-96.11206161051331,18.16577288951794],[-96.11546795335727,18.16196697066283],[-96.11694872165299,18.158620972669496],[-96.11686972835042,18.156625623349044],[-96.11915160351703,18.15418114528552],[-96.12033867587104,18.15422770046837],[-96.1216799364492,18.154944370732665],[-96.12267137882185,18.154860896590037],[-96.12304604562627,18.154228988246416],[-96.12392901351149,18.151580914998476],[-96.12215947895879,18.14636310853956],[-96.12258438133665,18.141573991110192],[-96.12412821498617,18.14037752709629],[-96.12875194245561,18.137984339464367],[-96.13312200124528,18.136568404329182],[-96.13563640503918,18.134117205457926],[-96.13671507349301,18.134035634997133],[-96.13756279441822,18.134204922259926],[-96.14138947829741,18.139120980464213],[-96.14291316206288,18.140145896484],[-96.14362553021391,18.140148962071407],[-96.14644725480906,18.134533116049795],[-96.14856812810348,18.132190125768318],[-96.14971855212394,18.131640947248457],[-96.15422593721019,18.131804894945105],[-96.15764063655257,18.132532081652755],[-96.1647226765503,18.134643404771566],[-96.17161036087089,18.137663557402675],[-96.17966604821095,18.140566042769763],[-96.18766448212295,18.149979437819695],[-96.18827349722375,18.152725917985094],[-96.18652314648591,18.155498724540678],[-96.18476997687986,18.155901055242055],[-96.18301540640545,18.156946904614472],[-96.18340333025219,18.160620164303623],[-96.18622406218822,18.16363809141751],[-96.1876100846008,18.1656684525513],[-96.18637609706508,18.167241438764393],[-96.17555980363602,18.167740963472966],[-96.17158540182959,18.168555948178778],[-96.16913338503349,18.17209776470702],[-96.16856449365105,18.176983178316675],[-96.16899968161181,18.18339411149003],[-96.17069103050022,18.186383983030566],[-96.1720227905621,18.18644825034704],[-96.17360293804552,18.185796817642597],[-96.17707040608241,18.183632187186788],[-96.18568253545658,18.181961247395407],[-96.18984130476593,18.18107275344289],[-96.19580599606633,18.178472599282827],[-96.2031329923251,18.174875229224824],[-96.21044294644042,18.16881545562387],[-96.21420264046071,18.16518989974844],[-96.21587398611717,18.16154316225868],[-96.2180911777836,18.16262831841965],[-96.22005518726365,18.1678846656946],[-96.22295598192233,18.173318587404708],[-96.22541967454089,18.17855810393951],[-96.23100304181554,18.189726785713617],[-96.23451826185175,18.192936015286193],[-96.23995531422213,18.19545223314566],[-96.2425489754828,18.196314090300007],[-96.24562414722743,18.200464852926075],[-96.24684919863682,18.20307359464914],[-96.25210667705983,18.207959366480907],[-96.26694251363028,18.22361167465118],[-96.26828992084774,18.22550017061843],[-96.26610821248192,18.238520180301293],[-96.26577031659076,18.243056668206407],[-96.26681806533531,18.245662068310992],[-96.27252736741326,18.25027183462771],[-96.27994742850206,18.25787125931049],[-96.2827034112683,18.259348080275743],[-96.28703185459847,18.258167252214832],[-96.28762972947482,18.25919353796843],[-96.28825913933463,18.259943866749268],[-96.28742492313467,18.260743600012688],[-96.28629679006184,18.261149840080407],[-96.28618501409096,18.261426923179272],[-96.28634940590808,18.26180591818604],[-96.28679598422252,18.261899388636607],[-96.28867538481313,18.26239887019136],[-96.28854195998588,18.262849796544344],[-96.2869312699811,18.262736036891283],[-96.28648472075827,18.26288151177016],[-96.28623732810718,18.263292614652414],[-96.28668866925688,18.264073929702192],[-96.28601787263591,18.264470231673386],[-96.28529883637486,18.264673966106045],[-96.28405650477771,18.266599810780008],[-96.28406980844949,18.267240676591655],[-96.28353817245477,18.267985023905908],[-96.28335996400858,18.268642149807533],[-96.2831289102702,18.268900956135553],[-96.28201260974424,18.26878195317977],[-96.28161032794605,18.268346093796367],[-96.28151983953319,18.267396448690704],[-96.28157417286747,18.267054445070755],[-96.28155733442509,18.266738404979606],[-96.28085765546064,18.266711736351226],[-96.27916782716176,18.26616416691786],[-96.27897823482624,18.26598652724141],[-96.27840768702924,18.266049819568877],[-96.27815275813799,18.26610044805642],[-96.27755447654846,18.266220435077457],[-96.27729565834625,18.26626717618973],[-96.27701277073919,18.26629884560566],[-96.27602787710322,18.265809891166896],[-96.27584395910753,18.265917091624146],[-96.27619909653714,18.266468421114837],[-96.27676010157074,18.267163550404405],[-96.27685657526149,18.26769926313193],[-96.27701688993824,18.26844930036799],[-96.27717491166663,18.269224251787648],[-96.27685528742757,18.26991283517407],[-96.27697507706921,18.27078155336278],[-96.27724564397056,18.27124670327271],[-96.27726983190621,18.271403081955498],[-96.27719549293175,18.27149117330498],[-96.27700516482037,18.27155808585394],[-96.27591097057581,18.27147598859318],[-96.27537303217025,18.27157614226701],[-96.27491819676527,18.2718147630394],[-96.27516945103014,18.272077932608738],[-96.27513217350497,18.2722977514822],[-96.27205300353432,18.272053934256974],[-96.27139447178558,18.27211824667313],[-96.2711236305069,18.27240671598628],[-96.27098084110384,18.27270231275594],[-96.27081420542379,18.273316401719796],[-96.2691939420236,18.27427363361926],[-96.26971761078119,18.274514875945442],[-96.27021040207228,18.274486768994166],[-96.272276218444,18.274838278792686],[-96.27353429784955,18.27553442721802],[-96.27367371562224,18.275727477044597],[-96.27360419148567,18.27604664330869],[-96.2736089810075,18.27643569728565],[-96.2740303175147,18.276941212877148],[-96.27396191832895,18.2774012260885],[-96.27369501409032,18.27774971814273],[-96.27338873672238,18.277852007145782],[-96.2731526549045,18.278860268699702],[-96.27271127806256,18.279296281550558],[-96.27265494605996,18.279530984575615],[-96.27349296686828,18.27963698656572],[-96.27350324760584,18.280281238948362],[-96.27323500516673,18.281055046365623],[-96.27420772776105,18.281374934935968],[-96.27511911434493,18.281509194502632],[-96.27661400070787,18.282143237586297],[-96.27737285465679,18.28247313038952],[-96.27811053077778,18.28281535153087],[-96.27853882315867,18.283460420210076],[-96.27857615209092,18.283818392583044],[-96.27826507968899,18.284646606154013],[-96.27806931932548,18.28485342843885],[-96.27746446884362,18.28477609990341],[-96.27719508949139,18.284929965492495],[-96.27651819042114,18.285155184258258],[-96.27618656980843,18.28486253328191],[-96.27557467561712,18.28509790082944],[-96.27521452739501,18.285582747412377],[-96.27444531107591,18.285730652599682],[-96.27388853343689,18.285915893160393],[-96.2741527460575,18.286558903567254],[-96.27510305118159,18.286620061595556],[-96.275464063154,18.28659478427295],[-96.27617583565183,18.28706719689626],[-96.27732511880777,18.288218319905297],[-96.27709028695114,18.28831416286016],[-96.27689596264389,18.28836262569621],[-96.2769532756048,18.288711038740587],[-96.27708492890031,18.288900558137584],[-96.2771418037504,18.289466472283152],[-96.27749236370119,18.290398339028343],[-96.27753046906645,18.29175165755953],[-96.27748312413053,18.292331910096948],[-96.27748570009265,18.292575830874227],[-96.27754674501386,18.29372672696445],[-96.27695416401065,18.294351782844615],[-96.27650179090091,18.29493138441063],[-96.27613078735232,18.295315347090934],[-96.27579866955443,18.29539124953402],[-96.27541348540217,18.295151452649975],[-96.27444266633302,18.295294428049488],[-96.27398886761796,18.295686490420678],[-96.27413207664551,18.2961586457032],[-96.27388961325414,18.29662427287559],[-96.27286094671007,18.296794839135885],[-96.27153683378128,18.29662209429989],[-96.27063734674016,18.29716212067831],[-96.27132303574962,18.298473698352325],[-96.27205352619353,18.298944837417025],[-96.27251487389896,18.29941435578627],[-96.27293572353341,18.300323349345263],[-96.2733237472961,18.300540331283287],[-96.27365323373186,18.300258067836012],[-96.27381215406939,18.300045110678468],[-96.27474139906701,18.300502460603013],[-96.27520596748604,18.30060372191076],[-96.27614709594724,18.300818630903393],[-96.27602290899995,18.300651359849155],[-96.27602311049691,18.300313091407475],[-96.27631652186773,18.300198010597853],[-96.27681789541782,18.300286007687134],[-96.27741335616713,18.299993037133333],[-96.27773246859545,18.299982247665355],[-96.27880898541707,18.300232766078125],[-96.27969373315995,18.299856579553875],[-96.28081168714658,18.30001630860471],[-96.28161941013224,18.300749797478773],[-96.28260031483103,18.30149174854006],[-96.28406449122201,18.301709281318324],[-96.28544582157843,18.302251589031243],[-96.2851977263299,18.303639856598636],[-96.2838651136147,18.306286214903707],[-96.2841352502395,18.306211541245716],[-96.28526817227498,18.306569927496014],[-96.28565297545879,18.307173101061153],[-96.28580963260089,18.307678177381092],[-96.28570314536711,18.308242272692155],[-96.28530634455791,18.308505335924337],[-96.28498559327238,18.30814153587295],[-96.28487801686583,18.30768079489883],[-96.28487156494941,18.307187629466114],[-96.28443313676775,18.30824616288595],[-96.28475994681202,18.309396764034148],[-96.28513495544843,18.30941919992341],[-96.28571877200818,18.309351716481615],[-96.28699910503911,18.309791942059917],[-96.28780799951221,18.310503898289028],[-96.28671305710145,18.310959634838696],[-96.28702753392139,18.3113759384658],[-96.28762449952637,18.311664342129063],[-96.28811976821959,18.311608495230416],[-96.28858370695895,18.311394703214148],[-96.28895419145937,18.31114067091869],[-96.28949984622864,18.311816633296473],[-96.29002253445105,18.312012512231945],[-96.29038647726424,18.311923366804024],[-96.2910720621793,18.310849377338684],[-96.29161455763551,18.31134364458461],[-96.29199785815564,18.312040684876422],[-96.29245348302601,18.312424143258625],[-96.29439591078261,18.31238878532639],[-96.2944496586619,18.312428793570234],[-96.29465570532403,18.312580877974483],[-96.29469578873386,18.312699540750998],[-96.29503358701936,18.313749656884454],[-96.29491637654235,18.31545428198274],[-96.29574148970448,18.315868154016982],[-96.29615049443635,18.316526672850614],[-96.29675428496955,18.31741738430628],[-96.29705925802898,18.317367459004913],[-96.29685093541605,18.316206364116738],[-96.29756655189908,18.316211683218853],[-96.29826608488992,18.316260263720608],[-96.29905733864416,18.31643550946245],[-96.29956000100799,18.317434446740776],[-96.30010839517132,18.317628825947224],[-96.3009850264674,18.317452103082076],[-96.30183755562194,18.318059961407357],[-96.30286653786953,18.31856685542084],[-96.30324354122484,18.31923857390916],[-96.30348878892113,18.319861021060944],[-96.30370738116295,18.319847813640706],[-96.30390633817478,18.31967993774532],[-96.30406312466027,18.319606044561965],[-96.30423033516786,18.31953161997319],[-96.3044458185754,18.31959119666061],[-96.30505224891476,18.320021263249146],[-96.30539033263199,18.32006502281456],[-96.30796751284208,18.320617209621048],[-96.30844556929668,18.321374962027846],[-96.30867552453446,18.321829606613278],[-96.30904242918052,18.32201158978563],[-96.3096025629701,18.322142970344487],[-96.30971634229758,18.3232464583578],[-96.30819305443737,18.323515220219463],[-96.30866787136358,18.324116745800268],[-96.30910813710636,18.32425129795746],[-96.30903152188546,18.324896677162428],[-96.3067823446325,18.325123187504687],[-96.30600355404624,18.326353332935525],[-96.3063457094068,18.327244587524945],[-96.30612425448157,18.327694568321192],[-96.30566706898935,18.32845985997244],[-96.30564669548176,18.32856532535891],[-96.3059935765047,18.329157552175786],[-96.30809086608679,18.32945044538684],[-96.30847936510389,18.329455557335223],[-96.31099573957397,18.327363755637805],[-96.31190210520043,18.327682754064085],[-96.31269730592828,18.327596878700547],[-96.31293111548143,18.32770067300777],[-96.31311317016952,18.32776870226553],[-96.31353706148542,18.3280936904942],[-96.31368673422924,18.328491783887102],[-96.3137591040408,18.329215846563443],[-96.31499274940074,18.331389378227414],[-96.31335351145464,18.333229026573974],[-96.31379188570247,18.335613795338645],[-96.31457855326607,18.336021907137933],[-96.3150523248625,18.336340581785862],[-96.31547491716537,18.336684650285576],[-96.31587320341902,18.337277710794012],[-96.31605352759294,18.33759209399898],[-96.31585664387393,18.339576929306475],[-96.31596431498559,18.33991590826696],[-96.31680578117289,18.339831574396555],[-96.31724708535774,18.33972526254871],[-96.31741785689002,18.339752224801032],[-96.31752526487475,18.34009802910714],[-96.31733976246585,18.340425908237194],[-96.31625886004264,18.341603694918717],[-96.31590803084248,18.341945822531557],[-96.31555118184059,18.342260363184607],[-96.31498135737581,18.342184115581915],[-96.3148139365149,18.34245266726839],[-96.31474229840461,18.343216184101948],[-96.31470989495142,18.343514344860466],[-96.31465378477174,18.344222475049776],[-96.3145923735567,18.344450722171246],[-96.31413024829186,18.345453993861838],[-96.31364622157673,18.34561559043391],[-96.31352568482123,18.345756855582636],[-96.313538455568,18.3459092340903],[-96.31355962010878,18.34601333190227],[-96.31362706869947,18.346076647711584],[-96.31391077009039,18.346148155249978],[-96.31404483369568,18.346141078514677],[-96.31458315050992,18.34606425686394],[-96.31468825344285,18.346141146254467],[-96.31468522974734,18.34621394742436],[-96.31465845847902,18.34670508988563],[-96.31489491760135,18.346993546495355],[-96.3151821487188,18.346980121618287],[-96.31523857395467,18.346848581955953],[-96.31542296481041,18.347951532470688],[-96.3152747748614,18.34829833791548],[-96.31522437809241,18.34843394609794],[-96.3152048507406,18.34859726389243],[-96.31540844666108,18.34875687637316],[-96.31559089233332,18.34881239125491],[-96.31561947752681,18.349044362496443],[-96.31513652243325,18.349475703195765],[-96.31546185721038,18.34992550570388],[-96.31579260786793,18.349938030389183],[-96.3166098479478,18.350047960569327],[-96.3169178578022,18.35019167537473],[-96.31731439403387,18.35053055437851],[-96.31704855295754,18.351800708010387],[-96.31725792542835,18.352121079966025],[-96.31811704473375,18.352602582539134],[-96.31834996442404,18.352730400936593],[-96.31867627751217,18.353067316950614],[-96.31881157580722,18.353223902969432],[-96.31913743897127,18.353461329903382],[-96.31930252326777,18.353857055108506],[-96.31921701411875,18.354140522660884],[-96.31915249186648,18.354192171828686],[-96.31903134137667,18.354474449853967],[-96.31898673788567,18.35458423832739],[-96.31919873653078,18.35478336413479],[-96.31982309465445,18.355121860545808],[-96.31995510873031,18.355357287469417],[-96.31989473084451,18.35558219483363],[-96.31961141419464,18.35571211951799],[-96.31895530261073,18.355941539258254],[-96.31873456807864,18.356203654876367],[-96.31905760613222,18.35688286658865],[-96.31917760376814,18.357271473463868],[-96.31886148330534,18.357508352218133],[-96.31856023598704,18.357523993490418],[-96.31766801681408,18.35785009267437],[-96.31758070823179,18.358176763176914],[-96.31763128618525,18.35832473735826],[-96.31774819899232,18.35837784693632],[-96.31809930911578,18.358391136547368],[-96.3182184640068,18.35839023940065],[-96.31942120511422,18.358246419456577],[-96.31986180896587,18.35829014051393],[-96.3201687040434,18.3584238051032],[-96.32044877542972,18.358645373305933],[-96.32051819687575,18.358886013760696],[-96.3204330874301,18.359023446516005],[-96.32019911411396,18.35905786449365],[-96.31979316244895,18.358999234617897],[-96.31913012392431,18.35898495933668],[-96.31842213959396,18.359780405854224],[-96.31859352230526,18.359902698124074],[-96.31871243860047,18.359907198518783],[-96.31905514969668,18.3598498484954],[-96.31954086957757,18.35964747987788],[-96.31973223556213,18.35966172868268],[-96.3203616706349,18.35985688368453],[-96.32066559837955,18.360214556134565],[-96.31884790784119,18.361674287203584],[-96.31899785714336,18.36216140621326],[-96.31905231150205,18.362352797726203],[-96.31902724147812,18.362546594020557],[-96.31891633959322,18.362758777489944],[-96.31863620760646,18.36294832844783],[-96.31841597221518,18.363058355513488],[-96.31809775799513,18.363208600928203],[-96.31779712128076,18.364711887231067],[-96.31798445836216,18.36470815660158],[-96.31844094588132,18.3647795249596],[-96.31863558065845,18.364873446068145],[-96.31897386716639,18.365059351196805],[-96.31918240657461,18.365377858832176],[-96.3196312937053,18.366093537404197],[-96.3198548206712,18.36630993707712],[-96.32099984330677,18.367345136738606],[-96.32106181740636,18.367594615160726],[-96.32120854487636,18.36776937576849],[-96.3214960598728,18.36793608473795],[-96.32187907902812,18.36791918288418],[-96.32198193013238,18.367901430453514],[-96.32226256532198,18.36783630982501],[-96.32240207359581,18.36775503743121],[-96.32313061953278,18.367284911948445],[-96.32325336648796,18.367197590939043],[-96.32360107315861,18.36715663941152],[-96.32392164836494,18.367222859037554],[-96.3242909535009,18.367345012075305],[-96.32444787145369,18.367664695373264],[-96.32445007407023,18.36802180748242],[-96.32447129280126,18.368330953844236],[-96.32466526254086,18.3686322944385],[-96.32490744966594,18.3686739062112],[-96.32508414597953,18.36865353599262],[-96.32558857142817,18.368526548068587],[-96.32596275452596,18.368394629070394],[-96.32633132332626,18.368397744329002],[-96.32654340143387,18.368481486239318],[-96.32709569900396,18.368797882233537],[-96.32736578417888,18.36903053973481],[-96.3278689283614,18.369565657683324],[-96.32814510347538,18.369608548304313],[-96.32877205130944,18.36939962275494],[-96.32914668109345,18.369256898415188],[-96.329446850191,18.369268236407095],[-96.33066600750533,18.37006732458991],[-96.33212436293189,18.370808395940685],[-96.33274494731177,18.371456087231536],[-96.33287403924339,18.3716393233982],[-96.33297175222111,18.37171160978022],[-96.33306427948838,18.371735686005707],[-96.33328003430825,18.371736968596963],[-96.33383306971274,18.371757841846772],[-96.33451586524933,18.37211975262136],[-96.33484294051254,18.372385917456427],[-96.33505330980233,18.37251733612203],[-96.33510765252271,18.372594852920713],[-96.33511172072832,18.372670465673025],[-96.33510803519215,18.37275950829803],[-96.33496126279641,18.372829429406806],[-96.33485352629776,18.37282536409765],[-96.33402603012263,18.372625684142747],[-96.33363762198212,18.372624740594574],[-96.33310140237217,18.372892630348304],[-96.33270683394028,18.373213880002936],[-96.33239013527111,18.37356550633598],[-96.33231812781878,18.373741151761976],[-96.33183525850569,18.374785616370332],[-96.33164094915497,18.375135008562268],[-96.3305881912122,18.3765839032298],[-96.3305902708592,18.376707463321907],[-96.3306204613026,18.377009376666024],[-96.33072715979432,18.37721234718464],[-96.33076741194225,18.37728247275828],[-96.33078734811801,18.37749588963584],[-96.33103463096882,18.37825126300629],[-96.33097697457333,18.379170065386063],[-96.33106808800517,18.37922838891626],[-96.3314120896311,18.37930664427239],[-96.3324835484969,18.379491152895014],[-96.3331763053489,18.379613345727023],[-96.33485715147958,18.37984828181999],[-96.33515816601994,18.37970185824895],[-96.33543644764222,18.379282977000685],[-96.33596946783109,18.378397546268957],[-96.33623087189392,18.377817437505257],[-96.33626450501623,18.37735221106533],[-96.33621661148959,18.377003091981635],[-96.33618607861507,18.376871597473894],[-96.33624334081566,18.376530751462553],[-96.3363655360676,18.376185493865137],[-96.33649331776081,18.376053110403404],[-96.33667911293946,18.375909199793398],[-96.33687418013648,18.37588911288276],[-96.3371641309713,18.37600981534058],[-96.33726071554446,18.376109501602684],[-96.33753299534237,18.376483353585286],[-96.33790299563981,18.3769294960386],[-96.33808464314507,18.377059827757364],[-96.33842770771258,18.37711392536852],[-96.33859347760028,18.377106460912614],[-96.3387787055467,18.376976241571356],[-96.33883201086837,18.37673128185611],[-96.33905244257528,18.375866090771638],[-96.33915141642484,18.375678434987208],[-96.3394720126982,18.375647025837623],[-96.34122102630482,18.377252784622044],[-96.34139937369639,18.377572688757255],[-96.34157795665925,18.377666413249244],[-96.34176529880602,18.377769171266777],[-96.34216970784007,18.377970950246265],[-96.34284351202928,18.378222528993774],[-96.34401593226096,18.37877127849083],[-96.34435488407468,18.378958042058457],[-96.34453022455494,18.37912993837449],[-96.34516079391335,18.379545169689038],[-96.34542708764343,18.37986902680086],[-96.34531026325311,18.380600361634094],[-96.34501727170732,18.381067801737572],[-96.34511127896417,18.381662923335455],[-96.34558123561499,18.38182360875811],[-96.34703531009944,18.38221139661897],[-96.34723771964167,18.382226761032882],[-96.34732469007054,18.382284255098398],[-96.34729205369013,18.382484396705138],[-96.34768592810781,18.385388356007695],[-96.34752813121395,18.38566898852116],[-96.3474278796341,18.38612992068738],[-96.34746784267872,18.38673553966794],[-96.34853585174551,18.38765544799918],[-96.34880358828633,18.387859153366207],[-96.34896496168813,18.388082093367245],[-96.3490232560323,18.388440561872983],[-96.3490065287159,18.38864904805598],[-96.34884713410833,18.388968348856338],[-96.34869112952947,18.389008946596107],[-96.34811693242574,18.38894860797967],[-96.34784163841209,18.388873725770964],[-96.34768327688198,18.38877482549134],[-96.34756354374224,18.388723848665222],[-96.3474584412412,18.38871214116415],[-96.34701124591396,18.388919915548286],[-96.34690005772268,18.38905514468729],[-96.34646365696545,18.389394988693766],[-96.34593548665379,18.389793340021527],[-96.34603625177448,18.39010693354635],[-96.34626899425683,18.390371290458006],[-96.34679907309857,18.390910172097563],[-96.3476723710931,18.391872067294685],[-96.34758014625544,18.392178882462417],[-96.34720880855104,18.39260865538739],[-96.34710004283784,18.39279073579894],[-96.34707650352561,18.39301050121759],[-96.34760971076452,18.39364710480453],[-96.34822922162658,18.394235184285264],[-96.34841734755815,18.394512373047917],[-96.34826970556014,18.394813750896958],[-96.34792152081695,18.395277145873763],[-96.34768312646275,18.395593524535002],[-96.34728173828984,18.39595901131503],[-96.34659681593723,18.396019169291606],[-96.34625258982135,18.39609215280541],[-96.34605546110987,18.3963735199016],[-96.34618170393787,18.397445569405704],[-96.34612632510408,18.397695176202944],[-96.3459331719817,18.398007115560688],[-96.34580005257084,18.398112606070526],[-96.3456568630387,18.398150182860036],[-96.34534237976078,18.39812606439972],[-96.34455420190454,18.398348065898347],[-96.34461528475134,18.398583641718517],[-96.34483884280428,18.398782360934547],[-96.34500758812868,18.39890535376111],[-96.34574965513156,18.3993323219716],[-96.34631494742354,18.399775424705695],[-96.34668251644621,18.40038472875716],[-96.34687064798732,18.40066191484385],[-96.34716102628954,18.4008017604163],[-96.34746441603062,18.400782488426785],[-96.34800485952945,18.400324011710495],[-96.34826289842277,18.400155700309767],[-96.34862628078105,18.400243038991277],[-96.34882737240616,18.400674182511978],[-96.34900487770062,18.40120880044344],[-96.34914224814258,18.401312190788587],[-96.3495130745514,18.401375255831397],[-96.34918458464188,18.402496943920255],[-96.34919992011879,18.402749214626624],[-96.34947366818972,18.40298050950537],[-96.35128987479618,18.405349624376925],[-96.35150262087205,18.4054988174949],[-96.35203262087362,18.406099919995484],[-96.35218723087894,18.406566141316716],[-96.35214193336157,18.406883660552694],[-96.35196642899353,18.40707963670536],[-96.35186368236953,18.40731814859845],[-96.35185702829864,18.407573358700745],[-96.35207009299432,18.407770189351197],[-96.35235831671332,18.408487103841424],[-96.35243503306208,18.408606762252248],[-96.35253715931105,18.408704024452163],[-96.35251553142899,18.409030171816937],[-96.35242863091617,18.409750902300573],[-96.35242972752928,18.409922213983293],[-96.35258777192979,18.41024733982931],[-96.35288859896275,18.410476627209732],[-96.3545385889592,18.41157802324983],[-96.35476398430978,18.411656566481156],[-96.35558418883966,18.411765247116648],[-96.35583004704938,18.411743342804186],[-96.35690464092085,18.41142562850274],[-96.35725857898024,18.411158670866484],[-96.3572339006522,18.40997734590593],[-96.35696080768264,18.40969410798516],[-96.35691875637337,18.4093726225002],[-96.35746885723069,18.409109667203893],[-96.3578794990363,18.40897399752896],[-96.35808746384328,18.408880603638067],[-96.35858053236734,18.408569762937532],[-96.35942921415779,18.40786111296734],[-96.36072166038605,18.407209018631704],[-96.36130720437552,18.407067523960052],[-96.3617314562004,18.407075674923703],[-96.36178115479265,18.40725658951277],[-96.36177314800631,18.407450909985187],[-96.36160025104755,18.407743267866238],[-96.36107507649166,18.40840082563909],[-96.3607430095484,18.409127924605002],[-96.36076138671973,18.409276525789892],[-96.36107083094402,18.409692955122125],[-96.36168654702783,18.41020652600912],[-96.36235592357963,18.410681455227007],[-96.3627595275949,18.410992436672927],[-96.36296748627893,18.411296065990882],[-96.36351353294265,18.41151897106181],[-96.36382926231045,18.411188287995458],[-96.36396130552657,18.41098095564581],[-96.36408367267745,18.41086352266956],[-96.36455582632385,18.410795166912408],[-96.36476891022551,18.41097443344006],[-96.36510937239967,18.411430950312365],[-96.36690537066329,18.413481086389652],[-96.36729539912182,18.413923886095347],[-96.36872642833066,18.414865040589575],[-96.3685358726492,18.415130366815106],[-96.36764452637834,18.415777646076606],[-96.36754826649383,18.416529176690176],[-96.36767531706977,18.41684082135066],[-96.36770807709627,18.417036673477128],[-96.36792788644095,18.41744973708836],[-96.36912285130381,18.417580183832456],[-96.36959685166858,18.417372187214312],[-96.37015369510056,18.417089911510004],[-96.37093030570094,18.41686991032435],[-96.3716444316891,18.416655240356135],[-96.37214653843802,18.41663448231003],[-96.37281580687284,18.41708830382123],[-96.37327730937136,18.41721443063318],[-96.37376980960067,18.41725926678447],[-96.37425848593864,18.417547350840152],[-96.37428102869058,18.41799193932883],[-96.37417648336458,18.4185485412944],[-96.37417919140779,18.41886801744107],[-96.37439975226164,18.419294971412853],[-96.37464914818696,18.419584573281554],[-96.3747373912218,18.419821427313593],[-96.37496442288005,18.420258103889353],[-96.37513084093808,18.420381111591666],[-96.37589644739944,18.420627768659983],[-96.37605087780173,18.42084374173902],[-96.3760409734573,18.421084706145507],[-96.3760189280436,18.421224007144133],[-96.37589293537087,18.421865728009607],[-96.3758090122069,18.42239569512384],[-96.37558235512552,18.423114941777897],[-96.37550763806888,18.424030890033464],[-96.37592689703911,18.424426459702943],[-96.37619576545836,18.424648547532854],[-96.37751794148915,18.425395950844518],[-96.37769720074579,18.425544003445623],[-96.37802920243979,18.426033479599994],[-96.3784571884596,18.42621734989035],[-96.37882020201243,18.42617792924068],[-96.38101005344095,18.424667171087435],[-96.38162246998633,18.424195375039346],[-96.38207381219024,18.424035572535672],[-96.38254894531372,18.423973843878287],[-96.38384062684571,18.424110493478395],[-96.38400425963823,18.42418728317972],[-96.38423577019375,18.424416797299614],[-96.38433412442504,18.42472966500094],[-96.38431055973172,18.424852462677165],[-96.38420861785374,18.425078339040112],[-96.38390667242021,18.42612274545303],[-96.38391688902573,18.42677685502946],[-96.38397425248496,18.427185369691415],[-96.3842039886473,18.427772782407544],[-96.38434587096066,18.427928267823233],[-96.38466847176824,18.42819652019091],[-96.38501776815446,18.42894281846651],[-96.38540498067721,18.429443174801747],[-96.38584238193323,18.429397686472896],[-96.38656246519986,18.428854365319125],[-96.38884349992549,18.428299564376346],[-96.38918438593703,18.428347639131744],[-96.38931847304917,18.428467489556283],[-96.3898309669205,18.429773945431464],[-96.39008059706043,18.431143731999896],[-96.3900125943789,18.43189743183541],[-96.38992462292595,18.432008994418254],[-96.38950174915476,18.432152209812273],[-96.38869241118744,18.43222798376968],[-96.38840288596248,18.432508696671675],[-96.38818052240231,18.43295976929221],[-96.38811492928818,18.433655221988147],[-96.38828607762179,18.43422700254564],[-96.38827522359543,18.43449162737363],[-96.38826400784922,18.434765070078413],[-96.38837813967586,18.434919515902322],[-96.38876061503908,18.43508398750612],[-96.38915812814815,18.43510766978892],[-96.39010171599637,18.434922064896398],[-96.39027933148492,18.434884528551038],[-96.39066232451091,18.434810492119254],[-96.39089748072996,18.434951786322472],[-96.3911012465021,18.435258318758883],[-96.39140087232568,18.435861402516366],[-96.39171648343915,18.43652692331858],[-96.39173758570888,18.436916415930796],[-96.39173107711582,18.437075192980274],[-96.39156329480164,18.43732512059148],[-96.3913902247806,18.437477670860062],[-96.39106585161642,18.437704087806935],[-96.38988439933809,18.438213102106488],[-96.38945737122134,18.438683036567568],[-96.38936107514559,18.43899747348371],[-96.38934732899321,18.439332664023937],[-96.38918992295862,18.440007023793044],[-96.38985657795229,18.44047364272194],[-96.39158552536838,18.439473163918706],[-96.39237813787929,18.438717786516804],[-96.39227864832054,18.438221344967076],[-96.39272800662297,18.437252922572895],[-96.3931067684444,18.437098425717068],[-96.39348403231355,18.43707159574734],[-96.39416112270493,18.437527086867703],[-96.39473545708881,18.438060197354844],[-96.3957550846344,18.439335124431636],[-96.39584273520671,18.43949076395461],[-96.39603973931139,18.43973114907692],[-96.39654192081372,18.43986640415409],[-96.39732721821275,18.43997636552956],[-96.39779708471917,18.440084510821407],[-96.39824455410292,18.43994883161804],[-96.39869508841349,18.439508527580188],[-96.39942871884892,18.439042925985063],[-96.39983496704366,18.43899533541338],[-96.40275275717443,18.43983905609764],[-96.40287443559322,18.439852552413527],[-96.40301586158955,18.440072933242163],[-96.402667227405,18.440594494091386],[-96.40240368750443,18.441051469803597],[-96.40207994344752,18.441543545028992],[-96.40171426420403,18.442025713291798],[-96.40132781558248,18.442766572831204],[-96.40071702645577,18.44325469105047],[-96.4002603230092,18.443405712250126],[-96.40008936154351,18.44375410693368],[-96.40010014255336,18.44396923690232],[-96.4001548626643,18.444307372674302],[-96.40165845142837,18.44525965594039],[-96.4024166572027,18.445489098911878],[-96.4032436416083,18.445903215675855],[-96.40353980488595,18.446710117618295],[-96.40277074546134,18.44740736809092],[-96.40220967905532,18.447690689030594],[-96.40130656287312,18.44831507446162],[-96.40134106521714,18.448631055280202],[-96.40205388570445,18.44988064965571],[-96.4021590334849,18.450183322721898],[-96.40222985248124,18.451324963086165],[-96.40240493757159,18.45188161898602],[-96.40242719681146,18.452189981239087],[-96.40229431583299,18.45266710733665],[-96.40210265343563,18.452876067383613],[-96.40198709051464,18.45292994229527],[-96.40154088784834,18.453179287782973],[-96.4016160706837,18.453472999091616],[-96.40198455782598,18.453844135850773],[-96.40225176108288,18.45501589431774],[-96.40332919185715,18.456602023456924],[-96.40171117387808,18.460325433193873],[-96.40179404339511,18.460644370309183],[-96.4018505783385,18.460754529919882],[-96.40194159952233,18.46087428695364],[-96.40259974372663,18.461894782333616],[-96.4024029679378,18.462228235727196],[-96.40272974207204,18.462980161271958],[-96.40301797966538,18.46318207352988],[-96.40328778279081,18.463408235135603],[-96.40340887987492,18.4636454774556],[-96.40379843148219,18.464142076274584],[-96.40466666828655,18.464427820018614],[-96.40494409737232,18.46469721346608],[-96.40476687430436,18.465405429714394],[-96.40415440489488,18.46588132674816],[-96.40406958470419,18.466036093986133],[-96.40414376158259,18.466354705195897],[-96.40439581628777,18.46658851663227],[-96.40449667386872,18.46710760725216],[-96.4045474921952,18.4675986971352],[-96.40470269609983,18.467981056706606],[-96.40507955744329,18.468049407285662],[-96.40556455154649,18.46770175524307],[-96.4059959739958,18.467457114051115],[-96.40621160785474,18.467476007466303],[-96.40708917498216,18.467594963167755],[-96.40754705671122,18.467487332151677],[-96.4085706996986,18.467192961932994],[-96.40948327963252,18.46681007716836],[-96.40979575423012,18.466503066717564],[-96.41041818581778,18.46524129018951],[-96.41098539989758,18.46480524334123],[-96.41149585185855,18.464691247912185],[-96.4117396602212,18.464700318128394],[-96.4124000622374,18.46475813046675],[-96.41392299754483,18.46590361963058],[-96.41460549094086,18.46670199706847],[-96.4150320883636,18.467573977851544],[-96.41494238025928,18.468791545017382],[-96.41495122458178,18.469215778679995],[-96.41606096063833,18.469589509444177],[-96.41671370242528,18.46962208070471],[-96.41717249463721,18.469705627218787],[-96.41756661396028,18.469878201033055],[-96.4178612835484,18.470160231164357],[-96.41802256901735,18.47048207599323],[-96.41794603506236,18.47086157615462],[-96.4177854671783,18.471163149244887],[-96.4176574671805,18.47130800800045],[-96.41758127047308,18.471679208704245],[-96.41758354387855,18.47183722085441],[-96.41762132350323,18.471979927870393],[-96.41769359342072,18.472132225852306],[-96.41814577356428,18.47280566730882],[-96.41811042397632,18.474058776474067],[-96.41814447937838,18.47429277494905],[-96.41832241489607,18.474847973034457],[-96.41839323626272,18.47524957544374],[-96.41837968971697,18.475581547654485],[-96.41825124439396,18.475950812675194],[-96.41662612094234,18.476023413071857],[-96.41614930485633,18.475739710635025],[-96.41545740717521,18.47559762157414],[-96.41488267361956,18.475576255178566],[-96.41287362350653,18.476160970009744],[-96.41220932419549,18.476410555300333],[-96.41118551258143,18.47692105975733],[-96.41125461848003,18.477364165520783],[-96.41203325114515,18.47968021686296],[-96.41233386395658,18.480007254564953],[-96.4126074451396,18.480142106991423],[-96.41304479000001,18.480324614349115],[-96.41363438187199,18.48083694787084],[-96.4145991270924,18.482664237194967],[-96.41469264084913,18.48308275837661],[-96.413365366,18.48479259740253],[-96.41333732499811,18.485754211011],[-96.41331918888346,18.48620271561458],[-96.41332795650897,18.486905171397552],[-96.41349751500366,18.487339896151866],[-96.41418059926826,18.48895996487778],[-96.41455208478521,18.489342691453373],[-96.41485177452017,18.49028943538002],[-96.41506961170626,18.49107106991238],[-96.41522692912986,18.492134441915482],[-96.41551871950901,18.493069589105403],[-96.4154582656248,18.495039826168465],[-96.41572609965806,18.495589467239654],[-96.41621521242456,18.495855397081698],[-96.41687145884646,18.49594648808454],[-96.4173124829349,18.496410734016195],[-96.41714834593307,18.49675720678556],[-96.41691326825014,18.496881875040856],[-96.41673809830144,18.497008772233528],[-96.41651533621052,18.497076725056957],[-96.41632058244704,18.49719336326274],[-96.41634633414753,18.49804536781693],[-96.4164712426429,18.49865986239803],[-96.41665581440628,18.499382492470943],[-96.41708464473913,18.499655707938814],[-96.41802819560502,18.49883316007805],[-96.41900772877301,18.499088714391746],[-96.41950490529553,18.49940257856639],[-96.4216698225743,18.499333798802297],[-96.42239372285707,18.50021828189813],[-96.42316528068392,18.501166352472183],[-96.42348159881311,18.501804091007386],[-96.42359663094282,18.503016298999853],[-96.42345320871698,18.50348143567021],[-96.42275370109297,18.504149502602843],[-96.42229962574572,18.50451642252216],[-96.42167158847997,18.505512500918087],[-96.42158836865906,18.505700138725615],[-96.42158050083845,18.506110971921203],[-96.4217928024272,18.506598072227746],[-96.42177844295571,18.50695011545963],[-96.42021895568405,18.508407334372464],[-96.42038471393244,18.508756536209546],[-96.42055064636082,18.50905036053814],[-96.42089593251455,18.509702057567097],[-96.42076198653677,18.510457797750234],[-96.42097573950588,18.510733740447222],[-96.42114490950894,18.510877003581697],[-96.42151924044896,18.511156093312934],[-96.42184979534301,18.51134651798418],[-96.42287978709072,18.511851348003574],[-96.42388449773063,18.51232129564221],[-96.42431552375479,18.51266815035393],[-96.42448957336308,18.512804033902967],[-96.42517438552659,18.513543119561405],[-96.42533984150299,18.51393853461252],[-96.42552377973732,18.514994250062728],[-96.4255720703,18.51520149436442],[-96.42575150065863,18.515532549106638],[-96.42621454700793,18.516144459559086],[-96.42650484814686,18.51629059353155],[-96.427382674449,18.51735327935586],[-96.42751986859275,18.51760707441923],[-96.42764562421405,18.518141590728476],[-96.42795444132815,18.51863964474626],[-96.42818580444441,18.518810423678417],[-96.42973530159844,18.519776193901635],[-96.42996167036637,18.520318108390597],[-96.43025432522643,18.520663795287987],[-96.4309063946917,18.52135340438656],[-96.4315682328724,18.521874526066938],[-96.43183594502983,18.522825213909698],[-96.43189690493841,18.52300048610965],[-96.43249316394076,18.524837218774962],[-96.43262013887045,18.525363292293434],[-96.43355143766951,18.525724749639608],[-96.43391504451512,18.525906117449438],[-96.4342693904635,18.526087138363607],[-96.43497340368572,18.52640023646552],[-96.43521582962876,18.526824538559424],[-96.4352033358719,18.526903607693782],[-96.43492787348498,18.52729105975783],[-96.43485938026629,18.527606647667255],[-96.43488428700681,18.527678263048244],[-96.43515565248674,18.527847373162217],[-96.43557913495016,18.527924911920422],[-96.43630823388906,18.52801376488611],[-96.43653724002792,18.52808410053592],[-96.4369528334775,18.52835575365833],[-96.4373489168471,18.530216791298585],[-96.43742863622396,18.530770750084457],[-96.43745071731479,18.531102173158843],[-96.43744423144989,18.53163211802746],[-96.43751293957246,18.53176721205483],[-96.4378202756231,18.531964160111613],[-96.43872679141089,18.532024220923574],[-96.4391108083367,18.531932388655946],[-96.43963021856797,18.531704178546818],[-96.44050291931518,18.53168344827634],[-96.44063501869863,18.531856232574285],[-96.44092580864765,18.53253750635463],[-96.44124228626754,18.53319429867952],[-96.44106821542732,18.53405386828291],[-96.44097439232576,18.534536419481924],[-96.44128047229356,18.535449098440438],[-96.44173069363961,18.535554119606616],[-96.44202282289064,18.53544120866968],[-96.44216999103577,18.535243403568813],[-96.44263993635406,18.53486312626228],[-96.44285722113989,18.534744428693216],[-96.44334873269355,18.53465874684258],[-96.44370959447764,18.534727443766315],[-96.44396611891631,18.534806849496135],[-96.44419260617673,18.534873491408916],[-96.44434410768497,18.534905312364003],[-96.44487987203104,18.535257241942645],[-96.44541951691679,18.53562817575147],[-96.44555174301769,18.53575833884088],[-96.4458877824448,18.53606209570694],[-96.44596312044143,18.536088187895928],[-96.44648818768445,18.536101765829244],[-96.44675572195274,18.536286453970263],[-96.4470003409757,18.53658391796199],[-96.44720606599094,18.537018602086448],[-96.44735687803478,18.53744370216765],[-96.44754070918191,18.537967788878746],[-96.44749016747045,18.539137105854934],[-96.44737124448238,18.53943766334106],[-96.44726200138655,18.53979488929491],[-96.44733604020047,18.540304555662146],[-96.44743671968195,18.54038402392456],[-96.44790739313532,18.541451316646487],[-96.44803454551419,18.54151515735964],[-96.4492329075697,18.541279737413674],[-96.4497556971902,18.541575817369278],[-96.44965283529075,18.54284303716895],[-96.44986960608924,18.543466437515747],[-96.45005998839582,18.54392144139905],[-96.45027388850627,18.54463323364996],[-96.45049689997956,18.545103017773215],[-96.45056402042547,18.545224420078284],[-96.45087075148933,18.545502720270065],[-96.4521627864205,18.545713319849085],[-96.45270817761849,18.545842049847522],[-96.45285051868962,18.545960429009767],[-96.453313794964,18.546475276072556],[-96.45342795273962,18.547079606539114],[-96.45354581396236,18.547450481379485],[-96.45431344655236,18.548430851020953],[-96.45512535686532,18.54947893145777],[-96.45508750107348,18.550061260556504],[-96.45490309512235,18.550391088172717],[-96.45481607814054,18.550663903929376],[-96.45448836302364,18.55124211221772],[-96.45419657223363,18.55176529643103],[-96.4528928443421,18.55358794685452],[-96.45259021250297,18.554953976203365],[-96.45272640620061,18.55586520687291],[-96.45283815880174,18.55626259812101],[-96.45294646664854,18.556660540049677],[-96.4528940067575,18.556971859057228],[-96.45287025601516,18.55718930848508],[-96.4527488184001,18.55736044161091],[-96.45255858349049,18.557386643430107],[-96.45239486507558,18.557313028785757],[-96.45222858402201,18.557153955846047],[-96.45140703818993,18.556570707967637],[-96.45126695431134,18.55772100366363],[-96.45153936143424,18.558178232760724],[-96.45331151324132,18.560171616056152],[-96.45384748395657,18.560700301974975],[-96.45410107168038,18.561064314513487],[-96.45417862330248,18.561177521665456],[-96.45439159964968,18.56154134020926],[-96.45425491085518,18.562236767242894],[-96.45409378724094,18.562653171395823],[-96.45411866118525,18.562822020935528],[-96.45431671137777,18.56323397174674],[-96.45523329669413,18.564518918760427],[-96.45569231361202,18.565137444432708],[-96.45591265761232,18.565521577331708],[-96.45626428938732,18.566222907600434],[-96.45648831450023,18.56653371415797],[-96.45657145460598,18.566942625243087],[-96.4566545941239,18.567256469650772],[-96.45641625271702,18.567551945573996],[-96.45659312008712,18.56835558091359],[-96.456697685623,18.56849977864931],[-96.45689722275142,18.56882912180788],[-96.45707573138185,18.56948753409756],[-96.45709031895336,18.569851985763194],[-96.45717226443207,18.570274910956186],[-96.45730882865331,18.57043741060835],[-96.4586272198768,18.569995700549214],[-96.45900072307307,18.57006103837699],[-96.45962471735703,18.570276893048742],[-96.46010900455371,18.570438763381503],[-96.46037366937975,18.57062656894692],[-96.4604974234768,18.57235131524311],[-96.46081890564352,18.572811868849385],[-96.46145329414782,18.573261329907098],[-96.46177576288648,18.573307144231705],[-96.4620830563266,18.573239284425597],[-96.4628753646731,18.573110104922762],[-96.46348941136694,18.573363823937257],[-96.46420968249794,18.573863105235148],[-96.46485368068807,18.573884700816848],[-96.46531240494517,18.573529731374038],[-96.46655834020555,18.571906967172083],[-96.4665686308631,18.571710222827676],[-96.46668790206837,18.571174192304454],[-96.46724048859596,18.570837941310458],[-96.46782772924576,18.570896333113865],[-96.46805342433731,18.570999606954558],[-96.46844143571201,18.571320700509148],[-96.4685288798537,18.57174761684837],[-96.46856549052768,18.57305480632715],[-96.4686285394722,18.573256752002976],[-96.46879550448347,18.573662034616348],[-96.46886332825602,18.573722798773588],[-96.46914404383347,18.57388462593434],[-96.46974986717521,18.573907410600043],[-96.47005476708523,18.573822827743413],[-96.47027523624968,18.57375509156816],[-96.47108545034075,18.573464472952253],[-96.4719551025239,18.573246310711284],[-96.47268101785886,18.57316767703213],[-96.47301991234218,18.573210859009578],[-96.47341449514079,18.57347112722846],[-96.47353720217654,18.573824274424396],[-96.47367884181904,18.57426579452118],[-96.47309345275823,18.574680584620694],[-96.47271714292555,18.574898122477407],[-96.47307280458148,18.576392023540507],[-96.47335934830863,18.576508333632546],[-96.47430770351667,18.57637792613974],[-96.47526961306193,18.576598386066337],[-96.47640189322766,18.57788238171355],[-96.47698954667914,18.57848750324456],[-96.47701993601919,18.57870047791556],[-96.47700644744884,18.57884121783536],[-96.47685659451156,18.579219448224933],[-96.47704157668221,18.579612463879414],[-96.47766456985653,18.580034556964733],[-96.4779601964114,18.58004866352138],[-96.47859197744839,18.579916082513478],[-96.47961871597414,18.579791961567253],[-96.480556821405,18.57960034171765],[-96.48106539870571,18.579667759693564],[-96.48148880440414,18.579786880524637],[-96.48197798281018,18.580493334837854],[-96.4827525926865,18.580761790635336],[-96.48342196999573,18.580632062592258],[-96.48362730577486,18.58052255124386],[-96.48416636592799,18.58016457958888],[-96.48493990240962,18.58021956436363],[-96.4850535077735,18.580723849314666],[-96.48493151876988,18.58110571030585],[-96.48437456447618,18.58139451139806],[-96.48435587599653,18.581857684665636],[-96.48463918085724,18.58218265288116],[-96.48480103732697,18.582191255047064],[-96.48510712670236,18.582178222494235],[-96.48629067432921,18.58198254548489],[-96.48699909364564,18.581450440366552],[-96.48803079607961,18.58116387876754],[-96.48820877936168,18.581159064544067],[-96.48857479087343,18.581205232487093],[-96.4888925467231,18.581318460932778],[-96.48899128615324,18.58139690478521],[-96.4892927301288,18.58167312753426],[-96.49060191568759,18.582745407144273],[-96.49094980705433,18.5827153270414],[-96.49171339411663,18.582634821351462],[-96.49231860374488,18.582903728376095],[-96.49286482079606,18.583364560818893],[-96.493283002353,18.583681943054387],[-96.49338163013476,18.583829318453752],[-96.49346445035548,18.5845157874993],[-96.49335154542376,18.58501368991176],[-96.4935360172214,18.58530003056194],[-96.4937180623005,18.585364247978248],[-96.49406283508836,18.585392026188913],[-96.49473925302505,18.585571520853193],[-96.49564669703261,18.586206904314736],[-96.49747510100582,18.58718532125954],[-96.49927680668566,18.588924664742137],[-96.49943334576267,18.589304133121345],[-96.49993063449932,18.589529864413635],[-96.50029504622484,18.589468220290428],[-96.50071249836577,18.58916130739709],[-96.50096587959627,18.58876156111978],[-96.50124294500029,18.58848835620489],[-96.50151686190821,18.588035948948914],[-96.5015344979841,18.58787850368958],[-96.50151317887185,18.587518429183376],[-96.50153654766837,18.587452813179198],[-96.50169206666249,18.587334545127305],[-96.50193816072834,18.58744774462417],[-96.50197301301091,18.58775262050142],[-96.50222856167915,18.588773057426806],[-96.50246989707023,18.58900846688033],[-96.50265748454268,18.588985555703914],[-96.5029034472418,18.588786504815232],[-96.50361892494715,18.588229475864807],[-96.50376847727375,18.588202592224775],[-96.50412929726355,18.588037862580848],[-96.50518424066507,18.58811653920708],[-96.50569881706497,18.58853910251304],[-96.50552997506168,18.58920118468984],[-96.50584090751238,18.589441414153384],[-96.50619773903475,18.589213436370983],[-96.5068753057937,18.589266611292487],[-96.50719546824342,18.589160694465704],[-96.50757329639015,18.58910335221867],[-96.50791925149969,18.589189763165678],[-96.50876121979991,18.589460569853713],[-96.50883600807879,18.589419095551477],[-96.50909102893706,18.58886767638836],[-96.50923806565339,18.58836240982788],[-96.50950808786047,18.588149572095688],[-96.50959972771875,18.588013049103665],[-96.5096440511681,18.587847852281925],[-96.50998332014012,18.587007323426008],[-96.51031356634269,18.586688304158145],[-96.51035369806903,18.58652525087666],[-96.51039171832974,18.586193522965743],[-96.51042203839336,18.58584508613916],[-96.5105045261954,18.584986245300342],[-96.5104277432041,18.58432206763922],[-96.51052794142055,18.58424368539238],[-96.51062428127682,18.584215782445767],[-96.5109487737206,18.58417126271104],[-96.51147997903934,18.58483258779478],[-96.51216184014817,18.58528316106839],[-96.51243872184546,18.58532274580267],[-96.51250153141041,18.585286791834847],[-96.51256510110238,18.5849966330573],[-96.51293114031688,18.584755766817125],[-96.51315735926289,18.585117244465266],[-96.51341181799773,18.585245776973295],[-96.51354657868251,18.585180949281664],[-96.51359251946286,18.585094880248334],[-96.5135303892448,18.584569806040008],[-96.51445130133663,18.583377776807936],[-96.51451074636356,18.58319747263687],[-96.51434679446379,18.582946806278414],[-96.5140605165571,18.58282027267404],[-96.51395653446082,18.582677000867704],[-96.5139657673027,18.582598881076706],[-96.5141443596516,18.582401987982678],[-96.5145923512651,18.582328260037514],[-96.51497890169799,18.58199519804441],[-96.51505936458153,18.58193781395977],[-96.51522975143257,18.58191209589205],[-96.51531890860986,18.58205550145823],[-96.51530599266766,18.582319637220564],[-96.51588448414327,18.582808344386876],[-96.51611935328935,18.58274721582029],[-96.51654639336039,18.582924598824604],[-96.51668965633638,18.582871913657073],[-96.51677675866972,18.58270409507918],[-96.51714241362038,18.581643952905665],[-96.5175051047608,18.581573172010565],[-96.51796301332314,18.581813901266514],[-96.51808289224743,18.58204872665391],[-96.51806923460265,18.582474997714996],[-96.51798262143234,18.582801158289442],[-96.51794702889055,18.582982411763737],[-96.51786587960441,18.58356548099613],[-96.51895500854476,18.58363803689855],[-96.51928756044822,18.583753027642388],[-96.52043090128495,18.58485379916152],[-96.52066743088,18.584449723113835],[-96.5209631379393,18.58418954799771],[-96.52124969913058,18.584069314243777],[-96.52156463753181,18.58419487097484],[-96.52164823107313,18.584545275782716],[-96.52162932674196,18.58471244903683],[-96.52175186790942,18.58510367073967],[-96.52226247446237,18.58574194141687],[-96.52345837423411,18.585260739675505],[-96.52389519056015,18.58526992976971],[-96.52396874534367,18.58537007918875],[-96.52441721047023,18.58588047327413],[-96.52471244856685,18.586119693418482],[-96.52471842725282,18.58638908745354],[-96.52454157522521,18.586814386880178],[-96.52491436122216,18.587126902151056],[-96.52529795372072,18.587675053916655],[-96.52547500538003,18.587773595589965],[-96.52566000238812,18.587784568007066],[-96.52587763452885,18.587673938394914],[-96.52601461170246,18.587347323823792],[-96.52794700084974,18.58759533693143],[-96.52821630785559,18.587681931784346],[-96.52845329473035,18.58758777962305],[-96.52882512116668,18.587210320566726],[-96.52945590569385,18.587391659321554],[-96.52979626652422,18.58749790623915],[-96.53016096194813,18.587258202710814],[-96.53034420756813,18.587082533667626],[-96.53062733933893,18.58704342922897],[-96.53080598188563,18.58705087367457],[-96.53094403334899,18.587054001200556],[-96.53148610704096,18.587047172359576],[-96.5318879796813,18.58724203639133],[-96.53209514442585,18.587352565046217],[-96.53230746048666,18.587334541591986],[-96.53239135603451,18.586481731603158],[-96.5325139972137,18.585558460935033],[-96.53377795107605,18.58519794340225],[-96.53501176843474,18.585185831976617],[-96.53593624162801,18.58492227407328],[-96.53624787813669,18.58452890598477],[-96.53674154433901,18.58415040368294],[-96.5373049604645,18.583950933434267],[-96.53758654474501,18.58396116567559],[-96.53858971659878,18.584626872057186],[-96.53876882877205,18.584740117722845],[-96.53951139638133,18.584707321288988],[-96.53989930283382,18.58550734685815],[-96.54023071789646,18.585884833791283],[-96.5402784657204,18.586247478897178],[-96.54004582407089,18.58674826051481],[-96.54045743626625,18.587480082337663],[-96.54078089789749,18.5879516210245],[-96.5417932486306,18.588186141332585],[-96.54231171015891,18.588068797888297],[-96.54292527254051,18.58790111685994],[-96.54386764876779,18.587551099198663],[-96.5447597157742,18.587307688183273],[-96.54513135947354,18.587774071055662],[-96.54556756499699,18.588323671296337],[-96.54609688658167,18.588468980362677],[-96.546506445651,18.588547287324445],[-96.5471251603916,18.588387840612995],[-96.54741666393943,18.58819960617535],[-96.54750761171567,18.587699534943624],[-96.5481497107724,18.58762130362976],[-96.5492732559947,18.587932763455683],[-96.5503892131079,18.58863583106944],[-96.55067042739415,18.58874112001837],[-96.55105653701594,18.58878681066642],[-96.55428180772458,18.587588766616477],[-96.55448783129629,18.58756058818892],[-96.55460479460254,18.587477853594635],[-96.55473728002579,18.587418493901282],[-96.5548525624572,18.58741554035936],[-96.55520700464712,18.58760374602656],[-96.55528639241976,18.58782618477204],[-96.55544381060145,18.588004399241527],[-96.55563845270581,18.58803346805962],[-96.55619809864243,18.58771969190593],[-96.55669280552917,18.587698536570144],[-96.55998120864496,18.58770438862109],[-96.560578158331,18.587628236058947],[-96.5617688664343,18.588567351739982],[-96.56201850849573,18.588849934353334],[-96.56202623352704,18.58904916297729],[-96.56213539312341,18.58932168892062],[-96.56228206229451,18.58930709981115],[-96.56272973468106,18.589333241830218],[-96.56273655221196,18.589686618396968],[-96.56278847667045,18.590086395214826],[-96.56319679352538,18.590101902053334],[-96.56363339505026,18.59014790751513],[-96.5642458625905,18.590665550428753],[-96.56449429976158,18.59115174591318],[-96.56460280099128,18.591300340867292],[-96.56472601381796,18.591384770199454],[-96.56515231786284,18.591419210359334],[-96.56555552536418,18.590719495365477],[-96.5659693387106,18.59023961927886],[-96.56620060101665,18.59027117317879],[-96.56641775337363,18.590861484343918],[-96.56664573570094,18.59131191704995],[-96.5670844216217,18.591522798937888],[-96.56720355732682,18.59175978597858],[-96.56951597087539,18.59413747959354],[-96.56975933122976,18.594092437897643],[-96.57076298794675,18.593755406878415],[-96.57105268562498,18.593980012706538],[-96.57104750990334,18.5944551105531],[-96.57119826926271,18.5945911251344],[-96.5714578445415,18.594654100587377],[-96.5716187672312,18.594589636556975],[-96.57189738344738,18.594383936751683],[-96.572565344628,18.594305833443684],[-96.57286805705974,18.594803930256887],[-96.57302227681004,18.594923958386232],[-96.57331175953698,18.595002117092235],[-96.57350529061205,18.59489255168853],[-96.57438266226171,18.59489445199881],[-96.57495995340963,18.59539211249512],[-96.574659547576,18.59564275549269],[-96.57465615462468,18.59613484569877],[-96.57506561738472,18.596795649130854],[-96.57666408970556,18.597991557775117],[-96.57730917600247,18.598814670687716],[-96.57827487395872,18.599650808070123],[-96.57904048826907,18.600367364418787],[-96.58050050876903,18.600002753410422],[-96.58140771043486,18.600229522831057],[-96.58145526217055,18.600570860635855],[-96.58126362166342,18.601039427324395],[-96.58130905175949,18.60169119871648],[-96.58193295992703,18.602130938976813],[-96.58240577616607,18.60175983309159],[-96.58273952240222,18.601558384527664],[-96.58319025989442,18.601487290394914],[-96.58412816691413,18.601967444154525],[-96.58436464658303,18.602422322248287],[-96.58475227495296,18.6026594695158],[-96.58521643785986,18.60276351750184],[-96.58545027762307,18.6028171638294],[-96.5863758604981,18.60329297212371],[-96.58666403486308,18.60349407409626],[-96.58698492288067,18.60387944534284],[-96.58765672787462,18.60449868554275],[-96.58792589976872,18.604775389595147],[-96.5883807059758,18.60501300209529],[-96.58858232961467,18.60497448624278],[-96.5891650192068,18.604812360883045],[-96.58952874441371,18.605328963921636],[-96.58919367694506,18.60611031553543],[-96.5893324939662,18.6067632302952],[-96.58964425268897,18.606958883741356],[-96.59012387882251,18.607006168401597],[-96.59128075457062,18.607099547890982],[-96.59218044035379,18.607762295865882],[-96.59251920550867,18.608381229840006],[-96.5930780457345,18.60909064420406],[-96.59361423145816,18.60938830134694],[-96.5944473869938,18.60985125825016],[-96.59497968569269,18.611002040820154],[-96.59515713911338,18.611317786810048],[-96.59537445037392,18.611476844577396],[-96.59615419353844,18.611518621235064],[-96.59772420780138,18.611498360749692],[-96.59815105246315,18.61152858757623],[-96.59909443566715,18.61184095258335],[-96.59942530629519,18.611863850080397],[-96.59973767729554,18.611892800514113],[-96.60041732264239,18.612021164702526],[-96.60090441962433,18.61212855347719],[-96.60108375197376,18.61219771846629],[-96.60157377275158,18.612617823293874],[-96.60248391826644,18.61367396651883],[-96.60269469040719,18.61400074228527],[-96.60327327833903,18.614373008654127],[-96.60356501340215,18.61442182501554],[-96.6039042692488,18.614664175690166],[-96.60427033719861,18.614771083069684],[-96.604583923534,18.61480279919965],[-96.60473277094411,18.614862698420552],[-96.60495247684088,18.61496173239391],[-96.60518372435831,18.615160375631945],[-96.60522339518224,18.61543374685874],[-96.60525326562083,18.615588547668096],[-96.60559407526142,18.616082900736103],[-96.60579045533325,18.616538466304803],[-96.6060836847468,18.616747759176917],[-96.60624491536521,18.616856078250976],[-96.60632912788799,18.616959004870182],[-96.60642364797752,18.61722004088648],[-96.60682632445315,18.617571005269554],[-96.60740872254132,18.617595596004833],[-96.60836773676607,18.617470275042535],[-96.60858050658675,18.61755775860553],[-96.60872474300726,18.617738097230244],[-96.60913513384662,18.618308372637955],[-96.60931671100633,18.618391838027037],[-96.6098616500484,18.618421500527063],[-96.61002275466274,18.61843133021665],[-96.61034930353452,18.61857088175566],[-96.6106825846374,18.618727572142063],[-96.61089088144752,18.618769094010986],[-96.61118262734482,18.618771475851304],[-96.61133689842171,18.618747997206185],[-96.61207445129463,18.618544184268956],[-96.61253428925727,18.618749920625305],[-96.61261252991414,18.61887013523028],[-96.61277025781698,18.619035230401437],[-96.61318757984708,18.619045593953956],[-96.61351448442815,18.618778814918983],[-96.61365399200548,18.61868625723355],[-96.61418997307948,18.618427211427445],[-96.61435449025947,18.61831884664292],[-96.61471175707868,18.61809542052532],[-96.61502576222176,18.618033158748574],[-96.61527242462938,18.6181348470746],[-96.61545727337244,18.61828558403812],[-96.61581569069745,18.618691578109917],[-96.61604417734924,18.618882521145736],[-96.6163981971772,18.618976035501078],[-96.61691400667968,18.619268645247814],[-96.61703266191796,18.619532977225845],[-96.61725330551911,18.620203080882277],[-96.61762755888492,18.620785706303252],[-96.61772576145233,18.621602674477458],[-96.61771378092402,18.62183540869671],[-96.6178555000609,18.62229980080582],[-96.61837240527365,18.62244537007234],[-96.61958862287787,18.62243806777508],[-96.62010222038714,18.623251742444097],[-96.62064221094926,18.62389704893178],[-96.62091146433363,18.624268974501774],[-96.62113228562487,18.624665408358],[-96.62154863524097,18.625218374993665],[-96.62232277295777,18.62551725475089],[-96.62262169911287,18.625725961106014],[-96.62272094257895,18.62624718481004],[-96.6223013875142,18.62667503927247],[-96.62212501363814,18.62807541645543],[-96.6224981814662,18.628636479673162],[-96.62279218130675,18.62884581809692],[-96.62406100208818,18.62952694615649],[-96.62449822937083,18.62979457494174],[-96.62574067190394,18.63033464712197],[-96.62625083835053,18.63062983614111],[-96.62676210207627,18.63081593027448],[-96.62712717694706,18.631186682935038],[-96.62780001466291,18.63168561793043],[-96.62848076732598,18.632065260529032],[-96.62869240553982,18.632111244790565],[-96.62907478882914,18.632036757848084],[-96.62925495360167,18.632038668286327],[-96.6295906160426,18.632308320427626],[-96.62968407952604,18.632623582511428],[-96.62967870228681,18.632760419521276],[-96.6299362851334,18.63329629720357],[-96.63022503898037,18.633381557676046],[-96.63100277367556,18.63342122741625],[-96.63127051741947,18.633465489759374],[-96.63182429885688,18.634447745586613],[-96.63307899839742,18.636350401058564],[-96.63348965757075,18.636604834362288],[-96.6336275661568,18.63667212534756],[-96.63370186871708,18.63647214113206],[-96.63394630852946,18.635887730372588],[-96.634196371082,18.635780562380432],[-96.6346382063362,18.635853668134928],[-96.63514356180184,18.635974960101294],[-96.63526836463461,18.635991546625462],[-96.63548591047692,18.636115271404492],[-96.63562583575737,18.63626061742167],[-96.63589886762139,18.636429642167684],[-96.63606693165013,18.63644825108156],[-96.636406243733,18.63651516293237],[-96.636700050753,18.636664836034754],[-96.63727547233287,18.636954153073873],[-96.63787117763991,18.637047397265235],[-96.63814366253649,18.637080979900247],[-96.63871806796976,18.637280851013827],[-96.63901280144074,18.63747187599313],[-96.63910260109287,18.637540507242818],[-96.63920640057603,18.637605813191726],[-96.63931598889803,18.63762959564275],[-96.6394970572166,18.6376035900243],[-96.6396265957776,18.637571036713666],[-96.64044633292002,18.638126553886934],[-96.64076495908512,18.638510784773473],[-96.64089933043152,18.63866242608134],[-96.64118100492823,18.639044639172425],[-96.64218646540968,18.63971293643101],[-96.64236322207978,18.639798110391837],[-96.64250847414866,18.639873460266642],[-96.64271797724496,18.639987667716696],[-96.64327844644896,18.64033473478213],[-96.64339992854252,18.640439151192595],[-96.64379388691236,18.640916703090852],[-96.64427370843515,18.64074522446225],[-96.6449806138283,18.64024717908785],[-96.64540379110514,18.64022764766179],[-96.64580917330017,18.640390525855594],[-96.64577979398047,18.640792367631434],[-96.64555827550623,18.641122442692563],[-96.64647599248423,18.642473115715063],[-96.64709363115668,18.643543734014315],[-96.64747942887738,18.643741299664384],[-96.64799425046942,18.644370486755463],[-96.64855241673774,18.644979003236188],[-96.64861088793788,18.64579855767471],[-96.64996310878092,18.646318100398958],[-96.65179145625257,18.647555643479222],[-96.65212685969243,18.647747507624956],[-96.65230506651062,18.648061224462367],[-96.65269498784289,18.648413358106552],[-96.6524172793363,18.648619381878632],[-96.65283466145195,18.649406056986834],[-96.65396221800512,18.65029254690137],[-96.65567675486659,18.65159862468346],[-96.65638055532423,18.651409678520054],[-96.65705747281004,18.651049400424483],[-96.65842084197646,18.65048751182394],[-96.6587950250713,18.65041076971727],[-96.65915193853783,18.65048909649323],[-96.65957944608442,18.651052447692337],[-96.66015207181357,18.651564970749234],[-96.66080331736651,18.651278974105082],[-96.66103198944558,18.6515443347555],[-96.66148812093576,18.6525016247262],[-96.6621371622964,18.65284502510383],[-96.66251485083012,18.65279369945023],[-96.6633345136409,18.653416728604896],[-96.66332048902945,18.653775826608694],[-96.66356469471623,18.654051758928176],[-96.66380941163249,18.654679524119274],[-96.66439105126636,18.655120996149094],[-96.66544134055033,18.656068946492553],[-96.66554800430401,18.65626567370998],[-96.66563431617072,18.65633089518161],[-96.66578909153986,18.65627633047842],[-96.66591176089906,18.656199693077667],[-96.66616769433415,18.656168489078425],[-96.6663015422248,18.656192960357146],[-96.66700412074323,18.655997348167034],[-96.66710820352563,18.655933521861186],[-96.66723145195829,18.65588318021264],[-96.66775860943005,18.655821343795992],[-96.66801074805642,18.655853822132087],[-96.66823646075011,18.65595248849445],[-96.66858311073065,18.65629990465942],[-96.66871576855874,18.656513798589913],[-96.66887912538732,18.656998197873634],[-96.6689616147894,18.65798355364143],[-96.66915705161983,18.65843503328216],[-96.6694129599428,18.65870691583615],[-96.6698472655288,18.658842760427888],[-96.67003699795299,18.658891553100545],[-96.67011288063446,18.658953768008246],[-96.67010956169281,18.659073328567217],[-96.67003572909249,18.659169098839982],[-96.6699812103866,18.659191743844644],[-96.66955787679939,18.659227123763856],[-96.66942866753948,18.65939411893129],[-96.66958074354983,18.65961955243813],[-96.66984696161859,18.659876624729975],[-96.66983091364852,18.659990259669485],[-96.66960547003805,18.660145226134205],[-96.66971776198028,18.660475765409956],[-96.66998245114496,18.660530999967307],[-96.6700583218219,18.660605113871497],[-96.6700371504325,18.660861432320303],[-96.66975672109612,18.66131933704827],[-96.66985237112078,18.661350521347515],[-96.6713226942885,18.661417930130256],[-96.67189696086388,18.661662834350864],[-96.67221293088431,18.662100982523043],[-96.67257933233697,18.662521623064265],[-96.6737307463452,18.663687378939187],[-96.67373246646179,18.66394609110114],[-96.67370384379211,18.664392565878813],[-96.6744205938682,18.66546870325675],[-96.67437511182919,18.665820288186296],[-96.6744164912426,18.665936119454784],[-96.67469382083709,18.666067033469687],[-96.67484267137337,18.666052123793747],[-96.6750540764919,18.665972150800883],[-96.67525517100103,18.665885084221316],[-96.675688899448,18.665813877303265],[-96.67584464241537,18.66582242663162],[-96.67619629912235,18.665871292532984],[-96.67640192795011,18.665989347655113],[-96.67653504807993,18.6660881476173],[-96.67689558122623,18.66610819466183],[-96.6770638108058,18.666203516186386],[-96.67755061021404,18.66628031891412],[-96.67812737752308,18.666722724674855],[-96.67838619151803,18.666900686765985]]]},"properties":{"cve_ent":"20"},"id":"inegi_refcenesta_2010.17"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.93232369087559,27.674800098349465],[-99.93268683498178,27.674420737849687],[-99.99884482767374,27.61527940287118],[-100.01617338568786,27.63282583825014],[-100.03301274874008,27.64911343931766],[-100.07747721350756,27.69208705028018],[-100.11053053228085,27.724000215771923],[-100.1134250201722,27.726793563844637],[-100.14371316714738,27.75602454008964],[-100.1827263286583,27.7936422607886],[-100.18338966800485,27.794281552385883],[-100.1884255257624,27.79913718620429],[-100.2209068255334,27.77636297696921],[-100.245274658217,27.759266446408844],[-100.24566197321201,27.758997368514827],[-100.2562497374982,27.751740424142326],[-100.28611050975883,27.73099526827218],[-100.29690724993895,27.723201146031784],[-100.30986880356517,27.71398359097924],[-100.33681327415667,27.694640262962196],[-100.35034120937297,27.684800460668896],[-100.35060984156104,27.684598559789208],[-100.36195206281889,27.635083123062373],[-100.37260211434176,27.588800913985096],[-100.37799775672721,27.565386591652896],[-100.38196348852375,27.54822049683014],[-100.38469928561813,27.536325273062573],[-100.38976677140448,27.514355037182213],[-100.39348122909632,27.498081799912995],[-100.40305290948362,27.456885601310205],[-100.40802912284113,27.43527068289984],[-100.40957479390835,27.42904340007516],[-100.41545203082467,27.40383907347956],[-100.417699552295,27.393632759823333],[-100.42190922700723,27.392685005375768],[-100.48323449315563,27.37886616307634],[-100.48386003833252,27.37872504503804],[-100.53167806315969,27.36792875853729],[-100.5334165519015,27.367535915376266],[-100.64618519169613,27.342016711348663],[-100.67800621675474,27.334797307092913],[-100.6879246068367,27.325939946021492],[-100.6988978580593,27.3161381905893],[-100.80405143010302,27.22210281943228],[-100.82780546456047,27.20083312285135],[-100.83412341719247,27.19517396484673],[-100.83370182580325,27.180828713024084],[-100.83199351825476,27.12270672264367],[-100.83056139549365,27.07388547391372],[-100.82077847693574,27.07259486019666],[-100.81789558065759,27.071905259161554],[-100.81275792972934,27.070296739595108],[-100.80960682387479,27.068367835793424],[-100.80764792291575,27.065831463357085],[-100.80958797334608,27.0578248855997],[-100.80926851996651,27.056482472636333],[-100.80495321784935,27.052671381758216],[-100.8040447699156,27.050904152703936],[-100.79943612438109,27.045830755604527],[-100.79671961027952,27.046402726678593],[-100.79526909810306,27.049981180894576],[-100.79157707701086,27.05259451628143],[-100.78901191322416,27.055805076335503],[-100.78422999508649,27.058922288083238],[-100.78105254718508,27.05865617202727],[-100.77679722156955,27.06007561524143],[-100.7701568685955,27.06308771718693],[-100.76586399750056,27.063325155853533],[-100.76267407894039,27.062634138380247],[-100.75417559309415,27.05394200065831],[-100.74853082377587,27.049152692831854],[-100.74704826075106,27.046111048427633],[-100.7485162318664,27.03991729667223],[-100.7482446118837,27.036963103200492],[-100.74771353178517,27.036256784142893],[-100.74089206392205,27.041057028924797],[-100.73583581873874,27.047579715559152],[-100.73603870596173,27.049197561590915],[-100.74308873435967,27.056948711970392],[-100.74540352481154,27.06057630265741],[-100.746795734459,27.064306214392786],[-100.74782724768488,27.069710746346516],[-100.74779458198122,27.075641989161454],[-100.74862098136435,27.08125280932444],[-100.74474796277747,27.083394465086826],[-100.73771013500794,27.084729761718165],[-100.73334156237325,27.083325599792943],[-100.72978118646273,27.081417375187414],[-100.7286658438178,27.08023113212289],[-100.72717159599893,27.078423885727375],[-100.72470516646842,27.07788387615875],[-100.71822293717116,27.080096593633755],[-100.71396101779504,27.084818319045837],[-100.71164852840917,27.088486801213662],[-100.71134586978951,27.093729430955023],[-100.7093258723487,27.09876347708945],[-100.70348908827339,27.10163591040464],[-100.70076840514525,27.103617244318684],[-100.6989032607359,27.10761882121443],[-100.69464373338258,27.109770152936107],[-100.69164373871791,27.109903853350033],[-100.68896303966727,27.11073775793153],[-100.68271870560517,27.11139458727979],[-100.6805403193909,27.110840833755844],[-100.67679126669856,27.10687737819137],[-100.67586951996856,27.099108969351107],[-100.67500254808448,27.09653780121903],[-100.67475175917423,27.086464307148844],[-100.6732433321896,27.084305197964397],[-100.66925214186193,27.08706420449181],[-100.66406587203721,27.086908674026347],[-100.66105212979664,27.08556015984192],[-100.65895243715585,27.084398100390956],[-100.65602190181602,27.082133281023516],[-100.6536477982321,27.077287886109616],[-100.65343920458508,27.075663905014608],[-100.53978427512305,27.047405830036098],[-100.53399784509708,27.04558443793178],[-100.53564066107543,27.044285926708596],[-100.53608671568833,27.043838904037273],[-100.5371591431632,27.042612019769706],[-100.53774580798,27.04169042323514],[-100.53781987808782,27.041560037895465],[-100.53785691308536,27.04149484520508],[-100.53872905200228,27.039273945909144],[-100.53879056550119,27.038354506169867],[-100.53878123234568,27.03819391524388],[-100.53872542394788,27.037880036521415],[-100.53871651332543,27.03782992106278],[-100.53752336949128,27.033395497942365],[-100.53751327170067,27.033249481438077],[-100.53740875980913,27.032151206714104],[-100.53739411796607,27.032077148317853],[-100.5373355507628,27.03178091465287],[-100.5366126565259,27.02943474158036],[-100.53649630244803,27.029236856491764],[-100.53629170588044,27.02890709710863],[-100.53614333112034,27.028709359806328],[-100.5359949568172,27.028511622319172],[-100.53594549881763,27.028445709782375],[-100.53585190403527,27.02814610436849],[-100.53578170823499,27.027921400200512],[-100.53572827372085,27.02761826363667],[-100.53575595783099,27.026316108905405],[-100.53591333195305,27.025723720736494],[-100.53615302904456,27.02504982036953],[-100.5366211553224,27.024183730271773],[-100.53678742261025,27.023921432145755],[-100.53682898932618,27.023855857574233],[-100.53716152152515,27.02333126042629],[-100.53844697907743,27.020797537163276],[-100.53850806837681,27.020660910260574],[-100.53856915754614,27.020524283312056],[-100.53914484309911,27.01913876806907],[-100.53917255566904,27.019066145716863],[-100.53969523066911,27.017483053405385],[-100.53978122282615,27.01719673505255],[-100.53986721459978,27.016910416554424],[-100.54064348132482,27.014898729075924],[-100.5409561262154,27.011753188445653],[-100.54033844967466,27.006774841862523],[-100.54083155455533,27.003462685384534],[-100.5409196780493,27.00310559692616],[-100.54104656118096,27.002605930495292],[-100.54134596822678,27.001456097755693],[-100.54140504149672,27.0012380862089],[-100.54144281352444,27.001090861965963],[-100.54146089448591,27.001016308247586],[-100.54158746062797,27.000494431973834],[-100.54177334720833,26.999541600806594],[-100.54180135897565,26.999322575154622],[-100.54184753977103,26.998883703465765],[-100.54192524407665,26.997326338398068],[-100.54192656200615,26.99724973066691],[-100.54187066088127,26.996010610895837],[-100.54184312533863,26.99576961449361],[-100.54179179662003,26.995434268353108],[-100.54003765877741,26.990472590749732],[-100.53986110838889,26.98926745310297],[-100.53983622653789,26.98875055333093],[-100.53981845390962,26.988381339009266],[-100.53979357240183,26.987864438680845],[-100.53973459716258,26.987250159694213],[-100.53971548852638,26.987032599286294],[-100.53968364094334,26.986669998475406],[-100.53971563833136,26.986418126764363],[-100.53996994815361,26.985687134097816],[-100.54022662747656,26.98531556827612],[-100.54197318359064,26.983593326511823],[-100.54208250521526,26.9834849776733],[-100.54230114791147,26.983268279729998],[-100.54292238285018,26.98259224968416],[-100.54297126140727,26.98253375253995],[-100.54321565352518,26.98224126653372],[-100.54451027791441,26.980579867401843],[-100.54487170654409,26.979990288530416],[-100.54510535518176,26.97932689383765],[-100.54521064082252,26.978653677253135],[-100.54525915225133,26.97820115277551],[-100.54510641945268,26.97589780903718],[-100.54488410560009,26.97491214512388],[-100.54466134818352,26.973799633896874],[-100.54454430897334,26.973269136368856],[-100.54441989309805,26.972744137552013],[-100.5442994068863,26.972392705837876],[-100.54374399082587,26.971415401582533],[-100.54347197584156,26.971045487770425],[-100.54330265700497,26.97079491927775],[-100.54279470445715,26.970043212274618],[-100.5421015140393,26.968829934774817],[-100.54174808531968,26.967684739693254],[-100.54172101956016,26.9674516620193],[-100.54169784460657,26.966674482690962],[-100.5416999966929,26.96659674783416],[-100.54144500872127,26.966055334016232],[-100.54270261115732,26.960420086905856],[-100.5408090966746,26.95480806887639],[-100.54182321154195,26.949199274068405],[-100.53823939794268,26.93971985199994],[-100.53895082322828,26.937376160626172],[-100.54042652868043,26.932514351512282],[-100.5425392243717,26.92878962398038],[-100.54476077800786,26.927377821948483],[-100.54492628823641,26.92534880806943],[-100.54215752331856,26.919220452796026],[-100.53858057010171,26.90665448684166],[-100.53842980259196,26.90611970833237],[-100.54157294598332,26.888893144411952],[-100.54066580736554,26.880969983320824],[-100.54686310158036,26.869962332433715],[-100.54735465916411,26.866570679972426],[-100.5513586644351,26.858729736843145],[-100.55030238945847,26.85629922440063],[-100.55008077274772,26.856140073873917],[-100.55009527361443,26.85549366082961],[-100.5502064901865,26.8550408865205],[-100.55017414071068,26.854479435283906],[-100.55014930370038,26.854054461517137],[-100.54920388470856,26.853826432436563],[-100.54885824869223,26.85374011586117],[-100.54804715446772,26.853055188168128],[-100.54724245537528,26.85055875515758],[-100.54725554970162,26.850317297567813],[-100.5473517917963,26.850058009848],[-100.5476733841366,26.84979250073127],[-100.54805233579066,26.849414457514285],[-100.54809874636425,26.84913964633705],[-100.54789900428966,26.8489284690923],[-100.54770130175814,26.848769060761356],[-100.54694751627272,26.847447761445892],[-100.54756099534569,26.846812096311112],[-100.54756888658608,26.846596787749718],[-100.54756602945713,26.846513729256856],[-100.54756199110653,26.846164055122244],[-100.54760581410159,26.84559472966913],[-100.54758940911881,26.845241166469464],[-100.54755619158618,26.84502150576276],[-100.54751895597622,26.844856647977394],[-100.5473476982483,26.844367625287134],[-100.54727225545281,26.844143162772923],[-100.54712008343199,26.843628429889407],[-100.54676222331983,26.84329336441931],[-100.54662134200623,26.84318790824659],[-100.54628903296168,26.842878150414947],[-100.5460567944072,26.842475738368876],[-100.54595646840806,26.842067290524426],[-100.54564884298986,26.84153239806983],[-100.54578812918265,26.841027611753816],[-100.546007114046,26.840643837741254],[-100.54609325561336,26.840501519664826],[-100.54617556762611,26.840282566719623],[-100.5462148088364,26.840134772803992],[-100.54625159434119,26.8397865574442],[-100.54627693680823,26.839623541129754],[-100.54625386128373,26.83944936621458],[-100.54622003138638,26.839256854670452],[-100.54622071162953,26.838781262060365],[-100.54624862430495,26.838703146590376],[-100.54631332047302,26.838540706298204],[-100.54640307219489,26.838380961866278],[-100.54638896177124,26.838188162190875],[-100.54570767805399,26.83599277188364],[-100.54564031479356,26.83585208208268],[-100.54556952040235,26.835608363055314],[-100.54572630397087,26.835007868820355],[-100.545830851071,26.83476485568218],[-100.54593016280086,26.834300611831395],[-100.5459125443665,26.834137648861144],[-100.54585271826005,26.833978178647385],[-100.54575068463362,26.833822201144642],[-100.54564211914038,26.833670040836864],[-100.54553768531088,26.833439424521657],[-100.54554594810963,26.83328251268614],[-100.54577644841032,26.832920049895165],[-100.54588689600229,26.83279081346859],[-100.54599734337245,26.83266157694652],[-100.54606811011047,26.832522675743064],[-100.5461034934221,26.8324532251213],[-100.54617425993092,26.83231432383758],[-100.5462246526364,26.83206476532075],[-100.54623966210261,26.831884657427224],[-100.54617637243268,26.83174453690083],[-100.54611308290055,26.831604416326854],[-100.54604979350631,26.831464295705075],[-100.54583236357507,26.831210620949037],[-100.54537861366475,26.83047015630831],[-100.54506094547958,26.82961587797257],[-100.54518004464467,26.829110732396032],[-100.54524072133074,26.82904225264133],[-100.54552725360463,26.828676690888926],[-100.5456353714116,26.828361495693116],[-100.54568809632644,26.82812756070814],[-100.5456621917233,26.8279577457771],[-100.54559239883963,26.827732670708656],[-100.5454785421606,26.827467292650113],[-100.54541419726559,26.82725224163937],[-100.54527418001697,26.82683743577377],[-100.5451322031031,26.826514852225273],[-100.54502416435145,26.826162452052415],[-100.5449828857486,26.82585082320668],[-100.54499783332051,26.825519625686752],[-100.54499105979198,26.825127986083373],[-100.54506280051157,26.824727022365153],[-100.54498814621383,26.82439500884942],[-100.5447893729193,26.824142186785878],[-100.544709568911,26.823841956417652],[-100.54466670140482,26.822889979352112],[-100.54467799475509,26.822794795499533],[-100.54172206778117,26.82124832840185],[-100.54143256428216,26.81273845399369],[-100.53858872919875,26.81154637215934],[-100.53815574488857,26.808558202751442],[-100.54177279776661,26.806001525709974],[-100.54727098985148,26.798201332332212],[-100.5516565048311,26.79440340999929],[-100.55152703996998,26.794168519990365],[-100.55675892251014,26.790260387911758],[-100.55716847671005,26.790307558911707],[-100.56065947273669,26.785499783800333],[-100.56687553497841,26.780806399468645],[-100.57890187989437,26.770126660565666],[-100.59013582991292,26.7595206678306],[-100.60130712990457,26.737077078575965],[-100.60152387648623,26.736225922517406],[-100.60797842214964,26.71087348926511],[-100.61440019862926,26.685638890745565],[-100.69122888839314,26.613789423251205],[-100.75303544020676,26.735207802107425],[-100.82607060883254,26.674620652923863],[-100.87431683627483,26.63454560904438],[-100.88136716210255,26.62861184140945],[-100.90509116926341,26.60863811440396],[-100.91802316405159,26.598283345502068],[-100.98276408064936,26.546402168893223],[-101.00919881255288,26.525197879638085],[-101.04513555506418,26.4963526960874],[-101.07898174025888,26.469171920315603],[-101.11131644406424,26.44491368586614],[-101.11401953848622,26.442639890349085],[-101.1470945951549,26.41695290658845],[-101.15823835498378,26.407930951452784],[-101.17848835417306,26.39201464596067],[-101.18960134711449,26.384680030668164],[-101.20676270962235,26.36977820707193],[-101.18544205367152,26.345400959797075],[-101.1362968404157,26.295459936794373],[-101.10453149735878,26.261624702881022],[-101.0976196952571,26.252910414919768],[-101.09173896534452,26.24451104080333],[-101.0746469196227,26.198974734405056],[-101.06857466822134,26.18903102503981],[-101.04739819164763,26.16984602286641],[-101.02717974942584,26.159663788331613],[-101.02117282003832,26.15774675375269],[-101.00888276463206,26.15382364473868],[-100.99813054273818,26.148477429818854],[-100.98862717445883,26.143154401008417],[-100.98274204397944,26.139477206910385],[-100.97624664862354,26.132740399750446],[-100.97225905108587,26.127680672110216],[-100.96564564423466,26.117276961159178],[-100.96033805129235,26.111867435659462],[-100.95630064073242,26.10478469613139],[-100.9528703366106,26.100325700828137],[-100.94973495649657,26.09735218017994],[-100.94263942359953,26.090618046957843],[-100.94289801791587,26.08678906850139],[-100.91641566707023,26.075610555384458],[-100.90552762629972,26.01217806300326],[-100.90460609960229,26.008702234986742],[-100.90491909945399,25.991194515671168],[-100.90496485540228,25.988635975037084],[-100.90553163988011,25.956945701262498],[-100.87687866717096,25.947219166098023],[-100.83442487716405,25.94504290769254],[-100.8272448144736,25.920496713959665],[-100.82266894489345,25.91688454307939],[-100.83244863676072,25.881982365108342],[-100.83576556904165,25.866594314010285],[-100.83711964657897,25.86381259039831],[-100.8463625673009,25.858743105019414],[-100.8470687125008,25.85788573017311],[-100.86190139451492,25.818478619488417],[-100.85428687031379,25.804663693998975],[-100.84392322709533,25.785855512798435],[-100.82512359448879,25.751721116144665],[-100.80561394703494,25.72430180421634],[-100.80369870694352,25.708755377719797],[-100.78777528308382,25.68359721310634],[-100.78040983205665,25.645729425305944],[-100.78342024761582,25.639678434811685],[-100.78238265722979,25.639166400298393],[-100.78119865116491,25.638582082393953],[-100.72977289996885,25.63389566023926],[-100.72473953996342,25.6198225718328],[-100.71991647066943,25.603066960856097],[-100.69028634450285,25.567100785378727],[-100.68610044854142,25.567506673809362],[-100.68343245935819,25.567849427003694],[-100.6804978374758,25.567986546800114],[-100.6783329572225,25.567673202486446],[-100.67470335080947,25.568007859939655],[-100.66797775650389,25.5692028889423],[-100.66432215525549,25.569399670712585],[-100.66183764211576,25.568318316456157],[-100.6584833182759,25.56796301300301],[-100.65372210752793,25.56997670616346],[-100.64434456248807,25.57246531536839],[-100.639472677622,25.57230990872563],[-100.63290184410067,25.571299350609195],[-100.61371460980524,25.553067242458326],[-100.61211918203054,25.550113480985715],[-100.61331351592196,25.54821599853051],[-100.61367248519815,25.547818897967545],[-100.61403145228303,25.547421796471895],[-100.61501027911032,25.545421710137987],[-100.61473253143163,25.54234689996599],[-100.61299830709254,25.54203116319809],[-100.61203691140389,25.54202278552407],[-100.60863659528604,25.542641953404598],[-100.60220197960695,25.543695277239124],[-100.599420599484,25.54410570308835],[-100.59752354438956,25.54421492699896],[-100.59429844025834,25.54437415586017],[-100.59282952416203,25.54396554344305],[-100.58771624459229,25.54322379364828],[-100.58528569693965,25.542737701124906],[-100.58265125860345,25.541839022940962],[-100.57790119855878,25.540062923803134],[-100.57072217901674,25.53816757275564],[-100.56785922934819,25.537508752219196],[-100.55999681369065,25.534893363622302],[-100.54830701926772,25.534270560170114],[-100.53843590549417,25.531853919925595],[-100.52969933031784,25.514392878589604],[-100.59667244689803,25.519715603422583],[-100.59975034237505,25.51995952782022],[-100.60858136788579,25.51344505857901],[-100.61909058961055,25.505691084497187],[-100.59413507436125,25.49866418472169],[-100.57951030818231,25.494543984344034],[-100.58488908626896,25.470813038846813],[-100.57864962671266,25.4697867342839],[-100.57183531449732,25.468095141367314],[-100.56096712904468,25.464538403283882],[-100.54511291024289,25.46461262655015],[-100.53088314863322,25.463467650259474],[-100.52541309635455,25.449753852703793],[-100.51746378317785,25.449036606869186],[-100.52264207022279,25.435455068538033],[-100.52270308926222,25.434324729547086],[-100.51595030076709,25.433805205357544],[-100.50980453554268,25.432966950304433],[-100.50071569997579,25.432689624373722],[-100.4963993798969,25.431623569236194],[-100.48515592369415,25.427889932789412],[-100.47522225660799,25.423899749009934],[-100.4676065777549,25.42053968909147],[-100.4625701773931,25.418153518169618],[-100.46257019590729,25.418119394317614],[-100.45974880529707,25.416027784129994],[-100.45509369303278,25.41394659712131],[-100.45486451599959,25.413811882786888],[-100.45159291034639,25.410466644359303],[-100.45195490523821,25.408115685012604],[-100.45521964511471,25.395467557564984],[-100.4579880266001,25.384740337022947],[-100.4700988222043,25.337789845417092],[-100.44602862227094,25.33185769691937],[-100.43353806671149,25.331491676840926],[-100.41845210761221,25.327980743843455],[-100.41456067778847,25.32699810045193],[-100.4143603861445,25.329899930292868],[-100.40847380077076,25.328816298358106],[-100.40264032613749,25.329111291225388],[-100.39953872401924,25.327909811621737],[-100.39456741725849,25.327854416541584],[-100.38749776938505,25.32870759098148],[-100.38405207872819,25.32980392013178],[-100.36428170557201,25.332853502907597],[-100.35309186354891,25.33457837509542],[-100.35016931290124,25.336711052847875],[-100.34702707235164,25.33689270009711],[-100.34291084941526,25.337847912154302],[-100.33378904897478,25.338058288626087],[-100.3319430600036,25.338686722438467],[-100.32680370242008,25.34035647136818],[-100.32335310084989,25.339985193881205],[-100.32072833416544,25.338578228646384],[-100.31505169224101,25.337243218794583],[-100.31237916003073,25.335970633387547],[-100.30884297575255,25.33296664295125],[-100.30427114363857,25.328973180879302],[-100.29867445543886,25.32695766541474],[-100.29235095480374,25.325547884650746],[-100.28724831416662,25.321662582376575],[-100.28157961774758,25.319713724257554],[-100.27743594762586,25.316285972923595],[-100.2762131770545,25.31300733465355],[-100.26397450148204,25.30529339690935],[-100.26170632371895,25.305527642334198],[-100.259672300477,25.30554503502168],[-100.25413843450309,25.306908771951782],[-100.24377452603551,25.269714467585572],[-100.24314190240005,25.26744334986057],[-100.25394160079964,25.265567652759103],[-100.2625101246976,25.25402279395456],[-100.23442050754113,25.23549642869949],[-100.24468646315813,25.228986600396752],[-100.24483031707376,25.228132580668387],[-100.22957559840353,25.217916512405566],[-100.26138350637007,25.207070568272],[-100.28036662763407,25.209408718098132],[-100.30528361051188,25.21341722361376],[-100.30930738839697,25.214805524802784],[-100.32555011726527,25.222258758984424],[-100.33200741413822,25.186285211560858],[-100.34243208108211,25.189856708955233],[-100.34946330007119,25.192265268059884],[-100.37668521549142,25.199447331809495],[-100.3812897500344,25.20089769067181],[-100.39049671553863,25.204595426054425],[-100.40740919229108,25.208968111674437],[-100.41746924940333,25.21290561088415],[-100.43243691446031,25.218762299252205],[-100.44364142932795,25.223145218055038],[-100.47251737684525,25.231195659452453],[-100.49854646776521,25.237507480773502],[-100.52960688140558,25.240142934756193],[-100.54783903588924,25.243631801212928],[-100.5533426565895,25.245086159314212],[-100.56363543082881,25.24770524659675],[-100.56514556255365,25.248104040092755],[-100.56601869859338,25.248335078873026],[-100.57843464733878,25.25109349303341],[-100.5819942395857,25.251692056580964],[-100.58577538482041,25.253512865170023],[-100.58736030318164,25.25394602788475],[-100.59196241697748,25.255050014802123],[-100.59568555925836,25.254762511579088],[-100.60790203572452,25.252767264466172],[-100.62275544030433,25.250898858126106],[-100.6299006282157,25.249702784180442],[-100.63499294719685,25.248850140183436],[-100.6519981152249,25.246001565559084],[-100.69941702320705,25.238047943238485],[-100.70149712283461,25.23769869634009],[-100.70930997912296,25.23613891762642],[-100.74010847845494,25.212885953392856],[-100.74348155652194,25.210338376547895],[-100.76244606611897,25.196011830931923],[-100.77192651074989,25.1888478409453],[-100.79105458869458,25.174389293311833],[-100.79685799270584,25.1700014926912],[-100.80313045317433,25.165258465112515],[-100.8068238843461,25.13223813661733],[-100.80713657729666,25.129349837202426],[-100.80726660823723,25.128148691535557],[-100.80735118960172,25.127367374243477],[-100.81081350157183,25.09537967422068],[-100.81438712198502,25.062350941863883],[-100.82114897535087,25.0000004178591],[-100.82150559497825,24.996710837040155],[-100.80276030708501,24.985623266787854],[-100.79206308618518,24.979148181578125],[-100.79146300179144,24.97405067493628],[-100.78853958559938,24.971919293557676],[-100.75394981364576,24.943392928620426],[-100.7274954962378,24.918716548565214],[-100.75143632606006,24.898412981021693],[-100.78337100344146,24.87131123511432],[-100.81628864174581,24.843366437798522],[-100.82613241782752,24.835004572929563],[-100.82741349955523,24.824207890189882],[-100.81854416174565,24.804339134439715],[-100.81314322649592,24.792236864923552],[-100.79697824262286,24.750806901394583],[-100.79855222943769,24.72405958673488],[-100.80149565036788,24.674010682484777],[-100.8045563011525,24.60340671463109],[-100.80547293658532,24.596340118483],[-100.7999341158548,24.556186077369205],[-100.75632852092906,24.48196851128722],[-100.74232428782403,24.460435469160075],[-100.71121009316442,24.49152182721184],[-100.6035333362928,24.401300065779708],[-100.60061309908855,24.372904981415388],[-100.59993552805815,24.348791051229057],[-100.61453599060877,24.296334016559967],[-100.63306647924946,24.22598024930869],[-100.61579399671893,24.225056299710616],[-100.58509290240511,24.223925436830996],[-100.5935125375953,24.178200251100805],[-100.61339988924078,24.173944185149082],[-100.58915218774985,24.16433981257819],[-100.54962419979688,24.148302405196034],[-100.5487711248964,24.14603057651567],[-100.51682748710647,24.13989667813496],[-100.51958001184215,24.11838234476147],[-100.53868325414493,24.11851603127417],[-100.53645134626277,24.111402436473327],[-100.53461009918533,24.105525689833428],[-100.52375899373015,24.071454949440522],[-100.53919405591137,24.033398124846258],[-100.5412826646151,24.025747622609742],[-100.54877624321853,23.988589092817392],[-100.55086422087908,23.977528040418633],[-100.56240160960613,23.91964108365761],[-100.54676780649714,23.91743661110843],[-100.5494343042829,23.88931460517682],[-100.53984560878075,23.888393054436904],[-100.55029868855144,23.84220258586066],[-100.5255299562752,23.83952591568982],[-100.52879142355891,23.816352625715467],[-100.49760172667442,23.79871269062204],[-100.49805525278799,23.75455795982947],[-100.49777214340264,23.739754739952218],[-100.49770627758147,23.736309702363314],[-100.4940581477295,23.737931423349437],[-100.49030233494909,23.739600881725778],[-100.47414736559108,23.706843125426587],[-100.46793256591201,23.70008699783307],[-100.46626301002073,23.69327307213274],[-100.46802036672204,23.692600699521677],[-100.46648328171153,23.68894102632163],[-100.46475794755008,23.690882787007922],[-100.46448709248193,23.688722792239787],[-100.46186189104782,23.689064691644944],[-100.4625305810518,23.691370509467447],[-100.46102227880334,23.691880381411238],[-100.46203818257663,23.69462735884042],[-100.45748949071185,23.69551686411944],[-100.44710043688548,23.69653452499699],[-100.44572012413323,23.677331523701014],[-100.4583284388163,23.660112551444286],[-100.44984459617046,23.656008932912357],[-100.45435512457004,23.64990454772959],[-100.46335053392238,23.653140203430667],[-100.47737862477459,23.633818693413843],[-100.4866493074856,23.604138905472723],[-100.48865346119732,23.605047050096573],[-100.49163689807949,23.5686125123965],[-100.46954495166938,23.56678311050854],[-100.46751624485023,23.54356640215542],[-100.4591474916794,23.533163764936944],[-100.45917610604982,23.51156610612162],[-100.46441600701957,23.512082036253673],[-100.49416867408212,23.528406397084552],[-100.49761692396737,23.49402702047928],[-100.51721132850804,23.421042839180757],[-100.51401744108836,23.41563100341955],[-100.45708323947468,23.366409595681432],[-100.483607850873,23.21404566934001],[-100.48386909029279,23.20883201395435],[-100.4798496697864,23.19436536089023],[-100.45788661829522,23.189519798459116],[-100.457812263135,23.18950357711202],[-100.45131639366332,23.188086298173914],[-100.44864791406951,23.187503997383544],[-100.43274148889645,23.18403192657422],[-100.40562556953262,23.178068367614685],[-100.36091881336665,23.168149665252656],[-100.35030911664256,23.165705898184115],[-100.33175793908418,23.162683185280514],[-100.32634088945719,23.18502405986601],[-100.32351520749017,23.195627451820883],[-100.36376430595391,23.189005380336823],[-100.37431657242172,23.26532381139822],[-100.33169253110992,23.2590923695912],[-100.32581223596969,23.26309265608296],[-100.30625693272225,23.260942126636678],[-100.27843498416524,23.31036840269428],[-100.22070406896313,23.298046584606823],[-100.21981045758378,23.300184171450326],[-100.2194936097959,23.30218886992901],[-100.21868596399707,23.3072986234846],[-100.21823772416388,23.31013436017679],[-100.20636423847412,23.307108860831875],[-100.20690020278022,23.305721689711504],[-100.20948885077371,23.29902140198243],[-100.21357039176218,23.288455642931638],[-100.22036308474833,23.27086790857902],[-100.22823651059872,23.250476146183928],[-100.16328812317772,23.241505987331607],[-100.15289905390557,23.240063828421057],[-100.12240688561178,23.235593147558745],[-100.10381335990155,23.231535378880892],[-100.10189529204428,23.23108039801508],[-100.09436185365536,23.258309491437046],[-100.08564853548819,23.287037430612486],[-100.07958514198305,23.296093980138835],[-100.07804113055312,23.305983910715725],[-100.08787778309471,23.310726998993744],[-100.14495021894072,23.33951518601981],[-100.12072713796437,23.357764815166718],[-100.1184030665226,23.36067901554958],[-100.11066415705386,23.366605603180176],[-100.10410999578744,23.374028685484234],[-100.09200958918632,23.383864687681125],[-100.08026143174254,23.395748201026777],[-100.04717123208314,23.39600707620866],[-100.00913134018487,23.391988463157816],[-99.99238497379775,23.39267098316543],[-99.9873530521163,23.392632138002284],[-99.982502481643,23.392367261016147],[-99.93506263044503,23.382164318662376],[-99.92125340700875,23.379191334215875],[-99.92397628242793,23.391326218264737],[-99.9272792702289,23.406043390526804],[-99.92744193410886,23.406768087587693],[-99.93078108713007,23.421642818431224],[-99.9476984291698,23.497172423163022],[-99.96118762536526,23.556889769551617],[-99.91580026699808,23.665078342555205],[-99.89872045065357,23.691882370294593],[-99.89111957497823,23.703806584230847],[-99.88284730556472,23.723577607756795],[-99.86065997836897,23.774462493849796],[-99.80551890917377,23.784297918733387],[-99.78843085188771,23.784388018842265],[-99.76901388486209,23.784488124415702],[-99.7462754429323,23.782411119419407],[-99.68337773972917,23.776648206727657],[-99.63605888953413,23.764649317175326],[-99.61948632079532,23.759662399941305],[-99.60216747992126,23.762870872020983],[-99.5766808514835,23.775462063903888],[-99.55479424723546,23.802739760838335],[-99.49379107530399,23.87869298668187],[-99.47837507084807,23.873099933618164],[-99.45687072964773,23.86606304921264],[-99.47756824205038,23.92950682570779],[-99.48146712821085,23.940619609422868],[-99.48693985745206,23.960500610121414],[-99.51446057894043,23.985860038817748],[-99.52002486150445,23.9905781453067],[-99.54091206107626,23.997271636445475],[-99.54092298543304,24.02391900387829],[-99.54189271488161,24.033649176813753],[-99.57090171139907,24.039366902608606],[-99.6570806232026,24.117996577765666],[-99.65533416565751,24.136843167751238],[-99.65156723450076,24.180644457726373],[-99.6493021593447,24.206968025784818],[-99.64781782500899,24.21809505095615],[-99.64311240215392,24.22535611108333],[-99.62021381952377,24.278396490955856],[-99.60507322000535,24.308681509224016],[-99.59428973750988,24.330913211484074],[-99.5893408109456,24.35082059833809],[-99.58993110009453,24.396142370452367],[-99.61153349721536,24.452760771604915],[-99.61728725979185,24.463995582506016],[-99.62858145116229,24.49217134654259],[-99.6363793181693,24.506670241999643],[-99.66720380781408,24.498192970194793],[-99.69888639042387,24.489472216254455],[-99.71980386618435,24.483710436533045],[-99.72383352281139,24.50135606848511],[-99.73297776802468,24.55399078216226],[-99.72278099606649,24.562050482861764],[-99.70468567945471,24.575869172173043],[-99.7021520367199,24.576985991559127],[-99.67355336579385,24.591175408645768],[-99.66565245609127,24.59509399128069],[-99.66436404518777,24.59571021723167],[-99.6279631398483,24.613580741637918],[-99.61525125130515,24.619489318320575],[-99.60944858704238,24.62249007671238],[-99.60312734398121,24.621302144556523],[-99.59703427247177,24.622670401496123],[-99.59443835255763,24.61984116595835],[-99.59186709943413,24.619523826598595],[-99.58802886210162,24.62326804629197],[-99.57895954102759,24.62233649964668],[-99.57597507177229,24.623553190994528],[-99.57371306673815,24.620270265547845],[-99.57010183293079,24.619997664710468],[-99.56852025442612,24.617306404854048],[-99.55889859298856,24.613332614032686],[-99.5569910243932,24.61163176809731],[-99.55833233407157,24.609787242979223],[-99.55689711187546,24.60874080413788],[-99.5542334510962,24.610255219219198],[-99.55341553377798,24.612328571462683],[-99.54941949193267,24.611654854365838],[-99.54608111463727,24.613560537561114],[-99.54771628045233,24.61560929288561],[-99.54522602696858,24.6187045039066],[-99.54756098840204,24.624689456591852],[-99.5443471246137,24.626867642429772],[-99.53977034910969,24.626786464867507],[-99.539211396197,24.623179606817587],[-99.53627824274452,24.62345735711358],[-99.53620132785744,24.62545768932563],[-99.53249709283091,24.627691365878718],[-99.53052470561096,24.627911141234847],[-99.52890327356374,24.631050498006687],[-99.5203393062173,24.634106207758236],[-99.51860682381675,24.634064070162765],[-99.51851363052691,24.634067912946648],[-99.51282781031972,24.63448145039058],[-99.50870475444657,24.63746863921949],[-99.50468861537468,24.6383770254929],[-99.50182462142459,24.64071656888484],[-99.49972127266454,24.6410146987169],[-99.49837615130912,24.643966411080896],[-99.49805356868956,24.64830940084886],[-99.49603208924606,24.650910069796282],[-99.49780702010008,24.653076848610795],[-99.49779995448188,24.658002306383082],[-99.49958687944604,24.661127628984673],[-99.50057467594326,24.6659853121414],[-99.50059189230842,24.673004103881],[-99.49982058056708,24.67660704844309],[-99.50075202173065,24.678410634149145],[-99.49809112865421,24.684426943783762],[-99.49413240998223,24.687995564852656],[-99.49279840060399,24.69338738586754],[-99.49126739804058,24.695300630193174],[-99.49242456259896,24.696477610030684],[-99.49092184396545,24.698970873970893],[-99.48834949551349,24.699799337678485],[-99.48683165544918,24.703253429238828],[-99.48485006709359,24.703491005536648],[-99.48234810555687,24.708021790973817],[-99.47510803912479,24.712865962708292],[-99.47104386828016,24.7148808700245],[-99.46675050932981,24.720185889207528],[-99.46042164217567,24.723241618131283],[-99.45946137931674,24.72491923982267],[-99.45556332067707,24.72528572263525],[-99.45249245404364,24.728509277764033],[-99.45063861786264,24.72846946022935],[-99.45048285411536,24.730995693435432],[-99.4472768282908,24.731966770578424],[-99.44710336223972,24.73054997665622],[-99.44259623655512,24.726836310444355],[-99.44128126526147,24.72728466135152],[-99.4376879398439,24.725332719822063],[-99.4358953090657,24.72632356209641],[-99.43044310880981,24.72587093237371],[-99.4268611500379,24.727676601555515],[-99.42304278516525,24.736697015167522],[-99.41629298429848,24.736067272397406],[-99.41491232344117,24.7352155232158],[-99.41026380572191,24.73607935282081],[-99.40869950788596,24.73453553234316],[-99.40628073971999,24.734574486350425],[-99.40050636109612,24.73712413641755],[-99.39813180654289,24.739674880447012],[-99.3912822617404,24.739361634850127],[-99.38913437242104,24.7399394742028],[-99.38595024671304,24.74506351522666],[-99.3818772898768,24.74688450143276],[-99.37990662266276,24.756127442180627],[-99.37754111126623,24.75771488202122],[-99.37637320377667,24.76144339540423],[-99.37272853008733,24.763377983872317],[-99.37205603005327,24.76563418149533],[-99.367880079484,24.76556058994612],[-99.36699782350962,24.76877453928762],[-99.36421270471942,24.771845153684694],[-99.35832757075394,24.77254584639178],[-99.3550312896312,24.771684943949822],[-99.34784137947065,24.772659699697385],[-99.3462447670949,24.77364707538669],[-99.34333464095039,24.773299136101116],[-99.33719133883386,24.774247134968107],[-99.33390733628471,24.77633937602883],[-99.33166528688372,24.776243110503344],[-99.32923126769447,24.77785364575658],[-99.32711069813746,24.78215289759146],[-99.32202804296429,24.787236062247246],[-99.31762898434789,24.78992811576495],[-99.31454819480177,24.78936731870442],[-99.31052214668836,24.787357746485384],[-99.3075216278483,24.79159134659409],[-99.30327183488492,24.791442505251325],[-99.30207582601571,24.79294003704763],[-99.29658940729843,24.794781927623546],[-99.29712052606624,24.797865999103863],[-99.29537034803917,24.800619324567833],[-99.29492848561165,24.804143707343712],[-99.24839353492865,24.785734608401754],[-99.24048972308856,24.782605980915775],[-99.21288547329056,24.77167484308228],[-99.18865312151473,24.78067960450005],[-99.18197126023153,24.776041056110557],[-99.1932574087549,24.813292223034637],[-99.19640077507137,24.82444229389165],[-99.202872244599,24.846280147317884],[-99.20743334932945,24.861392154552618],[-99.19436728108928,24.876109524639844],[-99.15894290592263,24.91598816550868],[-99.17988582101208,25.005376007444625],[-99.18094953556283,25.01154155228113],[-99.1795281948967,25.012548575918913],[-99.17902217205778,25.01605024866234],[-99.17769001751259,25.01804215661025],[-99.17532474063813,25.018197717628198],[-99.17098474070497,25.020571772728943],[-99.171514648389,25.02376158716413],[-99.17037798582038,25.025450505564436],[-99.16802169575749,25.025941640969336],[-99.16490474971505,25.029511397538442],[-99.16277385599778,25.027337792276967],[-99.15944111696069,25.02587396476372],[-99.15663649953979,25.02879569106375],[-99.15915294567111,25.031677641756914],[-99.16361118774472,25.034924053070938],[-99.16401818968791,25.03820949651356],[-99.16265554548767,25.041337761286798],[-99.16346479284073,25.04464707336524],[-99.16698403644978,25.046486846379707],[-99.16227860260074,25.04705975439498],[-99.159989022111,25.051028653387164],[-99.16071961612766,25.055128626047235],[-99.1572782213027,25.05647750928381],[-99.15341658689209,25.054950870675555],[-99.14933581459599,25.05515758843279],[-99.14486902888945,25.052706311679117],[-99.14312026965939,25.054117197558185],[-99.14029985222061,25.053475493029737],[-99.13785671877713,25.050681927778044],[-99.13509279773183,25.050380022447655],[-99.13260027233838,25.05333254740674],[-99.13090817841652,25.05188842142917],[-99.12779541990955,25.055682125351893],[-99.12455646376725,25.0543712572495],[-99.12345348037684,25.055921768231656],[-99.1201700933666,25.057310476858333],[-99.11579881834632,25.05597437081616],[-99.11326461096832,25.056320562746407],[-99.11137184437973,25.059094574959772],[-99.10626986541172,25.059532016131072],[-99.10419623509597,25.061816777711897],[-99.10091636651009,25.06242906247735],[-99.099443025222,25.0647212601732],[-99.09744015031305,25.0632392465115],[-99.0955414268322,25.065030580352982],[-99.09751882647998,25.067964902936296],[-99.10083492553565,25.06813765276371],[-99.10138834297334,25.069819392723616],[-99.09833381927456,25.073305350152623],[-99.09467236565195,25.073611820238398],[-99.09482154949535,25.07634876020336],[-99.09763367312621,25.076861201206782],[-99.09720972131362,25.07838264500117],[-99.08936347169424,25.077996374041447],[-99.08954633942847,25.075868293247538],[-99.08680622680515,25.077181112015012],[-99.08436824858472,25.07635434475486],[-99.08203761433901,25.073634935320683],[-99.08172353057046,25.076655107206932],[-99.0788920558544,25.078947034739144],[-99.0799826262247,25.083775806877725],[-99.07561876094621,25.085268977129203],[-99.07498005513929,25.08849535507818],[-99.07876374959494,25.092120405559626],[-99.076535942683,25.093470729354635],[-99.07314576458441,25.09336856632268],[-99.0715596833536,25.09721556456475],[-99.0778305013518,25.099204496241896],[-99.07760066376522,25.101668121423415],[-99.07500218490509,25.102392000576174],[-99.0705954218584,25.10226523556736],[-99.06998836991886,25.104786274247715],[-99.07251063480328,25.106988785154215],[-99.0679802480281,25.109829768899147],[-99.06661287808686,25.11182087544796],[-99.06660893976857,25.114608185008876],[-99.06838457034411,25.114704649941302],[-99.06691702456135,25.116788065815797],[-99.0603028807177,25.11753900661421],[-99.0583877898859,25.121994058749237],[-99.05423816607902,25.12381314501164],[-99.05260909467398,25.12711321316408],[-99.0508426406908,25.126137102028167],[-99.05090729518855,25.123879163672598],[-99.04793285667375,25.12028197033277],[-99.0454821692428,25.12220768403222],[-99.04389099012752,25.121224661289205],[-99.0422120929257,25.122843684101326],[-99.04028926245934,25.11990864904317],[-99.03537403125523,25.120221766242707],[-99.03413514356157,25.118697477179182],[-99.0342885890351,25.115178197684884],[-99.03323463084115,25.113078050064075],[-99.02880202574352,25.110354904025826],[-99.029088829856,25.107945812116043],[-99.03363665906357,25.10737513522008],[-99.02963604115013,25.099439899449237],[-99.02952248253195,25.096392821595202],[-99.02508910426667,25.092469513780713],[-99.02249262176832,25.093920797061116],[-99.02155679971924,25.090803824417776],[-99.0192901796164,25.087174352172894],[-99.01566425132557,25.086068131221055],[-99.01672798435106,25.082929568918587],[-99.01438307295274,25.08088832820431],[-99.01979222384813,25.078965818038853],[-99.01755652530278,25.07601273268557],[-99.02248351028697,25.07317034538545],[-99.01905589899468,25.069925304702338],[-99.01568067690636,25.07011931090227],[-99.00654930845769,25.067189072389965],[-98.99913928741427,25.068115064940685],[-99.0001441582665,25.07074924769813],[-98.99801482041198,25.071327169587846],[-98.99356192888354,25.06985402608234],[-98.99111076343894,25.070241938729282],[-98.98931265580745,25.067393563809333],[-98.98558019032828,25.07022929011731],[-98.98616492437009,25.0729747890515],[-98.9833238594702,25.07447855884959],[-98.98196826555477,25.070711089136864],[-98.97768666729598,25.071845613616006],[-98.97775227177328,25.069551559753734],[-98.97584671637378,25.068850840861273],[-98.9719778600242,25.07001227054343],[-98.96839169772,25.073549190547453],[-98.96881736948262,25.070478424931594],[-98.96057823250908,25.073732569757567],[-98.95924993493048,25.076035136025553],[-98.95737580514907,25.075794092541344],[-98.95582171505191,25.073749523234255],[-98.95540618061875,25.075975537231557],[-98.95128404182526,25.075663868682796],[-98.94638918678856,25.07426997789122],[-98.94645784036112,25.076429828110747],[-98.94188194778638,25.072298941194333],[-98.94117813037525,25.07085664992087],[-98.93765804661905,25.072909946962454],[-98.9341699420188,25.07276318079147],[-98.93524520687646,25.078402260518374],[-98.93356560861145,25.080376514222394],[-98.93231936673055,25.078939533310347],[-98.9338694518811,25.076250478046347],[-98.92955158502133,25.07706579776317],[-98.92529150039502,25.082253258842172],[-98.92380844257508,25.081916412086514],[-98.89600025650225,25.103572247925058],[-98.88812686885086,25.109451040628187],[-98.86384360896778,25.127125022615814],[-98.80189828359107,25.17269448456568],[-98.78160620677085,25.18738612363859],[-98.72194997080175,25.23079928320948],[-98.72191786456125,25.230822603890886],[-98.70922776325415,25.240074599073864],[-98.69957061478993,25.2471136717042],[-98.69388837922264,25.25117760409711],[-98.63198872774672,25.296480582724485],[-98.61320390877387,25.31017444014617],[-98.58425898790466,25.331264608576305],[-98.58525386329279,25.33232962947551],[-98.58284645227184,25.33402942543853],[-98.58191836630056,25.33292560848014],[-98.56892254684504,25.341952729330785],[-98.54670390666729,25.358260090439728],[-98.51000146100739,25.385181648746084],[-98.49838598271265,25.393727842840917],[-98.42613083318673,25.445351737958163],[-98.42313166571353,25.44749290351166],[-98.42157607786493,25.489355542794044],[-98.47695156528863,25.489412326263675],[-98.51609338114872,25.48940156571979],[-98.58175159191774,25.489361742558117],[-98.5818083348965,25.495287876047655],[-98.58035628792504,25.63730272193942],[-98.58094692382946,25.675102390920415],[-98.58218345460966,25.7695776581877],[-98.58238382231758,25.78487284011635],[-98.58332928020195,25.864997812922866],[-98.58401229907815,25.924097182402136],[-98.58424731451333,25.94441914964824],[-98.58475609209012,25.988390494628447],[-98.58512606515592,26.017917607033155],[-98.64172999266714,26.024962749474525],[-98.68967670370324,26.030915078174303],[-98.73001053285498,26.035963295011072],[-98.74115049757239,26.037355703301785],[-98.7404701622284,26.034458505031125],[-98.74672904561919,26.035181531456203],[-98.74628722219768,26.038041204451645],[-98.80970247480849,26.046010853433472],[-98.82322655382234,26.047648680340444],[-98.83433048679984,26.03643727199068],[-98.84657841649005,26.02383862325786],[-98.84936255504726,26.020974243241312],[-98.86562067393317,26.004357334056692],[-98.90075194839551,25.96832273163278],[-98.92372970199153,25.993968891684744],[-98.97885316138405,26.054591190600092],[-99.01603073607708,26.09548231777245],[-99.023872208064,26.10410244715996],[-99.02345664679001,26.10254447783626],[-99.02343658743376,26.102468689266914],[-99.02167906668495,26.09876652409389],[-99.02524264001698,26.0933599102338],[-99.0298707083208,26.093108769703065],[-99.0325774693593,26.093879333028212],[-99.03725274884567,26.09347021996581],[-99.04055073944693,26.096342785285685],[-99.04446318498594,26.09856432047542],[-99.05505855092088,26.09247786794748],[-99.06206789169283,26.09095892226145],[-99.06365605480244,26.089114636101385],[-99.0638887889923,26.086307070095074],[-99.06253535137716,26.080135433745],[-99.0663833083749,26.077893277225883],[-99.06646400330601,26.077872241159127],[-99.07070989215083,26.07930227499145],[-99.07413358195754,26.078946051236073],[-99.07639653960484,26.0752638995304],[-99.07560622965536,26.07303651385166],[-99.0768999336384,26.071775412954707],[-99.08373075681061,26.07176884273707],[-99.09009378361702,26.069829704440735],[-99.09218093980604,26.070060963898584],[-99.09631358969466,26.072383916465242],[-99.09317537424351,26.0777550034191],[-99.09425182534386,26.07997235587311],[-99.0943106025133,26.080030519833997],[-99.09766886273798,26.080746773770557],[-99.10862314933843,26.07900429709042],[-99.11545269403808,26.075409322567737],[-99.11717959913005,26.07254604839619],[-99.11909506312531,26.067318497729048],[-99.11912907881981,26.067249483906267],[-99.12088606758596,26.06630785894464],[-99.12847860347591,26.068932716200777],[-99.13158084015839,26.06832300868399],[-99.13206460485719,26.064308760857045],[-99.12860228111339,26.060629612513367],[-99.12513184657905,26.05824263824354],[-99.12431520839112,26.055360559665814],[-99.12899870076473,26.053418345612556],[-99.1356258416796,26.053594011104167],[-99.14093302310653,26.05296681225485],[-99.14229458877048,26.0559680255933],[-99.14155852139987,26.059637365346987],[-99.14424695626946,26.061369754360726],[-99.14880129469458,26.062178320853775],[-99.14888172572381,26.062182271508846],[-99.15533417598482,26.06227815310382],[-99.15542302058338,26.06226694584518],[-99.15790567434556,26.061162609986184],[-99.16053476526861,26.061573290703166],[-99.16169750526655,26.064215666341795],[-99.1619164309875,26.07026124873704],[-99.16701941087518,26.075468272961643],[-99.17100182508295,26.094494987168105],[-99.18413210235292,26.177554925812785],[-99.19094930293704,26.21903717973055],[-99.19201789285052,26.225536898573864],[-99.19336402086026,26.233268654178175],[-99.19783597437106,26.25868232280351],[-99.26000157360232,26.25284998855966],[-99.27777252454922,26.26550062140319],[-99.33878531213213,26.310096589641944],[-99.36415026039737,26.3292701611241],[-99.36882024318487,26.32434263534293],[-99.37280218231643,26.321668815219198],[-99.37699369236998,26.321597604883436],[-99.37996964341573,26.317748900227684],[-99.38584901886009,26.317146655384875],[-99.38687046524421,26.314630976210594],[-99.39280374903126,26.309924438970484],[-99.39473722548342,26.306239916321545],[-99.40123612275033,26.30479913994634],[-99.41229750377488,26.320655243589727],[-99.43094658397058,26.35130114343724],[-99.42504578553047,26.382019394339466],[-99.4157231625577,26.438029959307244],[-99.41424298715816,26.444806387277083],[-99.40983214592256,26.442836807396418],[-99.40554901342392,26.482619329298927],[-99.40416617870011,26.500694821683908],[-99.40038563369393,26.550083940266177],[-99.39972019219192,26.55877309304799],[-99.39682481503905,26.596565540039933],[-99.47181525471086,26.633192103364934],[-99.4757823335595,26.635128088570525],[-99.48101606043963,26.637681968129584],[-99.5260677782884,26.65883829566104],[-99.53833524936084,26.664595620991633],[-99.55318689049886,26.66449196727666],[-99.57451427935735,26.66569166121002],[-99.60412210052306,26.667352377248847],[-99.6591644567954,26.670365136781356],[-99.6602957664212,26.67358578018434],[-99.66257979981248,26.676997087038444],[-99.66337827233838,26.679805484513736],[-99.66296416395033,26.6841754402667],[-99.66025053331833,26.68761921748262],[-99.65997541648483,26.6897698718048],[-99.6562047433369,26.696414029519474],[-99.65108760343867,26.701443466152853],[-99.64620458622784,26.704502013967158],[-99.64306704538382,26.705675714953713],[-99.63571892702078,26.710815921284848],[-99.63171699265229,26.715830129228664],[-99.62942268702483,26.719986116651512],[-99.62161747793004,26.723199602874217],[-99.61865300575005,26.726328428036368],[-99.61808152878012,26.728296647999173],[-99.61876569395992,26.73707041061573],[-99.61734870184091,26.74116032422353],[-99.61639573510377,26.74694624988757],[-99.61614358321219,26.754363507686833],[-99.61842452609187,26.7616696608992],[-99.6225643873828,26.766933637257523],[-99.6218884625838,26.77136785765566],[-99.61535405841056,26.775397891816795],[-99.61492127152053,26.779045123265746],[-99.61143694291854,26.781936818498878],[-99.61071534372775,26.785171973211675],[-99.6130263368064,26.789413757503496],[-99.61219042178385,26.792351755986942],[-99.6097670766195,26.79361025944712],[-99.60718624861738,26.797030953042736],[-99.60713012864551,26.799669624086334],[-99.60478804767774,26.79988779875083],[-99.60505281928477,26.804501566280237],[-99.60381151009824,26.807923796942475],[-99.59706027689134,26.809607223589296],[-99.59874311616761,26.812975649265297],[-99.5983665496201,26.814838134086415],[-99.59496736846302,26.81503875930224],[-99.59123996422954,26.813493941597358],[-99.58921410028097,26.814597445386823],[-99.58989524199058,26.816437109942854],[-99.5884643453511,26.8179908413141],[-99.58920499031575,26.819883052961416],[-99.58671701166384,26.822760652187867],[-99.58692314023324,26.824621192672907],[-99.58479548806451,26.82552760426597],[-99.58086610799296,26.829306921243926],[-99.58351957176717,26.83202874081138],[-99.58169343073536,26.833979358779686],[-99.584355987413,26.843585135621538],[-99.58463955835845,26.848541456515136],[-99.58851545120325,26.852458899269323],[-99.592984909716,26.853680767509502],[-99.59346684891437,26.855631012527965],[-99.59016958143906,26.860107518352095],[-99.59104663691568,26.8625480388244],[-99.59941877331698,26.866064175751433],[-99.61027435394311,26.8730125930648],[-99.61292519318448,26.873206807814654],[-99.61500992035963,26.87065835120768],[-99.62129414373578,26.86840057780512],[-99.62735943494215,26.870663141700504],[-99.62853308525285,26.87350126773299],[-99.62789352843231,26.876257811581297],[-99.62557184359804,26.879966694748987],[-99.62563766472277,26.883659477875938],[-99.62767091958767,26.88393237232782],[-99.62931011317443,26.881603692663987],[-99.63128774419783,26.884503660819746],[-99.6305551853319,26.887651309720695],[-99.62875440298029,26.888427505840696],[-99.63003012420222,26.890290417293386],[-99.6348464745858,26.89102449783269],[-99.63539613520902,26.8886659558313],[-99.63885111146169,26.88626110655838],[-99.63901899192035,26.88619877102144],[-99.64332301141866,26.88545756566498],[-99.64538054074859,26.88600190450404],[-99.646855902521,26.888884099816153],[-99.64696023172576,26.894045597852255],[-99.65076519929022,26.89617889002966],[-99.653374146136,26.896127294872144],[-99.65951879178084,26.90001111486754],[-99.66281427448064,26.900792831312003],[-99.66489953707156,26.896520350594358],[-99.66762513151428,26.894348366439488],[-99.67629044914793,26.89453778601535],[-99.68199735036825,26.89607545116894],[-99.68208077563787,26.896045340981175],[-99.6872229098093,26.89454700701782],[-99.68552976236418,26.898092848061708],[-99.68929128590662,26.90594134466545],[-99.69162044917033,26.908599651598422],[-99.6940204094854,26.909299335658602],[-99.69689021883363,26.906990803463543],[-99.69695855836602,26.899296086368565],[-99.69888838668311,26.898516854952447],[-99.70103971390597,26.902830063885233],[-99.70347648341186,26.905473433741008],[-99.70692773931808,26.904056633549885],[-99.70852270882511,26.905657243232554],[-99.71104408036621,26.905539530134604],[-99.71339042850343,26.903370174415898],[-99.7136382320283,26.901346897798362],[-99.70998024094422,26.899275910805443],[-99.7104425950252,26.89675240326386],[-99.71252867894634,26.89587606043392],[-99.71579622442044,26.896787259165876],[-99.71858477398268,26.896224792794442],[-99.72259746887892,26.896920734061325],[-99.72267827528572,26.896915979599612],[-99.72655477621566,26.898468776505467],[-99.72633642828004,26.901417089321228],[-99.72790118261781,26.90351533654058],[-99.7241048768081,26.90340032921864],[-99.72352392182228,26.905608773510664],[-99.72764094734453,26.907795311187613],[-99.72772038148986,26.907817880213543],[-99.73306887077564,26.908748295812302],[-99.7395547124309,26.907482402998085],[-99.74161462398479,26.91082930308835],[-99.74434631736943,26.912156365512544],[-99.74743293027717,26.909102996178092],[-99.74614014206304,26.903823024964822],[-99.74766136577227,26.900243822373454],[-99.75212302962882,26.900048322199325],[-99.7591422941889,26.895158240977935],[-99.75921045287242,26.895117881980752],[-99.76438746285322,26.894101787626823],[-99.76666889907068,26.8898419059675],[-99.77013149535281,26.928418208559833],[-99.74029047966127,26.922176548658342],[-99.7341681193414,26.920612861624647],[-99.73164675716049,26.925012174690096],[-99.71859978506063,26.94777093142352],[-99.69938976197363,26.98093405770669],[-99.68034801878758,27.0137862171768],[-99.67437557133428,27.02400004808726],[-99.66269787847767,27.04410072512087],[-99.65005283368026,27.06585788598278],[-99.65891166323883,27.088189071232932],[-99.67891875286341,27.10244829686536],[-99.69530616747295,27.14416216705945],[-99.71044649248728,27.182674085278904],[-99.74767041346291,27.277247007145263],[-99.75297512035331,27.33205378784237],[-99.75528492024813,27.35590208131697],[-99.75855309313937,27.38963803328693],[-99.76037881224744,27.436958728255263],[-99.77146555743906,27.440774968633377],[-99.78476920688456,27.445352968518876],[-99.84338552432189,27.465506441917228],[-99.91915362796328,27.4915151774278],[-99.9264182709108,27.549156996844545],[-99.86014995769011,27.59265584578236],[-99.79331743007538,27.636464800470435],[-99.72814673160735,27.679126215243855],[-99.73779691607916,27.69267692573129],[-99.74202242889771,27.69627563556702],[-99.75372207397493,27.708053381562536],[-99.75768022928145,27.71281964709982],[-99.7586510231423,27.71779930933417],[-99.76077815820935,27.721504723702935],[-99.76613386802694,27.72798871876114],[-99.76936067062263,27.730887880992498],[-99.77498339824837,27.733566355421942],[-99.78402975716506,27.73056985954139],[-99.78914662225043,27.730973203353585],[-99.79311925403528,27.732902170644195],[-99.79650339541149,27.73588217615429],[-99.80175696942717,27.742353493950247],[-99.80251914033767,27.747341211350772],[-99.8050765317937,27.756967003370562],[-99.80801974200853,27.76533559164966],[-99.8117143534368,27.772190774544583],[-99.81337097168586,27.774251360640108],[-99.81653450923727,27.77597751694367],[-99.81910910101362,27.77587498966136],[-99.8224943054584,27.766535164262052],[-99.82660452965627,27.76422063053934],[-99.83284504006559,27.762745297030847],[-99.83870059306105,27.764290893738178],[-99.8419454095461,27.766986802121608],[-99.84322258776774,27.769862819050616],[-99.85926350363872,27.752751062031052],[-99.87965514405948,27.731061287910848],[-99.88811690524551,27.721904071292784],[-99.91004982687298,27.698620773380696],[-99.91135501601195,27.69925746159396],[-99.93232369087559,27.674800098349465]]]},"properties":{"cve_ent":"19"},"id":"inegi_refcenesta_2010.18"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-105.27431935175207,21.04998599548304],[-105.27544875150187,21.04938493523457],[-105.27412935544783,21.046680831385117],[-105.27182753616734,21.046382733973076],[-105.27170592035844,21.049542717527004],[-105.27431935175207,21.04998599548304]]],[[[-106.22704187287013,21.364530912068005],[-106.23197795471464,21.368807611348586],[-106.23162564693496,21.366269902125396],[-106.23566474979742,21.364533118717986],[-106.23930995150164,21.366225222779974],[-106.24436841248098,21.365864429010742],[-106.25277603379897,21.366196657399882],[-106.25785075228725,21.36790852345058],[-106.26377981093594,21.36205935112224],[-106.2657796277116,21.36182841191311],[-106.2693734041307,21.356770382050627],[-106.27238083341177,21.355923859075006],[-106.27401910389193,21.354110516032165],[-106.27513502909699,21.35068486560749],[-106.2787262437484,21.34772657228291],[-106.277144350404,21.347106238732522],[-106.27426396478836,21.340152655708096],[-106.26914872022161,21.33567629431559],[-106.26793124374876,21.333893648409685],[-106.26441104013622,21.33331543835385],[-106.26319773091575,21.331814075647003],[-106.25837507901679,21.32988266603411],[-106.25627750656975,21.32603491412965],[-106.25129294120575,21.324671908908442],[-106.24893613073317,21.32563794643181],[-106.24352813995984,21.32546754658523],[-106.24128012558492,21.326045523699406],[-106.23925810552248,21.33108378119664],[-106.23679483737322,21.332858742139877],[-106.23338225838887,21.332307710161786],[-106.23257350391242,21.32825841987949],[-106.23002776682267,21.32501520534754],[-106.22868316432505,21.326315169757777],[-106.22827648870526,21.33001767648244],[-106.22955230178599,21.33256340749176],[-106.2275795347096,21.338537046217084],[-106.22572325669273,21.340949614451347],[-106.22732488918376,21.34827345865159],[-106.22696007112563,21.354079243360957],[-106.22475484865708,21.356096548834387],[-106.22210483512083,21.353801093464767],[-106.22182097220252,21.354852043118456],[-106.22604803798629,21.358973236667907],[-106.22285215150958,21.36268287033147],[-106.22704187287013,21.364530912068005]]],[[[-106.4343843752718,21.49393474001215],[-106.43639479673152,21.496935440853008],[-106.43973305718714,21.49710748957267],[-106.44208983121251,21.494886402337272],[-106.4450288717012,21.493815111086008],[-106.45106642351027,21.493354710888013],[-106.45614636435914,21.493828073996042],[-106.45875155102203,21.495238604384326],[-106.46053712566777,21.494551960154354],[-106.46824025350008,21.487530479454733],[-106.47068726820305,21.48626057755888],[-106.47234286038872,21.483978670639317],[-106.47788334114608,21.481864698548407],[-106.48176648029403,21.479218837406506],[-106.48344589031609,21.48035821012604],[-106.48766271444293,21.472901147750463],[-106.49195939755924,21.469901518490076],[-106.49375524799962,21.46588652208186],[-106.49024608395467,21.465659851034957],[-106.48947996679686,21.46314185532151],[-106.48516279103609,21.46012501192081],[-106.4826636039511,21.45383255066048],[-106.48075723223974,21.453873809861534],[-106.4793449241871,21.45000369316756],[-106.47791755103691,21.451464552675418],[-106.47265665178611,21.451976922574488],[-106.46369291794349,21.449577261450997],[-106.46066227551836,21.446370648502466],[-106.45211746367164,21.443980829797738],[-106.44672176333722,21.441559061632006],[-106.44492780736454,21.43878111373789],[-106.44491716150935,21.43553102623781],[-106.44199589481883,21.437452536836247],[-106.43608575470631,21.437232539594163],[-106.42901666831244,21.43542155459909],[-106.42484805884027,21.432693898612513],[-106.42208911412467,21.432867112032852],[-106.4209799442362,21.4311059867037],[-106.4181158073352,21.430468666439765],[-106.41811443736952,21.427156603480057],[-106.41581010279299,21.42811737594218],[-106.41481797274781,21.425665542485206],[-106.41199549586423,21.423104847245384],[-106.41024824618142,21.424670498886428],[-106.40681160806247,21.422921828675612],[-106.40378206748318,21.422969040222824],[-106.4014922656919,21.42129803382454],[-106.3990358179172,21.421522971516993],[-106.39673971670703,21.419893842776446],[-106.39461215655979,21.421397596249676],[-106.39238711488889,21.419834458004345],[-106.38716700697813,21.419457525030964],[-106.38531681104024,21.421054885134026],[-106.38831729596018,21.424213807371018],[-106.385383666817,21.428177375424355],[-106.3865491611237,21.430816900245304],[-106.38307059630569,21.43633223995272],[-106.38367965816468,21.43862092339674],[-106.38257701720227,21.4425701642715],[-106.37947682613196,21.44908513413094],[-106.37290356464825,21.451948615205595],[-106.36672595908539,21.455594056719235],[-106.36182481887477,21.456118677070435],[-106.3586375350609,21.455273346227955],[-106.3598669463081,21.46042714551311],[-106.36165779619756,21.463513953909],[-106.36482769235369,21.466233693461163],[-106.36884395511089,21.471767433646335],[-106.37033162772559,21.475482027028022],[-106.37086507091664,21.479798570284572],[-106.37193582787529,21.481520333864808],[-106.37913195432088,21.48313338796595],[-106.38973639347904,21.483330146582603],[-106.3987508818384,21.48314056265116],[-106.40301949780974,21.483829631701155],[-106.40527506418795,21.486109100593694],[-106.41218582888638,21.486191673704354],[-106.41369134125858,21.488312854208516],[-106.42033299304535,21.487878929278054],[-106.42385109600781,21.488835136403964],[-106.42449322775104,21.490538976775667],[-106.42860528082252,21.490705254916065],[-106.43360893810632,21.492458149135018],[-106.4343843752718,21.49393474001215]]],[[[-106.65397776045182,21.693519724103112],[-106.65493909133363,21.69532034825886],[-106.66056267999772,21.692543396536394],[-106.65917059985179,21.69065146183823],[-106.65524105987379,21.688574106892418],[-106.65027887574064,21.682186433035156],[-106.64729793994167,21.674533598855817],[-106.64687248633169,21.669576595795036],[-106.64720473992878,21.663833866708956],[-106.64798820967468,21.66146730197795],[-106.65225210283421,21.657867376032527],[-106.6555283528254,21.65738475267699],[-106.65138078889328,21.65148647200141],[-106.6439212520433,21.64404030190792],[-106.64238873541643,21.641297137078595],[-106.64130691596552,21.635047017902423],[-106.63663880843524,21.628745580151815],[-106.63724940647074,21.626940971808153],[-106.63498538712292,21.625698196136796],[-106.63326267461679,21.622357777876232],[-106.6300998588004,21.619634730227858],[-106.62773413035865,21.612232918374843],[-106.62827793864966,21.605707636884745],[-106.63073454661208,21.602417165415943],[-106.62897289477172,21.5986120983643],[-106.62662377489517,21.59826349708294],[-106.61894962069141,21.59311296921561],[-106.61623023876598,21.592863448552293],[-106.61464944404844,21.5913074527557],[-106.60252970102266,21.584659997413098],[-106.59770142313369,21.581170056115184],[-106.59149169574869,21.578409645473982],[-106.58918405553663,21.578238125729968],[-106.58000007086616,21.57428052568173],[-106.57196978764921,21.57180074710209],[-106.56530975655687,21.568187410250005],[-106.56009570315496,21.567264813084762],[-106.55942860315503,21.565202585699637],[-106.55799804043716,21.566266648999488],[-106.55294428437168,21.565258233131885],[-106.55287917204288,21.56208213103713],[-106.55148990298846,21.561617632797265],[-106.54879707604033,21.563987576490263],[-106.54622670892832,21.563214851583837],[-106.54360692840191,21.560667486784382],[-106.53844201861887,21.557024145251034],[-106.53740146399355,21.55424014344044],[-106.53833819100498,21.55180438408621],[-106.5408099801873,21.550791384599222],[-106.54239928045644,21.546362270403847],[-106.54167762865183,21.54431160253864],[-106.53207648717569,21.545301357766277],[-106.53397368864108,21.54882638874608],[-106.53352416758827,21.55086089623927],[-106.52952779418052,21.55423878662924],[-106.52704490325522,21.55834912494339],[-106.52125781787487,21.56093705562006],[-106.5214823620355,21.56538055838348],[-106.52006094868591,21.56827997581604],[-106.5150981370914,21.571147541882397],[-106.51184740047535,21.570462380424033],[-106.51406036088616,21.574923635724645],[-106.5158383922809,21.58197461974919],[-106.51562390950778,21.585926248718692],[-106.51373022821724,21.593812731106368],[-106.51205657292218,21.59745320324697],[-106.50912584768929,21.600730203052024],[-106.50569987341913,21.603345229929744],[-106.51146824691659,21.604870865244322],[-106.51356274857346,21.60614309880407],[-106.51463913887562,21.609186874829277],[-106.51777003004531,21.612280903425244],[-106.51993321209613,21.615585012725376],[-106.52352383104284,21.61796348257809],[-106.52681453951232,21.622988555916493],[-106.53317300327075,21.627888409504635],[-106.53736930432643,21.632793903168704],[-106.5387942933715,21.637046749441538],[-106.53928586074454,21.64439277255167],[-106.5374585367664,21.64925947453247],[-106.53486219066178,21.65319091565857],[-106.53548321254527,21.656989973558666],[-106.53872976678974,21.65955087646614],[-106.54697619446506,21.667608018528142],[-106.55053236440608,21.6697745041011],[-106.55746165489961,21.67137125981685],[-106.56471552601346,21.675219115993286],[-106.56626215305778,21.67530475007021],[-106.56870881459656,21.677853465639657],[-106.57418345204411,21.68050439251425],[-106.57418851025432,21.681534893785624],[-106.58027313789677,21.682780808262237],[-106.5819955247236,21.683968879367228],[-106.59614940073448,21.686209720191073],[-106.59823877415931,21.690328771975885],[-106.60603074445004,21.690035076864945],[-106.60785318238266,21.691664823530232],[-106.6214204774464,21.68883303953021],[-106.62499503684387,21.68925562583007],[-106.62658588729124,21.691853793063217],[-106.64274060075076,21.693378031731868],[-106.64409426153179,21.694503944254507],[-106.6493404232993,21.693529576838444],[-106.65397776045182,21.693519724103112]]],[[[-106.67320970587599,21.774852097105054],[-106.67818105093914,21.773523734700973],[-106.67895675465172,21.769846723214584],[-106.67840761605703,21.767624949374465],[-106.68165415162247,21.75870904402592],[-106.68641088957105,21.75949014777467],[-106.68727720720068,21.75846657957436],[-106.68581247016806,21.756195611247392],[-106.68709090353042,21.75244873823266],[-106.68745864244113,21.745791025218693],[-106.68585639775472,21.743836663864727],[-106.6841693942149,21.738873585649287],[-106.68263629754136,21.736669176220232],[-106.67953479883693,21.729798618878704],[-106.67696195900908,21.728596634775727],[-106.67338356862888,21.729075261183027],[-106.66811765873791,21.73269814804837],[-106.6654787411864,21.733532131003415],[-106.66202212837948,21.736229821103677],[-106.65901803270725,21.737577874055603],[-106.65790415362665,21.74020523194548],[-106.66153687880723,21.74287009184195],[-106.66531892521539,21.748701446830182],[-106.66610150427107,21.753447046252404],[-106.66604584676668,21.759578492510286],[-106.66899640912442,21.76398846603621],[-106.66818754300783,21.7666093723941],[-106.67029651956426,21.768235218667883],[-106.66907681651514,21.771453462526665],[-106.67160288498889,21.774637655083268],[-106.67320970587599,21.774852097105054]]],[[[-105.87989518619139,21.84872781558545],[-105.88449103847262,21.852868839517214],[-105.89055692874183,21.853889162208816],[-105.88980549586785,21.848673834110002],[-105.88718343981253,21.848161441776824],[-105.88801140722848,21.840926305844675],[-105.88543846777759,21.840030533362665],[-105.88432902246126,21.843292748262684],[-105.8824867481515,21.844308346774483],[-105.8808315290787,21.84235404686126],[-105.87976150924197,21.843700622422887],[-105.87989518619139,21.84872781558545]]],[[[-104.29288603863057,22.34469453411657],[-104.28884661558726,22.34913228810717],[-104.2892588424931,22.35178044715792],[-104.28574027688143,22.35636614180828],[-104.28915205444304,22.357630326968717],[-104.29180733651327,22.36046800271771],[-104.29312755968698,22.36513115591265],[-104.3253158439972,22.380749394342672],[-104.328040620948,22.381162242642404],[-104.35004092959718,22.38640541838714],[-104.3516612738984,22.389192825767793],[-104.35353303862468,22.40131524760409],[-104.35177101417713,22.407758331831474],[-104.34884292347277,22.409716641378566],[-104.37151221068609,22.421658643195997],[-104.39741031431083,22.41191710702094],[-104.4229753908773,22.401797902524038],[-104.43192581673077,22.39804827302862],[-104.44521535909013,22.39308560918522],[-104.4592449930891,22.386843191294872],[-104.49413520173516,22.376254993843077],[-104.49538984801205,22.376324145698675],[-104.49541680162042,22.372610886237908],[-104.49314872085904,22.371289283808608],[-104.49112307481795,22.372335190374258],[-104.4878603686771,22.368905083042762],[-104.488918794759,22.365379689723625],[-104.49103534756671,22.363822441142474],[-104.4948005790223,22.36271059627211],[-104.49499027117832,22.36053209787582],[-104.49250182586763,22.360807492345714],[-104.49098568678136,22.357504371241077],[-104.48733262042003,22.353188869930307],[-104.48522683312507,22.352435642152727],[-104.48120594274695,22.352728301848856],[-104.48120967246007,22.351616918288016],[-104.48460643073139,22.349259665980753],[-104.48818141337932,22.351492751397757],[-104.49385614415854,22.351170440739565],[-104.4960299508893,22.350236394931983],[-104.49962695564722,22.346184063866076],[-104.50739822835862,22.34603153005969],[-104.51330495017999,22.354047851913435],[-104.51704178087203,22.357169247924787],[-104.51865866502766,22.360603945860134],[-104.52263218869291,22.360378274798904],[-104.52718362602224,22.36144321507743],[-104.53001235348063,22.36364763425638],[-104.53518045518791,22.364226454538937],[-104.53777664542503,22.36702563691847],[-104.5398938416393,22.371733019198928],[-104.54464181032432,22.37508862219545],[-104.5476687589362,22.37629343416654],[-104.54911305745122,22.37917502625146],[-104.55095461236556,22.385621037053056],[-104.55125297324753,22.388866595030606],[-104.55773596737401,22.386066192524993],[-104.55871511955911,22.393438931596506],[-104.56087914009436,22.394778572545988],[-104.56563403584283,22.395277003208605],[-104.57186892498709,22.393938318504354],[-104.5745894049349,22.39476002880116],[-104.58207429896748,22.400447677541194],[-104.58377685558202,22.406073067731143],[-104.58661054564811,22.40627071941941],[-104.58680043967473,22.41016997876949],[-104.58846968633355,22.41265440175556],[-104.59272402727152,22.41182924812375],[-104.59407861554615,22.415199552396587],[-104.59296433601259,22.418562342522364],[-104.59455581386885,22.422810306299766],[-104.59353421853899,22.42476509805931],[-104.59564066022153,22.426714492250824],[-104.59552287437424,22.42859052912121],[-104.5987667346846,22.432017989010433],[-104.59707609395292,22.433872397103812],[-104.59717620943684,22.436755344872893],[-104.59909887431525,22.438688297021997],[-104.60150911194296,22.439168369292076],[-104.60251944818447,22.442540800662357],[-104.605309094282,22.445191311665724],[-104.60365469006035,22.449405016447088],[-104.60435787213436,22.450648880417475],[-104.60212652430846,22.455437072545635],[-104.60259198717256,22.460514811027053],[-104.63835965906298,22.463419395848405],[-104.65529172905428,22.46215465829141],[-104.65362898008715,22.498118739726124],[-104.65416853716687,22.49969663171703],[-104.6545842007709,22.523406298123405],[-104.65405065327707,22.525324081795702],[-104.65565255434802,22.526500534477123],[-104.65529701301006,22.529257882739216],[-104.65679126586014,22.53321828343354],[-104.65561034230313,22.534189277726853],[-104.65688961771622,22.536091314329724],[-104.65649529691899,22.541315464121453],[-104.65900207491569,22.542271107642193],[-104.66001524600193,22.546750072477835],[-104.66274500658056,22.547362223716675],[-104.66372450748042,22.549269382117302],[-104.66234982626617,22.550675072916817],[-104.66618013930952,22.555375987417165],[-104.66762196366193,22.56254519623201],[-104.66999832447772,22.56526173179384],[-104.67594361188458,22.56142327534303],[-104.68095799443438,22.55909623855132],[-104.68580016275331,22.557788091068687],[-104.68979410034711,22.55838867116603],[-104.69499846111609,22.556626275755434],[-104.70429853278051,22.55499541145224],[-104.70503603440608,22.555929543790512],[-104.70873707784995,22.55462431646555],[-104.71105185571639,22.55658584587303],[-104.71516436369012,22.5559487966064],[-104.71685327135157,22.56096217130539],[-104.71859099017092,22.562756684758767],[-104.71780205231039,22.564818137596887],[-104.71979677893984,22.56904521836111],[-104.72323011367308,22.5669725499352],[-104.72523035714579,22.56152097041121],[-104.72877606547263,22.558743392327074],[-104.73705300355618,22.558095662199605],[-104.74081380613478,22.56103628428781],[-104.7501340407029,22.56522085070725],[-104.75176760937399,22.565025579218855],[-104.75719239462006,22.567088064530424],[-104.7615201578239,22.570083451559356],[-104.76374018249305,22.576238227153226],[-104.76593491690778,22.57801133475158],[-104.76708710336032,22.58085276799511],[-104.77024739498,22.5825013667353],[-104.77186008591087,22.582233618340638],[-104.77593419762621,22.58512330600081],[-104.77257268142148,22.591897602584766],[-104.7758041903823,22.59422583457581],[-104.77595810802023,22.5976217960839],[-104.77836772019509,22.599357283245695],[-104.77784395981064,22.601767518499912],[-104.77967938772963,22.603023889339283],[-104.77871151286269,22.60645910859961],[-104.77622730938299,22.61006414536388],[-104.77637144196513,22.615475199396258],[-104.7755811603136,22.617222022028955],[-104.7769982776801,22.61983153469089],[-104.77602345925277,22.62256768728531],[-104.77711090254462,22.624996180164146],[-104.77582948223557,22.627337404927516],[-104.77614434422645,22.630475336821917],[-104.7742124611521,22.632820972724176],[-104.77879199654126,22.636861930230907],[-104.77783302742887,22.639681443222855],[-104.77918724756853,22.642931440616223],[-104.78352798200541,22.6446502843566],[-104.78441248586154,22.64580388874623],[-104.78921661010156,22.64794372297939],[-104.79177840041103,22.647414379360896],[-104.79399207953884,22.648710984858155],[-104.7965458134359,22.648170811370335],[-104.80425594847281,22.648743863756522],[-104.80529002090879,22.647393914039526],[-104.8027726603375,22.642405469983146],[-104.80440031555975,22.63982977964531],[-104.80685049866725,22.640069526213495],[-104.81107190302055,22.6378532489897],[-104.81130877119477,22.634765456222112],[-104.81467751001367,22.634249189453726],[-104.81647232108065,22.63609065727428],[-104.8152294055522,22.637209308607623],[-104.81669198020177,22.639682644585776],[-104.81867298206112,22.640465379952616],[-104.82204377084923,22.63967105832228],[-104.82717699470044,22.640857299239542],[-104.82943256541597,22.64022645950388],[-104.83209866241702,22.641399379005634],[-104.83717456823064,22.646030519152077],[-104.84079279545085,22.646588475112594],[-104.8411267282973,22.649394596733885],[-104.84011642851613,22.651138574418837],[-104.85839705657997,22.648326703826626],[-104.86249312271798,22.607070491386708],[-104.9605251751205,22.50531144231269],[-104.98791315688914,22.49872661699783],[-105.00755274270296,22.58567196196094],[-105.0723689447417,22.65649909418022],[-105.06842279804158,22.6784139029088],[-105.05730269955825,22.68809400133688],[-104.98150378126581,22.710832472569734],[-104.89272044300645,22.73740924815536],[-104.91295886997108,22.745569013000136],[-104.91563664304715,22.748537973950476],[-104.91442517774226,22.752620382585576],[-104.914315300846,22.76026489971639],[-104.91263848259092,22.762730102057333],[-104.91150731787832,22.769738069867458],[-104.9132996473503,22.7731590984514],[-104.91341707477125,22.775293870256462],[-104.91030866625209,22.78202753362683],[-104.9103509121606,22.786406888349404],[-104.91335387322721,22.788938273412043],[-104.91301749941272,22.7917044068069],[-104.90990659463404,22.79537814661262],[-104.90771027195257,22.795326726807673],[-104.90571527111365,22.797591590384002],[-104.90560075474798,22.799817191110094],[-104.91013314658932,22.80065703448821],[-104.91132931805572,22.803192282902273],[-104.9083907154066,22.805353501430886],[-104.90825680405214,22.807600585545174],[-104.91146597582491,22.809334400679177],[-104.9131001127746,22.813782449953294],[-104.91717750625094,22.817193651332786],[-104.91949075849556,22.820625636136526],[-104.92713361841862,22.824247057596665],[-104.92975443899303,22.826428657702195],[-104.93279784143397,22.827308745872358],[-104.93602404075472,22.826504365018025],[-104.94050486339029,22.816163281587194],[-104.95001255712936,22.821774638799525],[-104.95324834156042,22.820494462888803],[-104.95498801024331,22.816249607020552],[-104.95896731193426,22.81360460519784],[-104.96439468016416,22.815176989656777],[-104.96645256767454,22.818507395350707],[-104.97114779615964,22.82058576320742],[-104.97169172361538,22.824661646404593],[-104.97392153449113,22.825722105987268],[-104.97827638605895,22.826201332670678],[-104.98151257732883,22.83244648714583],[-104.986088476401,22.83401002241743],[-104.98840523076439,22.836049324296255],[-104.98965345946488,22.83886022515088],[-104.98746425087518,22.846184386083962],[-104.9906141156448,22.852145000951396],[-104.98786997325692,22.855515226114164],[-104.98856961439384,22.859394647522834],[-104.98812671394205,22.87028925361477],[-104.98849884234374,22.875040359926345],[-104.98970044337415,22.876551851545287],[-104.98743577904645,22.878567935364458],[-104.98704122077498,22.881505925743625],[-104.98805612019555,22.882751289771534],[-104.98779563701709,22.88825202216043],[-104.98894468181658,22.890883248260536],[-104.99321201700008,22.89149092094658],[-104.99505192298136,22.892979996853057],[-105.00071116636087,22.90066264077018],[-105.0050691333771,22.903552068121257],[-105.00567614352332,22.9067421870094],[-105.00228688920214,22.905979789214598],[-104.99985694421514,22.907195604725757],[-105.00195616724665,22.91194868245327],[-105.0048139234276,22.91456209612221],[-105.00560619436817,22.916954048062166],[-105.00971035808078,22.921481933871974],[-105.00994115101764,22.926542088461133],[-105.00419203552514,22.932013031484416],[-105.00488115696561,22.93755532661106],[-105.00396295564894,22.940654279869477],[-105.00083726554033,22.943867765561606],[-105.00031172098454,22.947209716834664],[-104.99689313693989,22.952001598631114],[-104.99843798209258,22.9545506550989],[-104.99802086669933,22.95717345968393],[-105.00320625403032,22.96010216516936],[-105.00596271766085,22.96557968695322],[-105.00834104658918,22.968458694207015],[-105.00822175709447,22.97149618459099],[-105.00313941619453,22.97698267909044],[-105.01382461632863,22.97767283000786],[-105.0760157863844,22.95963882400838],[-105.16357408980895,22.95387192622752],[-105.25408570081277,22.956271616933975],[-105.29769906521176,22.954162107020693],[-105.3235698867665,22.941330168482864],[-105.32834204410216,22.942988275173548],[-105.32871873133593,22.94741840862406],[-105.33049008129768,22.947983315998044],[-105.32827705589108,22.952018509572895],[-105.32961246714149,22.952872058103765],[-105.33202493912012,22.951706328412854],[-105.33414166153398,22.95340891847843],[-105.33384969188472,22.956114175933806],[-105.33068541384432,22.9626917669392],[-105.33333263445081,22.962080843566127],[-105.33730408118493,22.96413668105305],[-105.33711875695786,22.967688753839525],[-105.33843680669077,22.96647795378749],[-105.34274084679481,22.967478498843036],[-105.34250614204285,22.970415983947248],[-105.3383785399921,22.969699453465353],[-105.33687593908991,22.971685235087534],[-105.33944925367194,22.976396562732873],[-105.33730648011834,22.97738176466055],[-105.33623722586316,22.98002840278184],[-105.34005324706112,22.982003983741436],[-105.33959564235494,22.9835032822744],[-105.33671854632354,22.98474033253291],[-105.33507308224932,22.98842647489704],[-105.33837844427518,22.99114959539969],[-105.33877590521274,22.993497638636654],[-105.3345804420212,22.99341547557168],[-105.3338038763539,22.995224850108116],[-105.33614700465148,22.996032586162357],[-105.340425883651,23.003519664189753],[-105.3410256961862,23.00836979591338],[-105.34273631134715,23.007228597160463],[-105.3449649761206,23.009945762991094],[-105.34314960114153,23.012342475412368],[-105.34974086214191,23.01512428743024],[-105.34923440773463,23.01643750724952],[-105.35275825522649,23.01961423115],[-105.35374963645677,23.019438388455285],[-105.35247920609959,23.02476396488987],[-105.35332032513202,23.028541779522016],[-105.35164513451042,23.031006391234598],[-105.35079626213536,23.035634462706412],[-105.35184715663337,23.03742165114653],[-105.35421259485332,23.03756389330681],[-105.35608220127938,23.044173710333325],[-105.35813554236887,23.046794306895094],[-105.3547484702795,23.047389253435654],[-105.35412352408576,23.050151719884525],[-105.35069738293731,23.05184959748567],[-105.35285970059857,23.05529280267973],[-105.35066059662597,23.058359931340078],[-105.35047118817857,23.060575344687436],[-105.35335069676478,23.062169505681254],[-105.35769129230772,23.062974575230953],[-105.35612467268027,23.065137191259964],[-105.35852382071374,23.066281235114275],[-105.35899208311724,23.069270673201743],[-105.35734797188735,23.07190267236416],[-105.35831631143918,23.07392337138083],[-105.36110850133144,23.07339154285563],[-105.36404482974217,23.07519748724269],[-105.36567915511296,23.074040448858852],[-105.37065511137911,23.074916731519863],[-105.37544959563428,23.079035245618854],[-105.37792701648294,23.07776254104658],[-105.38057949121276,23.079278518988133],[-105.37987757794258,23.08093121053156],[-105.38471202713947,23.08448007965461],[-105.38534526455254,23.081791764481807],[-105.39224539040003,23.084081987629986],[-105.41299649502554,23.07409920194783],[-105.41377843346646,23.068947235743963],[-105.41219715861217,23.06780541395659],[-105.41308877072538,23.064634401533283],[-105.41040251184933,23.060095752557913],[-105.4120877348488,23.05373248270604],[-105.41135219896938,23.051732007372948],[-105.41204911802748,23.04827085304089],[-105.40994730080752,23.043673118056518],[-105.41156783221709,23.041163915495417],[-105.41012517804586,23.039082267485185],[-105.41316181607039,23.037054753822645],[-105.41154955945308,23.034613143893296],[-105.41168242589248,23.030362165675285],[-105.41061559725608,23.027205947850405],[-105.40913506136974,23.02692016016198],[-105.4089503362352,23.023640811520977],[-105.43259456402018,23.023968804373624],[-105.45331134632323,22.977401795805292],[-105.50126392802213,22.958560041303087],[-105.49610424824692,22.934221837810867],[-105.49818492083483,22.933477752099577],[-105.4740880330981,22.888772028416952],[-105.47121991018747,22.883285955448457],[-105.47533286688144,22.880624434262415],[-105.48420128992882,22.858702969955175],[-105.48358203520871,22.857434606367292],[-105.47742497718423,22.854208418062342],[-105.4745886302606,22.851416015590587],[-105.47682634245979,22.8500543805784],[-105.47662282366764,22.84770594339858],[-105.47856652814659,22.846345439404672],[-105.47917783633449,22.841991967291563],[-105.48135142389305,22.84219989046767],[-105.48693669655847,22.839447614530513],[-105.48588413546145,22.83469356760554],[-105.48825224979265,22.832342573032463],[-105.48680207556777,22.83069218950925],[-105.4887830148395,22.829607975929036],[-105.4876254766433,22.82693869511786],[-105.49019240305256,22.824442423199798],[-105.49321065010258,22.826336801828745],[-105.49285176305881,22.821357277353286],[-105.49575852417297,22.81779350572458],[-105.49356099740157,22.814953428573517],[-105.49628638220179,22.814583986143248],[-105.49490224583707,22.812984233859538],[-105.4949688648835,22.8105188919684],[-105.49978205502151,22.810778726655144],[-105.50240927861125,22.80977679206137],[-105.50278633759933,22.806315484458878],[-105.50495344206234,22.806512722559717],[-105.50628613629402,22.804163807558723],[-105.50521135686279,22.803354208746555],[-105.50665149963731,22.797568246434253],[-105.5111820382727,22.796910487423645],[-105.51130530964252,22.794043649993625],[-105.50858468707395,22.793406716620552],[-105.51144468451935,22.79090998417911],[-105.51207485731254,22.78878850006896],[-105.51499417646954,22.787875760176405],[-105.51444238182467,22.786796609883027],[-105.5165553469231,22.78445353620856],[-105.51897416447156,22.784068822403412],[-105.51658152297472,22.77992386503888],[-105.51923600154146,22.776028213011784],[-105.51980919832738,22.77304531173928],[-105.52117159977814,22.772679530875223],[-105.52258137983466,22.775566267334682],[-105.52435547931134,22.775646937324836],[-105.5231947694719,22.773075320961937],[-105.51936820022775,22.759002266138225],[-105.51408222578107,22.759328440271815],[-105.51526283009235,22.739469898323534],[-105.52079860287779,22.729415215947427],[-105.52289345966813,22.724334798970858],[-105.51369413053169,22.693790734258755],[-105.51151231475768,22.68524930257894],[-105.49806384604733,22.651390756333626],[-105.46396310290021,22.65923830086075],[-105.46237352806372,22.656904774761244],[-105.46055678995953,22.65123040917655],[-105.46039093525206,22.647549941565558],[-105.46485551546385,22.646108828112233],[-105.46741507734873,22.64243828238392],[-105.46936785410395,22.64143683288529],[-105.47135283254079,22.63644869314936],[-105.47419889078753,22.632810734525606],[-105.4723560978548,22.62650390681023],[-105.4687195981686,22.62507831446635],[-105.45226262661504,22.62707666095548],[-105.45045862217523,22.626755481415273],[-105.44947113545385,22.62327293725292],[-105.45016448789136,22.62013079442113],[-105.44856336873863,22.6145481598777],[-105.44811138153972,22.610122819794128],[-105.45157906494615,22.608318699541144],[-105.45489017321432,22.60433097749575],[-105.45598640713462,22.598739086026058],[-105.45237007315433,22.595323629238294],[-105.442320203581,22.590364461345246],[-105.43906019881797,22.587885302326185],[-105.43693045720096,22.58190739960861],[-105.43801494460632,22.57770322264315],[-105.43751054350349,22.570853682114944],[-105.43872758754299,22.565236261186556],[-105.437044975545,22.56161147041604],[-105.43550308721592,22.560392457689375],[-105.4376513425384,22.555739625758463],[-105.43462553385092,22.549984195671243],[-105.43540548154976,22.54467530361586],[-105.43681655875656,22.54074268318709],[-105.43629462698459,22.538321491399756],[-105.44082810191327,22.53101381116835],[-105.44339760638451,22.530603236568595],[-105.44398452675955,22.52872852929937],[-105.44208076607083,22.527118247646797],[-105.4417246936336,22.52426842557105],[-105.44491888366758,22.521579068379708],[-105.45053238371042,22.519691045002958],[-105.45353605761727,22.519426805377748],[-105.45673120122802,22.516295875836704],[-105.45867487401233,22.511153748775826],[-105.46083680644438,22.508568103124333],[-105.46236719127256,22.510741228185168],[-105.4664483242006,22.505387873895017],[-105.47081044459111,22.50563056397408],[-105.47406029810435,22.502900425835776],[-105.47485261993461,22.505458241301653],[-105.4784735531793,22.505064412276795],[-105.48070167217537,22.50995072102876],[-105.4806613538048,22.513929981058823],[-105.48379648843411,22.517712812036393],[-105.49201565994542,22.519448377798426],[-105.49318070673866,22.520279817675714],[-105.49319803260829,22.523422450692806],[-105.50267631155839,22.525593682577608],[-105.50317935386465,22.527681856259733],[-105.50956658003247,22.516962711801625],[-105.51317435337376,22.517022091158196],[-105.51342232657657,22.518484983169117],[-105.515824629375,22.51802626977775],[-105.51729476492466,22.520183071434303],[-105.52193806886021,22.520995280408158],[-105.5293695246649,22.51890797963364],[-105.52958424029163,22.51595880097375],[-105.53359632968932,22.51503122818167],[-105.53835728649534,22.530224538934988],[-105.54003835904058,22.531326556344084],[-105.5399347749339,22.53559333821022],[-105.5416759383429,22.53653688238171],[-105.55251692934672,22.539126773245073],[-105.56038174781929,22.537298233488116],[-105.57364433301825,22.53925116894112],[-105.57619051279408,22.538021492131122],[-105.5759511325582,22.535149757887837],[-105.58389317368284,22.53348422527523],[-105.5899077408597,22.53377102414629],[-105.59173253704256,22.535825439615337],[-105.59828823014033,22.536671131357366],[-105.60163557111593,22.542547677375012],[-105.60012955850294,22.543766662578435],[-105.59986103611897,22.546549034663144],[-105.60047657877936,22.55888780379371],[-105.605350764783,22.561166182715283],[-105.60630065471838,22.564006415710764],[-105.61211262631349,22.568158976284053],[-105.61766898673858,22.56823826635275],[-105.62203646403492,22.571425527564713],[-105.63140863538575,22.588753771989104],[-105.63055753483673,22.59232474044478],[-105.63402939057534,22.593466369349642],[-105.64215841235222,22.593888639753175],[-105.64316965394647,22.590072994026173],[-105.64218619640809,22.582929128214687],[-105.63971240559323,22.576887002420904],[-105.65057171938042,22.579469757970912],[-105.65386274579225,22.58112960950126],[-105.6553870776998,22.583735836344147],[-105.65732384783098,22.58353385324955],[-105.66056203762429,22.586362987092457],[-105.66213134592033,22.58467938884462],[-105.66356823109868,22.58544968500769],[-105.66543319761684,22.5836603170074],[-105.66678702336424,22.579562598910286],[-105.66997004596828,22.576881207877875],[-105.67415602916844,22.57575600819672],[-105.676399902902,22.576785364190755],[-105.68174546938218,22.572189109048225],[-105.68748217398303,22.571890553719697],[-105.69004983368768,22.568389139442957],[-105.69480052778732,22.56797855697289],[-105.6985617088771,22.56838071796733],[-105.70048146679409,22.561915004572597],[-105.70044206286303,22.558455900605964],[-105.69700687517388,22.550767182301456],[-105.69303869427847,22.545173537415337],[-105.69173208557226,22.54053692588593],[-105.68907509151194,22.53648564878887],[-105.68767586215353,22.532626782973352],[-105.68512795039646,22.528798063337433],[-105.68387144146544,22.525427069590535],[-105.67715424192846,22.512927604413846],[-105.67523487129608,22.507200386854663],[-105.67438241866665,22.501523529054793],[-105.67430876469632,22.496464000609365],[-105.67110577977849,22.4815624180427],[-105.67264931284342,22.474094981433552],[-105.67703580229357,22.468135105948306],[-105.68352122938762,22.467159447350355],[-105.68559714741156,22.46756847494663],[-105.6928378832203,22.46723095638015],[-105.69647136959554,22.468240057346293],[-105.70118725236824,22.46769018151025],[-105.70474254717357,22.469293069068215],[-105.70818224780055,22.472041089997788],[-105.71411626518011,22.474946058315595],[-105.71710877354201,22.478254987595676],[-105.72039603637967,22.483120573590043],[-105.72423308554693,22.487123719414626],[-105.72771712798789,22.492438491133896],[-105.73156635256441,22.502860851378955],[-105.73540774575639,22.509949532978737],[-105.73707541104375,22.51441629354298],[-105.73809408351502,22.514840248206383],[-105.73977983488277,22.520154760476828],[-105.74378548917139,22.52686332454391],[-105.74617240708415,22.532902739830718],[-105.75021208259813,22.53933608167523],[-105.75293863747959,22.540859992961998],[-105.75608779750218,22.53784914637089],[-105.75829524290333,22.537676969445556],[-105.76030600149068,22.53103787550714],[-105.75916652834604,22.527719530552588],[-105.7575331680481,22.526167296460926],[-105.7461049442976,22.507386919383634],[-105.72855180422528,22.47560702996526],[-105.72120238623125,22.46155452840054],[-105.70981668890693,22.43787021638832],[-105.70542511067242,22.42784339780917],[-105.69366002659746,22.398892656819214],[-105.68633353049239,22.37903948198783],[-105.68229550886076,22.366638148278014],[-105.67596664775374,22.346192044889335],[-105.667914180467,22.315789238067396],[-105.66349024426518,22.29661273025124],[-105.65874839187063,22.273066199287257],[-105.65573693096724,22.256725050412285],[-105.65364884587518,22.24402594784476],[-105.64898798214796,22.212327797608737],[-105.64803873935239,22.20795045013881],[-105.64313044672855,22.191998496790916],[-105.64123802956061,22.18959061959066],[-105.63824423150095,22.188158631580734],[-105.63664676855228,22.181873100845223],[-105.63912280135975,22.181863235251342],[-105.64316994928492,22.17866610248626],[-105.64597223462789,22.172002940067443],[-105.64666483931626,22.166950595762728],[-105.64718673265173,22.153684877531816],[-105.64699816628342,22.144815926757644],[-105.64769266000718,22.126124320289534],[-105.64877817741461,22.109736292958814],[-105.65099786689831,22.086696743140067],[-105.65213262667186,22.077721674108318],[-105.65381322827841,22.058431126643484],[-105.65399652157708,22.04289906090537],[-105.65337347904307,22.033714344046984],[-105.6518987176072,22.023020496897516],[-105.65046410234851,22.01561666289848],[-105.64774532670754,22.004466734540074],[-105.64438159063138,21.99368627463241],[-105.63882750867594,21.97925943346928],[-105.63481802055747,21.97052246691493],[-105.62834211484176,21.957720566286127],[-105.62108318406746,21.94479155981287],[-105.60340120559135,21.915162926200537],[-105.5942492515668,21.90074548917977],[-105.58089836251435,21.880913929205462],[-105.57305906216976,21.86978126947116],[-105.56179002701111,21.854658382338528],[-105.55818964370258,21.848513389366985],[-105.54928984915529,21.835951107745302],[-105.53848111478624,21.81913748592143],[-105.53753999639139,21.81594683444098],[-105.53327100670225,21.811868807503288],[-105.53073956291809,21.807894130998932],[-105.53021862436793,21.804051879579674],[-105.5245990023273,21.794274645519124],[-105.51509397617411,21.776394787088464],[-105.50359030279526,21.753644908391493],[-105.50010045792408,21.74740526315901],[-105.49774627495071,21.74005776668713],[-105.493879250149,21.73374559012825],[-105.4909096203935,21.73242113460384],[-105.48852307747916,21.729676238697152],[-105.48961280064827,21.723898940926688],[-105.48740029620001,21.719993814263034],[-105.48419852157292,21.7116058416118],[-105.47550209082794,21.69381279247017],[-105.46874941252474,21.68082892239721],[-105.46384253050093,21.670855970363277],[-105.45379626825866,21.652845532981075],[-105.44983876679788,21.643561975121884],[-105.44715952369319,21.638560713584013],[-105.44743630286592,21.634119468518065],[-105.44467469884421,21.629444338559892],[-105.44562453802695,21.627978260570558],[-105.44463562814889,21.624718935687724],[-105.43915208272955,21.620095614133106],[-105.4358003416645,21.61796965750517],[-105.41857316393362,21.60598721447019],[-105.41056252652925,21.599992781871208],[-105.40346051971193,21.5961390126526],[-105.39546889631663,21.591161299776218],[-105.37297495368728,21.578376828653234],[-105.35855501317224,21.570689456844264],[-105.33938694932618,21.560087325927782],[-105.32480450028908,21.551375946633584],[-105.31487484437952,21.544988261369667],[-105.30577862590877,21.538766622931632],[-105.29250879298223,21.529221063247064],[-105.28992488441514,21.526466941337844],[-105.28677227138547,21.52945531709821],[-105.28342413572057,21.52808589579348],[-105.27478940735517,21.521842889457105],[-105.26778954226398,21.51558638635163],[-105.26550119163011,21.512065430652513],[-105.26054131616644,21.514787763705044],[-105.25734148212194,21.515787418595096],[-105.25386093081596,21.51495409277146],[-105.25059918509703,21.51254856295327],[-105.24714151947518,21.515114198976732],[-105.24930356542262,21.51960563034811],[-105.24863643746892,21.52283346136977],[-105.24619579850548,21.52567854819506],[-105.24187071130467,21.52687763131445],[-105.2374829138725,21.527102474619483],[-105.23231739147593,21.525944629831997],[-105.22476184928058,21.521337403068003],[-105.21874301844787,21.51562453532256],[-105.21142117696002,21.508080306074135],[-105.20215121157372,21.497491824272345],[-105.19851516002825,21.492781526591386],[-105.19739218295433,21.490128304907103],[-105.19794878817015,21.486795430977338],[-105.20139601777521,21.481146592404457],[-105.1944519765089,21.47207835456595],[-105.18973403182343,21.46512950771512],[-105.18790813624139,21.457797764809868],[-105.18906849636306,21.451280936080764],[-105.18827922296737,21.44608554737613],[-105.19087032582541,21.443214176343815],[-105.19397363366164,21.43698160845355],[-105.19527756223022,21.436189810181645],[-105.20037447878286,21.43687265424012],[-105.20318738694732,21.434680304088374],[-105.20419293343309,21.43035789227787],[-105.20617006605056,21.42934519764674],[-105.20530534768847,21.425117842635984],[-105.20699754620944,21.423586091953098],[-105.20831444264854,21.418798346070332],[-105.2139171024877,21.41541955167048],[-105.21540918286172,21.411968835465075],[-105.21801022814122,21.410732062059083],[-105.21890364590837,21.406693460984002],[-105.22027085732037,21.40463257701208],[-105.21877741147995,21.40121670250653],[-105.21835573836955,21.393597442228725],[-105.22003296568545,21.38788166027058],[-105.22175259274809,21.385394251537207],[-105.223985372617,21.384964095124474],[-105.23069662261838,21.386409950567156],[-105.2289916174447,21.383444640890787],[-105.22983244569457,21.375784076689115],[-105.23195430182523,21.372128773082125],[-105.23726725435131,21.373297356800947],[-105.23868009458164,21.372451191602636],[-105.23744065096264,21.370735734967752],[-105.23711662732518,21.363942824185756],[-105.23845181889118,21.360976334940403],[-105.2397681715388,21.352796048147923],[-105.24220413132389,21.351498590122276],[-105.2438631982472,21.353037736359965],[-105.24434439088049,21.350945940354393],[-105.24738962412044,21.346893257625425],[-105.24467127947258,21.34699070263997],[-105.24427761429143,21.344364103147598],[-105.23753461834394,21.327753306227578],[-105.23517052714686,21.32069534921675],[-105.2306086529685,21.305244899028366],[-105.22598701979103,21.285024563806132],[-105.22397151050524,21.270439330043928],[-105.21958867970858,21.244490402491067],[-105.2187241699636,21.236229067794397],[-105.21798400336331,21.223603820063204],[-105.21638228857285,21.205007155459782],[-105.21795921997659,21.19952542669995],[-105.22016320248741,21.19932191857015],[-105.22389663561034,21.196316090050175],[-105.22478965125151,21.19245017006358],[-105.22808516205396,21.18895629132487],[-105.22815333699106,21.187287922870496],[-105.23121477913571,21.186488974512713],[-105.23143880394775,21.183957736709885],[-105.23295260881537,21.182484885288943],[-105.23243001514322,21.176950267873565],[-105.22922106500994,21.17426786280464],[-105.22841282161471,21.172380187010276],[-105.22982527700805,21.170076155904667],[-105.23155372775079,21.171535558982896],[-105.23240431695507,21.16774875792879],[-105.23167126946714,21.164304034099416],[-105.22580940554627,21.165182210559692],[-105.22394063407671,21.162026512814464],[-105.22380081885217,21.158166856495825],[-105.22755789448615,21.151497281897264],[-105.23165487430413,21.14981776529072],[-105.23274334112728,21.14580695589308],[-105.23593180235969,21.145165742076074],[-105.23480148772097,21.14378503455282],[-105.23494335194277,21.140849575935306],[-105.23128071585609,21.13875415548273],[-105.23414480219094,21.137336352801753],[-105.23359425694048,21.136263955964296],[-105.23878717445996,21.132995818763447],[-105.2387887607855,21.12756813789173],[-105.23764710990571,21.125482140641793],[-105.23772978378946,21.121629242936933],[-105.23244025563599,21.120455807268797],[-105.2298575329998,21.117763364077916],[-105.22884298243571,21.11156445038199],[-105.22828130524755,21.103569609540557],[-105.22883290746267,21.0933455840144],[-105.23009983023718,21.08470570061388],[-105.23210239110773,21.07537119767653],[-105.23403615973342,21.068592494526968],[-105.23713018209315,21.059892311986687],[-105.24154401442303,21.0512579415755],[-105.24355501968034,21.048194135752965],[-105.24552381801743,21.047226772283977],[-105.24986866374576,21.04283459716845],[-105.25700957905735,21.037621702061585],[-105.26779598680542,21.026334498033975],[-105.27107898244554,21.024054264111214],[-105.27561273987789,21.023109490199317],[-105.27861768804195,21.024867105114083],[-105.2775192840964,21.027253121180422],[-105.2808288054784,21.02719613621167],[-105.28218579761682,21.028368939327095],[-105.28704636136439,21.02581614221441],[-105.29228067197778,21.024949098597915],[-105.29717490722925,21.02725629679844],[-105.29823189596061,21.03126519848297],[-105.30269220410827,21.03317839808227],[-105.30341023180188,21.035342643396973],[-105.30598565104282,21.036335699343226],[-105.31041244739635,21.03632816043455],[-105.3131024080767,21.03494181825448],[-105.31297292065449,21.03014731703388],[-105.3142716666656,21.022552103975784],[-105.31707482350777,21.010328725534237],[-105.31891457712959,21.005001866544944],[-105.32135434752303,21.000676344276428],[-105.32373652507187,20.999601477698832],[-105.3267658342524,20.996533729161854],[-105.32775091910958,20.9923106884346],[-105.3316357222053,20.98574679479583],[-105.33400929918054,20.984348426945132],[-105.34059552967977,20.978660255539978],[-105.34522560105466,20.979083213455795],[-105.34872613757648,20.973411518341322],[-105.35224971714206,20.96608544299852],[-105.35674258763538,20.958270777950986],[-105.359103948719,20.955258233253915],[-105.36201804559607,20.95394119927994],[-105.36310582914916,20.955096282483794],[-105.36610390828736,20.954299812132604],[-105.36710655267609,20.955538988334638],[-105.36879280696519,20.95320572184653],[-105.3704202645713,20.952997447862685],[-105.37169681932141,20.95056682027723],[-105.37634795963208,20.945650682101416],[-105.38350855462909,20.944225670954097],[-105.38748495918378,20.937243696876806],[-105.39035466728438,20.937346132192488],[-105.39300995493687,20.933960882653707],[-105.3957443981659,20.93363260777545],[-105.39786371429363,20.93196496718275],[-105.40172607322188,20.931376651362314],[-105.40387381844567,20.9247914590635],[-105.40703801131212,20.91891468515314],[-105.4099590464159,20.916882360819272],[-105.41121380353746,20.91172512779957],[-105.41593934199813,20.901763973027244],[-105.41858529295848,20.897627138234498],[-105.42079830571072,20.89659028075232],[-105.42559203388294,20.886802716802265],[-105.42827484050417,20.882409585060486],[-105.43202751481454,20.877703263312696],[-105.43709275561531,20.872633422471665],[-105.44191063578853,20.870226488000924],[-105.44405344026131,20.87013592817624],[-105.44505450924066,20.87254429621862],[-105.44812826672432,20.872294816199428],[-105.45103078821461,20.87634282387603],[-105.45386935782744,20.87066512757127],[-105.45634556544809,20.858574701271323],[-105.45863736430147,20.855500635305816],[-105.46106907694309,20.853938632567292],[-105.46253595866949,20.85073058231285],[-105.46169218798212,20.849586572969088],[-105.4661848973264,20.834887008012913],[-105.46881162606377,20.830224184904296],[-105.47213267047385,20.826375355694438],[-105.4734803064378,20.82234925915526],[-105.47665261831236,20.819954730592656],[-105.47623781055529,20.81792713230817],[-105.47944279896785,20.810167804467824],[-105.48668052797098,20.797321030227863],[-105.4938311531102,20.789565230949506],[-105.49826927957815,20.787548597158548],[-105.50071445768629,20.784996069671024],[-105.5072561138636,20.78231387301213],[-105.51216479017967,20.783462842928145],[-105.51311200788973,20.78579446479364],[-105.51507974008877,20.78622630663864],[-105.51832128551968,20.788819801935915],[-105.5190254207779,20.79186064476181],[-105.52020966080738,20.79208460540349],[-105.52846048808885,20.78786937400878],[-105.52996117134802,20.78487957314445],[-105.53086656796347,20.7804601308502],[-105.53317699319462,20.776929477545195],[-105.53935274920752,20.77077893716279],[-105.53752614578974,20.765021358593117],[-105.53824465966551,20.762315456236934],[-105.53463862142195,20.75741437251105],[-105.5321544898298,20.758084874841472],[-105.53049266180938,20.762504326906765],[-105.52818268563874,20.765006238516207],[-105.51962049547177,20.771231489583727],[-105.51100207479374,20.771965696288078],[-105.50405463326996,20.769338674791925],[-105.50150798989591,20.767549444610665],[-105.49869899547559,20.767148812771325],[-105.49448594507305,20.76405735243418],[-105.49013648948687,20.76184722625362],[-105.4821436478681,20.756210040183134],[-105.48187114713335,20.754882245179374],[-105.47678055925684,20.75399372537572],[-105.47582399985794,20.75227828221506],[-105.47137749461325,20.755118986780474],[-105.46798321472028,20.75574123966578],[-105.4639266674825,20.755212512813102],[-105.45961068784749,20.75184815591973],[-105.45890980695754,20.752789103702696],[-105.45292452208486,20.751482498147595],[-105.44694947129551,20.74950283593546],[-105.44461387176847,20.747951030010654],[-105.44033848469832,20.74911221245452],[-105.43312491310468,20.747561144776512],[-105.42300416387133,20.74204424432429],[-105.4185416628402,20.738944347792142],[-105.41182878154876,20.73546529152594],[-105.41090481697961,20.736294021236233],[-105.40548708884614,20.73703668831712],[-105.40039540730515,20.735629263514966],[-105.39864208457686,20.735948320233433],[-105.39057931685772,20.74056863642727],[-105.38831560542252,20.740386408201857],[-105.38670018184024,20.744218995275332],[-105.38051595766706,20.74683853091068],[-105.38125698196603,20.749093050855095],[-105.37559818813747,20.75154042548786],[-105.37161604804169,20.751279657153987],[-105.36982759257654,20.75627500245355],[-105.36616317557514,20.75801384766197],[-105.36557557882361,20.76045437433106],[-105.36277643037045,20.762481823300163],[-105.35878700661056,20.762754803283656],[-105.34679664473845,20.759439140771462],[-105.34095537967488,20.755863462202228],[-105.32910163075121,20.746494569646075],[-105.31917315030404,20.73631072758826],[-105.31347852317913,20.729452894026224],[-105.3098985693644,20.72405216663475],[-105.30655184598794,20.717874838936496],[-105.3012708417416,20.70512830033499],[-105.29742052436484,20.694293304968824],[-105.29521027574998,20.68922156500213],[-105.29369088440211,20.68756783541795],[-105.28467728118284,20.672651309409446],[-105.2810000251855,20.67196576551686],[-105.28121776490883,20.67305571832253],[-105.28053415908488,20.673252751524558],[-105.2788343714738,20.67236940897152],[-105.27774893082744,20.672259089924978],[-105.2755506128143,20.67240433461683],[-105.27435445031591,20.67371160191584],[-105.27420996260969,20.674326697156687],[-105.27436095009114,20.67562234572557],[-105.27535180262743,20.67566974421925],[-105.27598685026038,20.67556242223202],[-105.2783944196193,20.67587560032564],[-105.27871795291446,20.67684408960514],[-105.27908069819273,20.677882249531706],[-105.27934978264574,20.679180979581076],[-105.27895467191593,20.681256566466743],[-105.27893216085278,20.681334728611034],[-105.27683018618586,20.682516886698238],[-105.27578011511031,20.68314626879203],[-105.27537435107575,20.68303250563457],[-105.27488920048177,20.68278598547562],[-105.27402993187508,20.682736403159936],[-105.27207969142347,20.683618184456463],[-105.270289480943,20.68247140856994],[-105.26686248034088,20.680097898807333],[-105.26620848609747,20.67925065309089],[-105.26498708170942,20.67869561679362],[-105.26435125940912,20.678914561365275],[-105.26384383332095,20.67906098181419],[-105.2629470632694,20.679393830386857],[-105.2603436596441,20.680783616360486],[-105.26027849395285,20.684556131906106],[-105.26026542013784,20.685628421943875],[-105.26054538433738,20.686470477861974],[-105.2610292618212,20.686963801433137],[-105.26156674009576,20.6872419653929],[-105.26268388423767,20.689191763232373],[-105.26129107677446,20.69172862476728],[-105.26060720815673,20.692415749249903],[-105.25940299662079,20.69315603340334],[-105.25794955368491,20.69356387094666],[-105.25654667315831,20.69456349660993],[-105.25635437166227,20.696046916985495],[-105.25692921209532,20.69948665469491],[-105.25594700925404,20.702766195047957],[-105.25287657930562,20.704908099562886],[-105.25044164536376,20.705013277058754],[-105.2486554073933,20.70475676385888],[-105.24642588687294,20.704132164464454],[-105.24333048749293,20.703524906507994],[-105.24201279347528,20.705658488822394],[-105.24204354268034,20.707120290148794],[-105.24337233869346,20.709817987343854],[-105.24518569047757,20.710935822601243],[-105.24602748677239,20.714322491668554],[-105.24412942810045,20.717429519482607],[-105.24391061818034,20.71848747142235],[-105.24369651015775,20.719741127495013],[-105.24398596717367,20.720420049863264],[-105.24520551926128,20.722254446816407],[-105.24546275784309,20.723093754837862],[-105.24564545782607,20.724115985631556],[-105.24555203137493,20.72474923784614],[-105.24515877237036,20.725521622549365],[-105.24499807371296,20.726055104973454],[-105.24394034127869,20.72682146872529],[-105.24107045416775,20.72612660601129],[-105.24070502939435,20.72607252816897],[-105.23913979493454,20.725938350200693],[-105.23691630066492,20.72823493012106],[-105.23845140318838,20.732264016970646],[-105.23850875743824,20.735225725336477],[-105.23771906040895,20.73872749420832],[-105.23920583091763,20.742773858795374],[-105.23967969751737,20.745288707243787],[-105.2399157838957,20.747351281853355],[-105.2387478753057,20.748141370281132],[-105.23516616725323,20.747417565778903],[-105.23415859524323,20.74755142301393],[-105.23380627023948,20.747833849424183],[-105.23339143911306,20.748284276424215],[-105.23255709060135,20.74898514094906],[-105.23202785449894,20.749813610223896],[-105.23139063782878,20.750565980859562],[-105.23068793346374,20.751319736954088],[-105.23006123504524,20.751599826135248],[-105.228717572574,20.752038763283963],[-105.2276454462845,20.752276804123596],[-105.22586566659118,20.753425337025476],[-105.225186448221,20.754001518949337],[-105.22285422021963,20.756164873041826],[-105.22137677315317,20.759459614525895],[-105.21970933227357,20.761650789503335],[-105.21899769530103,20.7620304522556],[-105.21515760471397,20.76318237582211],[-105.21214133416902,20.765487683205833],[-105.21047880131096,20.766343345343273],[-105.20914837487857,20.76630652083128],[-105.20889324453913,20.766105189764062],[-105.20841223169055,20.765328251723417],[-105.2072307673497,20.76412992711431],[-105.20582549464484,20.76414484394843],[-105.20508051192303,20.764866370070877],[-105.20455699375447,20.765286573656056],[-105.20312820154936,20.766076024512188],[-105.20221456357706,20.766785425003945],[-105.2010037970295,20.768904488586315],[-105.20101638592746,20.772624546085353],[-105.20060100194831,20.773212842391786],[-105.20000010998672,20.773593663756287],[-105.19736562129594,20.77651665157697],[-105.19618928419243,20.776800342690763],[-105.1928992239296,20.775473510954157],[-105.1852557400818,20.772420716214697],[-105.18219521691526,20.771199515798173],[-105.18059296338663,20.770589718811948],[-105.17826953263068,20.769669801640703],[-105.17817693169644,20.769632635347705],[-105.17595318438111,20.768602272868975],[-105.17347896418289,20.76771731139121],[-105.17337191186306,20.767773591014304],[-105.17261901062881,20.76946216815395],[-105.17194653263766,20.77091597567437],[-105.17131537597953,20.772402785954398],[-105.17067168638499,20.77391908393082],[-105.16988557910219,20.775590532863475],[-105.16781597041705,20.780210210206008],[-105.16745924210232,20.780837679677973],[-105.16636779982605,20.78334040838081],[-105.16565251108989,20.784944933678503],[-105.16491199233354,20.78660599724151],[-105.16357543179333,20.789603960217676],[-105.16355249583779,20.789655405919575],[-105.16227567666846,20.79251927334917],[-105.16701797584557,20.79447617450637],[-105.17097434896107,20.79610861050628],[-105.1684392563148,20.801764274232596],[-105.16755650607877,20.803743702113593],[-105.16925304944783,20.804488244851996],[-105.17085278549769,20.805218812713292],[-105.17276149649871,20.80603830111363],[-105.17210762698113,20.807777628438828],[-105.17105453441002,20.81121233137759],[-105.17120376235363,20.81121003145114],[-105.17394295248863,20.81394344510676],[-105.17267904686872,20.815344950564736],[-105.17207699991508,20.816033083992863],[-105.17118633223771,20.816802141493213],[-105.17140046706498,20.818445914199913],[-105.17183228889911,20.820161236109186],[-105.16967752358767,20.8215246167735],[-105.16708509475154,20.820348638782434],[-105.16542733961012,20.821177354496115],[-105.16594029843907,20.824748464661923],[-105.16493969448283,20.829392600852543],[-105.16398478259413,20.829832100422266],[-105.16262777639224,20.830120232631714],[-105.16163457247961,20.831594415292102],[-105.16215431412456,20.83261705395722],[-105.16300035602518,20.833174251795526],[-105.16379399903525,20.835044390859537],[-105.163027832186,20.83665922758115],[-105.16178981076354,20.83798845338788],[-105.16140866604741,20.838721097428788],[-105.16109747975929,20.843623730978436],[-105.16123437047156,20.844395138231505],[-105.16227905660719,20.84650857015879],[-105.1628295003216,20.847896113673187],[-105.16223568058433,20.849324532898038],[-105.15779033026502,20.850107675822585],[-105.15635212062847,20.851597046669667],[-105.15540536227445,20.853064704526957],[-105.15556941628171,20.853888318327222],[-105.1570916257665,20.855481902616646],[-105.1601128471284,20.856212369765842],[-105.16056331474005,20.85741523022773],[-105.15819928123926,20.859521715175276],[-105.15597551871423,20.86090454816275],[-105.15274985356757,20.86189277438342],[-105.15261305881472,20.862235538267726],[-105.15262214154865,20.86262385176002],[-105.1538738394434,20.866176410525384],[-105.15350116006238,20.86839466158449],[-105.15128559017518,20.869198021649368],[-105.14819063737156,20.86866944690894],[-105.14526759559152,20.872280740601298],[-105.1441833881691,20.87280813865135],[-105.14311225557236,20.8735331369831],[-105.14119404569192,20.87560581607545],[-105.13914629596877,20.88193949047252],[-105.1400623548306,20.882546507454435],[-105.14254832164784,20.88377161198588],[-105.14304041807071,20.885240714790598],[-105.14254611272332,20.886465823492927],[-105.13862407929531,20.887565125801643],[-105.13317343991929,20.888818458472542],[-105.13122461455947,20.888889664945964],[-105.12591795513191,20.890569410815317],[-105.12017732016142,20.895385583172924],[-105.11712664978182,20.896972396403612],[-105.11672882624879,20.897902547221292],[-105.11700883087946,20.898313979188742],[-105.11767149061808,20.900311913172686],[-105.11548397510336,20.900884330368456],[-105.11308431278673,20.899881343535128],[-105.11144981532965,20.901891639758844],[-105.11223296852978,20.903953545534932],[-105.11131700414364,20.905555923098518],[-105.1056820994807,20.907916980856385],[-105.10489267280803,20.907777161754495],[-105.10415017143691,20.90908148810348],[-105.10451476856815,20.909537392113123],[-105.10449268622364,20.912321944740142],[-105.10077735572776,20.913606134630413],[-105.09875562075678,20.91459865285998],[-105.09815515485968,20.91508423179721],[-105.09738897032884,20.91585930527674],[-105.09751459483272,20.91618913248618],[-105.09862741942243,20.91695664299573],[-105.09935075394236,20.918080105870104],[-105.098641480433,20.91943410701225],[-105.0960346268775,20.919466864322374],[-105.09230304585628,20.92075023803386],[-105.09028269927529,20.92171848596348],[-105.08933418904883,20.92198775057591],[-105.0884833964522,20.922161259927123],[-105.08826375586784,20.922749189818546],[-105.08823763649269,20.923062292515738],[-105.08789262508668,20.923197692713643],[-105.08760482766985,20.92321942970665],[-105.08615605427997,20.923472462330153],[-105.08396548149796,20.92635636011704],[-105.08195875003872,20.928826671538218],[-105.08070121656363,20.93138018786442],[-105.07705073965235,20.93049524253746],[-105.07504913030664,20.929658524121123],[-105.07427270447533,20.928715583916983],[-105.07280198456141,20.927995005232447],[-105.07076811389015,20.930049291683986],[-105.06935593711108,20.931411372217326],[-105.06696205359657,20.93182821116841],[-105.06408449789171,20.932219421896036],[-105.06337790056318,20.932879604358504],[-105.0605383275938,20.933478379203507],[-105.0596202933711,20.932902177639164],[-105.05872872318685,20.931284207740305],[-105.05745779483834,20.93104919194201],[-105.05631321022821,20.931978594349857],[-105.0544397454322,20.93284881748167],[-105.05226005750256,20.932194328057562],[-105.04947857762659,20.93192692618095],[-105.04868876561034,20.933152216002156],[-105.04743996906552,20.93438579677428],[-105.04591951813597,20.93342630666399],[-105.04463124856005,20.931441072671873],[-105.04038136331405,20.930772249541292],[-105.03916324805408,20.929431580259006],[-105.03856410602708,20.92751157002664],[-105.03797458855871,20.92670435991738],[-105.0363430544574,20.924887263394737],[-105.03631884886147,20.92381320557388],[-105.03732764587085,20.92117850633292],[-105.03893165969527,20.91854344786958],[-105.03914356645419,20.916746023918904],[-105.03902908204043,20.91410757212907],[-105.0390727351263,20.913114822016553],[-105.03573151427497,20.911512278378837],[-105.03017958196654,20.909044723116665],[-105.02884164464052,20.909753200713624],[-105.02856482785421,20.910888415894306],[-105.0275972311307,20.91142421668917],[-105.02387349339637,20.91078513496757],[-105.02063146105331,20.912287743063473],[-105.02027404312287,20.914673757588446],[-105.02070846083683,20.9172709224041],[-105.02049597603002,20.91763169481783],[-105.02018213976106,20.918097155162968],[-105.01926666870884,20.91834662574189],[-105.01805776014652,20.91845993649804],[-105.01587457352127,20.917711619810518],[-105.00996501861158,20.919911467287136],[-105.00773106926312,20.92167507508293],[-105.00592349306777,20.922451477064726],[-105.0048254631447,20.92128751821241],[-105.00264391427208,20.91677421384145],[-105.00215786378743,20.915919249523483],[-105.00227596077173,20.913075629791763],[-105.00351015447683,20.91257647014163],[-105.00407518940125,20.9116775579555],[-105.00092026398232,20.911018227054342],[-105.0000330092783,20.913127572935423],[-104.99935692428028,20.914303244110272],[-104.99775952594479,20.919135114979554],[-104.99687814536071,20.919949118043974],[-104.99334077324033,20.920541545058086],[-104.99124666489058,20.921510075207493],[-104.98878145285687,20.9214287737459],[-104.98790378263328,20.920696863576836],[-104.9833980546502,20.916450292713705],[-104.98078440967703,20.914280816336316],[-104.97939024954269,20.91367782187092],[-104.97394503683466,20.911661489718995],[-104.96923347352475,20.909017943154595],[-104.96830733925094,20.909222117346644],[-104.96724405359225,20.909508090171073],[-104.96644856537944,20.913233961081175],[-104.9642401898401,20.917269574469913],[-104.96389433684055,20.91912619532252],[-104.96054966268787,20.91987695863554],[-104.95972182303859,20.921984267047776],[-104.95847779826147,20.924725883583676],[-104.95550584936586,20.927547637908617],[-104.95339202166906,20.929259595718975],[-104.95238733895872,20.930242198553458],[-104.9515955682042,20.930222699708793],[-104.9476633610376,20.931022266798834],[-104.94594330739415,20.932309316285057],[-104.94500434278967,20.932686616889157],[-104.94390256078617,20.93262664285737],[-104.94170066548321,20.934576317683366],[-104.94124237069673,20.935107333788437],[-104.93979254271835,20.934961202567706],[-104.93493622082644,20.934778909357135],[-104.9346345361102,20.934552628140068],[-104.93377102277532,20.934851713797798],[-104.93248715321994,20.937220492958545],[-104.92771454991237,20.939718749865847],[-104.9231043963839,20.940110515509275],[-104.91680500396734,20.94237027057892],[-104.91423044482895,20.943394245575405],[-104.91276599814216,20.94429253260563],[-104.90926726683813,20.942791489614365],[-104.9069987399015,20.942118224109663],[-104.90426906699025,20.945571948674683],[-104.9028493879402,20.945362165260917],[-104.90216543754093,20.94539425402013],[-104.90052602077611,20.946340653851564],[-104.89878098434343,20.950327289822724],[-104.89875618727325,20.95362177373721],[-104.90226096816309,20.956068181164994],[-104.90143786386977,20.961054219533082],[-104.90062747731952,20.96274720121096],[-104.898845995452,20.964165682993496],[-104.89373291124707,20.966862092104975],[-104.891958421641,20.968759523402525],[-104.89091257864294,20.971049971344428],[-104.89042798862954,20.972879150676363],[-104.88839290513397,20.973704777126784],[-104.88629796112895,20.97322176976536],[-104.88482013865575,20.973211029856657],[-104.88420103163924,20.97320295809294],[-104.8825337061183,20.974376806623354],[-104.88115036426001,20.97557236737987],[-104.88123975429903,20.976742330990476],[-104.88171569914067,20.977325196076436],[-104.88215150129594,20.97844030747808],[-104.88142757520603,20.980174080415566],[-104.8764002716498,20.981682099019224],[-104.87426633056884,20.981807144420486],[-104.87350480204123,20.98235833047886],[-104.86900743239198,20.99070655831946],[-104.86866483353725,20.99164286430988],[-104.86818008453764,20.993155402054526],[-104.86686894726574,20.99520136676614],[-104.8633522283273,20.995948833671946],[-104.86065455696883,20.994495785723984],[-104.85980267982222,20.993870253901207],[-104.85882430739167,20.993973297373827],[-104.85660050792791,20.995192515542897],[-104.85507643341839,20.996483536181415],[-104.85119005176836,21.000663817433235],[-104.85193942324656,21.0020610854682],[-104.85359349952597,21.003993045661446],[-104.85365599502313,21.00495768993062],[-104.85197665369702,21.0054732054208],[-104.85034332547536,21.005116379510298],[-104.8478205081741,21.005565368993928],[-104.84470040158243,21.006289239033947],[-104.84366266695059,21.005838914989738],[-104.84211895920407,21.00606129919197],[-104.8417106383053,21.006302252484886],[-104.8410611230097,21.007318949947603],[-104.83957653615863,21.01300179332128],[-104.83737458191536,21.015658698694324],[-104.83802307177211,21.017038589204788],[-104.83834995898735,21.01783729854418],[-104.83845434923848,21.019118377768564],[-104.83607908792902,21.01970207562306],[-104.83495078960084,21.01880822910465],[-104.83379464652677,21.01679162937495],[-104.83323343887577,21.015264853341876],[-104.83186369622115,21.013946746066324],[-104.83073624710613,21.014330742497748],[-104.83030106750908,21.015113478897888],[-104.82906669665545,21.017438446463927],[-104.82816384105581,21.01807249089245],[-104.82709876986974,21.017741186767864],[-104.82524320894322,21.016637757426906],[-104.82266611603472,21.01521691576977],[-104.8198156879252,21.014664404532994],[-104.81718675445353,21.01454212729152],[-104.81457337238396,21.01512980759628],[-104.81241431123436,21.012952686470953],[-104.81091859515442,21.012041015734724],[-104.80941170674538,21.012070962534438],[-104.80759320091522,21.013531231714126],[-104.80382584817534,21.01529835491425],[-104.80331533141305,21.016203499481378],[-104.80265849363303,21.016591490563314],[-104.79956561864304,21.015728823559186],[-104.79544859326415,21.014129371155946],[-104.79387836358416,21.014922542178113],[-104.79212550337252,21.01498592011535],[-104.79106685986994,21.01485521658452],[-104.79018830260304,21.015021324455574],[-104.78822071990322,21.016267944530682],[-104.78458623059026,21.019879201651065],[-104.78351670425315,21.020875015248123],[-104.7835441433295,21.022266285171384],[-104.782462152969,21.023359060092275],[-104.78063126586966,21.021937001709546],[-104.779390744914,21.02118191574266],[-104.77883148445085,21.020205381449955],[-104.77844881931622,21.01941075522967],[-104.77799397988531,21.01795928497347],[-104.77693358071645,21.017546867361773],[-104.77507917586513,21.017531240644075],[-104.77416257371226,21.015371097753416],[-104.77373286450927,21.011952792695524],[-104.77290393448448,21.009627496129212],[-104.77171235110728,21.008601075392562],[-104.7702475174878,21.00898664754436],[-104.76819261081738,21.01000294015887],[-104.76692975187427,21.010624139418894],[-104.76257521586223,21.008892309980467],[-104.76028824901596,21.011913068041565],[-104.75877581228212,21.012126561725097],[-104.7553503530462,21.012374566807352],[-104.75249911455228,21.01227971697267],[-104.75141234377031,21.011820605828063],[-104.7505271163003,21.00940106712352],[-104.74990203562561,21.00904010204613],[-104.74724216849916,21.008595972379794],[-104.74535181954809,21.008711098643516],[-104.74484224792178,21.00709396172897],[-104.74287308618045,21.006308817189563],[-104.74139451527566,21.006033461923153],[-104.73703357406083,21.007027489481345],[-104.73419049741943,21.007976649739305],[-104.73296538807978,21.00936971375546],[-104.73250317006318,21.009926983426055],[-104.73202255540889,21.01092552607463],[-104.73083197937638,21.01248673213786],[-104.72998914969179,21.012288248017],[-104.72847336864714,21.011404863243342],[-104.72822791403968,21.00745946133094],[-104.72612913091513,21.006692465037077],[-104.72576066926007,21.003745186019785],[-104.72701305441365,21.00292193969875],[-104.7257004511639,21.001227722786723],[-104.7255060449159,20.997965935888203],[-104.72709766856656,20.996302335068094],[-104.72798151795774,20.995049999840717],[-104.72670519498723,20.993854656606572],[-104.72616957527094,20.991449667815516],[-104.72734116834005,20.98865661332792],[-104.7284646087279,20.985743451606083],[-104.72968608879637,20.98423598768636],[-104.72742590339254,20.982536170451283],[-104.72320903858702,20.98280273914679],[-104.71781007378797,20.981811310544117],[-104.71443813407518,20.979331262970902],[-104.71417481496621,20.977769752337792],[-104.71451016313995,20.97715471577868],[-104.71615773371735,20.974928427014106],[-104.7134315429629,20.973339522605556],[-104.70889034316338,20.974416515882183],[-104.70746498179784,20.973135434678397],[-104.70701677846677,20.9715989759938],[-104.70793024556309,20.97090845262221],[-104.70829800958359,20.969596782961844],[-104.7057109793547,20.96685159302018],[-104.70272740397274,20.967205530648187],[-104.69847941601938,20.96535293827037],[-104.69765132203514,20.965367572578145],[-104.69261969742837,20.961673600082065],[-104.6880492823849,20.96198534815551],[-104.68412280142434,20.961910971177645],[-104.68105792728807,20.960666696905093],[-104.67894701983079,20.957218855998406],[-104.6786667947394,20.954697518123794],[-104.67892046415011,20.953570272503555],[-104.68020669697455,20.952266930961116],[-104.68125160165425,20.952179179097413],[-104.68173490766134,20.95168398990961],[-104.68265836120565,20.949159308215485],[-104.68184072979,20.945875918016668],[-104.68099996268847,20.94384061560862],[-104.67568018504056,20.94279728346953],[-104.6724941312014,20.942949197875578],[-104.66914052694017,20.941308258591903],[-104.66716527213077,20.94143888668532],[-104.66191519034368,20.943874314485583],[-104.66141622427256,20.94343640902025],[-104.66221376129022,20.939385759703327],[-104.6600963197335,20.936019415138958],[-104.65952573627396,20.935217568169662],[-104.65895419503761,20.934017778403813],[-104.65471998702077,20.932019020989515],[-104.65286367409942,20.932168595777284],[-104.65076386557672,20.932970079346887],[-104.64701522645976,20.935410613304214],[-104.64576204814801,20.935269657346396],[-104.64120012509727,20.93398343420273],[-104.63679416529271,20.933397514794137],[-104.63457660191426,20.931852158562492],[-104.63216374322468,20.926687423204896],[-104.6294218949538,20.924335467305696],[-104.62853272880199,20.923865690413322],[-104.62654773402454,20.924412307119326],[-104.62494274539074,20.9249580006026],[-104.62314672116457,20.926169471599053],[-104.61903941407672,20.923793895557367],[-104.61776373953728,20.923616762655058],[-104.61696418959104,20.923141977887155],[-104.611838093139,20.92321169093384],[-104.61020171832291,20.92588404016692],[-104.60713814670038,20.926232364734005],[-104.60098528586241,20.931437712407444],[-104.5993095417171,20.931433955668183],[-104.59718401443712,20.93134449287612],[-104.59568276963381,20.932020029232604],[-104.59499191251166,20.93210889543286],[-104.59311988272498,20.93164412730914],[-104.59150964774773,20.931531376089595],[-104.59115132414848,20.932850263159025],[-104.59129947494404,20.93383927642674],[-104.59121534367631,20.934347487736716],[-104.58600842232221,20.93377465088679],[-104.58437673998532,20.934277432788235],[-104.5828810843164,20.934345191726095],[-104.58001681548336,20.933914016075846],[-104.57885383577582,20.93368616119443],[-104.57862377892337,20.933932420672818],[-104.57771841123343,20.933462505187265],[-104.57741679637002,20.933046107656935],[-104.57712420551997,20.932478163242422],[-104.57629212624357,20.930707463169654],[-104.57297574535795,20.92985551076714],[-104.56931104955413,20.930893446310506],[-104.566861524449,20.928900688483168],[-104.56634095695125,20.92835959038348],[-104.56534449330792,20.926933370983477],[-104.561636552104,20.92615495265403],[-104.56064340311895,20.926178659433162],[-104.55944074299032,20.925542556967002],[-104.55782294953929,20.924450267542056],[-104.55692169875454,20.924152381841054],[-104.5569096800279,20.923016883670698],[-104.5569704497687,20.920200402117302],[-104.55594291651067,20.92003447284077],[-104.5558112809324,20.918880593477354],[-104.55503156475498,20.917634551136587],[-104.55268845102023,20.917039643534963],[-104.55035518981128,20.916375983128887],[-104.54973532365057,20.915195922731414],[-104.5474601403617,20.914180854289498],[-104.54601784533793,20.91335789374284],[-104.54407823801785,20.91228542760757],[-104.54274145275855,20.90939449954334],[-104.5427365948396,20.908689863438838],[-104.54398001809017,20.905970653899374],[-104.54448246569956,20.904329914233074],[-104.54476652484465,20.902675583925884],[-104.54486617820754,20.90216052461335],[-104.54484465977004,20.90172447193669],[-104.5445718886786,20.900644235610855],[-104.54379002707213,20.899292021680196],[-104.54367984848483,20.898200687886344],[-104.54373266251889,20.898005737824235],[-104.5426468634974,20.897208524824634],[-104.54139504591723,20.897385738308117],[-104.53890385407277,20.89745777173397],[-104.53806595567511,20.897137036078504],[-104.53617868826893,20.8961643909077],[-104.5360255234196,20.893891950309694],[-104.53506575129393,20.892234785229675],[-104.5340692618006,20.890292503465787],[-104.53381461093005,20.8900169652602],[-104.53360277836515,20.88925869291984],[-104.53371385055402,20.888940950914844],[-104.53372752553935,20.888635998204677],[-104.53459412498813,20.888294531307395],[-104.53501699225575,20.887215876191078],[-104.53468561855055,20.885957534946897],[-104.53354954299124,20.88341052556467],[-104.53249325153081,20.88317335085901],[-104.53229800586433,20.882834502671983],[-104.53063202501,20.882998208238575],[-104.52902837550391,20.885634393542603],[-104.5240446216473,20.88522303547711],[-104.52345870493173,20.88409642329276],[-104.52476302088775,20.880499287682426],[-104.52319613230992,20.879833746972395],[-104.52238837705772,20.879307907492716],[-104.52222647634693,20.87889528845585],[-104.52215654214035,20.877744995213277],[-104.52189557339034,20.876734217785668],[-104.52034579771038,20.87169950212069],[-104.51956008780081,20.870337943777997],[-104.51656693967794,20.867553995779303],[-104.51453801048217,20.86679013614844],[-104.51399982863006,20.866501965112775],[-104.51356476703722,20.86549295234647],[-104.51346115464764,20.864549988019746],[-104.5132886196456,20.863333413422083],[-104.51258817535921,20.86148456305733],[-104.51123042442867,20.86009989687085],[-104.50835301330619,20.860256668991838],[-104.50725106766237,20.86125296996812],[-104.50639436149493,20.860844945807685],[-104.5045558209124,20.853959943779103],[-104.50422195208034,20.851496551203525],[-104.50427840424402,20.847264151262777],[-104.50396650082268,20.846526115553957],[-104.50307285372514,20.845959181638307],[-104.50184024237728,20.845667061781114],[-104.50162127153362,20.844992123162683],[-104.50283749522447,20.84306740162998],[-104.50308763628101,20.84216405182434],[-104.50288550824536,20.841553087616035],[-104.49980644592603,20.838817002785504],[-104.49953970833428,20.83817803913803],[-104.49917534018726,20.838288738412302],[-104.49818085940058,20.83878379012657],[-104.49646980907823,20.838437769220093],[-104.49389888197078,20.83897354734046],[-104.49098950704632,20.836261982260226],[-104.48917928342769,20.834855246914458],[-104.4848397213189,20.83290847018884],[-104.48479003996471,20.83249455462868],[-104.484226374005,20.831575536685364],[-104.48417451330891,20.831043163647962],[-104.48427177155492,20.830276786199533],[-104.48450393064115,20.82997837446578],[-104.48408843183603,20.829203499221308],[-104.48243434224895,20.8261055934492],[-104.48141845638952,20.825830908090836],[-104.480460028648,20.823855533342964],[-104.48031948877997,20.823255888589927],[-104.47860211287531,20.822601344618533],[-104.47697601213537,20.822878458816774],[-104.47582701973255,20.81953319004191],[-104.47424721359783,20.819907017383287],[-104.46842595258676,20.81634837886162],[-104.46681648695005,20.815275798810717],[-104.465947677916,20.814837172113243],[-104.46430630459531,20.813990650704568],[-104.4633285999401,20.813773598034516],[-104.46127455220164,20.813347147485842],[-104.46002454510682,20.813102688480797],[-104.46078630849297,20.811781200605253],[-104.46205603220449,20.81148215472973],[-104.46296338999531,20.810826831858208],[-104.46252144171586,20.810043850740215],[-104.45840376753245,20.808985422821024],[-104.4584088665261,20.80651558321017],[-104.45712451885947,20.80673892540949],[-104.4554787059306,20.806778539700872],[-104.45194433212134,20.804304320029416],[-104.45148345431397,20.80401127577602],[-104.44986637117466,20.803563817912902],[-104.44730618587465,20.80387532564771],[-104.44590701805151,20.80475360720169],[-104.44532418785951,20.805218182632416],[-104.4434915209435,20.806444588031013],[-104.4416772763484,20.80742052567831],[-104.44058346685381,20.807501765035965],[-104.4395958419617,20.80665084315723],[-104.43709884930871,20.805259734158028],[-104.43624222685753,20.805870471376863],[-104.43573585589775,20.805764837626384],[-104.43541354851789,20.804984483520798],[-104.43517753973094,20.80443025986648],[-104.43496068422468,20.803470079139174],[-104.43450616542901,20.80098298833849],[-104.43371967413702,20.79985974823137],[-104.43304981155285,20.79952547234666],[-104.43156123455361,20.798434722996262],[-104.43071098800948,20.797718355297604],[-104.42931482530582,20.79678781497688],[-104.42909875945634,20.796054437837427],[-104.42930459536882,20.793967741481822],[-104.42913778336515,20.793151364652203],[-104.42884521049638,20.79192376161791],[-104.42820203421331,20.791502076001848],[-104.42620548122875,20.790826920741438],[-104.42494581188288,20.79070996591679],[-104.42446677865848,20.790812012693834],[-104.42393348793473,20.791011019868506],[-104.42271649717037,20.791767174761503],[-104.41986014910191,20.795118524449776],[-104.41914969695955,20.79622231850732],[-104.41412460801371,20.793770243175572],[-104.41331934488369,20.792601537797793],[-104.4126877009599,20.792226180175305],[-104.41254307346622,20.790945392405547],[-104.41093739078349,20.789288019402136],[-104.40948775149104,20.78896699664989],[-104.40844965841575,20.78838631916551],[-104.40571894994423,20.78691768420623],[-104.40296539884275,20.78522759382912],[-104.40284763679591,20.78402430236372],[-104.4023035587872,20.783751699520792],[-104.40091243357983,20.782560506577397],[-104.39897301021568,20.78223532972379],[-104.39662237822176,20.78083678602303],[-104.39526775662483,20.775422836019175],[-104.39501314505344,20.774425286199005],[-104.39453874497957,20.774097529786445],[-104.39344056099571,20.773689548078437],[-104.39200580845608,20.77293308347282],[-104.38867738753748,20.768003717593103],[-104.38554785891102,20.767403566025166],[-104.38422760055823,20.765595149982857],[-104.38518112801478,20.764819806770106],[-104.38578336813418,20.76427252222726],[-104.38548052753248,20.762774952594498],[-104.3840630473972,20.761869778151038],[-104.38314351826114,20.76121645908603],[-104.3824863667403,20.760031452071587],[-104.38162112363966,20.758108693370843],[-104.37894311365721,20.755192369924828],[-104.37782068299839,20.751982728046187],[-104.37715222013588,20.74992956909648],[-104.37691286618792,20.749233378659767],[-104.37659698512147,20.74791076519017],[-104.37662044495573,20.746909802132848],[-104.37777296450031,20.744933991021696],[-104.37819748963625,20.743594833378438],[-104.37810741762439,20.742933101055428],[-104.37721233613729,20.742120150171218],[-104.37229889532699,20.741314409487472],[-104.37077954824923,20.74184101283879],[-104.3671416871585,20.744736741626014],[-104.36558938708032,20.7450029339289],[-104.36264951742805,20.743770347110853],[-104.36154469781201,20.742830211255296],[-104.36104777506648,20.740421148075086],[-104.36087218740357,20.739348120007946],[-104.35899583061308,20.737144724489326],[-104.35674250301224,20.73651644919528],[-104.35618199049316,20.73584724166733],[-104.35486027469705,20.735587679459854],[-104.35336125722193,20.73594976154402],[-104.35324904978359,20.732625069917106],[-104.3520268143169,20.729871801310594],[-104.35178921612714,20.729072706589363],[-104.35004178764382,20.72602921134842],[-104.3507980695498,20.725339688860117],[-104.3461320730525,20.723908491506904],[-104.34526104781025,20.723612800387002],[-104.34063476701493,20.722412005095862],[-104.34002052842044,20.72243659637138],[-104.33973667414205,20.722259525724894],[-104.33928982109745,20.721819440536137],[-104.33837175285703,20.721519340721272],[-104.337758110616,20.721722101100966],[-104.33715999296976,20.721763130869192],[-104.33707749323071,20.72176879035004],[-104.33589352903476,20.72145511884031],[-104.33293419182053,20.718497699715783],[-104.33283414556047,20.717760124897325],[-104.33193969107788,20.716748653577838],[-104.33130675172924,20.71662490994754],[-104.32756057816863,20.7162959801056],[-104.32658548072646,20.717650854003466],[-104.32360176267491,20.716850488807324],[-104.32311542990448,20.716404741968404],[-104.323283557801,20.714495661466742],[-104.32081931662816,20.71333623667425],[-104.31956711706965,20.713662339943653],[-104.31880198256306,20.713567586969305],[-104.31801892056319,20.712598341974626],[-104.31786259048408,20.711730674782814],[-104.3175427097841,20.711070921967234],[-104.3169774786711,20.710516573509267],[-104.3163331714515,20.709680492324537],[-104.31592996636078,20.708659487798457],[-104.31618411516297,20.70773725001311],[-104.31653485933026,20.707200228308864],[-104.31492726003302,20.706415033439043],[-104.3144730716549,20.706168170359376],[-104.3127410351799,20.705285143709148],[-104.31203415544263,20.705147279439643],[-104.31082771907626,20.70451305025921],[-104.30912839901401,20.70370065969564],[-104.3089628968853,20.703327967660925],[-104.30896798010411,20.702511152422176],[-104.30840701280238,20.701508090240793],[-104.3080395147619,20.701066552048474],[-104.3077114052308,20.70067275662268],[-104.30810221647863,20.697262082699467],[-104.30674150750423,20.696115328384508],[-104.30588631198094,20.695435357326573],[-104.30458917286285,20.693417545278976],[-104.30384799076762,20.69292123087729],[-104.3028963909174,20.692899362262096],[-104.30186789653737,20.69299797539594],[-104.29887345254406,20.692174658863678],[-104.29791769923554,20.69158153292085],[-104.29697226900544,20.691922050385017],[-104.29604030682628,20.692298604883547],[-104.29461671765847,20.69241193349808],[-104.29324361793942,20.691869450435888],[-104.28975846671045,20.69039478973889],[-104.28902146905887,20.68961983923407],[-104.2884866014536,20.68915661020378],[-104.28707318812786,20.68715104788828],[-104.28841257221035,20.68436345289348],[-104.28895399425187,20.683539621637067],[-104.28824005694861,20.680149324452202],[-104.28792080552381,20.679513687791598],[-104.28801704995374,20.679125566909477],[-104.28849899171621,20.678743735952935],[-104.28789810852618,20.676668256251617],[-104.28816970530278,20.67604438057498],[-104.28827752216864,20.674977358515832],[-104.28578391743179,20.672194015827586],[-104.28491757116115,20.67159399054725],[-104.28472919275771,20.671125559731877],[-104.28475078832508,20.66992742639411],[-104.28527697625077,20.669138063456955],[-104.28619039751533,20.668615406488243],[-104.28648244698269,20.668102069612985],[-104.28617295863762,20.667588313456292],[-104.28799023943634,20.66123650044983],[-104.28778653161146,20.659863497455206],[-104.28696342330494,20.658612898454294],[-104.28623965525225,20.65849180613236],[-104.28572014181191,20.65859385502523],[-104.2846559596369,20.658496711607313],[-104.2830881812115,20.655688869895073],[-104.28366824951718,20.65494020460443],[-104.28404323517861,20.654499449955324],[-104.284872562864,20.653751863423622],[-104.28488783475541,20.653401691648128],[-104.28476930966866,20.652887163206913],[-104.28382840857739,20.651636307389253],[-104.28351011411513,20.650673003501765],[-104.28119655968533,20.648877521348197],[-104.28095953478152,20.64784845343803],[-104.28126531407133,20.644823478935507],[-104.28201419644,20.64446375823462],[-104.28241325103886,20.64370067765708],[-104.28237773010352,20.64322362604554],[-104.28263873146074,20.64267562411851],[-104.28148529530847,20.641652883902054],[-104.28158216958684,20.640816806014243],[-104.282223188064,20.63976169063625],[-104.28247506028191,20.639197906596507],[-104.28279917447367,20.636227882339767],[-104.28089335206187,20.634187959280666],[-104.28118560149994,20.63314102843077],[-104.28167379583857,20.632291066278924],[-104.2814840354958,20.63153721822823],[-104.28133752777825,20.63125578430072],[-104.28175728479488,20.630276895772624],[-104.28104128996159,20.628383029310214],[-104.28010419418905,20.62817302780263],[-104.27991109592767,20.62678541096875],[-104.27980049218701,20.625259787528705],[-104.27939989040317,20.62453469427203],[-104.27832773065546,20.62347935815859],[-104.27723074755482,20.622871284130667],[-104.27678747889269,20.622869473784988],[-104.27576639269051,20.622712299649038],[-104.27499368638507,20.62216536301014],[-104.27549277455773,20.619999351679496],[-104.27529887764916,20.619619206879406],[-104.27510701918345,20.617957918003526],[-104.27509691761486,20.617358445249238],[-104.27474858555826,20.61689843529217],[-104.2741683832611,20.616369503803014],[-104.26937711521595,20.614971715239506],[-104.26642293824892,20.61366526011625],[-104.26564890087229,20.61237273194746],[-104.26432800997594,20.610594533259984],[-104.26103304343036,20.60760913810526],[-104.2604379692985,20.60716894299145],[-104.25987580713911,20.605716341416098],[-104.25951663784053,20.60507980558691],[-104.25685898485227,20.60345580442828],[-104.25650916303107,20.603544816701913],[-104.25363982596264,20.603418703169496],[-104.25302436300166,20.605136424325224],[-104.25263860086841,20.606230309685657],[-104.25290837116,20.60744206189247],[-104.25280148910821,20.60767668345909],[-104.25265666680588,20.607658415077083],[-104.25222551484694,20.60762905033232],[-104.25217182996715,20.608582952693666],[-104.25270088184647,20.609954615378285],[-104.25544114338345,20.61080431655239],[-104.25531395511774,20.612528395325853],[-104.25308042689107,20.612786047287102],[-104.25193022195572,20.614488271441644],[-104.25344417692207,20.618139691805936],[-104.25406368522539,20.617818361978323],[-104.25468781120838,20.618991082890147],[-104.25394076505512,20.625715021261215],[-104.25390775597606,20.62899647282643],[-104.25371714708899,20.62876814165611],[-104.25380072109874,20.629849305976165],[-104.2530077775163,20.63043307908424],[-104.25099309994584,20.629927104725994],[-104.24760008097093,20.629570623823213],[-104.247202888446,20.630775089134033],[-104.2469238154444,20.631492400476418],[-104.24717932400006,20.63236973885813],[-104.24885198770619,20.63345739448249],[-104.2496001130246,20.634519046331775],[-104.25049962608301,20.635181038970302],[-104.25287568235717,20.63579851953881],[-104.25459950633109,20.636885994610964],[-104.2558222761748,20.638090273661987],[-104.2585897293419,20.64009425377276],[-104.26024189807009,20.64132787632815],[-104.26016173938831,20.643447262539212],[-104.25976117655478,20.64387049428717],[-104.25853305486885,20.644598007887623],[-104.25793215492882,20.644855837404464],[-104.25712875835683,20.645913779747275],[-104.25676777378646,20.64928185647807],[-104.2564141926049,20.651306603728074],[-104.25530708361924,20.653282999616636],[-104.25142436704351,20.654805484608232],[-104.24956412607116,20.655512958049314],[-104.24701329861256,20.656726921831932],[-104.23799360431997,20.660710024903665],[-104.23706578072387,20.66160296162309],[-104.23666224486703,20.662261498004227],[-104.23638282799067,20.663721595130312],[-104.23862997643255,20.666129411575525],[-104.24090443998819,20.66710066394029],[-104.24343069505784,20.66802508615018],[-104.24677758148789,20.67076422467295],[-104.2472214728815,20.671711103611074],[-104.24578899902906,20.673813866662726],[-104.2522920263354,20.68065131064884],[-104.25315979349176,20.68229638758021],[-104.25238112870915,20.683594419765086],[-104.24789633441083,20.686463581377893],[-104.24799012020321,20.68968238765507],[-104.24668724061888,20.690146346734423],[-104.24449297822099,20.69220630201255],[-104.24329761620191,20.691745697408862],[-104.24476455371081,20.696480311644677],[-104.24721346407188,20.697519058645753],[-104.24814937853665,20.69962825866628],[-104.24755228717407,20.703919907756415],[-104.24527195752745,20.707625499947767],[-104.24250733236596,20.70838949436626],[-104.24142891872594,20.709984782305867],[-104.24200677813872,20.712283652999645],[-104.24181568810098,20.713433522997093],[-104.24418820749065,20.715903019656366],[-104.24602787749382,20.71740509749924],[-104.24684035588211,20.722188862987366],[-104.24678615710206,20.72426144339954],[-104.2470123484402,20.7252787147753],[-104.24763265473257,20.726336715533762],[-104.24888195807637,20.727352504703504],[-104.25248124024625,20.72969266654735],[-104.25418067925267,20.73040347321688],[-104.25986113831419,20.735331166042215],[-104.26282842066746,20.742309589502838],[-104.26331470054987,20.74345314568768],[-104.26371165095856,20.744532116529626],[-104.26371186316368,20.744532693091855],[-104.26554934510528,20.749711245098297],[-104.26569764414626,20.74992731917854],[-104.26813421921639,20.75574042550869],[-104.26877184782586,20.7572861203775],[-104.26956904568613,20.75921858186183],[-104.27052269263066,20.761548521153145],[-104.27071531591429,20.762015173016607],[-104.27105556491341,20.762839459677366],[-104.27170540145335,20.764479409615205],[-104.2717913733697,20.764698441272174],[-104.27188574098875,20.764878173465945],[-104.27447472256597,20.769986656454705],[-104.27511622623723,20.769860625635886],[-104.27519406052409,20.769844603696697],[-104.2800199851452,20.76892840489313],[-104.28002004521778,20.76892864894893],[-104.28146753598924,20.77580966613732],[-104.28281076115746,20.783238666708314],[-104.28316627326416,20.783273542493248],[-104.28346500107205,20.78302143194128],[-104.2837749869916,20.78275981665803],[-104.28450748928924,20.7821432874602],[-104.2851288743675,20.781929816602144],[-104.2873377206044,20.781470968180145],[-104.2899105342691,20.781340955331814],[-104.29218808286703,20.777135041926385],[-104.29228201096726,20.776418905288722],[-104.29019889972676,20.77301197159818],[-104.29019894881924,20.773010488429236],[-104.29187098157325,20.770793108471025],[-104.29481862773144,20.77128976146423],[-104.29761725527305,20.770795084440977],[-104.3044156698844,20.776314582317127],[-104.31058326484509,20.78186314512226],[-104.31522402666695,20.786390882819717],[-104.32832271044424,20.798098019982206],[-104.33564609704183,20.78993302349454],[-104.34213487449466,20.790532090932516],[-104.34428994190552,20.790574914423757],[-104.34539689589576,20.790984304805818],[-104.34582753550501,20.79316762254257],[-104.34687809035671,20.793106640117912],[-104.34832157822791,20.792617724482852],[-104.34916069106055,20.791883529542247],[-104.35023457752698,20.791777980938775],[-104.35108676265327,20.791573141185438],[-104.35119179138644,20.791233567914787],[-104.3516954407425,20.791180438921344],[-104.3521726306875,20.79132504521806],[-104.35332655992642,20.791383814953974],[-104.3540982634999,20.791211409998766],[-104.35803981878422,20.790575583123882],[-104.35834434667493,20.79033553091557],[-104.35863848925516,20.789777553795943],[-104.35918334929386,20.789137093806687],[-104.35939693935495,20.788824943150303],[-104.35894580925424,20.788704503388487],[-104.35892305918713,20.788506982331512],[-104.35921938459279,20.78834988815902],[-104.3610995180656,20.786080952362283],[-104.36143995770988,20.785413383609296],[-104.363897192146,20.784151060432805],[-104.36471533455813,20.784044293005536],[-104.36545148594729,20.78366316880488],[-104.3660630680169,20.78305543638959],[-104.36644917694503,20.783068134382802],[-104.36702482242458,20.78178741006758],[-104.36739856836522,20.781810458748225],[-104.3675984824352,20.781493263429184],[-104.36773009556634,20.781022260182453],[-104.36929158687872,20.77984860636866],[-104.37020213607423,20.77951238075491],[-104.37147773210575,20.778979405349446],[-104.3723898125437,20.778292126751467],[-104.37289437742146,20.777636225219283],[-104.37361001860842,20.776915162104842],[-104.37523125233122,20.775578937916976],[-104.37540870960055,20.777853223785087],[-104.37589215361959,20.784072969480974],[-104.3717827034248,20.788518257315502],[-104.36326513241869,20.797732625697222],[-104.35040233212965,20.811643967080443],[-104.3583779071821,20.813292061486777],[-104.36405938608698,20.813932991551724],[-104.36080041981944,20.81859522955824],[-104.35992036011271,20.819752562949645],[-104.35852477337403,20.81940842563847],[-104.35730282829849,20.819612763317195],[-104.35704854968895,20.821075142646123],[-104.3575436312288,20.822457352127174],[-104.35890932016196,20.824014269928966],[-104.35871263936122,20.82545879975845],[-104.35899543488938,20.828494911832024],[-104.35877478258931,20.829838291774593],[-104.35885380212778,20.831321024932322],[-104.35885120438292,20.83238603701227],[-104.3587310555435,20.834895998504464],[-104.35945724863706,20.835583379442028],[-104.36082617053779,20.837591623203025],[-104.36173887845007,20.838457021947306],[-104.36060582141482,20.840775159841257],[-104.35991096872988,20.840208692068074],[-104.35955162502785,20.840038344211393],[-104.3591206770185,20.840240827237665],[-104.35889068757047,20.841624382197153],[-104.35873658820219,20.841997088889855],[-104.35802950158109,20.84295559636837],[-104.35697124411439,20.843150052104704],[-104.35454952541335,20.84291916310667],[-104.35391405425605,20.84273000084852],[-104.35339356205782,20.842879750383588],[-104.35327997390215,20.84300743480611],[-104.35285687306964,20.843262831310597],[-104.35136961871734,20.84448160677158],[-104.35027814476177,20.845539505246336],[-104.3495528054782,20.84567352673696],[-104.34839807254616,20.845306734453686],[-104.34770617920339,20.844830780041093],[-104.34690662832071,20.845195747316325],[-104.34657349277995,20.84574125568247],[-104.34588051731396,20.846407432845467],[-104.342481833833,20.845313908429773],[-104.34245113022473,20.844723407806953],[-104.34243765748795,20.84424315279375],[-104.34173845496832,20.844321148622214],[-104.34138396423867,20.844527012363756],[-104.33822587561275,20.84585218514485],[-104.33712366581511,20.84562570112223],[-104.33635452577397,20.846140257493573],[-104.33597464551588,20.84628581875353],[-104.33472764760256,20.846664175147225],[-104.33323737955999,20.84554837367574],[-104.3332544788816,20.844470653807548],[-104.33266885932687,20.84398177916404],[-104.33219967827677,20.843361198481375],[-104.32872283520442,20.84222068273408],[-104.328111076153,20.84228445753854],[-104.3251239205693,20.841609266081832],[-104.32428255319735,20.841510400509208],[-104.32404823569846,20.84135455993038],[-104.32327761850314,20.841209829074614],[-104.3184173708533,20.838572642468307],[-104.31702751712561,20.83991333150402],[-104.31624699938095,20.840556971869717],[-104.31569692572032,20.840741268606337],[-104.31471867727458,20.84063821614717],[-104.3141463027294,20.840077294775426],[-104.31291433682162,20.84020819000449],[-104.31261418016777,20.840668127609263],[-104.31269483519168,20.84107549231885],[-104.31253114931553,20.841343376020575],[-104.31218004256931,20.841896446355918],[-104.31265081305764,20.842713754205022],[-104.31234305946873,20.84342984657053],[-104.31177738108715,20.843648820087367],[-104.30884568304577,20.845813374792954],[-104.30881540339624,20.84680731158113],[-104.30810529103746,20.846772653486937],[-104.30503717579916,20.846755071008374],[-104.30478230591456,20.847052923515832],[-104.30427532914598,20.84630272951307],[-104.30314698417146,20.845790093284336],[-104.30208892853545,20.84571932656206],[-104.30161630299756,20.84585003060789],[-104.30024129430649,20.846846640215176],[-104.29943169200146,20.84736573781845],[-104.29837823362163,20.847441563637176],[-104.29729172414591,20.846829943412445],[-104.29661503795103,20.845633982838535],[-104.29512911309808,20.846622062871745],[-104.29543110721022,20.847352967409734],[-104.29535701277774,20.84770620112897],[-104.29406215330857,20.84789978685103],[-104.29233924542825,20.848780872570615],[-104.29110647824683,20.848432008968757],[-104.2902088362435,20.849015218549653],[-104.29060813122805,20.85280396701927],[-104.29066465988228,20.85953868734009],[-104.29069297015951,20.86234063043952],[-104.28671870392986,20.86403392880038],[-104.27967286648686,20.8642494222633],[-104.27954767998898,20.865123387705182],[-104.28273754192014,20.87062674172796],[-104.28416947039273,20.87338102469522],[-104.28544391185113,20.874985471921093],[-104.28584457962529,20.877264792298888],[-104.2870389863968,20.87978163973031],[-104.2872611059579,20.880525751203777],[-104.28733026466551,20.881870344860772],[-104.28759088416376,20.88272103321043],[-104.28785336751156,20.882828243462143],[-104.28822497077829,20.884244881111613],[-104.29019134764343,20.887925654735284],[-104.28853697067649,20.887836516178822],[-104.2840381392187,20.88727841834441],[-104.27965136900104,20.887235773200302],[-104.27589373455697,20.88722998373339],[-104.27148561771043,20.887352371512634],[-104.26703562840157,20.88797037367533],[-104.25991660127227,20.893626998226125],[-104.2584469825211,20.894828807935085],[-104.25620777308848,20.896892592380482],[-104.2498854832586,20.904348269980062],[-104.2469737469309,20.91068571017422],[-104.24721577358258,20.9166869157321],[-104.24727940502095,20.919633705886383],[-104.24688957470482,20.920578530734474],[-104.24575880888312,20.921798473138608],[-104.23890167658249,20.924953012990898],[-104.23651957189298,20.926194051300342],[-104.23390554147971,20.92911366487914],[-104.23008543240007,20.931977337159083],[-104.22875340865426,20.93558175748717],[-104.22664899981083,20.936624094899457],[-104.22107199811518,20.94152565968494],[-104.21690272371637,20.94090954138227],[-104.21453525550413,20.939750845632943],[-104.21169748784098,20.938014488418673],[-104.20720072808922,20.935965656020016],[-104.20607153244555,20.938435833655944],[-104.20622505836059,20.939124740269847],[-104.20776139884623,20.94037456773077],[-104.20748634586835,20.941085170128133],[-104.20747815825962,20.94214863906751],[-104.20661969079299,20.94610932663568],[-104.20742607156359,20.951512417819572],[-104.20461641384048,20.951965460221174],[-104.20452618612683,20.954932239133313],[-104.20105926727092,20.957320159969527],[-104.20130635274808,20.95924217890962],[-104.21066929563023,20.96033836269885],[-104.21855890113221,20.960279651257792],[-104.22714245674376,20.964984306491885],[-104.22788663208678,20.967168822591475],[-104.2331294446443,20.968743373010568],[-104.2343096377258,20.974052258110817],[-104.23591939930873,20.975602944761363],[-104.23596436813972,20.980685198022627],[-104.23810050134807,20.984177066464156],[-104.23794308617857,20.9847504440105],[-104.23719759577483,20.98769082232286],[-104.23703876846753,20.989732571400964],[-104.23737454945052,20.99099898751001],[-104.23794868838019,20.99130821580826],[-104.23801609000236,20.993118777798372],[-104.23599260153071,20.993935964424452],[-104.23415928939039,20.996716211325065],[-104.23410867897667,20.99818815725945],[-104.23196330538525,20.998684270788203],[-104.22803936849618,20.996666176503993],[-104.22497548676301,20.996115030566898],[-104.22529032824457,20.997412453180004],[-104.22319570206429,21.00126366819302],[-104.22431667279733,21.00443257182178],[-104.22458948134545,21.00621289400374],[-104.2242724141517,21.007558306682427],[-104.22889446814918,21.013508364014058],[-104.22959318384136,21.016269645171917],[-104.23333718766219,21.017652756531902],[-104.23613121802998,21.020164477629862],[-104.23681111825374,21.02095211589932],[-104.23954608442745,21.021535413720585],[-104.24073011609437,21.021720395556997],[-104.24164079334088,21.02342290627712],[-104.24135486970704,21.025114848669887],[-104.24245436503412,21.027881681277904],[-104.23969668279278,21.027858625201418],[-104.2359549708479,21.031549369193783],[-104.2349411596631,21.03347245729657],[-104.23480299393447,21.03667758707951],[-104.2351638653609,21.037165023679904],[-104.23588683217139,21.038329523166283],[-104.23616440175249,21.039620317712718],[-104.23286087742008,21.041200331546804],[-104.23015321783004,21.042554986343134],[-104.22787594532366,21.0431138926196],[-104.22655008389057,21.04429616960914],[-104.226672051847,21.044749791753418],[-104.22729612025944,21.045345306143076],[-104.22719500139664,21.046375252988923],[-104.22661850278911,21.047423713117382],[-104.22533543569762,21.048061468270248],[-104.22514527205578,21.04847400777436],[-104.22487136732053,21.049675376506116],[-104.22516399352531,21.050526930507317],[-104.22575397846231,21.05076931013815],[-104.22744247904683,21.050889332029044],[-104.22753836947663,21.05078907576234],[-104.22847706375495,21.05035001060952],[-104.23161926753016,21.050554734697698],[-104.23839483352663,21.052273140266664],[-104.2379458215297,21.055208828944046],[-104.23906683867949,21.056954089615317],[-104.23479339339207,21.067681474492986],[-104.232812849158,21.067398895104816],[-104.229127603633,21.066152980824654],[-104.22181044728927,21.070024619317962],[-104.22225236294327,21.072197804419545],[-104.22245177843041,21.072473376295818],[-104.22189675256203,21.07393329351811],[-104.21985299029149,21.076647625538612],[-104.21871705754461,21.078595079338413],[-104.2198519627994,21.080118037812213],[-104.21809122875226,21.082167621683027],[-104.21671857481715,21.085791193848763],[-104.21829908560534,21.087845252657473],[-104.21846087354277,21.089655296774026],[-104.2178954168374,21.091086066773755],[-104.21840705509709,21.09201971575675],[-104.21806199149637,21.092871301720834],[-104.2197182683102,21.095447283172973],[-104.22142250880779,21.097893383548694],[-104.22084307648572,21.101363390552592],[-104.21705783919202,21.104243166644153],[-104.21740554008039,21.10435261381724],[-104.21765467543969,21.104654332077928],[-104.21749571102765,21.104885641542467],[-104.21573673533118,21.10680041219672],[-104.21474878193953,21.10734906964666],[-104.21459200706289,21.107713921825905],[-104.21462647951614,21.108572178496786],[-104.21485715707934,21.10898867169226],[-104.21571780240072,21.109357862184822],[-104.2156731084371,21.11035084476987],[-104.2153952335729,21.110774708804797],[-104.21462849500978,21.11116748772082],[-104.21453898999704,21.114339507008253],[-104.21335937509741,21.113841614442663],[-104.2125753447325,21.11402462715148],[-104.2123324132503,21.114834948721125],[-104.21390957879896,21.1161339059488],[-104.21474097286665,21.116602507860193],[-104.2146554074933,21.116964230285532],[-104.21405264352649,21.117041632169048],[-104.21374945502328,21.11752667079537],[-104.21329959027116,21.117996671569983],[-104.21256732570532,21.1179901125754],[-104.2111092177417,21.118138563538253],[-104.211055451383,21.119123441261763],[-104.21248402284505,21.119496404242625],[-104.21270930050906,21.120433508745805],[-104.21253034229233,21.120895348803003],[-104.21142886787914,21.120561388385624],[-104.21175852789355,21.12217491059323],[-104.2117163119924,21.125280914533107],[-104.21163670154596,21.126113087442548],[-104.21128989908658,21.12771453539318],[-104.21154248269625,21.128452284598552],[-104.21158614045748,21.12968253204042],[-104.21131220978111,21.13155478230368],[-104.21197485991138,21.13194083536837],[-104.21404213556849,21.133647314389975],[-104.21467449843414,21.13361617772034],[-104.21493199174301,21.135019162267383],[-104.21440204940251,21.13557633720984],[-104.21431589595335,21.136039172884523],[-104.2149379252798,21.138228152004785],[-104.21547014008553,21.139164896764385],[-104.21576541881859,21.139005423337437],[-104.21596878471718,21.13828856781811],[-104.21633964866544,21.137693441364547],[-104.21750559665702,21.13814212153636],[-104.21900342152406,21.137639272970716],[-104.2195777930902,21.138344841291087],[-104.21963332715245,21.1387009896593],[-104.21892819853139,21.139099225005168],[-104.21912335997666,21.1408966864563],[-104.2218121987816,21.141354263376684],[-104.22199157054803,21.142733319065712],[-104.22155264617118,21.143046522913608],[-104.22112920028093,21.143589641388417],[-104.22117835832614,21.144443671765146],[-104.22152208970306,21.144734557513914],[-104.22251993695198,21.145004961616394],[-104.2228777098826,21.145438094735653],[-104.22267191839603,21.14571505201957],[-104.22214674041288,21.146467848521525],[-104.22227896100026,21.1469315002945],[-104.22261821364873,21.147045201849835],[-104.22317254015883,21.147412801558403],[-104.22358974651081,21.148415083138275],[-104.22467835721602,21.15030842098372],[-104.22517054671044,21.15120875210374],[-104.224024331289,21.15164810070786],[-104.22368143598254,21.152560584088803],[-104.22322056930153,21.15275375133473],[-104.2226263373563,21.152899145540175],[-104.22229802647962,21.15309038362119],[-104.22207277353635,21.153901702335816],[-104.22259466477317,21.154192469013935],[-104.22313856146235,21.154209425843305],[-104.2238679073456,21.154532257393953],[-104.22414510763366,21.155177941373267],[-104.2241897171246,21.156264312939697],[-104.2248665055572,21.1577038238338],[-104.2241813446621,21.158176090230995],[-104.22340921663016,21.158224800010487],[-104.22312374384842,21.158691248273783],[-104.2229434095621,21.1590687041338],[-104.22214207565355,21.158155761337753],[-104.22180926453427,21.15849027017208],[-104.22174175492552,21.158956632472666],[-104.22288241630315,21.159715687652806],[-104.22333401719789,21.1597373246895],[-104.22400245383449,21.160136575759225],[-104.22423361645866,21.160471681891067],[-104.22365738536604,21.161100573737542],[-104.22350571834664,21.16193482509709],[-104.22280637527359,21.162396280306098],[-104.22197516995203,21.163071183862428],[-104.22171077258974,21.163455786611735],[-104.22174736203613,21.163850132722132],[-104.22211690500933,21.164366552854744],[-104.22225451950897,21.164881473274136],[-104.22148822434502,21.166586197208744],[-104.22161544614875,21.167417841275267],[-104.22174276225564,21.167682003002938],[-104.22211929511639,21.168146483704163],[-104.22278510637489,21.168388651558473],[-104.22332260549092,21.168701664774687],[-104.22358160983015,21.168961593399786],[-104.22304927390184,21.16941859485246],[-104.22072061739925,21.1700138842736],[-104.22073569004436,21.170350395794117],[-104.22060425025109,21.17077204355263],[-104.22021267046267,21.172253849804918],[-104.22032451927413,21.17250061319487],[-104.22043731593936,21.172654906852358],[-104.22048362126054,21.17287639339918],[-104.22051362076024,21.173258067765744],[-104.21805036170883,21.172471846518533],[-104.21792278078647,21.173069072032945],[-104.2176298374585,21.174527077648918],[-104.2175302802479,21.17506882616533],[-104.21866946488092,21.175348875441387],[-104.21872172715757,21.175363018669145],[-104.21941089565263,21.17616412041832],[-104.21940652385899,21.176592605731685],[-104.21870046567079,21.17663699305109],[-104.2168552982364,21.17721758372744],[-104.21510949205117,21.178827065083453],[-104.21293198273361,21.181604056805895],[-104.21210005421767,21.184531099490925],[-104.2087022761354,21.18928168190672],[-104.20585838988234,21.190339110484672],[-104.20501036765194,21.191141756299373],[-104.20279366225543,21.19283243568111],[-104.19882277009663,21.19346370380208],[-104.19636724696858,21.19355299521993],[-104.19353308772361,21.19254825988554],[-104.19102314998872,21.19249531092936],[-104.18314997522975,21.18924480575214],[-104.1803585219825,21.188952498106858],[-104.17715262971893,21.188162392015897],[-104.1734200604817,21.188608428088173],[-104.16889170344461,21.189090164180243],[-104.16492854091285,21.188438495889386],[-104.16183504667083,21.185424076721404],[-104.15951350065944,21.184560298908423],[-104.15320404031678,21.18831274430744],[-104.14965169238133,21.189747529922215],[-104.14857213798354,21.190917009683915],[-104.14464763757667,21.190987529188646],[-104.1412655586251,21.18939230142172],[-104.1386741789808,21.18866628943499],[-104.13592230242307,21.18930931602449],[-104.12963617092731,21.190630161105958],[-104.12742242352556,21.191523957115635],[-104.12603705192214,21.193436722962872],[-104.12474292318865,21.196093677938904],[-104.12102800013213,21.19512991235615],[-104.11680080179042,21.191382944455768],[-104.11084484116867,21.188595706876015],[-104.10905193386736,21.19012323191987],[-104.10895728520711,21.194392375523478],[-104.1056077006993,21.197877858036236],[-104.10253249044962,21.198745971849803],[-104.10088225924,21.200148013346563],[-104.09894127598216,21.20102769296227],[-104.09747159666068,21.19831273011465],[-104.0961491986439,21.196786343210306],[-104.09156506031633,21.195394434051025],[-104.08879968548541,21.19612915457259],[-104.08782249358484,21.197627290476476],[-104.08808642951664,21.20088227251199],[-104.0881144489095,21.20424499229],[-104.08565926553581,21.20536111508011],[-104.08235753805207,21.204306248107002],[-104.08091018871005,21.201764148419613],[-104.08087481391522,21.198039453423235],[-104.08170879887666,21.193779324112597],[-104.08057760896696,21.189461557180152],[-104.07760012460858,21.18893591393976],[-104.07613617658114,21.190266954766287],[-104.07316984007184,21.190226435967134],[-104.07238001176614,21.190054993685806],[-104.07201947972709,21.189329068390975],[-104.07181919272773,21.188792081154816],[-104.07175499769642,21.18836443366422],[-104.07126573901616,21.187941788658463],[-104.07042028517748,21.187422535435303],[-104.06978430193828,21.187152842142552],[-104.06948593208597,21.187066930818958],[-104.068887396136,21.186841160192046],[-104.06828665290902,21.186786324503885],[-104.06798662874604,21.18697028274846],[-104.06746834648857,21.187753197395523],[-104.06730080582355,21.18809621488549],[-104.06697057346202,21.18859607362458],[-104.06643158696141,21.18913406701023],[-104.06609500788846,21.189723288185917],[-104.06642138829,21.190973582851598],[-104.06684492569605,21.191669470538613],[-104.0670411888417,21.191945661501904],[-104.06784116754267,21.192771381138698],[-104.0687166553879,21.193446497610807],[-104.06933419701801,21.194153400617324],[-104.06941568589525,21.19445812848744],[-104.06939477950601,21.194971126917494],[-104.06927801890828,21.19549441926597],[-104.06903087499796,21.196280330769298],[-104.0686775977577,21.19712770079252],[-104.06834017964576,21.197662970895806],[-104.06810406341077,21.197918025523677],[-104.06763196649842,21.1984371258759],[-104.06738583466006,21.19866533305691],[-104.06621201945637,21.199268590915494],[-104.06562264646675,21.19965434607417],[-104.06454092614729,21.19986684503158],[-104.0636180415787,21.20041900576814],[-104.06189418836448,21.200082455974382],[-104.06124709826611,21.199209662997305],[-104.06081861578548,21.198190006280925],[-104.06070729136798,21.19757440328226],[-104.05982805232259,21.19658780118465],[-104.05966399267936,21.195906387321543],[-104.05956395991979,21.194371389650883],[-104.05908108320011,21.193652437316985],[-104.05627539753118,21.194139938321484],[-104.05507187946847,21.197897979207653],[-104.05422226556283,21.20143781270349],[-104.05499679684664,21.204191768991564],[-104.05195422287369,21.205353011588898],[-104.05016272458738,21.204360596700326],[-104.04921220589773,21.203105033483553],[-104.0485491373716,21.20243928918478],[-104.04707382938801,21.201076557422653],[-104.04585746157471,21.199736281718003],[-104.04462703756855,21.199685414393628],[-104.0425772323224,21.201410830055522],[-104.03959730840967,21.203902936181635],[-104.03929106385198,21.20424363677023],[-104.03751903630302,21.203758593380087],[-104.03611326318634,21.20185087397681],[-104.03572819723945,21.20120521940578],[-104.035881013601,21.199718123609557],[-104.03583418973824,21.199262452695052],[-104.03586995520573,21.19812464757473],[-104.0353215938701,21.196599416895538],[-104.03379987902093,21.195213677775996],[-104.03039741081955,21.194499659262362],[-104.02933463926291,21.194682487198065],[-104.02672172274919,21.1970266479795],[-104.02639850296396,21.200475604048847],[-104.03041761519165,21.20219903691867],[-104.03287132915335,21.202686657959475],[-104.03161332346673,21.205192817000636],[-104.02941037350348,21.2086642076398],[-104.02498131445924,21.212937711737027],[-104.02266005906381,21.211460900063912],[-104.02232089808325,21.210019396316454],[-104.0223829493305,21.208515504401078],[-104.02234191289466,21.206563034601004],[-104.02236935594954,21.20620373512446],[-104.02253229766046,21.205391421226864],[-104.02232001842026,21.205107079457548],[-104.02140496143932,21.20467820487795],[-104.01863883822784,21.20512236234856],[-104.01647919740316,21.206574033188303],[-104.01575472940476,21.208484103407272],[-104.01592501945305,21.20958396979546],[-104.01683334883143,21.210709431737257],[-104.01705561783581,21.211181634220566],[-104.01681725922333,21.212303860327836],[-104.01603708025016,21.21281790177227],[-104.01542963397617,21.214216849089155],[-104.01644636530659,21.21923173824149],[-104.01554710292868,21.219313884827727],[-104.01464112447252,21.220680856034846],[-104.0175309605234,21.22604080474798],[-104.0174888428715,21.227201841059355],[-104.0166418257952,21.227435601825107],[-104.01611836596129,21.227559654852712],[-104.0141987654066,21.227163199969596],[-104.00995634492466,21.227130592707454],[-104.00523571781474,21.228769360878914],[-104.00485792198748,21.229567610085553],[-104.00475722038266,21.232040853926776],[-104.00425382014049,21.23569980612791],[-104.00270776031817,21.23705643703454],[-104.0017034124445,21.237719373920015],[-104.00078442985921,21.238468524230484],[-103.99898040895232,21.238642888137633],[-103.99636068301515,21.239296956414705],[-103.9903569226023,21.242782631394107],[-103.98862084792336,21.24392765634076],[-103.98641431223928,21.246429448791332],[-103.9853104908056,21.249208014192163],[-103.9788276076008,21.250325234727086],[-103.97656167628753,21.250869602037085],[-103.97497946785899,21.25154340183974],[-103.97448235926078,21.25180111200615],[-103.97385199904164,21.25297254296447],[-103.97419813880748,21.255580619540467],[-103.9712759523822,21.256328684900723],[-103.96927430842379,21.255690179605665],[-103.96566703355973,21.254354452047437],[-103.96495120995962,21.25380029211027],[-103.96459671992886,21.25371027983141],[-103.96412719150578,21.25398691806464],[-103.96310391657175,21.253824008332515],[-103.96266590410357,21.253276780645876],[-103.96223581791025,21.252992808432168],[-103.96141549520735,21.252302746025805],[-103.95985415255416,21.25111488835796],[-103.95888459120158,21.251948214994968],[-103.95838771249629,21.252754514193384],[-103.95514210943338,21.249940091605424],[-103.95447046531189,21.248886006066073],[-103.95420113393862,21.248471095251716],[-103.9529762935781,21.247891632663595],[-103.9517054369054,21.244592599372766],[-103.94984593705396,21.243079114898137],[-103.94852980115309,21.24160725769633],[-103.94749988825953,21.238936314671037],[-103.94586722546995,21.238017849273945],[-103.94253767422163,21.238028406479884],[-103.94138156368751,21.23840335369823],[-103.94016153823446,21.2381729057106],[-103.93744122685325,21.238346229631134],[-103.93655823341408,21.238531647232264],[-103.92853542669758,21.234918695278623],[-103.92646390712207,21.23490577735288],[-103.92401998625934,21.23457173166065],[-103.9265782165943,21.240316543361473],[-103.9256118910223,21.242457661437697],[-103.92837664431181,21.24692848624784],[-103.92863506567875,21.249760211294642],[-103.93546185382752,21.254176183144352],[-103.93479400811594,21.2560777128636],[-103.93439680311258,21.25716159769047],[-103.9343738723768,21.258586784507372],[-103.93379843163763,21.260873911516228],[-103.93223388574683,21.261931823180134],[-103.93105688848885,21.262547116207656],[-103.92994321567124,21.261718028911957],[-103.9274635603532,21.258490803401287],[-103.92687208496693,21.25641289417797],[-103.92598471626115,21.254293828293783],[-103.92484288130566,21.252838977336182],[-103.92386223613448,21.25209356158041],[-103.92346838252871,21.251967836106815],[-103.92243439223142,21.25175577676464],[-103.92126536513416,21.248055218976617],[-103.92074450192541,21.247643409643672],[-103.91942605192975,21.246827795892045],[-103.91872505398226,21.24586649059586],[-103.91758303909018,21.24167372573612],[-103.91819859521803,21.240040711091353],[-103.91932039165624,21.238612786755084],[-103.91933482970433,21.23738660180402],[-103.91925898702715,21.23648098271991],[-103.91957065874038,21.234921655249764],[-103.91920742602633,21.233546848458502],[-103.91854966126198,21.232897179843405],[-103.91815047377855,21.231579086789168],[-103.91506692798805,21.23084183345486],[-103.91427508149991,21.230765535440582],[-103.9133280973395,21.231213879366464],[-103.91174045213398,21.231872592960144],[-103.9108939890483,21.232584648257216],[-103.90999629727861,21.23296157284244],[-103.9084634907648,21.233190331975493],[-103.9067449034248,21.233355146004953],[-103.90418291266838,21.233358022158484],[-103.90241736709294,21.23294077321964],[-103.90105407205925,21.230304269317855],[-103.89973054946773,21.227053813211228],[-103.89894402866514,21.226667015096268],[-103.89761291560018,21.226644514071097],[-103.89600296723268,21.230184562419026],[-103.89513355321469,21.233050248159316],[-103.89230552771528,21.238426660128823],[-103.89072924701065,21.238736544363007],[-103.890577959692,21.238757701778013],[-103.89011092373818,21.23895653542462],[-103.88959136016945,21.239729772497583],[-103.8884949538313,21.239335855239972],[-103.88740380055657,21.239039872948183],[-103.88658647791436,21.23942655825806],[-103.8859425586416,21.240294821078635],[-103.88551560848327,21.240714767047848],[-103.88323991041682,21.241817254098123],[-103.88192102550158,21.241848912619787],[-103.88168044426732,21.24174206741918],[-103.88104300917769,21.241843377386886],[-103.87994302220977,21.241400438714493],[-103.87935574782563,21.240589110795497],[-103.87870771337322,21.239793046960756],[-103.87805204849042,21.240113270128177],[-103.87667369929488,21.239142852609405],[-103.87620063849806,21.23943904789388],[-103.87585414131593,21.23923276304157],[-103.87543857655243,21.23858538369109],[-103.87453630864093,21.241906916362552],[-103.87304556776752,21.242734646706595],[-103.87009741915125,21.243589261442878],[-103.86502175684558,21.245919014849278],[-103.86199650653185,21.248693731691674],[-103.8613246855391,21.248622049268477],[-103.8511355006413,21.245180205430984],[-103.8475124751107,21.242512467113784],[-103.84500409005886,21.240296742727992],[-103.84274151477439,21.24011983419001],[-103.84001943357111,21.239820466559763],[-103.83370602123046,21.241912684505508],[-103.83136536042065,21.242967985284395],[-103.83047466521549,21.24366651149529],[-103.82820287611264,21.24566199167907],[-103.82053541753504,21.247872388438566],[-103.818547437429,21.249038546153827],[-103.81707938860166,21.252507125713066],[-103.81697865859996,21.254723476975755],[-103.81748567598589,21.25714042501903],[-103.81834644670931,21.258512289700832],[-103.81919860953155,21.25946136668705],[-103.82023332138414,21.260807559977593],[-103.82136500983347,21.263021962178584],[-103.82113709064686,21.26620722330597],[-103.82132606762883,21.26679302431188],[-103.82296832220976,21.268314376837793],[-103.8239902974708,21.26907083787239],[-103.82498493523974,21.271877633913505],[-103.82442731900738,21.27273732342013],[-103.82393138332225,21.273077192164806],[-103.82289945402448,21.274087728324105],[-103.82144384742992,21.275271187790338],[-103.8205277638898,21.275901906219815],[-103.82023410359523,21.27623754146333],[-103.82009784088507,21.27689981552453],[-103.8204732396423,21.27795257645596],[-103.8207797127775,21.278634085784574],[-103.82034563224374,21.28104138245874],[-103.82003223004119,21.28135002822279],[-103.81957279153818,21.281787760460986],[-103.81825168767972,21.283357699784972],[-103.81419618529941,21.287269041357547],[-103.81316734481362,21.287588876915038],[-103.81218023700904,21.28748531840995],[-103.81174723116669,21.287328004185213],[-103.8119364896209,21.287001787429233],[-103.81271906667018,21.286873636775397],[-103.81251626708871,21.286698170067382],[-103.81121583657512,21.287054786510794],[-103.81001512077376,21.287913872332638],[-103.80842584824808,21.288537962661735],[-103.80630168363706,21.29115123095613],[-103.80611118615428,21.291746982511597],[-103.80615064156291,21.29201695097413],[-103.80667819684948,21.29286830838373],[-103.80675421232667,21.29369686399133],[-103.80605090920142,21.293962895717073],[-103.8058450193003,21.294134120233593],[-103.80606667743035,21.2945598435403],[-103.80643245031621,21.29533325253118],[-103.80368201417889,21.299275204749733],[-103.80361798280154,21.299915747550926],[-103.8027771701868,21.300401185589294],[-103.80234327163976,21.300540606659922],[-103.80180777948942,21.300830960419773],[-103.80127924400682,21.301496028581766],[-103.79905138313075,21.30326100916227],[-103.79853556519299,21.303286129713626],[-103.7977877059842,21.303266784504615],[-103.79694378193773,21.30352262935355],[-103.79627339523381,21.303575874708713],[-103.79517500741827,21.30363141587077],[-103.79443839496821,21.303946790675127],[-103.7940169303165,21.304076059855902],[-103.79331247116477,21.304479080068802],[-103.79304460519796,21.304725429435848],[-103.79196169461301,21.305579368536826],[-103.79086981062028,21.30576094540237],[-103.78858918877211,21.305541683383865],[-103.78672870592362,21.30603894745468],[-103.78483083848448,21.30729529746111],[-103.7840205827182,21.30739186529854],[-103.78340313969642,21.3075687648643],[-103.78193351137548,21.30811314314633],[-103.78138648209904,21.308269249616274],[-103.78063627444482,21.30851302359241],[-103.7800547532587,21.308989875403768],[-103.77928320311906,21.3098165085417],[-103.77767701857073,21.311534929561958],[-103.77756619904176,21.31194277895122],[-103.77759077368898,21.31255596702414],[-103.77747528212939,21.313489316608297],[-103.77722053230593,21.313998663358802],[-103.77755678221968,21.314745266013006],[-103.77761506499633,21.31527094288782],[-103.77754839282261,21.315941457319752],[-103.77704154171965,21.316575338147004],[-103.77675733820251,21.31705507913921],[-103.77673813230342,21.31743373277618],[-103.77621075785237,21.318933612340743],[-103.7761425239089,21.319633185815974],[-103.7763100814808,21.32007319807707],[-103.77612295463183,21.32166986371641],[-103.77558269830689,21.321097141059226],[-103.77497615916133,21.321005257820048],[-103.77268873311925,21.32028761081284],[-103.77232994971456,21.320475082677717],[-103.77203120504424,21.320735366827137],[-103.77068067654864,21.32173292199093],[-103.77022519172641,21.32207941434666],[-103.76940591473925,21.32252812250738],[-103.7690026039594,21.322276866772768],[-103.7670391353509,21.325424105336594],[-103.76697378333773,21.325978441557766],[-103.76682862726585,21.326503751266557],[-103.76521511047468,21.32739630187865],[-103.76438352174506,21.328017553163193],[-103.76416183918138,21.328469326905918],[-103.76243258774139,21.32829504060976],[-103.7612616391848,21.328520876870016],[-103.76007482864497,21.328497320758117],[-103.75944307406166,21.329440229066336],[-103.75864058452578,21.32977161840506],[-103.75771016159604,21.329726947555287],[-103.75679291241102,21.33380132264881],[-103.75696927399395,21.334695922765093],[-103.7571950128683,21.334922025229503],[-103.75742999792982,21.335484709343348],[-103.75658581930549,21.335964492168387],[-103.75567401418635,21.336606583838375],[-103.75557943740893,21.336929836645254],[-103.75562572922968,21.337507393345845],[-103.75461323999485,21.337487239519533],[-103.7541522440311,21.337047840344553],[-103.75389905741412,21.336796637214206],[-103.75346359696573,21.336235336544974],[-103.75319940232015,21.335882616812285],[-103.75311120158403,21.336323771856712],[-103.75265739478965,21.33628631541893],[-103.75211591065658,21.335987589402578],[-103.75126323006361,21.336485590374366],[-103.74935181762993,21.336708477681952],[-103.74958464921826,21.336944123760418],[-103.74955566964923,21.338504373723424],[-103.74964909702794,21.338984289442294],[-103.74955609948859,21.339504451794994],[-103.75027007471533,21.341518237869025],[-103.75083945687231,21.341354725928852],[-103.75102000141192,21.34123468351322],[-103.75191811828302,21.340875920636734],[-103.75235925743351,21.342391871119048],[-103.75189110741098,21.344153278109275],[-103.75152926937011,21.344485033099147],[-103.75009297313073,21.345174839770152],[-103.74958919817556,21.345170615678114],[-103.74854428851472,21.345119935861135],[-103.7483170104017,21.345147942309154],[-103.74687231766114,21.347279863660276],[-103.74663025299628,21.347661061712245],[-103.74632795613888,21.34877440826],[-103.74642130140694,21.349620968084196],[-103.74618636931939,21.35040230149974],[-103.74585082229277,21.35104502395228],[-103.74475607465905,21.35156117970132],[-103.7443197456875,21.352276741957382],[-103.74438005219088,21.352817845779384],[-103.74482535137639,21.353538789442894],[-103.74515893337326,21.353862602953825],[-103.74577857932195,21.354580649230513],[-103.7464607802703,21.35586245980852],[-103.74713348773196,21.357828650739293],[-103.74711535947262,21.359265470862965],[-103.74691091148617,21.3603060140087],[-103.74599153923191,21.362394738719217],[-103.7459540541796,21.362492271658255],[-103.74545432752177,21.363773953970735],[-103.74506470286656,21.365477288950785],[-103.74465024964036,21.367134623297034],[-103.74446845659503,21.36805693013895],[-103.74374703740023,21.369578909165682],[-103.74288081461157,21.371292208375166],[-103.74142356404963,21.37360484606313],[-103.74190501550157,21.374868100505523],[-103.74440129913177,21.377434320475913],[-103.74618250136734,21.37894956669436],[-103.74688614421933,21.379411643983815],[-103.74770704922048,21.380172774280254],[-103.74825347218217,21.380986949321937],[-103.74863779216275,21.381331962454112],[-103.75092858207813,21.38253549712499],[-103.75300539106564,21.38315427142271],[-103.75426935052622,21.383483752645816],[-103.75639216297213,21.38391318653464],[-103.764232133017,21.3858323492164],[-103.76712604563153,21.388154955627442],[-103.76771920282533,21.389784407545505],[-103.76760140203334,21.391141636335306],[-103.7665444210379,21.39219024817021],[-103.76612560915146,21.393354920094282],[-103.76452636080563,21.394952483772556],[-103.76303684051845,21.39627468971662],[-103.76231195178872,21.396420073030527],[-103.76168859513405,21.396918227568563],[-103.76152675673882,21.396991785397404],[-103.76133467294,21.397493144898874],[-103.76006366032891,21.39826374425934],[-103.7598144738422,21.399067063750806],[-103.75800685095544,21.399933659170244],[-103.75752542197273,21.39965330805319],[-103.75693425855928,21.399799853733498],[-103.75916440769043,21.402114815188156],[-103.75999716772793,21.40339487254215],[-103.76440153343043,21.407949098929635],[-103.76367032674318,21.410200988444842],[-103.76094666823002,21.409807596027008],[-103.75938072529266,21.409602336162095],[-103.75588457150656,21.410683421891974],[-103.7557481753609,21.411370187160855],[-103.75561129145473,21.412019748491957],[-103.75546058863267,21.413095110441645],[-103.75478680615743,21.415675745346164],[-103.75188053405986,21.41726365679864],[-103.75052828661705,21.41762035901627],[-103.74661034270304,21.417814836264654],[-103.73937125636576,21.416990574541956],[-103.73755217307172,21.416625512849066],[-103.73495332533184,21.416369095757034],[-103.73189744214562,21.41576930359497],[-103.73095017751416,21.41611762189558],[-103.72728844629006,21.421159580509936],[-103.72356428344102,21.42120788799116],[-103.72340939935839,21.421312654596647],[-103.72319514517113,21.42226903099288],[-103.72166256176195,21.42360259623848],[-103.72128923092203,21.42384163487185],[-103.72089554616923,21.425431228612183],[-103.72208084738855,21.42795989776556],[-103.72642991454501,21.4326874483491],[-103.72767117488706,21.43372386912762],[-103.72803621661637,21.43429359720494],[-103.7282266994115,21.434913116316523],[-103.72837523704897,21.435676575067873],[-103.72952822838835,21.43629374330453],[-103.73047162137357,21.43678025167077],[-103.73135410830218,21.436901883209032],[-103.73226940054082,21.437317277785382],[-103.73297325809529,21.436953374021357],[-103.73374117784084,21.43693072225699],[-103.7345426799721,21.438352419784678],[-103.73665629839718,21.43903745689937],[-103.73807005283618,21.44019492374366],[-103.73895768431197,21.441137795757754],[-103.74203063940155,21.44155783120135],[-103.74238310488363,21.443100409108354],[-103.74243056067235,21.44436683147461],[-103.7425480430075,21.444605092624613],[-103.74286448815258,21.44583215308694],[-103.74303427355983,21.44644010641565],[-103.74394384418702,21.446832714131062],[-103.74456563389037,21.448056296243692],[-103.74525266500086,21.45131481136383],[-103.74520647734079,21.451863509760585],[-103.74465998472147,21.452183753798806],[-103.74452153122354,21.45309290084731],[-103.7445330700537,21.454130122828133],[-103.74485503837923,21.454660107855375],[-103.74520084027876,21.4547859515734],[-103.74558169004604,21.455966901052932],[-103.74592219592961,21.45680343263507],[-103.74721713077201,21.45797123663931],[-103.7474274588298,21.45900982423177],[-103.74810205339668,21.461526999371245],[-103.7490296397707,21.462549232788774],[-103.75007094849201,21.46269979727981],[-103.75084457564509,21.4636611564527],[-103.75210846770267,21.46630499915193],[-103.75142876156366,21.466970764415294],[-103.74978460053535,21.46862500612906],[-103.74938792473421,21.46921129359191],[-103.74927721980373,21.469495722053637],[-103.74875324611918,21.469837507627005],[-103.7486842138394,21.470120552494905],[-103.7484426887051,21.47070869727935],[-103.74822178243056,21.470870044393678],[-103.74813086458931,21.47118510413179],[-103.74936458052184,21.474488227512268],[-103.75091548161294,21.476308364155102],[-103.75559453809086,21.47879696127302],[-103.76228657257718,21.482005593865154],[-103.76337282062059,21.482242682655567],[-103.76637623970282,21.48256113943063],[-103.76872115303479,21.48279819684825],[-103.76961817996175,21.484642038829918],[-103.76961759827833,21.485701199778532],[-103.76968850186029,21.48666605415025],[-103.7702805572244,21.488397246772536],[-103.77153051809739,21.489057139438216],[-103.77344928387754,21.489325372921485],[-103.77456019628289,21.489514904073133],[-103.7751169245409,21.489669099033563],[-103.77636278405686,21.49016291165566],[-103.77762095596199,21.49129279243516],[-103.7779222614551,21.491710418868877],[-103.77839148694255,21.493090865566444],[-103.77835940896654,21.49396343341357],[-103.77685535483408,21.495359513322853],[-103.7745512278816,21.49580461322023],[-103.7740014037143,21.496027893934524],[-103.77383379792036,21.496407392642197],[-103.77412948270438,21.498380707311185],[-103.77463426545546,21.498417519340876],[-103.775189170325,21.498431059252994],[-103.77581555959921,21.498276771562985],[-103.77779929232594,21.498167549147865],[-103.77850491962971,21.498723884718572],[-103.77888874556436,21.499658789643433],[-103.78035673777708,21.49978241889903],[-103.78064013549158,21.499213694782327],[-103.78236401217379,21.498450334298013],[-103.78264787650778,21.4981366351995],[-103.7831667488096,21.49777391386192],[-103.78381100865573,21.497359813606693],[-103.78406738792859,21.497459387088725],[-103.7862676480035,21.497589861466565],[-103.7870423609819,21.497505498667863],[-103.78733713339369,21.49779339858526],[-103.78747856040752,21.49799958807705],[-103.78807977823135,21.497995296787963],[-103.79121347065592,21.496998464638295],[-103.79117837223066,21.496766530791433],[-103.79112225512574,21.49670365513191],[-103.7911601339809,21.49648992778731],[-103.79156204413601,21.49550412058909],[-103.79179976771746,21.49442402779522],[-103.79194773407096,21.491705873198214],[-103.79225521967334,21.491493530975617],[-103.79225934211627,21.49093077591101],[-103.79298873947539,21.488691384005335],[-103.7935990792177,21.488864851631206],[-103.79519058541706,21.48945793084505],[-103.79707065714274,21.489729045317233],[-103.79773878498725,21.48965495404599],[-103.79828068956778,21.488845377116775],[-103.79899780747826,21.488664517229154],[-103.80040828580582,21.48877319871451],[-103.80079823620486,21.488926537336113],[-103.8015762756732,21.48981681499339],[-103.8015446449935,21.489483193124443],[-103.80080510091352,21.488209459636494],[-103.80027124974612,21.487955254069163],[-103.80016890080196,21.48755439380824],[-103.80042096829186,21.48718839603464],[-103.80333271669383,21.48976257327456],[-103.80921650319522,21.492811705957592],[-103.81036009605572,21.49326107246071],[-103.81401324728904,21.494483964325468],[-103.81776427853487,21.494551148118944],[-103.81836281210838,21.494349821514277],[-103.82147768323165,21.49248856175501],[-103.82495927151615,21.493925609729843],[-103.82577682502568,21.49449854740419],[-103.8281592011607,21.49817404634797],[-103.82866321892539,21.500502375339977],[-103.82886803623171,21.50108533241996],[-103.82815029714357,21.502361812704635],[-103.82771012955084,21.5029415736729],[-103.8279211606789,21.505262513520677],[-103.83109139933242,21.50872982518996],[-103.83227612520585,21.51082675037435],[-103.83229219048161,21.51235859394228],[-103.83212309251257,21.51290245543146],[-103.8324573021685,21.513582793743183],[-103.833539267797,21.51347818504496],[-103.83421393623411,21.512952777150474],[-103.83571159733145,21.51274878645222],[-103.83660758537229,21.512662720448475],[-103.83760632411327,21.51313903994253],[-103.83870310230162,21.513549736941798],[-103.83999801582718,21.513909036880364],[-103.84052326078233,21.513664029637084],[-103.84141158602995,21.51323132223206],[-103.84229539430044,21.51331781435681],[-103.84261709931673,21.51357806008224],[-103.84327766222964,21.513864180999406],[-103.84389608911016,21.514048246611253],[-103.84873744625531,21.51464702930366],[-103.8492945255843,21.51453086908549],[-103.85177649941278,21.515792044065563],[-103.85215865523702,21.516073322542184],[-103.8523388370536,21.516829905086013],[-103.85267085378183,21.517343228557195],[-103.85450963996277,21.518941071349502],[-103.85479498146731,21.519234406614714],[-103.85504874059205,21.51990931967225],[-103.85551771478788,21.520505387952312],[-103.85634974991262,21.521192357131667],[-103.85764390996655,21.522399228350764],[-103.859924901206,21.524749507441754],[-103.85919283428825,21.527794045490452],[-103.85822336181326,21.5309718685931],[-103.85766258527082,21.531595844194953],[-103.85659978289209,21.531808109832525],[-103.85586481269252,21.53206689150562],[-103.85507255887575,21.532648279534556],[-103.85418667963324,21.53452777902072],[-103.85504121963174,21.53515277081749],[-103.85521557126515,21.535484663514637],[-103.85448656903282,21.536222301328962],[-103.85522824254264,21.53689222384304],[-103.85576491787123,21.538030232902486],[-103.85588561025435,21.53869042506028],[-103.85558736474667,21.53936113508223],[-103.85488942190733,21.540649704780662],[-103.85450651686756,21.54138549830401],[-103.85409126354011,21.541442412892593],[-103.85361197963084,21.541379073289136],[-103.8533491653152,21.54166633588119],[-103.85337760102453,21.541969136865475],[-103.8539905056897,21.542304805203912],[-103.85428427880964,21.54229217559225],[-103.85459109628971,21.542381040977546],[-103.85460703807138,21.542481593867308],[-103.85497466363273,21.54275850766868],[-103.85509296760557,21.54310560199457],[-103.8543820896424,21.543402826474278],[-103.85408748090384,21.543846585857125],[-103.85578662522147,21.545993087125964],[-103.85466566444046,21.546582421310973],[-103.8546924279745,21.54711487129407],[-103.85520166873232,21.54724848287492],[-103.85522476387769,21.548567885700663],[-103.8554665765443,21.549216631898048],[-103.85620905013315,21.550850440862405],[-103.85600050035242,21.552045583334007],[-103.85776507211318,21.551465136601337],[-103.8584151425012,21.55086361781406],[-103.86046101946408,21.550025300923096],[-103.86315324555846,21.55001458328121],[-103.86430844708457,21.550231395460116],[-103.86749784550938,21.55038115151956],[-103.8693069519498,21.550115962017003],[-103.87075135777718,21.54873675093711],[-103.87256121654758,21.549088637970385],[-103.87443059285147,21.54942135583559],[-103.87516256632841,21.550212870484074],[-103.87752758023169,21.551305790808954],[-103.87917571194367,21.551377859092213],[-103.87988179093605,21.552409217735658],[-103.88070555811032,21.552072146044225],[-103.88174511307398,21.552452881147417],[-103.88102787240348,21.553060450083194],[-103.88156158311898,21.55329062657404],[-103.88394367089785,21.553912690202196],[-103.88441165477428,21.554190073475866],[-103.88553361523014,21.55448611280758],[-103.88551474431029,21.554742763261572],[-103.88599374349053,21.554893227174887],[-103.88639888533163,21.555322559446495],[-103.88726691347779,21.555624732378874],[-103.88688454544047,21.55589355890396],[-103.88662054582704,21.555816748005213],[-103.88599692228416,21.556270192022453],[-103.88627690332282,21.556494625528728],[-103.88714357355462,21.557089242241034],[-103.88744873988747,21.55739857915745],[-103.88809931537605,21.55775830110622],[-103.88800446918322,21.55825775756432],[-103.88814042198317,21.558507482878326],[-103.88889567959853,21.55863978287664],[-103.88941670861607,21.56050035693005],[-103.88992660631266,21.561087662201317],[-103.89077994799311,21.562085517975504],[-103.89098404193459,21.562591274183433],[-103.89123342303105,21.562592736159388],[-103.89183756167176,21.562479710222703],[-103.89121357635901,21.563504631498574],[-103.89114013301997,21.564027944931297],[-103.89126151084298,21.56437860887064],[-103.89138372921775,21.564651206037524],[-103.89182128538113,21.56481450350566],[-103.89266109438285,21.565784504856197],[-103.89257985127773,21.566215725788254],[-103.89244530022228,21.56630724236868],[-103.89203444322663,21.566722674182245],[-103.89215901822416,21.566968780857053],[-103.89179742716425,21.567290943801368],[-103.89156291167018,21.56738097019661],[-103.89130431310116,21.567621052848835],[-103.89119336518638,21.567803948179687],[-103.89121186834296,21.568144382071637],[-103.89099072608997,21.56843453018604],[-103.8905870408106,21.56887153880308],[-103.89046671957976,21.56946480353747],[-103.89055165111694,21.56963892968139],[-103.89130321912057,21.56971702186422],[-103.89078528931941,21.57086317047225],[-103.89026041599601,21.571350689047108],[-103.89083379874194,21.572239454754538],[-103.89129734005036,21.57228819549738],[-103.89164694079483,21.57244544167628],[-103.8917604509441,21.572788035081317],[-103.89213909008504,21.573146417072792],[-103.89304216135781,21.57422352541323],[-103.8933756470829,21.574132274442036],[-103.89383616547724,21.574584943272612],[-103.89456641131704,21.57476017179482],[-103.89549133940733,21.575184405649395],[-103.89593802365579,21.575344072712994],[-103.89647043900163,21.5752530778567],[-103.89771657849076,21.575060669843822],[-103.89844576493664,21.57529761247946],[-103.89892614080014,21.57530074007525],[-103.89909196113973,21.575224260004234],[-103.89952426386395,21.57525884083509],[-103.90050487313994,21.57495442959663],[-103.90133839279184,21.574542012078382],[-103.90251863100991,21.57442480842394],[-103.90373851233386,21.57559685660368],[-103.90378168652728,21.576109136043385],[-103.90381306479168,21.57743117569356],[-103.90456795006412,21.577494411644466],[-103.90971711998452,21.57826629928286],[-103.91118339959274,21.578676435332056],[-103.91540261354402,21.579692078378173],[-103.91668956469749,21.5797740212696],[-103.91974942192633,21.583041372015998],[-103.91991430679695,21.584052236816035],[-103.91971325407025,21.58424354386551],[-103.91947210289186,21.585023505433412],[-103.92149563457662,21.58794800424363],[-103.92261800775447,21.58906758407977],[-103.92302947520614,21.589675992694424],[-103.92300146706486,21.591036660091504],[-103.92280045092144,21.591321727510604],[-103.92059938058276,21.59449977851841],[-103.92012482015889,21.595029386104102],[-103.91964942770124,21.595712545879053],[-103.91888054658318,21.596787645483232],[-103.91852168235704,21.59727863520925],[-103.91652287891668,21.599574816181587],[-103.9165953716024,21.601909951046082],[-103.9165409136628,21.6025172198502],[-103.91538423154276,21.604023171115045],[-103.91285373411534,21.607495774893096],[-103.91479482950592,21.61141650069044],[-103.91608664581065,21.612157349990923],[-103.91778414460396,21.61289402402201],[-103.91908028316425,21.613799080580634],[-103.91924327283311,21.614810892364687],[-103.91877582072868,21.61711990218072],[-103.91783969350854,21.61800738213674],[-103.91752861602748,21.618103534219642],[-103.91515052659997,21.617428906788064],[-103.91486208799438,21.616296522819766],[-103.91475110887745,21.61607537292207],[-103.91437728511619,21.615959988470934],[-103.91379337856824,21.61585825827052],[-103.91319093984418,21.61589993158276],[-103.911345648988,21.614642035650093],[-103.90982053175816,21.61483684799731],[-103.90763834855443,21.617828409778554],[-103.90790493576202,21.619168425250507],[-103.90813882407355,21.619779091592136],[-103.90952182738653,21.6216035160071],[-103.91028416038199,21.624352397206565],[-103.91025875318104,21.62652111236264],[-103.9112973077822,21.62903147058222],[-103.91259733872005,21.63033772800395],[-103.91686616327752,21.63321528132576],[-103.92038795859901,21.63475873285256],[-103.92179658148535,21.636722522774505],[-103.92322603255673,21.63824037685248],[-103.92708131733144,21.640344068044556],[-103.92794264022348,21.640829738770094],[-103.92938300316263,21.641073944493996],[-103.92989404212426,21.641308827412274],[-103.93012242221312,21.64165553402802],[-103.93007955142434,21.64238674627876],[-103.92824543197418,21.64919282720041],[-103.9230392033918,21.66088637740461],[-103.9213375673923,21.668374245428197],[-103.92001413461844,21.66933026022673],[-103.91747865807383,21.67027600152761],[-103.91450137066852,21.67006992459966],[-103.91426670470469,21.669412970755275],[-103.91289903393738,21.668838223240982],[-103.91076121595029,21.671085400581205],[-103.90883962903695,21.67378570679199],[-103.90880195270762,21.67502697335175],[-103.90696220134942,21.680520441819112],[-103.90616152366056,21.682366588132425],[-103.90314841687524,21.68242367629506],[-103.90360508894855,21.684898818066245],[-103.90330212797056,21.685827958653988],[-103.90259107369877,21.686262244605587],[-103.89807030019733,21.687841326129956],[-103.89572161044549,21.691728927917836],[-103.89460483397846,21.6932485709479],[-103.89303951723406,21.69450688084345],[-103.89220136469964,21.69485215458161],[-103.89069758378349,21.69531182577407],[-103.8877249711208,21.69781823798678],[-103.88869182289255,21.698539752480087],[-103.88985537634693,21.69895204047515],[-103.89062260595745,21.699980077173734],[-103.89060204478022,21.70038152867727],[-103.89042444996369,21.70245778518654],[-103.89063607003368,21.70313776045907],[-103.89092257760336,21.704031027703593],[-103.89165412775696,21.706106976349133],[-103.89295632642506,21.707733840176957],[-103.89625942822556,21.71189477002315],[-103.89653208669313,21.713658680371054],[-103.89595056316762,21.717995565126216],[-103.89526347077776,21.726089822369147],[-103.89637124764073,21.728034046482435],[-103.89853924064863,21.727941890668774],[-103.89895988754813,21.727324897387575],[-103.89969880760964,21.723735789145508],[-103.90136626855417,21.71733312321402],[-103.90304386569528,21.716443665846555],[-103.9034761772491,21.716993814496732],[-103.90371557933884,21.717571770570828],[-103.90422878590209,21.718482177195426],[-103.90745431641056,21.718378584415575],[-103.90781459997407,21.718916909014126],[-103.90787657363796,21.719858328309897],[-103.90837128736115,21.721172877858578],[-103.90877851436949,21.721664324670883],[-103.90947089569278,21.722669611309527],[-103.91123365268703,21.725570462336123],[-103.91241965548903,21.725968692789365],[-103.91301357921577,21.72619820110077],[-103.91562190382382,21.727757776306817],[-103.91760044129848,21.729362394284863],[-103.91803695739873,21.729859806976663],[-103.91823094303828,21.730313049267465],[-103.9184199915004,21.731507038475456],[-103.92017854269875,21.73253344603387],[-103.92070482761733,21.732988882369796],[-103.92083258937595,21.733565490820013],[-103.92153481484314,21.734636869258964],[-103.92245936665893,21.73474874013027],[-103.92316378108751,21.73590359332718],[-103.92373682483168,21.736433773883505],[-103.92437061536293,21.736390428882316],[-103.92536296081249,21.736148335256473],[-103.92697126309707,21.7365148356472],[-103.9279919632857,21.73743332452824],[-103.9286329178966,21.740114806690258],[-103.9293194406361,21.74069618903593],[-103.93012062412657,21.741210771886358],[-103.9306040673593,21.741857334122983],[-103.93083063052148,21.742274753204185],[-103.9315993480322,21.743164620773655],[-103.93182786858847,21.74338050275759],[-103.93185328388358,21.74393025431192],[-103.9321224106647,21.74440159880868],[-103.93226171935788,21.744966255728116],[-103.93224490730404,21.745484769318978],[-103.93198827573013,21.745880129897557],[-103.93297153517477,21.747900114195772],[-103.93326343494215,21.748063457027456],[-103.93360762322379,21.748214340465665],[-103.93356567837787,21.748674170348977],[-103.93305262695219,21.749614666184186],[-103.93120209722537,21.75166669211876],[-103.92889421279193,21.75165123037948],[-103.92816033407894,21.751631403114175],[-103.92607690665415,21.75168388109097],[-103.92466753677849,21.751312149596686],[-103.92329610836481,21.75087548251321],[-103.92244821125985,21.75103496774375],[-103.92145642711694,21.75132423652741],[-103.92085738592988,21.751220992665253],[-103.92011855512766,21.750855351303983],[-103.91788129481927,21.752717801569247],[-103.91605419087506,21.756426833224225],[-103.91738906018372,21.757226200319963],[-103.91823180519083,21.757857425316104],[-103.91945653143063,21.75890232633037],[-103.91937882557733,21.75992175244579],[-103.91877250674753,21.760873354077944],[-103.91864436515186,21.76617419588416],[-103.92108319180124,21.76866261222773],[-103.9231312041731,21.771404604120107],[-103.9239385777243,21.772136095070778],[-103.9274638842972,21.77433939226313],[-103.92951456290064,21.774485193916348],[-103.93086616760212,21.773865476080914],[-103.93196251478912,21.773740942696406],[-103.93449616876023,21.77590481667221],[-103.935036436318,21.775631138678193],[-103.93561098455189,21.77537608876156],[-103.93796430224319,21.775816602635814],[-103.93782466051886,21.776240455563823],[-103.9390355925749,21.775638779475003],[-103.94178744978802,21.7757492369837],[-103.94273418214277,21.77636449654807],[-103.94360190793668,21.776758358747998],[-103.94407700921221,21.77681679213714],[-103.94498818788117,21.776655478140526],[-103.94548585207025,21.776326931694484],[-103.94631922316427,21.776295492194038],[-103.95032355721924,21.7749883917553],[-103.9505877474827,21.774110899437403],[-103.95081654394698,21.77400632770889],[-103.95155712561342,21.774143967089458],[-103.95197325129607,21.775690882145796],[-103.95242732397696,21.77617346345704],[-103.95303146910146,21.775617515377633],[-103.9543284070719,21.773921726347567],[-103.95498540693404,21.77365919996879],[-103.95692978821813,21.773511887177165],[-103.95724894338059,21.772608266551515],[-103.95759550088968,21.772183573124096],[-103.95808106388057,21.772027607247423],[-103.95939136556666,21.77224871393912],[-103.960643188289,21.772922601905748],[-103.96127336091564,21.77282015018875],[-103.96210237162131,21.772559026733063],[-103.96492861264858,21.772443003039882],[-103.96647041028018,21.77234610699736],[-103.96744190796335,21.772325491449863],[-103.96758572796335,21.77206040890195],[-103.96768633220006,21.77130117147476],[-103.96905372749347,21.771108450394763],[-103.97015216501273,21.770799349310835],[-103.97178470818466,21.771125141536572],[-103.97222258092165,21.771295615586894],[-103.97341902906231,21.771043326238043],[-103.97435871949784,21.77084334655666],[-103.97469465780023,21.77121845424699],[-103.97494657940143,21.77235440622519],[-103.97609767583083,21.77199193708674],[-103.97620117546995,21.77156397508594],[-103.97650184984604,21.771195200038846],[-103.97775748909453,21.77133243564805],[-103.97797405731689,21.771520267590745],[-103.9784517488697,21.77182001545725],[-103.97884552471879,21.772622814598037],[-103.97956235862864,21.772664406454226],[-103.97986016445964,21.77275950835923],[-103.98027649927985,21.77311541316709],[-103.98092611822801,21.774328829871422],[-103.98360580342478,21.773042481155358],[-103.98414831681453,21.772599763551455],[-103.9846823999327,21.773031291371694],[-103.98481193035298,21.77442751275072],[-103.98551032671423,21.77565026574524],[-103.98610748943662,21.77574693064423],[-103.98709371891664,21.777241902512344],[-103.98804488587899,21.778140946864198],[-103.98851941924102,21.778683068743135],[-103.98865614174235,21.77918599410316],[-103.98951002315567,21.779749523585963],[-103.98984911163126,21.77954724496277],[-103.99076520288781,21.779849443647322],[-103.99355790041085,21.77962530963765],[-103.9944161399348,21.77963141084308],[-103.99654996258397,21.779215171471776],[-103.99771357188524,21.77982182983675],[-103.99826716630076,21.780644289647],[-104.00197881137689,21.782861631695482],[-104.00307065957264,21.78291389579732],[-104.00363699464214,21.782612162617],[-104.00489374119377,21.78261935892033],[-104.0089054100277,21.781825309354133],[-104.0102008895476,21.781888234605788],[-104.01125687409586,21.78211767764759],[-104.01138570629894,21.782471141255314],[-104.0120439529054,21.782968766395697],[-104.01349447570101,21.78343360783822],[-104.0136776227352,21.783656323294224],[-104.01420122733327,21.784027979388952],[-104.0152512260259,21.78469772365537],[-104.01595817720676,21.785046089740888],[-104.01627443222407,21.785071892375413],[-104.01818046030343,21.785103755848297],[-104.01901623201144,21.78542934454032],[-104.02023080619159,21.786445069500303],[-104.02236002240403,21.786909898818806],[-104.0232007721724,21.787234684399778],[-104.02461649316456,21.78817549814761],[-104.02553993581199,21.787861951962498],[-104.02796429425592,21.787631158556962],[-104.02943232462576,21.788622070798453],[-104.03014037777251,21.78884690649005],[-104.03373602439058,21.790735523952264],[-104.03509512841526,21.79050147630312],[-104.03782622239112,21.789163968336652],[-104.03866163012549,21.788999067066584],[-104.04067859677696,21.7906080144773],[-104.04264779278827,21.791184568556446],[-104.04638248998617,21.792737540669464],[-104.04745599450945,21.792709979533697],[-104.04839919200981,21.79304602778052],[-104.04934417434191,21.793754464970164],[-104.05085761507951,21.79404448059927],[-104.05225379765443,21.79476095546181],[-104.05280875641097,21.79411812712584],[-104.0537613519478,21.793361951962083],[-104.05406115379435,21.79388476862141],[-104.05446539438879,21.794072727149057],[-104.05513204320289,21.79364081313946],[-104.05592694289118,21.79241615722907],[-104.05831941154423,21.792700906760956],[-104.05876546690968,21.792949093714583],[-104.05992409261182,21.79307879345265],[-104.06342130598523,21.793590098490256],[-104.06460349116804,21.794112497580443],[-104.06638658144834,21.793011026740942],[-104.06582297519253,21.790624903601497],[-104.06624788180761,21.789816746164718],[-104.06685320043732,21.789992870401875],[-104.06889015496387,21.789710958219416],[-104.07069638154309,21.790063745693317],[-104.07243742800654,21.789581740502513],[-104.07623785585719,21.789717394516742],[-104.07685711292947,21.787657531299317],[-104.07773125569531,21.786679872349623],[-104.07920900034549,21.786269542004106],[-104.08008883736909,21.784408564376804],[-104.07947700732257,21.78280432084307],[-104.07985618379837,21.782405157632695],[-104.08080933063252,21.78292332034698],[-104.08139475669606,21.783986094841737],[-104.08369039498098,21.785109114561806],[-104.08448819855028,21.78580858996986],[-104.09093664128193,21.785391064079022],[-104.09223911199098,21.784631087964613],[-104.09380126459968,21.786742081517048],[-104.09334833331303,21.78803373226981],[-104.09315615147284,21.789250842751528],[-104.09319645657217,21.790875707797795],[-104.09325119794164,21.791244700722018],[-104.0950359752207,21.791747664206525],[-104.09583842788999,21.79185133240128],[-104.09687883911704,21.792320804873384],[-104.09944341279515,21.792727832955904],[-104.10061264631895,21.790866403516873],[-104.10167693353952,21.79027986431123],[-104.10315289054813,21.790161541588418],[-104.10411744860528,21.79049253836189],[-104.10595528573282,21.79116539710816],[-104.10945509508315,21.78732753678031],[-104.11456389450603,21.78882856786396],[-104.11632973196345,21.789547628363266],[-104.11806866705581,21.789847418805323],[-104.11932640144846,21.789456913421418],[-104.11983560226923,21.789685839547474],[-104.1209975108149,21.79032566154177],[-104.1221019354731,21.79052826064992],[-104.12310369573692,21.790262968101842],[-104.12515915396222,21.79012742059882],[-104.12639170485983,21.790625047753565],[-104.1276039945609,21.790458477467837],[-104.12830618882919,21.790232969278122],[-104.12892148672978,21.790490142683723],[-104.13038159794064,21.790451316889573],[-104.13092426821106,21.790835073662265],[-104.13164469706362,21.791325931251322],[-104.13207552986188,21.791531238198218],[-104.1335865712847,21.792707599203823],[-104.13393094823539,21.793274100587723],[-104.13557130566744,21.79669211060036],[-104.13599014871653,21.797357110103633],[-104.13780470485506,21.79850376114996],[-104.13836587121921,21.799863016269626],[-104.14022911578041,21.800890047504083],[-104.14079600075962,21.801571127179045],[-104.14147222187091,21.8014300750487],[-104.14204283500169,21.801432101942225],[-104.14380388061272,21.80226535049394],[-104.14426676099521,21.802945146709533],[-104.14515630711827,21.805259287552246],[-104.14575988943653,21.80592259082323],[-104.14898537908061,21.807448806588184],[-104.14955937682265,21.807357260095273],[-104.15113565685408,21.807654188912124],[-104.15262204023543,21.80800152931232],[-104.15328099215998,21.80818024873929],[-104.15379530201255,21.807617506450583],[-104.15429790234646,21.80781479368835],[-104.15537730065284,21.809777482296795],[-104.15617901108214,21.81078745123159],[-104.15933812466409,21.810666404906783],[-104.15995592723726,21.810806997179725],[-104.16069694219112,21.80986451492214],[-104.1617484422735,21.809841342277537],[-104.16227451617601,21.811606874142456],[-104.16200061707133,21.812515668464016],[-104.16376788866796,21.813897800131258],[-104.16411386450085,21.814433040005724],[-104.16436774604222,21.8152246566695],[-104.16461983714123,21.81596546407195],[-104.16496858666562,21.81631094232347],[-104.16524468560567,21.816552144335446],[-104.16551664990061,21.817018527930998],[-104.16796167024057,21.8197254617084],[-104.169008391859,21.82024716803346],[-104.17042072323665,21.821492631673266],[-104.17077129704279,21.82194881878462],[-104.1710086990571,21.822380279958963],[-104.17126387612785,21.82294856129704],[-104.17177726103694,21.823432400805757],[-104.17201466892249,21.823863860679808],[-104.17204818377735,21.824431644645983],[-104.17220976351115,21.82522274220821],[-104.17266762464016,21.825878931423176],[-104.1735287043341,21.82651942854642],[-104.17374998050997,21.8266751552448],[-104.17405825458292,21.827278992173888],[-104.17481399236493,21.828017196482904],[-104.17516005294965,21.828792063646063],[-104.17669116733498,21.831773252396317],[-104.1766131529526,21.83223731736109],[-104.17722131707944,21.8325672937753],[-104.17734816381773,21.832894106208073],[-104.1784590219051,21.83316611625986],[-104.17937849289575,21.833685930425986],[-104.18031464024949,21.83415466775722],[-104.18093881451625,21.834690465321785],[-104.1809573127291,21.834930760381724],[-104.18126591922669,21.835551828366306],[-104.18186660899039,21.83691311507846],[-104.18265966449542,21.83707160015865],[-104.18517987742382,21.837669388557174],[-104.18560369093962,21.837722363546504],[-104.18615711623562,21.83779346358773],[-104.1871940471184,21.83788127957405],[-104.18719144024169,21.838019297229835],[-104.18729757557139,21.838862009095124],[-104.18776623234345,21.84094501541614],[-104.18792800980054,21.841443799072863],[-104.1882270066759,21.84236637128862],[-104.18836211261845,21.84349371067367],[-104.18808602791836,21.84397331447974],[-104.18808400470385,21.844444475409603],[-104.18819036971303,21.844884136083863],[-104.18855184217193,21.846178004637807],[-104.1888011478888,21.847271946391174],[-104.18917297771094,21.848484875701047],[-104.18935767792595,21.849373674332583],[-104.19049438670862,21.85032424588752],[-104.19071263290652,21.85106369077863],[-104.19223212962629,21.851042013951712],[-104.19312293659402,21.850691607766578],[-104.19442169406074,21.850432500921272],[-104.19553226486983,21.850379413687847],[-104.19654589586594,21.850673532140092],[-104.19574392759614,21.850633453077876],[-104.19531325684471,21.851186683524077],[-104.19515733887943,21.85146895754491],[-104.19412750226076,21.85251896094752],[-104.19371543036078,21.852765838717687],[-104.19298131404014,21.853499269525685],[-104.19187245394573,21.854130940665243],[-104.19015855774921,21.854768720924596],[-104.18924666191856,21.855011833974118],[-104.18731491987029,21.85562509859244],[-104.18696786166862,21.85602766788304],[-104.18676198496041,21.856191335254437],[-104.18627465699052,21.85633363671093],[-104.18475627385982,21.857192799360917],[-104.18141099841694,21.85891350803314],[-104.18072807448692,21.859201209336106],[-104.18055898919937,21.859374688424793],[-104.18009880545077,21.85996929258306],[-104.17958504912997,21.860088851282],[-104.17776565740837,21.865138521382562],[-104.17705547963442,21.8658403114909],[-104.17491764861927,21.867618966562873],[-104.17261608902987,21.86991915584065],[-104.1725153187628,21.871500112476326],[-104.17345876247373,21.87180449101237],[-104.17497598049408,21.871927356909566],[-104.17555633755666,21.871911877885623],[-104.176663402273,21.871033809169433],[-104.17880301920064,21.86763018242152],[-104.18045795179108,21.867254486584727],[-104.18444133015959,21.86719336212957],[-104.18677526371789,21.868378396569938],[-104.18689373594913,21.869498723347192],[-104.18711298703363,21.870298985819886],[-104.18769300197863,21.871393678602658],[-104.18840841063735,21.87232213335716],[-104.18908219848743,21.8727863953128],[-104.18903049185013,21.87366858570556],[-104.18918354724951,21.874404429751507],[-104.19035700788305,21.876399346012875],[-104.19089239604949,21.87720054520429],[-104.19235030534003,21.878447919734356],[-104.19327079797421,21.878829667686546],[-104.19571614363326,21.879220937107334],[-104.1964181254429,21.880252592083707],[-104.19670546261256,21.8809892349081],[-104.1967728233322,21.881241543238957],[-104.19685734366863,21.88212451541648],[-104.19687508491381,21.883205431674128],[-104.19702999300512,21.88345830394252],[-104.19729826966329,21.883921976307533],[-104.19738750977757,21.884321940577934],[-104.19752124344973,21.88446981235751],[-104.19794695763522,21.88480686567857],[-104.19794340015488,21.88547867692114],[-104.19807677470868,21.88590070436004],[-104.19807251732959,21.886529860021312],[-104.19806910224156,21.887328759577258],[-104.19842721185955,21.88781293257051],[-104.19868799399984,21.88876691486206],[-104.19917879060375,21.889630457852604],[-104.19990084157138,21.889887011216956],[-104.20077220835856,21.891120016530635],[-104.20074313994724,21.89219162124118],[-104.20064924121078,21.892988187509786],[-104.20032317771529,21.89504627221862],[-104.20092316254488,21.896750676290026],[-104.20154788235408,21.897947270866723],[-104.20149964976093,21.89868145547439],[-104.2008630664667,21.899602902283732],[-104.2010631262184,21.90023367404973],[-104.20108205083932,21.900674588830157],[-104.20083128161514,21.901219223280975],[-104.2003808378733,21.90151162757445],[-104.19962104172879,21.904407463213488],[-104.20002283315728,21.908729155039737],[-104.20024410025064,21.909465838313736],[-104.19979199619843,21.910073269263762],[-104.19967709903392,21.910303677681043],[-104.19951860462368,21.910722623172887],[-104.19870479543619,21.911223568853018],[-104.19779909677345,21.911638676198493],[-104.19586770054946,21.91351636759356],[-104.19471565125701,21.913741616384016],[-104.19238675476777,21.915410700988048],[-104.19093794814535,21.916348233693952],[-104.18936854929422,21.918538411608893],[-104.18880205962535,21.918997654376938],[-104.1885697508049,21.919962317546776],[-104.18820719146032,21.920696439528797],[-104.18790928766794,21.921219939634113],[-104.18772459373417,21.922122194228905],[-104.18835063885598,21.922923943517162],[-104.18836740156337,21.92424636413392],[-104.18847575450206,21.92462518814216],[-104.18892237022419,21.925341434508937],[-104.18919305707169,21.925532755599647],[-104.18916580492652,21.926245764562452],[-104.18866608556766,21.927041757284655],[-104.18850066591926,21.927813925150303],[-104.186773866159,21.930325869414105],[-104.18672788542665,21.93078677743074],[-104.18522993645325,21.93248115428929],[-104.18506874322162,21.93285836688767],[-104.18481843059533,21.933319455871242],[-104.18407420615608,21.93350523785091],[-104.1829740939258,21.935255670441563],[-104.18240251618892,21.935996517500655],[-104.17958027500845,21.937938681870605],[-104.17907855021002,21.93874333696283],[-104.17868430242095,21.939509662300964],[-104.17868365562498,21.939888224384333],[-104.17868168130934,21.94024501811242],[-104.17858949828394,21.94055951598301],[-104.17896596270441,21.94155184712082],[-104.17909547320221,21.942168484585977],[-104.17891362920835,21.942956056610285],[-104.17921011240105,21.94606317393601],[-104.17855298827544,21.946422489772658],[-104.17769531930111,21.947339178172513],[-104.17720539182938,21.94848659755712],[-104.17682339914842,21.95192554631683],[-104.17669822203936,21.95255886217717],[-104.17680673561927,21.953109729456116],[-104.17662167809226,21.953697884020073],[-104.1765981871875,21.953928799134474],[-104.17668545150815,21.954327905697767],[-104.17670654290765,21.95472704144248],[-104.17654622581557,21.955041596423314],[-104.17654504626137,21.9555672325954],[-104.17658471505956,21.956091382722434],[-104.17569432877656,21.957889641137285],[-104.17551102496395,21.9582871310119],[-104.17491435711543,21.960195612931443],[-104.17488695257623,21.9612036666569],[-104.17491108007135,21.961348471027918],[-104.17501980449839,21.961832775131768],[-104.17399547797572,21.963058217190678],[-104.1736992216023,21.963392848285253],[-104.17383281770867,21.963708692159173],[-104.1739255616863,21.9645594250822],[-104.17432161234791,21.96516062808479],[-104.17433944009315,21.965538932173786],[-104.1740563382782,21.96740656417927],[-104.17439026018121,21.96836603910708],[-104.17419987479013,21.970309740005064],[-104.17365548197182,21.970882892497684],[-104.17919670567062,21.976465566631134],[-104.18097868731911,21.97777125913956],[-104.18406042517512,21.979274324174128],[-104.18509136995988,21.98012028452689],[-104.1861020378177,21.980796765331604],[-104.18814093126281,21.981651418792126],[-104.18902132385489,21.98295305303469],[-104.18977722824712,21.98305589563597],[-104.19071053938438,21.98327759656894],[-104.19191600310825,21.984255383680818],[-104.19331945198644,21.985420120703736],[-104.19663532787575,21.985580077620114],[-104.19822900439425,21.9855064683494],[-104.20265652174368,21.98277240747251],[-104.20444975701906,21.983565276505885],[-104.20591143030254,21.983395255670246],[-104.2078527882955,21.983236419418006],[-104.21078125021239,21.983166446443192],[-104.21430694248721,21.981649587502375],[-104.21856910558824,21.979517844585928],[-104.21882876230472,21.979000592644923],[-104.22110738792776,21.977940212939643],[-104.22299802203878,21.976617425494226],[-104.22488523127436,21.975269254644388],[-104.22691825129317,21.972973713203544],[-104.22839112591765,21.97204668014149],[-104.23390165283786,21.96919413391919],[-104.2348482101068,21.96905237564812],[-104.2362222557586,21.96933197561441],[-104.24068709280704,21.97009920812127],[-104.24129728775489,21.969998314940142],[-104.24276825669716,21.969381875759723],[-104.24525702536005,21.966911611135743],[-104.24670355555043,21.967088466736357],[-104.24914639291472,21.968456992038284],[-104.25456336780968,21.97106675764087],[-104.25794029878642,21.972027603394565],[-104.25850351995621,21.97223993097731],[-104.2601538909393,21.975133384331173],[-104.2611526967114,21.976379688569637],[-104.26328807783545,21.977039007450742],[-104.26901356336634,21.97777994498432],[-104.2716687932276,21.978926353916506],[-104.2747722939522,21.9801586847816],[-104.27580601253021,21.980961336871474],[-104.27775596768379,21.983610544362193],[-104.27757163644145,21.98421788615059],[-104.2762063236907,21.98675368697826],[-104.27618120679927,21.98727968980745],[-104.27657973665345,21.9885619948447],[-104.27716847210115,21.989523743583504],[-104.27792448814114,21.991333646413068],[-104.27814257987797,21.992993555297517],[-104.2797010908468,21.997336205161616],[-104.28138222642201,21.999658810362746],[-104.28347547336415,21.99991654254694],[-104.28561520762423,22.000010659764428],[-104.28766936155927,21.99878478545213],[-104.28850573895187,21.998452784491406],[-104.28994818106617,21.99883620382178],[-104.29028104317729,21.99951825314548],[-104.29086322309303,22.0007099557518],[-104.29310779762824,22.00273637243282],[-104.29484454997277,22.002680506681486],[-104.2985317401438,22.00095968851781],[-104.30179476543316,21.99868475556326],[-104.30281511548162,21.997449353317165],[-104.30420672249363,21.994597889643103],[-104.30551055288254,21.991570704526623],[-104.30813848475509,21.988618962719727],[-104.31299913618426,21.99078281758142],[-104.31505633828067,21.990803605550298],[-104.3172537511868,21.98869157465151],[-104.31940292072522,21.984531269352146],[-104.32041862237122,21.983885003442538],[-104.32319206501342,21.98395841847946],[-104.32490533654953,21.984134061072893],[-104.32565987030677,21.982016486336875],[-104.32545685690974,21.976666094144093],[-104.32823623272583,21.97569078534434],[-104.33236294134952,21.97836171041797],[-104.33512122958228,21.979773771431155],[-104.33727299915148,21.97928485374473],[-104.33884225570421,21.978260805549894],[-104.33950677610153,21.978231016719292],[-104.34087079637231,21.977757578625244],[-104.3435770359136,21.97465701169881],[-104.34604389370514,21.97403082039591],[-104.34815715927203,21.973910319818913],[-104.35167053106545,21.97342650552008],[-104.35554636000393,21.972476875703535],[-104.36173556332267,21.973084587602443],[-104.36372268727928,21.974000917464593],[-104.3681721854283,21.974084962700942],[-104.36855599635862,21.974213409446804],[-104.36905742086464,21.974697522440806],[-104.36997997698501,21.975119269616073],[-104.37069262862326,21.976173169398464],[-104.37046125587563,21.9766578876592],[-104.3699113355039,21.978031744558734],[-104.37060581188439,21.97893794945867],[-104.3710751221044,21.97999015391059],[-104.37099292799655,21.980233043918247],[-104.37060116081074,21.981050078431508],[-104.37041680282488,21.981289427664933],[-104.36987398417608,21.981581946991582],[-104.36986286649432,21.98304009929268],[-104.37008599022909,21.98380008417979],[-104.36935885053873,21.984633853019545],[-104.36807017406448,21.985364569566002],[-104.36795768162443,21.986376866310934],[-104.36734610793764,21.986363487627557],[-104.36704908827215,21.98734572397632],[-104.36751248927521,21.987558344770548],[-104.36815995577342,21.988761810729955],[-104.36814439156689,21.989282520787413],[-104.36791782482362,21.989680918525323],[-104.36782388848803,21.9900382367299],[-104.36807830575947,21.99022314869279],[-104.36786675536405,21.990919993302555],[-104.36752641164497,21.991380059831783],[-104.36791756285533,21.992140250900093],[-104.36870791602882,21.99279533814496],[-104.36824074976528,21.99334995944423],[-104.3675364389095,21.994146084084264],[-104.36764412607437,21.9952801306257],[-104.36710064622355,21.99603383233847],[-104.36696136806592,21.9965797710974],[-104.36700732812,21.996811470167813],[-104.36743263541302,21.997190754130656],[-104.3675224437664,21.997589728119976],[-104.36634474289491,21.998426725614024],[-104.36569136217179,22.001386069118837],[-104.36526192272822,22.001782880539167],[-104.36511278539206,22.002416145428583],[-104.3648374985035,22.002968333765978],[-104.36396153102743,22.003424844842755],[-104.36389385167826,22.003570889911032],[-104.36383617498188,22.004282775801187],[-104.36242834545595,22.006793069196192],[-104.36220319180876,22.007517264361013],[-104.36191088855497,22.010071133597307],[-104.36051025838003,22.009986516137587],[-104.36002946371258,22.01042412479643],[-104.36016357966014,22.011264057052756],[-104.3605153533353,22.013815669199403],[-104.36047292744337,22.014308667054024],[-104.36003754120156,22.014744162959857],[-104.36079787095332,22.016304815187937],[-104.3612299521406,22.017222302351684],[-104.36146884987323,22.01795943497683],[-104.36131277930173,22.0194316309898],[-104.36204163611097,22.019519394024996],[-104.36283039891919,22.019636192168775],[-104.36369482432252,22.019961666354163],[-104.36474451759818,22.02020366251344],[-104.3660794144946,22.019841153209995],[-104.3663709784953,22.01994275279543],[-104.36680932213375,22.02073649308852],[-104.36713227604378,22.020856897236285],[-104.3675992125319,22.020926866840114],[-104.36797689764626,22.021386453935804],[-104.36795835201127,22.022228723804744],[-104.36742956217842,22.023546604697856],[-104.36876383963136,22.024309905706048],[-104.36872918715699,22.024725562295714],[-104.368533075828,22.02504187766874],[-104.36804397048581,22.02542537733433],[-104.36796562885388,22.025747712568943],[-104.36902577191148,22.026075389556695],[-104.36920649278392,22.02666237619502],[-104.36891107454682,22.02698115062003],[-104.36871432040476,22.027090793930824],[-104.36871506284518,22.027571196378403],[-104.36905399549204,22.027972837343896],[-104.36591620885014,22.03005622428384],[-104.36597264011567,22.03093415337412],[-104.36629705547097,22.03314431379806],[-104.36647607485196,22.033796118930752],[-104.36662635093057,22.03441931508911],[-104.36610488066583,22.035380579705418],[-104.3656382630628,22.03570005711532],[-104.36502853394074,22.036571890650805],[-104.36531403867275,22.037298319983847],[-104.36542727589051,22.037809514111757],[-104.36574056144843,22.038454717104457],[-104.36539047432257,22.03958220458935],[-104.36544352385181,22.0407643188488],[-104.36770553216161,22.0444971039405],[-104.36744012726507,22.04573223727516],[-104.36587536633374,22.047283320134284],[-104.36543977875255,22.047872860633902],[-104.36494780864683,22.04824810548081],[-104.3643096381216,22.048781746669647],[-104.36381746348604,22.04958640587273],[-104.36171524805599,22.05330490732655],[-104.36226563752666,22.05450319925211],[-104.36242475057077,22.054838129406107],[-104.36277822314605,22.055694983734952],[-104.36321274914809,22.057520583000155],[-104.36336611236737,22.058923832844812],[-104.36348752565141,22.06001594583546],[-104.36345534202746,22.063194116125374],[-104.36374914367201,22.064301708430207],[-104.36384648908432,22.06798219262248],[-104.36352327437658,22.06902632133091],[-104.36336955927464,22.0701574018741],[-104.3632990129338,22.07089378125397],[-104.36330438664879,22.071888371213333],[-104.36336323354396,22.072519713097222],[-104.36333700695621,22.073225232235586],[-104.36367537854926,22.07448839595395],[-104.36404380810058,22.075052872372225],[-104.36450770907618,22.07567307617984],[-104.36525248585633,22.07664302738152],[-104.3661422575156,22.078594868638845],[-104.36711582610047,22.079941688238534],[-104.36774140222838,22.08187852210267],[-104.36827320777479,22.085139471441664],[-104.36713855019701,22.0865379894787],[-104.36747598598203,22.089551339980062],[-104.36738704012765,22.090304421476617],[-104.36755421577811,22.091217886447282],[-104.367897709045,22.092185834057886],[-104.3694449869468,22.094840225068538],[-104.36929874377944,22.095108482036835],[-104.3691799647666,22.096101702451165],[-104.36937798193867,22.096720543285755],[-104.37021157222694,22.097690927566077],[-104.37092973341811,22.09863403447065],[-104.37107021153912,22.099413545248865],[-104.37327896833136,22.10189338833635],[-104.37255232283087,22.103492457832203],[-104.37164938502048,22.105314853968935],[-104.37097955445694,22.106548985253767],[-104.3681863420419,22.10929926535573],[-104.36712934923776,22.109855710312672],[-104.36465702473993,22.112743527002294],[-104.36472661582934,22.113537753885282],[-104.36463889271374,22.116398901098307],[-104.36425873162392,22.11721547233651],[-104.36409958966226,22.118849365821006],[-104.36384757164035,22.119199136654117],[-104.36366838977074,22.120086157851233],[-104.3636398236078,22.12094998497679],[-104.36386291133653,22.12144316615644],[-104.36373368503752,22.122400234980773],[-104.36220874163718,22.125705615422703],[-104.36160212477466,22.126778046567836],[-104.36130959858923,22.129964640698233],[-104.36170101339712,22.132372680478625],[-104.36156979378273,22.133494106712988],[-104.36155823050376,22.136699093760285],[-104.36082872398771,22.137327641460217],[-104.35979202860364,22.13877163108731],[-104.3595067820824,22.140001640427386],[-104.35929466916878,22.142338141946937],[-104.35896204280436,22.143645139500848],[-104.35850689731035,22.144250406649576],[-104.35762551771927,22.14511186816577],[-104.35560088606297,22.14801358142404],[-104.35481198320866,22.15025359166782],[-104.35447709913637,22.152542036600778],[-104.35441802173045,22.154000999093796],[-104.35403467801405,22.155752719737393],[-104.35440182033955,22.157505675103664],[-104.35486975560167,22.15944683671023],[-104.3550196320515,22.159821316023],[-104.35544344243687,22.160641007149366],[-104.35558945236244,22.160906599102418],[-104.35576194992757,22.161679293153043],[-104.35558307353989,22.162589914924467],[-104.35545287347537,22.163663211320056],[-104.35612238223047,22.16487316487286],[-104.3557929341294,22.165923182657764],[-104.35433053040907,22.166898832396157],[-104.35335054352731,22.167152588855572],[-104.35224550286716,22.16733471091203],[-104.35045779505151,22.16865938204694],[-104.35000462189669,22.168774338077412],[-104.34969930576938,22.169426320661785],[-104.34918804376485,22.17083862237041],[-104.34980687164011,22.172382573357936],[-104.3500779966347,22.17338800574646],[-104.35052995365851,22.175689649650906],[-104.35056884797712,22.175893198113272],[-104.3500913735707,22.175694585799135],[-104.34937670819693,22.175784479309527],[-104.34828981334954,22.17652434404897],[-104.34838537948559,22.176794822541922],[-104.34771770299119,22.17703958179675],[-104.34712900736099,22.178273569266594],[-104.34708835951443,22.17889979290544],[-104.3461492681925,22.18025440876721],[-104.34560136100123,22.180461543917488],[-104.3407764639914,22.18334103806461],[-104.34032395392455,22.183766830814818],[-104.3397974690194,22.18449791730501],[-104.33957709607267,22.18497426783722],[-104.33926082162816,22.185660747031932],[-104.33829899368044,22.185536897257407],[-104.33825003563618,22.18520713001152],[-104.33776291967155,22.18513924492521],[-104.33738317329767,22.185721519329377],[-104.33644872534785,22.18730634934144],[-104.33652267961946,22.18763297531234],[-104.33589149181068,22.188331639653313],[-104.33566034521886,22.188938892528142],[-104.33553524877436,22.18931120898793],[-104.33553172780472,22.189778825715678],[-104.3361620534398,22.19348889188376],[-104.33570144457019,22.19491218918847],[-104.33401005894615,22.19714854982095],[-104.33332588901993,22.19799871771778],[-104.33185826339792,22.20049132222988],[-104.33358459490404,22.20192415613741],[-104.33428623744987,22.202184074652735],[-104.33591660264409,22.20230824814911],[-104.33649431671944,22.20245019451545],[-104.33672062807574,22.202568418499652],[-104.33739500777256,22.20310836794016],[-104.33956160792462,22.205290730494823],[-104.34029367679301,22.20589425216906],[-104.3407715303943,22.20701277949138],[-104.34097671005088,22.207593437337437],[-104.34102885256624,22.207786934311116],[-104.34118125066232,22.208415604912375],[-104.34114051842005,22.210819424003716],[-104.34049710409892,22.212494284818035],[-104.34020324993179,22.21286281661844],[-104.33898042454138,22.21374661765543],[-104.33791575511725,22.214308428665618],[-104.3366686561647,22.214921118652],[-104.33595092417221,22.21513900656271],[-104.33533962451827,22.215309882486622],[-104.33462277696248,22.215578592962345],[-104.33380538513984,22.21705481003488],[-104.33371085603437,22.217479568367025],[-104.3336821722196,22.217633275054368],[-104.33369587898926,22.217968805863393],[-104.33359354787456,22.218504908003865],[-104.33288861726015,22.219010390943822],[-104.33332719471747,22.220167237843157],[-104.33328655936208,22.221042183398993],[-104.3328036498902,22.221569929768975],[-104.33258327893009,22.22176062201936],[-104.33223124225611,22.222127171967657],[-104.33215006129461,22.22267132419279],[-104.3323230965143,22.223198916608396],[-104.3320255275894,22.22419484721661],[-104.33190570619769,22.22459250505625],[-104.33177124006954,22.225162951554637],[-104.33148985738165,22.225786883709645],[-104.33197848391296,22.226333117976367],[-104.33198216635293,22.22721304612395],[-104.33178772202854,22.228557270398596],[-104.33131486192246,22.229009298803703],[-104.33037603810527,22.229694443127016],[-104.32994586255103,22.229910675536416],[-104.32965292829647,22.230000448849125],[-104.3292006576724,22.229956446147753],[-104.32808697713494,22.230513482872936],[-104.32755958838214,22.230747520032196],[-104.32662290592503,22.2309977250535],[-104.32634937159537,22.231249713037016],[-104.32619194134395,22.231449104819433],[-104.32589756323978,22.231792196750803],[-104.32591732560599,22.231919004300494],[-104.32611021526071,22.232355515055872],[-104.32636193421621,22.232810203066833],[-104.32655419393978,22.233210406922865],[-104.3267478495095,22.23341085146916],[-104.32705871763932,22.23390186898024],[-104.32709390052537,22.234409761689506],[-104.32711016616202,22.235063204354788],[-104.32711619039725,22.237758671310758],[-104.32795214607268,22.238160951111695],[-104.32849678610495,22.238634815020475],[-104.32829943432694,22.239341421897166],[-104.32825654258068,22.239957627659635],[-104.3284107686136,22.24041287918857],[-104.32852182248467,22.24135632674563],[-104.32869483591821,22.241882110604934],[-104.32812438710187,22.243452325468127],[-104.32835535132568,22.243833785539323],[-104.32873995024408,22.245195274142247],[-104.32860165659389,22.24548607789859],[-104.32819021884279,22.245829128752973],[-104.32768221940671,22.246171821767234],[-104.32758269341292,22.24622507605568],[-104.32678164066783,22.246820959156935],[-104.32689854747997,22.24709338022342],[-104.32716753687401,22.247138343781273],[-104.32741933845574,22.24748408266555],[-104.32737887598688,22.247792473339246],[-104.32694900522745,22.247917902504298],[-104.32615983701595,22.24842332006841],[-104.32594720942461,22.248703154314683],[-104.32576543447033,22.248998813919968],[-104.32536434061814,22.249128438113303],[-104.32448725597845,22.249608506238417],[-104.32410345392344,22.249884323827814],[-104.32369960302469,22.25042132182341],[-104.32339519693653,22.251020883482397],[-104.32332284602847,22.25140803183615],[-104.3233212538754,22.25160235553301],[-104.32322916492313,22.252024710485614],[-104.32295644826462,22.252639449464823],[-104.32270207865065,22.25287920829288],[-104.32256675732282,22.253103304652484],[-104.32247081051855,22.25366206201693],[-104.32205902163241,22.254019786376773],[-104.32130192629756,22.254397662509803],[-104.32098441436267,22.25482574693268],[-104.32055512041296,22.255101456650323],[-104.3199345155125,22.255469790735845],[-104.31956238603061,22.256260681865115],[-104.31943588440731,22.256382241958875],[-104.31906101959521,22.25655242299291],[-104.31746129239536,22.256850339123275],[-104.3171313853639,22.256668272938214],[-104.3167611990009,22.25641327150049],[-104.31618528559568,22.256274850366026],[-104.31528489766231,22.256942075665563],[-104.31460014133415,22.257501647195454],[-104.31415064729231,22.25773537581324],[-104.31379704388064,22.258043019115917],[-104.31316769664505,22.25898314483078],[-104.31255805914543,22.259861180202847],[-104.31237285563799,22.260243699562295],[-104.31225944757699,22.26053021154604],[-104.3120459818997,22.260932139015836],[-104.31173843093615,22.261546268198174],[-104.3112041658502,22.262769161327867],[-104.31039822902824,22.263386969367843],[-104.3093882696403,22.263224306043412],[-104.30886531901223,22.263724228678257],[-104.30816811046384,22.264187720293137],[-104.30758849995055,22.26462674982122],[-104.30672602895106,22.264953800399837],[-104.30666636804273,22.26533964570291],[-104.30642147521769,22.265957056311606],[-104.30588463437891,22.266670534731986],[-104.30496036402974,22.267769312606504],[-104.30382875297971,22.268893883101214],[-104.3035311095843,22.269168889469995],[-104.30317263521579,22.27015841919092],[-104.30039326783441,22.273468535805648],[-104.30037870762169,22.274136741425934],[-104.30025236866754,22.27505202785619],[-104.30011576302923,22.275871324742184],[-104.2986023865605,22.27635046987058],[-104.29811614501511,22.276088846835307],[-104.297743615949,22.27581738997179],[-104.29747964152614,22.275756223801523],[-104.29671004341122,22.276051210202127],[-104.29626722101506,22.27634625681685],[-104.29563950466957,22.276908462279096],[-104.29519789400484,22.280495368574805],[-104.29396399927259,22.281407245372918],[-104.29326294153884,22.28324753212644],[-104.29278762335093,22.284206879090277],[-104.2926144114565,22.284654613111],[-104.29167760548796,22.285276932508964],[-104.29057641633403,22.284929907546427],[-104.28949937700929,22.285342918691867],[-104.28875848043748,22.28564002794178],[-104.28933904769565,22.286095087372985],[-104.29020516102253,22.286717651247784],[-104.29026061101348,22.2868221446073],[-104.2898052870691,22.28715002692826],[-104.28923845346236,22.287639994820097],[-104.28994090184085,22.28793052159358],[-104.29009833408657,22.28872407376673],[-104.28986190117752,22.289277441051695],[-104.2896952768931,22.289483396796072],[-104.28939609450322,22.28975538754173],[-104.2891943755406,22.290749422513954],[-104.2895129343134,22.291350144382818],[-104.28979225422842,22.291809480641803],[-104.28987321448432,22.292041908416422],[-104.28957288258835,22.29248349258262],[-104.2897956371778,22.293417209324616],[-104.28971484327741,22.29366711018406],[-104.28939626347727,22.294225770721994],[-104.28920681794983,22.294518740667],[-104.28888185765652,22.29507287553014],[-104.28861899101685,22.295336785351594],[-104.28733699855508,22.295998236762046],[-104.28669452185665,22.29628104269841],[-104.28614958115145,22.29639840304975],[-104.28576780203542,22.29649000180939],[-104.28561229670129,22.296558504038558],[-104.28519325089229,22.296692838348974],[-104.28500578214624,22.296865184148828],[-104.2848659028827,22.297093518656766],[-104.28482534359102,22.2974481717697],[-104.28474975735173,22.29802019700378],[-104.28447881860677,22.29896699245012],[-104.28467482574445,22.29950049094134],[-104.28482891355014,22.299778636849055],[-104.28487830282563,22.300410172587817],[-104.28474266441287,22.301337718098978],[-104.28500329713893,22.301910659651128],[-104.28483581248793,22.302652044552303],[-104.28648402388586,22.303661884098858],[-104.28719993654664,22.30457299150811],[-104.28721374220174,22.304900335350283],[-104.28724015536329,22.305206858875636],[-104.287989955559,22.305466156725288],[-104.28972019134437,22.307179146857607],[-104.29022913011187,22.307243955520562],[-104.2923419867459,22.30695672885429],[-104.29254918358379,22.30724167813554],[-104.29269084332213,22.30780165516188],[-104.29267720474093,22.308271833603328],[-104.2928317253058,22.308706250869932],[-104.29274175323025,22.30926782716847],[-104.29293470546122,22.309454640012575],[-104.29309072640649,22.30997725967461],[-104.29314413175086,22.310311440303735],[-104.29320067018375,22.31047856335283],[-104.29338334329356,22.31088803869534],[-104.29353367792947,22.311232625218963],[-104.29377597285617,22.312272214182144],[-104.29391895894724,22.312529749955445],[-104.29401699407532,22.312669925650653],[-104.29417345902755,22.312860074843968],[-104.29436649547154,22.31310635430623],[-104.29446648378268,22.31328237969001],[-104.29452357399089,22.313430861049483],[-104.29460352369284,22.313866906746227],[-104.29441955417127,22.31468767788334],[-104.29401845622647,22.315203247124145],[-104.2939280508977,22.31533875364147],[-104.29359141103026,22.315736650708743],[-104.2933526441497,22.316028206474073],[-104.29317563662158,22.316516575399078],[-104.29297869631131,22.318572560908592],[-104.29312222321147,22.318790856041687],[-104.29315112299366,22.31888062853153],[-104.2930377571708,22.31908585649097],[-104.29294225120145,22.31917285030346],[-104.29280546135232,22.31931828523284],[-104.29268596794896,22.319456528999297],[-104.2926286762144,22.31959615176845],[-104.29287145771502,22.32020981232762],[-104.2931969001288,22.320546806127993],[-104.29355911476489,22.32083517062614],[-104.29379704742786,22.32092850835727],[-104.29397666118399,22.321029806350168],[-104.29416830523053,22.32123961552145],[-104.29448890147285,22.32155776061643],[-104.2966874881646,22.32276743212111],[-104.29692267261413,22.3231951515383],[-104.29729235135693,22.323251033812767],[-104.29777716280944,22.32335366541963],[-104.29784929727288,22.32346244819496],[-104.29800206554523,22.32366354441035],[-104.29814670404971,22.32385458847682],[-104.29831063689937,22.324464588881312],[-104.29839092240707,22.32478006472445],[-104.298722072754,22.32512636036836],[-104.29910630061278,22.325620893132736],[-104.29940782568212,22.326725048224375],[-104.29952568061702,22.327088491552956],[-104.29940105818145,22.32773801229291],[-104.29895202214038,22.327994188241973],[-104.298394632986,22.32798382451915],[-104.29717323838571,22.328767563130384],[-104.29673806858631,22.328858071214995],[-104.29568744892481,22.328527762878025],[-104.2949167185443,22.328252994506045],[-104.29355458014419,22.328972229970873],[-104.29318922492553,22.32982790587789],[-104.29383217095028,22.335942851705624],[-104.29516398051106,22.337261596951066],[-104.2952588302669,22.339893504823692],[-104.2966932327472,22.34171493507847],[-104.29771835990351,22.3446204991144],[-104.29814791926356,22.345399628488963],[-104.29837629247095,22.346943842991152],[-104.29786025794232,22.348180438460588],[-104.29716983557728,22.3481589504986],[-104.29525799328763,22.34754643255269],[-104.2938889208371,22.345690132719596],[-104.29288603863057,22.34469453411657]]]]},"properties":{"cve_ent":"18"},"id":"inegi_refcenesta_2010.19"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.97899540481734,19.07445595350987],[-98.98359448558631,19.078763251047917],[-99.02899368204368,19.08536879231866],[-99.04320886421806,19.075755460793005],[-99.05980023334854,19.048236664110163],[-99.12543312082187,19.06206471871394],[-99.13537901575546,19.089296071150784],[-99.22677778069317,19.096060003766524],[-99.27869521819008,19.131701727064637],[-99.29507790227291,19.122931507512078],[-99.3137441259301,19.098218869816947],[-99.3183189798105,19.087416830166603],[-99.3171890656377,19.081867195176983],[-99.31799521174617,19.072571543457173],[-99.3191156982914,19.06571361721285],[-99.31909129589536,19.06064487151275],[-99.3176964501647,19.053385368216993],[-99.31616943954481,19.048787219634562],[-99.31097039993853,19.043605874458365],[-99.30857024812451,19.04030135377161],[-99.31749171895603,19.040125850787888],[-99.31890637216537,19.031068705733503],[-99.31175782110279,19.024650082756523],[-99.31343111591593,19.02288442689678],[-99.31874617003984,19.01997352142706],[-99.31883784159862,19.012745431593544],[-99.31967044206897,19.011271697722634],[-99.31406991589876,19.00055456245417],[-99.30846782941768,18.994005491296775],[-99.31105383337893,18.991653684932373],[-99.30953446173629,18.97470596559191],[-99.30998316333262,18.962414613981252],[-99.30871640366729,18.958797735105236],[-99.31059777469943,18.956853501493413],[-99.31104257217896,18.95282867852484],[-99.31303623076394,18.9481173557449],[-99.31702533696142,18.9431145994198],[-99.3171627984159,18.940000133034403],[-99.32099577346168,18.943224727495362],[-99.32156955962233,18.9402897835497],[-99.32546936556156,18.93691486057645],[-99.3300988414403,18.936696632541498],[-99.33396250340206,18.934951709588518],[-99.33544450385199,18.932776057675483],[-99.33790483963338,18.932399094522395],[-99.33914534517487,18.92653251308326],[-99.34245946735132,18.922672147426965],[-99.34463647903618,18.91862430966546],[-99.34890662359527,18.916450585026382],[-99.35253038096289,18.911673265640616],[-99.35840155648907,18.906476009579023],[-99.35942555997883,18.904627683243802],[-99.36476346052297,18.898999268846183],[-99.3670368261914,18.89399878584993],[-99.37312832899323,18.898629802214998],[-99.40665363595383,18.895187747559305],[-99.41095701778113,18.878183860909132],[-99.41567984662817,18.877901343425776],[-99.41827451908728,18.87946372652334],[-99.42191484377491,18.87959807416871],[-99.42284730241829,18.87833466402168],[-99.42935451922699,18.877569284998458],[-99.42977712337171,18.87683992712317],[-99.430998908618,18.86574711496121],[-99.42617867120526,18.864285761208862],[-99.4254106509805,18.85938923217276],[-99.43225920407332,18.857813695085667],[-99.4321957058716,18.85351798553313],[-99.43031054696917,18.842285026736988],[-99.43010701802314,18.832612454585046],[-99.42729867467415,18.827907812143735],[-99.42588876307877,18.826432962383365],[-99.4278242856663,18.82227409318216],[-99.45097173108752,18.772519947419653],[-99.45588282364565,18.771709452605478],[-99.45569765416371,18.76984192061491],[-99.45899756250031,18.76997463849125],[-99.4633187408665,18.767186535780922],[-99.46483102815307,18.761688326121316],[-99.46619209431225,18.753773441455223],[-99.46855107086554,18.751501230298402],[-99.47070673856314,18.74768218269901],[-99.48514882894136,18.731636434638233],[-99.48825946681507,18.73113387397052],[-99.48782549982826,18.728068869281174],[-99.49441414768029,18.720544799546644],[-99.48876896832911,18.708987012109276],[-99.48603459353575,18.703226767288243],[-99.48425909478755,18.698456979564526],[-99.48556289947942,18.695033681871564],[-99.48385997425413,18.694776547140805],[-99.4831844272851,18.693658894129783],[-99.48138920167003,18.695058688509903],[-99.48096003488763,18.693225412493575],[-99.48291342563357,18.692655011676152],[-99.48151008337368,18.68745633169226],[-99.48069612164312,18.684441902858964],[-99.47863541973953,18.67740479823675],[-99.47757604102338,18.673565250216257],[-99.47544138469061,18.670841292516855],[-99.47519332572631,18.66912291197923],[-99.47480191719336,18.66844973945581],[-99.4746142361343,18.66752347299706],[-99.47415430913873,18.66524441661096],[-99.46715487842795,18.650144314892998],[-99.46583116209018,18.647417967285037],[-99.4644158823009,18.643669992574928],[-99.46021211802696,18.638183603258028],[-99.4580972565173,18.634061399337213],[-99.45803618769867,18.63083279509192],[-99.45764718678328,18.628475945133346],[-99.45622268905896,18.622495687078015],[-99.45509538717317,18.618315044031704],[-99.45550183643746,18.614000089502724],[-99.45388632811836,18.609902329451074],[-99.45146508129682,18.612336326879927],[-99.44877664314652,18.61209998513681],[-99.44609749436529,18.614492685497112],[-99.44120146217085,18.61257400735684],[-99.43995340192015,18.6109804697316],[-99.4413128385151,18.605402449035807],[-99.44272504699529,18.603160772665547],[-99.44049500010442,18.597464398539557],[-99.43517942052046,18.598067935413553],[-99.43564334175318,18.592761388978033],[-99.4317402601501,18.591165421279243],[-99.4293810229778,18.588920914677317],[-99.4259644327746,18.590748865316186],[-99.42339555529634,18.591277152272426],[-99.42193761625259,18.58891039885515],[-99.41970444502954,18.590336665786936],[-99.42050583645181,18.586222363037223],[-99.4252944451166,18.579127555377454],[-99.42433055881793,18.571925713163296],[-99.4228821877864,18.562067882602037],[-99.4153532830743,18.559683071880897],[-99.41382047780968,18.558632770307327],[-99.41376514728489,18.5589029289182],[-99.40780443150015,18.556066366496623],[-99.40583232445027,18.553576568397773],[-99.4069006744466,18.553131155193284],[-99.40677891488787,18.552931249145843],[-99.40072003495305,18.542894850247023],[-99.4008056009468,18.539535385880242],[-99.39923128504819,18.540406795317494],[-99.39107572746786,18.527011182983074],[-99.39098038845486,18.526853772139077],[-99.39027119081146,18.52568283045946],[-99.38529849064287,18.5262830116572],[-99.38387732012256,18.52115206052906],[-99.37921612254257,18.52053068786671],[-99.37633421522133,18.51366455810671],[-99.37238540411897,18.507890546113742],[-99.36295191796648,18.499026723954785],[-99.36418271303711,18.497708232677553],[-99.36412222257621,18.49249328688984],[-99.36423969947003,18.485144182242323],[-99.35557863080885,18.477218513997627],[-99.35505336328345,18.476737808174732],[-99.35740426503787,18.467669174830178],[-99.34647057154905,18.466487971646757],[-99.34698803424504,18.467676479778333],[-99.34344566427791,18.467127862201323],[-99.35070675773073,18.47897050150698],[-99.35267525666995,18.485980827141987],[-99.34605637106796,18.483948022607194],[-99.3455555348956,18.48229653111855],[-99.33664005162615,18.483938578663412],[-99.32941324981107,18.488927547633978],[-99.32826427505495,18.488831539127773],[-99.3288084514175,18.470656815617417],[-99.32940879092445,18.462437193494907],[-99.32836781961595,18.459540241990794],[-99.32321001290052,18.457867579406184],[-99.31579704626506,18.45578914940404],[-99.31215226206581,18.454787328534735],[-99.31005764672722,18.45668059043345],[-99.30423665309877,18.459473381266378],[-99.29131631822975,18.458255277801868],[-99.28776167969056,18.45727607743362],[-99.28741400256871,18.458769441298898],[-99.28407729994626,18.45641858986113],[-99.28316874816187,18.45750823210136],[-99.28156673277238,18.455569379405233],[-99.28082336137032,18.455092462366395],[-99.27648000554893,18.454173886613148],[-99.27505456735196,18.453784101529095],[-99.27500643654923,18.45401200421071],[-99.2476073344086,18.450999252674137],[-99.2461858714401,18.451711897001644],[-99.24600706243501,18.456433374756557],[-99.20542162981343,18.456588801314922],[-99.20442935780994,18.455281954598036],[-99.2066740276743,18.447434436405274],[-99.18881626461882,18.435206351798342],[-99.17790536842705,18.42474524361205],[-99.17934988941715,18.42889514506726],[-99.18224220287715,18.44042877762314],[-99.18131507543984,18.448417752542582],[-99.17896131892076,18.450847896210405],[-99.17870018673909,18.450851655109034],[-99.17255729703277,18.45505869336722],[-99.17047969117999,18.45522361120112],[-99.16782060530238,18.45871802933749],[-99.16372055951359,18.46185627075903],[-99.16394094798136,18.462629224891202],[-99.16319584381029,18.462797637488677],[-99.16236060768318,18.462875000696613],[-99.16031537121205,18.46433449923819],[-99.15846090405569,18.463619284463505],[-99.1561275660456,18.466348434669783],[-99.14912030492803,18.467436951010484],[-99.14679816970374,18.46488133474537],[-99.14225544020866,18.46561273184699],[-99.14270978644475,18.467843817183734],[-99.14116445011388,18.469083809299832],[-99.14455173288371,18.47271872356862],[-99.14482451480359,18.474915599297788],[-99.14489268725629,18.47543251182958],[-99.14062335279937,18.474973099467718],[-99.14057280817292,18.47066824364964],[-99.13788767460767,18.469568900547927],[-99.13943403404937,18.464051476015527],[-99.13554288366811,18.460801932147774],[-99.13405884118703,18.456360225775995],[-99.13637537589614,18.450142582065155],[-99.13267409334725,18.44640285103759],[-99.13239698907313,18.443663767780833],[-99.12958546745762,18.44083101584772],[-99.12520025086974,18.44245167377875],[-99.12439524031498,18.441239650686953],[-99.12495879805499,18.43627588755004],[-99.12867960284586,18.433698475610697],[-99.13019566057767,18.43093775562869],[-99.12789928819774,18.42671470190379],[-99.12407756228345,18.424103144196124],[-99.12233122449976,18.4239181542888],[-99.11795554846594,18.4208617286763],[-99.11275378693074,18.418502132947538],[-99.11094394255451,18.419203267677744],[-99.10830380636816,18.415048455804538],[-99.10828881035945,18.413835268918092],[-99.10805687829486,18.410856344941635],[-99.10509328067673,18.406411152433122],[-99.10051832571332,18.401189000947852],[-99.09939671502491,18.400694620439765],[-99.09449251234469,18.401740796958336],[-99.08954689240869,18.399985729941307],[-99.08778911516885,18.395647475347857],[-99.08415253975033,18.39136799804345],[-99.07853644787951,18.387065973081576],[-99.07939133733561,18.377853099293247],[-99.08154637455078,18.374052538037347],[-99.07983989989685,18.372608018382664],[-99.07812618395928,18.373463103782512],[-99.07416092523283,18.377488773048185],[-99.07283926553833,18.377312462867337],[-99.07239120728605,18.373400151317924],[-99.06999781197158,18.36889534981526],[-99.06798384455237,18.369337478889577],[-99.06605051330348,18.36710521100366],[-99.06579043874319,18.361436665807446],[-99.06639680230967,18.358905866028408],[-99.07031646634488,18.360127543233887],[-99.07116330666878,18.35638331095589],[-99.06988770277337,18.353664168910825],[-99.06985461077801,18.350423442412307],[-99.07556487235519,18.344618803027515],[-99.075498093992,18.33997046318416],[-99.07167877374093,18.335208511712437],[-99.0678564350398,18.334075493957982],[-99.06596398478155,18.33256650179402],[-99.0630401824119,18.332789004077654],[-99.06060597389325,18.33513256050037],[-99.06058456569178,18.33518377136079],[-99.05768918795968,18.338457698097102],[-99.05769460422647,18.340979132656912],[-99.05764836849397,18.341370112695472],[-99.05792030431041,18.34216828061409],[-99.05833823726863,18.34278839133509],[-99.05949836820281,18.346362847983755],[-99.05907220339071,18.34718101229464],[-99.05877252141585,18.348855516885465],[-99.04852625250544,18.35124177553479],[-99.0476645839795,18.354173727592126],[-99.04373259997601,18.355585410635683],[-99.0432628753768,18.356301503734414],[-99.0435426651843,18.359447237140444],[-99.03836782500628,18.358785716370733],[-99.03692470985357,18.360910255683052],[-99.03510216867915,18.363570105832423],[-99.0358245565618,18.364599957649034],[-99.03563090572135,18.365478605581416],[-99.03520211687578,18.365325697997378],[-99.0349259976777,18.365244039234597],[-99.03464506814419,18.365237197858107],[-99.03144069894819,18.364941692646653],[-99.03146314685569,18.367430926373913],[-99.02914345509072,18.368391430089048],[-99.02893298580568,18.368584019619846],[-99.02613287973105,18.37224857370512],[-99.02396954658889,18.372282963330463],[-99.0237914444516,18.376395661621757],[-99.02052774013322,18.377019820213775],[-99.01874649475474,18.382566139696166],[-99.01817507650657,18.387784376736022],[-99.01781564804918,18.387955914174654],[-99.01498744706885,18.386640817451223],[-99.0140933277815,18.388109857672077],[-99.01263864312222,18.386045537174596],[-99.01031819491624,18.38606668657718],[-99.00929127184338,18.386026681868316],[-99.00820640217444,18.388174048242092],[-99.00609870878367,18.38907912806775],[-99.00536487962569,18.389910218727152],[-99.00455478169704,18.389620043788113],[-99.00369033310096,18.389514049500633],[-99.00277377051833,18.38941871105169],[-99.00093492251898,18.388257157138753],[-98.9981854440149,18.38971887536769],[-98.99835009101758,18.390364913786357],[-98.99922358068164,18.391930211831493],[-98.99509521566131,18.39500087463017],[-98.99063162724957,18.39476019227226],[-98.99086365728334,18.396842420321775],[-98.98839442063957,18.396698589409084],[-98.9890245861522,18.398691959142184],[-98.9870636765321,18.400233147081394],[-98.98752045743169,18.40220283748738],[-98.98624071030127,18.405049810222977],[-98.9834864221836,18.405801630756457],[-98.98549389704374,18.407717753617362],[-98.98550331731178,18.40791470799337],[-98.98687248534213,18.409482825322016],[-98.98590107037586,18.4111161704011],[-98.9876948234002,18.411850636287056],[-98.98449073985842,18.414951570652534],[-98.98629856173267,18.416382948407318],[-98.98379399617778,18.417653965253237],[-98.98351522285105,18.41942603976173],[-98.985372439927,18.421153982188912],[-98.98342216700394,18.421375333377114],[-98.98170922432001,18.423592237826313],[-98.97898230771682,18.422471930797258],[-98.97719963596995,18.42363411661171],[-98.97397036480152,18.417139049224318],[-98.9710891098,18.417474094053205],[-98.97034593211049,18.418891656862513],[-98.96803344347268,18.417767667941405],[-98.96677055509656,18.418713854604448],[-98.9596661235455,18.41893399051395],[-98.95720481078399,18.420218226325005],[-98.95544090226105,18.417914091252214],[-98.9506118630926,18.41769138587364],[-98.94940314909462,18.42260863909314],[-98.94560585031167,18.421730851609766],[-98.94439895853964,18.420445728256766],[-98.94147317482413,18.421685315416823],[-98.93515195137672,18.422903849289014],[-98.9295371164668,18.427484874963568],[-98.92800621073314,18.427219530290756],[-98.92429815379467,18.429272568347244],[-98.92244087891658,18.42827707840081],[-98.92214077313338,18.428455055725237],[-98.91931732915828,18.43196484173319],[-98.92022761696325,18.434409460197458],[-98.91959207239319,18.43674626784548],[-98.92051861928155,18.441590377999034],[-98.92033253068746,18.442299139870272],[-98.9149537594825,18.441424562040368],[-98.91509466891586,18.446641582580526],[-98.91409675879908,18.447671883572298],[-98.91575603129883,18.453976036787367],[-98.91450813291294,18.458871859772955],[-98.90898035946287,18.459146792553838],[-98.908232144419,18.45934465711133],[-98.90557211701042,18.459541569337773],[-98.9122213632428,18.46065479311312],[-98.91086127667029,18.462061493176577],[-98.89854952391204,18.465514791352007],[-98.8979773118557,18.465789177239515],[-98.89668767670929,18.466068375104726],[-98.89656767409895,18.466345279947063],[-98.89350522094031,18.469058105050465],[-98.8896994808656,18.46989241237361],[-98.88429418928655,18.472862485312817],[-98.88404472967682,18.472981263533484],[-98.87976463810531,18.473794451263984],[-98.87965214464305,18.474277959407573],[-98.8747238050189,18.47680932409628],[-98.872427182509,18.477043713579747],[-98.87057955784212,18.47920232781695],[-98.8659987745583,18.478695737873977],[-98.8651087201817,18.479751465835022],[-98.86101674262056,18.477124057207106],[-98.8574927922977,18.477049333353364],[-98.85180901033345,18.47876793132434],[-98.85018808696873,18.478244649298063],[-98.84608525078602,18.483201050539833],[-98.84449853739471,18.48340991628322],[-98.84458076876257,18.48996685338443],[-98.84192280732191,18.492402972497246],[-98.83952384299891,18.4931811489123],[-98.83648596914242,18.49455695448222],[-98.83707545681477,18.49869225114196],[-98.83950687874312,18.50382760571216],[-98.83971887137386,18.504028326094897],[-98.84020761604864,18.504381381476094],[-98.84097013120612,18.50480514487964],[-98.84209621665707,18.50525547083629],[-98.84295172993188,18.505164148883978],[-98.8417416612022,18.507285702093327],[-98.83850781416743,18.50690949822564],[-98.84034406872189,18.512771618114357],[-98.83708272412048,18.51833675665472],[-98.83521994719177,18.520050663832194],[-98.83484552936278,18.520827388236796],[-98.83132362141635,18.520972669442187],[-98.83027171453546,18.522193141781543],[-98.82736307186036,18.52225411314072],[-98.8268433175017,18.522585214168885],[-98.82414832005969,18.520932559856817],[-98.8218566933673,18.521062623614796],[-98.821545978232,18.521075832197482],[-98.82029073292864,18.519456813423858],[-98.81804253423309,18.521076373184314],[-98.81640862190852,18.51817807228082],[-98.81243359710942,18.520337012607058],[-98.81050713440237,18.519203557455114],[-98.81128576624377,18.515327871148827],[-98.80884562330618,18.514775277795025],[-98.80866325308631,18.51389260371417],[-98.80936557392931,18.513029869744912],[-98.80984645384962,18.511362216636144],[-98.80747167875421,18.510463759486242],[-98.80721250573293,18.50877486623432],[-98.80676944180829,18.507474094057613],[-98.80545356366503,18.50724164302369],[-98.80442378039982,18.5064372691657],[-98.80422119095323,18.506335066587212],[-98.80344350333024,18.505835488630055],[-98.80234006696003,18.504085492187016],[-98.80381514812882,18.502431978425705],[-98.80082242087332,18.502677924480565],[-98.80017310101726,18.502769409044618],[-98.79982600423887,18.502762019151874],[-98.79947098636472,18.50208916339068],[-98.7994243744314,18.50141997957246],[-98.7994587756387,18.501063937597394],[-98.7995450544405,18.499810389737377],[-98.79939258159015,18.4989676681368],[-98.79895421562003,18.498089373473988],[-98.79515836111659,18.49750396665479],[-98.79345695288293,18.497208140581677],[-98.79319464608727,18.495679469996162],[-98.79317921191353,18.49431829101792],[-98.78910370204449,18.490962918417893],[-98.78753360658675,18.492709469254976],[-98.7871733793362,18.49085076952042],[-98.78601048474633,18.48908079247957],[-98.78464771214624,18.488385363075054],[-98.78386803348843,18.488126088160584],[-98.78361056615898,18.487217663442607],[-98.7861880610829,18.485602525609124],[-98.78694413437472,18.48510850082505],[-98.78677324614927,18.484627181011717],[-98.78259745255986,18.482154376446886],[-98.78225606662346,18.481906375299616],[-98.77963560594958,18.480386616632586],[-98.77646211414265,18.482052336514244],[-98.7744332599317,18.481993905477736],[-98.77120918751706,18.477399573032756],[-98.7704016242406,18.477923457319832],[-98.76542560279916,18.476116556540262],[-98.7650778018695,18.476038000514563],[-98.7629672193508,18.476344077330737],[-98.7607508100736,18.475036830196018],[-98.76020185195978,18.471970239927316],[-98.75831121624594,18.47248147892674],[-98.75849599957093,18.470335245460944],[-98.75878050689789,18.46967573338202],[-98.75750460278982,18.46558950908394],[-98.75778550948871,18.463086766018876],[-98.75454832433934,18.461362302764712],[-98.75549603658811,18.458290655119697],[-98.75535830418306,18.4570372534551],[-98.75486362461749,18.457130297248398],[-98.75349390440061,18.4572079584853],[-98.75219134707726,18.453924204339728],[-98.74922876757876,18.4535879893603],[-98.7475935473048,18.451434316718633],[-98.74544046942714,18.452842702880105],[-98.7449602969536,18.454580073722866],[-98.73808318606291,18.455737922431126],[-98.73692343944708,18.452949597810914],[-98.73710948951293,18.45031568274652],[-98.73527897805593,18.44737085791826],[-98.73462481851038,18.443974958368074],[-98.73004678557754,18.440456089374038],[-98.72640000169497,18.44026214895331],[-98.72451869070528,18.44159030047257],[-98.7156498633804,18.444463454709762],[-98.7100513598869,18.44558737127261],[-98.70673567739067,18.445897430257673],[-98.70712736873804,18.447021020077443],[-98.71149464968283,18.45180101830914],[-98.71118082667562,18.45293139197281],[-98.70587106698281,18.45590020631596],[-98.71028306653568,18.45742088036485],[-98.70813017807245,18.458145149506777],[-98.71025177208901,18.463015422394676],[-98.70664772400681,18.46353635735528],[-98.70639472663328,18.46471651752097],[-98.70991061667104,18.464894837024815],[-98.71041556574409,18.468066808537117],[-98.70860808881162,18.46994396641321],[-98.70726842524141,18.468919506020086],[-98.70446204402742,18.471827853470074],[-98.70755732877149,18.47273854361913],[-98.70534717880969,18.475692837945246],[-98.7063519361567,18.47630104197856],[-98.70772461996626,18.477425063745216],[-98.70707170519421,18.479133344143975],[-98.70386115378113,18.478522796891582],[-98.7024628055492,18.47992493645586],[-98.703290944446,18.482001837790108],[-98.70188370597828,18.48394200569095],[-98.70278962075872,18.485093795395642],[-98.70283922813582,18.486353512685753],[-98.70202496620101,18.48714441370936],[-98.70167913851327,18.487460118314743],[-98.70072857153411,18.4885270035262],[-98.70026406204784,18.488509821837965],[-98.69953265315547,18.48967557770652],[-98.69897388412426,18.4949804921323],[-98.70180621489675,18.49698608791067],[-98.70462759084171,18.493799620129437],[-98.70733009915602,18.492850846347608],[-98.7081889848534,18.49512326257434],[-98.70708397994031,18.49703798969523],[-98.7078115641931,18.497223574715292],[-98.70835180382505,18.497917800961375],[-98.70582811577992,18.50276214375083],[-98.70431093850056,18.50407794454435],[-98.70667227548563,18.511367878157728],[-98.70489972898707,18.5126042578907],[-98.70268438588113,18.511053729543562],[-98.70193993973407,18.512185957259078],[-98.70583745510578,18.513499861372907],[-98.70676177809759,18.513452010864114],[-98.71005494895718,18.5142006462072],[-98.71047406830928,18.514531125890812],[-98.71292738983266,18.518657957836638],[-98.71158372788705,18.52082966253414],[-98.71085581598408,18.521019035337133],[-98.70963751478843,18.524028040800545],[-98.70859251131799,18.52488622324819],[-98.7069859958894,18.52446772726489],[-98.70638838170709,18.527414700248585],[-98.70637155680907,18.528310500783448],[-98.70639578677776,18.529668865878193],[-98.7063888316693,18.53074593045227],[-98.70648065177699,18.53131648526454],[-98.7060264451564,18.531877582317804],[-98.7057085002429,18.5322660285359],[-98.70502862725067,18.5322649685678],[-98.70354762925615,18.533597531007217],[-98.70357300499774,18.534413566351077],[-98.70310439301943,18.53514259486417],[-98.7029527918537,18.535825990523847],[-98.70314997137689,18.539789985345863],[-98.70600374474918,18.54193417731119],[-98.70750229513897,18.54738540387075],[-98.70663883097848,18.54868053033084],[-98.70627515896206,18.549284991103832],[-98.70529130691546,18.551779836230992],[-98.70568932265866,18.552300067223825],[-98.71228756247416,18.55732860013711],[-98.71040881805368,18.559632475924502],[-98.71448256036615,18.55971690042884],[-98.71473749358228,18.56203767169967],[-98.71667356353561,18.565919978246143],[-98.7137730227447,18.5654159586785],[-98.71444850785798,18.567399797602604],[-98.71435733005495,18.567702172213785],[-98.71181474769679,18.569988733920354],[-98.71514563950262,18.56842010762574],[-98.71461530075817,18.57143250753603],[-98.7167689930775,18.57311268152978],[-98.71584147307328,18.574250876235737],[-98.71363005278715,18.572953840201933],[-98.71171748535437,18.573679310087016],[-98.71195894123525,18.57545988016949],[-98.71437659389403,18.577932216746376],[-98.7143502242248,18.578902883122453],[-98.71390253608661,18.58206003464096],[-98.71374601622188,18.582658411270472],[-98.71324264716435,18.583647041892107],[-98.71290696526819,18.5840350831524],[-98.71259534980294,18.585171692732672],[-98.71246966366573,18.585800834870724],[-98.71256629595189,18.587957606177497],[-98.71568313535914,18.594963254312006],[-98.71739328094856,18.595343687759623],[-98.71751931361206,18.596016663233513],[-98.71701841805441,18.598458106406838],[-98.71725766158733,18.59902000527933],[-98.71988308991558,18.600228492834333],[-98.71788599338112,18.60248686142944],[-98.7177657304963,18.60289046256736],[-98.71798594399468,18.603587354661443],[-98.71839029196803,18.603851951129172],[-98.71476564540751,18.60658181545722],[-98.71354904583939,18.606309771559722],[-98.71402250592183,18.61328879282587],[-98.71218553599181,18.614408869230488],[-98.71178169578047,18.618009540006085],[-98.71201940851796,18.618578524211216],[-98.71407930009707,18.62373718929939],[-98.71666243662992,18.62529533357025],[-98.71729454009949,18.627949860886076],[-98.71638432289154,18.62951851888232],[-98.71665024195352,18.62962964342904],[-98.71773082846153,18.630219277001004],[-98.71772344278156,18.63469243665685],[-98.71804070975139,18.635299439647667],[-98.71907319140252,18.636438230740737],[-98.71779699864715,18.63833172994441],[-98.71911927571409,18.64336156375998],[-98.71893509249492,18.643793887194988],[-98.71847429346275,18.647866283666588],[-98.7193638812223,18.652881917328557],[-98.71932378814978,18.65307140160769],[-98.71952228962613,18.653337056997316],[-98.71948199995131,18.653640256389792],[-98.71989608290033,18.655953372435533],[-98.7237716547071,18.65819559381174],[-98.72559636280431,18.661647906226904],[-98.72579377765658,18.66190148954587],[-98.72770075258666,18.66619584723685],[-98.72664354750992,18.666960808653528],[-98.72649192220223,18.667439649579194],[-98.7278571153389,18.667567797866013],[-98.72789962839232,18.67058194257885],[-98.73091072074095,18.67142223640451],[-98.73271733924457,18.673772215941142],[-98.73527738243808,18.68378371016786],[-98.7364815270717,18.685605832492683],[-98.74183082649802,18.70294359549132],[-98.73978714920975,18.707271459031574],[-98.74130647773956,18.707861123634245],[-98.73560347958596,18.710624353608125],[-98.73546019553442,18.710666389512824],[-98.72841211108454,18.714282066196233],[-98.72655936724504,18.71763266345647],[-98.7239854618586,18.719067415990537],[-98.7234590285916,18.724877043990546],[-98.72079843988269,18.727594650878302],[-98.72011136103418,18.727895685819988],[-98.72019285806715,18.731091936431937],[-98.71883740239224,18.732258652576604],[-98.7185581046349,18.73656346664893],[-98.71629203320987,18.73946248808943],[-98.71892467330827,18.741060683924616],[-98.72893937605232,18.745236455003237],[-98.73168209116875,18.74238429106248],[-98.73866953197847,18.737165367589],[-98.75209427287615,18.742414014258145],[-98.75339684881163,18.742927315782424],[-98.75349392009275,18.742969383252273],[-98.74676169500884,18.750389838010335],[-98.7476573665673,18.75080539397277],[-98.74818393734574,18.75352653982486],[-98.74864107757469,18.755531694068623],[-98.7480610777697,18.755751088065438],[-98.7473828281095,18.757914649804434],[-98.74734690529692,18.758185166944884],[-98.74542331702514,18.75948294879572],[-98.74508477602723,18.7595940086822],[-98.74321811184188,18.762641278278466],[-98.74322547336214,18.762854524103204],[-98.74195815637017,18.765306099488555],[-98.74174140491289,18.76552633261258],[-98.7397171605619,18.766882462163267],[-98.73753359920073,18.772777396253332],[-98.73764043255687,18.77299280104296],[-98.73385822628353,18.77808285562662],[-98.7337916637461,18.77825156216943],[-98.73390070234495,18.780455883630623],[-98.7338240876685,18.78105798528378],[-98.73382750711232,18.78141824752356],[-98.73394055046816,18.781894240342922],[-98.73392923238589,18.782367535494416],[-98.73290209536901,18.78408265986087],[-98.73275985073462,18.784150101106718],[-98.73135918100542,18.785696042082293],[-98.73191117630876,18.786027665459073],[-98.72968962205931,18.79140518829996],[-98.72997364066617,18.79157470017151],[-98.7309320128374,18.792252480403818],[-98.7313601868002,18.792394230513082],[-98.73167680563944,18.793166680548723],[-98.73167626989402,18.793504881740205],[-98.73181020202242,18.793867907095603],[-98.73174094007345,18.794162372109213],[-98.73187727754691,18.79453027171263],[-98.73206171690777,18.795317690592242],[-98.73203845844978,18.795746521373985],[-98.73016605310636,18.797462639845094],[-98.73006212783685,18.797960832066792],[-98.72973861825034,18.79816368266728],[-98.72949861689136,18.798312375244336],[-98.72927272442524,18.79891124672025],[-98.72874917515861,18.799468135453083],[-98.72853064745885,18.799759354959008],[-98.72812612199971,18.800022857308193],[-98.72779824432905,18.800164130450753],[-98.7277264116849,18.800565089262477],[-98.72761017679562,18.801052562028474],[-98.72749965707982,18.80119945766529],[-98.72747843120038,18.80156600050242],[-98.72788243785811,18.80393567105108],[-98.72807350480366,18.804271312103822],[-98.72803474072964,18.80485057418423],[-98.72800078896142,18.80522868000861],[-98.72753942122068,18.805990606765477],[-98.72744887347903,18.806208772353273],[-98.72706582558413,18.806475121844358],[-98.72699345681298,18.80666695709624],[-98.72549748128017,18.8069081203721],[-98.72504302732358,18.80693634855612],[-98.72424696856842,18.806919032190535],[-98.72405022294669,18.806820043116545],[-98.7236860519381,18.807475097325266],[-98.72356701293677,18.807768481250264],[-98.72358166518916,18.808195003161757],[-98.72420947187021,18.810523165797747],[-98.72319836357667,18.812205978977204],[-98.72274744441643,18.81232639516253],[-98.71891521907094,18.813764639073156],[-98.71697361020875,18.810544930807453],[-98.71574731124804,18.812249553444985],[-98.7152211811528,18.812391985844556],[-98.71483061423277,18.813560691939813],[-98.71479804714374,18.81387963407866],[-98.71471800239789,18.814102830771787],[-98.71456418260499,18.814288900850613],[-98.71446543678553,18.81477214644758],[-98.71345806717108,18.815259242690047],[-98.71292859390013,18.815022742092935],[-98.71279964470625,18.815209353576222],[-98.71004111028867,18.81898149058128],[-98.7097192913518,18.819424345323284],[-98.70937999291812,18.81953901056255],[-98.70911448665294,18.819710794721743],[-98.70869204102826,18.820426007164087],[-98.70859208906847,18.82072938557053],[-98.70849845170102,18.820999639493948],[-98.70820429464567,18.821279492743543],[-98.70748194507752,18.8214048817469],[-98.70714624103437,18.821800961857264],[-98.70843386220281,18.823254233516536],[-98.70614838817448,18.82492500423848],[-98.70610478744521,18.825184511365592],[-98.70619762534659,18.825979773064034],[-98.70633966850187,18.826258445826568],[-98.70454349954645,18.828497800635546],[-98.70490253657783,18.83051989051296],[-98.70493754039558,18.83082432030102],[-98.70550972948729,18.831257286073196],[-98.70518457722142,18.831839297038698],[-98.70503303152594,18.832442632377195],[-98.70477005644807,18.83248732135877],[-98.70451210242766,18.832860538770205],[-98.70436811576093,18.833153369341403],[-98.70413704340302,18.833444297351946],[-98.70362512657385,18.834025063265358],[-98.70367231749282,18.83413265010398],[-98.70486528613537,18.834721260889694],[-98.70406980223004,18.835189270463218],[-98.70368489038037,18.835807135725645],[-98.70331693266576,18.835954191716496],[-98.70327188365218,18.83672652784435],[-98.70344654360684,18.836706681324017],[-98.70386591429667,18.836857866326454],[-98.70369826068224,18.837102706990095],[-98.70319586755761,18.837813567623584],[-98.70301806453409,18.83796351281552],[-98.70271027063052,18.839452473260735],[-98.69734062687155,18.843542494562485],[-98.69737981274352,18.84495625876417],[-98.6949945424139,18.846302777182018],[-98.69491112026361,18.851224114933757],[-98.69148087064019,18.8525359681081],[-98.69173881505685,18.85521953813918],[-98.68894990339032,18.857802281156467],[-98.68872489134259,18.85784467230826],[-98.68866440468281,18.858105061185654],[-98.68843401989949,18.858514979097322],[-98.68688915475764,18.85817700312674],[-98.685793664389,18.86155182825047],[-98.68407899155841,18.86296259770353],[-98.68219278528983,18.867410558913207],[-98.68118275310974,18.87047910970125],[-98.6805871618842,18.872100991080117],[-98.6803482764264,18.872791241959703],[-98.68019410492388,18.87319468630733],[-98.6796053792524,18.875081567375616],[-98.68011043801795,18.876204008446905],[-98.68128768913448,18.875673254928245],[-98.6819771705982,18.875961369347863],[-98.68101170729221,18.876768506811402],[-98.68007139134903,18.87756435781921],[-98.67956636106766,18.877860921916977],[-98.67724665425618,18.878122676951307],[-98.67618427672403,18.878544417117496],[-98.67462556990006,18.878934604354868],[-98.67378296153191,18.878487769867547],[-98.67335535306393,18.878756333791387],[-98.67228699253246,18.879316604988105],[-98.67208567876628,18.879710639887776],[-98.671979797321,18.88028215357673],[-98.67203056793403,18.88151051448432],[-98.67211656254653,18.882211592114913],[-98.67227862115556,18.882963422755495],[-98.67237620712808,18.883033694338224],[-98.67248556825217,18.88376223887917],[-98.67253241395798,18.884186847937826],[-98.67233155731776,18.88452241212798],[-98.67135737219132,18.884684165848398],[-98.67021004147244,18.885499491263772],[-98.66940812930147,18.885443576506873],[-98.66872187338492,18.884842962432856],[-98.66838306754386,18.88518682705444],[-98.6676411639587,18.88598903739222],[-98.66740739092364,18.88626546969965],[-98.66604173977743,18.88711390983059],[-98.6656501995746,18.887245718757413],[-98.6651783332357,18.88748665445189],[-98.6648603016987,18.887665427618117],[-98.66510263376574,18.887678127174752],[-98.66569126909803,18.887612369246767],[-98.666099651313,18.887913530038702],[-98.66630097411286,18.88818183454765],[-98.667120979821,18.888247093735572],[-98.66751815389063,18.888461678378064],[-98.66730055165192,18.889038100886864],[-98.66729227746686,18.889376967908106],[-98.66644789805059,18.890617630808492],[-98.66611321116466,18.891821132842153],[-98.66424164685304,18.894492139629108],[-98.66394257486195,18.8959074982605],[-98.66362942387946,18.896225462547534],[-98.66339059211975,18.8964424682012],[-98.66315677361138,18.896454390188865],[-98.6628366591051,18.896855738071963],[-98.662824640608,18.89698267182473],[-98.66250638680128,18.897246990143742],[-98.66172256105165,18.89737251742514],[-98.66143195155786,18.898226923350137],[-98.66168585123205,18.898224998857415],[-98.66203193599137,18.898345936111753],[-98.66259466370025,18.898365953864754],[-98.663206395896,18.898338469312478],[-98.66327795457818,18.89834688754678],[-98.66334650887711,18.898478197321026],[-98.66341456241503,18.898629995982674],[-98.66421994270041,18.899180663407776],[-98.66471131993336,18.89963297880871],[-98.6649724990661,18.900483963433544],[-98.66502734973898,18.901233962078948],[-98.66533838569143,18.901980924885947],[-98.66527622489059,18.902784422776165],[-98.66528055432508,18.90356130741634],[-98.66519358028177,18.903781317126743],[-98.66513639928854,18.9042128388146],[-98.66518544001468,18.90459122294061],[-98.6659289006792,18.9060397221902],[-98.67291475008528,18.9094408642473],[-98.68141455868437,18.90716732348824],[-98.68185973438966,18.905385879862536],[-98.68321467648826,18.903368764079914],[-98.68543645568218,18.901125748082052],[-98.68687646212936,18.90026192073873],[-98.68752071044491,18.898854485616482],[-98.68968159688689,18.898135907092524],[-98.69470291001369,18.89518528389641],[-98.69495003391478,18.89518231657263],[-98.69678816537356,18.895074163898585],[-98.69792584603408,18.894720345620442],[-98.69804910739617,18.89463016787556],[-98.69847625274247,18.894607816060386],[-98.70146763396775,18.8919505696702],[-98.70282468673275,18.89045313500594],[-98.70294051211556,18.889744944018105],[-98.70275287926518,18.887789014367172],[-98.7021855365249,18.881912784387055],[-98.69750646516172,18.877807779101488],[-98.69775995239519,18.876952525833474],[-98.69986767991497,18.876252108552308],[-98.70180291938061,18.875788150056508],[-98.7032385118435,18.87379392280542],[-98.70400607081274,18.872695010822156],[-98.70446895103669,18.87242962458845],[-98.70635020681112,18.87228545539898],[-98.70791603440671,18.87239883884132],[-98.70864584661348,18.871497466426945],[-98.70936732087984,18.870112308875605],[-98.71024896035095,18.86949065231613],[-98.71068220578064,18.868350860956923],[-98.7110783376055,18.868053918712235],[-98.71249525843609,18.867840360558148],[-98.71250523434003,18.867986475672467],[-98.71259987710494,18.868112148549358],[-98.71347151096552,18.86724361024301],[-98.71357952027347,18.868015717675235],[-98.71377204814473,18.871315019283145],[-98.71407085383947,18.873866576517628],[-98.71415407160976,18.875217295438176],[-98.71379690202593,18.876824547395643],[-98.71299453850236,18.877905976871943],[-98.7125253991486,18.877971238192913],[-98.71180884639762,18.87791687050759],[-98.71134502484898,18.878560042366132],[-98.7109049614445,18.879587097944523],[-98.71049308272217,18.88093709734727],[-98.70970501464757,18.88355278922046],[-98.70877444903579,18.884408774301335],[-98.70798834313672,18.885909988029425],[-98.70721954482576,18.886619241155188],[-98.70651227605458,18.88850806786178],[-98.70621019068665,18.8892802076075],[-98.70568061464394,18.890789618608665],[-98.7057278621927,18.891751498119277],[-98.70607421764032,18.894277124712858],[-98.7075639485364,18.895805973057634],[-98.70758560492243,18.897823503152836],[-98.70712189863474,18.89839221303788],[-98.70740494073516,18.899094690203015],[-98.7072258333647,18.901137938870363],[-98.70722506364524,18.901580514588318],[-98.70734322815849,18.902855500806766],[-98.70489382507947,18.90297585897764],[-98.70115746311609,18.905129303357796],[-98.69937771648034,18.907839811250255],[-98.69910822654793,18.910162318473056],[-98.69817234394623,18.910913616469486],[-98.69769682135637,18.911519979121522],[-98.69754556476158,18.911936125171053],[-98.69369129273485,18.9135826492751],[-98.69285595280707,18.914464490653188],[-98.6919212719526,18.914435582711008],[-98.69050488924387,18.914497535423095],[-98.68896878127572,18.915252378658693],[-98.68843715954324,18.915341365713573],[-98.68756530900737,18.91517324001296],[-98.68715369774515,18.915407477495933],[-98.68661385652427,18.91656171517218],[-98.68528007778843,18.91687835179806],[-98.68467646647412,18.91702447017559],[-98.68348414890295,18.919201378475066],[-98.68192907399953,18.920292774897007],[-98.6810845673026,18.92124542629125],[-98.67973935087178,18.922054266277485],[-98.67885024189894,18.922689040220405],[-98.6791520580233,18.923341672253798],[-98.67794634484227,18.92425957998887],[-98.67773520575565,18.926766226524535],[-98.67768437002997,18.927041954193328],[-98.67764757118306,18.928202237796597],[-98.67754742144149,18.9297717794978],[-98.67737125579754,18.93045905841194],[-98.67733381260723,18.9312720071066],[-98.67721981588261,18.93193616258941],[-98.67672294725782,18.93349403203956],[-98.67635587796525,18.934405455902322],[-98.6762474070917,18.934872874979988],[-98.67588135288503,18.936134560458243],[-98.67565888873622,18.93802138453941],[-98.67563784018728,18.939577869514608],[-98.675536456874,18.941203205027705],[-98.67604613977733,18.9434683404142],[-98.67621913273649,18.943975531202227],[-98.67585352889802,18.945019773194133],[-98.67518489664087,18.94546704040988],[-98.67492704326827,18.946773683637502],[-98.67436085588764,18.948986179620363],[-98.67419898629163,18.949672842307393],[-98.67391151869583,18.951055048380567],[-98.67362938922054,18.951665164383996],[-98.67194189143498,18.95257811519349],[-98.6697551127985,18.956341561771865],[-98.66887157277756,18.956607127853715],[-98.6675461442008,18.95706271955089],[-98.66678156539422,18.958053602040707],[-98.66665986777787,18.95870216199046],[-98.66577509429771,18.95957832930054],[-98.66529283382926,18.959882768260286],[-98.66464917349487,18.960606710595528],[-98.66376384404504,18.96175001583339],[-98.6631995370625,18.962932060374726],[-98.66287543455286,18.96441984911013],[-98.66247104983859,18.965907490737436],[-98.66162050224233,18.96968413320218],[-98.66121794350869,18.970255847965348],[-98.6592819226567,18.97206645148492],[-98.65883851153956,18.972981561319045],[-98.6579529204572,18.974201155472883],[-98.6574259400142,18.976718976807945],[-98.65722155641271,18.978512282210772],[-98.65625618889317,18.97946457796968],[-98.65585170709454,18.98095220124793],[-98.65576922866842,18.982020626898247],[-98.65552704327763,18.982668952994175],[-98.65447424769184,18.98376709405437],[-98.65306589812951,18.985367320902697],[-98.65209935763761,18.986853887242717],[-98.65125307128602,18.988416994626903],[-98.65112596378447,18.99162248078784],[-98.65088389309687,18.99219447295934],[-98.65031660047333,18.99471218383502],[-98.65019457106507,18.995475222417383],[-98.6504199765763,18.997021989128882],[-98.64961170273892,18.999577407668596],[-98.64538766989438,19.00361467510362],[-98.63855366916778,19.007684918964685],[-98.63497182340893,19.01160870580844],[-98.63294665148777,19.015549520665104],[-98.65220273170496,19.005990794781212],[-98.65845738677126,19.00417114308061],[-98.6644744804911,19.0035568618801],[-98.66701884674796,19.000345448178734],[-98.69093074661623,18.96757312239282],[-98.69020972424829,18.966588316177024],[-98.69374472584491,18.96619541330466],[-98.69635176430421,18.96420690898418],[-98.70056096606203,18.959270629393586],[-98.69988817941902,18.957776705885976],[-98.7014533910484,18.954803741157548],[-98.70485770217925,18.953172539989623],[-98.70864615964075,18.948812339765993],[-98.71482965765608,18.94264944032227],[-98.71712475783852,18.942530037398456],[-98.72116783102211,18.944363635498803],[-98.72935369824904,18.944945220582724],[-98.73335186967756,18.945712116039374],[-98.73710123250379,18.943933649837504],[-98.74096766815978,18.945059294818464],[-98.74680276512345,18.944460275474853],[-98.75304256014397,18.942257643030416],[-98.75517745129594,18.94294052040567],[-98.7564259470746,18.940923785878056],[-98.76107149997551,18.941505038938487],[-98.76305969814172,18.940397816529412],[-98.76782693980198,18.942852511020988],[-98.7715394886896,18.941871871498904],[-98.77498450122118,18.94353769156777],[-98.7789190249361,18.941866497654757],[-98.78131496749603,18.939860416719284],[-98.78530960073266,18.941159304350833],[-98.78611495349048,18.94290095192298],[-98.79100001434756,18.936709190786416],[-98.7920802819192,18.93533987389992],[-98.79437924268382,18.937778674031847],[-98.79853991280913,18.939979705792098],[-98.80547341889451,18.942236557969068],[-98.80939252537536,18.94295608340758],[-98.81685267800702,18.94326253514481],[-98.82077354335576,18.947236170527333],[-98.82145542499109,18.95280075415252],[-98.82645055039188,18.956690869595604],[-98.82768336879707,18.955565265144912],[-98.82824678569972,18.955630151503783],[-98.83099685703041,18.954931025552128],[-98.83515410396808,18.950829858338636],[-98.83655636710989,18.950911875582847],[-98.84071911271047,18.955666239841776],[-98.84516701305427,18.955143367115113],[-98.85045862892576,18.95910358035036],[-98.85489973987683,18.96103822019296],[-98.85947964185237,18.964777935459324],[-98.86000328810746,18.968168546087497],[-98.85793509112727,18.970404343256064],[-98.85733335730566,18.974591908725188],[-98.86183661898832,18.979983810304986],[-98.86715674400051,18.987643795165297],[-98.8700055173548,18.990510400043718],[-98.86857515397799,18.994343567627766],[-98.86818625489508,18.999687901813104],[-98.86925658356193,19.003076951870582],[-98.868891639926,19.005704737641963],[-98.87405917207752,19.010403853823675],[-98.87249036074707,19.014753834245766],[-98.87166100244781,19.021445871347623],[-98.87102642756724,19.025393147173986],[-98.87895563483437,19.02810834082686],[-98.88816676648958,19.036919860056855],[-98.89041032765931,19.036869582016095],[-98.89433199911736,19.03760450330776],[-98.89788624262832,19.03855092645665],[-98.90338978248195,19.038482887556654],[-98.91706059860678,19.059424959649277],[-98.91553234393365,19.060117119134418],[-98.915580667097,19.063009622012828],[-98.91624776248688,19.064189332839817],[-98.92066207334915,19.064910678217018],[-98.92124470599168,19.065144379517506],[-98.94413536821281,19.069738429907716],[-98.94597860751259,19.06866928361802],[-98.95214879644408,19.06416184847626],[-98.95527248763187,19.061889751319086],[-98.9577785534484,19.06029448756385],[-98.96899504945435,19.065953451921587],[-98.97899540481734,19.07445595350987]]]},"properties":{"cve_ent":"17"},"id":"inegi_refcenesta_2010.20"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.9510779631629,20.299873963595985],[-101.95232690388377,20.301415901427106],[-101.95991889423846,20.305135931545692],[-101.958380118175,20.308037255672218],[-101.95607315420023,20.308308644796057],[-101.95626389993816,20.312933357395934],[-101.95357244641929,20.312932559287503],[-101.95001642112823,20.311480556823824],[-101.94895771000023,20.315107393678318],[-101.9570313299385,20.317830294318924],[-101.9589533433662,20.31955375074341],[-101.96308724266726,20.318103925744538],[-101.96299057060929,20.32009886893809],[-101.95568267504632,20.326625914483373],[-101.95154797945088,20.32934508124447],[-101.94808677493154,20.330250750831283],[-101.94722035164261,20.333333613846605],[-101.9440458917204,20.33795723683278],[-101.94471717393589,20.34212884767817],[-101.94587050327817,20.343126765900365],[-101.95135033013344,20.344307485194634],[-101.95769579735821,20.344762794603128],[-101.96155967254617,20.34434428892837],[-101.96274873235893,20.34527168918595],[-101.96409386444674,20.349861300667897],[-101.96668475326601,20.353129233548998],[-101.96779955072043,20.359288455653086],[-101.97157159170797,20.36000418781731],[-101.9745874560162,20.358237809754087],[-101.98087943342819,20.358564720693096],[-101.9899440895968,20.36078943213022],[-101.99639002559678,20.35964322127279],[-101.99694743864586,20.357353970174245],[-101.99891931020966,20.356754762700405],[-101.99940127370479,20.354717479580415],[-102.0031577924035,20.354451039577896],[-102.00272996746054,20.353506986397576],[-102.00873330145981,20.35356152406456],[-102.01248009447369,20.352143673247213],[-102.01383522031023,20.347910228339515],[-102.01029207409312,20.34108849922228],[-102.0095328239442,20.338228724950852],[-102.00633056663821,20.33568942635651],[-102.00490254159786,20.333065766694688],[-102.00603491969929,20.32825301317598],[-102.0077152153508,20.3265860908258],[-102.01379881342382,20.32793032564166],[-102.01584801918722,20.3296394424828],[-102.01489069588047,20.332154514605293],[-102.01720378156398,20.33608482011033],[-102.01655815549486,20.339377257577155],[-102.01764949358494,20.342332255058523],[-102.02363573655384,20.344316560229004],[-102.02507738775353,20.349342617593834],[-102.02330162319373,20.35365178784059],[-102.02291566503266,20.360046457916553],[-102.01790602006156,20.37089897180357],[-102.01145163756047,20.3785575862276],[-102.00987867115072,20.382777501957378],[-102.01016278687302,20.385332908857833],[-102.01371646571499,20.38881295318629],[-102.01328858215078,20.392979287694402],[-102.01670470530189,20.394435713147573],[-102.01865486466068,20.39258123886799],[-102.01925164576141,20.38510573650933],[-102.02200808261068,20.38120562607685],[-102.0269919913618,20.38092155259585],[-102.03429555514316,20.378887854706647],[-102.03758686026703,20.378535073690728],[-102.04404782484846,20.37935857079941],[-102.05288766821661,20.37854481395442],[-102.05582021068841,20.37699079032643],[-102.06033145402091,20.37695538229383],[-102.06503262772333,20.374921576043846],[-102.06932597606567,20.375404870751026],[-102.07347331129131,20.379173074759024],[-102.08052609631,20.38000333347844],[-102.08676942125601,20.384760469527407],[-102.0942969583574,20.383729665627015],[-102.0962544564278,20.38413126466213],[-102.09812046950287,20.38371492965564],[-102.10576822902482,20.378636105103965],[-102.10764045198403,20.378244657661696],[-102.10832345388297,20.37812003970663],[-102.11514533123062,20.38112969870366],[-102.12111729844781,20.37832318990303],[-102.1238013653894,20.37816730403597],[-102.13091589487192,20.38121836834756],[-102.13370908819161,20.37970097077482],[-102.13431116808795,20.375912747156292],[-102.13910587527414,20.375701440684622],[-102.1396997901968,20.375518588978196],[-102.1449942467525,20.376501058373663],[-102.14562550515103,20.376326777590407],[-102.1505328338576,20.37850994418244],[-102.1558997478756,20.3788334060863],[-102.15654681453202,20.37886400148045],[-102.16349458635858,20.379417164188965],[-102.16399644675823,20.379278169337965],[-102.16842942710417,20.37860491122626],[-102.16805559855851,20.376600986949825],[-102.16035481039546,20.375203860727822],[-102.15923194898363,20.371360420736835],[-102.15912982376983,20.366460389330257],[-102.16574144542994,20.366991487946507],[-102.17326159425164,20.36922905735628],[-102.17807627571716,20.367049302422572],[-102.1772720357443,20.362939078231193],[-102.17458675438854,20.36171121651506],[-102.17343390552685,20.357808519178377],[-102.17345185778555,20.357438281348834],[-102.17402550847066,20.357039074878628],[-102.17420738813496,20.356616732052885],[-102.17474101752168,20.356358244128273],[-102.18469053922968,20.353890128969113],[-102.18966769223533,20.353592373811125],[-102.19475474454435,20.350707721782612],[-102.1966068186847,20.350497120361524],[-102.19875256973205,20.35259202042488],[-102.20394916842173,20.35502672489349],[-102.2063126228582,20.354814655583652],[-102.20838723756339,20.35658404662354],[-102.21156617161984,20.352276187600808],[-102.21794852260922,20.351826329414564],[-102.22125676264102,20.348223649698582],[-102.2214870649014,20.344567120301974],[-102.22276813012581,20.34407742646289],[-102.22364164362261,20.344369535111127],[-102.22713578696414,20.344183441370888],[-102.22759028996467,20.343973465655495],[-102.23183640203376,20.34148610383886],[-102.23802735997481,20.34180825237496],[-102.24198597580914,20.339298149832473],[-102.24254119851804,20.339306918189152],[-102.24713455005076,20.339020325627416],[-102.24997237745919,20.33765315910341],[-102.25125462388866,20.336951885272413],[-102.25460350459491,20.33536585602843],[-102.25819101853398,20.339182697638876],[-102.25982738402331,20.339328866965104],[-102.26095655212669,20.335848669852567],[-102.26775222241491,20.33572856160339],[-102.26938388130651,20.33724304163718],[-102.27447881926054,20.339055369818254],[-102.27494312506394,20.341543993470793],[-102.28130729682698,20.344925402656543],[-102.28630015205079,20.344975927967027],[-102.28827807212696,20.34154530792017],[-102.28985959993372,20.34083598942749],[-102.29352244218353,20.345554975855237],[-102.29194404794151,20.35282387133134],[-102.29790501999298,20.353899206288077],[-102.30046845203418,20.35652297112034],[-102.3071290142268,20.35812132026689],[-102.3082402354168,20.35782541452255],[-102.31016470765445,20.353228275543188],[-102.31322898578668,20.350028638400374],[-102.31556908596122,20.344894565038885],[-102.31646755775284,20.344450995188197],[-102.31687561731195,20.34440027554973],[-102.31754074486696,20.34437751577468],[-102.31878089838386,20.34458864802326],[-102.31913720701874,20.344675130476503],[-102.31947246053107,20.344758078228097],[-102.31981808681468,20.344972868588172],[-102.32608563339141,20.349086777251102],[-102.32694452937199,20.349483892697435],[-102.33061675587044,20.345767074099797],[-102.33673932081655,20.34116914439136],[-102.33750464764063,20.34108610085366],[-102.33869372697677,20.340914750505362],[-102.34207096391185,20.340271693127306],[-102.34243760779964,20.339993081481737],[-102.34395930658758,20.336222043059593],[-102.34698834411489,20.334852568699205],[-102.34731247432194,20.334705938026957],[-102.3553206595455,20.3374724076981],[-102.35694821241532,20.337515960763426],[-102.35797836638312,20.337228438340333],[-102.36011927833857,20.335461068658958],[-102.36055899611978,20.334425744347527],[-102.36186782930952,20.33075130946048],[-102.36361910803441,20.329071428745408],[-102.36759295932546,20.327802596353706],[-102.37159218291794,20.32969277872951],[-102.37782920553201,20.329492086460675],[-102.38256678251742,20.330065275680283],[-102.38777694636042,20.332968963686596],[-102.39067403870627,20.333915749189032],[-102.39444837180167,20.332164834605067],[-102.39484676693127,20.331638333651313],[-102.39626727838692,20.329480622800247],[-102.40033841877869,20.32791353142693],[-102.40665893841106,20.33127522558982],[-102.40946985565597,20.333352667978033],[-102.41566544925547,20.333620902288544],[-102.41859564196733,20.332410369019556],[-102.42122890192059,20.332706036157106],[-102.42460478501766,20.334744829760552],[-102.42740150954927,20.338955375822195],[-102.43237304971285,20.341044720046057],[-102.43642344702317,20.340718009063153],[-102.4424733540045,20.338263972829054],[-102.44778771806568,20.338278219859774],[-102.45447153556364,20.334082252402936],[-102.45390258577902,20.32965292135168],[-102.4582999715509,20.32870168894857],[-102.45900404530204,20.328814166233315],[-102.46717592189754,20.330671383505035],[-102.47391221146484,20.32769237431728],[-102.47483987526101,20.327157308380265],[-102.4809982540499,20.32490563289366],[-102.48188213414363,20.324280600215786],[-102.48675113208145,20.318776532966865],[-102.48705211648286,20.317915896912723],[-102.48816343714651,20.31222549395659],[-102.49062866973878,20.308601339302697],[-102.49418269674766,20.307771182048157],[-102.4966855831583,20.30827611294893],[-102.49798768777794,20.31125062834741],[-102.5030665616489,20.315727664911094],[-102.50655881194069,20.31471603407317],[-102.50680397205832,20.314096891840222],[-102.50740804355007,20.311624584722438],[-102.50746746750224,20.302948771103445],[-102.51188444389498,20.30008222484247],[-102.5204021453988,20.300871191148417],[-102.52935942784347,20.296583495661935],[-102.53001818453106,20.296220853431578],[-102.53084012023731,20.295059000552612],[-102.52978501522426,20.2904240556353],[-102.52262221801601,20.287696446321775],[-102.52105919794587,20.285785684067207],[-102.52019560864028,20.278068619771886],[-102.52175311078094,20.276126235678134],[-102.52858425302094,20.270953374569956],[-102.53275132701941,20.27066864693296],[-102.53543679457522,20.272512848290603],[-102.53429769052855,20.27644416473845],[-102.53586416945484,20.278984672385207],[-102.5362910156075,20.279211312612688],[-102.5419476488143,20.280722704380537],[-102.54411807561144,20.28055939732019],[-102.54717548504817,20.277531332428737],[-102.54715834085857,20.27688311637513],[-102.54848016304095,20.271038429216844],[-102.55049103678067,20.267321024837145],[-102.55240999636061,20.26147509371077],[-102.55271730947254,20.26113225943925],[-102.55340202991749,20.260835055597056],[-102.55402681039527,20.260734541917714],[-102.55497735101898,20.260685351367783],[-102.55732681683992,20.261963005847804],[-102.55776449747464,20.26282103242289],[-102.55745073542579,20.26719368637896],[-102.5556807577641,20.27016410656364],[-102.55600173565102,20.271662861391974],[-102.56246152522993,20.27754886456148],[-102.56458298205303,20.27815503053438],[-102.56744985958233,20.27634321717261],[-102.56803996279103,20.275771841978724],[-102.56857925810988,20.273927766918916],[-102.56541850224119,20.2701859305447],[-102.56565914579284,20.26749970653043],[-102.56784900180588,20.265022954382005],[-102.56856098851023,20.265003935035168],[-102.57271302110104,20.265740324632986],[-102.58076192395106,20.264173417602933],[-102.58478506360893,20.26131188869897],[-102.59019112797512,20.258507443877534],[-102.59310443962977,20.262223702336712],[-102.59681773905817,20.261446629196143],[-102.59833781209574,20.265901114001167],[-102.60039313317105,20.26758335458635],[-102.60101874606426,20.26767094117895],[-102.60833956551795,20.269136670147873],[-102.61069152761297,20.268848880839585],[-102.61115018510594,20.268503188103807],[-102.61452758625063,20.263909715829982],[-102.61464214206711,20.262370102137993],[-102.61239510813391,20.25921224505248],[-102.61315959200931,20.25534017799953],[-102.61325393195972,20.25508601059363],[-102.61724328187557,20.254950246733927],[-102.62100362406511,20.252482411867675],[-102.61688317339315,20.248330745366616],[-102.6198393239344,20.24547649810887],[-102.61995572737516,20.24532010309889],[-102.62066004037825,20.242748980804436],[-102.62089769872904,20.242034383993882],[-102.62454150829876,20.235855247634674],[-102.62733124045207,20.229385559636],[-102.63276769675247,20.226316748981162],[-102.63867902660326,20.224082498314772],[-102.64340023261087,20.223585069039927],[-102.64774924298797,20.224826272352686],[-102.6505000844607,20.22831728130319],[-102.6565305284937,20.228433166720038],[-102.66087619783946,20.231545796802607],[-102.66672770689894,20.231309265126583],[-102.66761801733782,20.231194512245963],[-102.67083839639548,20.229983508555563],[-102.67346617300387,20.226341654362386],[-102.67800124393403,20.22692850868077],[-102.67902536902466,20.226913115296952],[-102.67984325596098,20.226073184689255],[-102.68537030531019,20.21800530692053],[-102.68461540850876,20.21228589553499],[-102.68294317626277,20.206668623916812],[-102.6828546334711,20.197111555927563],[-102.68206186691236,20.190927429904377],[-102.67891453480854,20.185146479906052],[-102.67972186718202,20.17150155147249],[-102.68967555734281,20.16603280778918],[-102.69822652812292,20.166310780718447],[-102.70887540510626,20.16832179141045],[-102.72531281395652,20.165346212752524],[-102.73064965609836,20.166425619060874],[-102.74325894364381,20.154854024490476],[-102.74877902971951,20.153003931408193],[-102.75308432508871,20.148542717387386],[-102.75490724644487,20.152245923425028],[-102.75749849317629,20.153368357436364],[-102.76013280249748,20.152264550684606],[-102.76219633349251,20.14993394146768],[-102.767054286313,20.14866224664854],[-102.77128806403437,20.14503667870565],[-102.7761783893165,20.141940659407794],[-102.77439768966968,20.13966029507418],[-102.77614711460251,20.138446366995424],[-102.78470080371545,20.13761931505968],[-102.78937651176318,20.13838430187633],[-102.79202318491758,20.141553280327003],[-102.79880441810911,20.141760654583777],[-102.80814253248127,20.14097310171445],[-102.8100685444241,20.139872362744654],[-102.81520406688668,20.13926464697215],[-102.81928209460477,20.13724797421429],[-102.81117857892298,20.134976103861163],[-102.80742987549513,20.133177043139426],[-102.80187340455188,20.123034285953622],[-102.8026885743335,20.119668542624936],[-102.80497900261759,20.115447855865398],[-102.81035073462004,20.10973390194755],[-102.81628738020765,20.10604788247747],[-102.81997338020312,20.107448373642455],[-102.82357351021597,20.107869551033218],[-102.82833765771056,20.111670457259038],[-102.83319413181403,20.113752214273973],[-102.835161937583,20.11656150349944],[-102.83748870203465,20.113482131791557],[-102.84043634683024,20.116375222916304],[-102.84542082540378,20.123288766963753],[-102.84591784935714,20.127544489154047],[-102.84605990864549,20.130770251647277],[-102.84838359498508,20.130864454939342],[-102.85276284455233,20.133749154365205],[-102.85499430152959,20.136712756709358],[-102.85707411872886,20.142702136478704],[-102.85573643401813,20.147791349256863],[-102.85232163862639,20.148303788852672],[-102.8528127594393,20.149758524717754],[-102.85637270180024,20.150960792974843],[-102.86245286852613,20.154393251820863],[-102.86460577792809,20.157203736296765],[-102.86595326423577,20.16236361968828],[-102.86746180008669,20.162663647521583],[-102.87106679450085,20.158914122825536],[-102.87549555100753,20.15757602736852],[-102.88148253047905,20.16007420460903],[-102.886198901775,20.15876234246781],[-102.8906097581596,20.16115744295928],[-102.89391480326918,20.16394025982561],[-102.90184547961292,20.164433475061912],[-102.90783210218865,20.1620972840268],[-102.91874082060531,20.16467496466288],[-102.92133385280476,20.164747116074807],[-102.92398945506454,20.166249160792574],[-102.93026554942867,20.16699411739512],[-102.93577326282355,20.170708259735818],[-102.94189197682476,20.17168023596031],[-102.94320334353608,20.1710804732341],[-102.95201153410937,20.170381151256834],[-102.95414339043123,20.1708778403858],[-102.95400314608293,20.166568545438793],[-102.94323260803884,20.14977747002621],[-102.94022248306555,20.14767059145578],[-102.93832672472286,20.14634268986123],[-102.93344520659656,20.142924477927977],[-102.92609411325645,20.1374461804009],[-102.92450007378687,20.13625844662255],[-102.92644828058098,20.129575184718817],[-102.92880228778705,20.12946505973946],[-102.93373452561764,20.128491329801363],[-102.94050149175911,20.12839852156594],[-102.94729899564743,20.132398933499758],[-102.94771640480167,20.134019819095272],[-102.95117471630044,20.13818477395023],[-102.95415463625585,20.138735019964486],[-102.95641106004012,20.141100315536903],[-102.95775786665871,20.141218762542678],[-102.96159843782175,20.14019714297416],[-102.96378720320394,20.134786266328945],[-102.96446232241192,20.127135827843063],[-102.97058390510693,20.12540361750962],[-102.97626832380968,20.125368354457237],[-102.98553677846769,20.127400076303104],[-102.98890984649256,20.126194941256415],[-102.99597545275157,20.125612102434104],[-102.99957416999035,20.12677619272472],[-102.99932320864735,20.129842395963067],[-103.00171403076774,20.135106305032025],[-103.00481853146283,20.13819570318924],[-103.01015323802199,20.13715162795819],[-103.03141289841057,20.13655115373973],[-103.03523140282658,20.133485760848203],[-103.03353737080022,20.131265787294467],[-103.03241287461248,20.12920168440229],[-103.03133346939296,20.12675139129982],[-103.03656629856454,20.12539936226318],[-103.04415233946685,20.124119390185513],[-103.04167616496096,20.118857443730974],[-103.0433043308708,20.116016324200018],[-103.04127807643908,20.114940815587886],[-103.03843977463384,20.11660022870666],[-103.03537313154078,20.116716204117097],[-103.03471029099813,20.11332792260714],[-103.03300206338503,20.11163387097679],[-103.03383104577966,20.105935173691705],[-103.03638152563104,20.098879251919527],[-103.03910611537651,20.096779077267342],[-103.0407008274114,20.09109626835948],[-103.04166182230563,20.090931809482754],[-103.04173431875216,20.090820524400954],[-103.03569425273673,20.08392066263349],[-103.03544803863679,20.08139819502003],[-103.03274417591842,20.08042557431787],[-103.03070978793386,20.077748082507185],[-103.03353085471247,20.07664218672886],[-103.0334168235022,20.07470801954122],[-103.03050718017789,20.072714550476917],[-103.0324068224134,20.068725434965017],[-103.03110128488208,20.06606089549416],[-103.03097043555238,20.065762837893374],[-103.02916358456594,20.06487919590603],[-103.03096773963085,20.06348462138635],[-103.02908230738569,20.058522953748707],[-103.02522662189739,20.05806866903771],[-103.02395904620408,20.052521266207293],[-103.02162812594196,20.053303482329397],[-103.02072003229608,20.047306354362377],[-103.02511648346263,20.049923760486536],[-103.02651681389523,20.04934365576497],[-103.02578621753219,20.04646571177426],[-103.0275922800306,20.04417554994751],[-103.02755933679231,20.04122875673187],[-103.02636308337998,20.039348268426522],[-103.02819395013626,20.036147068763114],[-103.02478977903814,20.03480064102706],[-103.02579457151359,20.031688088688327],[-103.029879508482,20.029634347633817],[-103.03556981110381,20.029545778258296],[-103.03648835596931,20.026987303125793],[-103.03268324278656,20.024622944801536],[-103.03590081178402,20.022252855349393],[-103.03609113467883,20.022191490053046],[-103.0366812615938,20.01896896220194],[-103.03985629160275,20.014820721326828],[-103.04563821153528,20.01113610814639],[-103.04471186353294,20.00993786572718],[-103.04621677199862,20.006890850449906],[-103.04818043050233,20.00727831590484],[-103.04780217886298,20.005246510232496],[-103.04418126346508,20.004018991136377],[-103.04594616219737,20.002831953135683],[-103.04381199402513,20.00197861668761],[-103.0441804134752,20.000274046732557],[-103.04822220404685,19.998301374593666],[-103.05044590554587,19.99634819069655],[-103.05096316900836,19.991517256363466],[-103.0500112115862,19.991383523470233],[-103.0472272783851,19.986094788886476],[-103.0428672389371,19.980270133695228],[-103.04060076884537,19.978944006478855],[-103.04041160524321,19.976785456548214],[-103.03735369711586,19.972767745656938],[-103.03478241779214,19.967913290402294],[-103.03249962084277,19.968434784862325],[-103.02937675225559,19.967435141209876],[-103.02819757989619,19.964855514808505],[-103.02608515899755,19.96416026986367],[-103.02521954713455,19.960492088131787],[-103.02356441746446,19.962379383626228],[-103.02077552843468,19.960451601239924],[-103.0154719226125,19.959837897645116],[-103.01069215857967,19.96765402577455],[-103.01221753812945,19.970157644916583],[-103.01095548335019,19.971067169638104],[-103.00448808650549,19.971705640151185],[-102.99990614610113,19.975133174671043],[-102.99380967597739,19.98389475415854],[-102.98547802210948,19.98566928528129],[-102.97792972667412,19.98719354370121],[-102.97562989149475,19.988753479615923],[-102.9684979482268,19.991124281667112],[-102.96331218146929,19.989836516397418],[-102.96263006627447,19.99267082039404],[-102.96131053444088,19.992498312424573],[-102.95844011884697,19.991987704147448],[-102.95846474251192,19.995380913624217],[-102.95488967326514,19.994677632147273],[-102.9512149404328,19.996556501987243],[-102.94842760675101,19.992654180659486],[-102.94588910600532,19.9912694018754],[-102.9434709440095,19.98553465633279],[-102.94362421180483,19.98413362962873],[-102.93643771698731,19.98286412263178],[-102.93646225982883,19.98298336517223],[-102.93652554785479,19.983070427788732],[-102.9342172995876,19.9850527216376],[-102.9339778388208,19.98540651936065],[-102.93362024500038,19.986106987225696],[-102.92892944694773,19.984030880110993],[-102.92626761369951,19.984187559260135],[-102.9187756794102,19.979464586379436],[-102.91788104709542,19.977587336422346],[-102.91445581841572,19.974755948039785],[-102.91218496220284,19.973580362859252],[-102.91159650961237,19.97339109655013],[-102.91183951183194,19.972487776895548],[-102.9041850270043,19.96850937924455],[-102.90262189327836,19.966863482569067],[-102.89314621535544,19.96898989760564],[-102.88558485607842,19.970233345436213],[-102.88209693966371,19.96958511142452],[-102.88204962640799,19.975769268441923],[-102.8787902885179,19.974190536880087],[-102.87455009102194,19.974497072989095],[-102.86380128966567,19.970639825733315],[-102.85977873845178,19.97137354588409],[-102.86139422328745,19.969787688860777],[-102.85646691444305,19.968044135156845],[-102.84671285456352,19.968330060492008],[-102.84590147305471,19.96783200710877],[-102.83581316369435,19.9660012624185],[-102.82468398319924,19.9629519151066],[-102.82322337718728,19.96365466457536],[-102.82196937758488,19.964577034604986],[-102.81909996183634,19.961197870009016],[-102.81849517221059,19.962518266789516],[-102.815591877889,19.960494234761484],[-102.81013789044272,19.958668627112615],[-102.8081243264167,19.958089144366397],[-102.80770506250599,19.956185041209835],[-102.80570560268313,19.957186148392964],[-102.80363901507951,19.953052061692404],[-102.79927104734037,19.951623145934093],[-102.79636594266447,19.951726731587883],[-102.79435391733989,19.950318910269004],[-102.79030176974044,19.951104060444436],[-102.78784847210642,19.954269520410946],[-102.77991916965595,19.960039265281807],[-102.77829198459665,19.960171589287995],[-102.77534291027803,19.95855740738034],[-102.78403605186907,19.9512356912943],[-102.78324137957378,19.94916612006881],[-102.77693724644246,19.941481896667767],[-102.77063355002008,19.92986844519794],[-102.7644620493623,19.923832988646495],[-102.75606245821024,19.91844008202054],[-102.74607656844557,19.909068958573357],[-102.74479531653611,19.907866836476728],[-102.73308951801079,19.900914600870124],[-102.73121511515757,19.899507841827017],[-102.73251994554352,19.890383171374367],[-102.73565471705979,19.887616262670804],[-102.7397918579515,19.88576572755403],[-102.74249005365152,19.87875947833163],[-102.73750764087629,19.875383058280363],[-102.73476893026094,19.874518180762834],[-102.73537068554629,19.8721908356128],[-102.73368465580785,19.869823401155827],[-102.73557255482314,19.86743645184913],[-102.73482947576645,19.862217992398485],[-102.7348767910446,19.860390310819582],[-102.73478515149623,19.860042267653228],[-102.73032317644544,19.854459343259123],[-102.73069702143687,19.852604712111088],[-102.73434457012644,19.850396998348913],[-102.73505318504482,19.847313819859664],[-102.74314246405214,19.844603960276686],[-102.74922152446516,19.83476780175613],[-102.75333019970202,19.83412350663508],[-102.75169642379376,19.83215330531101],[-102.74957773686748,19.832136867607176],[-102.74837655232955,19.830120587989086],[-102.74895124846842,19.829688838797153],[-102.74495872557077,19.827599493564662],[-102.74501999142609,19.827317861002257],[-102.74497666262891,19.824833041784302],[-102.7442314846719,19.824112732381423],[-102.74306470240242,19.82298482039323],[-102.74184984702612,19.821218627331916],[-102.74127368677051,19.820659460513298],[-102.73917656991824,19.81768436564505],[-102.73939630276743,19.81582582493087],[-102.7446280912933,19.813433336262335],[-102.74510831611906,19.812586675303066],[-102.74535985387433,19.811966712992046],[-102.74551961668573,19.812321297402605],[-102.74751782009241,19.81200109681157],[-102.74804252451531,19.81210386823568],[-102.74946031425753,19.81291396546709],[-102.74983037254219,19.812744838792128],[-102.75024144538878,19.814126120097626],[-102.75355390551971,19.81346945891528],[-102.75405755185972,19.813681064959837],[-102.75555361669421,19.81316960276314],[-102.75908267245364,19.807984442528607],[-102.7622686034565,19.809871395325274],[-102.7672723998354,19.80921604786613],[-102.76821670421333,19.809863377417173],[-102.76867786290074,19.810097676271084],[-102.76930177017414,19.809856484822262],[-102.77466121442626,19.812717483803624],[-102.78106631665293,19.812878301033038],[-102.78498383686417,19.815448614567458],[-102.78724582792745,19.81360542604017],[-102.79059997746731,19.813646879457224],[-102.7923122299751,19.814115514123216],[-102.79429724602113,19.812685072554302],[-102.81834125187231,19.779879445121423],[-102.81952684237444,19.777941204896536],[-102.81280867883714,19.775953376215853],[-102.81184905875847,19.77398891917437],[-102.81330841718597,19.767794058821323],[-102.81232642474697,19.764162063238473],[-102.80860646799317,19.75956078933808],[-102.81052426698415,19.75816157256611],[-102.81660182270957,19.75187347984439],[-102.81627408787358,19.74990505749696],[-102.81238040255244,19.7499826353789],[-102.80524721546226,19.752946550834167],[-102.80392627774012,19.752157623535936],[-102.80377366649014,19.74802144939315],[-102.8026622014815,19.747220283876857],[-102.80758553296926,19.74371671362286],[-102.80997945571329,19.742927653655613],[-102.81080472817939,19.741016091607037],[-102.81017185936417,19.74065807451501],[-102.80685368584864,19.739956373441032],[-102.80494350980962,19.738256113336774],[-102.80487723746654,19.73467541701973],[-102.79831800093723,19.728783197497478],[-102.79580604492497,19.72837325968578],[-102.79421411499641,19.72538399279256],[-102.79406017592493,19.720826708671098],[-102.79162114439458,19.716973459127985],[-102.78562366974336,19.712547419599332],[-102.78546743049827,19.70820200138121],[-102.78221458210078,19.70718566474966],[-102.78048171941936,19.70432408939928],[-102.78051004861487,19.701795334226745],[-102.78309279034869,19.698191956446408],[-102.78223174596366,19.695211267881803],[-102.78528180425121,19.69479952716472],[-102.787197286315,19.692952099533045],[-102.7899467208872,19.690873944647706],[-102.79223155805431,19.6884230695145],[-102.79062723950892,19.68685713966238],[-102.79471185845182,19.685381301738516],[-102.79671563574328,19.682424067324916],[-102.79763282052119,19.678123532271684],[-102.80443908445767,19.67632773899527],[-102.80507000057702,19.674138570773096],[-102.80038663660736,19.674921217469546],[-102.7957562477402,19.673323417022743],[-102.7923866031976,19.67462462728639],[-102.79120335941298,19.673186416653834],[-102.79273706104078,19.670740013437978],[-102.7911591512514,19.668059494454837],[-102.79147125477397,19.664977778190632],[-102.79310366578648,19.661430869958792],[-102.79201841492556,19.657912427248107],[-102.79219709566377,19.65361136623676],[-102.78966761575316,19.653400287096304],[-102.78721194403147,19.651728013211084],[-102.78513427302158,19.65272152978656],[-102.78437784162946,19.651268670569266],[-102.78733037121862,19.64954961537063],[-102.78583165705982,19.6476010192128],[-102.78317433525189,19.64742674655247],[-102.78203130417978,19.64577089351235],[-102.78331449118718,19.64353148281549],[-102.77916215114954,19.6433444795054],[-102.77947419342757,19.640214658211733],[-102.7768347910644,19.634113470955697],[-102.77720712217274,19.62897727981573],[-102.77434167601746,19.626620488716014],[-102.76948273960568,19.627891315049453],[-102.760325871487,19.62715942214993],[-102.75896455622814,19.62486845799998],[-102.75559555817739,19.62457393774895],[-102.75366431382548,19.622898562447006],[-102.75543126302551,19.61982001941442],[-102.75374155005596,19.620156938221726],[-102.75321434200737,19.617439679306642],[-102.74756636166512,19.612777026116646],[-102.73723528731011,19.61507604728672],[-102.73049125007742,19.613768573865286],[-102.72851270791944,19.61189061710985],[-102.72608754648195,19.613136823500383],[-102.72585616236574,19.609940520368525],[-102.72068890246749,19.610669655366223],[-102.71881889523189,19.609412176327453],[-102.72098860295137,19.607689834255666],[-102.71996838331302,19.605465025993624],[-102.71747478822863,19.605730449790826],[-102.71817561099306,19.60408853588183],[-102.71593204016028,19.602935152086275],[-102.71609200623169,19.600592109238335],[-102.71807486027194,19.59982866271207],[-102.71835967336523,19.59310734991044],[-102.72122975369871,19.591400708936476],[-102.72525221911991,19.583920178096548],[-102.72238929952636,19.582541427155945],[-102.72507652458046,19.58138374219294],[-102.7260388975377,19.579025549857306],[-102.72497503559936,19.577861218906037],[-102.72049806500047,19.579677311105684],[-102.72123365544905,19.577055346732607],[-102.72005589076878,19.573311494449456],[-102.71723282808097,19.571321505952085],[-102.71973444172875,19.56928735260942],[-102.71351670387679,19.56326133654551],[-102.71634701121371,19.561210532631833],[-102.71684674880817,19.557416823042843],[-102.71835207537902,19.55467134369036],[-102.71783989763736,19.548647001290703],[-102.71557682664951,19.54618914212932],[-102.71130442429842,19.545226642638568],[-102.7106338142678,19.54132229194977],[-102.71251894325991,19.53735302315448],[-102.71670745873018,19.533525756176346],[-102.7147312396242,19.530090940490766],[-102.71639722844463,19.529158608706382],[-102.71708464997818,19.52619634505703],[-102.71841815102556,19.525863027278888],[-102.71751903594861,19.519467724821993],[-102.71823583492301,19.519112236039632],[-102.71863161484265,19.519036511247464],[-102.72239423659863,19.517992339359523],[-102.72179977926271,19.516664492251834],[-102.72294587226048,19.51217938578162],[-102.72457719278526,19.50912222585214],[-102.72724277349192,19.51216722659632],[-102.73119069940458,19.50998788207636],[-102.7301170534098,19.50806585756419],[-102.73361122393385,19.50358026702594],[-102.73534707152618,19.503339605504607],[-102.73888293167226,19.498667329834802],[-102.7385777859879,19.494764124207848],[-102.73697115229845,19.492830940192107],[-102.73330767229322,19.496016977473232],[-102.73074447884358,19.495926427536062],[-102.72666277596971,19.49377196986228],[-102.72558082120457,19.493155370406157],[-102.72124120677296,19.494436168124707],[-102.71987114830085,19.496788025940077],[-102.71366491675263,19.499139883536543],[-102.71399660192691,19.50090533915437],[-102.71255843971835,19.499989708943247],[-102.71224832351089,19.499717002158263],[-102.71003673917232,19.502700024384126],[-102.70898135861245,19.503214076808035],[-102.70561912018843,19.505510120879194],[-102.70437935416055,19.50717295000993],[-102.69943469683926,19.509115325140897],[-102.69672235739421,19.50872375803482],[-102.69261762212847,19.510226584400414],[-102.68948709003092,19.51341568184199],[-102.6774212984028,19.510255813202207],[-102.67302471838633,19.511995307567645],[-102.67346054632361,19.508731413597047],[-102.67264628923084,19.504457183327645],[-102.67037019790814,19.498832499008984],[-102.67184324365991,19.496639487020047],[-102.67115033393264,19.492341480624816],[-102.66884796302082,19.49142186162203],[-102.67093011264268,19.490625872354087],[-102.65845015649802,19.487047320138117],[-102.64479702821797,19.491887574763496],[-102.63459541417546,19.49596778780949],[-102.62891774354938,19.50045144725982],[-102.62300300024901,19.497524325970062],[-102.62052958744147,19.498771659384943],[-102.60951568776147,19.510078611393226],[-102.60269949194895,19.514363500475895],[-102.59845961163472,19.518649497055947],[-102.5929009947634,19.521839745081138],[-102.59113717470387,19.520097240780842],[-102.58652856072956,19.52298103947436],[-102.58399523011565,19.52269370589454],[-102.58180196348792,19.52578157707319],[-102.58298577852423,19.528030146809613],[-102.5811018923697,19.527778269035366],[-102.57518757798437,19.52188686846705],[-102.57634755983395,19.515888720810267],[-102.57186140812263,19.51119183618556],[-102.57294244956518,19.506950032603584],[-102.57527159648583,19.503675278509945],[-102.57365517362041,19.501486420255617],[-102.5737803420908,19.500126816285274],[-102.57594344468993,19.498061782649415],[-102.5490811481198,19.492422854848257],[-102.54568612187353,19.482813742865346],[-102.54270538188837,19.478033107051772],[-102.54273049294454,19.476425300870915],[-102.54676725198334,19.474169438282672],[-102.54831336326987,19.471427546306415],[-102.55475674464617,19.470936791591896],[-102.55576767495921,19.465147931622198],[-102.5632989237244,19.464926983380963],[-102.56469690975638,19.462275019492836],[-102.56662731666296,19.45330304740969],[-102.56709480188988,19.448130639337023],[-102.56858136557224,19.44547835596717],[-102.56817612374067,19.443354606246203],[-102.56478132170804,19.44303327362985],[-102.55870219825692,19.447003885826973],[-102.55298734728382,19.442690632455765],[-102.5476927827001,19.43948789742126],[-102.55110436605815,19.43879706921615],[-102.55492420198607,19.439861899208324],[-102.55798597194956,19.4395804533728],[-102.55924034481046,19.436880400313612],[-102.55571205444897,19.435866254874327],[-102.55249338504046,19.433474292484732],[-102.54860309822573,19.43383609902736],[-102.54659305303989,19.43509875948621],[-102.54481887391626,19.433739340601733],[-102.54391711397699,19.432253367039948],[-102.54371542728222,19.42958017005742],[-102.54912328468549,19.428317754259524],[-102.55104416184213,19.42537802279844],[-102.55249610108234,19.42628730914015],[-102.55563038367006,19.431536331407642],[-102.56028371344604,19.433891397451134],[-102.5650808392349,19.435157346301764],[-102.56672278009643,19.433342343347817],[-102.568652328837,19.428865539821174],[-102.57274066214632,19.42500580712857],[-102.57678699854745,19.423908919038922],[-102.57666897214665,19.421972777524957],[-102.57391735112111,19.420969609511246],[-102.57167641251442,19.414906795933632],[-102.56879932858999,19.412629369515514],[-102.57491664768429,19.402763798205967],[-102.57983127662686,19.395415073705408],[-102.58255161536647,19.38966687961755],[-102.58551463701752,19.38978679589286],[-102.58795585329119,19.388678825531542],[-102.59468183591662,19.374915252914263],[-102.59473713399518,19.37118529976027],[-102.598589222506,19.367998165015194],[-102.60105602152106,19.364486767110293],[-102.60146105385627,19.356873606800832],[-102.60513434199152,19.351165664778875],[-102.60499425512239,19.34498668408554],[-102.60599883179128,19.34191265580364],[-102.60505589454692,19.33845526042427],[-102.6078822678304,19.33561547254277],[-102.61028160949888,19.3299440813646],[-102.60863857561793,19.329061821523737],[-102.61115166030811,19.32500966344145],[-102.61083323173295,19.323692789158372],[-102.61099821452848,19.32324424191262],[-102.61434217534509,19.31935003001763],[-102.61627448620305,19.319488854368615],[-102.61715219665717,19.317327775457386],[-102.62000154327671,19.315151250298527],[-102.62554882338691,19.31504919569113],[-102.62855519387324,19.311921601888116],[-102.62773268270882,19.31026343564332],[-102.62990815952253,19.30710515732494],[-102.63271591838321,19.30698195811641],[-102.63124274425229,19.304505274539792],[-102.63454913760381,19.301836696879434],[-102.6357956248753,19.297295086666736],[-102.63822382459693,19.29509128199362],[-102.63852058035314,19.292043577673383],[-102.64084043259408,19.280948829595616],[-102.6430956680606,19.278340395090254],[-102.6394831558062,19.2769260260078],[-102.64105724625404,19.27418823625004],[-102.63888291773338,19.273013143142066],[-102.6389727027398,19.26992291169961],[-102.6407589611743,19.26866015492135],[-102.64096139724921,19.266171157324322],[-102.64247832533107,19.26545702276877],[-102.63820989416695,19.262659537019545],[-102.63964824575913,19.26124757663507],[-102.64559408131095,19.259492789115484],[-102.64553226128459,19.25531170058906],[-102.6488015521087,19.25323894701245],[-102.64878115363723,19.24947497804112],[-102.64936556873897,19.249430357326503],[-102.65122733985606,19.249230296117844],[-102.6497204094843,19.246008776063434],[-102.65146774111571,19.243107478150932],[-102.65689705919812,19.240536826654647],[-102.6532958552649,19.237980377525446],[-102.65184212376766,19.235518511900636],[-102.65694500692422,19.232057546498027],[-102.65524103327476,19.229919699490154],[-102.65783122109241,19.228291010515875],[-102.66000276071031,19.229868929695556],[-102.66190900631693,19.227261858981763],[-102.66195926622152,19.22350552481572],[-102.6610264774713,19.222086135586153],[-102.66230617999992,19.21869866563162],[-102.66686100571201,19.22139457112104],[-102.66865188886686,19.220063548306257],[-102.66803047659187,19.218273698584994],[-102.6680867214427,19.217494277321464],[-102.66992269652167,19.212412066829188],[-102.67191552881582,19.214070382732643],[-102.67510150141175,19.21683013424513],[-102.67924243634894,19.219357379387702],[-102.67962544940809,19.219554732761537],[-102.69389894554513,19.226297361459046],[-102.69703049902074,19.22594385456273],[-102.70053567947002,19.224447864736533],[-102.70069156775924,19.224536634819344],[-102.70151759589197,19.226249300010693],[-102.69621843015534,19.23648966217354],[-102.69732311510882,19.238049364859705],[-102.69555344945843,19.2388619851385],[-102.69436835994605,19.237428365375138],[-102.69516892292035,19.242000161806857],[-102.69488993234563,19.247773867685055],[-102.6988260094102,19.24993137084948],[-102.70348570510862,19.24655149502155],[-102.70526219670495,19.24705311178866],[-102.70591353567261,19.241461667577767],[-102.70780271305324,19.242326154289117],[-102.70815057153999,19.23944160994529],[-102.71068619116687,19.236005956865597],[-102.71341925072983,19.23598057181772],[-102.71754422923738,19.238700839366402],[-102.71944367448958,19.238109177733463],[-102.72791046254866,19.242395235973845],[-102.7354197482129,19.241592672863476],[-102.73772086033108,19.242202404617842],[-102.73812628865454,19.24268190206118],[-102.74061921822585,19.24833446492198],[-102.74529089681931,19.249480740724778],[-102.74572682204945,19.25118169990435],[-102.74864854686967,19.253523361508144],[-102.7498786809083,19.253270050537935],[-102.75381592350834,19.255805063661796],[-102.76512027259741,19.248632158967382],[-102.77063466034099,19.2467057120802],[-102.77121974062271,19.246445796173987],[-102.77307842400523,19.245438422379493],[-102.77331838040487,19.24528649776346],[-102.77502592071676,19.244395607275692],[-102.77692669273262,19.243555678696225],[-102.78305695124732,19.2432002255033],[-102.78532499512391,19.242378280430955],[-102.79024319594174,19.24245799243573],[-102.78959948219853,19.239594720555544],[-102.79349188082142,19.235152235854002],[-102.79351386921655,19.231519573869264],[-102.79314294522277,19.231059804738436],[-102.79224543785881,19.228700769502666],[-102.79376413445726,19.225408081276385],[-102.79995282874938,19.223451575596812],[-102.80355060120803,19.22393804727517],[-102.80836146811589,19.22326411685242],[-102.81398295651627,19.218278595177992],[-102.81672816743833,19.21031164241225],[-102.82443340738439,19.205693233982515],[-102.83016785744906,19.20998911964608],[-102.82775971087233,19.211261093037535],[-102.83142105580134,19.21463983422325],[-102.84382419571949,19.20263220091249],[-102.84585857897576,19.199732489753785],[-102.84809390391342,19.199507726304887],[-102.84831102283931,19.199548165146155],[-102.85402759713713,19.201219439768295],[-102.85993405363615,19.203949644409704],[-102.86260196288879,19.203229630171222],[-102.86538370824957,19.205876184469446],[-102.86537706648323,19.21128543686035],[-102.87293347075166,19.209359056843255],[-102.87947569463563,19.206625174733233],[-102.88420063463838,19.205687888569855],[-102.89921439793363,19.19396666395977],[-102.90102452382388,19.190892079753667],[-102.90849559772164,19.185303463279354],[-102.90915780873627,19.18473016908024],[-102.91315832475004,19.18170836807633],[-102.9146919760455,19.179587171091498],[-102.9150726367647,19.179367110395788],[-102.92055084967546,19.17879172020929],[-102.92743763747382,19.17726848904266],[-102.93513341089243,19.1820322429611],[-102.93588236145507,19.174072739108794],[-102.93835926487907,19.174456504302498],[-102.94201807869553,19.17713277345439],[-102.94599863929511,19.176570342211846],[-102.94749987224878,19.17487717692933],[-102.95101409037022,19.17504602912078],[-102.95339448648417,19.173587246919283],[-102.95548472973627,19.169619767259405],[-102.95782671137408,19.17355012730326],[-102.96009608476868,19.17405588621159],[-102.9623484483916,19.17201554139018],[-102.96288404382011,19.169571656251094],[-102.96116405040567,19.16749374678085],[-102.96602503479818,19.163954038603038],[-102.96859335297535,19.160137426229028],[-102.97118531144957,19.15845474359611],[-102.97431119561844,19.153740595036993],[-102.97935777323238,19.152413268470298],[-102.97826461502098,19.14577680594391],[-102.9781258116218,19.13480151394691],[-102.97669313752482,19.126368916040576],[-102.9776227079538,19.120060911517896],[-102.98028154343075,19.119849478238677],[-102.98503842936071,19.12278757360923],[-102.99041364359601,19.12647085667942],[-102.99966145369132,19.135301720633834],[-103.00445981370501,19.137571332371806],[-103.00828679850224,19.13775570488872],[-103.00948858256555,19.136368513521802],[-103.01445468531892,19.135571617481617],[-103.01597665827313,19.133848055299552],[-103.01972701616734,19.132371162836876],[-103.02042662073035,19.130494298182782],[-103.02054022261495,19.125048481751378],[-103.01873654891364,19.122772128832196],[-103.01613563946404,19.117076945989538],[-103.0162775853056,19.113111298770775],[-103.01435019232156,19.113000279349194],[-103.01194819208212,19.10748263048339],[-103.01519436993425,19.105834568482408],[-103.01838898023482,19.105839031547134],[-103.01945537945397,19.10383651167689],[-103.01759688398647,19.097749290977276],[-103.01748253508146,19.09417146247307],[-103.01600568246323,19.079185304090913],[-103.010343368181,19.074135819532614],[-103.00556345185362,19.068565235641017],[-102.99877763813697,19.061506107599598],[-102.9924148674346,19.057777857348526],[-102.99108496006716,19.056290044930904],[-102.99083523186164,19.05337890886551],[-102.99854401979809,19.05236411806817],[-103.00302357422976,19.05243518993285],[-103.00854577007834,19.050931248153574],[-103.01378894137014,19.050342486145496],[-103.01564665089182,19.04888841352465],[-103.01887252932244,19.05198200860093],[-103.02521426247864,19.053103852993786],[-103.0272901470396,19.047752237435418],[-103.0304397542946,19.036056170298934],[-103.03307806891593,19.03424166216729],[-103.0337657401717,19.030742938233402],[-103.03277095153322,19.029775143294444],[-103.03634432305483,19.028856345142742],[-103.04465276250693,19.03201165063399],[-103.0460768591455,19.032077034644146],[-103.0479254376823,19.03223798611907],[-103.04999662368857,19.035338873528133],[-103.05485189671788,19.033944854301524],[-103.06007272794614,19.02813953336556],[-103.06323850997012,19.02785407704812],[-103.06669895524317,19.022268078790944],[-103.06540547134966,19.015141787469247],[-103.06441794227402,19.013654542075017],[-103.0648868334145,19.00932190380837],[-103.06207478262928,19.00215769809421],[-103.05925612525289,19.000848055153824],[-103.0551206032917,19.000732161032147],[-103.05257599658722,18.998529578613613],[-103.05400257557807,18.997112630727997],[-103.05716982306376,18.998213360711077],[-103.06221645954173,18.99537390683463],[-103.0662261870919,18.99626308392692],[-103.06755569670247,18.99450987469561],[-103.071080965352,18.993458327787266],[-103.07174434563348,18.992121983087998],[-103.07546466218048,18.992201139868143],[-103.07816175350877,18.988972204411198],[-103.08095071753439,18.988584395305963],[-103.08363936019958,18.98587504368612],[-103.08758021186702,18.984311748974335],[-103.0884712670952,18.983008111970264],[-103.08967036442158,18.98023009108016],[-103.09131131320385,18.979266850561146],[-103.09282951710753,18.97355888484384],[-103.0942289668755,18.974005580610594],[-103.0959068941761,18.968901930234324],[-103.0981372932161,18.96660988639661],[-103.09802571337411,18.96474784624661],[-103.1002152484287,18.962982865867502],[-103.10518887148186,18.961291971229002],[-103.1056889246131,18.958660700985888],[-103.10774072775854,18.95665239380503],[-103.10756268273963,18.955001665436498],[-103.10783579492647,18.952536641337133],[-103.11398598540143,18.946989121835088],[-103.11501309105563,18.944926647828936],[-103.11651051956454,18.944407299354282],[-103.1180591627616,18.943519738210796],[-103.12092492572498,18.939052954837393],[-103.12381837210756,18.936815187483205],[-103.123013386004,18.935895946098867],[-103.12501946501624,18.930144654780634],[-103.12859327581828,18.931393505948563],[-103.13445391908408,18.931063186292818],[-103.14012633576544,18.92893484390089],[-103.1415261941907,18.92849984220311],[-103.14388844140376,18.928454766028835],[-103.14648306491586,18.926395427794887],[-103.15101191253189,18.92613172665841],[-103.15627038598325,18.929106132123422],[-103.16236777438053,18.930560087701792],[-103.17336423520283,18.936263922294472],[-103.17931222944895,18.942945424104437],[-103.18082381922778,18.944642745335727],[-103.18859764622096,18.954903939998985],[-103.19262752423793,18.95842857155253],[-103.19527524799372,18.9591897968877],[-103.20044802247804,18.962660983673743],[-103.20493176344996,18.968480155048724],[-103.20332319010453,18.974413011260197],[-103.20321452242104,18.978496739528964],[-103.2069091208541,18.98166046814248],[-103.20835731419498,18.989869654420033],[-103.20926527776908,18.990658639605158],[-103.20993391859918,18.992648239453956],[-103.21139757271101,18.99300257589624],[-103.20934265447318,18.994694659098343],[-103.21019692231494,18.995350186448434],[-103.20995170917473,18.99580471174727],[-103.2104815105555,18.996619571381757],[-103.20890452320322,19.000272023093373],[-103.209518846724,19.00298664509006],[-103.21336300034687,19.00389742434902],[-103.21739647302167,19.0035322295372],[-103.21790211650801,19.007015128168007],[-103.22166130726998,19.009452675235877],[-103.22342938288239,19.01371942838699],[-103.22474519261505,19.019274608543583],[-103.22387620475655,19.024100513340613],[-103.22539177073264,19.0241233141806],[-103.22949087329539,19.022714067748666],[-103.23088661121653,19.02125830686265],[-103.23109402178568,19.018273752096263],[-103.23466826137002,19.020059679985422],[-103.2359669651118,19.017026114391115],[-103.23935486055802,19.016003191816594],[-103.24051424651742,19.013980910962857],[-103.24389510388642,19.013581665324182],[-103.24642374351345,19.012097931733763],[-103.24844951598084,19.014542363846886],[-103.25252340807259,19.010712857767146],[-103.25489052398024,19.01071784323608],[-103.25711825543794,19.011355376247707],[-103.25791848504014,19.011745122651234],[-103.25847931236137,19.00714647221406],[-103.25975180645503,19.003696641110935],[-103.26327249315915,19.002625603918716],[-103.26655398869161,19.00337078523603],[-103.27023055127808,19.001157816511693],[-103.27183937747452,19.001717470225287],[-103.27337438001325,18.998679797097168],[-103.27824274206347,18.996885853022604],[-103.28113885562766,18.999609888849193],[-103.28453192520868,18.998376296365052],[-103.28735082691435,18.99240998341594],[-103.28961034062479,18.994469037868726],[-103.29182089749656,18.992962798553037],[-103.29557892099933,18.994217946389938],[-103.29939671649737,18.99290553459184],[-103.30236627965519,18.990226073520148],[-103.30268936438836,18.98871677450535],[-103.3048221943489,18.98579374836612],[-103.31280373542478,18.983060666273047],[-103.32645036526083,18.975934078049534],[-103.3316979727029,18.9735412557082],[-103.33248517271937,18.97325131343996],[-103.33513654963048,18.973593517251686],[-103.34042570017795,18.976861464739613],[-103.34605283492857,18.978469678598742],[-103.35227101436658,18.977751247515812],[-103.35531494362425,18.980225529996005],[-103.35829034622986,18.980012566682717],[-103.36317013592759,18.976621831879015],[-103.36694453445068,18.97759572533488],[-103.37308615881625,18.97685104910306],[-103.37724888269247,18.980170453920437],[-103.38050028244623,18.979296908658],[-103.3841925753095,18.977787524856183],[-103.38610518299572,18.972568591856316],[-103.38861323193464,18.970973281478848],[-103.39158052392861,18.9707359198747],[-103.39442110619376,18.96741463033419],[-103.39692104904037,18.967091474461824],[-103.39853727261095,18.96631567793935],[-103.4032801610162,18.968135752961757],[-103.40687519613698,18.971475608749643],[-103.4101461288812,18.968425324116197],[-103.41027123620665,18.96832603961434],[-103.41119300093976,18.96764949824353],[-103.4133707975372,18.970229294962508],[-103.41361028950348,18.97266267911658],[-103.41628773094294,18.974207436440622],[-103.41589923022354,18.978863506350876],[-103.41792065047662,18.978045289442264],[-103.41945272578937,18.98125069364562],[-103.4265264183685,18.981045289805934],[-103.4323857066168,18.9829598522507],[-103.43631445635822,18.982407778442848],[-103.44013043917016,18.983180413605623],[-103.44056778581324,18.983328859484345],[-103.44297130324617,18.98288070549006],[-103.44315327162724,18.982737240576],[-103.44895631209602,18.98181489689489],[-103.449502211952,18.981775034431337],[-103.45519642421777,18.97837461519663],[-103.45782630459365,18.97929622582359],[-103.46051280108247,18.977024477129362],[-103.46312732531106,18.977020927274168],[-103.46635327767854,18.98193469509721],[-103.46922083639362,18.988030193945804],[-103.46938384181345,18.988257543311477],[-103.47266045438289,18.99113636336756],[-103.47333338325848,18.988668262245312],[-103.47286818932156,18.988507195034742],[-103.47153615876869,18.98791178635628],[-103.47244307547362,18.984809439780065],[-103.47779982506313,18.984102918448457],[-103.47911296868676,18.97934833113436],[-103.48379828832691,18.97943343702599],[-103.48139238281823,18.975419770150665],[-103.48190155459417,18.97037912648659],[-103.48725253360146,18.971720607953102],[-103.48748961910337,18.971622869398118],[-103.48759916452212,18.971323668049422],[-103.48753288910149,18.970813211784446],[-103.48655384714567,18.968162238761636],[-103.48859434226324,18.9648891512291],[-103.48876407744717,18.962144167109102],[-103.4904808994952,18.95899119179768],[-103.49417954316908,18.958121790795474],[-103.49771820665063,18.960653584752322],[-103.50860144484011,18.963671327262773],[-103.50904889506376,18.962107715974014],[-103.50662676118014,18.95936268233254],[-103.50413813357892,18.9593824642933],[-103.50292833117567,18.95707459299871],[-103.50419034938608,18.95522601840804],[-103.50535444782753,18.94992232435095],[-103.5083981494206,18.946721148386814],[-103.51068017621196,18.946370347008497],[-103.51240745124136,18.94940763043752],[-103.519467841025,18.950226156094175],[-103.52231826192201,18.948515705550847],[-103.52234654404577,18.947037631207934],[-103.52010659172072,18.943067308347395],[-103.51495829310761,18.93911734198474],[-103.51385290381597,18.93640734370257],[-103.5144216229869,18.934388742359943],[-103.51922856494775,18.932909999654612],[-103.5224935379963,18.927928107320383],[-103.52418449737104,18.92705780100431],[-103.52724409437604,18.928100457291464],[-103.5336203292888,18.92703620700877],[-103.53427787132074,18.92458058644445],[-103.53306797672008,18.91924600538647],[-103.52841403131237,18.91231671733999],[-103.5295213167808,18.911516866672514],[-103.53083750860077,18.907286124324628],[-103.53323971846629,18.905218078248538],[-103.53952026146476,18.909403080842935],[-103.54148906194052,18.909665225402193],[-103.55032464032286,18.90784572449985],[-103.55332838864075,18.905990797842264],[-103.55738688342865,18.906842991814358],[-103.55903419515016,18.903862847603648],[-103.55927723245327,18.896520627392988],[-103.56182445973593,18.89418162403456],[-103.56681064151212,18.893586499058756],[-103.56885328873875,18.892518803938344],[-103.56896289471143,18.883656457657878],[-103.57223008054973,18.88021873125689],[-103.57234299794465,18.872594376715256],[-103.57324414496617,18.87132789455967],[-103.5770883844126,18.87355664840834],[-103.5781240626921,18.875272420912495],[-103.58154477643376,18.87592509692189],[-103.58372327480942,18.873907475319868],[-103.58341188395553,18.871355709662055],[-103.58437688264468,18.866156242216846],[-103.58757568661497,18.865846946979786],[-103.58985397521803,18.870779721808162],[-103.5879898606575,18.87528144743459],[-103.58916404157719,18.877041447852378],[-103.59733658574669,18.884350955475895],[-103.60160992056035,18.881300519342517],[-103.60562506083949,18.88316379270742],[-103.60803928688148,18.887847134373715],[-103.614682630755,18.892164210603198],[-103.62028188612652,18.893039010474524],[-103.6244745688532,18.888726259134444],[-103.62675392178829,18.888754808668068],[-103.63113922878142,18.883972395877265],[-103.63196097839074,18.880063186705115],[-103.63771700443357,18.872232393444165],[-103.640343114335,18.869537250144845],[-103.64057237050702,18.867244497376248],[-103.63786715428478,18.86453095841472],[-103.63428924041392,18.85921980416765],[-103.62873786664773,18.856033077973223],[-103.62443926955558,18.852658039967366],[-103.61833532160767,18.845440384820392],[-103.61695730717537,18.840602364038034],[-103.62133197722142,18.836722906179432],[-103.6261996397198,18.83097437418604],[-103.62617760816391,18.829124298093348],[-103.62340184896084,18.82398546712193],[-103.62069141938173,18.82035180955512],[-103.62036752142632,18.8165085963239],[-103.6215979165176,18.810095953815335],[-103.61984621961244,18.80423513438609],[-103.62003101366878,18.801383206376784],[-103.62678646646185,18.793518963961276],[-103.62961653297452,18.79117726708256],[-103.63324004789956,18.789620149639973],[-103.63646793999794,18.785772347159593],[-103.63746834726447,18.783527271320906],[-103.64325847811483,18.782940545704946],[-103.64639834915567,18.781649495820147],[-103.65075638943864,18.777936313132216],[-103.6537113340899,18.776542416078257],[-103.65850746669452,18.77919834144376],[-103.66480200201983,18.77787217305621],[-103.66935671697797,18.774467007449346],[-103.674205172205,18.773336348902603],[-103.67901700001886,18.773211044786592],[-103.68067046130915,18.772130962479594],[-103.68473176591164,18.762311128084036],[-103.6854383790498,18.757292775718554],[-103.68954334589631,18.754531958487178],[-103.69757079325257,18.755922550076093],[-103.70030265306843,18.754355754865003],[-103.70244341089341,18.751242156494015],[-103.7031675799002,18.748494418207713],[-103.7028525096124,18.742859631730823],[-103.70364579299661,18.738958742077216],[-103.7072489252966,18.732076564164686],[-103.70935300084045,18.729029059652987],[-103.71271738191746,18.726353938597867],[-103.71599259180596,18.71887748742091],[-103.71724160496876,18.71320837342614],[-103.7189303053363,18.71043149696601],[-103.72372591789502,18.709166777251824],[-103.72568890345889,18.707676671791603],[-103.72760130454634,18.701639776531124],[-103.7301474270439,18.698791928443654],[-103.7344975959823,18.69719677472807],[-103.73798223011437,18.694074429906777],[-103.73652103092172,18.688308923346085],[-103.73707811212006,18.683606514234214],[-103.7340105072937,18.682662025965783],[-103.72624190786883,18.67837371531914],[-103.72271874062449,18.67574623564832],[-103.70988567338696,18.662960156083614],[-103.70305965804346,18.65532716711789],[-103.69686098150862,18.647348172785087],[-103.69108402379811,18.638892538947346],[-103.68694720200318,18.63103354398072],[-103.6855741341642,18.62480809076112],[-103.6868038068493,18.62191030764245],[-103.68953188384944,18.62181176821514],[-103.6887700786911,18.616288048679678],[-103.69038960587244,18.61232077870335],[-103.69518375551286,18.610838187657293],[-103.69854102729988,18.60270639791014],[-103.70078774449252,18.60120729929156],[-103.70497853977758,18.602366615132212],[-103.70695499667704,18.59946700507868],[-103.71030084262611,18.596937806888377],[-103.70928573354337,18.594214067991743],[-103.70502686124166,18.590113905294004],[-103.70160894178235,18.592796126866347],[-103.6989813086775,18.59311360254179],[-103.69026064668049,18.59018476243301],[-103.68847070950886,18.59003611985264],[-103.67736938410354,18.583839011958617],[-103.66491159661393,18.57536400342542],[-103.66053996791044,18.570442224626333],[-103.65779278175074,18.568446126187098],[-103.65586183023328,18.56304467716018],[-103.65338647693363,18.56419152133111],[-103.64902790465487,18.561173718373198],[-103.64492605093756,18.56005492517039],[-103.63620148835878,18.554583593616883],[-103.6258053467754,18.546872034252488],[-103.6207825071873,18.542559239861532],[-103.60436473071849,18.527065962516872],[-103.59410535982016,18.517683462936418],[-103.58309081833681,18.50590616046094],[-103.57733181647137,18.497924635702475],[-103.5755259995496,18.493782317584646],[-103.57581158884295,18.488950626400424],[-103.57411717878466,18.488387205560116],[-103.57371519629186,18.484745944063377],[-103.56623681467914,18.47554614595498],[-103.56117166525257,18.46663983493403],[-103.55992962940695,18.460863043254164],[-103.56114391098453,18.455395198697147],[-103.55589106257764,18.451342363115316],[-103.5452402486523,18.437522706525556],[-103.54078926171746,18.43080429255855],[-103.54005119403399,18.424963778476922],[-103.53806222923009,18.42146984112327],[-103.53799370021903,18.41930549846637],[-103.53437066867934,18.41497191180207],[-103.52905151948534,18.4034953438956],[-103.53007270291533,18.40154057974877],[-103.52903432004916,18.399928754984273],[-103.52772230216993,18.393872389410262],[-103.52973026062517,18.3831768350056],[-103.52803020106217,18.382642379871072],[-103.52537465586573,18.376631572654162],[-103.52143359380807,18.374394909105035],[-103.52071547178912,18.372785285114105],[-103.52202201371728,18.37086328125173],[-103.51856887902909,18.36964285814338],[-103.51597952078833,18.367028167309968],[-103.51396505673813,18.363534193729436],[-103.51282426278772,18.358883957980595],[-103.51300588970787,18.3527135235571],[-103.50968717451337,18.34899714363172],[-103.51008748678026,18.347385255535812],[-103.5123273670522,18.34706737977848],[-103.50974211140237,18.345898713494194],[-103.51093855167966,18.344782793518903],[-103.50769687830757,18.343941048270665],[-103.5082523208593,18.34231310793541],[-103.50619541324107,18.34186371623713],[-103.50540924666444,18.339932484997178],[-103.50230742228212,18.340401778111584],[-103.49898752444147,18.339389973653397],[-103.49359496237918,18.33542296306439],[-103.4921493758726,18.333102570658014],[-103.49232843558372,18.329617847780128],[-103.48535535965044,18.328331416503033],[-103.48028413755299,18.324938085505153],[-103.47454829325221,18.321939294424624],[-103.47018887894899,18.320767003565607],[-103.4541055496345,18.314132299046662],[-103.44731132575839,18.310674826860065],[-103.42523740626069,18.301609336001775],[-103.4128596407125,18.29581372637722],[-103.40990205278524,18.293417956412043],[-103.40963874882704,18.291305514946544],[-103.40544869088961,18.29161331471164],[-103.40302527808444,18.288932232825687],[-103.40332425995899,18.287416106433284],[-103.39926197736656,18.28954685312044],[-103.39587018694141,18.28820218312876],[-103.39706926603878,18.28721957415928],[-103.39571083476312,18.283535762203485],[-103.38952076832084,18.285540094606688],[-103.3884088507009,18.280068909205056],[-103.38517563673389,18.280978083593425],[-103.3797529908291,18.280046498957176],[-103.37835997966306,18.28206943183494],[-103.37396916386257,18.279846056905228],[-103.37138250269749,18.276621888792647],[-103.37337003606098,18.27345600492879],[-103.37229055803056,18.271290087870284],[-103.37107080358265,18.27336652000588],[-103.36807942080009,18.272337800304626],[-103.36791167555333,18.26900502927782],[-103.36525883636455,18.26986028314394],[-103.36404938345765,18.267576176113664],[-103.36069786635301,18.264914681701782],[-103.35700097242125,18.26528787538274],[-103.35568422823883,18.2676287948442],[-103.34849682637059,18.268142971871896],[-103.34500940473202,18.270917499849247],[-103.34078990800231,18.27132379121582],[-103.32891911891005,18.267270856708194],[-103.32017567050724,18.262120708505677],[-103.31819289212945,18.262489376063854],[-103.31388117474205,18.26118819498862],[-103.31244245802532,18.262073053999757],[-103.3079911559559,18.26069055142193],[-103.2975155117876,18.255343405653264],[-103.29593385842225,18.24966049621173],[-103.29277693964752,18.24900135566321],[-103.29221737165176,18.247762572088106],[-103.28914341527121,18.247796127103925],[-103.27801679667812,18.24449720265227],[-103.27155882046037,18.241920508249734],[-103.26033172873741,18.238275579464982],[-103.25417321945184,18.235897666733536],[-103.24521025898628,18.2338780608535],[-103.23678674835276,18.23327882455237],[-103.23367563110844,18.230515901524598],[-103.23008204051882,18.231255533058572],[-103.22822752176063,18.23316140198756],[-103.22607278069131,18.232308854912503],[-103.22464332282624,18.233903633448563],[-103.22150271739048,18.23226696332432],[-103.22016401964828,18.233747338328612],[-103.21051804620714,18.231923458922893],[-103.20450918116495,18.228451080555658],[-103.20414628625184,18.225720942267913],[-103.20242778082871,18.226221497827794],[-103.20434822427865,18.221984960062912],[-103.20234750094818,18.223545005731353],[-103.1965661432277,18.224380491698184],[-103.19320763367443,18.223746317259724],[-103.19124144003922,18.221890554611264],[-103.19000251343783,18.22256753805499],[-103.1854076913354,18.22192145823209],[-103.18373675275382,18.22047876002921],[-103.17916043066748,18.219220646764654],[-103.1784692887843,18.217224623848267],[-103.17499459139094,18.215815261041882],[-103.17128471584027,18.215565462017935],[-103.17118259315617,18.213916529709707],[-103.16767383957824,18.21371265549442],[-103.16865029642713,18.211334994659467],[-103.16608366145726,18.212049242403452],[-103.16359761951213,18.21077550210532],[-103.16096755922081,18.211155450636966],[-103.1560635981968,18.20970632995204],[-103.15293967649262,18.20685039969777],[-103.14820331738684,18.20583286351126],[-103.14535406198456,18.20376159497164],[-103.14582759697623,18.200173009066248],[-103.13839579571658,18.201637380794125],[-103.13471327023069,18.201549301686214],[-103.12874827481664,18.204960536918804],[-103.12348749105053,18.204596931085007],[-103.11837011164289,18.20324489363287],[-103.11514097938948,18.201650801156347],[-103.11304390095557,18.19924154248787],[-103.11405370481725,18.19620542403078],[-103.11316070302661,18.194394395710788],[-103.11482273134214,18.19359281403632],[-103.11150343954665,18.191584411759095],[-103.10600167962974,18.19178164568217],[-103.09934244845954,18.189854729869126],[-103.09970063664701,18.191444692051846],[-103.09736749845769,18.19235901711619],[-103.0922164326692,18.192865258863776],[-103.08307097203658,18.19163403259563],[-103.07165100552476,18.19171404238091],[-103.07018849325516,18.189647510231964],[-103.06691847411571,18.1911446703171],[-103.06713860506534,18.192635856339223],[-103.06291693948805,18.19446235668522],[-103.05888090321076,18.19372079185291],[-103.05598170415607,18.190685644229006],[-103.0501064187086,18.18862401463275],[-103.04652648972058,18.18856277379598],[-103.04359808303968,18.18732346262817],[-103.04051696095883,18.18865514646177],[-103.0347510213387,18.188954653321957],[-103.02901297571361,18.187299775518284],[-103.01742556661969,18.181668561409026],[-103.01606338649145,18.178971257119258],[-103.01377297077909,18.17724105591293],[-103.00749054590676,18.177380144215988],[-102.99274533600044,18.174124026720676],[-102.98747772172214,18.172330085442468],[-102.98013029122882,18.16867083660219],[-102.9705802124426,18.162971171804088],[-102.96861801952849,18.16315913610373],[-102.96432125580407,18.16164982734432],[-102.94517483173809,18.15338194631704],[-102.91902337904895,18.141761846262227],[-102.90889765286164,18.137034038992283],[-102.88656027530726,18.127237406049915],[-102.87171710171305,18.120353199050783],[-102.86362669172416,18.116831821273877],[-102.84546966253572,18.109680267890212],[-102.82557788949168,18.10131143173834],[-102.80613461349657,18.091671768924925],[-102.79383522190449,18.08831358155868],[-102.79096457740798,18.085765901521654],[-102.78847127305198,18.084828845499374],[-102.78590761382645,18.08237612355913],[-102.7743367664221,18.08103329275133],[-102.76325330452278,18.077849630042067],[-102.76138850804904,18.075963915188083],[-102.76195486682559,18.074641493344757],[-102.75956500181616,18.07356337320266],[-102.75978644586672,18.07014037561271],[-102.75573393697994,18.072906805252217],[-102.75287274675094,18.070911573109015],[-102.75258796951954,18.07292374955773],[-102.75018073576666,18.074933649559398],[-102.74584641549734,18.07434042797621],[-102.74370940848712,18.072685130615696],[-102.74387570316497,18.067316877155633],[-102.7419598037867,18.067571753673747],[-102.73982866865765,18.0704711247908],[-102.74017495089873,18.071791546327745],[-102.73730487806381,18.07291464638797],[-102.7295687730537,18.071775696375823],[-102.72678794555668,18.070183363077888],[-102.72119381958652,18.069058938252965],[-102.71858184396154,18.06657823019873],[-102.71872035011683,18.06155652931801],[-102.71588845881047,18.062191231978886],[-102.71449406145058,18.060416321332923],[-102.70840245234024,18.058431273109704],[-102.70698445093439,18.059388243701164],[-102.69993583058215,18.05751809903734],[-102.69750745456105,18.055170550102332],[-102.69657049918561,18.056476199226267],[-102.69416149491826,18.055205078564768],[-102.69107261209251,18.055741969586506],[-102.68894106464256,18.059596025018664],[-102.68442243876609,18.05880094349891],[-102.68322338922047,18.059711766201133],[-102.67923130002498,18.05734933767792],[-102.67581752669287,18.05953459674356],[-102.67349820372436,18.05952082346272],[-102.66581069053672,18.057411251991994],[-102.66158734123002,18.055457245996593],[-102.65632078280339,18.054383846393762],[-102.65652145480766,18.05344586430033],[-102.652278535069,18.050304720000668],[-102.65052801470773,18.051581868839094],[-102.64998596888341,18.049918475927313],[-102.64789703319906,18.050407913238246],[-102.64515465882897,18.052877978212337],[-102.64397511258943,18.05174409329942],[-102.6418541858448,18.052681245985184],[-102.6383742071929,18.051899720178085],[-102.63725211506409,18.050095228579266],[-102.6343998837416,18.049702081571695],[-102.63002070893339,18.051751379697578],[-102.62175367791104,18.050442914633834],[-102.616854940591,18.047376484646747],[-102.61193286485292,18.04771824503632],[-102.61117570510692,18.049013623150415],[-102.60729189670599,18.04835233699447],[-102.59034298245291,18.043341830689485],[-102.57072688022964,18.036567602778973],[-102.55837619582394,18.03305134392474],[-102.55140768974661,18.03262646907865],[-102.53513916138252,18.028476226685882],[-102.53220525736714,18.02712144047183],[-102.52829284098135,18.02705334790238],[-102.52748057215109,18.025859062671657],[-102.52408223939682,18.025942785655047],[-102.52077622687762,18.024044108386136],[-102.51959275936514,18.021809841693937],[-102.51656945354648,18.022965208786786],[-102.51481182686007,18.021866267652797],[-102.51016548601058,18.022338756510635],[-102.50866213000035,18.021249939738937],[-102.50102228701604,18.020550498232467],[-102.49980133125803,18.02139703780989],[-102.49413400254184,18.021175735108216],[-102.4878879774281,18.019821566834196],[-102.47645768112034,18.016692784275108],[-102.44844582012757,18.008549389013695],[-102.42389602036707,18.000608184175803],[-102.40047865034592,17.993822505819537],[-102.3849987569244,17.989019135470926],[-102.35666032314367,17.981791286836312],[-102.35326378495233,17.98111709579308],[-102.33522474830835,17.975969040044276],[-102.32579624776173,17.974097068702406],[-102.31014885142338,17.96983963115929],[-102.29342355490655,17.963425562764826],[-102.28117937618498,17.95906597189071],[-102.2609379239953,17.950862202675125],[-102.25497610977914,17.947937295812267],[-102.24627093309715,17.942801099945086],[-102.22876501933172,17.933527481913586],[-102.22231707689514,17.92968842757068],[-102.21559658805484,17.92626087813528],[-102.20658514314783,17.92309923459476],[-102.20365280636281,17.921274848028304],[-102.19174733959409,17.91553591766626],[-102.18258004499484,17.914989248075074],[-102.17811930164049,17.916676590235625],[-102.17209342379971,17.92028352514444],[-102.16524665100025,17.922828672297555],[-102.16403713433021,17.92220315897498],[-102.16292279692806,17.92575551590022],[-102.16441932737382,17.92683088446188],[-102.16262446466942,17.928303808481985],[-102.15586015028708,17.930127896808585],[-102.14684663306377,17.934402047604692],[-102.14185231739339,17.935163523475353],[-102.13707221918548,17.938743395970846],[-102.13864224832105,17.942994784403766],[-102.13742516953948,17.948856053296083],[-102.13402273856775,17.94950415574175],[-102.1330591140453,17.951522434370418],[-102.13606807420246,17.955773906067236],[-102.13611870051176,17.961689407215374],[-102.1375517318611,17.96968410249059],[-102.14317220038663,17.97419631220953],[-102.14592754309456,17.9757020605565],[-102.15513681047912,17.978248679436717],[-102.16020662813719,17.98113866101056],[-102.17327503269195,17.989636815276754],[-102.18015956150538,17.99890091470013],[-102.18130799226213,18.003315874933264],[-102.18292284952867,18.018158567384376],[-102.18426635145227,18.027610921203177],[-102.18322451791443,18.032983628212776],[-102.17841097698607,18.037851669304928],[-102.18118679153099,18.052214623728105],[-102.18382067814946,18.057076074577594],[-102.18411750049228,18.0616379049776],[-102.17844466762381,18.073728455823982],[-102.17812257995075,18.07682477374675],[-102.17977758500342,18.088788960994805],[-102.17784533513918,18.098402899973905],[-102.17519873639941,18.106692496142557],[-102.17445089059134,18.114368265716053],[-102.17799935967759,18.117420209493787],[-102.17827505602997,18.12292335376509],[-102.17626497499077,18.12736404921003],[-102.17288795552201,18.131193121375873],[-102.16938864291706,18.13361778114927],[-102.16624916996028,18.13728452770738],[-102.16259975201757,18.14703108199052],[-102.1615407292768,18.155544255256245],[-102.1620667809122,18.16265645213724],[-102.16087980113525,18.165416702566517],[-102.15882748627354,18.166550790984047],[-102.15495434081743,18.166723693332642],[-102.15064102503948,18.16988128508376],[-102.14921692737755,18.17229677270541],[-102.14771969538236,18.178670994705953],[-102.14561364418512,18.183144381592797],[-102.1432400794925,18.186373130692004],[-102.14031434220982,18.188264871241245],[-102.13410762987951,18.18902054726243],[-102.13081054223005,18.188845186348146],[-102.12491723059384,18.186517427150875],[-102.11769227047483,18.18688434420477],[-102.11042745890609,18.190581419133252],[-102.1036992674409,18.191943259384345],[-102.0999613783955,18.193614535472136],[-102.09550348480406,18.194659532886647],[-102.08842503393691,18.19536809461681],[-102.08330544005014,18.19437746184792],[-102.07948795085593,18.194400077986586],[-102.07237513302442,18.19345183065508],[-102.0675677085024,18.19463220363184],[-102.05615387674277,18.19546395712814],[-102.04771614725456,18.200138285239575],[-102.04307025963624,18.205848468635395],[-102.03867717289978,18.208196308015545],[-102.03080076375295,18.208458815742745],[-102.02704897954874,18.206521651146204],[-102.02198334909417,18.20286104143679],[-102.01905527943188,18.202115729099944],[-102.0121030339867,18.20456431076576],[-102.00898774621851,18.204705032546485],[-102.00455555003322,18.203001250623288],[-101.99985033787243,18.202497535885072],[-101.99468738076484,18.204196036140047],[-101.98784032931536,18.204844317160905],[-101.98395258535982,18.206236895629274],[-101.97814882832449,18.207309575385125],[-101.97461104882143,18.20965683534007],[-101.97380291117173,18.21342405357433],[-101.97778489711237,18.225369889175397],[-101.9767259891288,18.229541095217257],[-101.9715693188802,18.233072032697123],[-101.96929974302236,18.23301813743251],[-101.96061874646796,18.230069508441034],[-101.95200823207597,18.227949188665832],[-101.9477113507487,18.228214140165846],[-101.93687557336472,18.232631726444822],[-101.93078649063688,18.231625965065405],[-101.927392275643,18.231831990092303],[-101.92389224458935,18.23683356835801],[-101.9190789166127,18.241285820909184],[-101.91089208360472,18.242123475462904],[-101.9066474026111,18.244807846914398],[-101.90456399956395,18.247904931483845],[-101.90520600475173,18.25523242438942],[-101.90715408936182,18.260728403303176],[-101.90568937745013,18.26344525634562],[-101.9004491331479,18.26993934820723],[-101.89852323224824,18.275035944863077],[-101.89681947800204,18.277115214996],[-101.89391225463709,18.2752451734911],[-101.89179205965365,18.27073029703456],[-101.8875634763175,18.26614973367947],[-101.88303877079238,18.262423872808426],[-101.87479156999711,18.260242864860516],[-101.86937979958441,18.259693320028816],[-101.86460936517017,18.26072330536175],[-101.86238834330658,18.264203180607467],[-101.86422766872886,18.266576686052645],[-101.87606294080814,18.270787242072572],[-101.88092062585861,18.27471111558475],[-101.88291493826495,18.27837356050452],[-101.88132544437065,18.280234018465194],[-101.87472043929694,18.28180552988414],[-101.86478621863233,18.28574767262046],[-101.86269467468162,18.28722847026995],[-101.86254906318851,18.290902444777657],[-101.86602891205393,18.293663819476876],[-101.86710125817268,18.29564913810941],[-101.86966414128597,18.304081994001933],[-101.87019781318952,18.308322861156284],[-101.86724450978954,18.311395868280215],[-101.85725658577593,18.312332198078252],[-101.85571613136426,18.314275559251087],[-101.85649001063291,18.31616729141507],[-101.86106285781358,18.32250153391732],[-101.86609525811724,18.325311113197074],[-101.8701339617241,18.329830977161464],[-101.87061629568717,18.332820108088754],[-101.86325600867912,18.33894256406296],[-101.86194446793439,18.343093255413578],[-101.86126416043618,18.35120539465231],[-101.86189445214848,18.35718177652865],[-101.86928353367813,18.364151260741835],[-101.87239714331315,18.366358384620185],[-101.87470587147487,18.370056627171493],[-101.8742717257295,18.371975675267038],[-101.87134087386153,18.37627225687254],[-101.87163594791747,18.38087381716855],[-101.87386965884559,18.385410065628434],[-101.87803560360533,18.388118731519683],[-101.88490353015982,18.393899378585786],[-101.88893555903303,18.399063613345618],[-101.88935620767614,18.403066498505098],[-101.88697927020047,18.412098941530303],[-101.882876299109,18.41730303264262],[-101.87819127999501,18.42462653353033],[-101.87513032218499,18.43521245242448],[-101.87375883560969,18.437485587872175],[-101.86173242693872,18.444919476197526],[-101.86044205291444,18.446185161233586],[-101.86145502395988,18.44883164062429],[-101.87009906365034,18.457029988156137],[-101.8809947424449,18.471285702744296],[-101.88653953115875,18.47722336631847],[-101.88827559111331,18.48344247130092],[-101.88788815974573,18.491571288947853],[-101.88895388420025,18.499016573222093],[-101.88862118632653,18.500762511097605],[-101.88810058628223,18.503876186491595],[-101.88620836156718,18.509283131781103],[-101.88441621347539,18.51913808643843],[-101.88414302450491,18.522869409486987],[-101.88225983329869,18.534227655829056],[-101.88083497923947,18.537515682988953],[-101.87739823611855,18.540830146108533],[-101.87497037442739,18.54222487839803],[-101.8685589226983,18.545720521137923],[-101.86253530248058,18.550529866587794],[-101.85928262101322,18.552895352505686],[-101.85494459691142,18.56168728253715],[-101.84909876185787,18.569428474740334],[-101.84384442777616,18.574395742233833],[-101.8378924152305,18.577931380186214],[-101.83119776776675,18.580521421396156],[-101.82219635242785,18.582596524801204],[-101.8084023779897,18.587582858999724],[-101.79361059333098,18.593365224978243],[-101.78270010082957,18.600242607541816],[-101.77179418694561,18.603721397110235],[-101.76231633221454,18.605842524833463],[-101.75862303614298,18.606025174629735],[-101.73967687684308,18.609659440239568],[-101.73285368980476,18.611479299506584],[-101.72484037251752,18.61247775327888],[-101.717357178106,18.612010801645965],[-101.7134525038494,18.610220643023013],[-101.71048261042239,18.60626289062577],[-101.70782118695331,18.601377467600685],[-101.70671499540782,18.593905621326712],[-101.70568386466562,18.590774810417884],[-101.70341902717439,18.588516035440875],[-101.6983267820965,18.588036011500833],[-101.69014471971082,18.589358763118753],[-101.67111067502242,18.59700694422247],[-101.66727410738321,18.598074676695774],[-101.66234343441403,18.59801988637912],[-101.65524685722056,18.596677956843962],[-101.64952667593212,18.598001807018363],[-101.64120156895603,18.60215285872107],[-101.63899313571238,18.602534393095993],[-101.6289794886809,18.60051930221664],[-101.62449978194564,18.599153983111933],[-101.62171869114809,18.593709104433856],[-101.62111805552195,18.589714625471515],[-101.61964748858014,18.585764604081362],[-101.61459608039968,18.58220903846535],[-101.60746689329909,18.57793659843321],[-101.6050870697224,18.57459524919574],[-101.60330949473814,18.569082651570056],[-101.60296661376145,18.562121385931846],[-101.59919632050378,18.553291049528582],[-101.59799670146822,18.54888768963764],[-101.59623845262712,18.5461367738003],[-101.59120784707665,18.54360187647427],[-101.58947942907827,18.54163346824714],[-101.5883178070174,18.528131535469072],[-101.58707899456738,18.524999849202686],[-101.58356333595862,18.520994765741193],[-101.57629173608427,18.51886909453839],[-101.57352298621623,18.517546574866458],[-101.56776321677978,18.512039738023418],[-101.56424240069526,18.509870974983528],[-101.5589040368173,18.509042435874562],[-101.55355857405658,18.51019644290011],[-101.55035043002073,18.50970104628749],[-101.54697135066868,18.507442668862723],[-101.54400098642026,18.50057687339506],[-101.53842945016419,18.49775601629642],[-101.5353474034402,18.497016017131898],[-101.52848905736283,18.496994660985195],[-101.5180553277836,18.49597949661711],[-101.5130804445144,18.491853344094523],[-101.51094144465026,18.488552606978203],[-101.50744405863168,18.48679729830559],[-101.50285134232746,18.486814140548915],[-101.49640377617641,18.4879685791027],[-101.48897274184861,18.488532845888187],[-101.47897140393974,18.490600676079737],[-101.4749494015042,18.48984266284282],[-101.4699582859821,18.486960467887798],[-101.46802192469175,18.486935530377423],[-101.46433114368233,18.488904165441625],[-101.46121896386597,18.494625950555758],[-101.45865674132972,18.497100738157087],[-101.45465101288619,18.49683067876964],[-101.4493608332844,18.49131336257335],[-101.44639537534806,18.489318285223078],[-101.44037169162175,18.489554385618703],[-101.43804146855632,18.491609507309647],[-101.43453404803364,18.498694302321667],[-101.43215493804041,18.501676423883225],[-101.42761810101058,18.501175211530892],[-101.4229944447228,18.496837977244354],[-101.41888587944015,18.496792697106287],[-101.41400935153189,18.500510111433073],[-101.41172826743457,18.505503924413972],[-101.4107470557455,18.511045351426333],[-101.40688496104013,18.5125125624686],[-101.40414333827187,18.5118256838025],[-101.40090426853448,18.50828749893526],[-101.3982370784891,18.506697460788075],[-101.39162852623099,18.506144194363742],[-101.38954517094754,18.506992608673215],[-101.38626879260363,18.510141788069063],[-101.38226494880217,18.510575821089787],[-101.37617500979172,18.508965464578353],[-101.3743444144747,18.507093945056624],[-101.37224464375635,18.502165219747667],[-101.36831484309681,18.499541548748766],[-101.36402212902209,18.50048575318914],[-101.36242222858607,18.503220637770312],[-101.36292514019897,18.513325935937075],[-101.36395861016723,18.518646040308738],[-101.35758564377608,18.522355382405124],[-101.3500479953621,18.52226587154081],[-101.34633545202729,18.52380617453548],[-101.33927017415061,18.52570379279092],[-101.3352323127666,18.528160304574556],[-101.3277712394833,18.52936060812266],[-101.3238202419326,18.528127095718844],[-101.31899208496645,18.528291041961722],[-101.31267196784802,18.53297799581253],[-101.30254004859887,18.532611083094707],[-101.2960517765136,18.534275915458238],[-101.2855207448215,18.541027136271737],[-101.28469497904882,18.543094245543386],[-101.28207717234932,18.544734029609288],[-101.27996232736683,18.54415472081439],[-101.27443983853908,18.540459764129594],[-101.27340706069202,18.536032453726136],[-101.26732574904639,18.53534779855147],[-101.26121034386944,18.539214096842727],[-101.25445776107841,18.539142979826124],[-101.24903594947278,18.53807136253556],[-101.23923540202327,18.534289889025274],[-101.23114150896356,18.534960151304176],[-101.22521426652145,18.534208510742133],[-101.22071259459773,18.53603017739823],[-101.21504678256963,18.5359103823605],[-101.21278898482586,18.53654940858445],[-101.20914079370209,18.53521910260156],[-101.20543054425224,18.53233814998856],[-101.20169813486473,18.530524518331276],[-101.19538342491859,18.525118257960116],[-101.19366084486046,18.51886594612779],[-101.18991362217605,18.517576550697527],[-101.18697068069662,18.51772932381101],[-101.18155515186868,18.51972162718465],[-101.17911329916791,18.5193857728799],[-101.16870238588945,18.521090109421323],[-101.1615797284964,18.519542043708555],[-101.15733202425952,18.518138800310794],[-101.15115695930479,18.514411520376882],[-101.14726651113199,18.51108699248192],[-101.14196903038504,18.510610901600728],[-101.13896014933994,18.512308353033802],[-101.13548910642487,18.516233973661144],[-101.13311997227254,18.517448452625842],[-101.1282193244736,18.51562621966235],[-101.12453275637279,18.511172509369885],[-101.12026861844095,18.5092567928192],[-101.11384601517028,18.50878804494681],[-101.11037949435973,18.509632869232576],[-101.10201526631647,18.50930245920756],[-101.09263190076143,18.507676953174837],[-101.08866086028479,18.505907856103704],[-101.08365318085731,18.50717143641822],[-101.07688999744124,18.51406042786624],[-101.07156555261037,18.516064599383355],[-101.06537655891185,18.516613164745195],[-101.05449630573344,18.518446963327335],[-101.04236949191835,18.5245563838522],[-101.03796779808931,18.526206025498595],[-101.03328211110386,18.52680344487976],[-101.02370569285534,18.523500357159946],[-101.02092314597513,18.522946916293506],[-101.01773846064049,18.524086673671036],[-101.01502995099332,18.526910012809708],[-101.01160127937146,18.52741235739893],[-101.00937335421969,18.5247847864278],[-101.00734501121485,18.50505373724286],[-101.00720997190496,18.497257377364292],[-101.00599211881513,18.493651027036265],[-101.00208685822201,18.49113167163],[-100.99315806092574,18.49162559278392],[-100.98977675534968,18.491275824256547],[-100.98329442430077,18.488384658485245],[-100.97516832676331,18.483407822188042],[-100.96928491681234,18.476568783830714],[-100.96389507637303,18.471826225372922],[-100.96083253989895,18.4650255476883],[-100.96192848105363,18.461523043676152],[-100.96485053265752,18.45730954740975],[-100.96679701156785,18.452821337364014],[-100.96672413982463,18.449349222140427],[-100.96311420464997,18.445729725191143],[-100.95744337935986,18.44443010246755],[-100.95471581923277,18.444687643666043],[-100.95141439960719,18.446483982845507],[-100.94606719040104,18.45346809333654],[-100.94191585102948,18.455032210586808],[-100.93698814539295,18.453349522597534],[-100.93296116803151,18.45071215537496],[-100.92926086462722,18.445709339940663],[-100.92665661462871,18.443955518409837],[-100.92299407456852,18.4441627094576],[-100.91793898232396,18.44896936417524],[-100.91492193159536,18.459307193228312],[-100.91733537659803,18.465730467142464],[-100.91478521741305,18.47148478923026],[-100.91060399774221,18.472266291978656],[-100.90646835746122,18.47004998600579],[-100.90153676003354,18.464826906796475],[-100.8986395178394,18.463233376768358],[-100.89526026008986,18.462760329418074],[-100.89000703893026,18.465656886853765],[-100.88760041642627,18.468132071410082],[-100.8848377813847,18.476136747782505],[-100.88366936673879,18.481197175658167],[-100.879803422164,18.488409603252535],[-100.87717699150028,18.49064251379008],[-100.87397542928159,18.49200878641949],[-100.86927030578596,18.490322333194626],[-100.86252858145872,18.480599314469885],[-100.85653312545622,18.47706099059087],[-100.8529502516796,18.475843498675204],[-100.84562924960858,18.475319280776944],[-100.83661946989673,18.47290334547023],[-100.8267410597092,18.473657049788187],[-100.82331431273434,18.47452103461461],[-100.8091064273708,18.476515282879802],[-100.79899720034172,18.48057066228813],[-100.79495846685143,18.479046051216926],[-100.79034828095348,18.47260585400585],[-100.77983081287226,18.450883956721043],[-100.77933194044442,18.44479544726147],[-100.77764325423271,18.439543346354526],[-100.77590870428219,18.438155660139387],[-100.76866585684445,18.437666924417954],[-100.76348744696134,18.43657496125769],[-100.76012763916714,18.435203646619357],[-100.7581668723941,18.433282600260213],[-100.7556254704188,18.428603655455618],[-100.75323769448903,18.426718408813088],[-100.74981298550881,18.425620426666114],[-100.74632241427969,18.42620795905185],[-100.74098025585579,18.42821778919472],[-100.73736931741882,18.42730146367137],[-100.73423572349617,18.419578439724944],[-100.73071539000506,18.413903106655823],[-100.72773787816487,18.406150376374114],[-100.72407547168183,18.401489355700335],[-100.71929047698046,18.399177275234365],[-100.71691967167675,18.400199238899177],[-100.71412392995097,18.404254983154487],[-100.71312895467094,18.411315755943292],[-100.71145630179382,18.415175333180855],[-100.70775133061659,18.418667726294757],[-100.7019809286258,18.419613364350823],[-100.69829263257793,18.418924488293783],[-100.69105122340733,18.41415316817313],[-100.68809804016138,18.409777155735185],[-100.68814689629909,18.405769723270737],[-100.68954475134626,18.402277949145457],[-100.68993321305317,18.39709850929296],[-100.68932347192526,18.39393935892781],[-100.68473009814579,18.390085869506777],[-100.68366235646698,18.386860174437118],[-100.67868103489866,18.38634526703862],[-100.67495484365014,18.383624935167575],[-100.67704001993417,18.37690628902874],[-100.67701396018629,18.373184700429704],[-100.67550492860931,18.371489042145868],[-100.66359786885363,18.36138245351998],[-100.6570755719003,18.360467309017224],[-100.6525837293849,18.354530906691934],[-100.6477193714515,18.35033034981626],[-100.64586748147758,18.346149741207455],[-100.64299964073695,18.346157696350474],[-100.64083360505441,18.35154804336048],[-100.64149260873955,18.357372846469502],[-100.64114843615249,18.360513602466085],[-100.63967518197126,18.36391840679687],[-100.63456924737267,18.367758053701777],[-100.6315030503498,18.368242856186384],[-100.62693900127425,18.375651512217416],[-100.61712571044666,18.37728680096751],[-100.61060397159434,18.377053818939032],[-100.6080840156892,18.38119537605388],[-100.60993246312671,18.384853881294816],[-100.60942255757891,18.387441048104165],[-100.60514804543476,18.38873603165746],[-100.60177843837522,18.391025687285207],[-100.6014641522446,18.39434513511185],[-100.59861621886455,18.396550788509046],[-100.59615727380213,18.40072063358201],[-100.59874132764043,18.40355771446616],[-100.59957675040499,18.405794611240992],[-100.59594374734809,18.408288983361956],[-100.59295465875306,18.407256053945275],[-100.58916851530427,18.408294165384746],[-100.58822978257439,18.41214515282178],[-100.59069679990154,18.41546094216409],[-100.5944281406754,18.41608738561871],[-100.60742847537136,18.42480219095654],[-100.61192073256001,18.426783587781813],[-100.62348298977298,18.433222455780765],[-100.63149212798083,18.438469644670022],[-100.63190138392127,18.440973767036724],[-100.63528594945149,18.44298415839569],[-100.63487429894047,18.44662805241103],[-100.63597765791417,18.448064719073102],[-100.63637780364337,18.454630088770443],[-100.63724447119813,18.457749170256136],[-100.6479777954479,18.457411603162768],[-100.64951697816633,18.46214734818983],[-100.64995939002165,18.462590449811728],[-100.6515227418443,18.464156208718407],[-100.65924826498991,18.469120460434794],[-100.6706186796493,18.474698698595205],[-100.67596333801868,18.47838339354422],[-100.68102576975542,18.479687502344916],[-100.68782296285929,18.483229898135278],[-100.69051325697973,18.485733156329104],[-100.69779028580433,18.490641154656657],[-100.70022136674925,18.48851143663194],[-100.70115552656148,18.485068002606567],[-100.70713664431679,18.48304745675682],[-100.71504118493351,18.486397019589617],[-100.70934802086265,18.487872413966045],[-100.70692117493223,18.489364098162696],[-100.70954277289741,18.495977566030774],[-100.71266276545231,18.500300433133305],[-100.71959018592702,18.508551438828306],[-100.72114924018513,18.511860521254505],[-100.72499466259524,18.51593624994632],[-100.73198983978625,18.52098483333748],[-100.7340761939069,18.521194027498154],[-100.73621084473979,18.519254264200754],[-100.74422518269603,18.51807296815224],[-100.76489572391051,18.56121134327742],[-100.76352721700272,18.56331434747966],[-100.764197933628,18.581743302716347],[-100.76069063493145,18.592402567317492],[-100.76160701622524,18.59443399652298],[-100.75844201593412,18.60964081843167],[-100.75640004760407,18.613958507423092],[-100.75157671321955,18.633494483331162],[-100.75121281150012,18.641666730149836],[-100.75693200264095,18.639251666884547],[-100.76010370690534,18.64163054851025],[-100.75881764754234,18.64287769779969],[-100.75944718630979,18.655671764979786],[-100.76205207251314,18.660110840790537],[-100.76415948186877,18.66134786878314],[-100.76551614637077,18.664164001817994],[-100.76123541239957,18.671671168678756],[-100.76109403682608,18.675028474526812],[-100.76224586619423,18.67719686011401],[-100.76236567200272,18.6805445328381],[-100.76638958673897,18.685476882621288],[-100.76673283243821,18.68714189877062],[-100.77023454123048,18.69048049666742],[-100.770282609714,18.692710231340413],[-100.77275600566543,18.690623855992328],[-100.77815032479003,18.69067448070956],[-100.78043839536588,18.689799220791883],[-100.77982631219606,18.688417998176988],[-100.7840669186869,18.68768890178734],[-100.78533817103227,18.691834112732522],[-100.78524000794374,18.694638616447833],[-100.7826871870214,18.698107429055824],[-100.78082753748566,18.704212628072185],[-100.7812477995368,18.708210374045223],[-100.7789205524042,18.715921628416254],[-100.7745912267464,18.72702463716439],[-100.77542839954396,18.72981401438409],[-100.77293519153557,18.73256770086647],[-100.77722882093121,18.736254337692685],[-100.78016318105233,18.739847179908793],[-100.77886488332291,18.742553471972826],[-100.78178034920035,18.7451050779905],[-100.78406728941036,18.74517727204409],[-100.78845965538403,18.74120567615853],[-100.79397844441792,18.74538251969176],[-100.79691197899479,18.746270165979467],[-100.79697570893438,18.750437919787657],[-100.79548405821464,18.754578737273334],[-100.79311177930686,18.755659245054744],[-100.79369855632058,18.75766176913197],[-100.79175844803945,18.75781392166641],[-100.79026142497884,18.761631443966678],[-100.79244835585928,18.762224709556733],[-100.79197720149836,18.76459376033307],[-100.79505116461468,18.767169355450164],[-100.79383779642376,18.768044486227268],[-100.79521652286326,18.771039636977434],[-100.79626475084217,18.777922903444505],[-100.79770864816282,18.782071059064037],[-100.7989748812904,18.782785790212927],[-100.79779112071293,18.78676372756155],[-100.78998059571052,18.79345792762814],[-100.78505094461275,18.796501224804558],[-100.7825175262941,18.801653501323926],[-100.78821597988116,18.817683658913552],[-100.79159252977774,18.82926990151725],[-100.79081353396873,18.830547033426626],[-100.79177088724964,18.83416847180854],[-100.7879582788243,18.837020647371105],[-100.78807226352325,18.838767926929847],[-100.78403352720238,18.842656064233495],[-100.77949041990865,18.850478878694275],[-100.78211742072534,18.85425771817205],[-100.777376157795,18.858181620304492],[-100.77692224286233,18.859752300271737],[-100.77331625753493,18.85878333577608],[-100.76953288800064,18.860778416695553],[-100.76667368256238,18.865415159138536],[-100.7655936283594,18.864554716871226],[-100.76346335805039,18.866806714763072],[-100.75968027063203,18.86583368997981],[-100.75567740607391,18.867743336402157],[-100.75291856788533,18.867050577531245],[-100.74994575552978,18.868108493834995],[-100.74742484576501,18.866448693501525],[-100.74828848791134,18.862070240492642],[-100.74767068127545,18.859691501781924],[-100.74488930576632,18.857564043597392],[-100.74111818125891,18.860415400524687],[-100.73683073400906,18.86050983992942],[-100.73607866303058,18.85876861804485],[-100.73745620866049,18.855239795738328],[-100.736854812758,18.851972024855968],[-100.73493990487276,18.85041992165037],[-100.73211045805999,18.85004913429401],[-100.72657986011495,18.850554383265376],[-100.72400525169286,18.849235390182628],[-100.71487431191554,18.840538862527296],[-100.71225463983609,18.837060948322858],[-100.70998499681059,18.836432841904752],[-100.70964430861574,18.83451387572876],[-100.71171078311403,18.831436968817968],[-100.71232220231082,18.826924448296495],[-100.71145484744295,18.825402102074918],[-100.70324863790768,18.824580655750992],[-100.7026956553334,18.82253421419432],[-100.70468409270211,18.817698973996244],[-100.70552613821462,18.813712612936172],[-100.70583816656097,18.796406519737843],[-100.69962103044304,18.795523227720878],[-100.69606854296876,18.794125491977752],[-100.69350981879546,18.79851173418166],[-100.69231157569845,18.805278906793262],[-100.69032756664865,18.802762183266452],[-100.68767450664154,18.8044922060443],[-100.68438355666325,18.80333352331462],[-100.68331680631599,18.808567034733358],[-100.68031660525924,18.809091262720585],[-100.67943679537831,18.811705005362626],[-100.68068275627002,18.815484201677634],[-100.68000362897311,18.817225899237485],[-100.67522058043784,18.817008109174026],[-100.67259713710524,18.818386640730978],[-100.66943859323129,18.818246550104107],[-100.66657152066801,18.819852529032744],[-100.66804083689493,18.821502871885343],[-100.671187944922,18.82062036597648],[-100.6729329651061,18.824804966264253],[-100.67109380342742,18.828598649963567],[-100.66843384033939,18.82896677904688],[-100.66565140718609,18.834498834597923],[-100.6627204886085,18.83365192484723],[-100.6590471659498,18.83421585165206],[-100.65713168510183,18.837494202559583],[-100.65366128326252,18.83807697203423],[-100.6507936265632,18.84056239766187],[-100.6532723991495,18.843010005589406],[-100.65224094834161,18.847352814696364],[-100.64939223368287,18.848873554809416],[-100.64548932463777,18.84785768209474],[-100.6434135174224,18.848876813139555],[-100.64278301467186,18.852148472711065],[-100.64504501070928,18.860537481214067],[-100.64182598754411,18.861097434909368],[-100.64020615127737,18.862583089552572],[-100.6408367488271,18.865906086495613],[-100.63752384107659,18.86763234500046],[-100.63416444612648,18.866652472139037],[-100.63025517851798,18.867933099239565],[-100.62761246954187,18.86758236235363],[-100.62541546065415,18.865856574792076],[-100.62224716288961,18.866835243679702],[-100.62332618237377,18.871744366366045],[-100.61961078401742,18.874531330871037],[-100.62036235733706,18.87850399965538],[-100.61905577737247,18.879840901249793],[-100.61566626924304,18.88002672881754],[-100.61344368095524,18.883266626188572],[-100.61354612160062,18.88637134174752],[-100.61080354697339,18.889168201219547],[-100.61086697360287,18.89197198420453],[-100.61261548902235,18.892256836146203],[-100.61193533365218,18.89414859030518],[-100.60867857133792,18.89477377088309],[-100.60600133415068,18.892936022975107],[-100.60265255417642,18.893582890165817],[-100.60048297554584,18.892851497787717],[-100.6015178082232,18.897439444901124],[-100.60408938725408,18.898882662081917],[-100.60270290984874,18.900391750344625],[-100.59942480358228,18.900306316189585],[-100.59297288524306,18.906601949897265],[-100.58938916595946,18.908116325176138],[-100.59232994780086,18.911659351952665],[-100.59323688197031,18.91527941879093],[-100.58987437689893,18.915321652691603],[-100.58671647298928,18.911707192518634],[-100.58540984426719,18.911309392379167],[-100.58242559164341,18.914785128550363],[-100.58037062295284,18.915718029112156],[-100.57815910103352,18.91411190253075],[-100.57423546746901,18.914533011324068],[-100.57401889096684,18.9169965697331],[-100.57641193056185,18.918538928409077],[-100.57800603626328,18.921066034112414],[-100.57594761080543,18.922873536851],[-100.57217390407106,18.92200223140634],[-100.56725471897079,18.91835934862496],[-100.56890058012465,18.92109483780183],[-100.56831096006778,18.922667989340084],[-100.56401088106924,18.923519594747802],[-100.56497510054254,18.928568853545187],[-100.56254638693412,18.92859130795648],[-100.56316561445317,18.931263384560907],[-100.55817187621574,18.935097956732022],[-100.54963398110726,18.934160726154573],[-100.54684473045961,18.932745428507303],[-100.54378586805836,18.934703713413114],[-100.54356562363819,18.940407678932047],[-100.54691676274598,18.94142463118976],[-100.5480364978045,18.94546359419769],[-100.54950060021594,18.946935044961947],[-100.54608404097462,18.950149972199426],[-100.54759565664682,18.952107810687778],[-100.54752173240792,18.955577712451543],[-100.5464787668729,18.9584252358581],[-100.54667082964653,18.9641945745758],[-100.54365962175086,18.96588896426249],[-100.54010887868725,18.96268800945603],[-100.53693874179169,18.962823266235546],[-100.53339671714025,18.964396990563955],[-100.53299118474462,18.965899738395592],[-100.53513254816647,18.970120059468115],[-100.53731350079289,18.972344157639668],[-100.5343509193304,18.975972215838283],[-100.53409135824614,18.979288148077785],[-100.53778359787839,18.983241826691824],[-100.5356488264814,18.987528507192508],[-100.53237286329613,18.98570041318868],[-100.53019961353431,18.988614164704302],[-100.53239489644619,18.991243914025176],[-100.52886545355642,18.994470106313088],[-100.52422849216538,18.99271354729308],[-100.52307730098869,18.996050360173115],[-100.5238729028261,18.998457618051646],[-100.52840060242727,19.00511897518885],[-100.53046531816096,19.006507978535353],[-100.53047117232683,19.00866503215906],[-100.52817449526862,19.010251652923955],[-100.52200971685693,19.010921573356654],[-100.51937215633325,19.012084445792027],[-100.51707051838031,19.01123156601932],[-100.51600502005635,19.009139062960514],[-100.51371395829801,19.008554473634035],[-100.51275175632532,19.01243062291894],[-100.50894089059108,19.010300254889955],[-100.50689815036424,19.01309161454327],[-100.50352310194597,19.012761105134075],[-100.5021922159799,19.016213315452205],[-100.49552680801105,19.018941799480103],[-100.49581416554287,19.021431929535993],[-100.49447027856525,19.022022711675163],[-100.49209850948927,19.020085892508234],[-100.48941920503393,19.023006312731013],[-100.4843358031772,19.021025417005205],[-100.48327249586913,19.024143928476633],[-100.48523443687372,19.026292216148477],[-100.48485336087276,19.02805625926044],[-100.48052274403699,19.02592598476548],[-100.47866536617698,19.02677218202831],[-100.47939599688965,19.03059351808639],[-100.47800601173884,19.033700527365568],[-100.47554867014355,19.034177183444115],[-100.47150270709125,19.030532082937896],[-100.46867419761361,19.029085314809663],[-100.46557611493358,19.03169287525418],[-100.46245321976562,19.031324606984242],[-100.45903573107643,19.03302678903151],[-100.45790571057375,19.040980086207014],[-100.45363906887502,19.042444050192046],[-100.45115772172335,19.04776869317317],[-100.44822368665206,19.045843231148694],[-100.44575731154697,19.04597022055026],[-100.44845085797795,19.04921593810792],[-100.44712634957574,19.052023171193525],[-100.44464798754029,19.05194056034719],[-100.44222347270829,19.053962225423618],[-100.43955913693202,19.054292139351276],[-100.4367853830189,19.057637738625658],[-100.43490404531121,19.05745447282294],[-100.43247448943322,19.05510700343183],[-100.43073447190699,19.055967589085412],[-100.43202833622792,19.060260000079666],[-100.4282418431323,19.06131146548495],[-100.42177538675628,19.06066620361861],[-100.41961912645377,19.062557545688378],[-100.41976854730166,19.065943621071483],[-100.41412115807685,19.064754745822597],[-100.41192816872939,19.063421776501002],[-100.4104602216517,19.065212532842963],[-100.41261935490445,19.06665807141536],[-100.41148438681205,19.073294947077386],[-100.40738557420673,19.07576809248053],[-100.40893346982915,19.078935852808684],[-100.40679860935774,19.080506088083666],[-100.40835493055357,19.08311301092374],[-100.41067571491777,19.08401755326861],[-100.40923028604567,19.085399699811262],[-100.40719052278939,19.091218118528047],[-100.40487683612571,19.09379999289905],[-100.40657801096137,19.096110165998937],[-100.40386106754596,19.097893907855962],[-100.40294796617565,19.10380059353463],[-100.4054933921156,19.104065523722284],[-100.40666787733892,19.105749708255644],[-100.4038768646862,19.10772451474662],[-100.40437842315151,19.10945728819223],[-100.40110176489793,19.11079225588702],[-100.39908904914375,19.11050052506812],[-100.39756131392704,19.11620738454343],[-100.39558355025918,19.11711486869683],[-100.39464461109105,19.1216761960564],[-100.39636522581526,19.12303422744526],[-100.39214294945378,19.124618339463154],[-100.39393107382074,19.127561477283734],[-100.39149725156875,19.12841139044224],[-100.39124237514557,19.130438996518365],[-100.38816395046871,19.13677833772624],[-100.38948229391974,19.1429128612275],[-100.38652777190617,19.145054120989187],[-100.38611203683513,19.147505778803918],[-100.3828521245407,19.147612558730998],[-100.37970784425397,19.151463082422026],[-100.37673251285719,19.151783652409677],[-100.37311788046333,19.14856343261482],[-100.3692311299618,19.15054131336717],[-100.36665258545685,19.14970809440416],[-100.36637392162964,19.15338870499295],[-100.36365361898959,19.1521110574418],[-100.3615911451576,19.154706837203435],[-100.36412590971071,19.157205566841583],[-100.36563328866475,19.15901116920412],[-100.37819147860262,19.171100050525865],[-100.37110594402736,19.177496697051424],[-100.37070457163719,19.18068313696955],[-100.37176281105991,19.186997102818566],[-100.37315299662976,19.187565694241925],[-100.37239861718615,19.192425820873552],[-100.3730851216377,19.19417196185134],[-100.37119615327589,19.19498787322391],[-100.36255455267394,19.202940310179088],[-100.35922309832893,19.20299672505257],[-100.36033623462737,19.205087753276416],[-100.33364590212528,19.230918834427996],[-100.33123550493616,19.23051816215076],[-100.32872064452431,19.237356137742722],[-100.32582036751029,19.241732471676357],[-100.32249743219734,19.2506923361928],[-100.31988333252099,19.2529915385104],[-100.32173478781147,19.2563473446657],[-100.31973157114504,19.26179217526544],[-100.31962234550764,19.26522728039356],[-100.32106849767177,19.26713562424402],[-100.31997449556974,19.271635634723964],[-100.32071342982681,19.27453458398469],[-100.32048584554605,19.280293120834017],[-100.31712719144969,19.28422901611094],[-100.31530953113935,19.287416648385488],[-100.32014568805374,19.28889924687161],[-100.32006528203277,19.29093340560638],[-100.31620873739314,19.293157376167358],[-100.31309786055101,19.297258542797465],[-100.32066167624788,19.306829139449917],[-100.32326506063959,19.306803247203902],[-100.3199592867415,19.316230208834213],[-100.31627755134514,19.31941046352881],[-100.30916894360428,19.321211370617164],[-100.3064048204102,19.323767835861986],[-100.30653977681743,19.325792106941094],[-100.30687278290588,19.327744771546747],[-100.30740006796117,19.33351088439707],[-100.30608754125302,19.337886240586784],[-100.30693544035631,19.338242950307745],[-100.30170833324615,19.342900752565754],[-100.30275300229277,19.34477615762671],[-100.30726063803337,19.34844426800288],[-100.31147707256031,19.35425275143166],[-100.31237445699969,19.362361125072255],[-100.31051426474107,19.364705695458667],[-100.3059047915051,19.366866289785037],[-100.30499900692928,19.368605161294568],[-100.30213552001015,19.369998310694825],[-100.29957370563824,19.376581120127696],[-100.29437443392789,19.38092857075742],[-100.29353455317204,19.384696006863805],[-100.2930941158528,19.39512885859864],[-100.28045601670124,19.398391778141388],[-100.2730392468331,19.39894500451652],[-100.2703472453178,19.401406477140995],[-100.26375538842967,19.403156281028373],[-100.25256432353336,19.403326024742057],[-100.24323708386447,19.404028135020212],[-100.23973928147876,19.404279531326097],[-100.23742535862254,19.403512179228358],[-100.21594203383182,19.413421200554637],[-100.21074717942207,19.418810631932104],[-100.2094508050576,19.4221450176978],[-100.20261866007098,19.431028236081488],[-100.20066636193349,19.432802684714318],[-100.19831324864191,19.432943907850756],[-100.19142544215805,19.437800065421584],[-100.18972043300988,19.44049997405051],[-100.19272249633468,19.442985435711876],[-100.1963185020046,19.447296100178676],[-100.19915207718435,19.45230289451871],[-100.20160604856574,19.454631192860575],[-100.20608792847577,19.454466177661743],[-100.20745738027716,19.461129276507563],[-100.20643777736484,19.470370236277404],[-100.2022171662581,19.4744698541528],[-100.20211656703458,19.47619198899514],[-100.20413654960493,19.478043310537828],[-100.2035542610434,19.480847843216964],[-100.20087069298336,19.48255246931751],[-100.20162398999628,19.487413104551365],[-100.20097976105973,19.49279170487455],[-100.17982090975823,19.48831476264695],[-100.17688091202962,19.490145143366476],[-100.17864954895765,19.490688446019647],[-100.17769418256614,19.492624757470708],[-100.18250035137413,19.495683966917227],[-100.18488364451446,19.498835154191],[-100.19234551934062,19.499168695938124],[-100.19338421526606,19.4973833756481],[-100.19731753774295,19.499136807921616],[-100.19758883271419,19.499363614228116],[-100.20193952554803,19.499528263964123],[-100.2017674009025,19.508295056681504],[-100.20109110944657,19.510394456668678],[-100.2012905848037,19.516823334813694],[-100.20057432505183,19.518741565714265],[-100.20185052115323,19.522931845503535],[-100.200024803936,19.526544216290404],[-100.19757615434918,19.529024019233816],[-100.19642666605654,19.531733099930136],[-100.21048939961446,19.542052876422872],[-100.21251951999744,19.545700875732564],[-100.2146963054775,19.552765401387205],[-100.22270880962947,19.556370364675615],[-100.22514968867591,19.55793087273031],[-100.23458014719671,19.55767416847067],[-100.23747633105654,19.55721880342668],[-100.23795365209685,19.566681987160734],[-100.24230304695328,19.569717420461018],[-100.24428752447471,19.5758747956462],[-100.24324775491465,19.581491399152014],[-100.24413287682063,19.588520488154643],[-100.24558119636345,19.592314699357416],[-100.24800520220936,19.601656087536526],[-100.25089865819047,19.614710524101667],[-100.25213924321076,19.61749791523522],[-100.25225344240351,19.62348601552128],[-100.24961633164685,19.627268982117585],[-100.25166285789646,19.62727975507613],[-100.24751921369722,19.634512768664877],[-100.24806917112545,19.63525660199582],[-100.25600918653026,19.646787274113592],[-100.25624458804657,19.649389529388316],[-100.26174746207369,19.658027179372198],[-100.26504944511925,19.661870093462767],[-100.26512072162922,19.6619574367719],[-100.27398972199114,19.672251280722264],[-100.2675168895945,19.677233410937845],[-100.2657017339439,19.68724546011515],[-100.26414470201104,19.694529106467144],[-100.26187467346898,19.69547278423829],[-100.25814895513417,19.694879412119917],[-100.2579120850196,19.695844807866024],[-100.25786909361551,19.697798117214575],[-100.25807335019584,19.698487911820393],[-100.25815295052371,19.69869306700764],[-100.25851687688368,19.69963101853898],[-100.25851891865597,19.69987379334509],[-100.25257641652155,19.703941005558363],[-100.24777598311357,19.704011216439028],[-100.24514784158771,19.705318343730255],[-100.2440075535996,19.704588518365654],[-100.24068119342627,19.708627330532124],[-100.24297701321484,19.708539205315162],[-100.24028913615791,19.712882024575777],[-100.23829743317935,19.7114120531661],[-100.23612399719565,19.715590019215313],[-100.23710411879057,19.718633374181763],[-100.23224280251151,19.7205042660529],[-100.23137127837003,19.717590224276137],[-100.22969292271284,19.720063415510708],[-100.2258026726638,19.71715805405313],[-100.22725673299175,19.713473654525103],[-100.22866322393315,19.7140794001549],[-100.23176949653907,19.710550166797077],[-100.22985716994452,19.708559460135916],[-100.22959325496328,19.708532124615886],[-100.23082130394891,19.707264848670377],[-100.22948998257186,19.702205758052685],[-100.22358103893373,19.702543302315064],[-100.22133177758428,19.702763356260277],[-100.21710333256084,19.70498429496132],[-100.2140179431027,19.703558840161236],[-100.20980881082431,19.704019957720334],[-100.20876382785457,19.70413139842873],[-100.20414999725318,19.70462335192019],[-100.20224972740226,19.702687852432916],[-100.19223506073479,19.701637738154716],[-100.19161612375552,19.697524915106897],[-100.18997004203987,19.69972865518355],[-100.18678406799245,19.709360513778677],[-100.1860062112641,19.71297224178653],[-100.17048934756792,19.712767453364222],[-100.16998188991471,19.71208092210503],[-100.17034636000477,19.710266265341147],[-100.17011381619125,19.709754978345472],[-100.16941962305333,19.708046788800118],[-100.16933912288096,19.70773677691693],[-100.16686202459368,19.710269011958815],[-100.15596937911045,19.721603979809913],[-100.15876111687595,19.723899881286854],[-100.15996079008295,19.725753793697493],[-100.15748759875851,19.72728894710025],[-100.15578580093035,19.725208860152975],[-100.15311029951118,19.72725486024109],[-100.14818575497111,19.728215202509148],[-100.14644585398656,19.73235936096023],[-100.14712655038085,19.74184394062786],[-100.14414944269043,19.746982124728277],[-100.14345473320202,19.750410044041303],[-100.14532281634575,19.75717796235807],[-100.14491128731595,19.764191773751975],[-100.1463852967102,19.765834029233645],[-100.1493284922264,19.76678521355177],[-100.14815361095737,19.769261312592107],[-100.14511365352189,19.77111769736223],[-100.14620339972083,19.775697239681676],[-100.14519011767732,19.782098709429192],[-100.14387622503125,19.783018293317866],[-100.14298182533429,19.78477155526042],[-100.1421624326644,19.786610616708458],[-100.14186484683233,19.787388322120137],[-100.14426553070126,19.792188320247476],[-100.14484861928617,19.793252274690246],[-100.14648119788149,19.796231126351415],[-100.14648127013572,19.799185944769647],[-100.14478967880478,19.800045967966298],[-100.14288529432355,19.80352384291433],[-100.14380499371674,19.807639431349003],[-100.14593963502455,19.810691143538634],[-100.14631400410235,19.814679849456013],[-100.1433138852741,19.81892535867911],[-100.14450337715573,19.820750042041198],[-100.14433949570162,19.823771651075447],[-100.14260847146204,19.828787208797507],[-100.14140518616495,19.829711737133493],[-100.13608916746159,19.84015643897027],[-100.1321207584146,19.851430806622886],[-100.12654192574445,19.85455967637978],[-100.12541049592244,19.856678592243554],[-100.11999522260157,19.856387124752302],[-100.11767311058247,19.857133937832657],[-100.10321413441517,19.853812991534085],[-100.10031144112986,19.855071445154692],[-100.09485362735757,19.860426984916955],[-100.09347487818462,19.859897231944274],[-100.08748121848248,19.860417006081946],[-100.07953348930306,19.85781093566129],[-100.0748109594993,19.857201480267634],[-100.06706024079386,19.855082843316552],[-100.06335633896845,19.854553077862874],[-100.06427233838264,19.85619348190903],[-100.06335892685252,19.86189865158741],[-100.06697308229047,19.86328082038392],[-100.06720306208399,19.861735526627115],[-100.07104497892993,19.863070530433106],[-100.09288869818903,19.873772060615636],[-100.10241977567574,19.87971018346616],[-100.10695419503708,19.886829321983782],[-100.11423060609559,19.90143151563285],[-100.117474787834,19.904014812754326],[-100.11916875873766,19.912100208526454],[-100.12778360837655,19.914492821808153],[-100.13012249807969,19.916193048173398],[-100.13078173729423,19.952049927611426],[-100.13050587416427,19.972003850765248],[-100.13108058440696,19.973075309806916],[-100.13139412753816,19.982001861685376],[-100.12910290756821,19.985715018664052],[-100.1244404577364,19.996845902371263],[-100.11602354877675,20.006129714470433],[-100.12042032533316,20.007835389789477],[-100.12316983541791,20.007695744805687],[-100.12409922267096,20.010990496399245],[-100.12990284551842,20.010590093443966],[-100.13063294810638,20.009651328645987],[-100.13773151216179,20.010754000020825],[-100.14015504360924,20.008099292157],[-100.14276820954052,20.007441812187153],[-100.1444874141464,20.005204896106477],[-100.15006791939163,20.005383600663265],[-100.15507771590632,20.00744062865209],[-100.15507902541037,20.01347165796642],[-100.15769502335922,20.01791486697425],[-100.1558766692138,20.024509849412993],[-100.1586569825269,20.035769881848353],[-100.15454245490838,20.035087693049036],[-100.15507208139752,20.03781816502982],[-100.15245337512295,20.052759411676504],[-100.15285864860112,20.054270319331295],[-100.14715851100203,20.05532521780583],[-100.14636339035883,20.052242399180216],[-100.14164224789386,20.047617185997638],[-100.13935061953134,20.04297050323231],[-100.13793737515857,20.04431153520295],[-100.13840568534283,20.047873166376576],[-100.13857057714569,20.047980051260595],[-100.13893874384036,20.04827904286293],[-100.14344233990965,20.051042850327633],[-100.14329346405918,20.0526568120153],[-100.14710050131254,20.057669702279213],[-100.15029229192078,20.05703623855601],[-100.15111013165102,20.057033828190413],[-100.15272034343326,20.0574979804789],[-100.1529703703875,20.057653103678717],[-100.15545210699963,20.058770339261343],[-100.15570778430867,20.058850479941725],[-100.15892352583813,20.061597679741453],[-100.16279074536897,20.06355402731856],[-100.1607988934851,20.06461686553331],[-100.16025966137386,20.064810861102274],[-100.15916021763985,20.06511242106876],[-100.15892989878574,20.06544867966005],[-100.15885920045588,20.065578008086447],[-100.16226214161071,20.067298752452245],[-100.15749015936018,20.069741649319667],[-100.15795694289534,20.07443321048021],[-100.16350527144186,20.0762727422711],[-100.1648660384032,20.07831341283338],[-100.1651096367001,20.07806895396817],[-100.16637907313446,20.076513268992812],[-100.16658342165545,20.075672368629625],[-100.16684100779753,20.07483527285308],[-100.16799953258715,20.075267868483706],[-100.16840832953943,20.07535475308208],[-100.16862642328374,20.07541216419986],[-100.16870339078366,20.075409774224],[-100.16889936669588,20.07535687142115],[-100.16921714207052,20.075396392101766],[-100.1698092228512,20.075730255901817],[-100.16987999511275,20.076068552217237],[-100.17005447876375,20.077151582075032],[-100.1704725478154,20.078199740224477],[-100.17059813407536,20.078297257525378],[-100.17130884108815,20.078403234839016],[-100.17253285765287,20.077590426518498],[-100.17269403879084,20.077345913738668],[-100.17234441542644,20.076610475222708],[-100.17238980048995,20.075688972304818],[-100.17215301436335,20.075051177793966],[-100.17209105338577,20.074633375541225],[-100.17224518253147,20.074368313448588],[-100.17250896459717,20.07383160331341],[-100.17270896143884,20.073515134985257],[-100.17316714516988,20.073028510002132],[-100.17524771223208,20.07204480941448],[-100.17561659444749,20.072193228042806],[-100.17585189604517,20.072164643463452],[-100.17607736299226,20.07210938067925],[-100.17621704674679,20.071989412941434],[-100.1767356003648,20.070909482020056],[-100.1776312760988,20.071265504999303],[-100.17823540968755,20.071725915354705],[-100.17871176445743,20.07205870395137],[-100.17929283285207,20.07258652775471],[-100.17991116202381,20.07273914342767],[-100.18055303190022,20.072757378322876],[-100.18164948840445,20.073058215166668],[-100.18245352414908,20.07343354328566],[-100.18263116715258,20.07481087891165],[-100.18107837304404,20.076501326397818],[-100.18026557444546,20.079070585852435],[-100.17915073651335,20.080575796100447],[-100.17887709757412,20.08211203802591],[-100.17941111206682,20.082771688047615],[-100.18047419585821,20.082846511739945],[-100.18141939754156,20.082404912450556],[-100.18167942780889,20.0824302722919],[-100.18264240477873,20.082650718452044],[-100.18304712898743,20.08278617345036],[-100.18349399929241,20.08273918796874],[-100.18367010399572,20.082606126095413],[-100.1842625329594,20.081587285696514],[-100.18500081091832,20.08028457338463],[-100.18641548670143,20.080095533096312],[-100.18739047531892,20.08015223776323],[-100.18769932210824,20.080069518373136],[-100.1879858856646,20.079775708747093],[-100.18802512708783,20.079181772022196],[-100.18803263155326,20.07875084775867],[-100.18820962624477,20.07810442439404],[-100.18875344615253,20.07712878757792],[-100.18929869203396,20.076396856516737],[-100.1902589811009,20.075799192581997],[-100.19321580137057,20.074830441803726],[-100.19649802962937,20.07672614931363],[-100.20093707454947,20.076267316546307],[-100.20187344057018,20.07623663504188],[-100.2006872766973,20.088104174522584],[-100.20059859588889,20.08917973358149],[-100.19915654647303,20.105271466312672],[-100.19890187673093,20.107490506402655],[-100.19865028522668,20.10968255360507],[-100.19857220169229,20.110362793807212],[-100.1983182961045,20.112575017379356],[-100.19827877963496,20.112919364570814],[-100.19812539946889,20.11425565196498],[-100.19823309723188,20.119893532813194],[-100.1981374315722,20.12100455054292],[-100.19800377195219,20.12257883340186],[-100.19803941741338,20.122673427922905],[-100.19789802757253,20.12408699296674],[-100.19775792612904,20.12577956580384],[-100.19759861450808,20.127965921854354],[-100.19745807960828,20.129036204148576],[-100.19751038644995,20.12989167622561],[-100.20373201326584,20.13214427454875],[-100.22116391262591,20.138525710966974],[-100.2231056964522,20.13920218063339],[-100.22707497653442,20.14048336795389],[-100.23011955899716,20.14154155481151],[-100.23071460353623,20.141754190100812],[-100.23235740251368,20.142328973969995],[-100.23312439776794,20.14257896627987],[-100.23497263817518,20.143923140003835],[-100.23422991032197,20.14457043236382],[-100.2326702324163,20.14565368930397],[-100.23263378746907,20.145788130093138],[-100.2316393782175,20.14653094044894],[-100.23104970738882,20.146558890302572],[-100.23084053235408,20.14623732719207],[-100.23016543470402,20.146517454030572],[-100.22870758873023,20.147723534676402],[-100.22769416293693,20.149467389925576],[-100.22686031602484,20.150220363155825],[-100.22543331771067,20.15017168043221],[-100.22464077565195,20.150124475308132],[-100.22425615859657,20.149978651205117],[-100.22354733183465,20.14999859709843],[-100.2224324688799,20.150564504324564],[-100.21653838682488,20.15521143620083],[-100.21441859878121,20.155919374075722],[-100.21331373105545,20.157574881951575],[-100.21217953679451,20.159057350539456],[-100.21193021169262,20.159720578996712],[-100.20943582698078,20.161310822777807],[-100.20956674582817,20.16345376757522],[-100.20561528777552,20.164965037738114],[-100.20433496750235,20.166354641643295],[-100.20357653605794,20.167554557077494],[-100.20249841524407,20.172330077607285],[-100.2018674603782,20.17274493107692],[-100.19662412849715,20.174214450196473],[-100.19186581502157,20.176239956260872],[-100.1917024569965,20.179478230736947],[-100.19116024939717,20.182793989388983],[-100.19043752578591,20.18387994062067],[-100.1905057435194,20.188043611749436],[-100.18850862631933,20.188718540764512],[-100.18851157277948,20.193659388550145],[-100.18534342053209,20.194273365003824],[-100.18419347737995,20.189423069293184],[-100.18348927514143,20.193234194097727],[-100.18314981139082,20.194910179261342],[-100.18304943353343,20.195430203613114],[-100.18238512881544,20.198927673130868],[-100.18114401952914,20.208800541116773],[-100.18291911535903,20.20826942371673],[-100.1845366537317,20.211649338002758],[-100.18809542724216,20.21463196189893],[-100.19645484520197,20.222276931850217],[-100.20368317192464,20.226346110847885],[-100.20758119284818,20.228880353342333],[-100.21173109816937,20.230842114274708],[-100.2182159347393,20.23380726902576],[-100.22162485934768,20.234578314745306],[-100.22430009444639,20.23787713272941],[-100.22749250855964,20.239826652683973],[-100.23141702015869,20.242071620374475],[-100.23703833477674,20.244788266848275],[-100.23852020586605,20.245781433335083],[-100.24512634409842,20.250364435090603],[-100.25015095527044,20.256516519288084],[-100.25290266794991,20.259696908101375],[-100.25346696956444,20.260930344878602],[-100.25622313854956,20.26306848877772],[-100.25899070614554,20.266079330672937],[-100.25940370344858,20.266509808682315],[-100.25966016866761,20.26677446337851],[-100.25972654634603,20.2668171181391],[-100.259909587386,20.26701530755298],[-100.26198622973436,20.267879155944172],[-100.26328867916436,20.268248627231344],[-100.26610343194199,20.26903391141019],[-100.26672350810378,20.269163019431517],[-100.2668028092645,20.269186621785707],[-100.26780581519671,20.269444436727213],[-100.26906924702752,20.269814695681532],[-100.26947143388287,20.269965664339395],[-100.26991841324798,20.26997757601282],[-100.27055772459153,20.27009904989518],[-100.27091153859789,20.270194083935166],[-100.2743468214083,20.271115655306573],[-100.28022394259091,20.272802424085057],[-100.29773334922237,20.278545717004363],[-100.30957627816002,20.282478013577872],[-100.30898748035071,20.28328726429106],[-100.30748454279149,20.28546938697042],[-100.30750579094689,20.28557508265999],[-100.3155658541134,20.288110753928663],[-100.32856825179852,20.29234030637366],[-100.33972429203027,20.295998528684834],[-100.34110855583998,20.296450356924026],[-100.34583311323826,20.298000213690898],[-100.34828687212149,20.29282382848328],[-100.34835095695883,20.29269194452229],[-100.35065647304316,20.28841309859513],[-100.34585811037613,20.284442912228428],[-100.34754166943321,20.28239911222505],[-100.34741571362002,20.280471857617272],[-100.34408772999865,20.272944256362393],[-100.3410780495737,20.273342447946447],[-100.33809901424058,20.26926997889359],[-100.33423186717448,20.26537417893985],[-100.3310678211136,20.266762831497772],[-100.32937807440857,20.263049586479838],[-100.32576305420099,20.261020387863937],[-100.327299991019,20.2577284494443],[-100.32355837336127,20.251934020454144],[-100.33163087475009,20.245236509929157],[-100.33281062744749,20.24264900655544],[-100.33551528562714,20.241081218658053],[-100.34149857421653,20.2391131800444],[-100.3418485433939,20.232149242797107],[-100.34351801623876,20.228963727024677],[-100.34614203799242,20.227703668833726],[-100.3474676990266,20.22469440497821],[-100.34995888853115,20.224247293710732],[-100.35022113597802,20.221412431406918],[-100.35271684209926,20.221295206893274],[-100.35523670502914,20.219018358914468],[-100.35524455209577,20.216215300570127],[-100.35392855067471,20.214000473335943],[-100.35522526666944,20.211875490859597],[-100.35409704951758,20.209859411910656],[-100.35277519228765,20.20135930750007],[-100.35023729463313,20.199069150771493],[-100.34887629859668,20.200559004892227],[-100.3459696542468,20.200979907343253],[-100.34542092324477,20.19654942384284],[-100.34210662323062,20.194944449663183],[-100.34030835268976,20.18973660038438],[-100.3558366851467,20.182385932693535],[-100.35403418976097,20.18062227068293],[-100.3548075056363,20.177686880546503],[-100.35886046203416,20.17528177982183],[-100.36099472584431,20.172825961111528],[-100.36077274510723,20.168683626713857],[-100.35892493207825,20.167221596008517],[-100.3598904004736,20.164332575914045],[-100.36651546078468,20.153635421255615],[-100.36987833377367,20.146664052351582],[-100.37088693279566,20.136185421155062],[-100.37969201991365,20.130665624201185],[-100.38360804243564,20.129146356599335],[-100.39151167133934,20.121033190469802],[-100.38846209085273,20.114164347491],[-100.3852915388793,20.10450558316643],[-100.39712029317502,20.097123589819716],[-100.3949352450349,20.09417927248984],[-100.38975110730871,20.080822930755573],[-100.3685265050272,20.068559120329155],[-100.3672501197612,20.067487505721488],[-100.35826368413001,20.064916462276642],[-100.35976818212953,20.057489790388672],[-100.36204082148862,20.053436625643712],[-100.36057345148623,20.052131555810377],[-100.35870610321109,20.04773974960989],[-100.35637313433597,20.038219733222206],[-100.35438440002264,20.027790614738933],[-100.35496966498954,20.01011958736933],[-100.35927413802932,20.009742302140694],[-100.36074428743188,20.020422343950884],[-100.36050504186426,20.023960684889175],[-100.36194315541786,20.023848715984627],[-100.36470827650868,20.019708234938832],[-100.36947199450992,20.021718829390295],[-100.37040325497566,20.021265587189873],[-100.36996036861217,20.01566297068831],[-100.3629311168985,19.98986107685687],[-100.37070587093922,19.989134464182484],[-100.38682935385549,19.988906786354562],[-100.39116703351266,19.988248520623074],[-100.3993410032067,19.985283232375593],[-100.4050188766114,19.983831850517674],[-100.41061519627311,19.987445489490597],[-100.4140013574181,19.98572505274359],[-100.42035776592849,19.985613412576242],[-100.42478010483671,19.984082486326315],[-100.42786164414349,19.985402259311968],[-100.43123564662062,19.985174998946263],[-100.43591638652697,19.983134413272637],[-100.44358387196195,19.982284998312082],[-100.44442410310955,19.983271001089975],[-100.4496715627862,19.982677602809588],[-100.45385778298044,19.98516894930441],[-100.46271151114593,19.98849747624115],[-100.46534930854091,19.986614525603954],[-100.46252842900685,19.98434628345285],[-100.46158402645938,19.98019518504333],[-100.46601615878217,19.978905626645314],[-100.46941868728385,19.98024733202834],[-100.47064554514327,19.97873819766653],[-100.46998220585164,19.975562286553043],[-100.47359704039394,19.97233424951412],[-100.48011112230017,19.96901623997411],[-100.48326613934466,19.968501208151622],[-100.48379353309906,19.96731782423791],[-100.4889957837193,19.966208236950422],[-100.49818423018536,19.958043203648685],[-100.50558286153927,19.957943395228483],[-100.50895826760262,19.95941601100219],[-100.51176906199896,19.95719467500362],[-100.51040724733934,19.955539395584537],[-100.51042009547939,19.951754937416183],[-100.51183759300659,19.94222107225181],[-100.51570409382867,19.94045423904157],[-100.51600458282547,19.936606426781452],[-100.51746009724548,19.936575879962163],[-100.5205836645863,19.93073993929437],[-100.52184944502551,19.925875061733677],[-100.52075117260796,19.925491566264498],[-100.51972396654588,19.92168052219398],[-100.51994644551394,19.91882004962264],[-100.52929584862329,19.920220825381136],[-100.53600850217009,19.92300660122544],[-100.53408278367601,19.93238427149953],[-100.53472997669428,19.936285927284644],[-100.5300214171358,19.939259544991046],[-100.52897599383817,19.943555042654225],[-100.52927857518978,19.951720862741013],[-100.52821485525641,19.955906086764685],[-100.52677940762027,19.965760452330187],[-100.52740419057108,19.972034593492026],[-100.52820131427751,19.974257314722365],[-100.53182333546738,19.97639449916585],[-100.5339789327337,19.974828172273305],[-100.53960665244517,19.97420699957496],[-100.54063118078642,19.974929284909592],[-100.54242837231794,19.972831212015876],[-100.53504084884094,19.97197443195529],[-100.53367503499283,19.970687064926324],[-100.5344158636978,19.968640427595744],[-100.54124946153769,19.964585205011872],[-100.54286206658503,19.96168578874233],[-100.54696244488417,19.960582583036],[-100.5523805089386,19.957586894548513],[-100.55566193978933,19.957815934829796],[-100.56080503906759,19.95980508871139],[-100.56369427277212,19.96503723915106],[-100.565481683075,19.966139325666973],[-100.57162881607934,19.96473733613277],[-100.57594751794818,19.96174834642352],[-100.57733650385092,19.95899836506885],[-100.58116053492768,19.957400096999493],[-100.5841390689946,19.959023687386605],[-100.58946758822901,19.95668097212996],[-100.59307574605663,19.9582803709377],[-100.5929467957294,19.962688464007613],[-100.59385607386264,19.96393089258629],[-100.5926743869822,19.966467354446763],[-100.58759407904057,19.971390343228734],[-100.58062043823185,19.97504098082578],[-100.57546918051452,19.975691926692548],[-100.57115273522004,19.97537364756988],[-100.56669554686096,19.974129855288083],[-100.56301186787101,19.977626624436596],[-100.56229448451705,19.980321381096587],[-100.55858972479564,19.9828750361184],[-100.55897817476642,19.9845691643838],[-100.55678185646258,19.985298374632293],[-100.55789489366259,19.99171555101259],[-100.56319678644286,19.99139533752276],[-100.57031939314959,19.991931147921605],[-100.5767101366551,19.993060792384767],[-100.58295597756421,19.99195225134872],[-100.59560330237713,19.99166201248306],[-100.59433489144385,19.989817047222346],[-100.59852287657606,19.98830056512793],[-100.59925022054477,19.986615855318405],[-100.60189335051768,19.98589306902892],[-100.60551039483454,19.983014716679918],[-100.61168792051365,19.971942201916022],[-100.61603393308883,19.959634386386085],[-100.61757338658725,19.95769254743277],[-100.62063482758896,19.956926647594685],[-100.62941807770648,19.9577700341398],[-100.63698777895684,19.95775075668871],[-100.64110260833763,19.957238078456214],[-100.6488689942858,19.95800121123756],[-100.65380127112672,19.959697792838938],[-100.66038134045874,19.96454833808832],[-100.67181849056857,19.958524009955454],[-100.67651589454192,19.952979048439715],[-100.68064849793774,19.950463147706444],[-100.69496006391938,19.94767082474391],[-100.69800807621499,19.94523741660157],[-100.70429358026729,19.942767316797756],[-100.70847666365484,19.943055910931207],[-100.7188173561953,19.940519376495217],[-100.73280714587668,19.93061930811467],[-100.73874810055833,19.92394141613039],[-100.74018687608532,19.920943764831634],[-100.74714925233701,19.913069534897772],[-100.74875278705287,19.912750180494243],[-100.7535043584761,19.917124492032315],[-100.76516890431503,19.91583803525708],[-100.76696587590834,19.91722980356974],[-100.77199731259054,19.91792457352045],[-100.77420997580117,19.91540077310117],[-100.77881361315883,19.915149686726522],[-100.78113090860563,19.918899907720913],[-100.78086950573635,19.923989561564326],[-100.78293175252594,19.929917122383983],[-100.78368455366387,19.936078952480443],[-100.78923272633307,19.942972119176886],[-100.79066793376182,19.945431825213632],[-100.79206393964995,19.955574798212695],[-100.80220934492485,19.95834005220189],[-100.80921186659322,19.96581070520034],[-100.81238511355065,19.97138803625404],[-100.81894063517547,19.9740572763003],[-100.82430144904833,19.9783290989962],[-100.82995656567317,19.975420044462226],[-100.83286912300548,19.972395318355666],[-100.83128441007295,19.96268590666466],[-100.82996960002095,19.95972272218023],[-100.83022681770285,19.954134286288024],[-100.8339749594162,19.947163565189555],[-100.83576183814938,19.934596425713153],[-100.8447116030689,19.934550731252102],[-100.84941753168226,19.93563382616668],[-100.85366611407119,19.93445750384393],[-100.8550523623868,19.935582240450174],[-100.85470802860391,19.93934642165675],[-100.85301287714594,19.94165094551346],[-100.85623224142279,19.942311987413802],[-100.85721299076829,19.94661576540841],[-100.86028595332948,19.948942970646158],[-100.86389022766588,19.94872772997161],[-100.86420101192948,19.94646601195575],[-100.87270385628409,19.944046512549733],[-100.87825714002753,19.94432966149509],[-100.88261279786462,19.943926264728077],[-100.8855685153232,19.946015481081588],[-100.88617385517597,19.947765114901813],[-100.8924441866327,19.950959455251393],[-100.901585911712,19.95950582943965],[-100.90429610086005,19.961075061593647],[-100.90891088450797,19.962236962982445],[-100.91109821160813,19.961714472597635],[-100.915922812411,19.95792455286295],[-100.9183933904115,19.957401077519876],[-100.9236515782386,19.95824530999846],[-100.92511348422295,19.9571028077915],[-100.93073600788694,19.955967887822283],[-100.93258188662736,19.953490838862763],[-100.93562838972446,19.957191573780563],[-100.94163779539434,19.95952089218713],[-100.94165911142494,19.960229314937123],[-100.94753938807838,19.962545232173056],[-100.94704321207428,19.950265521354027],[-100.94787934907339,19.93356305668118],[-100.9548550130894,19.930807374687276],[-100.95715329569424,19.93109859275347],[-100.96107987557957,19.930051879645646],[-100.96441001181756,19.928274701697035],[-100.97184011240194,19.929976727768747],[-100.97661633774436,19.93533874875459],[-100.97780591817923,19.93864818992489],[-100.97936816260028,19.952911635353757],[-100.98190115074482,19.953016735855783],[-100.98079122942892,19.955221078514057],[-100.98378579665678,19.956716353603383],[-100.98877188400877,19.956138722019375],[-100.99426824045304,19.95439002971642],[-100.99807098444671,19.954588762147637],[-101.00227569478449,19.952363250592157],[-101.0034426964811,19.9535562685399],[-101.00279458021083,19.956465022487464],[-101.003905888394,19.956879367761985],[-101.00221563434246,19.96160630048189],[-101.00249019861587,19.965011013283743],[-101.00458282102903,19.966589825589494],[-100.99908665098042,19.96953147975779],[-100.99719862012813,19.972338957490535],[-100.99174781320312,19.97527628231694],[-100.98737452624806,19.979244380745627],[-100.98136655495586,19.980844464170673],[-100.9767092517946,19.98273844883863],[-100.9776776819777,19.985515664028185],[-100.97952857809491,19.985805805805455],[-100.9806555137161,19.988656737526014],[-100.97926926166474,19.993802890231052],[-100.98008872374027,19.995306242220806],[-100.98339967821005,19.996542047382434],[-100.98270078542356,20.002630647953026],[-100.97527156799458,20.003139194209496],[-100.97277972116814,20.002088947312245],[-100.97201310770305,20.003976598918427],[-100.96814686944595,20.00696858032012],[-100.96733467789943,20.009914340475575],[-100.96806464158186,20.011965231846773],[-100.9726849164744,20.01309397704415],[-100.97817626111413,20.016729192256037],[-100.98081904356826,20.023449961629808],[-100.98974778933405,20.0273332230812],[-100.9940719874989,20.02712059068847],[-100.99758727302833,20.025587788413816],[-101.00279138642543,20.028380458582546],[-101.00808917870194,20.028093184929332],[-101.00436655644188,20.03032018164612],[-101.00513615455895,20.034927015211053],[-101.00356662274226,20.037963992012692],[-101.00840608699372,20.036949989975483],[-101.01270153941744,20.03775812093852],[-101.01360963341148,20.040557623769303],[-101.01398656980433,20.045711285875086],[-101.00923954349514,20.050057002063795],[-101.00448489761015,20.0560513924068],[-100.99840748109227,20.061441717863715],[-100.99400796746164,20.063147379093778],[-100.9927151581121,20.064489667619966],[-101.00079152064114,20.07160626805586],[-101.0091660288058,20.079534049103472],[-101.01727794604318,20.085695223712207],[-101.02135266288349,20.086944748685823],[-101.02579473628697,20.08663581328608],[-101.02813671198214,20.08791386095504],[-101.03525957451222,20.087335981493595],[-101.04008651730084,20.088978128441056],[-101.04033258255237,20.090631611458946],[-101.04290109381304,20.09195417208531],[-101.04741227122452,20.089844781319243],[-101.05081275772329,20.08979182737653],[-101.05104297349078,20.09113080517841],[-101.05366952477118,20.090525302520973],[-101.0719502316557,20.088917040700153],[-101.07485961816457,20.088388180961942],[-101.07883672525861,20.085086102596165],[-101.07996785892817,20.082816053771694],[-101.09427718359922,20.08203883696916],[-101.09900701453807,20.080793891533858],[-101.10574534591171,20.077452117009216],[-101.11054360992023,20.076043578575764],[-101.11392208297332,20.077233292031337],[-101.11496562627013,20.07504467975309],[-101.11757530193904,20.074911849785792],[-101.11751881371185,20.073272818379905],[-101.11968904483075,20.07352858169446],[-101.11948142396272,20.07102174427075],[-101.12605372456079,20.064350441146757],[-101.13314707360013,20.05998466215192],[-101.15372956369413,20.083835007507673],[-101.15437110021037,20.085029666823118],[-101.15660741952365,20.083810011535434],[-101.15854886389826,20.086880661681505],[-101.1651911064805,20.08716296909398],[-101.16640590607699,20.09123587008537],[-101.17111710079035,20.093979573610568],[-101.1735904633581,20.097827501426025],[-101.17563299594775,20.095915262463848],[-101.17370094681257,20.091712617502765],[-101.17263377305403,20.08494006489832],[-101.17051472911692,20.08461790825561],[-101.16965760698253,20.08230355062051],[-101.17362836380676,20.076243637519042],[-101.17088614138544,20.075695787673396],[-101.17161976948302,20.073451724055587],[-101.17401438111403,20.072104845178387],[-101.17668296228351,20.064508311638406],[-101.18157433460294,20.061187106870136],[-101.19631845586957,20.057188551108425],[-101.18269368195018,20.053274498527685],[-101.1768300057202,20.0505683219061],[-101.16933986509025,20.04576492898906],[-101.1666117308472,20.042468299217205],[-101.16711051084928,20.045383690466338],[-101.16390082935334,20.045918007063733],[-101.15995033893029,20.041930610816905],[-101.16035150547123,20.040200151128317],[-101.17931917021133,20.029571012321696],[-101.18229477120218,20.026861077521744],[-101.18694097109864,20.0275718373656],[-101.19131284240461,20.02728318557621],[-101.1962817324175,20.024861485561644],[-101.20153182342625,20.025738551309132],[-101.20305551378692,20.007224157049848],[-101.21347622508955,20.01080850928315],[-101.22072632999726,20.011436273985623],[-101.22094146095043,20.012387006328424],[-101.22628637904103,20.019486225954836],[-101.22998834565152,20.022936436891825],[-101.23035703121167,20.027266030474323],[-101.2383459753774,20.03211855815698],[-101.24723382074029,20.027738251991195],[-101.24725688423905,20.025830566165837],[-101.25076555031939,20.02326402858165],[-101.24996608386948,20.028419851472563],[-101.25274029629941,20.0336146668472],[-101.25303053581911,20.035496079253164],[-101.25670843157849,20.034844954951495],[-101.26106720995949,20.03241112489792],[-101.27085576879176,20.031105945317506],[-101.27723801411656,20.029236650177666],[-101.28097217939859,20.027544056553324],[-101.28316978075833,20.030713046150822],[-101.2948698803254,20.038125396137957],[-101.29645952031586,20.038644781615858],[-101.30682775905444,20.037725101869455],[-101.30875625809864,20.036248283259795],[-101.31647507068669,20.037424388926354],[-101.32137182675842,20.033166475949145],[-101.32671079660821,20.0320621094167],[-101.3340392537408,20.031522758893516],[-101.33726385309768,20.032779976889515],[-101.33980115779309,20.031780837208657],[-101.34820739000992,20.03211117802647],[-101.35134002255444,20.034375185813587],[-101.35407202971459,20.038398465484647],[-101.35843115826657,20.038582406993783],[-101.3632293720558,20.037602019691406],[-101.36593046926419,20.036017746122013],[-101.37043436718886,20.036640588908256],[-101.37494653133615,20.040428868433878],[-101.38171240888283,20.033518332093536],[-101.38813622053033,20.030409877504496],[-101.39199423488463,20.03384091363779],[-101.39764117807965,20.03413900533684],[-101.39971945155543,20.036319441139256],[-101.40168027573759,20.035009052332157],[-101.40260805105822,20.047030464000443],[-101.39641842390643,20.050627606415446],[-101.39427777753008,20.052911822126987],[-101.3958358326384,20.060797856026852],[-101.39510032626634,20.062214393943464],[-101.39610796786536,20.06539768531337],[-101.39544667929988,20.069959821088275],[-101.3938984426822,20.075013174273977],[-101.39217872795382,20.077195772750144],[-101.38894584903562,20.078492219786654],[-101.38751314840744,20.082961242688214],[-101.3923146230074,20.08330757756721],[-101.39728777253322,20.082410224815135],[-101.39883853160131,20.081312852948486],[-101.4046958867068,20.08019518127935],[-101.40427154411157,20.087566390068105],[-101.40470118463679,20.09666153505725],[-101.40552222244094,20.097619928545726],[-101.4032491847862,20.10015632197559],[-101.40834195777683,20.102632645668734],[-101.4073802810264,20.10570638700949],[-101.40524229848154,20.105836831957106],[-101.40868904463804,20.123133827795243],[-101.40451352644698,20.12686875218867],[-101.39560717630292,20.128418891307376],[-101.3910077237436,20.127120716485365],[-101.38918492790202,20.130347989926577],[-101.38998950098318,20.137193003146592],[-101.39237495047604,20.14402892084911],[-101.39663620690965,20.14221638366189],[-101.4019561275029,20.141466415378716],[-101.405920046559,20.143911335586324],[-101.40906148255664,20.152287721270397],[-101.40975095789207,20.151983829711014],[-101.41443259881999,20.1561326955333],[-101.41618220031262,20.158962609153377],[-101.415225644761,20.159370887893772],[-101.41809382084267,20.162777430705376],[-101.42249824945003,20.163226317430997],[-101.42368902427961,20.169890698300378],[-101.42253832749668,20.171442346319168],[-101.42163509302333,20.183237311260996],[-101.41989112635156,20.20159058396439],[-101.41177923844509,20.203341637784547],[-101.40560172376672,20.203322982106442],[-101.38798805739424,20.20132822364087],[-101.38539434156627,20.199957676544273],[-101.36999951697874,20.19656305837583],[-101.36319817554039,20.195794412148246],[-101.3528552419445,20.23398990547446],[-101.35323030475507,20.237324973549164],[-101.3582091310509,20.24189052819088],[-101.36105127747794,20.24630823539718],[-101.3605194830738,20.249055735245065],[-101.3718036253075,20.249124926183185],[-101.39532438187007,20.24854933655979],[-101.39745499838347,20.252308870496222],[-101.39936243135395,20.253341059865534],[-101.40313453175844,20.260111928994377],[-101.40647732712426,20.26363075718342],[-101.41559131138445,20.26475873233244],[-101.41819526738442,20.268130024162303],[-101.41965373350695,20.271541614733394],[-101.41969606105499,20.27444408755815],[-101.4251473519027,20.27609300882915],[-101.43001744004482,20.27612948552155],[-101.4354821114926,20.27738083051878],[-101.43708164956047,20.268261811922173],[-101.43685730191282,20.26378531597885],[-101.44610618111301,20.26391237886793],[-101.44892187265896,20.26528194386748],[-101.45593045995003,20.267169683305326],[-101.45896853647622,20.27019791204208],[-101.45657407956122,20.27117273980582],[-101.45625733758095,20.273924891735817],[-101.45443457197928,20.275164735664305],[-101.45837179602842,20.276020899796777],[-101.45717072494739,20.28514208506914],[-101.44925417833298,20.28748216670141],[-101.44826441362312,20.289581485222186],[-101.44498463850124,20.289725425853533],[-101.44455369768923,20.295101760549926],[-101.44819981881221,20.296472266337332],[-101.44972296571262,20.298228916731887],[-101.44039337817003,20.30352634329722],[-101.44019704508594,20.30519281867697],[-101.44377323434293,20.30543024520449],[-101.45035756364996,20.304240911995123],[-101.45047053114672,20.30505448370525],[-101.45669661226236,20.304370481510432],[-101.45545737114463,20.314340046982238],[-101.4545901784598,20.318164904934918],[-101.4515430110788,20.317838918629434],[-101.45126727494204,20.319065197084228],[-101.45547037026483,20.320164273595083],[-101.45682304079685,20.319265090871625],[-101.4630543852096,20.32792812700893],[-101.46530793586192,20.329145782513024],[-101.4721225516891,20.331163481096496],[-101.47470720497739,20.33040419142236],[-101.47924162616044,20.330572828845504],[-101.48111187222798,20.329670550069864],[-101.4853184795636,20.32372494001953],[-101.48811329555548,20.322057069166533],[-101.49237993104475,20.316700422586052],[-101.49324158164683,20.31400554746034],[-101.50186521440315,20.312025838763077],[-101.50324010258805,20.314700403825668],[-101.50310278301981,20.31713796167827],[-101.50450343934529,20.318950304430587],[-101.50136667887278,20.32142362392949],[-101.50230782819568,20.324497838693674],[-101.50697643391896,20.324457105926626],[-101.51047550764258,20.31891430483779],[-101.51713185832898,20.317921407782876],[-101.52066975915488,20.320844749868456],[-101.5241564571158,20.32123083175793],[-101.52370592455497,20.324516510256103],[-101.5218914315592,20.327533358065864],[-101.52293609398782,20.33234695542609],[-101.52939168358967,20.332587360985542],[-101.53308419340516,20.329772113154604],[-101.53442779169603,20.326901495561344],[-101.53781033642122,20.324375251529602],[-101.54100503269558,20.328724666336257],[-101.54731081148208,20.330429422988686],[-101.55063067176525,20.332451353291162],[-101.55402827374195,20.332196856028645],[-101.55565728996902,20.32850872605229],[-101.5598649380729,20.324977531933484],[-101.56056522738487,20.32303373190922],[-101.56329097862107,20.321350104676412],[-101.56350922395853,20.31964578656772],[-101.56123100054884,20.316982441028074],[-101.56448669023985,20.317004129452982],[-101.56656680355354,20.31568051577051],[-101.56785235381585,20.316791099909665],[-101.57079824519633,20.315937801547705],[-101.57160587339058,20.320712879816483],[-101.57574327999333,20.321324398136937],[-101.57688670578642,20.325521346452035],[-101.58054545554512,20.327133988314927],[-101.58359054837348,20.32718213115396],[-101.5842127818791,20.325748423623168],[-101.58444241254318,20.316721731410098],[-101.5888109600939,20.313345440570117],[-101.58975773049673,20.309340407327795],[-101.59708877700342,20.31166937448154],[-101.60066647187631,20.310373820288874],[-101.59928641666994,20.30706689839343],[-101.60043511126389,20.303440907719846],[-101.60027996609944,20.298417710003264],[-101.60399559686778,20.29803504404083],[-101.60567908076911,20.299770694832148],[-101.60588985122865,20.302696674358003],[-101.60451074690388,20.308940850908414],[-101.60852345164045,20.309746896877016],[-101.61127087054768,20.31272450236861],[-101.61479438893497,20.31173276096905],[-101.61777549593836,20.312403210004504],[-101.61992744296793,20.315503306871733],[-101.6246542752001,20.314580387034653],[-101.6268599634692,20.311496533174193],[-101.62726582885443,20.307359278287265],[-101.6257923065325,20.30560520821973],[-101.62922383537898,20.298683945756522],[-101.62842845177289,20.29592366990704],[-101.63435208251542,20.290253619262728],[-101.63465337937782,20.287731469985204],[-101.63230614608398,20.2839747772436],[-101.62887522163169,20.281933239123532],[-101.62396913992467,20.276108360916055],[-101.6238229793426,20.273605304283137],[-101.62567209866455,20.269748055545847],[-101.62553400741768,20.26699768684449],[-101.62839768219834,20.264772908217594],[-101.63252379547623,20.265628891037522],[-101.63235329770089,20.26950435355394],[-101.63537880760589,20.270912584579037],[-101.63776509978737,20.26880415322472],[-101.6388377275432,20.26581578032608],[-101.64207369690473,20.267879985387026],[-101.64380042835802,20.265658459125234],[-101.64356296703426,20.26189847426258],[-101.64677249933658,20.260063358028845],[-101.65084749896795,20.25289724346237],[-101.64802983421538,20.250427057673107],[-101.64600824085858,20.24999901443084],[-101.6440168146151,20.24716570113418],[-101.64401954502443,20.24355958920563],[-101.64625232992819,20.238668044563212],[-101.64886842002232,20.239778267020654],[-101.6524430223298,20.23958665180203],[-101.65405191553282,20.243299863925756],[-101.65821809167505,20.241838260856582],[-101.65970385742725,20.239767382528612],[-101.66330801515585,20.23757997813624],[-101.66364424067308,20.23173722077223],[-101.66725430349453,20.228083691546942],[-101.66794072344078,20.226315646465082],[-101.66731134203627,20.222558901505295],[-101.66921118360256,20.218865863665314],[-101.6656433433435,20.21638404885016],[-101.66847436989048,20.213135141480734],[-101.67311882126126,20.212555308467643],[-101.67514450628869,20.21735808519969],[-101.67659261644474,20.218537781096757],[-101.68547885647399,20.218461007737915],[-101.6894561095342,20.213467706720053],[-101.68942152073606,20.2096507128677],[-101.69269395845146,20.207279097486662],[-101.68981799956327,20.20087366461081],[-101.69039406946234,20.196816981653058],[-101.6938000091489,20.191957386991987],[-101.69793489586493,20.189674374565755],[-101.70183848310381,20.189208093657157],[-101.70387078446015,20.190439600663183],[-101.70426166974272,20.194616042122732],[-101.70602825357457,20.200594327891736],[-101.71062161733056,20.205305988045666],[-101.7135916789926,20.205780118979646],[-101.71586907269653,20.204357701447975],[-101.72079826261393,20.204919334178328],[-101.72306416773642,20.206002055491638],[-101.72637706297365,20.20590332713209],[-101.72723705821329,20.211450026401963],[-101.73036838267416,20.21446328061967],[-101.73186825357038,20.214454731387036],[-101.73271579024572,20.21067628507177],[-101.73733212008426,20.207988351182223],[-101.74276359867793,20.20677911548256],[-101.74351492015006,20.20391238978931],[-101.74877442256525,20.20491592690263],[-101.75221266420056,20.203695761015524],[-101.75775730598042,20.204406851768738],[-101.7584566223851,20.20209602851031],[-101.76040581131485,20.201862545757365],[-101.7644395485047,20.20453968891144],[-101.76791271016162,20.2046136247165],[-101.7783688265261,20.211566653701425],[-101.7803732367878,20.21013957284117],[-101.78304697035168,20.2113615521813],[-101.78464671564791,20.214455704762543],[-101.7840184276431,20.217871422629344],[-101.78661567983295,20.21931844882721],[-101.7940688324394,20.215937747020917],[-101.79740519663278,20.211868566209205],[-101.79933426625308,20.21091466625461],[-101.8012402641487,20.211959144862078],[-101.8022657946625,20.214387815632335],[-101.80448833744845,20.213550002848024],[-101.8080740124118,20.20814388212949],[-101.80911682247034,20.204380201741856],[-101.81681926006956,20.201803427298273],[-101.82486071690317,20.20183759302148],[-101.82473086853383,20.203877973602232],[-101.82142186549237,20.20474276699099],[-101.81925686422005,20.20761973950806],[-101.82091602850016,20.21012106470249],[-101.8276815510294,20.214137411053684],[-101.82990379613074,20.219629859263875],[-101.82892667198934,20.22155824456064],[-101.83224882723277,20.224483377447314],[-101.83479842776933,20.224696930556718],[-101.84215624678552,20.22090762796148],[-101.84423989984128,20.219333436435875],[-101.84954129271097,20.21765236709507],[-101.85459574445088,20.21271030545995],[-101.85838974123476,20.21144475835905],[-101.8719433637657,20.210707293726955],[-101.8713006875023,20.208058350820693],[-101.87202984070348,20.204429834834855],[-101.87476797111566,20.201991654545054],[-101.88048917233522,20.20149729880626],[-101.88134296454825,20.199053077176018],[-101.87998568200783,20.196883397948113],[-101.87833605480677,20.191435959126295],[-101.88004874398428,20.188477982598783],[-101.88221991169462,20.188223608918236],[-101.88419140568277,20.190146787430308],[-101.88811400153105,20.188393342056884],[-101.8877503373235,20.192383290421333],[-101.88584927075578,20.194034237122082],[-101.88719315530949,20.19837534663361],[-101.89072755374127,20.202673177152064],[-101.89302198904471,20.20377722961274],[-101.89778499365087,20.204127917470146],[-101.90090021806071,20.202030897061263],[-101.90396628159232,20.20299391224802],[-101.90796755528476,20.200046067234723],[-101.90930911151423,20.194510462981384],[-101.9105824792806,20.19377115135967],[-101.91789727972127,20.19507732586601],[-101.91943938127173,20.19762896315592],[-101.91806829164949,20.202950460615853],[-101.9155187033486,20.2040337303539],[-101.91522171825937,20.20666580769506],[-101.91080206530427,20.203110161803238],[-101.90933799278815,20.20340458686087],[-101.90868167726995,20.207242317760347],[-101.9073930408365,20.208872264714103],[-101.90704595498505,20.21330486836058],[-101.90961335961822,20.216479189326265],[-101.91570204159484,20.219196785146153],[-101.91891254076722,20.218859715915812],[-101.92192880852713,20.215627185453855],[-101.92642557221717,20.212259598502158],[-101.92974800132572,20.20796349066859],[-101.93150843201067,20.20876165231823],[-101.92970179104344,20.21152223462036],[-101.93038383028721,20.216676030440738],[-101.92861174504759,20.21689939450664],[-101.93187580332813,20.222966748187446],[-101.93254500886064,20.22628636884258],[-101.93641119791204,20.2255277782661],[-101.93987262544039,20.227081760616898],[-101.93900987685606,20.232658954920794],[-101.93639418570581,20.23685904422274],[-101.93841763694525,20.240727011334684],[-101.93699933544406,20.242680184728897],[-101.93309155618527,20.24275504524934],[-101.93217164134705,20.243737910878224],[-101.934378664186,20.24927002837336],[-101.94001013263482,20.251275945765713],[-101.94494489806425,20.255077418746737],[-101.94628917792511,20.257254117030243],[-101.9463839722444,20.260518465516896],[-101.94359471896746,20.267136802736275],[-101.94724482211706,20.270583812098323],[-101.95108841952896,20.270947803546164],[-101.95079964464071,20.272307858568695],[-101.94743563460526,20.274120266301395],[-101.94676228737859,20.27584289089623],[-101.94147538726384,20.27946802766388],[-101.93686167949352,20.28146108184069],[-101.9372445688254,20.284725627032344],[-101.93858972694778,20.28536092087427],[-101.94233835115494,20.284002225458153],[-101.94531753557948,20.284003326422464],[-101.94704635596912,20.286633588570794],[-101.94271999796013,20.290531169952203],[-101.94021968322954,20.29397597650933],[-101.93531769393348,20.294790074705134],[-101.93493168130368,20.298054335880636],[-101.94060181512634,20.299235479282572],[-101.9429079284327,20.3006872243555],[-101.9458876615954,20.30023491960543],[-101.94954068000015,20.298422601868083],[-101.9510779631629,20.299873963595985]]]},"properties":{"cve_ent":"16"},"id":"inegi_refcenesta_2010.21"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.86257288016424,20.26898596110391],[-99.87741097219282,20.27139545171002],[-99.9015099232509,20.280533881136023],[-99.90972301356953,20.28504269793649],[-99.91334740052514,20.28586666665177],[-99.919875459602,20.28125796772065],[-99.92037293951631,20.278008973157682],[-99.92384000845254,20.275764474413847],[-99.92369813552142,20.27321120228305],[-99.92554915941258,20.273051627340465],[-99.9266392964687,20.269433340581543],[-99.92895428182385,20.269254134631183],[-99.93040580571068,20.264876889706954],[-99.9293343134118,20.260419755034945],[-99.92846695220715,20.2502211321069],[-99.93396220933045,20.250407539754804],[-99.9328279174228,20.244286926106213],[-99.93000772802299,20.240585629957707],[-99.92940403974177,20.235496272080354],[-99.92839531839866,20.232686568524628],[-99.92591022081382,20.233023972955095],[-99.92254672427384,20.231366405145707],[-99.92235567455594,20.230844047655808],[-99.92296694764292,20.225713097369805],[-99.9202835091906,20.21711442036883],[-99.91866268416936,20.21616609499557],[-99.91841458462892,20.21178844429977],[-99.92269536689844,20.212313656407673],[-99.92513227804369,20.21262160341388],[-99.95093301517437,20.215903501587036],[-99.95114866277885,20.21648175172635],[-99.95121618609897,20.2166694162039],[-99.95191108210753,20.22050738483125],[-99.9507350172467,20.225485781589725],[-99.95212668753072,20.23312069651365],[-99.95283854381887,20.24060241711618],[-99.95546505695074,20.24299455926314],[-99.9559569029858,20.247718548681462],[-99.95750694699558,20.25077393756129],[-99.9607446756064,20.254533614164757],[-99.96878528040969,20.258210514828704],[-99.97420033984832,20.262803929888605],[-99.975335860624,20.266957992541904],[-99.97444079873839,20.269574732782758],[-99.97765748178693,20.27241027048626],[-99.98109649761443,20.271493899729535],[-99.98320128680393,20.266179984977214],[-99.98494289820337,20.264800473376283],[-99.9863757720006,20.256700960941316],[-99.98087445848404,20.25307203400922],[-99.97949685565067,20.247112202606615],[-99.9811582465889,20.24394377242328],[-99.97812280463359,20.23883333786779],[-99.97520895068442,20.23905291506685],[-99.9733239837808,20.23521382346081],[-99.97566821952063,20.23224136793465],[-99.9711042792593,20.226078255219704],[-99.97162556881153,20.22481679446929],[-99.96861356300701,20.221043258039288],[-99.96978497680232,20.218391582161473],[-99.96633164056675,20.21783570386998],[-99.9646439473583,20.216541161774103],[-99.96493216638464,20.214300915390993],[-99.96495012152246,20.213944979551286],[-99.96563839685064,20.213396203302295],[-99.96681970992927,20.20745310387906],[-99.96431736895522,20.20464062174011],[-99.96498851902834,20.20100320368664],[-99.96060224950128,20.201626758503835],[-99.95982508934435,20.199838685046018],[-99.95820902010104,20.198299030237195],[-99.95610585059995,20.19684121117865],[-99.95621481679046,20.19522598585877],[-99.95100731085677,20.19129351829048],[-99.94863179183795,20.19132834536788],[-99.94633597473182,20.189242905753474],[-99.94807000889733,20.18595280656035],[-99.94707116449104,20.184508082209163],[-99.94241976048204,20.181724555354833],[-99.93744698495908,20.181751112918448],[-99.93756971095934,20.18130348700788],[-99.94118309098025,20.179015194104124],[-99.93981438262551,20.176239420099876],[-99.93813131576093,20.175337192429538],[-99.93564926704579,20.174095949072353],[-99.9323451933592,20.174012032872668],[-99.93575337988574,20.169311576912037],[-99.93520621163617,20.16525344720526],[-99.92952682301217,20.16340441892919],[-99.92720552344935,20.162800961908317],[-99.92703918474359,20.161292889372476],[-99.92632487563736,20.1595992004992],[-99.92237877455335,20.15915238133408],[-99.92288142878118,20.15661575060659],[-99.92717560741937,20.157141538828967],[-99.92974628434791,20.161706188093035],[-99.93221555666048,20.16139437547804],[-99.93572367034301,20.16293919672745],[-99.93651301397858,20.16181932003417],[-99.93624795800997,20.15699409358149],[-99.93771696525147,20.153834206257045],[-99.93605346739878,20.14939756440407],[-99.93102918311558,20.143960222157375],[-99.9310878504752,20.142440905922797],[-99.93917459229783,20.135292027331445],[-99.94080340382419,20.132007940183996],[-99.94027928496939,20.12543573893373],[-99.94220644785457,20.1201003403159],[-99.93789801896929,20.115178774328967],[-99.93695230671199,20.110793417778382],[-99.93763838326419,20.104556448952167],[-99.93605134729972,20.099060760044836],[-99.932343552578,20.09388322390953],[-99.92936593531101,20.091629769148255],[-99.92708966441677,20.087406838069285],[-99.92503735116509,20.086669519235215],[-99.92376685034912,20.084134673011476],[-99.92373275172201,20.080411347487995],[-99.92436090574381,20.078625759559316],[-99.92735093067057,20.06706516842297],[-99.92633742331685,20.064330675738063],[-99.92880370165443,20.06433011945012],[-99.933556303785,20.064328959729778],[-99.943524013522,20.062913589500738],[-99.95696914905415,20.061003521765656],[-99.96147755355673,20.062289910573952],[-99.9641481778221,20.060432904870254],[-99.96906672338372,20.061864494005306],[-99.97328206418075,20.06061310176017],[-99.97964627758608,20.059678340199923],[-99.98041827197983,20.060908640357695],[-99.97846822262494,20.07404544281951],[-100.0003523359888,20.07748039266852],[-100.00339656992759,20.07195842069109],[-100.00559666319134,20.064612438927952],[-100.00563976195815,20.064200514537504],[-100.00789530547382,20.063691186530207],[-100.01406921543088,20.05934021145805],[-100.0198318008542,20.059770030316088],[-100.02761599840704,20.05657708418744],[-100.03160062591246,20.053147998035342],[-100.0346976325792,20.04789020453751],[-100.03869797947215,20.043471319517664],[-100.04113168411868,20.04037530646974],[-100.0437979711466,20.03656621696831],[-100.04633986572713,20.0360960524921],[-100.04689128492782,20.036545284554848],[-100.05347313551408,20.038265355122235],[-100.05750198258522,20.039862353411763],[-100.0617258111564,20.038790546164876],[-100.06288627950607,20.036882211617637],[-100.06619720530875,20.036235293582024],[-100.06562642517349,20.03135913774065],[-100.07217744092105,20.03120771899853],[-100.07242220589308,20.029237793475602],[-100.07960696779656,20.03011118894284],[-100.08124298584931,20.028210106084543],[-100.08501835808363,20.02477844670568],[-100.08463915349057,20.022463330911137],[-100.08590979055441,20.019745268832082],[-100.08683491142153,20.0189353138922],[-100.08741964123453,20.01621941830217],[-100.08784751084744,20.015814922048605],[-100.09134324361821,20.02425956807832],[-100.09708625916073,20.02730623154298],[-100.09699734978517,20.023328800469926],[-100.10157282394329,20.02668273370523],[-100.10404566958778,20.02632118042635],[-100.10590474207913,20.02783164231738],[-100.11106409815625,20.03164915870343],[-100.11080876027785,20.03326910594518],[-100.1129767709894,20.03440012333533],[-100.11701876009198,20.033524228257647],[-100.11951890228096,20.035335955769995],[-100.11886066876048,20.037351837276674],[-100.12025204219879,20.03891168703359],[-100.1232524845309,20.039468282434484],[-100.12659759496091,20.038058828401518],[-100.13336069246719,20.040967401683872],[-100.13336218596174,20.04283697558185],[-100.13793737515857,20.04431153520295],[-100.13935061953134,20.04297050323231],[-100.14164224789386,20.047617185997638],[-100.14636339035883,20.052242399180216],[-100.14715851100203,20.05532521780583],[-100.15285864860112,20.054270319331295],[-100.15245337512295,20.052759411676504],[-100.15507208139752,20.03781816502982],[-100.15454245490838,20.035087693049036],[-100.1586569825269,20.035769881848353],[-100.1558766692138,20.024509849412993],[-100.15769502335922,20.01791486697425],[-100.15507902541037,20.01347165796642],[-100.15507771590632,20.00744062865209],[-100.15006791939163,20.005383600663265],[-100.1444874141464,20.005204896106477],[-100.14276820954052,20.007441812187153],[-100.14015504360924,20.008099292157],[-100.13773151216179,20.010754000020825],[-100.13063294810638,20.009651328645987],[-100.12990284551842,20.010590093443966],[-100.12409922267096,20.010990496399245],[-100.12316983541791,20.007695744805687],[-100.12042032533316,20.007835389789477],[-100.11602354877675,20.006129714470433],[-100.1244404577364,19.996845902371263],[-100.12910290756821,19.985715018664052],[-100.13139412753816,19.982001861685376],[-100.13108058440696,19.973075309806916],[-100.13050587416427,19.972003850765248],[-100.13078173729423,19.952049927611426],[-100.13012249807969,19.916193048173398],[-100.12778360837655,19.914492821808153],[-100.11916875873766,19.912100208526454],[-100.117474787834,19.904014812754326],[-100.11423060609559,19.90143151563285],[-100.10695419503708,19.886829321983782],[-100.10241977567574,19.87971018346616],[-100.09288869818903,19.873772060615636],[-100.07104497892993,19.863070530433106],[-100.06720306208399,19.861735526627115],[-100.06697308229047,19.86328082038392],[-100.06335892685252,19.86189865158741],[-100.06427233838264,19.85619348190903],[-100.06335633896845,19.854553077862874],[-100.06706024079386,19.855082843316552],[-100.0748109594993,19.857201480267634],[-100.07953348930306,19.85781093566129],[-100.08748121848248,19.860417006081946],[-100.09347487818462,19.859897231944274],[-100.09485362735757,19.860426984916955],[-100.10031144112986,19.855071445154692],[-100.10321413441517,19.853812991534085],[-100.11767311058247,19.857133937832657],[-100.11999522260157,19.856387124752302],[-100.12541049592244,19.856678592243554],[-100.12654192574445,19.85455967637978],[-100.1321207584146,19.851430806622886],[-100.13608916746159,19.84015643897027],[-100.14140518616495,19.829711737133493],[-100.14260847146204,19.828787208797507],[-100.14433949570162,19.823771651075447],[-100.14450337715573,19.820750042041198],[-100.1433138852741,19.81892535867911],[-100.14631400410235,19.814679849456013],[-100.14593963502455,19.810691143538634],[-100.14380499371674,19.807639431349003],[-100.14288529432355,19.80352384291433],[-100.14478967880478,19.800045967966298],[-100.14648127013572,19.799185944769647],[-100.14648119788149,19.796231126351415],[-100.14484861928617,19.793252274690246],[-100.14426553070126,19.792188320247476],[-100.14186484683233,19.787388322120137],[-100.1421624326644,19.786610616708458],[-100.14298182533429,19.78477155526042],[-100.14387622503125,19.783018293317866],[-100.14519011767732,19.782098709429192],[-100.14620339972083,19.775697239681676],[-100.14511365352189,19.77111769736223],[-100.14815361095737,19.769261312592107],[-100.1493284922264,19.76678521355177],[-100.1463852967102,19.765834029233645],[-100.14491128731595,19.764191773751975],[-100.1453228157132,19.7571779621627],[-100.14345473358088,19.75041004481278],[-100.14414944264246,19.74698212422254],[-100.14712655079262,19.7418439412707],[-100.14644585460945,19.732359360720977],[-100.14818575491597,19.72821520241962],[-100.15311029974947,19.727254860428843],[-100.1557858011999,19.725208860339308],[-100.15748759897656,19.727288947285558],[-100.15996079032487,19.72575379385256],[-100.15876111687595,19.723899881286854],[-100.15596937911045,19.721603979809913],[-100.16686202459368,19.710269011958815],[-100.16933912288096,19.70773677691693],[-100.16941962305333,19.708046788800118],[-100.17011381619125,19.709754978345472],[-100.17034636000477,19.710266265341147],[-100.16998188991471,19.71208092210503],[-100.17048934821878,19.71276745395096],[-100.18600621129207,19.71297224185315],[-100.1867840680103,19.709360513811703],[-100.18997004194563,19.699728656580135],[-100.19161612378173,19.697524915104964],[-100.19223506075673,19.701637738217073],[-100.20224972740226,19.702687852432916],[-100.20415000375056,19.704623323371607],[-100.20876382785457,19.70413139842873],[-100.20980881082431,19.704019957720334],[-100.2140179431027,19.703558840161236],[-100.21710333283067,19.704984295099678],[-100.22133177758428,19.702763356260277],[-100.22358103893373,19.702543302315064],[-100.22948998206607,19.70220575808503],[-100.2308213048322,19.707264849129558],[-100.22959325496328,19.708532124615886],[-100.22985716994452,19.708559460135916],[-100.2317694965688,19.710550166809185],[-100.22866322398494,19.714079400199125],[-100.22725673102053,19.713473656200733],[-100.22580267268233,19.717158054077288],[-100.22969292325052,19.720063416037192],[-100.23137127838123,19.71759022432974],[-100.23224280312701,19.720504266611385],[-100.23710418325402,19.718633342461715],[-100.23612408310879,19.715589932524665],[-100.23829751903111,19.711411966484548],[-100.24028919558475,19.712881923094983],[-100.24297701328959,19.708539205726538],[-100.24068119325784,19.708627330684692],[-100.24400791626095,19.704588750470805],[-100.24514784111886,19.705318344077],[-100.24777598309754,19.704011216459435],[-100.25257641603218,19.70394100522742],[-100.25851891865597,19.69987379334509],[-100.25851687688368,19.69963101853898],[-100.25815295052371,19.69869306700764],[-100.25807335019584,19.698487911820393],[-100.25786909361551,19.697798117214575],[-100.2579120850196,19.695844807866024],[-100.25814895878261,19.69487941559464],[-100.26187467346898,19.69547278423829],[-100.26414470201104,19.694529106467144],[-100.2657017339439,19.68724546011515],[-100.26751688994693,19.67723341107427],[-100.27398972199114,19.672251280722264],[-100.26512072162922,19.6619574367719],[-100.26504944511925,19.661870093462767],[-100.26174746292918,19.658027179625833],[-100.25624458745648,19.6493895301237],[-100.25600918287148,19.646787276274154],[-100.24806917112545,19.63525660199582],[-100.24751921742768,19.634512770054016],[-100.25166285952548,19.627279752040124],[-100.24961632746772,19.62726898454531],[-100.25225344316425,19.623486019688755],[-100.25213923923707,19.61749794684266],[-100.25089865891744,19.61471052354392],[-100.24800520227177,19.601656087222466],[-100.24558118804242,19.59231470107892],[-100.24413286873482,19.58852048972227],[-100.24324775488873,19.58149139913337],[-100.24428752445124,19.575874795625055],[-100.24230304693134,19.56971742047307],[-100.23795365206865,19.56668198716875],[-100.23747633047975,19.557218803515696],[-100.2345801465429,19.55767416782976],[-100.22514968785038,19.557930872554095],[-100.22270880904347,19.556370364630993],[-100.21469630551888,19.552765401015392],[-100.21251954911435,19.545700922668914],[-100.21048940069784,19.542052873828652],[-100.1964266699743,19.531733100659665],[-100.19757615867621,19.529024018078815],[-100.20002480474693,19.52654421741181],[-100.20185052061163,19.522931848248163],[-100.2005743225622,19.518741564794425],[-100.2012905839673,19.516823334423123],[-100.20109110669455,19.510394456178744],[-100.20176740050476,19.50829505413435],[-100.2019395251533,19.499528262399167],[-100.19758883271419,19.499363614228116],[-100.19731753774295,19.499136807921616],[-100.19338421523435,19.497383375630875],[-100.19234551934062,19.499168695938124],[-100.18488364451446,19.498835154191],[-100.18250035137413,19.495683966917227],[-100.17769417911103,19.492624759328464],[-100.17864954895765,19.490688446019647],[-100.17688091202962,19.490145143366476],[-100.17982090975823,19.48831476264695],[-100.20097976105973,19.49279170487455],[-100.20162398999628,19.487413104551365],[-100.20087069298336,19.48255246931751],[-100.2035542610434,19.480847843216964],[-100.20413654960493,19.478043310537828],[-100.20211656703458,19.47619198899514],[-100.2022171662581,19.4744698541528],[-100.20643777736484,19.470370236277404],[-100.20745738027716,19.461129276507563],[-100.20608792847577,19.454466177661743],[-100.20160604856574,19.454631192860575],[-100.19915207718435,19.45230289451871],[-100.1963185020046,19.447296100178676],[-100.19272249633468,19.442985435711876],[-100.18972043300988,19.44049997405051],[-100.19142544215805,19.437800065421584],[-100.19831324864191,19.432943907850756],[-100.20066636193349,19.432802684714318],[-100.20261866007098,19.431028236081488],[-100.2094508050576,19.4221450176978],[-100.21074717942207,19.418810631932104],[-100.21594203383182,19.413421200554637],[-100.23742535862254,19.403512179228358],[-100.23973928147876,19.404279531326097],[-100.24323708386447,19.404028135020212],[-100.25256432353336,19.403326024742057],[-100.26375538842967,19.403156281028373],[-100.2703472453178,19.401406477140995],[-100.2730392468331,19.39894500451652],[-100.28045601670124,19.398391778141388],[-100.2930941158528,19.39512885859864],[-100.29353455317204,19.384696006863805],[-100.29437443392789,19.38092857075742],[-100.29957370563824,19.376581120127696],[-100.30213552001015,19.369998310694825],[-100.30499900692928,19.368605161294568],[-100.3059047915051,19.366866289785037],[-100.31051426474107,19.364705695458667],[-100.31237445699969,19.362361125072255],[-100.31147707256031,19.35425275143166],[-100.30726063803337,19.34844426800288],[-100.30275300229277,19.34477615762671],[-100.30170833324615,19.342900752565754],[-100.30693544035631,19.338242950307745],[-100.30608754125302,19.337886240586784],[-100.30740006796117,19.33351088439707],[-100.30687278290588,19.327744771546747],[-100.30653977681743,19.325792106941094],[-100.3064048204102,19.323767835861986],[-100.30916894360428,19.321211370617164],[-100.31627755134514,19.31941046352881],[-100.3199592867415,19.316230208834213],[-100.32326506063959,19.306803247203902],[-100.32066167624788,19.306829139449917],[-100.31309786055101,19.297258542797465],[-100.31620873739314,19.293157376167358],[-100.32006528203277,19.29093340560638],[-100.32014568805374,19.28889924687161],[-100.31530953113935,19.287416648385488],[-100.31712719144969,19.28422901611094],[-100.32048584554605,19.280293120834017],[-100.32071342982681,19.27453458398469],[-100.31997449556974,19.271635634723964],[-100.32106849767177,19.26713562424402],[-100.31962234550764,19.26522728039356],[-100.31973157114504,19.26179217526544],[-100.32173478781147,19.2563473446657],[-100.31988333252099,19.2529915385104],[-100.32249743219734,19.2506923361928],[-100.32582036751029,19.241732471676357],[-100.32872064452431,19.237356137742722],[-100.33123550493616,19.23051816215076],[-100.33364590212528,19.230918834427996],[-100.36033623417023,19.205087753219743],[-100.35922309914474,19.202996725843946],[-100.36255455255252,19.202940310132362],[-100.37119615327589,19.19498787322391],[-100.3730851216377,19.19417196185134],[-100.37239861715955,19.192425820854567],[-100.37315299662976,19.187565694241925],[-100.37176281105991,19.186997102818566],[-100.37070457163719,19.18068313696955],[-100.37110594402736,19.177496697051424],[-100.37819147860262,19.171100050525865],[-100.36563328866475,19.15901116920412],[-100.36412590971071,19.157205566841583],[-100.36159114609723,19.154706836971286],[-100.36365361972645,19.15211105717941],[-100.36637392171667,19.15338870552671],[-100.36665258562499,19.149708095041717],[-100.3692311302404,19.150541312823066],[-100.37311788093905,19.14856343185437],[-100.37673251314084,19.15178365242332],[-100.37970784494763,19.15146308282351],[-100.38285212392759,19.14761255960002],[-100.3861120369686,19.14750577858223],[-100.38652777211536,19.145054121049384],[-100.38948229164271,19.142912864086043],[-100.38816395100798,19.136778337798376],[-100.39124237573753,19.130438996821397],[-100.39149725224809,19.128411390372094],[-100.3939310737648,19.1275614779712],[-100.39214294962125,19.124618339820927],[-100.39636522544214,19.12303422671482],[-100.39464461107826,19.12167619579543],[-100.39558354934178,19.117114868795227],[-100.39756131400566,19.11620738407231],[-100.39908904908089,19.110500524828467],[-100.40110176562314,19.11079225512333],[-100.40437842287582,19.109457288755493],[-100.40387686470154,19.10772451450805],[-100.40666787699894,19.105749709028544],[-100.40549339118837,19.10406552319455],[-100.40294796577842,19.103800594032577],[-100.40386106752828,19.097893907985792],[-100.40657801124712,19.09611016650223],[-100.40487683654726,19.093799993689345],[-100.40719052331644,19.091218118129063],[-100.4092302860272,19.085399699498055],[-100.41067571504811,19.08401755374291],[-100.40835493099507,19.08311301028266],[-100.40679860969612,19.080506087635115],[-100.40893346937929,19.078935853664007],[-100.4073855740067,19.07576809225668],[-100.41148438685155,19.073294947560555],[-100.4126193550224,19.066658072228563],[-100.4104602207276,19.065212533487795],[-100.41192816811582,19.063421775801828],[-100.41412115778746,19.064754746299002],[-100.41976854764653,19.065943620919086],[-100.41961912585174,19.062557545041614],[-100.42177538755243,19.060666204184372],[-100.42824184368021,19.061311465887457],[-100.43202833543717,19.060260000301923],[-100.43073447231154,19.055967589939996],[-100.43247449005565,19.0551070030657],[-100.43490404768772,19.057454474151484],[-100.43678538334012,19.05763773944119],[-100.43955913790103,19.05429213829484],[-100.44222347280243,19.05396222502003],[-100.44464798710436,19.051940560251467],[-100.44712634941516,19.052023170726557],[-100.4484508584278,19.04921593831358],[-100.445757311894,19.045970220386494],[-100.44822368653195,19.045843231686888],[-100.45115772160312,19.04776869340145],[-100.4536390686655,19.04244405039742],[-100.45790571010832,19.040980086402385],[-100.4590357304458,19.0330267895514],[-100.4624532204084,19.031324606439114],[-100.46557611560797,19.03169287462731],[-100.46867419735833,19.02908531510468],[-100.47150270678179,19.03053208332051],[-100.47554866996796,19.034177184245266],[-100.47800601198043,19.03370052701939],[-100.47939599729733,19.03059351859281],[-100.4786653663063,19.02677218280013],[-100.4805227441384,19.025925984357798],[-100.4848533612053,19.028056260000994],[-100.4852344361671,19.026292215440435],[-100.48327249511925,19.024143928359194],[-100.48433580239828,19.02102541677334],[-100.48941920476204,19.023006313244935],[-100.49209850945766,19.020085892825307],[-100.4944702783352,19.022022712095406],[-100.49581416547011,19.02143192988723],[-100.49552680844585,19.01894179925023],[-100.50219221504511,19.016213316036442],[-100.50352310149236,19.01276110586042],[-100.50689815096064,19.013091614040377],[-100.50894089080913,19.01030025565717],[-100.51275175716466,19.01243062309021],[-100.51371395917312,19.008554473608285],[-100.51600501964077,19.00913906236508],[-100.51707051862928,19.011231566382435],[-100.51937215546855,19.012084445095695],[-100.52200971688023,19.01092157274917],[-100.52817449550122,19.010251652030263],[-100.53047117275662,19.00866503292201],[-100.53046531902714,19.006507978041498],[-100.5284006018419,19.005118974820448],[-100.5238729022924,18.998457618715122],[-100.52307730163858,18.996050359425624],[-100.52422849269368,18.992713547136248],[-100.52886545302664,18.994470106079348],[-100.5323948964097,18.99124391355872],[-100.53019961427862,18.98861416407709],[-100.53237286383074,18.98570041305493],[-100.53564882584811,18.987528506928697],[-100.53778359867039,18.983241826639244],[-100.53409135915518,18.979288148940043],[-100.53435091924672,18.97597221623562],[-100.53731350136195,18.97234415737819],[-100.53513254793819,18.970120055546772],[-100.53299118297383,18.965899739697818],[-100.53339671990364,18.964396992060017],[-100.53693874114884,18.96282326402661],[-100.5401088772661,18.962688005678274],[-100.5436596228825,18.965888965853253],[-100.54667083049407,18.964194574508667],[-100.54647876603764,18.95842523528347],[-100.54752173240666,18.955577712503043],[-100.54759565633043,18.952107811482165],[-100.54608404054295,18.95014997261177],[-100.54950059955723,18.94693504429563],[-100.54803649871383,18.94546359343957],[-100.54691676200241,18.941424630697668],[-100.54356562356872,18.94040767900077],[-100.54378586718184,18.934703714197042],[-100.54684473127668,18.932745428875364],[-100.54963398169946,18.934160726694415],[-100.55817187653417,18.935097956782442],[-100.56316561475984,18.931263385160264],[-100.56254638610716,18.928591308460454],[-100.56497510069835,18.92856885298812],[-100.56401088148311,18.923519595409687],[-100.56831096001451,18.922667989620606],[-100.5689005800997,18.921094837456508],[-100.56725471890394,18.918359348040724],[-100.572173903629,18.922002231674924],[-100.57594761117144,18.922873537053533],[-100.57800603590601,18.921066033497254],[-100.5764119299867,18.918538927963198],[-100.57401889013852,18.916996569973946],[-100.57423546812527,18.914533010509103],[-100.57815910129057,18.914111903148182],[-100.58037062226714,18.915718028594142],[-100.58242559071937,18.91478512913676],[-100.5854098437643,18.911309392440273],[-100.58671647236292,18.91170719199016],[-100.58987437677814,18.915321653302442],[-100.59323688272474,18.915279418956118],[-100.59232994832144,18.911659352459424],[-100.58938916666858,18.908116325000663],[-100.59297288521441,18.90660195048048],[-100.59942480416692,18.900306317069578],[-100.60270290935722,18.900391750255267],[-100.60408938808985,18.898882661829703],[-100.60151780796002,18.897439444259135],[-100.60048297528198,18.892851498410664],[-100.60265255416937,18.893582890259438],[-100.60600133443421,18.892936023677976],[-100.60867857124913,18.89477377167816],[-100.61193533124822,18.894148591768555],[-100.61261548957123,18.89225683695281],[-100.61086697425918,18.891971984360453],[-100.61080354721719,18.88916820181248],[-100.61309100352315,18.88710064512304],[-100.61003334863796,18.887600761491797],[-100.60692082508376,18.88338090041492],[-100.60649939547602,18.878678758388048],[-100.60462963181408,18.875584426641467],[-100.60097587905943,18.87501472847549],[-100.59724607549549,18.875511346523695],[-100.59720802534383,18.874527915125157],[-100.59401679647726,18.871213292813252],[-100.59353836615753,18.870662314105232],[-100.59159013296949,18.868164948592437],[-100.59245992755945,18.865889957733316],[-100.59076667113175,18.86590674172578],[-100.5896249319776,18.863227179898956],[-100.58716936511587,18.86200923311003],[-100.58693367779392,18.860436904314554],[-100.58690707738663,18.859903395375284],[-100.58431149794723,18.858242081091817],[-100.5821965941721,18.858919982171983],[-100.5767792159881,18.85778094731546],[-100.57639474996358,18.855167180168394],[-100.57373006417998,18.85463318841215],[-100.57222374066095,18.854201533447053],[-100.56817313205107,18.849743976967773],[-100.56234651425285,18.847061875798886],[-100.557992767028,18.847180420224333],[-100.55458816427466,18.845702470946208],[-100.55263279275363,18.84595122882024],[-100.54997173727384,18.84421805677806],[-100.54872280325577,18.842091970486706],[-100.544566786097,18.8380429077431],[-100.53795385377344,18.836183405787324],[-100.53861989160777,18.84411064197195],[-100.52663146927443,18.838055459774694],[-100.51396315603665,18.829312254999593],[-100.50647224151817,18.830251885513405],[-100.50216997908359,18.83086539269732],[-100.49348270272685,18.823916725114486],[-100.48988195944719,18.810378540059162],[-100.49585521149379,18.808174725022752],[-100.49761485879372,18.805960691955306],[-100.49083126650157,18.78996740482455],[-100.48967043970652,18.789980981114866],[-100.4851196532664,18.794904728410984],[-100.48177021658933,18.79865164314822],[-100.4794758502398,18.797814345511824],[-100.47762776892853,18.79596066372335],[-100.46508120396129,18.794440995123637],[-100.46215875033892,18.796968409470423],[-100.45836686167337,18.795671386829497],[-100.45924691744722,18.79074431922652],[-100.45760062370704,18.790274089117474],[-100.45799266931368,18.788233458532602],[-100.4564552130011,18.786001039879466],[-100.45621294084191,18.784802117170443],[-100.45606762702846,18.781033010242368],[-100.45719450669537,18.778713353101864],[-100.45533746642792,18.777707427717246],[-100.45325601398491,18.778579059199785],[-100.45240514337985,18.782039121191758],[-100.4504233871383,18.782527580130647],[-100.45054038718541,18.780279412546122],[-100.44521939084336,18.778689799672406],[-100.44393771087198,18.776543770793012],[-100.44146033000635,18.77695592708062],[-100.44265079339857,18.780435005066465],[-100.43981468966723,18.78250749453082],[-100.43765063606054,18.783078336521726],[-100.4365688633788,18.783111193875868],[-100.43633570404677,18.782073678729944],[-100.4363523530584,18.781662660206337],[-100.43627844019818,18.78075667167451],[-100.43607432417872,18.780108520630904],[-100.43482088600564,18.780001361141103],[-100.43406893099512,18.78084251516418],[-100.4319572799858,18.782727787523527],[-100.43115627752212,18.783463770208982],[-100.43100700661637,18.783534567669506],[-100.43076178148601,18.78338718883026],[-100.43060777459425,18.78306825878218],[-100.43072310341364,18.78231165409767],[-100.43136054761789,18.78005251379102],[-100.43136048955472,18.778790252602107],[-100.43113225915135,18.774490246998823],[-100.4308383450932,18.774394412258857],[-100.43058042558442,18.774453637427996],[-100.42883698281446,18.774597606896293],[-100.42756885237895,18.774735046699675],[-100.42658127557809,18.77440697663792],[-100.42610303691066,18.76964221588679],[-100.42775821685757,18.766618522993724],[-100.42314182619947,18.764773836593463],[-100.42257882293393,18.763757707720345],[-100.41808522260305,18.759514078835593],[-100.43020829793886,18.753811726659364],[-100.43713042795434,18.750555241066934],[-100.43700061618875,18.747250677468685],[-100.43814939016596,18.742696374445984],[-100.43985258492165,18.74053104531879],[-100.44265849203265,18.73032606168624],[-100.4441164332851,18.72374144392677],[-100.4465697857986,18.719794096518],[-100.45037355846023,18.716048083194437],[-100.44973263851432,18.702963195771133],[-100.447133323206,18.701575042722766],[-100.45133812558856,18.697206358530934],[-100.4544749445995,18.694417715701945],[-100.46330555483411,18.69307456309309],[-100.4715877226318,18.691268866386963],[-100.4764539362319,18.689193888310285],[-100.47869565031533,18.68616767460827],[-100.47920104161454,18.683733697941307],[-100.4783142868011,18.679536404199382],[-100.47813994926213,18.67216057509887],[-100.48550395191478,18.66047782399437],[-100.48684209069864,18.657612578801263],[-100.48879860822319,18.650192305712153],[-100.48817949415303,18.64419737438493],[-100.48706747725856,18.64051715715658],[-100.47639272873892,18.63008968831548],[-100.4742893165274,18.619216121820784],[-100.46193145382603,18.61855992079802],[-100.45763579609496,18.622379294364407],[-100.45140798418197,18.623926355734966],[-100.44650903140933,18.62246523506093],[-100.44303311206482,18.620037734039784],[-100.43683306210534,18.613716577647324],[-100.42973330084334,18.59927321297556],[-100.43560273703952,18.597969250494486],[-100.4363960144106,18.597078779263484],[-100.43617333104925,18.595649675164793],[-100.43559604615211,18.59199965877258],[-100.43701603602739,18.59287583818815],[-100.43686047483891,18.58567442228241],[-100.43788755967068,18.583803753631173],[-100.44105888577809,18.579399700677868],[-100.44063761621521,18.578068964967088],[-100.44080940362664,18.57442233870836],[-100.44349344664408,18.570993123031087],[-100.44243275046671,18.567983424871613],[-100.44313716721484,18.566203555105687],[-100.44788953722542,18.560696791775058],[-100.4478245760082,18.55859235448588],[-100.44929025940809,18.5572226098505],[-100.44895296749957,18.553706841882217],[-100.44650859612545,18.551494190981487],[-100.44663880247879,18.545662085474646],[-100.44479697734613,18.543646869266183],[-100.4426201106125,18.54100812969375],[-100.43640403667462,18.531701619813305],[-100.43488792925871,18.528808896073997],[-100.4298566260764,18.51097618920886],[-100.42909695929791,18.510048062344993],[-100.42372292653448,18.51435258193004],[-100.42006851288335,18.515949051248015],[-100.41833570632633,18.516706003323236],[-100.41136792912624,18.520739695024645],[-100.40986033849833,18.525161011085288],[-100.40644641811969,18.531096492978804],[-100.4059152091823,18.533549893924317],[-100.40315005604873,18.53397483661263],[-100.39595369225339,18.54052008999213],[-100.38879847560372,18.54017686351466],[-100.3823785303959,18.53734328682259],[-100.37940384854085,18.53452227374487],[-100.37370128972026,18.52911384381912],[-100.3731944216471,18.52413430477702],[-100.36922812219228,18.515197953990537],[-100.36321922761414,18.49909370477178],[-100.3620031780863,18.496847235765415],[-100.3674914901589,18.47538312987274],[-100.37739658354275,18.46347905472777],[-100.3775694737883,18.45963266560568],[-100.38029950605238,18.45566177466503],[-100.38535803470967,18.42652458516335],[-100.374114536729,18.422985685303047],[-100.35944132104788,18.42346186621552],[-100.3543493733336,18.41597786384608],[-100.35203464318136,18.414332772066984],[-100.34614129229664,18.400314494163524],[-100.34310924939143,18.398081121454027],[-100.33153382083532,18.39143501611295],[-100.3311754367021,18.38993975730017],[-100.32233062229619,18.383749757704038],[-100.31916375340222,18.38047126589055],[-100.31563900405399,18.381397622710097],[-100.31396651182752,18.377392336074024],[-100.31027164692091,18.374559992591458],[-100.31049496998588,18.374120907325334],[-100.30785814414509,18.370250821076013],[-100.30418296417628,18.367620461979982],[-100.30281579035233,18.36743381401675],[-100.30080478703121,18.3708160702472],[-100.30032313628925,18.370991569111197],[-100.29795993610077,18.372081594102156],[-100.29746664137275,18.374392268482552],[-100.29332635024281,18.375296488151264],[-100.2930123781997,18.376127808399985],[-100.29192605063872,18.378541490784812],[-100.29224611403293,18.381379172030336],[-100.28820895241722,18.379897416938377],[-100.28579043076832,18.38058427988409],[-100.28337956822662,18.37783998378353],[-100.28151271508091,18.37864434414672],[-100.2797555316493,18.380624582203268],[-100.27715116986593,18.378899368287932],[-100.27739409473867,18.376188135383416],[-100.27775938968665,18.374486884416285],[-100.2766886587869,18.372080369579123],[-100.27597210135957,18.372093743584855],[-100.27442656774741,18.372365308488895],[-100.27181659003622,18.373049481762166],[-100.27089151957307,18.373732460431484],[-100.26961439498052,18.37661234467828],[-100.2678744297558,18.37945126280823],[-100.268849036007,18.383124552636616],[-100.26734411640348,18.386314551730493],[-100.26980182855664,18.390696121570727],[-100.26948588103647,18.39841657059486],[-100.26678335779565,18.404228103123444],[-100.26746063455084,18.40573770420849],[-100.26408223730454,18.408018138130217],[-100.26402628382374,18.41048098727066],[-100.26558413662144,18.412178700507468],[-100.26219874963465,18.412120151783938],[-100.26139898932882,18.41355266845278],[-100.26375428637965,18.41383146872488],[-100.26296774285015,18.417782902731176],[-100.26042797592021,18.415559326817572],[-100.26120575793618,18.421812458955344],[-100.25886666897168,18.423547698452694],[-100.25921517512381,18.42517058515523],[-100.25729328425894,18.429010789092104],[-100.25569758785343,18.426961161258248],[-100.25291412261424,18.4256693026133],[-100.25049768408178,18.426682044533493],[-100.24723380258064,18.421528095702058],[-100.24521092291008,18.42092449435677],[-100.24556521764828,18.418719761275156],[-100.24255419415726,18.41665056500699],[-100.24029786148185,18.41954216778589],[-100.23809451754727,18.418360186739505],[-100.23879670649706,18.416508394126765],[-100.2363996428981,18.416771770864216],[-100.23511108799693,18.419970243187493],[-100.23678317002248,18.425379710347784],[-100.23426890704775,18.426179660364028],[-100.23412203512964,18.424241039427557],[-100.23393502886995,18.424229571755575],[-100.23349602251449,18.426776569412084],[-100.23339141750182,18.4278627802816],[-100.23294103117041,18.428140398893106],[-100.23245689557774,18.427604245027624],[-100.23214365339965,18.428184065091557],[-100.23122434193243,18.4278973038887],[-100.23126983832611,18.42843277319065],[-100.23176484892377,18.429609185827474],[-100.23173716135955,18.430782789989962],[-100.22982439822738,18.43167612077599],[-100.22848279182665,18.431210252315566],[-100.22760403875048,18.433213468076303],[-100.22710573342937,18.435574455218102],[-100.22497335121699,18.433983698388715],[-100.22423242301403,18.436128340821995],[-100.2241047271715,18.43818685355967],[-100.22224882020862,18.43985285456614],[-100.21820446884328,18.440627322644104],[-100.21707609551862,18.44592369855667],[-100.21292124764602,18.446559761662513],[-100.2120760604667,18.44867564158443],[-100.20993619232593,18.44937733386581],[-100.2078879621015,18.44818413552707],[-100.20865576386694,18.44122932848643],[-100.20616844811553,18.44312545005249],[-100.20506140475601,18.446125786249922],[-100.2021174347633,18.448912904114422],[-100.19919621965232,18.451935083516787],[-100.20072872520984,18.455665240766905],[-100.19896004166549,18.456971830458656],[-100.19698795748633,18.45505567339484],[-100.19431188025095,18.456568169078025],[-100.19168221901225,18.45485240772672],[-100.18988049665762,18.4557720624814],[-100.18573624370441,18.455107235457206],[-100.18814703916667,18.458459714918888],[-100.18616474342952,18.459908876905217],[-100.18492613781933,18.458313170625047],[-100.1806306620735,18.46409179579433],[-100.1802311155086,18.46579843489286],[-100.18236814014364,18.46812153192866],[-100.17476127059905,18.47011725224155],[-100.17198382330974,18.471514148271694],[-100.17226636641749,18.476222457575545],[-100.17436999336678,18.481384735336576],[-100.17200207660505,18.48091834995114],[-100.17134556880973,18.483169208490835],[-100.169819889307,18.483078707048264],[-100.16941208814438,18.479070682367023],[-100.16806413523148,18.478769163231505],[-100.16719157182217,18.479267222820624],[-100.16533600095465,18.479713627696526],[-100.16674772330674,18.48144203936579],[-100.16456360975087,18.483498054454856],[-100.1663451753754,18.48545246736063],[-100.16568291751565,18.48691026105547],[-100.16325109093526,18.485604408083077],[-100.1586000481384,18.488177063898547],[-100.15719530470119,18.487102323910165],[-100.15608968975448,18.48954075212913],[-100.1574020307317,18.49057218232781],[-100.15930733377877,18.48884011557061],[-100.16012807227673,18.490490001198168],[-100.15814103266541,18.4919541257579],[-100.15135900667758,18.491093320183552],[-100.15124220693099,18.488673076164844],[-100.14641902429958,18.489793537538844],[-100.1455915097086,18.48802191889166],[-100.1448933033181,18.49114903386254],[-100.14589090807658,18.495634130491908],[-100.14482720293341,18.4984675587109],[-100.14319272391003,18.499333669136263],[-100.1421615202492,18.502539064592327],[-100.13925689714296,18.501690158209442],[-100.13618334128392,18.506124082278404],[-100.133351391129,18.505800416933255],[-100.13267957681808,18.50028222474151],[-100.13028898971777,18.503227036687974],[-100.12725736339792,18.50227120545196],[-100.12698078570315,18.50501668287444],[-100.1280121920957,18.507803098143427],[-100.12505847257876,18.507970272179477],[-100.12437760555542,18.506171486329436],[-100.12173800775122,18.505442494985516],[-100.11851554442228,18.50596214273594],[-100.1195689647854,18.508178128179622],[-100.1220354708808,18.50915287207448],[-100.12231879802118,18.510802281870212],[-100.11864376461739,18.50995586646701],[-100.11965688544234,18.51149968222404],[-100.11791930287728,18.51337959611294],[-100.12102910535998,18.514267270907055],[-100.12003049892257,18.516203706572753],[-100.12267729249089,18.516494550812297],[-100.11005886444309,18.52111510249398],[-100.10450951778051,18.524012221406224],[-100.08995113907059,18.52216078732073],[-100.0864827363992,18.53452503992736],[-100.08533517566781,18.538615526182184],[-100.08180473578665,18.54040952567493],[-100.07523571466476,18.55144634954081],[-100.07467418281004,18.553614411953617],[-100.07294305373557,18.560297944669855],[-100.0688863357675,18.564440638812584],[-100.07010095352081,18.576537370053302],[-100.0707315036907,18.5828163328174],[-100.08241382320449,18.58794983719332],[-100.07175498029301,18.593691494950008],[-100.06902067020832,18.59186178154863],[-100.06592782891397,18.59051857006915],[-100.06404159170319,18.585790788073552],[-100.0632461272615,18.585739044707168],[-100.05671136552996,18.588324397357724],[-100.05161188754329,18.59096999198107],[-100.05140916971737,18.59315798125067],[-100.04562414395843,18.59353376954749],[-100.0403350037418,18.59737796720657],[-100.03757928322142,18.596589936769362],[-100.03565806699413,18.59979287495355],[-100.03356964239907,18.60617348254482],[-100.02496363368311,18.606866759532807],[-100.02032947624838,18.602568964482487],[-100.0151326587823,18.599677205937155],[-100.014745863408,18.59630787309561],[-100.01180057563823,18.592357065014767],[-100.01061414841172,18.590352085903476],[-100.00716094947825,18.587780601765303],[-100.00215294217224,18.584432650320707],[-99.9993008400694,18.583578368552878],[-100.00364933078447,18.567498759907778],[-100.0035597947736,18.56577394970344],[-99.99916570064426,18.563174446467826],[-99.99391666632471,18.566004074742636],[-99.99226529656812,18.569433969464114],[-99.98969490057613,18.569702158266125],[-99.98028558586168,18.565573627630044],[-99.97876303028244,18.564175140703412],[-99.97815031763179,18.563417849251266],[-99.97608800968521,18.561450909931068],[-99.96836448955571,18.55786385531343],[-99.96671487594728,18.557053435926377],[-99.96361706586424,18.554938284952755],[-99.96167226551086,18.55297890662007],[-99.96180729237591,18.555412176696507],[-99.95995514808448,18.561197214940023],[-99.96092358536106,18.56398854294838],[-99.9579520468817,18.565078073375332],[-99.96035657742408,18.56661596426909],[-99.95691552108599,18.569378385956725],[-99.95615999266573,18.572459793481585],[-99.95340758698927,18.572174134141505],[-99.95386874190353,18.57496325882454],[-99.94956935329122,18.578120149916742],[-99.9471631328301,18.583367018412503],[-99.948259801358,18.58392848885137],[-99.9467035128664,18.586328177442283],[-99.94716184374545,18.587940562171468],[-99.94417531157404,18.587894914567585],[-99.94327249273755,18.589852719773887],[-99.94260635733878,18.59002456583835],[-99.94136577828732,18.58904101632953],[-99.93905723181251,18.592009139587446],[-99.93650391177931,18.59104032153573],[-99.9343463969679,18.593344166970496],[-99.92861612995512,18.59425462287669],[-99.92697216344078,18.595157972843424],[-99.9239974190449,18.597591067927794],[-99.92131331029293,18.59852514471845],[-99.92028524640074,18.598762255728218],[-99.91820956763843,18.598298802957117],[-99.91666421812386,18.597881769916114],[-99.91046861288237,18.601047804574932],[-99.90631775502192,18.602269116955767],[-99.90637235445945,18.605130414454095],[-99.90159459303277,18.607373658193637],[-99.90132198464772,18.607151693205935],[-99.89992539250738,18.609057298168466],[-99.89621077550532,18.610095509798214],[-99.89514662017189,18.61190344767175],[-99.8906606477974,18.615296880373137],[-99.88902056082827,18.61835673800067],[-99.8858047536146,18.619294474415767],[-99.88344161683756,18.61914958979702],[-99.88175327815361,18.617535427690427],[-99.87924240681872,18.617746894157506],[-99.87187332194549,18.616497479911686],[-99.86893925185558,18.61469821251137],[-99.8682970698901,18.615862190501275],[-99.86374139775376,18.617862035709663],[-99.86317660170215,18.614208109304116],[-99.858149408229,18.612272072267274],[-99.85140416699733,18.606256787720554],[-99.8476180838091,18.605490407495324],[-99.84475378297208,18.609191833168495],[-99.84914005861458,18.612549905265325],[-99.84814712910031,18.617539488748776],[-99.8483595224875,18.62025883587438],[-99.84257414513411,18.621855267371757],[-99.84340862851849,18.624154710521623],[-99.84091845234946,18.625113351524647],[-99.83787209042879,18.623474880472486],[-99.83192519238804,18.62689962738824],[-99.82942038803901,18.626190313553707],[-99.82769152363096,18.624060647790486],[-99.82521366803923,18.626338134509183],[-99.82088099424976,18.624994689445032],[-99.81752379141005,18.62632253478148],[-99.81679334506106,18.624902964592252],[-99.8132428540323,18.629817308134818],[-99.81411001644602,18.6313437298636],[-99.81366947252741,18.63478062242774],[-99.81118023205909,18.63646734403261],[-99.81263645834798,18.640797628101893],[-99.80931982130562,18.639306394900984],[-99.80993976220685,18.638144158491286],[-99.80697840576107,18.636272960908457],[-99.80469799543107,18.637051154537062],[-99.80266920814802,18.635678035595674],[-99.79861696313213,18.63108802713242],[-99.79751218903652,18.63377530095488],[-99.79423180664566,18.62987982139805],[-99.79222732118211,18.632909556826633],[-99.78830641498337,18.63695813311699],[-99.78615335727488,18.63952815926109],[-99.78402938379759,18.641012250010192],[-99.78331555447829,18.642366350885368],[-99.78351778781939,18.644715252359617],[-99.78353265241856,18.64610691056407],[-99.78403375273348,18.647960542460396],[-99.78457830475014,18.651088931981917],[-99.78079115491727,18.65489754412863],[-99.78120612067602,18.655560951650614],[-99.78149631457319,18.65586394456153],[-99.78407132456658,18.658479812155576],[-99.78430558768491,18.66233559591359],[-99.78312474234156,18.665284191220564],[-99.77982350475673,18.667860479981357],[-99.77434733189,18.674586365143625],[-99.77244806582792,18.67998861487456],[-99.7728852528457,18.682124227259237],[-99.7724227556551,18.686197393469058],[-99.76815673748314,18.688250535386544],[-99.76741200427824,18.68901694956611],[-99.76590209961182,18.69143642528917],[-99.76282313392414,18.69381444025828],[-99.75992318151128,18.693949895140122],[-99.75490034131906,18.69738709299196],[-99.7548272991948,18.70173942468665],[-99.75741540537484,18.703983530437824],[-99.75847648734862,18.70830428642904],[-99.7572276457849,18.713688833254878],[-99.7557445065504,18.713867014131324],[-99.75335655612355,18.717421200478157],[-99.75392821953182,18.718817020200163],[-99.74976171386174,18.72021434997015],[-99.74787496496344,18.72323807576612],[-99.74406034291803,18.72566488285753],[-99.74219604632742,18.725885298380888],[-99.74121489837546,18.7285151441356],[-99.73909763989457,18.72827910944619],[-99.7409385081126,18.730809029090608],[-99.74106959419657,18.73369519626931],[-99.73964668979806,18.734619551144988],[-99.74068032507324,18.736497744703513],[-99.7389940221205,18.737051012161487],[-99.73703139645448,18.73983250606227],[-99.73316204372293,18.739570116466552],[-99.72693158013521,18.737906395334164],[-99.72650969543099,18.73828615480403],[-99.72181191594257,18.73725784220136],[-99.72044003233316,18.735889237245033],[-99.71969025083598,18.735339370908207],[-99.71815986782502,18.734440469112542],[-99.71459583188584,18.736214919166116],[-99.71056148232753,18.73643020774898],[-99.70928248087523,18.7350541907457],[-99.70653285926016,18.735464729930072],[-99.7057964346485,18.735068884316888],[-99.70472864396072,18.734932529294838],[-99.70406707147583,18.73461691033492],[-99.70044368024298,18.73269156477585],[-99.70003536133453,18.731397754609816],[-99.6998111614206,18.73093283098649],[-99.69842117247373,18.729735100653784],[-99.69892711350866,18.7276293567744],[-99.69730638447504,18.72711321231145],[-99.69495819022876,18.72312383349248],[-99.69445948460884,18.722649411700502],[-99.69179585205211,18.720475317381386],[-99.6905751200556,18.72111466184265],[-99.68663603246478,18.719957075350408],[-99.68374535863381,18.718172857216985],[-99.68013410437658,18.713493287966458],[-99.67991181679082,18.712038262324256],[-99.67193558083272,18.713690738181924],[-99.67166985072748,18.714864090196045],[-99.67224218204609,18.7175529726303],[-99.67341171846874,18.71790738171103],[-99.67768106114352,18.726527692858042],[-99.67967503012733,18.726860869422637],[-99.68077544103858,18.727429628903224],[-99.68193015384503,18.731541370643697],[-99.68410356959038,18.733461560591365],[-99.68182796715746,18.734541657210116],[-99.68214661342944,18.73615438480084],[-99.6845457544216,18.73575108084549],[-99.68666040528359,18.739060192355794],[-99.68813628752247,18.743205474950685],[-99.69206530168265,18.74535670849218],[-99.69213017884556,18.747545880077894],[-99.69538422356646,18.750250311977993],[-99.6981161245804,18.754753355843945],[-99.70104571953573,18.757364349559793],[-99.70166492483577,18.76038911384859],[-99.70447440770113,18.761631003090883],[-99.70649291174084,18.764780557645622],[-99.7061335138668,18.766508109498318],[-99.70878454148692,18.769698168681543],[-99.7057166224912,18.77015005249814],[-99.70124423513727,18.772633360929717],[-99.69678799988503,18.774782641545244],[-99.69584588069443,18.776605134920658],[-99.69672179685443,18.779865048867975],[-99.69699519408124,18.78255720672621],[-99.69705022277759,18.786336717554434],[-99.6961048214265,18.785093360755923],[-99.69064900843313,18.783096804413447],[-99.69005419723044,18.781408510577023],[-99.68834674030239,18.782323610287165],[-99.6848371067041,18.779937631482937],[-99.6831403426242,18.780789640691523],[-99.67909489026363,18.7789981210002],[-99.6785691880034,18.778638261042545],[-99.67482437633481,18.77899263997938],[-99.67399457608275,18.778130484326027],[-99.67079278510346,18.77649035071613],[-99.67032172209952,18.775784190387185],[-99.66698239956838,18.774170697970874],[-99.66489816963565,18.771682411378777],[-99.66145586129318,18.77130545747997],[-99.66032880563228,18.76952094666632],[-99.66026815586298,18.766128044961533],[-99.66043147675686,18.765629348608115],[-99.65720095763282,18.76215879896563],[-99.65610077463026,18.757575670126187],[-99.65377966453076,18.755617531910843],[-99.65258327874818,18.75247567799107],[-99.65065742718087,18.751869586486976],[-99.65049786789075,18.749779021706843],[-99.64862322643614,18.74802704435359],[-99.64874044410664,18.743186189512016],[-99.64352428268,18.738508415937815],[-99.63937036254583,18.73808485862719],[-99.63693641899567,18.73521018985906],[-99.63656650441686,18.73263064857821],[-99.63751710005693,18.728271337386218],[-99.6355630866783,18.72390616426992],[-99.63090775967146,18.720552230506826],[-99.62858235496577,18.720333730832294],[-99.62373147698418,18.722510219189644],[-99.62063995642285,18.727314117819674],[-99.62131054093754,18.734140685123805],[-99.62200385462336,18.736854662358382],[-99.6228660620751,18.739838901619066],[-99.61877987615759,18.741256314644602],[-99.6142980689516,18.73612107545074],[-99.61263093141628,18.73896195375187],[-99.60501684954136,18.74062996337102],[-99.60046470594796,18.739008346124308],[-99.59570644160021,18.739824514597046],[-99.59479920860718,18.73866163993273],[-99.589908926806,18.739307209130857],[-99.58421697638715,18.736753854659355],[-99.58006605106237,18.735744911273628],[-99.58049728820225,18.730766576664337],[-99.58087121337394,18.729915814240655],[-99.58067141066596,18.726666044439128],[-99.58174103884642,18.72217779741544],[-99.58033408298536,18.718447448046334],[-99.57675345448763,18.716545803993995],[-99.57632546143304,18.71237974761266],[-99.5742503510512,18.712412629955395],[-99.57148542402359,18.70958836858057],[-99.57141194910804,18.70744506222985],[-99.56854386120875,18.70465017596132],[-99.56486401606611,18.703645859444066],[-99.56183412834605,18.701135561131593],[-99.56029220923557,18.701988416681672],[-99.55534457224991,18.6977611242109],[-99.55401869027696,18.69878784256821],[-99.55110773522767,18.697391493297516],[-99.54505696229114,18.69745268475151],[-99.54449768232558,18.695357573845627],[-99.53871605175931,18.69514985720565],[-99.53643492534627,18.69375110155903],[-99.53301955511131,18.694495563930047],[-99.53238335330627,18.696766469102272],[-99.52908502201916,18.697791477836688],[-99.52234290293268,18.70743059593326],[-99.51575677612823,18.70779194384346],[-99.5110867765178,18.70886877794976],[-99.5045297744802,18.71170341768766],[-99.49441414768029,18.720544799546644],[-99.48782549982826,18.728068869281174],[-99.48825946681507,18.73113387397052],[-99.48514882894136,18.731636434638233],[-99.47070673856314,18.74768218269901],[-99.46855107086554,18.751501230298402],[-99.46619209431225,18.753773441455223],[-99.46483102815307,18.761688326121316],[-99.4633187408665,18.767186535780922],[-99.45899756250031,18.76997463849125],[-99.45569765416371,18.76984192061491],[-99.45588282364565,18.771709452605478],[-99.45097173108752,18.772519947419653],[-99.4278242856663,18.82227409318216],[-99.42588876307877,18.826432962383365],[-99.42729867467415,18.827907812143735],[-99.43010701802314,18.832612454585046],[-99.43031054696917,18.842285026736988],[-99.4321957058716,18.85351798553313],[-99.43225920407332,18.857813695085667],[-99.4254106509805,18.85938923217276],[-99.42617867120526,18.864285761208862],[-99.430998908618,18.86574711496121],[-99.42977712337171,18.87683992712317],[-99.42935451922699,18.877569284998458],[-99.42284730241829,18.87833466402168],[-99.42191484377491,18.87959807416871],[-99.41827451908728,18.87946372652334],[-99.41567984662817,18.877901343425776],[-99.41095701778113,18.878183860909132],[-99.40665363595383,18.895187747559305],[-99.37312832899323,18.898629802214998],[-99.3670368261914,18.89399878584993],[-99.36476346052297,18.898999268846183],[-99.35942555997883,18.904627683243802],[-99.35840155648907,18.906476009579023],[-99.35253038096289,18.911673265640616],[-99.34890662359527,18.916450585026382],[-99.34463647903618,18.91862430966546],[-99.34245946735132,18.922672147426965],[-99.33914534517487,18.92653251308326],[-99.33790483963338,18.932399094522395],[-99.33544450385199,18.932776057675483],[-99.33396250340206,18.934951709588518],[-99.3300988414403,18.936696632541498],[-99.32546936556156,18.93691486057645],[-99.32156955962233,18.9402897835497],[-99.32099577346168,18.943224727495362],[-99.3171627984159,18.940000133034403],[-99.31702533696142,18.9431145994198],[-99.31303623076394,18.9481173557449],[-99.31104257217896,18.95282867852484],[-99.31059777469943,18.956853501493413],[-99.30871640366729,18.958797735105236],[-99.30998316333262,18.962414613981252],[-99.30953446173629,18.97470596559191],[-99.31105383337893,18.991653684932373],[-99.30846782941768,18.994005491296775],[-99.31406991589876,19.00055456245417],[-99.31967044206897,19.011271697722634],[-99.31883784159862,19.012745431593544],[-99.31874617003984,19.01997352142706],[-99.31343111591593,19.02288442689678],[-99.31175782110279,19.024650082756523],[-99.31890637216537,19.031068705733503],[-99.31749171895603,19.040125850787888],[-99.30857024812451,19.04030135377161],[-99.31097039993853,19.043605874458365],[-99.31616943954481,19.048787219634562],[-99.3176964501647,19.053385368216993],[-99.31909129589536,19.06064487151275],[-99.3191156982914,19.06571361721285],[-99.31799521174617,19.072571543457173],[-99.3171890656377,19.081867195176983],[-99.3183189798105,19.087416830166603],[-99.3137441259301,19.098218869816947],[-99.29507790227291,19.122931507512078],[-99.27869521819008,19.131701727064637],[-99.28760524561704,19.146600574017214],[-99.29311506580888,19.16529907289555],[-99.29559685290889,19.17288280467784],[-99.30276264355189,19.190855090660136],[-99.30468651287157,19.20264535556157],[-99.30613062383838,19.20614374362509],[-99.30713553537714,19.213728464507028],[-99.3162497565815,19.221501681697475],[-99.3153433610363,19.229196484678766],[-99.32129650013076,19.23266547477607],[-99.32671959659274,19.23256556991089],[-99.33082148211827,19.23793529822194],[-99.34234097299839,19.241122399315202],[-99.34206867395216,19.24753919999125],[-99.339857237275,19.259652912929255],[-99.33762984041817,19.264039969153316],[-99.33915989600092,19.26769714664664],[-99.344686599194,19.26947522403276],[-99.34821370617692,19.273960946395732],[-99.36192190747312,19.275741867590398],[-99.36492420379875,19.27776925280068],[-99.35358134767228,19.291934309478563],[-99.35453602611051,19.293288016071074],[-99.35149208867074,19.294152379888374],[-99.35349778818255,19.297401842103966],[-99.34998525649854,19.29683719020926],[-99.35627424171025,19.302014524170147],[-99.35636863020824,19.3033334200872],[-99.35653601911463,19.306794295477914],[-99.33384207131553,19.33059040559249],[-99.33230695100934,19.333518106808185],[-99.33115194650685,19.339775625962204],[-99.32827225820034,19.345202434676082],[-99.32848441869129,19.353092385333866],[-99.32639199515631,19.35367163534471],[-99.32376351840958,19.357952584707164],[-99.31832868531217,19.358309401375436],[-99.32070360994697,19.360447948580543],[-99.31954278818301,19.363618043685392],[-99.3168615590103,19.366306525802827],[-99.31538975399047,19.365888357673214],[-99.31308764067603,19.37044874296356],[-99.30776485688955,19.371561172834106],[-99.30500525864426,19.376833433364823],[-99.30130904578789,19.37708382373711],[-99.3012315771839,19.369700442697024],[-99.29901977952892,19.367515262741847],[-99.29747257165064,19.36941399517997],[-99.29558729274129,19.369077285565595],[-99.29061394371229,19.37502253996678],[-99.28766792233989,19.376682171588754],[-99.28569702861148,19.376439116523954],[-99.28456870264,19.37968828256328],[-99.28003512341587,19.382268201158865],[-99.27321497003021,19.38758686574954],[-99.27243249939693,19.38967841281294],[-99.2695695177083,19.390383807616104],[-99.26576075898089,19.398190305072944],[-99.25987051056092,19.400540064143968],[-99.25867904556935,19.404060448133805],[-99.2569793538741,19.40043168633059],[-99.25603810867699,19.403561496126997],[-99.25094168162536,19.406416430417778],[-99.24831196544756,19.40864858363699],[-99.24233129480393,19.411301513997387],[-99.236914893539,19.412706589768447],[-99.23361252780461,19.41658487399326],[-99.23297404680005,19.419395024741277],[-99.22938354337094,19.42220454420584],[-99.22446755221858,19.42708004999281],[-99.22227442152473,19.42702296146672],[-99.22371596066267,19.42970085981534],[-99.22687231271686,19.431585986549692],[-99.22615752977168,19.433719126356152],[-99.22750324020973,19.435230498096473],[-99.2278514001743,19.43855867579839],[-99.22058281171712,19.44367532389174],[-99.21817968219631,19.444057503448903],[-99.22014597263052,19.44644129010726],[-99.22012764252787,19.447987283990585],[-99.2199727769958,19.452880135306657],[-99.21736481242016,19.453671105641263],[-99.21528512899084,19.456223855839482],[-99.2121483981744,19.467113914818356],[-99.20682497650313,19.471215071093354],[-99.2211150709843,19.475068474975387],[-99.21966275137527,19.480314470647897],[-99.2161800565201,19.49016648189439],[-99.21199250178813,19.503510729183233],[-99.21016416315416,19.51113912377798],[-99.20897047158053,19.51268062304098],[-99.20467164600973,19.515135961039846],[-99.19189795852066,19.5112731106737],[-99.1852213649907,19.508537068936164],[-99.17705041669524,19.506194905304255],[-99.17304284083332,19.5085867045035],[-99.16707816044664,19.50609240795478],[-99.15718110657338,19.50284888303861],[-99.1629751967373,19.517961494349606],[-99.16996265664807,19.522055430849775],[-99.17463071161126,19.52406503508854],[-99.17136728055169,19.527188519437743],[-99.17536094798976,19.530094610532956],[-99.17704573449555,19.52932847074743],[-99.17601146459862,19.53203604314035],[-99.16767249406502,19.529250768619306],[-99.15915865212406,19.52690334848603],[-99.15679812658533,19.528090777512944],[-99.1585987187193,19.528857851952978],[-99.1558472410938,19.532440477191415],[-99.15851348332052,19.53392102814189],[-99.15108490070281,19.544845709258766],[-99.16089999858667,19.54926088113632],[-99.15756897232342,19.555047393489303],[-99.15809551697464,19.55735133780786],[-99.1561438065541,19.560154452008874],[-99.15280870426801,19.5619646574566],[-99.150900629131,19.560520351911975],[-99.14599554649112,19.56590128953559],[-99.14580738422706,19.56874805212749],[-99.14366519088469,19.57218376386072],[-99.13956813052249,19.575395039195598],[-99.13790438401395,19.58113471186772],[-99.13375974930989,19.5848881022294],[-99.13376084925233,19.586243629042713],[-99.12699260191295,19.58850769537088],[-99.12370609872903,19.592757280393073],[-99.11946221030854,19.591991985870777],[-99.11788784691146,19.59059230119948],[-99.11859756179479,19.584461728533597],[-99.11690614509172,19.58144459267794],[-99.11466172291625,19.579796309615915],[-99.11181804841164,19.56872692225238],[-99.10809721527113,19.564888494773413],[-99.11571862423727,19.556660254405585],[-99.11562146013074,19.5540396195388],[-99.1184801272127,19.552185222515106],[-99.12103574099473,19.54913195503576],[-99.12273296977241,19.545443708248285],[-99.13057459018347,19.536091295047243],[-99.12736766591212,19.53508390642213],[-99.12818362450656,19.525881292139786],[-99.12589849147719,19.521208178693712],[-99.12101471900519,19.516291646211243],[-99.11440711128222,19.511060814663438],[-99.10897409882818,19.511110364843546],[-99.10730429351008,19.509684994060933],[-99.10343072523017,19.51128622044598],[-99.09739953086233,19.512631244721433],[-99.07721537219442,19.50388460243471],[-99.0638625338998,19.498778714190223],[-99.06799134249479,19.489083210727927],[-99.06485289839492,19.48183596481448],[-99.063277817722,19.481267646990375],[-99.06336101060532,19.47860927868146],[-99.05111965729043,19.450639115131537],[-99.04645882398904,19.442364636951424],[-99.04820907885704,19.43963711016403],[-99.05440066759962,19.425972850749247],[-99.05473062715737,19.425266488438353],[-99.05583625606232,19.42196123587712],[-99.05813572716687,19.400692154217666],[-99.05490802033313,19.399367836483464],[-99.02005612299502,19.383508435368753],[-99.01720529223837,19.38202218120051],[-99.01560442429894,19.38119009483836],[-99.01016471564543,19.3783251921526],[-98.99193917978857,19.36759870658284],[-98.99346759810476,19.360383722559618],[-98.99455666708872,19.358141325164524],[-98.9914674247479,19.35546419971024],[-98.97879332085347,19.343289278902716],[-98.97432515235988,19.337026570062505],[-98.95790262322384,19.323227616474526],[-98.96296582348936,19.316727388638924],[-98.96477606282764,19.30688077010791],[-98.9672238447742,19.30596983945611],[-98.97143088280279,19.278366688663994],[-98.97491757135782,19.259490522338865],[-98.97653062561119,19.253125388658304],[-98.96598687015342,19.249941007203404],[-98.96858650420899,19.232217947934885],[-98.94030281185218,19.22323964013259],[-98.94255321037843,19.215614861734764],[-98.95108553524926,19.218183699565373],[-98.95394833323206,19.21464584757996],[-98.95746128458273,19.215135540359483],[-98.96269404933082,19.21414262844644],[-98.96837656083164,19.21048884996094],[-98.96683776406161,19.20900655815626],[-98.96722874266527,19.206251093827916],[-98.96967857378064,19.204252913208563],[-98.96770189198196,19.203128840881106],[-98.9669786999765,19.197921652240098],[-98.96769389185215,19.189743079227128],[-98.96641033948288,19.187031662778452],[-98.9598490571496,19.179167876467773],[-98.956174682766,19.17676306325717],[-98.95238564861353,19.168637616178273],[-98.96736639850258,19.164438689238978],[-98.95462630677946,19.149524360796477],[-98.96645593925166,19.143870504238976],[-98.965112718765,19.14041481763968],[-98.96109188790535,19.133029108778146],[-98.95750747720768,19.122383213308808],[-98.95870199334257,19.113638500831826],[-98.95906350744337,19.104277959683714],[-98.96123979141203,19.09558318374343],[-98.96326577135608,19.092062792005834],[-98.96572148355466,19.085861170312683],[-98.96828358840276,19.083140871143314],[-98.97369660971157,19.07955317412808],[-98.97899540481734,19.07445595350987],[-98.96899504945435,19.065953451921587],[-98.9577785534484,19.06029448756385],[-98.95527248763187,19.061889751319086],[-98.95214879644408,19.06416184847626],[-98.94597860751259,19.06866928361802],[-98.94413536821281,19.069738429907716],[-98.92124470599168,19.065144379517506],[-98.92066207334915,19.064910678217018],[-98.91624776248688,19.064189332839817],[-98.915580667097,19.063009622012828],[-98.91553234393365,19.060117119134418],[-98.91706059860678,19.059424959649277],[-98.90338978248195,19.038482887556654],[-98.89788624262832,19.03855092645665],[-98.89433199911736,19.03760450330776],[-98.89041032765931,19.036869582016095],[-98.8881667980429,19.036919887459987],[-98.87895566532075,19.028108348493788],[-98.87102642982302,19.025393146659212],[-98.87166100244781,19.021445871347623],[-98.87249036074707,19.014753834245766],[-98.87405917207752,19.010403853823675],[-98.868891639926,19.005704737641963],[-98.86925658356193,19.003076951870582],[-98.86818625489508,18.999687901813104],[-98.86857513321041,18.994343623280486],[-98.8700055173548,18.990510400043718],[-98.86715674400051,18.987643795165297],[-98.86183661898832,18.979983810304986],[-98.85733335730566,18.974591908725188],[-98.85793509112727,18.970404343256064],[-98.86000328810746,18.968168546087497],[-98.85947964185237,18.964777935459324],[-98.85489973987683,18.96103822019296],[-98.85045862892576,18.95910358035036],[-98.84516701305427,18.955143367115113],[-98.84071911271047,18.955666239841776],[-98.83655636710989,18.950911875582847],[-98.83515410396808,18.950829858338636],[-98.83099685703041,18.954931025552128],[-98.82824678569972,18.955630151503783],[-98.82768336879707,18.955565265144912],[-98.82645055039188,18.956690869595604],[-98.82145542499109,18.95280075415252],[-98.82077354335576,18.947236170527333],[-98.81685267800702,18.94326253514481],[-98.80939252537536,18.94295608340758],[-98.80547341889451,18.942236557969068],[-98.79853991280913,18.939979705792098],[-98.79437924268382,18.937778674031847],[-98.79208028199525,18.935339873803628],[-98.79100001434756,18.936709190786416],[-98.78611495349048,18.94290095192298],[-98.78530960073266,18.941159304350833],[-98.78131496749603,18.939860416719284],[-98.7789190249361,18.941866497654757],[-98.77498450122118,18.94353769156777],[-98.7715394886896,18.941871871498904],[-98.76782693980198,18.942852511020988],[-98.76305969814172,18.940397816529412],[-98.76107149997551,18.941505038938487],[-98.7564259470746,18.940923785878056],[-98.75517745129594,18.94294052040567],[-98.75304256014397,18.942257643030416],[-98.74680276512345,18.944460275474853],[-98.74096766815978,18.945059294818464],[-98.73710123250379,18.943933649837504],[-98.73335186967756,18.945712116039374],[-98.72935369824904,18.944945220582724],[-98.72116783102211,18.944363635498803],[-98.71712475783852,18.942530037398456],[-98.71482965765608,18.94264944032227],[-98.70864615964075,18.948812339765993],[-98.70485770217925,18.953172539989623],[-98.7014533910484,18.954803741157548],[-98.69988817941902,18.957776705885976],[-98.70056096606203,18.959270629393586],[-98.69635176430421,18.96420690898418],[-98.69374472584491,18.96619541330466],[-98.69020972424829,18.966588316177024],[-98.69093074661623,18.96757312239282],[-98.66701884674796,19.000345448178734],[-98.6644744804911,19.0035568618801],[-98.65845738677126,19.00417114308061],[-98.65220273170496,19.005990794781212],[-98.63294665148777,19.015549520665104],[-98.62927386840096,19.017086785504944],[-98.62803556851759,19.021455562491326],[-98.62649119150848,19.024307338249116],[-98.61987463242457,19.035059573182252],[-98.62978820754194,19.04360297819045],[-98.62696912211965,19.04982878492723],[-98.62751461040034,19.05436468449909],[-98.63122531918492,19.059031934918664],[-98.62776788896247,19.06321413566525],[-98.6234705154971,19.066381773718263],[-98.62755678361975,19.069389253852705],[-98.63023184459684,19.06779412476152],[-98.63736623205489,19.07444522989499],[-98.63875844422842,19.077990286488898],[-98.6357495953485,19.082120335347327],[-98.63520700994923,19.084265927444562],[-98.63157513033298,19.087518951882146],[-98.63108407336927,19.08795685392687],[-98.62589248820092,19.08937645847101],[-98.6261324083726,19.092189543721304],[-98.62983781206623,19.096412007807373],[-98.63096743682394,19.097469612503858],[-98.6325593198045,19.1006069153853],[-98.63075436555482,19.102385217410244],[-98.62880304367542,19.11626926636967],[-98.62634324673968,19.1171838375559],[-98.62548934649709,19.11957198375211],[-98.62696800269077,19.12476347166063],[-98.63964042693652,19.123214493264754],[-98.64065706326676,19.125455733672595],[-98.64008559606344,19.136979370825543],[-98.63910952170966,19.14839115378112],[-98.6389161922317,19.150599157653176],[-98.63533870726229,19.1470323337403],[-98.63629355870881,19.154058359825854],[-98.64293041342688,19.175686182562515],[-98.64702238983756,19.18482789875509],[-98.64288379235438,19.22066870357861],[-98.64357120446425,19.23872986638645],[-98.64080612952557,19.243413740827634],[-98.63944945663519,19.2441688161407],[-98.6383856049265,19.2446536336912],[-98.63236237150318,19.25044978844346],[-98.63239585514617,19.251875815813094],[-98.63249506665113,19.25220801540769],[-98.6318967099943,19.25389648853985],[-98.62752487577984,19.25775917352786],[-98.6292553270847,19.26187384724676],[-98.63131919400456,19.263268219988504],[-98.63187126892512,19.26393674845059],[-98.64577587139382,19.29013859933798],[-98.66347588451646,19.32479238319678],[-98.66106614330619,19.339247497142424],[-98.66049537769271,19.35126246416837],[-98.65595348011647,19.34945288261764],[-98.65494903186772,19.349299688510087],[-98.65375790563593,19.349333550375377],[-98.65261833696132,19.349517355394767],[-98.64959080376906,19.351027182641815],[-98.64892227824481,19.351426867403745],[-98.64447926558194,19.351999980016558],[-98.64437091787278,19.35626677488989],[-98.64430567252958,19.358231454097847],[-98.64027794035889,19.357003513503685],[-98.63965196797233,19.35687434286467],[-98.63919786103145,19.35693758252296],[-98.63820679476453,19.358688568379193],[-98.64002869592485,19.361457179349543],[-98.64039591949432,19.364716229087037],[-98.64458909189614,19.364173671147626],[-98.65043952424884,19.3645548589044],[-98.6540592497347,19.369402684635645],[-98.65615265787557,19.37589452196164],[-98.65600748848419,19.37750996618962],[-98.65812963799794,19.382708544117065],[-98.656421541452,19.386029975738495],[-98.65771160640713,19.39078856276143],[-98.65713702614181,19.39707820643258],[-98.66284794875861,19.402998252873033],[-98.6600319945041,19.40472373643155],[-98.66003003627196,19.40723916327488],[-98.66003968871837,19.407484516532065],[-98.65900904214607,19.40977012887396],[-98.65900022929304,19.410129012777134],[-98.66176327058685,19.41291108588166],[-98.65677998827795,19.420653110087017],[-98.65634849051293,19.4220925709746],[-98.65664409710246,19.425979362941632],[-98.66017837673701,19.43209357571061],[-98.6559813020557,19.432545711137834],[-98.65073044265773,19.43209947175427],[-98.64936306675816,19.431698826355785],[-98.65020316513301,19.434638844767278],[-98.64948203072493,19.43419267279927],[-98.64368249061897,19.428969885654624],[-98.64269158912674,19.427809368455485],[-98.6409757800925,19.427681719652355],[-98.64011364384629,19.427108639088885],[-98.63911367579436,19.429999897417645],[-98.63894075497313,19.430106983841654],[-98.63707190127087,19.425967150287647],[-98.63469711106552,19.429548097259442],[-98.63482205048945,19.431241876137335],[-98.63847200031245,19.434666965029635],[-98.64284437665833,19.439399205230984],[-98.64926118715198,19.445537866354016],[-98.65709610121297,19.45360332069646],[-98.66143520732828,19.458090356466414],[-98.65322659442774,19.465986186315604],[-98.65434736896913,19.471062076399278],[-98.66102186193069,19.478433120473085],[-98.66150470802279,19.480496841332865],[-98.66039770870208,19.48550246176319],[-98.6654597460938,19.49045245225983],[-98.66805200998874,19.49341291131566],[-98.67265931882298,19.495792011295464],[-98.67567263338805,19.499461254550795],[-98.67713815057539,19.50687616648878],[-98.6781708982154,19.512098379972997],[-98.68191240105648,19.518010706067685],[-98.68546265744334,19.520540496269348],[-98.69273455462775,19.52576695064886],[-98.69352981808959,19.526950077426875],[-98.70002110435814,19.53131176993628],[-98.70217618193232,19.539222447624127],[-98.70234898938014,19.542890194488564],[-98.70144753693972,19.54525858378679],[-98.70839858674987,19.54759969042209],[-98.70546292576489,19.5524770461588],[-98.70813173909897,19.55480557442411],[-98.70604429112291,19.55933626266767],[-98.70384174391853,19.559091605297965],[-98.70446353432675,19.56132342436723],[-98.70305911677838,19.56187884518448],[-98.69950686888308,19.567150638369583],[-98.70219370111028,19.566239881007277],[-98.70021561426978,19.57120194552141],[-98.69742637444483,19.570921164009235],[-98.69480683282688,19.570641916689908],[-98.69563721438578,19.572450200068033],[-98.69420774406768,19.574545823919948],[-98.69326710531323,19.57607746105009],[-98.68911016868577,19.57685943571414],[-98.69115392680885,19.579433867173293],[-98.69101572248667,19.58127568685262],[-98.69124122385483,19.583007340317522],[-98.69286773847273,19.58438360683374],[-98.692432005238,19.585879487944794],[-98.68911309906161,19.585853108860135],[-98.68745321990946,19.585839888621365],[-98.68151246212125,19.587920216675684],[-98.68208030291822,19.594260360827263],[-98.68137994762787,19.59828493802638],[-98.67818357376859,19.59997089200209],[-98.67240550412873,19.598367710094692],[-98.66953627468467,19.59923793558812],[-98.66945294444133,19.599850643769912],[-98.6666207777759,19.602988321487203],[-98.6662296630592,19.60577796138267],[-98.66557708966963,19.60615373467391],[-98.6648728509042,19.606908834516446],[-98.6617466026297,19.61011299487359],[-98.66382603891651,19.61505332170657],[-98.66792212983944,19.61816285504085],[-98.67054910979698,19.624827918985147],[-98.67181550349693,19.625720539851102],[-98.6722131460026,19.626315714941654],[-98.67261592341077,19.63143949402462],[-98.67163692000503,19.634567023504644],[-98.67171615170736,19.635143815323886],[-98.67203664707671,19.636729479171947],[-98.66902976926377,19.641125594220682],[-98.6677270685314,19.644635848152973],[-98.66944980351576,19.647056762137822],[-98.67075580781864,19.653283340295957],[-98.6703352610395,19.655590037787306],[-98.67005481939822,19.658676132568246],[-98.66511897057381,19.661458658418155],[-98.66474333199136,19.66072961343093],[-98.66461662172941,19.66007043244059],[-98.6647573388965,19.657714294733125],[-98.66248762924658,19.65581352291207],[-98.65994887346187,19.654414621200317],[-98.65975969245449,19.654330077994246],[-98.65812102221417,19.65396741915066],[-98.65554582714213,19.650472262274036],[-98.65310666075356,19.654315003567547],[-98.6489183909544,19.650980503162202],[-98.64765379476319,19.651009698497035],[-98.64418658035737,19.648830897748837],[-98.64160846426194,19.64949042707923],[-98.63972069122542,19.651821584497043],[-98.63973578619039,19.65197519737609],[-98.6389775960252,19.65352509914942],[-98.63494913815623,19.65553786558138],[-98.62949489596315,19.656736030904767],[-98.62511350873228,19.655560034076302],[-98.62222083836537,19.657659715448744],[-98.62205676047643,19.65908087408218],[-98.62118517213668,19.66059687504105],[-98.61967057037197,19.661163915478937],[-98.62026936333467,19.661400258715673],[-98.62332063578555,19.66345107287168],[-98.62791537562498,19.663535081353245],[-98.62776212804806,19.665140860101644],[-98.63191936780396,19.667590696548416],[-98.63407923885592,19.668072706089333],[-98.63549352882637,19.67076535686101],[-98.63758836033395,19.66902871782844],[-98.63989709469939,19.67108310178702],[-98.63701168315168,19.674867915131017],[-98.63284114019524,19.67413698319308],[-98.6303490969841,19.678342955383528],[-98.62927223031357,19.68553651183663],[-98.62861569052325,19.688795194164527],[-98.6251102778105,19.691374633517626],[-98.62521821215046,19.6941208083083],[-98.62402011573141,19.696893394726715],[-98.62731363273195,19.700032369853318],[-98.62682142296302,19.70086173078647],[-98.62901538001131,19.702689755046265],[-98.62971376620698,19.703567977856835],[-98.6309006043549,19.7070867582338],[-98.62943357261196,19.709720852590976],[-98.63225792842127,19.712399874816583],[-98.63028688495365,19.71685284612505],[-98.63346158871332,19.714964528412736],[-98.6308537334018,19.71771940292041],[-98.63292433347215,19.722235863973765],[-98.63280652726809,19.722325966480923],[-98.63154762054955,19.72274957514071],[-98.63156543251188,19.72218836945666],[-98.62734905767928,19.722229863354357],[-98.62693238636791,19.725647098473246],[-98.62470304032854,19.7274244946164],[-98.6237796997728,19.725574343219193],[-98.61397681135463,19.729145693294754],[-98.61063441347562,19.727599634786486],[-98.60931215131677,19.726513419052424],[-98.60767960766964,19.72566539150114],[-98.60456142662883,19.73293930557594],[-98.60321306790797,19.732646876863953],[-98.60387458546654,19.73596720870256],[-98.60248583942672,19.75153529916946],[-98.60173180663423,19.75169962997353],[-98.60158675888454,19.75282826275685],[-98.60240096250726,19.75265533330071],[-98.6017063366607,19.75730914684607],[-98.59689402631557,19.76576722131],[-98.60059801473307,19.76492279059886],[-98.59942510689848,19.768229135316687],[-98.60674235287917,19.77180657523627],[-98.6116636816513,19.77412895060172],[-98.60960391676991,19.777108928381097],[-98.61130231818248,19.77798621871392],[-98.61341219680185,19.78167271534437],[-98.61223370570497,19.786368411601302],[-98.61747561476182,19.788051215759708],[-98.6252610426173,19.785182529196902],[-98.62431386248988,19.79006386606426],[-98.62356193152084,19.79388869935201],[-98.63255816684278,19.796433162630706],[-98.638787851313,19.80076963712412],[-98.63797544183609,19.807576237696196],[-98.63861810484013,19.809231242577596],[-98.63992953319467,19.811004305288805],[-98.63990311001811,19.811964440331565],[-98.64441863073654,19.814598730446164],[-98.64369884625717,19.817522505830993],[-98.64732677676426,19.81838131419886],[-98.64699317265433,19.820881544657823],[-98.64889382095225,19.821708049480094],[-98.64993475979657,19.824269951138547],[-98.65461091382338,19.828101206549775],[-98.65852228818807,19.832683792951684],[-98.65903076199788,19.833303407592155],[-98.66021095443153,19.83444467676094],[-98.66081486074279,19.835031421206338],[-98.66138354461174,19.834700526572135],[-98.6652299768142,19.835388913198415],[-98.66746625915357,19.834720809611213],[-98.66843725660158,19.834418220435282],[-98.67023100287736,19.834307234837866],[-98.67175134957716,19.8331114063252],[-98.67451918881744,19.832394999247697],[-98.67479217695984,19.832396203818178],[-98.67475830939236,19.832050475989604],[-98.67462332103611,19.83099763816682],[-98.67368283650222,19.827973068888923],[-98.67427509037793,19.823741465391493],[-98.67364183608021,19.82188084668951],[-98.67247718307846,19.816723387188972],[-98.67481831432349,19.814772905191717],[-98.67587540879299,19.813184356143324],[-98.67720862005888,19.813198062534582],[-98.67834675612693,19.81414689237789],[-98.67839866147267,19.81423117091134],[-98.67864987807155,19.81408139482454],[-98.67942703941304,19.814952121311023],[-98.68308572702489,19.81842433670107],[-98.68569448887797,19.82080180169146],[-98.68707516325486,19.82218586675134],[-98.68986704732697,19.82476145166862],[-98.6905603458381,19.825435441825107],[-98.69127811351939,19.826100434863292],[-98.69198254830269,19.826799380258365],[-98.6958684872398,19.830445128746533],[-98.69764308421043,19.832112625620994],[-98.69742933755833,19.83244809858843],[-98.6908108995105,19.838067327724332],[-98.6896759668382,19.83901049379807],[-98.68793389548506,19.840535650368736],[-98.68436382125378,19.843643255451354],[-98.68189152448576,19.845763211652127],[-98.6817223547394,19.845883894249027],[-98.67892293389394,19.848350917638697],[-98.6783804833795,19.849024933796613],[-98.67741393748202,19.849989739871262],[-98.67315895885474,19.852795058337335],[-98.67183974611703,19.853659141273567],[-98.67265892065996,19.862834616538805],[-98.67735313318684,19.860962730676363],[-98.68084464181715,19.860651472014638],[-98.68177467622974,19.85870802783961],[-98.68211634233057,19.857120438073878],[-98.68309845473442,19.85494864904473],[-98.68407999132592,19.854076813450433],[-98.68474501884248,19.8506915452719],[-98.68586696206927,19.850560317209386],[-98.68843805580104,19.850956747798193],[-98.6891283156562,19.85128569521129],[-98.69056095999218,19.85215879246391],[-98.69614634540358,19.85614484247344],[-98.69796077144474,19.85758714264199],[-98.70041365156436,19.856573246501114],[-98.70275547611499,19.858601014984515],[-98.70501398883823,19.854280646570942],[-98.7081277980227,19.855751679305456],[-98.70925015929527,19.85378122514993],[-98.71202258995032,19.85438573646752],[-98.71322500695379,19.854278834425088],[-98.71712778236002,19.858642944361293],[-98.71862687122524,19.86234383658524],[-98.7197683005698,19.86249954049225],[-98.7219502980779,19.862872831006484],[-98.72372738008727,19.863172967642072],[-98.72695070365444,19.863819904490526],[-98.72770842850423,19.863971214801268],[-98.72864791818432,19.86479079157698],[-98.72929164208404,19.86497346167465],[-98.73095252241586,19.86517764334144],[-98.7312295045586,19.865298089308794],[-98.73219302060289,19.86573691600148],[-98.73451298323192,19.86721284603385],[-98.73509349517684,19.86740584727943],[-98.73580117233041,19.867555261947075],[-98.73633551746514,19.86753385350994],[-98.73684329280701,19.867608007005913],[-98.73884432478286,19.867234984228787],[-98.73874344350895,19.869461971879105],[-98.73924776410632,19.869553673961093],[-98.73967220443967,19.872704755035215],[-98.74321382691704,19.874264047137217],[-98.75023724410306,19.876572298549434],[-98.75357938143361,19.877026588985302],[-98.76135565260603,19.874988229934843],[-98.76317230288885,19.87545105246062],[-98.76471342041123,19.875877606347217],[-98.76616817571016,19.876288443681517],[-98.76730983332072,19.876602253115948],[-98.7690819017123,19.877533113507354],[-98.77065935312419,19.878353166706063],[-98.77269909231666,19.879080818908562],[-98.78057412076254,19.883540547907103],[-98.78750514245843,19.87892095936178],[-98.79392681420308,19.87208408992268],[-98.79116601691123,19.86969591737403],[-98.7894967063641,19.86854269360566],[-98.79106421833148,19.865144010434676],[-98.78972153753858,19.86188684096669],[-98.79192362349511,19.859993055036284],[-98.7923351925271,19.859800004920658],[-98.79428628976939,19.85706282587722],[-98.79458311586802,19.856899310711412],[-98.79517248025974,19.856414695297474],[-98.79961414823782,19.85889075649851],[-98.80067975514748,19.85967769676347],[-98.80117182171301,19.860496102824243],[-98.80169824032794,19.86124541650753],[-98.80249561144052,19.861409740263184],[-98.80293216483796,19.861632806465707],[-98.80336512772811,19.86177080220176],[-98.80413321100866,19.862037402077476],[-98.8046159072261,19.862259168011235],[-98.80483018479936,19.862381004550855],[-98.8053157496056,19.86275985262307],[-98.80579064430611,19.86334633487712],[-98.80619937186316,19.864586255919903],[-98.8065266175031,19.864629233223752],[-98.80686146687799,19.864674879614256],[-98.80750733462224,19.86471240718288],[-98.80799149332194,19.864608511086885],[-98.808763278767,19.86446626585831],[-98.8095937719736,19.86461075794574],[-98.80992373311085,19.864734044050465],[-98.81187606187615,19.865310155707334],[-98.81242024814964,19.865460507177602],[-98.81552996141437,19.8681492764444],[-98.81713525391751,19.867284147333123],[-98.8209585668344,19.869562114336077],[-98.82832540813763,19.873859934757945],[-98.83020185476937,19.874896046553033],[-98.838182145992,19.8794205317202],[-98.83665425436328,19.881219523547372],[-98.84399533289235,19.882223281815868],[-98.84356337103452,19.883694788391665],[-98.84095155845222,19.89230885939412],[-98.85583001757226,19.904280149854912],[-98.8586273749666,19.900970904408155],[-98.86564154708094,19.89331028215213],[-98.86589594151951,19.892586896192995],[-98.8661216462433,19.892702787257747],[-98.87131152659617,19.89531955755649],[-98.87806082130862,19.898734650070708],[-98.87825266496742,19.89897597295186],[-98.87873597904462,19.899108420590323],[-98.88079696351281,19.89971454036072],[-98.88316207480386,19.9015287603861],[-98.88390090570863,19.89955901271003],[-98.88470078892948,19.899823443025184],[-98.88635147668424,19.89942673810384],[-98.88673112236057,19.898901909944414],[-98.8876859270826,19.899095524345512],[-98.88777787559496,19.898864178241126],[-98.88802784257683,19.898476788290623],[-98.88980904782653,19.897072794225267],[-98.89076001101961,19.896261103680047],[-98.89206056967959,19.894376101997693],[-98.89607867773083,19.895377048730097],[-98.89719515201011,19.89413271641115],[-98.89519623918886,19.893347167099535],[-98.89717335692097,19.892366256552748],[-98.89751758138993,19.887956540798086],[-98.89571239916904,19.88643261931111],[-98.89744402855052,19.884458342485573],[-98.89826970958165,19.883605334216895],[-98.90411752410085,19.887579956700506],[-98.9092037418892,19.879872067775864],[-98.91182479887846,19.881017255626375],[-98.91016547361687,19.878048559300453],[-98.91274047529595,19.879155854218936],[-98.91444734664634,19.875718810746378],[-98.91244215946472,19.874800510130342],[-98.91460410059057,19.871440415514655],[-98.91748098075738,19.86923318013089],[-98.90948419102762,19.865601726238424],[-98.90706237266079,19.864605978804207],[-98.90535771202013,19.86361681541979],[-98.90577034958079,19.862777553531714],[-98.9068847746912,19.86122984743065],[-98.90741125675208,19.860476635070995],[-98.9073491164915,19.859577932470984],[-98.90749625229256,19.859087591017328],[-98.90783964990487,19.85853093565123],[-98.90878878624352,19.857124965759965],[-98.90297794161131,19.859305504585734],[-98.90596217989219,19.855605491233177],[-98.90633090628648,19.85438828723386],[-98.90761465417648,19.8490113720934],[-98.90746633695016,19.84788889661138],[-98.90686935521336,19.847743849555798],[-98.90567043906839,19.845981979837063],[-98.90787732055082,19.8435761909509],[-98.909046352823,19.843851114596703],[-98.91241710432286,19.84318417706413],[-98.91440322216113,19.84229814604612],[-98.91632320733333,19.839332273958632],[-98.9173893136894,19.839992838962246],[-98.91816303105867,19.840314494144366],[-98.9276315226374,19.843392676417693],[-98.92845591295617,19.841192665227766],[-98.92899972042244,19.839781951466534],[-98.9296935059939,19.83785026945145],[-98.92981954779356,19.83749860845478],[-98.93004357201761,19.836978592951596],[-98.93009753258315,19.836775161225546],[-98.93092699366775,19.834642411540756],[-98.93236677352951,19.830968575221334],[-98.93539229894213,19.82600924883235],[-98.93602487268697,19.82497233218288],[-98.93863582718205,19.817568068000867],[-98.94109525488233,19.812635294778772],[-98.9432757824809,19.80825722023286],[-98.94548939431922,19.80380178054918],[-98.94668472455504,19.804280022574176],[-98.94754743531519,19.80453708069973],[-98.94875853024627,19.800510882360015],[-98.95301565601727,19.800161166161786],[-98.95539944412502,19.798830316773433],[-98.95518714261715,19.8007934286955],[-98.96135911943497,19.803908087503885],[-98.96091705512009,19.80509436629285],[-98.97036371388629,19.808761406429653],[-98.97923316247761,19.815126045553313],[-99.00020010059654,19.82495057427417],[-99.00828797116094,19.82853080794763],[-99.00005468998063,19.833332419352473],[-99.00131146426253,19.83500024721633],[-99.01683048803693,19.861452562587033],[-99.0186748091557,19.861863376422434],[-99.01841671963581,19.86368021968383],[-99.02039120964656,19.864106764914652],[-99.02058115871301,19.867682655773592],[-98.9875581322865,19.882179998037486],[-98.96600596966994,19.89165679370393],[-98.9559750623634,19.8851664776206],[-98.95354693400628,19.888539898055342],[-98.96144640098993,19.893640706505437],[-98.95505875301609,19.896396472602532],[-98.95668431204166,19.905290689664923],[-98.95272259325185,19.906714554990515],[-98.95348284830004,19.911551115428495],[-98.95611243901755,19.92818355169254],[-98.96044456857805,19.92505811034323],[-98.9623261694947,19.92639614427418],[-98.96182586469979,19.929175073745398],[-98.96610562704467,19.929840708383324],[-98.96656966085533,19.931408929759186],[-98.96833301773131,19.93380908021925],[-98.96996643065376,19.932698911579052],[-98.97250560298676,19.935907209440757],[-98.98316476032426,19.938612829815952],[-98.98304913208955,19.94071366110302],[-98.98310401647961,19.941484127823855],[-98.98469074781167,19.946318016841985],[-98.98536379129695,19.945519044741218],[-98.99977850775474,19.941825019873534],[-98.99759463788723,19.94887150096281],[-98.9957679322107,19.956164591031722],[-98.99562282011107,19.95689171596905],[-98.98117572511944,19.954721393979753],[-98.96761557278484,19.971528534780248],[-98.96704700218038,19.97223313847212],[-98.96621945576567,19.973995083211378],[-98.96264909387673,19.974383793625975],[-98.95859349566177,19.975709254377648],[-98.95568219057958,19.975722196497884],[-98.95222509025518,19.974129403592144],[-98.94854934984863,19.974018459462002],[-98.9482547586224,19.97526587234114],[-98.94474247840941,19.975051643323297],[-98.94273049184841,19.979073096420223],[-98.94375912959538,19.984977974406263],[-98.94311692643862,19.993371046038476],[-98.94213155738896,20.000623191857812],[-98.94399613071687,20.00493864264348],[-98.94748725594513,20.008991786033278],[-98.94427981445267,20.01729220619535],[-98.94513497809925,20.02304636588451],[-98.9465747428273,20.02502422411584],[-98.94793678364607,20.029567885498636],[-98.95155663201797,20.02911016838658],[-98.95370181216475,20.03053050958431],[-98.9551634331479,20.027835653965326],[-98.95926987551701,20.029004332201282],[-98.96071912796145,20.028944840643476],[-98.9602405124673,20.031623006490577],[-98.96404298079415,20.03157825269119],[-98.96316994273843,20.031886844139763],[-98.96196298641883,20.03210756269408],[-98.95987796647302,20.032600689106687],[-98.9586876866158,20.039565393938233],[-98.96224085871432,20.041786191306244],[-98.9636434164521,20.043262595678016],[-98.96609934460787,20.042743060347334],[-98.96687060186542,20.043675737497097],[-98.96720621802967,20.044007313084137],[-98.96765903667256,20.044207526013395],[-98.97027475224797,20.045746574599605],[-98.97576666980825,20.05244266024397],[-98.97921044800523,20.05411786046335],[-98.98189609741945,20.05686225909369],[-98.98224375868148,20.05833138191457],[-98.98305886558569,20.058949124858316],[-98.98690747777141,20.061397086480724],[-98.98896854682408,20.063870145344197],[-98.9893864098679,20.064715359544664],[-98.98949325306023,20.064994359483535],[-98.98927688265934,20.066299546344737],[-98.98905064998922,20.06701190857848],[-98.98897789526114,20.06826191705261],[-98.98915929903421,20.06793487054364],[-98.9896285853606,20.067123781527073],[-98.98997674451095,20.06645293512355],[-98.99256269998432,20.06574725426384],[-98.9931473344451,20.06314083275447],[-98.99360064142292,20.06291554707815],[-98.99484156238668,20.061403037356968],[-98.99562637577259,20.06012500844116],[-98.99557904997386,20.059661880113822],[-98.99633401149748,20.058374810424823],[-98.99683848062836,20.058074804082025],[-99.00010998647434,20.053342550173454],[-99.00115978472132,20.052394370251875],[-99.00564429580862,20.05320451432152],[-99.0098949760897,20.035231457214934],[-99.00945384318402,20.035202468523323],[-99.00782905229562,20.03386561900919],[-99.0078596133103,20.031130077884768],[-99.00593561116443,20.030933115787263],[-99.00476910479517,20.032673214966167],[-99.00526680276033,20.02894405277823],[-99.00596060291667,20.02635360623242],[-99.00698484044472,20.02399395596433],[-99.00844970379967,20.020870715960484],[-99.009677670874,20.017976061636432],[-99.0132807498722,20.010925234659908],[-99.01397804063583,20.005645148413464],[-99.01366972473693,20.00051783867508],[-99.01350154942907,19.9976207831848],[-99.01623622283978,19.996777706351395],[-99.01897638636547,19.993755489390082],[-99.01807468613686,19.993402727414548],[-99.0183095463936,19.992620052827363],[-99.01826676045738,19.99062674582558],[-99.0186235378269,19.989794411924777],[-99.0203464882157,19.990561619399386],[-99.02055065932211,19.989967209369752],[-99.02155470112672,19.987005231592377],[-99.01125637193383,19.982122379739053],[-99.01317724449609,19.981382210950414],[-99.01371659043309,19.981279522283955],[-99.01423780590989,19.97772364399185],[-99.00871493374649,19.977226470819176],[-99.0074934795876,19.978966371256433],[-99.00412010664564,19.96495210236492],[-99.00683792263453,19.96501731837725],[-99.01402472975911,19.964496392369142],[-99.02765581671878,19.9645586149191],[-99.0323675545327,19.970305082025504],[-99.03451296651826,19.971771788644958],[-99.03428945180735,19.973211557511206],[-99.03394652574957,19.975420223138485],[-99.03310810974114,19.98177090581214],[-99.03289170739168,19.990087513025173],[-99.03190942651668,19.990718733401764],[-99.0302107961237,19.99322525501549],[-99.03193746291339,19.99663415693533],[-99.03024692837084,19.99963588449657],[-99.0289163307956,19.99924440094486],[-99.02851212117349,20.000102410534282],[-99.02742290165781,20.0016481879577],[-99.03083344135473,20.00291298608613],[-99.03097087225177,20.003666526505754],[-99.03036029298437,20.00891258993846],[-99.03089709946534,20.0125527107935],[-99.03134289775738,20.014853622943235],[-99.03537285839928,20.0136325215625],[-99.03679293124111,20.012816981061576],[-99.03797354075283,20.01282636216547],[-99.03884121914678,20.012883395177937],[-99.03987899953898,20.01279820049905],[-99.04338071872877,20.01130852995692],[-99.04943030123269,20.007697101798442],[-99.05039896635299,20.003031312745748],[-99.05221158130803,20.00134082747485],[-99.04875462071271,19.999337472267598],[-99.04845383705259,19.999339516170267],[-99.04801525373449,19.998217713653787],[-99.04766186105172,19.99766770101411],[-99.04779146748257,19.994917025028087],[-99.05129322123656,19.992353325631825],[-99.05678827905638,19.99023609106729],[-99.05850078437481,19.98840475824943],[-99.0561007072136,19.984668364706067],[-99.05786742521519,19.98210302438406],[-99.05957574893228,19.97399582148995],[-99.06098639442672,19.97458956971036],[-99.0653526446423,19.981501299635454],[-99.06756047711553,19.98498939888043],[-99.06616240344721,19.996440591132625],[-99.06394463950386,20.009103874008645],[-99.06384086050736,20.014194359277496],[-99.06620946198348,20.01615932649969],[-99.06832041487144,20.018025319203673],[-99.06974394051201,20.018054585273774],[-99.0741353602969,20.017918877926547],[-99.0783239560975,20.018299596842837],[-99.0796726755471,20.026212487835778],[-99.08544996173725,20.032487916175796],[-99.08935132925609,20.034348803684964],[-99.0958048381741,20.030639679970818],[-99.1017045853576,20.032033902801004],[-99.10386925486489,20.030898549265544],[-99.10908036467885,20.03053286417196],[-99.11251929412344,20.02920422231233],[-99.11815317882605,20.029304460862193],[-99.12590924570605,20.031713937415418],[-99.12750598932018,20.031451356128912],[-99.13087683449652,20.028241978472295],[-99.13521381093034,20.027086494180594],[-99.13828864729658,20.028182807866642],[-99.14238319511912,20.027049563021478],[-99.14369205788921,20.026281309452827],[-99.14743347351794,20.02775784431094],[-99.15039804737268,20.027501729391417],[-99.15356501642208,20.02606947346601],[-99.15860312153598,20.027187713003627],[-99.15932083153149,20.017028117991572],[-99.16136617179302,20.01242608733122],[-99.16737418379086,20.012873487647312],[-99.16787277861499,20.00351276317315],[-99.16875339487211,20.0026168590461],[-99.176350354249,19.999558700256955],[-99.18000148871408,19.99808877677748],[-99.17721734132357,19.993138894593926],[-99.18093757691793,19.99214900384891],[-99.18385468097506,19.990418600286944],[-99.1880749119029,19.991932618034355],[-99.18908820142485,19.99291869735123],[-99.18930052463747,19.99317810890625],[-99.18965983925261,19.99197729231679],[-99.1908111288846,19.990394256341915],[-99.18894371931555,19.989451798849984],[-99.18985890414979,19.986637659836617],[-99.18920571956596,19.984819552833017],[-99.19090823747979,19.984073910452253],[-99.19472516204723,19.985472273334835],[-99.19691905840506,19.984826603089573],[-99.19742698197263,19.98240161158293],[-99.19775036882663,19.978268392841414],[-99.19886849936069,19.977693895494667],[-99.20285439902858,19.971622716177876],[-99.20433815877334,19.97049119011251],[-99.20572703388257,19.969708478987286],[-99.2080039686656,19.968675259088627],[-99.20853604703541,19.96851820340339],[-99.20891960457072,19.96636975613461],[-99.21406601843512,19.963595866105095],[-99.21387338416662,19.963359049095686],[-99.21501382326295,19.959833664605583],[-99.21315950993414,19.958925249702304],[-99.21539443747906,19.95461440766269],[-99.22776104097318,19.95106812616865],[-99.22604847154116,19.950042081778406],[-99.21967578423886,19.930389184456942],[-99.21773897457473,19.926921041230628],[-99.21151908206656,19.92428838420335],[-99.20941735684454,19.931777881150765],[-99.20688071194462,19.932131747627125],[-99.20701872414008,19.92907256904539],[-99.20560277411835,19.927500739525897],[-99.2107290237679,19.91447472288189],[-99.21263593641316,19.91489688396024],[-99.21356212591235,19.91510192792765],[-99.21555049499034,19.91470262970421],[-99.21498311389081,19.913053300508466],[-99.21915789856183,19.911390245529617],[-99.21949193043127,19.9050502800838],[-99.22076737965699,19.902741752528186],[-99.2239252184869,19.90199840096693],[-99.21746709195656,19.891423629742178],[-99.21828791501548,19.889070352215413],[-99.21940660440237,19.886980635718487],[-99.22066886185843,19.884236048474634],[-99.22829969450669,19.875046801612484],[-99.2293224398399,19.874033023999516],[-99.23216532519939,19.87673887057673],[-99.23399658570861,19.87579723893583],[-99.23440952548981,19.876259246669065],[-99.23637239728725,19.875083142531253],[-99.2414303453661,19.875262110767892],[-99.24566931123928,19.86952909865522],[-99.24796082107503,19.859785439133134],[-99.25287994054537,19.860641661107877],[-99.25469560092449,19.85908455015715],[-99.26342101218847,19.859064506062907],[-99.26895549504769,19.859712062446192],[-99.27097086662906,19.858564955731367],[-99.27352529217177,19.85357598168855],[-99.27602520582946,19.851486866946743],[-99.27641237080303,19.849531217833544],[-99.27678088293925,19.848060456392375],[-99.27815911323944,19.842231922611916],[-99.27839195390317,19.8416905583195],[-99.27871892081936,19.84040939540347],[-99.28134245211112,19.84258907206629],[-99.28584671474584,19.839633552395526],[-99.28632141122785,19.83715829171041],[-99.29694378981571,19.835222251004154],[-99.30114565247032,19.829152660493946],[-99.30029276004706,19.828508309488313],[-99.30031583111099,19.82844386563204],[-99.30313021996176,19.826660989912114],[-99.30590268164008,19.82059432788867],[-99.31044243690872,19.814702194732888],[-99.30815033507326,19.81273500462663],[-99.31146616019964,19.8088107473601],[-99.31267425082808,19.805228174083652],[-99.30886064032404,19.801420713834545],[-99.30782491128781,19.799302957827877],[-99.30660052900168,19.79769370019602],[-99.31386132916174,19.79634528354643],[-99.31559406311237,19.79555872694965],[-99.31840701700014,19.796345176159434],[-99.32314891309807,19.795280277267125],[-99.32258290929133,19.794236583445638],[-99.32388130209347,19.792888248115844],[-99.32636404853179,19.793214107221445],[-99.32837346894513,19.795538595844903],[-99.33134558985807,19.796701730048767],[-99.3321727611355,19.79688793591157],[-99.33551024097972,19.797673735407272],[-99.33623461133516,19.80017905243062],[-99.33609753811783,19.800406191986667],[-99.33562599284426,19.800423845759894],[-99.33572869998818,19.801018985109238],[-99.33626608891223,19.80148375746245],[-99.33781254985098,19.801545775554644],[-99.33791682976386,19.801590911050482],[-99.33902223810685,19.800974489559223],[-99.34005269845102,19.79542459920947],[-99.34030937796274,19.794316245614425],[-99.3409943916763,19.794502412996394],[-99.34157090998787,19.79548061456785],[-99.34276933326964,19.79605249521893],[-99.34285785179094,19.796116365240607],[-99.34495540838975,19.79514458605314],[-99.34506085937511,19.79434123199877],[-99.34537355543057,19.793954002009343],[-99.34555885532768,19.793483337664327],[-99.3445744492139,19.7922355377778],[-99.34448148913037,19.791749422773364],[-99.34431888805068,19.79120888946835],[-99.34434022622395,19.790918143610725],[-99.34443711202942,19.79034349468475],[-99.34457568626021,19.78984992168398],[-99.34444314402549,19.789291481585053],[-99.3451103662984,19.788585191734626],[-99.3454432555543,19.78829206277493],[-99.34612356020006,19.787864187898776],[-99.34610055659039,19.78762398171085],[-99.34581470666728,19.78743645399004],[-99.34498819017801,19.786053994262886],[-99.3455610962983,19.78532489426277],[-99.34599881267025,19.784682918311432],[-99.34577950164135,19.784449285999358],[-99.34326485063315,19.782940002885084],[-99.34304211853708,19.782784785290403],[-99.34266984632546,19.782373879354054],[-99.34347059753219,19.782359880339698],[-99.34385730988993,19.781440249110403],[-99.34378054636795,19.781044494699813],[-99.34348031066475,19.78050214379465],[-99.34451727388955,19.779907842719638],[-99.34456044359257,19.779454525710094],[-99.3507630899569,19.77676721565632],[-99.35135994545249,19.776424741073242],[-99.35497761878293,19.778018612481617],[-99.35510624121684,19.779321899227682],[-99.35580978173499,19.780101217603203],[-99.35779094761386,19.78156825732134],[-99.36513888284429,19.78053529841145],[-99.36609067218285,19.780433425532635],[-99.3674416527823,19.780092929048465],[-99.37061021115505,19.78184454777977],[-99.37207920690872,19.78006538510658],[-99.37389846979102,19.77795233733923],[-99.37333297866223,19.776677288322105],[-99.37386756903163,19.77637865664559],[-99.3748228877975,19.775411643963196],[-99.37648082593813,19.775593652737655],[-99.38244521712932,19.771204054739655],[-99.38577038364991,19.77707024317351],[-99.38663938781258,19.776127818202383],[-99.38788359226453,19.77791317893582],[-99.38442536504147,19.779118313214212],[-99.38117186701135,19.78405439483447],[-99.38512884884102,19.783493057227133],[-99.38538613801961,19.783294639585677],[-99.38961793764071,19.783795490296995],[-99.38957077278258,19.788024696910384],[-99.38929258103116,19.788373615594367],[-99.38889703027871,19.791052288124206],[-99.38386696081369,19.79382555360189],[-99.38349553887474,19.79375805296553],[-99.38063311473672,19.794441285867947],[-99.38027698082362,19.794911620165124],[-99.37754043204802,19.79645339366158],[-99.38274516062131,19.799235651676838],[-99.38330853974378,19.801332071411878],[-99.38409481439999,19.801961178221916],[-99.38644242502579,19.804442629655398],[-99.38610187145514,19.80934785424796],[-99.38609983999214,19.80946431101006],[-99.3863322027729,19.81038219639197],[-99.38665534747713,19.81051439137798],[-99.38661464428066,19.81324673807228],[-99.38496951687972,19.8166583386743],[-99.38492476285086,19.816761044340126],[-99.3831761540269,19.820721073363245],[-99.3815439237157,19.821133650474223],[-99.38227059769423,19.827955840761035],[-99.38103874668423,19.832035118175554],[-99.37871270365582,19.835249315217084],[-99.37629317472403,19.83662358316309],[-99.37426530940053,19.838676111216728],[-99.37415017341516,19.83980771935444],[-99.37429330075378,19.841984682700343],[-99.37524631579737,19.843582838958923],[-99.37689153162887,19.845249379467532],[-99.37444627859105,19.84668855546721],[-99.37513378254664,19.847635953538884],[-99.37324990988105,19.851541848138083],[-99.38024794966373,19.855892957215758],[-99.38832303175411,19.85740544935385],[-99.39175175692304,19.85991753427527],[-99.40262091997823,19.855246575647755],[-99.41499177585791,19.85052662892042],[-99.42098756618844,19.855122368587615],[-99.42172388230045,19.861067444819128],[-99.42390248637292,19.867837517274666],[-99.42613686734165,19.870713244848957],[-99.42678139582256,19.87499702242019],[-99.43041452969658,19.87087918047615],[-99.43129088509772,19.873725284063937],[-99.43203252816647,19.874460331108878],[-99.43269220174108,19.875256618721608],[-99.43707977021279,19.878921522173982],[-99.44520828480944,19.884321056918793],[-99.43603430308917,19.896146233171407],[-99.43718818306706,19.899687805808185],[-99.4359331942548,19.903129157895194],[-99.441182592085,19.899202059022457],[-99.44559148569476,19.896831474328906],[-99.4487701296041,19.896674972768608],[-99.45023921304005,19.89483541745483],[-99.46055189081767,19.892571241968426],[-99.46309764813788,19.892564637305327],[-99.46537707071997,19.89596710051194],[-99.47155673061548,19.898886902616766],[-99.47324720686646,19.89772511955249],[-99.47743693363248,19.89827498822683],[-99.47990048909867,19.90411889136567],[-99.48398147119696,19.90517652276361],[-99.47505086297735,19.944105523555436],[-99.47497327112308,19.948580245902065],[-99.47362257283396,19.954443932704976],[-99.47723740590965,19.954790923547478],[-99.4774262417987,19.955595510818227],[-99.47687851186078,19.95654454288251],[-99.47713848701801,19.957860109566923],[-99.47801438116733,19.959366768441555],[-99.47794320827057,19.959819828728257],[-99.47756279778702,19.96086537253325],[-99.47372831432682,19.961629992694554],[-99.47237994453411,19.96321496837038],[-99.4706421672326,19.962904326731405],[-99.46311997361431,19.964294905584723],[-99.46273416881144,19.96471940417814],[-99.46264760568351,19.96479137903674],[-99.45947976491067,19.966402572775394],[-99.45708320321296,19.96565565735108],[-99.45465649319499,19.964103519002776],[-99.45196910439057,19.96333236168607],[-99.4514847115118,19.963329365692232],[-99.45017638790944,19.964793664010756],[-99.45159491050856,19.966361461269685],[-99.45079701578288,19.96690174770555],[-99.45219322103566,19.97069942918523],[-99.45343074590693,19.97296948556334],[-99.45235741073685,19.97332485371902],[-99.45172954267849,19.9745020588407],[-99.45473181760372,19.9755303304147],[-99.45458420985545,19.981219795483014],[-99.44795936435287,19.98166661840196],[-99.44429136466908,19.98637071318069],[-99.44413155436035,19.986760194313035],[-99.44360584097251,19.988839319060048],[-99.44549556655159,19.991227893431414],[-99.44215581467489,19.99524820697644],[-99.44195088220488,19.995507469739493],[-99.43798927765926,19.99755316658576],[-99.43677671807023,19.99982427057273],[-99.43737154102973,20.00304706555795],[-99.43790116293872,20.00389794647583],[-99.43841931257174,20.004465609127124],[-99.43848976539067,20.00481024036054],[-99.43889348965382,20.007467022561002],[-99.43877572189706,20.0076988916515],[-99.43870809401307,20.008339514588613],[-99.43935721863653,20.0089534601708],[-99.43946774459192,20.01253710653964],[-99.44072103697408,20.013207140250245],[-99.44215240538125,20.021027837151394],[-99.44331808164958,20.02479490338635],[-99.44476922401822,20.02913490486219],[-99.4456006037941,20.031586389865993],[-99.44761194503832,20.037291441321088],[-99.44834269364583,20.040643169773205],[-99.44844877394672,20.042187108185317],[-99.45166862162728,20.045547422790378],[-99.45216462240063,20.04605496134934],[-99.45821436515308,20.055029536027234],[-99.45868802470801,20.056721012182607],[-99.45859759718167,20.057787452445496],[-99.45833543504983,20.061465663032777],[-99.45975870319523,20.06545733565423],[-99.46461601692647,20.069148716134407],[-99.46994847109517,20.07341499234991],[-99.48100856245424,20.082197887631764],[-99.48364669190369,20.094915463734708],[-99.48349685877628,20.10096976938354],[-99.48427438284875,20.101255468362126],[-99.48477574234818,20.10155323706516],[-99.48536079932342,20.102296382141105],[-99.48579617272378,20.102908813930526],[-99.4861283729652,20.10358196820738],[-99.48655992757807,20.104359810594474],[-99.48685974490502,20.10496043126483],[-99.4869587031049,20.10516721799638],[-99.48775306548617,20.106908291510194],[-99.49259856884561,20.110904078352405],[-99.49491785326632,20.110878989730736],[-99.49708962259717,20.116184003353624],[-99.4968781759809,20.120087035117024],[-99.50131221750576,20.127003323694225],[-99.50692972264903,20.133447444950207],[-99.51132728329105,20.14040908248188],[-99.51151491138671,20.14074494826565],[-99.5152425145128,20.142641332381345],[-99.51812819717975,20.145666665894282],[-99.51869826106747,20.148298837696416],[-99.51634083558605,20.14877281622711],[-99.51546623420631,20.15086120127779],[-99.51361553323989,20.149557616705238],[-99.50726929367005,20.150769804757374],[-99.50183085226729,20.15328658818828],[-99.51095113701729,20.172374742328486],[-99.51172112538455,20.1739915199679],[-99.5122402537296,20.175100174582212],[-99.5174994112881,20.175689893612628],[-99.52314432765888,20.174792859466834],[-99.52592659696194,20.173295567528385],[-99.52569616521748,20.170682013870817],[-99.5284957765096,20.164591358084294],[-99.5290415669246,20.163606713982233],[-99.53031655960638,20.163700327705612],[-99.53181803948962,20.16377832154882],[-99.53391314590135,20.162131137889617],[-99.53469917185953,20.163935022928115],[-99.54103895563816,20.163914391001242],[-99.54216940833419,20.163741387254618],[-99.54543423034062,20.163286267551257],[-99.54828755650192,20.163131735972627],[-99.55019156825108,20.165650853795057],[-99.55120745080075,20.17051979826698],[-99.55066462805371,20.171391686948255],[-99.55921191806289,20.170674445722],[-99.56212194305323,20.169145344584933],[-99.56368726750378,20.169427720418582],[-99.56786407006086,20.169307665253484],[-99.56857310923351,20.169506887509442],[-99.57262701747129,20.16907296290026],[-99.5725614168797,20.16425687749654],[-99.57652179948411,20.162836012199875],[-99.5814032354067,20.16199749781532],[-99.58260703436127,20.16444380507096],[-99.58260259933246,20.16322000660074],[-99.58360154944035,20.16444009725467],[-99.58675485188093,20.16728521181625],[-99.593287140408,20.169020926686528],[-99.5995608766491,20.16967337108423],[-99.60143496405976,20.166902862243262],[-99.60223275989068,20.16791867265931],[-99.60842270139466,20.162781086761242],[-99.61172825788054,20.161469342304713],[-99.61306073745413,20.159790292399748],[-99.61254324134785,20.159360778067537],[-99.62937881120615,20.145911223580924],[-99.63060240630045,20.145694444464652],[-99.63201178649405,20.146794483636427],[-99.63483675115305,20.15153224905015],[-99.63565778474128,20.155324919430768],[-99.6356683304067,20.155916164755467],[-99.63612190255674,20.158157146819917],[-99.6391760949436,20.158731653782297],[-99.64099046286861,20.164229192235553],[-99.64594313668493,20.16337505968471],[-99.65063137711593,20.162774828119097],[-99.65086307043589,20.16378648943777],[-99.65319105850949,20.163490638888504],[-99.65507723377499,20.16308990380503],[-99.65789676976493,20.168038896167957],[-99.65675987215678,20.169121468124274],[-99.65807085274275,20.175315936805077],[-99.65869331390081,20.176235646001146],[-99.6597266091834,20.180820542969514],[-99.66252226933267,20.18046120098387],[-99.6658105380821,20.179906726675256],[-99.66692132459127,20.179715243269243],[-99.66939736714221,20.179298758881828],[-99.67211165006222,20.172825148556853],[-99.67410525426874,20.167548318006027],[-99.6769489027347,20.162470467038418],[-99.6776845693584,20.16683823323143],[-99.68053882822772,20.16932479422104],[-99.68208235663326,20.170588726758524],[-99.69289938579686,20.171778849203747],[-99.70126737306316,20.172602485906793],[-99.70201314597051,20.17227209575742],[-99.70423294265635,20.17127731959374],[-99.70488757957952,20.170485460192765],[-99.70745800668891,20.167828006998548],[-99.70903826516576,20.167011910773795],[-99.71068353456496,20.16622707415462],[-99.7117110224894,20.166226737332863],[-99.71407255452982,20.166257043316705],[-99.71464241004327,20.166323478619688],[-99.71937184497432,20.167137985861586],[-99.72009553005489,20.167362445388278],[-99.72321097840592,20.17048323870239],[-99.72839746084787,20.17180251046375],[-99.72918512430783,20.172047646346357],[-99.73580522628652,20.177403066358124],[-99.73898012305006,20.177506172147503],[-99.73971782639956,20.177674917757656],[-99.74053416167334,20.17952326320892],[-99.74045943554671,20.18005315591074],[-99.74438678122533,20.183402989322474],[-99.74750930452143,20.1869546666166],[-99.75132049870871,20.188910801106204],[-99.76004283870299,20.196817933420448],[-99.76702389613786,20.202480064426652],[-99.77746225313052,20.212716438487007],[-99.78756902989107,20.221982164803194],[-99.79236686023938,20.2255311144865],[-99.79450149650472,20.227161608727272],[-99.79550089613616,20.22878268253504],[-99.79353876805862,20.23140011793805],[-99.79151710920644,20.23073490569294],[-99.7914828163025,20.230961438186],[-99.78806795299249,20.230034928880457],[-99.79052118192936,20.23731455854181],[-99.79041830445863,20.23799420070054],[-99.79509627066835,20.24208710582917],[-99.79612541498273,20.242132867547127],[-99.79722696180039,20.243061446102843],[-99.80497062825248,20.249836691154087],[-99.80803196452183,20.252550457298298],[-99.83165885104108,20.273169054470145],[-99.84188959621832,20.28188142253805],[-99.84598212363244,20.277763079997953],[-99.84438494438297,20.276331282798424],[-99.84855499806025,20.27209588322887],[-99.85443436683306,20.269554995304645],[-99.85570370950421,20.26992600327617],[-99.85785291198965,20.26775400312914],[-99.85789646276265,20.267726580259477],[-99.85951252790119,20.264883678764306],[-99.85910642194682,20.268470547266247],[-99.86257288016424,20.26898596110391]]]},"properties":{"cve_ent":"15"},"id":"inegi_refcenesta_2010.22"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-104.8137433690855,19.231476699796247],[-104.81551312429315,19.228562395307335],[-104.81581232454658,19.225768565291844],[-104.81395792627814,19.225031042389332],[-104.8143677334715,19.229970400711693],[-104.8137433690855,19.231476699796247]]],[[[-104.8755762341824,19.272371054321354],[-104.87804213495258,19.273931732228448],[-104.87804249185353,19.272458886743948],[-104.8755762341824,19.272371054321354]]],[[[-105.03474599000566,19.39096565446414],[-105.03602636917088,19.3887741902592],[-105.03426848989261,19.389037127237543],[-105.03474599000566,19.39096565446414]]],[[[-105.06603920105772,19.479030743132],[-105.06809450031074,19.477246759426862],[-105.0639675860503,19.477632866769568],[-105.06603920105772,19.479030743132]]],[[[-105.09328000013062,19.526615276448297],[-105.09590210249297,19.526114630547568],[-105.09204891451247,19.52216489586516],[-105.09038675862246,19.52380929381735],[-105.09328000013062,19.526615276448297]]],[[[-105.09275550669093,19.538436453092288],[-105.09424530255689,19.54046905767433],[-105.09511789039072,19.538779028818283],[-105.09275550669093,19.538436453092288]]],[[[-105.11500819574292,19.547376222060393],[-105.1132470143682,19.549165159669485],[-105.11563822707922,19.54871088228026],[-105.11500819574292,19.547376222060393]]],[[[-105.10825794141743,19.54664101076338],[-105.10625229161252,19.550286629285097],[-105.10931974355191,19.55210091278775],[-105.11125745884635,19.5505021618863],[-105.11343442478801,19.545868392949046],[-105.10956739442105,19.543993698879547],[-105.10825794141743,19.54664101076338]]],[[[-105.11052919892268,19.561711607815482],[-105.11330119073222,19.561674977585255],[-105.11483233567202,19.55797672531247],[-105.11627204656946,19.558217799987517],[-105.11716609711328,19.55496888328105],[-105.11362730598506,19.557545549194003],[-105.11200328278898,19.557062893241664],[-105.11052919892268,19.561711607815482]]],[[[-103.93291109818131,22.745338412150943],[-103.93712227755879,22.74746570807116],[-103.93994032030463,22.750159292418743],[-103.94538233009632,22.746202039868194],[-103.94842165119326,22.74563033253571],[-103.95097191103957,22.74731881439459],[-103.9562721542199,22.745612431509983],[-103.95930433368272,22.745446569754733],[-103.9614718268599,22.74705250168421],[-103.96515797783513,22.746093199466827],[-103.96941043859698,22.74669191442763],[-103.97098683412645,22.745062927513914],[-103.97154976117793,22.74176440673665],[-103.9737733339187,22.74265761321186],[-103.9750945000099,22.744942413504987],[-103.97463791660158,22.747024743988845],[-103.97711652223023,22.74715468640818],[-103.98181516519611,22.745499251085675],[-103.9852691422733,22.742900854607967],[-103.9901616141459,22.742309525398866],[-103.98888436106648,22.746381811465255],[-103.99192675748236,22.74800156961726],[-103.99803090176368,22.747532524721862],[-103.99967028324824,22.746253140862564],[-104.00299342231392,22.746894618189856],[-104.00776494663847,22.744251960440693],[-104.00951703899943,22.747416497814868],[-104.01299931158536,22.747625980394048],[-104.01486361795014,22.745650489326408],[-104.01868314845052,22.745061868144774],[-104.02052420929004,22.743878733076656],[-104.0256905283976,22.743278159335148],[-104.02777665024087,22.741742689292096],[-104.02766700226545,22.739044757631973],[-104.03236815104816,22.735369344480546],[-104.0359792516382,22.73403615876498],[-104.03599083111686,22.73268223563383],[-104.03698339846846,22.729616594966842],[-104.04080919453332,22.728063462940668],[-104.04288612139828,22.72914283702727],[-104.04614521215166,22.728677534174835],[-104.05330327885315,22.724881774665107],[-104.05591150193999,22.723978195778045],[-104.05546551671534,22.720135275207326],[-104.04975317313034,22.715404377721427],[-104.04774766875215,22.712151404636586],[-104.04970529993079,22.708358332229864],[-104.05243599804749,22.707741911627295],[-104.05611106548213,22.70902595623909],[-104.06070572420884,22.708513514530466],[-104.0641509761536,22.70696305413145],[-104.06432819767656,22.70564414393209],[-104.06196048862597,22.70378628095682],[-104.06009521331879,22.698031987123727],[-104.05749005297116,22.69485432840429],[-104.0591642172667,22.69206366573252],[-104.06101576693015,22.6914433651051],[-104.06903060760112,22.701245756384424],[-104.07214422301763,22.70135385954336],[-104.07200651926968,22.699138931451785],[-104.07281094460677,22.698307570489476],[-104.07362273111698,22.696953113850896],[-104.07296804854008,22.69324561352545],[-104.06919227825551,22.690062056714225],[-104.06636359989903,22.690768159842378],[-104.06190306374464,22.688212810753612],[-104.05099895154586,22.688420549304396],[-104.04660550181529,22.684248618928166],[-104.04688780978364,22.681807924523525],[-104.04852376926942,22.680184612742153],[-104.0548103711962,22.67842052497241],[-104.05028958772755,22.67678719368587],[-104.04693721058516,22.677138092675534],[-104.04326677312088,22.67189348808904],[-104.03423954380872,22.670517910417004],[-104.03297251397282,22.671727174510124],[-104.03281203038296,22.676341693335132],[-104.03136813013629,22.678856646975817],[-104.0296686562836,22.67679431299581],[-104.02549168411406,22.673971810269336],[-104.02402584626589,22.673248310123313],[-104.01550887306382,22.668910660434108],[-104.01637843216889,22.66434843387185],[-104.01946106909895,22.65535148135359],[-104.01950673118597,22.65264875031977],[-104.02506729311494,22.652049784369524],[-104.02426672817995,22.653164264837415],[-104.02529918512391,22.652121032295497],[-104.02585889248007,22.650953924352393],[-104.0274674977727,22.648415603215483],[-104.02694015525486,22.64751007464315],[-104.02742357915633,22.64660043013373],[-104.02823267000514,22.64455100752525],[-104.02817690224776,22.643094912678237],[-104.02752576970636,22.64111260119563],[-104.02745777301737,22.640558110430504],[-104.02817544845902,22.639048080388136],[-104.02923725858676,22.638248410565154],[-104.03038649429868,22.637572564708023],[-104.03189349769883,22.636366663829165],[-104.03320462446828,22.632233681101695],[-104.02784269770791,22.62526882418564],[-104.02594763494119,22.624225587084823],[-104.02570690357169,22.6215975138893],[-104.0269133752683,22.618585503274005],[-104.02567677824209,22.616444207126676],[-104.02489310230817,22.61721565269363],[-104.02570119143019,22.61446003639071],[-104.02700563791319,22.613178152697287],[-104.02411742195079,22.60934383255534],[-104.02340390074829,22.60353786794633],[-104.02262143541986,22.602779049082415],[-104.02245616537965,22.602794860566632],[-104.01983395893797,22.600687458349796],[-104.02004392756311,22.599255428436834],[-104.0158321041489,22.595945240610092],[-104.01388163112762,22.596609605437607],[-104.00932062158483,22.595024161717618],[-104.00848844646134,22.595146005403706],[-104.00397807763716,22.59449393923535],[-104.00222021209674,22.59257921578535],[-103.99728677275783,22.591440759028217],[-103.98888407084036,22.592474386540687],[-103.98675918209221,22.5911861323238],[-103.98604881358676,22.59043532430195],[-103.98328601580783,22.585471721428746],[-103.98678501424445,22.58472945067382],[-103.98998581824839,22.582485581964136],[-103.99061004393695,22.5786560279347],[-103.99017417591574,22.57304151712799],[-103.9930980484695,22.57027999747646],[-103.9960813092568,22.569923685437743],[-103.99707210617515,22.568497616362663],[-104.00075022395407,22.56755620956818],[-103.99993239664144,22.56452974313197],[-103.99389466970513,22.564527019359502],[-103.99382582927313,22.563813363198847],[-103.99289213670534,22.560019627961253],[-103.99066691153399,22.55695109500175],[-103.98692485572923,22.555897063574832],[-103.98531256931062,22.5534491802008],[-103.98387001093238,22.55405433863524],[-103.98180761514959,22.550619644623055],[-103.9823346236904,22.549815889965203],[-103.97850360449189,22.548662756442297],[-103.97594531533883,22.546206879836006],[-103.97233212431729,22.54511362764913],[-103.97302442027461,22.543121652732907],[-103.976667112072,22.54260263540567],[-103.98009457406141,22.54061715856585],[-103.98449918833836,22.54149274946019],[-103.98706915126473,22.54283187598952],[-103.99471533495114,22.542687878119693],[-103.99888116985579,22.543603669998276],[-104.00314681793128,22.541273103799938],[-104.00557082745257,22.536600283325924],[-104.00277775972665,22.535253763496428],[-103.99976291963316,22.530756823845195],[-103.9937743414497,22.529905472028588],[-103.99038100978345,22.52771340147507],[-103.98904995147473,22.52918657745181],[-103.98684679427896,22.528309672139756],[-103.98997602080317,22.52588601449679],[-103.99125622396815,22.523266511668112],[-103.98815263379271,22.523545300923786],[-103.98483268276811,22.519137865012112],[-103.98028830998658,22.51903775130029],[-103.98064873977677,22.515102684206056],[-103.9772626526476,22.516488040027582],[-103.9763256357868,22.513321392108935],[-103.97432598127244,22.516237719316052],[-103.97154370505024,22.515947927176796],[-103.96619678704997,22.517225900080973],[-103.96523552328466,22.51666317983387],[-103.96314417087393,22.51501938044271],[-103.96317412889044,22.51180427909793],[-103.96430312068946,22.509637063494324],[-103.96341101195316,22.508040481561522],[-103.96181809399008,22.509097957112715],[-103.95828849416836,22.507693361515408],[-103.95636331308907,22.504553665457763],[-103.95354832761512,22.50549724277198],[-103.95241354124357,22.508543154169956],[-103.95004112677401,22.50888728667752],[-103.95113192713887,22.505302643663583],[-103.94994135627292,22.502870840885635],[-103.9455817598589,22.504098892052696],[-103.94172841930646,22.502187216535958],[-103.94010977753777,22.499265002548725],[-103.93639510495643,22.500156926404202],[-103.93569514080872,22.500380647673296],[-103.93450865941998,22.49910379040591],[-103.93708879332263,22.497598783427804],[-103.93744800075291,22.49378100090928],[-103.93706907146014,22.493236463095116],[-103.93308155157547,22.489092804979293],[-103.93504970698712,22.488050363882678],[-103.93730767700464,22.489131510739696],[-103.93828389093045,22.489613160343595],[-103.93989265626152,22.48947945677594],[-103.9382563888816,22.487174449580152],[-103.93782066948603,22.48678355036884],[-103.93120582466355,22.476749182939614],[-103.93014151064585,22.47645703556219],[-103.92944206975068,22.47512375919979],[-103.93147641111295,22.473600249896208],[-103.93466408743711,22.47662997813285],[-103.93779077882124,22.475203451203413],[-103.93816222243532,22.473285541857024],[-103.93462949313812,22.4731912294547],[-103.93344307003713,22.47120042016627],[-103.93804042263662,22.470184085742176],[-103.93681102420175,22.466396204359057],[-103.9379530089243,22.46275545406968],[-103.94228724726344,22.46142288408555],[-103.94932771631744,22.461791685821936],[-103.95118287639445,22.46040182655514],[-103.95340067844285,22.455098786809288],[-103.95605975783928,22.454053682699396],[-103.95865975927757,22.451085189760306],[-103.95795615281827,22.448144538236193],[-103.96071582635977,22.441091333155782],[-103.95977053024149,22.438043685228536],[-103.96002815084796,22.435237404971815],[-103.96057011067768,22.43317915604996],[-103.96246323457126,22.433322251494587],[-103.96325045989073,22.433276489479624],[-103.96712085068481,22.43347867508811],[-103.97484487996178,22.435727583450216],[-103.9757890612729,22.43594741747944],[-103.97462150140711,22.43319872431499],[-103.97482946834918,22.430517542710618],[-103.97650934309968,22.430398881509404],[-103.9770725435244,22.42619439625912],[-103.98229862775918,22.425538975431095],[-103.9827076873105,22.424097430471818],[-103.98446320652465,22.423670834672066],[-103.98588564813457,22.420825297820556],[-103.985044366539,22.41790630435389],[-103.98639205665131,22.414832934562526],[-103.99130130856605,22.41237911049467],[-103.99182185510199,22.411077712240285],[-103.99762658774222,22.40942742022878],[-104.00325389066427,22.410275053687826],[-104.00439410742314,22.40929415647264],[-104.00590629053414,22.408683691975227],[-104.00580750464161,22.406587533602476],[-104.00631972498127,22.40279671096181],[-104.00393699226959,22.39627805003164],[-104.00407767689745,22.39121646441822],[-104.00325093836977,22.389929809923842],[-104.00878036083333,22.382386738185744],[-104.01268310441912,22.37854989142204],[-104.01275112608835,22.372836480549097],[-104.01206349015018,22.37080358397003],[-104.01501278575643,22.368432671428934],[-104.01513380548698,22.364812892368434],[-104.01873365646082,22.365603295320568],[-104.02317903852588,22.364493483120896],[-104.02514618583024,22.36586271241407],[-104.02871454781484,22.37060259063003],[-104.03501371127771,22.37135394705814],[-104.037493836426,22.373723573668258],[-104.03837860037811,22.373844551323373],[-104.04194964913438,22.375836981360692],[-104.04288889980262,22.3753063936241],[-104.04875282295359,22.37644460932904],[-104.0512201473133,22.374876208994124],[-104.05375763232666,22.37157034070583],[-104.05678865987625,22.372090229948412],[-104.06055120051991,22.36857924953216],[-104.06302195443152,22.36513291244586],[-104.06671142914348,22.364133105926896],[-104.06747547543512,22.36140684098541],[-104.07157141068336,22.361800846288304],[-104.07530999219449,22.364390328916613],[-104.07769087564594,22.363382695606845],[-104.0836862893882,22.35782931167938],[-104.0875360928157,22.35783768428638],[-104.09140966054264,22.35571938225695],[-104.09464252120893,22.35507750474045],[-104.09734361126516,22.357892516911022],[-104.09684418418175,22.358616556179925],[-104.09595938180149,22.360875656299527],[-104.09558127405853,22.36584735404773],[-104.09712858840174,22.368653239198125],[-104.09719438874566,22.371452335769163],[-104.09489489354866,22.376306410389645],[-104.09216261260593,22.378369053672827],[-104.08798541338138,22.37843656740415],[-104.08752690748906,22.374278194409612],[-104.08441272879924,22.374451061994364],[-104.0828523755489,22.376059171456518],[-104.07877851951991,22.37690649862759],[-104.07539095143272,22.38313073641058],[-104.07753638827933,22.386867825549132],[-104.08044067252928,22.388421147549423],[-104.08071597384082,22.390860623386914],[-104.07826565745466,22.394008710297385],[-104.07619400493047,22.398784089042238],[-104.07723673264644,22.402855659049067],[-104.07674202969997,22.40685065261721],[-104.07346652840204,22.41324395673888],[-104.07284696519201,22.42026498194724],[-104.06798650765887,22.424530856376578],[-104.06648204061878,22.426887832161412],[-104.06321854953484,22.425003564713563],[-104.06163699845928,22.4258000718076],[-104.06113417806012,22.42959553058847],[-104.06343636455296,22.43258539663441],[-104.06234533130555,22.435922061463145],[-104.06327675377116,22.44170848997851],[-104.05860145862209,22.443486916688585],[-104.05858773490974,22.446203413507874],[-104.05817792478729,22.448634122286478],[-104.06224102881419,22.45127730022506],[-104.05686116199195,22.45666590852079],[-104.05615983794326,22.459643255790013],[-104.0524347825301,22.464499397391364],[-104.0515747108272,22.46674776698427],[-104.05193289641471,22.469919115547953],[-104.05178763114287,22.471545324412944],[-104.05351336108271,22.47966192167138],[-104.05567517359032,22.48347911722624],[-104.0547906365976,22.48944508775685],[-104.05706666098934,22.493197696460413],[-104.06163721715353,22.495123957124974],[-104.07115325694497,22.502433294981927],[-104.07156888534485,22.506013772983636],[-104.06938109517768,22.509017126912966],[-104.07160754831045,22.511912797081493],[-104.07417875501125,22.513317651562772],[-104.07415519525523,22.51566225475949],[-104.0687952486565,22.521999673388336],[-104.07262744653201,22.52495642692685],[-104.07716019910481,22.53178176480219],[-104.08187997789065,22.533556399367],[-104.08386261364421,22.532881272157567],[-104.08802243105782,22.533368919123575],[-104.08814369259471,22.532273212741416],[-104.09281122064414,22.531879330718084],[-104.09484964298042,22.53285241796567],[-104.09778247922458,22.53147273628349],[-104.1023490472466,22.53149710767906],[-104.10270719128823,22.53144691871961],[-104.10430668330349,22.529022125785673],[-104.10658060782595,22.523252935190726],[-104.10852681379657,22.52364991775363],[-104.11116953132671,22.521128378093408],[-104.11350194858198,22.52049079963848],[-104.11498123713022,22.51787568851347],[-104.12079624298804,22.517048628657847],[-104.12076677724957,22.515627200992526],[-104.11700950281676,22.512564550220418],[-104.11319604321858,22.510569407633113],[-104.11326949132183,22.507067396812886],[-104.1115401142223,22.503504717212138],[-104.11297234087243,22.503857370087758],[-104.11521912538467,22.49958646924432],[-104.11350892686602,22.496609856280884],[-104.1160059689596,22.496631312984505],[-104.12073426222173,22.496980363410785],[-104.1215917080354,22.497961020593948],[-104.12350042930808,22.502157582754307],[-104.12790109449827,22.50299129098653],[-104.13047620589839,22.503704412936656],[-104.13239818743597,22.503114470705782],[-104.13742246440029,22.50397009330237],[-104.13982595471623,22.503326466729334],[-104.14309114038792,22.5046514713909],[-104.14870548773939,22.509722967280084],[-104.14982148794883,22.50974386656685],[-104.15007913464814,22.513277852798808],[-104.15129738334946,22.515226811917216],[-104.15312655397884,22.515002990463756],[-104.15566631143747,22.51544871321562],[-104.15634842927079,22.515353963657162],[-104.15694460059768,22.51010134214397],[-104.15835346028933,22.509325072014008],[-104.16115833399277,22.51220945801731],[-104.16139040821918,22.512603189332424],[-104.16316299327224,22.514443531001177],[-104.16436753788014,22.51402264703364],[-104.16548620000748,22.512585951273252],[-104.16575982553951,22.51225956075791],[-104.16901227722684,22.509948900609743],[-104.17056206185333,22.507232421790434],[-104.17483440774907,22.507538680524874],[-104.1780547010651,22.5052960491376],[-104.18067770457947,22.505850990196222],[-104.182417509488,22.507667707963947],[-104.1841696557492,22.507134474539043],[-104.18465532005979,22.506955999685147],[-104.1857207023777,22.50786520277785],[-104.1895187718323,22.507785686712282],[-104.19265031022735,22.5037906033225],[-104.19537576592188,22.502673647451616],[-104.19441426475407,22.49914894867112],[-104.19483271148181,22.498308410819163],[-104.1963904075352,22.49713112000586],[-104.19896146907149,22.494949571315942],[-104.20151160646935,22.489917714754824],[-104.20232717138572,22.48871848991024],[-104.20233036008761,22.487610755264882],[-104.20182510975877,22.487113149259244],[-104.20316859192428,22.486245851550905],[-104.20428067562699,22.485956179627863],[-104.20752734156389,22.48545860618617],[-104.20879180113332,22.483375302088973],[-104.21270473056461,22.483773833747648],[-104.21353590328806,22.48398209345936],[-104.21482800328437,22.484161485620064],[-104.211513920875,22.48183389150421],[-104.20667702494097,22.482473430673565],[-104.20735717912703,22.481413960508632],[-104.2018888198794,22.482822944088753],[-104.2011860964945,22.483017823516718],[-104.1988740288511,22.480457308023404],[-104.20024032530398,22.478141863316296],[-104.20264474272426,22.475718630315384],[-104.20491651227672,22.471907817019712],[-104.20042714665277,22.472966473342638],[-104.19729708449057,22.477122281808363],[-104.19521319245843,22.472943283926952],[-104.19324494781586,22.475435515433446],[-104.1916926477362,22.471536610739406],[-104.18833325211972,22.470098778559134],[-104.18842111560014,22.469281105542734],[-104.18995692615772,22.468252487878487],[-104.18572953908512,22.471412705643274],[-104.18764749523416,22.46822571998638],[-104.18679669634838,22.466262357989137],[-104.185831359823,22.466156432400453],[-104.18498052836145,22.464622069077336],[-104.18751181612959,22.46422938336491],[-104.1902104071944,22.463839401143105],[-104.19574300522027,22.462204018607622],[-104.19711310272203,22.46108095628142],[-104.19742633987994,22.4608051644002],[-104.19814529522762,22.459541362352127],[-104.19820998531264,22.45855051099278],[-104.1982109371263,22.45630061780065],[-104.19987398512029,22.4563068856001],[-104.19891070633588,22.453403139580644],[-104.19692691528348,22.452142416381207],[-104.19682390122671,22.449514061397565],[-104.19665908310543,22.44905541251677],[-104.19510028305785,22.447631482971303],[-104.1943984794475,22.447285803309114],[-104.19302652590954,22.446608885112823],[-104.19159701149255,22.446286366130096],[-104.19104172334357,22.446058246288146],[-104.19011883125796,22.44609089754084],[-104.18864840299341,22.446959170533376],[-104.18800224369505,22.44726439484998],[-104.18586712409422,22.447718964829505],[-104.18420829561944,22.448272449217427],[-104.18151124564002,22.448010939201993],[-104.17956002872762,22.450054394164],[-104.1750658009837,22.446779967932173],[-104.17516518134869,22.443845306803837],[-104.1750623835274,22.442485422391144],[-104.17381491205037,22.442606676064543],[-104.1694316183357,22.444413685364623],[-104.16984724656976,22.44295559929884],[-104.16997448593474,22.440905960375915],[-104.17167855515515,22.440512665118945],[-104.17225331187888,22.440424579304363],[-104.17174486274314,22.438089540689987],[-104.17356163452564,22.437653263853974],[-104.17361905391056,22.436922979727854],[-104.17374921354366,22.434388737439804],[-104.17425620120395,22.434135849834945],[-104.1742976558441,22.432598929516985],[-104.17425927707598,22.432435820297542],[-104.17403400005458,22.43213551669669],[-104.17583700385887,22.431959733418466],[-104.17605486126598,22.43173122365141],[-104.17605207392302,22.43160802405066],[-104.17515141034448,22.430574472624926],[-104.17381683769491,22.42954516018517],[-104.1763820693692,22.428857276320798],[-104.17639416153173,22.428666091514685],[-104.17592624134738,22.427372087969843],[-104.17885578441161,22.4274324997686],[-104.17747157188728,22.42326961494348],[-104.17529032465166,22.420959755331467],[-104.17442246284111,22.42083644344916],[-104.17423008395087,22.41899375806281],[-104.1740088215887,22.41711005666781],[-104.17217945348784,22.410615112376263],[-104.17227055798236,22.410080265419992],[-104.17371066653254,22.4082617316447],[-104.17048539593151,22.40564356477347],[-104.16825167155844,22.4048850908365],[-104.16805349898527,22.402905881529136],[-104.16548111041982,22.39710226940491],[-104.16621237652242,22.393511917341243],[-104.16463636545268,22.39239929733037],[-104.16738578563167,22.38735622697442],[-104.17456810909982,22.388324076006427],[-104.17770138494075,22.3896347436189],[-104.17968975010302,22.392197172806675],[-104.18128034118712,22.392431403332523],[-104.18579455765638,22.395775725458577],[-104.1865324666868,22.395969227221485],[-104.19059943557,22.39926197222877],[-104.19304397427351,22.39912318587875],[-104.195203527415,22.404117857688902],[-104.19775233016827,22.405177094147803],[-104.19918770743936,22.407302556907723],[-104.20160258640817,22.41627710649493],[-104.20377468480353,22.41738916954762],[-104.20577779198925,22.420547484908866],[-104.20878370078412,22.422483867615824],[-104.21364115624897,22.421793134252198],[-104.21495047745299,22.422765907832115],[-104.21652064241653,22.421083467237622],[-104.21887662124192,22.4214943875931],[-104.22572359968632,22.419337783089247],[-104.23093877113308,22.414286898309683],[-104.23357217768779,22.415088701216064],[-104.23728735280491,22.412997242322547],[-104.23778935889368,22.412563468977794],[-104.24079196671937,22.412790369364984],[-104.24784707792048,22.40263810846818],[-104.25215258203565,22.39628408766515],[-104.25181706912707,22.393909901413792],[-104.25444242083483,22.392476290142838],[-104.25319735972943,22.386323299529295],[-104.25764078342945,22.38591057430392],[-104.25884492241886,22.38250637089982],[-104.25913138124486,22.377565776920505],[-104.25508909445523,22.373284155775423],[-104.25523079904184,22.370584296891764],[-104.25545613170095,22.37010377503674],[-104.25662022439627,22.364345032519054],[-104.25577486451925,22.3629401351576],[-104.2566677004059,22.359331696718698],[-104.25518272583457,22.357744484847274],[-104.25426946526488,22.34960514803629],[-104.25791305592742,22.347749853160735],[-104.26396289902351,22.34642636158162],[-104.26483939236994,22.346587795289622],[-104.26659487826714,22.343247726657125],[-104.27477251045906,22.342795221646384],[-104.27927606855661,22.343723671704424],[-104.28084904482944,22.344958736878084],[-104.28560271236199,22.34565912775372],[-104.28762805239171,22.344424848787526],[-104.29256283581219,22.34431484114367],[-104.29288603863057,22.34469453411657],[-104.2938889208371,22.345690132719596],[-104.29525799328763,22.34754643255269],[-104.29716983557728,22.3481589504986],[-104.29786025794232,22.348180438460588],[-104.29837629247095,22.346943842991152],[-104.29814791926356,22.345399628488963],[-104.29771835990351,22.3446204991144],[-104.2966932327472,22.34171493507847],[-104.2952588302669,22.339893504823692],[-104.29516398051106,22.337261596951066],[-104.29383217095028,22.335942851705624],[-104.29318922492553,22.32982790587789],[-104.29355458014419,22.328972229970873],[-104.2949167185443,22.328252994506045],[-104.29568744892481,22.328527762878025],[-104.29673806858631,22.328858071214995],[-104.29717323838571,22.328767563130384],[-104.298394632986,22.32798382451915],[-104.29895202214038,22.327994188241973],[-104.29940105818145,22.32773801229291],[-104.29952568061702,22.327088491552956],[-104.29940782568212,22.326725048224375],[-104.29910630061278,22.325620893132736],[-104.298722072754,22.32512636036836],[-104.29839092240707,22.32478006472445],[-104.29831063689937,22.324464588881312],[-104.29814670404971,22.32385458847682],[-104.29800206554523,22.32366354441035],[-104.29784929727288,22.32346244819496],[-104.29777716280944,22.32335366541963],[-104.29729235135693,22.323251033812767],[-104.29692267261413,22.3231951515383],[-104.2966874881646,22.32276743212111],[-104.29448890147285,22.32155776061643],[-104.29416830523053,22.32123961552145],[-104.29397666118399,22.321029806350168],[-104.29379704742786,22.32092850835727],[-104.29355911476489,22.32083517062614],[-104.2931969001288,22.320546806127993],[-104.29287145771502,22.32020981232762],[-104.2926286762144,22.31959615176845],[-104.29268596794896,22.319456528999297],[-104.29280546135232,22.31931828523284],[-104.29294225120145,22.31917285030346],[-104.2930377571708,22.31908585649097],[-104.29315112299366,22.31888062853153],[-104.29312222321147,22.318790856041687],[-104.29297869631131,22.318572560908592],[-104.29317563662158,22.316516575399078],[-104.2933526441497,22.316028206474073],[-104.29359141103026,22.315736650708743],[-104.2939280508977,22.31533875364147],[-104.29401845622647,22.315203247124145],[-104.29441955417127,22.31468767788334],[-104.29460352369284,22.313866906746227],[-104.29452357399089,22.313430861049483],[-104.29446648378268,22.31328237969001],[-104.29436649547154,22.31310635430623],[-104.29417345902755,22.312860074843968],[-104.29401699407532,22.312669925650653],[-104.29391895894724,22.312529749955445],[-104.29377597285617,22.312272214182144],[-104.29353367792947,22.311232625218963],[-104.29338334329356,22.31088803869534],[-104.29320067018375,22.31047856335283],[-104.29314413175086,22.310311440303735],[-104.29309072640649,22.30997725967461],[-104.29293470546122,22.309454640012575],[-104.29274175323025,22.30926782716847],[-104.2928317253058,22.308706250869932],[-104.29267720474093,22.308271833603328],[-104.29269084332213,22.30780165516188],[-104.29254918358379,22.30724167813554],[-104.2923419867459,22.30695672885429],[-104.29022913011187,22.307243955520562],[-104.28972019134437,22.307179146857607],[-104.287989955559,22.305466156725288],[-104.28724015536329,22.305206858875636],[-104.28721374220174,22.304900335350283],[-104.28719993654664,22.30457299150811],[-104.28648402388586,22.303661884098858],[-104.28483581248793,22.302652044552303],[-104.28500329713893,22.301910659651128],[-104.28474266441287,22.301337718098978],[-104.28487830282563,22.300410172587817],[-104.28482891355014,22.299778636849055],[-104.28467482574445,22.29950049094134],[-104.28447881860677,22.29896699245012],[-104.28474975735173,22.29802019700378],[-104.28482534359102,22.2974481717697],[-104.2848659028827,22.297093518656766],[-104.28500578214624,22.296865184148828],[-104.28519325089229,22.296692838348974],[-104.28561229670129,22.296558504038558],[-104.28576780203542,22.29649000180939],[-104.28614958115145,22.29639840304975],[-104.28669452185665,22.29628104269841],[-104.28733699855508,22.295998236762046],[-104.28861899101685,22.295336785351594],[-104.28888185765652,22.29507287553014],[-104.28920681794983,22.294518740667],[-104.28939626347727,22.294225770721994],[-104.28971484327741,22.29366711018406],[-104.2897956371778,22.293417209324616],[-104.28957288258835,22.29248349258262],[-104.28987321448432,22.292041908416422],[-104.28979225422842,22.291809480641803],[-104.2895129343134,22.291350144382818],[-104.2891943755406,22.290749422513954],[-104.28939609450322,22.28975538754173],[-104.2896952768931,22.289483396796072],[-104.28986190117752,22.289277441051695],[-104.29009833408657,22.28872407376673],[-104.28994090184085,22.28793052159358],[-104.28923845346236,22.287639994820097],[-104.2898052870691,22.28715002692826],[-104.29026061101348,22.2868221446073],[-104.29020516102253,22.286717651247784],[-104.28933904769565,22.286095087372985],[-104.28875848043748,22.28564002794178],[-104.28949937700929,22.285342918691867],[-104.29057641633403,22.284929907546427],[-104.29167760548796,22.285276932508964],[-104.2926144114565,22.284654613111],[-104.29278762335093,22.284206879090277],[-104.29326294153884,22.28324753212644],[-104.29396399927259,22.281407245372918],[-104.29519789400484,22.280495368574805],[-104.29563950466957,22.276908462279096],[-104.29626722101506,22.27634625681685],[-104.29671004341122,22.276051210202127],[-104.29747964152614,22.275756223801523],[-104.297743615949,22.27581738997179],[-104.29811614501511,22.276088846835307],[-104.2986023865605,22.27635046987058],[-104.30011576302923,22.275871324742184],[-104.30025236866754,22.27505202785619],[-104.30037870762169,22.274136741425934],[-104.30039326783441,22.273468535805648],[-104.30317263521579,22.27015841919092],[-104.3035311095843,22.269168889469995],[-104.30382875297971,22.268893883101214],[-104.30496036402974,22.267769312606504],[-104.30588463437891,22.266670534731986],[-104.30642147521769,22.265957056311606],[-104.30666636804273,22.26533964570291],[-104.30672602895106,22.264953800399837],[-104.30758849995055,22.26462674982122],[-104.30816811046384,22.264187720293137],[-104.30886531901223,22.263724228678257],[-104.3093882696403,22.263224306043412],[-104.31039822902824,22.263386969367843],[-104.3112041658502,22.262769161327867],[-104.31173843093615,22.261546268198174],[-104.3120459818997,22.260932139015836],[-104.31225944757699,22.26053021154604],[-104.31237285563799,22.260243699562295],[-104.31255805914543,22.259861180202847],[-104.31316769664505,22.25898314483078],[-104.31379704388064,22.258043019115917],[-104.31415064729231,22.25773537581324],[-104.31460014133415,22.257501647195454],[-104.31528489766231,22.256942075665563],[-104.31618528559568,22.256274850366026],[-104.3167611990009,22.25641327150049],[-104.3171313853639,22.256668272938214],[-104.31746129239536,22.256850339123275],[-104.31906101959521,22.25655242299291],[-104.31943588440731,22.256382241958875],[-104.31956238603061,22.256260681865115],[-104.3199345155125,22.255469790735845],[-104.32055512041296,22.255101456650323],[-104.32098441436267,22.25482574693268],[-104.32130192629756,22.254397662509803],[-104.32205902163241,22.254019786376773],[-104.32247081051855,22.25366206201693],[-104.32256675732282,22.253103304652484],[-104.32270207865065,22.25287920829288],[-104.32295644826462,22.252639449464823],[-104.32322916492313,22.252024710485614],[-104.3233212538754,22.25160235553301],[-104.32332284602847,22.25140803183615],[-104.32339519693653,22.251020883482397],[-104.32369960302469,22.25042132182341],[-104.32410345392344,22.249884323827814],[-104.32448725597845,22.249608506238417],[-104.32536434061814,22.249128438113303],[-104.32576543447033,22.248998813919968],[-104.32594720942461,22.248703154314683],[-104.32615983701595,22.24842332006841],[-104.32694900522745,22.247917902504298],[-104.32737887598688,22.247792473339246],[-104.32741933845574,22.24748408266555],[-104.32716753687401,22.247138343781273],[-104.32689854747997,22.24709338022342],[-104.32678164066783,22.246820959156935],[-104.32758269341292,22.24622507605568],[-104.32768221940671,22.246171821767234],[-104.32819021884279,22.245829128752973],[-104.32860165659389,22.24548607789859],[-104.32873995024408,22.245195274142247],[-104.32835535132568,22.243833785539323],[-104.32812438710187,22.243452325468127],[-104.32869483591821,22.241882110604934],[-104.32852182248467,22.24135632674563],[-104.3284107686136,22.24041287918857],[-104.32825654258068,22.239957627659635],[-104.32829943432694,22.239341421897166],[-104.32849678610495,22.238634815020475],[-104.32795214607268,22.238160951111695],[-104.32711619039725,22.237758671310758],[-104.32711016616202,22.235063204354788],[-104.32709390052537,22.234409761689506],[-104.32705871763932,22.23390186898024],[-104.3267478495095,22.23341085146916],[-104.32655419393978,22.233210406922865],[-104.32636193421621,22.232810203066833],[-104.32611021526071,22.232355515055872],[-104.32591732560599,22.231919004300494],[-104.32589756323978,22.231792196750803],[-104.32619194134395,22.231449104819433],[-104.32634937159537,22.231249713037016],[-104.32662290592503,22.2309977250535],[-104.32755958838214,22.230747520032196],[-104.32808697713494,22.230513482872936],[-104.3292006576724,22.229956446147753],[-104.32965292829647,22.230000448849125],[-104.32994586255103,22.229910675536416],[-104.33037603810527,22.229694443127016],[-104.33131486192246,22.229009298803703],[-104.33178772202854,22.228557270398596],[-104.33198216635293,22.22721304612395],[-104.33197848391296,22.226333117976367],[-104.33148985738165,22.225786883709645],[-104.33177124006954,22.225162951554637],[-104.33190570619769,22.22459250505625],[-104.3320255275894,22.22419484721661],[-104.3323230965143,22.223198916608396],[-104.33215006129461,22.22267132419279],[-104.33223124225611,22.222127171967657],[-104.33258327893009,22.22176062201936],[-104.3328036498902,22.221569929768975],[-104.33328655936208,22.221042183398993],[-104.33332719471747,22.220167237843157],[-104.33288861726015,22.219010390943822],[-104.33359354787456,22.218504908003865],[-104.33369587898926,22.217968805863393],[-104.3336821722196,22.217633275054368],[-104.33371085603437,22.217479568367025],[-104.33380538513984,22.21705481003488],[-104.33462277696248,22.215578592962345],[-104.33533962451827,22.215309882486622],[-104.33595092417221,22.21513900656271],[-104.3366686561647,22.214921118652],[-104.33791575511725,22.214308428665618],[-104.33898042454138,22.21374661765543],[-104.34020324993179,22.21286281661844],[-104.34049710409892,22.212494284818035],[-104.34114051842005,22.210819424003716],[-104.34118125066232,22.208415604912375],[-104.34102885256624,22.207786934311116],[-104.34097671005088,22.207593437337437],[-104.3407715303943,22.20701277949138],[-104.34029367679301,22.20589425216906],[-104.33956160792462,22.205290730494823],[-104.33739500777256,22.20310836794016],[-104.33672062807574,22.202568418499652],[-104.33649431671944,22.20245019451545],[-104.33591660264409,22.20230824814911],[-104.33428623744987,22.202184074652735],[-104.33358459490404,22.20192415613741],[-104.33185826339792,22.20049132222988],[-104.33332588901993,22.19799871771778],[-104.33401005894615,22.19714854982095],[-104.33570144457019,22.19491218918847],[-104.3361620534398,22.19348889188376],[-104.33553172780472,22.189778825715678],[-104.33553524877436,22.18931120898793],[-104.33566034521886,22.188938892528142],[-104.33589149181068,22.188331639653313],[-104.33652267961946,22.18763297531234],[-104.33644872534785,22.18730634934144],[-104.33738317329767,22.185721519329377],[-104.33776291967155,22.18513924492521],[-104.33825003563618,22.18520713001152],[-104.33829899368044,22.185536897257407],[-104.33926082162816,22.185660747031932],[-104.33957709607267,22.18497426783722],[-104.3397974690194,22.18449791730501],[-104.34032395392455,22.183766830814818],[-104.3407764639914,22.18334103806461],[-104.34560136100123,22.180461543917488],[-104.3461492681925,22.18025440876721],[-104.34708835951443,22.17889979290544],[-104.34712900736099,22.178273569266594],[-104.34771770299119,22.17703958179675],[-104.34838537948559,22.176794822541922],[-104.34828981334954,22.17652434404897],[-104.34937670819693,22.175784479309527],[-104.3500913735707,22.175694585799135],[-104.35056884797712,22.175893198113272],[-104.35052995365851,22.175689649650906],[-104.3500779966347,22.17338800574646],[-104.34980687164011,22.172382573357936],[-104.34918804376485,22.17083862237041],[-104.34969930576938,22.169426320661785],[-104.35000462189669,22.168774338077412],[-104.35045779505151,22.16865938204694],[-104.35224550286716,22.16733471091203],[-104.35335054352731,22.167152588855572],[-104.35433053040907,22.166898832396157],[-104.3557929341294,22.165923182657764],[-104.35612238223047,22.16487316487286],[-104.35545287347537,22.163663211320056],[-104.35558307353989,22.162589914924467],[-104.35576194992757,22.161679293153043],[-104.35558945236244,22.160906599102418],[-104.35544344243687,22.160641007149366],[-104.3550196320515,22.159821316023],[-104.35486975560167,22.15944683671023],[-104.35440182033955,22.157505675103664],[-104.35403467801405,22.155752719737393],[-104.35441802173045,22.154000999093796],[-104.35447709913637,22.152542036600778],[-104.35481198320866,22.15025359166782],[-104.35560088606297,22.14801358142404],[-104.35762551771927,22.14511186816577],[-104.35850689731035,22.144250406649576],[-104.35896204280436,22.143645139500848],[-104.35929466916878,22.142338141946937],[-104.3595067820824,22.140001640427386],[-104.35979202860364,22.13877163108731],[-104.36082872398771,22.137327641460217],[-104.36155823050376,22.136699093760285],[-104.36156979378273,22.133494106712988],[-104.36170101339712,22.132372680478625],[-104.36130959858923,22.129964640698233],[-104.36160212477466,22.126778046567836],[-104.36220874163718,22.125705615422703],[-104.36373368503752,22.122400234980773],[-104.36386291133653,22.12144316615644],[-104.3636398236078,22.12094998497679],[-104.36366838977074,22.120086157851233],[-104.36384757164035,22.119199136654117],[-104.36409958966226,22.118849365821006],[-104.36425873162392,22.11721547233651],[-104.36463889271374,22.116398901098307],[-104.36472661582934,22.113537753885282],[-104.36465702473993,22.112743527002294],[-104.36712934923776,22.109855710312672],[-104.3681863420419,22.10929926535573],[-104.37097955445694,22.106548985253767],[-104.37164938502048,22.105314853968935],[-104.37255232283087,22.103492457832203],[-104.37327896833136,22.10189338833635],[-104.37107021153912,22.099413545248865],[-104.37092973341811,22.09863403447065],[-104.37021157222694,22.097690927566077],[-104.36937798193867,22.096720543285755],[-104.3691799647666,22.096101702451165],[-104.36929874377944,22.095108482036835],[-104.3694449869468,22.094840225068538],[-104.367897709045,22.092185834057886],[-104.36755421577811,22.091217886447282],[-104.36738704012765,22.090304421476617],[-104.36747598598203,22.089551339980062],[-104.36713855019701,22.0865379894787],[-104.36827320777479,22.085139471441664],[-104.36774140222838,22.08187852210267],[-104.36711582610047,22.079941688238534],[-104.3661422575156,22.078594868638845],[-104.36525248585633,22.07664302738152],[-104.36450770907618,22.07567307617984],[-104.36404380810058,22.075052872372225],[-104.36367537854926,22.07448839595395],[-104.36333700695621,22.073225232235586],[-104.36336323354396,22.072519713097222],[-104.36330438664879,22.071888371213333],[-104.3632990129338,22.07089378125397],[-104.36336955927464,22.0701574018741],[-104.36352327437658,22.06902632133091],[-104.36384648908432,22.06798219262248],[-104.36374914367201,22.064301708430207],[-104.36345534202746,22.063194116125374],[-104.36348752565141,22.06001594583546],[-104.36336611236737,22.058923832844812],[-104.36321274914809,22.057520583000155],[-104.36277822314605,22.055694983734952],[-104.36242475057077,22.054838129406107],[-104.36226563752666,22.05450319925211],[-104.36171524805599,22.05330490732655],[-104.36381746348604,22.04958640587273],[-104.3643096381216,22.048781746669647],[-104.36494780864683,22.04824810548081],[-104.36543977875255,22.047872860633902],[-104.36587536633374,22.047283320134284],[-104.36744012726507,22.04573223727516],[-104.36770553216161,22.0444971039405],[-104.36544352385181,22.0407643188488],[-104.36539047432257,22.03958220458935],[-104.36574056144843,22.038454717104457],[-104.36542727589051,22.037809514111757],[-104.36531403867275,22.037298319983847],[-104.36502853394074,22.036571890650805],[-104.3656382630628,22.03570005711532],[-104.36610488066583,22.035380579705418],[-104.36662635093057,22.03441931508911],[-104.36647607485196,22.033796118930752],[-104.36629705547097,22.03314431379806],[-104.36597264011567,22.03093415337412],[-104.36591620885014,22.03005622428384],[-104.36905399549204,22.027972837343896],[-104.36871506284518,22.027571196378403],[-104.36871432040476,22.027090793930824],[-104.36891107454682,22.02698115062003],[-104.36920649278392,22.02666237619502],[-104.36902577191148,22.026075389556695],[-104.36796562885388,22.025747712568943],[-104.36804397048581,22.02542537733433],[-104.368533075828,22.02504187766874],[-104.36872918715699,22.024725562295714],[-104.36876383963136,22.024309905706048],[-104.36742956217842,22.023546604697856],[-104.36795835201127,22.022228723804744],[-104.36797689764626,22.021386453935804],[-104.3675992125319,22.020926866840114],[-104.36713227604378,22.020856897236285],[-104.36680932213375,22.02073649308852],[-104.3663709784953,22.01994275279543],[-104.3660794144946,22.019841153209995],[-104.36474451759818,22.02020366251344],[-104.36369482432252,22.019961666354163],[-104.36283039891919,22.019636192168775],[-104.36204163611097,22.019519394024996],[-104.36131277930173,22.0194316309898],[-104.36146884987323,22.01795943497683],[-104.3612299521406,22.017222302351684],[-104.36079787095332,22.016304815187937],[-104.36003754120156,22.014744162959857],[-104.36047292744337,22.014308667054024],[-104.3605153533353,22.013815669199403],[-104.36016357966014,22.011264057052756],[-104.36002946371258,22.01042412479643],[-104.36051025838003,22.009986516137587],[-104.36191088855497,22.010071133597307],[-104.36220319180876,22.007517264361013],[-104.36242834545595,22.006793069196192],[-104.36383617498188,22.004282775801187],[-104.36389385167826,22.003570889911032],[-104.36396153102743,22.003424844842755],[-104.3648374985035,22.002968333765978],[-104.36511278539206,22.002416145428583],[-104.36526192272822,22.001782880539167],[-104.36569136217179,22.001386069118837],[-104.36634474289491,21.998426725614024],[-104.3675224437664,21.997589728119976],[-104.36743263541302,21.997190754130656],[-104.36700732812,21.996811470167813],[-104.36696136806592,21.9965797710974],[-104.36710064622355,21.99603383233847],[-104.36764412607437,21.9952801306257],[-104.3675364389095,21.994146084084264],[-104.36824074976528,21.99334995944423],[-104.36870791602882,21.99279533814496],[-104.36791756285533,21.992140250900093],[-104.36752641164497,21.991380059831783],[-104.36786675536405,21.990919993302555],[-104.36807830575947,21.99022314869279],[-104.36782388848803,21.9900382367299],[-104.36791782482362,21.989680918525323],[-104.36814439156689,21.989282520787413],[-104.36815995577342,21.988761810729955],[-104.36751248927521,21.987558344770548],[-104.36704908827215,21.98734572397632],[-104.36734610793764,21.986363487627557],[-104.36795768162443,21.986376866310934],[-104.36807017406448,21.985364569566002],[-104.36935885053873,21.984633853019545],[-104.37008599022909,21.98380008417979],[-104.36986286649432,21.98304009929268],[-104.36987398417608,21.981581946991582],[-104.37041680282488,21.981289427664933],[-104.37060116081074,21.981050078431508],[-104.37099292799655,21.980233043918247],[-104.3710751221044,21.97999015391059],[-104.37060581188439,21.97893794945867],[-104.3699113355039,21.978031744558734],[-104.37046125587563,21.9766578876592],[-104.37069262862326,21.976173169398464],[-104.36997997698501,21.975119269616073],[-104.36905742086464,21.974697522440806],[-104.36855599635862,21.974213409446804],[-104.3681721854283,21.974084962700942],[-104.36372268727928,21.974000917464593],[-104.36173556332267,21.973084587602443],[-104.35554636000393,21.972476875703535],[-104.35167053106545,21.97342650552008],[-104.34815715927203,21.973910319818913],[-104.34604389370514,21.97403082039591],[-104.3435770359136,21.97465701169881],[-104.34087079637231,21.977757578625244],[-104.33950677610153,21.978231016719292],[-104.33884225570421,21.978260805549894],[-104.33727299915148,21.97928485374473],[-104.33512122958228,21.979773771431155],[-104.33236294134952,21.97836171041797],[-104.32823623272583,21.97569078534434],[-104.32545685690974,21.976666094144093],[-104.32565987030677,21.982016486336875],[-104.32490533654953,21.984134061072893],[-104.32319206501342,21.98395841847946],[-104.32041862237122,21.983885003442538],[-104.31940292072522,21.984531269352146],[-104.3172537511868,21.98869157465151],[-104.31505633828067,21.990803605550298],[-104.31299913618426,21.99078281758142],[-104.30813848475509,21.988618962719727],[-104.30551055288254,21.991570704526623],[-104.30420672249363,21.994597889643103],[-104.30281511548162,21.997449353317165],[-104.30179476543316,21.99868475556326],[-104.2985317401438,22.00095968851781],[-104.29484454997277,22.002680506681486],[-104.29310779762824,22.00273637243282],[-104.29086322309303,22.0007099557518],[-104.29028104317729,21.99951825314548],[-104.28994818106617,21.99883620382178],[-104.28850573895187,21.998452784491406],[-104.28766936155927,21.99878478545213],[-104.28561520762423,22.000010659764428],[-104.28347547336415,21.99991654254694],[-104.28138222642201,21.999658810362746],[-104.2797010908468,21.997336205161616],[-104.27814257987797,21.992993555297517],[-104.27792448814114,21.991333646413068],[-104.27716847210115,21.989523743583504],[-104.27657973665345,21.9885619948447],[-104.27618120679927,21.98727968980745],[-104.2762063236907,21.98675368697826],[-104.27757163644145,21.98421788615059],[-104.27775596768379,21.983610544362193],[-104.27580601253021,21.980961336871474],[-104.2747722939522,21.9801586847816],[-104.2716687932276,21.978926353916506],[-104.26901356336634,21.97777994498432],[-104.26328807783545,21.977039007450742],[-104.2611526967114,21.976379688569637],[-104.2601538909393,21.975133384331173],[-104.25850351995621,21.97223993097731],[-104.25794029878642,21.972027603394565],[-104.25456336780968,21.97106675764087],[-104.24914639291472,21.968456992038284],[-104.24670355555043,21.967088466736357],[-104.24525702536005,21.966911611135743],[-104.24276825669716,21.969381875759723],[-104.24129728775489,21.969998314940142],[-104.24068709280704,21.97009920812127],[-104.2362222557586,21.96933197561441],[-104.2348482101068,21.96905237564812],[-104.23390165283786,21.96919413391919],[-104.22839112591765,21.97204668014149],[-104.22691825129317,21.972973713203544],[-104.22488523127436,21.975269254644388],[-104.22299802203878,21.976617425494226],[-104.22110738792776,21.977940212939643],[-104.21882876230472,21.979000592644923],[-104.21856910558824,21.979517844585928],[-104.21430694248721,21.981649587502375],[-104.21078125021239,21.983166446443192],[-104.2078527882955,21.983236419418006],[-104.20591143030254,21.983395255670246],[-104.20444975701906,21.983565276505885],[-104.20265652174368,21.98277240747251],[-104.19822900439425,21.9855064683494],[-104.19663532787575,21.985580077620114],[-104.19331945198644,21.985420120703736],[-104.19191600310825,21.984255383680818],[-104.19071053938438,21.98327759656894],[-104.18977722824712,21.98305589563597],[-104.18902132385489,21.98295305303469],[-104.18814093126281,21.981651418792126],[-104.1861020378177,21.980796765331604],[-104.18509136995988,21.98012028452689],[-104.18406042517512,21.979274324174128],[-104.18097868731911,21.97777125913956],[-104.17919670567062,21.976465566631134],[-104.17365548197182,21.970882892497684],[-104.17419987479013,21.970309740005064],[-104.17439026018121,21.96836603910708],[-104.1740563382782,21.96740656417927],[-104.17433944009315,21.965538932173786],[-104.17432161234791,21.96516062808479],[-104.1739255616863,21.9645594250822],[-104.17383281770867,21.963708692159173],[-104.1736992216023,21.963392848285253],[-104.17399547797572,21.963058217190678],[-104.17501980449839,21.961832775131768],[-104.17491108007135,21.961348471027918],[-104.17488695257623,21.9612036666569],[-104.17491435711543,21.960195612931443],[-104.17551102496395,21.9582871310119],[-104.17569432877656,21.957889641137285],[-104.17658471505956,21.956091382722434],[-104.17654504626137,21.9555672325954],[-104.17654622581557,21.955041596423314],[-104.17670654290765,21.95472704144248],[-104.17668545150815,21.954327905697767],[-104.1765981871875,21.953928799134474],[-104.17662167809226,21.953697884020073],[-104.17680673561927,21.953109729456116],[-104.17669822203936,21.95255886217717],[-104.17682339914842,21.95192554631683],[-104.17720539182938,21.94848659755712],[-104.17769531930111,21.947339178172513],[-104.17855298827544,21.946422489772658],[-104.17921011240105,21.94606317393601],[-104.17891362920835,21.942956056610285],[-104.17909547320221,21.942168484585977],[-104.17896596270441,21.94155184712082],[-104.17858949828394,21.94055951598301],[-104.17868168130934,21.94024501811242],[-104.17868365562498,21.939888224384333],[-104.17868430242095,21.939509662300964],[-104.17907855021002,21.93874333696283],[-104.17958027500845,21.937938681870605],[-104.18240251618892,21.935996517500655],[-104.1829740939258,21.935255670441563],[-104.18407420615608,21.93350523785091],[-104.18481843059533,21.933319455871242],[-104.18506874322162,21.93285836688767],[-104.18522993645325,21.93248115428929],[-104.18672788542665,21.93078677743074],[-104.186773866159,21.930325869414105],[-104.18850066591926,21.927813925150303],[-104.18866608556766,21.927041757284655],[-104.18916580492652,21.926245764562452],[-104.18919305707169,21.925532755599647],[-104.18892237022419,21.925341434508937],[-104.18847575450206,21.92462518814216],[-104.18836740156337,21.92424636413392],[-104.18835063885598,21.922923943517162],[-104.18772459373417,21.922122194228905],[-104.18790928766794,21.921219939634113],[-104.18820719146032,21.920696439528797],[-104.1885697508049,21.919962317546776],[-104.18880205962535,21.918997654376938],[-104.18936854929422,21.918538411608893],[-104.19093794814535,21.916348233693952],[-104.19238675476777,21.915410700988048],[-104.19471565125701,21.913741616384016],[-104.19586770054946,21.91351636759356],[-104.19779909677345,21.911638676198493],[-104.19870479543619,21.911223568853018],[-104.19951860462368,21.910722623172887],[-104.19967709903392,21.910303677681043],[-104.19979199619843,21.910073269263762],[-104.20024410025064,21.909465838313736],[-104.20002283315728,21.908729155039737],[-104.19962104172879,21.904407463213488],[-104.2003808378733,21.90151162757445],[-104.20083128161514,21.901219223280975],[-104.20108205083932,21.900674588830157],[-104.2010631262184,21.90023367404973],[-104.2008630664667,21.899602902283732],[-104.20149964976093,21.89868145547439],[-104.20154788235408,21.897947270866723],[-104.20092316254488,21.896750676290026],[-104.20032317771529,21.89504627221862],[-104.20064924121078,21.892988187509786],[-104.20074313994724,21.89219162124118],[-104.20077220835856,21.891120016530635],[-104.19990084157138,21.889887011216956],[-104.19917879060375,21.889630457852604],[-104.19868799399984,21.88876691486206],[-104.19842721185955,21.88781293257051],[-104.19806910224156,21.887328759577258],[-104.19807251732959,21.886529860021312],[-104.19807677470868,21.88590070436004],[-104.19794340015488,21.88547867692114],[-104.19794695763522,21.88480686567857],[-104.19752124344973,21.88446981235751],[-104.19738750977757,21.884321940577934],[-104.19729826966329,21.883921976307533],[-104.19702999300512,21.88345830394252],[-104.19687508491381,21.883205431674128],[-104.19685734366863,21.88212451541648],[-104.1967728233322,21.881241543238957],[-104.19670546261256,21.8809892349081],[-104.1964181254429,21.880252592083707],[-104.19571614363326,21.879220937107334],[-104.19327079797421,21.878829667686546],[-104.19235030534003,21.878447919734356],[-104.19089239604949,21.87720054520429],[-104.19035700788305,21.876399346012875],[-104.18918354724951,21.874404429751507],[-104.18903049185013,21.87366858570556],[-104.18908219848743,21.8727863953128],[-104.18840841063735,21.87232213335716],[-104.18769300197863,21.871393678602658],[-104.18711298703363,21.870298985819886],[-104.18689373594913,21.869498723347192],[-104.18677526371789,21.868378396569938],[-104.18444133015959,21.86719336212957],[-104.18045795179108,21.867254486584727],[-104.17880301920064,21.86763018242152],[-104.176663402273,21.871033809169433],[-104.17555633755666,21.871911877885623],[-104.17497598049408,21.871927356909566],[-104.17345876247373,21.87180449101237],[-104.1725153187628,21.871500112476326],[-104.17261608902987,21.86991915584065],[-104.17491764861927,21.867618966562873],[-104.17705547963442,21.8658403114909],[-104.17776565740837,21.865138521382562],[-104.17958504912997,21.860088851282],[-104.18009880545077,21.85996929258306],[-104.18055898919937,21.859374688424793],[-104.18072807448692,21.859201209336106],[-104.18141099841694,21.85891350803314],[-104.18475627385982,21.857192799360917],[-104.18627465699052,21.85633363671093],[-104.18676198496041,21.856191335254437],[-104.18696786166862,21.85602766788304],[-104.18731491987029,21.85562509859244],[-104.18924666191856,21.855011833974118],[-104.19015855774921,21.854768720924596],[-104.19187245394573,21.854130940665243],[-104.19298131404014,21.853499269525685],[-104.19371543036078,21.852765838717687],[-104.19412750226076,21.85251896094752],[-104.19515733887943,21.85146895754491],[-104.19531325684471,21.851186683524077],[-104.19574392759614,21.850633453077876],[-104.19654589586594,21.850673532140092],[-104.19553226486983,21.850379413687847],[-104.19442169406074,21.850432500921272],[-104.19312293659402,21.850691607766578],[-104.19223212962629,21.851042013951712],[-104.19071263290652,21.85106369077863],[-104.19049438670862,21.85032424588752],[-104.18935767792595,21.849373674332583],[-104.18917297771094,21.848484875701047],[-104.1888011478888,21.847271946391174],[-104.18855184217193,21.846178004637807],[-104.18819036971303,21.844884136083863],[-104.18808400470385,21.844444475409603],[-104.18808602791836,21.84397331447974],[-104.18836211261845,21.84349371067367],[-104.1882270066759,21.84236637128862],[-104.18792800980054,21.841443799072863],[-104.18776623234345,21.84094501541614],[-104.18729757557139,21.838862009095124],[-104.18719144024169,21.838019297229835],[-104.1871940471184,21.83788127957405],[-104.18615711623562,21.83779346358773],[-104.18560369093962,21.837722363546504],[-104.18517987742382,21.837669388557174],[-104.18265966449542,21.83707160015865],[-104.18186660899039,21.83691311507846],[-104.18126591922669,21.835551828366306],[-104.1809573127291,21.834930760381724],[-104.18093881451625,21.834690465321785],[-104.18031464024949,21.83415466775722],[-104.17937849289575,21.833685930425986],[-104.1784590219051,21.83316611625986],[-104.17734816381773,21.832894106208073],[-104.17722131707944,21.8325672937753],[-104.1766131529526,21.83223731736109],[-104.17669116733498,21.831773252396317],[-104.17516005294965,21.828792063646063],[-104.17481399236493,21.828017196482904],[-104.17405825458292,21.827278992173888],[-104.17374998050997,21.8266751552448],[-104.1735287043341,21.82651942854642],[-104.17266762464016,21.825878931423176],[-104.17220976351115,21.82522274220821],[-104.17204818377735,21.824431644645983],[-104.17201466892249,21.823863860679808],[-104.17177726103694,21.823432400805757],[-104.17126387612785,21.82294856129704],[-104.1710086990571,21.822380279958963],[-104.17077129704279,21.82194881878462],[-104.17042072323665,21.821492631673266],[-104.169008391859,21.82024716803346],[-104.16796167024057,21.8197254617084],[-104.16551664990061,21.817018527930998],[-104.16524468560567,21.816552144335446],[-104.16496858666562,21.81631094232347],[-104.16461983714123,21.81596546407195],[-104.16436774604222,21.8152246566695],[-104.16411386450085,21.814433040005724],[-104.16376788866796,21.813897800131258],[-104.16200061707133,21.812515668464016],[-104.16227451617601,21.811606874142456],[-104.1617484422735,21.809841342277537],[-104.16069694219112,21.80986451492214],[-104.15995592723726,21.810806997179725],[-104.15933812466409,21.810666404906783],[-104.15617901108214,21.81078745123159],[-104.15537730065284,21.809777482296795],[-104.15429790234646,21.80781479368835],[-104.15379530201255,21.807617506450583],[-104.15328099215998,21.80818024873929],[-104.15262204023543,21.80800152931232],[-104.15113565685408,21.807654188912124],[-104.14955937682265,21.807357260095273],[-104.14898537908061,21.807448806588184],[-104.14575988943653,21.80592259082323],[-104.14515630711827,21.805259287552246],[-104.14426676099521,21.802945146709533],[-104.14380388061272,21.80226535049394],[-104.14204283500169,21.801432101942225],[-104.14147222187091,21.8014300750487],[-104.14079600075962,21.801571127179045],[-104.14022911578041,21.800890047504083],[-104.13836587121921,21.799863016269626],[-104.13780470485506,21.79850376114996],[-104.13599014871653,21.797357110103633],[-104.13557130566744,21.79669211060036],[-104.13393094823539,21.793274100587723],[-104.1335865712847,21.792707599203823],[-104.13207552986188,21.791531238198218],[-104.13164469706362,21.791325931251322],[-104.13092426821106,21.790835073662265],[-104.13038159794064,21.790451316889573],[-104.12892148672978,21.790490142683723],[-104.12830618882919,21.790232969278122],[-104.1276039945609,21.790458477467837],[-104.12639170485983,21.790625047753565],[-104.12515915396222,21.79012742059882],[-104.12310369573692,21.790262968101842],[-104.1221019354731,21.79052826064992],[-104.1209975108149,21.79032566154177],[-104.11983560226923,21.789685839547474],[-104.11932640144846,21.789456913421418],[-104.11806866705581,21.789847418805323],[-104.11632973196345,21.789547628363266],[-104.11456389450603,21.78882856786396],[-104.10945509508315,21.78732753678031],[-104.10595528573282,21.79116539710816],[-104.10411744860528,21.79049253836189],[-104.10315289054813,21.790161541588418],[-104.10167693353952,21.79027986431123],[-104.10061264631895,21.790866403516873],[-104.09944341279515,21.792727832955904],[-104.09687883911704,21.792320804873384],[-104.09583842788999,21.79185133240128],[-104.0950359752207,21.791747664206525],[-104.09325119794164,21.791244700722018],[-104.09319645657217,21.790875707797795],[-104.09315615147284,21.789250842751528],[-104.09334833331303,21.78803373226981],[-104.09380126459968,21.786742081517048],[-104.09223911199098,21.784631087964613],[-104.09093664128193,21.785391064079022],[-104.08448819855028,21.78580858996986],[-104.08369039498098,21.785109114561806],[-104.08139475669606,21.783986094841737],[-104.08080933063252,21.78292332034698],[-104.07985618379837,21.782405157632695],[-104.07947700732257,21.78280432084307],[-104.08008883736909,21.784408564376804],[-104.07920900034549,21.786269542004106],[-104.07773125569531,21.786679872349623],[-104.07685711292947,21.787657531299317],[-104.07623785585719,21.789717394516742],[-104.07243742800654,21.789581740502513],[-104.07069638154309,21.790063745693317],[-104.06889015496387,21.789710958219416],[-104.06685320043732,21.789992870401875],[-104.06624788180761,21.789816746164718],[-104.06582297519253,21.790624903601497],[-104.06638658144834,21.793011026740942],[-104.06460349116804,21.794112497580443],[-104.06342130598523,21.793590098490256],[-104.05992409261182,21.79307879345265],[-104.05876546690968,21.792949093714583],[-104.05831941154423,21.792700906760956],[-104.05592694289118,21.79241615722907],[-104.05513204320289,21.79364081313946],[-104.05446539438879,21.794072727149057],[-104.05406115379435,21.79388476862141],[-104.0537613519478,21.793361951962083],[-104.05280875641097,21.79411812712584],[-104.05225379765443,21.79476095546181],[-104.05085761507951,21.79404448059927],[-104.04934417434191,21.793754464970164],[-104.04839919200981,21.79304602778052],[-104.04745599450945,21.792709979533697],[-104.04638248998617,21.792737540669464],[-104.04264779278827,21.791184568556446],[-104.04067859677696,21.7906080144773],[-104.03866163012549,21.788999067066584],[-104.03782622239112,21.789163968336652],[-104.03509512841526,21.79050147630312],[-104.03373602439058,21.790735523952264],[-104.03014037777251,21.78884690649005],[-104.02943232462576,21.788622070798453],[-104.02796429425592,21.787631158556962],[-104.02553993581199,21.787861951962498],[-104.02461649316456,21.78817549814761],[-104.0232007721724,21.787234684399778],[-104.02236002240403,21.786909898818806],[-104.02023080619159,21.786445069500303],[-104.01901623201144,21.78542934454032],[-104.01818046030343,21.785103755848297],[-104.01627443222407,21.785071892375413],[-104.01595817720676,21.785046089740888],[-104.0152512260259,21.78469772365537],[-104.01420122733327,21.784027979388952],[-104.0136776227352,21.783656323294224],[-104.01349447570101,21.78343360783822],[-104.0120439529054,21.782968766395697],[-104.01138570629894,21.782471141255314],[-104.01125687409586,21.78211767764759],[-104.0102008895476,21.781888234605788],[-104.0089054100277,21.781825309354133],[-104.00489374119377,21.78261935892033],[-104.00363699464214,21.782612162617],[-104.00307065957264,21.78291389579732],[-104.00197881137689,21.782861631695482],[-103.99826716630076,21.780644289647],[-103.99771357188524,21.77982182983675],[-103.99654996258397,21.779215171471776],[-103.9944161399348,21.77963141084308],[-103.99355790041085,21.77962530963765],[-103.99076520288781,21.779849443647322],[-103.98984911163126,21.77954724496277],[-103.98951002315567,21.779749523585963],[-103.98865614174235,21.77918599410316],[-103.98851941924102,21.778683068743135],[-103.98804488587899,21.778140946864198],[-103.98709371891664,21.777241902512344],[-103.98610748943662,21.77574693064423],[-103.98551032671423,21.77565026574524],[-103.98481193035298,21.77442751275072],[-103.9846823999327,21.773031291371694],[-103.98414831681453,21.772599763551455],[-103.98360580342478,21.773042481155358],[-103.98092611822801,21.774328829871422],[-103.98027649927985,21.77311541316709],[-103.97986016445964,21.77275950835923],[-103.97956235862864,21.772664406454226],[-103.97884552471879,21.772622814598037],[-103.9784517488697,21.77182001545725],[-103.97797405731689,21.771520267590745],[-103.97775748909453,21.77133243564805],[-103.97650184984604,21.771195200038846],[-103.97620117546995,21.77156397508594],[-103.97609767583083,21.77199193708674],[-103.97494657940143,21.77235440622519],[-103.97469465780023,21.77121845424699],[-103.97435871949784,21.77084334655666],[-103.97341902906231,21.771043326238043],[-103.97222258092165,21.771295615586894],[-103.97178470818466,21.771125141536572],[-103.97015216501273,21.770799349310835],[-103.96905372749347,21.771108450394763],[-103.96768633220006,21.77130117147476],[-103.96758572796335,21.77206040890195],[-103.96744190796335,21.772325491449863],[-103.96647041028018,21.77234610699736],[-103.96492861264858,21.772443003039882],[-103.96210237162131,21.772559026733063],[-103.96127336091564,21.77282015018875],[-103.960643188289,21.772922601905748],[-103.95939136556666,21.77224871393912],[-103.95808106388057,21.772027607247423],[-103.95759550088968,21.772183573124096],[-103.95724894338059,21.772608266551515],[-103.95692978821813,21.773511887177165],[-103.95498540693404,21.77365919996879],[-103.9543284070719,21.773921726347567],[-103.95303146910146,21.775617515377633],[-103.95242732397696,21.77617346345704],[-103.95197325129607,21.775690882145796],[-103.95155712561342,21.774143967089458],[-103.95081654394698,21.77400632770889],[-103.9505877474827,21.774110899437403],[-103.95032355721924,21.7749883917553],[-103.94631922316427,21.776295492194038],[-103.94548585207025,21.776326931694484],[-103.94498818788117,21.776655478140526],[-103.94407700921221,21.77681679213714],[-103.94360190793668,21.776758358747998],[-103.94273418214277,21.77636449654807],[-103.94178744978802,21.7757492369837],[-103.9390355925749,21.775638779475003],[-103.93782466051886,21.776240455563823],[-103.93796430224319,21.775816602635814],[-103.93561098455189,21.77537608876156],[-103.935036436318,21.775631138678193],[-103.93449616876023,21.77590481667221],[-103.93196251478912,21.773740942696406],[-103.93086616760212,21.773865476080914],[-103.92951456290064,21.774485193916348],[-103.9274638842972,21.77433939226313],[-103.9239385777243,21.772136095070778],[-103.9231312041731,21.771404604120107],[-103.92108319180124,21.76866261222773],[-103.91864436515186,21.76617419588416],[-103.91877250674753,21.760873354077944],[-103.91937882557733,21.75992175244579],[-103.91945653143063,21.75890232633037],[-103.91823180519083,21.757857425316104],[-103.91738906018372,21.757226200319963],[-103.91605419087506,21.756426833224225],[-103.91788129481927,21.752717801569247],[-103.92011855512766,21.750855351303983],[-103.92085738592988,21.751220992665253],[-103.92145642711694,21.75132423652741],[-103.92244821125985,21.75103496774375],[-103.92329610836481,21.75087548251321],[-103.92466753677849,21.751312149596686],[-103.92607690665415,21.75168388109097],[-103.92816033407894,21.751631403114175],[-103.92889421279193,21.75165123037948],[-103.93120209722537,21.75166669211876],[-103.93305262695219,21.749614666184186],[-103.93356567837787,21.748674170348977],[-103.93360762322379,21.748214340465665],[-103.93326343494215,21.748063457027456],[-103.93297153517477,21.747900114195772],[-103.93198827573013,21.745880129897557],[-103.93224490730404,21.745484769318978],[-103.93226171935788,21.744966255728116],[-103.9321224106647,21.74440159880868],[-103.93185328388358,21.74393025431192],[-103.93182786858847,21.74338050275759],[-103.9315993480322,21.743164620773655],[-103.93083063052148,21.742274753204185],[-103.9306040673593,21.741857334122983],[-103.93012062412657,21.741210771886358],[-103.9293194406361,21.74069618903593],[-103.9286329178966,21.740114806690258],[-103.9279919632857,21.73743332452824],[-103.92697126309707,21.7365148356472],[-103.92536296081249,21.736148335256473],[-103.92437061536293,21.736390428882316],[-103.92373682483168,21.736433773883505],[-103.92316378108751,21.73590359332718],[-103.92245936665893,21.73474874013027],[-103.92153481484314,21.734636869258964],[-103.92083258937595,21.733565490820013],[-103.92070482761733,21.732988882369796],[-103.92017854269875,21.73253344603387],[-103.9184199915004,21.731507038475456],[-103.91823094303828,21.730313049267465],[-103.91803695739873,21.729859806976663],[-103.91760044129848,21.729362394284863],[-103.91562190382382,21.727757776306817],[-103.91301357921577,21.72619820110077],[-103.91241965548903,21.725968692789365],[-103.91123365268703,21.725570462336123],[-103.90947089569278,21.722669611309527],[-103.90877851436949,21.721664324670883],[-103.90837128736115,21.721172877858578],[-103.90787657363796,21.719858328309897],[-103.90781459997407,21.718916909014126],[-103.90745431641056,21.718378584415575],[-103.90422878590209,21.718482177195426],[-103.90371557933884,21.717571770570828],[-103.9034761772491,21.716993814496732],[-103.90304386569528,21.716443665846555],[-103.90136626855417,21.71733312321402],[-103.89969880760964,21.723735789145508],[-103.89895988754813,21.727324897387575],[-103.89853924064863,21.727941890668774],[-103.89637124764073,21.728034046482435],[-103.89526347077776,21.726089822369147],[-103.89595056316762,21.717995565126216],[-103.89653208669313,21.713658680371054],[-103.89625942822556,21.71189477002315],[-103.89295632642506,21.707733840176957],[-103.89165412775696,21.706106976349133],[-103.89092257760336,21.704031027703593],[-103.89063607003368,21.70313776045907],[-103.89042444996369,21.70245778518654],[-103.89060204478022,21.70038152867727],[-103.89062260595745,21.699980077173734],[-103.88985537634693,21.69895204047515],[-103.88869182289255,21.698539752480087],[-103.8877249711208,21.69781823798678],[-103.89069758378349,21.69531182577407],[-103.89220136469964,21.69485215458161],[-103.89303951723406,21.69450688084345],[-103.89460483397846,21.6932485709479],[-103.89572161044549,21.691728927917836],[-103.89807030019733,21.687841326129956],[-103.90259107369877,21.686262244605587],[-103.90330212797056,21.685827958653988],[-103.90360508894855,21.684898818066245],[-103.90314841687524,21.68242367629506],[-103.90616152366056,21.682366588132425],[-103.90696220134942,21.680520441819112],[-103.90880195270762,21.67502697335175],[-103.90883962903695,21.67378570679199],[-103.91076121595029,21.671085400581205],[-103.91289903393738,21.668838223240982],[-103.91426670470469,21.669412970755275],[-103.91450137066852,21.67006992459966],[-103.91747865807383,21.67027600152761],[-103.92001413461844,21.66933026022673],[-103.9213375673923,21.668374245428197],[-103.9230392033918,21.66088637740461],[-103.92824543197418,21.64919282720041],[-103.93007955142434,21.64238674627876],[-103.93012242221312,21.64165553402802],[-103.92989404212426,21.641308827412274],[-103.92938300316263,21.641073944493996],[-103.92794264022348,21.640829738770094],[-103.92708131733144,21.640344068044556],[-103.92322603255673,21.63824037685248],[-103.92179658148535,21.636722522774505],[-103.92038795859901,21.63475873285256],[-103.91686616327752,21.63321528132576],[-103.91259733872005,21.63033772800395],[-103.9112973077822,21.62903147058222],[-103.91025875318104,21.62652111236264],[-103.91028416038199,21.624352397206565],[-103.90952182738653,21.6216035160071],[-103.90813882407355,21.619779091592136],[-103.90790493576202,21.619168425250507],[-103.90763834855443,21.617828409778554],[-103.90982053175816,21.61483684799731],[-103.911345648988,21.614642035650093],[-103.91319093984418,21.61589993158276],[-103.91379337856824,21.61585825827052],[-103.91437728511619,21.615959988470934],[-103.91475110887745,21.61607537292207],[-103.91486208799438,21.616296522819766],[-103.91515052659997,21.617428906788064],[-103.91752861602748,21.618103534219642],[-103.91783969350854,21.61800738213674],[-103.91877582072868,21.61711990218072],[-103.91924327283311,21.614810892364687],[-103.91908028316425,21.613799080580634],[-103.91778414460396,21.61289402402201],[-103.91608664581065,21.612157349990923],[-103.91479482950592,21.61141650069044],[-103.91285373411534,21.607495774893096],[-103.91538423154276,21.604023171115045],[-103.9165409136628,21.6025172198502],[-103.9165953716024,21.601909951046082],[-103.91652287891668,21.599574816181587],[-103.91852168235704,21.59727863520925],[-103.91888054658318,21.596787645483232],[-103.91964942770124,21.595712545879053],[-103.92012482015889,21.595029386104102],[-103.92059938058276,21.59449977851841],[-103.92280045092144,21.591321727510604],[-103.92300146706486,21.591036660091504],[-103.92302947520614,21.589675992694424],[-103.92261800775447,21.58906758407977],[-103.92149563457662,21.58794800424363],[-103.91947210289186,21.585023505433412],[-103.91971325407025,21.58424354386551],[-103.91991430679695,21.584052236816035],[-103.91974942192633,21.583041372015998],[-103.91668956469749,21.5797740212696],[-103.91540261354402,21.579692078378173],[-103.91118339959274,21.578676435332056],[-103.90971711998452,21.57826629928286],[-103.90456795006412,21.577494411644466],[-103.90381306479168,21.57743117569356],[-103.90378168652728,21.576109136043385],[-103.90373851233386,21.57559685660368],[-103.90251863100991,21.57442480842394],[-103.90133839279184,21.574542012078382],[-103.90050487313994,21.57495442959663],[-103.89952426386395,21.57525884083509],[-103.89909196113973,21.575224260004234],[-103.89892614080014,21.57530074007525],[-103.89844576493664,21.57529761247946],[-103.89771657849076,21.575060669843822],[-103.89647043900163,21.5752530778567],[-103.89593802365579,21.575344072712994],[-103.89549133940733,21.575184405649395],[-103.89456641131704,21.57476017179482],[-103.89383616547724,21.574584943272612],[-103.8933756470829,21.574132274442036],[-103.89304216135781,21.57422352541323],[-103.89213909008504,21.573146417072792],[-103.8917604509441,21.572788035081317],[-103.89164694079483,21.57244544167628],[-103.89129734005036,21.57228819549738],[-103.89083379874194,21.572239454754538],[-103.89026041599601,21.571350689047108],[-103.89078528931941,21.57086317047225],[-103.89130321912057,21.56971702186422],[-103.89055165111694,21.56963892968139],[-103.89046671957976,21.56946480353747],[-103.8905870408106,21.56887153880308],[-103.89099072608997,21.56843453018604],[-103.89121186834296,21.568144382071637],[-103.89119336518638,21.567803948179687],[-103.89130431310116,21.567621052848835],[-103.89156291167018,21.56738097019661],[-103.89179742716425,21.567290943801368],[-103.89215901822416,21.566968780857053],[-103.89203444322663,21.566722674182245],[-103.89244530022228,21.56630724236868],[-103.89257985127773,21.566215725788254],[-103.89266109438285,21.565784504856197],[-103.89182128538113,21.56481450350566],[-103.89138372921775,21.564651206037524],[-103.89126151084298,21.56437860887064],[-103.89114013301997,21.564027944931297],[-103.89121357635901,21.563504631498574],[-103.89183756167176,21.562479710222703],[-103.89123342303105,21.562592736159388],[-103.89098404193459,21.562591274183433],[-103.89077994799311,21.562085517975504],[-103.88992660631266,21.561087662201317],[-103.88941670861607,21.56050035693005],[-103.88889567959853,21.55863978287664],[-103.88814042198317,21.558507482878326],[-103.88800446918322,21.55825775756432],[-103.88809931537605,21.55775830110622],[-103.88744873988747,21.55739857915745],[-103.88714357355462,21.557089242241034],[-103.88627690332282,21.556494625528728],[-103.88599692228416,21.556270192022453],[-103.88662054582704,21.555816748005213],[-103.88688454544047,21.55589355890396],[-103.88726691347779,21.555624732378874],[-103.88639888533163,21.555322559446495],[-103.88599374349053,21.554893227174887],[-103.88551474431029,21.554742763261572],[-103.88553361523014,21.55448611280758],[-103.88441165477428,21.554190073475866],[-103.88394367089785,21.553912690202196],[-103.88156158311898,21.55329062657404],[-103.88102787240348,21.553060450083194],[-103.88174511307398,21.552452881147417],[-103.88070555811032,21.552072146044225],[-103.87988179093605,21.552409217735658],[-103.87917571194367,21.551377859092213],[-103.87752758023169,21.551305790808954],[-103.87516256632841,21.550212870484074],[-103.87443059285147,21.54942135583559],[-103.87256121654758,21.549088637970385],[-103.87075135777718,21.54873675093711],[-103.8693069519498,21.550115962017003],[-103.86749784550938,21.55038115151956],[-103.86430844708457,21.550231395460116],[-103.86315324555846,21.55001458328121],[-103.86046101946408,21.550025300923096],[-103.8584151425012,21.55086361781406],[-103.85776507211318,21.551465136601337],[-103.85600050035242,21.552045583334007],[-103.85620905013315,21.550850440862405],[-103.8554665765443,21.549216631898048],[-103.85522476387769,21.548567885700663],[-103.85520166873232,21.54724848287492],[-103.8546924279745,21.54711487129407],[-103.85466566444046,21.546582421310973],[-103.85578662522147,21.545993087125964],[-103.85408748090384,21.543846585857125],[-103.8543820896424,21.543402826474278],[-103.85509296760557,21.54310560199457],[-103.85497466363273,21.54275850766868],[-103.85460703807138,21.542481593867308],[-103.85459109628971,21.542381040977546],[-103.85428427880964,21.54229217559225],[-103.8539905056897,21.542304805203912],[-103.85337760102453,21.541969136865475],[-103.8533491653152,21.54166633588119],[-103.85361197963084,21.541379073289136],[-103.85409126354011,21.541442412892593],[-103.85450651686756,21.54138549830401],[-103.85488942190733,21.540649704780662],[-103.85558736474667,21.53936113508223],[-103.85588561025435,21.53869042506028],[-103.85576491787123,21.538030232902486],[-103.85522824254264,21.53689222384304],[-103.85448656903282,21.536222301328962],[-103.85521557126515,21.535484663514637],[-103.85504121963174,21.53515277081749],[-103.85418667963324,21.53452777902072],[-103.85507255887575,21.532648279534556],[-103.85586481269252,21.53206689150562],[-103.85659978289209,21.531808109832525],[-103.85766258527082,21.531595844194953],[-103.85822336181326,21.5309718685931],[-103.85919283428825,21.527794045490452],[-103.859924901206,21.524749507441754],[-103.85764390996655,21.522399228350764],[-103.85634974991262,21.521192357131667],[-103.85551771478788,21.520505387952312],[-103.85504874059205,21.51990931967225],[-103.85479498146731,21.519234406614714],[-103.85450963996277,21.518941071349502],[-103.85267085378183,21.517343228557195],[-103.8523388370536,21.516829905086013],[-103.85215865523702,21.516073322542184],[-103.85177649941278,21.515792044065563],[-103.8492945255843,21.51453086908549],[-103.84873744625531,21.51464702930366],[-103.84389608911016,21.514048246611253],[-103.84327766222964,21.513864180999406],[-103.84261709931673,21.51357806008224],[-103.84229539430044,21.51331781435681],[-103.84141158602995,21.51323132223206],[-103.84052326078233,21.513664029637084],[-103.83999801582718,21.513909036880364],[-103.83870310230162,21.513549736941798],[-103.83760632411327,21.51313903994253],[-103.83660758537229,21.512662720448475],[-103.83571159733145,21.51274878645222],[-103.83421393623411,21.512952777150474],[-103.833539267797,21.51347818504496],[-103.8324573021685,21.513582793743183],[-103.83212309251257,21.51290245543146],[-103.83229219048161,21.51235859394228],[-103.83227612520585,21.51082675037435],[-103.83109139933242,21.50872982518996],[-103.8279211606789,21.505262513520677],[-103.82771012955084,21.5029415736729],[-103.82815029714357,21.502361812704635],[-103.82886803623171,21.50108533241996],[-103.82866321892539,21.500502375339977],[-103.8281592011607,21.49817404634797],[-103.82577682502568,21.49449854740419],[-103.82495927151615,21.493925609729843],[-103.82147768323165,21.49248856175501],[-103.81836281210838,21.494349821514277],[-103.81776427853487,21.494551148118944],[-103.81401324728904,21.494483964325468],[-103.81036009605572,21.49326107246071],[-103.80921650319522,21.492811705957592],[-103.80333271669383,21.48976257327456],[-103.80042096829186,21.48718839603464],[-103.80016890080196,21.48755439380824],[-103.80027124974612,21.487955254069163],[-103.80080510091352,21.488209459636494],[-103.8015446449935,21.489483193124443],[-103.8015762756732,21.48981681499339],[-103.80079823620486,21.488926537336113],[-103.80040828580582,21.48877319871451],[-103.79899780747826,21.488664517229154],[-103.79828068956778,21.488845377116775],[-103.79773878498725,21.48965495404599],[-103.79707065714274,21.489729045317233],[-103.79519058541706,21.48945793084505],[-103.7935990792177,21.488864851631206],[-103.79298873947539,21.488691384005335],[-103.79225934211627,21.49093077591101],[-103.79225521967334,21.491493530975617],[-103.79194773407096,21.491705873198214],[-103.79179976771746,21.49442402779522],[-103.79156204413601,21.49550412058909],[-103.7911601339809,21.49648992778731],[-103.79112225512574,21.49670365513191],[-103.79117837223066,21.496766530791433],[-103.79121347065592,21.496998464638295],[-103.78807977823135,21.497995296787963],[-103.78747856040752,21.49799958807705],[-103.78733713339369,21.49779339858526],[-103.7870423609819,21.497505498667863],[-103.7862676480035,21.497589861466565],[-103.78406738792859,21.497459387088725],[-103.78381100865573,21.497359813606693],[-103.7831667488096,21.49777391386192],[-103.78264787650778,21.4981366351995],[-103.78236401217379,21.498450334298013],[-103.78064013549158,21.499213694782327],[-103.78035673777708,21.49978241889903],[-103.77888874556436,21.499658789643433],[-103.77850491962971,21.498723884718572],[-103.77779929232594,21.498167549147865],[-103.77581555959921,21.498276771562985],[-103.775189170325,21.498431059252994],[-103.77463426545546,21.498417519340876],[-103.77412948270438,21.498380707311185],[-103.77383379792036,21.496407392642197],[-103.7740014037143,21.496027893934524],[-103.7745512278816,21.49580461322023],[-103.77685535483408,21.495359513322853],[-103.77835940896654,21.49396343341357],[-103.77839148694255,21.493090865566444],[-103.7779222614551,21.491710418868877],[-103.77762095596199,21.49129279243516],[-103.77636278405686,21.49016291165566],[-103.7751169245409,21.489669099033563],[-103.77456019628289,21.489514904073133],[-103.77344928387754,21.489325372921485],[-103.77153051809739,21.489057139438216],[-103.7702805572244,21.488397246772536],[-103.76968850186029,21.48666605415025],[-103.76961759827833,21.485701199778532],[-103.76961817996175,21.484642038829918],[-103.76872115303479,21.48279819684825],[-103.76637623970282,21.48256113943063],[-103.76337282062059,21.482242682655567],[-103.76228657257718,21.482005593865154],[-103.75559453809086,21.47879696127302],[-103.75091548161294,21.476308364155102],[-103.74936458052184,21.474488227512268],[-103.74813086458931,21.47118510413179],[-103.74822178243056,21.470870044393678],[-103.7484426887051,21.47070869727935],[-103.7486842138394,21.470120552494905],[-103.74875324611918,21.469837507627005],[-103.74927721980373,21.469495722053637],[-103.74938792473421,21.46921129359191],[-103.74978460053535,21.46862500612906],[-103.75142876156366,21.466970764415294],[-103.75210846770267,21.46630499915193],[-103.75084457564509,21.4636611564527],[-103.75007094849201,21.46269979727981],[-103.7490296397707,21.462549232788774],[-103.74810205339668,21.461526999371245],[-103.7474274588298,21.45900982423177],[-103.74721713077201,21.45797123663931],[-103.74592219592961,21.45680343263507],[-103.74558169004604,21.455966901052932],[-103.74520084027876,21.4547859515734],[-103.74485503837923,21.454660107855375],[-103.7445330700537,21.454130122828133],[-103.74452153122354,21.45309290084731],[-103.74465998472147,21.452183753798806],[-103.74520647734079,21.451863509760585],[-103.74525266500086,21.45131481136383],[-103.74456563389037,21.448056296243692],[-103.74394384418702,21.446832714131062],[-103.74303427355983,21.44644010641565],[-103.74286448815258,21.44583215308694],[-103.7425480430075,21.444605092624613],[-103.74243056067235,21.44436683147461],[-103.74238310488363,21.443100409108354],[-103.74203063940155,21.44155783120135],[-103.73895768431197,21.441137795757754],[-103.73807005283618,21.44019492374366],[-103.73665629839718,21.43903745689937],[-103.7345426799721,21.438352419784678],[-103.73374117784084,21.43693072225699],[-103.73297325809529,21.436953374021357],[-103.73226940054082,21.437317277785382],[-103.73135410830218,21.436901883209032],[-103.73047162137357,21.43678025167077],[-103.72952822838835,21.43629374330453],[-103.72837523704897,21.435676575067873],[-103.7282266994115,21.434913116316523],[-103.72803621661637,21.43429359720494],[-103.72767117488706,21.43372386912762],[-103.72642991454501,21.4326874483491],[-103.72208084738855,21.42795989776556],[-103.72089554616923,21.425431228612183],[-103.72128923092203,21.42384163487185],[-103.72166256176195,21.42360259623848],[-103.72319514517113,21.42226903099288],[-103.72340939935839,21.421312654596647],[-103.72356428344102,21.42120788799116],[-103.72728844629006,21.421159580509936],[-103.73095017751416,21.41611762189558],[-103.73189744214562,21.41576930359497],[-103.73495332533184,21.416369095757034],[-103.73755217307172,21.416625512849066],[-103.73937125636576,21.416990574541956],[-103.74661034270304,21.417814836264654],[-103.75052828661705,21.41762035901627],[-103.75188053405986,21.41726365679864],[-103.75478680615743,21.415675745346164],[-103.75546058863267,21.413095110441645],[-103.75561129145473,21.412019748491957],[-103.7557481753609,21.411370187160855],[-103.75588457150656,21.410683421891974],[-103.75938072529266,21.409602336162095],[-103.76094666823002,21.409807596027008],[-103.76367032674318,21.410200988444842],[-103.76440153343043,21.407949098929635],[-103.75999716772793,21.40339487254215],[-103.75916440769043,21.402114815188156],[-103.75693425855928,21.399799853733498],[-103.75752542197273,21.39965330805319],[-103.75800685095544,21.399933659170244],[-103.7598144738422,21.399067063750806],[-103.76006366032891,21.39826374425934],[-103.76133467294,21.397493144898874],[-103.76152675673882,21.396991785397404],[-103.76168859513405,21.396918227568563],[-103.76231195178872,21.396420073030527],[-103.76303684051845,21.39627468971662],[-103.76452636080563,21.394952483772556],[-103.76612560915146,21.393354920094282],[-103.7665444210379,21.39219024817021],[-103.76760140203334,21.391141636335306],[-103.76771920282533,21.389784407545505],[-103.76712604563153,21.388154955627442],[-103.764232133017,21.3858323492164],[-103.75639216297213,21.38391318653464],[-103.75426935052622,21.383483752645816],[-103.75300539106564,21.38315427142271],[-103.75092858207813,21.38253549712499],[-103.74863779216275,21.381331962454112],[-103.74825347218217,21.380986949321937],[-103.74770704922048,21.380172774280254],[-103.74688614421933,21.379411643983815],[-103.74618250136734,21.37894956669436],[-103.74440129913177,21.377434320475913],[-103.74190501550157,21.374868100505523],[-103.74142356404963,21.37360484606313],[-103.74288081461157,21.371292208375166],[-103.74374703740023,21.369578909165682],[-103.74446845659503,21.36805693013895],[-103.74465024964036,21.367134623297034],[-103.74506470286656,21.365477288950785],[-103.74545432752177,21.363773953970735],[-103.7459540541796,21.362492271658255],[-103.74599153923191,21.362394738719217],[-103.74691091148617,21.3603060140087],[-103.74711535947262,21.359265470862965],[-103.74713348773196,21.357828650739293],[-103.7464607802703,21.35586245980852],[-103.74577857932195,21.354580649230513],[-103.74515893337326,21.353862602953825],[-103.74482535137639,21.353538789442894],[-103.74438005219088,21.352817845779384],[-103.7443197456875,21.352276741957382],[-103.74475607465905,21.35156117970132],[-103.74585082229277,21.35104502395228],[-103.74618636931939,21.35040230149974],[-103.74642130140694,21.349620968084196],[-103.74632795613888,21.34877440826],[-103.74663025299628,21.347661061712245],[-103.74687231766114,21.347279863660276],[-103.7483170104017,21.345147942309154],[-103.74854428851472,21.345119935861135],[-103.74958919817556,21.345170615678114],[-103.75009297313073,21.345174839770152],[-103.75152926937011,21.344485033099147],[-103.75189110741098,21.344153278109275],[-103.75235925743351,21.342391871119048],[-103.75191811828302,21.340875920636734],[-103.75102000141192,21.34123468351322],[-103.75083945687231,21.341354725928852],[-103.75027007471533,21.341518237869025],[-103.74955609948859,21.339504451794994],[-103.74964909702794,21.338984289442294],[-103.74955566964923,21.338504373723424],[-103.74958464921826,21.336944123760418],[-103.74935181762993,21.336708477681952],[-103.75126323006361,21.336485590374366],[-103.75211591065658,21.335987589402578],[-103.75265739478965,21.33628631541893],[-103.75311120158403,21.336323771856712],[-103.75319940232015,21.335882616812285],[-103.75346359696573,21.336235336544974],[-103.75389905741412,21.336796637214206],[-103.7541522440311,21.337047840344553],[-103.75461323999485,21.337487239519533],[-103.75562572922968,21.337507393345845],[-103.75557943740893,21.336929836645254],[-103.75567401418635,21.336606583838375],[-103.75658581930549,21.335964492168387],[-103.75742999792982,21.335484709343348],[-103.7571950128683,21.334922025229503],[-103.75696927399395,21.334695922765093],[-103.75679291241102,21.33380132264881],[-103.75771016159604,21.329726947555287],[-103.75864058452578,21.32977161840506],[-103.75944307406166,21.329440229066336],[-103.76007482864497,21.328497320758117],[-103.7612616391848,21.328520876870016],[-103.76243258774139,21.32829504060976],[-103.76416183918138,21.328469326905918],[-103.76438352174506,21.328017553163193],[-103.76521511047468,21.32739630187865],[-103.76682862726585,21.326503751266557],[-103.76697378333773,21.325978441557766],[-103.7670391353509,21.325424105336594],[-103.7690026039594,21.322276866772768],[-103.76940591473925,21.32252812250738],[-103.77022519172641,21.32207941434666],[-103.77068067654864,21.32173292199093],[-103.77203120504424,21.320735366827137],[-103.77232994971456,21.320475082677717],[-103.77268873311925,21.32028761081284],[-103.77497615916133,21.321005257820048],[-103.77558269830689,21.321097141059226],[-103.77612295463183,21.32166986371641],[-103.7763100814808,21.32007319807707],[-103.7761425239089,21.319633185815974],[-103.77621075785237,21.318933612340743],[-103.77673813230342,21.31743373277618],[-103.77675733820251,21.31705507913921],[-103.77704154171965,21.316575338147004],[-103.77754839282261,21.315941457319752],[-103.77761506499633,21.31527094288782],[-103.77755678221968,21.314745266013006],[-103.77722053230593,21.313998663358802],[-103.77747528212939,21.313489316608297],[-103.77759077368898,21.31255596702414],[-103.77756619904176,21.31194277895122],[-103.77767701857073,21.311534929561958],[-103.77928320311906,21.3098165085417],[-103.7800547532587,21.308989875403768],[-103.78063627444482,21.30851302359241],[-103.78138648209904,21.308269249616274],[-103.78193351137548,21.30811314314633],[-103.78340313969642,21.3075687648643],[-103.7840205827182,21.30739186529854],[-103.78483083848448,21.30729529746111],[-103.78672870592362,21.30603894745468],[-103.78858918877211,21.305541683383865],[-103.79086981062028,21.30576094540237],[-103.79196169461301,21.305579368536826],[-103.79304460519796,21.304725429435848],[-103.79331247116477,21.304479080068802],[-103.7940169303165,21.304076059855902],[-103.79443839496821,21.303946790675127],[-103.79517500741827,21.30363141587077],[-103.79627339523381,21.303575874708713],[-103.79694378193773,21.30352262935355],[-103.7977877059842,21.303266784504615],[-103.79853556519299,21.303286129713626],[-103.79905138313075,21.30326100916227],[-103.80127924400682,21.301496028581766],[-103.80180777948942,21.300830960419773],[-103.80234327163976,21.300540606659922],[-103.8027771701868,21.300401185589294],[-103.80361798280154,21.299915747550926],[-103.80368201417889,21.299275204749733],[-103.80643245031621,21.29533325253118],[-103.80606667743035,21.2945598435403],[-103.8058450193003,21.294134120233593],[-103.80605090920142,21.293962895717073],[-103.80675421232667,21.29369686399133],[-103.80667819684948,21.29286830838373],[-103.80615064156291,21.29201695097413],[-103.80611118615428,21.291746982511597],[-103.80630168363706,21.29115123095613],[-103.80842584824808,21.288537962661735],[-103.81001512077376,21.287913872332638],[-103.81121583657512,21.287054786510794],[-103.81251626708871,21.286698170067382],[-103.81271906667018,21.286873636775397],[-103.8119364896209,21.287001787429233],[-103.81174723116669,21.287328004185213],[-103.81218023700904,21.28748531840995],[-103.81316734481362,21.287588876915038],[-103.81419618529941,21.287269041357547],[-103.81825168767972,21.283357699784972],[-103.81957279153818,21.281787760460986],[-103.82003223004119,21.28135002822279],[-103.82034563224374,21.28104138245874],[-103.8207797127775,21.278634085784574],[-103.8204732396423,21.27795257645596],[-103.82009784088507,21.27689981552453],[-103.82023410359523,21.27623754146333],[-103.8205277638898,21.275901906219815],[-103.82144384742992,21.275271187790338],[-103.82289945402448,21.274087728324105],[-103.82393138332225,21.273077192164806],[-103.82442731900738,21.27273732342013],[-103.82498493523974,21.271877633913505],[-103.8239902974708,21.26907083787239],[-103.82296832220976,21.268314376837793],[-103.82132606762883,21.26679302431188],[-103.82113709064686,21.26620722330597],[-103.82136500983347,21.263021962178584],[-103.82023332138414,21.260807559977593],[-103.81919860953155,21.25946136668705],[-103.81834644670931,21.258512289700832],[-103.81748567598589,21.25714042501903],[-103.81697865859996,21.254723476975755],[-103.81707938860166,21.252507125713066],[-103.818547437429,21.249038546153827],[-103.82053541753504,21.247872388438566],[-103.82820287611264,21.24566199167907],[-103.83047466521549,21.24366651149529],[-103.83136536042065,21.242967985284395],[-103.83370602123046,21.241912684505508],[-103.84001943357111,21.239820466559763],[-103.84274151477439,21.24011983419001],[-103.84500409005886,21.240296742727992],[-103.8475124751107,21.242512467113784],[-103.8511355006413,21.245180205430984],[-103.8613246855391,21.248622049268477],[-103.86199650653185,21.248693731691674],[-103.86502175684558,21.245919014849278],[-103.87009741915125,21.243589261442878],[-103.87304556776752,21.242734646706595],[-103.87453630864093,21.241906916362552],[-103.87543857655243,21.23858538369109],[-103.87585414131593,21.23923276304157],[-103.87620063849806,21.23943904789388],[-103.87667369929488,21.239142852609405],[-103.87805204849042,21.240113270128177],[-103.87870771337322,21.239793046960756],[-103.87935574782563,21.240589110795497],[-103.87994302220977,21.241400438714493],[-103.88104300917769,21.241843377386886],[-103.88168044426732,21.24174206741918],[-103.88192102550158,21.241848912619787],[-103.88323991041682,21.241817254098123],[-103.88551560848327,21.240714767047848],[-103.8859425586416,21.240294821078635],[-103.88658647791436,21.23942655825806],[-103.88740380055657,21.239039872948183],[-103.8884949538313,21.239335855239972],[-103.88959136016945,21.239729772497583],[-103.89011092373818,21.23895653542462],[-103.890577959692,21.238757701778013],[-103.89072924701065,21.238736544363007],[-103.89230552771528,21.238426660128823],[-103.89513355321469,21.233050248159316],[-103.89600296723268,21.230184562419026],[-103.89761291560018,21.226644514071097],[-103.89894402866514,21.226667015096268],[-103.89973054946773,21.227053813211228],[-103.90105407205925,21.230304269317855],[-103.90241736709294,21.23294077321964],[-103.90418291266838,21.233358022158484],[-103.9067449034248,21.233355146004953],[-103.9084634907648,21.233190331975493],[-103.90999629727861,21.23296157284244],[-103.9108939890483,21.232584648257216],[-103.91174045213398,21.231872592960144],[-103.9133280973395,21.231213879366464],[-103.91427508149991,21.230765535440582],[-103.91506692798805,21.23084183345486],[-103.91815047377855,21.231579086789168],[-103.91854966126198,21.232897179843405],[-103.91920742602633,21.233546848458502],[-103.91957065874038,21.234921655249764],[-103.91925898702715,21.23648098271991],[-103.91933482970433,21.23738660180402],[-103.91932039165624,21.238612786755084],[-103.91819859521803,21.240040711091353],[-103.91758303909018,21.24167372573612],[-103.91872505398226,21.24586649059586],[-103.91942605192975,21.246827795892045],[-103.92074450192541,21.247643409643672],[-103.92126536513416,21.248055218976617],[-103.92243439223142,21.25175577676464],[-103.92346838252871,21.251967836106815],[-103.92386223613448,21.25209356158041],[-103.92484288130566,21.252838977336182],[-103.92598471626115,21.254293828293783],[-103.92687208496693,21.25641289417797],[-103.9274635603532,21.258490803401287],[-103.92994321567124,21.261718028911957],[-103.93105688848885,21.262547116207656],[-103.93223388574683,21.261931823180134],[-103.93379843163763,21.260873911516228],[-103.9343738723768,21.258586784507372],[-103.93439680311258,21.25716159769047],[-103.93479400811594,21.2560777128636],[-103.93546185382752,21.254176183144352],[-103.92863506567875,21.249760211294642],[-103.92837664431181,21.24692848624784],[-103.9256118910223,21.242457661437697],[-103.9265782165943,21.240316543361473],[-103.92401998625934,21.23457173166065],[-103.92646390712207,21.23490577735288],[-103.92853542669758,21.234918695278623],[-103.93655823341408,21.238531647232264],[-103.93744122685325,21.238346229631134],[-103.94016153823446,21.2381729057106],[-103.94138156368751,21.23840335369823],[-103.94253767422163,21.238028406479884],[-103.94586722546995,21.238017849273945],[-103.94749988825953,21.238936314671037],[-103.94852980115309,21.24160725769633],[-103.94984593705396,21.243079114898137],[-103.9517054369054,21.244592599372766],[-103.9529762935781,21.247891632663595],[-103.95420113393862,21.248471095251716],[-103.95447046531189,21.248886006066073],[-103.95514210943338,21.249940091605424],[-103.95838771249629,21.252754514193384],[-103.95888459120158,21.251948214994968],[-103.95985415255416,21.25111488835796],[-103.96141549520735,21.252302746025805],[-103.96223581791025,21.252992808432168],[-103.96266590410357,21.253276780645876],[-103.96310391657175,21.253824008332515],[-103.96412719150578,21.25398691806464],[-103.96459671992886,21.25371027983141],[-103.96495120995962,21.25380029211027],[-103.96566703355973,21.254354452047437],[-103.96927430842379,21.255690179605665],[-103.9712759523822,21.256328684900723],[-103.97419813880748,21.255580619540467],[-103.97385199904164,21.25297254296447],[-103.97448235926078,21.25180111200615],[-103.97497946785899,21.25154340183974],[-103.97656167628753,21.250869602037085],[-103.9788276076008,21.250325234727086],[-103.9853104908056,21.249208014192163],[-103.98641431223928,21.246429448791332],[-103.98862084792336,21.24392765634076],[-103.9903569226023,21.242782631394107],[-103.99636068301515,21.239296956414705],[-103.99898040895232,21.238642888137633],[-104.00078442985921,21.238468524230484],[-104.0017034124445,21.237719373920015],[-104.00270776031817,21.23705643703454],[-104.00425382014049,21.23569980612791],[-104.00475722038266,21.232040853926776],[-104.00485792198748,21.229567610085553],[-104.00523571781474,21.228769360878914],[-104.00995634492466,21.227130592707454],[-104.0141987654066,21.227163199969596],[-104.01611836596129,21.227559654852712],[-104.0166418257952,21.227435601825107],[-104.0174888428715,21.227201841059355],[-104.0175309605234,21.22604080474798],[-104.01464112447252,21.220680856034846],[-104.01554710292868,21.219313884827727],[-104.01644636530659,21.21923173824149],[-104.01542963397617,21.214216849089155],[-104.01603708025016,21.21281790177227],[-104.01681725922333,21.212303860327836],[-104.01705561783581,21.211181634220566],[-104.01683334883143,21.210709431737257],[-104.01592501945305,21.20958396979546],[-104.01575472940476,21.208484103407272],[-104.01647919740316,21.206574033188303],[-104.01863883822784,21.20512236234856],[-104.02140496143932,21.20467820487795],[-104.02232001842026,21.205107079457548],[-104.02253229766046,21.205391421226864],[-104.02236935594954,21.20620373512446],[-104.02234191289466,21.206563034601004],[-104.0223829493305,21.208515504401078],[-104.02232089808325,21.210019396316454],[-104.02266005906381,21.211460900063912],[-104.02498131445924,21.212937711737027],[-104.02941037350348,21.2086642076398],[-104.03161332346673,21.205192817000636],[-104.03287132915335,21.202686657959475],[-104.03041761519165,21.20219903691867],[-104.02639850296396,21.200475604048847],[-104.02672172274919,21.1970266479795],[-104.02933463926291,21.194682487198065],[-104.03039741081955,21.194499659262362],[-104.03379987902093,21.195213677775996],[-104.0353215938701,21.196599416895538],[-104.03586995520573,21.19812464757473],[-104.03583418973824,21.199262452695052],[-104.035881013601,21.199718123609557],[-104.03572819723945,21.20120521940578],[-104.03611326318634,21.20185087397681],[-104.03751903630302,21.203758593380087],[-104.03929106385198,21.20424363677023],[-104.03959730840967,21.203902936181635],[-104.0425772323224,21.201410830055522],[-104.04462703756855,21.199685414393628],[-104.04585746157471,21.199736281718003],[-104.04707382938801,21.201076557422653],[-104.0485491373716,21.20243928918478],[-104.04921220589773,21.203105033483553],[-104.05016272458738,21.204360596700326],[-104.05195422287369,21.205353011588898],[-104.05499679684664,21.204191768991564],[-104.05422226556283,21.20143781270349],[-104.05507187946847,21.197897979207653],[-104.05627539753118,21.194139938321484],[-104.05908108320011,21.193652437316985],[-104.05956395991979,21.194371389650883],[-104.05966399267936,21.195906387321543],[-104.05982805232259,21.19658780118465],[-104.06070729136798,21.19757440328226],[-104.06081861578548,21.198190006280925],[-104.06124709826611,21.199209662997305],[-104.06189418836448,21.200082455974382],[-104.0636180415787,21.20041900576814],[-104.06454092614729,21.19986684503158],[-104.06562264646675,21.19965434607417],[-104.06621201945637,21.199268590915494],[-104.06738583466006,21.19866533305691],[-104.06763196649842,21.1984371258759],[-104.06810406341077,21.197918025523677],[-104.06834017964576,21.197662970895806],[-104.0686775977577,21.19712770079252],[-104.06903087499796,21.196280330769298],[-104.06927801890828,21.19549441926597],[-104.06939477950601,21.194971126917494],[-104.06941568589525,21.19445812848744],[-104.06933419701801,21.194153400617324],[-104.0687166553879,21.193446497610807],[-104.06784116754267,21.192771381138698],[-104.0670411888417,21.191945661501904],[-104.06684492569605,21.191669470538613],[-104.06642138829,21.190973582851598],[-104.06609500788846,21.189723288185917],[-104.06643158696141,21.18913406701023],[-104.06697057346202,21.18859607362458],[-104.06730080582355,21.18809621488549],[-104.06746834648857,21.187753197395523],[-104.06798662874604,21.18697028274846],[-104.06828665290902,21.186786324503885],[-104.068887396136,21.186841160192046],[-104.06948593208597,21.187066930818958],[-104.06978430193828,21.187152842142552],[-104.07042028517748,21.187422535435303],[-104.07126573901616,21.187941788658463],[-104.07175499769642,21.18836443366422],[-104.07181919272773,21.188792081154816],[-104.07201947972709,21.189329068390975],[-104.07238001176614,21.190054993685806],[-104.07316984007184,21.190226435967134],[-104.07613617658114,21.190266954766287],[-104.07760012460858,21.18893591393976],[-104.08057760896696,21.189461557180152],[-104.08170879887666,21.193779324112597],[-104.08087481391522,21.198039453423235],[-104.08091018871005,21.201764148419613],[-104.08235753805207,21.204306248107002],[-104.08565926553581,21.20536111508011],[-104.0881144489095,21.20424499229],[-104.08808642951664,21.20088227251199],[-104.08782249358484,21.197627290476476],[-104.08879968548541,21.19612915457259],[-104.09156506031633,21.195394434051025],[-104.0961491986439,21.196786343210306],[-104.09747159666068,21.19831273011465],[-104.09894127598216,21.20102769296227],[-104.10088225924,21.200148013346563],[-104.10253249044962,21.198745971849803],[-104.1056077006993,21.197877858036236],[-104.10895728520711,21.194392375523478],[-104.10905193386719,21.190123231848304],[-104.11084484116867,21.188595706876015],[-104.11680080179042,21.191382944455768],[-104.12102800013213,21.19512991235615],[-104.12474292318865,21.196093677938904],[-104.12603705192214,21.193436722962872],[-104.12742242352556,21.191523957115635],[-104.12963617092731,21.190630161105958],[-104.13592230242307,21.18930931602449],[-104.1386741789808,21.18866628943499],[-104.1412655586251,21.18939230142172],[-104.14464763757667,21.190987529188646],[-104.14857213798354,21.190917009683915],[-104.14965169238133,21.189747529922215],[-104.15320404031678,21.18831274430744],[-104.15951350065944,21.184560298908423],[-104.16183504667083,21.185424076721404],[-104.16492854091285,21.188438495889386],[-104.16889170344461,21.189090164180243],[-104.1734200604817,21.188608428088173],[-104.17715262971893,21.188162392015897],[-104.1803585219825,21.188952498106858],[-104.18314997522975,21.18924480575214],[-104.19102314998872,21.19249531092936],[-104.19353308772361,21.19254825988554],[-104.19636724696858,21.19355299521993],[-104.19882277009663,21.19346370380208],[-104.20279366225543,21.19283243568111],[-104.20501036765194,21.191141756299373],[-104.20585838988234,21.190339110484672],[-104.2087022761354,21.18928168190672],[-104.21210005421767,21.184531099490925],[-104.21293198273361,21.181604056805895],[-104.21510949205117,21.178827065083453],[-104.2168552982364,21.17721758372744],[-104.21870046567079,21.17663699305109],[-104.21940652385899,21.176592605731685],[-104.21941089565263,21.17616412041832],[-104.21872172715757,21.175363018669145],[-104.21866946488092,21.175348875441387],[-104.2175302802479,21.17506882616533],[-104.2176298374585,21.174527077648918],[-104.21792278078647,21.173069072032945],[-104.21805036170883,21.172471846518533],[-104.22051362076024,21.173258067765744],[-104.22048362126054,21.17287639339918],[-104.22043731593936,21.172654906852358],[-104.22032451927413,21.17250061319487],[-104.22021267046267,21.172253849804918],[-104.22060425025109,21.17077204355263],[-104.22073569004436,21.170350395794117],[-104.22072061739925,21.1700138842736],[-104.22304927390184,21.16941859485246],[-104.22358160983015,21.168961593399786],[-104.22332260549092,21.168701664774687],[-104.22278510637489,21.168388651558473],[-104.22211929511639,21.168146483704163],[-104.22174276225564,21.167682003002938],[-104.22161544614875,21.167417841275267],[-104.22148822434502,21.166586197208744],[-104.22225451950897,21.164881473274136],[-104.22211690500933,21.164366552854744],[-104.22174736203613,21.163850132722132],[-104.22171077258974,21.163455786611735],[-104.22197516995203,21.163071183862428],[-104.22280637527359,21.162396280306098],[-104.22350571834664,21.16193482509709],[-104.22365738536604,21.161100573737542],[-104.22423361645866,21.160471681891067],[-104.22400245383449,21.160136575759225],[-104.22333401719789,21.1597373246895],[-104.22288241630315,21.159715687652806],[-104.22174175492552,21.158956632472666],[-104.22180926453427,21.15849027017208],[-104.22214207565355,21.158155761337753],[-104.2229434095621,21.1590687041338],[-104.22312374384842,21.158691248273783],[-104.22340921663016,21.158224800010487],[-104.2241813446621,21.158176090230995],[-104.2248665055572,21.1577038238338],[-104.2241897171246,21.156264312939697],[-104.22414510763366,21.155177941373267],[-104.2238679073456,21.154532257393953],[-104.22313856146235,21.154209425843305],[-104.22259466477317,21.154192469013935],[-104.22207277353635,21.153901702335816],[-104.22229802647962,21.15309038362119],[-104.2226263373563,21.152899145540175],[-104.22322056930153,21.15275375133473],[-104.22368143598254,21.152560584088803],[-104.224024331289,21.15164810070786],[-104.22517054671044,21.15120875210374],[-104.22467835721602,21.15030842098372],[-104.22358974651081,21.148415083138275],[-104.22317254015883,21.147412801558403],[-104.22261821364873,21.147045201849835],[-104.22227896100026,21.1469315002945],[-104.22214674041288,21.146467848521525],[-104.22267191839603,21.14571505201957],[-104.2228777098826,21.145438094735653],[-104.22251993695198,21.145004961616394],[-104.22152208970306,21.144734557513914],[-104.22117835832614,21.144443671765146],[-104.22112920028093,21.143589641388417],[-104.22155264617118,21.143046522913608],[-104.22199157054803,21.142733319065712],[-104.2218121987816,21.141354263376684],[-104.21912335997666,21.1408966864563],[-104.21892819853139,21.139099225005168],[-104.21963332715245,21.1387009896593],[-104.2195777930902,21.138344841291087],[-104.21900342152406,21.137639272970716],[-104.21750559665702,21.13814212153636],[-104.21633964866544,21.137693441364547],[-104.21596878471718,21.13828856781811],[-104.21576541881859,21.139005423337437],[-104.21547014008553,21.139164896764385],[-104.2149379252798,21.138228152004785],[-104.21431589595335,21.136039172884523],[-104.21440204940251,21.13557633720984],[-104.21493199174301,21.135019162267383],[-104.21467449843414,21.13361617772034],[-104.21404213556849,21.133647314389975],[-104.21197485991138,21.13194083536837],[-104.21131220978111,21.13155478230368],[-104.21158614045748,21.12968253204042],[-104.21154248269625,21.128452284598552],[-104.21128989908658,21.12771453539318],[-104.21163670154596,21.126113087442548],[-104.2117163119924,21.125280914533107],[-104.21175852789355,21.12217491059323],[-104.21142886787914,21.120561388385624],[-104.21253034229233,21.120895348803003],[-104.21270930050906,21.120433508745805],[-104.21248402284505,21.119496404242625],[-104.211055451383,21.119123441261763],[-104.2111092177417,21.118138563538253],[-104.21256732570532,21.1179901125754],[-104.21329959027116,21.117996671569983],[-104.21374945502328,21.11752667079537],[-104.21405264352649,21.117041632169048],[-104.2146554074933,21.116964230285532],[-104.21474097286665,21.116602507860193],[-104.21390957879896,21.1161339059488],[-104.2123324132503,21.114834948721125],[-104.2125753447325,21.11402462715148],[-104.21335937509741,21.113841614442663],[-104.21453898999704,21.114339507008253],[-104.21462849500978,21.11116748772082],[-104.2153952335729,21.110774708804797],[-104.2156731084371,21.11035084476987],[-104.21571780240072,21.109357862184822],[-104.21485715707934,21.10898867169226],[-104.21462647951614,21.108572178496786],[-104.21459200706289,21.107713921825905],[-104.21474878193953,21.10734906964666],[-104.21573673533118,21.10680041219672],[-104.21749571102765,21.104885641542467],[-104.21765467543969,21.104654332077928],[-104.21740554008039,21.10435261381724],[-104.21705783919202,21.104243166644153],[-104.22084307648572,21.101363390552592],[-104.22142250880779,21.097893383548694],[-104.2197182683102,21.095447283172973],[-104.21806199149637,21.092871301720834],[-104.21840705509709,21.09201971575675],[-104.2178954168374,21.091086066773755],[-104.21846087354277,21.089655296774026],[-104.21829908560534,21.087845252657473],[-104.21671857481715,21.085791193848536],[-104.21809122875226,21.082167621683027],[-104.2198519627994,21.080118037812213],[-104.21871705754455,21.078595079338243],[-104.21985299029149,21.076647625538612],[-104.22189675256203,21.07393329351811],[-104.22245177843041,21.072473376295818],[-104.22225236294327,21.072197804419545],[-104.22181044728927,21.070024619317962],[-104.229127603633,21.066152980824654],[-104.232812849158,21.067398895104816],[-104.23479339339207,21.067681474492986],[-104.23906683867949,21.056954089615317],[-104.2379458215297,21.055208828944046],[-104.23839483352651,21.052273140266664],[-104.23161926753016,21.050554734697698],[-104.22847706375495,21.05035001060952],[-104.22753836947663,21.05078907576234],[-104.22744247904683,21.050889332029044],[-104.22575397846231,21.05076931013815],[-104.22516399352531,21.050526930507317],[-104.22487136732053,21.049675376506116],[-104.22514527205578,21.04847400777436],[-104.22533543569762,21.048061468270248],[-104.22661850278911,21.047423713117382],[-104.22719500139664,21.046375252988923],[-104.22729612025944,21.045345306143076],[-104.226672051847,21.044749791753418],[-104.22655008389057,21.04429616960914],[-104.22787594532366,21.0431138926196],[-104.23015321783004,21.042554986343134],[-104.23286087742008,21.041200331546804],[-104.23616440175249,21.039620317712718],[-104.23588683217139,21.038329523166283],[-104.2351638653609,21.037165023679904],[-104.23480299393447,21.03667758707951],[-104.2349411596631,21.03347245729657],[-104.2359549708479,21.031549369193783],[-104.23969668279278,21.027858625201418],[-104.24245436503412,21.027881681277904],[-104.24135486970704,21.025114848669887],[-104.24164079334088,21.02342290627712],[-104.24073011609437,21.021720395556997],[-104.23954608442745,21.021535413720585],[-104.23681111825374,21.02095211589932],[-104.23613121802998,21.020164477629862],[-104.23333718766219,21.017652756531902],[-104.22959318384136,21.016269645171917],[-104.22889446814918,21.013508364014058],[-104.2242724141517,21.007558306682427],[-104.22458948134545,21.00621289400374],[-104.22431667279733,21.00443257182178],[-104.22319570206429,21.00126366819302],[-104.22529032824457,20.997412453180004],[-104.22497548676301,20.996115030567125],[-104.22803936849607,20.996666176503993],[-104.23196330538525,20.998684270788203],[-104.23410867897667,20.99818815725945],[-104.23415928939039,20.996716211325065],[-104.23599260153071,20.993935964424452],[-104.23801609000236,20.993118777798372],[-104.23794868838019,20.99130821580826],[-104.23737454945052,20.99099898751001],[-104.23703876846753,20.989732571400964],[-104.23719759577483,20.98769082232286],[-104.23794308617857,20.9847504440105],[-104.23810050134807,20.984177066464156],[-104.23596436813972,20.980685198022627],[-104.23591939930873,20.975602944761363],[-104.23430963772569,20.974052258110817],[-104.2331294446443,20.968743373010568],[-104.22788663208667,20.967168822591475],[-104.22714245674376,20.964984306491885],[-104.21855890113233,20.960279651257792],[-104.21066929563023,20.96033836269885],[-104.20130635274808,20.95924217890962],[-104.20105926727092,20.957320159969527],[-104.20452618612683,20.954932239133313],[-104.20461641384048,20.951965460221174],[-104.20742607156359,20.951512417819572],[-104.20661969079299,20.94610932663568],[-104.20747815825962,20.94214863906751],[-104.20748634586835,20.941085170128133],[-104.20776139884623,20.94037456773077],[-104.20622505836059,20.939124740269847],[-104.20607153244555,20.938435833655944],[-104.20720072808922,20.935965656020016],[-104.21169748784098,20.938014488418673],[-104.21453525550413,20.939750845632943],[-104.21690272371637,20.94090954138227],[-104.22107199811518,20.94152565968494],[-104.22664899981083,20.936624094899457],[-104.22875340865426,20.93558175748717],[-104.23008543240007,20.931977337159083],[-104.23390554147971,20.92911366487914],[-104.23651957189298,20.926194051300342],[-104.23890167658249,20.924953012990898],[-104.24575880888312,20.921798473138608],[-104.24688957470482,20.920578530734474],[-104.24727940502095,20.919633705886383],[-104.24721577358258,20.9166869157321],[-104.2469737469309,20.91068571017422],[-104.2498854832586,20.904348269980062],[-104.25620777308848,20.896892592380482],[-104.2584469825211,20.894828807935085],[-104.25991660127227,20.893626998226125],[-104.26703562840157,20.88797037367533],[-104.27148561771043,20.887352371512634],[-104.27589373455697,20.88722998373339],[-104.27965136900104,20.887235773200302],[-104.2840381392187,20.88727841834441],[-104.28853697067649,20.887836516178822],[-104.29019134764343,20.887925654735284],[-104.28822497077829,20.884244881111613],[-104.28785336751156,20.882828243462143],[-104.28759088416376,20.88272103321043],[-104.28733026466551,20.881870344860772],[-104.2872611059579,20.880525751203777],[-104.2870389863968,20.87978163973031],[-104.28584457962529,20.877264792298888],[-104.28544391185113,20.874985471921093],[-104.28416947039273,20.87338102469522],[-104.28273754192014,20.87062674172796],[-104.27954767998898,20.865123387705182],[-104.27967286648686,20.8642494222633],[-104.28671870392986,20.86403392880038],[-104.29069297015951,20.86234063043952],[-104.29066465988228,20.85953868734009],[-104.29060813122805,20.85280396701927],[-104.2902088362435,20.849015218549653],[-104.29110647824683,20.848432008968757],[-104.29233924542825,20.848780872570615],[-104.29406215330857,20.84789978685103],[-104.29535701277774,20.84770620112897],[-104.29543110721022,20.847352967409734],[-104.29512911309808,20.846622062871745],[-104.29661503795103,20.845633982838535],[-104.29729172414591,20.846829943412445],[-104.29837823362163,20.847441563637176],[-104.29943169200146,20.84736573781845],[-104.30024129430649,20.846846640215176],[-104.30161630299756,20.84585003060789],[-104.30208892853545,20.84571932656206],[-104.30314698417146,20.845790093284336],[-104.30427532914598,20.84630272951307],[-104.30478230591456,20.847052923515832],[-104.30503717579916,20.846755071008374],[-104.30810529103746,20.846772653486937],[-104.30881540339624,20.84680731158113],[-104.30884568304577,20.845813374792954],[-104.31177738108715,20.843648820087367],[-104.31234305946873,20.84342984657053],[-104.31265081305764,20.842713754205022],[-104.31218004256931,20.841896446355918],[-104.31253114931553,20.841343376020575],[-104.31269483519168,20.84107549231885],[-104.31261418016777,20.840668127609263],[-104.31291433682162,20.84020819000449],[-104.3141463027294,20.840077294775426],[-104.31471867727458,20.84063821614717],[-104.31569692572032,20.840741268606337],[-104.31624699938095,20.840556971869717],[-104.31702751712561,20.83991333150402],[-104.3184173708533,20.838572642468307],[-104.32327761850314,20.841209829074614],[-104.32404823569846,20.84135455993038],[-104.32428255319735,20.841510400509208],[-104.3251239205693,20.841609266081832],[-104.328111076153,20.84228445753854],[-104.32872283520442,20.84222068273408],[-104.33219967827677,20.843361198481375],[-104.33266885932687,20.84398177916404],[-104.3332544788816,20.844470653807548],[-104.33323737955999,20.84554837367574],[-104.33472764760256,20.846664175147225],[-104.33597464551588,20.84628581875353],[-104.33635452577397,20.846140257493573],[-104.33712366581511,20.84562570112223],[-104.33822587561275,20.84585218514485],[-104.34138396423867,20.844527012363756],[-104.34173845496832,20.844321148622214],[-104.34243765748795,20.84424315279375],[-104.34245113022473,20.844723407806953],[-104.342481833833,20.845313908429773],[-104.34588051731396,20.846407432845467],[-104.34657349277995,20.84574125568247],[-104.34690662832071,20.845195747316325],[-104.34770617920339,20.844830780041093],[-104.34839807254616,20.845306734453686],[-104.3495528054782,20.84567352673696],[-104.35027814476177,20.845539505246336],[-104.35136961871734,20.84448160677158],[-104.35285687306964,20.843262831310597],[-104.35327997390215,20.84300743480611],[-104.35339356205782,20.842879750383588],[-104.35391405425605,20.84273000084852],[-104.35454952541335,20.84291916310667],[-104.35697124411439,20.843150052104704],[-104.35802950158109,20.84295559636837],[-104.35873658820219,20.841997088889855],[-104.35889068757047,20.841624382197153],[-104.3591206770185,20.840240827237665],[-104.35955162502785,20.840038344211393],[-104.35991096872988,20.840208692068074],[-104.36060582141482,20.840775159841257],[-104.36173887845007,20.838457021947306],[-104.36082617053779,20.837591623203025],[-104.35945724863706,20.835583379442028],[-104.3587310555435,20.834895998504464],[-104.35885120438292,20.83238603701227],[-104.35885380212778,20.831321024932322],[-104.35877478258931,20.829838291774593],[-104.35899543488938,20.828494911832024],[-104.35871263936122,20.82545879975845],[-104.35890932016196,20.824014269928966],[-104.3575436312288,20.822457352127174],[-104.35704854968895,20.821075142646123],[-104.35730282829849,20.819612763317195],[-104.35852477337403,20.81940842563847],[-104.35992036011271,20.819752562949645],[-104.36080041981944,20.81859522955824],[-104.36405938608698,20.813932991551724],[-104.3583779071821,20.813292061486777],[-104.35040233212965,20.811643967080443],[-104.36326513241869,20.797732625697222],[-104.3717827034248,20.788518257315502],[-104.37589215361959,20.784072969480974],[-104.37540870960055,20.777853223785087],[-104.37523125233122,20.775578937916976],[-104.37361001860842,20.776915162104842],[-104.37289437742146,20.777636225219283],[-104.3723898125437,20.778292126751467],[-104.37147773210575,20.778979405349446],[-104.37020213607423,20.77951238075491],[-104.36929158687872,20.77984860636866],[-104.36773009556634,20.781022260182453],[-104.3675984824352,20.781493263429184],[-104.36739856836522,20.781810458748225],[-104.36702482242458,20.78178741006758],[-104.36644917694503,20.783068134382802],[-104.3660630680169,20.78305543638959],[-104.36545148594729,20.78366316880488],[-104.36471533455813,20.784044293005536],[-104.363897192146,20.784151060432805],[-104.36143995770988,20.785413383609296],[-104.3610995180656,20.786080952362283],[-104.35921938459279,20.78834988815902],[-104.35892305918713,20.788506982331512],[-104.35894580925424,20.788704503388487],[-104.35939693935495,20.788824943150303],[-104.35918334929386,20.789137093806687],[-104.35863848925516,20.789777553795943],[-104.35834434667493,20.79033553091557],[-104.35803981878422,20.790575583123882],[-104.3540982634999,20.791211409998766],[-104.35332655992642,20.791383814953974],[-104.3521726306875,20.79132504521806],[-104.3516954407425,20.791180438921344],[-104.35119179138644,20.791233567914787],[-104.35108676265327,20.791573141185438],[-104.35023457752698,20.791777980938775],[-104.34916069106055,20.791883529542247],[-104.34832157822791,20.792617724482852],[-104.34687809035671,20.793106640117912],[-104.34582753550501,20.79316762254257],[-104.34539689589576,20.790984304805818],[-104.34428994190552,20.790574914423757],[-104.34213487449466,20.790532090932516],[-104.33564609704183,20.78993302349454],[-104.32832271044424,20.798098019982206],[-104.31522402666695,20.786390882819717],[-104.31058326484509,20.78186314512226],[-104.3044156698844,20.776314582317127],[-104.29761725527305,20.770795084440977],[-104.29481862773144,20.77128976146423],[-104.29187098157325,20.770793108471025],[-104.29019894881924,20.773010488429236],[-104.29019889972676,20.77301197159818],[-104.29228201096726,20.776418905288722],[-104.29218808286703,20.777135041926385],[-104.2899105342691,20.781340955331814],[-104.2873377206044,20.781470968180145],[-104.2851288743675,20.781929816602144],[-104.28450748928924,20.7821432874602],[-104.2837749869916,20.78275981665803],[-104.28346500107205,20.78302143194128],[-104.28316627326416,20.783273542493248],[-104.28281076115746,20.783238666708314],[-104.28146753598924,20.77580966613732],[-104.28002004521778,20.76892864894893],[-104.2800199851452,20.76892840489313],[-104.27519406052409,20.769844603696697],[-104.27511622623723,20.769860625635886],[-104.27447472256597,20.769986656454705],[-104.27188574098875,20.764878173465945],[-104.2717913733697,20.764698441272174],[-104.27170540145335,20.764479409615205],[-104.27105556491341,20.762839459677366],[-104.27071531591429,20.762015173016607],[-104.27052269263066,20.761548521153145],[-104.26956904568613,20.75921858186183],[-104.26877184782586,20.7572861203775],[-104.26813421921639,20.75574042550869],[-104.26569764414626,20.74992731917854],[-104.26554934510528,20.749711245098297],[-104.26371186316368,20.744532693091855],[-104.26371165095856,20.744532116529626],[-104.26331470054987,20.74345314568768],[-104.26282842066746,20.742309589502838],[-104.25986113831419,20.735331166042215],[-104.25418067925267,20.73040347321688],[-104.25248124024625,20.72969266654735],[-104.24888195807637,20.727352504703504],[-104.24763265473257,20.726336715533762],[-104.2470123484402,20.7252787147753],[-104.24678615710206,20.72426144339954],[-104.24684035588211,20.722188862987366],[-104.24602787749382,20.71740509749924],[-104.24418820749065,20.715903019656366],[-104.24181568810098,20.713433522997093],[-104.24200677813872,20.712283652999645],[-104.24142891872594,20.709984782305867],[-104.24250733236596,20.70838949436626],[-104.24527195752745,20.707625499947767],[-104.24755228717407,20.703919907756415],[-104.24814937853665,20.69962825866628],[-104.24721346407188,20.697519058645753],[-104.24476455371081,20.696480311644677],[-104.24329761620191,20.691745697408862],[-104.24449297822099,20.69220630201255],[-104.24668724061888,20.690146346734423],[-104.24799012020321,20.68968238765507],[-104.24789633441083,20.686463581377893],[-104.25238112870909,20.683594419765086],[-104.25315979349176,20.68229638758021],[-104.2522920263354,20.68065131064884],[-104.24578899902917,20.673813866662726],[-104.2472214728815,20.671711103611074],[-104.24677758148789,20.67076422467295],[-104.24343069505784,20.66802508615018],[-104.24090443998819,20.66710066394029],[-104.23862997643255,20.666129411575525],[-104.23638282799067,20.663721595130312],[-104.23666224486703,20.662261498004227],[-104.23706578072387,20.66160296162309],[-104.23799360431997,20.660710024903665],[-104.24701329861256,20.656726921831932],[-104.24956412607116,20.655512958049314],[-104.25142436704351,20.654805484608232],[-104.25530708361924,20.653282999616636],[-104.2564141926049,20.651306603728074],[-104.25676777378646,20.64928185647807],[-104.25712875835683,20.645913779747275],[-104.25793215492882,20.644855837404464],[-104.25853305486885,20.644598007887623],[-104.25976117655478,20.64387049428717],[-104.26016173938831,20.643447262539212],[-104.26024189807003,20.64132787632815],[-104.2585897293419,20.64009425377276],[-104.2558222761748,20.638090273661987],[-104.25459950633109,20.636885994610964],[-104.25287568235717,20.63579851953881],[-104.25049962608301,20.635181038970302],[-104.2496001130246,20.634519046331775],[-104.24885198770619,20.63345739448249],[-104.24717932400006,20.63236973885813],[-104.2469238154444,20.631492400476418],[-104.247202888446,20.630775089134033],[-104.24760008097093,20.629570623823213],[-104.25099309994584,20.629927104725994],[-104.2530077775163,20.63043307908424],[-104.25380072109874,20.629849305976165],[-104.25371714708899,20.62876814165611],[-104.25390775597606,20.62899647282643],[-104.25394076505512,20.625715021261215],[-104.25468781120838,20.618991082890147],[-104.25406368522539,20.617818361978323],[-104.25344417692207,20.618139691805936],[-104.25193022195572,20.614488271441644],[-104.25308042689107,20.612786047287102],[-104.25531395511774,20.612528395325853],[-104.25544114338345,20.61080431655239],[-104.25270088184647,20.609954615378285],[-104.25217182996715,20.608582952693666],[-104.25222551484694,20.60762905033232],[-104.25265666680588,20.607658415077083],[-104.25280148910821,20.60767668345909],[-104.25290837116,20.60744206189247],[-104.25263860086841,20.606230309685657],[-104.25302436300166,20.605136424325224],[-104.25363982596264,20.603418703169496],[-104.25650916303107,20.603544816701913],[-104.25685898485227,20.60345580442828],[-104.25951663784053,20.60507980558691],[-104.25987580713911,20.605716341416098],[-104.2604379692985,20.60716894299145],[-104.26103304343036,20.60760913810526],[-104.26432800997594,20.610594533259984],[-104.26564890087229,20.61237273194746],[-104.26642293824892,20.61366526011625],[-104.26937711521595,20.614971715239506],[-104.2741683832611,20.616369503803014],[-104.27474858555826,20.61689843529217],[-104.27509691761486,20.617358445249238],[-104.27510701918345,20.617957918003526],[-104.27529887764916,20.619619206879406],[-104.27549277455773,20.619999351679496],[-104.27499368638507,20.62216536301014],[-104.27576639269051,20.622712299649038],[-104.27678747889269,20.622869473784988],[-104.27723074755482,20.622871284130667],[-104.27832773065546,20.62347935815859],[-104.27939989040317,20.62453469427203],[-104.27980049218701,20.625259787528705],[-104.27991109592767,20.62678541096875],[-104.28010419418905,20.62817302780263],[-104.28104128996159,20.628383029310214],[-104.28175728479488,20.630276895772624],[-104.28133752777825,20.63125578430072],[-104.2814840354958,20.63153721822823],[-104.28167379583857,20.632291066278924],[-104.28118560149994,20.63314102843077],[-104.28089335206187,20.634187959280666],[-104.28279917447367,20.636227882339767],[-104.28247506028191,20.639197906596507],[-104.282223188064,20.63976169063625],[-104.28158216958684,20.640816806014243],[-104.28148529530847,20.641652883902054],[-104.28263873146074,20.64267562411851],[-104.28237773010352,20.64322362604554],[-104.28241325103886,20.64370067765708],[-104.28201419644,20.64446375823462],[-104.28126531407133,20.644823478935507],[-104.28095953478152,20.64784845343803],[-104.28119655968533,20.648877521348197],[-104.28351011411513,20.650673003501765],[-104.28382840857739,20.651636307389253],[-104.28476930966866,20.652887163206913],[-104.28488783475541,20.653401691648128],[-104.284872562864,20.653751863423622],[-104.28404323517861,20.654499449955324],[-104.28366824951718,20.65494020460443],[-104.2830881812115,20.655688869895073],[-104.2846559596369,20.658496711607313],[-104.28572014181191,20.65859385502523],[-104.28623965525225,20.65849180613236],[-104.28696342330494,20.658612898454294],[-104.28778653161146,20.659863497455206],[-104.28799023943634,20.66123650044983],[-104.28617295863762,20.667588313456292],[-104.28648244698269,20.668102069612985],[-104.28619039751533,20.668615406488243],[-104.28527697625077,20.669138063456955],[-104.28475078832508,20.66992742639411],[-104.28472919275771,20.671125559731877],[-104.28491757116115,20.67159399054725],[-104.28578391743179,20.672194015827586],[-104.28827752216864,20.674977358515832],[-104.28816970530278,20.67604438057498],[-104.28789810852618,20.676668256251617],[-104.28849899171621,20.678743735952935],[-104.28801704995374,20.679125566909477],[-104.28792080552381,20.679513687791598],[-104.28824005694861,20.680149324452202],[-104.28895399425187,20.683539621637067],[-104.28841257221035,20.68436345289348],[-104.28707318812786,20.68715104788828],[-104.2884866014536,20.68915661020378],[-104.28902146905887,20.68961983923407],[-104.28975846671045,20.69039478973889],[-104.29324361793942,20.691869450435888],[-104.29461671765847,20.69241193349808],[-104.29604030682628,20.692298604883547],[-104.29697226900544,20.691922050385017],[-104.29791769923554,20.69158153292085],[-104.29887345254406,20.692174658863678],[-104.30186789653737,20.69299797539594],[-104.3028963909174,20.692899362262096],[-104.30384799076762,20.69292123087729],[-104.30458917286285,20.693417545278976],[-104.30588631198094,20.695435357326573],[-104.30674150750423,20.696115328384508],[-104.30810221647863,20.697262082699467],[-104.3077114052308,20.70067275662268],[-104.3080395147619,20.701066552048474],[-104.30840701280238,20.701508090240793],[-104.30896798010411,20.702511152422176],[-104.3089628968853,20.703327967660925],[-104.30912839901401,20.70370065969564],[-104.31082771907626,20.70451305025921],[-104.31203415544263,20.705147279439643],[-104.3127410351799,20.705285143709148],[-104.3144730716549,20.706168170359376],[-104.31492726003302,20.706415033439043],[-104.31653485933026,20.707200228308864],[-104.31618411516297,20.70773725001311],[-104.31592996636078,20.708659487798457],[-104.3163331714515,20.709680492324537],[-104.3169774786711,20.710516573509267],[-104.3175427097841,20.711070921967234],[-104.31786259048408,20.711730674782814],[-104.31801892056319,20.712598341974626],[-104.31880198256306,20.713567586969305],[-104.31956711706965,20.713662339943653],[-104.32081931662816,20.71333623667425],[-104.323283557801,20.714495661466742],[-104.32311542990448,20.716404741968404],[-104.32360176267491,20.716850488807324],[-104.32658548072646,20.717650854003466],[-104.32756057816863,20.7162959801056],[-104.33130675172924,20.71662490994754],[-104.33193969107788,20.716748653577838],[-104.33283414556047,20.717760124897325],[-104.33293419182053,20.718497699715783],[-104.33589352903476,20.72145511884031],[-104.33707749323071,20.72176879035004],[-104.33715999296976,20.721763130869192],[-104.337758110616,20.721722101100966],[-104.33837175285703,20.721519340721272],[-104.33928982109745,20.721819440536137],[-104.33973667414205,20.722259525724894],[-104.34002052842044,20.72243659637138],[-104.34063476701493,20.722412005095862],[-104.34526104781025,20.723612800387002],[-104.3461320730525,20.723908491506904],[-104.3507980695498,20.725339688860117],[-104.35004178764382,20.72602921134842],[-104.35178921612714,20.729072706589363],[-104.3520268143169,20.729871801310594],[-104.35324904978359,20.732625069917106],[-104.35336125722193,20.73594976154402],[-104.35486027469705,20.735587679459854],[-104.35618199049316,20.73584724166733],[-104.35674250301224,20.73651644919528],[-104.35899583061308,20.737144724489326],[-104.36087218740357,20.739348120007946],[-104.36104777506648,20.740421148075086],[-104.36154469781201,20.742830211255296],[-104.36264951742805,20.743770347110853],[-104.36558938708032,20.7450029339289],[-104.3671416871585,20.744736741626014],[-104.37077954824923,20.74184101283879],[-104.37229889532699,20.741314409487472],[-104.37721233613729,20.742120150171218],[-104.37810741762439,20.742933101055428],[-104.37819748963625,20.743594833378438],[-104.37777296450031,20.744933991021696],[-104.37662044495573,20.746909802132848],[-104.37659698512147,20.74791076519017],[-104.37691286618792,20.749233378659767],[-104.37715222013588,20.74992956909648],[-104.37782068299839,20.751982728046187],[-104.37894311365721,20.755192369924828],[-104.38162112363966,20.758108693370843],[-104.3824863667403,20.760031452071587],[-104.38314351826114,20.76121645908603],[-104.3840630473972,20.761869778151038],[-104.38548052753248,20.762774952594498],[-104.38578336813418,20.76427252222726],[-104.38518112801478,20.764819806770106],[-104.38422760055823,20.765595149982857],[-104.38554785891102,20.767403566025166],[-104.38867738753748,20.768003717593103],[-104.39200580845608,20.77293308347282],[-104.39344056099571,20.773689548078437],[-104.39453874497957,20.774097529786445],[-104.39501314505344,20.774425286199005],[-104.39526775662483,20.775422836019175],[-104.39662237822176,20.78083678602303],[-104.39897301021568,20.78223532972379],[-104.40091243357983,20.782560506577397],[-104.4023035587872,20.783751699520792],[-104.40284763679591,20.78402430236372],[-104.40296539884275,20.78522759382912],[-104.40571894994423,20.78691768420623],[-104.40844965841575,20.78838631916551],[-104.40948775149104,20.78896699664989],[-104.41093739078349,20.789288019402136],[-104.41254307346622,20.790945392405547],[-104.4126877009599,20.792226180175305],[-104.41331934488369,20.792601537797793],[-104.41412460801371,20.793770243175572],[-104.41914969695955,20.79622231850732],[-104.41986014910191,20.795118524449776],[-104.42271649717037,20.791767174761503],[-104.42393348793473,20.791011019868506],[-104.42446677865848,20.790812012693834],[-104.42494581188288,20.79070996591679],[-104.42620548122875,20.790826920741438],[-104.42820203421331,20.791502076001848],[-104.42884521049638,20.79192376161791],[-104.42913778336515,20.793151364652203],[-104.42930459536882,20.793967741481822],[-104.42909875945634,20.796054437837427],[-104.42931482530582,20.79678781497688],[-104.43071098800948,20.797718355297604],[-104.43156123455361,20.798434722996262],[-104.43304981155285,20.79952547234666],[-104.43371967413702,20.79985974823137],[-104.43450616542901,20.80098298833849],[-104.43496068422468,20.803470079139174],[-104.43517753973094,20.80443025986648],[-104.43541354851789,20.804984483520798],[-104.43573585589775,20.805764837626384],[-104.43624222685753,20.805870471376863],[-104.43709884930871,20.805259734158028],[-104.4395958419617,20.80665084315723],[-104.44058346685381,20.807501765035965],[-104.4416772763484,20.80742052567831],[-104.4434915209435,20.806444588031013],[-104.44532418785951,20.805218182632416],[-104.44590701805151,20.80475360720169],[-104.44730618587465,20.80387532564771],[-104.44986637117466,20.803563817912902],[-104.45148345431397,20.80401127577602],[-104.45194433212134,20.804304320029416],[-104.4554787059306,20.806778539700872],[-104.45712451885947,20.80673892540949],[-104.4584088665261,20.80651558321017],[-104.45840376753245,20.808985422821024],[-104.46252144171586,20.810043850740215],[-104.46296338999531,20.810826831858208],[-104.46205603220449,20.81148215472973],[-104.46078630849297,20.811781200605253],[-104.46002454510682,20.813102688480797],[-104.46127455220164,20.813347147485842],[-104.4633285999401,20.813773598034516],[-104.46430630459531,20.813990650704568],[-104.465947677916,20.814837172113243],[-104.46681648695005,20.815275798810717],[-104.46842595258676,20.81634837886162],[-104.47424721359783,20.819907017383287],[-104.47582701973255,20.81953319004191],[-104.47697601213537,20.822878458816774],[-104.47860211287531,20.822601344618533],[-104.48031948877997,20.823255888589927],[-104.480460028648,20.823855533342964],[-104.48141845638952,20.825830908090836],[-104.48243434224895,20.8261055934492],[-104.48408843183603,20.829203499221308],[-104.48450393064115,20.82997837446578],[-104.48427177155492,20.830276786199533],[-104.48417451330891,20.831043163647962],[-104.484226374005,20.831575536685364],[-104.48479003996471,20.83249455462868],[-104.4848397213189,20.83290847018884],[-104.48917928342769,20.834855246914458],[-104.49098950704632,20.836261982260226],[-104.49389888197078,20.83897354734046],[-104.49646980907823,20.838437769220093],[-104.49818085940058,20.83878379012657],[-104.49917534018726,20.838288738412302],[-104.49953970833428,20.83817803913803],[-104.49980644592603,20.838817002785504],[-104.50288550824536,20.841553087616035],[-104.50308763628101,20.84216405182434],[-104.50283749522447,20.84306740162998],[-104.50162127153362,20.844992123162683],[-104.50184024237728,20.845667061781114],[-104.50307285372514,20.845959181638307],[-104.50396650082268,20.846526115553957],[-104.50427840424402,20.847264151262777],[-104.50422195208034,20.851496551203525],[-104.5045558209124,20.853959943779103],[-104.50639436149493,20.860844945807685],[-104.50725106766237,20.86125296996812],[-104.50835301330619,20.860256668991838],[-104.51123042442867,20.86009989687085],[-104.51258817535921,20.86148456305733],[-104.5132886196456,20.863333413422083],[-104.51346115464764,20.864549988019746],[-104.51356476703722,20.86549295234647],[-104.51399982863006,20.866501965112775],[-104.51453801048217,20.86679013614844],[-104.51656693967794,20.867553995779303],[-104.51956008780081,20.870337943777997],[-104.52034579771038,20.87169950212069],[-104.52189557339034,20.876734217785668],[-104.52215654214035,20.877744995213277],[-104.52222647634693,20.87889528845585],[-104.52238837705772,20.879307907492716],[-104.52319613230992,20.879833746972395],[-104.52476302088775,20.880499287682426],[-104.52345870493173,20.88409642329276],[-104.5240446216473,20.88522303547711],[-104.52902837550391,20.885634393542603],[-104.53063202501,20.882998208238575],[-104.53229800586433,20.882834502671983],[-104.53249325153081,20.88317335085901],[-104.53354954299124,20.88341052556467],[-104.53468561855055,20.885957534946897],[-104.53501699225575,20.887215876191078],[-104.53459412498813,20.888294531307395],[-104.53372752553935,20.888635998204677],[-104.53371385055402,20.888940950914844],[-104.53360277836515,20.88925869291984],[-104.53381461093005,20.8900169652602],[-104.5340692618006,20.890292503465787],[-104.53506575129393,20.892234785229675],[-104.5360255234196,20.893891950309694],[-104.53617868826893,20.8961643909077],[-104.53806595567511,20.897137036078504],[-104.53890385407277,20.89745777173397],[-104.54139504591723,20.897385738308117],[-104.5426468634974,20.897208524824634],[-104.54373266251889,20.898005737824235],[-104.54367984848483,20.898200687886344],[-104.54379002707213,20.899292021680196],[-104.5445718886786,20.900644235610855],[-104.54484465977004,20.90172447193669],[-104.54486617820754,20.90216052461335],[-104.54476652484465,20.902675583925884],[-104.54448246569956,20.904329914233074],[-104.54398001809017,20.905970653899374],[-104.5427365948396,20.908689863438838],[-104.54274145275855,20.90939449954334],[-104.54407823801785,20.91228542760757],[-104.54601784533793,20.91335789374284],[-104.5474601403617,20.914180854289498],[-104.54973532365057,20.915195922731414],[-104.55035518981128,20.916375983128887],[-104.55268845102023,20.917039643534963],[-104.55503156475498,20.917634551136587],[-104.5558112809324,20.918880593477354],[-104.55594291651067,20.92003447284077],[-104.5569704497687,20.920200402117302],[-104.5569096800279,20.923016883670698],[-104.55692169875454,20.924152381841054],[-104.55782294953929,20.924450267542056],[-104.55944074299032,20.925542556967002],[-104.56064340311895,20.926178659433162],[-104.561636552104,20.92615495265403],[-104.56534449330792,20.926933370983477],[-104.56634095695125,20.92835959038348],[-104.566861524449,20.928900688483168],[-104.56931104955413,20.930893446310506],[-104.57297574535795,20.92985551076714],[-104.57629212624357,20.930707463169654],[-104.57712420551997,20.932478163242422],[-104.57741679637002,20.933046107656935],[-104.57771841123343,20.933462505187265],[-104.57862377892337,20.933932420672818],[-104.57885383577582,20.93368616119443],[-104.58001681548336,20.933914016075846],[-104.5828810843164,20.934345191726095],[-104.58437673998532,20.934277432788235],[-104.58600842232221,20.93377465088679],[-104.59121534367631,20.934347487736716],[-104.59129947494404,20.93383927642674],[-104.59115132414848,20.932850263159025],[-104.59150964774773,20.931531376089595],[-104.59311988272498,20.93164412730914],[-104.59499191251166,20.93210889543286],[-104.59568276963381,20.932020029232604],[-104.59718401443712,20.93134449287612],[-104.5993095417171,20.931433955668183],[-104.60098528586241,20.931437712407444],[-104.60713814670038,20.926232364734005],[-104.61020171832291,20.92588404016692],[-104.611838093139,20.92321169093384],[-104.61696418959104,20.923141977887155],[-104.61776373953728,20.923616762655058],[-104.61903941407672,20.923793895557367],[-104.62314672116457,20.926169471599053],[-104.62494274539074,20.9249580006026],[-104.62654773402454,20.924412307119326],[-104.62853272880199,20.923865690413322],[-104.6294218949538,20.924335467305696],[-104.63216374322468,20.926687423204896],[-104.63457660191426,20.931852158562492],[-104.63679416529271,20.933397514794137],[-104.64120012509727,20.93398343420273],[-104.64576204814801,20.935269657346396],[-104.64701522645976,20.935410613304214],[-104.65076386557672,20.932970079346887],[-104.65286367409942,20.932168595777284],[-104.65471998702077,20.932019020989515],[-104.65895419503761,20.934017778403813],[-104.65952573627396,20.935217568169662],[-104.6600963197335,20.936019415138958],[-104.66221376129022,20.939385759703327],[-104.66141622427256,20.94343640902025],[-104.66191519034368,20.943874314485583],[-104.66716527213077,20.94143888668532],[-104.66914052694017,20.941308258591903],[-104.6724941312014,20.942949197875578],[-104.67568018504056,20.94279728346953],[-104.68099996268847,20.94384061560862],[-104.68184072979,20.945875918016668],[-104.68265836120565,20.949159308215485],[-104.68173490766134,20.95168398990961],[-104.68125160165425,20.952179179097413],[-104.68020669697455,20.952266930961116],[-104.67892046415011,20.953570272503555],[-104.6786667947394,20.954697518123794],[-104.67894701983079,20.957218855998406],[-104.68105792728807,20.960666696905093],[-104.68412280142434,20.961910971177645],[-104.6880492823849,20.96198534815551],[-104.69261969742837,20.961673600082065],[-104.69765132203514,20.965367572578145],[-104.69847941601938,20.96535293827037],[-104.70272740397274,20.967205530648187],[-104.7057109793547,20.96685159302018],[-104.70829800958359,20.969596782961844],[-104.70793024556309,20.97090845262221],[-104.70701677846677,20.9715989759938],[-104.70746498179784,20.973135434678397],[-104.70889034316338,20.974416515882183],[-104.7134315429629,20.973339522605556],[-104.71615773371735,20.974928427014106],[-104.71451016313995,20.97715471577868],[-104.71417481496621,20.977769752337792],[-104.71443813407512,20.979331262970902],[-104.71781007378797,20.981811310544117],[-104.72320903858702,20.98280273914679],[-104.72742590339254,20.982536170451283],[-104.72968608879637,20.98423598768636],[-104.7284646087279,20.985743451606083],[-104.72734116834005,20.98865661332792],[-104.726169575271,20.991449667815345],[-104.72670519498723,20.993854656606572],[-104.72798151795774,20.995049999840717],[-104.72709766856656,20.996302335068094],[-104.7255060449159,20.997965935888203],[-104.7257004511639,21.001227722786723],[-104.72701305441365,21.00292193969875],[-104.72576066926007,21.003745186019785],[-104.72612913091513,21.006692465037077],[-104.72822791403968,21.00745946133094],[-104.72847336864714,21.011404863243342],[-104.72998914969179,21.012288248017],[-104.73083197937638,21.01248673213786],[-104.73202255540889,21.01092552607463],[-104.73250317006318,21.009926983426055],[-104.73296538807978,21.00936971375546],[-104.73419049741943,21.007976649739305],[-104.73703357406083,21.007027489481345],[-104.74139451527566,21.006033461923153],[-104.74287308618045,21.006308817189563],[-104.74484224792178,21.00709396172897],[-104.74535181954809,21.008711098643516],[-104.74724216849916,21.008595972379794],[-104.74990203562561,21.00904010204613],[-104.7505271163003,21.00940106712352],[-104.75141234377031,21.011820605828063],[-104.75249911455228,21.01227971697267],[-104.7553503530462,21.012374566807352],[-104.75877581228212,21.012126561725097],[-104.76028824901596,21.011913068041565],[-104.76257521586223,21.008892309980467],[-104.76692975187427,21.010624139418894],[-104.76819261081738,21.01000294015887],[-104.7702475174878,21.00898664754436],[-104.77171235110728,21.008601075392562],[-104.77290393448448,21.009627496129212],[-104.77373286450927,21.011952792695524],[-104.77416257371226,21.015371097753416],[-104.77507917586513,21.017531240644075],[-104.77693358071645,21.017546867361773],[-104.77799397988531,21.01795928497347],[-104.77844881931622,21.01941075522967],[-104.77883148445085,21.020205381449955],[-104.779390744914,21.02118191574266],[-104.78063126586966,21.021937001709546],[-104.782462152969,21.023359060092275],[-104.7835441433295,21.022266285171384],[-104.78351670425315,21.020875015248123],[-104.78458623059026,21.019879201651065],[-104.78822071990322,21.016267944530682],[-104.79018830260304,21.015021324455574],[-104.79106685986994,21.01485521658452],[-104.79212550337252,21.01498592011535],[-104.79387836358416,21.014922542178113],[-104.79544859326415,21.014129371155946],[-104.79956561864304,21.015728823559186],[-104.80265849363303,21.016591490563314],[-104.80331533141305,21.016203499481378],[-104.80382584817534,21.01529835491425],[-104.80759320091522,21.013531231714126],[-104.80941170674538,21.012070962534438],[-104.81091859515442,21.012041015734724],[-104.81241431123436,21.012952686470953],[-104.81457337238396,21.01512980759628],[-104.81718675445353,21.01454212729152],[-104.8198156879252,21.014664404532994],[-104.82266611603472,21.01521691576977],[-104.82524320894322,21.016637757426906],[-104.82709876986974,21.017741186767864],[-104.82816384105581,21.01807249089245],[-104.82906669665545,21.017438446463927],[-104.83030106750908,21.015113478897888],[-104.83073624710613,21.014330742497748],[-104.83186369622115,21.013946746066324],[-104.83323343887577,21.015264853341876],[-104.83379464652677,21.01679162937495],[-104.83495078960084,21.01880822910465],[-104.83607908792902,21.01970207562306],[-104.83845434923848,21.019118377768564],[-104.83834995898735,21.01783729854418],[-104.83802307177211,21.017038589204788],[-104.83737458191536,21.015658698694324],[-104.83957653615863,21.01300179332128],[-104.8410611230097,21.007318949947603],[-104.8417106383053,21.006302252484886],[-104.84211895920407,21.00606129919197],[-104.84366266695059,21.005838914989738],[-104.84470040158243,21.006289239033947],[-104.8478205081741,21.005565368993928],[-104.85034332547536,21.005116379510298],[-104.85197665369702,21.0054732054208],[-104.85365599502313,21.00495768993062],[-104.85359349952597,21.003993045661446],[-104.85193942324656,21.0020610854682],[-104.85119005176836,21.000663817433235],[-104.85507643341839,20.996483536181415],[-104.85660050792791,20.995192515542897],[-104.85882430739167,20.993973297373827],[-104.85980267982222,20.993870253901207],[-104.86065455696883,20.994495785723984],[-104.8633522283273,20.995948833671946],[-104.86686894726574,20.99520136676614],[-104.86818008453764,20.993155402054526],[-104.86866483353725,20.99164286430988],[-104.86900743239198,20.99070655831946],[-104.87350480204123,20.98235833047886],[-104.87426633056884,20.981807144420486],[-104.8764002716498,20.981682099019224],[-104.88142757520603,20.980174080415566],[-104.88215150129594,20.97844030747808],[-104.88171569914067,20.977325196076436],[-104.88123975429903,20.976742330990476],[-104.88115036426001,20.97557236737987],[-104.8825337061183,20.974376806623354],[-104.88420103163924,20.97320295809294],[-104.88482013865575,20.973211029856657],[-104.88629796112895,20.97322176976536],[-104.88839290513397,20.973704777126784],[-104.89042798862954,20.972879150676363],[-104.89091257864294,20.971049971344428],[-104.891958421641,20.968759523402525],[-104.89373291124707,20.966862092104975],[-104.898845995452,20.964165682993496],[-104.90062747731952,20.96274720121096],[-104.90143786386977,20.961054219533082],[-104.90226096816309,20.956068181164994],[-104.89875618727325,20.95362177373721],[-104.89878098434343,20.950327289822724],[-104.90052602077611,20.946340653851564],[-104.90216543754093,20.94539425402013],[-104.9028493879402,20.945362165260917],[-104.90426906699025,20.945571948674683],[-104.9069987399015,20.942118224109663],[-104.90926726683813,20.942791489614365],[-104.9127659981421,20.94429253260563],[-104.91423044482895,20.943394245575405],[-104.91680500396734,20.94237027057892],[-104.9231043963839,20.940110515509275],[-104.92771454991237,20.939718749865847],[-104.93248715321994,20.937220492958545],[-104.93377102277532,20.934851713797798],[-104.9346345361102,20.934552628140068],[-104.93493622082644,20.934778909357135],[-104.93979254271835,20.934961202567706],[-104.94124237069673,20.935107333788437],[-104.94170066548321,20.934576317683366],[-104.94390256078617,20.93262664285737],[-104.94500434278967,20.932686616889157],[-104.94594330739415,20.932309316285057],[-104.94766336103748,20.931022266798834],[-104.9515955682042,20.930222699708793],[-104.95238733895872,20.930242198553458],[-104.95339202166906,20.929259595718975],[-104.95550584936586,20.927547637908617],[-104.95847779826147,20.924725883583676],[-104.95972182303859,20.921984267047776],[-104.96054966268787,20.91987695863554],[-104.96389433684055,20.91912619532252],[-104.9642401898401,20.917269574469913],[-104.96644856537944,20.913233961081175],[-104.96724405359225,20.909508090171073],[-104.96830733925094,20.909222117346644],[-104.96923347352475,20.909017943154595],[-104.97394503683466,20.911661489718995],[-104.97939024954269,20.91367782187092],[-104.98078440967703,20.914280816336316],[-104.9833980546502,20.916450292713705],[-104.98790378263328,20.920696863576836],[-104.98878145285687,20.9214287737459],[-104.99124666489058,20.921510075207493],[-104.99334077324033,20.920541545058086],[-104.99687814536071,20.919949118043974],[-104.99775952594479,20.919135114979554],[-104.99935692428028,20.914303244110272],[-105.0000330092783,20.913127572935423],[-105.00092026398232,20.911018227054342],[-105.00407518940125,20.9116775579555],[-105.00351015447683,20.91257647014163],[-105.00227596077173,20.913075629791763],[-105.00215786378743,20.915919249523483],[-105.00264391427208,20.91677421384145],[-105.0048254631447,20.92128751821241],[-105.00592349306777,20.922451477064726],[-105.00773106926312,20.92167507508293],[-105.00996501861158,20.919911467287136],[-105.01587457352127,20.917711619810518],[-105.01805776014652,20.91845993649804],[-105.01926666870884,20.91834662574189],[-105.02018213976106,20.918097155162968],[-105.02049597603002,20.91763169481783],[-105.02070846083683,20.9172709224041],[-105.02027404312287,20.914673757588446],[-105.02063146105331,20.912287743063473],[-105.02387349339637,20.91078513496757],[-105.0275972311307,20.91142421668917],[-105.02856482785421,20.910888415894306],[-105.02884164464052,20.909753200713624],[-105.03017958196654,20.909044723116665],[-105.03573151427497,20.911512278378837],[-105.0390727351263,20.913114822016553],[-105.03902908204043,20.91410757212907],[-105.03914356645419,20.916746023918904],[-105.03893165969527,20.91854344786958],[-105.03732764587085,20.92117850633292],[-105.03631884886147,20.92381320557388],[-105.0363430544574,20.924887263394737],[-105.03797458855871,20.92670435991738],[-105.03856410602708,20.92751157002664],[-105.03916324805408,20.929431580259006],[-105.04038136331405,20.930772249541292],[-105.04463124856005,20.931441072671873],[-105.04591951813597,20.93342630666399],[-105.04743996906552,20.93438579677428],[-105.04868876561034,20.933152216002156],[-105.04947857762659,20.93192692618095],[-105.05226005750256,20.932194328057562],[-105.0544397454322,20.93284881748167],[-105.05631321022821,20.931978594349857],[-105.05745779483834,20.93104919194201],[-105.05872872318685,20.931284207740305],[-105.0596202933711,20.932902177639164],[-105.0605383275938,20.933478379203507],[-105.06337790056318,20.932879604358504],[-105.06408449789171,20.932219421896036],[-105.06696205359657,20.93182821116841],[-105.06935593711108,20.931411372217326],[-105.07076811389015,20.930049291683986],[-105.07280198456141,20.927995005232447],[-105.07427270447533,20.928715583916983],[-105.07504913030664,20.929658524121123],[-105.07705073965235,20.93049524253746],[-105.08070121656363,20.93138018786442],[-105.08195875003872,20.928826671538218],[-105.08396548149796,20.92635636011704],[-105.08615605427997,20.923472462330153],[-105.08760482766985,20.92321942970665],[-105.08789262508668,20.923197692713643],[-105.08823763649269,20.923062292515738],[-105.08826375586784,20.922749189818546],[-105.0884833964522,20.922161259927123],[-105.08933418904883,20.92198775057591],[-105.09028269927529,20.92171848596348],[-105.09230304585628,20.92075023803386],[-105.0960346268775,20.919466864322374],[-105.098641480433,20.91943410701225],[-105.09935075394236,20.918080105870104],[-105.09862741942243,20.91695664299573],[-105.09751459483272,20.91618913248618],[-105.09738897032884,20.91585930527674],[-105.09815515485968,20.91508423179721],[-105.09875562075678,20.91459865285998],[-105.10077735572776,20.913606134630413],[-105.10449268622364,20.912321944740142],[-105.10451476856815,20.909537392113123],[-105.10415017143691,20.90908148810348],[-105.10489267280803,20.907777161754495],[-105.1056820994807,20.907916980856385],[-105.11131700414364,20.905555923098518],[-105.11223296852978,20.903953545534932],[-105.11144981532965,20.901891639758844],[-105.11308431278673,20.899881343535128],[-105.11548397510336,20.900884330368456],[-105.11767149061808,20.900311913172686],[-105.11700883087946,20.898313979188742],[-105.11672882624879,20.897902547221292],[-105.11712664978182,20.896972396403612],[-105.12017732016142,20.895385583172924],[-105.12591795513191,20.890569410815317],[-105.13122461455947,20.888889664945964],[-105.13317343991929,20.888818458472542],[-105.13862407929531,20.887565125801643],[-105.14254611272332,20.886465823492927],[-105.14304041807071,20.885240714790598],[-105.14254832164784,20.88377161198588],[-105.1400623548306,20.882546507454435],[-105.13914629596877,20.88193949047252],[-105.14119404569192,20.87560581607545],[-105.14311225557236,20.8735331369831],[-105.1441833881691,20.87280813865135],[-105.14526759559152,20.872280740601298],[-105.14819063737156,20.86866944690894],[-105.15128559017518,20.869198021649368],[-105.15350116006238,20.86839466158449],[-105.1538738394434,20.866176410525384],[-105.15262214154865,20.86262385176002],[-105.15261305881472,20.862235538267726],[-105.15274985356757,20.86189277438342],[-105.15597551871423,20.86090454816275],[-105.15819928123926,20.859521715175276],[-105.16056331474005,20.85741523022773],[-105.1601128471284,20.856212369765842],[-105.1570916257665,20.855481902616646],[-105.15556941628171,20.853888318327222],[-105.15540536227445,20.853064704526957],[-105.15635212062847,20.851597046669667],[-105.15779033026502,20.850107675822585],[-105.16223568058433,20.849324532898038],[-105.1628295003216,20.847896113673187],[-105.16227905660719,20.84650857015879],[-105.16123437047156,20.844395138231505],[-105.16109747975929,20.843623730978436],[-105.16140866604741,20.838721097428788],[-105.16178981076354,20.83798845338788],[-105.163027832186,20.83665922758115],[-105.16379399903525,20.835044390859537],[-105.16300035602518,20.833174251795526],[-105.16215431412456,20.83261705395722],[-105.16163457247961,20.831594415292102],[-105.16262777639224,20.830120232631714],[-105.16398478259413,20.829832100422266],[-105.16493969448283,20.829392600852543],[-105.16594029843907,20.824748464661923],[-105.16542733961012,20.821177354496115],[-105.16708509475154,20.820348638782434],[-105.16967752358761,20.8215246167735],[-105.17183228889911,20.820161236109186],[-105.17140046706498,20.818445914199913],[-105.17118633223771,20.816802141493213],[-105.17207699991508,20.816033083992863],[-105.17267904686872,20.815344950564736],[-105.17394295248863,20.81394344510676],[-105.17120376235363,20.81121003145114],[-105.17105453441002,20.81121233137759],[-105.17210762698113,20.807777628438828],[-105.17276149649871,20.80603830111363],[-105.17085278549769,20.805218812713292],[-105.16925304944783,20.804488244851996],[-105.16755650607877,20.803743702113593],[-105.1684392563148,20.801764274232596],[-105.17097434896107,20.79610861050628],[-105.16701797584557,20.79447617450637],[-105.16227567666846,20.79251927334917],[-105.16355249583779,20.789655405919575],[-105.16357543179333,20.789603960217676],[-105.16491199233354,20.78660599724151],[-105.16565251108989,20.784944933678503],[-105.16636779982605,20.78334040838081],[-105.16745924210232,20.780837679677973],[-105.16781597041705,20.780210210206008],[-105.16988557910219,20.775590532863475],[-105.17067168638499,20.77391908393082],[-105.17131537597953,20.772402785954398],[-105.17194653263766,20.77091597567437],[-105.17261901062881,20.76946216815395],[-105.17337191186306,20.767773591014304],[-105.17347896418289,20.76771731139121],[-105.17595318438111,20.768602272868975],[-105.17817693169644,20.769632635347705],[-105.17826953263068,20.769669801640703],[-105.18059296338663,20.770589718811948],[-105.18219521691526,20.771199515798173],[-105.1852557400818,20.772420716214697],[-105.1928992239296,20.775473510954157],[-105.19618928419243,20.776800342690763],[-105.19736562129594,20.77651665157697],[-105.20000010998672,20.773593663756287],[-105.20060100194831,20.773212842391786],[-105.20101638592746,20.772624546085353],[-105.2010037970295,20.768904488586315],[-105.20221456357706,20.766785425003945],[-105.20312820154936,20.766076024512188],[-105.20455699375447,20.765286573656056],[-105.20508051192303,20.764866370070877],[-105.20582549464484,20.76414484394843],[-105.2072307673497,20.76412992711431],[-105.20841223169055,20.765328251723417],[-105.20889324453913,20.766105189764062],[-105.20914837487857,20.76630652083128],[-105.21047880131096,20.766343345343273],[-105.21214133416902,20.765487683205833],[-105.21515760471397,20.76318237582211],[-105.21899769530103,20.7620304522556],[-105.21970933227357,20.761650789503335],[-105.22137677315317,20.759459614525895],[-105.22285422021963,20.756164873041826],[-105.225186448221,20.754001518949337],[-105.22586566659118,20.753425337025476],[-105.2276454462845,20.752276804123596],[-105.228717572574,20.752038763283963],[-105.23006123504524,20.751599826135248],[-105.23068793346374,20.751319736954088],[-105.23139063782878,20.750565980859562],[-105.23202785449894,20.749813610223896],[-105.23255709060135,20.74898514094906],[-105.23339143911306,20.748284276424215],[-105.23380627023948,20.747833849424183],[-105.23415859524323,20.74755142301393],[-105.23516616725323,20.747417565778903],[-105.2387478753057,20.748141370281132],[-105.2399157838957,20.747351281853355],[-105.23967969751737,20.745288707243787],[-105.23920583091763,20.742773858795374],[-105.23771906040895,20.73872749420832],[-105.23850875743824,20.735225725336477],[-105.23845140318838,20.732264016970646],[-105.23691630066492,20.72823493012106],[-105.23913979493454,20.725938350200693],[-105.24070502939435,20.72607252816897],[-105.24107045416775,20.72612660601129],[-105.24394034127869,20.72682146872529],[-105.24499807371296,20.726055104973454],[-105.24515877237036,20.725521622549365],[-105.24555203137493,20.72474923784614],[-105.24564545782607,20.724115985631556],[-105.24546275784309,20.723093754837862],[-105.24520551926128,20.722254446816407],[-105.24398596717367,20.720420049863264],[-105.24369651015775,20.719741127495013],[-105.24391061818034,20.71848747142235],[-105.24412942810045,20.717429519482607],[-105.24602748677239,20.714322491668554],[-105.24518569047757,20.710935822601243],[-105.24337233869346,20.709817987343854],[-105.24204354268034,20.707120290148794],[-105.24201279347528,20.705658488822394],[-105.24333048749293,20.703524906507994],[-105.24642588687294,20.704132164464454],[-105.2486554073933,20.70475676385888],[-105.25044164536376,20.705013277058754],[-105.25287657930562,20.704908099562886],[-105.25594700925404,20.702766195047957],[-105.25692921209532,20.69948665469491],[-105.25635437166227,20.696046916985495],[-105.25654667315831,20.69456349660993],[-105.25794955368491,20.69356387094666],[-105.25940299662079,20.69315603340334],[-105.26060720815673,20.692415749249903],[-105.26129107677446,20.69172862476728],[-105.26268388423767,20.689191763232373],[-105.26156674009576,20.6872419653929],[-105.2610292618212,20.686963801433137],[-105.26054538433738,20.686470477861974],[-105.26026542013784,20.685628421943875],[-105.26027849395285,20.684556131906106],[-105.2603436596441,20.680783616360486],[-105.2629470632694,20.679393830386857],[-105.26384383332095,20.67906098181419],[-105.26435125940912,20.678914561365275],[-105.26498708170942,20.67869561679362],[-105.26620848609747,20.67925065309089],[-105.26686248034088,20.680097898807333],[-105.270289480943,20.68247140856994],[-105.27207969142347,20.683618184456463],[-105.27402993187508,20.682736403159936],[-105.27488920048177,20.68278598547562],[-105.27537435107575,20.68303250563457],[-105.27578011511031,20.68314626879203],[-105.27683018618586,20.682516886698238],[-105.27893216085278,20.681334728611034],[-105.27895467191593,20.681256566466743],[-105.27934978264574,20.679180979581076],[-105.27908069819273,20.677882249531706],[-105.27871795291446,20.67684408960514],[-105.2783944196193,20.67587560032564],[-105.27598685026038,20.67556242223202],[-105.27535180262743,20.67566974421925],[-105.27436095009114,20.67562234572557],[-105.27420996260969,20.674326697156687],[-105.27435445031591,20.67371160191584],[-105.2755506128143,20.67240433461683],[-105.27774893082744,20.672259089924978],[-105.2788343714738,20.67236940897152],[-105.28053415908488,20.673252751524558],[-105.28121776490883,20.67305571832253],[-105.2810000251855,20.67196576551686],[-105.27837957707254,20.671910033408153],[-105.27337328425915,20.669167441301283],[-105.26436453096807,20.66563161423869],[-105.26056852354964,20.662808921584656],[-105.25439602984227,20.659763561203704],[-105.24737725051813,20.65446803445616],[-105.2450716671189,20.653314525199846],[-105.24171300186805,20.64372178801483],[-105.23804569692919,20.641208990638404],[-105.23361983514155,20.635349727691562],[-105.23217463644448,20.62464683004646],[-105.23295828504257,20.615433297143227],[-105.23560978249014,20.60951342169278],[-105.23854813676542,20.604926205768322],[-105.23956940650265,20.597682342956887],[-105.24119720490802,20.594659366143276],[-105.24297144184072,20.593806882217166],[-105.24530618322785,20.587357563607554],[-105.24438120219446,20.585129090423436],[-105.24483568009498,20.58195143806637],[-105.24834774273859,20.57731570747285],[-105.25033494599359,20.572581767951192],[-105.25078697961027,20.56967856434943],[-105.25473495981038,20.564506857409526],[-105.25528511988358,20.562144448647757],[-105.25780020442886,20.5576952957519],[-105.25974646200467,20.5559098702833],[-105.26384710741411,20.55551193687421],[-105.26508223917864,20.553532135009903],[-105.26958133619081,20.551861567313438],[-105.27417650073386,20.54823829998338],[-105.27562219985992,20.548873651621363],[-105.27975236356332,20.546221032131427],[-105.28371355324822,20.545023222375676],[-105.28735052127098,20.544871577463766],[-105.28796404800039,20.539332836287997],[-105.29231251239605,20.53553065730125],[-105.2912091876126,20.534214760376813],[-105.29293398567546,20.53192043134004],[-105.29707914136947,20.533377323196248],[-105.29633720592136,20.530981540508833],[-105.30118994287676,20.52946771579809],[-105.30236518892912,20.527630638160133],[-105.30924035957685,20.52484763810787],[-105.3162862926369,20.519813574816],[-105.31944180140874,20.518907359206935],[-105.31900624671778,20.51646516702101],[-105.31573296430383,20.513041556298276],[-105.31657847806446,20.511514932262912],[-105.3203292909223,20.513486214074476],[-105.32498248590804,20.5140491501532],[-105.3254339038129,20.512046279831736],[-105.32781746440088,20.513038230125346],[-105.33623297346008,20.51176477931034],[-105.34176342929226,20.5095752974388],[-105.34275650493282,20.50795921179906],[-105.34730812181141,20.506791324315998],[-105.35292054618242,20.508534353615744],[-105.3622505628689,20.505845722726235],[-105.36689973203562,20.505389966355324],[-105.37052133183397,20.50425172276897],[-105.37081801365821,20.505949452973027],[-105.37328541597986,20.506237290525576],[-105.37379171652174,20.504734899177038],[-105.37803948686184,20.505297077290322],[-105.38346636213026,20.505033766129543],[-105.38594458604825,20.50718369146972],[-105.38945630109504,20.507186740411044],[-105.3913241730636,20.506024866175494],[-105.39533192255095,20.507835882675636],[-105.39894871015787,20.50742180509684],[-105.40012946024814,20.508885601946076],[-105.40194063967579,20.50674299618072],[-105.40466266029068,20.506743001670543],[-105.40880968623304,20.5042841458407],[-105.4100975313421,20.504771521169744],[-105.41183046726496,20.50277976791267],[-105.4158255682342,20.503882034060894],[-105.42461024862479,20.500302056859482],[-105.43027289479397,20.499512743956075],[-105.43125108411971,20.50057223669421],[-105.43582773101832,20.500241341939272],[-105.43931100496707,20.501364701432124],[-105.44223500868543,20.501168942905963],[-105.44568522085115,20.498755639474552],[-105.44534105282969,20.495637867690164],[-105.44252696560648,20.491620899524605],[-105.44528441314128,20.48829605167208],[-105.4480944719769,20.488551010856895],[-105.45016299652684,20.490946508151126],[-105.45582905401312,20.494671951478608],[-105.45814286902038,20.4954747765986],[-105.46129932590406,20.49505119222391],[-105.46457974398123,20.49635697849061],[-105.47563286369194,20.495864579034787],[-105.48107441967608,20.49342831770275],[-105.48402500163661,20.49404745138787],[-105.48772686741779,20.49105889167015],[-105.49487773758938,20.48940033986986],[-105.49619495892927,20.490688288362435],[-105.50261095477623,20.492531932559928],[-105.5076018001264,20.49160721835284],[-105.51026045693158,20.49261565652762],[-105.51347386884015,20.492096857253102],[-105.51787496367558,20.493514183696334],[-105.52084762039078,20.49214289238796],[-105.52953914591973,20.492078716939886],[-105.53830718760025,20.48885237813255],[-105.54034135070611,20.489453646536674],[-105.54479773860561,20.486251833594963],[-105.55000449787065,20.487304879655085],[-105.55233795554676,20.486707824526945],[-105.55382552866905,20.487883032990283],[-105.55798325988383,20.487279564151606],[-105.55894709121515,20.486150232319858],[-105.56635419195027,20.482524349395817],[-105.57376080077717,20.483553717599307],[-105.57894658164003,20.481155369257465],[-105.58586037544825,20.476419114899898],[-105.58891243420265,20.47579423545784],[-105.59182734727244,20.473544246817255],[-105.59664958337754,20.47441918927035],[-105.60082641769827,20.47444577756829],[-105.60462343630968,20.475499345524383],[-105.60620087113449,20.473211070397667],[-105.60804309769486,20.47351060857096],[-105.60901205452592,20.47126321986508],[-105.61444722605671,20.471355535314046],[-105.61907515915993,20.465858139660156],[-105.61915420379415,20.46425265540813],[-105.62218712988425,20.46160972824282],[-105.62428261479579,20.456885895349615],[-105.62692455426884,20.455278904976296],[-105.62836769685651,20.452291048800475],[-105.63247377012601,20.449615808502756],[-105.63263086869222,20.448203471514432],[-105.63668656682398,20.44530504802441],[-105.63924564169776,20.445129454685798],[-105.6421542297432,20.442482743180733],[-105.64377122737687,20.44236522574016],[-105.64783711688966,20.444888653517467],[-105.64815308513909,20.443178239113536],[-105.651304130742,20.441260008021743],[-105.64973392902351,20.438404554339513],[-105.65317278445139,20.429225976234648],[-105.65659895859517,20.42793504301335],[-105.65755798956536,20.42590874544078],[-105.66229690620702,20.427879263825673],[-105.66398250117572,20.426755810306133],[-105.66775930851065,20.42801617011662],[-105.67065294911515,20.424169031700615],[-105.67260909846482,20.417860288382087],[-105.67050492759074,20.414233132988272],[-105.67403666453004,20.413862275105203],[-105.67379549023178,20.411784342325575],[-105.67199085019428,20.41063950253624],[-105.67235231304363,20.40739356932653],[-105.67408271360046,20.406833308276873],[-105.67769879180798,20.408109111976216],[-105.68012014620115,20.4119699605788],[-105.68409456941185,20.411175685897945],[-105.687608077437,20.41202909257572],[-105.68862603065384,20.410300311233982],[-105.69443694911126,20.40970501586895],[-105.69524929419686,20.405652147962655],[-105.69358699248363,20.400799497996843],[-105.69360462749546,20.397226926465294],[-105.69240135948303,20.388271570909126],[-105.68981594665973,20.383188249264833],[-105.68536708020645,20.369261464316935],[-105.68665315494519,20.367647654754535],[-105.68188497937979,20.359837830389893],[-105.67796101335529,20.354952018314634],[-105.67580531027488,20.3513564350838],[-105.67611536133342,20.347897368427084],[-105.67358862603209,20.34292280948631],[-105.67231117198844,20.34207017864412],[-105.67056624836533,20.338081996575056],[-105.66761917282878,20.335604177631637],[-105.66659612928731,20.332843874002776],[-105.66301790412592,20.32960871054098],[-105.65944950677721,20.325354073179312],[-105.65665041172662,20.320920179609857],[-105.6561617842666,20.317713055681452],[-105.64831251788576,20.312091463537513],[-105.64025201322636,20.305568535906218],[-105.62961125814343,20.295960551219082],[-105.61218051910782,20.282593088758745],[-105.60304437047142,20.27494977975101],[-105.59021242209502,20.26305450013814],[-105.58477649300852,20.255614433861467],[-105.58389998856467,20.251802440474535],[-105.58478022023104,20.24794839003755],[-105.58244574429892,20.247087063503898],[-105.58211624764817,20.24508617665481],[-105.578397518651,20.239025788843662],[-105.58106919973403,20.23819693879426],[-105.57486692817895,20.23518820156903],[-105.57463928753589,20.238394158130575],[-105.5722828670954,20.239157060724267],[-105.5627416869047,20.234927799069453],[-105.55919962839528,20.232154675988227],[-105.55539236450187,20.22668337453723],[-105.55316676044652,20.222339290443358],[-105.54872585219482,20.209988822413777],[-105.54649168328012,20.2025691216366],[-105.54492126394075,20.19396276741213],[-105.54281648923461,20.185743060312234],[-105.54295384632951,20.18210861150368],[-105.54523470952915,20.174999580105123],[-105.54799029380735,20.169901053866738],[-105.54749524891872,20.165281717438177],[-105.54851014704639,20.159723751554225],[-105.54864283202511,20.154598643336385],[-105.54757810723794,20.140645803092468],[-105.54810706163369,20.137193886987347],[-105.54742200542796,20.135023319972163],[-105.54727007238245,20.126869903037687],[-105.5462522706423,20.12415616192493],[-105.54533331624219,20.11183025867666],[-105.54599659196407,20.10211044659917],[-105.54707129890949,20.09933038025048],[-105.5489690932236,20.09850828549162],[-105.54819784965844,20.09436940474751],[-105.5445452325859,20.09127163875695],[-105.54185999878445,20.0841615667282],[-105.53953609788988,20.080429586965465],[-105.53425977001785,20.069305117086174],[-105.52841374444995,20.058680230891127],[-105.52164373800412,20.043476202480633],[-105.51467845424617,20.02984846352416],[-105.50543697035948,20.012728297988076],[-105.49669608058724,19.998453245395126],[-105.49060515677309,19.989064729768472],[-105.48747791137197,19.985053802589846],[-105.4713959696208,19.96291156074909],[-105.46770027764745,19.957379448641802],[-105.45742876654987,19.94490338723864],[-105.44883885510649,19.933968078789633],[-105.43182044591822,19.911074909904983],[-105.42195643014782,19.897116279634815],[-105.41056540297126,19.88211609592156],[-105.39783777677599,19.86664372984643],[-105.39496863137464,19.863603826715973],[-105.3888157884432,19.855715674733176],[-105.38370997139896,19.850722915123526],[-105.3804930729491,19.846425833404282],[-105.36901386636708,19.834061422856053],[-105.36630913771262,19.83161842282425],[-105.35828140354278,19.822720785144497],[-105.34364347942,19.80349482044403],[-105.33898868046458,19.79618712051331],[-105.33287583589652,19.785443601416375],[-105.32789020072693,19.771105630971363],[-105.33070781678055,19.767171423131856],[-105.32879028015321,19.766297388734245],[-105.32320966959571,19.76122870297212],[-105.32212248712295,19.759532877630136],[-105.31920070787481,19.75862291679863],[-105.31233608661364,19.751408535350322],[-105.30875652214831,19.74831382062814],[-105.30353525916377,19.742190069947185],[-105.29935212888915,19.73658532577639],[-105.29178816877624,19.72527767162893],[-105.28955682325403,19.719089289243186],[-105.2872737901319,19.71631552127093],[-105.28405770305187,19.715444448291464],[-105.2789431403317,19.712153362386516],[-105.26950949219571,19.703455380916523],[-105.26354792830676,19.695599945694028],[-105.260002287205,19.688840789509413],[-105.25939581324735,19.68350952877256],[-105.26058744239657,19.68124257351792],[-105.26370429063712,19.681348494862334],[-105.26458643885758,19.679731481268902],[-105.2622726236105,19.67967050115766],[-105.25479483850046,19.675339756735866],[-105.24211056646863,19.665264128646186],[-105.23372837523578,19.657904185111192],[-105.22045559960264,19.645818754548202],[-105.20979700605932,19.637300629848767],[-105.20755283224491,19.63455489775407],[-105.20223539229903,19.631378629011465],[-105.19924234862088,19.62757319491709],[-105.1998245633406,19.62353608687863],[-105.20151257674928,19.62311399107034],[-105.19850551033545,19.62085802012325],[-105.19743376435855,19.621939460389285],[-105.19047437795138,19.62121950777015],[-105.1836094405196,19.62158164909971],[-105.18071750745486,19.620711030136647],[-105.17662913046837,19.616869938957677],[-105.17407478992567,19.616977247637124],[-105.16934816468506,19.615691739831675],[-105.16418517274076,19.613038390936595],[-105.16034950371898,19.609560982826338],[-105.15959901110034,19.60673658143162],[-105.16187017826155,19.603738748105343],[-105.16007666654855,19.60303242320788],[-105.15898060268813,19.60463806507005],[-105.15584218986498,19.603555325341063],[-105.15465890721339,19.60457867037303],[-105.15080845051256,19.60124748698064],[-105.15080497898236,19.59874645299982],[-105.15283024435502,19.59548376336619],[-105.15056115343344,19.5922810796078],[-105.15269283482183,19.589301073269382],[-105.15114184120353,19.585721447795834],[-105.14912691688028,19.586177525600874],[-105.14734552365945,19.58420578282397],[-105.14439642270366,19.583303532009836],[-105.14406502474611,19.579106013792057],[-105.14179606815588,19.576636244022723],[-105.13866735071514,19.575607830912304],[-105.13682596162198,19.576741641589308],[-105.13478174502973,19.57579942303886],[-105.13353872778885,19.5775461891443],[-105.13444260187566,19.585143277675],[-105.13275232691171,19.586575243249],[-105.1284708358125,19.58794540326346],[-105.11953883394358,19.587327656351306],[-105.1146218526419,19.58565914974878],[-105.10889347527365,19.58245308263406],[-105.10241546689832,19.575783452408302],[-105.09872820069813,19.56785189588743],[-105.09622409861873,19.564893896652734],[-105.08895383421338,19.560453209695538],[-105.08830419042323,19.556773113505812],[-105.08924977408043,19.55483743327511],[-105.08565302142301,19.549832807247924],[-105.08296316980176,19.54097015616435],[-105.08267940675023,19.535734025535874],[-105.08151804225781,19.53105998670202],[-105.08477308309307,19.529168646276446],[-105.08444429363857,19.52694635960262],[-105.08267186919011,19.526929295351806],[-105.08165931652707,19.521056007868424],[-105.08007007789581,19.52010114158054],[-105.08345923368574,19.517812173675907],[-105.08135849635232,19.514319863970456],[-105.07909162426,19.513616070968453],[-105.08239755435199,19.512721726043765],[-105.08279402037857,19.51018389283496],[-105.08001784222995,19.50893430567072],[-105.08150059134658,19.5054068906054],[-105.07898767631087,19.50459374543999],[-105.08027553127448,19.503628328764137],[-105.07447484905714,19.50227709753591],[-105.07414351937922,19.501149251616823],[-105.0706884469356,19.499788062199116],[-105.0712345846407,19.501541964052592],[-105.06685660287604,19.50116806677181],[-105.06697073458076,19.497753590032403],[-105.06377943742393,19.495452344143416],[-105.060670691165,19.49554022208514],[-105.06385065658344,19.493135079694866],[-105.06660999119424,19.489445922713173],[-105.06475686239867,19.488996658668725],[-105.06354497258178,19.48411162386327],[-105.06078332305174,19.48411263302313],[-105.05888329813052,19.480870397586386],[-105.06098464988571,19.477858135106203],[-105.0575077202601,19.47445469965578],[-105.05930192306153,19.47135886505339],[-105.06541549534387,19.47356880775476],[-105.07312478119633,19.47110398177182],[-105.06802352887473,19.469229532373618],[-105.06949381920509,19.468047568063355],[-105.06178829492927,19.461900303786194],[-105.05730473924558,19.46080947721191],[-105.05545300260053,19.45791240763708],[-105.0532290611693,19.45685970043297],[-105.05261632283379,19.454546393226053],[-105.04798956737369,19.45370179354535],[-105.04414825785005,19.454525116628872],[-105.044453290187,19.45116481711716],[-105.04255796411809,19.446428861489665],[-105.03778306810403,19.44436807134349],[-105.03614756092668,19.44578002399038],[-105.03345468743316,19.445059896728026],[-105.03133779678961,19.442964215869324],[-105.03239742891628,19.441472616870158],[-105.02782173883708,19.436629911566172],[-105.0255812094839,19.437217807783725],[-105.02486486936454,19.43412758807574],[-105.02688621951523,19.43334955181166],[-105.02765784806218,19.430679441542793],[-105.02978764750208,19.43047898390705],[-105.02958001030754,19.428632586036542],[-105.02704603767876,19.428726399140317],[-105.02446233437314,19.423489868434046],[-105.01956208714239,19.420765074969893],[-105.01760808819813,19.412782507204213],[-105.01763652810314,19.40457641975729],[-105.02042125827404,19.396549726803983],[-105.02477605451463,19.392921209278256],[-105.02715069519394,19.393961655033593],[-105.03071509904441,19.397280683078122],[-105.02998119004229,19.392455687488564],[-105.03232643975582,19.389306643396424],[-105.02789444170924,19.383974371252066],[-105.02335055538106,19.38294534382544],[-105.01722970790019,19.37977082358833],[-105.0118495962106,19.375968914488624],[-105.00784172826411,19.372414865258975],[-105.00066824603152,19.366916681054306],[-104.99544206015327,19.363567791382422],[-104.99346233318272,19.361071094270642],[-104.99331377702867,19.358356982671694],[-104.9889461429944,19.356900946708436],[-104.9872442554049,19.354988672640616],[-104.985509610304,19.350572411081316],[-104.9780648106302,19.346055043212402],[-104.97245725572668,19.343343537514045],[-104.96848412330058,19.339640540735843],[-104.96666038148408,19.335342730168293],[-104.96367350410486,19.330908815557905],[-104.96123273498586,19.331600138420526],[-104.95700997753318,19.327466524232534],[-104.95661562868219,19.32489192405734],[-104.94852920352349,19.32057672985519],[-104.94571634849433,19.318087566179997],[-104.93872213987095,19.31389136398076],[-104.93692058799309,19.310816145519368],[-104.93706197256836,19.30888119381615],[-104.93385180951378,19.309873566474323],[-104.92958203543333,19.30836612342557],[-104.92227274918196,19.304858774571017],[-104.91181936692573,19.29901988153614],[-104.90994097498168,19.29696874197856],[-104.9065763853634,19.297267654034215],[-104.89328606318008,19.29244810080769],[-104.8813820749279,19.286811303502304],[-104.87808639580504,19.28469339717236],[-104.87693134838565,19.281076173476663],[-104.87411165823914,19.280369741029176],[-104.87369833388527,19.28375204939647],[-104.8718073315772,19.286835667146022],[-104.86908476989692,19.28858893963519],[-104.86267601938414,19.290568691106557],[-104.85749011597363,19.291170700812984],[-104.85322474339955,19.29071356870628],[-104.85029289673275,19.288409866265],[-104.85046071041546,19.289953677158508],[-104.8472126082334,19.29045609960349],[-104.84418219438908,19.289595290343357],[-104.84138803239978,19.291960557641858],[-104.83867138553211,19.291869486030407],[-104.839158850025,19.290215313640942],[-104.836967270515,19.289768323614112],[-104.83612153557044,19.292685262546456],[-104.83720485589288,19.295675248508587],[-104.83964018044253,19.295908632248256],[-104.84101249070306,19.29810889362136],[-104.84062826734345,19.301189898320047],[-104.83472691398617,19.306273926710503],[-104.82713243116035,19.30801774711267],[-104.821912511047,19.306235273850746],[-104.82041605132918,19.306921746532964],[-104.81157335268455,19.30488942950933],[-104.80652348861588,19.303191631886307],[-104.7982946618236,19.299014042186343],[-104.79410809887156,19.29528327376329],[-104.79183239185824,19.29226521255862],[-104.78857313218225,19.283754996502296],[-104.78956706461594,19.27964194780867],[-104.79265099620699,19.278919284594224],[-104.7945628339657,19.275270351122742],[-104.79450103925154,19.273049484750914],[-104.79648710074929,19.270571005164015],[-104.7988888203659,19.269288077500846],[-104.79983589486875,19.266767660951245],[-104.79948890502902,19.263125142328704],[-104.80105260457424,19.260289246640298],[-104.80268128508487,19.260021742517267],[-104.80636478328955,19.261549696941586],[-104.80944614068608,19.2586048453893],[-104.80687702863543,19.25490556578876],[-104.80658418875356,19.252554017367004],[-104.80876549865599,19.249797002784533],[-104.8092846715353,19.247297680924817],[-104.80799367508041,19.24343953148741],[-104.80922254899292,19.241279721370347],[-104.80873308776484,19.239284337998015],[-104.81024503018119,19.23489725681469],[-104.8076546038497,19.233098981109663],[-104.8078279528221,19.235493245749183],[-104.80274931914977,19.235653840637838],[-104.8025052737741,19.233991372380558],[-104.7982682315922,19.233887048893678],[-104.7975573918564,19.23164552336027],[-104.79279380924919,19.233070031340333],[-104.79184327745156,19.23639379074399],[-104.78725182232506,19.238316675823114],[-104.78553698147573,19.23701825765596],[-104.78252418749463,19.23904259650203],[-104.77839189539196,19.237907495946615],[-104.77797012914749,19.239535871715077],[-104.77568400828568,19.240296451281495],[-104.77096910875241,19.237200268584274],[-104.77185200986861,19.233012050918774],[-104.76833392283379,19.23040679925049],[-104.76052146686362,19.231626779342776],[-104.75814362593326,19.228797780322793],[-104.7567273305084,19.231627616933395],[-104.75221852315997,19.23722915376368],[-104.75009575145879,19.237725578314553],[-104.74792385090257,19.235879743511873],[-104.74498270131573,19.23604196405836],[-104.7435777209073,19.237935436921305],[-104.73825097612428,19.24018398096098],[-104.73649751422164,19.239032906793796],[-104.73270728063972,19.23937721146251],[-104.7301604422089,19.23694946045549],[-104.73130221714217,19.234199554852694],[-104.72946470643154,19.230594698786433],[-104.7318927740244,19.228252533644763],[-104.7358840434544,19.22866045319006],[-104.73589608478545,19.225663136176593],[-104.73365698336261,19.221497512126973],[-104.73087573487186,19.222860094926318],[-104.72863919664775,19.221543335946762],[-104.72857963814306,19.219450731826214],[-104.72623581447516,19.21929842233817],[-104.72429926841505,19.22170070536737],[-104.72225607236118,19.220874364060535],[-104.72185684673138,19.218819086341284],[-104.71957461371773,19.219633896244773],[-104.71659243207608,19.219204629189278],[-104.7134971317642,19.21601573402461],[-104.71429793408316,19.220514903094283],[-104.7120618171254,19.22238498997251],[-104.70793660052925,19.2230841513948],[-104.70128496505305,19.22157261242046],[-104.69552735072659,19.217953251777942],[-104.68804603646385,19.210254132543525],[-104.68554182798692,19.20676272757538],[-104.68448227956242,19.20094118272209],[-104.68657241491167,19.197552784327],[-104.68830854942382,19.19865129556132],[-104.69117702811292,19.19693692071729],[-104.69015251949469,19.194200111949783],[-104.69138598250544,19.188691288723703],[-104.69506706062316,19.186975227518417],[-104.69733023865763,19.187815072896342],[-104.69894636688588,19.1862705890249],[-104.70233220836735,19.180661962546992],[-104.70281275941227,19.178131987967447],[-104.70075734489564,19.17992313852335],[-104.69784563265375,19.17891458587627],[-104.69894035038533,19.176118648732768],[-104.69559262437178,19.175664644766243],[-104.69221373735428,19.17300821038657],[-104.69056610285924,19.174086644817407],[-104.69047774310673,19.17667541171869],[-104.6889766560052,19.184092630353348],[-104.68492684852771,19.184549196765772],[-104.68498512731412,19.182407990588786],[-104.68283218089533,19.182413307744184],[-104.68032869518129,19.18550660313292],[-104.68261073191928,19.187410940327197],[-104.6816341240011,19.188691072095082],[-104.68325525250219,19.190710672704995],[-104.67997934415166,19.193171518580527],[-104.67954592022159,19.19099102728245],[-104.67529443029429,19.185558225068803],[-104.67035580055642,19.185693024381123],[-104.66423755824923,19.18312975689969],[-104.65912551265814,19.182467963026625],[-104.65324163408388,19.182491448329756],[-104.65177583010382,19.181369790147585],[-104.64191731651562,19.17772265217377],[-104.64116669536406,19.17743749312592],[-104.62856568561648,19.1732015560317],[-104.62651971139775,19.175510282416496],[-104.62620610673974,19.17804706819618],[-104.62269067350155,19.180039198257987],[-104.61903752471602,19.180872486863734],[-104.61827510805568,19.178850002833883],[-104.61608704621312,19.177958171808655],[-104.61530150134661,19.174104165893198],[-104.61590702193826,19.170566172294855],[-104.61902804545332,19.16808894945609],[-104.61706158208005,19.1665461015034],[-104.6157477054482,19.161680900093984],[-104.61195285087717,19.161407424011315],[-104.61133708335404,19.15987908864747],[-104.61312729633426,19.156534511947427],[-104.61011521193689,19.154572024980382],[-104.60817150401948,19.15493050239826],[-104.60331921755085,19.152059456187146],[-104.59677402557384,19.15184150057877],[-104.59510188034977,19.150532485704844],[-104.59099024463166,19.149917162832537],[-104.58886692588499,19.150811083572478],[-104.58703860033171,19.153520943946035],[-104.58602720906327,19.162339558299834],[-104.5884525836434,19.16337116046924],[-104.59154195839807,19.162399162587576],[-104.59614262662808,19.164052230484515],[-104.59665427995128,19.165496645227734],[-104.59584233750041,19.170641702488297],[-104.59688112432406,19.173261447985283],[-104.60034304648474,19.17794299997547],[-104.60028748080583,19.179053370232907],[-104.59626635879494,19.183620278486046],[-104.5926252781984,19.185987303861737],[-104.58932673665299,19.186565950666022],[-104.58666779954996,19.18538506684081],[-104.58398961236577,19.17798932202669],[-104.58016704573117,19.177880684455772],[-104.5769376159734,19.18020460762898],[-104.5745735160574,19.184986401304286],[-104.57383727861361,19.18961641355361],[-104.57490147539772,19.19201190903385],[-104.57341946026276,19.19477127228373],[-104.5697002011259,19.19702351097368],[-104.56757239839243,19.200099720675723],[-104.56752614165185,19.20400335304066],[-104.5696012919853,19.205883412232538],[-104.5693187276056,19.209940378451165],[-104.5704374158583,19.21480575079562],[-104.56911274259465,19.21869522999566],[-104.56729532166838,19.21975803622803],[-104.56203639061994,19.218354123134702],[-104.55954426492286,19.220544801529456],[-104.56061280049596,19.22601129403739],[-104.55952598942542,19.229529468488863],[-104.55746399625565,19.231124875436024],[-104.55451594990677,19.237097791048484],[-104.54847133955832,19.243346837249874],[-104.5439175258212,19.245920126685974],[-104.54323527190866,19.246266966744713],[-104.5370516427746,19.25103486283456],[-104.53555730633394,19.253038321579027],[-104.53378370793007,19.258040741143304],[-104.53128613803756,19.259342398129434],[-104.5302878683861,19.259788832594836],[-104.52529931801143,19.261118428761677],[-104.523319386519,19.260372379525222],[-104.51407514237468,19.248144945366164],[-104.50913175756341,19.24446205455024],[-104.50608993368087,19.245083080168172],[-104.5020906476509,19.252101267121702],[-104.49737975454673,19.254497051855196],[-104.4945354295217,19.25394704063939],[-104.48844802701814,19.247232698078335],[-104.4897028551502,19.241520552513805],[-104.49014191193731,19.232733983684284],[-104.48895489607526,19.229943363811856],[-104.48738124391184,19.229432643243285],[-104.48384951283867,19.23054045882759],[-104.48079394556993,19.233473049452186],[-104.47851273248864,19.238052171605432],[-104.47725768464397,19.238703388155443],[-104.4740091508055,19.236548132840994],[-104.47339013133603,19.230229788548968],[-104.47252978579343,19.228943246674135],[-104.466896328232,19.23101021155037],[-104.46478459899788,19.230037778478163],[-104.4630162577314,19.232959666499653],[-104.46282216691668,19.236095800599117],[-104.46597169202033,19.240921859807884],[-104.4672182907118,19.24452435433318],[-104.46611209698426,19.24596354553813],[-104.46262412745068,19.247276907711296],[-104.46061099032943,19.246045893663222],[-104.45567796870887,19.248453652363025],[-104.45966529030187,19.253996757048867],[-104.45925800341632,19.25701928247173],[-104.45613236533347,19.26001314527366],[-104.45016439026352,19.258921386525344],[-104.44752783876612,19.2602560155824],[-104.44189709001859,19.26142644304275],[-104.43840784808413,19.262873092350503],[-104.43703978126837,19.268226129375535],[-104.4357645938145,19.26963723884745],[-104.43657888367602,19.272588373735914],[-104.43979575519921,19.277233788037847],[-104.43925912124877,19.277987859086863],[-104.43886782496872,19.2782361117101],[-104.43573139923774,19.279126133024192],[-104.42923307467368,19.27929134624219],[-104.42381519524594,19.28208112467854],[-104.42025260545938,19.27957306202785],[-104.41744762765939,19.280269094234654],[-104.41321673206295,19.282945356511675],[-104.412365191785,19.285329241997147],[-104.40473034463264,19.286839196419464],[-104.40094560011033,19.28906980411068],[-104.39923190077974,19.28871035156351],[-104.39743168068549,19.28581919573287],[-104.40245262783776,19.278400657763143],[-104.40126169058874,19.276466925166517],[-104.40319063438392,19.271781416387853],[-104.40219689199023,19.26828244466094],[-104.39996142898946,19.267070273124432],[-104.39796869831451,19.269762797093904],[-104.39556060499979,19.271288243945776],[-104.38687663671277,19.271406194194128],[-104.38332402045256,19.27271327304743],[-104.38157206841532,19.275484640127786],[-104.37427346298188,19.28188398261466],[-104.36519643965113,19.277166919278102],[-104.36296311577269,19.27376263977129],[-104.36434521935121,19.26979148684103],[-104.36187369239684,19.26907840733554],[-104.35794297150699,19.270569286974137],[-104.35520614665836,19.273781049314834],[-104.35357696186384,19.276970915376467],[-104.34500095373505,19.287336711360354],[-104.34388029223499,19.289545989854332],[-104.34107713277399,19.28987546786209],[-104.3378355724443,19.289039398005684],[-104.3341307201731,19.2865013663789],[-104.33184814654419,19.287512305522284],[-104.3258323017032,19.284560357563862],[-104.32312228538422,19.28088264346883],[-104.31954457836832,19.280257233940063],[-104.3188882920735,19.280036534076316],[-104.31480390773328,19.279355885268046],[-104.31280266735524,19.280095971440858],[-104.31124462540805,19.28320039051698],[-104.3106337334815,19.289507481059786],[-104.30587800559522,19.29341674238566],[-104.30059011217611,19.295586370122464],[-104.2991913444659,19.297458917467395],[-104.29833326903002,19.302133374668813],[-104.29402023323462,19.30347079390748],[-104.29141694829048,19.30269668321779],[-104.28689219240067,19.299587745328438],[-104.28718994241268,19.297175603848814],[-104.28275938281809,19.297307625317217],[-104.28282566706827,19.300826745892607],[-104.2796408339862,19.303383079849368],[-104.27681899742987,19.300913324786166],[-104.2730022910705,19.30075163529733],[-104.26890576727732,19.30264832059578],[-104.2675013434066,19.304921168686292],[-104.2619292754681,19.307737184600796],[-104.26117905098016,19.31180619396264],[-104.25585761685272,19.309899180776483],[-104.25262801928966,19.310282292221984],[-104.24769098708697,19.312178901037782],[-104.2433964262309,19.30950527597281],[-104.23529243770565,19.307640498720332],[-104.23199037220002,19.3053060066203],[-104.22884862673135,19.304776298822105],[-104.22617854512077,19.30225242071384],[-104.21964068924046,19.301351563770822],[-104.21970735265268,19.299445372478544],[-104.2162931039976,19.299805619809376],[-104.21417319283125,19.30237333275386],[-104.20691817840111,19.300012725481906],[-104.20475519425395,19.303704402338724],[-104.20434628972214,19.303602221755796],[-104.19672649051188,19.296594501016443],[-104.19233239048623,19.29531907467731],[-104.19224612165647,19.292582331621134],[-104.18975268617339,19.292950447283033],[-104.18952075086673,19.302435907680774],[-104.18471936346543,19.30357881764087],[-104.18536154933003,19.306358772962994],[-104.18192111153297,19.306932460923235],[-104.17956560169443,19.308986930882895],[-104.18089997080244,19.31201713071283],[-104.17353461578358,19.31430309501104],[-104.1697965893984,19.312963737348923],[-104.16854841171408,19.310367144403983],[-104.16893594581501,19.307970257062607],[-104.1639265105938,19.30828435573642],[-104.16260609003751,19.302995799322105],[-104.16007004626192,19.304003802294403],[-104.15809880748162,19.31083149321904],[-104.15400580091904,19.311962823597582],[-104.15407524537233,19.314442993626187],[-104.14992536712134,19.314169809910368],[-104.14537363211377,19.311260934948166],[-104.14416395383773,19.311920794363232],[-104.14336909685477,19.313864095021756],[-104.1401588638667,19.316167033837587],[-104.13744212402446,19.312353661971144],[-104.13587207943294,19.31308402422411],[-104.1360499184945,19.316311477500847],[-104.13469742401327,19.31891321847303],[-104.13176525188726,19.32099495434187],[-104.12911182600055,19.317819940990262],[-104.12576040660883,19.320404442964104],[-104.12298461457033,19.319041944132834],[-104.12290586067178,19.32099837628425],[-104.12549736156308,19.32425224977669],[-104.12501126314646,19.32592999382331],[-104.12173585887928,19.32774918971927],[-104.12472651290653,19.328689711508616],[-104.13334411728596,19.35374583712951],[-104.12026322232373,19.36009044024047],[-104.11879857913931,19.371663551692563],[-104.11045779723628,19.380306753587377],[-104.10407067687987,19.38420859570897],[-104.09890640325307,19.38830277353952],[-104.09022621075354,19.39302479692958],[-104.08635886997541,19.405029325917667],[-104.08420537212515,19.409072338003682],[-104.08383739656546,19.41559896131855],[-104.0708837594608,19.435235437382744],[-104.07994294588565,19.431781755889062],[-104.08048729749453,19.435212939460314],[-104.08383623657636,19.439967478809024],[-104.0866397873844,19.44203099367735],[-104.07673952768499,19.48021471727168],[-104.07347023164971,19.48303808752553],[-104.07155205112724,19.483517491956377],[-104.07127308705401,19.483582478883136],[-104.06898126166772,19.484296823966474],[-104.06467214436566,19.492925735466656],[-104.06172506257184,19.497702931737592],[-104.05176359231427,19.49760054114506],[-104.03913570298471,19.484661458040023],[-104.03154328570605,19.48138660295865],[-104.02959365219351,19.481352705908193],[-104.01903994908525,19.476477379936625],[-104.00564989914886,19.47227547497414],[-104.00004554705606,19.468828824834304],[-103.99767242671032,19.471626177873475],[-103.99151247949169,19.471324593235636],[-103.98816433550502,19.471160243317456],[-103.98709712807266,19.474295916813787],[-103.97400709699542,19.474552913329546],[-103.97403073913392,19.47091555343752],[-103.97292404180047,19.46627927326955],[-103.96930443210613,19.459231492017295],[-103.9647986570406,19.454162653337278],[-103.94740613999988,19.44954731371871],[-103.93085652137052,19.445482212357433],[-103.91466468359124,19.440094599685892],[-103.91039880003939,19.438994471021942],[-103.8995215930745,19.434547243105555],[-103.89762888218524,19.436282441581113],[-103.89796207099363,19.438599491864863],[-103.90876545842474,19.453628302690163],[-103.90464366508701,19.45691057807909],[-103.89811526676078,19.460191268484323],[-103.89731770509331,19.46143187811265],[-103.89105212369293,19.463579768970533],[-103.88866017288103,19.46331626488211],[-103.88686010243231,19.46164484074683],[-103.88326226992922,19.456044057306258],[-103.87941816976524,19.444488660019772],[-103.87556484479558,19.443216984975038],[-103.87266410027951,19.44556282071511],[-103.87037018613387,19.444756783022513],[-103.86375500395047,19.447384745665374],[-103.86232313428718,19.44280248168502],[-103.85821296376406,19.437132252939136],[-103.85932626029933,19.434937696312716],[-103.85826871182081,19.43212316376082],[-103.8547808404283,19.43094160622013],[-103.84979646568559,19.43313479000051],[-103.84664302208654,19.433703163094663],[-103.84250694198789,19.437263384308153],[-103.83502339132178,19.439679024167162],[-103.83489889098774,19.439654439906462],[-103.83177887248257,19.440112522358277],[-103.82935452983241,19.438747705991148],[-103.82492799256607,19.43813375164052],[-103.82445475012804,19.435887127922],[-103.82789189306925,19.43339390068826],[-103.82755532039096,19.43180154080642],[-103.82352826009259,19.427210496871567],[-103.82357938789244,19.424825810543837],[-103.82205833751993,19.42249678555055],[-103.82346445576826,19.417691428471187],[-103.82141669208761,19.41415962378443],[-103.82084742784633,19.410512240745447],[-103.81897099113871,19.408870492611186],[-103.81765706660644,19.412442763939566],[-103.81528640622884,19.413859953122085],[-103.81070763015128,19.414610984939088],[-103.80599726862414,19.417641091995733],[-103.80133590458155,19.421973419596384],[-103.79789249694562,19.42199278967672],[-103.79649486604973,19.42449095649249],[-103.792733657339,19.427513695670598],[-103.77722185190521,19.43103801932591],[-103.77395052952829,19.430804620189463],[-103.77188389662786,19.433456487137505],[-103.76780843572982,19.434627197511475],[-103.76446446725225,19.437634863244853],[-103.76029848494949,19.439574881846454],[-103.75685771713063,19.442135459063536],[-103.75065831547505,19.445663562756636],[-103.74510778664381,19.445367020296885],[-103.738681453553,19.44328176331578],[-103.73458884319092,19.443676441847742],[-103.73318707170722,19.445358000192584],[-103.7284856398677,19.44805987484301],[-103.72543577078397,19.451228164520728],[-103.71720053848168,19.454305789144144],[-103.71615645576708,19.456958053546714],[-103.71637242972713,19.465744502949292],[-103.71578940228562,19.46700952466722],[-103.71144316634326,19.468036202683948],[-103.70827330408883,19.469856544140043],[-103.70453893208474,19.476647525601663],[-103.70424841437006,19.477098785398653],[-103.7000083767627,19.480845207912523],[-103.69882747026998,19.4847611466746],[-103.69571470010379,19.4865153804256],[-103.69338429098423,19.486589066200054],[-103.6904343523666,19.492031902970496],[-103.68428759878282,19.494248334489328],[-103.68196607428047,19.49350622357099],[-103.68044825088498,19.49594247776656],[-103.67711400842353,19.496250535825993],[-103.67070014228676,19.500467905041603],[-103.66487860919813,19.502630907047887],[-103.6601979753948,19.501750213914363],[-103.6565059951244,19.50209081147966],[-103.6531892596862,19.500734305167725],[-103.64838168329607,19.501927038589656],[-103.61827650177008,19.512518771192276],[-103.60619930487621,19.500557861997436],[-103.61138838038664,19.495189913110266],[-103.61482421937137,19.49404660771802],[-103.61236858394108,19.48921261581671],[-103.61241211787365,19.48563124506137],[-103.61445676335524,19.48120288307939],[-103.61379407095848,19.480267595995315],[-103.61535756716717,19.47499544562146],[-103.61112784250082,19.46956768227068],[-103.60868770735703,19.469630994248575],[-103.60767826814623,19.46561926903945],[-103.60285508268868,19.46393076447822],[-103.60030891335697,19.461062754897284],[-103.59818994919374,19.45542555488703],[-103.5944085488988,19.452958720976028],[-103.5889457931305,19.445514089481264],[-103.58666282500326,19.44402944634146],[-103.58632852604603,19.43952459679707],[-103.58292536026335,19.436810342385286],[-103.57891669691799,19.435485760131428],[-103.57812452534176,19.429862551579845],[-103.5781768588717,19.4286827485372],[-103.57872542856819,19.42616333830904],[-103.5754896374433,19.419986869775073],[-103.57720977943399,19.416934510419367],[-103.57448315343487,19.414952176924885],[-103.5745349599083,19.412316098581698],[-103.56907280370194,19.40641070923425],[-103.56485518998244,19.406395305775447],[-103.55891123424459,19.409004617874132],[-103.55907491168244,19.407584133688204],[-103.55621120009982,19.40697173724351],[-103.55494062066356,19.404451206371505],[-103.55463690724355,19.40436209624653],[-103.55473741001117,19.40338028029106],[-103.55473976208805,19.40291754473452],[-103.55212733738438,19.40122305863588],[-103.55169557940502,19.399176910417225],[-103.54813207090234,19.397878802089338],[-103.5454449720716,19.394826595104405],[-103.54321703756023,19.394127112531237],[-103.54249388929497,19.390780164224793],[-103.53829896037979,19.388511914971502],[-103.53663112759006,19.385084299936693],[-103.536106977658,19.380949915005885],[-103.533257598374,19.380237328943394],[-103.52835064183131,19.37371061586174],[-103.52672200461262,19.372764729623782],[-103.52613402391506,19.369069157479885],[-103.52478531028459,19.369051836495032],[-103.523280679079,19.36400649198856],[-103.52346900227633,19.35951034458151],[-103.52008338594572,19.356365522097633],[-103.51695057100306,19.356468436031037],[-103.51871122525648,19.354866873125786],[-103.5155762329178,19.35432250929233],[-103.51512372156645,19.35200094508815],[-103.51041684582856,19.351293300318673],[-103.50891754762466,19.34950484424104],[-103.50705804032657,19.349673312497657],[-103.50399871303341,19.347881727436175],[-103.50186658252045,19.344990239975857],[-103.49974312361763,19.344315457468497],[-103.49753579075798,19.347119859507472],[-103.49200526002505,19.345827991670944],[-103.49176301082286,19.344292061648844],[-103.48757084702038,19.340214556396973],[-103.48634645165953,19.33749456094995],[-103.48742453152295,19.33182942188506],[-103.48681853319135,19.32741341868342],[-103.49080555652017,19.32332367929729],[-103.49406304793058,19.322284035310076],[-103.49572381521108,19.31864252205736],[-103.49248623159286,19.317047868837562],[-103.49001762921375,19.31452482833498],[-103.48964010929114,19.31188906691807],[-103.49167280981789,19.308583713796168],[-103.49444975170456,19.31028739897897],[-103.4980575446022,19.30917435078686],[-103.50011619324835,19.30759211367115],[-103.50096688432058,19.299750592995508],[-103.50509385189679,19.299336797614274],[-103.50597477501947,19.296179520525584],[-103.50918158526594,19.295149914944886],[-103.50670941197853,19.29228358814072],[-103.50683922805126,19.280058727550056],[-103.50798137220829,19.275338911885683],[-103.50707453176636,19.272701025882725],[-103.50887566202584,19.26711126223188],[-103.50673768425719,19.26638914366174],[-103.50792572814407,19.258251600037227],[-103.5055426235013,19.25467786686437],[-103.50546009060827,19.252388548670297],[-103.50751029179332,19.249974836276976],[-103.507678733526,19.246373442172114],[-103.50990621091654,19.243301509651474],[-103.50928249453256,19.24055545855191],[-103.50905877853023,19.24016192410579],[-103.50593050869674,19.237136427445478],[-103.50573942478735,19.236734783221095],[-103.50579581408556,19.235994670678508],[-103.50583815672888,19.23594279578549],[-103.50761625641655,19.230148067665027],[-103.5064897186997,19.227767781531668],[-103.5106887607023,19.224603465661005],[-103.51099443023492,19.221671699415765],[-103.51395368843964,19.218814141395683],[-103.51323529624591,19.21648214490608],[-103.51166639856143,19.21694576307698],[-103.50975003104793,19.214588031983567],[-103.51111338918321,19.212420232447073],[-103.51507366948721,19.211597339206094],[-103.51192274153931,19.208143695735146],[-103.51104561950234,19.205662973415656],[-103.51086506342807,19.199657936787673],[-103.50788999739859,19.19867033278325],[-103.50353263693063,19.194860675650943],[-103.50142565267822,19.190105227320146],[-103.49824440295885,19.186043147428506],[-103.49884413772332,19.180590535124452],[-103.49755433256234,19.177295469093053],[-103.49763088226717,19.17464214902077],[-103.49938957105297,19.17211316219101],[-103.50312680016572,19.170172117447066],[-103.50197873415823,19.167963300671204],[-103.50212055152105,19.162485901123034],[-103.50916564223354,19.155961313290163],[-103.5097486582967,19.148946678491086],[-103.51172918114662,19.146752410559145],[-103.51401623232277,19.13711375905217],[-103.51098380140263,19.132710042616907],[-103.51429302612593,19.13019762323114],[-103.5153762932257,19.12833843221273],[-103.51955694453937,19.124454541771286],[-103.52361679328777,19.115640659526832],[-103.52083914398492,19.11246622861404],[-103.52056956562484,19.110251648632754],[-103.52157314368804,19.10370225473406],[-103.52112709123298,19.101980284027945],[-103.51760363046265,19.099296749735572],[-103.51807429053366,19.097420121541063],[-103.5182590460006,19.097232671655206],[-103.52256214825093,19.0922168741115],[-103.52455248594345,19.084962071160078],[-103.52505184660959,19.081060289548134],[-103.52642621775033,19.079218005410098],[-103.52558227952579,19.07780975983411],[-103.52222599436311,19.076665237369753],[-103.52182457617863,19.075236325855656],[-103.52324975553483,19.068360044613485],[-103.52232352652209,19.0659539370576],[-103.51799286476302,19.06294451511269],[-103.51695387406164,19.06098328993221],[-103.51386185977026,19.06032433888703],[-103.50936405574947,19.057556441590805],[-103.50624685937589,19.049281363273963],[-103.50181187987795,19.049133684406456],[-103.4985223617789,19.0451481316573],[-103.49631768846831,19.03880753531456],[-103.49695104631536,19.035176780156007],[-103.49090519436879,19.032669836224443],[-103.49095746577478,19.029761535793227],[-103.48850554260025,19.027586746900226],[-103.48975927406775,19.025346310906173],[-103.493083357057,19.023478810231722],[-103.49396036140166,19.021829228854642],[-103.4944650583397,19.01470608369948],[-103.49874190768566,19.01203923517363],[-103.49682941970781,19.01125263146332],[-103.49394911139825,19.00689235958498],[-103.49309924519798,19.003368616096168],[-103.49270821462261,19.00051111554319],[-103.49083121195048,18.995820808693622],[-103.49219461426225,18.987066580303747],[-103.48985071036105,18.98077164059879],[-103.49202288654203,18.977022010125495],[-103.49555799314555,18.973271889348382],[-103.49440022239918,18.970114442125066],[-103.48954205084391,18.968691500051705],[-103.48871414440168,18.965598328052295],[-103.48859434226324,18.9648891512291],[-103.48655384714567,18.968162238761636],[-103.48753288910149,18.970813211784446],[-103.48759916452212,18.971323668049422],[-103.48748961910337,18.971622869398118],[-103.48725253360146,18.971720607953102],[-103.48190155459417,18.97037912648659],[-103.48139238281823,18.975419770150665],[-103.48379828832691,18.97943343702599],[-103.47911296868676,18.97934833113436],[-103.47779982506313,18.984102918448457],[-103.47244307547362,18.984809439780065],[-103.47153615876869,18.98791178635628],[-103.47286818932156,18.988507195034742],[-103.47333338325848,18.988668262245312],[-103.47266045438289,18.99113636336756],[-103.46938384181345,18.988257543311477],[-103.46922083639362,18.988030193945804],[-103.46635327767854,18.98193469509721],[-103.46312732531106,18.977020927274168],[-103.46051280108247,18.977024477129362],[-103.45782630459365,18.97929622582359],[-103.45519642421777,18.97837461519663],[-103.449502211952,18.981775034431337],[-103.44895631209602,18.98181489689489],[-103.44315327162724,18.982737240576],[-103.44297130324617,18.98288070549006],[-103.44056778581324,18.983328859484345],[-103.44013043917016,18.983180413605623],[-103.43631445635822,18.982407778442848],[-103.4323857066168,18.9829598522507],[-103.4265264183685,18.981045289805934],[-103.41945272578937,18.98125069364562],[-103.41792065047662,18.978045289442264],[-103.41589923022354,18.978863506350876],[-103.41628773094294,18.974207436440622],[-103.41361028950348,18.97266267911658],[-103.4133707975372,18.970229294962508],[-103.41119300093976,18.96764949824353],[-103.41027123620665,18.96832603961434],[-103.4101461288812,18.968425324116197],[-103.40687519613698,18.971475608749643],[-103.4032801610162,18.968135752961757],[-103.39853727261095,18.96631567793935],[-103.39692104904037,18.967091474461824],[-103.39442110619376,18.96741463033419],[-103.39158052392861,18.9707359198747],[-103.38861323193464,18.970973281478848],[-103.38610518299572,18.972568591856316],[-103.3841925753095,18.977787524856183],[-103.38050028244623,18.979296908658],[-103.37724888269247,18.980170453920437],[-103.37308615881625,18.97685104910306],[-103.36694453445068,18.97759572533488],[-103.36317013592759,18.976621831879015],[-103.35829034622986,18.980012566682717],[-103.35531494362425,18.980225529996005],[-103.35227101436658,18.977751247515812],[-103.34605283492857,18.978469678598742],[-103.34042570017795,18.976861464739613],[-103.33513654963048,18.973593517251686],[-103.33248517271937,18.97325131343996],[-103.3316979727029,18.9735412557082],[-103.32645036526083,18.975934078049534],[-103.31280373542478,18.983060666273047],[-103.3048221943489,18.98579374836612],[-103.30268936438836,18.98871677450535],[-103.30236627965519,18.990226073520148],[-103.29939671649737,18.99290553459184],[-103.29557892099933,18.994217946389938],[-103.29182089749656,18.992962798553037],[-103.28961034062479,18.994469037868726],[-103.28735082691435,18.99240998341594],[-103.28453192520868,18.998376296365052],[-103.28113885562766,18.999609888849193],[-103.27824274206347,18.996885853022604],[-103.27337438001325,18.998679797097168],[-103.27183937747452,19.001717470225287],[-103.27023055127808,19.001157816511693],[-103.26655398869161,19.00337078523603],[-103.26327249315915,19.002625603918716],[-103.25975180645503,19.003696641110935],[-103.25847931236137,19.00714647221406],[-103.25791848504014,19.011745122651234],[-103.25711825543794,19.011355376247707],[-103.25489052398024,19.01071784323608],[-103.25252340807259,19.010712857767146],[-103.24844951598084,19.014542363846886],[-103.24642374351345,19.012097931733763],[-103.24389510388642,19.013581665324182],[-103.24051424651742,19.013980910962857],[-103.23935486055802,19.016003191816594],[-103.2359669651118,19.017026114391115],[-103.23466826137002,19.020059679985422],[-103.23109402178568,19.018273752096263],[-103.23088661121653,19.02125830686265],[-103.22949087329539,19.022714067748666],[-103.22539177073264,19.0241233141806],[-103.22387620475655,19.024100513340613],[-103.22474519261505,19.019274608543583],[-103.22342938288239,19.01371942838699],[-103.22166130726998,19.009452675235877],[-103.21790211650801,19.007015128168007],[-103.21739647302167,19.0035322295372],[-103.21336300034687,19.00389742434902],[-103.209518846724,19.00298664509006],[-103.20890452320322,19.000272023093373],[-103.2104815105555,18.996619571381757],[-103.20995170917473,18.99580471174727],[-103.21019692231494,18.995350186448434],[-103.20934265447318,18.994694659098343],[-103.21139757271101,18.99300257589624],[-103.20993391859918,18.992648239453956],[-103.20926527776908,18.990658639605158],[-103.20835731419498,18.989869654420033],[-103.2069091208541,18.98166046814248],[-103.20321452242104,18.978496739528964],[-103.20332319010453,18.974413011260197],[-103.20493176344996,18.968480155048724],[-103.20044802247804,18.962660983673743],[-103.19527524799372,18.9591897968877],[-103.19262752423793,18.95842857155253],[-103.18859764622096,18.954903939998985],[-103.18082381922778,18.944642745335727],[-103.17931222944895,18.942945424104437],[-103.17336423520283,18.936263922294472],[-103.16236777438053,18.930560087701792],[-103.15627038598325,18.929106132123422],[-103.15101191253189,18.92613172665841],[-103.14648306491586,18.926395427794887],[-103.14388844140376,18.928454766028835],[-103.1415261941907,18.92849984220311],[-103.14012633576544,18.92893484390089],[-103.13445391908408,18.931063186292818],[-103.12859327581828,18.931393505948563],[-103.12501946501624,18.930144654780634],[-103.123013386004,18.935895946098867],[-103.12381837210756,18.936815187483205],[-103.12092492572498,18.939052954837393],[-103.1180591627616,18.943519738210796],[-103.11651051956454,18.944407299354282],[-103.11501309105563,18.944926647828936],[-103.11398598540143,18.946989121835088],[-103.10783579492647,18.952536641337133],[-103.10756268273963,18.955001665436498],[-103.10774072775854,18.95665239380503],[-103.1056889246131,18.958660700985888],[-103.10518887148186,18.961291971229002],[-103.1002152484287,18.962982865867502],[-103.09802571337411,18.96474784624661],[-103.0981372932161,18.96660988639661],[-103.0959068941761,18.968901930234324],[-103.0942289668755,18.974005580610594],[-103.09282951710753,18.97355888484384],[-103.09131131320385,18.979266850561146],[-103.08967036442158,18.98023009108016],[-103.0884712670952,18.983008111970264],[-103.08758021186702,18.984311748974335],[-103.08363936019958,18.98587504368612],[-103.08095071753439,18.988584395305963],[-103.07816175350877,18.988972204411198],[-103.07546466218048,18.992201139868143],[-103.07174434563348,18.992121983087998],[-103.071080965352,18.993458327787266],[-103.06755569670247,18.99450987469561],[-103.0662261870919,18.99626308392692],[-103.06221645954173,18.99537390683463],[-103.05716982306376,18.998213360711077],[-103.05400257557807,18.997112630727997],[-103.05257599658722,18.998529578613613],[-103.0551206032917,19.000732161032147],[-103.05925612525289,19.000848055153824],[-103.06207478262928,19.00215769809421],[-103.0648868334145,19.00932190380837],[-103.06441794227402,19.013654542075017],[-103.06540547134966,19.015141787469247],[-103.06669895524317,19.022268078790944],[-103.06323850997012,19.02785407704812],[-103.06007272794614,19.02813953336556],[-103.05485189671788,19.033944854301524],[-103.04999662368857,19.035338873528133],[-103.0479254376823,19.03223798611907],[-103.0460768591455,19.032077034644146],[-103.04465276250772,19.03201165063399],[-103.03634432305557,19.028856345142742],[-103.03277095153402,19.029775143294444],[-103.03376574017244,19.030742938233402],[-103.03307806891678,19.03424166216729],[-103.0304397542954,19.036056170298934],[-103.02729014704039,19.047752237435418],[-103.02521426247932,19.053103852993786],[-103.01887252932323,19.05198200860093],[-103.01564665089256,19.04888841352465],[-103.01378894137093,19.050342486145496],[-103.00854577007914,19.050931248153745],[-103.00302357423055,19.05243518993285],[-102.99854401979883,19.05236411806817],[-102.99083523186243,19.05337890886551],[-102.99108496006795,19.056290044930904],[-102.9924148674354,19.057777857348526],[-102.99877763813777,19.061506107599598],[-103.0055634518543,19.068565235641017],[-103.0103433681818,19.074135819532785],[-103.01600568246403,19.079185304091084],[-103.0174825350822,19.09417146247307],[-103.01759688398727,19.097749290977447],[-103.01945537945477,19.10383651167706],[-103.01838898023561,19.10583903154736],[-103.01519436993505,19.105834568482408],[-103.01194819208285,19.10748263048356],[-103.01435019232235,19.113000279349194],[-103.0162775853064,19.113111298770775],[-103.01613563946472,19.117076945989538],[-103.01873654891443,19.122772128832196],[-103.02054022261575,19.12504848175155],[-103.02042662073114,19.130494298182782],[-103.01972701616813,19.132371162837046],[-103.01597665827387,19.133848055299552],[-103.01445468531972,19.135571617481787],[-103.00948858256623,19.136368513521802],[-103.00828679850304,19.13775570488872],[-103.0044598137057,19.137571332371806],[-102.99966145369211,19.135301720633834],[-102.99041364359681,19.12647085667959],[-102.98503842936071,19.12278757360923],[-102.98028154343075,19.119849478238677],[-102.9776227079538,19.120060911517896],[-102.97669313752482,19.126368916040576],[-102.9781258116218,19.13480151394691],[-102.97826461502098,19.14577680594391],[-102.97935777323238,19.152413268470298],[-102.97431119561844,19.153740595036993],[-102.97118531144957,19.15845474359611],[-102.96859335297535,19.160137426229028],[-102.96602503479818,19.163954038603038],[-102.96116405040567,19.16749374678085],[-102.96288404382011,19.169571656251094],[-102.9623484483916,19.17201554139018],[-102.96009608476868,19.17405588621159],[-102.95782671137408,19.17355012730326],[-102.95548472973627,19.169619767259405],[-102.95339448648417,19.173587246919283],[-102.95101409037022,19.17504602912078],[-102.94749987224878,19.17487717692933],[-102.94599863929511,19.176570342211846],[-102.94201807869553,19.17713277345439],[-102.93835926487907,19.174456504302498],[-102.93588236145507,19.174072739108794],[-102.93513341089243,19.1820322429611],[-102.92743763747382,19.17726848904266],[-102.92055084967546,19.17879172020929],[-102.9150726367647,19.179367110395788],[-102.9146919760455,19.179587171091498],[-102.91315832475004,19.18170836807633],[-102.90915780873627,19.18473016908024],[-102.90849559772164,19.185303463279354],[-102.90102452382388,19.190892079753667],[-102.89921439793363,19.19396666395977],[-102.88420063463838,19.205687888569855],[-102.87947569463563,19.206625174733233],[-102.87293347075166,19.209359056843255],[-102.86537706648323,19.21128543686035],[-102.86538370824957,19.205876184469446],[-102.86260196288879,19.203229630171222],[-102.85993405363615,19.203949644409704],[-102.85402759713713,19.201219439768295],[-102.84831102283931,19.199548165146155],[-102.84809390391342,19.199507726304887],[-102.84585857897576,19.199732489753785],[-102.84382419571949,19.20263220091249],[-102.83142105580134,19.21463983422325],[-102.82775971087233,19.211261093037535],[-102.83016785744906,19.20998911964608],[-102.82443340738439,19.205693233982515],[-102.81672816743833,19.21031164241225],[-102.81398295651627,19.218278595177992],[-102.80836146811589,19.22326411685242],[-102.80355060120803,19.22393804727517],[-102.79995282874938,19.223451575596812],[-102.79376413445726,19.225408081276385],[-102.79224543785881,19.228700769502666],[-102.79314294522277,19.231059804738436],[-102.79351386921655,19.231519573869264],[-102.79349188082142,19.235152235854002],[-102.78959948219853,19.239594720555544],[-102.79024319594174,19.24245799243573],[-102.78532499512391,19.242378280430955],[-102.78305695124732,19.2432002255033],[-102.77692669273262,19.243555678696225],[-102.77502592071676,19.244395607275692],[-102.77331838040487,19.24528649776346],[-102.77307842400523,19.245438422379493],[-102.77121974062271,19.246445796173987],[-102.77063466034099,19.2467057120802],[-102.76512027259741,19.248632158967382],[-102.75381592350834,19.255805063661796],[-102.7498786809083,19.253270050537935],[-102.74864854686967,19.253523361508144],[-102.74572682204945,19.25118169990435],[-102.74529089681931,19.249480740724778],[-102.74061921822585,19.24833446492198],[-102.73812628865454,19.24268190206118],[-102.73772086033108,19.242202404617842],[-102.7354197482129,19.241592672863476],[-102.72791046254866,19.242395235973845],[-102.71944367448958,19.238109177733463],[-102.71754422923738,19.238700839366402],[-102.71341925072983,19.23598057181772],[-102.71068619116687,19.236005956865597],[-102.70815057153999,19.23944160994529],[-102.70780271305324,19.242326154289117],[-102.70591353567261,19.241461667577767],[-102.70526219670495,19.24705311178866],[-102.70348570510862,19.24655149502155],[-102.6988260094102,19.24993137084948],[-102.69488993234563,19.247773867685055],[-102.69516892292035,19.242000161806857],[-102.69436835994605,19.237428365375138],[-102.69555344945843,19.2388619851385],[-102.69732311510882,19.238049364859705],[-102.69621843015534,19.23648966217354],[-102.70151759589197,19.226249300010693],[-102.70069156775924,19.224536634819344],[-102.70053567947002,19.224447864736533],[-102.69703049902074,19.22594385456273],[-102.69389894554513,19.226297361459046],[-102.67962544940809,19.219554732761537],[-102.67924243634894,19.219357379387702],[-102.67510150141175,19.21683013424513],[-102.67191552881582,19.214070382732643],[-102.66992269652167,19.212412066829188],[-102.6680867214427,19.217494277321464],[-102.66803047659187,19.218273698584994],[-102.66865188886686,19.220063548306257],[-102.66686100571201,19.22139457112104],[-102.66230617999992,19.21869866563162],[-102.6610264774713,19.222086135586153],[-102.66195926622152,19.22350552481572],[-102.66190900631693,19.227261858981763],[-102.66000276071031,19.229868929695556],[-102.65783122109241,19.228291010515875],[-102.65524103327476,19.229919699490154],[-102.65694500692422,19.232057546498027],[-102.65184212376766,19.235518511900636],[-102.6532958552649,19.237980377525446],[-102.65689705919812,19.240536826654647],[-102.65146774111571,19.243107478150932],[-102.6497204094843,19.246008776063434],[-102.65122733985606,19.249230296117844],[-102.64936556873897,19.249430357326503],[-102.64878115363723,19.24947497804112],[-102.6488015521087,19.25323894701245],[-102.64553226128459,19.25531170058906],[-102.64559408131095,19.259492789115484],[-102.63964824575913,19.26124757663507],[-102.63820989416695,19.262659537019545],[-102.64247832533107,19.26545702276877],[-102.64096139724921,19.266171157324322],[-102.6407589611743,19.26866015492135],[-102.6389727027398,19.26992291169961],[-102.63888291773338,19.273013143142066],[-102.64105724625404,19.27418823625004],[-102.6394831558062,19.2769260260078],[-102.6430956680606,19.278340395090254],[-102.64084043259408,19.280948829595616],[-102.63852058035314,19.292043577673383],[-102.63822382459693,19.29509128199362],[-102.6357956248753,19.297295086666736],[-102.63454913760381,19.301836696879434],[-102.63124274425229,19.304505274539792],[-102.63271591838321,19.30698195811641],[-102.62990815952253,19.30710515732494],[-102.62773268270882,19.31026343564332],[-102.62855519387324,19.311921601888116],[-102.62554882338691,19.31504919569113],[-102.62000154327671,19.315151250298527],[-102.61715219665717,19.317327775457386],[-102.61627448620305,19.319488854368615],[-102.61434217534509,19.31935003001763],[-102.61099821452848,19.32324424191262],[-102.61083323173295,19.323692789158372],[-102.61115166030811,19.32500966344145],[-102.60863857561793,19.329061821523737],[-102.61028160949888,19.3299440813646],[-102.6078822678304,19.33561547254277],[-102.60505589454692,19.33845526042427],[-102.60599883179128,19.34191265580364],[-102.60499425512239,19.34498668408554],[-102.60513434199152,19.351165664778875],[-102.60146105385627,19.356873606800832],[-102.60105602152106,19.364486767110293],[-102.598589222506,19.367998165015194],[-102.59473713399518,19.37118529976027],[-102.59468183591662,19.374915252914263],[-102.58795585329119,19.388678825531542],[-102.58551463701752,19.38978679589286],[-102.58255161536647,19.38966687961755],[-102.57983127662686,19.395415073705408],[-102.57491664768429,19.402763798205967],[-102.56879932858999,19.412629369515514],[-102.57167641251442,19.414906795933632],[-102.57391735112111,19.420969609511246],[-102.57666897214665,19.421972777524957],[-102.57678699854745,19.423908919038922],[-102.57274066214632,19.42500580712857],[-102.568652328837,19.428865539821174],[-102.56672278009643,19.433342343347817],[-102.5650808392349,19.435157346301764],[-102.56028371344604,19.433891397451134],[-102.55563038367006,19.431536331407642],[-102.55249610108234,19.42628730914015],[-102.55104416184213,19.42537802279844],[-102.54912328468549,19.428317754259524],[-102.54371542728222,19.42958017005742],[-102.54391711397699,19.432253367039948],[-102.54481887391626,19.433739340601733],[-102.54659305303989,19.43509875948621],[-102.54860309822573,19.43383609902736],[-102.55249338504046,19.433474292484732],[-102.55571205444897,19.435866254874327],[-102.55924034481046,19.436880400313612],[-102.55798597194956,19.4395804533728],[-102.55492420198607,19.439861899208324],[-102.55110436605815,19.43879706921615],[-102.5476927827001,19.43948789742126],[-102.55298734728382,19.442690632455765],[-102.55870219825692,19.447003885826973],[-102.56478132170804,19.44303327362985],[-102.56817612374067,19.443354606246203],[-102.56858136557224,19.44547835596717],[-102.56709480188988,19.448130639337023],[-102.56662731666296,19.45330304740969],[-102.56469690975638,19.462275019492836],[-102.5632989237244,19.464926983380963],[-102.55576767495921,19.465147931622198],[-102.55475674464617,19.470936791591896],[-102.54831336326987,19.471427546306415],[-102.54676725198334,19.474169438282672],[-102.54273049294454,19.476425300870915],[-102.54270538188837,19.478033107051772],[-102.54568612187353,19.482813742865346],[-102.5490811481198,19.492422854848257],[-102.57594344468993,19.498061782649415],[-102.5737803420908,19.500126816285274],[-102.57365517362041,19.501486420255617],[-102.57527159648583,19.503675278509945],[-102.57294244956518,19.506950032603584],[-102.57186140812263,19.51119183618556],[-102.57634755983395,19.515888720810267],[-102.57518757798437,19.52188686846705],[-102.5811018923697,19.527778269035366],[-102.58298577852423,19.528030146809613],[-102.58180196348792,19.52578157707319],[-102.58399523011565,19.52269370589454],[-102.58652856072956,19.52298103947436],[-102.59113717470387,19.520097240780842],[-102.5929009947634,19.521839745081138],[-102.59845961163472,19.518649497055947],[-102.60269949194895,19.514363500475895],[-102.60951568776147,19.510078611393226],[-102.62052958744147,19.498771659384943],[-102.62300300024901,19.497524325970062],[-102.62891774354938,19.50045144725982],[-102.63459541417546,19.49596778780949],[-102.64479702821797,19.491887574763496],[-102.65845015649802,19.487047320138117],[-102.67093011264268,19.490625872354087],[-102.66884796302082,19.49142186162203],[-102.67115033393264,19.492341480624816],[-102.67184324365991,19.496639487020047],[-102.67037019790814,19.498832499008984],[-102.67264628923084,19.504457183327645],[-102.67346054632361,19.508731413597047],[-102.67302471838633,19.511995307567645],[-102.6774212984028,19.510255813202207],[-102.68948709003092,19.51341568184199],[-102.69261762212847,19.510226584400414],[-102.69672235739421,19.50872375803482],[-102.69943469683926,19.509115325140897],[-102.70437935416055,19.50717295000993],[-102.70561912018843,19.505510120879194],[-102.70898135861245,19.503214076808035],[-102.71003673917232,19.502700024384126],[-102.71224832351089,19.499717002158263],[-102.71255843971835,19.499989708943247],[-102.71399660192691,19.50090533915437],[-102.71366491675263,19.499139883536543],[-102.71987114830085,19.496788025940077],[-102.72124120677296,19.494436168124707],[-102.72558082120457,19.493155370406157],[-102.72666277596971,19.49377196986228],[-102.73074447884358,19.495926427536062],[-102.73330767229322,19.496016977473232],[-102.73697115229845,19.492830940192107],[-102.7385777859879,19.494764124207848],[-102.73888293167226,19.498667329834802],[-102.73534707152618,19.503339605504607],[-102.73361122393385,19.50358026702594],[-102.7301170534098,19.50806585756419],[-102.73119069940458,19.50998788207636],[-102.72724277349192,19.51216722659632],[-102.72457719278526,19.50912222585214],[-102.72294587226048,19.51217938578162],[-102.72179977926271,19.516664492251834],[-102.72239423659863,19.517992339359523],[-102.71863161484265,19.519036511247464],[-102.71823583492301,19.519112236039632],[-102.71751903594861,19.519467724821993],[-102.71841815102556,19.525863027278888],[-102.71708464997818,19.52619634505703],[-102.7163972285204,19.529158608914543],[-102.71473123970009,19.530090940698926],[-102.71670745880601,19.533525756384506],[-102.71251894333574,19.53735302336287],[-102.71063381434357,19.54132229215793],[-102.71130442437425,19.54522664284673],[-102.71557682672534,19.54618914233754],[-102.71783989771319,19.548647001499035],[-102.71835207545485,19.554671343898576],[-102.71684674888411,19.55741682325123],[-102.71634701128966,19.561210532839993],[-102.71351670395273,19.563261336753726],[-102.71973444180469,19.56928735281781],[-102.71723282815691,19.571321506160302],[-102.72005589084472,19.573311494657673],[-102.721233655525,19.577055346940767],[-102.72049806507636,19.579677311313674],[-102.72497503567519,19.577861219114197],[-102.72603889761365,19.579025550065523],[-102.72507652465634,19.581383742401158],[-102.72238929960218,19.582541427364163],[-102.7252522191958,19.583920178304766],[-102.72122975377465,19.591400709144693],[-102.71835967344111,19.593107350118828],[-102.71807486034771,19.599828662920288],[-102.71609200623169,19.600592109238335],[-102.71593204016028,19.602935152086275],[-102.71817561099306,19.60408853588183],[-102.71747478822863,19.605730449790826],[-102.71996838331302,19.605465025993624],[-102.72098860295137,19.607689834255666],[-102.71881889523189,19.609412176327453],[-102.72068890246749,19.610669655366223],[-102.72585616236574,19.609940520368525],[-102.72608754648195,19.613136823500383],[-102.72851270791944,19.61189061710985],[-102.73049125007742,19.613768573865286],[-102.73723528731011,19.61507604728672],[-102.74756636166512,19.612777026116646],[-102.75321434200737,19.617439679306642],[-102.75374155005596,19.620156938221726],[-102.75543126302551,19.61982001941442],[-102.75366431382548,19.622898562447006],[-102.75559555817739,19.62457393774895],[-102.75896455622814,19.62486845799998],[-102.760325871487,19.62715942214993],[-102.76948273960568,19.627891315049453],[-102.77434167601746,19.626620488716014],[-102.77720712217274,19.62897727981573],[-102.7768347910644,19.634113470955697],[-102.77947419342757,19.640214658211733],[-102.77916215114954,19.6433444795054],[-102.78331449118718,19.64353148281549],[-102.78203130417978,19.64577089351235],[-102.78317433525189,19.64742674655247],[-102.78583165705982,19.6476010192128],[-102.78733037121862,19.64954961537063],[-102.78437784162946,19.651268670569266],[-102.78513427302158,19.65272152978656],[-102.78721194403147,19.651728013211084],[-102.78966761575316,19.653400287096304],[-102.79219709566377,19.65361136623676],[-102.79201841492556,19.657912427248107],[-102.79310366578648,19.661430869958792],[-102.79147125477397,19.664977778190632],[-102.7911591512514,19.668059494454837],[-102.79273706104078,19.670740013437978],[-102.79120335941298,19.673186416653834],[-102.7923866031976,19.67462462728639],[-102.7957562477402,19.673323417022743],[-102.80038663660736,19.674921217469546],[-102.80507000057702,19.674138570773096],[-102.80443908445767,19.67632773899527],[-102.79763282052119,19.678123532271684],[-102.79671563574328,19.682424067324916],[-102.79471185845182,19.685381301738516],[-102.79062723950892,19.68685713966238],[-102.79223155805431,19.6884230695145],[-102.7899467208872,19.690873944647706],[-102.787197286315,19.692952099533045],[-102.78528180425121,19.69479952716472],[-102.78223174596366,19.695211267881803],[-102.78309279034869,19.698191956446408],[-102.78051004861487,19.701795334226745],[-102.78048171941936,19.70432408939928],[-102.78221458210078,19.70718566474966],[-102.78546743049827,19.70820200138121],[-102.78562366974336,19.712547419599332],[-102.79162114439458,19.716973459127985],[-102.79406017592493,19.720826708671098],[-102.79421411499641,19.72538399279256],[-102.79580604492497,19.72837325968578],[-102.79831800093723,19.728783197497478],[-102.80487723746654,19.73467541701973],[-102.80494350980962,19.738256113336774],[-102.80685368584864,19.739956373441032],[-102.81017185936417,19.74065807451501],[-102.81080472817939,19.741016091607037],[-102.80997945571329,19.742927653655613],[-102.80758553296926,19.74371671362286],[-102.8026622014815,19.747220283876857],[-102.80377366649014,19.74802144939315],[-102.80392627774012,19.752157623535936],[-102.80524721546226,19.752946550834167],[-102.81238040255244,19.7499826353789],[-102.81627408787358,19.74990505749696],[-102.81660182270957,19.75187347984439],[-102.81052426698415,19.75816157256611],[-102.80860646799317,19.75956078933808],[-102.81232642474697,19.764162063238473],[-102.81330841718597,19.767794058821323],[-102.81184905875847,19.77398891917437],[-102.81280867883714,19.775953376215853],[-102.81952684237444,19.777941204896536],[-102.81834125187231,19.779879445121423],[-102.79429724602113,19.812685072554302],[-102.7923122299751,19.814115514123216],[-102.79059997746731,19.813646879457224],[-102.78724582792745,19.81360542604017],[-102.78498383686417,19.815448614567458],[-102.78106631665293,19.812878301033038],[-102.77466121442626,19.812717483803624],[-102.76930177017414,19.809856484822262],[-102.76867786290074,19.810097676271084],[-102.76821670421333,19.809863377417173],[-102.7672723998354,19.80921604786613],[-102.7622686034565,19.809871395325274],[-102.75908267245364,19.807984442528607],[-102.75555361669421,19.81316960276314],[-102.75405755185972,19.813681064959837],[-102.75355390551971,19.81346945891528],[-102.75024144538878,19.814126120097626],[-102.74983037254219,19.812744838792128],[-102.74946031425753,19.81291396546709],[-102.74804252451531,19.81210386823568],[-102.74751782009241,19.81200109681157],[-102.74551961668573,19.812321297402605],[-102.74535985387433,19.811966712992046],[-102.74510831611906,19.812586675303066],[-102.7446280912933,19.813433336262335],[-102.73939630276743,19.81582582493087],[-102.73917656991824,19.81768436564505],[-102.74127368677051,19.820659460513298],[-102.74184984702612,19.821218627331916],[-102.74306470240242,19.82298482039323],[-102.7442314846719,19.824112732381423],[-102.74497666262891,19.824833041784302],[-102.74501999142609,19.827317861002257],[-102.74495872557077,19.827599493564662],[-102.74895124846842,19.829688838797153],[-102.74837655232955,19.830120587989086],[-102.74957773686748,19.832136867607176],[-102.75169642379376,19.83215330531101],[-102.75333019970202,19.83412350663508],[-102.74922152446516,19.83476780175613],[-102.74314246405214,19.844603960276686],[-102.73505318504482,19.847313819859664],[-102.73434457012644,19.850396998348913],[-102.73069702143687,19.852604712111088],[-102.73032317644544,19.854459343259123],[-102.73478515149623,19.860042267653228],[-102.7348767910446,19.860390310819582],[-102.73482947576645,19.862217992398485],[-102.73557255482314,19.86743645184913],[-102.73368465580785,19.869823401155827],[-102.73537068554629,19.8721908356128],[-102.73476893026094,19.874518180762834],[-102.73750764087629,19.875383058280363],[-102.74249005365152,19.87875947833163],[-102.7397918579515,19.88576572755403],[-102.73565471705979,19.887616262670804],[-102.73251994554352,19.890383171374367],[-102.73121511515757,19.899507841827017],[-102.73308951801079,19.900914600870124],[-102.74479531653611,19.907866836476728],[-102.74607656844557,19.909068958573357],[-102.75606245821024,19.91844008202054],[-102.7644620493623,19.923832988646495],[-102.77063355002008,19.92986844519794],[-102.77693724644246,19.941481896667767],[-102.78324137957378,19.94916612006881],[-102.78403605186907,19.9512356912943],[-102.77534291027803,19.95855740738034],[-102.77829198459665,19.960171589287995],[-102.77991916965595,19.960039265281807],[-102.78784847210642,19.954269520410946],[-102.79030176974044,19.951104060444436],[-102.79435391733989,19.950318910269004],[-102.79636594266447,19.951726731587883],[-102.79927104734037,19.951623145934093],[-102.80363901507951,19.953052061692404],[-102.80570560268313,19.957186148392964],[-102.80770506250599,19.956185041209835],[-102.8081243264167,19.958089144366397],[-102.81013789044272,19.958668627112615],[-102.815591877889,19.960494234761484],[-102.81849517221059,19.962518266789516],[-102.81909996183634,19.961197870009016],[-102.82196937758488,19.964577034604986],[-102.82322337718728,19.96365466457536],[-102.82468398319924,19.9629519151066],[-102.83581316369435,19.9660012624185],[-102.84590147305471,19.96783200710877],[-102.84671285456352,19.968330060492008],[-102.85646691444305,19.968044135156845],[-102.86139422328745,19.969787688860777],[-102.85977873845178,19.97137354588409],[-102.86380128966567,19.970639825733315],[-102.87455009102194,19.974497072989095],[-102.8787902885179,19.974190536880087],[-102.88204962640799,19.975769268441923],[-102.88209693966371,19.96958511142452],[-102.88558485607842,19.970233345436213],[-102.89314621535544,19.96898989760564],[-102.90262189327836,19.966863482569067],[-102.9041850270043,19.96850937924455],[-102.91183951183194,19.972487776895548],[-102.91159650961237,19.97339109655013],[-102.91218496220284,19.973580362859252],[-102.91445581841572,19.974755948039785],[-102.91788104709542,19.977587336422346],[-102.9187756794102,19.979464586379436],[-102.92626761369951,19.984187559260135],[-102.92892944694773,19.984030880110993],[-102.93362024500038,19.986106987225696],[-102.9339778388208,19.98540651936065],[-102.9342172995876,19.9850527216376],[-102.93652554785479,19.983070427788732],[-102.93646225982883,19.98298336517223],[-102.93643771698731,19.98286412263178],[-102.94362421180483,19.98413362962873],[-102.9434709440095,19.98553465633279],[-102.94588910600532,19.9912694018754],[-102.94842760675101,19.992654180659486],[-102.9512149404328,19.996556501987243],[-102.95488967326514,19.994677632147273],[-102.95846474251192,19.995380913624217],[-102.95844011884697,19.991987704147448],[-102.96131053444088,19.992498312424573],[-102.96263006627447,19.99267082039404],[-102.96331218146929,19.989836516397418],[-102.9684979482268,19.991124281667112],[-102.97562989149475,19.988753479615923],[-102.97792972667412,19.98719354370121],[-102.98547802210948,19.98566928528129],[-102.99380967597739,19.98389475415854],[-102.99990614610113,19.975133174671043],[-103.00448808650549,19.971705640151185],[-103.01095548335019,19.971067169638104],[-103.01221753812945,19.970157644916583],[-103.01069215857967,19.96765402577455],[-103.0154719226125,19.959837897645116],[-103.02077552843468,19.960451601239924],[-103.02356441746446,19.962379383626228],[-103.02521954713455,19.960492088131787],[-103.02608515899755,19.96416026986367],[-103.02819757989619,19.964855514808505],[-103.02937675225559,19.967435141209876],[-103.03249962084277,19.968434784862325],[-103.03478241779214,19.967913290402294],[-103.03735369711586,19.972767745656938],[-103.04041160524321,19.976785456548214],[-103.04060076884537,19.978944006478855],[-103.0428672389371,19.980270133695228],[-103.0472272783851,19.986094788886476],[-103.0500112115862,19.991383523470233],[-103.05096316900836,19.991517256363466],[-103.05044590554587,19.99634819069655],[-103.04822220404685,19.998301374593666],[-103.0441804134752,20.000274046732557],[-103.04381199402513,20.00197861668761],[-103.04594616219737,20.002831953135683],[-103.04418126346508,20.004018991136377],[-103.04780217886298,20.005246510232496],[-103.04818043050233,20.00727831590484],[-103.04621677199862,20.006890850449906],[-103.04471186353294,20.00993786572718],[-103.04563821153528,20.01113610814639],[-103.03985629160275,20.014820721326828],[-103.0366812615938,20.01896896220194],[-103.03609113467883,20.022191490053046],[-103.03590081178402,20.022252855349393],[-103.03268324278656,20.024622944801536],[-103.03648835596931,20.026987303125793],[-103.03556981110381,20.029545778258296],[-103.029879508482,20.029634347633817],[-103.02579457151359,20.031688088688327],[-103.02478977903814,20.03480064102706],[-103.02819395013626,20.036147068763114],[-103.02636308337998,20.039348268426522],[-103.02755933679231,20.04122875673187],[-103.0275922800306,20.04417554994751],[-103.02578621753219,20.04646571177426],[-103.02651681389523,20.04934365576497],[-103.02511648346263,20.049923760486536],[-103.02072003229608,20.047306354362377],[-103.02162812594196,20.053303482329397],[-103.02395904620408,20.052521266207293],[-103.02522662189739,20.05806866903771],[-103.02908230738569,20.058522953748707],[-103.03096773963085,20.06348462138635],[-103.02916358456594,20.06487919590603],[-103.03097043555238,20.065762837893374],[-103.03110128488208,20.06606089549416],[-103.0324068224134,20.068725434965017],[-103.03050718017789,20.072714550476917],[-103.0334168235022,20.07470801954122],[-103.03353085471247,20.07664218672886],[-103.03070978793386,20.077748082507185],[-103.03274417591842,20.08042557431787],[-103.03544803863679,20.08139819502003],[-103.03569425273673,20.08392066263349],[-103.04173431875216,20.090820524400954],[-103.04166182230563,20.090931809482754],[-103.0407008274114,20.09109626835948],[-103.03910611537651,20.096779077267342],[-103.03638152563104,20.098879251919527],[-103.03383104577966,20.105935173691705],[-103.03300206338503,20.11163387097679],[-103.03471029099813,20.11332792260714],[-103.03537313154078,20.116716204117097],[-103.03843977463384,20.11660022870666],[-103.04127807643908,20.114940815587886],[-103.0433043308708,20.116016324200018],[-103.04167616496096,20.118857443730974],[-103.04415233946685,20.124119390185513],[-103.03656629856454,20.12539936226318],[-103.03133346939296,20.12675139129982],[-103.03241287461248,20.12920168440229],[-103.03353737080022,20.131265787294467],[-103.03523140282658,20.133485760848203],[-103.03141289841057,20.13655115373973],[-103.01015323802199,20.13715162795819],[-103.00481853146283,20.13819570318924],[-103.00171403076774,20.135106305032025],[-102.99932320864735,20.129842395963067],[-102.99957416999035,20.12677619272472],[-102.99597545275157,20.125612102434104],[-102.98890984649256,20.126194941256415],[-102.98553677846769,20.127400076303104],[-102.97626832380968,20.125368354457237],[-102.97058390510693,20.12540361750962],[-102.96446232241192,20.127135827843063],[-102.96378720320394,20.134786266328945],[-102.96159843782175,20.14019714297416],[-102.95775786665871,20.141218762542678],[-102.95641106004012,20.141100315536903],[-102.95415463625585,20.138735019964486],[-102.95117471630044,20.13818477395023],[-102.94771640480167,20.134019819095272],[-102.94729899564743,20.132398933499758],[-102.94050149175911,20.12839852156594],[-102.93373452561764,20.128491329801363],[-102.92880228778705,20.12946505973946],[-102.92644828058098,20.129575184718817],[-102.92450007378687,20.13625844662255],[-102.92609411325645,20.1374461804009],[-102.93344520659656,20.142924477927977],[-102.93832672472286,20.14634268986123],[-102.94022248306555,20.14767059145578],[-102.94323260803884,20.14977747002621],[-102.95400314608293,20.166568545438793],[-102.95414339043123,20.1708778403858],[-102.95201153410937,20.170381151256834],[-102.94320334353608,20.1710804732341],[-102.94189197682476,20.17168023596031],[-102.93577326282355,20.170708259735818],[-102.93026554942867,20.16699411739512],[-102.92398945506454,20.166249160792574],[-102.92133385280476,20.164747116074807],[-102.91874082060531,20.16467496466288],[-102.90783210218865,20.1620972840268],[-102.90184547961292,20.164433475061912],[-102.89391480326918,20.16394025982561],[-102.8906097581596,20.16115744295928],[-102.886198901775,20.15876234246781],[-102.88148253047905,20.16007420460903],[-102.87549555100753,20.15757602736852],[-102.87106679450085,20.158914122825536],[-102.86746180008669,20.162663647521583],[-102.86595326423577,20.16236361968828],[-102.86460577792809,20.157203736296765],[-102.86245286852613,20.154393251820863],[-102.85637270180024,20.150960792974843],[-102.8528127594393,20.149758524717754],[-102.85232163862639,20.148303788852672],[-102.85573643401813,20.147791349256863],[-102.85707411872886,20.142702136478704],[-102.85499430152959,20.136712756709358],[-102.85276284455233,20.133749154365205],[-102.84838359498508,20.130864454939342],[-102.84605990864549,20.130770251647277],[-102.84591784935714,20.127544489154047],[-102.84542082537996,20.123288766075575],[-102.84043634686657,20.116375222198997],[-102.83748870203465,20.113482131791557],[-102.835161937583,20.11656150349944],[-102.83319413181403,20.113752214273973],[-102.82833765771056,20.111670457259038],[-102.82357351021597,20.107869551033218],[-102.81997338020312,20.107448373642455],[-102.81628738020765,20.10604788247747],[-102.81035073462004,20.10973390194755],[-102.80497900261759,20.115447855865398],[-102.8026885743335,20.119668542624936],[-102.80187340455188,20.123034285953622],[-102.80742987549513,20.133177043139426],[-102.81117857892298,20.134976103861163],[-102.81928209460477,20.13724797421429],[-102.81520406688668,20.13926464697215],[-102.8100685444241,20.139872362744654],[-102.80814253248127,20.14097310171445],[-102.79880441810911,20.141760654583777],[-102.79202318491758,20.141553280327003],[-102.78937651176318,20.13838430187633],[-102.78470080371545,20.13761931505968],[-102.77614711460251,20.138446366995424],[-102.77439768966968,20.13966029507418],[-102.7761783893165,20.141940659407794],[-102.77128806403437,20.14503667870565],[-102.767054286313,20.14866224664854],[-102.76219633349251,20.14993394146768],[-102.76013280249748,20.152264550684606],[-102.75749849317629,20.153368357436364],[-102.75490724644487,20.152245923425028],[-102.75308432508871,20.148542717387386],[-102.74877902971951,20.153003931408193],[-102.74325894364381,20.154854024490476],[-102.73064965609836,20.166425619060874],[-102.72531281395652,20.165346212752524],[-102.70887540510626,20.16832179141045],[-102.69822652812292,20.166310780718447],[-102.68967555734281,20.16603280778918],[-102.67972186718202,20.17150155147249],[-102.67891453480854,20.185146479906052],[-102.68206186691236,20.190927429904377],[-102.6828546334711,20.197111555927563],[-102.68294317626277,20.206668623916812],[-102.68461540850876,20.21228589553499],[-102.68537030531019,20.21800530692053],[-102.67984325596098,20.226073184689255],[-102.67902536902466,20.226913115296952],[-102.67800124393403,20.22692850868077],[-102.67346617300387,20.226341654362386],[-102.67083839639548,20.229983508555563],[-102.66761801733782,20.231194512245963],[-102.66672770689894,20.231309265126583],[-102.66087619783946,20.231545796802607],[-102.6565305284937,20.228433166720038],[-102.6505000844607,20.22831728130319],[-102.64774924298797,20.224826272352686],[-102.64340023261087,20.223585069039927],[-102.63867902660326,20.224082498314772],[-102.63276769675247,20.226316748981162],[-102.62733124045207,20.229385559636],[-102.62454150829876,20.235855247634674],[-102.62089769872904,20.242034383993882],[-102.62066004037825,20.242748980804436],[-102.61995572737516,20.24532010309889],[-102.6198393239344,20.24547649810887],[-102.61688317339315,20.248330745366616],[-102.62100362406511,20.252482411867675],[-102.61724328187557,20.254950246733927],[-102.61325393195972,20.25508601059363],[-102.61315959200931,20.25534017799953],[-102.61239510813391,20.25921224505248],[-102.61464214206711,20.262370102137993],[-102.61452758625063,20.263909715829982],[-102.61115018510594,20.268503188103807],[-102.61069152761297,20.268848880839585],[-102.60833956551795,20.269136670147873],[-102.60101874606426,20.26767094117895],[-102.60039313317105,20.26758335458635],[-102.59833781209574,20.265901114001167],[-102.59681773905817,20.261446629196143],[-102.59310443962977,20.262223702336712],[-102.59019112797512,20.258507443877534],[-102.58478506360893,20.26131188869897],[-102.58076192395106,20.264173417602933],[-102.57271302110104,20.265740324632986],[-102.56856098851023,20.265003935035168],[-102.56784900180588,20.265022954382005],[-102.56565914579284,20.26749970653043],[-102.56541850224119,20.2701859305447],[-102.56857925810988,20.273927766918916],[-102.56803996279103,20.275771841978724],[-102.56744985958233,20.27634321717261],[-102.56458298205303,20.27815503053438],[-102.56246152522993,20.27754886456148],[-102.55600173565102,20.271662861391974],[-102.5556807577641,20.27016410656364],[-102.55745073542579,20.26719368637896],[-102.55776449747464,20.26282103242289],[-102.55732681683992,20.261963005847804],[-102.55497735101898,20.260685351367783],[-102.55402681039527,20.260734541917714],[-102.55340202991749,20.260835055597056],[-102.55271730947254,20.26113225943925],[-102.55240999636061,20.26147509371077],[-102.55049103678067,20.267321024837145],[-102.54848016304095,20.271038429216844],[-102.54715834085857,20.27688311637513],[-102.54717548504817,20.277531332428737],[-102.54411807561144,20.28055939732019],[-102.5419476488143,20.280722704380537],[-102.5362910156075,20.279211312612688],[-102.53586416945484,20.278984672385207],[-102.53429769052855,20.27644416473845],[-102.53543679457522,20.272512848290603],[-102.53275132701941,20.27066864693296],[-102.52858425302094,20.270953374569956],[-102.52175311078094,20.276126235678134],[-102.52019560864028,20.278068619771886],[-102.52105919794587,20.285785684067207],[-102.52262221801601,20.287696446321775],[-102.52978501522426,20.2904240556353],[-102.53084012023731,20.295059000552612],[-102.53001818453106,20.296220853431578],[-102.52935942784347,20.296583495661935],[-102.5204021453988,20.300871191148417],[-102.51188444389498,20.30008222484247],[-102.50746746750224,20.302948771103445],[-102.50740804355007,20.311624584722438],[-102.50680397205832,20.314096891840222],[-102.50655881194069,20.31471603407317],[-102.5030665616489,20.315727664911094],[-102.49798768777794,20.31125062834741],[-102.4966855831583,20.30827611294893],[-102.49418269674766,20.307771182048157],[-102.49062866973878,20.308601339302697],[-102.48816343714651,20.31222549395659],[-102.48705211648286,20.317915896912723],[-102.48675113208145,20.318776532966865],[-102.48188213414363,20.324280600215786],[-102.4809982540499,20.32490563289366],[-102.47483987526101,20.327157308380265],[-102.47391221146484,20.32769237431728],[-102.46717592189754,20.330671383505035],[-102.45900404530204,20.328814166233315],[-102.4582999715509,20.32870168894857],[-102.45390258577902,20.32965292135168],[-102.45447153556364,20.334082252402936],[-102.44778771806568,20.338278219859774],[-102.4424733540045,20.338263972829054],[-102.43642344702317,20.340718009063153],[-102.43237304971285,20.341044720046057],[-102.42740150954927,20.338955375822195],[-102.42460478501766,20.334744829760552],[-102.42122890192059,20.332706036157106],[-102.41859564196733,20.332410369019556],[-102.41566544925547,20.333620902288544],[-102.40946985565597,20.333352667978033],[-102.40665893841106,20.33127522558982],[-102.40033841877869,20.32791353142693],[-102.39626727838692,20.329480622800247],[-102.39484676693127,20.331638333651313],[-102.39444837180167,20.332164834605067],[-102.39067403870627,20.333915749189032],[-102.38777694636042,20.332968963686596],[-102.38256678251742,20.330065275680283],[-102.37782920553201,20.329492086460675],[-102.37159218291794,20.32969277872951],[-102.36759295932546,20.327802596353706],[-102.36361910803441,20.329071428745408],[-102.36186782930952,20.33075130946048],[-102.36055899611978,20.334425744347527],[-102.36011927833857,20.335461068658958],[-102.35797836638312,20.337228438340333],[-102.35694821241532,20.337515960763426],[-102.3553206595455,20.3374724076981],[-102.34731247432194,20.334705938026957],[-102.34698834411489,20.334852568699205],[-102.34395930658758,20.336222043059593],[-102.34243760779964,20.339993081481737],[-102.34207096391185,20.340271693127306],[-102.33869372697677,20.340914750505362],[-102.33750464764063,20.34108610085366],[-102.33673932081655,20.34116914439136],[-102.33061675587044,20.345767074099797],[-102.32694452937199,20.349483892697435],[-102.32608563339141,20.349086777251102],[-102.31981808681468,20.344972868588172],[-102.31947246053107,20.344758078228097],[-102.31913720701874,20.344675130476503],[-102.31878089838386,20.34458864802326],[-102.31754074486696,20.34437751577468],[-102.31687561731195,20.34440027554973],[-102.31646755775284,20.344450995188197],[-102.31556908596122,20.344894565038885],[-102.31322898578668,20.350028638400374],[-102.31016470765445,20.353228275543188],[-102.3082402354168,20.35782541452255],[-102.3071290142268,20.35812132026689],[-102.30046845203418,20.35652297112034],[-102.29790501999298,20.353899206288077],[-102.29194404907156,20.352823870508928],[-102.29352244030503,20.345554974852348],[-102.28985960039478,20.340835988384242],[-102.28827807242823,20.34154530674988],[-102.28630015190197,20.344975927520807],[-102.28130729821396,20.344925405383435],[-102.27494312357237,20.341543992349727],[-102.27447881628143,20.339055370427673],[-102.26938388130651,20.33724304163718],[-102.26775222343406,20.33572856186521],[-102.26095655483527,20.335848669205973],[-102.25982738408612,20.339328866023266],[-102.25819101911611,20.33918269739354],[-102.25460350459491,20.33536585602843],[-102.25125462388866,20.336951885272413],[-102.24997237745919,20.33765315910341],[-102.24713455005076,20.339020325627416],[-102.24254119851804,20.339306918189152],[-102.24198597580914,20.339298149832473],[-102.23802735997481,20.34180825237496],[-102.23183640203376,20.34148610383886],[-102.22759028996467,20.343973465655495],[-102.22713578696414,20.344183441370888],[-102.22364164362261,20.344369535111127],[-102.22276813012581,20.34407742646289],[-102.2214870649014,20.344567120301974],[-102.22125676264102,20.348223649698582],[-102.21794852260922,20.351826329414564],[-102.21156617161984,20.352276187600808],[-102.20838723756339,20.35658404662354],[-102.2063126228582,20.354814655583652],[-102.20394916842173,20.35502672489349],[-102.19875256973205,20.35259202042488],[-102.1966068186847,20.350497120361524],[-102.19475474454435,20.350707721782612],[-102.18966769223533,20.353592373811125],[-102.18469053922968,20.353890128969113],[-102.17474101752168,20.356358244128273],[-102.17420738813496,20.356616732052885],[-102.17402550847066,20.357039074878628],[-102.17345185778555,20.357438281348834],[-102.17343390552685,20.357808519178377],[-102.17458675438854,20.36171121651506],[-102.1772720357443,20.362939078231193],[-102.17807627571716,20.367049302422572],[-102.17326159425164,20.36922905735628],[-102.16574144542994,20.366991487946507],[-102.15912982376983,20.366460389330257],[-102.15923194898363,20.371360420736835],[-102.16035481039546,20.375203860727822],[-102.16805559855851,20.376600986949825],[-102.16842942710417,20.37860491122626],[-102.16399644675823,20.379278169337965],[-102.16349458635858,20.379417164188965],[-102.15654681453202,20.37886400148045],[-102.1558997478756,20.3788334060863],[-102.1505328338576,20.37850994418244],[-102.14562550515103,20.376326777590407],[-102.1449942467525,20.376501058373663],[-102.1396997901968,20.375518588978196],[-102.13910587527414,20.375701440684622],[-102.13431116808795,20.375912747156292],[-102.13370908819161,20.37970097077482],[-102.13091589487192,20.38121836834756],[-102.1238013653894,20.37816730403597],[-102.12111729844781,20.37832318990303],[-102.11514533123062,20.38112969870366],[-102.10832345388297,20.37812003970663],[-102.10764045198403,20.378244657661696],[-102.10576822902482,20.378636105103965],[-102.09812046950287,20.38371492965564],[-102.0962544564278,20.38413126466213],[-102.09737065103644,20.387268231984308],[-102.09689916986605,20.38922025526813],[-102.094489680827,20.389769615025102],[-102.09141108985119,20.388819085095292],[-102.08731627115355,20.393997595235476],[-102.08850817476599,20.395265938769512],[-102.0862043647403,20.396472338454373],[-102.08574159698514,20.401745840819103],[-102.08461174938549,20.401633860420475],[-102.08453323504693,20.405009242317817],[-102.08049962426821,20.404047808087626],[-102.0807932576156,20.407116401114422],[-102.07869180376031,20.406668957966474],[-102.07735792314486,20.409328947424854],[-102.071107728252,20.40891628523849],[-102.07134478177522,20.4144659573289],[-102.07496578098778,20.414599529423413],[-102.07628583052963,20.41643561057026],[-102.07574146266899,20.419243867873433],[-102.07839437112045,20.419607689990755],[-102.07934263235808,20.42138909825536],[-102.07424483241283,20.42442624501541],[-102.07635157724678,20.42643060190619],[-102.07546271440901,20.42885178013796],[-102.07392771438435,20.428297741027905],[-102.0722066669777,20.430537610156478],[-102.07128112778577,20.433809237275568],[-102.06971802345168,20.433639419307156],[-102.0664372183872,20.436966630530492],[-102.06802278808254,20.43856270305355],[-102.06619964051532,20.440786516291837],[-102.06233196166755,20.441867069655586],[-102.06184063544242,20.44479810079372],[-102.06001702599303,20.444131717369885],[-102.0575018357988,20.44563990500336],[-102.05580087880787,20.44824580768136],[-102.0563013505735,20.45203115895538],[-102.05180802082486,20.45241331054649],[-102.05130350095811,20.454524871864635],[-102.04964817366232,20.452764207984842],[-102.04567874880996,20.45467015157965],[-102.04390882480544,20.456785363926258],[-102.04525546022506,20.458124741272172],[-102.04480325647899,20.46376732286808],[-102.0426591995548,20.4683090340111],[-102.0443075697417,20.472962526590436],[-102.04223311692056,20.47467060830951],[-102.043849587882,20.479224400995406],[-102.04609032681941,20.481689436893816],[-102.04407324741555,20.486289284786267],[-102.03999103257144,20.488203487321584],[-102.03874745742218,20.491381421198525],[-102.03333429644067,20.49509042621861],[-102.02819469556584,20.496541925855922],[-102.02910463389867,20.49811528837421],[-102.02860479384287,20.50135659687851],[-102.0265737227565,20.50114719007871],[-102.02552353128112,20.50610833408325],[-102.02233931642098,20.50665245598566],[-102.02065016650425,20.508174635861337],[-102.02077834398239,20.510231797451695],[-102.01878979225341,20.51775708827529],[-102.01674333415826,20.51924604792879],[-102.01389895801458,20.523580570298975],[-102.01258614865799,20.52369655957176],[-102.00962502949096,20.527335959961704],[-102.00976300880745,20.530963690948056],[-102.00866568874989,20.532628978431603],[-102.01353284792691,20.54008837671148],[-102.0141416312353,20.542596086543085],[-102.01119545571947,20.544988463076777],[-102.0040248645629,20.545263724138863],[-102.00354828802244,20.547249458301394],[-101.998487925331,20.54512747809457],[-101.99877782428598,20.541311077648402],[-101.99408518103633,20.540894340544014],[-101.99397237351764,20.544334013815217],[-101.99184094851813,20.541972453968526],[-101.98791288736675,20.54527980443845],[-101.98751359724196,20.541950560649525],[-101.98843140343496,20.539637322825513],[-101.987200905706,20.53705367290661],[-101.98358400063029,20.535295327810047],[-101.98028552650163,20.540996936158024],[-101.97835465243043,20.543169406542916],[-101.9762459208851,20.54341569700665],[-101.97391842207242,20.541788426531866],[-101.97501708230658,20.549828541509555],[-101.96933374974515,20.559083626917868],[-101.96892250461934,20.562130188601145],[-101.96989760744736,20.568810874322935],[-101.96280163983579,20.570242610343485],[-101.96293052109479,20.574368808929137],[-101.96656100962628,20.57512842494208],[-101.96703096437136,20.579344093741554],[-101.96027142258242,20.585316822833306],[-101.95852657863884,20.58912168813646],[-101.95788226805581,20.598461574816554],[-101.95686773287542,20.598991464442577],[-101.9538302470832,20.604338051243246],[-101.95129008564902,20.606775936930546],[-101.95250656448854,20.609294139159317],[-101.95483711056175,20.60784538956011],[-101.95873956578873,20.608791364227386],[-101.95830446219736,20.61438408681255],[-101.95608762822212,20.619146539447115],[-101.95780210706437,20.620415676503512],[-101.9580024739924,20.626690622833564],[-101.95555459133175,20.62874552604842],[-101.9570775804072,20.632642745516648],[-101.95919258636906,20.63230318996],[-101.96413040821307,20.63893913525368],[-101.96898938380326,20.637409175686855],[-101.9714401171974,20.640541895132458],[-101.96948357923253,20.641398706820723],[-101.9679138590489,20.64462290998864],[-101.96904179807632,20.6458506821657],[-101.96853234061336,20.650912192912244],[-101.96990958575492,20.65432123734371],[-101.97016114800732,20.658473297590604],[-101.96807966201004,20.663641200942834],[-101.97375266204182,20.66431881432419],[-101.97373105798687,20.660660405939097],[-101.97719584446571,20.66006302865526],[-101.97729066649117,20.657810657864786],[-101.98137692628302,20.65752944477248],[-101.9819445470431,20.6633267824281],[-101.990386012067,20.66089060279802],[-101.99302310160658,20.662387244810816],[-101.99528136226206,20.661556605521923],[-101.99712324110811,20.664706545285867],[-102.00226664151876,20.660477426199122],[-102.00707363197603,20.660750482493995],[-102.0104150665764,20.664013409370966],[-102.01383749165865,20.664441171596252],[-102.01551402369802,20.66852478003858],[-102.01407800202117,20.671191369084852],[-102.01556731131143,20.6734634057251],[-102.01909038831684,20.676184185389616],[-102.0176865327532,20.679470732096433],[-102.0187477121105,20.68631895069001],[-102.01497747599154,20.699618137585446],[-102.0123275229405,20.710707434704204],[-102.01248978390669,20.713924218175634],[-102.01438937569128,20.717063661738507],[-102.02029301070155,20.718636413554748],[-102.02247617533106,20.717667039911362],[-102.02743628910747,20.719749124115594],[-102.03113853892069,20.71968382798923],[-102.03748475218953,20.717303557445177],[-102.03906245316057,20.72205177875645],[-102.04037115971863,20.723247620297798],[-102.03812069552674,20.726225190160847],[-102.03926191543002,20.72827892703492],[-102.0363997667381,20.733849761940462],[-102.03424622220473,20.73547634702379],[-102.03491150391545,20.73955405495633],[-102.03446088450244,20.742139404529894],[-102.03670300369043,20.742659378249982],[-102.04220646500602,20.740307373732605],[-102.04354458532237,20.737416040474614],[-102.05558464432858,20.737433825785445],[-102.06137676911862,20.73705461242929],[-102.06448730235729,20.738749609841364],[-102.06079558355196,20.743814981967205],[-102.0610396440901,20.74851657077295],[-102.06562999855464,20.74874198556398],[-102.06690480649019,20.747533570429084],[-102.07012885185662,20.749151629002597],[-102.07363332016382,20.748759534739747],[-102.0722004992038,20.757295151796825],[-102.07239971087876,20.759183629134043],[-102.06941090080574,20.76312550328589],[-102.06563888607701,20.766755796131292],[-102.06667235466097,20.76771539973157],[-102.06759263263848,20.772247436796704],[-102.07070165294772,20.773567427376804],[-102.07362441716441,20.77677055069239],[-102.07386189884602,20.774817870149604],[-102.07606791082577,20.772171741679642],[-102.0783601473633,20.771844863275476],[-102.07901190502616,20.774027285599402],[-102.08139020069609,20.771844774133797],[-102.08147819508503,20.77544316437718],[-102.08252659442985,20.7771762098875],[-102.0865981949596,20.778960344851157],[-102.09085010409092,20.778495349257867],[-102.09019226734648,20.780516212432985],[-102.09590838638388,20.78005051619317],[-102.09456375255593,20.781408983037636],[-102.09582672134366,20.78285688592996],[-102.09380210921108,20.785716159146205],[-102.09225246614551,20.789825763059525],[-102.08975950705621,20.7916001696874],[-102.09029005705526,20.79626430732543],[-102.08709189047141,20.801460528714642],[-102.08563932970412,20.800071777883318],[-102.08249911180701,20.800235885334132],[-102.07994507012052,20.801787065267092],[-102.08122836836117,20.805919895761292],[-102.07861427393237,20.807561225138386],[-102.07685973671789,20.81177248075994],[-102.07772081442579,20.815589061568687],[-102.07619372526318,20.819386271308588],[-102.07739048804098,20.824710029423613],[-102.08002002412292,20.828392313875554],[-102.07794546387123,20.83141211367547],[-102.07626165099748,20.831327895177708],[-102.07690167304492,20.834178336904245],[-102.07345314080027,20.836314142466335],[-102.07367789256728,20.837924254443237],[-102.0698764892403,20.839091117873693],[-102.0642137835917,20.83831150597723],[-102.06288716543736,20.8418639036247],[-102.05739647348958,20.843588207662037],[-102.05293274961366,20.847564739078564],[-102.04944670741145,20.847958281995204],[-102.04675927872529,20.846750527261634],[-102.04446443061579,20.847431910462205],[-102.04198385647447,20.846117213247624],[-102.0385850082838,20.847352336059487],[-102.03587123899291,20.84942714216686],[-102.03440513476926,20.852504436066738],[-102.03030485332982,20.855377889936562],[-102.0266605492331,20.859207150063014],[-102.02146981134126,20.862465998161383],[-102.01822267716477,20.866927495860125],[-102.01498566985458,20.869458791113743],[-102.0152743122157,20.874566270035643],[-102.01257981194112,20.87834384867398],[-102.0161301230965,20.87827636814012],[-102.01799410584482,20.88328469817492],[-102.0151524773488,20.88253501692344],[-102.0096352380994,20.884508097229514],[-102.00768775229051,20.886164779913713],[-102.00433806353351,20.89203228735289],[-102.00330826243203,20.897673638249387],[-101.99895828227682,20.89978866675989],[-101.9990056031167,20.901792659552598],[-101.99456079921282,20.905366220912867],[-101.99231435370774,20.909415744219018],[-101.9891513503718,20.910171537967187],[-101.98800544013716,20.912746751203088],[-101.98206723204146,20.91395686973607],[-101.97993644649432,20.91644746431109],[-101.98056009049634,20.92170390516293],[-101.97971695324338,20.924846193085784],[-101.97004340844904,20.923391239657803],[-101.96383745897504,20.923678916723816],[-101.96310031019635,20.922518027358933],[-101.95787656927774,20.935200835025398],[-101.94487364325005,20.930315173970484],[-101.9420880074955,20.928100278665795],[-101.9389497583087,20.93061424855921],[-101.93839586895359,20.934124608413413],[-101.93716278285422,20.934795845464407],[-101.93819293418852,20.940288029280396],[-101.93947163569703,20.942479422171346],[-101.93783961596341,20.945656521142837],[-101.93914323921189,20.950235769064818],[-101.93811721991244,20.951019027352743],[-101.93714437330658,20.955800862709225],[-101.93373445440074,20.956961232064884],[-101.93478132182707,20.96047015336825],[-101.9310679387641,20.963215496556757],[-101.9313885995993,20.96711490468931],[-101.92537978950423,20.969990377946544],[-101.92370259448751,20.972120797263585],[-101.92569869319942,20.977977529482587],[-101.92446247971628,20.978553818642126],[-101.92470599051785,20.983236697342022],[-101.920810272415,20.983964489723235],[-101.916630570841,20.989755107043607],[-101.91266624473803,20.993277582583517],[-101.91209735292313,20.995414002789744],[-101.90874633190822,20.99858506562788],[-101.90933032422265,21.001789855062725],[-101.90743724485782,21.00834540511505],[-101.90552824602815,21.01190501439868],[-101.90593653869394,21.014283946986836],[-101.90525473877426,21.02307414394187],[-101.906627414686,21.02881754537077],[-101.90233880022379,21.03213048856344],[-101.89996264670458,21.038526710449844],[-101.8991260896621,21.04286681067714],[-101.89823108521432,21.04287364647911],[-101.89674736701818,21.048545117222602],[-101.90079041414162,21.050850509838995],[-101.89935272158351,21.051522782701227],[-101.89527942801664,21.05083231506177],[-101.89389345547681,21.05206800270213],[-101.89290752135446,21.05582896836671],[-101.8808658702074,21.066086238273215],[-101.87494275267682,21.07008537026678],[-101.8750020403744,21.075875198255062],[-101.87650664011403,21.077611858677074],[-101.87628188234919,21.07986318551758],[-101.87779781079473,21.085433933091394],[-101.87634501243525,21.09073375661916],[-101.8742489909111,21.093578763545565],[-101.87125567767521,21.09532408267802],[-101.8581608834462,21.096473567692897],[-101.83748689897374,21.096765437198542],[-101.836710884416,21.099756067923636],[-101.83243762042673,21.10030793245994],[-101.82797359251595,21.100067533638708],[-101.82706289352711,21.102976235323013],[-101.82377728113772,21.10314196832087],[-101.81765880554883,21.10704569489326],[-101.82026784702441,21.11866639707796],[-101.82251351266939,21.120731891686546],[-101.82677547020523,21.122078751753918],[-101.82989126173146,21.11910418209044],[-101.83084592361212,21.119372545219335],[-101.83135782685503,21.128014674387714],[-101.83285777984804,21.129671350712897],[-101.83344801474482,21.137272969804428],[-101.8283700658198,21.13758889088092],[-101.8233610168823,21.135931764437544],[-101.81792356494384,21.137338871786767],[-101.81436254827776,21.14057731026969],[-101.81056684806248,21.142556294044937],[-101.81065579305715,21.149453164834767],[-101.81419534077861,21.14837685295265],[-101.81569776728332,21.149527377525146],[-101.81384178367148,21.15332693274422],[-101.81058331952664,21.156275461203165],[-101.80477625898914,21.158500640797172],[-101.80546536051673,21.164623654488764],[-101.8040091531995,21.166348186798814],[-101.79357072767124,21.1599027693656],[-101.78727139550074,21.156382002387886],[-101.78270072459179,21.158083437154858],[-101.78110878971631,21.16052789795077],[-101.7819960237025,21.165893305046268],[-101.78368207204903,21.171178524463073],[-101.78114456498378,21.175996647738714],[-101.78133461946652,21.18107998973653],[-101.77977380599953,21.184238116956692],[-101.78115694885992,21.187413178847635],[-101.7806647325906,21.191423061753312],[-101.77443477135478,21.196584369041034],[-101.77364667338577,21.223488634340924],[-101.77120044805031,21.23473127493702],[-101.76594944402666,21.242231283956528],[-101.76034630092522,21.243365934347935],[-101.75458641292812,21.24388853995083],[-101.75803539783465,21.248514530435727],[-101.76258904324447,21.251872002701077],[-101.76819723826776,21.257732274832847],[-101.76574894308305,21.260095069931936],[-101.76371716266573,21.259504851331542],[-101.75940272006869,21.260613334560503],[-101.75781448968166,21.263683323407804],[-101.7599106342035,21.26601012246647],[-101.75971650494745,21.26762173233675],[-101.75671541998793,21.269799263310972],[-101.7522150987025,21.27013786623729],[-101.74957071665847,21.271993763750118],[-101.74265160432367,21.271437661755954],[-101.7422883308194,21.270201651936645],[-101.73853511284017,21.26915959256172],[-101.73687057044157,21.270048091384467],[-101.73578788717572,21.27729222680773],[-101.70937673778997,21.28072565319718],[-101.7071719811965,21.276475316819187],[-101.70200537946062,21.275462876719587],[-101.69893417280292,21.27777169166967],[-101.69772970734812,21.28384541205054],[-101.69452116886077,21.28767472236524],[-101.68603021733406,21.293792649261718],[-101.68330607346314,21.292090770335733],[-101.67809838618439,21.290520320000837],[-101.67689700907158,21.288828160212347],[-101.67179384542652,21.287116784694433],[-101.67110785876577,21.28818160946554],[-101.66626849131637,21.286651121702505],[-101.66595378714436,21.287835532501276],[-101.66285287949631,21.28657990923392],[-101.65944886933653,21.28819532337627],[-101.65579891158205,21.29475575605977],[-101.6504866500332,21.297884331316936],[-101.64785668469932,21.29755707172899],[-101.64317710742688,21.299335686868574],[-101.64121969943005,21.304596945008313],[-101.64196839550692,21.308892683324302],[-101.64078745354465,21.310532377207892],[-101.64168656970156,21.31834844555351],[-101.6438591767282,21.323306337796964],[-101.64615063531528,21.326318408309078],[-101.646524746436,21.3295926869406],[-101.64543317984078,21.3337659528583],[-101.64657307874756,21.33806055315381],[-101.64502609213844,21.339200500327422],[-101.64372048342983,21.344574452025654],[-101.64356614234458,21.348712781092786],[-101.64254197505085,21.350304089458405],[-101.64284492858877,21.35510609248564],[-101.64522905327959,21.357069442104148],[-101.64600562496645,21.360196969948333],[-101.64965828578136,21.362311605322134],[-101.65181687272013,21.36568894922891],[-101.65161158380147,21.369646151761344],[-101.65465654735272,21.37012435858975],[-101.65561723692213,21.373282835860266],[-101.65953288653662,21.376142724776514],[-101.66205149296968,21.37653376105419],[-101.66874347546616,21.380913547749287],[-101.67247556869393,21.3865156122215],[-101.67535946805503,21.386720333341543],[-101.67623174075328,21.389812022831734],[-101.67750180485126,21.388165284813454],[-101.67976270855951,21.390261329853217],[-101.67758295909664,21.395142369800567],[-101.67529617419717,21.39567949577622],[-101.67191388546138,21.39822440035789],[-101.6703779378413,21.402345748118023],[-101.66875661354192,21.401844040598235],[-101.6651619866218,21.404362771053002],[-101.66214145313819,21.40472476292291],[-101.66066658618325,21.406035211655194],[-101.65423743551185,21.40749579158671],[-101.65220027221761,21.406894309999473],[-101.63840628284447,21.410002298028928],[-101.63291197417715,21.407477601345022],[-101.6309442293761,21.407313075468892],[-101.62668830118116,21.409242790713392],[-101.61881689072885,21.41538752515305],[-101.60663414403695,21.414965920276018],[-101.60612204366606,21.416959350939408],[-101.60205209910652,21.419914773758762],[-101.59756474212179,21.42097693487301],[-101.59493851108567,21.418510086306014],[-101.58913934208192,21.41513148302954],[-101.58550938637575,21.415416196032595],[-101.58164129941792,21.417796928351095],[-101.5787492837452,21.41843967264498],[-101.57153813251705,21.41835565442733],[-101.57437059719967,21.420811901394416],[-101.57667555759127,21.424505987925443],[-101.58042392911398,21.428279689652186],[-101.58004905026417,21.432877610130333],[-101.5821992108418,21.433602595141735],[-101.58014888226245,21.43592534447646],[-101.58132153035984,21.439541470338895],[-101.58187252070428,21.44780941889843],[-101.58789173611183,21.442405208251444],[-101.58995091988584,21.445580885166123],[-101.5901091748284,21.450159660330314],[-101.58670649641067,21.452582926908804],[-101.59004224022055,21.45677741591669],[-101.58841998094158,21.461241688352686],[-101.58904197720841,21.464899963866856],[-101.62690935366044,21.509844784170923],[-101.62697854854014,21.513561300658523],[-101.6302698952299,21.515777307023427],[-101.63243145507931,21.51905417184969],[-101.63710348233968,21.516497886548734],[-101.63941544039517,21.51358601447174],[-101.64059928683116,21.51471194546872],[-101.63936374996769,21.517141163796907],[-101.64126883747207,21.5266483225393],[-101.64005222981973,21.528974264639203],[-101.63585056874768,21.53242573538057],[-101.63333921295975,21.531629099805627],[-101.62980833682735,21.532495912129264],[-101.62962797392242,21.535088354338257],[-101.6260514109211,21.534571213510674],[-101.6200080189268,21.541068962201052],[-101.62231433336666,21.54260206260875],[-101.62318558993701,21.546692709239778],[-101.61913768445129,21.546097834761554],[-101.61938076860463,21.54846392102752],[-101.62156161545556,21.549122755808014],[-101.62165971700273,21.551903620430153],[-101.62005648149,21.55154415791901],[-101.61894320326167,21.553627311930256],[-101.6163917808251,21.554138693493485],[-101.61743896070169,21.55659410558917],[-101.6163658819014,21.55807917558667],[-101.61043820893781,21.558737335996568],[-101.60725652284276,21.562011744644792],[-101.6092872489196,21.562359478763256],[-101.60642347239468,21.56459037655901],[-101.60663275556186,21.574898339113815],[-101.61215617786553,21.575335581427623],[-101.61040670149487,21.581166945459074],[-101.61211536160476,21.58226971571662],[-101.61064095411314,21.585369753429006],[-101.60788421596754,21.584049728563798],[-101.60713319317176,21.588367005967427],[-101.6052475010568,21.588917429566948],[-101.60317360627829,21.59360511129148],[-101.60176666016508,21.593009854677916],[-101.59783049055392,21.599176036094207],[-101.59577406607099,21.600314997358566],[-101.59524458395254,21.603492158190193],[-101.5969704069584,21.605801516455358],[-101.59605606321827,21.60917629479286],[-101.59352123487935,21.611483180632717],[-101.58958776896037,21.60906963590668],[-101.5860236344003,21.60780962893432],[-101.58352278903055,21.61362728109151],[-101.58397679966532,21.621204987237263],[-101.58153578853529,21.622730344443312],[-101.58018874382645,21.62553133302538],[-101.58214611334455,21.629336490990966],[-101.5843605962508,21.63107314673374],[-101.58908793373712,21.631413607065497],[-101.5901732605326,21.6326272694551],[-101.59340198524336,21.6318605726442],[-101.5960860949138,21.637061906603265],[-101.59379952499916,21.638409089070535],[-101.59190184667489,21.642765207181583],[-101.59170989571277,21.645870284901832],[-101.58909118090622,21.650289094614493],[-101.58896968850922,21.65202603762185],[-101.58481806963766,21.65469618457786],[-101.58298053695478,21.6578865659327],[-101.58448844039333,21.662209177955674],[-101.58163922752124,21.6650407253062],[-101.58142803038942,21.66699844151134],[-101.5845987680272,21.66896010097537],[-101.58250744829428,21.670653141954972],[-101.58258150467947,21.672613003558297],[-101.5804338850242,21.675421620657517],[-101.57907126183102,21.675463670719466],[-101.57668368392234,21.680741760687056],[-101.57285859146083,21.68509769987577],[-101.57212375418919,21.6888661074193],[-101.5695705009972,21.690381566899475],[-101.5692881189201,21.694218300438024],[-101.57014438398755,21.6962780409591],[-101.57199436230769,21.6952226503131],[-101.57242385444812,21.698091910688163],[-101.57527370166838,21.70088021443786],[-101.57971990173962,21.703536815619714],[-101.58290855573051,21.706237201608133],[-101.58404332189144,21.709574488565693],[-101.58073464676096,21.710358773318035],[-101.57901063140815,21.711958097010893],[-101.57119641388385,21.706416686247906],[-101.57085536742687,21.704307716524966],[-101.55765329440908,21.73509866392118],[-101.56627963750827,21.733412567919913],[-101.56947846708374,21.733924278161737],[-101.57645340808716,21.73619631683107],[-101.57968280061078,21.736404605613586],[-101.58169629914926,21.763423660265687],[-101.5822578054835,21.772652561877862],[-101.5848051405278,21.77162637199706],[-101.5856940787844,21.778777124800285],[-101.56020554629447,21.779901760421012],[-101.53883216633898,21.777334879617797],[-101.5105417494828,21.799058495611177],[-101.51407728561458,21.806833518548103],[-101.51474009950687,21.808110655661324],[-101.5178200717096,21.814755583509793],[-101.51976007150108,21.812979009218736],[-101.52204409206644,21.81802305280104],[-101.52976400812707,21.8131075074852],[-101.52735305405798,21.80990618459822],[-101.52782408206843,21.809177888114846],[-101.53431665856613,21.80968836445726],[-101.53569469255001,21.809889940772734],[-101.53710990630339,21.810624007928084],[-101.5407121371992,21.81826565220615],[-101.54271162581307,21.82238833236022],[-101.54287768799566,21.82272935400897],[-101.5429494916043,21.822893476805234],[-101.54314554591747,21.823312392531363],[-101.5433471863978,21.823730415930868],[-101.54351633374438,21.82405327122251],[-101.54366599145311,21.824391944874662],[-101.5437597314135,21.8245538606879],[-101.54391372895748,21.82488356645655],[-101.54408635267066,21.82526658287759],[-101.54730074067277,21.832034078749928],[-101.54823040544886,21.834085547498205],[-101.56142129971408,21.836051263806667],[-101.56197046966508,21.84001222989673],[-101.565873945715,21.841960191005057],[-101.56554760503354,21.84296620742549],[-101.56517451593885,21.845287730729353],[-101.56454444042669,21.848173726010714],[-101.5627547541684,21.855387373289318],[-101.56320857494228,21.85786140430247],[-101.5646837410502,21.86579233487356],[-101.56460001231682,21.866268571157377],[-101.56439423484886,21.872340399096856],[-101.56518213876927,21.876445636388837],[-101.56642441084853,21.87636889551277],[-101.56736871748569,21.883095595026816],[-101.56868262318636,21.891383651405988],[-101.5693534593957,21.90334404500328],[-101.56980627981045,21.91708074155082],[-101.5701167831179,21.917118434183294],[-101.57113890045008,21.917289290279143],[-101.5727314107213,21.91588031799347],[-101.57325953613366,21.915890198358056],[-101.5772306197303,21.915850339970916],[-101.57792815276383,21.91586859515138],[-101.5784071400243,21.91693144735956],[-101.58091043160925,21.91633151405921],[-101.58331332806881,21.91570548941661],[-101.58366687653302,21.91552181718805],[-101.58350978129823,21.914864223615552],[-101.58385460769387,21.914531698819587],[-101.58610679160921,21.914835319408553],[-101.59180325366941,21.915045896040738],[-101.59218541141968,21.910746894757267],[-101.59229304288118,21.90965091963028],[-101.59446450905665,21.909754589173758],[-101.5958488610587,21.90996261709296],[-101.59680725249893,21.910341581139562],[-101.59762764081444,21.910484542509096],[-101.600373034813,21.912005744559963],[-101.60068469256271,21.912874225194912],[-101.60198894521818,21.91409479040084],[-101.60298822582115,21.914814509352823],[-101.60483385032575,21.915980473768855],[-101.60692521612765,21.91709656060067],[-101.607474178774,21.917455644323468],[-101.61030421974073,21.918514008814782],[-101.61085235597784,21.918827091571302],[-101.61214022955068,21.920716416037408],[-101.61260152139266,21.92167444618775],[-101.61372889200891,21.92400098925316],[-101.61446187097124,21.926333750880417],[-101.61578737418472,21.9287030769965],[-101.61671189820561,21.929447963282314],[-101.61688379777985,21.928854625302108],[-101.61763903269275,21.927003792425126],[-101.61902243612928,21.924453418777944],[-101.61989342365592,21.920853936192316],[-101.61991385498038,21.920737976252042],[-101.62039530521133,21.918639391746012],[-101.62434261599071,21.91502370143462],[-101.62623833362755,21.91459276620168],[-101.62714967253243,21.913199154070583],[-101.62894522511175,21.910902733678938],[-101.63083621759455,21.910079074807356],[-101.6343292272652,21.908989223357537],[-101.63562231823647,21.90855768250327],[-101.63610428634502,21.908129305016587],[-101.64134224952767,21.908531875008123],[-101.64240532996342,21.908816674584784],[-101.64301057721508,21.909100888265073],[-101.6442812144798,21.909616888398375],[-101.6451546116947,21.90950145662987],[-101.64603427112917,21.908368167649712],[-101.64887978122044,21.907019608289374],[-101.65069569884594,21.90767539443476],[-101.64957660788508,21.920291988999224],[-101.65114465874206,21.92167453235561],[-101.65199432537946,21.922423661269534],[-101.65398822948856,21.924159921397745],[-101.65248005172936,21.92441605549533],[-101.654128426554,21.927288169271264],[-101.6523273545373,21.927780999093216],[-101.65446158789285,21.929842029233214],[-101.65516541658207,21.930454888188763],[-101.65786852329057,21.929789837956093],[-101.65732756268523,21.930945482527818],[-101.65724604748937,21.934350054661707],[-101.65897347389847,21.936004601219054],[-101.6571016797601,21.93925496671619],[-101.65916439012193,21.941544342193993],[-101.66118109654832,21.942304178738766],[-101.66349161091244,21.943083390848926],[-101.66613296892604,21.944557457697954],[-101.66708006584923,21.94509372119677],[-101.66765835523779,21.94555228489918],[-101.66911359241959,21.945765426945968],[-101.67248368715116,21.948932798750604],[-101.67679957883217,21.955078670937212],[-101.6813281590571,21.960675402608615],[-101.68291418816506,21.962885305590078],[-101.70013328800411,21.97052573595562],[-101.70366551426332,21.97129230478305],[-101.70541003230534,21.972251939675857],[-101.70641790237266,21.972048221180614],[-101.70740054483235,21.9725125157658],[-101.71065838956133,21.97393523890031],[-101.7090608218299,21.97694374962549],[-101.71033426155896,21.977555971269908],[-101.70911521351093,21.979925982946554],[-101.71348003372225,21.98194064308467],[-101.71478306723162,21.983609799564704],[-101.71448454956874,21.984306553900183],[-101.72023628041592,21.98771210710231],[-101.72513976261462,21.990685631878762],[-101.72998350349667,21.99355418130392],[-101.7320818220291,21.99588403156082],[-101.73182217610736,21.996743793491817],[-101.73181350384704,21.996770750164103],[-101.73004887243832,22.001923627733902],[-101.73014106500682,22.002183971808165],[-101.75100400722863,22.014645430286976],[-101.75965483731682,22.00904300092884],[-101.77430141764984,22.007481244615974],[-101.77557304540812,22.00741803397659],[-101.7776330828832,22.007301752242313],[-101.77742338776665,22.011412007882143],[-101.77725475735951,22.014628550383975],[-101.77722901058343,22.01534504153733],[-101.77882158455833,22.01528845434018],[-101.77890045869594,22.017599889392443],[-101.78270115720716,22.020917263262277],[-101.78294041209352,22.02114098919941],[-101.78475895084364,22.022748395382507],[-101.78442974901941,22.024098284200306],[-101.79341411710891,22.02326061694032],[-101.80426345157821,22.025252738254608],[-101.80358958765544,22.02590031237372],[-101.80349841367212,22.02686672287166],[-101.80249155607964,22.02746082381543],[-101.80200269362786,22.02819005552135],[-101.80116582629483,22.028749223281977],[-101.80109580375927,22.029149896057277],[-101.80066164494252,22.029598751503613],[-101.80124449720665,22.030272587155594],[-101.80194392563357,22.030676470601918],[-101.80763192932295,22.024569595045932],[-101.80894457843823,22.022889598306506],[-101.81056691998032,22.022402435248523],[-101.8131220051173,22.021732970887456],[-101.8141821267327,22.021081807961934],[-101.81549408910058,22.020360640880483],[-101.8156730477902,22.019983096953695],[-101.8204978726265,22.02115631545206],[-101.82145374885732,22.021297425304397],[-101.82465928545366,22.021257561282766],[-101.82545275629758,22.02097877162049],[-101.82658016896517,22.02111366860953],[-101.83049662707941,22.021534591957277],[-101.83291855584775,22.023228009204615],[-101.83685686294291,22.024197150329428],[-101.84059013667036,22.02663504099354],[-101.84734244466244,22.027336126104558],[-101.85902133827068,22.027984768829015],[-101.861381899631,22.02878102005377],[-101.86058599222281,22.027976796759788],[-101.86079437101768,22.02586980675261],[-101.86090997495495,22.024464939233553],[-101.86094100683209,22.023742181066837],[-101.86092666284566,22.023693355959665],[-101.86106584480257,22.02208988436132],[-101.85832488056207,22.021032493613404],[-101.86114362308138,22.021106432544116],[-101.86127391024104,22.01858315397544],[-101.8607297842347,22.017288462679403],[-101.86043232478914,22.017034018963727],[-101.86065711106875,22.01686992846942],[-101.86217065147395,22.014685375658246],[-101.86107366801104,22.0127797236251],[-101.861041780839,22.011631801673502],[-101.86215634524626,22.00877746097069],[-101.86054324256924,22.00769412406072],[-101.86077731057458,22.007162162236227],[-101.86185868271929,22.00426313283623],[-101.86159449367494,22.003844175895665],[-101.86166350527753,22.0020112018953],[-101.86163738461414,22.00178395010994],[-101.86130355754688,21.99976847928434],[-101.86113624780774,21.99869738132628],[-101.86192766811519,21.997899732579583],[-101.86321695418195,21.993036111973936],[-101.86257979295436,21.991356115738142],[-101.86359841533852,21.991439402919696],[-101.86473050116899,21.9899702274069],[-101.86822336259291,21.988336008221893],[-101.86936729885213,21.98778894214746],[-101.86910853502576,21.986964331276],[-101.87107798117052,21.986994036230556],[-101.87974694470262,21.982531693050248],[-101.89125250712863,21.97659204200619],[-101.89225421514914,21.97903573028583],[-101.893340292591,21.98233567229471],[-101.89511475697253,21.98448998185961],[-101.8952707102884,21.987921236688123],[-101.89473404320955,21.989656415739944],[-101.89776331511308,21.989885854849774],[-101.8988332978708,21.98996688162532],[-101.90348975513223,21.99098832793578],[-101.90892224642761,21.9930884584046],[-101.91156509962639,21.995566243996052],[-101.91086155220722,21.992388840093042],[-101.90944572061295,21.98902402997004],[-101.90372024923488,21.985826314780695],[-101.9000698524847,21.98672443549276],[-101.89879910301505,21.983737197667608],[-101.89882627935742,21.982466710021356],[-101.89736197588536,21.976939361038546],[-101.89749603149448,21.9733605948785],[-101.8970101049153,21.971620858702238],[-101.89663065622472,21.97064511918461],[-101.89656313397415,21.97011055281996],[-101.89602196458327,21.968211285385394],[-101.89583123470527,21.963332197952866],[-101.89598816855454,21.96315367714317],[-101.89641323036057,21.961552375512497],[-101.8966125659669,21.960961313462178],[-101.89778021315198,21.958387912716887],[-101.89037459441158,21.950950155061605],[-101.88579987483024,21.932611627273502],[-101.88176198001412,21.938132034009186],[-101.88484737803986,21.938892048137234],[-101.87965536237039,21.943894845564216],[-101.87267131176361,21.946514382579437],[-101.86821391721634,21.945560392922744],[-101.86652241547785,21.9455581257356],[-101.86530557333327,21.947510794987522],[-101.863596383627,21.946214201523105],[-101.85782406724087,21.94407401077791],[-101.85660276345618,21.943147841639018],[-101.84887493606413,21.944092259969068],[-101.84865551472944,21.94406652872044],[-101.8451219787778,21.94416754899845],[-101.83528944746178,21.941770582965546],[-101.83800336668236,21.907344362520348],[-101.88021261369539,21.91014978366246],[-101.8976150869504,21.904260545808484],[-101.90707820502627,21.90105714861454],[-101.91556096685844,21.898185059155878],[-101.91760290204934,21.897493632654573],[-101.93107904384584,21.892929577197094],[-101.93809297424252,21.89055359133249],[-101.9414989976982,21.889399661219784],[-101.9446250073488,21.888340519153644],[-101.9533127203905,21.885396622688745],[-101.95987705873875,21.88316317276559],[-101.97096912942851,21.879356087508427],[-101.97168173017229,21.879111470133182],[-101.98841958475793,21.873362884883363],[-101.99890891211936,21.86976509299535],[-102.01985181332122,21.862574257907056],[-102.02079443170254,21.851167628507085],[-102.03816492737985,21.853168952625822],[-102.03862122477909,21.835623836373315],[-102.04107789821887,21.835827350042166],[-102.0412160070237,21.8291047761997],[-102.0420628001882,21.826322419763585],[-102.04205276572463,21.826220316628223],[-102.04174293655137,21.823067651141685],[-102.04475612220074,21.822308910204754],[-102.04592057834964,21.822058961220762],[-102.0551237327823,21.8163567717599],[-102.05465834810076,21.81568319806621],[-102.05391839825893,21.815222611620925],[-102.05286743491405,21.813337803876948],[-102.05386650526128,21.813349858924198],[-102.05665879085649,21.80681973706794],[-102.05696955065554,21.806517387130327],[-102.05757317527747,21.804890421345306],[-102.05797981148413,21.80187009696914],[-102.06166648879838,21.798962912577394],[-102.0645076401936,21.796204840814767],[-102.06593424586794,21.79343373180143],[-102.06895956407567,21.788062798418423],[-102.07196273569946,21.782654748236155],[-102.07385014209149,21.782906309737882],[-102.0754482142525,21.78360279681732],[-102.08307421064143,21.78706689083799],[-102.09004380558451,21.78141481723918],[-102.09457051199064,21.777701639166025],[-102.08910776560083,21.770655213450254],[-102.08618065639325,21.767263893128074],[-102.0886958238886,21.767127694514443],[-102.09252112129599,21.765257571963957],[-102.09825316363879,21.76278259899601],[-102.09855928504027,21.76197559906035],[-102.09913703732809,21.762076003294453],[-102.10156278452388,21.761576973490662],[-102.10245569886797,21.760419196409316],[-102.10336671651459,21.758359089706858],[-102.102354944453,21.75581396623346],[-102.10207604640516,21.755267493902068],[-102.1022819120218,21.754639253963433],[-102.10219981920915,21.753915702997062],[-102.10249502315497,21.75365008436262],[-102.10356293907637,21.753398002853714],[-102.10462542052477,21.753416611535613],[-102.10428795209373,21.750973570048814],[-102.10660786653455,21.75092391469201],[-102.11055348681356,21.747807909488415],[-102.11113038227813,21.747031343537685],[-102.11338794082718,21.745265467347508],[-102.11591176191683,21.744677641409055],[-102.11642712544904,21.743061858243436],[-102.11386447118815,21.740760543817316],[-102.11477569808164,21.73870065301361],[-102.11621280944189,21.736526213160744],[-102.1195700494506,21.735624686062238],[-102.12089311764419,21.7364465750577],[-102.12559817666545,21.725723387439302],[-102.1275217274706,21.72641353883114],[-102.12941199060958,21.72481963959973],[-102.13026520906988,21.72319155692128],[-102.1343514909122,21.722022652378485],[-102.13634604817076,21.720493372441865],[-102.13876179807443,21.71303060171124],[-102.142099724675,21.705374291687008],[-102.14389164963717,21.705605296913177],[-102.14558650659114,21.704441601393683],[-102.1481890746636,21.70515913464675],[-102.14935600342511,21.704727795494478],[-102.15485739886032,21.700038163982697],[-102.1645208301266,21.702089842934924],[-102.16659528727808,21.702495478597257],[-102.16642969413425,21.706012653048674],[-102.17143278678537,21.707000981662816],[-102.17593413408179,21.694170448097964],[-102.17788591785,21.688155305221358],[-102.18741198917564,21.689941933599243],[-102.1932451086746,21.691043793729307],[-102.19424563462576,21.69123131272056],[-102.20824110676307,21.693739428374045],[-102.2142667591246,21.69481885532383],[-102.21423166807193,21.686603609466545],[-102.21638881599,21.684924696833264],[-102.21854244850977,21.683426234796173],[-102.21861350180262,21.679726304991846],[-102.21832976354813,21.67813927107352],[-102.21930353187145,21.675870383401673],[-102.22169810713035,21.67248818591014],[-102.22054556015115,21.671575921729698],[-102.22520465171266,21.66127680716869],[-102.22493344184676,21.661267951492164],[-102.22565381623707,21.66007474212722],[-102.22785903023373,21.656649977826078],[-102.23188299514294,21.65417521837577],[-102.23360558166746,21.653195685661274],[-102.236032860259,21.65378687620398],[-102.23761751548659,21.652001367562093],[-102.23907736344597,21.652658619242516],[-102.24295282739871,21.652850664197786],[-102.24654615286386,21.6534261871451],[-102.25091605858557,21.655144049820308],[-102.26586033835571,21.654416512889725],[-102.27312871144375,21.654064114899313],[-102.27521912395275,21.653973718048235],[-102.27687261176919,21.65589720346219],[-102.27963411577389,21.660647806025963],[-102.27944152552283,21.664437322993365],[-102.27961919788578,21.66445706976009],[-102.2805431114549,21.664559749715465],[-102.28891694266565,21.665490178906396],[-102.29631411029902,21.66608406311309],[-102.30257106810228,21.666573695436796],[-102.30369320910017,21.665902045942346],[-102.30287623057899,21.663749708758132],[-102.30229504423886,21.662218535020486],[-102.30193470895301,21.66126921236281],[-102.30264856584864,21.654600283855643],[-102.30039852984356,21.654165745504713],[-102.29883740953409,21.653807325781145],[-102.29718988612609,21.653480034477013],[-102.29537079099242,21.653098719212892],[-102.2980948700665,21.64841594251618],[-102.30054686849985,21.644127372680884],[-102.30367410908616,21.638552698335275],[-102.30699873039651,21.632462505367243],[-102.31016569778171,21.62662602865464],[-102.31741797777914,21.628341785173006],[-102.3210508182961,21.630092274999697],[-102.32572206816576,21.622266484219153],[-102.33175477995036,21.624981525017915],[-102.34200175292727,21.629724353215465],[-102.3474512864907,21.63254617428896],[-102.35394255494015,21.63595755901656],[-102.36687356730437,21.642751930500992],[-102.36952617762904,21.650591902972053],[-102.37437978712762,21.651441440685858],[-102.38025990134855,21.652420831384347],[-102.38109787518493,21.65140674731748],[-102.38508600661436,21.652039006014263],[-102.3864732150281,21.652415406110947],[-102.38700938360319,21.653801049455353],[-102.39027552720995,21.654719522803248],[-102.3962528514432,21.656400196499476],[-102.40001907872016,21.657409018838337],[-102.40458115542947,21.65867218275207],[-102.40749309292568,21.659484881363994],[-102.40638972217482,21.662126031497223],[-102.40459497146225,21.6655932045158],[-102.41337033072006,21.666808597689624],[-102.41953749068591,21.66937480382626],[-102.41981119513201,21.669469438367173],[-102.41998616114392,21.669530676404406],[-102.42500649639118,21.67175499645009],[-102.43279077250855,21.672702977890253],[-102.43878954317472,21.673264921160523],[-102.44145495442677,21.673419171726778],[-102.44233400076553,21.674817156193114],[-102.44721093388466,21.679071620681896],[-102.44848554036696,21.680125253266453],[-102.44939235350114,21.681272691410925],[-102.45120578387792,21.681958811448908],[-102.45391863934515,21.681015068084378],[-102.45248059830732,21.678451698744652],[-102.45323991730044,21.678443104494875],[-102.45609135099039,21.67855409852416],[-102.45842122750855,21.678798947123482],[-102.46106640482196,21.679259085138995],[-102.45703564119884,21.680993109250835],[-102.4544625217377,21.68247470479065],[-102.45469022055198,21.684330994653237],[-102.45467386235549,21.685234112873445],[-102.45317198744794,21.68597121665522],[-102.45221998946278,21.686604846968578],[-102.45221965170958,21.687452299106724],[-102.45269673584323,21.68782119683101],[-102.45412933121088,21.68874635565578],[-102.4545979392874,21.689476501406375],[-102.45446450797874,21.692226047929637],[-102.45599750705406,21.693244377846042],[-102.45670614706427,21.696008671093296],[-102.45686376290456,21.69808754258139],[-102.46343512312393,21.69791808265603],[-102.4670072901398,21.697971694208036],[-102.46972191697733,21.697472390481835],[-102.4757565469838,21.69494515919928],[-102.47658524322077,21.697215250106353],[-102.47654791110728,21.70209372240913],[-102.48010479799763,21.70353424289368],[-102.48409232177528,21.704796336425773],[-102.48428569054073,21.70499173559284],[-102.49328642310354,21.7092743753077],[-102.50983950166119,21.717148626283233],[-102.51716989210303,21.72059985093881],[-102.52053502183986,21.722027431111655],[-102.5253898044516,21.724342113700857],[-102.52673385596319,21.72496697622455],[-102.54259697635467,21.732745260910406],[-102.54261395931007,21.732761640929198],[-102.54097660904813,21.73558036233834],[-102.54213992035392,21.73593529862029],[-102.54445902407139,21.73681464264797],[-102.544485991243,21.73684363654519],[-102.54895019541283,21.73859339659157],[-102.55184822020033,21.74146623353107],[-102.55520750443412,21.743573896522776],[-102.56742099689001,21.74459171382381],[-102.57278941567091,21.74282116071879],[-102.57359452036457,21.742506286818696],[-102.57844361799977,21.74325729890211],[-102.58313996609735,21.743858225248175],[-102.58574978918239,21.74389684389206],[-102.59192218644876,21.743986442173423],[-102.59627873396659,21.74404963405675],[-102.59667091707934,21.749652758336367],[-102.59666158409499,21.750199784235235],[-102.59660374027192,21.75143011394232],[-102.5967743213206,21.754982003272346],[-102.59809745441356,21.75536630975023],[-102.60072281478239,21.755837120119395],[-102.60436367585004,21.752022458932288],[-102.6063121641721,21.75105721855965],[-102.61071503198059,21.75355846153576],[-102.61292076880073,21.75467423536594],[-102.61426663754497,21.75514536668811],[-102.61571482292436,21.755256650949036],[-102.61812328453982,21.755651779909556],[-102.62384395076782,21.760430057938436],[-102.62585805965853,21.761452033784792],[-102.63167599128184,21.766139780434685],[-102.63349383529777,21.76733945706468],[-102.63544785943776,21.76610424777698],[-102.63711486302566,21.764592466585157],[-102.64108664230747,21.764107589818707],[-102.64353911915538,21.76188449683184],[-102.64777572580408,21.762939513902552],[-102.65092330568285,21.76542222081173],[-102.65461352311956,21.764390878222457],[-102.65675413987248,21.763607516592117],[-102.65957563349014,21.7623837177764],[-102.66121431135167,21.76267800674492],[-102.6659175855686,21.76473164494041],[-102.6689263487969,21.764051447359634],[-102.67038913981162,21.763169190987696],[-102.67185981624328,21.761925644409303],[-102.67435246215865,21.75717500801727],[-102.67769225291283,21.753790231307335],[-102.68031599559907,21.75292453755509],[-102.68225305523328,21.75268086268528],[-102.68378999585525,21.753423735548097],[-102.68601415889094,21.75327494401239],[-102.68765773493163,21.753208594261594],[-102.69066857576871,21.752437198911366],[-102.69230656301642,21.746590979058055],[-102.6935825348744,21.74534447870178],[-102.69401126975885,21.744894613274937],[-102.69545031946939,21.743384608628617],[-102.69731754084671,21.741513668103266],[-102.697363755325,21.738605225444303],[-102.69742708428873,21.734562502998585],[-102.69533286838487,21.732546166741884],[-102.69626329742061,21.728768015592607],[-102.69867788094984,21.72889137336108],[-102.70463172494641,21.729483285626372],[-102.70572149820737,21.729620653752534],[-102.7111248633276,21.73005770063247],[-102.71267389801108,21.7299878897781],[-102.71476785556268,21.731914133805333],[-102.71542687341497,21.733627630948945],[-102.71764977753458,21.733126899692707],[-102.71827013262367,21.730516368299334],[-102.71975556091007,21.72818950242265],[-102.71880985215381,21.727003121573432],[-102.72059686898041,21.723867954885748],[-102.72022577920967,21.722959343834987],[-102.72024764129372,21.72160505811729],[-102.72113261116374,21.72053443873034],[-102.72279856565427,21.719111609522997],[-102.73522249788857,21.715670777349544],[-102.73701692831298,21.71591644281915],[-102.74162638107725,21.721000100604556],[-102.7441095412837,21.719180811623403],[-102.74639291205091,21.718170254904237],[-102.74707092295523,21.7170110490012],[-102.74827919506265,21.714945191475977],[-102.75185406799119,21.708763190110062],[-102.75512759909589,21.703299389176266],[-102.75760707625022,21.699179236786165],[-102.76028239773314,21.694881084588246],[-102.76285119148275,21.691213529001743],[-102.76441905579429,21.68978989952609],[-102.7659771410099,21.688998212141314],[-102.76793411652477,21.687399189228984],[-102.7707673479959,21.68536042712867],[-102.7724302779834,21.684028287477304],[-102.77552682115424,21.683708657553325],[-102.77640032079842,21.683449474556483],[-102.77916998425326,21.679242513203917],[-102.78173864296133,21.678535433562274],[-102.7850123672369,21.676250447383552],[-102.78609553675437,21.674910410271877],[-102.78773340605329,21.675203160850515],[-102.78938092316315,21.674863924943054],[-102.79176399938939,21.676972567471523],[-102.79554750034191,21.675939290615815],[-102.79566056867571,21.674857189789805],[-102.79704163251643,21.67297922859865],[-102.79804865535658,21.67028358516268],[-102.80121682789792,21.67158981046964],[-102.80527896288135,21.671282393919796],[-102.80461652573689,21.67037062223642],[-102.80282380026006,21.66754757072033],[-102.80072446288028,21.66652970573176],[-102.80071400541323,21.666526313868758],[-102.7996104906868,21.666429945199297],[-102.79763704215759,21.665582499229515],[-102.79706165970799,21.66530396010836],[-102.7966876755475,21.664486291101866],[-102.79611057837337,21.664235142289556],[-102.7959015899209,21.664754958923936],[-102.795197153309,21.663466492243913],[-102.79411307960282,21.663121567282758],[-102.79302735537203,21.66399111442746],[-102.79152694564613,21.664085053476526],[-102.78865835820682,21.663607459779882],[-102.78746115076115,21.663249719051237],[-102.78587390639467,21.66185835479189],[-102.78384401981577,21.661142336714192],[-102.78149684300934,21.659768916660425],[-102.77705287874795,21.65979975691465],[-102.77340926247774,21.658035227693063],[-102.77324105605277,21.65640758109089],[-102.77345914821359,21.65478511596723],[-102.77443735473861,21.653985537412893],[-102.77900673069087,21.652060137673004],[-102.7812555147803,21.650284208482958],[-102.78215225632692,21.648490190911332],[-102.78361468700604,21.646693363842473],[-102.78037402714375,21.64476413511744],[-102.78009674987885,21.643947729958143],[-102.7794414942556,21.642584471954592],[-102.77946911294862,21.64077884372813],[-102.77871592935054,21.639504574543537],[-102.77794479655915,21.63940396044177],[-102.7771102728941,21.637135299272472],[-102.77783594654835,21.633894213507347],[-102.77757251350948,21.632174992178136],[-102.77482070072182,21.628977668057132],[-102.7745476261735,21.627890413661078],[-102.77458911335492,21.625181975405894],[-102.77520714626075,21.622661854567866],[-102.7743651030226,21.620142046960325],[-102.77379513165118,21.619570384198198],[-102.77296458608453,21.61775563243532],[-102.77192745164069,21.61611633891306],[-102.77082210783362,21.614761333758224],[-102.77093186638638,21.611768604764507],[-102.76978588034945,21.6109343413014],[-102.76893073534717,21.61002607093758],[-102.76808262447429,21.608660194342463],[-102.7675510194016,21.607774836182386],[-102.76792695192785,21.606220013708764],[-102.76823874229427,21.60477940289337],[-102.7683519052722,21.603697324748794],[-102.7675920568634,21.602874430251006],[-102.76646824085219,21.60060185115333],[-102.76600080243225,21.59960227773729],[-102.76529489058902,21.599156143398545],[-102.76493238611408,21.597930010647474],[-102.76459436148036,21.596874395204793],[-102.76379351025065,21.595753706796756],[-102.76082310970645,21.594026963751162],[-102.76025234026577,21.593619317460707],[-102.75923332285498,21.594147997472874],[-102.75874466875786,21.594267307592133],[-102.75131365278094,21.59161378459828],[-102.74523315425046,21.589500814987957],[-102.74061453511081,21.587849415921596],[-102.73740499517999,21.58676019987763],[-102.73700025161003,21.58774816812496],[-102.7354797096757,21.590724980014727],[-102.73525769212887,21.591120233826985],[-102.73279554547725,21.591790580930706],[-102.73182631855303,21.5929995334281],[-102.72950818362375,21.593058213945596],[-102.72800874856188,21.591177936838278],[-102.7254067726364,21.589841768675456],[-102.72391173522476,21.58666090133545],[-102.72462551125324,21.58423261849896],[-102.72234282930953,21.582034248364153],[-102.72193224180342,21.577423440106088],[-102.72155887477419,21.57660565003755],[-102.71953480848964,21.576397341487564],[-102.71761161525416,21.57522441419752],[-102.71795622481318,21.572402612305325],[-102.71632819395569,21.571567613045886],[-102.71500501198449,21.571296109584182],[-102.7132382970641,21.571615505257512],[-102.71248151783732,21.572640678359107],[-102.71099859715292,21.572848895529546],[-102.71023072947867,21.5725674456084],[-102.70890991098321,21.57182611317188],[-102.70695371364792,21.57248808986884],[-102.706027409792,21.572781548171804],[-102.70501037741622,21.573037357505882],[-102.70404949296466,21.572753219615947],[-102.70317943431235,21.572831517128066],[-102.70210860464812,21.572957429940857],[-102.69958677749435,21.573113992894946],[-102.69883055996968,21.573132657758208],[-102.69642482580781,21.5726479084899],[-102.6960253615585,21.572583114843383],[-102.69523500138234,21.571274583906074],[-102.6951064739485,21.5705528405951],[-102.69474756058253,21.56883223565336],[-102.6942056316355,21.566477019822287],[-102.69345641164358,21.565021898992768],[-102.69269863042365,21.564108436830168],[-102.6929187987713,21.562395850536745],[-102.69443352126558,21.558172876951915],[-102.69504109520403,21.5563753484559],[-102.69573088801587,21.55548192178975],[-102.69565578542313,21.554126430481745],[-102.69634413651926,21.553323276933952],[-102.69715918446866,21.55060871252357],[-102.69747264588909,21.54909491811054],[-102.6970286355891,21.546650764775677],[-102.69688124892951,21.54375922463271],[-102.69641017521462,21.54303033921616],[-102.69525794141339,21.54265322404916],[-102.69389845689705,21.54317620297013],[-102.69303999600817,21.542532246330495],[-102.6917755728947,21.54314681976814],[-102.68933461296012,21.54491893348188],[-102.68761343251185,21.54390180151887],[-102.68572068370253,21.542363188223078],[-102.68454279362078,21.542775617382347],[-102.68317324324954,21.543930440323265],[-102.68182518882367,21.543731104855453],[-102.67413300829719,21.541908324694873],[-102.6729808564674,21.541531061317016],[-102.67000401466385,21.540586521651335],[-102.66751680506036,21.539837480002348],[-102.66518956235308,21.539887091903097],[-102.6618483013309,21.536073823514016],[-102.66128678640496,21.53551310866203],[-102.66025889675046,21.534400242191793],[-102.65956854789039,21.533647715064944],[-102.65696820935551,21.534986100393894],[-102.65532068286126,21.535414416296646],[-102.65483824781421,21.53540763138716],[-102.65377689137807,21.535392699682916],[-102.65348888203334,21.535298351621634],[-102.65243623920605,21.534741764425576],[-102.65031644713508,21.534531315490312],[-102.64953583614687,21.535062082381387],[-102.64914552858914,21.53532746424986],[-102.64769823130837,21.53530705184778],[-102.64663396989488,21.53547262310917],[-102.64518667379548,21.535452188787247],[-102.64363706337895,21.535791474217035],[-102.63746925147251,21.535252720426627],[-102.63073432225383,21.533983332167224],[-102.63083959796785,21.533443064223775],[-102.6306864922467,21.531288920028146],[-102.63121843057536,21.527938760293978],[-102.63432986614748,21.526285297352672],[-102.63559570178751,21.525561347577707],[-102.63782850198191,21.524052242917776],[-102.64028002711672,21.521569828235783],[-102.6416109441011,21.519422581826348],[-102.6420800779564,21.51867291361333],[-102.64203532689328,21.518621186362566],[-102.6374090279449,21.515116225130896],[-102.6358844596192,21.51392080444316],[-102.6321560043171,21.51043504800265],[-102.62833981703244,21.506255826338474],[-102.62594997782867,21.50296128353881],[-102.62484151108742,21.501411485283597],[-102.63217836270752,21.49690073830709],[-102.6331067262995,21.494404478955516],[-102.6333177060796,21.493658484348487],[-102.63258549160071,21.491210156100067],[-102.63337174656351,21.490318355106467],[-102.63424860769828,21.489789011110815],[-102.63485360989682,21.488172277673186],[-102.6353548490489,21.48700554487607],[-102.63575233329937,21.48628881447911],[-102.6368366464352,21.48485944330423],[-102.63756449302753,21.483900788123208],[-102.638110909195,21.482689431869176],[-102.63626648594061,21.481827941926156],[-102.6343090025236,21.481523437263604],[-102.63666771620831,21.477116450416474],[-102.63911145454796,21.47700565502265],[-102.6390919881315,21.47762711332348],[-102.63890668491376,21.481262249405233],[-102.64232275650272,21.4786614359885],[-102.64234796896721,21.47864075965532],[-102.64251497116925,21.47794898734088],[-102.64252317317505,21.47729432367504],[-102.64220288309224,21.47646533374268],[-102.64326243906169,21.475789521655656],[-102.64390327589916,21.475954555338717],[-102.64504907272743,21.47583699477798],[-102.64701383604017,21.47453712028232],[-102.64927029181894,21.473567367703822],[-102.64944843602802,21.472286196420782],[-102.64941890768398,21.470318823364494],[-102.64899137101105,21.46735330659402],[-102.64820945336766,21.463492630096596],[-102.6478829787012,21.462537491528906],[-102.6471397831238,21.46206987796097],[-102.64646906726057,21.46178955159172],[-102.64315433905693,21.461163244728482],[-102.63964838097257,21.463697548757125],[-102.63696304353562,21.4647286093537],[-102.63612986582825,21.462907816966435],[-102.63683987905591,21.460750776989016],[-102.6368689988845,21.45894529020353],[-102.63832280477493,21.45851435523531],[-102.63842651447737,21.45806434495165],[-102.63864120493832,21.456712951513623],[-102.63894941453094,21.455543467795394],[-102.64248345572787,21.451710630534137],[-102.64449867161278,21.449810628787816],[-102.64814308678206,21.44763671409919],[-102.65025294470485,21.448388729576436],[-102.65130932900126,21.448674452228374],[-102.65149469620968,21.448227609485116],[-102.65167338614816,21.44679841564613],[-102.65393748870736,21.447176304109064],[-102.65500686892062,21.446649522719895],[-102.65435497659439,21.445195649347454],[-102.65388006114716,21.444737510905213],[-102.65139319946087,21.443438477155496],[-102.65104653573542,21.440995625375592],[-102.6535098224519,21.44145851296929],[-102.65499404292143,21.440127361241082],[-102.65495651454609,21.438252907310527],[-102.65351833533288,21.436959207374343],[-102.65245197669691,21.43731820632439],[-102.65372509162273,21.436337818986658],[-102.65408779562955,21.436209073460986],[-102.65407661948512,21.43538480656963],[-102.6546187767317,21.432654108382565],[-102.65417717702422,21.43219054179974],[-102.6523057541907,21.430995047098634],[-102.65264958215664,21.429556321502957],[-102.652415984904,21.427741348745087],[-102.65264338557301,21.425625789996275],[-102.6543060230623,21.425943224369632],[-102.65427156558047,21.425425203648217],[-102.65305936744198,21.422504742164733],[-102.65389744430854,21.42152058787366],[-102.65510495437292,21.422909952812347],[-102.6557561299764,21.423905421883603],[-102.6562449714645,21.423847495668667],[-102.65704018011053,21.422938679597564],[-102.65665987954287,21.421660668232562],[-102.65667255621986,21.420866463737298],[-102.65669013829404,21.41976487117313],[-102.6563131406466,21.419217817969297],[-102.65565268052438,21.418305611643916],[-102.65431850842413,21.41789278524027],[-102.65254242929058,21.41375077912511],[-102.65228755869367,21.412935913563786],[-102.65325421945528,21.411499810698672],[-102.65430026132083,21.412417423710735],[-102.65467723612352,21.412964479853883],[-102.65759886032453,21.412467133195094],[-102.6596694692605,21.41087701577709],[-102.65811767163063,21.40885898413842],[-102.65686586131034,21.40875118373532],[-102.65532340220511,21.40872960272918],[-102.65445721117447,21.40862718114863],[-102.65244572232871,21.407786341042822],[-102.6522148420886,21.407268056831185],[-102.65224849179214,21.406587596872043],[-102.65354727014767,21.405426893500078],[-102.65461853305203,21.404965851945235],[-102.65546308946102,21.40389278034553],[-102.65590552513754,21.40314798769947],[-102.65370711696124,21.401074160467942],[-102.65234665839063,21.400769833133552],[-102.6507985531374,21.400625603069045],[-102.64925420163502,21.399993820642294],[-102.64752518719735,21.397339233535376],[-102.64683967673596,21.394224579875072],[-102.64345088070701,21.39290871862238],[-102.64156982162075,21.39336033504719],[-102.6392052756483,21.393945020055696],[-102.63826225655447,21.39184123619725],[-102.63927428893811,21.3899501230768],[-102.64282359786455,21.388065410646732],[-102.64150906034081,21.386513873047363],[-102.64147146522356,21.38262029005267],[-102.64089894296518,21.382251053418713],[-102.64145561288137,21.379914033005093],[-102.64172501563866,21.378831429972934],[-102.64188618108716,21.37712091177883],[-102.64243679754293,21.367737602786974],[-102.6428782570589,21.36701886863284],[-102.64382101640581,21.36640894666266],[-102.64442286186318,21.365782011909346],[-102.64508189965608,21.36496823501045],[-102.6466461028283,21.364685225746427],[-102.64705991970123,21.36472985895631],[-102.64811802146016,21.364716147630872],[-102.64889180606173,21.364527130857425],[-102.65006456520456,21.364389495389105],[-102.65054092124143,21.364056261900316],[-102.65169442019362,21.363080112494174],[-102.65239175388854,21.3625276151148],[-102.65515233280956,21.359971748228986],[-102.65917371260991,21.356251139482197],[-102.66402102460358,21.35286701703899],[-102.66616399525901,21.351452065498847],[-102.66821722323431,21.349487890443186],[-102.6693135209319,21.348443768647257],[-102.67102818589825,21.346939294804145],[-102.6746091458956,21.344348842145678],[-102.67605484910325,21.342614934004928],[-102.67777703433461,21.340890030972048],[-102.68184345160057,21.339158078175387],[-102.68309041939028,21.341045215635063],[-102.68437089430779,21.343081625805155],[-102.68933189974587,21.342312349023985],[-102.69215823465004,21.34189910132801],[-102.69265723742365,21.341437036761135],[-102.69409348541564,21.340711446526484],[-102.69568645168437,21.34175395714192],[-102.69685235292047,21.342936284440782],[-102.69837797325374,21.34368320116073],[-102.69859577537216,21.34434947617416],[-102.69947227079768,21.344511787423073],[-102.69968023481704,21.345426444416773],[-102.70011683269416,21.346956780201424],[-102.70072650190468,21.350416071527377],[-102.69960534241818,21.35316061660336],[-102.6996078279671,21.353449538208054],[-102.6999696035814,21.35482665222588],[-102.69930498902988,21.35584254121818],[-102.70022114760513,21.358263786261034],[-102.70126854129273,21.359789620457832],[-102.70235983130192,21.36370739216312],[-102.70251101419473,21.364205660235427],[-102.70406526573402,21.36494092095029],[-102.70805147801468,21.37179263499604],[-102.71171040649926,21.375382284710042],[-102.71217644497142,21.37717268044196],[-102.71220040994984,21.377653441005407],[-102.71340795424271,21.3787442203203],[-102.71382644649066,21.38019468386244],[-102.71486372372061,21.381017803286795],[-102.71640390096564,21.381006258964874],[-102.71668508976217,21.38041616849739],[-102.71887536778183,21.380782906172954],[-102.72055071954662,21.381095197243155],[-102.7221404232505,21.384277283687936],[-102.72274228894344,21.385076488561253],[-102.72429059133549,21.386425324510355],[-102.7265312120594,21.387136165205618],[-102.72912806646798,21.387355540720364],[-102.72926905552146,21.383717316876186],[-102.72945346012887,21.378958467105576],[-102.72941092659823,21.377596417657458],[-102.72971738247526,21.373949526832916],[-102.73069146133201,21.37202413151664],[-102.73120899391955,21.37139701357455],[-102.73180260291974,21.370411738119742],[-102.73204191842058,21.370164647855574],[-102.73265985696918,21.36916319287087],[-102.73259406435221,21.36891337034092],[-102.73210849928637,21.367395506580692],[-102.73204405111426,21.367254495083273],[-102.73060756861702,21.365216996078573],[-102.73035306011093,21.36319034735328],[-102.7291369795571,21.361977770117846],[-102.72885063011381,21.361793295027212],[-102.72866901360896,21.361068435780965],[-102.72839380652164,21.36016171029712],[-102.72820940841558,21.35961741388013],[-102.72794256186717,21.3581689998569],[-102.72785732754784,21.35744544512488],[-102.72850547520915,21.356662050297302],[-102.7300663290992,21.355951905390498],[-102.73078195881601,21.35531780146505],[-102.73233531128807,21.35431761284599],[-102.73385407479117,21.35336828671683],[-102.73489504500651,21.352976580568225],[-102.73591417706331,21.352076189386025],[-102.7367231849708,21.351334482786058],[-102.7383195480582,21.349372539928652],[-102.73915956951299,21.347841620940756],[-102.74045867933148,21.346598855423792],[-102.7416727781432,21.346465803921205],[-102.74208688658734,21.346323894818056],[-102.74266659263355,21.346426259183033],[-102.7439563304149,21.346747253135675],[-102.74440176160186,21.34689458436253],[-102.74484676268247,21.34622500925252],[-102.74575468763777,21.345533528566477],[-102.74633306892099,21.345210479963157],[-102.74818199580164,21.345799588317277],[-102.75010661562891,21.346005987378817],[-102.752821265872,21.34365049187602],[-102.75324626887385,21.343036378237116],[-102.75466215576427,21.342098696212645],[-102.7577654306969,21.339186183191828],[-102.75867500127958,21.336976779376016],[-102.75900367891296,21.335562081898672],[-102.75525580908783,21.333420998141094],[-102.75515720807238,21.331904751240245],[-102.7580552812907,21.32849301739867],[-102.75871492141658,21.327209014192135],[-102.75846598348153,21.326952808351052],[-102.75701659054084,21.326124848861298],[-102.75528087705231,21.323158593789003],[-102.75875621163857,21.320474909904647],[-102.76202811401214,21.31918657191511],[-102.76453715855575,21.319032214956053],[-102.76752103429936,21.318414801557424],[-102.77096389613632,21.31589433563755],[-102.7739347968074,21.316762125147818],[-102.77485397176758,21.31757176776955],[-102.77551637812462,21.318639864841884],[-102.77590762142052,21.31895991180113],[-102.77808215715368,21.322524595608115],[-102.77847748885375,21.322930774509075],[-102.77921726394925,21.32398837940451],[-102.78041923152159,21.3262883553669],[-102.78371298353039,21.32952340298334],[-102.7867973787624,21.32996392208986],[-102.78978986846715,21.32871166069998],[-102.79137074044553,21.327954323128665],[-102.79625076983939,21.313363140226215],[-102.79849937617445,21.306913780099364],[-102.80084081785446,21.31145960717612],[-102.80279601683401,21.31509935228337],[-102.80573722202087,21.320235387398952],[-102.80725514192386,21.320972584840035],[-102.80773383076303,21.322722972184067],[-102.81196378799933,21.323716819894514],[-102.81570300396498,21.318829176318786],[-102.8175176941964,21.317636987873186],[-102.81761714541756,21.316287551564756],[-102.81755936135937,21.315386824386223],[-102.81689983824947,21.313384698839968],[-102.81628254879132,21.312471637227873],[-102.81608177375028,21.31111976963399],[-102.81632047008225,21.31013247582922],[-102.81717474726617,21.308240858914928],[-102.81805789345088,21.30716866336212],[-102.81787987105645,21.306173002286755],[-102.8179935583604,21.305000516353573],[-102.8175962808391,21.30321286309629],[-102.81722410782095,21.29838481642753],[-102.81630174398458,21.297659731201918],[-102.81589638661444,21.29693618417906],[-102.81622097200801,21.295858818209467],[-102.81668908563785,21.2949114667926],[-102.81948801980218,21.29608661748796],[-102.82062510749711,21.296455674511094],[-102.82191753342278,21.296996874622153],[-102.82210960977989,21.297093109933428],[-102.82330498258608,21.29760012733675],[-102.82536081041724,21.29831930127193],[-102.83192064676632,21.300309807790086],[-102.83284322089594,21.30087477995852],[-102.83317791310827,21.30111513943382],[-102.83715574722129,21.303449316052195],[-102.83975151906276,21.30157660737217],[-102.84006507047377,21.29815125248922],[-102.84129038235335,21.297915632225454],[-102.84207951262863,21.29776155482358],[-102.84323951913768,21.296568761760682],[-102.84364374943499,21.29539993438891],[-102.84396671228842,21.294510658053184],[-102.84420290444052,21.29411258335051],[-102.84497385450544,21.294238356401877],[-102.84561721934978,21.294068366006627],[-102.84629292452672,21.293986709468925],[-102.84705190781006,21.293749480854558],[-102.84819023327839,21.293378042422376],[-102.84875487767039,21.293242284218422],[-102.84932502107222,21.29168085370958],[-102.84973128084516,21.29020953215894],[-102.85078826245808,21.281390289577757],[-102.84680143362726,21.28016770827594],[-102.84507153116164,21.277682370859395],[-102.84482945169191,21.277326844199365],[-102.84689723792519,21.27669071499082],[-102.85199621810415,21.27546350576307],[-102.85217485210109,21.274147646273263],[-102.8579466604208,21.270877111753805],[-102.86004712130745,21.268248739914156],[-102.85902092177054,21.26705606941846],[-102.85907169138608,21.26612388491077],[-102.86065994777675,21.264129875411186],[-102.86185683092481,21.262964580853634],[-102.86296772909736,21.261925362048373],[-102.86353750559925,21.260882723838677],[-102.86355416917957,21.259709328609176],[-102.86099672702375,21.25669748213079],[-102.86111156848204,21.25543370266007],[-102.86207480116337,21.25544642650567],[-102.86274315400749,21.255816517298513],[-102.8633241929233,21.255552809180415],[-102.86334453207837,21.254197912320308],[-102.8651007885938,21.25259546578269],[-102.86528452271381,21.253319456708937],[-102.86613061828314,21.25468487669758],[-102.86680400496192,21.254783601700694],[-102.86801396693875,21.252831228106515],[-102.86836310413071,21.252934507727787],[-102.86851159898862,21.254943605431265],[-102.8699930719738,21.25535738627235],[-102.8724026713341,21.255354307512334],[-102.87348034871485,21.25286817223497],[-102.8730573702286,21.25138150771585],[-102.87145951436042,21.249360717911884],[-102.87214361068499,21.246755247788315],[-102.87346678034544,21.2451179751734],[-102.87390607397407,21.243904971066513],[-102.87473041010367,21.242665265036237],[-102.87528004758275,21.241158532178986],[-102.87541764172425,21.238959984586643],[-102.8761101155564,21.237089468725344],[-102.87832376724458,21.23740979546983],[-102.8808197638993,21.237982540872054],[-102.88100432118,21.238526834331935],[-102.88051711750694,21.239062292079097],[-102.88022135206461,21.239419700992926],[-102.88079481471334,21.239788440502423],[-102.88165979434058,21.239889625297337],[-102.88232468649824,21.24062079860255],[-102.88346297965063,21.2418083889051],[-102.8837571834365,21.241361148003364],[-102.88349423698082,21.23964220609173],[-102.88341317327007,21.238647239666534],[-102.88505400533779,21.23839729013099],[-102.88555921669064,21.236778260944334],[-102.88575220703632,21.2366900318313],[-102.88604869753317,21.236152033102144],[-102.88836146055081,21.23609052647464],[-102.89132517046028,21.237572334848608],[-102.89162759013243,21.236763880861304],[-102.89107186541128,21.235131051709914],[-102.8911783884327,21.23440994498202],[-102.89167378377567,21.23351325633473],[-102.89234782045884,21.233431288281622],[-102.89424422657953,21.2355317643989],[-102.8947275889173,21.235447270703503],[-102.89492287689495,21.235269182641673],[-102.89540090023831,21.23554586874951],[-102.89539593220906,21.235817214604253],[-102.89587760052501,21.235914209989687],[-102.89664940190119,21.235832557742185],[-102.89869397850981,21.237507005850375],[-102.90119496345278,21.236792155592468],[-102.9032452547965,21.234761727000773],[-102.90321646249384,21.234383023590283],[-102.90338624204469,21.23414337964988],[-102.9036940961563,21.233750702360055],[-102.90278662454335,21.230942708239127],[-102.90289380452958,21.230041015969846],[-102.90271642358027,21.229135559234805],[-102.90282068438461,21.228145084003756],[-102.90328099833317,21.228215198124985],[-102.90325308266648,21.227784886595487],[-102.90420276948475,21.22608332686235],[-102.90393097527692,21.225242182095542],[-102.90461225427055,21.22466154212799],[-102.90547346694854,21.22507729592064],[-102.90586428358324,21.22447827109852],[-102.9052006740252,21.223657365647682],[-102.90631589282754,21.223511938099136],[-102.9066218760671,21.222342056485843],[-102.90705470466975,21.22233563847908],[-102.9078950687558,21.222558489900848],[-102.90934164718146,21.22133387533961],[-102.90976603368188,21.22063765541543],[-102.90965470878183,21.220538151512187],[-102.90830095710396,21.219565821478113],[-102.90906881298508,21.21821530158502],[-102.90947760004838,21.21814440354325],[-102.9094889710259,21.216665768631174],[-102.90917547340075,21.21652879958259],[-102.9091936790598,21.21471377198509],[-102.90909893443683,21.21408198647265],[-102.90998081855747,21.212126174509194],[-102.91036028583994,21.21121184703503],[-102.90944899910897,21.209324211900082],[-102.9091524511444,21.20739774971247],[-102.91065217240669,21.205234661780025],[-102.91675777623516,21.208178817230817],[-102.92146368640641,21.209990887391427],[-102.93464831359614,21.21231266573045],[-102.93819800286838,21.212923468807162],[-102.94178847121162,21.213545149234164],[-102.94794531926078,21.214739882341235],[-102.94767195040879,21.2163240989438],[-102.94774210931735,21.216934626427985],[-102.9477486567705,21.21696138803975],[-102.94824696919568,21.21880693465056],[-102.94895765358189,21.219418941170204],[-102.94917700044755,21.220254373389764],[-102.94930735145789,21.2204564872809],[-102.94931173268918,21.22107711624102],[-102.94935901268178,21.221987740187046],[-102.9494150550774,21.222620340417052],[-102.94854934357198,21.22532830167563],[-102.94963519110973,21.226832353355974],[-102.94823177579599,21.228557933556317],[-102.9480946240393,21.22960844519082],[-102.94769862299682,21.22918238723463],[-102.94748505082401,21.228917670270675],[-102.94706497831538,21.23012471591761],[-102.94666119205976,21.22975739392666],[-102.94630060649928,21.230256414721453],[-102.94661326917634,21.231219639708343],[-102.94654951244132,21.23186265787632],[-102.94830567086501,21.23331268841531],[-102.9479706596494,21.234137080565972],[-102.94670028083857,21.23421842270784],[-102.94642067381767,21.234108909449333],[-102.94621043717461,21.234323045580027],[-102.94655821335982,21.234577254553358],[-102.94736002414345,21.2347183746233],[-102.94887265440065,21.234579262539455],[-102.95186307958289,21.234082454431245],[-102.95034016282085,21.23297219427843],[-102.95102776660741,21.232076839722936],[-102.95190052799074,21.231635852199815],[-102.95475503020384,21.233606863193017],[-102.95554259648708,21.233018620704513],[-102.9562007011279,21.233850346634085],[-102.9570674620914,21.234452497485563],[-102.95793557954994,21.234447063517962],[-102.95881141522062,21.233759544274847],[-102.95925705298055,21.23427892112869],[-102.95928074948495,21.234969503961224],[-102.96096387560124,21.235523207716426],[-102.9617234509642,21.235033079603397],[-102.96264274460066,21.234927878274675],[-102.96406769811665,21.23576098690353],[-102.96549404252022,21.237761013050715],[-102.96538161846962,21.2387517158175],[-102.96475075890191,21.23980205727611],[-102.96450424310768,21.2401007863906],[-102.96516157805786,21.239858369855938],[-102.96575225250206,21.240022484919507],[-102.96649215840614,21.240713303442078],[-102.96657037593826,21.2401747093092],[-102.96707306090843,21.23984220057099],[-102.9676092076088,21.24058242453492],[-102.96752855639653,21.24108286087312],[-102.96803888638624,21.241726241992524],[-102.96962103359613,21.24071082895034],[-102.96989299410046,21.240443178063288],[-102.97064466786111,21.241221417065447],[-102.97113390571349,21.24099020611834],[-102.97171627553172,21.241216405308023],[-102.97227034162847,21.241037507675514],[-102.97278499910527,21.240169544624393],[-102.97337139727796,21.240441590231057],[-102.9740674415084,21.240145624953527],[-102.97578815226296,21.239219250483586],[-102.97610668871602,21.24006111826793],[-102.97904886890103,21.23973107137465],[-102.97959694591424,21.241223146496054],[-102.97879753903857,21.2428850579891],[-102.97892957937574,21.243689855514106],[-102.97971362530541,21.242770834591795],[-102.9801267142958,21.242894256924217],[-102.97974583162818,21.24572035778192],[-102.98232614919323,21.247418811076557],[-102.98384529503744,21.248670822747954],[-102.98431950467887,21.248502304910403],[-102.9851839569568,21.248556092153365],[-102.9852524994946,21.24862977099167],[-102.98634546844517,21.249137463801958],[-102.98794502410641,21.25149151345437],[-102.98825262170044,21.252312811043282],[-102.98825617978514,21.252796867440907],[-102.98817841245796,21.254876718036087],[-102.98904531310978,21.255935371122177],[-102.98950402809294,21.256675740066328],[-102.99011881486177,21.256671762565816],[-102.9907224243131,21.25666785497583],[-102.99097496286043,21.256048518399325],[-102.9914620754767,21.255405819411067],[-102.99205548388386,21.256544910440255],[-102.99264145049119,21.257179750647992],[-102.99292979199652,21.257313619994193],[-102.99444090395889,21.258498945719793],[-102.99497873616002,21.258907599959457],[-102.99605862799496,21.259225108328565],[-102.99666229826215,21.259551313173745],[-102.99719105054714,21.259680061803977],[-102.9977499576114,21.25967641792397],[-102.99840261018261,21.2596248626553],[-102.99949511146599,21.259482354552745],[-103.0012343450984,21.259050842051806],[-103.0048836308668,21.257557161264003],[-103.00634815754131,21.25699556846223],[-103.00686210878831,21.25696077869935],[-103.00701767747319,21.256836306826017],[-103.00727490787494,21.25620024997386],[-103.00834383163726,21.256291440340192],[-103.01071270832728,21.255791961154898],[-103.0114114005072,21.25505447667541],[-103.01101772495622,21.25452794304482],[-103.01080943381027,21.253756575762054],[-103.01061007221585,21.252344508639112],[-103.01060538080958,21.251720385734075],[-103.0106019668454,21.251266204301373],[-103.01093649291477,21.25094496109989],[-103.01124748982528,21.24934211316821],[-103.01122817979387,21.24716497479352],[-103.0116289916811,21.24600215097604],[-103.01701354557991,21.2410485411188],[-103.02046779120269,21.24154018834804],[-103.02153725125203,21.24164372944267],[-103.02318374887614,21.241736971482567],[-103.02650489738994,21.242124103695062],[-103.02682357844941,21.2428923671431],[-103.027281902737,21.245238610592935],[-103.02946613104876,21.247338228178364],[-103.0304810780321,21.250314105913674],[-103.03084557111919,21.251141946511552],[-103.03361331485115,21.25068044711105],[-103.03557785190429,21.250373154905674],[-103.03702339898945,21.249167373699777],[-103.03887580981876,21.249635742018825],[-103.04005638665757,21.24795623997761],[-103.04072511457673,21.249704984552693],[-103.04315995630941,21.249506772377288],[-103.04506914381307,21.249185151020356],[-103.0455369816313,21.24919094923098],[-103.04650949512967,21.250876322447255],[-103.0463375815196,21.25232970359656],[-103.04621496296454,21.252530641689418],[-103.04603491718501,21.253268186354205],[-103.04592621847746,21.253942595694696],[-103.04638399390365,21.25419959384294],[-103.04710295802334,21.254885353430723],[-103.04774230141624,21.255594664175817],[-103.04340516857928,21.26035252188933],[-103.04416890856334,21.26212461751885],[-103.04956945797511,21.263354799534795],[-103.05132030508827,21.26256510711596],[-103.0527583020916,21.2626214618914],[-103.05530821556448,21.26090336293464],[-103.0588856213489,21.25949208668834],[-103.06073229168305,21.257609982641327],[-103.06304816346284,21.255454183840698],[-103.06406191287135,21.25548615600269],[-103.0653081049731,21.25577784339322],[-103.06522806576356,21.255083308121584],[-103.0646189977191,21.254569404473273],[-103.06393504843675,21.253766548951262],[-103.06359074732308,21.253437730812323],[-103.06346502277802,21.252473099073597],[-103.06272458590706,21.251624352975625],[-103.06206691076613,21.251080832839534],[-103.06164950200684,21.251176287819646],[-103.0607892089393,21.250714929497633],[-103.05746797702386,21.24872796913229],[-103.05706974528897,21.24769171689752],[-103.05697907551445,21.24723953727738],[-103.05764790343329,21.24612966903902],[-103.05956177925282,21.244199034121095],[-103.06448799110751,21.239857290204895],[-103.0669421393539,21.236877457555124],[-103.06921551632593,21.23247783353554],[-103.0701961397125,21.231044512483436],[-103.07049867500768,21.230144050824606],[-103.07080976046774,21.228251721343213],[-103.07141069772081,21.226542476248255],[-103.07212698449734,21.225586484714654],[-103.07239343399715,21.225018389151046],[-103.0727871502259,21.22439041871837],[-103.07326973903668,21.223015021151866],[-103.07332995967568,21.222314981718682],[-103.07361785971352,21.220556207215452],[-103.07417109022595,21.218335116733783],[-103.07526972675026,21.217582409279714],[-103.07623310918314,21.216568803968528],[-103.07685811102112,21.21609743291293],[-103.07752826605758,21.215449920704998],[-103.07761447145151,21.21473518083951],[-103.07793302855595,21.213791951208748],[-103.07784715098501,21.212977702086732],[-103.07708770612174,21.212156401973118],[-103.0757510387541,21.211636455450503],[-103.07421568271423,21.21143934424083],[-103.07108184919241,21.211015484586085],[-103.06998046540127,21.210630119536177],[-103.06941960521107,21.209651864604325],[-103.06999129793189,21.208847067069428],[-103.07019177030082,21.208536012648267],[-103.07061985244167,21.207630266322667],[-103.07110397686586,21.20720701505752],[-103.07191323154228,21.206091196013972],[-103.07236926370479,21.204903194614474],[-103.0735509783201,21.205487044601853],[-103.07464138704165,21.205374821682938],[-103.07494168810149,21.205209736276572],[-103.07637859195489,21.203960247019097],[-103.07686137728797,21.203831626451233],[-103.07755150540493,21.202649911924482],[-103.07879975648166,21.202294901233188],[-103.07913558671521,21.201199064977345],[-103.0789777596105,21.19900928394668],[-103.07906304598305,21.198443370461575],[-103.07999338145606,21.19862372813651],[-103.0804417885563,21.198760422448515],[-103.0809708032013,21.198301979503583],[-103.0817766715395,21.197362131334557],[-103.08303580197276,21.196538618751617],[-103.08358960458992,21.19584384625074],[-103.08385046836912,21.195414648189114],[-103.08419594697779,21.192537997368277],[-103.08433082633576,21.19217880520074],[-103.08386843302128,21.189599440132667],[-103.08395840854905,21.188398315479617],[-103.08415620654335,21.185690149611332],[-103.08367879895025,21.18358064419442],[-103.08204488140143,21.180248035415275],[-103.08122001733301,21.178128757867512],[-103.08109699484669,21.175822132622386],[-103.07859254546355,21.172350907773478],[-103.07864450757705,21.170317538955658],[-103.07761794836381,21.169037649242682],[-103.0763831916305,21.168506451881],[-103.07599019763074,21.168144872687208],[-103.07569222107088,21.166174797107374],[-103.07627078875709,21.16594387933219],[-103.0769416103285,21.162176736734864],[-103.07539593780513,21.15936425002269],[-103.07133397366374,21.153383194141725],[-103.07300558722454,21.149281924632135],[-103.07346812697398,21.148805040583625],[-103.07445322987962,21.147910694427367],[-103.07499024580477,21.147016784726475],[-103.07514312083617,21.146223213950066],[-103.07535317983064,21.145302017652853],[-103.07517915186116,21.144854999291],[-103.07531379481327,21.144129968619552],[-103.0767461927017,21.141705368946532],[-103.07782352020183,21.140363033906283],[-103.0794989632625,21.139166473815237],[-103.08067420490397,21.138349555673244],[-103.0841359053552,21.137211260077322],[-103.09170723107036,21.135067480366217],[-103.09442492674356,21.133433984981593],[-103.09562793495269,21.133026407535112],[-103.09593956175104,21.13158015492553],[-103.09861506426745,21.13117152878783],[-103.09859563719425,21.13071886525381],[-103.0981946367989,21.128219914127385],[-103.09771731099687,21.128033703424705],[-103.0976798261841,21.1274615557046],[-103.09746983117986,21.127327531374476],[-103.09686714756805,21.127310178263883],[-103.09706281879085,21.126400609180337],[-103.09693656513417,21.12612898129646],[-103.09637360934465,21.12575470208634],[-103.0962834300883,21.125541761686236],[-103.09596570668344,21.125149468752852],[-103.09579389840798,21.124528900563803],[-103.09550855471304,21.1241363748166],[-103.0952116930801,21.123508462933955],[-103.09527828313747,21.123038923401168],[-103.09489479271389,21.122853846934504],[-103.09460801715102,21.122669891684552],[-103.09403125016007,21.122306520957068],[-103.09379909854187,21.12132561451267],[-103.0931842555081,21.121208340782175],[-103.09210653393791,21.11769821015372],[-103.0921434240314,21.116286096514727],[-103.09103096790255,21.11540120127762],[-103.09036079339717,21.116230772017047],[-103.0895895059931,21.116755281215205],[-103.08830223134152,21.116014067287665],[-103.08650055694517,21.11475799345925],[-103.08502575959693,21.114728971368038],[-103.08429270010657,21.114115949177688],[-103.08551103054685,21.11275033703805],[-103.08446561689323,21.110844319620753],[-103.08370764087067,21.111087374397584],[-103.08062587118138,21.110867094364437],[-103.07645283166016,21.109816844336137],[-103.07412955364555,21.110152504930397],[-103.07652936392367,21.102879766752153],[-103.07701885296319,21.101964138154642],[-103.07540559973637,21.101125146545655],[-103.07619317314925,21.100773420782673],[-103.07607240617682,21.100260282212275],[-103.0758548475485,21.09904871568625],[-103.07626742629577,21.097373017754876],[-103.07507774070785,21.0967656588287],[-103.0735801359121,21.097166466928854],[-103.0732998883467,21.097631777958895],[-103.07145746974578,21.098844991579142],[-103.07126855646442,21.09903048817324],[-103.07017045631653,21.099099688141848],[-103.06788587846796,21.09940158610624],[-103.0666855777913,21.09956461664092],[-103.06520680700976,21.104330221864416],[-103.06321729686664,21.10390813906423],[-103.06326622186208,21.100588633954146],[-103.05911621545954,21.09892594087495],[-103.0569731019657,21.099804627249455],[-103.05739292240821,21.09771125821294],[-103.05744085324164,21.096256227804588],[-103.05965541765244,21.09333976385551],[-103.06019211006628,21.092766387081156],[-103.06224435824055,21.091533606768337],[-103.06455277582768,21.090794845455378],[-103.06478875698298,21.090041954908145],[-103.06477340200598,21.08879733726593],[-103.06496191887163,21.086986443410808],[-103.06554275094607,21.08668792239706],[-103.06659741214781,21.086255319936527],[-103.06822370238348,21.084382949410497],[-103.06831267346064,21.08385637766537],[-103.06862125752855,21.082986105415046],[-103.06913503061804,21.082330853989106],[-103.06897641655917,21.081594629598328],[-103.06920071627025,21.081101849575134],[-103.06940880976208,21.080855756077938],[-103.07001159211535,21.08029489458147],[-103.07111400146914,21.07921809552073],[-103.07145429406546,21.079182668090482],[-103.07236593202003,21.078825424223453],[-103.07278055669497,21.07844266108566],[-103.07359277617337,21.077943903911432],[-103.07466272523129,21.076158887587155],[-103.07491632077307,21.076075656636647],[-103.07538911237475,21.075720620817606],[-103.07463864081654,21.074308238695778],[-103.07680428847783,21.073033250164656],[-103.07815060066667,21.073398128057704],[-103.07974158684806,21.07228992785747],[-103.08284641675323,21.07190955962386],[-103.08374010311815,21.07100768627913],[-103.08475408241634,21.069680322872216],[-103.08842456713074,21.065741810290206],[-103.08883040381579,21.06557777482817],[-103.09180011222168,21.064794065474985],[-103.09676435995846,21.064867391122903],[-103.09764335149276,21.06478849262254],[-103.09969172648772,21.064088729646812],[-103.10111062042347,21.063885607741895],[-103.10314041635223,21.062880711898913],[-103.10548815731079,21.06215330469621],[-103.1061481665987,21.063541524646382],[-103.10684288270807,21.064683111123145],[-103.111319460429,21.065984392158953],[-103.11231219051393,21.065676711257197],[-103.1129726666581,21.065780911887884],[-103.11380919194056,21.066644946700137],[-103.11557403663414,21.067664614873138],[-103.11762166454713,21.06746274058321],[-103.11832078238615,21.06749028915948],[-103.12053311660196,21.067102074479692],[-103.12121570911677,21.066886566015114],[-103.12332315009365,21.066803901064134],[-103.12402139864776,21.066420020277405],[-103.12444711319546,21.06568929768582],[-103.12337679625824,21.065007048832285],[-103.12201678143464,21.063593368783756],[-103.12148773878613,21.06240961482041],[-103.12318361003122,21.059216970874786],[-103.12623477276162,21.05443558293939],[-103.12732907522218,21.053531075261958],[-103.13006091409409,21.053459175491355],[-103.13095723855406,21.053958830263298],[-103.13231430588877,21.054814003163813],[-103.13228514974406,21.055321777959705],[-103.13274543629018,21.056565895929225],[-103.13315045565639,21.057797585470382],[-103.13604224120377,21.059617301633693],[-103.13844188778052,21.05915617321523],[-103.14156285057538,21.06139625549173],[-103.1422034017786,21.063602749260042],[-103.14320400536184,21.06574280326265],[-103.14571747556369,21.064290391779878],[-103.14666728154612,21.0654927401618],[-103.1495409291449,21.064882182061183],[-103.15008062712923,21.06505697121338],[-103.15210045185086,21.06899676441833],[-103.15534990203508,21.069841918587883],[-103.15702837956007,21.07011718049131],[-103.15971702110846,21.07077927723833],[-103.16288175295784,21.072885651089507],[-103.16227249316199,21.070058489213523],[-103.16454173629324,21.070111983048093],[-103.16614700264802,21.06920592860081],[-103.1682330234554,21.07109161657513],[-103.17021742568613,21.07243782092968],[-103.17425145955593,21.071656718929717],[-103.17442431412923,21.07156966698699],[-103.17523729755169,21.07246381857334],[-103.17529594787692,21.072441442254956],[-103.17548715819026,21.07236849133926],[-103.17617250897405,21.072111244531584],[-103.17912105648242,21.072138276917485],[-103.17961931095209,21.073305384316484],[-103.18007640205309,21.07460598602586],[-103.18144377690754,21.07448988312433],[-103.18241354326983,21.07395793979532],[-103.1834433740118,21.071939306010904],[-103.1851758327586,21.071561127104587],[-103.18752431628758,21.071037505776985],[-103.18802837500954,21.07058899203173],[-103.18840715437545,21.070863606859632],[-103.1885663033944,21.071496008465033],[-103.18719833671275,21.07496185998798],[-103.18813939229682,21.07544634240128],[-103.18905119826832,21.077830678644943],[-103.19101832046601,21.07900237512075],[-103.19159927947891,21.07910585342546],[-103.19170597004461,21.079935900269845],[-103.18925520570451,21.080849119814445],[-103.18911174600021,21.08297484245719],[-103.18901683475826,21.083606185535416],[-103.18864314888054,21.08405006238877],[-103.1882910265511,21.084894858620146],[-103.18889243487604,21.085171001033245],[-103.18956720971721,21.08549888528239],[-103.19124971902693,21.08611942381748],[-103.19151283389238,21.08572196175794],[-103.19354724201202,21.085549669733723],[-103.19432043093894,21.086182268726134],[-103.19622243144931,21.085873462521874],[-103.19668640874829,21.085626539109285],[-103.19719253796939,21.08515962248464],[-103.19807893540326,21.084771147573747],[-103.19880043656553,21.085385274035445],[-103.19914284622206,21.086063091156234],[-103.20006401993163,21.086801474156346],[-103.20054381817954,21.086181177494097],[-103.20207496977997,21.08624909442949],[-103.20251293989395,21.08753767078531],[-103.20340671385117,21.08798901480276],[-103.20351995016085,21.089092794116425],[-103.20503314065616,21.090714939944405],[-103.20503087966387,21.092073063494695],[-103.20543751145732,21.092709942066108],[-103.20589796188597,21.09270122970281],[-103.20609556450921,21.092220226592588],[-103.20750138798792,21.09181136321496],[-103.20798302621063,21.092294096017497],[-103.20874109596934,21.09384163706426],[-103.20960164699949,21.094220595302374],[-103.21018927955475,21.09303972253838],[-103.21118680126443,21.09196956667256],[-103.21230750370853,21.091300937492463],[-103.2130463805197,21.090915499040136],[-103.21392890110735,21.09068989023632],[-103.21484221454153,21.090631398141397],[-103.21522658095313,21.090705494826068],[-103.21632046060392,21.090217274717304],[-103.2164269165446,21.089857116792302],[-103.2175538597985,21.088782006320912],[-103.21910321144719,21.087985704321113],[-103.21923826087908,21.088057959932883],[-103.22041970089157,21.085729105838084],[-103.2214343394794,21.086466810065417],[-103.2243922877251,21.085749187883835],[-103.22539392427018,21.08498106301039],[-103.22741498310114,21.08492395538724],[-103.22996209838072,21.081330400212778],[-103.23049007997929,21.08056579393582],[-103.23161731850206,21.079932509646596],[-103.23258605880773,21.079094427329665],[-103.23420232717035,21.078987159897167],[-103.23778644821118,21.078618080443107],[-103.239429951006,21.079730335171064],[-103.24239361827813,21.08216725698759],[-103.24254491255954,21.083589546616054],[-103.24425256802226,21.083797898645685],[-103.24509847444341,21.0834116729813],[-103.2454291217665,21.082843789743777],[-103.24727815875724,21.0828745760831],[-103.24851991219282,21.082460691116637],[-103.24881740906721,21.081881568924132],[-103.24895304530713,21.081721503242704],[-103.24976031615944,21.081873179831177],[-103.25151326448389,21.081729762595046],[-103.25254068534383,21.08121523415582],[-103.25286978686518,21.081452648919196],[-103.25378075491648,21.082658445473726],[-103.25414599158574,21.083265158783547],[-103.25523962890185,21.084628256041867],[-103.25687229178192,21.08356527719826],[-103.25782851968677,21.08332463847279],[-103.25827733086709,21.08198361960848],[-103.25842031412412,21.079317853717953],[-103.2585444683296,21.07851228356816],[-103.25972946928238,21.07711190810653],[-103.26139520699172,21.07623074471718],[-103.2609217074367,21.07396067320917],[-103.25892477286317,21.07153653955214],[-103.25867080575921,21.071473872503873],[-103.25792275878109,21.070961602476586],[-103.25994356719286,21.06862830434858],[-103.26121177079216,21.064944024953036],[-103.26280990541449,21.062154372074588],[-103.26483485088369,21.060874625721397],[-103.26581185139787,21.06046910542068],[-103.26705708879763,21.060948459222516],[-103.26966805614057,21.05969309294545],[-103.26993280252248,21.0590675531447],[-103.27112609798968,21.05637101210408],[-103.27437357045807,21.052246443767615],[-103.27698186187735,21.05137941038936],[-103.27729793499589,21.05164203995315],[-103.27773109654356,21.05193252338779],[-103.27774893970758,21.053188189039076],[-103.27794014475501,21.05454486694009],[-103.27853812756484,21.055889631932473],[-103.27909134616618,21.05645333678484],[-103.28182733450058,21.057292967379226],[-103.28350189933963,21.057326249801747],[-103.28616481531446,21.05892269945457],[-103.28650812745826,21.059280794467952],[-103.28864308782835,21.061591218873502],[-103.29119492926384,21.06217118206439],[-103.2942738548976,21.06378701433505],[-103.2954462383907,21.0646834392507],[-103.29607783133673,21.064832212279953],[-103.29694245835412,21.06457776173488],[-103.29747924186881,21.064031979796653],[-103.29794654581349,21.06321210901666],[-103.29829524222879,21.06242858099307],[-103.29854923953411,21.061947935076944],[-103.29988343814091,21.059820089985863],[-103.30087075717358,21.057662205670567],[-103.30087624477721,21.0570297457067],[-103.30274951642195,21.054809581489792],[-103.30340379107639,21.05563903416413],[-103.30410783728342,21.056531679173418],[-103.3052540694294,21.057188313859058],[-103.30703627902966,21.0575249290506],[-103.30998616849223,21.056560458055117],[-103.31070384625923,21.056267280058023],[-103.3119051065841,21.056284746727215],[-103.31253870157616,21.05629625592684],[-103.31396766233308,21.056134251358344],[-103.3166945723707,21.054077680726323],[-103.3201410128267,21.055324748242242],[-103.32187399406638,21.055610968943427],[-103.32303481255394,21.055705074588275],[-103.32452273315943,21.05581667926009],[-103.3257271338037,21.05542752997752],[-103.32697447983043,21.055301841890753],[-103.32851109588705,21.055304889527577],[-103.33171962103944,21.053599947685257],[-103.33329218728636,21.04967852242379],[-103.33276158734503,21.046603665176917],[-103.3330618948076,21.044640855473688],[-103.33442276598913,21.042999763316573],[-103.33597075780494,21.042382859408917],[-103.33886220450671,21.041869402359737],[-103.34058809871544,21.04242769888009],[-103.34141570889562,21.04371882355781],[-103.34314711538946,21.045795009284973],[-103.34401100043118,21.04616486169516],[-103.34575043213653,21.0454590691794],[-103.34672462040669,21.044294543921808],[-103.34720700990806,21.044208630831122],[-103.35416418566825,21.045781159908415],[-103.35585808030521,21.047099979617997],[-103.35673208892354,21.048620173993186],[-103.35839370677672,21.04955571333892],[-103.36005763897595,21.050929342630468],[-103.36161500620341,21.050898497503113],[-103.36320571572918,21.050459975298793],[-103.36364405975871,21.050915936403214],[-103.36579556861699,21.051343985363985],[-103.36725207351509,21.05133549191072],[-103.36915206980882,21.052376433136033],[-103.36882124590613,21.0551014115901],[-103.36898732872885,21.057513829764844],[-103.37137731901754,21.05987620096147],[-103.37191304048145,21.060210121482953],[-103.37282885152763,21.06113281232666],[-103.3737226351011,21.06210288800264],[-103.37385846374616,21.06222899208626],[-103.37508629040178,21.063992447740986],[-103.37533647413977,21.064484505388236],[-103.37660739614739,21.065900506683136],[-103.37718251910741,21.066085866402318],[-103.37851730816368,21.0672020309093],[-103.38186510303086,21.06789812944902],[-103.38337359497973,21.068093383288783],[-103.38480502755522,21.067304278403697],[-103.38559527845922,21.067798185767742],[-103.38533442919118,21.068471819100353],[-103.38504618627587,21.06957884333457],[-103.38436911551037,21.07137789108623],[-103.38485734269028,21.071750173911425],[-103.38641838946364,21.07291905313241],[-103.38632041932613,21.073729298445357],[-103.38612397673637,21.074698977341995],[-103.38741798713096,21.075730200035537],[-103.388478559867,21.077125881150778],[-103.38784559180982,21.079187556236548],[-103.38830169185769,21.079435741951897],[-103.39077794840819,21.07861462175714],[-103.39312372153387,21.078987971433264],[-103.39501707655438,21.079709098532476],[-103.39641686709581,21.081361061647726],[-103.39758748053805,21.082987585198964],[-103.39768300523076,21.084773538474906],[-103.39648810436398,21.08576894607802],[-103.39515637646053,21.086300894468422],[-103.39443770007068,21.08711769206616],[-103.3964491413077,21.08883980414896],[-103.39660056380865,21.089296637009],[-103.3959979891315,21.090483340832066],[-103.39299537048788,21.091072043211],[-103.39300802894405,21.09185461171927],[-103.3948835330039,21.09412961051646],[-103.39604430352267,21.093696690614422],[-103.39566445930194,21.097620678263524],[-103.39686927496803,21.099147884671083],[-103.39713188646306,21.098915268068993],[-103.3975266454467,21.098754684436017],[-103.39841110546456,21.09810561866209],[-103.39922458809735,21.099320288789613],[-103.40032907350536,21.099069293440834],[-103.4006869217294,21.099821849785542],[-103.40136188618663,21.09982836516008],[-103.40096613745027,21.100636827451524],[-103.40065759877302,21.102438274992153],[-103.40142980099881,21.10245930495944],[-103.4019169043396,21.10280034574032],[-103.40297053106462,21.1027698075456],[-103.40353483083459,21.1031039818065],[-103.40419110318152,21.103634207988534],[-103.40494366831575,21.103940333701928],[-103.40527715919598,21.10436282352657],[-103.40547850876476,21.105021536644585],[-103.4057103721733,21.105507080579628],[-103.40647348702726,21.105988712902615],[-103.40657147248959,21.106389776023832],[-103.40737560828,21.107002107027313],[-103.40793835452763,21.107401611160014],[-103.4087913274459,21.10796087739351],[-103.40938251523573,21.108155936191963],[-103.40970956292671,21.109191860322596],[-103.41041195066225,21.10978061610382],[-103.41105297610392,21.11003230999762],[-103.41123976125016,21.11126378784303],[-103.41322193849709,21.111710954773855],[-103.4135971164032,21.112630284279533],[-103.41590443492271,21.114842883109247],[-103.41680934123082,21.114914346466037],[-103.41765281874257,21.11649806262926],[-103.41938969972443,21.118158775311258],[-103.41919620703715,21.119801111241998],[-103.41963251170313,21.12009195744423],[-103.42144387061,21.121261105206315],[-103.42245332987028,21.12301380758049],[-103.42318167703615,21.124033275133172],[-103.4232668757914,21.124773812201113],[-103.42310484094577,21.125709174728456],[-103.42206990855044,21.12653892196556],[-103.4216997739178,21.127692018736695],[-103.42163193106245,21.128294244661504],[-103.420743104608,21.12913323689486],[-103.41880890041307,21.13134836561835],[-103.41808315405217,21.13394933374525],[-103.4174477713338,21.13496278298834],[-103.41674427041869,21.13583008729529],[-103.4163732128224,21.136640119709796],[-103.41627601849251,21.137071781334782],[-103.4177760375444,21.1379755950108],[-103.42124258750613,21.138570138455293],[-103.42379790150022,21.13811169408467],[-103.42439053305935,21.138377842564807],[-103.42567402008763,21.13899684461336],[-103.42800700690572,21.141208748116924],[-103.42762478836931,21.142554242064307],[-103.4276219850218,21.143310125442042],[-103.42758111797224,21.143849520961567],[-103.42775432331041,21.144837845406812],[-103.42759102987623,21.145686875348986],[-103.42763306725391,21.14604944006021],[-103.42856716836388,21.14671116109514],[-103.43091470317523,21.14419684495607],[-103.43168215065413,21.14443424185623],[-103.43193660109353,21.144137723696872],[-103.43291985344206,21.143402632932634],[-103.43316556771202,21.142769258433816],[-103.43382082210411,21.142512124627274],[-103.43477256423898,21.14208010199451],[-103.43593167198372,21.14225460361689],[-103.43685957923651,21.142650106382746],[-103.43819056171657,21.142749983787724],[-103.43984741616612,21.14257117971556],[-103.44334740601562,21.14246297345511],[-103.44522926568317,21.141027947165128],[-103.44631484753347,21.141742857411487],[-103.44682104017033,21.142394576204538],[-103.44748853353838,21.143484447030517],[-103.4532836865339,21.144072806395116],[-103.45648129954401,21.14308779617363],[-103.45830908328213,21.141904370435952],[-103.46461658835847,21.143145928253944],[-103.46668601330157,21.143585479611716],[-103.46830219842951,21.14322741090018],[-103.46884930812621,21.143462496498785],[-103.46964517609621,21.143094288565123],[-103.47206885481586,21.141399548909135],[-103.47538465400504,21.137274334461438],[-103.47789451856141,21.13657408281648],[-103.47914898287092,21.136314231514405],[-103.48156966850712,21.135072162726317],[-103.48291983719048,21.134722428602743],[-103.48370109234457,21.133826512311146],[-103.48905208938334,21.13303630114268],[-103.49029749591477,21.132556005319827],[-103.49167824817414,21.132352082813895],[-103.49519116091244,21.131251117837508],[-103.49644174974935,21.131077667295926],[-103.50405153897748,21.127738670129702],[-103.50560892170967,21.128373935308275],[-103.50646243079535,21.129715720784418],[-103.50703987675593,21.13421250136895],[-103.50809505098562,21.135766439371423],[-103.50862383142044,21.136778409393514],[-103.5092263016187,21.137461174145415],[-103.51015558723026,21.13779045441055],[-103.51002952586776,21.139226290448505],[-103.50975533458325,21.141769706343098],[-103.50951432104779,21.143564195046338],[-103.51067290450925,21.144843069684157],[-103.51123448939353,21.14612066690097],[-103.51171438068235,21.145283696142315],[-103.51205249717441,21.1450411645543],[-103.51455203025517,21.144736491993513],[-103.51551899145795,21.144156639442997],[-103.51652174719686,21.143357875508002],[-103.51759537887841,21.142229124285222],[-103.51808188953152,21.1419248036392],[-103.51895381084819,21.14222561544733],[-103.51928015401376,21.142402066504133],[-103.52071888565058,21.14153920567105],[-103.52117959734659,21.14212161371995],[-103.5222880519674,21.14219044358282],[-103.52389068302858,21.142329904960718],[-103.52574991253789,21.142351339806794],[-103.5270790344644,21.14180133248999],[-103.52864134402267,21.14150619354416],[-103.52995896418457,21.141892635213026],[-103.53021933707527,21.142004502458462],[-103.53159089681907,21.141584252687096],[-103.53206670066146,21.140304591591814],[-103.5328520614164,21.138775921759304],[-103.53295415706265,21.138144257725344],[-103.53276437992025,21.13787121982267],[-103.53220141137336,21.136421401700943],[-103.53181812927,21.136056840763956],[-103.5317324009323,21.135153027633976],[-103.52965110826227,21.13451899569202],[-103.53242764458787,21.133109541165425],[-103.53400398922543,21.130653734995633],[-103.5362841037325,21.129289385037623],[-103.53823928331605,21.12879106008336],[-103.53925054434467,21.1283549750342],[-103.54039025245294,21.127745195844966],[-103.54105605180047,21.126285319610304],[-103.54350203032146,21.126403228026277],[-103.5445608081219,21.12676772926369],[-103.54695359519013,21.126783766197377],[-103.54701983253517,21.126565981522106],[-103.54833209489794,21.125292955860004],[-103.5487164432526,21.125027212296686],[-103.54973762843906,21.12517896631067],[-103.55035451077964,21.124821868373658],[-103.55074015708925,21.123356771727856],[-103.55293894090624,21.122434288205966],[-103.55292519657905,21.121984745188],[-103.55426057087783,21.121262241448335],[-103.55452170803409,21.120906649812355],[-103.55431989662969,21.11981414570829],[-103.553625830187,21.117318095835003],[-103.55369625059478,21.116747851145135],[-103.55508112473098,21.11752357523386],[-103.55634953170164,21.118067795083505],[-103.55649985768486,21.118489041399528],[-103.55652915434763,21.11952000546387],[-103.55768738610391,21.11949073584958],[-103.55800288518213,21.11833999262535],[-103.55899427133488,21.119105966900975],[-103.5595198367323,21.118870666941916],[-103.5602302698893,21.11830785129962],[-103.5603415191988,21.11845863730747],[-103.56106039071005,21.11895150894361],[-103.56174287454257,21.11914585380083],[-103.56269964547937,21.118796900520124],[-103.56500374724351,21.119502121290452],[-103.56489686392132,21.11842425497565],[-103.56515532065367,21.117935202217552],[-103.56694627428442,21.120787267442438],[-103.56735993834707,21.119717639357816],[-103.56764613502747,21.118925028245087],[-103.56797944052357,21.11877383039939],[-103.56849480842283,21.119281493313736],[-103.56870357469137,21.118294592703478],[-103.56858394500017,21.116933848310225],[-103.56958794017606,21.117277298984334],[-103.57044946551929,21.118347424034937],[-103.57114320402906,21.119186606391622],[-103.57151726381352,21.11953500280663],[-103.57254221737446,21.12012392590748],[-103.57317707074571,21.120640731160677],[-103.57308948106146,21.1212165013996],[-103.57530146541927,21.121107624190472],[-103.57572904568144,21.121349086543887],[-103.57612564435505,21.121637195409903],[-103.57648140910794,21.12140358742556],[-103.57747629458822,21.12222112738999],[-103.57748923163433,21.12281843934744],[-103.57793350377233,21.123393469445602],[-103.5783441317302,21.12365946397],[-103.57886656042774,21.124117882911378],[-103.57935170120453,21.124457787175572],[-103.57971189456555,21.125020885498373],[-103.58000548336236,21.126089527340582],[-103.58124716625355,21.12733691013341],[-103.58176319917004,21.12717350259078],[-103.58270181003007,21.12677814700305],[-103.5830648020438,21.126307021341347],[-103.58375735740486,21.126159217270867],[-103.58319151315027,21.127465741798744],[-103.58417884136537,21.12792100512229],[-103.58550004703415,21.12808270676885],[-103.58850833442125,21.127062611126405],[-103.5887512456514,21.127356343950964],[-103.59044103487855,21.127522053893472],[-103.59120857875678,21.128229019070886],[-103.59177754032328,21.1294327254854],[-103.59273010873557,21.130129601463864],[-103.5935410243934,21.130354552482004],[-103.59417327660282,21.131049423593083],[-103.59561394020625,21.132807258485116],[-103.59681880869198,21.13525644739633],[-103.59715727402852,21.13670384246575],[-103.59723029282452,21.140027274378895],[-103.59866453487354,21.140506371858976],[-103.59923573426738,21.141291524400344],[-103.59915184823012,21.141794916297215],[-103.59844841057316,21.141970932297397],[-103.59772902858225,21.14324295321927],[-103.59782371250759,21.14362400546196],[-103.59934632588573,21.145710834013016],[-103.6005760560787,21.147666969725094],[-103.60158310621904,21.14858444125565],[-103.60163777404131,21.149102905012057],[-103.60146402553676,21.150892399122768],[-103.6019824663179,21.15167095963949],[-103.60334724096708,21.15285163522111],[-103.60366177216116,21.153059762443775],[-103.6067426806199,21.154641694978807],[-103.60824731272487,21.15533909292958],[-103.6097814656444,21.155257618743747],[-103.61035699321587,21.15525560153992],[-103.6116600826739,21.155159621628798],[-103.61360849677578,21.156247185152324],[-103.61405780702904,21.15692935275274],[-103.61415251288014,21.15753813367604],[-103.61445539111656,21.15800497510412],[-103.61491690139695,21.15894401920474],[-103.61400903274551,21.160874391182915],[-103.6133432706398,21.162237916798915],[-103.61243380241427,21.16394488043011],[-103.61184788037485,21.164797259761713],[-103.61244678623751,21.165956077353826],[-103.61255855444085,21.17055109408483],[-103.6125446121448,21.17151569309152],[-103.61159982690663,21.177415724561854],[-103.61214412422049,21.179272019134658],[-103.61294907584505,21.17983702202946],[-103.61423063923041,21.181177375344532],[-103.61506123347635,21.18145898061573],[-103.61762270104498,21.183269441348898],[-103.61611891551809,21.18574356154363],[-103.6163718141874,21.186096600083545],[-103.61843258363075,21.188260797776593],[-103.61903583074081,21.188942243246288],[-103.6202159401301,21.189318123860176],[-103.62132401425288,21.190941568503092],[-103.62388711198162,21.192704733513153],[-103.62453826016684,21.193145688047935],[-103.62516811344562,21.193062077394245],[-103.62566997175873,21.19305674305184],[-103.62695069216466,21.19328822555201],[-103.6272503725528,21.193331753919097],[-103.62800500528698,21.193572011359663],[-103.62908704472937,21.193363939941833],[-103.62986269195557,21.193964006916758],[-103.63337120445527,21.191252845647227],[-103.63337439220624,21.19151533866443],[-103.63296620515428,21.191682476313588],[-103.63280189401257,21.193386225681138],[-103.63331930452722,21.193526873255962],[-103.63512829711055,21.19697514492077],[-103.63577855684906,21.197545180438397],[-103.63658711204448,21.19791049890773],[-103.6369134235631,21.198729648706603],[-103.63712917755066,21.19972836579535],[-103.63785752542913,21.199936653476698],[-103.6380542091029,21.19993454686363],[-103.63856956932165,21.20033260222158],[-103.63911860313493,21.200198638854943],[-103.63960551778825,21.200079028030245],[-103.63997996042355,21.20018940418595],[-103.6403466125023,21.200776529112034],[-103.64209839552421,21.20172488279667],[-103.64256031300027,21.201877292558095],[-103.64312520012857,21.202420442954917],[-103.64420632581079,21.202592694830116],[-103.64474789483467,21.202944847539754],[-103.64505457814937,21.20306230260644],[-103.64538303731734,21.203058769065137],[-103.64579910231527,21.20339328417282],[-103.64607550833864,21.204362426144655],[-103.64663029989714,21.20481824016815],[-103.64749848786295,21.205379930700985],[-103.64769447052822,21.206200447008882],[-103.64793466545865,21.206426656746032],[-103.64801149508219,21.206520367131816],[-103.64853368196646,21.206700175803064],[-103.64937114675735,21.207402609455812],[-103.64978502720436,21.207681529176398],[-103.65051731727993,21.2078551949632],[-103.65122574999646,21.207947308478595],[-103.65196587318911,21.20800572808622],[-103.65232646823415,21.208600654934287],[-103.65287674465549,21.208664607683488],[-103.65373260310014,21.208757051613702],[-103.65406174670886,21.209257428245564],[-103.6545132476486,21.209563951937525],[-103.65517725187573,21.210098079305624],[-103.65546082918848,21.21077248668962],[-103.65607997195906,21.210985486094557],[-103.65666402698997,21.21100026738526],[-103.65608485862009,21.21159060898202],[-103.65590149183237,21.212127054703103],[-103.65607769398702,21.21266086680464],[-103.65692585972084,21.212588070723143],[-103.65745518477843,21.2126904234446],[-103.65765007587623,21.213376323577563],[-103.65899741016409,21.213711268129316],[-103.6596689230941,21.213703982589323],[-103.66007825805406,21.214306862308774],[-103.66193651205816,21.215500766261016],[-103.66264450656269,21.215906448210035],[-103.66311341394396,21.215971249314237],[-103.66395243684133,21.21575392687282],[-103.66449508608599,21.215669551079316],[-103.66584868037455,21.21576879826688],[-103.66609286264213,21.215766138464915],[-103.6667585791032,21.2158369698746],[-103.66732405149548,21.216048549356174],[-103.66652030951877,21.216788711878053],[-103.66383088693016,21.21866464926177],[-103.66377310950668,21.22025240577807],[-103.66390257314424,21.221877147247824],[-103.6633521012767,21.224162650767937],[-103.66315204891839,21.22418569757383],[-103.66234867359219,21.223786985524157],[-103.6596980301407,21.22256322570655],[-103.65717136569276,21.22209814026229],[-103.65606778431453,21.222121545251525],[-103.65212108317701,21.222387804480377],[-103.65092327433479,21.22241447266697],[-103.64973232935506,21.222921759992175],[-103.64813830047495,21.222996114167984],[-103.64554073918526,21.222286326080678],[-103.64376359808176,21.222185652093458],[-103.64122852181123,21.22223102453563],[-103.64019588232327,21.22207240883762],[-103.63972339274096,21.224992201829025],[-103.63943935407559,21.229247562340447],[-103.63909288603264,21.233082574009586],[-103.63663892853975,21.240098043795626],[-103.63631493763188,21.24171043301584],[-103.63663321082254,21.2427261043577],[-103.63669406399401,21.24330259733034],[-103.6396973098939,21.243383807318423],[-103.63956604354621,21.24475940053253],[-103.63911409192576,21.247215298112224],[-103.63914100115011,21.24745071611909],[-103.63933169156093,21.24910113269209],[-103.63939742868104,21.250237779492238],[-103.63986898424099,21.2518560921107],[-103.64168336921665,21.254040832877536],[-103.64123729955145,21.256959896080048],[-103.6413071628777,21.259493481998504],[-103.64055516775676,21.261571366005626],[-103.64054110856671,21.26321972371585],[-103.63973456991812,21.265124759873117],[-103.64007487255333,21.26597728229575],[-103.63988216654923,21.266483602988274],[-103.63892213046722,21.266578420645658],[-103.63769307107435,21.26759188271143],[-103.63742946813329,21.269128563830122],[-103.6376481838135,21.27314966975956],[-103.6376675880295,21.274361260431988],[-103.63715660670675,21.27502544751775],[-103.63898049621588,21.27650347333008],[-103.6394188190871,21.27734301080659],[-103.63929964451665,21.277606057739092],[-103.6381033509366,21.278170796883614],[-103.6373750808641,21.278531562718456],[-103.63421404496603,21.281888382787827],[-103.63734303624977,21.28361090578636],[-103.63813428238541,21.283785748011155],[-103.64108585811232,21.284451066093368],[-103.64335885808794,21.284098163395186],[-103.64822628999855,21.2838670369718],[-103.64974726464538,21.282751686695292],[-103.65025076578297,21.28251666470868],[-103.65117903934527,21.282258908321808],[-103.6518830597272,21.282189600915558],[-103.65271342958431,21.282001860626337],[-103.65620837498966,21.282208183805324],[-103.65748901325298,21.281631678863903],[-103.65776515102067,21.281254805424965],[-103.66042717274985,21.283166136079785],[-103.66130484536649,21.2850042431744],[-103.66150385877285,21.286064744803866],[-103.66258400072394,21.286890619761436],[-103.66376150936708,21.288541239767596],[-103.66429068860617,21.28865981058317],[-103.6645904987634,21.28917835325103],[-103.66478925206644,21.290215261642004],[-103.66582003235453,21.290569760618837],[-103.66668051444685,21.29046510488689],[-103.66969033065334,21.287376790486974],[-103.6717035677334,21.28656198829856],[-103.67317876452381,21.285646228079088],[-103.67492686886192,21.284124310583593],[-103.67811741490908,21.282974964000914],[-103.67963435876146,21.283726958258512],[-103.68363912769058,21.28551381280994],[-103.68792633347766,21.28495524881987],[-103.69068540164812,21.28528745768739],[-103.69268439769127,21.284305814708205],[-103.69365522911102,21.283551439980215],[-103.6950068105649,21.28391561928629],[-103.69648191635594,21.282675543966718],[-103.6977267610826,21.282521124199263],[-103.69871464763952,21.281553013929795],[-103.69924785553673,21.28111512874176],[-103.69975300279549,21.280889972139448],[-103.70027767252628,21.28066458251743],[-103.7007246230068,21.28058643815376],[-103.70134586411353,21.28017568334792],[-103.7027114510671,21.279442674104416],[-103.70329571233708,21.27855954304846],[-103.70369532521033,21.27798216324976],[-103.70858844307429,21.27443693357617],[-103.71075713610719,21.274483482679784],[-103.7117943901153,21.273271747784236],[-103.7116509986991,21.272622536215124],[-103.71228671480509,21.270900441212007],[-103.71318025519298,21.268615729628493],[-103.71259794490891,21.267991551716477],[-103.71282286114024,21.267472127735857],[-103.71309806949074,21.267140213080665],[-103.71320602037605,21.266997657332638],[-103.7139237960427,21.267097940537838],[-103.71479342314467,21.267416968703174],[-103.71621138740153,21.26786848121816],[-103.716482785079,21.26848070680768],[-103.71692060414188,21.269275282874844],[-103.71737726336858,21.271222145517527],[-103.71739269634071,21.27185720821649],[-103.71749651582707,21.27286788341189],[-103.71743353584452,21.273409448871917],[-103.71805395591804,21.274341873091032],[-103.72038537089094,21.27623889415588],[-103.7202763740068,21.27722929792145],[-103.71992579264634,21.27888278847695],[-103.71963517008368,21.27987325996861],[-103.72028844040312,21.281182016573553],[-103.7199056739961,21.283125930056713],[-103.72106884216527,21.283376897384358],[-103.72181861035875,21.283555150436143],[-103.72156976159744,21.28718304897842],[-103.72042320081653,21.289518207939068],[-103.72114698639842,21.292882302270527],[-103.72008852132922,21.2994571905557],[-103.72028836949835,21.30031797141828],[-103.72047994767439,21.302272377492216],[-103.72083909634853,21.307961069402324],[-103.71857848681447,21.310106780570493],[-103.71438991415988,21.312225815774013],[-103.71206845747372,21.312424131375792],[-103.7102853137626,21.31595193733142],[-103.71112062391353,21.317747299130417],[-103.70892990177151,21.31917914563735],[-103.70808906385986,21.319403944288695],[-103.70679286332353,21.320649136554778],[-103.70654051183192,21.322284550759377],[-103.7065350096239,21.322842727608133],[-103.7060216290763,21.32484988002625],[-103.70419652153993,21.32567739339487],[-103.70219855769835,21.325556980264366],[-103.699440313862,21.32487794640855],[-103.69881363379045,21.324341525624504],[-103.69712555512683,21.32412384319116],[-103.69605401116854,21.323950521181075],[-103.69226982672728,21.32063253165603],[-103.69055540254413,21.320191849060336],[-103.68983434394488,21.321290461272554],[-103.68870524925114,21.320989122793776],[-103.6868310856608,21.320460639275666],[-103.68628048396818,21.320466706555862],[-103.6853012416313,21.320231972547276],[-103.68496285887915,21.319802367976877],[-103.68315580874582,21.31915792211413],[-103.68219692525957,21.318788127710718],[-103.68096599581321,21.32074864023832],[-103.67917280789896,21.31988271133713],[-103.67836233176718,21.319974280274096],[-103.6772130118253,21.32087292161833],[-103.675752984224,21.320761347162545],[-103.67544913063705,21.32184971831572],[-103.67443187455797,21.321408316356496],[-103.67416175279709,21.322284764221706],[-103.67171139898028,21.322472100678795],[-103.6702407089744,21.326429841889308],[-103.6686048140491,21.326868648259904],[-103.66846380720727,21.328232430434014],[-103.66702630322862,21.329476614297334],[-103.66686078583933,21.330529256797433],[-103.66613543880453,21.33285655997645],[-103.66626329410815,21.334101183385712],[-103.66544944895367,21.335478751935796],[-103.66414309572389,21.337229689258606],[-103.66335398962923,21.338264044559025],[-103.66202219347969,21.337672356091048],[-103.66100303100251,21.33757740659263],[-103.65897914242424,21.33705881724518],[-103.65725712884131,21.33694999200179],[-103.65603150985203,21.33786491297917],[-103.65513953238172,21.33920820054726],[-103.65367064529039,21.338424874870555],[-103.65366460366363,21.337933983026403],[-103.65245803943174,21.337730990280818],[-103.65030740650212,21.337529516807308],[-103.64876692952203,21.33878929937822],[-103.6493855253197,21.33969280949259],[-103.64974970997235,21.341322049209964],[-103.64975562216222,21.34180355291761],[-103.64888744221349,21.34241742822786],[-103.647171920581,21.342667665178794],[-103.6465327809895,21.34238129678954],[-103.64629651970034,21.34238982296131],[-103.6463206339655,21.343265744932182],[-103.6465222868253,21.343642683840017],[-103.64623618492243,21.344414223477315],[-103.64469452181407,21.34324636083909],[-103.64305078646055,21.34173322064339],[-103.64178344216481,21.34211517985233],[-103.63964089571238,21.342818046378056],[-103.63936821079602,21.343152891212924],[-103.63853258997773,21.344845753316577],[-103.63628787892168,21.343760646909004],[-103.63537398348689,21.341565511445026],[-103.63344238463907,21.341011373568847],[-103.63128914842315,21.342186865221095],[-103.63080926204861,21.34422384941024],[-103.63049425711421,21.343895653734307],[-103.62900961514362,21.345373630874406],[-103.62788469345367,21.34488333248214],[-103.62731505118194,21.344238704474833],[-103.62467161539547,21.343888376667337],[-103.62236815112016,21.344329348909355],[-103.62110951545202,21.34458869343615],[-103.62103259988538,21.344591172415164],[-103.61942819253221,21.34441692351311],[-103.61843654792966,21.344967786535108],[-103.61659821198276,21.3474964213691],[-103.61748617645333,21.34931348108745],[-103.61694509412592,21.353409650347032],[-103.61482942561861,21.350516179246426],[-103.61429237965882,21.350082133607714],[-103.61216555379542,21.349534601259563],[-103.61056940602134,21.348912377224224],[-103.60985511883553,21.34948278405659],[-103.60818674251715,21.349185097377926],[-103.6029532781194,21.3491266836308],[-103.60094691147725,21.347828663614393],[-103.59895696066451,21.345380187312855],[-103.59808172921203,21.341902892847145],[-103.59779743201739,21.342108334553245],[-103.59670791943029,21.343538193140887],[-103.59274550512623,21.342261641521077],[-103.59380071714213,21.340978523448314],[-103.59192308992618,21.341876172520585],[-103.590055280108,21.34082508571896],[-103.58974244119804,21.340874532025055],[-103.5891485734474,21.34155778326692],[-103.58867660548401,21.34219339880991],[-103.58756111501975,21.34096930297011],[-103.5866224509748,21.338067406201674],[-103.58466510965206,21.33798073038355],[-103.58424079651411,21.336209004573902],[-103.58428626300656,21.33521667127252],[-103.58386114259798,21.334903599200572],[-103.58113401780184,21.333728175892247],[-103.58050833550976,21.332956080139013],[-103.57845238391928,21.330234298288474],[-103.57746162223032,21.33198398389692],[-103.5751583112309,21.332633599611768],[-103.57443207599749,21.332577697488148],[-103.57407838558083,21.3326683083248],[-103.57283102609472,21.333594408435033],[-103.57202657183433,21.334930088672536],[-103.57103064036761,21.335963865318718],[-103.56835863054863,21.338597751679288],[-103.56755132299315,21.339798100089297],[-103.56723853201157,21.343205296709073],[-103.56836229979086,21.344553628880135],[-103.56761947285713,21.345684484397964],[-103.56761498069005,21.34628114713513],[-103.56773155974633,21.349177520901037],[-103.56841665650182,21.351667408717503],[-103.56664539422161,21.352198651227013],[-103.56584750564497,21.351364456911824],[-103.56534075681105,21.350973442456336],[-103.5646910513039,21.35078950760908],[-103.56219234453317,21.352384109113586],[-103.56046046273792,21.34979022449238],[-103.55843106431615,21.350193604186643],[-103.5580695472645,21.348172761940532],[-103.55621415027076,21.34822709489964],[-103.55467947159275,21.34849794113063],[-103.55335805264997,21.34907114441029],[-103.55187602504407,21.35004693043652],[-103.55064150491421,21.350936999877263],[-103.54832816715117,21.350102820078405],[-103.54627320777536,21.350991167242967],[-103.54298282373571,21.35254008135513],[-103.54153132150088,21.352847652331604],[-103.53911865070313,21.353261025106576],[-103.53540725176629,21.35387234839368],[-103.53299932655426,21.352900267198038],[-103.53033557028385,21.35328849615655],[-103.52930084579054,21.352667788766894],[-103.52703199464776,21.352222475431347],[-103.5249689527476,21.35347763180482],[-103.52362119027123,21.35253843827462],[-103.52239891610475,21.352405922854246],[-103.52223205419517,21.35294457385254],[-103.51988971763245,21.35600436642568],[-103.51908979977463,21.356498905641786],[-103.51799517067855,21.35511348842408],[-103.51494449711856,21.354950656729784],[-103.51420761828734,21.35450792717546],[-103.51178112560137,21.354671751052024],[-103.50996401447901,21.354892878946885],[-103.5099737665991,21.356960992158236],[-103.51176394198382,21.3603337781758],[-103.51308304776904,21.364066964844255],[-103.5099638019156,21.36944941010688],[-103.50783340485197,21.372740637150514],[-103.50478790845591,21.374929631067857],[-103.50418302001856,21.37619497977971],[-103.50487968596678,21.377655507045915],[-103.50580879280966,21.378376829731053],[-103.50817432831343,21.380321488364643],[-103.50811774187702,21.389417189827782],[-103.50855942674525,21.390389672841366],[-103.51152055274571,21.3946530669092],[-103.51472149182706,21.396404024722415],[-103.51633612839998,21.397440573683753],[-103.51892717578062,21.399222692387582],[-103.5199616812722,21.400282404997654],[-103.52042589638052,21.40065851068539],[-103.52133628207207,21.401277021113685],[-103.52210622641405,21.403476070916213],[-103.52186794423801,21.404245629315085],[-103.52204871526874,21.405167652840873],[-103.52222783487696,21.405956643491322],[-103.5233356026879,21.40684028038919],[-103.5238095761448,21.408042584224518],[-103.52476191531838,21.40955140976513],[-103.52501394418334,21.409812085304225],[-103.52584281712234,21.41026122683195],[-103.52599216208085,21.410355029970503],[-103.5258653122853,21.41113223619169],[-103.52578888203465,21.411485121301098],[-103.52651459218248,21.413088765426835],[-103.52716680658449,21.413938069984567],[-103.52884938721655,21.41488327201887],[-103.53030895382113,21.415988596303407],[-103.53022778390891,21.417029445778837],[-103.53358949151908,21.420613272705225],[-103.5337847166544,21.42112861573395],[-103.53357276736529,21.4221992546274],[-103.53339613323277,21.423312075105287],[-103.53383519629682,21.42558504602647],[-103.53521294850009,21.427061820887957],[-103.53595511537452,21.427990324799794],[-103.53628555737538,21.42851125965717],[-103.53699307483168,21.430164619587174],[-103.53742930251764,21.43158871775296],[-103.53758649007068,21.434043867227103],[-103.53763014533399,21.43685047289995],[-103.53712337636745,21.440594611183258],[-103.53876203894777,21.44175724650995],[-103.53855149031608,21.442161920178933],[-103.53849409294634,21.443739175350004],[-103.53870026377672,21.444770924748127],[-103.54070839656441,21.442556790485185],[-103.54123305727023,21.441370672673884],[-103.54136027463176,21.440295953573354],[-103.54240023660049,21.438960653602123],[-103.54286659387958,21.438236820941313],[-103.54385245076372,21.437341019151233],[-103.54673903950925,21.439508284417286],[-103.54905270409586,21.440259300678917],[-103.54989856783294,21.438362913720198],[-103.55108491286592,21.437219502980952],[-103.55215728636836,21.43715863283967],[-103.55353302068494,21.436874575897434],[-103.55377580075469,21.437285608298225],[-103.55463609365768,21.437946567887707],[-103.55775117007312,21.43609597611544],[-103.55838350294141,21.436188386518154],[-103.55892352256944,21.4350349529455],[-103.55995041968214,21.432594042544395],[-103.5604066826993,21.430218301110415],[-103.56196033759903,21.432124650122773],[-103.56287595159904,21.434340618282476],[-103.5638014941411,21.43557542153519],[-103.56405756916763,21.436172697128427],[-103.56470035958193,21.436848609754747],[-103.56506291538216,21.43748215337905],[-103.56625513900201,21.438364776032415],[-103.56752744931669,21.438800887880575],[-103.56840634864511,21.439077859304177],[-103.56894003137762,21.438621270914155],[-103.56999767457421,21.438495443577494],[-103.57021897562646,21.439349616252116],[-103.57045645136407,21.43972027126972],[-103.57202905054811,21.439036429412795],[-103.57202335523164,21.43854997974563],[-103.57251377861371,21.438438799315236],[-103.57251108550565,21.438208845335453],[-103.57298678602501,21.437770530547823],[-103.57401724925262,21.435854737317584],[-103.57512774424077,21.4362059906411],[-103.57641469432826,21.434526252492333],[-103.57751801485654,21.43426721995047],[-103.57629263986536,21.43052382612052],[-103.57598599856624,21.428549964619265],[-103.57742493822275,21.42925055199578],[-103.57817050026489,21.429127877606902],[-103.57885008958846,21.429023576067436],[-103.57989963444572,21.428705700753085],[-103.58123643565062,21.427580775459717],[-103.58165762918156,21.427204919413896],[-103.58127709419796,21.426206130021],[-103.58100294553691,21.425589776400614],[-103.58047016815078,21.42469222526887],[-103.5807945211294,21.424518846231365],[-103.5818427977718,21.424410721723405],[-103.58220049466814,21.424274348757194],[-103.58210748459476,21.423603049439862],[-103.58175078177845,21.423092039767425],[-103.5818128058948,21.421027643965942],[-103.58206587033703,21.419270509088165],[-103.58227625605787,21.41761684862962],[-103.58255173023349,21.416923048442186],[-103.58371800477096,21.415988337869237],[-103.58398018454557,21.413949127752915],[-103.58407395057037,21.412919896105848],[-103.58442020202892,21.410074804816702],[-103.58658703630857,21.40856823796406],[-103.58708956834232,21.407890780199352],[-103.58719541715425,21.406446518944733],[-103.58650053066555,21.405220291137482],[-103.58728535574977,21.403676869905382],[-103.58668159789318,21.40268359910732],[-103.58516548504298,21.402690455821983],[-103.58585910760439,21.399641657618247],[-103.58622701376424,21.397868600033235],[-103.5856449481505,21.395155864666208],[-103.58639427839415,21.392366306249755],[-103.58974982834349,21.391873115647286],[-103.58929659950547,21.392307190440647],[-103.589616267888,21.393836875244176],[-103.59345658623329,21.39266762724816],[-103.59433058248584,21.3916733789531],[-103.5956684995337,21.39261048605738],[-103.59765202865918,21.393745999334385],[-103.59954921779246,21.394137386475904],[-103.60016206790641,21.39376698275737],[-103.60096240874066,21.393853938850725],[-103.59977880439499,21.39734120622262],[-103.60310136468456,21.400700237357114],[-103.60657646745835,21.40191685474474],[-103.60805052549773,21.404057697999974],[-103.60823072603836,21.40421380871703],[-103.61028298368961,21.405328201398618],[-103.61076224242873,21.407427463702163],[-103.61449111344007,21.40770634782791],[-103.61656112727553,21.409493623256765],[-103.61584064376586,21.411691271364703],[-103.61737709645195,21.411934016912596],[-103.62290521027529,21.413111466813234],[-103.62358249536345,21.415289560715962],[-103.62337884692789,21.415864903596116],[-103.6243254788763,21.41849623338595],[-103.6227466461292,21.422186716550698],[-103.62272172154314,21.42309180523381],[-103.62255424057281,21.423910372441412],[-103.62095389732912,21.424382906472545],[-103.6207596048136,21.423784165928964],[-103.6200478039616,21.42303026417727],[-103.62122202278846,21.425316658364352],[-103.62041146813402,21.426661147402456],[-103.62148791045854,21.42670693110074],[-103.62407668810192,21.427175932832426],[-103.62624959733802,21.429320107158333],[-103.62652536790563,21.434482056689433],[-103.62927874759328,21.43492199961065],[-103.63035223112564,21.43511749976517],[-103.63184116775722,21.438151935337146],[-103.63549098783477,21.43920210800917],[-103.63696724326121,21.43760625308346],[-103.63980104738926,21.43747974201534],[-103.64418055149747,21.438111647758717],[-103.64561590009191,21.43801092409467],[-103.64637463952346,21.437831242878417],[-103.64795505186339,21.438651015301332],[-103.6492465008991,21.438593553282374],[-103.64964340218597,21.43815546737619],[-103.6503054803124,21.435474676095282],[-103.65030922228982,21.43459612247807],[-103.65073611966051,21.434785739238748],[-103.65098707097508,21.435092510861068],[-103.65116406876973,21.43513961098347],[-103.65179307350132,21.435210879048498],[-103.6521688703769,21.43565878870328],[-103.65312688403145,21.435683847161727],[-103.65440677918929,21.437287293616237],[-103.65523567332724,21.437924519159196],[-103.656190202875,21.43896243003195],[-103.65744690345008,21.439977100139174],[-103.65835104458637,21.44113171167072],[-103.65903039114153,21.44103813747614],[-103.66078977065774,21.441583573999253],[-103.66139885598614,21.44325413875373],[-103.66334830136805,21.446462083697725],[-103.66359807700883,21.447452243746966],[-103.6638204992754,21.450537355929214],[-103.66339136694654,21.451503125855993],[-103.66389179123485,21.453317357455603],[-103.66469635061424,21.454873258814985],[-103.66398784388485,21.457156223618142],[-103.66353271865546,21.458216666247665],[-103.66262556411311,21.458945306955627],[-103.66219744565802,21.45960430850033],[-103.661566419645,21.46071112555171],[-103.66060872496314,21.461275125684892],[-103.6596762213735,21.462308967386377],[-103.65874324041255,21.463697668404166],[-103.65982604029512,21.46384022795695],[-103.66307147877183,21.46457555915805],[-103.66567233168183,21.464915274516272],[-103.66663508703687,21.465510161427233],[-103.66792893354267,21.465565528212494],[-103.6716402951347,21.465392576595605],[-103.67384056773881,21.46541879572038],[-103.67505866023873,21.465550855698098],[-103.67889001435111,21.464053775888317],[-103.68323950194696,21.46348090491807],[-103.68880787675721,21.464016309364354],[-103.69433760373761,21.46581577756939],[-103.69856819209645,21.466884555616275],[-103.70146471610474,21.466265907574154],[-103.69965198745967,21.470778520658428],[-103.6993882793883,21.472784622872894],[-103.69707716395578,21.47376394435281],[-103.69658607662467,21.47654203084221],[-103.69383852673309,21.477899430250886],[-103.69258047693017,21.481863714303927],[-103.69220199382596,21.48470203855436],[-103.69223250098185,21.487087475067085],[-103.69425737751095,21.490207445996475],[-103.6913644112359,21.49614451971769],[-103.69054941852062,21.49640518894222],[-103.68957050956601,21.497495009249633],[-103.68864096341213,21.499067431338347],[-103.6842976437473,21.501594693038157],[-103.68126206587283,21.501852360960868],[-103.67789108515433,21.50469464577958],[-103.67677617155465,21.504638930615897],[-103.67600614894349,21.50464479895942],[-103.67416425809517,21.50484701566677],[-103.67257825351595,21.505454735744422],[-103.67258827428714,21.507979704721265],[-103.67394019148122,21.50851477947623],[-103.67538981753285,21.51081964909656],[-103.67781606221587,21.510787660672747],[-103.67970942280135,21.512101081282708],[-103.67980681424586,21.51385939435295],[-103.68007293608679,21.515587700402534],[-103.68084574300258,21.51742890440778],[-103.68175727794096,21.519999198979463],[-103.68215966162819,21.521070462510863],[-103.68479027832211,21.522025427797587],[-103.68608639571625,21.521184841462855],[-103.68552205334919,21.522481392973987],[-103.6870947210536,21.52323838525922],[-103.6866603423619,21.524737490075665],[-103.68817279785958,21.525276114373696],[-103.69223483529504,21.52744144526872],[-103.6943311409791,21.528680758877442],[-103.69448700578567,21.528886876457705],[-103.69419453568696,21.531075613855762],[-103.69301200665944,21.532685152269778],[-103.69200625653707,21.53293041923922],[-103.6914996687027,21.53260473556611],[-103.69107125630836,21.53263215274484],[-103.6905719359197,21.53303700583774],[-103.6890983933938,21.533880984570885],[-103.68801879487978,21.534113035143776],[-103.68642159835878,21.535853636738523],[-103.68647633389969,21.536349493694388],[-103.68767763964763,21.54069731259841],[-103.68821250454539,21.541186975664402],[-103.68900516442073,21.543043374997524],[-103.69010403328156,21.549645005438776],[-103.69000042447965,21.550276936597015],[-103.6897888828945,21.552353158560607],[-103.6890028785146,21.55388206930104],[-103.687932714324,21.55495848466319],[-103.68705367204763,21.55603551265159],[-103.68479379511393,21.55671021553661],[-103.68080533221843,21.557801380940532],[-103.68215168252311,21.55646059218816],[-103.68057465629607,21.556193805623195],[-103.6801946441837,21.556063644418373],[-103.67816088652586,21.557754111676786],[-103.67638407608496,21.555320276541238],[-103.6735918164079,21.554852506274983],[-103.67203222682065,21.555826146161394],[-103.66689827661497,21.557787867949628],[-103.66635383491837,21.558039611334493],[-103.66307682390993,21.55756357574967],[-103.66252623887078,21.55644310709971],[-103.6583164425657,21.55590653679917],[-103.66066159331922,21.56054403664433],[-103.6600368973368,21.564789388017516],[-103.65545009010555,21.5673567063713],[-103.64887017042895,21.573324392074596],[-103.64693539736317,21.575113270344332],[-103.64440951210128,21.57636900765948],[-103.6432972631236,21.57647805948949],[-103.64164889022004,21.576387972663838],[-103.64003112098368,21.576282282953514],[-103.63965732365114,21.57546157397468],[-103.64000478079925,21.57477795442759],[-103.63942026337315,21.57449455613539],[-103.63875787317852,21.575032936793832],[-103.63699158587019,21.574454041924184],[-103.63487402572514,21.574455727027953],[-103.63391089855554,21.574008107602538],[-103.63113355627377,21.573731976783336],[-103.62961884438971,21.572336051092748],[-103.62830870273541,21.571059545524292],[-103.62747288608887,21.570906691107552],[-103.62482783297816,21.567856836939598],[-103.62455828030556,21.56582937284645],[-103.62413218735298,21.565599447559805],[-103.62355324365609,21.565605579477904],[-103.62321883408583,21.5658148304791],[-103.62233212259144,21.56553977734967],[-103.6218632949018,21.56483014933042],[-103.62156951109625,21.564862289481198],[-103.62116096161179,21.563813010555805],[-103.6215784175252,21.562114116230816],[-103.62075562819535,21.560342770682894],[-103.6208231145406,21.559763542580242],[-103.62104730013851,21.55861388347688],[-103.6215860046554,21.558351496995613],[-103.62132896048394,21.557965696899373],[-103.62057649467891,21.557855468532523],[-103.62029158588848,21.557703424305885],[-103.6165252395715,21.556903430243608],[-103.61314140296673,21.55806617980653],[-103.60811447994729,21.556535151155515],[-103.6033217469435,21.55848133282126],[-103.59943500588861,21.55844725854189],[-103.59724976896416,21.559015123514314],[-103.59608748891196,21.558987024891167],[-103.59513916728787,21.559139416500386],[-103.59380943280127,21.55927931812522],[-103.5937854556139,21.559766957460397],[-103.5959105469949,21.56329899695288],[-103.59674714043484,21.56546806528138],[-103.5960038445952,21.569946920164796],[-103.59449590592521,21.57400609432426],[-103.59323861614325,21.576480735555606],[-103.5937237627993,21.576862872906702],[-103.59303537513227,21.57849647785082],[-103.59425358029995,21.580946928832873],[-103.59476412041073,21.58171318872712],[-103.59349396865747,21.58274825456283],[-103.59147900102818,21.589051204254247],[-103.58972583240796,21.59013402384454],[-103.58826855013638,21.590346914826],[-103.58753775341404,21.58991598832796],[-103.58704256872659,21.58931100749453],[-103.5856730520245,21.589616036411655],[-103.58523814366032,21.58917900751004],[-103.58201638515118,21.589229583120073],[-103.5810122216526,21.588082855173354],[-103.58068370858484,21.58662478943819],[-103.58000140241194,21.58528242514234],[-103.57998864204052,21.584199131579624],[-103.57500608063066,21.58461774539643],[-103.57422273747142,21.584898050968434],[-103.5733893079398,21.58287538164683],[-103.57260408714797,21.58193467914606],[-103.57121037265642,21.581717542300623],[-103.56866298755597,21.581864013925667],[-103.56807999700874,21.581805272038935],[-103.56739807776705,21.5812454719765],[-103.56587597344907,21.58129927705511],[-103.56536294873109,21.58074359188555],[-103.56377960172068,21.579342055254642],[-103.56038035080536,21.577647896523843],[-103.55889183632428,21.57640408730964],[-103.55748473993242,21.577039066997997],[-103.55548772946105,21.57708876161462],[-103.55306500171037,21.581649841677574],[-103.55243002461395,21.583911570791997],[-103.54997481363523,21.585976460493498],[-103.54539697251806,21.58740614993394],[-103.54649968976418,21.589911318910538],[-103.54771686633751,21.59153002676186],[-103.54783074501216,21.593577371390097],[-103.5497355760159,21.595911589136676],[-103.54992395384704,21.596088486354063],[-103.55067502860862,21.598263719948022],[-103.54976595864832,21.605391224295317],[-103.55061949221766,21.613438845758196],[-103.55208347492908,21.616770403983594],[-103.55233592910423,21.619982173610936],[-103.55384569616609,21.624550977465105],[-103.55555587895333,21.62540770770812],[-103.55530748846752,21.627660233144866],[-103.5554917459504,21.63408351064197],[-103.55159678050217,21.64144849994642],[-103.55273741753291,21.642989021240055],[-103.55224485138422,21.64584222620357],[-103.55000021117132,21.646907572488317],[-103.54870930090942,21.649914196345946],[-103.54741581301386,21.65008132063457],[-103.54532657506644,21.65395010581534],[-103.5440709215834,21.65637889712599],[-103.54286386529742,21.6595333079714],[-103.54231631702203,21.66132959885067],[-103.54146326576739,21.663859614912212],[-103.54079634416269,21.665293136134437],[-103.53750431996588,21.666335647932954],[-103.53655834284854,21.668891726846255],[-103.53446933601134,21.66997285695544],[-103.53172594521902,21.67177289810479],[-103.5310721983073,21.672176973857233],[-103.53001700698888,21.67220565294957],[-103.5270607560285,21.675067880800555],[-103.52671001998698,21.67556331791127],[-103.52649013872247,21.67697599565264],[-103.52604203031086,21.677448801341484],[-103.52571594074129,21.678062893867263],[-103.52574874773939,21.679238884811184],[-103.5258279765875,21.680227438263273],[-103.52598645593599,21.681097209066024],[-103.52705799452337,21.683775926682642],[-103.52688766310541,21.684765149779878],[-103.5264237790671,21.687521775603443],[-103.5256004090594,21.68924271085183],[-103.5249744905492,21.68988247672587],[-103.52500729393506,21.69105847394104],[-103.52488719487906,21.692282281800544],[-103.52436696209259,21.6939330342135],[-103.52294819453743,21.69702317652002],[-103.52157649914938,21.699217889530075],[-103.51877787771497,21.70337365365191],[-103.51819141726082,21.70664794775456],[-103.51785264914867,21.71146917742624],[-103.51665449889873,21.712454039132012],[-103.51163191416379,21.71436248896663],[-103.51070398642105,21.713417499603963],[-103.51025355119737,21.71289474953977],[-103.50946420022109,21.713959944599935],[-103.50907298927018,21.716137650451287],[-103.50819204630477,21.718129560440616],[-103.5077676852996,21.71969491688401],[-103.50923439782417,21.72055095424605],[-103.5101580927028,21.722525123144464],[-103.51080077188709,21.72571704128029],[-103.50936583715782,21.730709207262805],[-103.51062367093948,21.737479872992708],[-103.50847355829643,21.739735048709804],[-103.51009351333073,21.744810031388738],[-103.51214069872464,21.74826891478159],[-103.51387853153636,21.74874838034748],[-103.51656727850224,21.752813661595155],[-103.51835164552932,21.755206506200977],[-103.5206906592262,21.757353666284473],[-103.52161304399647,21.75901766149508],[-103.52342630762013,21.760979354382698],[-103.52358686756327,21.765720600104032],[-103.52725659601458,21.768037300100332],[-103.52601150854878,21.769915245461846],[-103.52879650038449,21.773197584283594],[-103.53181399345073,21.771227351611287],[-103.53441092577765,21.772733095564945],[-103.53711412887844,21.771017165065757],[-103.54325815926114,21.77112239244866],[-103.5466932926895,21.772665545013353],[-103.54970416453051,21.777208132706733],[-103.5518714454862,21.777604324318872],[-103.5537947845765,21.77977819817096],[-103.55806261842054,21.780712118439226],[-103.559799238599,21.77973408789552],[-103.56166985853292,21.782180873906327],[-103.56262359423738,21.785674654289892],[-103.56592020801025,21.784822152089134],[-103.56912140417637,21.788615236002784],[-103.56818451607228,21.79256859293082],[-103.56907693661782,21.795456684708313],[-103.56789146213777,21.79649994046565],[-103.56894825344756,21.799600745908094],[-103.5706197531988,21.799565505454154],[-103.57199581574866,21.801698141190627],[-103.57202194411553,21.801772279949716],[-103.57262725786006,21.803489835455025],[-103.57067454626639,21.8039890868705],[-103.568235466163,21.804043059962453],[-103.56674085373072,21.804651953112227],[-103.5658669307274,21.804311400637516],[-103.5619480467642,21.803579761401693],[-103.56055851452908,21.801113138275355],[-103.55714732107884,21.80156893817093],[-103.55614397074146,21.801378506558763],[-103.55406833678279,21.801087276234284],[-103.5479992555484,21.803099222822482],[-103.54644493236327,21.802752709761194],[-103.542936909471,21.802994950996663],[-103.5420461595798,21.803297085247777],[-103.5401544364642,21.804037691170834],[-103.53839462714853,21.80484049153],[-103.53569635545284,21.80517974656334],[-103.52784667319656,21.804687096996304],[-103.52605764423345,21.805065242275305],[-103.5262588761795,21.807677421715027],[-103.52609309311072,21.80967422258226],[-103.5300382249007,21.81165500160074],[-103.52976968993096,21.814168022995773],[-103.53148320685193,21.81742588982172],[-103.5299208221249,21.81820756444614],[-103.52635647669018,21.81874862028627],[-103.52416373241232,21.82014284713273],[-103.52019819202815,21.822770926431474],[-103.51948662676529,21.823210314795574],[-103.51203134580805,21.82638796715065],[-103.50834550856092,21.8283567162556],[-103.50281744975916,21.833074707963135],[-103.50194589371353,21.831386724690333],[-103.50018705265114,21.828249627968717],[-103.49470054058406,21.822885926924357],[-103.49342543982016,21.82256701807529],[-103.49141868031057,21.821057035319427],[-103.48905471946864,21.82029026959418],[-103.48780072831579,21.81940976556342],[-103.48194471090159,21.816514133717874],[-103.48250755235733,21.813264451969815],[-103.4773950057567,21.812867128835933],[-103.47682918049219,21.812686110700326],[-103.47568403009734,21.812411574116652],[-103.473487173004,21.813073192667332],[-103.47110127396695,21.813512214282696],[-103.47052997248136,21.813540265399467],[-103.47178497837768,21.816532733028225],[-103.47400968584492,21.819661044711495],[-103.47310520995643,21.823637371675204],[-103.47475566840001,21.825924154513302],[-103.47501629648269,21.82609706384676],[-103.47511932797289,21.827507555876764],[-103.47399737616666,21.82979666812213],[-103.47304150208305,21.830394939312725],[-103.4733741554702,21.83191215733683],[-103.47248392317965,21.83344201101437],[-103.47221631313255,21.835187374829445],[-103.47138159436821,21.8375254600557],[-103.46984027419956,21.83926667865734],[-103.46672989646561,21.839961759912796],[-103.46536832983577,21.839579108815713],[-103.4626093220308,21.83789846276278],[-103.45851709310432,21.835210084630944],[-103.45632236539097,21.8325092229818],[-103.45513606897981,21.83542854015377],[-103.45692810848408,21.835987039845065],[-103.45716908814308,21.838476411714623],[-103.45586803873914,21.840604616569465],[-103.45319651867084,21.840626281912932],[-103.45330625131976,21.84419707995113],[-103.44970194584266,21.848052597427284],[-103.44955171416098,21.850790765438887],[-103.45172602503635,21.852690953531805],[-103.4501215334572,21.855641651947394],[-103.4482247932657,21.855763023145073],[-103.44602528245116,21.85990204146924],[-103.44168552736909,21.862166577206494],[-103.43931349724699,21.864560035333625],[-103.43839008554755,21.867493218420293],[-103.43573968696944,21.871051983882523],[-103.4353538545713,21.876052367406828],[-103.43213379021012,21.878492798152138],[-103.43255397331183,21.87973388759349],[-103.43031652392449,21.88323675126054],[-103.4275120211509,21.885660821165516],[-103.42581137130986,21.891046180829846],[-103.42251035193823,21.891085909331764],[-103.4207282969279,21.893143429748932],[-103.4217324268858,21.89529588367742],[-103.41898361548061,21.89615626737117],[-103.41624090610134,21.89750443716332],[-103.4165159482601,21.89892558844315],[-103.41365566551565,21.90117380861284],[-103.41387009172854,21.905455397055732],[-103.4106468629538,21.907779205138922],[-103.40837540451673,21.907624000695364],[-103.40505987899326,21.901824506702383],[-103.40191624163998,21.900442609240315],[-103.40033226450726,21.899005597035625],[-103.39433888259202,21.896694561928143],[-103.39220279270415,21.89768550291609],[-103.38944335843689,21.899418506014797],[-103.39067976668747,21.90404126351251],[-103.38979569884958,21.905472720275554],[-103.38236761869916,21.91056977735633],[-103.37997568352654,21.910187754271533],[-103.37685446775384,21.912491423154904],[-103.3747976294606,21.913683529136108],[-103.37052801094228,21.91329502948554],[-103.37001933975739,21.91235371155136],[-103.36614778102972,21.912836591948917],[-103.36488171318439,21.91317008417616],[-103.36036435503138,21.914324775870227],[-103.35901240670279,21.914558722230822],[-103.35695756461377,21.914527763424815],[-103.34943331852037,21.914255825873227],[-103.34383970648344,21.91472890099135],[-103.34400431624312,21.91591204636393],[-103.34156328179841,21.921025730767326],[-103.34342598133367,21.9272973115975],[-103.34368387452429,21.930696330353555],[-103.34128884443868,21.93178928065322],[-103.33978191100931,21.938698479061088],[-103.34175550062338,21.939517289587684],[-103.33986033062882,21.941671537994182],[-103.33719436959672,21.942353767992927],[-103.33190798202327,21.943022368520587],[-103.33046437781661,21.945891516639676],[-103.32412648767854,21.949882187540425],[-103.32398432276767,21.950336373279185],[-103.31736376618846,21.95587326695096],[-103.31013614300883,21.959097594354205],[-103.30871021443471,21.96436319186938],[-103.3093138902405,21.96570641409511],[-103.30719648493721,21.96817007653698],[-103.30242771296463,21.970450907098552],[-103.29401167677429,21.97713544970884],[-103.29157485770605,21.97902709031655],[-103.27856101308566,21.989650146922486],[-103.27596824010419,21.988693951743073],[-103.27323101350095,21.98144399421102],[-103.27335042656898,21.97908230311748],[-103.26868158314403,21.97569018982017],[-103.26471534877965,21.97184498863959],[-103.26215089004847,21.9725577601655],[-103.2580329707825,21.971179969897833],[-103.25709342146314,21.96958186085135],[-103.25179674195925,21.96930555052967],[-103.25171250461756,21.96831135324095],[-103.24475012743608,21.966603231538727],[-103.24144586876076,21.970755622597096],[-103.24594389186126,21.97513903032774],[-103.24681758861664,21.97594710041608],[-103.24514078816446,21.977208833535315],[-103.23932755901745,21.976042147050293],[-103.23791819053889,21.976027175593686],[-103.23698193290693,21.975815036996153],[-103.23471196516931,21.974505256453824],[-103.22889334411218,21.97357604953106],[-103.22591152297383,21.972098450456826],[-103.22552430275027,21.972004409139004],[-103.2215072508937,21.96798695187647],[-103.21928042063956,21.967961963274718],[-103.2188002383827,21.967596321093993],[-103.21706260395405,21.967216127365248],[-103.2162899948546,21.96711785137046],[-103.21377218530301,21.96709054608175],[-103.21221906766334,21.967524896974567],[-103.21105361680151,21.967783709024275],[-103.20967209230366,21.967286251642463],[-103.2086601039137,21.965142873903687],[-103.20556791655116,21.96519438319814],[-103.20459063526766,21.965815672861936],[-103.20408215683545,21.96770684061039],[-103.20165922862736,21.967950914927258],[-103.20087770939767,21.96848532390368],[-103.19835743481985,21.968728290908757],[-103.19699598227004,21.969164624740245],[-103.19515081310618,21.969596537610187],[-103.19418240842225,21.969585907306964],[-103.19256000422024,21.969899868346715],[-103.19265049135367,21.970989359077578],[-103.19181226676005,21.974449802029994],[-103.1923355699247,21.975837308646817],[-103.1916214252434,21.97815394933872],[-103.1920747982341,21.979337759107352],[-103.19568808971763,21.980067349986598],[-103.19589688325146,21.98033382755409],[-103.19819045707487,21.984636822123093],[-103.19684768158442,21.98630844776261],[-103.1942214478654,21.988348593699243],[-103.1940324457803,21.990072958382655],[-103.200811091226,21.991961840111003],[-103.20304975362103,21.995963839450553],[-103.20068746200258,21.999007820145607],[-103.19768507263205,21.999065726237802],[-103.19669368345706,22.000861705372472],[-103.19178823630995,21.998187451627643],[-103.18617241515278,21.99803570428668],[-103.18173024403183,21.9970831838844],[-103.18103564806745,21.99834030070963],[-103.17872673502478,21.997230595462497],[-103.17358456888826,21.997805492426835],[-103.17253557797972,21.99661980956472],[-103.16738145542723,21.998278437315605],[-103.16671318527506,21.997548235415024],[-103.16437655636929,21.998606220136196],[-103.16204796059026,21.99963847948868],[-103.16125141528158,22.000557900264084],[-103.15950440124749,22.000809818916252],[-103.16007579094196,22.003171354635413],[-103.15220728698131,22.004894576737854],[-103.15195461806917,22.00487285569085],[-103.14937119817375,22.005515582077294],[-103.14908970623918,22.005577216429117],[-103.14599799498279,22.0052779537819],[-103.14371763025247,22.00796976678089],[-103.14330432073376,22.00758717558398],[-103.13796773976236,22.00304795755443],[-103.1354266358785,22.003932412976383],[-103.13496587382758,22.00378236954697],[-103.13284431892703,22.003037321554075],[-103.1316594697335,22.004738988763336],[-103.13107215319013,22.005274340187157],[-103.12990286805854,22.005712298668186],[-103.12400137989505,22.0125990402081],[-103.1202862997281,22.015356649547186],[-103.11712119658915,22.01288064266356],[-103.11294980787858,22.013465517529255],[-103.11119250944682,22.01461926152274],[-103.1099909756876,22.017405644877215],[-103.11158926497262,22.02112585652526],[-103.10951797486757,22.023992052781807],[-103.1089019523344,22.026604461696763],[-103.11024533447409,22.027522492559285],[-103.10915519028919,22.02931681167803],[-103.11386915482473,22.040041441557833],[-103.10845112496582,22.039164652482327],[-103.10713684429459,22.04683012747131],[-103.10616573862643,22.04698821739663],[-103.10636744202986,22.049173755780714],[-103.10790861058035,22.06339578509119],[-103.10873932261609,22.063493848684175],[-103.1097665974001,22.06361500462492],[-103.11071497381681,22.063741424776424],[-103.13489032104877,22.06660789815686],[-103.1424306791879,22.06755878786163],[-103.14437401593676,22.067920426917397],[-103.1479142122289,22.070341863929514],[-103.15428531605914,22.072236820382614],[-103.15482955581768,22.073230372310093],[-103.15215565849348,22.082555040667557],[-103.15242027571816,22.08387477179798],[-103.1525964418181,22.086231839409663],[-103.15138259119453,22.088015618265104],[-103.14341313927366,22.08723081336956],[-103.13910333401873,22.09103456360947],[-103.13509315325422,22.09046234302957],[-103.13502933999075,22.09762967299679],[-103.13229033492479,22.0999501467266],[-103.12802997906061,22.102196400316643],[-103.12697040409216,22.103616659311342],[-103.12558531891892,22.104791470002397],[-103.11672164761495,22.10236420075529],[-103.10418611831994,22.101230469655547],[-103.10067483905277,22.103344335014185],[-103.10114426608692,22.107436890352176],[-103.09640024127305,22.11128377879072],[-103.09237592717176,22.109897264991844],[-103.08833000777508,22.112908379965063],[-103.09027389300672,22.11369471771002],[-103.0894899765558,22.115191382702278],[-103.08670788336735,22.114851634370268],[-103.08615698107883,22.112244567697473],[-103.08452545071663,22.11399673593445],[-103.08772188304249,22.11781959067639],[-103.08173384876818,22.12027271913746],[-103.08023137785943,22.124508781613883],[-103.07702473533709,22.12550440876936],[-103.07704310665434,22.127530935990592],[-103.0815762056476,22.13082374101657],[-103.07819770204503,22.131191917139972],[-103.07587026391855,22.133488515734086],[-103.07757061292705,22.135734644280205],[-103.07832817193582,22.136143999387684],[-103.07875079347252,22.137052554924992],[-103.07978308331946,22.136430051916193],[-103.08418951572156,22.13725162869008],[-103.08598573494476,22.138839798210086],[-103.08864381999024,22.13956629898979],[-103.08939646481798,22.139800422417977],[-103.09011184446751,22.140040446446733],[-103.09002716603197,22.14156817948799],[-103.09014041672214,22.142184863234547],[-103.09181639576605,22.144120060236446],[-103.09366872179015,22.144642212158317],[-103.09456282898202,22.1447699166265],[-103.09593117359367,22.145466029456657],[-103.09851493686568,22.14507017769938],[-103.09955661537379,22.145419420930864],[-103.10060716591636,22.14605950048093],[-103.10319544084541,22.14487058483411],[-103.10807742385975,22.14402554206822],[-103.10874985510458,22.14485777415308],[-103.10308844107317,22.15176450339584],[-103.10288627710554,22.15427080256012],[-103.10596849234304,22.152186771316735],[-103.10838362484452,22.152781985901527],[-103.10864513985274,22.153285772701395],[-103.1062933212558,22.157156450821276],[-103.10486988627844,22.157517009405694],[-103.10469430440344,22.160034664120076],[-103.10587501828036,22.162306115566594],[-103.10576728083652,22.164737988767172],[-103.10517478552697,22.16616749046193],[-103.10591383561012,22.168153418682607],[-103.10538671991765,22.16884240024649],[-103.10277750052092,22.171114090650804],[-103.10387845617504,22.172047457615122],[-103.10144536317796,22.178620959661657],[-103.10605877448899,22.191356033227805],[-103.0994865860448,22.195005235046267],[-103.09563678219786,22.195923221414432],[-103.09209126728047,22.198414891229618],[-103.08841165453896,22.202650401826418],[-103.08819961076495,22.204383981282206],[-103.08372682666743,22.204019718598204],[-103.07966631676652,22.202554907916237],[-103.07763698736028,22.202907368572994],[-103.07330278035784,22.202340111983176],[-103.07104343252848,22.203543142461967],[-103.07171322288491,22.20607691647905],[-103.07284745336557,22.210367516958968],[-103.07193037874106,22.211968834581285],[-103.06964403782189,22.211219804623056],[-103.06600240780978,22.213983579059914],[-103.05981131587032,22.21722223105411],[-103.05477016171466,22.213826868106537],[-103.05232630407886,22.220652261185876],[-103.05831033877826,22.22281575498971],[-103.0600162079416,22.22497689461005],[-103.05818769368642,22.228398245953088],[-103.06029794424575,22.227452172098822],[-103.06206929291324,22.228267985255002],[-103.05916302118925,22.23486747320794],[-103.05708959889967,22.238664006298848],[-103.0556810838101,22.241242367942164],[-103.05545518456768,22.24725632914658],[-103.06202698230231,22.248898471180837],[-103.06219451575163,22.24888750544602],[-103.06174390801698,22.250135563260983],[-103.06238245719805,22.252238673158615],[-103.06944320587019,22.255247914276765],[-103.07066765592515,22.255248178445186],[-103.07440738929557,22.257059957650426],[-103.07679114532533,22.257101312389636],[-103.07827383431601,22.257097666195136],[-103.07873334522071,22.25853492619524],[-103.08048696859692,22.25970189966455],[-103.0808097223757,22.260628534829777],[-103.08186536948182,22.262902513868994],[-103.08175476149893,22.263101845827748],[-103.08276793801099,22.26376298746021],[-103.08382539713301,22.26343363115444],[-103.08368977489494,22.265755799652084],[-103.08355142346562,22.266771276604402],[-103.08338040603712,22.268664403454864],[-103.08334070891561,22.27055759559397],[-103.08339075010815,22.271237052218623],[-103.08300542291755,22.273158020411472],[-103.08284212339174,22.273234192913037],[-103.08312215646498,22.274355245442734],[-103.0832775342185,22.277517951156085],[-103.08588442687704,22.278862763744655],[-103.0872189538839,22.27838208435628],[-103.0876255431213,22.282379342453225],[-103.0888489092693,22.28378275942555],[-103.09003340412369,22.285131575283174],[-103.0916930936367,22.28625550908606],[-103.09415353080175,22.28676550291476],[-103.09656553233265,22.286483275371722],[-103.09768362650755,22.28603229916405],[-103.09807595307672,22.28629186412485],[-103.0981541154556,22.287255412162324],[-103.09863417496695,22.2877440291673],[-103.09902474819734,22.288145224373068],[-103.0997799179462,22.288635507050117],[-103.0989985503229,22.29230867829159],[-103.09966000239717,22.293024770299326],[-103.10002160209757,22.2933408351401],[-103.10053313017602,22.293856457235165],[-103.10098773071866,22.293974858387514],[-103.10194515581964,22.29390809933767],[-103.10368200928542,22.29395649478994],[-103.10404764087343,22.293932995991156],[-103.10584320178134,22.294237860204817],[-103.10651221093258,22.294330195283067],[-103.10733022475966,22.294509515694017],[-103.10812341219832,22.29451833967579],[-103.10915630725901,22.294728786839812],[-103.1095551460985,22.294592465989922],[-103.11024990332248,22.29508222581535],[-103.11253289604883,22.295108429845186],[-103.11417731753534,22.295183701260612],[-103.11500102727791,22.295108749506824],[-103.11576052045604,22.295287540878064],[-103.11737222512033,22.295532778015684],[-103.11813644765022,22.295343855069575],[-103.11905779219575,22.294929555213628],[-103.11999975171176,22.29499624626652],[-103.12036633582983,22.29508617971868],[-103.12122006731471,22.294869356031995],[-103.12242175801396,22.293920104044446],[-103.12540066302967,22.29341178651748],[-103.12702665692359,22.29335904281959],[-103.12793127037753,22.293996216001176],[-103.12870729094453,22.29408753426486],[-103.12913983194966,22.294024992366246],[-103.12980820012086,22.29428768882036],[-103.13149405684851,22.295190209035752],[-103.1337151167287,22.29474931662321],[-103.13441726484177,22.295248423232408],[-103.1359881107984,22.294564470062937],[-103.13748216738651,22.29410788175352],[-103.1413584629156,22.29390361538367],[-103.1413480270611,22.293969856259764],[-103.14213670594359,22.294094108386048],[-103.14282160266595,22.29447237899501],[-103.14409823503723,22.294837232598127],[-103.14652108507579,22.295431447842418],[-103.14816036774442,22.29578720731928],[-103.1510834788877,22.296226208968847],[-103.15254066468975,22.295994572413747],[-103.1532618349164,22.296817667035555],[-103.15352977735967,22.297926356355845],[-103.153710874321,22.298062380698525],[-103.15552777150572,22.297973115063655],[-103.15687734245597,22.297057282887693],[-103.15685010364592,22.29687109285578],[-103.15700993274919,22.29692128686719],[-103.15723707578667,22.296902539294308],[-103.15935275078112,22.296238100626113],[-103.15972242677032,22.296431404404075],[-103.16044672237098,22.296133375182876],[-103.16140633213507,22.296343564568076],[-103.16179487690675,22.296431955323214],[-103.16183894274428,22.29644329200221],[-103.16226775522875,22.29653069631354],[-103.16407150071655,22.297196568814513],[-103.16488000956423,22.296157846783103],[-103.1650570416162,22.294798802672574],[-103.16803831424215,22.295176573578715],[-103.1681157920512,22.29519965825989],[-103.18217134919337,22.2970912574238],[-103.18801681556363,22.298091251273092],[-103.18870468424365,22.298207238689372],[-103.18923367179298,22.298296949991936],[-103.19057381418293,22.29852702166903],[-103.19214995843458,22.295222783165798],[-103.19476425699196,22.29237199790157],[-103.19548490931635,22.29054459376266],[-103.19678184244435,22.288525583025205],[-103.1980323319952,22.286521104927715],[-103.19872182321353,22.28379125749092],[-103.20028138638503,22.281518755038746],[-103.20163741819312,22.28083676675584],[-103.20191644643779,22.280304413148258],[-103.20228617037833,22.28012789968909],[-103.20266991281784,22.28004248811618],[-103.20292010038736,22.280865094062563],[-103.20685781203173,22.279924583856314],[-103.21442479973706,22.277510834548707],[-103.21583807875533,22.2782486448657],[-103.21787993953052,22.27913580602643],[-103.2202381772288,22.280221892338886],[-103.22113466981574,22.281255351470293],[-103.2216349148174,22.28253105914331],[-103.22219087758072,22.28242323079138],[-103.22233752288133,22.28306044518763],[-103.22221089627885,22.283400068520848],[-103.2209868650101,22.283952651476227],[-103.21892805864451,22.286854772955166],[-103.21959255911702,22.28837232775396],[-103.21862418325418,22.288592285342133],[-103.21835084800045,22.28997787812432],[-103.2189827014223,22.290407730730976],[-103.21963783853539,22.291495571415],[-103.21974720220612,22.291750713222427],[-103.22080181895706,22.29236266778429],[-103.22046526249903,22.293827917042904],[-103.21991563957914,22.294612077710326],[-103.22036892445715,22.296400262335226],[-103.21945574594343,22.29743100687864],[-103.21879804033097,22.298134789394112],[-103.21759972525325,22.29916897311341],[-103.21736542580817,22.29929688332203],[-103.21657364831242,22.299329663589276],[-103.21669947441075,22.299981573036064],[-103.21735709400917,22.30095229667745],[-103.21765941868034,22.30115417006033],[-103.2153143417882,22.30142136810622],[-103.21493530110666,22.302114320280623],[-103.21504324335336,22.302998647115885],[-103.21500907031663,22.3057995726312],[-103.21412423995065,22.306514361969334],[-103.21353398430409,22.306664959004763],[-103.21277066269113,22.30768237352629],[-103.21209856780064,22.309163306273774],[-103.21189817326092,22.309916281833694],[-103.20963929752236,22.31457226708244],[-103.21003315353204,22.316204960915],[-103.21151537041106,22.317185579155478],[-103.21211509148429,22.317899867997426],[-103.21095918281782,22.319222379146936],[-103.21043671715086,22.31906063047859],[-103.20951842191198,22.320191610958318],[-103.21016956114306,22.322316331515708],[-103.21023522719304,22.326651633323934],[-103.2101230063488,22.32826482948741],[-103.20786636924566,22.333048665455863],[-103.2067101613161,22.333064983037787],[-103.20495668845638,22.334263425136783],[-103.20149113469188,22.333573283653948],[-103.20025212784572,22.332738648041982],[-103.19979703787243,22.332590582098646],[-103.19894052660521,22.332836914541815],[-103.1979300541505,22.333108042428137],[-103.19714220209278,22.332850469513517],[-103.19634756080836,22.332597185886755],[-103.19408540899883,22.33198105589861],[-103.19183026738716,22.33432189080571],[-103.18810349511654,22.336012754580224],[-103.18720561951682,22.33713685106261],[-103.18538895230716,22.33833173295824],[-103.18433587051794,22.33981782417561],[-103.18481057229627,22.341028261901158],[-103.18151749345066,22.34239704370725],[-103.18022139931287,22.342779162725094],[-103.17818183711421,22.3444438683253],[-103.17779831308849,22.345771333365064],[-103.1761796705,22.346149549003258],[-103.17596584295853,22.346847737930716],[-103.17555357104771,22.347418034088037],[-103.17508429424612,22.348066176326597],[-103.175174812649,22.34840410989358],[-103.17428017901005,22.349103606832387],[-103.17293638560466,22.351665769106717],[-103.17098618863196,22.353196683534634],[-103.17049099301056,22.35326490026239],[-103.1685899179148,22.35461565954955],[-103.1689164944865,22.356466083513283],[-103.17044709380951,22.361832515595665],[-103.1689627375548,22.365418853184167],[-103.16763689442251,22.369727528660462],[-103.16642499009629,22.370589899407378],[-103.16723620548555,22.371464825287205],[-103.17008180347744,22.37483132849019],[-103.17245875369298,22.375949894154644],[-103.17375517581132,22.37684969111814],[-103.17286680702142,22.379616296394772],[-103.17050451922768,22.378902957473656],[-103.16873192982939,22.38271379622506],[-103.16937159495217,22.38319377026903],[-103.16857768558117,22.385012792974862],[-103.17086361269259,22.38467867694169],[-103.17526597807381,22.386597058096754],[-103.1777102481771,22.38698983653677],[-103.17785898596088,22.38671751464358],[-103.17836918767432,22.38699519955685],[-103.17850644519558,22.38773316807709],[-103.18034193972011,22.389503588179366],[-103.18130909491731,22.390404576011974],[-103.1825403184352,22.38877138799404],[-103.18424196925554,22.38942548047288],[-103.18407487242786,22.389700999686738],[-103.18449119004276,22.39003104104188],[-103.1861787786014,22.38943929382782],[-103.18781686494611,22.390382444985335],[-103.18782082649454,22.390065155505113],[-103.18800136431923,22.389826231168286],[-103.18932170723377,22.390235460490885],[-103.19089796614259,22.388099716946556],[-103.19202501072436,22.387107104436325],[-103.19587986717022,22.38340955945324],[-103.19877087361476,22.380601234711605],[-103.19869978302881,22.38305811781015],[-103.19899398898218,22.383968216416633],[-103.19909680231888,22.385414524770056],[-103.1999413639764,22.386189611914574],[-103.20057042988464,22.387750428003017],[-103.20059163805149,22.389677101996142],[-103.20209368182105,22.392161014353746],[-103.20202799788711,22.39357595442908],[-103.20242418891536,22.394994557399116],[-103.20300628266892,22.3958953109219],[-103.20285085023704,22.39737887405323],[-103.20305689799284,22.398033642212226],[-103.2033182679063,22.399084708990927],[-103.2052137850468,22.401192462290112],[-103.20477101999313,22.402435137525174],[-103.20437273489637,22.40265794799052],[-103.2039266001164,22.404069507695056],[-103.20595249632356,22.40482263075529],[-103.20702959629216,22.405108965255238],[-103.20741608119135,22.405581038299204],[-103.20792794509879,22.40604003473078],[-103.20932073456396,22.407279232641656],[-103.21000437359822,22.40859025654322],[-103.211290242534,22.40826513900214],[-103.21183939460929,22.409064274706054],[-103.21256446876492,22.409666837455063],[-103.21426573277932,22.41013915494915],[-103.21752353651652,22.41062822643846],[-103.2187726769983,22.410557535145415],[-103.21959704039983,22.410482022322412],[-103.22012338019374,22.410062062979762],[-103.2209216439349,22.40958910989042],[-103.22186960139362,22.408617463529367],[-103.22633919020939,22.404044418623073],[-103.22746840818525,22.402172649318345],[-103.22958462687023,22.396826705123658],[-103.23104101411411,22.395425167611847],[-103.23212056802998,22.39339385584185],[-103.2338840129155,22.39511465984191],[-103.23436113321259,22.395295135632693],[-103.23503991096982,22.397115389970338],[-103.23647721735642,22.396820623942062],[-103.23967040790075,22.39742140801235],[-103.24097508344971,22.398087265209995],[-103.24239825667723,22.39889559768011],[-103.24446324367125,22.399428200002717],[-103.24556144779478,22.399412072069424],[-103.2462042911963,22.399248912868075],[-103.24693383955758,22.39948359717954],[-103.24717581181443,22.399571518071582],[-103.24755273964479,22.3994504781179],[-103.2479428398857,22.399324732782873],[-103.24962093619268,22.399200387532858],[-103.25039161649323,22.39861493148993],[-103.25127551840802,22.39865133981374],[-103.25218624742445,22.39894535538724],[-103.25508260539891,22.404820135767068],[-103.25838529797875,22.40644188851911],[-103.2588286302414,22.40810327619613],[-103.2602456957394,22.411858395635193],[-103.26207965289996,22.41167998652992],[-103.26346319130494,22.410646414353437],[-103.26522705996479,22.411830325382937],[-103.26573512167624,22.41188607555256],[-103.26646214016176,22.411733841631246],[-103.26723152686606,22.411528483160396],[-103.26924994411058,22.411099706885295],[-103.27150086648692,22.410713154477094],[-103.27275770974569,22.409953093016213],[-103.27314945590228,22.409843715281625],[-103.27339988000216,22.4095088629432],[-103.2748941868573,22.409553713874686],[-103.27549879656198,22.409985394019657],[-103.27454182138104,22.410995577822064],[-103.2751464278017,22.41142635169996],[-103.27636657440047,22.411184756491423],[-103.28055794088448,22.411658415815282],[-103.28372797661814,22.41415681583686],[-103.28581733195284,22.41283126479783],[-103.28562338924053,22.411954725658973],[-103.28518282029984,22.409110634302408],[-103.2854072504989,22.406418654862648],[-103.28543114270985,22.40593413636128],[-103.28680095892054,22.40527052942491],[-103.28763602002425,22.404287615378053],[-103.28795251778683,22.403647013461864],[-103.28828879530744,22.402854107624307],[-103.28856830729353,22.402191972580795],[-103.28914742153552,22.40152369335118],[-103.29067486923395,22.40097191085465],[-103.29147485032513,22.400079612741592],[-103.2927910831117,22.39974686090966],[-103.29307671767737,22.39873777094641],[-103.2942252653014,22.39804230748183],[-103.29544950391653,22.398731476906278],[-103.29641622770919,22.397042006792958],[-103.29670439409432,22.395752900511297],[-103.29729150000162,22.3956365509012],[-103.29806887235316,22.39537545893819],[-103.29867145735648,22.394700162987647],[-103.29919350792557,22.39480746755612],[-103.29942294038972,22.394490144323527],[-103.30013447726338,22.39338745972742],[-103.30050158695326,22.39299012449999],[-103.30120112012594,22.39300624386641],[-103.30157635246695,22.39277883757245],[-103.30209270877162,22.392669567103894],[-103.30418377704376,22.391361438310696],[-103.30526298575529,22.390409047949618],[-103.30917588586226,22.392008202977195],[-103.3087492828447,22.395293718404048],[-103.31067258854387,22.400759017938924],[-103.31394450222558,22.404845585478256],[-103.31519729045203,22.404659691426616],[-103.31761544340219,22.40136985921248],[-103.3180115008675,22.398965194660036],[-103.32088436591334,22.393992802234436],[-103.32577629775562,22.38817414461346],[-103.3259211226138,22.387819162179937],[-103.3292868378357,22.384536860175558],[-103.33312938224145,22.385223622592093],[-103.33588710219527,22.384756881627993],[-103.33774251624766,22.38598546661086],[-103.34252257427596,22.383995671368154],[-103.34840379432046,22.3791245599416],[-103.34744958045013,22.375500578536503],[-103.35313999603937,22.369387462019517],[-103.35594709959906,22.37119549595809],[-103.36244369126132,22.370849610287564],[-103.36471666940747,22.369535628943368],[-103.36524899211196,22.36018169401666],[-103.36663254070487,22.350076237280007],[-103.36511972893146,22.343447822586086],[-103.36480544409363,22.341631279367675],[-103.36328926717425,22.33820513525137],[-103.36255319773568,22.336354001203517],[-103.36000910477532,22.336351411561964],[-103.35882579837664,22.336350192803536],[-103.35346358229447,22.336344556099448],[-103.35113832665479,22.336322266162767],[-103.34688062475647,22.336281360843316],[-103.34322621293336,22.334831307822185],[-103.34720275970102,22.33096187445949],[-103.34787501536931,22.328248809021545],[-103.35100555514924,22.324699881777747],[-103.35955891162695,22.320649237003863],[-103.36154023699231,22.31651196294115],[-103.36181281815163,22.315671130903695],[-103.36375648165068,22.31448316893227],[-103.35108526205727,22.30880289280401],[-103.35009274201371,22.307456558127228],[-103.3501609235089,22.301659416074926],[-103.35101612014819,22.296222150942924],[-103.35247954331669,22.293630153718254],[-103.35355270976822,22.28786505871119],[-103.35347982303807,22.28375593552994],[-103.35573297306036,22.281143358202485],[-103.354228734645,22.27950069843638],[-103.34930761625736,22.28336039529239],[-103.34146798517077,22.28561671660492],[-103.33837632041934,22.28751282669714],[-103.33052673573621,22.30213537007421],[-103.32855644019065,22.30578486083357],[-103.32770581018877,22.307360376495865],[-103.32516695030756,22.307365123123134],[-103.31581466613949,22.30694099367031],[-103.30879798517827,22.30641385001519],[-103.30688273243351,22.306283055171093],[-103.30452212015194,22.303042332595112],[-103.2977903386718,22.29833725394127],[-103.29831998332844,22.29742495987631],[-103.30040343520932,22.296185450787675],[-103.30181153387315,22.291521828877706],[-103.30363769200233,22.28922137915083],[-103.30669020716562,22.28465183143743],[-103.3071503083824,22.28382180349223],[-103.3080357852159,22.280411742364322],[-103.30598401317684,22.276283088878586],[-103.3068437209161,22.273231851560638],[-103.30545980717847,22.271554114916285],[-103.30522391831437,22.270871611311918],[-103.30531632536838,22.265658994997125],[-103.30794844524786,22.26403813892273],[-103.30843310826674,22.262433380669336],[-103.31011027309313,22.262195803893633],[-103.31365633723715,22.259501143338355],[-103.31210964539775,22.258918789645975],[-103.3099775815432,22.258811651967335],[-103.30671795290971,22.25889016993898],[-103.29979286117072,22.25703323817595],[-103.29676262667232,22.25712867470685],[-103.2951044286662,22.25328528200231],[-103.2970424845019,22.25180375280894],[-103.3062660187835,22.2409441661257],[-103.30925717301068,22.236205373787982],[-103.31193417631607,22.233256986694357],[-103.31959858340633,22.238047160470614],[-103.32651618260695,22.241726793597138],[-103.32831985376652,22.240087677893882],[-103.33353977703172,22.24196600725827],[-103.33769678259256,22.24516367682793],[-103.34338564119446,22.243086876147174],[-103.34973586615007,22.239214967868406],[-103.3553146164312,22.240935679928725],[-103.3618303585335,22.23916457966493],[-103.36605065400545,22.23592950858921],[-103.37116014218822,22.230680374262704],[-103.37398724485882,22.23076457165132],[-103.38151635933252,22.22774499296645],[-103.38302630930974,22.227013413824466],[-103.3839850351759,22.221990184449453],[-103.38187428841326,22.221537068749626],[-103.38017103941888,22.21900136709388],[-103.38324581344301,22.217832742519704],[-103.38516261877703,22.215818247952427],[-103.38435089067559,22.213738360644186],[-103.3906320889497,22.20638811010531],[-103.38956391695058,22.204541619982535],[-103.39077875885295,22.201838072817736],[-103.39111995288516,22.197905968212467],[-103.39225709717499,22.19676909464613],[-103.39326390120902,22.192566234787932],[-103.39348382927716,22.19243741992358],[-103.39440754830952,22.192061688569254],[-103.39523333999102,22.19209737907636],[-103.39776158498216,22.193524296110866],[-103.40125383800716,22.19584322637678],[-103.40255646563162,22.193996972191144],[-103.40402281552412,22.19121685252071],[-103.40490528492967,22.191363199747457],[-103.40636155382253,22.19216419114656],[-103.40813057701774,22.190252387264593],[-103.40851428559279,22.188141903371672],[-103.40736754395186,22.18781685362086],[-103.4071316494423,22.187802252626284],[-103.40791204271153,22.18644956954057],[-103.40836301570016,22.185720302012953],[-103.40845578615512,22.185446675912885],[-103.41021200284189,22.18265993548266],[-103.41108205657105,22.181325891185736],[-103.41159761388701,22.18083645420768],[-103.41205315135858,22.180865733195105],[-103.41159438089409,22.178378147408125],[-103.41556599770888,22.176908194481143],[-103.41775653950788,22.17728528987783],[-103.4238883014022,22.177491665102423],[-103.42603516168862,22.17463708574553],[-103.42509858768119,22.170261034859266],[-103.42835824119913,22.165588571221065],[-103.42916325574407,22.160970253972778],[-103.42792439665595,22.159146851420473],[-103.42888974084627,22.157783722285046],[-103.42737617850008,22.155742703789315],[-103.42729747212525,22.15108546990507],[-103.42881796035374,22.148725734543973],[-103.42796984852345,22.144886248210696],[-103.42785510199144,22.144145396347426],[-103.42619955296806,22.1390978837415],[-103.42736765829653,22.139636496607466],[-103.43091692767655,22.13428269205133],[-103.43579657578363,22.131037625944316],[-103.43658602655591,22.126694068395295],[-103.43828926826058,22.128851028665792],[-103.43734327030779,22.12552410982812],[-103.43942243752753,22.12190734025984],[-103.43926219482921,22.120813032518868],[-103.43871075622673,22.118306236319825],[-103.44138933288468,22.117366634514383],[-103.44558779380804,22.113498325451644],[-103.44669357428307,22.11525131373986],[-103.4504034814712,22.114225719721446],[-103.45493576869387,22.115308609800024],[-103.4562143492783,22.113911221275487],[-103.46172262116755,22.111141066189873],[-103.45929683353546,22.10873482613789],[-103.45918285430844,22.105879986112882],[-103.46647804140491,22.107308972850717],[-103.4716927536661,22.10511905828315],[-103.47384300982901,22.106741589986257],[-103.47264980968436,22.109930295837273],[-103.47449655473207,22.112634187823858],[-103.47930395810482,22.114794004296584],[-103.48100460145531,22.114406360220983],[-103.48211142223613,22.111865674691614],[-103.48609197264005,22.110625368117553],[-103.48493236586637,22.107794249857363],[-103.4861341077505,22.10652989189788],[-103.48969782574153,22.10706553437069],[-103.49289882469498,22.110186387910005],[-103.49559911016132,22.11051239695928],[-103.49679182364076,22.106796082274627],[-103.50042442393055,22.105392661079065],[-103.50156419619611,22.105564012083335],[-103.50438539024896,22.10824260407975],[-103.50832221203115,22.108765673242488],[-103.51179085594003,22.107514469524403],[-103.51589707659679,22.109916197084544],[-103.51627973347775,22.113332107294866],[-103.51791419501262,22.117249495359488],[-103.51785120055177,22.120881322222715],[-103.5142337512101,22.12605057517925],[-103.51386292978952,22.128321915572712],[-103.51580947957541,22.128990874503984],[-103.51886131307157,22.127718007539272],[-103.52325941280031,22.12805037771369],[-103.5259980830524,22.126579842775755],[-103.53062434857435,22.126843470314952],[-103.53167518214792,22.12314642533778],[-103.53533383324424,22.120610791927504],[-103.53818843372369,22.12144924310161],[-103.54273656292486,22.120612119643226],[-103.54525893929986,22.123301151192493],[-103.54557491399282,22.127201540230544],[-103.54805847808097,22.127954572245756],[-103.55068597237289,22.130612508547756],[-103.54960534793577,22.13388514227779],[-103.55192333365267,22.135889833579654],[-103.55476985994466,22.134322374439762],[-103.55845856738887,22.13646290640105],[-103.56210588658104,22.135886698876504],[-103.56686623195878,22.13608251897864],[-103.56972306143547,22.131922882320055],[-103.57361426908858,22.130558659525946],[-103.57612580349576,22.130937846379425],[-103.57902770153231,22.128151999186514],[-103.58030950566649,22.1257249835989],[-103.57971192065287,22.122566502348832],[-103.57736540618879,22.11997699337695],[-103.57797593344606,22.115409014646787],[-103.57940133335768,22.112528456459245],[-103.58037376094023,22.106196534673415],[-103.58111989629589,22.1048707426541],[-103.58368906549202,22.10645295194888],[-103.58474587778773,22.10890131126439],[-103.59013363880024,22.111386682814327],[-103.59481453748623,22.11119844807473],[-103.60161661465327,22.102986629263114],[-103.60495306880972,22.101194364923003],[-103.60470456706065,22.09794157870624],[-103.61087831466989,22.097105447307456],[-103.61533399688363,22.098475821750185],[-103.62039771353835,22.098486133697918],[-103.62274470908437,22.10123746586339],[-103.62622190938669,22.102632368727882],[-103.6270687093454,22.105532932656672],[-103.6285269941726,22.1063254553452],[-103.63613474311967,22.106422695380786],[-103.64425167422371,22.10179245326151],[-103.64795374553165,22.10049615678048],[-103.6504004622604,22.100623820282635],[-103.65125717674982,22.10089423448801],[-103.65391514213837,22.10400125516287],[-103.65629439618158,22.10418211830938],[-103.65987513370862,22.10266175953683],[-103.66231329893702,22.10303746285274],[-103.66711193686155,22.10528866429064],[-103.66859252994993,22.10738054998569],[-103.67168844598893,22.108772213780924],[-103.67757924431379,22.108513844797642],[-103.68384732177452,22.109205231366786],[-103.6860982217508,22.11140200133434],[-103.68593252898063,22.11409910885743],[-103.68410543836501,22.115385509600515],[-103.68047709541406,22.115062951285495],[-103.67760156035871,22.11611197775602],[-103.67737107083525,22.11870629365535],[-103.6802223487407,22.123704480586184],[-103.6835640605579,22.12499972973427],[-103.68639439335954,22.12498962600455],[-103.6901049415439,22.127783128423403],[-103.69072278274609,22.129022774975738],[-103.68813457693028,22.133165407629406],[-103.68269735385871,22.13470740594437],[-103.67753737153032,22.141266424700063],[-103.67728108151391,22.146466483952963],[-103.67077846987468,22.153651784944998],[-103.67044103783894,22.15628268339111],[-103.66542849288152,22.160554731698085],[-103.66100057243762,22.16695642329853],[-103.65447365123708,22.171936212613844],[-103.65892286022012,22.175215523794293],[-103.65681801448,22.180600721212272],[-103.65775989818871,22.183843332800222],[-103.65570917968279,22.186296562015173],[-103.65251775554083,22.187165138138937],[-103.65121607402523,22.19186894968186],[-103.65002294971413,22.192347455178947],[-103.64889168737938,22.197442517611535],[-103.64911926210618,22.202056407692567],[-103.6437315960178,22.20630365378372],[-103.64125482705515,22.209599177019015],[-103.64098566740773,22.212132179731668],[-103.63932021164891,22.21386299963524],[-103.63934891690883,22.218186715380682],[-103.63759069976328,22.21927848103013],[-103.63642257118198,22.221024863640707],[-103.63600341375525,22.228284754286904],[-103.63089640472106,22.23891796347027],[-103.62828425990205,22.24111711109481],[-103.62638949373775,22.24424470756071],[-103.62235652912932,22.247497177895525],[-103.62081841620795,22.247480567381672],[-103.61736522082879,22.25105820122883],[-103.61437703953902,22.256514356872742],[-103.61013474555341,22.261224161468647],[-103.60631765902679,22.264333427526765],[-103.60280081839215,22.269961472876332],[-103.59917934343224,22.272009980833047],[-103.59490324378999,22.27307835151845],[-103.59965224064581,22.277692734931293],[-103.60770977381833,22.27974413818123],[-103.6106881315074,22.27895770502988],[-103.6149347283312,22.28084697774915],[-103.61922561013529,22.281793321638247],[-103.62117337992476,22.285144600227625],[-103.62387411105897,22.28783427215268],[-103.62561875956283,22.288108206356128],[-103.6269827846831,22.291728853585994],[-103.62912679771506,22.29418555145338],[-103.63545406907855,22.294400877728947],[-103.63778809893284,22.295233105627972],[-103.63847152237821,22.296864519341227],[-103.64230827740073,22.305961255862428],[-103.64349505049881,22.309873275494397],[-103.64496406920478,22.31783768877102],[-103.64157619903256,22.324176177067955],[-103.64065574894335,22.328915029893267],[-103.6381807522514,22.335169292519993],[-103.63826681294358,22.337171125815416],[-103.64205252846853,22.33956846468044],[-103.64211147161456,22.340873346864043],[-103.63495295923002,22.343483282980003],[-103.6290102085905,22.341780395417686],[-103.62741531952531,22.340400944743635],[-103.62139768713507,22.340707659889006],[-103.61517148882473,22.33854058256162],[-103.61119172376073,22.337888621116463],[-103.60671058294997,22.338305798117858],[-103.60260225443312,22.343438946410913],[-103.6026397494594,22.34631648328798],[-103.6094817775085,22.352695585520905],[-103.61068717899826,22.359841821970804],[-103.60980890746214,22.361544015063032],[-103.60284428749799,22.3609037505841],[-103.60173494689906,22.363460029864427],[-103.60067129843338,22.368119357859314],[-103.60033623378263,22.370294456827992],[-103.59756303400206,22.374530277844087],[-103.5959291022628,22.383191027826342],[-103.5943383864535,22.385031394852547],[-103.59275584559907,22.389276613533355],[-103.59296420690282,22.392580932414944],[-103.59441344006513,22.394575987065878],[-103.59388381828802,22.39845808149363],[-103.59415640110387,22.39904538230752],[-103.59401973115757,22.407214945050214],[-103.58963281259867,22.40697151638261],[-103.58504883458869,22.40945179830061],[-103.58105859753664,22.409481857858623],[-103.57842455566697,22.410498419857333],[-103.57101853483647,22.41821561943783],[-103.56915921155172,22.418454722434944],[-103.56707051873025,22.420863357533108],[-103.56061775656832,22.4231066139601],[-103.56093728752523,22.424544181162275],[-103.55945570893874,22.428952383636442],[-103.56405585166738,22.430833236716467],[-103.56495788598676,22.435132880885874],[-103.56825214911464,22.438055483663618],[-103.57252855636767,22.437540762861317],[-103.57218634891444,22.4410686424917],[-103.56891236595771,22.446273262462967],[-103.57069966811997,22.453068733304633],[-103.56990373333957,22.455565341630745],[-103.5739070610062,22.461077175569187],[-103.57367255604623,22.462802732749537],[-103.5725755766905,22.464544345546585],[-103.5738001355133,22.466656495014206],[-103.57157981878157,22.46806637398919],[-103.57123996815875,22.468622308853526],[-103.57082586099835,22.469171647788983],[-103.57114700567996,22.469378830752532],[-103.58060057146685,22.47739810495227],[-103.58072393848488,22.483419740895044],[-103.58245708632774,22.4887934711428],[-103.57907859938234,22.490961404087273],[-103.58039961631505,22.495794051341022],[-103.58018960915467,22.498719387383233],[-103.58337478880975,22.49871488825346],[-103.58559256127825,22.500036708798007],[-103.58627245685079,22.502049081041775],[-103.58902039595552,22.501592991871462],[-103.5919125937105,22.50282152869306],[-103.59460129187886,22.505447267762236],[-103.58884540977937,22.50846936317066],[-103.58850414279055,22.514432295945255],[-103.5842224660019,22.518816038427133],[-103.5837341666869,22.521966000095745],[-103.58464665946838,22.52504343068574],[-103.58609903816205,22.52549676352419],[-103.59933478587624,22.526374604496198],[-103.60264576110978,22.53476102794184],[-103.60476392159563,22.538409664152255],[-103.60456429787337,22.54101226284473],[-103.60303270642106,22.543506961982644],[-103.60600096121925,22.545677258438104],[-103.60447835195941,22.55145202341987],[-103.60255000792466,22.551290115620873],[-103.60275868182578,22.55679154016167],[-103.60681330126607,22.55897593563685],[-103.60999715336641,22.55971839051432],[-103.61178254373465,22.558422803518624],[-103.61748506061718,22.560368003784333],[-103.61852715321277,22.563670937436996],[-103.62238238882708,22.563574189515293],[-103.62815731852447,22.561941820864035],[-103.62963651326163,22.559799901737904],[-103.63286162402659,22.559743132563653],[-103.63392174354897,22.559942552409268],[-103.63530739381179,22.560143057288258],[-103.63622767021599,22.560018912008616],[-103.63794129765296,22.558272998667917],[-103.64152031230088,22.5575885621962],[-103.64293393774824,22.55633332767809],[-103.6479236445964,22.554879255377614],[-103.64931629511779,22.5566738427529],[-103.65156504219453,22.5564782115581],[-103.65454391312505,22.55470404713452],[-103.65501799775188,22.55253724124924],[-103.65964979954396,22.550272232188036],[-103.66023587774458,22.547495910137172],[-103.66247105424509,22.547636189701848],[-103.66326492789477,22.549374450904736],[-103.66505331839306,22.552866957879417],[-103.6672124338948,22.554185545862197],[-103.67258582794346,22.561129219909844],[-103.67370401882096,22.56143214792445],[-103.67709774855285,22.558305710815944],[-103.68012413734664,22.55683468238766],[-103.68136915920371,22.554796493736376],[-103.6869272238207,22.558353887275587],[-103.69071457798867,22.55792932536832],[-103.69400273538366,22.558606903061843],[-103.69566548480759,22.560603305028792],[-103.70084610752178,22.56303127902612],[-103.70612885423031,22.563724750238862],[-103.70809579053554,22.56312284913173],[-103.7140667512034,22.566396893450417],[-103.71462373341939,22.566758414456103],[-103.72064300773383,22.57132545097943],[-103.72175916306429,22.5719848666418],[-103.72655501019455,22.574146631906558],[-103.73256237979297,22.57240515361252],[-103.73634599063456,22.57227277298574],[-103.73845165822917,22.57196399677116],[-103.74450269630626,22.558498564949332],[-103.75168481756265,22.55852166373586],[-103.75310831545761,22.55787087595894],[-103.75528898939422,22.554220141515316],[-103.75924138599203,22.551665434632298],[-103.7599762193185,22.555600774498373],[-103.76910208888279,22.55578915219934],[-103.77094821209295,22.550811625264203],[-103.77250532089624,22.548703737897483],[-103.7738548758183,22.546405742009313],[-103.77604808461723,22.53591773302395],[-103.77642119160197,22.534133931683186],[-103.77698947516802,22.52620819826268],[-103.77921185892916,22.52057568870083],[-103.78160185783543,22.514706131836988],[-103.78217080760413,22.514874223872027],[-103.78297550372463,22.51160734121322],[-103.78447628935947,22.51009180177317],[-103.78355371229782,22.50981202648154],[-103.78434088546084,22.506273059314708],[-103.78410848954906,22.501729366041218],[-103.7838923825247,22.50043459534146],[-103.78504903789911,22.499213030893486],[-103.78369821465412,22.49577500356827],[-103.78425184678957,22.489415349270303],[-103.7838450018179,22.487852100179055],[-103.78605723780038,22.48364651942927],[-103.78698274310779,22.47776802159285],[-103.78890635545292,22.47391347423337],[-103.79561024987811,22.46502441590411],[-103.7980545175738,22.457727294057406],[-103.79965384664843,22.451240766784622],[-103.80099159134335,22.450634114238483],[-103.8027549108782,22.445110520192316],[-103.80449572116476,22.443614161098083],[-103.80622648410656,22.441793073033182],[-103.80713254785405,22.43837262035936],[-103.80781098670116,22.433729733111363],[-103.80804634917877,22.43133956490152],[-103.81017641454713,22.427285226607466],[-103.80932912616908,22.42271671693362],[-103.81070895098554,22.417635394002332],[-103.81031027914753,22.411563346119863],[-103.81268560463894,22.407669037460664],[-103.81317659371115,22.403397173357348],[-103.81165868174526,22.40047536781725],[-103.80870382065922,22.398745031442047],[-103.80978650770618,22.395298684591125],[-103.81164480773913,22.39258545833968],[-103.8130079771048,22.38391988802357],[-103.8117652639865,22.382602054488302],[-103.81204105931363,22.3791896993489],[-103.81115173010716,22.37674522336971],[-103.81745910125272,22.37145884003155],[-103.81717172935544,22.36899459577046],[-103.81994113927897,22.3641383436605],[-103.82286085524743,22.361489611002924],[-103.82451481064157,22.36072424259197],[-103.82680757341029,22.358284168133935],[-103.82616715070634,22.356285075828907],[-103.82788073527257,22.35424341455456],[-103.83062268273204,22.355188358634507],[-103.83457138282512,22.352403062485394],[-103.83745559997192,22.352000291832667],[-103.84148538244301,22.345604718223456],[-103.84543422909258,22.342757499957372],[-103.84610738486913,22.33097968120296],[-103.8452349445655,22.329431705482193],[-103.84396790548783,22.326367345451047],[-103.84115949820352,22.322620516013558],[-103.8379526689348,22.312464257301656],[-103.83665764221269,22.304294312145373],[-103.83183488812955,22.294837226198297],[-103.83109183776315,22.29208976617258],[-103.82915305677744,22.28993118284643],[-103.8286198127891,22.286612899850525],[-103.83037815581844,22.284866168997212],[-103.83203268671491,22.27939749278562],[-103.83478045716453,22.27704429450887],[-103.83606183263339,22.27432177715184],[-103.83565633015655,22.27249816885586],[-103.839838231199,22.26628752582843],[-103.8425303808558,22.266435112431452],[-103.84258467976656,22.264715877559297],[-103.84519312168948,22.261350080271484],[-103.84324630870532,22.25598068384852],[-103.84227866738217,22.25031722199475],[-103.8435093038492,22.231237492964453],[-103.84467245021409,22.23035624972715],[-103.84407555394347,22.22206592829349],[-103.8492290876589,22.208191180536573],[-103.8525463409378,22.20119446620066],[-103.85779329416528,22.188158126189478],[-103.86216323112058,22.171785947602018],[-103.86293600642273,22.166882429560985],[-103.86627541347218,22.16982640862915],[-103.8708263412758,22.176170213384978],[-103.87311699870122,22.178397448812518],[-103.87342735532445,22.18454069103234],[-103.87689426079675,22.19214072903219],[-103.87856890492742,22.19247709366482],[-103.88256125622462,22.19582097135799],[-103.88485763195791,22.196042540844132],[-103.8839346570486,22.19758446945559],[-103.88394868375508,22.19994561644728],[-103.8840475435278,22.20148661585978],[-103.88113043271784,22.205323677978356],[-103.88217452155163,22.214518366548305],[-103.88508996627559,22.217292521664262],[-103.88440279699137,22.220279604043583],[-103.88697038504642,22.227060727837795],[-103.89242214723777,22.228846784171935],[-103.8962656512411,22.233555792380514],[-103.89828876806166,22.23421903237039],[-103.90165640379541,22.23708096039013],[-103.9022588663629,22.240327173576702],[-103.9038959347082,22.242084544629677],[-103.90360469388884,22.24354526388794],[-103.90584010569472,22.24834110604371],[-103.90530957340007,22.249913428058846],[-103.90722350281578,22.251409012870965],[-103.90767896529735,22.25460818727879],[-103.91016860663115,22.254534052437975],[-103.91302022626502,22.256821281504756],[-103.91456969033004,22.260651900273615],[-103.91787556627736,22.261970445512816],[-103.91752024709422,22.264542321966985],[-103.91383257586165,22.269445275171336],[-103.91175423686946,22.27047518064444],[-103.91356975099313,22.271523931490037],[-103.91429398326073,22.277609477154442],[-103.91227130400256,22.281658283345166],[-103.91001080844393,22.28154105929019],[-103.9112353023661,22.284382045988536],[-103.91364381187685,22.284854209181674],[-103.9136968983122,22.287195865324634],[-103.91599414380443,22.288543658048468],[-103.91430259467967,22.28914394078646],[-103.91582860712896,22.29231986488884],[-103.91612647890793,22.300081120574248],[-103.91402999897633,22.299949428375953],[-103.91887676169426,22.304051029809727],[-103.91585607151956,22.310506023220285],[-103.91618756017863,22.31235488587754],[-103.92096345976239,22.31427454946794],[-103.91971140162121,22.316585862547356],[-103.92251199928182,22.318698483137837],[-103.92091443106693,22.322810228600872],[-103.92388815556188,22.324917562198493],[-103.92242802223302,22.326694350837556],[-103.92593134420372,22.33255913538352],[-103.92208281996545,22.335164684169],[-103.92056738743543,22.3350377837192],[-103.91932876498396,22.338323308253393],[-103.92139251422321,22.342719139123005],[-103.92129979747818,22.347880328842336],[-103.91342089287156,22.35109600609536],[-103.91069630909078,22.35392064700909],[-103.90924714391474,22.359393200476177],[-103.90786301284254,22.362050479297125],[-103.90434297594061,22.364562550342214],[-103.90170219770096,22.36453431495272],[-103.89914291836914,22.363031524641315],[-103.89580132042323,22.36465056062997],[-103.89913583160126,22.376588248336418],[-103.89927107809842,22.377173989367748],[-103.89731201592923,22.381646783996814],[-103.89492831893836,22.38173419914],[-103.89124273208228,22.383571626446326],[-103.89157293257057,22.385170917136406],[-103.89160437248302,22.385529149669992],[-103.89245501089863,22.388028133482976],[-103.88827603878076,22.38951020163438],[-103.88657728176003,22.388681203345868],[-103.88345065861404,22.390024065239572],[-103.88325380113048,22.39357510859702],[-103.8862798467656,22.398900632637492],[-103.88257159492616,22.401615006260784],[-103.8693123198637,22.401262414760765],[-103.86692938360846,22.409380633218404],[-103.86597617813311,22.41522722509677],[-103.86852553067462,22.414932164724178],[-103.8707804277825,22.41729714501281],[-103.87211989082124,22.416041757763537],[-103.87464664455757,22.416998717011552],[-103.8745460142045,22.419136227073125],[-103.88062275196279,22.41816252932739],[-103.87934302223135,22.42068937813849],[-103.87270802386746,22.422806493901533],[-103.87517585756024,22.42621075275929],[-103.87590464293532,22.426494115141168],[-103.88167016409653,22.428802525998663],[-103.88727469318331,22.43210019441824],[-103.89470000089511,22.438163856582833],[-103.89433846667885,22.439441133809737],[-103.89024931313304,22.441804678772826],[-103.8798546362467,22.44000784095101],[-103.8760983512027,22.44118390704034],[-103.87688655042302,22.445972594747673],[-103.87917394010032,22.45245216772736],[-103.88242098840345,22.45333591190456],[-103.8828546438312,22.458016501464783],[-103.88168553834834,22.466097202223068],[-103.88184198244238,22.468826596909707],[-103.88477731967896,22.468974896572774],[-103.88536857603759,22.47352509392374],[-103.88209685329633,22.477158902030794],[-103.88166104810796,22.47615470152988],[-103.88118620396892,22.47472022858574],[-103.88023671371718,22.474773073517554],[-103.8761266879456,22.471981243429354],[-103.8733255190939,22.471769324333764],[-103.86969993723687,22.473738156628087],[-103.86776744411986,22.47841775071936],[-103.86741192930884,22.483273576850763],[-103.86650734123037,22.485318370520645],[-103.86501877131076,22.48776227831462],[-103.86536621821404,22.48873695366376],[-103.86475583715855,22.489953757272417],[-103.86418870841936,22.492288870967343],[-103.86393415043074,22.496946518393486],[-103.86231608540868,22.50189167046267],[-103.86443498957084,22.503896558061342],[-103.86345932179904,22.507395640642187],[-103.86486308265012,22.50750384621682],[-103.86355809087229,22.50993297876545],[-103.86537259090369,22.51137462061172],[-103.86425394041419,22.51299787025306],[-103.86557630657859,22.515153514482392],[-103.86831795203437,22.516566779944924],[-103.86885111741111,22.51814464089597],[-103.87243041173491,22.518436300616713],[-103.87456817930934,22.521083942623704],[-103.87498488542803,22.522219442126982],[-103.87298190724533,22.527114741456614],[-103.87336352570696,22.53194028298458],[-103.87047637630587,22.539421691093253],[-103.86930665318857,22.539608685057203],[-103.86665558803435,22.538549200777197],[-103.86468329238346,22.53944669521718],[-103.86805753555518,22.54239568692259],[-103.86688267245353,22.544696043618274],[-103.86163901531347,22.547650181834285],[-103.8581166772845,22.547587024634822],[-103.85379739159333,22.549784697885514],[-103.851939639774,22.553262476122427],[-103.85223068889098,22.55626783768298],[-103.8573313637034,22.562579276536837],[-103.86073773633206,22.565089443400893],[-103.86072056986006,22.567618866963585],[-103.85970718457463,22.567458029771842],[-103.85812810082854,22.56644082919007],[-103.85788803464163,22.567306494449042],[-103.85790878274753,22.568041083566413],[-103.85742131100403,22.568538714937347],[-103.85626717790143,22.569773028753104],[-103.85601052117846,22.570332685358835],[-103.85603956419078,22.57054459162697],[-103.85687645780393,22.570833858049525],[-103.85673140583475,22.571784671006412],[-103.8553654531321,22.571835590097066],[-103.85576598978741,22.573362446386454],[-103.85467628343201,22.575638431836865],[-103.85409157543535,22.57610698239614],[-103.85311141500296,22.57685442709726],[-103.85238998874803,22.5776179355193],[-103.85110813635004,22.578025610018244],[-103.848359595874,22.579291955295616],[-103.8435519468315,22.578976973053727],[-103.84268361904759,22.579251743435634],[-103.84162552890285,22.580612633540056],[-103.83449760969609,22.583445226754975],[-103.83310593852246,22.585902716067608],[-103.83023967464396,22.586626607403332],[-103.82960840562788,22.587169851847023],[-103.82776217996496,22.588360319475896],[-103.82520599462237,22.587970891914722],[-103.82392891393727,22.59185351764023],[-103.823559065707,22.592218750305847],[-103.82262850291261,22.59354168684621],[-103.82124604364617,22.593974732873335],[-103.82005856702557,22.59448992832216],[-103.8178761550522,22.59616532176676],[-103.81104309253294,22.59844820944602],[-103.79715829952204,22.603170897496398],[-103.77857604769792,22.609903723247896],[-103.77345074729243,22.611495480284475],[-103.77274061837073,22.614494334094218],[-103.76702681694434,22.619081264608894],[-103.76588297625085,22.62228025266046],[-103.76085869703411,22.625802245807165],[-103.76519644993232,22.629510645882362],[-103.7659915117668,22.633411997802625],[-103.76766645607762,22.63580611199626],[-103.76711200599516,22.64082602937816],[-103.76845997030352,22.64332864601846],[-103.76729732496119,22.648257163782148],[-103.76516648678358,22.65048683436794],[-103.7620809811562,22.649948242190987],[-103.75866850452763,22.6584208716651],[-103.75987144321766,22.66082243819119],[-103.76348033060941,22.66239329774845],[-103.76243596062551,22.668853646110904],[-103.76264152516836,22.66923172460008],[-103.763704495453,22.67207504028346],[-103.76194132056594,22.675487185458223],[-103.76261346448598,22.678068111949756],[-103.76219787448002,22.678474988103346],[-103.76099910983362,22.681521146242233],[-103.75951322706533,22.681975683581697],[-103.7595683573154,22.684646203452758],[-103.75602998734644,22.690292024660778],[-103.75131115059105,22.695047103787317],[-103.75335330108084,22.69850016954956],[-103.75269717240548,22.7027231491557],[-103.75235500455472,22.703088386533466],[-103.75188859050837,22.705881032428294],[-103.75361253455145,22.708290210221378],[-103.75195632978381,22.710490758297567],[-103.75241595084731,22.71254565374602],[-103.7554444017149,22.714883728447546],[-103.75480617073629,22.719547779573134],[-103.76000155921116,22.719433333361508],[-103.76907414060196,22.720392062883604],[-103.76973825096991,22.725314564975747],[-103.7692271528004,22.727258863277996],[-103.77125114849076,22.73090794398462],[-103.77153921243882,22.733214065678567],[-103.77467361823108,22.733868901564506],[-103.77892384420198,22.732028672700665],[-103.78138526175769,22.72981707101684],[-103.78445892262903,22.731635676057238],[-103.78679527789939,22.729914809473428],[-103.79200372023081,22.730447611365832],[-103.79438670671158,22.729115260824642],[-103.7952895800421,22.730381084863836],[-103.79991562534644,22.730036106083332],[-103.80064866569592,22.731305360362796],[-103.80520812983656,22.73013147248912],[-103.80589028552521,22.731497296987413],[-103.81205349935436,22.7292177583235],[-103.81372904237912,22.730319346441433],[-103.81675455523043,22.72846231668217],[-103.81887276784789,22.730242057006876],[-103.81978651525668,22.728478420919544],[-103.82123405925148,22.730985602434032],[-103.82163345919258,22.734040395813906],[-103.82711731075636,22.734651695898606],[-103.82925263203657,22.73104006809001],[-103.83049276499645,22.733440753007187],[-103.83272238303448,22.733568456784155],[-103.83506802407334,22.73038552714678],[-103.83529052355323,22.729357817221455],[-103.83663611296919,22.728025471389913],[-103.83696509527124,22.730692095912048],[-103.84009473571501,22.732097772725183],[-103.84488526818626,22.731835800929446],[-103.85017016627108,22.73048936208778],[-103.85122044789892,22.730457171461296],[-103.85592470574784,22.73042844278814],[-103.85587753741629,22.73096008828537],[-103.8556892616694,22.731472248824275],[-103.85592722392846,22.731720893394765],[-103.85800049788799,22.733345729053326],[-103.86081249450922,22.73350568718132],[-103.86158289701467,22.733395006024637],[-103.8651694662662,22.735433940853454],[-103.86775306840866,22.732400455822983],[-103.87030881596206,22.735469912962117],[-103.87268579021702,22.735458930336108],[-103.87367111414505,22.73516881447233],[-103.87511418192258,22.737157690834408],[-103.87755740535476,22.735287815064112],[-103.8813979504726,22.73454384129866],[-103.89022102733969,22.73532489936133],[-103.89832762781293,22.728277308422946],[-103.90312956308861,22.730859226099938],[-103.90157299144107,22.7349478105059],[-103.90413519417115,22.742170801047394],[-103.90660100228348,22.746286748599232],[-103.90908345059825,22.74728499520694],[-103.90929532301692,22.74757614877842],[-103.90927926120196,22.747610886375583],[-103.91001821974874,22.750143732927995],[-103.91315524363137,22.748953502184122],[-103.9165227354224,22.749830076330227],[-103.92032307410932,22.74807862545697],[-103.92326919890019,22.748522080877137],[-103.92476999584267,22.747040631237724],[-103.92800541922634,22.747250070479822],[-103.93214660393761,22.745252632232848],[-103.93291109818131,22.745338412150943]]]]},"properties":{"cve_ent":"14"},"id":"inegi_refcenesta_2010.23"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-98.48321139091928,21.397324980061455],[-98.48611431886718,21.398520768170158],[-98.48641726997965,21.398517651817258],[-98.48741560214103,21.396884234409697],[-98.48644901932494,21.39562800658024],[-98.48648377989838,21.39509996352865],[-98.48670606814767,21.39358195009919],[-98.48681788128039,21.392640848958706],[-98.48710349627135,21.392229480161348],[-98.48803933257358,21.391430931773925],[-98.49025290244833,21.392175080311063],[-98.49250784880297,21.389662699310577],[-98.49304263369027,21.388889388829682],[-98.49378148371568,21.387938609971343],[-98.49437881584214,21.38734086635145],[-98.49460253715569,21.387170241007368],[-98.49576658601416,21.38677053256481],[-98.4971798080565,21.38605960744553],[-98.49802197707714,21.3858323128739],[-98.49897531783557,21.38555257737761],[-98.50068573794198,21.385347086545266],[-98.50150804449606,21.38564136078122],[-98.50176035955172,21.386025058012137],[-98.50227610944103,21.388329779298488],[-98.50434874463883,21.389362567675448],[-98.5070816497668,21.386161033643816],[-98.50495426661251,21.38199700501525],[-98.50952598204879,21.377971213360524],[-98.51293135277223,21.377067891832723],[-98.51300380744516,21.37469150731016],[-98.51575184373434,21.3722896418127],[-98.51159158366983,21.368974267323836],[-98.50907000993857,21.370650748006653],[-98.5073790534243,21.36997097890179],[-98.50660359383602,21.366851496932895],[-98.50834148988133,21.36407730202569],[-98.51188880076643,21.362491153455323],[-98.51526859381516,21.365094996824837],[-98.51516952281577,21.362029608616012],[-98.51744451343262,21.36186470402913],[-98.52064644082162,21.36546026128906],[-98.52052001068114,21.36862858259144],[-98.52495267766858,21.366152307920572],[-98.52946634828169,21.367673030074684],[-98.52968676552672,21.37085255950501],[-98.53034283370573,21.371038276176705],[-98.5310988225877,21.37099333501942],[-98.53360629508097,21.374891432436186],[-98.53192841282555,21.377162108285518],[-98.53144349930045,21.378040169304768],[-98.5348075397726,21.378578036076533],[-98.53452678736386,21.37984791273226],[-98.53941054364196,21.38086895057353],[-98.53927378721266,21.38284983279732],[-98.5425759824214,21.383967847124097],[-98.54368309223707,21.384049831228083],[-98.5451377990409,21.38410243331589],[-98.54458268487264,21.380939941355507],[-98.54702478835532,21.381309285014993],[-98.54777422880284,21.384260393148338],[-98.55077789874105,21.384015064005723],[-98.55176495011068,21.379728542934288],[-98.55698650488307,21.379601305878055],[-98.560094341063,21.37738395932581],[-98.56030581064772,21.377489214490538],[-98.56293336626436,21.37477679850008],[-98.56302766243192,21.37477238536303],[-98.56469016107093,21.37193709995887],[-98.56562113155724,21.373266593360995],[-98.56665270829984,21.37261284444287],[-98.5667792958547,21.3727488006856],[-98.567106140558,21.37143383290828],[-98.57409399530457,21.3729954108353],[-98.57432103456733,21.372999212103082],[-98.57595545363517,21.37456697739009],[-98.57601145382642,21.374633695447983],[-98.57646994930514,21.374336489455573],[-98.57775460596963,21.374259015265636],[-98.57844208776868,21.373540835546066],[-98.57876732186082,21.37321810217304],[-98.58075013635187,21.374076902593174],[-98.58012039038653,21.371539591461442],[-98.5802282739449,21.371274526782088],[-98.58050605141563,21.37126291449124],[-98.58096301293295,21.369767415581975],[-98.58105041625532,21.36972442634476],[-98.58253896323788,21.369731055156024],[-98.58346141223171,21.37244933693529],[-98.58348625512895,21.37283368816537],[-98.58373485752139,21.37283584144666],[-98.58407229657143,21.372690391318997],[-98.58563095806375,21.372187458710926],[-98.58586537917904,21.371841571146092],[-98.58941425058583,21.372160456489667],[-98.59131232458861,21.368712666142017],[-98.59129724243496,21.366405410700906],[-98.59138557387809,21.366337594592096],[-98.59434192111314,21.36465853001016],[-98.5960908101332,21.36419088934514],[-98.5959250204262,21.36306608450832],[-98.59638572947301,21.362435498975344],[-98.5963116309066,21.360980925445972],[-98.59666430382981,21.360145783583846],[-98.59711406667617,21.36008528344331],[-98.59688349156676,21.359245382611732],[-98.59688568100597,21.359165789614508],[-98.60012719547711,21.359931945192216],[-98.60166944885333,21.359155605925025],[-98.60189446772017,21.358379605309608],[-98.6019483773357,21.35818805565384],[-98.60244178590017,21.357868638913146],[-98.60380589690976,21.358822078116987],[-98.60463260337696,21.358332253366825],[-98.60623742982273,21.358577331815013],[-98.60692237207286,21.358136304861034],[-98.60857051770773,21.359356496321823],[-98.60869017876854,21.359326919951286],[-98.60906954008948,21.358956113045735],[-98.60955601658014,21.358854124383242],[-98.61141224761133,21.359196072442842],[-98.61165600585849,21.35916626892299],[-98.61276870413218,21.359810054974105],[-98.61484702505635,21.361801681210125],[-98.61510733254607,21.361136380386995],[-98.61535899510494,21.36046188043707],[-98.61564921355716,21.360150564031187],[-98.61644518912641,21.35978293539165],[-98.61705034510749,21.359656395276545],[-98.61859255819894,21.358773614292033],[-98.62018298247511,21.36000305581041],[-98.61907711288876,21.362338298172574],[-98.62067965320472,21.36378135304551],[-98.62420546912006,21.36428332216758],[-98.62506452192662,21.36105209168852],[-98.627155652196,21.359814738643024],[-98.62853665953429,21.362499162544907],[-98.62846036230167,21.362887231079014],[-98.62845235223722,21.36290322344587],[-98.62948601843794,21.364527824732818],[-98.62962490788846,21.36446969231622],[-98.63222917720998,21.365348306661417],[-98.63243924472255,21.365283849691707],[-98.63297150034992,21.365120528593536],[-98.6331910885653,21.365053143915077],[-98.63380169980172,21.36434424908282],[-98.63390289507981,21.364223291313692],[-98.63428083938737,21.36375501412158],[-98.63513230212095,21.363530570191642],[-98.63524900177356,21.363557435336247],[-98.63721975799257,21.36401989597738],[-98.63833780505001,21.367706059771706],[-98.64037401341102,21.365954474400894],[-98.64196568640108,21.3667234761773],[-98.64198605851306,21.366737387206797],[-98.64248071137803,21.366330202106724],[-98.64251963355667,21.3660878832747],[-98.64404665371393,21.366539466906545],[-98.64487368504439,21.364279624995447],[-98.64498428648295,21.36402714421689],[-98.64415451577946,21.363340961794393],[-98.64538972346668,21.35765172591482],[-98.64968796941992,21.35482749514682],[-98.64960081607217,21.35263961826024],[-98.65172702917346,21.352786417574805],[-98.65275015820936,21.346844184237057],[-98.65333500080203,21.346907878474326],[-98.6557442723377,21.347290655751408],[-98.65658008780531,21.347352844562124],[-98.65866856988612,21.347618016471984],[-98.66120465314691,21.347802499572254],[-98.66558734645173,21.348125555798447],[-98.67029445783544,21.348425099439567],[-98.67065998134876,21.34828376877806],[-98.67182731795157,21.3482778558963],[-98.6750912861068,21.349842945894522],[-98.68026869552824,21.346839642652526],[-98.68111278386624,21.3453424815616],[-98.68109567250332,21.344435076692832],[-98.68114083976502,21.34431079085948],[-98.68267197394323,21.342815035253352],[-98.6835470121975,21.3420006975864],[-98.6833708306288,21.34159601322],[-98.68254435404288,21.34088292317182],[-98.68213400931808,21.340211232137847],[-98.68177177344177,21.33990726331922],[-98.68134191660687,21.339365116501824],[-98.68104776320104,21.339364564988273],[-98.68059983439036,21.339074264638498],[-98.68015290890537,21.338596241146774],[-98.67911904355907,21.33821912006806],[-98.67888211760715,21.33807103314291],[-98.67818733520193,21.337614006826925],[-98.6779632337363,21.3375415454924],[-98.67722118870546,21.336750420621172],[-98.67695004115075,21.336551243957558],[-98.67667426998122,21.336134206467193],[-98.67638102765432,21.33495372085855],[-98.67576283661447,21.334465697765324],[-98.67572994190351,21.334151574416467],[-98.67388564970037,21.330263852942835],[-98.6731509903799,21.329713897286695],[-98.6731921982473,21.328876913091335],[-98.67280012524515,21.328704475655286],[-98.6727591639247,21.328476818361708],[-98.67277548167431,21.32791596654107],[-98.67245780806718,21.327328767187964],[-98.67138362407593,21.325941064342487],[-98.67109381765471,21.3258005654871],[-98.67062871857513,21.325701040358013],[-98.67093829811819,21.325383000901354],[-98.6709082834509,21.324858782951765],[-98.67072729641569,21.324719653412444],[-98.67061571496396,21.324754657647816],[-98.66953853991419,21.324942921184856],[-98.66908950022395,21.324246982207512],[-98.66853092522257,21.32461175193464],[-98.66837243299267,21.324075651843884],[-98.66788320236788,21.3240706936989],[-98.66761938681526,21.323915616036913],[-98.66703133584292,21.323308868418167],[-98.66676657718637,21.322860785150965],[-98.66571340180275,21.322888760769388],[-98.6655430403668,21.322961418006457],[-98.6599180074175,21.32064149261919],[-98.65692767249931,21.318081268452488],[-98.65688880001443,21.318055414236426],[-98.65650253500559,21.317981302349324],[-98.65089702270262,21.315086550157048],[-98.64816794919898,21.312714944035463],[-98.64759532390286,21.312315663729578],[-98.64645956039516,21.312801989479567],[-98.6455698648412,21.312718768133664],[-98.64436373390885,21.31309380166641],[-98.64368363653347,21.312688367563055],[-98.6431291834611,21.312750203922178],[-98.64180258221643,21.31272715085379],[-98.64119040378625,21.31287423407315],[-98.63996403329281,21.312908265747353],[-98.63886599792698,21.313150716831103],[-98.63848260679174,21.313201419161032],[-98.6373780092461,21.312976404614687],[-98.6368876724232,21.312879308721392],[-98.6363791666065,21.312934325745573],[-98.6356520294234,21.31323745473486],[-98.63409492953679,21.313298273677105],[-98.63244244382008,21.313203140654934],[-98.63195919783965,21.313104327299754],[-98.63083829447646,21.31264607636018],[-98.63015360936618,21.312343395448863],[-98.62440170545517,21.309485042220274],[-98.62497276525329,21.30832205627206],[-98.6249469340209,21.30816403921642],[-98.61969998180803,21.30591567588573],[-98.61910124552895,21.305814711180687],[-98.61887848386021,21.305432139978222],[-98.6190301089876,21.305026750190848],[-98.61842338542442,21.304865581542515],[-98.61609083012621,21.304955727484924],[-98.61253133532477,21.299812696404445],[-98.6094927321945,21.299270561223636],[-98.60610326776464,21.3018204242764],[-98.60385137946571,21.30042472896332],[-98.60391263796896,21.297990849524524],[-98.60142596680316,21.296351890868607],[-98.59913146108778,21.292050411842126],[-98.59979793345576,21.289455136808158],[-98.60169862154589,21.28760785621904],[-98.60099809282246,21.28567786638422],[-98.59596569901919,21.28534999218499],[-98.59541768942125,21.282707638493036],[-98.59574456928948,21.282120823261096],[-98.59725879497887,21.28281101706665],[-98.5972722280107,21.28152112171557],[-98.59875956506937,21.280865546088364],[-98.59872637335047,21.279576278269133],[-98.59893568416209,21.279529973757406],[-98.60026392180151,21.279890179770348],[-98.60086996734896,21.279655885004388],[-98.60258028342963,21.279367867432995],[-98.60361506119727,21.27664845616897],[-98.6039524009376,21.276171381169718],[-98.60325102888561,21.275630024063048],[-98.60273879948778,21.274115954662705],[-98.60319176950429,21.27283250146371],[-98.60376268564079,21.272375576572017],[-98.60417041941474,21.271814598668925],[-98.6031757486432,21.27018608236847],[-98.60325526831133,21.270103363902933],[-98.60324854175678,21.269611498815095],[-98.60418248796987,21.269482282923036],[-98.60462811671482,21.269201694192304],[-98.60302473798527,21.266978153382183],[-98.60261749226589,21.26646034502636],[-98.6022739879935,21.265886492113793],[-98.60246858242988,21.264713048434487],[-98.60179962171736,21.264096048016995],[-98.60203194393085,21.2639667828534],[-98.60154453074608,21.263654939815467],[-98.60179857475327,21.26210221520131],[-98.6000215428113,21.261053667613567],[-98.60093922238656,21.26005366465398],[-98.60114850666713,21.259865391904953],[-98.60206560925525,21.259459975526966],[-98.60257232904229,21.259129298953724],[-98.60441249328323,21.258931503636347],[-98.60767480266668,21.256547731148146],[-98.60892490389404,21.252704002464384],[-98.60847943398807,21.25258961985702],[-98.60880244831839,21.251673266012972],[-98.60856308291949,21.251649530098973],[-98.60864293303865,21.25106621381957],[-98.60863016982955,21.250427321776158],[-98.60816922494377,21.25020028207871],[-98.60774547604319,21.249418986815044],[-98.60755433208067,21.2493967196134],[-98.60716891754072,21.249177288227997],[-98.60693530932446,21.24885618302534],[-98.60485428328701,21.248771917981117],[-98.60486614041014,21.24923600313491],[-98.60289672002085,21.248945043175297],[-98.60258340733185,21.248601353266395],[-98.60180639823716,21.248261754570592],[-98.60159517192284,21.24824678479439],[-98.60030586870562,21.24802197758993],[-98.600121379918,21.24779023567538],[-98.59969486463365,21.247977899314833],[-98.59980910546687,21.24702320726641],[-98.60012511268161,21.246418293650834],[-98.6007656297931,21.245685759357343],[-98.60153805350086,21.245463706414228],[-98.60233514995957,21.24287647516951],[-98.60128714846883,21.234637567670347],[-98.6012726233131,21.233208865969743],[-98.60121527894944,21.232610175595482],[-98.60127407988716,21.23244196235322],[-98.60134092406162,21.232076798286244],[-98.60215871461537,21.23137881633454],[-98.60232235588353,21.231174751677827],[-98.60231797181552,21.2311451871023],[-98.60215219458962,21.230946499539186],[-98.6023173403155,21.229954205003253],[-98.60225382355833,21.228915510121283],[-98.60337059467133,21.226529425966362],[-98.60389998570065,21.22533737558973],[-98.60466729523966,21.220891915182108],[-98.60441931470314,21.219888687886737],[-98.60359212290103,21.218376336753863],[-98.60654473518059,21.216323693764764],[-98.60522611403661,21.215213352789192],[-98.60822720874381,21.20711865548526],[-98.60832610047908,21.204717273543054],[-98.6075695251676,21.20376730290741],[-98.60912063923752,21.200998963313907],[-98.61028410395932,21.200675356718534],[-98.61096960710637,21.19969270961849],[-98.61133337521869,21.19914732109038],[-98.61242614820901,21.198159796021912],[-98.61266869982211,21.197989359075052],[-98.6131415194352,21.197575434330588],[-98.61329676764734,21.19746751488833],[-98.61363295669275,21.19729351111158],[-98.6150161233557,21.196469475074878],[-98.61599045882093,21.195801980020974],[-98.61670694291121,21.19525551320197],[-98.6179765538219,21.194284881211217],[-98.62023089157856,21.193413477808804],[-98.62250003798812,21.192270631584563],[-98.62509307417287,21.191728115460762],[-98.62958370643395,21.189139393500056],[-98.63861463696509,21.18496142945122],[-98.64010801819256,21.18289118252642],[-98.64242164644548,21.182156559430894],[-98.65062533384872,21.183517946724294],[-98.65069557735353,21.180936475123872],[-98.65894198182497,21.186047420139687],[-98.65829707954236,21.18280592486076],[-98.66378250737006,21.184050588378796],[-98.66581237824022,21.18916744504355],[-98.66908424372963,21.19285449688732],[-98.66893113982388,21.194859702055282],[-98.67306433017569,21.194561350460106],[-98.67715449316614,21.199471209850458],[-98.67974525154204,21.19847621784629],[-98.68038984099809,21.1984802309467],[-98.68233659849045,21.20072373915383],[-98.68375344706777,21.198762622538254],[-98.68372827991215,21.19864499050385],[-98.68505608712468,21.195703034780706],[-98.68515277574602,21.190197131267666],[-98.68850753770823,21.189908412003888],[-98.69169933460478,21.188028488975988],[-98.69098223407292,21.18698038934349],[-98.69231408846804,21.18397752688844],[-98.6946048134622,21.181532546118603],[-98.6926034690535,21.1785555710386],[-98.69389788018015,21.176899597889587],[-98.69261688811821,21.173110276679722],[-98.6928158116333,21.170663091718552],[-98.69167028625759,21.16598250692556],[-98.69675492752918,21.161503830738525],[-98.69833018861306,21.16213354269007],[-98.70182009444682,21.160771135166726],[-98.7026464927111,21.163078528713925],[-98.70365512600142,21.168481439671098],[-98.70151343541687,21.171336859450662],[-98.70191057183592,21.172772718525835],[-98.69937297257997,21.17622851674696],[-98.70150060611866,21.18074031317957],[-98.70117457272761,21.182966882270307],[-98.70116461762473,21.183102050143987],[-98.70196766929087,21.184481955195565],[-98.70200798854887,21.184802232604966],[-98.70487743265767,21.18652078797635],[-98.70487244710301,21.18658683379266],[-98.70746400614638,21.187396984387647],[-98.7126573353766,21.185161065905618],[-98.71471840955485,21.183439969340952],[-98.71665844958454,21.18594484978837],[-98.71952329023236,21.184158845279114],[-98.71903914292614,21.186558872938576],[-98.71942859154979,21.1871341760218],[-98.72034223973861,21.18713097935307],[-98.72087424676664,21.18648946445535],[-98.72122937957522,21.18634372461895],[-98.72383487298816,21.183049563996803],[-98.7243657048852,21.183002405909804],[-98.72474074818524,21.183331393579067],[-98.7283365172267,21.184342809275506],[-98.72671326633531,21.181975324522057],[-98.72677299018972,21.179652023244955],[-98.73028419160414,21.181198039176593],[-98.73464393967487,21.181544434374985],[-98.73572880826123,21.182792917831023],[-98.73628245995911,21.186724816701826],[-98.74091592441283,21.192670363007778],[-98.74188827019663,21.190993001539027],[-98.74054111334408,21.18940685033789],[-98.74587329212142,21.184960535492564],[-98.74631001094104,21.184550748885954],[-98.74667828556483,21.18435450406963],[-98.75384394037457,21.186150577440173],[-98.75411594698585,21.18639253927654],[-98.759720570973,21.186226874246245],[-98.76409891773113,21.184565024299502],[-98.76375416602474,21.180514615173365],[-98.765829537466,21.17807726830557],[-98.76588347225157,21.17587047693047],[-98.76999971133137,21.173918770895114],[-98.77039827539176,21.174119057186147],[-98.7709323377623,21.17399953030565],[-98.77341381538486,21.172064033982963],[-98.77387799088933,21.17251047843382],[-98.77633513814396,21.173641643846167],[-98.77606522938913,21.17736357041383],[-98.7763082806922,21.177716997608],[-98.77647601165432,21.181037840327065],[-98.77657710416372,21.18200949307999],[-98.77919796120432,21.182398519791946],[-98.78097760481387,21.185565076241744],[-98.7822360598625,21.18622800284993],[-98.78772618205892,21.18686767441045],[-98.78906145843041,21.187443008666037],[-98.7913477848673,21.18795317224391],[-98.79402002973075,21.185956525730205],[-98.79526100097934,21.184810723220608],[-98.79797067886346,21.18334342198915],[-98.79908994549254,21.186266258092473],[-98.7966679416628,21.190209279353212],[-98.79771855005691,21.191629141653493],[-98.80298527600303,21.193217198548723],[-98.80480498959201,21.193203020476858],[-98.80814320653229,21.193244913591798],[-98.80808438147511,21.18956299462957],[-98.80248950387517,21.18319165409332],[-98.80164740712007,21.182215841763536],[-98.7978381584777,21.177801327323664],[-98.79388912350453,21.179523566171213],[-98.79069887612786,21.17951965445991],[-98.79079803622864,21.175864075573884],[-98.79085065112878,21.17359996176242],[-98.79033575920766,21.170047273115188],[-98.78879543136838,21.166385587202456],[-98.79395336096343,21.16018363103234],[-98.79651678816941,21.16135862095956],[-98.79771107425552,21.16459101669909],[-98.79983239780063,21.164717082924255],[-98.80605064822959,21.16355938636167],[-98.81160568344131,21.163228319857808],[-98.8195527713616,21.16118416829903],[-98.82059516128788,21.160353799563666],[-98.82300705402753,21.161190544441865],[-98.823283220944,21.16121443779315],[-98.82848310654208,21.163522192529456],[-98.82928117763123,21.166679183690007],[-98.8325484899861,21.167075504044362],[-98.83756969548352,21.17055097483069],[-98.84049155267184,21.169080030098314],[-98.8436295824747,21.170704080616872],[-98.84635189653233,21.173970535247065],[-98.84723742194984,21.177496520675675],[-98.85104386153319,21.179440214892963],[-98.85120991608068,21.18358703758264],[-98.85309322818568,21.18643930874572],[-98.85596433837384,21.188674444962658],[-98.85969521659763,21.18926614189229],[-98.86375309376587,21.188369390673984],[-98.86938768293118,21.18437541334356],[-98.87266073184287,21.183274130579207],[-98.87469731045383,21.180896611800563],[-98.87637819719788,21.180379957871878],[-98.88000748136744,21.179264349279492],[-98.88265880989456,21.179610870332453],[-98.88308719103384,21.190003102728838],[-98.88182122073266,21.193962975862405],[-98.89542350685963,21.203895941191263],[-98.89513520220345,21.210378798605007],[-98.90171750588502,21.211464000643957],[-98.9036387676095,21.212657132513527],[-98.90637411251191,21.223136024459677],[-98.91422408673668,21.224294874448447],[-98.91476449236512,21.22726208848883],[-98.90781187736906,21.232793172584252],[-98.90600981304169,21.233136097140232],[-98.89991150467432,21.231124789845296],[-98.89860667590085,21.23296308103852],[-98.90096292287876,21.234179638968953],[-98.90143317504811,21.235947419023034],[-98.89939167808473,21.235799436759976],[-98.90065561196968,21.240329416448617],[-98.90280778472709,21.238397457094493],[-98.90537072023864,21.239116961835236],[-98.90995141800454,21.24193588295242],[-98.91298741370656,21.24003187721638],[-98.91766012598015,21.239717492030763],[-98.92152804759485,21.24575085823102],[-98.92159959647324,21.245917177769286],[-98.9226416400308,21.247869968897362],[-98.92098698716961,21.248393342975817],[-98.91776487529052,21.251967987065882],[-98.91816899875641,21.256676445665107],[-98.92215654711663,21.258689082217813],[-98.920991748868,21.262434351689762],[-98.92514946126505,21.265203666379307],[-98.92823455755843,21.269759305934144],[-98.92653867074273,21.27447309423252],[-98.92648390798394,21.27866731536932],[-98.92821292346008,21.28277374811995],[-98.92927699557413,21.292729443826545],[-98.93258013570471,21.298294885702603],[-98.9364287318719,21.29578750000411],[-98.94028331046917,21.2946024632717],[-98.94089552132704,21.296785425253745],[-98.94496075222924,21.311336584706737],[-98.94529095295002,21.311173805108922],[-98.95342188492913,21.30842822220319],[-98.9526685066636,21.306749933733954],[-98.9547657667735,21.306422291858496],[-98.95545433927742,21.30257129017332],[-98.95731840419967,21.30187638360104],[-98.95966668380919,21.30344071257656],[-98.96281105770385,21.302710319442326],[-98.9653014699885,21.306940514422934],[-98.96858477740858,21.305830144240645],[-98.96884147632352,21.306008471505947],[-98.9710302744216,21.30401633552833],[-98.97297130508224,21.303777000482512],[-98.97418119779422,21.303653512787434],[-98.97483777058562,21.303084840716963],[-98.9747259982401,21.302026233900506],[-98.97571540481874,21.30034576842013],[-98.97455371924565,21.297458775758116],[-98.9764619272982,21.297089967064665],[-98.97738136583996,21.29657757763016],[-98.98169139321885,21.298404671637627],[-98.9830993748609,21.29830665885629],[-98.98507526640958,21.29795931314851],[-98.98559189812238,21.297985364423255],[-98.98820783339289,21.297413641425067],[-98.9933518476006,21.29934705765396],[-98.99574078820564,21.297737096960645],[-99.00227936561794,21.297957694640502],[-99.00882844038028,21.29533115319714],[-99.01278450123533,21.295370906951405],[-99.01338900050769,21.295162211640616],[-99.01541256707026,21.292606222380016],[-99.0199750747089,21.29160629481828],[-99.02206040906083,21.290018068667848],[-99.02292741491522,21.287621037696283],[-99.0232435966642,21.28726862427925],[-99.0260218893601,21.28722620138842],[-99.03024491764734,21.28392038148388],[-99.03166381133389,21.285963232502695],[-99.03713266611197,21.28257081854815],[-99.03901802358246,21.284201489790973],[-99.03933032932463,21.28421342551627],[-99.03824435958347,21.278177190994484],[-99.04217902392219,21.273357663236766],[-99.04710248200536,21.268636874446656],[-99.05138187073584,21.26553625541726],[-99.05039042446259,21.207002731606565],[-99.04219672391281,21.175254712314484],[-99.04703640300352,21.1742472646784],[-99.04937925210493,21.16898613270604],[-99.05432834816304,21.16533905656007],[-99.05399712386964,21.161908376835925],[-99.05396153943053,21.16154523896381],[-99.05400423403756,21.16136285044189],[-99.05477214381511,21.15954213192856],[-99.0549279718661,21.159384611683322],[-99.05771071558075,21.15966054530452],[-99.06038861946047,21.156654769035924],[-99.06050365973039,21.1564817116236],[-99.06082363963282,21.154788487782298],[-99.0609713330756,21.15455990382185],[-99.06307583682349,21.15432468480833],[-99.06341708262374,21.154425398218223],[-99.06440302946771,21.15490774957192],[-99.06484980470799,21.155160230944773],[-99.066612084035,21.15608912263616],[-99.06729378692665,21.15632738667523],[-99.06821411055381,21.156603689935366],[-99.0685157732969,21.156634432557667],[-99.07202912665952,21.156900858719155],[-99.07224661612685,21.15702073605229],[-99.07281933706508,21.158155356316342],[-99.07283960279096,21.158335551526193],[-99.07255289254368,21.159062336102863],[-99.0721433954223,21.159651771590518],[-99.06741334968643,21.163712564504692],[-99.06368007196863,21.16764035971164],[-99.0602560744486,21.167257481750312],[-99.05985822278546,21.168527775982227],[-99.0640765240741,21.175076288997104],[-99.0647365094,21.175094633646665],[-99.07014300271891,21.17253863986008],[-99.07284065981929,21.17218078095152],[-99.07548825205816,21.173346036318378],[-99.07606376653166,21.17357769268392],[-99.07791664842796,21.17090748156471],[-99.0776894159012,21.17056677746814],[-99.07232573710593,21.168054612425408],[-99.0707727719032,21.167279540013965],[-99.07131536387561,21.166022203166335],[-99.07183617602368,21.165542670684033],[-99.07676658399151,21.162720965733627],[-99.07686292662976,21.16084759223213],[-99.07743863903943,21.159063930646255],[-99.0779024603703,21.15886746546522],[-99.07834168875104,21.158800988294615],[-99.07898158522534,21.15873834434342],[-99.08045881490534,21.158654255422732],[-99.08141380344131,21.15867249100785],[-99.08179094581226,21.158791999390075],[-99.08262219316481,21.159051200203407],[-99.08432744866474,21.15938265578228],[-99.08490253875789,21.158627316763045],[-99.08620162651403,21.15627092075067],[-99.08637238652688,21.156092100059084],[-99.08964004629604,21.154076646486715],[-99.09033539974166,21.1533496718107],[-99.09063112794837,21.153095517460144],[-99.09093827080528,21.152984517180982],[-99.09275071674864,21.153725176582327],[-99.09633696531114,21.154646425737667],[-99.09716975911448,21.15449775082334],[-99.0976341063307,21.154386886120506],[-99.09835472046058,21.154280884619936],[-99.09913916965212,21.15413071421409],[-99.10194662745704,21.153594631894407],[-99.10305319635364,21.153423321990147],[-99.10790932907696,21.15625433575724],[-99.1087795204075,21.15639104517578],[-99.110155876058,21.156609354925422],[-99.11144858608156,21.156105146140305],[-99.11181568759059,21.15567930030528],[-99.11221149507719,21.15402882107429],[-99.11098300352626,21.150305131421646],[-99.11095700180289,21.14915093679042],[-99.11150849240852,21.148584507636883],[-99.11248548415728,21.148363036885257],[-99.11526360462551,21.14828446515213],[-99.11686431763928,21.148299917703184],[-99.11764823757403,21.148284639439566],[-99.12066448113097,21.148040864454515],[-99.12125804633996,21.14799248718748],[-99.12224688267378,21.148007703120015],[-99.12293973502057,21.147953247595808],[-99.12679492584027,21.146701898784613],[-99.12736116449588,21.14702677362095],[-99.12844652556748,21.14886449815208],[-99.12956781871748,21.15128654822371],[-99.13201674023725,21.1530381091099],[-99.13489258471378,21.152576445137584],[-99.1371281925924,21.151740859874565],[-99.13912734495534,21.150650112132496],[-99.14168772059628,21.148527309434257],[-99.14355698948458,21.145576481140893],[-99.1439849751776,21.145124475108673],[-99.1442482508063,21.145140170885952],[-99.14490174787625,21.145343526502757],[-99.148214579806,21.147873277604504],[-99.14891631447284,21.148083755219204],[-99.1509393157387,21.147458411168373],[-99.15183830545436,21.146576711758314],[-99.15618013060214,21.144941757443803],[-99.15688063712452,21.14440913844743],[-99.1577071428411,21.14397925447298],[-99.15960283075299,21.142620874493844],[-99.16009462322478,21.142236373723563],[-99.16049453905998,21.1418507319828],[-99.16109387549284,21.14118292333535],[-99.16387270084789,21.13957033892052],[-99.16728570483053,21.140108943133498],[-99.16901193513189,21.13863670774299],[-99.1697152564746,21.137966255950232],[-99.17061171530486,21.13788586161479],[-99.17140116349043,21.13794925222578],[-99.1724638311897,21.138129998869374],[-99.17315209822027,21.138175059837522],[-99.17574851156212,21.138396251486142],[-99.17698936307733,21.137164896406205],[-99.17716673725232,21.134473976689094],[-99.17728597337924,21.13351647900015],[-99.17883514383561,21.130907044413505],[-99.17894067789712,21.13014100743726],[-99.17983383827686,21.128253978511054],[-99.18017596357743,21.12727507139431],[-99.18096964362132,21.126672036331854],[-99.18177501035251,21.126087930443248],[-99.18312635623187,21.124603536535176],[-99.18365431570277,21.12398651626546],[-99.18406211344768,21.122640704928756],[-99.18458707128508,21.122166559919663],[-99.19584137366832,21.121890217654993],[-99.20187389219222,21.11969911711384],[-99.20622540383044,21.118689718451037],[-99.20945663411896,21.115733002001605],[-99.2099854917563,21.114598636747417],[-99.20966364051355,21.113212789842294],[-99.20927105175633,21.109991932870912],[-99.21198455543248,21.108204909258973],[-99.21314895154603,21.1075506286698],[-99.21559959371825,21.106193782958997],[-99.2200159906617,21.10646419513239],[-99.22081532216367,21.106275114513096],[-99.22123753101164,21.10620111765735],[-99.22241939715622,21.105868680029175],[-99.22297209882271,21.10579761739166],[-99.22411216486154,21.105967500402755],[-99.22486136128464,21.106684984367803],[-99.22548226078732,21.107527752316003],[-99.22607005283425,21.107983096417115],[-99.22671825231174,21.108088446608804],[-99.22938157807289,21.107668260879905],[-99.22969382721135,21.107650667068697],[-99.23185888998415,21.108532737383825],[-99.2330642685539,21.111759734011798],[-99.23406977452527,21.112832902862976],[-99.23530762347394,21.112365819375157],[-99.23663257860926,21.11130645737512],[-99.24050473656621,21.107707304903215],[-99.24333523521796,21.10408077114124],[-99.24624193126516,21.10325632196384],[-99.24725997018572,21.10128844609892],[-99.24962091955814,21.102199250699528],[-99.2527966065096,21.104383307107128],[-99.25622442752348,21.10452259532559],[-99.25654683095098,21.104599281436037],[-99.25677768601139,21.104660143939327],[-99.25856282752557,21.106514535759857],[-99.26159020643394,21.109345175156136],[-99.26935624268532,21.11183567984466],[-99.2715944584649,21.113537504426006],[-99.27194594823203,21.114327627834314],[-99.27042890278938,21.11831337523421],[-99.27047127465767,21.11944283229451],[-99.27151215858606,21.120934969052996],[-99.27226744474217,21.121606954941456],[-99.27269248445077,21.121990585259198],[-99.27379190339548,21.12250535453387],[-99.27457057780788,21.12297866379589],[-99.27509122248864,21.123417875199493],[-99.27672241951223,21.12298696033696],[-99.27713785439454,21.12050044278385],[-99.28253190663008,21.12243469781714],[-99.28273287350078,21.12278028438891],[-99.2838885185281,21.126021881198028],[-99.28318214366578,21.12879138400467],[-99.28258317673567,21.130192468978407],[-99.28261654030314,21.13057591482294],[-99.28314835974123,21.131542217461686],[-99.28342587044835,21.1319300029852],[-99.28622704709164,21.130563492384],[-99.28743364599154,21.13236475066151],[-99.28757334288372,21.133591792308607],[-99.28776923510412,21.13503025948171],[-99.29036938085716,21.136922580999],[-99.29266093624659,21.13877139186127],[-99.29303715825881,21.139183029701712],[-99.29346143440836,21.139610264550072],[-99.29389732104647,21.14018177051298],[-99.29410752316596,21.14043165295965],[-99.29483184468359,21.141211316873353],[-99.29671434286263,21.141881010412874],[-99.29761803808935,21.141798298412994],[-99.30061327969293,21.140284072920224],[-99.30121753406405,21.139817735114548],[-99.30322191567842,21.141284134550574],[-99.30336013261706,21.14162745504541],[-99.30402134508148,21.142783711257835],[-99.30425591933101,21.14338737017158],[-99.30506562554643,21.1446165733592],[-99.30581730719251,21.145362636481934],[-99.30689866780227,21.14655351200247],[-99.30850156690303,21.147182967988613],[-99.30922247452514,21.14705102546276],[-99.3122394611512,21.146142144519956],[-99.31858841249931,21.141376371034767],[-99.3228162491439,21.13964284456415],[-99.32421724318556,21.137778069861497],[-99.3242589718397,21.13713901174043],[-99.32428228004324,21.135967041816798],[-99.32488162281953,21.13440472110028],[-99.32634866103996,21.133471276478588],[-99.32883248135579,21.13138208315928],[-99.32949707484818,21.130914424260993],[-99.33310334148257,21.130139090414957],[-99.33346069314473,21.130287688771546],[-99.3342154794176,21.130514683905858],[-99.33550771653415,21.130465751272652],[-99.33649505268744,21.129450683366997],[-99.33688340313296,21.128033250016017],[-99.33864605244105,21.125471922624968],[-99.33961851646467,21.124961372545044],[-99.3411865085921,21.12417021298677],[-99.34154675995347,21.123926919277665],[-99.34195517821792,21.12344851459875],[-99.34217268658273,21.12284200913672],[-99.3424435205959,21.121861523686732],[-99.34266710891717,21.119722600106286],[-99.34267915729095,21.119112522940952],[-99.34283932063204,21.118225968412332],[-99.34297652800922,21.11764472527068],[-99.34365997999339,21.115603414717043],[-99.34387500669862,21.114876624956253],[-99.34360076254512,21.113826547348594],[-99.3432648979641,21.113203618512955],[-99.34294012482923,21.11263136085023],[-99.34233012557723,21.111810823246685],[-99.34185931150529,21.111410714740714],[-99.34115724692816,21.110111007725948],[-99.3413482635122,21.109498376009924],[-99.34174207258292,21.108900615474283],[-99.3428923959076,21.10806928764424],[-99.34316230391613,21.107868662285057],[-99.34395046205844,21.107134256621862],[-99.34483572573055,21.10429617780494],[-99.34513128472582,21.10303991505458],[-99.34663048813633,21.10069573111798],[-99.34834208223941,21.101311331607008],[-99.34858240935682,21.10150663933274],[-99.34936374909665,21.10185142382079],[-99.35110536493448,21.102417035545557],[-99.35351120057686,21.102892040503548],[-99.35491990302,21.10219271598828],[-99.35784832165484,21.099447211566428],[-99.35943490252458,21.101014510353707],[-99.35957566827972,21.102218783262344],[-99.35976227448094,21.102811868164395],[-99.35985869873258,21.103195809317924],[-99.36086372859626,21.104710509409358],[-99.36267185651218,21.10435377761536],[-99.36359826394187,21.103960263125373],[-99.36419314300593,21.10358257790631],[-99.36762676084612,21.10182113680895],[-99.36862730154417,21.101962012471915],[-99.37184421437422,21.10175987539543],[-99.37490428003633,21.099311244285616],[-99.37553091595112,21.098790000930308],[-99.37822633776273,21.099292275469054],[-99.3788355334139,21.101279319201808],[-99.37931182831227,21.101774121754886],[-99.37986195720424,21.10182949611135],[-99.38171931220677,21.10129869626087],[-99.38213982844957,21.101305900702755],[-99.38242989636433,21.101432244330567],[-99.38339049885883,21.10201132996349],[-99.3843077993248,21.10233103802318],[-99.38459903953401,21.102397277380987],[-99.38522628293691,21.102590073409544],[-99.38611328574865,21.102851967818992],[-99.38764250231111,21.10365684430252],[-99.38912883708394,21.103682245528205],[-99.3895319248956,21.102843478467037],[-99.38978540158104,21.102364010853535],[-99.39024536444998,21.1014592879946],[-99.39078400231335,21.100985256104025],[-99.39351632161112,21.100835643440632],[-99.39736665951062,21.102003281180373],[-99.39747747348508,21.101523640444157],[-99.39745426598392,21.100723534711733],[-99.39686379563017,21.098879249135734],[-99.39892395889922,21.09622991803741],[-99.39936710162704,21.09406463856152],[-99.3992888695044,21.09385969381856],[-99.39884734191514,21.092939605631955],[-99.39847768263348,21.092053635879097],[-99.39830892150059,21.09165487986263],[-99.39849641900105,21.0904590811798],[-99.39674267331264,21.087269529737284],[-99.39580241089237,21.086891088633422],[-99.39514705455349,21.0862804237629],[-99.39464637006415,21.08567182642753],[-99.39443048699275,21.084586561293236],[-99.39450044443896,21.083844768287406],[-99.3947381340094,21.08305422367647],[-99.39487510478136,21.08122291758798],[-99.39456186176164,21.080422413064184],[-99.39223939675344,21.079525808416236],[-99.39135119999969,21.079956437100407],[-99.38895216400084,21.07951957883529],[-99.38864751487182,21.078028971618096],[-99.38822982134946,21.076883536257128],[-99.38943140790178,21.072632208261325],[-99.38950698888289,21.071850817534823],[-99.38767320489495,21.067827233203502],[-99.38472390719386,21.067609463524207],[-99.38312126181995,21.068490044063537],[-99.37617971938016,21.073200935330306],[-99.37295241406622,21.073475566358468],[-99.37149204949907,21.072756242309993],[-99.37038188638672,21.071927798275908],[-99.37002742953041,21.071636981737583],[-99.36845580020531,21.070676371198545],[-99.36801046645189,21.070336343177132],[-99.36636559965109,21.067190878972156],[-99.36668232241243,21.06446773000431],[-99.36892653693934,21.06081419051577],[-99.37333244520914,21.06217632159337],[-99.37465789332225,21.060637718075725],[-99.37525477293423,21.06039388741624],[-99.37623378765232,21.05988778525233],[-99.37670770614443,21.059380377747175],[-99.37689885749376,21.058996858742148],[-99.37709407993833,21.058156281020956],[-99.37712774604142,21.057048634942817],[-99.37642925593042,21.055686809099257],[-99.3758945686605,21.055468912188417],[-99.37556969960224,21.055397541397042],[-99.37231492299361,21.055987015574033],[-99.36845623099379,21.050626763392188],[-99.36821334040508,21.05019494438477],[-99.36807785638092,21.049708260187344],[-99.36761865232268,21.049339637603282],[-99.3649770601595,21.049350242776768],[-99.36438912739197,21.049385472508618],[-99.3640151585343,21.0488606405915],[-99.36390120677936,21.04850930710205],[-99.36382942787378,21.047978913500287],[-99.3647581990279,21.043987999902868],[-99.36312474630114,21.042130745025872],[-99.36386226581595,21.040254859349204],[-99.36503934040616,21.039254296497973],[-99.36606458297427,21.03860274081177],[-99.36661268372615,21.038130680257893],[-99.36742566400125,21.036840815742607],[-99.36715155327897,21.035535617011817],[-99.36633416395722,21.033962999577],[-99.36816040982535,21.028056440521084],[-99.36820004870333,21.02664663040622],[-99.36865708462761,21.02427873157683],[-99.37400522782434,21.02446889321368],[-99.3752177583105,21.024241326272715],[-99.37608610629871,21.023821246691853],[-99.37697354447408,21.021676805232914],[-99.3772727728686,21.02070362134623],[-99.37981641060662,21.020110378513948],[-99.38161867456085,21.019497012810973],[-99.38455424486949,21.017879346933682],[-99.38508689026429,21.016080420638275],[-99.3847467352723,21.01481043920961],[-99.38459648261897,21.014336572384366],[-99.38399474945965,21.01359805821454],[-99.38334173613038,21.013136561964075],[-99.38291856719502,21.01141541438176],[-99.38398182217537,21.010284039701787],[-99.38418601754654,21.00947312587556],[-99.38422247374479,21.00896445978998],[-99.38389853971739,21.007482650032557],[-99.38418731043504,21.006546147681547],[-99.38564007780968,21.005756615315477],[-99.38768198801824,21.005231793260123],[-99.39003525118784,21.002726721936085],[-99.38982973708954,21.002112404186846],[-99.38951096143256,21.000611419236122],[-99.39046712644392,20.99951390849253],[-99.39138861904996,20.99870900892489],[-99.39210358734368,20.993973180014905],[-99.39209262622722,20.992917559598197],[-99.39331742340192,20.99091664793093],[-99.3930337153572,20.98947526166762],[-99.39166453841455,20.987831020877138],[-99.39123875399787,20.98699176719407],[-99.39137904382784,20.98635841136604],[-99.39334768648598,20.982613817843287],[-99.39578329062903,20.980071544317923],[-99.39568906911728,20.979198263154956],[-99.39576053220082,20.97550238703178],[-99.3946858930272,20.973495713121338],[-99.39428998902429,20.97286115003874],[-99.39367494257095,20.97194382027601],[-99.39302503779498,20.97095613700452],[-99.39216364159591,20.969665397950166],[-99.3912453630889,20.96906784173325],[-99.38871295745889,20.967016367157953],[-99.38834961131124,20.966573467730598],[-99.38827011621657,20.96581556647152],[-99.3885608953695,20.965267596271303],[-99.39075544591356,20.96393722016495],[-99.39181725665827,20.961859851276472],[-99.39193660966674,20.959686984272082],[-99.39246338360533,20.958673465815934],[-99.39269267812767,20.95843068508225],[-99.39270121548077,20.957989612160986],[-99.39254893551197,20.95712328921246],[-99.39159032768924,20.956243191821045],[-99.39086479103565,20.95492585432561],[-99.39024703597869,20.95365515915165],[-99.39056103690632,20.952155964354347],[-99.39103461032494,20.951644012255883],[-99.39231410782338,20.950541281550557],[-99.393199251711,20.94960024115221],[-99.39372003283705,20.949018765693324],[-99.39523777335592,20.946457491284775],[-99.39606673817588,20.945672002526805],[-99.39688074792963,20.944160349221875],[-99.39961590473644,20.94232244972352],[-99.40104129291797,20.94065843116948],[-99.40240733937162,20.939565607314933],[-99.40357195978487,20.939401110025187],[-99.40478397995417,20.93890678400294],[-99.40607436800741,20.93822946941185],[-99.40660454524755,20.937907285259428],[-99.40724056902616,20.93710371930257],[-99.40753939790176,20.935000847710853],[-99.40715059140331,20.93437666173577],[-99.40674188248158,20.93403399003057],[-99.40590154080024,20.93391252732806],[-99.4045152756687,20.934680646424738],[-99.40431156707774,20.93560383968861],[-99.40321010088763,20.935625370103935],[-99.40218821312692,20.93405267256287],[-99.40318739351761,20.929756376903015],[-99.40605140028543,20.928261007142737],[-99.41005626783681,20.926665124905355],[-99.41498018086622,20.924982062870185],[-99.41530908179703,20.923569303837553],[-99.41445200366655,20.923190706332207],[-99.41363545438998,20.920826792746993],[-99.41447617216761,20.919666565938314],[-99.41381950296363,20.915766252287426],[-99.41327513676617,20.914946638985214],[-99.4124384306046,20.913636062401622],[-99.41247217352048,20.912884658849407],[-99.41249284696886,20.911808085632742],[-99.41260232232514,20.91000429565844],[-99.4117732948684,20.907039055139876],[-99.4136996279837,20.904780069787705],[-99.4154444939777,20.904427406482228],[-99.41797263495056,20.903637135809845],[-99.42134555426782,20.90310381800697],[-99.42641032395039,20.901450031486263],[-99.42717997029058,20.901218590891347],[-99.42853704727861,20.90132255847027],[-99.43066254790665,20.901385579200394],[-99.4315702460496,20.901509740910114],[-99.43253622883384,20.900982151699793],[-99.43298861821438,20.9006772929082],[-99.43342919882241,20.900358624007197],[-99.43380772470948,20.89949563431003],[-99.43477901606616,20.899321987806672],[-99.4349869830304,20.896766191180916],[-99.4343727017112,20.894798261481583],[-99.43447894497791,20.89378211763585],[-99.43601671323455,20.888572015050954],[-99.43691159369769,20.886216091886126],[-99.44110296332889,20.881934563981304],[-99.44204166789444,20.880927279193656],[-99.44080719295937,20.878952968451017],[-99.44002752062545,20.87781422507851],[-99.44052953133615,20.871586991720392],[-99.44076548612446,20.871489441853555],[-99.4423473772917,20.871304445501437],[-99.44299884807009,20.87054923653693],[-99.44551651274946,20.864538955366186],[-99.44604256574974,20.86352248261329],[-99.44650145600792,20.860950195029147],[-99.44835620324096,20.858970129852082],[-99.44817298359732,20.856677407005293],[-99.4454583527617,20.85450048508983],[-99.44811416894817,20.852690472198617],[-99.45135557298579,20.856854973774603],[-99.4535211485616,20.8583440604433],[-99.45680728687262,20.85605197907256],[-99.45689447593861,20.852426874516652],[-99.4555036286473,20.84997478049297],[-99.45918472449927,20.84793355441434],[-99.4616923463642,20.848290590955287],[-99.46302558634574,20.848608213177158],[-99.46592061432528,20.847612350866655],[-99.46925041776609,20.844662718292568],[-99.47257191831181,20.843692522430956],[-99.47644903506796,20.841782742088924],[-99.47684107060871,20.841205713542536],[-99.47733891117457,20.84077673757315],[-99.47822008913607,20.8402350134603],[-99.47871057918519,20.83955356685891],[-99.48105329405138,20.839303632390227],[-99.4816629690738,20.839474178663693],[-99.48344502903541,20.83823676047939],[-99.48415049764668,20.837799280465788],[-99.48535456261021,20.83533765372937],[-99.48607545943435,20.834459810823432],[-99.48864630958246,20.83283725654087],[-99.48902944958121,20.831826818340744],[-99.48894177095207,20.83148230148089],[-99.48756420610596,20.82940628164522],[-99.48610303646672,20.827805206103903],[-99.48528727298799,20.827174228503452],[-99.48481909168015,20.826793382282574],[-99.48469117626979,20.826407939072567],[-99.48526800159675,20.82122260584208],[-99.48530117587057,20.8202200243702],[-99.48511228050137,20.817983213433365],[-99.4871958513707,20.81603120142495],[-99.49158094793393,20.81217765101144],[-99.49339413394432,20.810392296549992],[-99.4937517421398,20.806757095083412],[-99.49574278692131,20.80553849731973],[-99.49843654007196,20.805692576060096],[-99.49918190201271,20.805303326867374],[-99.49791023819051,20.802363152967303],[-99.49277745973342,20.802188827671046],[-99.48883345523956,20.801942853732783],[-99.48852521670028,20.799811707104368],[-99.4903471455487,20.79610218464859],[-99.49665567160008,20.790952090102394],[-99.50087665928214,20.79338506563579],[-99.50371407348939,20.79411880013629],[-99.50222854650946,20.787462300822426],[-99.50017444940079,20.7852046918631],[-99.49773099008473,20.784957644414646],[-99.49638738603994,20.7831494016678],[-99.49737438722354,20.780264442798853],[-99.50136616755452,20.779004800541315],[-99.50192329381673,20.77508474965299],[-99.50637747112535,20.7712411920553],[-99.50322282791262,20.76717214558431],[-99.50415662515286,20.765359891355672],[-99.50946911155353,20.765780864896158],[-99.51059573004153,20.764711689418903],[-99.51160548482522,20.763440436195538],[-99.51806709137799,20.759963806698693],[-99.51925293066404,20.756586016853362],[-99.52077861142567,20.755705852498465],[-99.52143009378557,20.755157919852877],[-99.52153399622136,20.754752481031517],[-99.52272831627437,20.75431940176628],[-99.52446747501716,20.756519945283117],[-99.527133407902,20.753681561423093],[-99.52911339218628,20.751689936926823],[-99.53262766433642,20.750444956199033],[-99.53602877305872,20.74997943146883],[-99.53807110567118,20.749204052839957],[-99.53959732107563,20.746172392609537],[-99.54550635939313,20.745265126239246],[-99.5456677899578,20.74341112351368],[-99.54534063339958,20.741779631576605],[-99.54832920501087,20.736536838824122],[-99.54802906759272,20.735672974604313],[-99.54658416438593,20.732497158856688],[-99.54764616403116,20.73021095103968],[-99.54699907511741,20.727745350663724],[-99.54483375245695,20.72684011784844],[-99.54443273662406,20.726222980584282],[-99.5445248417222,20.725665952495945],[-99.54507693627448,20.724869681341488],[-99.54535882772467,20.724613960467536],[-99.54550064378702,20.72357690335997],[-99.54504982513902,20.72264994352713],[-99.54476337609952,20.722493936580406],[-99.54352374025461,20.72159565678976],[-99.54317959998383,20.721165982827415],[-99.5434703425201,20.720423910027023],[-99.54347842363393,20.71998006769809],[-99.54337680198063,20.71973574762353],[-99.54367160147814,20.71890301839113],[-99.54057158523409,20.717045955559797],[-99.53966495512344,20.716001060127383],[-99.54000304697695,20.71464568602306],[-99.53969470543825,20.713708540550158],[-99.53924303480704,20.71349315553175],[-99.53814590623045,20.712850024080183],[-99.53618721868543,20.71186579427018],[-99.53513190734787,20.707219654347057],[-99.53328732037244,20.705801204581405],[-99.53315542810913,20.70576391528499],[-99.52950635301477,20.705087902396485],[-99.52837786167447,20.705110430388913],[-99.52759039517099,20.704280597381967],[-99.52594401194722,20.702575533680374],[-99.52502080948233,20.702576987460247],[-99.52135309900035,20.701085118069898],[-99.51958720003302,20.69946309513648],[-99.51795571791251,20.698004839265423],[-99.51733299106587,20.69752804916311],[-99.5166007426169,20.697370964948277],[-99.51550592067474,20.696484465943968],[-99.51168723175846,20.690908031716674],[-99.50853245373236,20.6885504802288],[-99.50879729516862,20.68663321704304],[-99.50608706029243,20.684980884626384],[-99.50578790402608,20.684736713375344],[-99.50585986386233,20.680451925923933],[-99.51014666411413,20.680091109862644],[-99.51073524888324,20.678101484557033],[-99.50720385442276,20.67449264149252],[-99.5033810891428,20.67179408262956],[-99.50058678303503,20.672905515067384],[-99.50061613284811,20.671320671322746],[-99.50078076476814,20.671149303557968],[-99.50366528004241,20.669979245952163],[-99.5043466441154,20.667927108988522],[-99.50239073593463,20.666319947865247],[-99.50161395307117,20.66350172448614],[-99.50167659852508,20.663111526001217],[-99.50171384049673,20.662531535262758],[-99.50219929494676,20.65906299842277],[-99.5056417876765,20.65913156636077],[-99.51190851111426,20.65903728607782],[-99.52341150126045,20.658143447352472],[-99.53100823660151,20.654888054463356],[-99.53663879446589,20.649370563407672],[-99.53857417317647,20.64352335338839],[-99.54444244744019,20.64449630907808],[-99.54821747640119,20.64425320629772],[-99.55121721531987,20.643051257528725],[-99.55599879913046,20.64349998089085],[-99.56533223381632,20.640575258157185],[-99.56679978518224,20.63962236612275],[-99.56779230998501,20.6364177777034],[-99.573464787626,20.63514182249952],[-99.57467565005203,20.63130566860275],[-99.57862426757163,20.628747361443743],[-99.57836125448637,20.624876425032653],[-99.578182335061,20.62249570161589],[-99.57849035542102,20.619156040397172],[-99.58051629418844,20.617673292291897],[-99.5831410147373,20.618263220080678],[-99.58783939026102,20.620898129168722],[-99.59007189363695,20.62025423676357],[-99.59108341250703,20.617971178420987],[-99.59380694361283,20.61626342970169],[-99.59256014666545,20.61094032618513],[-99.59832947775095,20.607665907139165],[-99.60423346006252,20.606153250067052],[-99.6062411534457,20.60648757499922],[-99.60764507597054,20.60623352261956],[-99.6090093437046,20.60114549367546],[-99.61217377365102,20.599806088292723],[-99.61291447166269,20.594965106557083],[-99.61643791182843,20.5944249872025],[-99.61951127974203,20.59140696112314],[-99.62412216156389,20.59434662285213],[-99.62385965231078,20.594893608620964],[-99.62260111412525,20.596611122652575],[-99.62300990300565,20.599247619062965],[-99.62491024565065,20.601162969470465],[-99.63078353499446,20.602875381704337],[-99.63162282538383,20.60308687078924],[-99.63413160663765,20.605478177027237],[-99.64046317308464,20.604414696249137],[-99.64127843458346,20.60434851672261],[-99.64166091148536,20.604376550904306],[-99.64208087363278,20.60432692410211],[-99.64387921941807,20.60341076798312],[-99.64468073659361,20.603027428077894],[-99.64863400698084,20.601321304537123],[-99.65047947803436,20.602259751405427],[-99.65525967819673,20.60202726059623],[-99.6557741759525,20.60194219945498],[-99.65661252020732,20.60193242235283],[-99.6567569157827,20.60193917962954],[-99.65838659678963,20.60143584008722],[-99.65981455156123,20.598396225360943],[-99.65982180336664,20.598255731883967],[-99.65988317809558,20.59818864029569],[-99.6599080508397,20.59800419508423],[-99.65997165509754,20.597808438935317],[-99.66006481262457,20.597714054830192],[-99.66169949982742,20.59538800143605],[-99.66173485776454,20.595293296052034],[-99.66180360077317,20.59521781269757],[-99.66180579922349,20.595090848809946],[-99.66259121122067,20.5945189428424],[-99.66288519620343,20.594231473559205],[-99.6642993668616,20.59364936344798],[-99.6690119858743,20.593126832352027],[-99.66911228476556,20.592478640172487],[-99.6691642716059,20.591838780099295],[-99.67076415413936,20.590121015945613],[-99.67315664704859,20.58894374770398],[-99.67375086321226,20.58870109955899],[-99.6741359676356,20.58857431518686],[-99.67535094869999,20.588364952139784],[-99.67716366928244,20.588407352224465],[-99.67918496050243,20.58920581875077],[-99.6799918145262,20.589061634222844],[-99.68051320521579,20.58843119072469],[-99.68058817756673,20.58813241626831],[-99.68042920453229,20.587713287209397],[-99.67990243188012,20.58697503240262],[-99.67876629026182,20.5856938425149],[-99.68301194594102,20.58311563354772],[-99.68371620721041,20.58071105577011],[-99.68384189153744,20.580403414923637],[-99.6840102364693,20.579854904],[-99.68415075319058,20.57952481088273],[-99.68440040394017,20.579149887740243],[-99.68497633433299,20.578986859813938],[-99.68624509525313,20.57956798519109],[-99.68697357204883,20.580059254546597],[-99.69050311386974,20.58138399951332],[-99.69470006461694,20.581187205594745],[-99.69606961994157,20.578761071319377],[-99.69485862199832,20.57832093829478],[-99.69470170115551,20.578202906222316],[-99.69440796204202,20.577917821834205],[-99.69421973723001,20.57765871320902],[-99.69432528236541,20.576131264204037],[-99.6955010166198,20.574967552293344],[-99.69641295029828,20.57444502258886],[-99.69786162312164,20.574643249617793],[-99.69993381557987,20.575558426306543],[-99.70030326053671,20.575357638929972],[-99.70054921534614,20.575338108464166],[-99.70395013264391,20.57628632841687],[-99.70800461772194,20.579592023657256],[-99.70927421871687,20.58098143114728],[-99.710113755323,20.58117718055263],[-99.71094123165727,20.58123214179028],[-99.71116984324834,20.58124181436574],[-99.71363812061207,20.577264365474434],[-99.71392463067161,20.57712523042767],[-99.71465836462846,20.57688395426237],[-99.71527987570306,20.57672830007226],[-99.71640613907908,20.576628403567668],[-99.71851525789191,20.577077286687313],[-99.71981517590007,20.57696125745946],[-99.72072672614746,20.57674189072901],[-99.72182561817044,20.5764085314475],[-99.72297038911921,20.576210215579238],[-99.7236906029745,20.57619830551198],[-99.72428920126697,20.57611540777765],[-99.72628076881938,20.575823701566605],[-99.72685626238871,20.575682620839075],[-99.72991929433749,20.572675340040462],[-99.72997369197782,20.572304238664913],[-99.73017351767095,20.571160299507085],[-99.73032193726067,20.570639227309243],[-99.7308244851834,20.56939208248184],[-99.73125882855311,20.568190976972573],[-99.7317791464074,20.567748580153477],[-99.73384858667049,20.567256109348364],[-99.73446095363119,20.566349618796608],[-99.73483772719243,20.565707215888324],[-99.73827394662106,20.56190768795102],[-99.73840905871918,20.560647682492686],[-99.74590334091181,20.559274580338922],[-99.75324390232015,20.563002324524803],[-99.75626537824735,20.56136200050844],[-99.75822699471456,20.56198674018532],[-99.76127118104318,20.560926576697113],[-99.7684190067107,20.559814866652005],[-99.7696603637255,20.55754548858414],[-99.77344977076058,20.55990382156051],[-99.78080714232254,20.558707368741068],[-99.78312574770223,20.556580496435913],[-99.78353132544254,20.55471271589039],[-99.78819615396054,20.552182875191534],[-99.79084479943435,20.552314304566266],[-99.79493105387883,20.55110305702101],[-99.80105145060907,20.54772366669414],[-99.80295560314926,20.54547781993938],[-99.80747144476214,20.54470583440343],[-99.81528889002618,20.541628452617033],[-99.82232456931115,20.540809139861608],[-99.82807117949528,20.543007653010193],[-99.838507414493,20.451093844577258],[-99.8436928343807,20.404114323023407],[-99.85951252790119,20.264883678764306],[-99.85789646276265,20.267726580259477],[-99.85785291198965,20.26775400312914],[-99.85570370950421,20.26992600327617],[-99.85443436683306,20.269554995304645],[-99.84855499806025,20.27209588322887],[-99.84438494438297,20.276331282798424],[-99.84598212363244,20.277763079997953],[-99.84188959621832,20.28188142253805],[-99.83165885104108,20.273169054470145],[-99.80803196452183,20.252550457298298],[-99.80497062825248,20.249836691154087],[-99.79722696180039,20.243061446102843],[-99.79612541498273,20.242132867547127],[-99.79509627066835,20.24208710582917],[-99.79041830445863,20.23799420070054],[-99.79052118192936,20.23731455854181],[-99.78806795297231,20.23003492888006],[-99.7914828163025,20.230961438186],[-99.79151710920644,20.23073490569294],[-99.79353876805862,20.23140011793805],[-99.79550089613616,20.22878268253504],[-99.79450149650472,20.227161608727272],[-99.79236686023938,20.2255311144865],[-99.78756902989107,20.221982164803194],[-99.77746225313052,20.212716438487007],[-99.76702390005403,20.202480059950062],[-99.76004284066863,20.196817930728912],[-99.7513204958882,20.188910797437302],[-99.74750930452143,20.1869546666166],[-99.74438678122533,20.183402989322474],[-99.74045943554671,20.18005315591074],[-99.74053416167334,20.17952326320892],[-99.73971782639956,20.177674917757656],[-99.73898012305006,20.177506172147503],[-99.73580522628652,20.177403066358124],[-99.72918512430783,20.172047646346357],[-99.72839746084787,20.17180251046375],[-99.72321097840592,20.17048323870239],[-99.72009553005489,20.167362445388278],[-99.71937184497432,20.167137985861586],[-99.71464241004327,20.166323478619688],[-99.71407255452982,20.166257043316705],[-99.7117110224894,20.166226737332863],[-99.71068353456496,20.16622707415462],[-99.70903826516576,20.167011910773795],[-99.70745800668891,20.167828006998548],[-99.70488757957952,20.170485460192765],[-99.70423294265635,20.17127731959374],[-99.70201314597051,20.17227209575742],[-99.70126737306316,20.172602485906793],[-99.69289938579686,20.171778849203747],[-99.68208235663326,20.170588726758524],[-99.68053882822772,20.16932479422104],[-99.6776845693584,20.16683823323143],[-99.6769489027347,20.162470467038418],[-99.67410525426874,20.167548318006027],[-99.67211165006222,20.172825148556853],[-99.66939736714221,20.179298758881828],[-99.66692132459127,20.179715243269243],[-99.6658105380821,20.179906726675256],[-99.66252226933267,20.18046120098387],[-99.6597266091834,20.180820542969514],[-99.65869331390081,20.176235646001146],[-99.65807085274275,20.175315936805077],[-99.65675987215678,20.169121468124274],[-99.65789676976493,20.168038896167957],[-99.65507723377499,20.16308990380503],[-99.65319105850949,20.163490638888504],[-99.65086307043589,20.16378648943777],[-99.65063137711593,20.162774828119097],[-99.64594313668493,20.16337505968471],[-99.64099046286861,20.164229192235553],[-99.6391760949436,20.158731653782297],[-99.63612190255674,20.158157146819917],[-99.6356683304067,20.155916164755467],[-99.63565778474128,20.155324919430768],[-99.63483675115305,20.15153224905015],[-99.63201178649405,20.146794483636427],[-99.63060240630045,20.145694444464652],[-99.62937881120615,20.145911223580924],[-99.6125432413337,20.159360778055827],[-99.61306073745413,20.159790292399748],[-99.61172825788054,20.161469342304713],[-99.60842270139466,20.162781086761242],[-99.60223275943707,20.16791867232837],[-99.60143496405976,20.166902862243262],[-99.5995608766491,20.16967337108423],[-99.593287140408,20.169020926686528],[-99.58675485188093,20.16728521181625],[-99.58360154944035,20.16444009725467],[-99.58260259933246,20.16322000660074],[-99.58260703436127,20.16444380507096],[-99.5814032354067,20.16199749781532],[-99.57652179948411,20.162836012199875],[-99.5725614168797,20.16425687749654],[-99.57262701747129,20.16907296290026],[-99.56857310923351,20.169506887509442],[-99.56786407006086,20.169307665253484],[-99.56368726750378,20.169427720418582],[-99.56212194305323,20.169145344584933],[-99.55921191806289,20.170674445722],[-99.55066462805371,20.171391686948255],[-99.55120745080075,20.17051979826698],[-99.55019156825108,20.165650853795057],[-99.54828755650192,20.163131735972627],[-99.54543423034062,20.163286267551257],[-99.54216940833419,20.163741387254618],[-99.54103895563816,20.163914391001242],[-99.53469917185953,20.163935022928115],[-99.53391314590135,20.162131137889617],[-99.53181803948962,20.16377832154882],[-99.53031655960638,20.163700327705612],[-99.5290415669246,20.163606713982233],[-99.5284957765096,20.164591358084294],[-99.52569616521748,20.170682013870817],[-99.52592659696194,20.173295567528385],[-99.52314432765888,20.174792859466834],[-99.5174994112881,20.175689893612628],[-99.5122402537296,20.175100174582212],[-99.51172112538455,20.1739915199679],[-99.51095113701729,20.172374742328486],[-99.50183085226729,20.15328658818828],[-99.50726929367005,20.150769804757374],[-99.51361553323989,20.149557616705238],[-99.51546623420631,20.15086120127779],[-99.51634083558605,20.14877281622711],[-99.51869826106747,20.148298837696416],[-99.51812819717975,20.145666665894282],[-99.5152425145128,20.142641332381345],[-99.51151491138671,20.14074494826565],[-99.51132728329105,20.14040908248188],[-99.50692972264903,20.133447444950207],[-99.50131221750576,20.127003323694225],[-99.4968781759809,20.120087035117024],[-99.49708962259717,20.116184003353624],[-99.49491785326632,20.110878989730736],[-99.49259856884561,20.110904078352405],[-99.48775306548617,20.106908291510194],[-99.4869587031049,20.10516721799638],[-99.48685974490502,20.10496043126483],[-99.48655992757807,20.104359810594474],[-99.4861283729652,20.10358196820738],[-99.48579617272378,20.102908813930526],[-99.48536079932342,20.102296382141105],[-99.48477574234818,20.10155323706516],[-99.48427438284875,20.101255468362126],[-99.48349685877628,20.10096976938354],[-99.48364669190369,20.094915463734708],[-99.48100856245424,20.082197887631764],[-99.46994847109517,20.07341499234991],[-99.46461601692647,20.069148716134407],[-99.45975870319523,20.06545733565423],[-99.45833543504983,20.061465663032777],[-99.45859759718167,20.057787452445496],[-99.45868802470801,20.056721012182607],[-99.45821436515308,20.055029536027234],[-99.45216462240063,20.04605496134934],[-99.45166862162728,20.045547422790378],[-99.4484487739469,20.04218710840155],[-99.44834269364583,20.040643169773205],[-99.44761194503832,20.037291441321088],[-99.4456006037941,20.031586389865993],[-99.44476922401822,20.02913490486219],[-99.44331808164958,20.02479490338635],[-99.44215240538125,20.021027837151394],[-99.44072103697408,20.013207140250245],[-99.43946774459192,20.01253710653964],[-99.43935721863653,20.0089534601708],[-99.43870809401307,20.008339514588613],[-99.43877572189706,20.0076988916515],[-99.43889348965382,20.007467022561002],[-99.43848976539067,20.00481024036054],[-99.43841931257174,20.004465609127124],[-99.43790116293872,20.00389794647583],[-99.43737154102973,20.00304706555795],[-99.43677671807023,19.99982427057273],[-99.43798927765926,19.99755316658576],[-99.44195088220488,19.995507469739493],[-99.44215581467489,19.99524820697644],[-99.44549556655159,19.991227893431414],[-99.44360584097251,19.988839319060048],[-99.44413155436035,19.986760194313035],[-99.44429136466908,19.98637071318069],[-99.44795936435287,19.98166661840196],[-99.45458420985545,19.981219795483014],[-99.45473181760372,19.9755303304147],[-99.45172954267849,19.9745020588407],[-99.45235741073685,19.97332485371902],[-99.45343074590693,19.97296948556334],[-99.45219322103566,19.97069942918523],[-99.45079701584649,19.96690174787858],[-99.45159491050856,19.966361461269685],[-99.45017638790944,19.964793664010756],[-99.4514847115118,19.963329365692232],[-99.45196910439057,19.96333236168607],[-99.45465649319499,19.964103519002776],[-99.45708320321296,19.96565565735108],[-99.45947976513486,19.966402572747995],[-99.46264760568351,19.96479137903674],[-99.46273416881144,19.96471940417814],[-99.46311997361431,19.964294905584723],[-99.4706421672326,19.962904326731405],[-99.47237994453411,19.96321496837038],[-99.47372831432682,19.961629992694554],[-99.47756279778702,19.96086537253325],[-99.47794320827057,19.959819828728257],[-99.47801438116733,19.959366768441555],[-99.47713848701801,19.957860109566923],[-99.47687851186078,19.95654454288251],[-99.4774262417987,19.955595510818227],[-99.47723740590965,19.954790923547478],[-99.47362257283396,19.954443932704976],[-99.47497327112308,19.948580245902065],[-99.47505086297735,19.944105523555436],[-99.48398147119696,19.90517652276361],[-99.47990048909867,19.90411889136567],[-99.47743693363248,19.89827498822683],[-99.47324720686646,19.89772511955249],[-99.47155673061548,19.898886902616766],[-99.46537707071997,19.89596710051194],[-99.46309764813788,19.892564637305327],[-99.46055189084416,19.89257124179062],[-99.45023921285122,19.894835417541685],[-99.44877012977071,19.89667497284711],[-99.44559148557681,19.896831474209534],[-99.44118259229134,19.899202058512287],[-99.43593319417079,19.903129157737112],[-99.43718818288187,19.89968780577601],[-99.43603430274464,19.896146233194486],[-99.44520828491665,19.88432105648326],[-99.43707977035331,19.878921521799157],[-99.43269220174108,19.875256618721608],[-99.43203252816647,19.874460331108878],[-99.43129088509772,19.873725284063937],[-99.43041452969658,19.87087918047615],[-99.42678139582256,19.87499702242019],[-99.42613686734165,19.870713244848957],[-99.42390248637292,19.867837517274666],[-99.42172388230045,19.861067444819128],[-99.42098756618844,19.855122368587615],[-99.41499177585791,19.85052662892042],[-99.40262091997823,19.855246575647755],[-99.39175175692304,19.85991753427527],[-99.38832303175411,19.85740544935385],[-99.38024794966373,19.855892957215758],[-99.37324990988105,19.851541848138083],[-99.37513378254664,19.847635953538884],[-99.37444627859105,19.84668855546721],[-99.37689153162887,19.845249379467532],[-99.37524631579737,19.843582838958923],[-99.37429330075378,19.841984682700343],[-99.37415017341516,19.83980771935444],[-99.37426530940053,19.838676111216728],[-99.37629317472403,19.83662358316309],[-99.37871270365582,19.835249315217084],[-99.38103874668423,19.832035118175554],[-99.38227059769423,19.827955840761035],[-99.3815439237157,19.821133650474223],[-99.3831761540269,19.820721073363245],[-99.38492476285086,19.816761044340126],[-99.38496951687972,19.8166583386743],[-99.38661464428066,19.81324673807228],[-99.38665534747713,19.81051439137798],[-99.3863322027729,19.81038219639197],[-99.38609983999214,19.80946431101006],[-99.38610187145514,19.80934785424796],[-99.38644242502579,19.804442629655398],[-99.38409481439999,19.801961178221916],[-99.38330853974378,19.801332071411878],[-99.38274516062131,19.799235651676838],[-99.37754043204802,19.79645339366158],[-99.38027698082362,19.794911620165124],[-99.38063311473672,19.794441285867947],[-99.38349553887474,19.79375805296553],[-99.38386696081369,19.79382555360189],[-99.38889703027871,19.791052288124206],[-99.38929258103116,19.788373615594367],[-99.38957077278258,19.788024696910384],[-99.38961793764071,19.783795490296995],[-99.38538613801961,19.783294639585677],[-99.38512884884102,19.783493057227133],[-99.38117186701135,19.78405439483447],[-99.38442536504147,19.779118313214212],[-99.38788359226453,19.77791317893582],[-99.38663938781258,19.776127818202383],[-99.38577038364991,19.77707024317351],[-99.38244521712932,19.771204054739655],[-99.37648082581018,19.7755936523003],[-99.3748228877975,19.775411643963196],[-99.37386756903163,19.77637865664559],[-99.37333297866223,19.776677288322105],[-99.37389846979102,19.77795233733923],[-99.37207920690872,19.78006538510658],[-99.37061021042354,19.781844585952058],[-99.3674416527823,19.780092929048465],[-99.36609067218285,19.780433425532635],[-99.36513888284429,19.78053529841145],[-99.35779094754787,19.78156825729934],[-99.35580978173499,19.780101217603203],[-99.35510624121684,19.779321899227682],[-99.35497761878293,19.778018612481617],[-99.35135994545249,19.776424741073242],[-99.3507630899569,19.77676721565632],[-99.34456044359257,19.779454525710094],[-99.34451727388955,19.779907842719638],[-99.34348031066475,19.78050214379465],[-99.34378054636795,19.781044494699813],[-99.34385730988993,19.781440249110403],[-99.34347059753219,19.782359880339698],[-99.34266984632546,19.782373879354054],[-99.34304211853708,19.782784785290403],[-99.34326485063315,19.782940002885084],[-99.34577950164135,19.784449285999358],[-99.34599881267025,19.784682918311432],[-99.3455610962983,19.78532489426277],[-99.34498819017801,19.786053994262886],[-99.34581470666728,19.78743645399004],[-99.34610055659039,19.78762398171085],[-99.34612356020006,19.787864187898776],[-99.3454432555543,19.78829206277493],[-99.3451103662984,19.788585191734626],[-99.34444314402549,19.789291481585053],[-99.34457568626021,19.78984992168398],[-99.34443711202942,19.79034349468475],[-99.34434022622395,19.790918143610725],[-99.34431888805068,19.79120888946835],[-99.34448148913037,19.791749422773364],[-99.3445744492139,19.7922355377778],[-99.34555885532768,19.793483337664327],[-99.34537355543057,19.793954002009343],[-99.34506085937511,19.79434123199877],[-99.34495540838975,19.79514458605314],[-99.34285785179094,19.796116365240607],[-99.34276933326964,19.79605249521893],[-99.34157090998787,19.79548061456785],[-99.3409943916763,19.794502412996394],[-99.34030937796274,19.794316245614425],[-99.34005269845102,19.79542459920947],[-99.33902223810685,19.800974489559223],[-99.33791682976386,19.801590911050482],[-99.33781254985098,19.801545775554644],[-99.33626608891223,19.80148375746245],[-99.33572869998818,19.801018985109238],[-99.33562599284426,19.800423845759894],[-99.33609753811783,19.800406191986667],[-99.33623461133516,19.80017905243062],[-99.33551024097972,19.797673735407272],[-99.3321727611355,19.79688793591157],[-99.33134558985807,19.796701730048767],[-99.32837346894513,19.795538595844903],[-99.32636404853179,19.793214107221445],[-99.32388130209347,19.792888248115844],[-99.32258290929133,19.794236583445638],[-99.32314891309807,19.795280277267125],[-99.31840701700014,19.796345176159434],[-99.31559406311237,19.79555872694965],[-99.31386132916174,19.79634528354643],[-99.30660052853841,19.797693699992124],[-99.30782491128781,19.799302957827877],[-99.30886064032404,19.801420713834545],[-99.31267425082808,19.805228174083652],[-99.31146616019964,19.8088107473601],[-99.30815033507326,19.81273500462663],[-99.31044243690872,19.814702194732888],[-99.30590268164008,19.82059432788867],[-99.30313021996176,19.826660989912114],[-99.30031583111099,19.82844386563204],[-99.30029276004706,19.828508309488313],[-99.30114565247032,19.829152660493946],[-99.29694378981571,19.835222251004154],[-99.28632141122785,19.83715829171041],[-99.28584671474584,19.839633552395526],[-99.28134245211112,19.84258907206629],[-99.27871892081936,19.84040939540347],[-99.27839195390317,19.8416905583195],[-99.27815911323944,19.842231922611916],[-99.27678088293925,19.848060456392375],[-99.27641237080303,19.849531217833544],[-99.27602520582946,19.851486866946743],[-99.27352529242279,19.85357598133686],[-99.2709708670551,19.858564955529175],[-99.26895549519043,19.85971206237872],[-99.26342101218847,19.859064506062907],[-99.25469560092449,19.85908455015715],[-99.25287994053656,19.860641661106285],[-99.24796082107503,19.859785439133134],[-99.24566931123928,19.86952909865522],[-99.2414303453661,19.875262110767892],[-99.23637239728725,19.875083142531253],[-99.23440952548981,19.876259246669065],[-99.23399658570861,19.87579723893583],[-99.23216532519939,19.87673887057673],[-99.2293224398399,19.874033023999516],[-99.22829969450669,19.875046801612484],[-99.22066886185843,19.884236048474634],[-99.21940660440237,19.886980635718487],[-99.21828791501548,19.889070352215413],[-99.2174670920387,19.891423629506676],[-99.2239252184869,19.90199840096693],[-99.22076737965699,19.902741752528186],[-99.21949193043127,19.9050502800838],[-99.21915789856183,19.911390245529617],[-99.21498311389081,19.913053300508466],[-99.2155505049285,19.914702654519715],[-99.21356212591235,19.91510192792765],[-99.21263593641316,19.91489688396024],[-99.2107290237679,19.91447472288189],[-99.20560277411835,19.927500739525897],[-99.20701872414008,19.92907256904539],[-99.20688071194462,19.932131747627125],[-99.20941735684454,19.931777881150765],[-99.21151908206656,19.92428838420335],[-99.21773897457473,19.926921041230628],[-99.21967578423886,19.930389184456942],[-99.22604847154116,19.950042081778406],[-99.22776104097318,19.95106812616865],[-99.21539443747906,19.95461440766269],[-99.21315950993414,19.958925249702304],[-99.21501382326295,19.959833664605583],[-99.21387338416662,19.963359049095686],[-99.21406601843512,19.963595866105095],[-99.20891960457072,19.96636975613461],[-99.20853604703541,19.96851820340339],[-99.2080039686656,19.968675259088627],[-99.20572703388257,19.969708478987286],[-99.20433815877334,19.97049119011251],[-99.20285439902858,19.971622716177876],[-99.19886849936069,19.977693895494667],[-99.19775036882663,19.978268392841414],[-99.19742698197263,19.98240161158293],[-99.19691905825346,19.984826602876012],[-99.19472516204723,19.985472273334835],[-99.19090823774752,19.984073910690313],[-99.18920571943448,19.984819552384806],[-99.18985890407527,19.9866376601384],[-99.1889437195544,19.989451798692585],[-99.1908111290847,19.99039425624443],[-99.18965983925261,19.99197729231679],[-99.18930052463747,19.99317810890625],[-99.18908820142485,19.99291869735123],[-99.1880749119029,19.991932618034355],[-99.18385468097506,19.990418600286944],[-99.18093757691793,19.99214900384891],[-99.17721734175791,19.99313889480618],[-99.18000148855555,19.998088776982343],[-99.176350354249,19.999558700256955],[-99.16875339433051,20.00261685959731],[-99.16787277861499,20.00351276317315],[-99.16737418593056,20.01287344747783],[-99.16136617179302,20.01242608733122],[-99.15932083153149,20.017028117991572],[-99.15860312153598,20.027187713003627],[-99.15356501642208,20.02606947346601],[-99.15039804737268,20.027501729391417],[-99.14743347351794,20.02775784431094],[-99.14369205788921,20.026281309452827],[-99.14238319511912,20.027049563021478],[-99.13828864729658,20.028182807866642],[-99.13521381093034,20.027086494180594],[-99.13087683449652,20.028241978472295],[-99.12750598932018,20.031451356128912],[-99.12590924570605,20.031713937415418],[-99.11815317882605,20.029304460862193],[-99.11251929412344,20.02920422231233],[-99.10908036467885,20.03053286417196],[-99.10386925486489,20.030898549265544],[-99.1017045853576,20.032033902801004],[-99.0958048381741,20.030639679970818],[-99.08935132925609,20.034348803684964],[-99.08544996173725,20.032487916175796],[-99.0796726755471,20.026212487835778],[-99.0783239560975,20.018299596842837],[-99.0741353602969,20.017918877926547],[-99.06974394051201,20.018054585273774],[-99.06832041487144,20.018025319203673],[-99.06620946198348,20.01615932649969],[-99.06384086050736,20.014194359277496],[-99.06394463950386,20.009103874008645],[-99.06616240344721,19.996440591132625],[-99.06756047219028,19.984989439224876],[-99.0653526446423,19.981501299635454],[-99.06098639442672,19.97458956971036],[-99.05957574866898,19.97399582130521],[-99.05786742528545,19.982103024193975],[-99.05610070705933,19.98466836471016],[-99.05850078465306,19.988404758744707],[-99.05678827904978,19.990236090813085],[-99.05129322147326,19.992353325854424],[-99.04779146748257,19.994917025028087],[-99.04766186105172,19.99766770101411],[-99.04801525373449,19.998217713653787],[-99.04845383705259,19.999339516170267],[-99.04875462071271,19.999337472267598],[-99.05221158130803,20.00134082747485],[-99.05039896635299,20.003031312745748],[-99.04943030099128,20.00769710194254],[-99.04338071872877,20.01130852995692],[-99.03987899953898,20.01279820049905],[-99.03884121914678,20.012883395177937],[-99.03797354075283,20.01282636216547],[-99.03679293124111,20.012816981061576],[-99.03537285839928,20.0136325215625],[-99.03134289775738,20.014853622943235],[-99.03089709946534,20.0125527107935],[-99.03036029298437,20.00891258993846],[-99.03097087225177,20.003666526505754],[-99.03083344135473,20.00291298608613],[-99.02742290165781,20.0016481879577],[-99.02851212117349,20.000102410534282],[-99.0289163307956,19.99924440094486],[-99.03024692837084,19.99963588449657],[-99.03193746291339,19.99663415693533],[-99.0302107961237,19.99322525501549],[-99.03190942651668,19.990718733401764],[-99.03289170739168,19.990087513025173],[-99.03310810974114,19.981770905893484],[-99.03394652574957,19.975420223138485],[-99.03428945180735,19.973211557511206],[-99.03451296662115,19.97177178849256],[-99.0323675545327,19.970305082025504],[-99.02765581671878,19.9645586149191],[-99.01402472953157,19.964496392696503],[-99.00683792263453,19.96501731837725],[-99.00412010664564,19.96495210236492],[-99.0074934795876,19.978966371256433],[-99.00871493374649,19.977226470819176],[-99.01423780590989,19.97772364399185],[-99.01371659043309,19.981279522283955],[-99.01317724449609,19.981382210950414],[-99.01125637193383,19.982122379739053],[-99.02155470112672,19.987005231592377],[-99.02055065932211,19.989967209369752],[-99.0203464882157,19.990561619399386],[-99.0186235378269,19.989794411924777],[-99.01826676045738,19.99062674582558],[-99.0183095463936,19.992620052827363],[-99.01807468613686,19.993402727414548],[-99.01897638636547,19.993755489390082],[-99.01623622283978,19.996777706351395],[-99.01350154942907,19.9976207831848],[-99.01366972473693,20.00051783867508],[-99.01397804063583,20.005645148413464],[-99.0132807498722,20.010925234659908],[-99.009677670874,20.017976061636432],[-99.00844970379967,20.020870715960484],[-99.00698484044472,20.02399395596433],[-99.00596060291667,20.02635360623242],[-99.00526680276033,20.02894405277823],[-99.00476910479517,20.032673214966167],[-99.00593561116443,20.030933115787263],[-99.0078596133103,20.031130077884768],[-99.00782905229562,20.03386561900919],[-99.00945384318402,20.035202468523323],[-99.0098949760897,20.035231457214934],[-99.00564429580862,20.05320451432152],[-99.00115978472132,20.052394370251875],[-99.00010998647434,20.053342550173454],[-98.99683848062836,20.058074804082025],[-98.99633401149748,20.058374810424823],[-98.99557904997386,20.059661880113822],[-98.99562637577259,20.06012500844116],[-98.99484156238668,20.061403037356968],[-98.99360064142292,20.06291554707815],[-98.9931473344451,20.06314083275447],[-98.99256270017963,20.065747254533164],[-98.98997674451095,20.06645293512355],[-98.9896285853606,20.067123781527073],[-98.98915929903421,20.06793487054364],[-98.98897789526114,20.06826191705261],[-98.98905064998922,20.06701190857848],[-98.98927688265934,20.066299546344737],[-98.98949325306023,20.064994359483535],[-98.9893864098679,20.064715359544664],[-98.98896854682408,20.063870145344197],[-98.98690747777141,20.061397086480724],[-98.98305886558569,20.058949124858316],[-98.98224375868148,20.05833138191457],[-98.98189609741945,20.05686225909369],[-98.97921044770408,20.054117859975918],[-98.97576666935589,20.05244265975813],[-98.97027475205897,20.04574657466867],[-98.96765903667256,20.044207526013395],[-98.96720621802967,20.044007313084137],[-98.96687060186542,20.043675737497097],[-98.96609934460787,20.042743060347334],[-98.9636434164521,20.043262595678016],[-98.96224085871432,20.041786191306244],[-98.9586876866158,20.039565393938233],[-98.95987796647302,20.032600689106687],[-98.96196298641883,20.03210756269408],[-98.96316994273843,20.031886844139763],[-98.96404298079415,20.03157825269119],[-98.9602405124673,20.031623006490577],[-98.96071912796145,20.028944840643476],[-98.95926987551701,20.029004332201282],[-98.9551634331479,20.027835653965326],[-98.95370181216475,20.03053050958431],[-98.95155663201797,20.02911016838658],[-98.94793678364607,20.029567885498636],[-98.94657474300715,20.025024225354116],[-98.9451349782791,20.023046367122618],[-98.94427981493334,20.01729220726878],[-98.94748725628045,20.00899178750126],[-98.9439961306719,20.004938643416722],[-98.94213155760815,20.000623192950627],[-98.94311692661836,19.993371046952063],[-98.94375912977517,19.98497797531968],[-98.94273049202826,19.9790730973333],[-98.94474247858926,19.975051644236373],[-98.94825475880214,19.97526587325416],[-98.94854934984863,19.974018459462002],[-98.95222509025518,19.974129403592144],[-98.95568219057958,19.975722196497884],[-98.95859349566177,19.975709254377648],[-98.96264909387673,19.974383793625975],[-98.96621945536617,19.973995083125033],[-98.96704700218038,19.97223313847212],[-98.96761557278484,19.971528534780248],[-98.98117572511944,19.954721393979753],[-98.99562282407055,19.956891696129105],[-98.9957679322107,19.956164591031722],[-98.99759463788723,19.94887150096281],[-98.99977850775474,19.941825019873534],[-98.98536379129695,19.945519044741218],[-98.98469074781167,19.946318016841985],[-98.98310401647961,19.941484127823855],[-98.98304913208955,19.94071366110302],[-98.98316476032426,19.938612829815952],[-98.97250560298676,19.935907209440757],[-98.96996643065376,19.932698911579052],[-98.96833301769658,19.933809080319975],[-98.96656966085533,19.931408929759186],[-98.96610562704467,19.929840708383324],[-98.96182586469979,19.929175073745398],[-98.9623261694947,19.92639614427418],[-98.96044456857805,19.92505811034323],[-98.95611243901755,19.92818355169254],[-98.95348284830004,19.911551115428495],[-98.95272259325185,19.906714554990515],[-98.95668431204166,19.905290689664923],[-98.95505875301609,19.896396472602532],[-98.96144640098993,19.893640706505437],[-98.95354693400628,19.888539898055342],[-98.9559750623634,19.8851664776206],[-98.96600596966994,19.89165679370393],[-98.9875581322865,19.882179998037486],[-99.02058115871301,19.867682655773592],[-99.02039120964656,19.864106764914652],[-99.01841671963581,19.86368021968383],[-99.0186748091557,19.861863376422434],[-99.01683048803693,19.861452562587033],[-99.00131146426253,19.83500024721633],[-99.00005468998063,19.833332419352473],[-99.00828797116094,19.82853080794763],[-99.00020010059654,19.82495057427417],[-98.9792331626079,19.81512604502501],[-98.97036371388629,19.808761406429653],[-98.96091705512009,19.80509436629285],[-98.96135911943497,19.803908087503885],[-98.95518714261715,19.8007934286955],[-98.95539944435717,19.79883031698853],[-98.95301565619872,19.800161166243527],[-98.94875853030248,19.80051088237707],[-98.94754743491558,19.804537080873445],[-98.94668472455504,19.804280022574176],[-98.94548939431922,19.80380178054918],[-98.9432757824809,19.80825722023286],[-98.94109525488233,19.812635294778772],[-98.93863582718205,19.817568068000867],[-98.93602487268697,19.82497233218288],[-98.93539229894213,19.82600924883235],[-98.93236677352951,19.830968575221334],[-98.93092699366775,19.834642411540756],[-98.93009753258315,19.836775161225546],[-98.93004357201761,19.836978592951596],[-98.92981954779356,19.83749860845478],[-98.9296935059939,19.83785026945145],[-98.92899972042244,19.839781951466534],[-98.92845591295617,19.841192665227766],[-98.9276315226374,19.843392676417693],[-98.91816303105867,19.840314494144366],[-98.9173893136894,19.839992838962246],[-98.91632320733333,19.839332273958632],[-98.91440322216113,19.84229814604612],[-98.91241710432286,19.84318417706413],[-98.909046352823,19.843851114596703],[-98.90787732055082,19.8435761909509],[-98.90567043906839,19.845981979837063],[-98.90686935521336,19.847743849555798],[-98.90746633695016,19.84788889661138],[-98.90761465417648,19.8490113720934],[-98.90633090628648,19.85438828723386],[-98.90596217989219,19.855605491233177],[-98.90297794161131,19.859305504585734],[-98.90878878624352,19.857124965759965],[-98.90783964990487,19.85853093565123],[-98.90749625229256,19.859087591017328],[-98.9073491164915,19.859577932470984],[-98.90741125675208,19.860476635070995],[-98.9068847746912,19.86122984743065],[-98.90577034958079,19.862777553531714],[-98.90535771202013,19.86361681541979],[-98.90706237266079,19.864605978804207],[-98.90948419102762,19.865601726238424],[-98.91748098075738,19.86923318013089],[-98.91460410059057,19.871440415514655],[-98.91244215946472,19.874800510130342],[-98.91444734664634,19.875718810746378],[-98.91274047529595,19.879155854218936],[-98.91016547361687,19.878048559300453],[-98.91182479887846,19.881017255626375],[-98.9092037418892,19.879872067775864],[-98.90411752410085,19.887579956700506],[-98.89826997529667,19.883605068706117],[-98.89744402855052,19.884458342485573],[-98.89571239916904,19.88643261931111],[-98.89751758138993,19.887956540798086],[-98.89717335692097,19.892366256552748],[-98.89519623918886,19.893347167099535],[-98.89719515201011,19.89413271641115],[-98.89607867773083,19.895377048730097],[-98.89206056967959,19.894376101997693],[-98.89076001101961,19.896261103680047],[-98.88980904782653,19.897072794225267],[-98.88802784257683,19.898476788290623],[-98.88777787559496,19.898864178241126],[-98.8876859270826,19.899095524345512],[-98.88673112236057,19.898901909944414],[-98.88635147668424,19.89942673810384],[-98.88470078892948,19.899823443025184],[-98.88390090570863,19.89955901271003],[-98.88316207480386,19.9015287603861],[-98.88079696351281,19.89971454036072],[-98.87873597904462,19.899108420590323],[-98.87825266496742,19.89897597295186],[-98.87806082130862,19.898734650070708],[-98.87131152659617,19.89531955755649],[-98.8661216462433,19.892702787257747],[-98.86589594151951,19.892586896192995],[-98.86564154708094,19.89331028215213],[-98.8586273749666,19.900970904408155],[-98.85583001757226,19.904280149854912],[-98.84095155845222,19.89230885939412],[-98.84356337103452,19.883694788391665],[-98.84399533289235,19.882223281815868],[-98.83665425436328,19.881219523547372],[-98.838182145992,19.8794205317202],[-98.83020185476937,19.874896046553033],[-98.82832540813763,19.873859934757945],[-98.8209585668344,19.869562114336077],[-98.81713525401022,19.867284147516443],[-98.81552996141437,19.8681492764444],[-98.81242024814964,19.865460507177602],[-98.81187606187615,19.865310155707334],[-98.80992373311085,19.864734044050465],[-98.8095937719736,19.86461075794574],[-98.808763278767,19.86446626585831],[-98.80799149332194,19.864608511086885],[-98.80750733462224,19.86471240718288],[-98.80686146687799,19.864674879614256],[-98.8065266175031,19.864629233223752],[-98.80619937186316,19.864586255919903],[-98.80579064430611,19.86334633487712],[-98.8053157496056,19.86275985262307],[-98.80483018479936,19.862381004550855],[-98.8046159072261,19.862259168011235],[-98.80413321100866,19.862037402077476],[-98.80336512772811,19.86177080220176],[-98.80293216483796,19.861632806465707],[-98.80249561144052,19.861409740263184],[-98.80169824032794,19.86124541650753],[-98.80117182171301,19.860496102824243],[-98.80067975514748,19.85967769676347],[-98.79961414823782,19.85889075649851],[-98.79517248025974,19.856414695297474],[-98.79458311586802,19.856899310711412],[-98.79428628976939,19.85706282587722],[-98.7923351925271,19.859800004920658],[-98.79192362349511,19.859993055036284],[-98.78972153753858,19.86188684096669],[-98.79106421833148,19.865144010434676],[-98.7894967063641,19.86854269360566],[-98.79116601691123,19.86969591737403],[-98.79392681458262,19.87208408951301],[-98.78750514245843,19.87892095936178],[-98.78057412076254,19.883540547907103],[-98.77269909231666,19.879080818908562],[-98.77065935312419,19.878353166706063],[-98.7690819017123,19.877533113507354],[-98.76730983332072,19.876602253115948],[-98.76616817571016,19.876288443681517],[-98.76471342041123,19.875877606347217],[-98.76317230288885,19.87545105246062],[-98.76135565260603,19.874988229934843],[-98.75357938143361,19.877026588985302],[-98.75023724410306,19.876572298549434],[-98.74321382691704,19.874264047137217],[-98.73967220443967,19.872704755035215],[-98.73924776410632,19.869553673961093],[-98.73874344350895,19.869461971879105],[-98.73884432478286,19.867234984228787],[-98.73684329280701,19.867608007005913],[-98.73633551746514,19.86753385350994],[-98.73580117233041,19.867555261947075],[-98.73509349517684,19.86740584727943],[-98.73451298323192,19.86721284603385],[-98.73219302060289,19.86573691600148],[-98.7312295045586,19.865298089308794],[-98.73095252241586,19.86517764334144],[-98.72929164208404,19.86497346167465],[-98.72864791818432,19.86479079157698],[-98.72770842850423,19.863971214801268],[-98.72695070365444,19.863819904490526],[-98.72372738008727,19.863172967642072],[-98.7219502980779,19.862872831006484],[-98.7197683005698,19.86249954049225],[-98.71862687122524,19.86234383658524],[-98.71712778236002,19.858642944361293],[-98.71322500695379,19.854278834425088],[-98.71202258995032,19.85438573646752],[-98.70925015929527,19.85378122514993],[-98.7081277980227,19.855751679305456],[-98.70501398883823,19.854280646570942],[-98.70275547611499,19.858601014984515],[-98.70041365156436,19.856573246501114],[-98.69796077144474,19.85758714264199],[-98.69614634540358,19.85614484247344],[-98.69056095999218,19.85215879246391],[-98.6891283156562,19.85128569521129],[-98.68843805580104,19.850956747798193],[-98.68586696206927,19.850560317209386],[-98.68474501884248,19.8506915452719],[-98.68407999132592,19.854076813450433],[-98.68309845473442,19.85494864904473],[-98.68211634233057,19.857120438073878],[-98.68177467622974,19.85870802783961],[-98.68084464181715,19.860651472014638],[-98.67735313402005,19.86096273060207],[-98.67265892065996,19.862834616538805],[-98.67183974611703,19.853659141273567],[-98.67315895885474,19.852795058337335],[-98.67741393748202,19.849989739871262],[-98.6783804833795,19.849024933796613],[-98.67892293389394,19.848350917638697],[-98.6817223547394,19.845883894249027],[-98.68189152448576,19.845763211652127],[-98.68436382125378,19.843643255451354],[-98.68793389548506,19.840535650368736],[-98.6896759668382,19.83901049379807],[-98.6908108995105,19.838067327724332],[-98.69742933755833,19.83244809858843],[-98.69764308421043,19.832112625620994],[-98.6958684872398,19.830445128746533],[-98.69198254830269,19.826799380258365],[-98.69127811351939,19.826100434863292],[-98.6905603458381,19.825435441825107],[-98.68986704732697,19.82476145166862],[-98.68707516325486,19.82218586675134],[-98.68569448887797,19.82080180169146],[-98.68308572702489,19.81842433670107],[-98.67942703941304,19.814952121311023],[-98.67864987807155,19.81408139482454],[-98.67839866147267,19.81423117091134],[-98.67834675612693,19.81414689237789],[-98.67720862005888,19.813198062534582],[-98.67587540879299,19.813184356143324],[-98.67481831432349,19.814772905191717],[-98.67247718307846,19.816723387188972],[-98.67364183608021,19.82188084668951],[-98.67427509037793,19.823741465391493],[-98.67368283650222,19.827973068888923],[-98.67462332103611,19.83099763816682],[-98.67475830939236,19.832050475989604],[-98.67479217695984,19.832396203818178],[-98.67451918881744,19.832394999247697],[-98.67175134957716,19.8331114063252],[-98.67023100287736,19.834307234837866],[-98.66843725660158,19.834418220435282],[-98.66746625915357,19.834720809611213],[-98.6652299768142,19.835388913198415],[-98.66138354461174,19.834700526572135],[-98.66081486074279,19.835031421206338],[-98.66021095443153,19.83444467676094],[-98.65903076199788,19.833303407592155],[-98.65852228818807,19.832683792951684],[-98.65461091382338,19.828101206549775],[-98.64993475979657,19.824269951138547],[-98.64889382095225,19.821708049480094],[-98.64699317265433,19.820881544657823],[-98.64732677676426,19.81838131419886],[-98.64369884625717,19.817522505830993],[-98.64441863073654,19.814598730446164],[-98.63990311001811,19.811964440331565],[-98.63992953319467,19.811004305288805],[-98.63861810484013,19.809231242577596],[-98.63797544183609,19.807576237696196],[-98.638787851313,19.80076963712412],[-98.63255816684278,19.796433162630706],[-98.62356193152084,19.79388869935201],[-98.62431386248988,19.79006386606426],[-98.6252610426173,19.785182529196902],[-98.61747561476182,19.788051215759708],[-98.61223370570497,19.786368411601302],[-98.61341219717104,19.781672715125012],[-98.61130231832999,19.77798621891003],[-98.60960391676991,19.777108928381097],[-98.6116636816513,19.77412895060172],[-98.60674235287917,19.77180657523627],[-98.59942510689848,19.768229135316687],[-98.60059801473307,19.76492279059886],[-98.59689402631557,19.76576722131],[-98.6017063366607,19.757309146762964],[-98.60240096250726,19.752655333217717],[-98.60158675888454,19.75282826275685],[-98.60173180663423,19.75169962997353],[-98.60248583942672,19.75153529916946],[-98.60387458546654,19.73596720870256],[-98.60321306790797,19.732646876863953],[-98.60456142662883,19.73293930557594],[-98.60767960766964,19.72566539150114],[-98.60931215131677,19.726513419052424],[-98.61063441347562,19.727599634786486],[-98.61397681135463,19.729145693294754],[-98.6237796997728,19.725574343219193],[-98.62470304032854,19.7274244946164],[-98.62693238636791,19.725647098473246],[-98.62734905767928,19.722229863354357],[-98.63156543251188,19.72218836945666],[-98.63154762054955,19.72274957514071],[-98.63280652726809,19.722325966480923],[-98.63292433347215,19.722235863973765],[-98.6308537334018,19.71771940292041],[-98.63346158871332,19.714964528412736],[-98.63028688495365,19.71685284612505],[-98.63225792842127,19.712399874816583],[-98.62943357261196,19.709720852590976],[-98.6309006043549,19.7070867582338],[-98.62971376620698,19.703567977856835],[-98.62901538001131,19.702689755046265],[-98.62682142296302,19.70086173078647],[-98.62731363273195,19.700032369853318],[-98.62402011573141,19.696893394726715],[-98.62521821215046,19.6941208083083],[-98.6251102778105,19.691374633517626],[-98.62861569052325,19.688795194164527],[-98.62927223031357,19.68553651183663],[-98.63034909679288,19.678342955573044],[-98.63284113997844,19.674136982979235],[-98.63701168284916,19.674867914600952],[-98.63989709453625,19.671083101353247],[-98.63758836011056,19.669028717601236],[-98.63549352853079,19.670765356650122],[-98.63407923930464,19.668072706390774],[-98.63191936780396,19.667590696548416],[-98.62776212804806,19.665140860101644],[-98.62791537562498,19.663535081353245],[-98.62332063578555,19.66345107287168],[-98.62026936333467,19.661400258715673],[-98.61967057037197,19.661163915478937],[-98.62118517213668,19.66059687504105],[-98.62205676047643,19.65908087408218],[-98.62222083836537,19.657659715448744],[-98.62511350873228,19.655560034076302],[-98.62949489596315,19.656736030904767],[-98.63494913815623,19.65553786558138],[-98.6389775960252,19.65352509914942],[-98.63973578619039,19.65197519737609],[-98.63972069122542,19.651821584497043],[-98.64160846426194,19.64949042707923],[-98.64418658035737,19.648830897748837],[-98.64765379476319,19.651009698497035],[-98.6489183911005,19.650980502864627],[-98.65310666075356,19.654315003567547],[-98.65554582714213,19.650472262274036],[-98.65812102221417,19.65396741915066],[-98.65975969245449,19.654330077994246],[-98.65994887346187,19.654414621200317],[-98.66248762924658,19.65581352291207],[-98.66475733933476,19.65771429422557],[-98.66461662172941,19.66007043244059],[-98.66474333199136,19.66072961343093],[-98.66511897057381,19.661458658418155],[-98.67005481939822,19.658676132568246],[-98.6703352610395,19.655590037787306],[-98.67075580781864,19.653283340295957],[-98.66944980351576,19.647056762137822],[-98.6677270685314,19.644635848152973],[-98.66902976926377,19.641125594220682],[-98.67203664707671,19.636729479171947],[-98.67171615170736,19.635143815323886],[-98.67163692000503,19.634567023504644],[-98.67261592341077,19.63143949402462],[-98.6722131460026,19.626315714941654],[-98.67181550349693,19.625720539851102],[-98.67054910979698,19.624827918985147],[-98.66792212983944,19.61816285504085],[-98.66382603891651,19.61505332170657],[-98.6617466026297,19.61011299487359],[-98.6648728509042,19.606908834516446],[-98.66557708966963,19.60615373467391],[-98.66427325706888,19.605479666414226],[-98.65772398343421,19.605555579023758],[-98.65684991775544,19.60649739628741],[-98.65704929777542,19.606690047975576],[-98.652930367154,19.607436546231156],[-98.65229841651364,19.60774358419667],[-98.65177393442008,19.607538840047766],[-98.65135710971731,19.60736130002863],[-98.65074861170837,19.606920269833495],[-98.65055912471666,19.606816487024844],[-98.64765943509599,19.60780354667469],[-98.64653028839416,19.607603932591587],[-98.64198714491704,19.605367241327883],[-98.64024096920099,19.601225178427057],[-98.63801481832803,19.598788393230848],[-98.63363568755142,19.597891379919417],[-98.63335438673909,19.59893850698569],[-98.63282221083585,19.600293333985064],[-98.63217713797576,19.601350194420547],[-98.6307899131703,19.601976385182695],[-98.63024443164602,19.601657861625995],[-98.62992862852599,19.60165082815888],[-98.62950314178045,19.601661332915228],[-98.62921575385684,19.601579875662537],[-98.6286383038015,19.6012803396099],[-98.62829666113356,19.601013576818843],[-98.62716359127535,19.600568545419378],[-98.62591689347545,19.60033221478818],[-98.62333991347487,19.6006994111101],[-98.62228755893864,19.600393640838774],[-98.61605558895957,19.601220701857187],[-98.61583572871871,19.601229052857775],[-98.61336775640433,19.60106513466252],[-98.6090207190336,19.602358770928163],[-98.60406124641185,19.605359734109243],[-98.60083946094727,19.608284957064313],[-98.60066459830142,19.610257697364318],[-98.60045196515574,19.61103859660892],[-98.59757795003492,19.613008330441176],[-98.59683743987114,19.613857319019246],[-98.59524051624646,19.6152064552428],[-98.59334744992913,19.616793739385855],[-98.59145925387844,19.61885769486065],[-98.59117240863299,19.619101297985708],[-98.58933394655764,19.623125746495987],[-98.58911669339568,19.623238713734565],[-98.58765408468668,19.62477483053243],[-98.58645446976374,19.625958638911357],[-98.58402238146505,19.62948541868309],[-98.58371641293661,19.630185924202465],[-98.58329598160452,19.632932408730767],[-98.57953738797391,19.637660532057055],[-98.57922905864507,19.63777640893352],[-98.57347219034858,19.638940119031588],[-98.56904890878383,19.638757102920692],[-98.56869164090466,19.638959639780126],[-98.56749544787851,19.64052278997451],[-98.56137569717168,19.63756374674398],[-98.5617161002994,19.636227875916518],[-98.56371950550704,19.62714881165573],[-98.55643258909373,19.62798379702599],[-98.55567168560276,19.627340128699927],[-98.55568127335334,19.627181501625046],[-98.55573347321786,19.625515161930537],[-98.55016620985077,19.62454878044889],[-98.5503996763639,19.618578172782634],[-98.54688007790429,19.621512950774672],[-98.53557577766122,19.6344188729355],[-98.52876613933279,19.624770835565585],[-98.52568630527355,19.61863679777548],[-98.52833576029798,19.614557426670956],[-98.52826301157592,19.61431557362863],[-98.52693260429237,19.612413229558967],[-98.52243587305605,19.607347074121776],[-98.52152228777703,19.60573975260911],[-98.51907297476498,19.60237685803969],[-98.5180062492235,19.603298477981298],[-98.51792016378852,19.60297509956871],[-98.51768107585747,19.603063292872264],[-98.51176094850416,19.603984153374597],[-98.5082470749474,19.602730461037424],[-98.50231581838142,19.603202159000602],[-98.49570103432893,19.60744301495521],[-98.49161384136323,19.60736783246921],[-98.4908935607582,19.610164305256546],[-98.4927040830766,19.613837262454695],[-98.49068289503396,19.616341496084033],[-98.49019542949128,19.61995333066318],[-98.48996574291914,19.619763187382887],[-98.48785417615096,19.61791297827017],[-98.48754261851349,19.618166227149686],[-98.48313502803944,19.618514085866423],[-98.48250488702132,19.618162359581163],[-98.48143049158853,19.61789349558626],[-98.48080499848231,19.617700417811534],[-98.4804584279974,19.617552333199228],[-98.47982411242407,19.617475070669855],[-98.47959284584158,19.61752312739668],[-98.47885694738562,19.618023024410036],[-98.47851769033849,19.61800282932512],[-98.47392820839218,19.615550321815704],[-98.46777100095164,19.614308531974473],[-98.46720210083572,19.613802700970325],[-98.46438804049205,19.61478244007884],[-98.46292560207456,19.614382243995294],[-98.46156627744045,19.6143228886869],[-98.46105589082379,19.614737120045618],[-98.45829843139677,19.616198717761336],[-98.45785687082855,19.616523721728925],[-98.45736270228628,19.617095347774807],[-98.45637689392049,19.617098547657633],[-98.45524156068757,19.617239827478215],[-98.45490632521432,19.61756335929232],[-98.45301551635566,19.618056076072946],[-98.45117054221157,19.61807434793485],[-98.45010095805617,19.617893917873744],[-98.44795730240088,19.616440390295793],[-98.44656655610561,19.616470975034076],[-98.44433944549644,19.61573968870715],[-98.44383063605733,19.61551961270351],[-98.4436147901908,19.615063150289814],[-98.44342383028282,19.614566806553057],[-98.44325638713963,19.612901314010628],[-98.44146173004577,19.612718488466555],[-98.44094355457338,19.61351912915012],[-98.4387835570289,19.614325919013652],[-98.43068453330818,19.614215239519467],[-98.4300919375168,19.61414509901323],[-98.42958881968684,19.614228844991032],[-98.42931370778308,19.61428609587807],[-98.41679396845444,19.61670273173928],[-98.41643416369726,19.616771100618053],[-98.41266654429273,19.61749909034984],[-98.38169684263886,19.609361863293884],[-98.36701080490957,19.62820948934558],[-98.36696187766563,19.628261285017345],[-98.3669170034317,19.6283248989061],[-98.35732343650596,19.640497864964345],[-98.35345339393109,19.64558959032729],[-98.35091091381184,19.648811696723214],[-98.34564516086704,19.655517552338893],[-98.34138421461114,19.66132381479497],[-98.33710397951359,19.66711386535627],[-98.33690793753067,19.667395214476812],[-98.32825812038084,19.679211871119662],[-98.32401152387393,19.68499680448366],[-98.32329280191539,19.691368601178738],[-98.32176963943704,19.693263655355793],[-98.32094917901264,19.70101089546995],[-98.32302842234986,19.699503746637163],[-98.32643337291626,19.699597881080194],[-98.32883788446435,19.698012124481238],[-98.33004673804089,19.69903746423904],[-98.32957246642314,19.699633469355263],[-98.33002237056661,19.70137622792987],[-98.32948161366994,19.703776049961277],[-98.33326278311085,19.708774041769402],[-98.3333092321758,19.70932798304807],[-98.33311273014908,19.709696431388352],[-98.33313551323926,19.711763993408397],[-98.3319204401198,19.711642147705106],[-98.33179870475959,19.71606875124928],[-98.33273798600766,19.719736078110145],[-98.33166720773823,19.722319966910106],[-98.32842099524777,19.722084410145953],[-98.32508624217212,19.723690148118976],[-98.32261651262843,19.72325715930259],[-98.3154815214192,19.725589334850554],[-98.31316369633521,19.727219778926496],[-98.31109487962067,19.72707688864716],[-98.3103072330494,19.72754658379091],[-98.30732445150039,19.72702081369374],[-98.30155850982135,19.723078753676873],[-98.30080148683169,19.723630711614703],[-98.29269476710499,19.72400833974865],[-98.2933217267634,19.726229600459817],[-98.28830285195403,19.723758571725625],[-98.28546769255018,19.720800759283748],[-98.28053405756714,19.71854216823499],[-98.28040933595128,19.720132175719925],[-98.28229975784728,19.72403578965657],[-98.28052156026342,19.72632107365007],[-98.27881692516092,19.724773847404265],[-98.27523251334281,19.723802965903246],[-98.27247969632072,19.72469066074831],[-98.26985563959568,19.72286964973506],[-98.2660115515734,19.718707946683026],[-98.26563677830859,19.717013946756538],[-98.2655742440669,19.71704897462837],[-98.26408840407834,19.717293292288502],[-98.26297721099189,19.717284550323313],[-98.26230761253805,19.717206274765203],[-98.25995198952728,19.717197771869394],[-98.25957476160761,19.717209469027978],[-98.25815212032074,19.718166623586114],[-98.25531891771476,19.718829019189343],[-98.24862112713492,19.71918388085578],[-98.24390700348556,19.721615082882693],[-98.23936198728586,19.722183183876666],[-98.23876792169477,19.722233254719413],[-98.23771929406422,19.72269060061427],[-98.23721534610877,19.722889876144222],[-98.23307460131088,19.72756082831222],[-98.23136937712513,19.729234877902172],[-98.21896015490591,19.736986961870173],[-98.21738316882897,19.740145975574478],[-98.21510934330291,19.74131445093559],[-98.21225489386859,19.740183987543162],[-98.21194949058531,19.73994766887455],[-98.21082795857387,19.738639807764798],[-98.20860421404319,19.739152197180488],[-98.20821591198558,19.739149819851093],[-98.20771588164712,19.73897569226068],[-98.20692678239487,19.73913957041333],[-98.20437723812114,19.73859369774732],[-98.19903667924171,19.741279849956413],[-98.19860936758118,19.741541440416484],[-98.19800200840729,19.741552393039626],[-98.19739328764206,19.741801521340562],[-98.19687183256019,19.741713749358325],[-98.19661189659183,19.741720867857737],[-98.19784547613472,19.748787841257467],[-98.19622841911064,19.750315604556818],[-98.19577448936911,19.75430450468258],[-98.19863814151802,19.757576820780116],[-98.19828703930625,19.76127872400707],[-98.19579782922528,19.763074563848534],[-98.19522077268743,19.762973203392676],[-98.19351749408537,19.762954092105588],[-98.19482654477713,19.76554817236763],[-98.19526902342977,19.7656735062327],[-98.19562875196436,19.765740602882545],[-98.20209431108907,19.768285484948876],[-98.20264141507289,19.767954911183153],[-98.20975860445589,19.773919679169694],[-98.2147474377532,19.774865731494003],[-98.21994412992319,19.77309719137503],[-98.22142424649991,19.77357635511271],[-98.21615555019889,19.77841696353954],[-98.22097256893511,19.778141747477832],[-98.22563971540194,19.779787116075454],[-98.22583671705667,19.776595447045793],[-98.22983835439385,19.77448304516338],[-98.23522261783779,19.77750707867233],[-98.23665279601039,19.781122181275407],[-98.24291174551678,19.7886466017207],[-98.24290875796453,19.788872692471045],[-98.24333838734117,19.789217989787517],[-98.24582734836741,19.79235297685335],[-98.24682447669852,19.792750999289865],[-98.25093942732559,19.794938688514833],[-98.25102747949143,19.79506446974898],[-98.24972124497276,19.798761902732565],[-98.24970852312453,19.806069464177426],[-98.24993226802286,19.806075002740272],[-98.2509977680192,19.807354408445747],[-98.25108417272844,19.807603623326997],[-98.25130158696237,19.807838432652602],[-98.25137081317092,19.808034280501147],[-98.25136448000796,19.80826355338712],[-98.25126394625545,19.808525790076942],[-98.25125852650905,19.80878240583064],[-98.25143476660008,19.809232942173082],[-98.25175366290341,19.8096423918318],[-98.25290541878002,19.811319713215653],[-98.25295302141694,19.811399400785945],[-98.25309670343233,19.811607084857656],[-98.2531757526665,19.811750360251324],[-98.25111884909796,19.812581982686993],[-98.25109405604172,19.813203315775752],[-98.2514128940237,19.813702180985388],[-98.25160859949659,19.81438146311848],[-98.25203651412335,19.815040374059947],[-98.25297227525772,19.816345090471657],[-98.2533620335351,19.81721942631947],[-98.25373814192113,19.81800988378359],[-98.25488387799521,19.819186195092925],[-98.2559746167916,19.81995476996599],[-98.26102399970426,19.82025640357972],[-98.26159064600012,19.820649575516143],[-98.26248607244582,19.821023366046575],[-98.26306686582205,19.821192482077777],[-98.26422044656942,19.822561464328032],[-98.26494495694226,19.82443247878996],[-98.26502860993196,19.825121766823713],[-98.26532064064412,19.830490411793733],[-98.26531977069038,19.8307858082257],[-98.26535047889632,19.831167810746308],[-98.26538818479827,19.831704562638834],[-98.26548589429495,19.832043814176643],[-98.26558046368939,19.832171686920333],[-98.26568120361657,19.832707389529162],[-98.26613229802007,19.833398668106327],[-98.26615459824052,19.834226242084526],[-98.26621052811083,19.83473916094198],[-98.26602174231806,19.835110201391558],[-98.26573198041757,19.835786455065374],[-98.26565696693262,19.836504686791557],[-98.26558782621856,19.838847049278513],[-98.26590706366562,19.839839070672383],[-98.26625374272362,19.84087373501933],[-98.26655041460901,19.841693917675002],[-98.26714388149998,19.8433373841321],[-98.2692297766049,19.84494675932308],[-98.2702247175605,19.845645056215233],[-98.27108009191619,19.846308748802358],[-98.27121204814063,19.846280677954837],[-98.27206352943836,19.84607744268658],[-98.27268576502036,19.846106204492116],[-98.27298550952958,19.84613735887467],[-98.27329129544927,19.84620374791558],[-98.27389009317568,19.846402009009353],[-98.27747164309324,19.848162051157487],[-98.28354150929567,19.84697121363166],[-98.28376931369058,19.84725119915123],[-98.28658359433501,19.84833725958606],[-98.28674989829511,19.84909761325656],[-98.29599990603714,19.847581024950273],[-98.29644402002839,19.846396122523913],[-98.29894985222774,19.845961698122608],[-98.29947078302331,19.845408090343597],[-98.30056392716938,19.845265717245923],[-98.30404967249683,19.845651614446695],[-98.30452976081756,19.845906853279075],[-98.30529208463412,19.845870525926784],[-98.30174500146575,19.847377078023897],[-98.30365687131672,19.849056336783633],[-98.30521258945743,19.850012785217018],[-98.30571417911835,19.850227437301385],[-98.3068502834193,19.85141046272014],[-98.30914265136329,19.851278604245806],[-98.30951924449732,19.851506097507183],[-98.30960615416114,19.851780057007943],[-98.3144314631192,19.854377720107323],[-98.3146266417283,19.85478566526092],[-98.31500434616237,19.855115604806258],[-98.31446613411532,19.855751416484622],[-98.31269596752321,19.857849264249467],[-98.3124598379789,19.858175241660547],[-98.31003237669307,19.86180579385416],[-98.30975906169704,19.862227411502374],[-98.3076099449894,19.86539762357262],[-98.30563634624934,19.86837484630479],[-98.30447291515634,19.870115870835548],[-98.3042832026548,19.87017650101609],[-98.30423515716785,19.87020072164836],[-98.30285416315917,19.870650987515432],[-98.29905296854412,19.871833380695932],[-98.29723562118858,19.87262025954942],[-98.2930827677398,19.8747515698073],[-98.29112960424618,19.87590864679919],[-98.29168835172914,19.87725382631436],[-98.29228289334162,19.878648173083434],[-98.29253245911536,19.879275487982795],[-98.2918853952566,19.87999869403734],[-98.29097731898662,19.880262857758964],[-98.28847151181992,19.883149899242028],[-98.28808432557992,19.88492042052502],[-98.28791833489106,19.88499548069484],[-98.28889440007333,19.886015815093685],[-98.29105260786571,19.888550199048666],[-98.28805951602601,19.888660547117468],[-98.28677440886264,19.887388564191156],[-98.28554846144539,19.8878644915186],[-98.27886317362652,19.892018149291175],[-98.2762457447397,19.893160380430345],[-98.27182593241542,19.894399386822954],[-98.27170826801506,19.89439998386166],[-98.2712083796726,19.89467481235829],[-98.26971178328728,19.895438960084732],[-98.26820993028213,19.897208277436903],[-98.26855327169307,19.90050138891786],[-98.2666411740222,19.901693719543346],[-98.26778857071463,19.9052763393193],[-98.26871587099475,19.91315628436479],[-98.26782019964264,19.916113919320594],[-98.26717057369422,19.915972846858438],[-98.2620291167147,19.9162623058956],[-98.26341725045802,19.915189801862823],[-98.25698470158278,19.916149346215775],[-98.25633930135353,19.915024171698633],[-98.25137156580598,19.91798911711885],[-98.24917585220464,19.917335876832965],[-98.24851308310787,19.917344086736477],[-98.24825192039606,19.92038941569882],[-98.24524023324653,19.92384439258194],[-98.2477166681656,19.924862887321297],[-98.24808580986974,19.92525889632452],[-98.25009868938747,19.926231567259606],[-98.2522040346584,19.92502764715107],[-98.2555404367501,19.92586128642],[-98.25561258700668,19.926210349515202],[-98.25626444945044,19.92930501623954],[-98.25386782293896,19.92892395036057],[-98.25121559732509,19.93054937174901],[-98.25222709571244,19.93245382750547],[-98.25104127967046,19.934851288365905],[-98.24609133496284,19.937172050959532],[-98.24421495304097,19.939219150846327],[-98.24402812389349,19.939528089156795],[-98.24219274914401,19.941149463595764],[-98.24591703669262,19.942955077733245],[-98.24638055186927,19.94313319973662],[-98.24669855632447,19.94311754633327],[-98.24881534726433,19.943563125072842],[-98.24914317469558,19.94369315749873],[-98.24951858613315,19.943914246566692],[-98.25384648594599,19.946070220161005],[-98.25160378149087,19.948149764331106],[-98.25094619351052,19.948489574302414],[-98.24956666904558,19.94918899299813],[-98.24377434290409,19.949125725629358],[-98.23738630595392,19.949780963082105],[-98.23389302912068,19.94881385061433],[-98.2317951501775,19.94902906106273],[-98.23017228264655,19.949406351324342],[-98.22732472057271,19.94737489358647],[-98.22522047700807,19.94858900824562],[-98.22208169451511,19.946932064855275],[-98.22102453719191,19.947914532696586],[-98.22619723895554,19.952322362056577],[-98.22654908295164,19.95341128733895],[-98.2267464910629,19.95622216972413],[-98.22587136308243,19.958268957261282],[-98.22356810023018,19.9604146055525],[-98.22236685504026,19.964043122381725],[-98.22006893267366,19.96621564328359],[-98.21976835914518,19.966536687333416],[-98.21708891529539,19.968129061338686],[-98.21320165997287,19.968370105385986],[-98.21313461570395,19.968144432333816],[-98.21311644901618,19.966930084967146],[-98.21310577886197,19.966520669256226],[-98.2097457533763,19.964382310512974],[-98.20734241050803,19.964317031309633],[-98.20742480763442,19.963918166505664],[-98.20114052796339,19.964469557897985],[-98.20003649961131,19.962314835605127],[-98.19882278679165,19.962370006387346],[-98.19812275344827,19.96199555888876],[-98.19782504468219,19.959792997415605],[-98.18069764033646,19.95975156774864],[-98.1649625973011,19.973572591171262],[-98.164215327092,19.97455792443884],[-98.16042798346689,19.978129571906265],[-98.16224001216023,19.98037662271321],[-98.16250524453704,19.98048806532387],[-98.16398811793113,19.98233378755191],[-98.16468831734636,19.98585136600707],[-98.16714163148646,19.987551774847645],[-98.1679535410434,19.990529443618243],[-98.17115526400801,19.994075614659494],[-98.17420123678482,19.997449055775803],[-98.17291154458792,20.000705267893693],[-98.17270958580673,20.001748632950125],[-98.17141634700641,20.003451728649054],[-98.17145267351361,20.003498884556677],[-98.17035857336634,20.011430644114284],[-98.16987632165097,20.01174105249703],[-98.16975861696483,20.013031247174695],[-98.16496095909054,20.019250371617147],[-98.16396113227108,20.022457818798785],[-98.17468841599589,20.02925790165773],[-98.17352919363174,20.034476337035926],[-98.1790370528089,20.041532843731545],[-98.18090285319539,20.046985539291484],[-98.1774206487986,20.04989252540412],[-98.17472031051426,20.053453143769445],[-98.17448263600352,20.053604400600136],[-98.16813350242751,20.057268716466865],[-98.16464021362248,20.070012114700944],[-98.1645477850737,20.07057971357301],[-98.16476523347546,20.071486601554057],[-98.16531381879219,20.073421360470718],[-98.16537422654494,20.074103156281467],[-98.16452078641066,20.074430116891165],[-98.16420496993322,20.07470967050432],[-98.1631188391425,20.075637892443808],[-98.16267736516221,20.07617788159621],[-98.16163077943042,20.077818889506204],[-98.1611177797094,20.079291871736075],[-98.16013203193319,20.080484182808732],[-98.15988574109241,20.081346108228615],[-98.15883273340216,20.082882948676968],[-98.15719080258151,20.084867442600114],[-98.15707193384054,20.085479109989365],[-98.15950481739407,20.091072645338443],[-98.1593037722721,20.09134322768108],[-98.15970474075851,20.092569967770885],[-98.15478305701254,20.095393283596252],[-98.15461470861942,20.09518313432318],[-98.15160801448286,20.0960927771589],[-98.15128448384917,20.09601532228578],[-98.14938387134254,20.09697931254709],[-98.1493639976078,20.097024939484868],[-98.14780658699254,20.097413818218172],[-98.14741853203736,20.09753820197659],[-98.14598530791147,20.0973275072447],[-98.14576186354287,20.097342045381993],[-98.14134249767937,20.100773790601693],[-98.14129020767757,20.10085772546165],[-98.14091580878397,20.100915652970116],[-98.14079361346353,20.100955387981173],[-98.14002260201755,20.10218178667077],[-98.14010795468585,20.102666660687987],[-98.13774613858493,20.104828795328388],[-98.13759550417859,20.104654783386252],[-98.13344392275604,20.1053920877917],[-98.13272485430485,20.10582239893131],[-98.13267531021893,20.106484721116885],[-98.13235166137014,20.106944054135568],[-98.13100464881285,20.10745811139384],[-98.13076675268758,20.107458167728907],[-98.12997919599718,20.107557632622786],[-98.1297594288053,20.10746827360981],[-98.12918097369754,20.10726518792626],[-98.12844414816311,20.10719660002877],[-98.12813876705746,20.107386746809766],[-98.12819681029248,20.107867607919104],[-98.12809734119782,20.10806308353682],[-98.12785361205295,20.107895333125953],[-98.12764017163022,20.1082129543463],[-98.12721682191261,20.109141394145468],[-98.12711971402786,20.109505343139574],[-98.12715713531475,20.11019046439941],[-98.12732652780392,20.110457317743283],[-98.12739210544242,20.11077467666621],[-98.12748346279903,20.110983192246692],[-98.12775847900764,20.11144311845402],[-98.1278953524697,20.111787719783536],[-98.12803186350789,20.112197838688587],[-98.12806487082355,20.11250916665682],[-98.12797363239781,20.11331120610589],[-98.12697938643367,20.11795074004567],[-98.12389965571134,20.121221228778666],[-98.12460706441146,20.12406989009014],[-98.12191332021996,20.124634568816305],[-98.11658722825865,20.12008607803955],[-98.11370074851993,20.12159797130704],[-98.10846246652295,20.12080339652931],[-98.10591880575589,20.12313596482801],[-98.1047873835609,20.12520098101379],[-98.10439485429788,20.12674916413488],[-98.10319897950012,20.127741357709112],[-98.10209196491547,20.12860921343224],[-98.10155656604303,20.129729543024325],[-98.10363105358545,20.13386425187838],[-98.10329510104151,20.135793857330157],[-98.103143365714,20.13715103714918],[-98.10073828611496,20.140112832131763],[-98.09903999599408,20.142163386529205],[-98.0978794437014,20.145389659133457],[-98.09929761085709,20.146800230886925],[-98.10064368847651,20.14682675198776],[-98.10095604868224,20.146525697739946],[-98.10233704262481,20.145809971984477],[-98.10245333607025,20.145616281117213],[-98.10283784692018,20.143246012507404],[-98.10593341796084,20.14242577729607],[-98.10708169667714,20.142688279569143],[-98.10741191999426,20.142846156569533],[-98.11020006289692,20.14328980025914],[-98.11285287789661,20.145336585203495],[-98.11723240711876,20.145485727165408],[-98.12181280846653,20.14779852379604],[-98.12473972277917,20.148518980343283],[-98.1251395397664,20.14858286621319],[-98.1294537957346,20.148256055795855],[-98.13296783221722,20.149504688694094],[-98.13620091921905,20.146986718034384],[-98.13969437122637,20.150347425917232],[-98.13989287280265,20.152381125824547],[-98.1399862245994,20.152594438692006],[-98.13958546545132,20.154961110608042],[-98.13563953462602,20.156157995279273],[-98.13398184677254,20.154569331801326],[-98.13367974314025,20.155099506460544],[-98.13355426883646,20.15947566683235],[-98.13042170122833,20.160858882616935],[-98.12983973512848,20.161241422888793],[-98.13309249259117,20.16602625444017],[-98.13205404258616,20.167027739855655],[-98.13255864238704,20.17058395886346],[-98.1303164306675,20.175866475315843],[-98.13005421967347,20.17620231853732],[-98.13178659734376,20.178586698994877],[-98.12937873723513,20.180958139291988],[-98.12932408916947,20.181208598002115],[-98.12806618230167,20.1833387699794],[-98.1281198858884,20.18354632380243],[-98.12796910438647,20.185461003479816],[-98.12795854757695,20.185941370679473],[-98.1292097307064,20.1870999458273],[-98.12948105383964,20.187568875381714],[-98.12965599517918,20.18880343556839],[-98.1335271663882,20.189644736102366],[-98.13420888551894,20.190321549362352],[-98.13489136347368,20.190863679362792],[-98.13491724470367,20.191348697873877],[-98.13494401825761,20.191672087267705],[-98.13570966256236,20.192672570296054],[-98.13607723435337,20.19334783669916],[-98.13658677536682,20.193792353326955],[-98.13701122533325,20.193857402032393],[-98.13708615490498,20.194156211993004],[-98.13724815158139,20.194554409214845],[-98.13741121330838,20.19508341634912],[-98.13740668517289,20.19575704787161],[-98.13768899058874,20.196263185074883],[-98.13781787624981,20.196450512501315],[-98.13768113386129,20.19685085768964],[-98.1377305458933,20.197410869308555],[-98.13788770439817,20.197818976151098],[-98.13817296986832,20.198110254006963],[-98.13843667264939,20.19859467676224],[-98.14044342791988,20.199911590143586],[-98.14082078827465,20.200056119462772],[-98.14195342790839,20.199101596175353],[-98.14241095457356,20.199075093816646],[-98.14383514329535,20.199505315094257],[-98.14402467559489,20.200020217489623],[-98.1446102006127,20.20139871304326],[-98.1451523617477,20.20191533032431],[-98.14835268508051,20.2047519829747],[-98.14850921569939,20.205051058712172],[-98.15139822446469,20.207873038619027],[-98.15401152352041,20.208752497403566],[-98.15409579544166,20.209101816133966],[-98.1529480776058,20.21246481833333],[-98.1552400031627,20.2162704630303],[-98.15517325262374,20.216776615161166],[-98.15510992158295,20.217217110825118],[-98.15202673283324,20.219353842879684],[-98.15171703420782,20.219620853545223],[-98.14924319840009,20.221012167249796],[-98.14890738114144,20.220975334774607],[-98.14700521092772,20.220614025652083],[-98.14781461371228,20.222981489885058],[-98.14766676600084,20.223370125428573],[-98.14754308533986,20.223781778254533],[-98.14746987342403,20.224414495505528],[-98.14741942512586,20.224757798754865],[-98.14734481810967,20.225078075218846],[-98.14739064793787,20.225582165353273],[-98.14835392508223,20.227098438885093],[-98.14878948633083,20.22739829465803],[-98.1496343283111,20.228364314805617],[-98.15023891587384,20.228848205358133],[-98.15089146297794,20.229446840448645],[-98.15113261031553,20.229768650260667],[-98.1514709046615,20.230090929395942],[-98.15161501324337,20.230389364699647],[-98.15175875913877,20.230756507795093],[-98.15197511966642,20.23116980650269],[-98.15226446804962,20.231560557377236],[-98.15265294044684,20.232284641718138],[-98.15342410079944,20.233410612998455],[-98.15598425629292,20.236102597598688],[-98.15610397940355,20.236423816945262],[-98.15706193044542,20.238196557135268],[-98.16109766763947,20.23666875659319],[-98.16118158028075,20.2377099608467],[-98.16126912561145,20.238076063974404],[-98.16239221391504,20.240050518904468],[-98.16253882347189,20.24052942388556],[-98.16280491131272,20.240980771086242],[-98.16327938553042,20.241517499862482],[-98.16678564942362,20.245111133160606],[-98.16759332559081,20.245519333278082],[-98.168277421683,20.245916395386416],[-98.16881174481205,20.246425261213744],[-98.17161072674458,20.250582936020123],[-98.17382997586895,20.250949746960373],[-98.17371433735775,20.25160964461827],[-98.1737125589978,20.2519458282473],[-98.17369312820938,20.25241000182956],[-98.17374253806236,20.25269839918036],[-98.17386038438895,20.25289106406973],[-98.17646745462258,20.254392176905355],[-98.18064775101448,20.25520290750444],[-98.18029899262376,20.25694627554958],[-98.18459355470094,20.25910682549403],[-98.18698684149996,20.258436511958337],[-98.18736404910334,20.258465499027466],[-98.19075495690731,20.25842402808945],[-98.19088221149332,20.258296646664974],[-98.19239567374518,20.258217746873356],[-98.19482934086449,20.255422777182275],[-98.19505576623254,20.255091071734455],[-98.19527649728764,20.25439992716906],[-98.19536994927603,20.25428654365777],[-98.19754041226952,20.25412209971114],[-98.19783913173615,20.25397531348284],[-98.19799226943223,20.2531450476161],[-98.19810136494203,20.2528629281216],[-98.19816901858303,20.252534193735926],[-98.19840552883079,20.25220356352753],[-98.19893649613005,20.25188775723285],[-98.19907356970452,20.251833007481935],[-98.19993320824886,20.251320586897236],[-98.1999261397603,20.25121028176335],[-98.19965724931228,20.250196635502505],[-98.19962146701556,20.25006265631015],[-98.20079808994649,20.24936397502347],[-98.20100029046273,20.24922545039493],[-98.20337382456898,20.24644976385565],[-98.2034460981518,20.24634111646037],[-98.20915189131614,20.24418166901978],[-98.20966254314436,20.242817091020015],[-98.20829264617242,20.239364654969222],[-98.2114029255232,20.236036776869526],[-98.21158592363525,20.235865897494705],[-98.21290961333062,20.234348049915354],[-98.21305171880431,20.234259656358518],[-98.2134096840835,20.234172228845637],[-98.21396224392794,20.234710722918805],[-98.21622027453304,20.237920564655383],[-98.22074632960027,20.236623873353324],[-98.22529270596874,20.236209320363514],[-98.22913872755078,20.236613217569868],[-98.22958877920081,20.236388327799943],[-98.23070546635688,20.23543138225989],[-98.23203490721573,20.234397738502253],[-98.23332482217859,20.23318858596099],[-98.23389172160154,20.23265306590514],[-98.23479576284802,20.229889892131098],[-98.23465731013852,20.228747400573525],[-98.23472422861249,20.22833463575637],[-98.2348375891516,20.227883292338788],[-98.23522603877171,20.225246566768476],[-98.23519629284812,20.22469569796135],[-98.23609108416923,20.22348279583491],[-98.24126734542062,20.22193487740077],[-98.24230933374395,20.21981520728258],[-98.24235755191955,20.219559843892398],[-98.2425151734447,20.219118260218238],[-98.24289232671157,20.218551941486055],[-98.24653555362204,20.21807345158396],[-98.24736467533063,20.218182191609856],[-98.24850578421803,20.218337854073354],[-98.24939235104449,20.21838817992102],[-98.25034288637386,20.218393660170022],[-98.25208720968106,20.21838234798969],[-98.2541559437874,20.21772581218562],[-98.25553226974353,20.217032450363263],[-98.25919349783021,20.21551228680488],[-98.25974057300158,20.215263809996998],[-98.26115817551374,20.21571281739915],[-98.26146653028144,20.21558357907719],[-98.26193795043554,20.215256660238197],[-98.26605495760299,20.21556676061681],[-98.27005050455477,20.215779777237003],[-98.2716478185028,20.216643730873102],[-98.27295096232012,20.217344802398713],[-98.27532404780743,20.219293115376672],[-98.27654165363515,20.220505177008363],[-98.27774178354679,20.222703741946987],[-98.27892478538223,20.22527289489426],[-98.28013479552772,20.229994717648424],[-98.28138318970127,20.233649169182172],[-98.28173001663873,20.236136532735145],[-98.2828527316762,20.24242388470134],[-98.28365636256149,20.24649278068233],[-98.28385614295854,20.248050385103795],[-98.28420341123012,20.249907359757117],[-98.2842194783833,20.249979295586854],[-98.28387145410369,20.25405988678193],[-98.28381552676376,20.255960078272835],[-98.28386742146716,20.256437388289953],[-98.28405436523747,20.257782668194523],[-98.28439522607187,20.257884154682188],[-98.28445801003704,20.259306347758866],[-98.28453942803185,20.260225416139576],[-98.28462420339042,20.26068237890712],[-98.28449165456624,20.2615936275609],[-98.28410809028998,20.263075147077927],[-98.28268629270963,20.26430617215857],[-98.28171577781575,20.26512800129109],[-98.28056650875271,20.266166632801855],[-98.27759030596775,20.266612985777954],[-98.2771054558986,20.26664667671065],[-98.27512314304118,20.26742855872311],[-98.27499019863228,20.26817384386908],[-98.27395096884072,20.269148956846834],[-98.27358420857689,20.26920192489297],[-98.2716661962744,20.270571949213263],[-98.27120553585604,20.270998952983575],[-98.26722613587503,20.272310610401632],[-98.26568332506565,20.274458459190384],[-98.26558709816015,20.274701546998756],[-98.26289200353074,20.281018268572666],[-98.25998703014534,20.285745035462924],[-98.25619816967765,20.286293648715684],[-98.2560311864043,20.286967800364323],[-98.25598344641867,20.289867637094176],[-98.25595924173257,20.290208721505053],[-98.25609263998973,20.29175121436947],[-98.25652644239403,20.29262990253511],[-98.25741754994328,20.298556423290336],[-98.25454824354307,20.301040558515467],[-98.25426911259461,20.301271296587345],[-98.25199747944123,20.30187550977581],[-98.24828566910566,20.301145149144816],[-98.24471037823156,20.301920245988015],[-98.24222073731005,20.304119347419487],[-98.23647647374139,20.304347479657395],[-98.23626546111592,20.30418532282596],[-98.23380924830371,20.300611135130964],[-98.23267153722026,20.300629243827416],[-98.23188774170893,20.296227824666005],[-98.22914390404793,20.2946519854666],[-98.22417538727137,20.29480435513102],[-98.22394097527177,20.294716875663482],[-98.21619281351451,20.29154583140712],[-98.21503869794276,20.291857809298108],[-98.21461957106726,20.292271162647182],[-98.21000766946958,20.293489762155218],[-98.20899870481543,20.29527410477823],[-98.20649988780525,20.29623883637396],[-98.20044753185158,20.292100445159576],[-98.19144805594033,20.291355122160667],[-98.19028696416285,20.294016408050652],[-98.18994418453667,20.29441083219149],[-98.1871712924202,20.293746441210146],[-98.18608709462842,20.294933260057405],[-98.18567671234024,20.294905740979743],[-98.17806782411719,20.294825840384817],[-98.17813647471701,20.297066629786286],[-98.179834556716,20.299489482448962],[-98.18042004721485,20.303449294345285],[-98.17869680610505,20.305132116626112],[-98.17792303821511,20.30941344712619],[-98.17953700084558,20.312785787380903],[-98.17847740174466,20.318209945958984],[-98.17853424229168,20.318954688398094],[-98.17820515570855,20.32132627814474],[-98.17843973467785,20.32174183982653],[-98.17849723267216,20.323654929617078],[-98.17869545665747,20.324548542586115],[-98.1788953654127,20.325123313192023],[-98.17922169056891,20.32567020138538],[-98.1793921051771,20.326193288911952],[-98.17956348108123,20.326520527310095],[-98.17923608464588,20.332355056983715],[-98.1817632544591,20.336282006080296],[-98.1802638833687,20.336011782593857],[-98.17614640881123,20.335219944563846],[-98.17065968768412,20.332635743978415],[-98.17038640881958,20.33235523301181],[-98.17020738682697,20.33227921516891],[-98.16967154211943,20.332314578494163],[-98.16772287082853,20.330861389566223],[-98.16745009300172,20.33064137969086],[-98.16287407046491,20.327978329229097],[-98.15761343611081,20.332451768283136],[-98.15096248507712,20.331439012174656],[-98.14801902428076,20.330439287442687],[-98.14491144549123,20.33054888890001],[-98.14264793879806,20.331969796110002],[-98.14455789567569,20.334679570435128],[-98.14421106551572,20.334471168389086],[-98.13871419074292,20.332766677343898],[-98.1351660629075,20.334000572143736],[-98.13477794967685,20.334060513009547],[-98.13294807920511,20.33548328584135],[-98.1326222655756,20.335822706032843],[-98.12794664651568,20.33601862051927],[-98.12759833191541,20.336278414478784],[-98.12683550316297,20.336231014269345],[-98.12629925724082,20.337012926523357],[-98.12494263337521,20.339752210403276],[-98.12540752913469,20.34329305806955],[-98.12719467123168,20.34439288871266],[-98.12689392859164,20.345069427788076],[-98.12618400477686,20.346296345815176],[-98.1239998953593,20.348502834273404],[-98.11740541147304,20.3501456544584],[-98.11517848121775,20.353647407617984],[-98.11473468224978,20.35395126962095],[-98.1138346210061,20.354511627429986],[-98.1131301654728,20.354485893843503],[-98.11250377939467,20.354295728771717],[-98.11332728226358,20.357733352692208],[-98.11355181070292,20.35920768374217],[-98.11334344607576,20.35950748140158],[-98.11560990235444,20.3632033964966],[-98.11418514913964,20.36414011726083],[-98.11306048679751,20.364614156481707],[-98.11105158778241,20.36631390240848],[-98.1067403051037,20.368123375023572],[-98.10764717442345,20.370453722313982],[-98.10785185071188,20.370976622308433],[-98.10807897550046,20.37160835666566],[-98.10802157815198,20.37356502062846],[-98.10774275442867,20.37407448536959],[-98.10606785486067,20.374026451599946],[-98.10533351038185,20.374279184751856],[-98.10432786289681,20.37437267884519],[-98.1020856649439,20.375404231778248],[-98.10193745358401,20.38028357478663],[-98.1015007042563,20.380876199332135],[-98.09902999692503,20.383048690377336],[-98.0931591573605,20.386590824182292],[-98.09110528109358,20.387283231962613],[-98.09041402092782,20.387903257783023],[-98.08979765767691,20.388522430065677],[-98.08938012782238,20.389068707413855],[-98.08898846468668,20.389685325150253],[-98.08864823702419,20.390419083378674],[-98.08858656079866,20.391455765620435],[-98.08857391784841,20.392421256128046],[-98.08860910671223,20.393221388448637],[-98.0886692641239,20.394021237374545],[-98.08860427898452,20.39479896122947],[-98.0883750324885,20.396402624837265],[-98.07731790098336,20.40311976007854],[-98.07678099620563,20.4060195649368],[-98.07686777528727,20.4070252243132],[-98.07746261839463,20.407834351867166],[-98.07904468012833,20.40892807563148],[-98.07735249848093,20.411310813997943],[-98.07385992293075,20.413564906609167],[-98.07269501254035,20.414432793437356],[-98.07244736655628,20.417053729090412],[-98.07610837933242,20.41768504541301],[-98.07685314436395,20.41887313663392],[-98.07660101406651,20.42080995343315],[-98.07479706232732,20.42109236324228],[-98.07390081711844,20.42336539486621],[-98.07345368650249,20.42416893916004],[-98.07188324310204,20.42609924619495],[-98.07048425990484,20.43027316257286],[-98.07005890734251,20.430326877381958],[-98.06651422272364,20.432724748070484],[-98.06316157628095,20.435984738671323],[-98.06127272360283,20.43548555130394],[-98.05904504624675,20.43743437112272],[-98.05860709078036,20.43783722559249],[-98.05741389321577,20.43856135920265],[-98.05699233392352,20.438747611125507],[-98.05566118589888,20.438776777728663],[-98.0553033808917,20.43867551675646],[-98.05361878495125,20.438589090698315],[-98.05265833957424,20.440845613994213],[-98.05251295412472,20.441453474135585],[-98.04662599546327,20.436801599686078],[-98.04613205113355,20.43666572871541],[-98.04441160084127,20.43674506788284],[-98.04278561057572,20.440567882438586],[-98.04040521256354,20.440081208137883],[-98.0399909565241,20.440185092320576],[-98.03914317174491,20.44127034974673],[-98.03907372975527,20.441595009193406],[-98.03900530940513,20.442233675280875],[-98.03892055339963,20.44242319810303],[-98.03805078334312,20.44325526537375],[-98.03775860263028,20.44350622050655],[-98.0349501390802,20.445166915660366],[-98.03472004738694,20.44532256764751],[-98.03386532281348,20.446524094371853],[-98.03405162765591,20.446838586874435],[-98.03348216383705,20.44778457898684],[-98.02397107045238,20.448934514831535],[-98.02357677345339,20.44924387236415],[-98.02002173995515,20.44997064556651],[-98.01805557962149,20.45335373645304],[-98.01759510323973,20.453794146961286],[-98.01721320670748,20.454495824410913],[-98.01683408402135,20.45482659546235],[-98.013037404118,20.454725046394003],[-98.01171030055781,20.45646211554123],[-98.01397292425287,20.456386182790084],[-98.01234047833486,20.458610970550012],[-98.01449999523413,20.459934675142506],[-98.01396933724521,20.46017215171088],[-98.01156195415774,20.461233006870316],[-98.01175779091523,20.462871309128104],[-98.01194656441231,20.463633682809586],[-98.01390900340664,20.465331206690337],[-98.01192263188659,20.471000125997136],[-98.00834252453183,20.474746036655404],[-98.00862671971942,20.480273181798736],[-98.00857644735328,20.480761164361013],[-98.00873756618125,20.48136132176427],[-98.0073472342998,20.483093707631213],[-98.00694689593666,20.482984455567816],[-98.00107653476243,20.483032988196214],[-98.0008781642203,20.483057756592984],[-97.99803156349617,20.483926937143792],[-97.99898060986817,20.485694929318868],[-97.99908783289214,20.485842786802095],[-97.9993449902185,20.486259185536937],[-97.99939798538855,20.486594593900293],[-97.99587343873259,20.486096303895465],[-97.99502937825633,20.485443520364925],[-97.9933703776008,20.48522135838084],[-97.99217168882365,20.491351119902333],[-97.99208852120938,20.491937550327066],[-97.98879099378473,20.495385200931537],[-97.9898303697255,20.49671773194757],[-97.9899526991992,20.497029597260678],[-97.99104707681153,20.49813017298993],[-97.99143577911457,20.49837018993452],[-97.9931909612169,20.500380249863554],[-97.99332841513421,20.502525333333324],[-97.9951064091241,20.502938567422405],[-97.99524359146,20.503025831406887],[-97.99742609986095,20.506095239026706],[-97.99288050290585,20.50763282886402],[-97.99204928039075,20.51069698102674],[-97.99193178200943,20.510830418565263],[-97.99131731592553,20.513264822014435],[-97.99103927586486,20.51364069960266],[-97.99015721361144,20.514740412982746],[-97.98976076041617,20.51508512161155],[-97.98815428730688,20.515674864109712],[-97.98760485691452,20.515601159856885],[-97.98504340794506,20.517036493659816],[-97.98507112007798,20.517405595543437],[-97.9851974792395,20.517663952251382],[-97.98572416581271,20.51823240169199],[-97.98630483829515,20.51813073371642],[-97.98746609309893,20.517899782146912],[-97.98838945133281,20.517830140248975],[-97.98902573348039,20.51799052524956],[-97.99023237884751,20.518712932949995],[-97.99012459383869,20.5194883736346],[-97.99002920363876,20.520198715182175],[-97.990847192481,20.520199658977788],[-97.99205852948921,20.51958122360321],[-97.99318844063379,20.520449484653852],[-97.99397399783777,20.521066228115103],[-97.9944611211709,20.522014213541468],[-97.99464883087592,20.522289026010753],[-97.99497804488863,20.522979510088476],[-97.99554289240325,20.522624502236738],[-97.99610241895658,20.522340023337676],[-97.99682539330615,20.522995090675465],[-97.99792301218247,20.523024305279137],[-97.99808101944575,20.52417513283507],[-97.99816631187423,20.524402572145334],[-97.99844975588337,20.524772328867073],[-97.9987646210352,20.525199868959135],[-97.99915155600087,20.524654224076073],[-97.9993084026209,20.523953081276773],[-97.99970093541174,20.524113870620226],[-97.99990174698223,20.52449332532541],[-98.0002347670486,20.524686808056742],[-98.00044682846561,20.524020507968203],[-98.00093197986308,20.52367264819361],[-98.0019404403663,20.52384166272452],[-98.00272157331716,20.523498167866194],[-98.00291458453484,20.523322644346194],[-98.00327204984649,20.522837877448637],[-98.00282791080633,20.523764481603678],[-98.00339523004664,20.52398915489482],[-98.00359614564644,20.524029663733415],[-98.00395522076383,20.52434484686796],[-98.00479133908516,20.524886152517695],[-98.0051692949998,20.52461425582925],[-98.00567584933998,20.52467458422535],[-98.0062233355867,20.524535905314167],[-98.00680374994027,20.524637743689254],[-98.00739543174478,20.524630531099604],[-98.00773275852669,20.52433486359206],[-98.00823423875585,20.524283625073906],[-98.00861476995681,20.52461628461043],[-98.00916894169694,20.52467022363919],[-98.01016408089208,20.52497084111053],[-98.01067633609892,20.52507814344432],[-98.01268057431747,20.52511051407845],[-98.01342995883277,20.525100288121166],[-98.01346147740469,20.524216889942352],[-98.01342474356198,20.524045082512032],[-98.01423327758323,20.52410393316245],[-98.0145062063782,20.524364476115352],[-98.01665487956217,20.52546074366336],[-98.01776476308976,20.527385032448194],[-98.01817268511098,20.528249050856346],[-98.01826437909148,20.528792449414482],[-98.01669770334803,20.528768740459157],[-98.01176896507752,20.52981911519032],[-98.01133649621556,20.530254014893956],[-98.01052002522704,20.53083896104323],[-98.00830564076648,20.532689814659932],[-98.0249147015744,20.577504418581952],[-98.02872817268775,20.589711602226885],[-98.01770980617312,20.601704906481302],[-98.02101000455616,20.626779999718792],[-98.02122645771925,20.627005810916444],[-98.02135000577363,20.627172485015535],[-98.02152494539854,20.627390246057246],[-98.02250592663376,20.62769301646847],[-98.02427862415931,20.628296641061638],[-98.02458257174152,20.628557210075655],[-98.02475945728702,20.628753829414222],[-98.02511739070576,20.62900570130347],[-98.0253399029138,20.629112562555918],[-98.02553228266049,20.629147898218832],[-98.02561491286946,20.629261213903305],[-98.0257020349394,20.629586860606878],[-98.02572057082466,20.630052193630377],[-98.02579274342145,20.63016649544727],[-98.02608311988843,20.63025405529271],[-98.02625246786255,20.63060062341674],[-98.0266941928275,20.630683243677083],[-98.02713160572904,20.630912385199906],[-98.0272046668668,20.63099871775171],[-98.0272870385885,20.63108973663924],[-98.02789999945787,20.631573280538703],[-98.02826235184597,20.631717633346284],[-98.02854093672931,20.63181982886624],[-98.02866186950314,20.631862954340647],[-98.02897805801888,20.631951140714023],[-98.02905666510947,20.631988165059056],[-98.02982292158669,20.63194818321938],[-98.02997480387404,20.631842221141653],[-98.03020911090101,20.631643475065175],[-98.03041919498656,20.631642920410172],[-98.0310066345445,20.631889923866822],[-98.03111722989075,20.631884816466254],[-98.03133349131218,20.632042250808638],[-98.03189476425428,20.632312536988024],[-98.03288570859178,20.632705865580988],[-98.03354740734886,20.632739078510326],[-98.03375232564304,20.632704467169106],[-98.0340780813628,20.632689420806912],[-98.03423829603764,20.63270562095289],[-98.03437186035109,20.63285375800342],[-98.03467090505063,20.632966297537735],[-98.03485744446624,20.632936236268165],[-98.03504339602921,20.63292611179287],[-98.03517364050015,20.632974067420434],[-98.03542497045743,20.633085358270534],[-98.03554540998914,20.63313837297642],[-98.03579615714193,20.6332696003675],[-98.03601715049746,20.633330219853292],[-98.03608751692781,20.63328217136791],[-98.03623811549062,20.633211269410026],[-98.03636575800095,20.63319962791104],[-98.0364414241455,20.633151716163752],[-98.03662353100299,20.633091610951965],[-98.03680267935124,20.632951620303515],[-98.03694856264013,20.63286064369629],[-98.03709999127699,20.632638132332318],[-98.03738983460198,20.632588908749426],[-98.03758677965743,20.632505732339496],[-98.03802253901483,20.63228370130554],[-98.03821370592345,20.632168837274207],[-98.03848621565805,20.63202455320686],[-98.03897546125569,20.63196305719748],[-98.03946468157432,20.631997056052057],[-98.03974497243524,20.63195469789099],[-98.0399794210793,20.63193242418953],[-98.05088394403913,20.648747249677967],[-98.05396000257684,20.652709998142427],[-98.0667828945596,20.67386973989801],[-98.07092921053516,20.676753373490385],[-98.07134288822579,20.677116226535247],[-98.07183526201192,20.677177127772893],[-98.0728696499267,20.677001329480504],[-98.07581831529404,20.67598388722297],[-98.07668991820947,20.672535532073596],[-98.07656406819473,20.67180694000126],[-98.0756418220812,20.67028314592295],[-98.07463442791692,20.670015538539587],[-98.0741891562065,20.669957370612053],[-98.07396686119557,20.669916622961637],[-98.07349745907544,20.669834485859212],[-98.07327482507276,20.66980540110643],[-98.0722573530104,20.670211086637835],[-98.0719113320032,20.670155472137083],[-98.07160389117377,20.670054158342964],[-98.0711181677118,20.66967975917919],[-98.07069787170411,20.66919031275802],[-98.07045024874338,20.66874033845238],[-98.07029218768758,20.66819928754677],[-98.07024204596729,20.667789427541663],[-98.07046635737242,20.66690804076387],[-98.07072976086067,20.666389535430085],[-98.07097446628404,20.66566042841356],[-98.07107582786665,20.66509482178003],[-98.07136507714051,20.663189949684238],[-98.07148122630645,20.66259463299781],[-98.07239545561424,20.661160708110344],[-98.07255461982089,20.660660642462062],[-98.0722845271091,20.658678404111924],[-98.07212522956013,20.658355009239244],[-98.0732408693882,20.656044410306606],[-98.07354899381886,20.65572569308705],[-98.07450417397285,20.654124386684373],[-98.07493452691608,20.653497470307286],[-98.07560703387173,20.652830855328205],[-98.0762655268864,20.652065765990017],[-98.07959862995017,20.649243421353958],[-98.0796866097279,20.648952487919132],[-98.08048465968449,20.645289060887706],[-98.08058130742319,20.644948445129728],[-98.08275630283799,20.642081504620364],[-98.08198751353234,20.63735132219489],[-98.08051090506831,20.635008038883655],[-98.08157363608694,20.63276525372538],[-98.0822978218473,20.632471974219072],[-98.08431527481423,20.630957507303663],[-98.08460513743523,20.630767039280784],[-98.08545603998624,20.62975961553923],[-98.08588121775193,20.628974327985134],[-98.08715983474394,20.626012307939845],[-98.08711137888668,20.62568894869753],[-98.08718089338083,20.625285823335844],[-98.08732510623662,20.624965712720154],[-98.08747723903934,20.624122937394702],[-98.08736159971312,20.623956074228204],[-98.08750978399257,20.622501295701795],[-98.0915551790012,20.623837475119558],[-98.09183689914221,20.624177025887832],[-98.09388437036802,20.62519759327205],[-98.09431479470055,20.625394641012292],[-98.09554132559447,20.625308699026334],[-98.09595120342487,20.625133196727234],[-98.09908644483585,20.62370050546474],[-98.09946160492223,20.62339197056258],[-98.09983995690618,20.623056295781964],[-98.09985554854808,20.619931409674564],[-98.09943977465537,20.619561221166464],[-98.09835571093487,20.616637282655972],[-98.10045791482423,20.614176049700745],[-98.10059181576878,20.613877783054534],[-98.10299211092325,20.614441102671435],[-98.10340071533028,20.614642102087316],[-98.10386108392021,20.615053116114723],[-98.10419135713323,20.615296910077348],[-98.10454113746425,20.615532695853688],[-98.1058273688651,20.61604648786846],[-98.10603975984867,20.61603377143433],[-98.10719706450368,20.615922150516155],[-98.10740701489402,20.615910503993973],[-98.10759294904494,20.615812611840397],[-98.10786378094895,20.615862065810063],[-98.10831979519992,20.615839693478165],[-98.10871106580697,20.615806592001547],[-98.1099797440076,20.61634485232304],[-98.11029705698542,20.616369969844584],[-98.11095562948964,20.616258057823075],[-98.11127903928269,20.616155165290934],[-98.1119825852432,20.615401877803208],[-98.11205548915802,20.6151292647628],[-98.1100913274538,20.61330863748634],[-98.10960454905171,20.61314478894201],[-98.1080282420703,20.61207977294589],[-98.10804805900551,20.611392393874212],[-98.10924924186497,20.609589672530603],[-98.10935864819959,20.609053729096615],[-98.10991253569097,20.607222559232355],[-98.11044639841344,20.607256610866386],[-98.11240220302216,20.606519995066208],[-98.11236187595102,20.60566152324509],[-98.11233304964406,20.605156643269254],[-98.1126330518556,20.604025016267883],[-98.11304095580579,20.60366398410855],[-98.11346192444103,20.603434849372093],[-98.11402167062249,20.60323874364559],[-98.11497676107575,20.600103858340105],[-98.11527144750647,20.6000767838176],[-98.11717832087606,20.600869437317044],[-98.11841013586252,20.599585763169785],[-98.11837814732002,20.59877117672812],[-98.11867046556785,20.59815596565312],[-98.11912293705399,20.597751822854093],[-98.12026161162555,20.59719276925938],[-98.12102597147384,20.597000718526942],[-98.12170142164013,20.59688465757796],[-98.12208613977151,20.5970776243322],[-98.1242875275833,20.597932694314295],[-98.12690596572799,20.59726720691367],[-98.12683121893178,20.59676570298427],[-98.12638432600716,20.59630463649546],[-98.12250892023667,20.595274281957018],[-98.12134237584837,20.595211114820245],[-98.12058553281202,20.595141931507158],[-98.11988354156637,20.59492443144103],[-98.1189441449813,20.594417901690804],[-98.11872358883136,20.594129304398734],[-98.12043964360134,20.592841519002036],[-98.12118988923072,20.592804490339063],[-98.12383894066721,20.591237609611483],[-98.12131880776025,20.588149181358972],[-98.12279767977418,20.585806234704137],[-98.12302848078508,20.58582175190645],[-98.12977076121683,20.590863940698966],[-98.13087636155257,20.589858245791334],[-98.13099790501752,20.589147377545828],[-98.13182285642381,20.58683819851791],[-98.13155547068715,20.586418003606695],[-98.1301442882297,20.585479919276167],[-98.13020081574422,20.58493639158837],[-98.131585821675,20.58325673568976],[-98.1317463307987,20.582698837901887],[-98.13207491347418,20.581991531522362],[-98.13258135623232,20.581970371187936],[-98.13323511232556,20.58193593798319],[-98.13438902848213,20.58187097883456],[-98.13512027030549,20.5819692230736],[-98.13552617901075,20.581547509303732],[-98.13546397919629,20.580689467700267],[-98.13543500463618,20.579891332411762],[-98.13564289361386,20.579444648044557],[-98.13604331125703,20.579087911187116],[-98.13827529643794,20.577181318205135],[-98.13784599015099,20.575516836062263],[-98.13813477349186,20.574767682819356],[-98.14071674446996,20.571820286499985],[-98.14122259287996,20.571649943234092],[-98.14264847960936,20.570300149138745],[-98.14258830714039,20.5695398816938],[-98.1448700285959,20.567400839347897],[-98.14591261834607,20.566904396382768],[-98.14664731512886,20.566478409929914],[-98.14716270944632,20.565888090872818],[-98.14780259097984,20.564310816781187],[-98.14774088322878,20.563856734075557],[-98.1495570794225,20.56283432124951],[-98.15248532410112,20.5652985477966],[-98.15378884468049,20.562742249069572],[-98.1534254236841,20.561972629158277],[-98.15288535400839,20.560218085617805],[-98.15283475745076,20.55962705741524],[-98.15310152182207,20.556095873665754],[-98.15218323965576,20.554515506150665],[-98.15241176835286,20.553763684110322],[-98.15384866901303,20.552101070915114],[-98.1544280386903,20.55179815221379],[-98.15561216054476,20.551230942819302],[-98.15606155186583,20.551179346953575],[-98.15764774885093,20.550953438922306],[-98.1578335688601,20.55077043130808],[-98.15714457579111,20.545870642073794],[-98.15785597253972,20.5459197875432],[-98.15820400875015,20.54595975980851],[-98.15848421564658,20.546013897258945],[-98.15800658308632,20.542826309885186],[-98.1580430186226,20.54256127893774],[-98.1619419302607,20.54229614965334],[-98.16242710439826,20.54200103637112],[-98.16514716923331,20.539915902543555],[-98.16560491843728,20.539144328787017],[-98.16708012075395,20.536205574367273],[-98.16790599215074,20.535697873219533],[-98.16905784639692,20.534308664831542],[-98.1695269614051,20.533814091895863],[-98.17075324440583,20.532431282993116],[-98.1711478982217,20.5320147872647],[-98.17250839304319,20.530058084413213],[-98.17289371304497,20.52971563426803],[-98.17807663192582,20.52771091853168],[-98.17854281218519,20.52774360440236],[-98.18023252680922,20.528698968804576],[-98.18050746456498,20.528853301315223],[-98.1821881498953,20.52621048763001],[-98.18258907115847,20.526166673824434],[-98.18397966457002,20.52663080012769],[-98.1842787908003,20.52678119561631],[-98.18562182678369,20.52756563139252],[-98.18796760454268,20.525837062522612],[-98.1883448283848,20.523219945995436],[-98.18877208476005,20.523095688108242],[-98.1902513796295,20.523829056410307],[-98.19086633007686,20.524562329219748],[-98.19483904490846,20.525074510021852],[-98.19509030315669,20.5251295573496],[-98.19567332435912,20.525458841972466],[-98.19589799841805,20.525688441053205],[-98.1994388147557,20.525859014329228],[-98.19970404284965,20.525819605920447],[-98.20057994289363,20.525979565503633],[-98.2011723593211,20.526132444996847],[-98.20144244751168,20.52626807213676],[-98.20395806797274,20.527864130584646],[-98.20453687824988,20.527915989986752],[-98.20489748331585,20.527850131355535],[-98.20544094872923,20.527788830704367],[-98.20592971358559,20.527789106848104],[-98.2064735283958,20.527715336207848],[-98.2070015060051,20.527691069110688],[-98.20929268367178,20.5263537804762],[-98.20985667207827,20.52616142079961],[-98.21102609251858,20.52653076387253],[-98.21121269123319,20.526917030826212],[-98.21135087284705,20.52782774448167],[-98.21133208642277,20.528497526003434],[-98.21141591410804,20.52868503686466],[-98.21160089624522,20.52869984791164],[-98.21392536538161,20.52720454493209],[-98.21484909783265,20.526718879330986],[-98.21610569548801,20.52543798100669],[-98.2168638338984,20.52476049577382],[-98.21771467223329,20.524125571069874],[-98.21971371056043,20.522983308021992],[-98.22008083862403,20.52311377323383],[-98.22119734116245,20.52356734662493],[-98.2215488983062,20.52365205821394],[-98.22457082640568,20.522951899078862],[-98.22485063555877,20.52276094154854],[-98.2264497440134,20.522056069442215],[-98.22677766797295,20.52186630151516],[-98.22912950328202,20.52032893189761],[-98.22936160890066,20.5201214747658],[-98.23062205247993,20.5169698984393],[-98.23059728293975,20.516477094693926],[-98.23062976413411,20.51600328725192],[-98.23247973254439,20.514241373953666],[-98.23246929214116,20.51401146505691],[-98.23047730471353,20.511372479960528],[-98.23032651948989,20.51090944522622],[-98.23032234692988,20.510541334967343],[-98.23052404442433,20.51030137089259],[-98.23289082894485,20.510118415528837],[-98.23329949097388,20.509794546066757],[-98.23353593952396,20.509257744530373],[-98.23369007066867,20.50692423943724],[-98.23410279800925,20.506195039872694],[-98.23445645613339,20.50603027828197],[-98.23492463345679,20.505816181996238],[-98.2371292647303,20.50540177120058],[-98.23758922256303,20.505396132131295],[-98.23923643277686,20.504769447860212],[-98.23957265496011,20.501944294416603],[-98.23985461368375,20.501414282241853],[-98.24247024352627,20.500846647193896],[-98.24293274840795,20.50109508522013],[-98.2434604419729,20.503241284908313],[-98.24357129138224,20.50349691742474],[-98.24542575919986,20.504332556461804],[-98.24575839834927,20.50440370323969],[-98.24678238435308,20.503765532719683],[-98.24712334973168,20.503536921956822],[-98.24728929923168,20.501202577066124],[-98.2491045877644,20.501368107468465],[-98.2493944566288,20.501332157355762],[-98.2531774314661,20.500334944564088],[-98.2533808384099,20.500378510476764],[-98.2550610123269,20.50038130800357],[-98.2552563185522,20.500282914656964],[-98.25547725095748,20.50012844867848],[-98.2556192880337,20.500041218817614],[-98.25673343252618,20.498752553645716],[-98.25675708523966,20.4985070450154],[-98.25732208844585,20.4962726755208],[-98.25745694686441,20.49609681150946],[-98.25935072536527,20.495685783017677],[-98.25948697682827,20.495720318624933],[-98.26361639183091,20.491413706031153],[-98.2637386302456,20.491258507500675],[-98.26540431608908,20.48864629110119],[-98.2658562511582,20.488406190681474],[-98.26611679081941,20.488298045269744],[-98.27136958640244,20.481818782768983],[-98.27168075778809,20.48179408732011],[-98.27391400762565,20.48180683073747],[-98.27411383282754,20.48180491957254],[-98.27572050770738,20.478964365758486],[-98.27596445020993,20.47884615941564],[-98.27717060421645,20.47865964083337],[-98.27730615403226,20.478544450559014],[-98.27641812782849,20.475484078925376],[-98.27735901062738,20.472694705054835],[-98.28010275755355,20.472167578348092],[-98.28046356421447,20.469377053251947],[-98.28570595440442,20.466638875648698],[-98.2877194063226,20.464831622981933],[-98.28782661067243,20.464783774767284],[-98.29215012440523,20.46491244857185],[-98.29222863851157,20.4648576609942],[-98.29348890555411,20.462956001251598],[-98.2935391065754,20.46279279174263],[-98.29502151290734,20.460160559412202],[-98.2954664189611,20.460171393150176],[-98.29727326782114,20.460538571663903],[-98.29919522803647,20.458899624203696],[-98.29937128057713,20.458885762355123],[-98.299059885681,20.455933161260305],[-98.29912944077915,20.45559011438297],[-98.30065679396449,20.455440716331566],[-98.30096141460956,20.455477040340043],[-98.30250214625511,20.4542228584873],[-98.30262793779116,20.454110813915122],[-98.30507427109825,20.454322204463722],[-98.30517413455846,20.45419024999626],[-98.30634667886437,20.452582351832348],[-98.30652738814825,20.45248581269118],[-98.3080040269902,20.452077125094036],[-98.3081379759671,20.452018572480767],[-98.30858142856806,20.451553051533097],[-98.30857807781689,20.45132333451187],[-98.30869982116849,20.449949609110718],[-98.3088571006162,20.449653481698192],[-98.31125725571695,20.449878962406387],[-98.31149825367766,20.449865527658346],[-98.31178663469382,20.44987932330099],[-98.31201611925894,20.449846897585928],[-98.31230483078303,20.448084855456273],[-98.31234881816602,20.44797195475701],[-98.31384006576849,20.447113370285763],[-98.3138945202283,20.44696953793425],[-98.3157125736139,20.445685100694277],[-98.31573403509935,20.445603972688616],[-98.31538153641463,20.444588446675823],[-98.3153005668816,20.444557568622827],[-98.31507705256672,20.44366537022023],[-98.31510419388906,20.443464176556347],[-98.31522512598139,20.442823563908462],[-98.31525655618208,20.44255330061526],[-98.31392574739999,20.439737107501003],[-98.31391382053994,20.439468629504177],[-98.31708414844923,20.437119246158716],[-98.31708904287649,20.436939627478807],[-98.31727369595097,20.43625576718722],[-98.3174186365124,20.436057993263034],[-98.31735304948666,20.434403052753055],[-98.3172068648006,20.434205035057516],[-98.31712052250339,20.432164039756913],[-98.31716117401027,20.431996627365777],[-98.31771032172867,20.428266080271953],[-98.31801030856758,20.428293753691946],[-98.31909491880288,20.42619039128664],[-98.319144522555,20.425959126176963],[-98.31966056838979,20.42485521249756],[-98.31973863631339,20.424638810896965],[-98.31677354277923,20.42406015330613],[-98.31653636334073,20.42384689217471],[-98.31605383544706,20.42319054087733],[-98.31619150328714,20.422996313001022],[-98.31636901425424,20.422818300181802],[-98.316598409285,20.422656326178696],[-98.3183204092353,20.42247374960118],[-98.31852842363662,20.422432858448133],[-98.31962968722792,20.420245992796538],[-98.31978970876702,20.420112087059238],[-98.32010473298993,20.41958674212526],[-98.3201878193841,20.419450974712674],[-98.32101362063798,20.41801379878683],[-98.32367541246856,20.41868313146182],[-98.32394138185111,20.418722444910486],[-98.32680236185706,20.41808283280517],[-98.33010796427152,20.41568604215604],[-98.33025350367001,20.41564192715265],[-98.33261498150767,20.415675639007816],[-98.33273704761734,20.415609977299937],[-98.33494195146898,20.414763890137465],[-98.33520114957321,20.414786578234896],[-98.33732254814703,20.413381103092775],[-98.33734017835991,20.413085563501568],[-98.33751857122377,20.412627769860705],[-98.33766762358454,20.412631358993224],[-98.34076546184338,20.411321355154882],[-98.34087690695685,20.411292285500963],[-98.34247009342175,20.410645128196336],[-98.34282780966771,20.410493841931952],[-98.34599827288969,20.408095183631133],[-98.34607487812491,20.40760973830686],[-98.3463368645343,20.407375236820883],[-98.34671422944808,20.407225411554236],[-98.347950443196,20.406890753098764],[-98.3482350915678,20.40686130140648],[-98.34905243787358,20.404866498761976],[-98.34927908520626,20.40476648681215],[-98.35065658846207,20.404210769678173],[-98.35127149698769,20.40404072543231],[-98.35211472262074,20.403914747192914],[-98.35254756327498,20.403566254699342],[-98.35309345019715,20.40321381716916],[-98.3532021396266,20.40311008945173],[-98.35365014206621,20.40272208607405],[-98.35528168975259,20.40183513717625],[-98.35551181553183,20.401775449968],[-98.35590818767332,20.401884168359288],[-98.35663416167495,20.401901561612874],[-98.35722979152911,20.401935673508774],[-98.35824955977904,20.401583625266483],[-98.35855510461585,20.401492288003908],[-98.35981996321931,20.399809742567754],[-98.35999838221773,20.39979416896972],[-98.36410755420076,20.400660711192927],[-98.36428574525956,20.400653631678892],[-98.36539956561575,20.400917816035076],[-98.36553693678735,20.400908058585458],[-98.36683327376824,20.40118339767281],[-98.36715688393667,20.401225146446848],[-98.36813125999146,20.401397532003898],[-98.36821022283624,20.401413025000807],[-98.36942970588268,20.401863401971184],[-98.36962369082903,20.401895247330287],[-98.37047077406919,20.401881447066557],[-98.37077698117963,20.40185473607545],[-98.37167051123322,20.40163395866523],[-98.37190128462169,20.401639464108484],[-98.3732919199461,20.400462714505466],[-98.37341674929473,20.400292764928224],[-98.37511721755737,20.39931162289747],[-98.37515651123965,20.399191794678813],[-98.37535239262331,20.399152806581128],[-98.37545484658233,20.399189266617327],[-98.37560807380572,20.399305745540573],[-98.37567080174796,20.399298735880507],[-98.37667721519261,20.39854483319266],[-98.37676994740173,20.398585029500452],[-98.37876441289637,20.399018639638825],[-98.37892687278031,20.399059927923474],[-98.37913006159124,20.39910728846968],[-98.37929690449482,20.399164555879338],[-98.37961574276227,20.39929461186739],[-98.37979516675631,20.39933120032248],[-98.38355019090574,20.401301180160203],[-98.3836689302837,20.401358432843153],[-98.38403009320382,20.40152520516608],[-98.38432336812406,20.4015321777772],[-98.38614879039028,20.40271290837103],[-98.41829413340866,20.38004869848743],[-98.4332923562564,20.363834041125358],[-98.44874540900963,20.345367893678997],[-98.46038915928267,20.33144962200339],[-98.46308003298174,20.33170104113833],[-98.46351973256179,20.331986798814512],[-98.46413179116308,20.332300942344716],[-98.4643394844897,20.332541049106737],[-98.46454484304519,20.33259458124263],[-98.46476512507559,20.33272102722964],[-98.46497005462425,20.33279098979159],[-98.46504206926778,20.332979184495002],[-98.46536164146158,20.333262143535023],[-98.46552736286617,20.333452516844318],[-98.46850299016114,20.334770053038028],[-98.4687708483495,20.334732054663277],[-98.46895749297812,20.334765870469084],[-98.46920428681,20.334890091224565],[-98.46946790032047,20.335014702204376],[-98.46965579470327,20.335092766787795],[-98.47569699536024,20.335760185887864],[-98.47590629417834,20.335939652579896],[-98.47616598477634,20.335938302294835],[-98.47629794499039,20.33594873115709],[-98.47739343368733,20.33634999461333],[-98.47759069474387,20.336437904196544],[-98.47783577781433,20.33644358267486],[-98.47884642031448,20.336317891910255],[-98.47913874887922,20.33626343408406],[-98.48542817287523,20.33515378598571],[-98.48562039332262,20.335158229814795],[-98.48760287181011,20.33547390572386],[-98.48789220831583,20.335534448767362],[-98.4881155476146,20.33554414379239],[-98.48818188344876,20.33558195970312],[-98.48820288050769,20.335699232216257],[-98.48823841190506,20.335812305051434],[-98.48931455837015,20.336589476284928],[-98.48945527275697,20.33654056823258],[-98.48959123705066,20.336674668680132],[-98.48972618694648,20.336847863752666],[-98.4899311356532,20.336917792916097],[-98.49076337948435,20.336439809081526],[-98.49095194159668,20.336585327150033],[-98.4912562268741,20.336811185346562],[-98.49163877692058,20.33689314821453],[-98.49219088941209,20.33692629827567],[-98.49466272239817,20.33737903071193],[-98.4946244868504,20.337555598069684],[-98.49472136630061,20.337713737586057],[-98.49489191072223,20.33790532359251],[-98.4951214886159,20.338045545959574],[-98.49533825043949,20.338123677167175],[-98.49563216198214,20.338286358271887],[-98.49627441542867,20.33864528828417],[-98.49649440362498,20.338691744118364],[-98.49670399224726,20.33867559767208],[-98.49683964032283,20.338543794178804],[-98.49743143430663,20.337880515821894],[-98.49776652850096,20.33775273973356],[-98.49808401022801,20.337655171416543],[-98.49820823727282,20.337685812524853],[-98.49913753675304,20.33828718457056],[-98.4991552316182,20.338439529209666],[-98.49949116523965,20.33874376905493],[-98.49960907963884,20.338739680941956],[-98.49964780552233,20.33863682445417],[-98.49962432402799,20.338429354442894],[-98.49998136916173,20.337360409195355],[-98.50015963264462,20.33725396206654],[-98.50043888510305,20.337239981251628],[-98.50247601944045,20.337396846497768],[-98.50268424280841,20.337526361209427],[-98.50360283467666,20.337891616620084],[-98.50385212577271,20.33782761759977],[-98.50400581592254,20.337648600881153],[-98.50402156269524,20.337318443510355],[-98.50407731823202,20.33664961612493],[-98.50425833070796,20.336436645047],[-98.50448096852585,20.336380536173863],[-98.50480294174753,20.33638793911348],[-98.50652393926492,20.33649722956801],[-98.5066382395197,20.33672606046838],[-98.5073322414944,20.337316304834474],[-98.50735614430084,20.33750790887393],[-98.50761499924721,20.337818296310218],[-98.50781743881942,20.3378926789635],[-98.5100506232692,20.33799952064959],[-98.51008274729992,20.338152194941472],[-98.51043251057399,20.339039530261516],[-98.51064033478428,20.33918489887418],[-98.51090073853572,20.33924926925556],[-98.5118417454454,20.339306012785926],[-98.51202228166147,20.339111162979634],[-98.51242849057297,20.33827632562003],[-98.51273995936657,20.3382250770523],[-98.51551862266979,20.33741005275965],[-98.51568262667126,20.337390000793505],[-98.51607872659008,20.337133189716894],[-98.51630311610114,20.337195591567195],[-98.51802721352311,20.337465262939702],[-98.51805988613876,20.33759697152061],[-98.51815919582884,20.337755151141323],[-98.518270231977,20.337831394774412],[-98.51835334952841,20.337964825559595],[-98.51848276258988,20.338074371715948],[-98.51951039273547,20.340090087350347],[-98.5225700530109,20.3410632215506],[-98.5229815610025,20.342638491814853],[-98.52561985584765,20.34214095055455],[-98.52649527256955,20.34390993126368],[-98.52647513418026,20.34403873113473],[-98.52651639329684,20.344117343182972],[-98.5266135892935,20.344171154432104],[-98.52665431012707,20.34427073055633],[-98.52695955392699,20.344836696930372],[-98.52707437147222,20.344859729295365],[-98.52710400929624,20.344922768639435],[-98.52725514992738,20.34502940240668],[-98.52863612610656,20.344901633473455],[-98.52872345669857,20.345152509777392],[-98.52927869931727,20.345908431946327],[-98.52944632911016,20.346028479388167],[-98.53361916788037,20.34597967831138],[-98.53448931911532,20.346927013291292],[-98.53448390354794,20.347138354904985],[-98.53431368321571,20.348057437975285],[-98.53430383877571,20.34844159281954],[-98.53543700646986,20.350104150684956],[-98.53573472430782,20.350308793917804],[-98.53666231036635,20.351362310098807],[-98.53662455533532,20.35161600269265],[-98.53665983553651,20.351834508435218],[-98.53885076350247,20.35275634295806],[-98.53889674233983,20.354717844779316],[-98.54085613086977,20.358207696270654],[-98.54229726872603,20.356295890880574],[-98.54533292851806,20.359075977341718],[-98.54861714407855,20.35975378223958],[-98.54740241816029,20.361182094337323],[-98.54868346208156,20.364692736264203],[-98.5458154306906,20.367674903894],[-98.54554325886374,20.36788018912887],[-98.54651424121784,20.369784485160324],[-98.54488906978332,20.371366181352982],[-98.54306480415084,20.375560344053156],[-98.54576379243764,20.37628613551101],[-98.54453327389643,20.38077219013354],[-98.54558512514637,20.38167938935436],[-98.54467013064033,20.384733720125098],[-98.54561218219442,20.385515398908467],[-98.54560230921805,20.38590183301841],[-98.54510405696544,20.387894109719923],[-98.54521171839434,20.388198739355005],[-98.5479969709096,20.389606791595668],[-98.54824931148681,20.38980301431269],[-98.5470465140225,20.390941924849585],[-98.5465126318764,20.391033553869534],[-98.54528494775764,20.39276888646998],[-98.54550676367438,20.392747845451254],[-98.54572188927682,20.3927062419113],[-98.54602685290467,20.39263152750931],[-98.54674990380681,20.39257310998181],[-98.54696398831987,20.392666415377562],[-98.54750223945535,20.392780686862466],[-98.54784560952544,20.392897336228202],[-98.5479649051166,20.39302930897503],[-98.54808298571862,20.39320887794844],[-98.54938842812709,20.39445688161277],[-98.54957858364082,20.394639785732863],[-98.54984029804785,20.395034652138747],[-98.55004887718013,20.39713483934139],[-98.55007786866946,20.39750685109118],[-98.54923497339064,20.399715288528512],[-98.54887806089062,20.39965729797393],[-98.54867164587648,20.40029950862197],[-98.54865922020258,20.400786240526713],[-98.54870687573651,20.403159462233134],[-98.54904934750806,20.40331237404456],[-98.54934686235919,20.403718828265767],[-98.54933342640072,20.40424522556185],[-98.55013261450114,20.405353045664697],[-98.55030394447544,20.405520215312038],[-98.55039361387384,20.40577681268951],[-98.55048329807096,20.406032843439732],[-98.55053544318531,20.40625173755535],[-98.55042230579733,20.406537752688166],[-98.54998624364384,20.406847058775213],[-98.5506241494711,20.408997257193505],[-98.54955824231143,20.411552742863307],[-98.55000923575295,20.419047995620247],[-98.5503004535177,20.419325608943893],[-98.55037553234513,20.420625657844255],[-98.55021521818583,20.42078020489157],[-98.55054204280111,20.422113745842807],[-98.55066287875968,20.42237502183974],[-98.55125363695112,20.423641976176953],[-98.55132121376619,20.423822102300733],[-98.55124629282926,20.423929827926486],[-98.55107227245622,20.424055717343947],[-98.5508676498983,20.424249515479914],[-98.55118719960723,20.426717392887724],[-98.55155374907338,20.426871980447004],[-98.55183835180321,20.427126763528747],[-98.5519160547289,20.427287275555045],[-98.55189756646786,20.42744617410392],[-98.55164691370993,20.427746654206203],[-98.55154861625363,20.42792188647104],[-98.55153699349131,20.42837746451511],[-98.55156998566508,20.428593093030315],[-98.55153998055766,20.428731886776063],[-98.55144266530016,20.42886858761409],[-98.55163708744595,20.430772337467488],[-98.55186647256448,20.431117151292995],[-98.5519855072784,20.431355141388337],[-98.55226944094528,20.4316365567272],[-98.55240826353958,20.432136367665464],[-98.55233419686732,20.432304779681488],[-98.55223534255293,20.432407428444947],[-98.55206575985409,20.43254759490617],[-98.55080237825467,20.432558641657067],[-98.55044720443613,20.432523373389643],[-98.55021945547048,20.43249156107595],[-98.55000652479589,20.434706985613445],[-98.54974306151615,20.4349431065757],[-98.55080314036059,20.435357222107598],[-98.55131703284411,20.43530140370916],[-98.55175670638806,20.435325544969714],[-98.5524829827155,20.437319033346796],[-98.55255563736199,20.437489070340348],[-98.55268638741524,20.43755099836801],[-98.55288837406817,20.437555575493718],[-98.5546875920927,20.440688599529267],[-98.55479239949244,20.44110769804871],[-98.55500777172813,20.441814487872534],[-98.55510131583515,20.442109164321494],[-98.55516565021316,20.442322669134967],[-98.55519169746401,20.44252793633126],[-98.55518113273627,20.442659234939185],[-98.55518386965753,20.44283505869953],[-98.55509376203332,20.44297192680409],[-98.55495186291517,20.443063965067495],[-98.55477150279262,20.44315456522793],[-98.55465272584973,20.443283413195786],[-98.5545613028799,20.443471845888382],[-98.55451039007147,20.443958857431653],[-98.5544936784637,20.444236863269566],[-98.55452429573046,20.444545990728102],[-98.5545323970166,20.444794509015992],[-98.55453965370049,20.444981774967005],[-98.55447982328457,20.445157882984233],[-98.55435280439781,20.44532679951675],[-98.55390776305,20.445889363778235],[-98.55377282050881,20.44608588225617],[-98.55460629906003,20.447086761856553],[-98.55489826589553,20.447148937397344],[-98.5561892266033,20.44823274080153],[-98.55628453120829,20.448364168660135],[-98.55860234279294,20.45174023339746],[-98.5587802016667,20.452031714024088],[-98.5591344001781,20.452201880767745],[-98.56027413357731,20.45336897942599],[-98.5606737496999,20.453740312721663],[-98.56114144594608,20.45436775709794],[-98.5615269722789,20.454631043963843],[-98.562697247073,20.45582886596503],[-98.56306283833118,20.45593010972493],[-98.5633812233529,20.456089819090096],[-98.56375234371677,20.45635220809379],[-98.56404937220611,20.456689465143825],[-98.56443152487884,20.457180594328406],[-98.56572928274659,20.458477092607097],[-98.56601929188287,20.458522760110668],[-98.56743086901872,20.459318335214277],[-98.56758296244425,20.45948845863893],[-98.56843702131522,20.460633746519477],[-98.56856797587062,20.460783547988854],[-98.56881977657287,20.461102200006337],[-98.56904303204118,20.461313048603188],[-98.56959381054861,20.462177639995616],[-98.56981940519148,20.462486061072923],[-98.57019526506008,20.462752510765142],[-98.57048958435013,20.46300804992029],[-98.57084925479415,20.463153933066565],[-98.57116989456767,20.46322579517414],[-98.57229723406283,20.464604581690196],[-98.57235593858132,20.464946660378246],[-98.57239238428821,20.46540730397527],[-98.5723798901733,20.4669435455055],[-98.57661293061636,20.470553576111342],[-98.57672227137806,20.47070231807089],[-98.57542409764261,20.47245230432759],[-98.57749148179067,20.47273298470577],[-98.57783304874539,20.472834786679186],[-98.57871190785983,20.474718231677514],[-98.57854831013765,20.474906194443975],[-98.57676015158052,20.476236949543875],[-98.57698683213624,20.47631405637088],[-98.57923311804467,20.4768504791125],[-98.57930822108898,20.478732297395027],[-98.58299710147617,20.480469649215138],[-98.58326816418992,20.480505219213455],[-98.58413695603889,20.481173358912258],[-98.58430886713563,20.481418187948748],[-98.58475643871242,20.48189770035134],[-98.58503088219669,20.482180550133705],[-98.58531978836618,20.482367335897607],[-98.58553354056778,20.482480427208827],[-98.58585072608707,20.482595838933662],[-98.58606416411476,20.482721396209683],[-98.58629830703461,20.48307534725558],[-98.58630394909926,20.483328350972783],[-98.58615774810022,20.483589855101513],[-98.5857901884853,20.484229677703695],[-98.58603242371618,20.48521600486464],[-98.5860447519205,20.485394883327047],[-98.58685992471254,20.4861865440447],[-98.58702786633609,20.486398396259915],[-98.59039144587712,20.48883021150084],[-98.59071172800736,20.488919034046205],[-98.59266838854069,20.48902012371923],[-98.59299426957887,20.489077882280185],[-98.5939607379321,20.489599036255072],[-98.59415723298736,20.48982456072281],[-98.59492767882443,20.490865788700432],[-98.59498419714225,20.4911063238755],[-98.59498211321113,20.492908178791083],[-98.59497284485172,20.493275949737722],[-98.5972856891247,20.495770855689273],[-98.59699644354902,20.496360298722664],[-98.59669806376326,20.49664336034232],[-98.59459141400782,20.496854217092675],[-98.59427495987939,20.49718563130824],[-98.59328059059447,20.499391666707766],[-98.59315031532884,20.499498747618304],[-98.59037770652799,20.500248026507734],[-98.5901741089009,20.50030356658334],[-98.58953201586712,20.50008902909815],[-98.58940527031939,20.500056137907222],[-98.5872303870895,20.501059728374855],[-98.58698676323905,20.50117503540082],[-98.58677603395643,20.501608031327066],[-98.58668655075178,20.50200575766513],[-98.58653287003585,20.5023719933306],[-98.58630208880584,20.502645779909585],[-98.58597849788202,20.502781971748163],[-98.58566117845191,20.502955725504307],[-98.58523471041605,20.503066927849204],[-98.58481336838861,20.50316577009096],[-98.58458024815923,20.503436666861433],[-98.58435435870052,20.50370715863704],[-98.58422511455802,20.50405863211813],[-98.58417590726799,20.504291131221862],[-98.58383979405107,20.50444631574061],[-98.58362941421416,20.504484118244307],[-98.5834029101469,20.504493208531755],[-98.5831608963286,20.504544475207297],[-98.58303142501757,20.504619247286826],[-98.58279109997636,20.504698901263225],[-98.58268328061388,20.50477415921955],[-98.58273197337053,20.505228285030114],[-98.58254993147335,20.505287701366456],[-98.58228196286206,20.505508483776453],[-98.58217646500032,20.50549193963525],[-98.5820296264551,20.505396788044322],[-98.58181503803667,20.505315423681736],[-98.58156450597693,20.50522758168495],[-98.58116429733298,20.50515678901013],[-98.58081435309572,20.50509733052934],[-98.58049944935618,20.505080049513424],[-98.58017408015235,20.505000729725737],[-98.57984767844124,20.504962210005658],[-98.57955227988924,20.5049351593604],[-98.57924882215963,20.504846124040114],[-98.57869359645235,20.50481323148125],[-98.57825444728894,20.504854388655986],[-98.57796093837271,20.50484778938693],[-98.57783044176398,20.504772846149194],[-98.57762086361839,20.50477890644953],[-98.57745975212305,20.50467719245796],[-98.57710005635982,20.504432664213027],[-98.57684576554902,20.504303338898865],[-98.575405831009,20.50527056532968],[-98.57514567914876,20.505372441273494],[-98.5747655937227,20.505647387727322],[-98.57475292191606,20.506147196973984],[-98.57373914129295,20.506540556119546],[-98.5736596020077,20.506734380791613],[-98.5730813784835,20.507228261161288],[-98.57302965345684,20.507369413797903],[-98.57264967741429,20.50744987659823],[-98.57237608570387,20.50741706612638],[-98.57111917568653,20.509042698131395],[-98.57095887332628,20.50900393239658],[-98.57033139102253,20.509161595372404],[-98.57008918799443,20.50912495211793],[-98.5695187749318,20.509025911782544],[-98.56944281118405,20.509078631781904],[-98.56822791544812,20.508479704296008],[-98.56807192248613,20.5084608777546],[-98.56794940846743,20.508356054669093],[-98.56771881777638,20.50824142317208],[-98.56346743202812,20.508532750023278],[-98.56330559001634,20.508554610712565],[-98.56229047687293,20.50890363919757],[-98.56199390512211,20.50892245525722],[-98.5599349570947,20.50942422325363],[-98.55969563447394,20.509463606977477],[-98.557650041991,20.509912915189943],[-98.55785023332692,20.510464601830847],[-98.55749681803968,20.513753175107695],[-98.55605533372153,20.51429947754565],[-98.55592615667416,20.517005712414743],[-98.5538051725606,20.518801046529347],[-98.55346233642882,20.518745088041157],[-98.55249408005182,20.519046354610055],[-98.55197836024786,20.519066992022317],[-98.55029356076636,20.519805050977425],[-98.54999076198436,20.5202551972705],[-98.5497659295707,20.520386183172604],[-98.5494158181977,20.520426442239966],[-98.54715394484543,20.521040817523613],[-98.54692455543875,20.52106736618947],[-98.54500690713309,20.52243570520028],[-98.54469034389382,20.522858313455117],[-98.54439468025924,20.523216756445606],[-98.54407954903178,20.52348913827808],[-98.54352896430987,20.523648440752083],[-98.5428086449972,20.523760793278257],[-98.54246808450085,20.52408589351427],[-98.54214661562145,20.524229416010883],[-98.54139126415305,20.524675503232118],[-98.54112813273878,20.524891225785723],[-98.54083740087009,20.525150547659905],[-98.54063229124489,20.52535681483073],[-98.54038087108535,20.525961206127192],[-98.5402601239478,20.5260695961461],[-98.54003988816663,20.526020363103953],[-98.53979433141757,20.5259257601154],[-98.5395324761704,20.52599748796888],[-98.53945702091164,20.52621747457505],[-98.53944820885357,20.526561451162706],[-98.53921961384805,20.526744502288295],[-98.53816979481996,20.528158009197114],[-98.53803963695168,20.528257678488444],[-98.53466517677276,20.530658180637488],[-98.5311153428861,20.53950785388986],[-98.52578796226169,20.54517451685234],[-98.5257467653638,20.54555915218947],[-98.52558243107677,20.54623753043154],[-98.52540608727406,20.546540265244573],[-98.5249573082454,20.546856060088203],[-98.52484488837047,20.547107520423083],[-98.5251312677567,20.547207616468995],[-98.52535907406144,20.547338128422098],[-98.5253879401763,20.54752647214633],[-98.52448535788534,20.548540120837004],[-98.52473360009122,20.548718730424582],[-98.52497844568961,20.54902937879632],[-98.5251414540549,20.549338725895723],[-98.52533162084632,20.54962204258527],[-98.5255562131926,20.5501584708652],[-98.52571681764135,20.550467762697167],[-98.52393376165708,20.553786122243082],[-98.52421035312017,20.55398636049358],[-98.52437899536,20.554170525191523],[-98.5238118093323,20.554968991201633],[-98.52385049128685,20.55533730817143],[-98.52419571383342,20.555865154519893],[-98.52422967172464,20.55641708079156],[-98.52411827864262,20.556908986026144],[-98.52401651128923,20.55712043215675],[-98.5240023483147,20.55729645458132],[-98.52391728181846,20.55770107170156],[-98.52385466309835,20.557982022182955],[-98.52269606812621,20.558834458804142],[-98.5240567314898,20.560984519535566],[-98.5241506706692,20.561638748793882],[-98.52413518092669,20.56224058138531],[-98.52392433005804,20.56285383086953],[-98.5234349100038,20.564091258364954],[-98.52370394325999,20.571976892984708],[-98.52433793962541,20.57504201736748],[-98.52245732582412,20.578019682884644],[-98.52277993155195,20.57839902716063],[-98.52331633230375,20.579174508731683],[-98.52343098313213,20.57939883838577],[-98.52355211182385,20.5795586735307],[-98.52362292466387,20.579708287234325],[-98.52295818989523,20.580362214641866],[-98.52293723884134,20.580614635446977],[-98.5230002563597,20.58153467743557],[-98.5229786485412,20.581812600244746],[-98.52169395971725,20.58240927077196],[-98.52156624676701,20.58250501824716],[-98.52126742061347,20.584100646671573],[-98.52109838532056,20.584397883329075],[-98.51224801165353,20.594224355875156],[-98.50863534514394,20.59576752347789],[-98.50542067458252,20.595954176212047],[-98.50427259524685,20.595700948633237],[-98.50379619630576,20.595811825229532],[-98.50347039660369,20.59587778566305],[-98.50196980236245,20.59442172886901],[-98.50167685768434,20.593994190271417],[-98.50150766228381,20.593638967757613],[-98.50099069971685,20.59316121466685],[-98.50059485978579,20.592920393563702],[-98.49928735696591,20.591890440839506],[-98.49826566292222,20.591734838645436],[-98.49755268063046,20.59101907904204],[-98.49694373553558,20.59004604991418],[-98.49375195347983,20.589694995525235],[-98.49320252651034,20.58968719702915],[-98.49253161852533,20.589465974543486],[-98.49110923610061,20.589375206050192],[-98.48985564196909,20.58966317602659],[-98.48960665662162,20.589612592727406],[-98.48838953979947,20.58900502715568],[-98.48671081571564,20.58950083482796],[-98.48635929409465,20.589613440885557],[-98.48595857917837,20.589678302008963],[-98.48543035117046,20.58990599984986],[-98.4849263402453,20.590181084827407],[-98.48441389258693,20.589841519805077],[-98.48382058367287,20.589323694366385],[-98.48335624784875,20.58928250788847],[-98.48275055510976,20.58878580971418],[-98.48241453265359,20.58793423005403],[-98.48209346213287,20.588044408349674],[-98.48116906478396,20.588541620179456],[-98.4804903037915,20.588715607891857],[-98.48019161716957,20.589776552025455],[-98.47964520059651,20.591748617941903],[-98.47953062032389,20.59236590315453],[-98.47862917890768,20.593555455027342],[-98.47847269160633,20.59398138820427],[-98.47851887130821,20.594430376924095],[-98.47870419686365,20.596046793563914],[-98.4787043236542,20.596232380140407],[-98.47887003210764,20.596603181311878],[-98.47903257304267,20.597195738422442],[-98.47904079858807,20.59795942768909],[-98.47912564626779,20.59846879430131],[-98.47935011201247,20.59929422806954],[-98.4795872949453,20.599559678975766],[-98.48110970498806,20.601397574630482],[-98.48035395023356,20.602320650946297],[-98.48012207843647,20.603295915389197],[-98.4804546203473,20.603743544503573],[-98.48108695150955,20.603927400610132],[-98.48094293251222,20.60491947435628],[-98.4835956866666,20.60651828075754],[-98.48406875003491,20.607884771811314],[-98.48458144218836,20.60886696585635],[-98.48500416568055,20.609982000807292],[-98.48632630484644,20.612368702816298],[-98.4870537869698,20.613995682607026],[-98.48728187364395,20.61563281591225],[-98.4879210560751,20.616954965953028],[-98.4887824226156,20.617875121619534],[-98.48959738051553,20.620426201195073],[-98.48960336406003,20.62112058895019],[-98.48984909130365,20.622752299756655],[-98.49029142243597,20.625590722769914],[-98.49258848732825,20.631424953605404],[-98.49296427924912,20.63204157890607],[-98.49333519140504,20.63266554798639],[-98.49396435148697,20.63429541153522],[-98.49516868866982,20.636628713816947],[-98.49580278341398,20.639863057121943],[-98.49508104344096,20.643635067946718],[-98.49484672975484,20.644340511531652],[-98.49409450860207,20.644810028617655],[-98.4930462592784,20.645808590726574],[-98.49215899242728,20.6461042267116],[-98.49180795608692,20.64577144230907],[-98.49116332419283,20.645771731936804],[-98.49099008705264,20.646977728313175],[-98.48999921879624,20.649155118411272],[-98.49025618597653,20.649586502382306],[-98.48974137006888,20.64998617930371],[-98.48808330037355,20.64956432827495],[-98.4873350485829,20.649763905094005],[-98.48695337601617,20.650627626483526],[-98.48678585065034,20.651241763782934],[-98.48649111475908,20.653821207932765],[-98.4852751630014,20.654579797109648],[-98.48378362135742,20.655903582122107],[-98.48318086522517,20.655901852498232],[-98.48280010181617,20.655838217238852],[-98.48183409538365,20.655846376975035],[-98.48069404823315,20.656281764460516],[-98.48011356549966,20.656548219112324],[-98.4791536529184,20.657013171360745],[-98.47806870025983,20.659300039838286],[-98.4767708386762,20.659385132957993],[-98.474112330872,20.661250352904858],[-98.47303707185318,20.662359316792333],[-98.47192909267415,20.66287944516631],[-98.47141040237142,20.662890489277686],[-98.47053615905219,20.662467886506818],[-98.46984286415795,20.662891219917412],[-98.46948538141748,20.663349265696183],[-98.46935860172317,20.663963879074856],[-98.4690013465779,20.66473614783081],[-98.46844652656699,20.664946301871453],[-98.46741520156246,20.666138084512397],[-98.46571554843439,20.666440391308015],[-98.46368595308076,20.667241284171325],[-98.46327500312577,20.6678413606395],[-98.4634419098249,20.668626953124942],[-98.46459517523874,20.671141702769887],[-98.46397859488724,20.67412754155481],[-98.46323774136908,20.674839290504053],[-98.46196934797234,20.675255380691397],[-98.46103183715962,20.67602774286189],[-98.46024195280387,20.677601346400763],[-98.46028051122545,20.678388452658226],[-98.46030687203012,20.678869942194865],[-98.46003762030352,20.681357777484436],[-98.46015352653933,20.682466390581226],[-98.46049091298795,20.683204849708318],[-98.45995772457144,20.684373473713208],[-98.4588712589902,20.684957382795005],[-98.45849191175012,20.685806346149548],[-98.45891975280131,20.68761419265934],[-98.45918733383775,20.688391195707027],[-98.45934932187771,20.690659927708566],[-98.45914165252896,20.692017137415178],[-98.45875037356478,20.69338447865789],[-98.45890020971041,20.694259096715882],[-98.4595674323163,20.695589899233482],[-98.45988339304347,20.69620335661648],[-98.45931886423045,20.696718063931655],[-98.45847908039019,20.696978336770144],[-98.4562624031513,20.698084386259836],[-98.45563290952998,20.698718703584348],[-98.45548330551509,20.699013105213282],[-98.4548711994164,20.699399156505024],[-98.45371176539766,20.69955394677646],[-98.45317095708458,20.699634266542432],[-98.45292200061476,20.699755533980294],[-98.45252193821335,20.69993816076402],[-98.45178847665204,20.69996724823659],[-98.45132210949919,20.70007930113968],[-98.44989076449548,20.70057109852405],[-98.44958472219173,20.700631408688366],[-98.44934086893949,20.700747509150574],[-98.44914687457401,20.70073668632955],[-98.44857923956602,20.69999609782917],[-98.4483056553583,20.699553086449896],[-98.44804964215496,20.699134936861924],[-98.44786408172223,20.69887575345558],[-98.44761753756666,20.697686779265382],[-98.44754810509869,20.69689766225366],[-98.44748323790566,20.696577472681213],[-98.44717374854014,20.695803723943072],[-98.44678058243397,20.695120457564485],[-98.44643398817863,20.69463363221996],[-98.44590364690572,20.694336709647587],[-98.44596697313602,20.696213462686273],[-98.44585983763216,20.69856381529246],[-98.44562097989831,20.699645392310117],[-98.44533593529388,20.700505932842646],[-98.44419704631747,20.704229080545304],[-98.44385333172397,20.704938717207256],[-98.44306216849412,20.705607491880244],[-98.44255943279819,20.706397057040192],[-98.44230166221206,20.70743374076801],[-98.4423645150573,20.709502268590995],[-98.44145279703366,20.7094768343473],[-98.44102114425226,20.709385156745952],[-98.44032174235929,20.709117521644316],[-98.43986772713487,20.708982775537606],[-98.43927051627838,20.708857444031366],[-98.4390900901185,20.70918517984336],[-98.43832946088531,20.709809255887194],[-98.43805209116022,20.709946339905287],[-98.43701094375177,20.71089568408405],[-98.43592448902797,20.711561997034437],[-98.4353004484484,20.711748724025995],[-98.43291797113574,20.713378100547516],[-98.4320014003768,20.714932756397275],[-98.4312251999836,20.7152152379698],[-98.43047447353626,20.7152869646078],[-98.42928055576851,20.716274597522954],[-98.42943748797057,20.716575601640386],[-98.42973732446251,20.71662113013798],[-98.43014729981894,20.71677093049891],[-98.43106557221705,20.7169024516852],[-98.43309270893445,20.71728061458282],[-98.43331843171501,20.71782318308783],[-98.4329051354324,20.718564044378866],[-98.43285693551161,20.71878655184412],[-98.43250845091035,20.71908228874787],[-98.43189214985227,20.71921385634829],[-98.43184252813086,20.719366039735746],[-98.43201427839881,20.719886162518492],[-98.43110964852428,20.72111525995706],[-98.43075069973526,20.72186204454499],[-98.43032013336313,20.72218508458343],[-98.42988681105538,20.722672789819285],[-98.42914871900382,20.723438334834043],[-98.42855985529695,20.724253146735748],[-98.42793574336486,20.72567920315055],[-98.4276945605053,20.726640341356926],[-98.42671721587982,20.72824939377108],[-98.42600211479026,20.7291329132114],[-98.4254449176293,20.729548180719974],[-98.42511315461189,20.729943261530025],[-98.42480718324953,20.730291665251514],[-98.4246476909791,20.730854008096514],[-98.4245675500598,20.731158703147912],[-98.4245267718365,20.73209928034538],[-98.4242902889788,20.732778127968288],[-98.4242558185565,20.733342325689023],[-98.42434952986804,20.733720189314738],[-98.42451234267128,20.734452021620427],[-98.42448063306671,20.734851553411033],[-98.42419245531642,20.73547947021831],[-98.42357782315332,20.736485221561452],[-98.4230666580923,20.737136459559736],[-98.42266103802524,20.73745984984339],[-98.42240505773032,20.737808991253758],[-98.42224989008776,20.738112570603107],[-98.42196850682478,20.738484863536655],[-98.42165777291763,20.73911554483817],[-98.42142284516171,20.739700292801672],[-98.4216722510215,20.74123341797298],[-98.42094074070633,20.741599021022694],[-98.42093679117727,20.741834257619985],[-98.42135795600444,20.74207581135363],[-98.42167554150433,20.742527590988175],[-98.42184111347262,20.743094759447388],[-98.42195983109815,20.743472995486854],[-98.42150956647026,20.743806664559827],[-98.42144781284395,20.744276123566635],[-98.42173622576229,20.744753307656538],[-98.42354314482691,20.746558739340173],[-98.42551050789172,20.748929290113438],[-98.42620319803518,20.747990215607274],[-98.42652341874452,20.747516090081433],[-98.42802686954349,20.744488472401315],[-98.42828976480911,20.74433852150588],[-98.43014214264247,20.743932859472295],[-98.43234855495922,20.743123000422997],[-98.43385741411737,20.74316317982698],[-98.43451428659421,20.742155566539566],[-98.43482312993507,20.74173616025297],[-98.43563665141369,20.7398445532815],[-98.43588607356293,20.739725261412275],[-98.43941131975771,20.73863819355131],[-98.44008587063803,20.737956436388572],[-98.44047750850604,20.737364732044966],[-98.44049055282119,20.73733012155037],[-98.44123307669577,20.734308164823574],[-98.44125305639665,20.73419230914351],[-98.44134223880764,20.73379947529645],[-98.44162561648272,20.733441670645675],[-98.44233798668023,20.73282625200659],[-98.44294268369379,20.73270660949396],[-98.44409840675934,20.731285930153376],[-98.4440800682728,20.73092510531211],[-98.44391202402335,20.730127750013366],[-98.44333127669756,20.729554097979758],[-98.44331225304353,20.72934649195207],[-98.44338871709147,20.729233187916577],[-98.44481117739957,20.728682585597824],[-98.4476704396211,20.72691961684177],[-98.44785990752143,20.72490458217112],[-98.44835919734237,20.72444420067552],[-98.44869948298134,20.724207751119934],[-98.44914122018037,20.72398708638775],[-98.44932195163744,20.723745440655875],[-98.44971730765673,20.72372751381772],[-98.45016713916266,20.7235221752735],[-98.45102163861907,20.723234520842425],[-98.45420326576152,20.72087251428013],[-98.45441235695478,20.720521425460106],[-98.4551932852861,20.719862426783152],[-98.46019279808871,20.715096453456738],[-98.46034182398324,20.713312100844405],[-98.4612103682237,20.713019652558557],[-98.46265499967603,20.71372354059781],[-98.46286230314314,20.713547480853947],[-98.4638081983071,20.7128059352292],[-98.46571293473232,20.71127201150142],[-98.46699919042328,20.71003612865701],[-98.469328478943,20.710184691762834],[-98.47100576342177,20.708723174231125],[-98.47151243802728,20.708901436908832],[-98.47201645842324,20.709021845484017],[-98.4729878696985,20.70896183104793],[-98.47330792373447,20.708411603379886],[-98.4737449228719,20.70794047631557],[-98.47441742074324,20.707155091513584],[-98.47458952079398,20.70662457568784],[-98.47513374817481,20.705988373599666],[-98.47531906288941,20.706032546909285],[-98.47601016798427,20.706310132524948],[-98.47935525314665,20.705325273922426],[-98.48021270223188,20.705415081253648],[-98.4813258992769,20.705287611444533],[-98.4839473631514,20.70567243934704],[-98.48634807172476,20.703250263547204],[-98.48830314495513,20.703071300425165],[-98.48901949243896,20.702274354670294],[-98.48974191453584,20.702068933186183],[-98.49076447456412,20.70212259439677],[-98.49199603968452,20.701579923302063],[-98.49251464140366,20.701381865872918],[-98.4935357989587,20.701152321113],[-98.49447247266193,20.70091399792625],[-98.49592939547802,20.700117668663268],[-98.49646291362598,20.699925316089207],[-98.49723123058823,20.699521701626452],[-98.49725825765216,20.699050762526156],[-98.49815655980706,20.697470037888365],[-98.49916007746157,20.696977991566825],[-98.50001169901759,20.69666771721876],[-98.50064547137583,20.69660809423607],[-98.50077351497856,20.69603878318088],[-98.50032097276306,20.69551526128538],[-98.50057060775998,20.695069664466587],[-98.50156647334086,20.69456856138879],[-98.50224286291666,20.694710340005543],[-98.50292710253115,20.694364476039084],[-98.50319914022543,20.694261476673603],[-98.50443938310593,20.694408090317836],[-98.50514636012775,20.69429143773357],[-98.50628638039933,20.69407573059874],[-98.50643970840787,20.693482747049018],[-98.50611295714174,20.693078284853016],[-98.50598762605426,20.69281682437753],[-98.50679630731543,20.692463087235012],[-98.50725070309767,20.69241691503811],[-98.50811000496265,20.69201584415208],[-98.50773362226215,20.691350133853973],[-98.50771865573375,20.691276784699312],[-98.50799785468217,20.690779111535676],[-98.50843049300477,20.6903589929193],[-98.50929667367802,20.690305578843663],[-98.50985236286334,20.691149169807886],[-98.51035110722648,20.69146614835654],[-98.5104686893252,20.69147451615737],[-98.51132691349943,20.69140573970651],[-98.5115481078775,20.690710493791812],[-98.51180317300452,20.690599451069943],[-98.51320481029757,20.689459010988912],[-98.51387370638338,20.689408735600068],[-98.51509192137291,20.68879202260638],[-98.5152992173355,20.688532977230977],[-98.51570863818313,20.68770953431732],[-98.51586118100238,20.687353908568525],[-98.51589454839336,20.68566404870387],[-98.51581602946851,20.685155064963908],[-98.51657802926945,20.685373822516624],[-98.51700674256358,20.68507374486785],[-98.51731097911329,20.684623598016117],[-98.51738847982722,20.68405413103858],[-98.51770832692074,20.68367464617404],[-98.518196522984,20.683676011453883],[-98.51855601127562,20.68374949941324],[-98.52179559030617,20.68202000631868],[-98.52255259613389,20.682022104667908],[-98.52348632426862,20.682000948058658],[-98.52505133357619,20.681839109754833],[-98.52551284768612,20.68016344436512],[-98.52628567494583,20.67969130399797],[-98.52756547269848,20.67785143752684],[-98.5290392795282,20.675355889284845],[-98.52916140666525,20.673474608183994],[-98.52937208188155,20.67305947631735],[-98.52944309111018,20.672665843097832],[-98.52972443567097,20.67196647649604],[-98.53052086404074,20.670188695127877],[-98.5310579613589,20.66931447770105],[-98.53128579420252,20.668034187655167],[-98.53147317770788,20.667771494478984],[-98.53162163482983,20.66657835727267],[-98.53157078041022,20.666053526365772],[-98.53042066218944,20.66512171939661],[-98.53146518900934,20.664100080655714],[-98.53209482502592,20.66344231521805],[-98.53325609058163,20.663405313091516],[-98.53370351855585,20.663357601186533],[-98.53501104240365,20.663265603174295],[-98.53561471655757,20.663322480165903],[-98.53614089580151,20.663363707646738],[-98.53689276947654,20.664261323770234],[-98.53685883339364,20.66477674206118],[-98.53658215583579,20.6649818328832],[-98.53699857078374,20.665150851028613],[-98.53762771513794,20.664918534801927],[-98.53779477894795,20.664619958562298],[-98.53807925226988,20.66496726439175],[-98.5388470702041,20.665848788075436],[-98.53878024021145,20.66638316229711],[-98.53924917175357,20.666775430551297],[-98.53990376418983,20.666761166339597],[-98.54031740752657,20.66718652132232],[-98.54064688081735,20.667689810069135],[-98.54081001766343,20.667802793679016],[-98.54097368661996,20.66773235703937],[-98.54118114268874,20.667573143721825],[-98.54167122525809,20.667929125647902],[-98.54180573972747,20.66803081442208],[-98.5422268812921,20.668131945919754],[-98.54233470323669,20.668084266827066],[-98.54255644037477,20.669196074548154],[-98.54283488925881,20.670096588852914],[-98.54324458436554,20.670740951928167],[-98.54435548983611,20.672389017299793],[-98.54570169299097,20.674654168703853],[-98.54689225823125,20.677151400807418],[-98.54753798441845,20.680460945456616],[-98.54846427980709,20.681469431992866],[-98.54851591789583,20.6836906950316],[-98.54867491983362,20.684973194924567],[-98.5489379053202,20.685729524989426],[-98.54912407112113,20.686602381710884],[-98.5495347651082,20.687501898935693],[-98.54980221431987,20.68797604598427],[-98.55017976003865,20.689392545263047],[-98.54489897822879,20.69141193442914],[-98.54364430573628,20.6917236323377],[-98.54215578503101,20.692596528148044],[-98.54180518832567,20.692638649851006],[-98.54071797200612,20.6934230821509],[-98.54044234167378,20.693466253391875],[-98.54029389553324,20.69337008802148],[-98.53999178439517,20.693506968002964],[-98.53945880025259,20.694016929997872],[-98.53886717698799,20.69469736820963],[-98.53887204199577,20.695051594416555],[-98.53869448562943,20.69559112385707],[-98.53983115024118,20.6975554138308],[-98.54025704603657,20.698107494553255],[-98.5384897851336,20.698378094208124],[-98.53691536858838,20.6985262868796],[-98.53334235344175,20.699638141022888],[-98.533033106988,20.7007562496849],[-98.53240624061488,20.701155794661418],[-98.5315508175425,20.701572425586562],[-98.53073102935514,20.70247792445923],[-98.53108110065506,20.703636686552784],[-98.53050056586204,20.704511564551638],[-98.52907260569515,20.703993919187212],[-98.53044530415883,20.708846934428266],[-98.53058525567258,20.709449271842516],[-98.53055461359509,20.70998122422276],[-98.53065594945531,20.710127948674767],[-98.53192329846286,20.71067555251824],[-98.53206225161722,20.711001828844758],[-98.53214244174848,20.71193792390966],[-98.53221700831739,20.712964196303858],[-98.53195114553733,20.71333461674999],[-98.53227007658364,20.71468352789134],[-98.53198787109284,20.715969979251554],[-98.53060978623193,20.717425866195867],[-98.53015979745288,20.718098320969148],[-98.52977090762778,20.718321815531397],[-98.52896283518146,20.71890907867106],[-98.52875320325535,20.719104992827056],[-98.52792669787112,20.71949593663612],[-98.52694528435558,20.720107072396388],[-98.52638785975915,20.72024997162555],[-98.52594545050141,20.720465397595774],[-98.52151541314197,20.725961509097374],[-98.52036925863916,20.727032494762852],[-98.51911348728669,20.72734370481095],[-98.51850942619905,20.726960838113882],[-98.51811860136496,20.726740535417093],[-98.51763890511131,20.726790690172436],[-98.51704526795072,20.726518464629862],[-98.51568224419356,20.725355564518054],[-98.51542650905134,20.725924013209692],[-98.51413956042262,20.726510985406435],[-98.51345223649469,20.726598572311616],[-98.51396052270746,20.72817069459643],[-98.51214485385356,20.728603034432865],[-98.5107317450545,20.729365247435453],[-98.51034340749175,20.730012435605715],[-98.50963011792669,20.730599283045535],[-98.50762456241353,20.7319458137124],[-98.50713101272157,20.73261882649922],[-98.50643806295648,20.73311915217579],[-98.5070909862763,20.73331637672925],[-98.50802381167199,20.73340283420066],[-98.50853043353146,20.733217685566444],[-98.50903288690415,20.7332189223103],[-98.5096525231757,20.73333577195723],[-98.5105326250881,20.733862772004954],[-98.51090348045318,20.733759124399967],[-98.51147923748289,20.733552995992625],[-98.51172404861603,20.73344488592562],[-98.51252145300771,20.73335753895276],[-98.51302992091291,20.7327262314505],[-98.51312260692805,20.73231850456284],[-98.51440125824524,20.732536852588396],[-98.51408999414724,20.73306496513618],[-98.51451501516902,20.734109920778735],[-98.51451183296865,20.73629917369226],[-98.5157563694338,20.738632979408067],[-98.51740756591158,20.73968076168518],[-98.51779561125107,20.7412192759125],[-98.51665391161464,20.742889680523206],[-98.51450612459718,20.743738031769908],[-98.51420017825257,20.743848907953122],[-98.51038346840068,20.744496736630595],[-98.50782724055227,20.743617705985685],[-98.50809570466026,20.742870179524004],[-98.50821695884429,20.74200177376673],[-98.50794948297602,20.740654165980857],[-98.507646109534,20.73975306415656],[-98.5056682012505,20.735684881205543],[-98.50469551965614,20.733498114545853],[-98.50284160411019,20.733234983180125],[-98.50179703019711,20.733859708740113],[-98.49984033122092,20.734451154266594],[-98.4988239545388,20.73514250915997],[-98.49826783687206,20.735829878587083],[-98.49747266606943,20.736488594899868],[-98.49581228981572,20.736922167784314],[-98.49206969613982,20.736949845562776],[-98.48720254226009,20.738158802271926],[-98.48638371792163,20.737989777231576],[-98.48503053422729,20.738517431256753],[-98.4756076282979,20.739175447255093],[-98.47398446192989,20.740852279815158],[-98.47341721695835,20.742131655905553],[-98.47151928602045,20.744170808051877],[-98.47069985931893,20.744942716227683],[-98.47006220845259,20.744799369778832],[-98.46965397055669,20.74503904377343],[-98.46836327286917,20.745824562525684],[-98.46688052295576,20.746015912101882],[-98.46577377869232,20.745868169491928],[-98.46541525635115,20.74576537492993],[-98.46477340640661,20.745768797543576],[-98.46397782377181,20.746064629984403],[-98.46376435546267,20.746269209775733],[-98.46325174249671,20.746543673263943],[-98.46274983045447,20.746126940348233],[-98.4625572927024,20.746052287636303],[-98.46194867619243,20.74576628776026],[-98.4601445549539,20.746608899930663],[-98.45943848384707,20.746993511486608],[-98.45888934849023,20.747067912587738],[-98.45825753681862,20.746844507803644],[-98.45681438575065,20.747679506426607],[-98.45638628427861,20.747761920122343],[-98.45586018355249,20.74790024690833],[-98.45528410159835,20.7481273810925],[-98.45483851546868,20.74825914487883],[-98.45370900942737,20.748735798217865],[-98.45320827427355,20.748360562950495],[-98.45254964021882,20.748763129883685],[-98.45157212202736,20.74961193137625],[-98.45125685885392,20.750301687153183],[-98.44983233988677,20.751520510476894],[-98.45067315921278,20.75210347184992],[-98.45109928824297,20.75240947953222],[-98.45195149055178,20.752950800663086],[-98.45237750231308,20.753115422967653],[-98.45348036947024,20.753821491822066],[-98.45400704428556,20.754504435020237],[-98.45473407361715,20.75511653036392],[-98.45724222119026,20.758460619963273],[-98.45827109882208,20.760392031715924],[-98.46009941292351,20.76284833829078],[-98.46030882725961,20.764053962798585],[-98.46098479159974,20.76626518553786],[-98.46076400611145,20.768272772687396],[-98.46252524921249,20.77081073376388],[-98.46369028979376,20.771591072799765],[-98.46413914810881,20.77180889724889],[-98.46434572501158,20.77192596898624],[-98.46455730117003,20.772529108250865],[-98.4639957646018,20.774214314117614],[-98.4635483888394,20.775310181160762],[-98.46311089141676,20.775392078199957],[-98.46210843211281,20.77613636920512],[-98.46176339446157,20.777018929542123],[-98.46098938588034,20.778341967937763],[-98.46085789231267,20.779265362410285],[-98.46251783049513,20.78123866689259],[-98.46285324056464,20.783087327765884],[-98.46323239611684,20.78465496513155],[-98.46323055541245,20.78517711049301],[-98.46263131032919,20.785416233734736],[-98.46176156147749,20.786444902555445],[-98.46124651890989,20.78704577206429],[-98.45948979427578,20.788245223329],[-98.45893370190726,20.78836397011827],[-98.45799006892759,20.789284803288353],[-98.45636567574763,20.789319838973597],[-98.45585203802761,20.789519041393703],[-98.45554981851552,20.79036155801316],[-98.45485584922483,20.793170940091613],[-98.45442538535207,20.794013047416286],[-98.45412343661059,20.794775230215294],[-98.453608191211,20.79541624175124],[-98.45345903853422,20.795555446449157],[-98.45341665010068,20.795859147905844],[-98.45204153359458,20.799465422581363],[-98.45166663627606,20.800620321251188],[-98.4510671200988,20.802859312447197],[-98.45096706247494,20.803071459508544],[-98.45081692565168,20.803330770988907],[-98.45049188934183,20.80420286588941],[-98.44981646840728,20.805617181780974],[-98.44944163657493,20.806889892006723],[-98.44936726453125,20.80785605378685],[-98.449543356459,20.808657086081723],[-98.44976961050526,20.809505208348526],[-98.44949422182293,20.809835301384794],[-98.449494497854,20.8101651913139],[-98.44964488081558,20.810188644169386],[-98.45043260811815,20.810228259805115],[-98.45080520910102,20.810989526606875],[-98.45212364232702,20.812881505623352],[-98.45203147963042,20.814728816057595],[-98.45172628827396,20.81637461947753],[-98.4510718224663,20.820027568571163],[-98.45055357194155,20.8214718608466],[-98.45003778696355,20.82218350343021],[-98.4489227276838,20.823143896401575],[-98.44514508187535,20.827349079255953],[-98.44402745480596,20.828992236927434],[-98.44363869072595,20.830075436223353],[-98.44375577883056,20.833128371458656],[-98.4437521011804,20.834132489904107],[-98.44109026332109,20.835091847250226],[-98.44014217569946,20.83635546607593],[-98.44002182625428,20.83697208337219],[-98.43984842730566,20.837614159132784],[-98.43937543235091,20.83833558998026],[-98.43736422161697,20.8387708228812],[-98.43580081916599,20.839926257019442],[-98.43487331612698,20.84044285580984],[-98.43371092375202,20.841055802439826],[-98.4331867531314,20.841834581128637],[-98.43288906924988,20.84167669720864],[-98.43181991368937,20.841691556935643],[-98.43152788427528,20.842816199304878],[-98.4309632924124,20.844632456741238],[-98.43045368682039,20.84574995843883],[-98.42952067779157,20.846958125859317],[-98.43073879310526,20.84663659666586],[-98.4307992430289,20.847356877874063],[-98.42960878221169,20.848205163595367],[-98.42863212909509,20.848613464714504],[-98.42790438601855,20.849192859655375],[-98.42743959573806,20.84877773369226],[-98.42760249530221,20.847302275379093],[-98.42652823150092,20.847504639989268],[-98.4258155151087,20.848248935536787],[-98.42567615215108,20.849199969444783],[-98.42421926974953,20.849998385895958],[-98.42294756959313,20.84944277100567],[-98.42180629991446,20.84916462372871],[-98.42061508252573,20.850451378310538],[-98.41942902293783,20.851102460339575],[-98.41874160269543,20.850979324611103],[-98.41782413575976,20.8499686152835],[-98.41702217186554,20.84809609394125],[-98.41516840549536,20.849091955075266],[-98.41371720728017,20.84863644921944],[-98.41223053430798,20.849958388907112],[-98.4119130960695,20.852751577988954],[-98.4114215091767,20.854093010858776],[-98.40798712825165,20.85424910034658],[-98.40558101908437,20.85519723149355],[-98.40414247046448,20.856687759561055],[-98.40397332729816,20.85746355887386],[-98.40149331363938,20.858115836684817],[-98.4007308319973,20.85836186507754],[-98.39824765693288,20.858730626853117],[-98.39647865183645,20.857269989553856],[-98.39614148958987,20.856671129962763],[-98.39562753899571,20.855356915311347],[-98.39489506834099,20.85508618937672],[-98.39429014962354,20.854948916461694],[-98.39364303432353,20.85440212018375],[-98.39316606483243,20.85434656579423],[-98.39240864641619,20.854605553214867],[-98.39077535064848,20.85517429142095],[-98.38956815956004,20.85579031985702],[-98.38811943149852,20.855297319900615],[-98.38799570421378,20.853790863205404],[-98.38188183768091,20.853513780074536],[-98.38050569217359,20.85272857930579],[-98.38016481935267,20.85242242459441],[-98.3789100367643,20.852009905999523],[-98.37809652894867,20.85329211568728],[-98.3761072817282,20.854497564114013],[-98.37571192398042,20.854723142408034],[-98.3739916818675,20.855513407706894],[-98.3730352189375,20.8565468715654],[-98.37209730520351,20.859801199313495],[-98.37172625327452,20.861328095087572],[-98.37112594885872,20.862314448364316],[-98.36974732970344,20.86240214868633],[-98.36906602559293,20.862103726012037],[-98.36759115534022,20.86216669457167],[-98.36662349991343,20.86355145896016],[-98.36493254541335,20.86344494851312],[-98.36342939815728,20.860639742204626],[-98.36071688300291,20.859979389936484],[-98.35971132024014,20.85882133847815],[-98.35960228921584,20.8578094435274],[-98.35864382526364,20.856687902812155],[-98.35751018585705,20.8567901176159],[-98.3562031893104,20.85769022074146],[-98.35493064158152,20.859173993678496],[-98.35329007303244,20.86020301567072],[-98.3523154065166,20.860567196773957],[-98.35062325447728,20.86180246836301],[-98.34999704524046,20.86472970282989],[-98.34787115413155,20.86474747303049],[-98.34791510304422,20.86359181833643],[-98.34765786328035,20.863303558611904],[-98.34652538672503,20.86324662230379],[-98.34555731184673,20.864360872975226],[-98.34514553610984,20.86485254000678],[-98.3445177598619,20.862235507374066],[-98.3477862792572,20.85886784395194],[-98.34788305180058,20.85729690808239],[-98.3477003017615,20.854920239215687],[-98.34855060875395,20.85338889203598],[-98.35094347389725,20.850310295263455],[-98.35178803681566,20.84879642472447],[-98.35193142600474,20.84777913446692],[-98.35024953950392,20.845768069100586],[-98.34975127256223,20.842981051007655],[-98.3521909652087,20.839427152348208],[-98.35291625645152,20.837174544604352],[-98.35141497439366,20.83482239445607],[-98.34795781568869,20.834806909791837],[-98.34542920422854,20.83184315542212],[-98.34382735868229,20.83237339728447],[-98.33966736705253,20.83274258084515],[-98.33659324854273,20.83162553487705],[-98.33597913135247,20.83139449662292],[-98.33358993824328,20.830495626089885],[-98.3324537221377,20.830034699332714],[-98.33157848481818,20.829930387604406],[-98.32932594189452,20.82981012162304],[-98.32900163070445,20.829712178073237],[-98.3287762534381,20.829709566635927],[-98.3271290922948,20.828735535197666],[-98.32715586599966,20.827967358794638],[-98.32772305053925,20.826520817966014],[-98.3276598543356,20.824962051341288],[-98.32780558207332,20.82371141708518],[-98.32830022541106,20.822813365375396],[-98.3285858429706,20.82162913013559],[-98.32875085014058,20.82130051071624],[-98.32655172415963,20.819817760275953],[-98.32595446451717,20.819528272244042],[-98.32565398187671,20.81952478546708],[-98.32508022017333,20.819353300040916],[-98.32391137124705,20.818727516784918],[-98.3228887501428,20.818409530583097],[-98.32231375819924,20.81833220802264],[-98.32164139301801,20.818041832106644],[-98.31916646850112,20.81770693035037],[-98.31738708675528,20.817803937700432],[-98.31639790646409,20.816850545441582],[-98.31635103067026,20.814707260956766],[-98.31637709990656,20.81272965248388],[-98.31625997398504,20.81211607591547],[-98.31596633551703,20.81159462746234],[-98.31562479461917,20.81090779379116],[-98.3151568216062,20.810313670982453],[-98.31562459098802,20.809024064751725],[-98.31600202957026,20.80888718655001],[-98.31633032169032,20.8086790947969],[-98.31703170633426,20.808663723503912],[-98.31957390497826,20.807680827497336],[-98.32331754787305,20.806236477939194],[-98.32788404262897,20.804151167994178],[-98.3314631095758,20.802379521723765],[-98.333193769508,20.802164068911395],[-98.33474197501528,20.802026318754145],[-98.33662192957388,20.80071520192695],[-98.33784971366828,20.799913951260805],[-98.33860142425931,20.79953687304146],[-98.33927800447913,20.799583935855765],[-98.34028030982995,20.799348205002048],[-98.34080652842437,20.799301024271642],[-98.341680328682,20.798782040492995],[-98.34317810488398,20.79808073902757],[-98.34466526915185,20.79748534495326],[-98.34073103415972,20.796709081536505],[-98.33840054042281,20.79567253007781],[-98.33847553628334,20.794046663374843],[-98.33845037090015,20.79305701175923],[-98.33752318920358,20.792444451903464],[-98.33669623403733,20.79173762625709],[-98.33604474458775,20.79166698905965],[-98.3358943522316,20.791125047576315],[-98.33526781609476,20.789852683221284],[-98.33436575678485,20.789640679229876],[-98.33405146334513,20.78974277646114],[-98.3335894006562,20.789880339004355],[-98.33318924391779,20.789095619764907],[-98.33291267139265,20.788796120382642],[-98.33195216201358,20.788445230200125],[-98.33160548328016,20.78814040509576],[-98.33095516259289,20.78760989044241],[-98.33039154584361,20.78761795546876],[-98.33004546976952,20.787523704815953],[-98.32902276574077,20.7868815219839],[-98.32824885692702,20.785859648481278],[-98.32814804149393,20.78399829310655],[-98.32731943930946,20.784177063810034],[-98.32596727287478,20.78418493158472],[-98.32455855139989,20.78468661225895],[-98.32413049377953,20.784870016341642],[-98.32362640448434,20.78512317637842],[-98.32189067065372,20.785738770220462],[-98.31947650847172,20.786534825718206],[-98.31879499427907,20.786950732996104],[-98.31803961141804,20.78727159068211],[-98.31599255461947,20.788707630419367],[-98.31441088413385,20.790926113993976],[-98.31166478145741,20.797887395883038],[-98.30960320114082,20.800406328166957],[-98.30884492965947,20.800939029073277],[-98.30783036150677,20.801916111409582],[-98.30781747624388,20.80099764379048],[-98.3074747484834,20.800404966598308],[-98.30653955690099,20.79916959180332],[-98.30614832395543,20.7984586108862],[-98.3054056478253,20.797814150139743],[-98.30468052533189,20.797735010101007],[-98.3025180574623,20.79611298115077],[-98.30226792013883,20.796505830632782],[-98.30183480404094,20.797065863840146],[-98.30147991948371,20.797391348811345],[-98.30097075054363,20.79802112629733],[-98.30059866414575,20.79964146872203],[-98.30031825584376,20.80001491917426],[-98.2998882503972,20.800339517880047],[-98.2984464356997,20.80142925480584],[-98.29743465429908,20.798426938689374],[-98.29754576092051,20.79760411622999],[-98.29800174828688,20.79532546350373],[-98.29888833402123,20.792675126950314],[-98.30043737045207,20.789161344716604],[-98.30106293421835,20.78919223955137],[-98.30146568258726,20.78903214308906],[-98.30172165693625,20.788611309884914],[-98.30195509415228,20.78800183887273],[-98.30212716928975,20.78635559660421],[-98.30302211366893,20.784953302807196],[-98.30350962803851,20.78406425077145],[-98.30363948088063,20.783712574659262],[-98.30402248273725,20.783151947717556],[-98.30447871186959,20.78273345811192],[-98.3042837437705,20.782330879611266],[-98.30371264424923,20.781970983055317],[-98.30269655896922,20.781182024402767],[-98.30230819850914,20.78025914862593],[-98.30185821850444,20.78020677358421],[-98.30143264756077,20.780201777204354],[-98.30090881741319,20.78005434607428],[-98.30043693086049,20.779766243872302],[-98.30012243717891,20.778938417497898],[-98.29880348966026,20.778334250562068],[-98.29877595379662,20.77852229975781],[-98.29877157420276,20.778851900881477],[-98.29846616806293,20.779225055769587],[-98.29826339756636,20.779411044212566],[-98.29778525852004,20.779593793513584],[-98.29712656141447,20.780174709334972],[-98.29689750193455,20.780454573186034],[-98.29618309192881,20.78145866841129],[-98.29602975668388,20.78169232924222],[-98.29577315250054,20.782160239973564],[-98.29541515743068,20.78272114262677],[-98.29518577747655,20.78302454682114],[-98.29493198945244,20.783280569981514],[-98.2945229797412,20.783911509435825],[-98.29270294860879,20.785208664506115],[-98.29202294037606,20.78550674938697],[-98.2900423960806,20.785695292716014],[-98.28865984394895,20.78610279953449],[-98.28720564256048,20.786250435617944],[-98.28547416969076,20.786536057362184],[-98.28310535080476,20.785801608909196],[-98.28138334381725,20.785380904985743],[-98.28074002805653,20.784808157534144],[-98.2793396122974,20.782813629001055],[-98.27888078851089,20.78342039227573],[-98.2784235410906,20.78390944020356],[-98.27786647037476,20.78437375449971],[-98.27682584019965,20.785420983856113],[-98.27619681976392,20.785648971928822],[-98.27529083724585,20.785991396268003],[-98.27091014553218,20.785915688221564],[-98.2665516355334,20.786052052121818],[-98.26272202641258,20.785959170783656],[-98.26202074857918,20.78597432328087],[-98.26126175378619,20.786553897604904],[-98.26082660720334,20.78725508048177],[-98.26004065362906,20.78797560512902],[-98.2585913452184,20.789606485170168],[-98.2584363490206,20.78995782357532],[-98.25822298336726,20.790920670128173],[-98.2580933392124,20.791248765743603],[-98.25783788019771,20.791622444877248],[-98.25709908585577,20.792555439046623],[-98.25663672039303,20.7931291426994],[-98.25636178944455,20.793265697957338],[-98.25587171394642,20.793389295296663],[-98.25554581944357,20.793467377786612],[-98.25482706177888,20.793834242525065],[-98.25404155114467,20.794102888049736],[-98.25341659778644,20.794108848565372],[-98.2532432321579,20.79403390357612],[-98.25325997502858,20.79384107024424],[-98.25310452714893,20.79333587886856],[-98.25235061792677,20.792486789405643],[-98.25217813205603,20.792233778316074],[-98.25146919874646,20.79187455872369],[-98.25109206528066,20.791487105509646],[-98.25043548004624,20.79110859719782],[-98.25010547591626,20.790858175590643],[-98.2492013249115,20.790605247163114],[-98.2490041237005,20.790293163654894],[-98.24878525309282,20.78989799029722],[-98.24830149832695,20.789480911395685],[-98.24774964723684,20.78943699853494],[-98.24755008506816,20.789602109086502],[-98.24717087943549,20.790368123201404],[-98.24701373356697,20.79088613930253],[-98.2469678156815,20.791238653727817],[-98.24667806627758,20.7917768330355],[-98.24627697169433,20.79213203264834],[-98.24605419164692,20.792586864968257],[-98.24603670107405,20.79289021169268],[-98.24560922020083,20.793168573427067],[-98.24555167514075,20.79331510722352],[-98.24584828209515,20.793650027307024],[-98.2460739414824,20.79397128902633],[-98.24703657095063,20.794616055792517],[-98.24775371151702,20.79551257818872],[-98.24809155398748,20.795816104642824],[-98.24828676732949,20.796068659003538],[-98.24880370327571,20.796272288025477],[-98.24891859934809,20.796377711323828],[-98.24836063002465,20.79700547586674],[-98.24808104019178,20.79743887350793],[-98.24759403659715,20.79774097127728],[-98.24717725035288,20.797869525084195],[-98.24668915351617,20.798388934701734],[-98.24664087297009,20.79880161073868],[-98.24656946556843,20.79921419330094],[-98.24633621639333,20.799626056870125],[-98.24599664306476,20.800930268572188],[-98.24543696650323,20.801346905332082],[-98.24488684412279,20.80222159642443],[-98.2449654528304,20.801368304210314],[-98.24400683212656,20.800607094636575],[-98.24355911032336,20.800626151110976],[-98.2429775177257,20.800560505046576],[-98.24262109564069,20.80022249339254],[-98.2421081177153,20.799862764027296],[-98.24130503205396,20.799333529153103],[-98.24079111926636,20.799163038822257],[-98.2403449749255,20.798866680943206],[-98.2395181463981,20.798610690494627],[-98.23858079457466,20.79808084808485],[-98.23748234538391,20.798433434196113],[-98.23745015676167,20.798156956187427],[-98.23696145212631,20.797480115580072],[-98.23583645193628,20.796685131515005],[-98.23513904678094,20.797098285610844],[-98.23393626616263,20.797312315457646],[-98.23365262162287,20.797555572512294],[-98.23300896239829,20.799108936759865],[-98.23256664162983,20.801889852586385],[-98.2326608157212,20.804438468936326],[-98.23237259304108,20.80497364168548],[-98.23190592547559,20.805508014938482],[-98.22956658330583,20.80829613922498],[-98.22924146339352,20.80906584195992],[-98.22898754751259,20.809869390995402],[-98.22887331612617,20.811277087371764],[-98.22862024710162,20.811912995927116],[-98.22782984960577,20.812588342401284],[-98.22757591380685,20.813391892883487],[-98.22730617029066,20.81474145490415],[-98.22694146629061,20.816221666655565],[-98.2263331012345,20.816724064607058],[-98.22558360783853,20.817070683658244],[-98.22485447505983,20.818061509219376],[-98.22470505824253,20.818235238198326],[-98.2254111724738,20.818116345230692],[-98.2269253485145,20.81775104474798],[-98.23120890098937,20.818602448383615],[-98.23213297938548,20.81844503841762],[-98.23263309071535,20.81840096939544],[-98.23320061740276,20.818572400571384],[-98.23485650315598,20.818365320130226],[-98.23593843795038,20.81779583269804],[-98.23643170427727,20.817581404517227],[-98.2368861879059,20.817894407825122],[-98.23682880741751,20.818113675418033],[-98.23787349853967,20.818274223227718],[-98.23935284910766,20.817937683985917],[-98.24005209271246,20.81815096710261],[-98.24146016436214,20.81802762976298],[-98.24210219713655,20.81810873443567],[-98.24238506968226,20.81865354085926],[-98.24793782357028,20.819698822135365],[-98.24788834241588,20.821465772517286],[-98.24949423010833,20.82229775838914],[-98.25035776319294,20.82082653900352],[-98.25196188920626,20.819914380586624],[-98.2526896726776,20.82067632437753],[-98.25376504629259,20.821491723228235],[-98.25381399617743,20.82239639533168],[-98.25367663036297,20.823289506330696],[-98.25362046700519,20.823736212293568],[-98.25343717974789,20.824322667749698],[-98.2531698029274,20.825567410196413],[-98.2529091471605,20.826317758941116],[-98.25275121497077,20.82688097203811],[-98.25231526730317,20.827629210753912],[-98.2521123756477,20.827815140190012],[-98.25891394134095,20.83397102314217],[-98.2593197169283,20.83657724099919],[-98.25931130355099,20.838297134295942],[-98.25930529344527,20.839525634870085],[-98.26086358001527,20.841792834037904],[-98.26106349258038,20.843710210184952],[-98.26189483395945,20.847075556279037],[-98.26120313878135,20.84707947765213],[-98.26111484202556,20.847081529966204],[-98.26099958672302,20.847075726101423],[-98.2609207680627,20.847073794031246],[-98.25770564131813,20.847673295044217],[-98.25581656867672,20.848274368670786],[-98.25493328932697,20.84875822659376],[-98.25464298556886,20.848952198975724],[-98.25516118896917,20.849755255023013],[-98.25534762962104,20.849925850749514],[-98.25657832801119,20.85120326462237],[-98.25650070233638,20.851720227999863],[-98.25721132442408,20.85259059186137],[-98.25737396083338,20.85286521216409],[-98.25781468650598,20.853532069791697],[-98.25829069615429,20.854041084194364],[-98.25880533457683,20.855068050402622],[-98.25882366926953,20.85556274319157],[-98.25835526598564,20.856852170061927],[-98.25812505738367,20.85720260186497],[-98.25759013824364,20.85785547736708],[-98.25687957127724,20.858529787920418],[-98.25654501234948,20.8591850661482],[-98.25709123280092,20.859544821202917],[-98.25815991392255,20.860169855773677],[-98.25858154851142,20.86048101811849],[-98.25902727268374,20.860863107402963],[-98.25996977954048,20.86155725596916],[-98.26034005071489,20.861961983346248],[-98.26102699303516,20.8630298027104],[-98.2612717161914,20.863456569514312],[-98.26149267046372,20.863788865881475],[-98.26220946286276,20.86450384366742],[-98.26270785484775,20.86469818404339],[-98.2633803033944,20.864988792305837],[-98.26541602132136,20.866355293858817],[-98.26458540062663,20.866945745888984],[-98.26401872888641,20.867528941846103],[-98.26342238059692,20.86813173205178],[-98.26331278264706,20.868260190925525],[-98.26295450970156,20.868680464072156],[-98.26154910055988,20.870712155141234],[-98.26011892412987,20.872719990264443],[-98.25862794048567,20.875987350157686],[-98.25834618889155,20.87689469753144],[-98.25775679563014,20.877778583102213],[-98.25762467270437,20.878442247649332],[-98.25768070825018,20.879423938402056],[-98.25611425673083,20.885339803438455],[-98.25564284725078,20.886841096923717],[-98.25463990696483,20.88873628290861],[-98.25096630941619,20.897304692351554],[-98.24866815230996,20.898961620389343],[-98.2481356684948,20.898885787602694],[-98.24592837731615,20.898830284716666],[-98.24558074386437,20.898527732000446],[-98.24490967157425,20.89870095622956],[-98.24437225349703,20.898950277091842],[-98.24356599696767,20.89934942758333],[-98.24246510846802,20.899696926706326],[-98.24136224850946,20.89968343008917],[-98.24026634597806,20.899787845941148],[-98.23827120809534,20.90017616161441],[-98.23753991777772,20.90023345552163],[-98.23683023297639,20.900270662126047],[-98.23614214216474,20.90028777303496],[-98.2352386564325,20.900384661532712],[-98.23327460283218,20.900214373390213],[-98.23267193371038,20.90005361935863],[-98.23203174595852,20.900487835519414],[-98.23180611434378,20.90077821014154],[-98.23121641585107,20.901455472416103],[-98.23027762997646,20.901887872721147],[-98.22985829544206,20.90201700877094],[-98.2289720637122,20.902478881645266],[-98.22890594439002,20.903279291761237],[-98.22869848481184,20.904428468764763],[-98.22810568501478,20.904431174316983],[-98.22691415111274,20.903945362003412],[-98.22626209373504,20.90409371994639],[-98.22607465411534,20.905132906238066],[-98.22667424443182,20.90527299370342],[-98.22667110788205,20.905884917216724],[-98.22486289467258,20.906357244047683],[-98.22587223270699,20.906991539155],[-98.22682966804058,20.907159528812883],[-98.22744520056295,20.907238636258114],[-98.22874294217127,20.90740993848118],[-98.22901763909078,20.9081903520393],[-98.22884271704316,20.908680447788925],[-98.22635472699318,20.911393619119906],[-98.2256930761526,20.911317947477755],[-98.22430144201053,20.911465797976746],[-98.22400026761898,20.912159815667508],[-98.22266012390804,20.91335857997558],[-98.22276250214549,20.914351024011864],[-98.22252005394574,20.915987357697702],[-98.22243686064746,20.91690333784362],[-98.22263361234263,20.917557083607278],[-98.22258048732635,20.917939677536083],[-98.22321638452189,20.918842066688114],[-98.22609039688899,20.91743360849358],[-98.22913008164045,20.9146802699359],[-98.23180935439512,20.91523283645114],[-98.23426393754369,20.915829905490853],[-98.23514411884582,20.916890337040343],[-98.23604283342752,20.917879189775533],[-98.23836551183996,20.92074243857695],[-98.23862165601014,20.921007873136432],[-98.23915741676916,20.922122494755968],[-98.2390843767102,20.92486245687627],[-98.23871883441916,20.92612475883965],[-98.23825071908095,20.927070407655435],[-98.23716403861374,20.92825306389824],[-98.2368234749323,20.928975164608175],[-98.23667971222517,20.93002290886966],[-98.23749759138269,20.930639656958306],[-98.23703462286397,20.931390640793268],[-98.23700994301817,20.931460672381263],[-98.23680966929629,20.932394983055246],[-98.23686188545065,20.932467285757014],[-98.23713059380583,20.93242988297021],[-98.23716267098968,20.93261043983904],[-98.23742687662627,20.933818727967775],[-98.23738624714542,20.93477624845201],[-98.23688053293847,20.935681286423176],[-98.23493551513661,20.9410629258428],[-98.2302038371343,20.944765541392428],[-98.22973063105223,20.949748330183752],[-98.2273693427017,20.954065429937202],[-98.22857369287959,20.957608847392464],[-98.22568767527434,20.959419445069216],[-98.21884969774595,20.953959584506094],[-98.21810089488383,20.95373859968629],[-98.21730230418024,20.953493463831933],[-98.21611156636362,20.95260791912699],[-98.21610507260931,20.95307867737114],[-98.21602503030982,20.953430830635],[-98.21545817939244,20.954553936091088],[-98.2147445479323,20.95541629044385],[-98.2143849667749,20.95604753846868],[-98.21435470924791,20.95642383933688],[-98.2143706673528,20.957083205662116],[-98.21425548516129,20.958164726847087],[-98.21421352560708,20.959388391393702],[-98.21388736575841,20.96105538655354],[-98.21350321967537,20.962580593463656],[-98.21316681463804,20.96318773337157],[-98.21168665299211,20.964695829847017],[-98.21022826833604,20.966392635535897],[-98.21000901888533,20.96747253277539],[-98.21071082884447,20.967483245666585],[-98.2117776201664,20.968135341726224],[-98.21080073052309,20.969533362277673],[-98.21044230837452,20.97141179409698],[-98.21078426469228,20.97193508674144],[-98.21129435447955,20.972309240287984],[-98.21216790566757,20.972807329520947],[-98.21484593980159,20.973386408839133],[-98.21691940382289,20.97374300816341],[-98.21674702262919,20.975909630510387],[-98.2143879530471,20.978525450565485],[-98.21417939933627,20.980951930811216],[-98.2132593000693,20.98374929983794],[-98.21423168190273,20.987171275000037],[-98.21446498738993,20.987614404297744],[-98.21500745403665,20.9896273151258],[-98.20166549190708,20.994286576325408],[-98.20061927399752,20.994696329480007],[-98.20009540987735,20.996766621144673],[-98.19991967044518,21.000134022914892],[-98.20023356189142,21.000944330722234],[-98.20200898046005,21.005328112735754],[-98.20192202644847,21.008458318094824],[-98.20268831724587,21.00935197425264],[-98.20251225522873,21.00969284793797],[-98.20240115539241,21.010399367534944],[-98.20206846745162,21.011749209104835],[-98.2001888061618,21.013045785523673],[-98.19955986634551,21.013804050192334],[-98.1991269909592,21.014315153933353],[-98.19865599929335,21.014584346607535],[-98.19763896191489,21.01570443413374],[-98.19699342041736,21.016592499251544],[-98.19682016180565,21.01659270443696],[-98.1963441385173,21.016750561031586],[-98.19497892158671,21.016928839731804],[-98.1939530742082,21.017179238392714],[-98.19258968101872,21.018034182939914],[-98.19253146531418,21.018053205707247],[-98.19116072083449,21.018012448353147],[-98.18899837380775,21.0183187709286],[-98.18935566042666,21.019470529504588],[-98.18860417314414,21.02087875746497],[-98.18863120148859,21.021279388052903],[-98.18923052390613,21.022221189347988],[-98.18927548530706,21.02280470399006],[-98.18992709687632,21.024442261474917],[-98.19011189308566,21.024891569203874],[-98.19040569558541,21.02567711540297],[-98.19047960159179,21.026990793610082],[-98.18955388872064,21.02857910359444],[-98.18874263479705,21.030648920833812],[-98.18827143240321,21.03130814879671],[-98.18656677443744,21.030611032855177],[-98.1852705015404,21.030293222766375],[-98.18254478790931,21.02963071248115],[-98.18143825558269,21.0276004550621],[-98.18116565348265,21.026730901095846],[-98.18107897478325,21.02578264186684],[-98.1807692294812,21.024610935519945],[-98.18064968674128,21.02435174340468],[-98.17995600659026,21.023562431249502],[-98.1782291603493,21.02243123990945],[-98.17631740953095,21.0211678814415],[-98.17500834525265,21.02078978885794],[-98.17442833373968,21.020624038160122],[-98.17170383053485,21.021563521356256],[-98.17119627181626,21.02199188570097],[-98.17025461865546,21.022801964117377],[-98.1678637212724,21.022892659374406],[-98.16698570188771,21.0221005683905],[-98.1666453769871,21.02122279453954],[-98.16591978468034,21.019951407545307],[-98.1651516650391,21.018793904260406],[-98.16316791660887,21.017723181600218],[-98.16156152894689,21.0188271258624],[-98.16115768377534,21.019130630939856],[-98.160699052761,21.02105721901205],[-98.16225372148932,21.02643306957691],[-98.16270054526717,21.028331894578344],[-98.16081659038707,21.0311470937703],[-98.1597705062805,21.032183012306348],[-98.15826071335215,21.032499676356338],[-98.15737914215157,21.03277694273777],[-98.15515177107494,21.03483701848114],[-98.15352188657141,21.038810542588408],[-98.15221276312741,21.042397834402436],[-98.15166085671234,21.044728285940664],[-98.15077630816523,21.047218474009924],[-98.15055070640318,21.049718086761914],[-98.15130789670997,21.054982478071622],[-98.15443529964955,21.06321323795879],[-98.15364141415387,21.067465486320202],[-98.15043955421794,21.069508902300072],[-98.14795933921141,21.07479734327694],[-98.14735823780438,21.078449670522218],[-98.14846409433488,21.081546004128995],[-98.14913785467405,21.08302188796813],[-98.1498086968723,21.084124555060498],[-98.15094677747334,21.085498271219308],[-98.15256100427996,21.085797529030174],[-98.15350617699977,21.08600439244367],[-98.15747482018764,21.089785532353517],[-98.16173361371835,21.092455454007904],[-98.16579142631548,21.094519449432084],[-98.16858083204193,21.09579805814559],[-98.17095650657552,21.09681165049659],[-98.17191010045502,21.099202153598185],[-98.17256824583313,21.10068525746675],[-98.17286164452105,21.102061331094205],[-98.1732593094448,21.10348905164011],[-98.17406001653922,21.10536223546842],[-98.17444332540225,21.105985562417914],[-98.17486191583419,21.106223896937877],[-98.17597046274676,21.106229288310885],[-98.17716290447248,21.106250832427065],[-98.17835551114695,21.106240863325127],[-98.180766720122,21.106834875911602],[-98.18184397580114,21.107383727379897],[-98.18249629935252,21.108548301720646],[-98.18288718426362,21.109340943169116],[-98.18306837789646,21.10993488650456],[-98.1850711059385,21.110599549993935],[-98.18863184038952,21.110807514753844],[-98.18980446891868,21.110760162210795],[-98.19146280143394,21.109822940447145],[-98.19253707127388,21.108962282440586],[-98.19579763058601,21.107624705515832],[-98.19784262398599,21.10692997345336],[-98.20198243084792,21.10644293808275],[-98.20235609220373,21.110890204801365],[-98.1995148573933,21.11581918753035],[-98.19844331501196,21.116799246277765],[-98.19702860000967,21.11686217719034],[-98.19566734783984,21.117817411748604],[-98.19502989395045,21.11948957475596],[-98.1951522468674,21.120363207329376],[-98.19541316231965,21.121046929124304],[-98.19635470725876,21.12254899343651],[-98.19690603145568,21.12297437599375],[-98.19941151791738,21.123460917024886],[-98.20270889815612,21.12530670961121],[-98.20598181599064,21.126827356906915],[-98.20799983275333,21.130808034029997],[-98.20601157766839,21.13259007727413],[-98.20523177958478,21.13360694696712],[-98.20440661540147,21.134876126415065],[-98.20505372345423,21.138087915230585],[-98.2076560545704,21.14215489289029],[-98.20862629883896,21.143316021818066],[-98.21104161583168,21.144202194597995],[-98.21404816256825,21.144057351958622],[-98.21503999699854,21.143909357572284],[-98.21607554368074,21.143962825789856],[-98.21751881779039,21.145688599886853],[-98.21784765318398,21.14767366271758],[-98.21699307746871,21.148915958409475],[-98.21589796675596,21.14937506897718],[-98.2156302794246,21.15067140638456],[-98.21773305809268,21.1517545213689],[-98.22046104404137,21.151534656706076],[-98.22216720614063,21.15096825214266],[-98.22421121367267,21.149881290309224],[-98.22475092845639,21.14985160392257],[-98.22735004579613,21.150415946242276],[-98.22783537540346,21.14909426095022],[-98.22888626808361,21.146402699449766],[-98.22936676628734,21.14541409990835],[-98.2300118704776,21.14451470376838],[-98.23063425584724,21.14421108752032],[-98.23139419185799,21.144560099249702],[-98.23165609005605,21.14435765779342],[-98.23153242909405,21.1437348695099],[-98.23125738223462,21.143192428468637],[-98.23149261208079,21.142286112115983],[-98.23260059787822,21.143088269366842],[-98.23379122308108,21.143010060172173],[-98.23371786417567,21.1416437561698],[-98.23335113243309,21.14057392854653],[-98.23564492584,21.141806842139943],[-98.23692060624649,21.14335824172423],[-98.23699795542893,21.143285570267096],[-98.23820375552833,21.140986015682984],[-98.23845788403997,21.139344206527028],[-98.23945053112851,21.13798847145614],[-98.24246487240441,21.135895376369206],[-98.24431124086937,21.134612524570173],[-98.24596098207854,21.134601766797914],[-98.24577307131949,21.133505099120896],[-98.24587568677862,21.13304685528425],[-98.24527342009401,21.13216954378362],[-98.24911036922151,21.12940332652039],[-98.2506953929772,21.130801798186326],[-98.25105338332446,21.130641705413154],[-98.25710233733514,21.133924963896163],[-98.25786444852599,21.134694873123067],[-98.26000846213157,21.137736396060347],[-98.26100409843065,21.13916366770701],[-98.26250277495603,21.140656584303258],[-98.26466821427516,21.14115324557571],[-98.26739330316235,21.14014246540114],[-98.26903517284052,21.139091149490355],[-98.27168641501493,21.139367173904702],[-98.27547515909953,21.137848727110622],[-98.27818744758764,21.13717234051802],[-98.27892240168399,21.13691087047522],[-98.2823318954313,21.136923720745585],[-98.28140974820224,21.140074757910497],[-98.28110495910448,21.140274914989845],[-98.2808832839927,21.140499535173433],[-98.28118930123884,21.14145978720512],[-98.28167358290017,21.141738240640336],[-98.28276616063812,21.142470197897808],[-98.28407821505203,21.143476692742638],[-98.2851625009335,21.144544035712215],[-98.28835961222723,21.145529392870174],[-98.29049990484168,21.146100982575888],[-98.29265893513542,21.146309681254877],[-98.29393923072166,21.146816553393933],[-98.2955388174492,21.148289784730707],[-98.29571601257027,21.150553401744162],[-98.29573303266483,21.155273100051716],[-98.29189817451913,21.158951370478974],[-98.29020562127107,21.160901215261333],[-98.28864222252798,21.16109905155929],[-98.28639567463551,21.16139664283179],[-98.28468486320304,21.162365511416965],[-98.28314714738036,21.163971103775054],[-98.28231431856005,21.16693746825871],[-98.27932277543795,21.171156273202314],[-98.27805760695617,21.174545364552273],[-98.27847059626725,21.17708746518059],[-98.27887446148549,21.182858446971352],[-98.27837345233428,21.184407416359818],[-98.27551632205507,21.187373061132234],[-98.27637293183312,21.189472248962943],[-98.27810228661372,21.19202199496749],[-98.2791311354602,21.1927525553873],[-98.28619636971058,21.193724704581314],[-98.28818780166927,21.193209088516824],[-98.28874851827311,21.192834307971168],[-98.28895690007158,21.192744277569034],[-98.28926299906539,21.19251180099502],[-98.28958283376062,21.192305353417055],[-98.28993053858795,21.191889650973906],[-98.29041842621712,21.191363665255835],[-98.29131268304303,21.190986053724487],[-98.2917214327183,21.190635745823215],[-98.29261896241161,21.18956876904639],[-98.29293974098891,21.189358320192127],[-98.29336500643223,21.18888176103576],[-98.29371668063317,21.1887607977489],[-98.29555682693109,21.188135088166064],[-98.29614892423035,21.187873249425536],[-98.29648592730206,21.187068658235205],[-98.295559622089,21.186230722261087],[-98.29543937262082,21.18572323150113],[-98.29626073923066,21.185373305679263],[-98.29607173588931,21.184953222120043],[-98.29588937297495,21.18409085266387],[-98.29575236096969,21.1834170141791],[-98.29774558181538,21.182706974876567],[-98.29801107279451,21.18404856053087],[-98.29880517161331,21.184730193826795],[-98.2995366873945,21.183418945541746],[-98.29876131978011,21.182554414211495],[-98.29888940798202,21.18102173787753],[-98.29828854098525,21.180398201208106],[-98.29830523106835,21.18012159419243],[-98.2991845392387,21.179562279243214],[-98.29922676935269,21.179509056659015],[-98.29834955882092,21.179405656841084],[-98.29809668400588,21.17918681745857],[-98.2979998921254,21.17906934196435],[-98.29770668421594,21.178237035599693],[-98.2974982290927,21.17763351668026],[-98.29893730702764,21.177404382027817],[-98.29961665373276,21.17805244029904],[-98.3014893978052,21.17869743146622],[-98.30139352163695,21.178934623070006],[-98.30243456666358,21.180101285855756],[-98.30370992103673,21.180863676833837],[-98.30461097741608,21.181120240017492],[-98.30538371406499,21.18129476850214],[-98.30524143993944,21.18138135069438],[-98.305564641329,21.182227023476855],[-98.30499995911941,21.182956541273597],[-98.30593214486078,21.18176400417292],[-98.30806166880143,21.18029064280097],[-98.3083577910715,21.18057596699191],[-98.30910236885876,21.18157407999962],[-98.30907387217013,21.181888143050912],[-98.3086259077449,21.18233015639612],[-98.30829751530331,21.1836308129578],[-98.30944108074203,21.18499834820534],[-98.31076225873244,21.183488859238764],[-98.31119292658713,21.18344873482107],[-98.31271703937767,21.184534796970752],[-98.31331437407351,21.185509587073284],[-98.314543494693,21.185681508840048],[-98.31541426316988,21.18621951430248],[-98.3154730077494,21.186308130862074],[-98.31585590670659,21.18687961306017],[-98.31666629607099,21.185841356528556],[-98.31795599928313,21.184638742910636],[-98.31936288197943,21.183715550654313],[-98.32093062790051,21.18156896886677],[-98.32277091134375,21.1810079088429],[-98.32450620985043,21.17982085141881],[-98.32755961798955,21.179114875413347],[-98.32860008210429,21.178535500946907],[-98.3288354775604,21.17834207058661],[-98.32917226886292,21.17806438966909],[-98.32968356275865,21.176925637239492],[-98.33064673450326,21.175867677946144],[-98.33244551122493,21.174642640153706],[-98.33606344551765,21.17339469468766],[-98.33725127339949,21.172984888057954],[-98.33814956985645,21.172770913622458],[-98.33916487381003,21.171686031379352],[-98.33953853730344,21.171178417950728],[-98.34050120411734,21.1704689495931],[-98.34078493272028,21.17025206045389],[-98.34071220039476,21.170125794433318],[-98.34074886402647,21.169509793556188],[-98.3406551401294,21.16875115252867],[-98.34235647922611,21.167190152555463],[-98.34119835988423,21.16618669993352],[-98.34113927261546,21.165538486939454],[-98.34088672890027,21.164823635117273],[-98.3412056670631,21.163568102558827],[-98.34123974009896,21.162968105428263],[-98.34195755073779,21.160985450661315],[-98.3458322847303,21.160146079107733],[-98.34611757742931,21.160374511270504],[-98.34698353796529,21.16043699699503],[-98.3489317456146,21.159675766273722],[-98.34927875895141,21.15992096813983],[-98.34956958974698,21.15995393309663],[-98.3500470286599,21.15994725281081],[-98.35058216419208,21.159867645695215],[-98.35116131440446,21.159191163719754],[-98.3506753999788,21.158797265355304],[-98.35054899030337,21.157388562522556],[-98.35146477148862,21.15736945064333],[-98.35215704348019,21.157740634638856],[-98.3528737360835,21.158980884808273],[-98.35368264955554,21.15980476419577],[-98.35387265262995,21.159755440280833],[-98.35558803364825,21.157894385163388],[-98.35574528418772,21.1579069944288],[-98.35600361323128,21.158117806062023],[-98.35685416569731,21.158152807047088],[-98.35779847156721,21.156541133973178],[-98.35858063535204,21.156241363941263],[-98.35899327367139,21.15641396419676],[-98.35947833822024,21.15761566844077],[-98.36067815786663,21.1571896036902],[-98.36203993387835,21.157049025796482],[-98.36265623713405,21.157429378576694],[-98.36296227887783,21.158410211500723],[-98.36373663856352,21.15808446373245],[-98.36506316031125,21.158095179896407],[-98.36544946746056,21.15912200354029],[-98.36515832724479,21.159336090906777],[-98.3649660707793,21.161738377331346],[-98.36678803058578,21.161274282730517],[-98.36681101353537,21.16067819997602],[-98.36774019287913,21.158830963166963],[-98.36944377778428,21.1582108395869],[-98.37010195137128,21.158041656929527],[-98.37177955276138,21.15727604583003],[-98.37325925122809,21.15675882541899],[-98.37469309362979,21.15639331906084],[-98.37882728844835,21.15540551113935],[-98.37924246962302,21.1552442067956],[-98.38021953008763,21.15512473159697],[-98.38016741590496,21.15836340759688],[-98.38148931523489,21.159303132494983],[-98.382041584599,21.159185751738107],[-98.38279631884637,21.158751549171427],[-98.38303853177047,21.158451030579727],[-98.38322674134224,21.158311675792618],[-98.38386765847156,21.158748590665084],[-98.38402393908552,21.159863133101908],[-98.38617427754428,21.162276119807984],[-98.38730267307562,21.162156708669443],[-98.38845351226007,21.16164101597326],[-98.38869268793616,21.1607829658264],[-98.3880995165058,21.159275463698805],[-98.38933274916559,21.15866787830936],[-98.3899775843505,21.158619399402937],[-98.39113209739634,21.160536320993288],[-98.39150339664747,21.16045175820682],[-98.39168418636672,21.160176770987505],[-98.39232542872719,21.159346664094073],[-98.39309950509755,21.158836208507296],[-98.39398139096295,21.158714561485965],[-98.3955653661846,21.157842929467677],[-98.39689313382206,21.158026615111055],[-98.39734682325974,21.156625366273033],[-98.3975516923702,21.1565460179217],[-98.39821302853363,21.156766088730194],[-98.4004948615422,21.158446644658056],[-98.40055131196794,21.15680974304962],[-98.40067403108134,21.15610777126352],[-98.40283272895886,21.157303090764856],[-98.40380898578792,21.1575924415244],[-98.40443419732804,21.156332691720024],[-98.40319688464763,21.15442450125323],[-98.4032693869242,21.154133844903015],[-98.40379518370685,21.15310777001804],[-98.40419294820089,21.152785156544724],[-98.40483174964328,21.152919348704472],[-98.40481463278763,21.153378182573135],[-98.4045218947183,21.153965110788704],[-98.40465798559677,21.154331270094417],[-98.40541855950585,21.154706672281975],[-98.4078934602934,21.15422707126976],[-98.40877105179533,21.154453382071324],[-98.40922510242325,21.154385453671523],[-98.40989724681816,21.154096637382395],[-98.41078757858276,21.154490410366748],[-98.41152485200922,21.15460960015531],[-98.41203250609948,21.15467495834315],[-98.41281786230547,21.15488180204636],[-98.41305145531203,21.154914986659435],[-98.41372372380329,21.155082562958967],[-98.41383716732918,21.155198779665966],[-98.41388692619438,21.15525522708515],[-98.41391691468431,21.15525533094234],[-98.41491246175457,21.155025044961462],[-98.41643569593373,21.154981885375378],[-98.41648765331274,21.155528844612718],[-98.41664689775507,21.156100873922526],[-98.41689198910223,21.156692453182757],[-98.41663051290595,21.156949979269427],[-98.41636879817486,21.157264936201273],[-98.41685758155847,21.157654259296976],[-98.41746961749914,21.157871726242945],[-98.41748459466072,21.157957920223623],[-98.41719819566782,21.158253648352513],[-98.41735178683189,21.158487374936556],[-98.41765306027702,21.158903409509378],[-98.41762735279713,21.159129707842908],[-98.41749590066723,21.159825435758705],[-98.4171287727707,21.16028520345799],[-98.4175872250728,21.16057121027643],[-98.4181024874236,21.160544587911488],[-98.41819681683029,21.16088906135485],[-98.4180438181827,21.161054332412846],[-98.41810204026336,21.161233173266055],[-98.41822676460737,21.161213453946402],[-98.41860941862365,21.16127456187934],[-98.41875808175257,21.16133487100592],[-98.4187822866304,21.161749884051517],[-98.41867172068709,21.16201092020259],[-98.41852379292027,21.162236614819392],[-98.41890896177802,21.162284097659608],[-98.41917904776432,21.162134911438216],[-98.41928490534116,21.162110500633105],[-98.41942458377991,21.161888000944373],[-98.4195701302728,21.161857532597764],[-98.41969493305879,21.162062353399676],[-98.41996894596474,21.16232909404971],[-98.42008655421023,21.16218690817294],[-98.42011714179671,21.161846998286933],[-98.42022925498753,21.16150390739432],[-98.42117174039299,21.16208300783785],[-98.42134910456832,21.16211441038257],[-98.4219762872566,21.163150912920457],[-98.42233682491076,21.16306786218081],[-98.42306713493849,21.163458977413313],[-98.42353606992407,21.163730977773128],[-98.42302190899977,21.164515996421812],[-98.42367644726329,21.165646013804007],[-98.42329514005229,21.166251515185138],[-98.42396523138387,21.166626114307178],[-98.42365478162787,21.167089320712137],[-98.4246400317582,21.167352152319324],[-98.42544124750032,21.16759116332281],[-98.42676582375185,21.16761232144961],[-98.42722026615473,21.166999740557685],[-98.42764023858359,21.16721491530234],[-98.42866208274603,21.16840493411047],[-98.42873778840465,21.168413130666636],[-98.42897542043028,21.167941878515364],[-98.42983572335277,21.168060904215054],[-98.43051080567687,21.168419153632556],[-98.43054027793795,21.16925252060355],[-98.42965661428707,21.171287878870032],[-98.42954760761086,21.17136190710721],[-98.42944445996477,21.171560314660724],[-98.42950059526174,21.171631691775076],[-98.42989995455838,21.172215632188966],[-98.42994849331484,21.172522073648224],[-98.43032232253995,21.17293321845301],[-98.43081547587144,21.172692795911757],[-98.43104310333013,21.172150156955013],[-98.43132546702066,21.171911351528934],[-98.43249902478266,21.172381103350006],[-98.43212862910212,21.173387806535914],[-98.43225827754264,21.173843715033854],[-98.43300851997111,21.174265322934843],[-98.43301083031832,21.17449191355786],[-98.4336015398618,21.174631072303043],[-98.43388948237225,21.1743082506639],[-98.43410297314034,21.174394443138226],[-98.4342555294213,21.17482279750766],[-98.43451803887325,21.174862058635483],[-98.43471508274604,21.174410865630932],[-98.43475543134878,21.174311147447554],[-98.43488864951007,21.17431159266863],[-98.43504819456263,21.1743995000254],[-98.435712073263,21.1749883676041],[-98.4356981819858,21.1751381065626],[-98.43587103905207,21.175226051852405],[-98.43649690603422,21.17530303408722],[-98.43636138212162,21.17576297078392],[-98.43632546071024,21.176427458618832],[-98.43685056956014,21.176830310609148],[-98.43694579157807,21.17710921675001],[-98.43704151359486,21.177170489229752],[-98.43782077472969,21.176936369792656],[-98.43876931188782,21.17693347408158],[-98.43834116881874,21.176298218148247],[-98.4383416443709,21.17617226322068],[-98.43896324691616,21.176221560405168],[-98.43944920255257,21.176585291281867],[-98.43966748638849,21.176633248441362],[-98.4397333424705,21.176748829399855],[-98.43982219989113,21.176860647792978],[-98.44028219440247,21.177196737492864],[-98.44069827734808,21.177337517684236],[-98.4416350194083,21.17794267686355],[-98.44174889963512,21.178040362098045],[-98.44221503155666,21.178372742592728],[-98.44263070265674,21.178013860189992],[-98.44276466976288,21.178001807361056],[-98.44403351897142,21.17852149301075],[-98.44496550924543,21.178575864758386],[-98.44546966717053,21.179146530405774],[-98.44556043456697,21.17981508498849],[-98.44533813289411,21.18022617305712],[-98.44522167611643,21.180458923291837],[-98.44561448276988,21.18062373844748],[-98.44603893121081,21.18004300305671],[-98.44663499507953,21.1797353116375],[-98.44678072887274,21.180540858617235],[-98.44681156694219,21.18099138781656],[-98.44690368288383,21.181078289484674],[-98.44940022909242,21.186566929653168],[-98.44842795413535,21.188483792590887],[-98.44856472810926,21.19492691415053],[-98.4481950340579,21.19581020459043],[-98.44809686538025,21.196960410926636],[-98.44787994266039,21.197364176894496],[-98.447707842498,21.197607364305554],[-98.44725740093361,21.198261190539597],[-98.44673494475882,21.19854860933998],[-98.44661226451706,21.19884048091842],[-98.44660839042746,21.199377648425525],[-98.44697742647088,21.20012777745376],[-98.44709572124253,21.200401348790024],[-98.44721482072919,21.200629116867276],[-98.44762138312262,21.20090593149098],[-98.44779350630375,21.20104619902702],[-98.44899419758764,21.201740614029518],[-98.4492388691973,21.201932930279895],[-98.44935957941601,21.201993041295452],[-98.4495980600991,21.201992848124462],[-98.44984862095856,21.201998665852102],[-98.45052015263923,21.202272146547443],[-98.4507854229667,21.202415843216954],[-98.45338948877821,21.203058640799725],[-98.45581968015091,21.20274738565115],[-98.45962606183747,21.2048017526468],[-98.45937072301837,21.20579972805507],[-98.45907880173792,21.206018444483504],[-98.45632627737888,21.207003521889817],[-98.45307687594749,21.210459433867868],[-98.45353243994867,21.211011016442],[-98.45418129825879,21.211183749502197],[-98.45452112900546,21.211437424681037],[-98.4550742801726,21.211916891378678],[-98.45591394311873,21.212260269270473],[-98.45584649098186,21.212751125169348],[-98.45602088969451,21.213385183481478],[-98.45662923685683,21.213946156038105],[-98.45691944181652,21.214620180794952],[-98.45750390422762,21.2147614134023],[-98.4584959268143,21.2149749114796],[-98.46650623244341,21.21990012621734],[-98.46813432522754,21.223903252270418],[-98.47280666169445,21.219810558727204],[-98.47572965333853,21.220428700704133],[-98.47975522085954,21.224111152269302],[-98.47935316476571,21.224528944244184],[-98.47922353978657,21.22557263082723],[-98.47984667096995,21.2265971895568],[-98.48039425409104,21.226802903135933],[-98.48021520031654,21.22735457942389],[-98.48020921239873,21.22808036332441],[-98.48106452911264,21.22794642652201],[-98.48134192889893,21.228171324696405],[-98.4809655913171,21.22843126957673],[-98.48135529175931,21.228727630118726],[-98.47882975389365,21.232191172330317],[-98.47583056250505,21.233053845660777],[-98.4723653326754,21.23265600060256],[-98.4717043630663,21.232406261505275],[-98.47079720208808,21.23326259737786],[-98.46988118299521,21.233973410480985],[-98.46928304326894,21.234549346864185],[-98.4691686323348,21.235351912843214],[-98.4690318383669,21.23610925698705],[-98.46845077310019,21.23917667666319],[-98.46985866905624,21.243148417381178],[-98.46996197481485,21.246185202239246],[-98.46871908362527,21.249575746744142],[-98.46966405913378,21.24960984159094],[-98.47207200096875,21.250532499120823],[-98.4742544670031,21.25091134753501],[-98.47595357196235,21.251755771544822],[-98.47699550680841,21.252360220706294],[-98.47853764103326,21.25199361258359],[-98.47973346221329,21.25173056303612],[-98.48216369155409,21.25120619825873],[-98.48604647283304,21.250717122684932],[-98.49025515058639,21.251090498843894],[-98.49190129513914,21.25129741149817],[-98.49283321509597,21.25064182962103],[-98.49359770693906,21.251004155514067],[-98.49932881818125,21.25217893217615],[-98.49964083468899,21.25205824751515],[-98.50049842513994,21.25167295131257],[-98.49982506507826,21.24973567055042],[-98.49998578106084,21.248597280363185],[-98.5006220229576,21.247736765711295],[-98.50141687891983,21.24759688156911],[-98.50143204604149,21.247475145575038],[-98.50157055824462,21.247056494751178],[-98.50165629567306,21.2468080218174],[-98.50184789209561,21.246345879664602],[-98.50206040892482,21.246144717465484],[-98.50263721449238,21.24584565222625],[-98.50390448616434,21.24679426762566],[-98.5047186223876,21.24698214668905],[-98.5052155266306,21.247156451018952],[-98.50540064889026,21.2470922567598],[-98.505749522202,21.246923146829317],[-98.50615470052577,21.24665366810126],[-98.50651099375386,21.246637151928496],[-98.50697884564681,21.24690191894871],[-98.5074843842799,21.247114111479448],[-98.50784974146848,21.246988980598132],[-98.50832660726422,21.24707256297137],[-98.50854656065167,21.24694705079844],[-98.50922497817771,21.246059258263983],[-98.5095758462437,21.246266338631074],[-98.50979906234636,21.24643269363196],[-98.51030430144607,21.246732678445312],[-98.51052923025941,21.246750896454614],[-98.51054833312816,21.246645591209244],[-98.5107180645955,21.246347566685586],[-98.51075322245026,21.246487028492822],[-98.51081671895832,21.246731040444274],[-98.51103583746931,21.246405256457138],[-98.5111700695465,21.246396733789595],[-98.51173052696225,21.24635050098658],[-98.51192595526237,21.24581995844227],[-98.51233275564357,21.245667401767435],[-98.51251989686841,21.2457733035115],[-98.51270681953605,21.24594944687044],[-98.5128091915584,21.246185807840845],[-98.5129716149516,21.24624334762143],[-98.51314191780529,21.24616148752284],[-98.51363675119597,21.24594363911865],[-98.51654571712032,21.244273291466982],[-98.51701304671133,21.24497362662396],[-98.5183269443059,21.246756967109548],[-98.51945964229668,21.248126969971793],[-98.5221481179434,21.250415322208937],[-98.52540334711716,21.25322375598961],[-98.53786081568836,21.26386608561336],[-98.53848419528885,21.263990116782338],[-98.54116136338388,21.263945390686445],[-98.54174142409994,21.26393888038018],[-98.54283960933975,21.26393891675997],[-98.54398172424197,21.263901237316077],[-98.54115939889476,21.26947890006977],[-98.53225573392024,21.280669981673782],[-98.53145483333924,21.281489583740495],[-98.53049618391248,21.28245728671959],[-98.53007278732366,21.282819583358503],[-98.52816780953657,21.284721030277524],[-98.5248950505104,21.28908257635794],[-98.52454856017044,21.289542110696686],[-98.52447709312935,21.289788569502605],[-98.52435532450545,21.290115021518034],[-98.5240753707015,21.29061587100989],[-98.52328200496305,21.2924503651883],[-98.5213013969443,21.298140561594437],[-98.5194647368665,21.301257676627415],[-98.517426808685,21.304129374811737],[-98.51673917450626,21.305001177282463],[-98.5158752294401,21.306064969334443],[-98.51196502386034,21.31108806223],[-98.51074261942063,21.312471921915346],[-98.50585425917825,21.31935683892675],[-98.4955669178812,21.329965773926403],[-98.49524959440384,21.33161125867116],[-98.49735693238688,21.33723271593209],[-98.49561750665225,21.340420212754452],[-98.49194557671524,21.34350394886718],[-98.49194531331403,21.343504152686364],[-98.48442457364752,21.350238734753646],[-98.48173565895695,21.349009888631883],[-98.48051329508712,21.348359966612747],[-98.47995802771425,21.348135296539454],[-98.47852738749344,21.34760511970353],[-98.47855424512898,21.345555163581537],[-98.4784650230983,21.34457988078742],[-98.47822374451124,21.343821366179668],[-98.47620044218218,21.344601442830424],[-98.4750549720888,21.344089213572488],[-98.47112764517294,21.346828436310545],[-98.4656207201233,21.347134362525026],[-98.46342306709903,21.350835563130033],[-98.46471394689036,21.352471276065273],[-98.4649872787283,21.352537264274304],[-98.4662451555393,21.353268761666413],[-98.46632644416889,21.353921300980005],[-98.46649211635741,21.35414667759693],[-98.46702836985122,21.354659001512857],[-98.46733126459185,21.354879431908046],[-98.46757420524142,21.355056672307114],[-98.46832753267694,21.355654391803228],[-98.4688775914895,21.355905808330988],[-98.4690317763152,21.356149441218008],[-98.46950537025225,21.357304532698265],[-98.46938924783922,21.357534766886772],[-98.4699597680733,21.357538903737634],[-98.46942140962972,21.35809860472915],[-98.4692474611303,21.358327759086308],[-98.46943244992667,21.358890658308326],[-98.46914397292483,21.358925101857665],[-98.46917226797706,21.359080762414635],[-98.46922125337574,21.360071654979606],[-98.46931094747907,21.360178238625338],[-98.46970531547043,21.360627646391265],[-98.46952569345405,21.36126796715746],[-98.46972436830606,21.362196276152986],[-98.46966742290613,21.362324510509268],[-98.4691280874826,21.362209039552226],[-98.4691361328284,21.362725812114377],[-98.46904075431712,21.363094840549252],[-98.46836801852373,21.363378004085064],[-98.46788350138547,21.3637946146755],[-98.46760840104758,21.364269423370445],[-98.46697929087316,21.365207715976567],[-98.46654623959688,21.365326105727718],[-98.46632714523088,21.3652830779954],[-98.46613955711825,21.36571555932136],[-98.46661036110731,21.36565257171759],[-98.46654935195153,21.3659421619588],[-98.46687247968231,21.3662963913971],[-98.46703631066714,21.366986738444382],[-98.46718800955682,21.367216751456567],[-98.46717911922781,21.367586760040695],[-98.46665888858615,21.368065025874387],[-98.46715656256072,21.368228981517746],[-98.46778483479937,21.369510092785163],[-98.46839028936279,21.370127537688006],[-98.46841912911174,21.37032982944487],[-98.46702114466586,21.372655210559742],[-98.46679972593142,21.372867685132064],[-98.46618354322317,21.37241483132624],[-98.46608870719035,21.372753453605583],[-98.46546346855564,21.373191910792627],[-98.46592101985419,21.37438355407886],[-98.4661960142019,21.37448213523936],[-98.46640130943115,21.374848468772996],[-98.46671697942753,21.374793259273986],[-98.46694742538585,21.375571073185938],[-98.46734072842702,21.375580629020646],[-98.46704768035943,21.375867739888122],[-98.46758432923451,21.37686319952161],[-98.4681770888543,21.377014497112782],[-98.46753957220426,21.37773808107636],[-98.46703887338123,21.377482171178997],[-98.4671037670459,21.378489626769465],[-98.46830026419423,21.379463351895026],[-98.4699594765234,21.384072778858524],[-98.46863644373673,21.386050959909312],[-98.4692918831422,21.388216272907357],[-98.47294001887457,21.39115215985447],[-98.47500729266545,21.390738558409964],[-98.47767410929436,21.38937986823288],[-98.47933309286759,21.388735487021393],[-98.47959502454864,21.388583871263563],[-98.48033227086313,21.38829522578095],[-98.4808145509661,21.388287335795212],[-98.4815669537955,21.390308117097845],[-98.48082896142648,21.391637057573746],[-98.48053615638139,21.392092331956235],[-98.47982853254808,21.39659543338007],[-98.48193428796719,21.397364906888072],[-98.48230255594461,21.397307136258178],[-98.48321139091928,21.397324980061455]]]},"properties":{"cve_ent":"13"},"id":"inegi_refcenesta_2010.24"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-100.59724607549549,18.875511346523695],[-100.60097587905943,18.87501472847549],[-100.60462963181408,18.875584426641467],[-100.60649939547602,18.878678758388048],[-100.60692082508376,18.88338090041492],[-100.61003334863796,18.887600761491797],[-100.61309100352315,18.88710064512304],[-100.61344368059451,18.8832666259205],[-100.61566626942403,18.880026728690893],[-100.61905577741982,18.879840901478417],[-100.62036235695888,18.878503999192674],[-100.61961078376879,18.87453133026264],[-100.6233261818947,18.871744365801646],[-100.62224716203195,18.866835243381104],[-100.62541546075988,18.86585657407926],[-100.62761246925766,18.867582362402345],[-100.630255178011,18.867933098455694],[-100.6341644469108,18.86665247254689],[-100.63752384142936,18.867632345652055],[-100.6408367495398,18.865906085959523],[-100.64020615121672,18.862583090316264],[-100.64182598795594,18.86109743459957],[-100.6450450103444,18.86053748154336],[-100.64278301374952,18.85214847317701],[-100.64341351793053,18.84887681288643],[-100.64548932534643,18.847857681711787],[-100.64939223325212,18.848873555648538],[-100.6522409491132,18.847352814907254],[-100.65327239972538,18.843010006188877],[-100.65079362688488,18.84056239772667],[-100.65366128289196,18.83807697258311],[-100.65713168567231,18.83749420302911],[-100.65904716611396,18.83421585095823],[-100.66272048931455,18.833651924369917],[-100.66565140811912,18.834498833945645],[-100.66843383949464,18.828966778754307],[-100.67109380416565,18.828598650259323],[-100.67293296472042,18.82480496663129],[-100.67118794580807,18.820620366548496],[-100.66804083667671,18.821502872570704],[-100.66657152094984,18.819852528277295],[-100.66943859302995,18.818246549875994],[-100.67259713740043,18.818386641123197],[-100.67522058049883,18.817008109305448],[-100.68000362854502,18.817225898757556],[-100.6806827565203,18.81548420105679],[-100.67943679524143,18.811705004758664],[-100.680316604969,18.809091262224285],[-100.68331680563466,18.808567033934537],[-100.68438355627893,18.803333523320987],[-100.68767450679502,18.804492205914073],[-100.69032756698516,18.80276218404839],[-100.69231157519346,18.80527890747203],[-100.69350981862033,18.798511734671763],[-100.69606854315106,18.794125492402827],[-100.6996210312472,18.795523227324907],[-100.70583816667397,18.79640651996999],[-100.70552614073739,18.81371261528892],[-100.70468408901473,18.817698972318283],[-100.70269565408444,18.822534215917756],[-100.70324863396968,18.824580652103805],[-100.71145484634667,18.825402105814533],[-100.71232220352078,18.8269244514438],[-100.71171078209528,18.831436971526728],[-100.70964430537362,18.834513870996716],[-100.70998499696475,18.836432841515943],[-100.71225463913282,18.837060948249302],[-100.7148743081276,18.840538864316102],[-100.72400525145082,18.849235391001173],[-100.72657986147885,18.850554381663642],[-100.73211045730034,18.850049133689367],[-100.73493990417768,18.850419921393325],[-100.73685481202517,18.8519720249098],[-100.73745620906232,18.855239795759132],[-100.7360786622665,18.858768617352098],[-100.73683073314254,18.860509840446127],[-100.74111818169348,18.860415401227215],[-100.74488930661391,18.85756404305664],[-100.74767068084662,18.859691501434668],[-100.74828848761388,18.862070240385037],[-100.74742484574006,18.866448692668257],[-100.74994575553347,18.868108494391322],[-100.75291856769581,18.867050577646012],[-100.75567740655083,18.867743336391868],[-100.75968027055984,18.865833689205658],[-100.76346335863684,18.8668067148771],[-100.76559362851424,18.864554716072405],[-100.76667368245063,18.86541515952382],[-100.76953288749661,18.860778416242056],[-100.7733162572161,18.858783335226633],[-100.77692224285471,18.859752299982915],[-100.7773761576567,18.85818162025066],[-100.7821174208022,18.854257718918802],[-100.77949041905737,18.850478878126523],[-100.78403352727446,18.8426560649753],[-100.78807226318736,18.83876792768814],[-100.78795827966621,18.837020648002067],[-100.79177088737009,18.834168471654152],[-100.79081353388284,18.83054703272819],[-100.79159253012307,18.82926990063777],[-100.78821597988116,18.817683658913552],[-100.78251752705563,18.801653501951193],[-100.78505094473655,18.79650122488715],[-100.7899805965443,18.793457927705276],[-100.7977911214893,18.786763726903757],[-100.79897488167518,18.782785789506477],[-100.7977086484641,18.782071059028112],[-100.7962647510031,18.777922903667218],[-100.7952165237001,18.771039636297473],[-100.79383779706558,18.768044486001486],[-100.79505116391539,18.767169355429417],[-100.79197720172715,18.764593759961315],[-100.79244835576651,18.76222470901814],[-100.79026142444121,18.761631444429213],[-100.79175844806849,18.757813920848946],[-100.7936985566435,18.757661769024992],[-100.79311177979775,18.755659244540993],[-100.79548405846583,18.754578736857695],[-100.7969757092331,18.75043791942153],[-100.7969119789201,18.746270165532167],[-100.79397844358851,18.74538251911781],[-100.78845965537369,18.741205676154607],[-100.7840672888072,18.745177271661476],[-100.78178034965885,18.74510507717696],[-100.77886488411002,18.742553471933377],[-100.78016318018592,18.73984718075593],[-100.77722882026552,18.73625433794689],[-100.77293519092404,18.732567701493167],[-100.77542839954396,18.72981401438409],[-100.77459122628784,18.727024636871647],[-100.77892055504446,18.71592162894916],[-100.78124779905522,18.708210374345413],[-100.78082753649676,18.70421262585603],[-100.78268718733261,18.698107429514096],[-100.78524000737468,18.694638615682038],[-100.78533817046605,18.691834113131847],[-100.78406691908793,18.687688902201955],[-100.77982631194425,18.68841799871865],[-100.78043839580573,18.68979922122014],[-100.77815032557555,18.690674480113444],[-100.77275600525036,18.690623856017226],[-100.77028261021673,18.692710232047546],[-100.77023454033332,18.69048049644414],[-100.7667328315759,18.687141898343214],[-100.76638958604019,18.68547688250851],[-100.76236567125062,18.680544532967247],[-100.76224586690739,18.677196860282947],[-100.76109403632694,18.675028474071382],[-100.76123541191134,18.67167116864516],[-100.76551614680778,18.664164002291216],[-100.76415948143716,18.661347869244082],[-100.76205207291815,18.66011084096641],[-100.75944718579188,18.655671765314082],[-100.75881764742297,18.642877697988524],[-100.7601037076476,18.641630548639057],[-100.75693200353822,18.639251666774044],[-100.75121281165048,18.641666729425083],[-100.75157671333574,18.633494483189224],[-100.75640004760407,18.613958507423092],[-100.75844201643918,18.609640818185994],[-100.76160701596456,18.594433995979728],[-100.76069063425564,18.59240256679277],[-100.76419793441733,18.581743302271207],[-100.76352721658179,18.563314347628705],[-100.76489572391051,18.56121134327742],[-100.74422518310149,18.518072967397813],[-100.73621084548887,18.519254264873325],[-100.7340761931946,18.52119402753084],[-100.73198984001937,18.520984833372097],[-100.72499466299138,18.515936249112144],[-100.72114923887074,18.511860522733855],[-100.71959018625614,18.508551438134816],[-100.71266276524119,18.500300433463167],[-100.70954277278338,18.495977565496617],[-100.70692117499283,18.489364097442035],[-100.7093480200142,18.48787241338806],[-100.7150411854887,18.486397020354502],[-100.70713664435516,18.48304745619339],[-100.70115552686855,18.485068001833326],[-100.70022136657764,18.488511436143654],[-100.6977902860636,18.490641154117327],[-100.69051325776923,18.48573315708012],[-100.68782296360223,18.483229897696503],[-100.68102576925247,18.479687502959678],[-100.6759633386884,18.47838339295106],[-100.67061867902925,18.474698698227883],[-100.65924826548621,18.469120459920703],[-100.65152274229905,18.4641562113506],[-100.64995939002165,18.462590449811728],[-100.64951697816633,18.46214734818983],[-100.64797779476498,18.457411603919297],[-100.63724447110496,18.45774917090131],[-100.63637780297961,18.454630088013346],[-100.63597765732197,18.448064718190608],[-100.63487429934958,18.4466280521508],[-100.635285948616,18.44298415767787],[-100.63190138463676,18.44097376713586],[-100.63149212877192,18.43846964412944],[-100.62348298905107,18.433222455693908],[-100.61192073290658,18.426783587003058],[-100.60742847540564,18.42480219094233],[-100.5944281403481,18.416087385695448],[-100.59069679959288,18.415460942039374],[-100.58822978270985,18.412145153289828],[-100.58916851565056,18.408294165216205],[-100.59295465956922,18.40725605462012],[-100.59594374711014,18.408288982792783],[-100.59957674978733,18.405794610469002],[-100.59874132690794,18.403557714016017],[-100.59615727430946,18.400720632708556],[-100.59861621844055,18.396550788746367],[-100.60146415245254,18.39434513477721],[-100.60177843813517,18.39102568710115],[-100.60514804495591,18.388736032488794],[-100.6094225566967,18.38744104897478],[-100.60993246271107,18.38485388211285],[-100.60808401642402,18.38119537687328],[-100.61060397144627,18.377053819323066],[-100.61712571120239,18.37728680176366],[-100.62693900040915,18.37565151250783],[-100.63150305094223,18.368242855881192],[-100.6345692479498,18.367758053924717],[-100.63967518162343,18.36391840635207],[-100.64114843543058,18.36051360210996],[-100.64149260912484,18.35737284580796],[-100.64083360466662,18.351548042527725],[-100.64299964005357,18.34615769719784],[-100.64586748156393,18.346149740357646],[-100.64771937061829,18.350330349197918],[-100.65258373131348,18.354530906263278],[-100.6570755719003,18.360467309017224],[-100.66359786867883,18.361382454491434],[-100.67550493025584,18.371489043126417],[-100.677013960191,18.37318469979499],[-100.6770400241067,18.376906286181622],[-100.67495484402593,18.38362493504519],[-100.67868103397683,18.38634526651424],[-100.68366235587143,18.386860174029437],[-100.6847300979415,18.390085869950326],[-100.68932347246357,18.393939358935995],[-100.68993321272558,18.397098508923307],[-100.68954475068801,18.402277949009374],[-100.68814689689043,18.405769723074286],[-100.68809804058708,18.40977715649211],[-100.69105122267962,18.41415316884064],[-100.69829263339653,18.418924489005917],[-100.70198092924971,18.419613364392035],[-100.70775133058561,18.418667727166394],[-100.71145630153893,18.415175332434274],[-100.71312895501165,18.41131575674143],[-100.71412393001685,18.404254982559905],[-100.71691967182807,18.400199239290714],[-100.71929047679669,18.39917727550761],[-100.72407547291539,18.40148935747186],[-100.72773787804789,18.406150376517644],[-100.73071538923296,18.41390310669152],[-100.73423572406494,18.41957844025569],[-100.73736931758413,18.427301464367133],[-100.74098025541667,18.428217789855864],[-100.74632241473722,18.426207958871032],[-100.7498129846748,18.42562042639787],[-100.75323769444498,18.42671840933002],[-100.75562547004375,18.428603655227164],[-100.75816687327529,18.43328260038311],[-100.76012763922995,18.43520364663533],[-100.76348744675118,18.43657496159898],[-100.76866585770216,18.437666924117025],[-100.77590870510454,18.43815565966031],[-100.77764325450596,18.439543346760786],[-100.77933194068095,18.444795446896762],[-100.7798308134548,18.450883956877362],[-100.7903482811783,18.47260585392911],[-100.79495846761642,18.479046051715045],[-100.79899720103032,18.480570662698085],[-100.80910642790639,18.476515282962794],[-100.8233143131643,18.474521034569705],[-100.82674105955994,18.473657050489862],[-100.83661947024848,18.472903345388886],[-100.84562924926229,18.475319281121017],[-100.8529502521913,18.475843499533198],[-100.85653312534038,18.477060990906125],[-100.86252858353936,18.48059931601091],[-100.86927030586173,18.490322332404673],[-100.87397542916852,18.492008786149142],[-100.87717699102859,18.490642512965508],[-100.87980342201035,18.488409602911474],[-100.88366936623635,18.481197175616614],[-100.88483778126312,18.47613674712136],[-100.88760041601802,18.468132071687762],[-100.89000703836388,18.465656887481373],[-100.89526025936254,18.46276032865319],[-100.89863951848565,18.46323337730678],[-100.90153676070997,18.46482690675208],[-100.90646835789812,18.470049986590027],[-100.91060399800023,18.472266291260667],[-100.91478521692812,18.471484790053466],[-100.91733537741447,18.465730467771323],[-100.91492193099981,18.4593071927535],[-100.91793898286596,18.44896936494581],[-100.92299407537337,18.444162708844942],[-100.92665661460995,18.443955518748737],[-100.92926086376718,18.44570933993907],[-100.93296116844454,18.450712155464487],[-100.93698814463693,18.453349523106453],[-100.94191585104716,18.455032211171613],[-100.94606719120793,18.45346809353316],[-100.95141439905757,18.446483982510642],[-100.95471581863023,18.444687644391877],[-100.95744337900055,18.44443010240377],[-100.96311420493612,18.44572972474009],[-100.96672413959601,18.44934922145046],[-100.96679701185786,18.452821336878173],[-100.96485053306236,18.45730954691095],[-100.96192848182477,18.461523043335433],[-100.96083253896415,18.46502554720263],[-100.96389507637377,18.471826224903964],[-100.96928491610782,18.476568783266146],[-100.97516832585166,18.48340782212904],[-100.98329442520463,18.48838465853885],[-100.98977675574639,18.491275824989998],[-100.99315806082882,18.491625592075707],[-101.00208685853181,18.491131671141147],[-101.00599211798982,18.493651027018643],[-101.00720997113376,18.497257376945242],[-101.00734501082434,18.505053737407025],[-101.00937335403557,18.524784786262046],[-101.01160127855451,18.527412356667753],[-101.0150299514022,18.5269100130339],[-101.01773846122865,18.524086674143746],[-101.02092314572627,18.522946915424882],[-101.02370569240315,18.523500356325428],[-101.03328211123932,18.526803445007488],[-101.0379677989581,18.526206026255693],[-101.04236949205745,18.524556383715947],[-101.05449630546593,18.518446963506733],[-101.06537655891077,18.516613163906925],[-101.07156555227408,18.516064600156085],[-101.07688999704851,18.514060427963955],[-101.08365318018895,18.507171435778332],[-101.08866085950552,18.505907855397425],[-101.09263190097079,18.507676952360555],[-101.10201526600764,18.509302458567504],[-101.11037949355222,18.509632868561084],[-101.11384601520956,18.508788045017184],[-101.12026861929206,18.509256792420388],[-101.12453275640445,18.511172509608798],[-101.1282193246808,18.515626220453214],[-101.13311997157712,18.5174484528294],[-101.13548910624627,18.516233973443207],[-101.13896014572595,18.51230835338714],[-101.14196902980984,18.51061090216473],[-101.14726651154348,18.51108699279581],[-101.15115695874033,18.514411520977262],[-101.15733202372911,18.51813879971752],[-101.16157972919672,18.51954204423953],[-101.16870238568777,18.52109010874989],[-101.17911329874062,18.51938577242356],[-101.1815551513443,18.519721626742864],[-101.18697068110424,18.517729324230743],[-101.18991362273692,18.517576549991816],[-101.19366084545698,18.518865945965274],[-101.19538342581399,18.525118257213023],[-101.20169813455772,18.530524518889933],[-101.20543054487877,18.532338150568364],[-101.2091407938218,18.535219102552162],[-101.21278898396378,18.53654940824589],[-101.21504678196851,18.53591038254416],[-101.22071259509596,18.53603017693672],[-101.22521426706209,18.534208510430346],[-101.23114150956184,18.534960150961354],[-101.23923540290343,18.53428988926703],[-101.2490359486361,18.538071362589392],[-101.25445776191827,18.539142979946178],[-101.26121034430787,18.5392140965443],[-101.26732574837501,18.535347798388045],[-101.27340706071936,18.53603245363894],[-101.27443983798929,18.5404597637164],[-101.27996232772136,18.54415472128335],[-101.28207717237973,18.544734030235077],[-101.28469497994064,18.54309424621914],[-101.28552074507036,18.541027135996956],[-101.2960517756971,18.534275915941407],[-101.30254004949353,18.53261108354377],[-101.31267196839474,18.53297799572283],[-101.31899208489273,18.52829104247064],[-101.32382024120216,18.528127096357764],[-101.32777123931606,18.529360607934052],[-101.33523231192521,18.5281603051439],[-101.3392701746971,18.52570379200165],[-101.34633545261039,18.5238061747865],[-101.35004799475183,18.522265872204116],[-101.35758564332065,18.522355382738],[-101.36395860996919,18.518646039611497],[-101.36292514108544,18.51332593631281],[-101.36242222822057,18.503220638469486],[-101.36402212853386,18.5004857528985],[-101.36831484254083,18.499541548043055],[-101.37224464374748,18.502165219380288],[-101.37434441509157,18.50709394564899],[-101.37617501056297,18.508965464557036],[-101.38226494950499,18.510575821570626],[-101.38626879202161,18.510141788241924],[-101.38954517039292,18.506992609438328],[-101.39162852659263,18.506144194787225],[-101.39823707796677,18.506697461190925],[-101.40090426927583,18.508287499093512],[-101.40414333863004,18.511825683795223],[-101.40688496078008,18.512512562433415],[-101.41074705552222,18.511045350757],[-101.41172826819292,18.505503925075686],[-101.4140093519083,18.50051011135082],[-101.41888588029047,18.496792697381636],[-101.42299444445689,18.496837976981965],[-101.42761810175267,18.501175210647887],[-101.4321549384311,18.501676423089236],[-101.43453404725517,18.49869430202608],[-101.43804146878705,18.49160950682949],[-101.4403716919532,18.489554385347788],[-101.44639537614938,18.489318285012075],[-101.4493608341462,18.49131336263696],[-101.45465101340682,18.496830678933406],[-101.45865674121467,18.497100738377014],[-101.46121896400018,18.494625950396937],[-101.46433114423735,18.488904164578116],[-101.46802192470386,18.486935529881066],[-101.46995828654218,18.48696046839757],[-101.47494940189802,18.4898426634864],[-101.4789714045342,18.490600676140104],[-101.48897274178813,18.4885328463115],[-101.49640377663906,18.487968578468553],[-101.50285134231092,18.486814140251738],[-101.50744405928833,18.486797298956276],[-101.51094144548966,18.488552607671352],[-101.51308044417567,18.491853344345202],[-101.51805532711131,18.49597949741883],[-101.52848905749721,18.496994661591998],[-101.5353474034423,18.497016017738133],[-101.53842944934013,18.497756016340986],[-101.54400098686762,18.500576873022226],[-101.54697135025026,18.507442669657962],[-101.55035043030733,18.50970104626049],[-101.5535585745331,18.510196443406585],[-101.55890403718047,18.50904243668259],[-101.56424239994413,18.509870975123135],[-101.56776321770451,18.512039735966937],[-101.57352298565348,18.517546574800576],[-101.57629173570308,18.51886909467305],[-101.58356333514615,18.520994765338628],[-101.5870789945219,18.52499984863408],[-101.58831780644118,18.528131534859085],[-101.58947942849562,18.54163346850862],[-101.591207847796,18.543601876506784],[-101.59623845339593,18.546136774057857],[-101.59799670201568,18.548887688784816],[-101.59919632047792,18.55329105039351],[-101.60296661371183,18.562121386203444],[-101.60330949520096,18.56908265230902],[-101.60508706927158,18.574595249348647],[-101.6074668935845,18.577936597678615],[-101.61459608018521,18.58220903911996],[-101.61964748948424,18.585764604349038],[-101.62111805496215,18.58971462627528],[-101.62171869118725,18.593709105127004],[-101.62449978252482,18.599153982286964],[-101.62897948848149,18.600519303029103],[-101.63899313655651,18.602534393520727],[-101.64120156921155,18.602152859105843],[-101.64952667669701,18.598001806523996],[-101.65524685638246,18.59667795602917],[-101.66234343449713,18.598019885836436],[-101.66727410821818,18.598074675894793],[-101.67111067456341,18.5970069449927],[-101.690144719275,18.58935876370583],[-101.69832678288856,18.588036011978147],[-101.70341902720321,18.588516034827308],[-101.70568386409309,18.590774810277935],[-101.70671499593584,18.593905622174248],[-101.70782118726913,18.601377468173382],[-101.71048261123326,18.606262890501796],[-101.71345250380773,18.610220642945933],[-101.71735717784435,18.6120108016039],[-101.72484037275109,18.612477752683105],[-101.73285368965475,18.611479298998233],[-101.73967687638662,18.60965944088315],[-101.75862303639451,18.606025174447097],[-101.76231633192197,18.605842524497007],[-101.7717941868998,18.60372139682778],[-101.78270010096753,18.600242607290113],[-101.79361059305091,18.593365225468347],[-101.8084023789063,18.587582858969313],[-101.82219635198555,18.582596524092253],[-101.83119776754637,18.580521422015067],[-101.83789241530349,18.577931380405232],[-101.8438444281968,18.574395741843773],[-101.84909876095014,18.569428475502207],[-101.85494459747804,18.561687282167327],[-101.85928262027096,18.552895352250232],[-101.86253530248058,18.550529866587794],[-101.8685589226983,18.545720521137923],[-101.87497037442739,18.54222487839803],[-101.87739823611855,18.540830146108533],[-101.88083497923947,18.537515682988953],[-101.88225983329869,18.534227655829056],[-101.88414302450491,18.522869409486987],[-101.88441621347539,18.51913808643843],[-101.88620836156718,18.509283131781103],[-101.88810058628223,18.503876186491595],[-101.88862118632653,18.500762511097605],[-101.8889538841679,18.49901657403086],[-101.88788815887216,18.491571288793295],[-101.88827559024918,18.483442470487375],[-101.88653953084008,18.477223366730584],[-101.88099474333893,18.471285702717864],[-101.87009906316092,18.457029988993156],[-101.86145502378776,18.44883164037185],[-101.86044205287806,18.446185160893265],[-101.86173242673726,18.444919476931204],[-101.87375883631961,18.437485587688855],[-101.87513032276632,18.435212452494113],[-101.87819128041303,18.4246265331372],[-101.88287629876748,18.417303032554685],[-101.88697927057677,18.412098940966644],[-101.88935620729023,18.403066499167153],[-101.88893555967195,18.39906361389518],[-101.88490353066305,18.393899377828177],[-101.878035602755,18.38811873122944],[-101.8738696596476,18.385410065005146],[-101.87163594731197,18.380873818067073],[-101.87134087310034,18.37627225714664],[-101.87427172510746,18.371975674924556],[-101.87470587074353,18.370056626504095],[-101.87239714334265,18.366358384652358],[-101.86928353342199,18.364151261249162],[-101.86189445294076,18.357181776355446],[-101.8612641598013,18.351205395051636],[-101.86194446763426,18.343093255448025],[-101.86325600787063,18.3389425636924],[-101.87061629652118,18.332820107317104],[-101.87013396101202,18.329830976417327],[-101.8660952581763,18.325311112978056],[-101.86106285700833,18.322501534623598],[-101.85649001088552,18.316167291956845],[-101.85571613147022,18.314275558519398],[-101.85725658626694,18.312332197575756],[-101.86724450999162,18.311395868896113],[-101.87019781364961,18.308322861931288],[-101.86966413836689,18.304081997665662],[-101.867101258275,18.29564913981045],[-101.86602890524586,18.293663811781357],[-101.86254906710025,18.29090244181225],[-101.86269467807665,18.28722846785905],[-101.86478621460054,18.28574767571007],[-101.87472043530101,18.281805528796667],[-101.88132544096192,18.280234019445743],[-101.8829149410762,18.278373563525406],[-101.8809206210247,18.274711113532874],[-101.87606294288167,18.270787241300923],[-101.86422766730601,18.266576686259214],[-101.86238834488114,18.264203183450718],[-101.86460936840314,18.260723307670276],[-101.86937979581205,18.259693323261615],[-101.8747915714946,18.260242860064125],[-101.88303877165657,18.262423874582453],[-101.88756348412466,18.26614973063886],[-101.8917920629774,18.270730295345572],[-101.89391226178077,18.275245170708786],[-101.89681947529851,18.277115216457048],[-101.89852323143407,18.275035946300648],[-101.9004491339582,18.269939348105822],[-101.90568937930499,18.263445256542127],[-101.90715408970391,18.260728402725135],[-101.90520600404216,18.25523242466761],[-101.90456399868145,18.247904931107087],[-101.90664740216016,18.244807846373874],[-101.91089208452019,18.242123475333756],[-101.91907891665284,18.24128582130885],[-101.92389224377115,18.236833568138252],[-101.92739227649434,18.23183199011453],[-101.93078649089739,18.231625965716432],[-101.9368755739834,18.232631726771842],[-101.94771134990935,18.228214139285456],[-101.95200823163714,18.227949188706646],[-101.96061874659051,18.230069508208658],[-101.96929974359267,18.233018137725935],[-101.97156931925491,18.2330720326932],[-101.97672598852546,18.229541095336288],[-101.97778489757104,18.225369889468823],[-101.97380291087785,18.21342405277602],[-101.9746110485126,18.20965683507893],[-101.97814882844642,18.207309575184183],[-101.98395258613232,18.206236896333223],[-101.98784032977721,18.204844317934658],[-101.9946873810614,18.204196035704797],[-101.99985033756798,18.202497536333965],[-102.00455554911628,18.203001249857493],[-102.00898774557493,18.204705032816832],[-102.01210303374984,18.204564310099613],[-102.0190552786342,18.202115729469824],[-102.02198334948349,18.20286104220895],[-102.02704898038496,18.206521650731247],[-102.03080076388716,18.208458815123663],[-102.03867717311937,18.208196307822277],[-102.04307025901716,18.205848467933208],[-102.04771614699047,18.200138285216497],[-102.05615387588284,18.195463957269567],[-102.06756770763218,18.194632203992455],[-102.07237513369819,18.193451830770357],[-102.07948795172217,18.19440007829087],[-102.08330543987097,18.194377460989415],[-102.08842503460926,18.19536809406918],[-102.09550348546503,18.194659532935816],[-102.09996137829319,18.193614535772724],[-102.10369926668938,18.191943259446873],[-102.11042745833419,18.190581419469027],[-102.11769227121948,18.18688434441384],[-102.12491723145047,18.186517427923604],[-102.13081054230935,18.188845186454387],[-102.13410762993112,18.18902054810121],[-102.14031434306736,18.18826487101461],[-102.14324007944566,18.18637313135548],[-102.14561364481756,18.18314438075612],[-102.14771969515613,18.178670994579477],[-102.14921692711278,18.172296772229686],[-102.15064102434411,18.169881284476048],[-102.15495434021392,18.16672369411566],[-102.15882748599262,18.16655079173256],[-102.1608798010036,18.165416703142967],[-102.16206678174575,18.16265645279219],[-102.16154072850844,18.155544255990208],[-102.1625997521104,18.1470310826698],[-102.1662491701673,18.13728452711922],[-102.16938864339642,18.13361778096811],[-102.1728879563455,18.131193121546232],[-102.17626497511878,18.127364049594803],[-102.17827505657345,18.122923353456144],[-102.17799936038716,18.117420209041143],[-102.17445089118092,18.114368265812516],[-102.17519873573747,18.1066924954917],[-102.17784533446701,18.09840289944509],[-102.1797775847167,18.08878896038567],[-102.17812258071422,18.076824774064562],[-102.17844466827307,18.073728456388153],[-102.18411750029827,18.061637904416273],[-102.18382067854913,18.057076074251142],[-102.18118679082329,18.05221462300085],[-102.17841097746293,18.037851669581016],[-102.1832245177556,18.032983627407873],[-102.18426635139366,18.027610921423104],[-102.18292285012689,18.018158567604132],[-102.18130799191272,18.00331587478638],[-102.18015956182603,17.998900914854858],[-102.17327503305967,17.989636815384927],[-102.1602066280451,17.98113866158667],[-102.1551368103008,17.978248679788237],[-102.14592754352753,17.975702061007837],[-102.14317220019547,17.974196312513243],[-102.13755173217993,17.969684102577276],[-102.13611870058554,17.961689407829454],[-102.13606807414584,17.95577390594451],[-102.13305911434634,17.95152243467237],[-102.13402273877381,17.94950415587391],[-102.13742516924867,17.94885605332962],[-102.1386422486533,17.942994784520863],[-102.13845063542146,17.940473989308657],[-102.13682794396158,17.940029820625114],[-102.13293602036805,17.948516221703528],[-102.1219380427878,17.956558083751645],[-102.11508876394936,17.962188778874065],[-102.11250850201424,17.96508059697726],[-102.10570991964119,17.9747609738846],[-102.10130819562647,17.9817828750559],[-102.09670265411944,17.98355018139398],[-102.08284060996743,17.98465990592115],[-102.07216166289334,17.986766798494443],[-102.06509246636972,17.988488355459708],[-102.05955896656229,17.98824867666184],[-102.05233639027682,17.988759812879266],[-102.03941073306476,17.988709085485993],[-102.03465288861122,17.98733665465511],[-102.03044887010708,17.986945532056268],[-102.02156411658825,17.98506587165224],[-102.02097114538594,17.98387390903048],[-102.01819068960884,17.98425868791321],[-102.01472091633445,17.98296991369358],[-102.00851987199485,17.97958893434054],[-102.00491043475324,17.9789681025361],[-102.00052560050119,17.976036978298907],[-101.99173210814246,17.973086686546708],[-101.98989854127285,17.973934810096182],[-101.9855247929014,17.97320841755419],[-101.96802251123677,17.968256783714708],[-101.95577849112067,17.963601268733896],[-101.94696034856304,17.95944623473133],[-101.93741648561013,17.95578565704875],[-101.93068954602154,17.951501778081308],[-101.92996077062043,17.949566720444125],[-101.92622400269693,17.947379434266168],[-101.92145508108786,17.945855592984913],[-101.91388383882082,17.94135104288347],[-101.90977088033884,17.940014006585614],[-101.89933789152582,17.934530383187962],[-101.88863478284861,17.92809375744747],[-101.87614012878186,17.92269126033591],[-101.8701116611856,17.918832541153336],[-101.86820057463405,17.9136527757355],[-101.86557551059997,17.91091141298216],[-101.8614316007168,17.911218576863348],[-101.85482440989347,17.909848752716243],[-101.84429397447087,17.9056891425858],[-101.82920287418148,17.899245584249798],[-101.82266322868179,17.895821807470384],[-101.81168645730315,17.888745297664855],[-101.80470511535367,17.883744062375],[-101.79634549366722,17.8767211607734],[-101.79193434366272,17.87197233645793],[-101.78401242952668,17.86472295910511],[-101.78136424436576,17.860355605896757],[-101.78088130673336,17.85795627919873],[-101.77214980908826,17.847876292410717],[-101.76953535293745,17.844026521473324],[-101.76960794080765,17.836562368862644],[-101.77017208747577,17.831815761459893],[-101.77155133138365,17.83097055279609],[-101.76928096353555,17.82822610037897],[-101.76548729199362,17.82581827816341],[-101.75516219483717,17.816972739437574],[-101.74890179244318,17.80949336423214],[-101.74761799977875,17.807064580039025],[-101.74794254767795,17.804408790342393],[-101.74983421469022,17.80368364395929],[-101.7478081684028,17.799832617286825],[-101.74579884700728,17.79830598854801],[-101.74553407473047,17.794739150987766],[-101.74753927565018,17.794337196198853],[-101.74579664934294,17.791665946509852],[-101.73242379210961,17.785267682529366],[-101.72313868850887,17.77942171678211],[-101.71644960479563,17.774429223142306],[-101.71426443727228,17.774074983857076],[-101.71221835503866,17.77137222370203],[-101.7120871195063,17.768816781434623],[-101.708942331314,17.768341313157066],[-101.70626935755905,17.7668306847454],[-101.70643275178475,17.76550419015871],[-101.7035394495802,17.76570628783861],[-101.69885935639269,17.76278874727194],[-101.68633585598428,17.75319592269568],[-101.68061479420157,17.748172638702442],[-101.67384757501247,17.741449690051525],[-101.66719851954934,17.734014719934635],[-101.66138034319567,17.72382333876527],[-101.65198260930265,17.708929300345574],[-101.64979305143004,17.705913511171445],[-101.64748927181773,17.701155970540867],[-101.6474054472925,17.697280812588133],[-101.64546758444004,17.68915579932201],[-101.64552726974603,17.684832589161488],[-101.64670769593795,17.681429279820463],[-101.64297450144085,17.678002315139906],[-101.64308157368288,17.6690888499146],[-101.6468535577356,17.66797951833496],[-101.64916260434768,17.66462733357406],[-101.64629750700527,17.663353092346142],[-101.64569600417639,17.666224325964322],[-101.64293210699157,17.66727551401027],[-101.63829594264092,17.66648713507584],[-101.63755999502433,17.664282665435053],[-101.63635966760444,17.666180755131847],[-101.63376340913811,17.665968083809503],[-101.63131185291189,17.66726067173704],[-101.63124953433095,17.665849530980267],[-101.62795105610832,17.6651534300521],[-101.62577005544983,17.663315657525914],[-101.62471892277887,17.664475153712658],[-101.62178552763163,17.663340369300272],[-101.6207834089484,17.66508502039676],[-101.61958666301831,17.66333400007335],[-101.612540481459,17.66251849486207],[-101.60822192025518,17.66125320255435],[-101.60442222602836,17.659079671935217],[-101.60057613191987,17.65401660831725],[-101.60120439752018,17.650543331074516],[-101.60006454934006,17.648283492165092],[-101.59751490383167,17.646921644903102],[-101.59946273849704,17.642876322157008],[-101.598007328959,17.63987247621418],[-101.59869446454115,17.63845486355723],[-101.59520259678175,17.634716702105038],[-101.58549964036774,17.639462309635803],[-101.5826042638397,17.637255248250028],[-101.57708084413872,17.637361167544896],[-101.57479012221955,17.632304601943645],[-101.57180151925007,17.632923962179802],[-101.57179663714595,17.630715800934638],[-101.5741646252797,17.627459318652257],[-101.57340000314753,17.62375600402504],[-101.5707870363334,17.62517903168748],[-101.5711271278368,17.62844307464161],[-101.56793013085667,17.62814996634239],[-101.56642522336142,17.62917920022096],[-101.56161176380863,17.627418717124783],[-101.56196916568683,17.630452197832312],[-101.55958431224332,17.631764045491934],[-101.55786796639859,17.63125998893122],[-101.5599745709896,17.636456529970246],[-101.55471666959659,17.63901206864091],[-101.5509774412929,17.638073805948466],[-101.55059007419555,17.63407257440383],[-101.54751499485388,17.632459212556284],[-101.54550974826691,17.627733249269625],[-101.54584314998806,17.624675613012585],[-101.54780355591481,17.622842393604117],[-101.55105637386282,17.622079730956216],[-101.55284181810521,17.62023995332396],[-101.55438863321211,17.621953980498517],[-101.55773460277311,17.619956805873016],[-101.55692913297122,17.61750184265526],[-101.55719340532829,17.613513901219335],[-101.55569634318675,17.614706060616868],[-101.55297575943104,17.613936149836036],[-101.55266197462794,17.611600361261367],[-101.54538564911593,17.6152938754567],[-101.54312121688292,17.618245709647454],[-101.54016433276911,17.61582528983547],[-101.5371128909822,17.618262710293322],[-101.53149504187473,17.619091513916715],[-101.53074169629724,17.620402497710813],[-101.52749819528225,17.620118590362495],[-101.5271843582953,17.6178920598569],[-101.52510248541535,17.61921917451599],[-101.52515317539422,17.620826582290704],[-101.52268534140967,17.62149718545851],[-101.52208747872533,17.623344783040125],[-101.5206275848916,17.622029766737683],[-101.51680169106567,17.624104213289456],[-101.50977332244753,17.622636533374077],[-101.50083577392672,17.617921732514844],[-101.49072591583797,17.610980480077842],[-101.47449931265464,17.59800891355792],[-101.46899901992776,17.593106549587503],[-101.45562378847637,17.57989892977082],[-101.44776665373399,17.570801419957945],[-101.44360316094088,17.563898880191005],[-101.44131307886624,17.5576142718229],[-101.44049413650879,17.553441930604436],[-101.4404043317279,17.54742020021115],[-101.44214166867664,17.5403880269605],[-101.4444282667564,17.53658946333951],[-101.45573570123867,17.53895969080878],[-101.46132186069639,17.535893565179435],[-101.45979900378018,17.531560640155362],[-101.45646005209403,17.529666131595206],[-101.45738077792527,17.5261420322081],[-101.45624468726822,17.52564395785447],[-101.45291090797133,17.528350149477433],[-101.44946875972391,17.52783652333102],[-101.44337033396374,17.52592258403132],[-101.42654879353177,17.519597656430278],[-101.38777363348498,17.504115784635417],[-101.37604228029892,17.499030516106473],[-101.37028217687606,17.497053201660776],[-101.35794837284277,17.491976239763858],[-101.34232164985917,17.48457881530811],[-101.32481397818054,17.479563781211652],[-101.30794859139775,17.473975791978717],[-101.28707581733323,17.46602942245704],[-101.26447032348665,17.456646219316497],[-101.24897813470892,17.44974728849985],[-101.24479397696956,17.4475665894563],[-101.22065741781455,17.436544845940944],[-101.2058663576683,17.428587978790347],[-101.19842644256642,17.42331518003715],[-101.19401723451773,17.419259533653644],[-101.18800052842045,17.41593962740916],[-101.18314954533827,17.412396693636992],[-101.17948039555074,17.40884070583553],[-101.17779866742927,17.404481169858514],[-101.17840815870716,17.40069249813888],[-101.17393139831916,17.397731517055433],[-101.17216613367395,17.393177375827918],[-101.17420061508005,17.389480882754015],[-101.16983748501985,17.389215659969636],[-101.16214972929743,17.385479841255517],[-101.15111295404381,17.37899301980218],[-101.14789323146255,17.375431469369346],[-101.1465547365919,17.375954020969687],[-101.1410243759866,17.37339439432128],[-101.13487872981,17.369750518065302],[-101.12272672128205,17.361788423569408],[-101.10536854241451,17.34904365295006],[-101.07028593829682,17.320761755947785],[-101.06648378963979,17.314875676726615],[-101.06185234328035,17.311972109450778],[-101.05670722410252,17.30758376221013],[-101.05382448550182,17.30354667074033],[-101.05164562385488,17.29843655904068],[-101.05077508967253,17.29470189409716],[-101.05184225182171,17.292863740003497],[-101.05028636318912,17.291930509334748],[-101.05242140851709,17.289157852887172],[-101.05414421734037,17.28499028961278],[-101.05311026268822,17.283175025379137],[-101.05580513788954,17.279092658067896],[-101.05545074642447,17.27594542826722],[-101.05797054657558,17.274652950770303],[-101.06067279209839,17.276915769987056],[-101.06362214129462,17.276447304207466],[-101.06556109297196,17.27307974349327],[-101.06440145726293,17.26875992029261],[-101.05978853014443,17.26568623110859],[-101.05784093149208,17.269670453971287],[-101.05334209733508,17.270248604233018],[-101.05072112741283,17.268243447525663],[-101.04869900605019,17.270933952775408],[-101.03966724468341,17.269258824462895],[-101.03394165403148,17.26734631010106],[-101.0279380071612,17.264731173831194],[-101.01711008620958,17.258980905263627],[-101.01315014809518,17.25544223178065],[-101.00708663110919,17.25261666121537],[-101.00353753005754,17.253728718075138],[-101.00017768287194,17.253537188556663],[-100.98803152143466,17.250482567224992],[-100.96426060554194,17.241387582375467],[-100.94903545840492,17.235279212349838],[-100.93076102372265,17.227724185452985],[-100.91583044034331,17.221869810398914],[-100.90723021369462,17.219069267709926],[-100.89218982104438,17.216297610087395],[-100.87186282869698,17.210568020282665],[-100.83813813705348,17.199866566016283],[-100.81431500100189,17.191672773562516],[-100.79448670418088,17.184330493325035],[-100.78208374519483,17.179215749350192],[-100.76970364948505,17.175303759227575],[-100.74787746773575,17.166555458013647],[-100.72362752039783,17.15630265334653],[-100.68559141208061,17.14122520652677],[-100.6751350460633,17.137436308868928],[-100.66306313386161,17.133759270860594],[-100.64781063347334,17.13137112774109],[-100.63747003810988,17.129384221340786],[-100.62337260142618,17.12569075629216],[-100.59844249678969,17.118237084819043],[-100.5700293902052,17.109030591857447],[-100.54856166262869,17.10168849620601],[-100.5172590336486,17.090476084104296],[-100.50709529000119,17.086641736140905],[-100.48628461245437,17.079513129449253],[-100.46827315330017,17.074685194452627],[-100.45052906246815,17.069103864929048],[-100.41855479404967,17.058599012205377],[-100.39396201333062,17.05026008803111],[-100.37854271096103,17.044890795401045],[-100.35166683368732,17.03518865686368],[-100.31851280339026,17.023493896356285],[-100.29927728486513,17.016963019952527],[-100.27631105004252,17.00891622226959],[-100.25923608559708,17.00270338200545],[-100.24634761415308,16.997581626648582],[-100.23507078525466,16.992283364749653],[-100.22218077086762,16.9879272202146],[-100.21058910913285,16.984556741370852],[-100.19943746246742,16.980524780580538],[-100.16951046716184,16.968963726184597],[-100.13950737927826,16.95638603441489],[-100.13725607453767,16.955289618064114],[-100.12002476594125,16.948514930708825],[-100.11641315540334,16.947720102458504],[-100.10622138511127,16.94667594639344],[-100.09430036722546,16.94410640446239],[-100.08220249781664,16.940729376681418],[-100.06490548006252,16.93556987205949],[-100.03234891312115,16.92485132167036],[-100.00578149006276,16.915481545895545],[-99.9898764464138,16.909264923603246],[-99.98299757202386,16.905958797089852],[-99.96273981802614,16.89531726284514],[-99.95896736084,16.89278509676319],[-99.95652033345903,16.887699041830956],[-99.95765958206789,16.88628796368414],[-99.95735091079501,16.883413922579848],[-99.95444107866422,16.88164567773083],[-99.94945796918938,16.880979077149675],[-99.94741463193537,16.879158377109377],[-99.94554747708816,16.87942034380478],[-99.94364271739397,16.873065836682542],[-99.940221419301,16.873288624455313],[-99.93877098275925,16.870178450227797],[-99.94068328765644,16.86940769239817],[-99.93732109549308,16.868866732590163],[-99.93664602381489,16.86516262202167],[-99.93307947240709,16.86439851050062],[-99.9329793580149,16.86048477998264],[-99.92937851215737,16.859187104607656],[-99.92783893774799,16.860480511436947],[-99.92597319102578,16.859506396352515],[-99.92373087550106,16.86037202316112],[-99.92519958172062,16.85565409632028],[-99.92170584268825,16.85364339402281],[-99.92398980157736,16.851937082097322],[-99.92344911391018,16.848868711002297],[-99.91874611653344,16.84693668274639],[-99.9160259654048,16.84685512663532],[-99.91575639290483,16.844271711472857],[-99.91747896900563,16.843290984928785],[-99.91460709403208,16.841753616461233],[-99.91907343846208,16.839050433293266],[-99.9172922693237,16.83852248763236],[-99.91837981669727,16.835743605169228],[-99.91999473635707,16.83515914301978],[-99.91689572719594,16.830165677364562],[-99.91404277469599,16.828272658803314],[-99.90820900229625,16.828077819551368],[-99.90310387326599,16.831614455845965],[-99.89740673639608,16.830378659071698],[-99.89197675879893,16.837549601600358],[-99.89706851470447,16.8408178975356],[-99.89880719435439,16.84088943247781],[-99.90297972726808,16.83803801159013],[-99.90393309947194,16.83641299257482],[-99.90759282626351,16.83767144530634],[-99.91103276183162,16.843027739275385],[-99.90701574251983,16.84432516988545],[-99.9080404784064,16.845543589123338],[-99.90734297241085,16.848230325850807],[-99.90050016650781,16.848531685296848],[-99.90060161675643,16.852098894605206],[-99.89554146040723,16.855180349908608],[-99.88752276900703,16.857698139007425],[-99.88606828373594,16.858982588225672],[-99.88249752362827,16.859666440589763],[-99.87845531664072,16.859332683777495],[-99.87279723417612,16.85745020426782],[-99.87075998410091,16.85761816335605],[-99.86637172700233,16.855295229189608],[-99.86293027645155,16.85540108289871],[-99.85790406422052,16.85241072785834],[-99.85440298776842,16.848805569030844],[-99.85175700725352,16.844456199712965],[-99.85099525858692,16.841198845672977],[-99.8513020048153,16.8366946859382],[-99.85335803359908,16.834648940742],[-99.85810186640032,16.833580040330446],[-99.85925352024748,16.834743307069914],[-99.8630495261321,16.834790493902346],[-99.86506925691037,16.830590035583043],[-99.86770185940696,16.82865951041714],[-99.8679167612571,16.825967800980834],[-99.86986031853502,16.823286007348543],[-99.86975838856551,16.81840494384562],[-99.87632889604976,16.815295340178068],[-99.87630581822663,16.814149293694584],[-99.86589372900505,16.80779559860349],[-99.86509674849526,16.810436036518922],[-99.86170978337509,16.81022521622134],[-99.85977501299323,16.80737806433109],[-99.85472404340868,16.80580975379098],[-99.85051250250848,16.806321020046767],[-99.84971831691905,16.810021587246865],[-99.84656726046381,16.811035610071656],[-99.84270472237165,16.808816713196506],[-99.84104158134704,16.80893687987134],[-99.83737062874638,16.806020670068847],[-99.83617114902933,16.80239766848831],[-99.83723839471617,16.796470819149533],[-99.83979662791478,16.79398687224767],[-99.84907196437553,16.7991965554408],[-99.85250659680031,16.799210652783643],[-99.85908476859942,16.795943373050648],[-99.85658921867554,16.793387663050737],[-99.85049804260126,16.792245315023365],[-99.8466596472835,16.792984531001423],[-99.84365368230533,16.785509342124442],[-99.83740516108685,16.784596560366538],[-99.83677429906385,16.782916368722397],[-99.83266897264565,16.784555298568478],[-99.83258937015421,16.78586497738968],[-99.82993487090255,16.786212881771462],[-99.82854348354937,16.79124282308078],[-99.8220568302633,16.790368002895434],[-99.81674457111075,16.78845130910861],[-99.8118890779217,16.78580294684599],[-99.79242403703637,16.77096475565446],[-99.77842284348799,16.759751027241066],[-99.76738112434265,16.750442691969624],[-99.75419412053907,16.741085195498783],[-99.74557421777854,16.736050416703847],[-99.74337856041512,16.73524474045439],[-99.71308720272015,16.71904165501354],[-99.70581235918121,16.715511586354467],[-99.6828883930786,16.705448814482907],[-99.66771191779821,16.69963810081373],[-99.65484594671403,16.695404460854775],[-99.6390778230973,16.69079263901358],[-99.6272125372875,16.687747849848222],[-99.62269536413027,16.68626044308121],[-99.6144077265036,16.684541142684225],[-99.60270540130034,16.68390448024718],[-99.58546479805904,16.687198531125603],[-99.57787872668405,16.688167877177932],[-99.5669694574168,16.68902757687198],[-99.54260174354255,16.68869611895144],[-99.52344141387994,16.687599907033075],[-99.49373374910886,16.685487369712007],[-99.4640172744418,16.682699082678198],[-99.45472584049054,16.681580430767724],[-99.43896089887079,16.679267623352075],[-99.42185909189459,16.676275665610092],[-99.39114095112558,16.670429742523652],[-99.38687843416892,16.6693245494414],[-99.37436414304597,16.666883352289915],[-99.33288587662855,16.658449106532316],[-99.30794366642277,16.652763484262096],[-99.27552463577541,16.645047189527872],[-99.26650552678706,16.64247741768827],[-99.25206734060345,16.639046526116886],[-99.2418303931762,16.636359806448638],[-99.22205158505545,16.632175170964672],[-99.18001648160481,16.62077516720126],[-99.15350155291935,16.613820850236323],[-99.13595673832987,16.60851345137621],[-99.12886823582602,16.606151419502623],[-99.11802479642017,16.60205079636347],[-99.10823860194205,16.600022145360185],[-99.10097036119976,16.59893058039694],[-99.09333916756884,16.597243620240477],[-99.08237565071772,16.59427551812155],[-99.05314273685428,16.585737325532023],[-99.02131928540229,16.575816479544073],[-99.01190069832955,16.572570684395146],[-98.98617170221848,16.564452576818212],[-98.96932610316424,16.55842705143681],[-98.9574391073752,16.553516821454025],[-98.94826611396974,16.550698458524323],[-98.93734839539928,16.546627490495325],[-98.92862237424322,16.54416043613827],[-98.92087082218194,16.541458693391974],[-98.9114580524215,16.535954690010726],[-98.9058576331044,16.53442674771412],[-98.90135187368344,16.535441660664617],[-98.89668459342386,16.534813557853568],[-98.89648106549714,16.535908684084347],[-98.88868831755724,16.535630863393294],[-98.87696104603384,16.532955938768907],[-98.86770834192384,16.53115098417709],[-98.85695491902362,16.528249375396967],[-98.8550467114481,16.529108590348415],[-98.85455651409654,16.533332683043966],[-98.8527675798606,16.537399398495666],[-98.84742461975367,16.54282915966826],[-98.84575790516459,16.54603536955767],[-98.84169688653253,16.54849657534544],[-98.82997332367773,16.55163019226285],[-98.82181204492042,16.554283194471907],[-98.8190108097017,16.554711047542185],[-98.81365325197027,16.554119604921254],[-98.81022622160651,16.55681994156373],[-98.80675524947236,16.558291609289938],[-98.80108068092005,16.557645927493013],[-98.79590686052495,16.555932898188814],[-98.79023276841968,16.555116717661008],[-98.78113543299781,16.555801106486967],[-98.77548059329519,16.555476657953875],[-98.77202452040251,16.554426233061918],[-98.76763925074187,16.549556658042093],[-98.76530194143606,16.54385932244344],[-98.74828516462156,16.525967338391922],[-98.74526475194443,16.522121505441703],[-98.73888073613705,16.51619006378263],[-98.73665337140068,16.512139558231013],[-98.73416379519114,16.510006216135878],[-98.73018756309074,16.503600183415926],[-98.72718935044077,16.502131751791296],[-98.72823415357999,16.500420617872294],[-98.72218859020961,16.49413241543192],[-98.7144152130274,16.48482435418697],[-98.710184234152,16.478818190879792],[-98.70689389494112,16.472995738316342],[-98.7003143604494,16.463728921083487],[-98.69624966241878,16.45962370132986],[-98.68802951027288,16.45280904461538],[-98.67882804562811,16.44618827993719],[-98.66803897378946,16.437738781247845],[-98.65494523492993,16.426699679749333],[-98.63778769784807,16.41023973438047],[-98.62636215835767,16.398361827202848],[-98.60766747864562,16.37966286373404],[-98.59292474954975,16.366411644013226],[-98.59149455083985,16.36442612243053],[-98.58429161925915,16.358000545645382],[-98.57592831386631,16.350005348426237],[-98.5687971712689,16.342355144076407],[-98.56597149502596,16.33669328891517],[-98.56492200841194,16.331960583263083],[-98.56625834065466,16.32833582525825],[-98.56782897174719,16.326866324094624],[-98.57037023769084,16.327138084008595],[-98.56911851746293,16.325257145417027],[-98.55533497139697,16.31928514359845],[-98.55265237789581,16.31603101888743],[-98.55099491225656,16.318441041226606],[-98.5505722779389,16.318220395754793],[-98.55071919251782,16.31885801233136],[-98.55112234612392,16.319388873523735],[-98.54735255160847,16.32119967709002],[-98.54844057660824,16.322324535573898],[-98.54906823111367,16.322719207305965],[-98.54764837570923,16.32397104862332],[-98.54855368939332,16.32455388681916],[-98.54939286453691,16.32624980726058],[-98.5467511899144,16.325720689910497],[-98.54602370725843,16.32832298296853],[-98.54220901435082,16.332703996123428],[-98.54311921014397,16.336142152418006],[-98.54211424414774,16.339372499333876],[-98.5408789634294,16.339835233835572],[-98.54301861361978,16.341842255267466],[-98.5390692243169,16.34408623350589],[-98.53821958912602,16.347215089113206],[-98.53759023615874,16.347464158965238],[-98.53506084717992,16.348019824967196],[-98.53339844942286,16.351582629814402],[-98.52938655427567,16.352739677541535],[-98.5260948547782,16.356959152065315],[-98.5226005646951,16.356634784408982],[-98.52073322149141,16.360054047937467],[-98.5091088213602,16.36306233970214],[-98.50815542018665,16.36042176867454],[-98.50509736011634,16.361420545860483],[-98.50213347449937,16.36182927494309],[-98.4985635440026,16.36398439615914],[-98.49492760159126,16.365042876335337],[-98.49499110860785,16.36864436881683],[-98.4849136611457,16.36917582647925],[-98.48393993438901,16.374152412082765],[-98.47943221764638,16.373102968715727],[-98.4788772971857,16.37519519943612],[-98.475777828091,16.375608115419652],[-98.4754512415791,16.377006179467116],[-98.46988035723257,16.38108246243712],[-98.46083594404558,16.3832730479146],[-98.46042583072983,16.380807987212563],[-98.4559548367069,16.380420540438877],[-98.4541809389375,16.385793444240733],[-98.44107428161243,16.384513480399335],[-98.43556678409823,16.384486221748148],[-98.43086267558414,16.38319908645633],[-98.42314283996785,16.382230351210694],[-98.4191490091693,16.380586337398995],[-98.3991578325377,16.38051261143289],[-98.35005813217288,16.444302057966752],[-98.34953352003174,16.44519753674109],[-98.34946504571593,16.44558685611281],[-98.34998866912201,16.44918077750674],[-98.35252212338321,16.45520304269303],[-98.35561132478722,16.461380034145577],[-98.35870574238629,16.466209815727723],[-98.35987792458485,16.47170514080267],[-98.35751829088264,16.477685236801335],[-98.35754415402761,16.48092149939754],[-98.35707191885746,16.482427391380043],[-98.35231678580737,16.485026282373155],[-98.35253227139106,16.48943144590362],[-98.35379965625862,16.491311065310413],[-98.35772405668513,16.492598857052258],[-98.36310624048747,16.490425486432457],[-98.36883835616896,16.491178455205272],[-98.3702731969833,16.4938449115769],[-98.36664964163208,16.498397641327415],[-98.36833165455977,16.500851761893216],[-98.37183134922634,16.499950240308692],[-98.37792210823886,16.499644294516486],[-98.38399735811998,16.498168856616758],[-98.38733293808741,16.497786315390897],[-98.38679281373197,16.50111340501087],[-98.38656702582671,16.501838157695204],[-98.38424067706472,16.509315510266845],[-98.38332397251281,16.51265613112713],[-98.39250593491857,16.5273777475158],[-98.3951404227393,16.536307238624147],[-98.39477318350998,16.537088987159564],[-98.39513940607867,16.546836427564756],[-98.39441658776929,16.546733931924507],[-98.38847933200731,16.546338262519896],[-98.38365237582667,16.54520414960382],[-98.38341818461618,16.54964073509035],[-98.37735667079897,16.550839683231118],[-98.37608889549921,16.55229370088813],[-98.37265486244024,16.552241650170117],[-98.37136217852265,16.552025183512512],[-98.3478269095707,16.55667784165712],[-98.34027982421867,16.55816919780682],[-98.32997001461723,16.57274825047824],[-98.31601298111002,16.569827620094145],[-98.29701276259459,16.569623460325033],[-98.2917032617056,16.57006552614206],[-98.29172854209918,16.567056205658048],[-98.29282949184756,16.55778058051203],[-98.28337501846556,16.558053527470747],[-98.26942656202613,16.55845547306882],[-98.26831101784882,16.55888152964178],[-98.26029120802724,16.562955438243364],[-98.24987251559622,16.563514969612697],[-98.24150383832097,16.567773881972187],[-98.24097948721408,16.572763402521446],[-98.23814570269622,16.57412231606577],[-98.22926877356969,16.580891025396397],[-98.2228466397828,16.583168611198687],[-98.2073171783428,16.589889455716047],[-98.20846846723748,16.584771616899843],[-98.20821504659568,16.584824506181405],[-98.2067707960328,16.58550925039117],[-98.20539254829032,16.585971824324474],[-98.20336421741968,16.587180412391945],[-98.20466912866266,16.591103980827427],[-98.19971032906574,16.60220078525589],[-98.19603562585894,16.615335442049172],[-98.19413967432905,16.618430727906514],[-98.19377577714874,16.621462695063997],[-98.19666577506581,16.6233568297435],[-98.21088629651507,16.62004319490427],[-98.2142063874378,16.618795403895433],[-98.21579863267073,16.62499359522633],[-98.22003674944858,16.63198754720389],[-98.22687285388838,16.63866578461318],[-98.22845877844395,16.639503703127104],[-98.22837724078067,16.64243241829405],[-98.22956223483322,16.64376654153949],[-98.23148701404159,16.653498320365657],[-98.23429523785109,16.656285586991032],[-98.23254449531589,16.656509504891233],[-98.23242486459174,16.663936173349043],[-98.23306667718111,16.670633394043136],[-98.23912854668833,16.671162994231906],[-98.24588351611357,16.670740388767683],[-98.24563553913953,16.67772140384676],[-98.24352500993672,16.680048420557114],[-98.2434422950069,16.696700078664264],[-98.24194873696877,16.697938199889506],[-98.23796858968058,16.707407494194285],[-98.23489199649981,16.70705177945308],[-98.23530642882969,16.71384729202424],[-98.23353455519282,16.717366321134307],[-98.23060817571229,16.71742708326792],[-98.2297921127668,16.71412648510193],[-98.22784685678926,16.712502095036314],[-98.22383779580753,16.711185333868457],[-98.22134678444115,16.70854794058795],[-98.22006545027688,16.709144897553415],[-98.21857773393657,16.710500858371176],[-98.21578314956128,16.711525881116643],[-98.2114272807762,16.711412767408376],[-98.20744961872731,16.711602954231466],[-98.2051371626684,16.71199991016624],[-98.20417293432911,16.713213738001286],[-98.20154461626078,16.712671808803407],[-98.20050153951524,16.71187008996384],[-98.20140163515833,16.708612801916217],[-98.20307181541182,16.705643263594084],[-98.20438076591569,16.70216830237615],[-98.2055169544991,16.69801623284951],[-98.20457162704946,16.69747557300235],[-98.19945575987236,16.69759580339081],[-98.19753635036335,16.697868257069615],[-98.19521126204904,16.698765853314967],[-98.19392909767356,16.701046784756045],[-98.1940454866043,16.703596720543544],[-98.19212913816108,16.70640995187921],[-98.18827437836086,16.704934869907277],[-98.18439310370104,16.705146380858082],[-98.18125247482408,16.709084324312585],[-98.18258899044866,16.71097097463678],[-98.18170386212364,16.712395175376116],[-98.17657401525946,16.71454300191624],[-98.17615406868396,16.71613502004584],[-98.17521076706998,16.71800357390981],[-98.17147507438864,16.7180760224677],[-98.1707958944989,16.719540402247105],[-98.16593343083917,16.721713584648285],[-98.15982194949322,16.71949715178522],[-98.155989631475,16.721362327801387],[-98.15371578519245,16.7252826991205],[-98.14928944200989,16.72294752171564],[-98.14426656132952,16.7226100139481],[-98.1389939968804,16.72378380346845],[-98.1364158457352,16.726719428794013],[-98.13722182651952,16.730176858521645],[-98.13653189227682,16.731893689741753],[-98.13347363516579,16.733398465193375],[-98.1309622996124,16.73655641477592],[-98.12711571127585,16.737400747955974],[-98.12569962063884,16.73908231878613],[-98.12801929063039,16.74523927475127],[-98.1242367094548,16.74964064074777],[-98.12473903008367,16.751375797415164],[-98.13393988197299,16.75093778772174],[-98.13474598659809,16.75150573508523],[-98.13537652172647,16.757390841665597],[-98.13420678998523,16.75906662735622],[-98.1319875433087,16.75900082303906],[-98.1298623995699,16.760913927828312],[-98.12872701827001,16.761163234095307],[-98.12460518614807,16.759300761190673],[-98.12403362033535,16.757421623047833],[-98.12395996675605,16.75628874602006],[-98.1205037357351,16.75472965848138],[-98.11845884067861,16.756267707804284],[-98.11443988469631,16.75717795386396],[-98.10998373258718,16.760076311265493],[-98.10870731194723,16.760335517343606],[-98.10785734641462,16.762796292479266],[-98.10718993224839,16.76463815969163],[-98.10706138664392,16.766375811992418],[-98.10747512117064,16.76755939392251],[-98.10724696027165,16.76987475434521],[-98.10688931744761,16.77100813561134],[-98.10474091408872,16.77505501461502],[-98.10446842520957,16.775687961159406],[-98.10393017052792,16.7812978327118],[-98.1046158814176,16.784689177536677],[-98.10288382693489,16.78756599628929],[-98.10250026884182,16.788693989646333],[-98.09787629084133,16.792926295575853],[-98.09783439456231,16.795459407761314],[-98.09860410039971,16.79654674556258],[-98.09967740047136,16.799771667921277],[-98.09877584879683,16.800560052673575],[-98.09411216890237,16.805076183255437],[-98.09330808157506,16.80556862395241],[-98.09238613783538,16.80821657827363],[-98.09298207467867,16.809526598326613],[-98.093819560935,16.81199604978326],[-98.09141364598054,16.81374387042507],[-98.08834858444158,16.813978286757276],[-98.08637604442816,16.816308146599056],[-98.08763084831077,16.819431758534165],[-98.0879204224994,16.820796888689244],[-98.08544863118146,16.824300390240865],[-98.08517957224916,16.828330618459063],[-98.08317276804331,16.830447537564112],[-98.08200223890003,16.831399752240486],[-98.08115523701986,16.83455882361511],[-98.08316302568386,16.838223085275786],[-98.08366489487071,16.83918405165923],[-98.08376728735311,16.8397264113691],[-98.08378362061558,16.840305112370856],[-98.08358369888788,16.840583238710053],[-98.08400205476181,16.840934126066543],[-98.08271850744808,16.843136003420284],[-98.07647060989365,16.849145745901353],[-98.07633046949752,16.8503792237222],[-98.076203325199,16.851003208137286],[-98.07463804818059,16.854455187771123],[-98.0755235795719,16.857121803884127],[-98.07604157565845,16.85858449812025],[-98.07518917652976,16.86104718379505],[-98.07371708890577,16.863064464898798],[-98.07582758890595,16.867274716010286],[-98.07562893727669,16.868067016832015],[-98.07257211424849,16.875392292577146],[-98.074364421182,16.876884301233986],[-98.07618058567681,16.880983727890623],[-98.07955383695838,16.880421353693123],[-98.08081127737648,16.883203029692538],[-98.0809652815102,16.884226292295352],[-98.0805764477173,16.889500371231406],[-98.08253818988709,16.892774283603387],[-98.08287487259128,16.899729828756733],[-98.08375730807518,16.902735340454228],[-98.08608586013548,16.90561805717482],[-98.08648366759269,16.906438899070622],[-98.08671364882764,16.907064655823717],[-98.08681377570997,16.907901520865323],[-98.08756968601767,16.910559574878846],[-98.08710906164708,16.913960096450523],[-98.08968739062072,16.918285968535088],[-98.09199698990864,16.91955169043871],[-98.09261717398044,16.92010353577865],[-98.09375139288193,16.922784419031473],[-98.09527016207693,16.923299867421747],[-98.09891136298972,16.933846174498626],[-98.10002451723824,16.935166444500908],[-98.09920974990126,16.937589934023777],[-98.10178127203454,16.941909714119163],[-98.10745636293257,16.942033607707515],[-98.10643579121398,16.946497643265616],[-98.106782312208,16.949328793898303],[-98.1056045075054,16.95127139185513],[-98.10647839993436,16.9567202549556],[-98.11126130398333,16.958868400998995],[-98.10748982948104,16.96160423575367],[-98.09710502416277,16.9688908733101],[-98.07523136758431,17.007220171241613],[-98.05749440400325,17.023776455907125],[-98.03515868247297,17.021120260608086],[-98.03015780270277,17.015757018757427],[-98.02518565937902,17.019216306686417],[-98.00727639430568,17.04013733630711],[-98.04571471652338,17.05726215077368],[-98.08091397679789,17.06658120297243],[-98.09878156210823,17.083850172829557],[-98.10851120634999,17.088380307638147],[-98.11801073554602,17.095515286673447],[-98.13000919957841,17.09547779056254],[-98.14222776413294,17.0999038728703],[-98.14680974190287,17.10194779672412],[-98.15000878056998,17.102431357887156],[-98.15184591046477,17.104583717020546],[-98.15255879496715,17.10932299479788],[-98.15342389182263,17.110402936022865],[-98.16263683192028,17.11050934187716],[-98.16551873283811,17.114921184615184],[-98.17355811464193,17.115747657964903],[-98.17826414795832,17.114589794238896],[-98.1824771238579,17.117716733869543],[-98.18400575925608,17.11820360829512],[-98.18718928185149,17.116480464368692],[-98.18999094167356,17.119566875678856],[-98.1933776074253,17.11744181097157],[-98.1970721219887,17.11618734676847],[-98.1988115940494,17.117779760528947],[-98.20356510327917,17.11922669708497],[-98.20561403089607,17.118488550328777],[-98.21300717255707,17.118967617875853],[-98.2134767309052,17.119754502687726],[-98.21250722658465,17.121704524389372],[-98.21479399825819,17.122321619150057],[-98.2157437016279,17.124519051047685],[-98.22259954287051,17.12214967935239],[-98.2225937691286,17.125051681340608],[-98.22040405565093,17.126561940488557],[-98.22173024514746,17.12912584219265],[-98.2205064838638,17.13069244353005],[-98.22014118066505,17.133169933877696],[-98.22039752220758,17.133935237410753],[-98.2219310137462,17.135178632513373],[-98.22146252990018,17.135903425777713],[-98.22168772815996,17.13625032744352],[-98.2217882325188,17.136469919010267],[-98.22187816049978,17.13812937624965],[-98.22030425842917,17.14036181104416],[-98.22039918691974,17.140451520006934],[-98.22185919357833,17.141530274339345],[-98.21990071831743,17.145046564242193],[-98.22117950196946,17.145859451197623],[-98.2227565795692,17.14767568676598],[-98.22279561858812,17.150292943999318],[-98.2251157689833,17.151132490310545],[-98.22406693139914,17.15280189184398],[-98.22178588857662,17.152394674765787],[-98.22081334478145,17.158785605033643],[-98.21928044888915,17.16102722956782],[-98.2202166013106,17.162619802431436],[-98.21670849351801,17.169808024526844],[-98.21761730792554,17.171537945433613],[-98.21631157433507,17.172945148463498],[-98.21659787475835,17.173785770062636],[-98.21517397897065,17.17739757083416],[-98.21546478534742,17.17789440938259],[-98.21469265655463,17.18532607028726],[-98.21768113429596,17.186864319540746],[-98.21640592159645,17.188937679263233],[-98.21285864472054,17.190647330482932],[-98.2098808964065,17.19018382244525],[-98.20791791794085,17.191915187368693],[-98.2048667511254,17.191339743061576],[-98.20567473787685,17.196037021777784],[-98.20520258884932,17.19847827634976],[-98.20457570613593,17.198859076229212],[-98.20376958873004,17.200954260243805],[-98.20040004216679,17.203811975297867],[-98.20292216735913,17.209143160244537],[-98.20304221111263,17.209863013082156],[-98.20333941914248,17.210474366738936],[-98.20321334108667,17.21171804219432],[-98.20285888909666,17.211712356718976],[-98.20250672956934,17.21203320689881],[-98.20385643416199,17.21721477146042],[-98.20404550309786,17.21745309860171],[-98.2046836771828,17.21779251429905],[-98.20505647521117,17.217964579896716],[-98.20793233701897,17.220747765818828],[-98.20759653664152,17.222214907641956],[-98.20995387762935,17.222439777268335],[-98.21022112813932,17.222860756191153],[-98.21013061777944,17.224158736679215],[-98.21442331239723,17.225842528076726],[-98.21379294100285,17.226977082980625],[-98.21363659345934,17.22761378996148],[-98.21599339375905,17.228147688922263],[-98.21708925134993,17.23055256288336],[-98.21754898455441,17.23110606373973],[-98.2177277063634,17.23169885289701],[-98.21795527448518,17.23213496225418],[-98.21967186302999,17.232952612853524],[-98.22035393240333,17.234326812319352],[-98.21943361986621,17.235474213234454],[-98.22127263738122,17.236174853842556],[-98.22233552740005,17.23753098057523],[-98.22255303700388,17.238629685987917],[-98.2234961033941,17.239384014911536],[-98.22619462750663,17.24188944615321],[-98.22793856267117,17.241694346090014],[-98.22908960821849,17.243096913972067],[-98.23572147853247,17.24747795147465],[-98.23998919684055,17.248513722733833],[-98.24434242271491,17.25146688946205],[-98.24508041305904,17.250484422582247],[-98.25585010778912,17.250502798415596],[-98.2648090704887,17.246360898550165],[-98.27719211584423,17.25007642699103],[-98.28848332996705,17.23822040668415],[-98.28839559775781,17.238608624822177],[-98.3021428439742,17.2462858012442],[-98.323495217259,17.27594416097054],[-98.3178373786285,17.302387169381745],[-98.30481051612094,17.327519823957743],[-98.28737318935009,17.329011148153256],[-98.29146876099588,17.345018183390778],[-98.29678013534397,17.364031743727082],[-98.30491478409891,17.39430376673687],[-98.33585076133687,17.456304622843277],[-98.33575707055047,17.46023853803564],[-98.3323807725962,17.471981992702297],[-98.32901351140913,17.47872789950418],[-98.31188427807598,17.477492210088485],[-98.32029762114468,17.506882084099743],[-98.33074110785913,17.511498629290656],[-98.33075936194865,17.512017588498566],[-98.32992530461655,17.51514023974954],[-98.3316448969141,17.51947303269884],[-98.33190005894357,17.521044050351918],[-98.33198056830861,17.521653924186694],[-98.33210306580486,17.524143704326832],[-98.33355639923496,17.525295425795036],[-98.33192356636272,17.526405481054837],[-98.33285887596872,17.52771529089165],[-98.32918883585052,17.531206273790986],[-98.32945183272165,17.532980953925403],[-98.33021225970606,17.534444824923526],[-98.33461622141238,17.537567296593693],[-98.33780146797642,17.540156559731656],[-98.34115967039395,17.54191778328766],[-98.34158993920005,17.543639904010433],[-98.34340569950211,17.5467559299139],[-98.34297111059448,17.54733712409643],[-98.34375442754401,17.547534781992397],[-98.34503532862931,17.550244879635557],[-98.34410985528774,17.55557419022216],[-98.34530491955121,17.562587551509978],[-98.34868892579436,17.56480186174366],[-98.35348084079914,17.564860739346898],[-98.35192092410193,17.566019854821946],[-98.35108223378364,17.57039758703462],[-98.35216508701012,17.57356904712185],[-98.35290104642667,17.574142787144638],[-98.35467203054219,17.576326307836723],[-98.35435700907237,17.577114308768444],[-98.35570021167388,17.58031251323996],[-98.36140430512256,17.579276508368935],[-98.36106587618684,17.582181675777065],[-98.35918931659711,17.584099516283402],[-98.36473110170897,17.58262045460458],[-98.37697158812125,17.605349068584644],[-98.38093724675474,17.605210873292606],[-98.38705887453614,17.60472546327503],[-98.39799273809012,17.60356327304561],[-98.4037350626246,17.602460747160308],[-98.40773370769858,17.601214251649935],[-98.41015194529052,17.59976873151328],[-98.41239704915637,17.601006050540946],[-98.42330189478827,17.612933616199314],[-98.43310792932573,17.62299536222963],[-98.45050464631385,17.63334517614129],[-98.46104384849895,17.630355710355104],[-98.46592820905818,17.64753439657477],[-98.46647487384848,17.64945724935734],[-98.46667287413635,17.662901007008998],[-98.47070463342004,17.678095983928017],[-98.47383879484784,17.678081006695606],[-98.48617251293587,17.68099221366265],[-98.4859233471634,17.68863005226774],[-98.48649648026259,17.69362758985261],[-98.48965562325469,17.70343889160779],[-98.48636054318706,17.70510504867684],[-98.48910956353154,17.721712463073914],[-98.48669900373392,17.73373154703262],[-98.49017948251156,17.74456140944619],[-98.4916939107382,17.747551096748225],[-98.49335125530217,17.753389970017906],[-98.49661636559199,17.761562100726223],[-98.49634267108127,17.768809445393686],[-98.49393977749554,17.772966710026537],[-98.48268597972003,17.781442051958095],[-98.4741833129521,17.78617659907013],[-98.47067309611447,17.789093435389645],[-98.46405432222224,17.797642651908347],[-98.42495698720916,17.839594506477795],[-98.42498010216576,17.866031169065025],[-98.42458505472541,17.870571760314135],[-98.42355901015725,17.873639784486272],[-98.42359898771372,17.87936329454311],[-98.42356009694561,17.879630551231514],[-98.42496437096605,17.881650742693125],[-98.42654773680869,17.887847163063498],[-98.42650350725762,17.890298294048478],[-98.42432705021406,17.891860837866375],[-98.42615250959398,17.89317909328139],[-98.42936810354689,17.892596066035367],[-98.43243337101865,17.889044887454645],[-98.43551791791629,17.89141136875213],[-98.43551162755318,17.893401040702372],[-98.43272454765253,17.897644585578405],[-98.4323643542595,17.901331270364835],[-98.43403630785184,17.90386766388491],[-98.43460135807635,17.907698164148428],[-98.43443821865213,17.908372311958715],[-98.43664146909452,17.91146435129758],[-98.43652041938532,17.913924330794146],[-98.43918779331614,17.916317499422746],[-98.43922954890007,17.918995804081817],[-98.44195921468105,17.920818413797633],[-98.44223559482975,17.921108493006273],[-98.44358772340945,17.922296450481213],[-98.44192414829945,17.92344151492398],[-98.44138409627288,17.92333344435474],[-98.43939500912,17.923123606239187],[-98.4351364297076,17.924867289045153],[-98.43229032550931,17.927595410966944],[-98.43197772445842,17.9274847554816],[-98.42833073004431,17.930073281414593],[-98.42603554621411,17.93602678524195],[-98.42512809731011,17.93569705210905],[-98.4229431619562,17.94244114448128],[-98.42297639580539,17.949327712946058],[-98.42466449239697,17.952240196548303],[-98.42563426801246,17.956633851461618],[-98.42764394579291,17.95760431412009],[-98.4318032870022,17.96309044301671],[-98.43213029946429,17.96446291312901],[-98.4321890953305,17.964673270458434],[-98.43196719028407,17.970671132189068],[-98.43273263678975,17.97199888567701],[-98.43193087052566,17.975405267354006],[-98.43163945827615,17.975655338581248],[-98.43190647937774,17.97694122847639],[-98.42781040781483,17.97461510527694],[-98.42509433260182,17.976933543581026],[-98.42661662459574,17.97854416885275],[-98.4302599543322,17.98012469088866],[-98.43079452876083,17.982297152994875],[-98.434220809799,17.983907520913363],[-98.44018758407526,17.981981542876724],[-98.44814048325202,17.99071109623941],[-98.45619705992027,17.98983244409476],[-98.46076140058341,17.9893344702092],[-98.4690650130006,17.991189986251868],[-98.47189426691426,17.99131417705223],[-98.47433779595463,17.98352283199813],[-98.47638665620582,17.981043621880588],[-98.47936257152872,17.98188750187512],[-98.47961043431269,17.983464554279692],[-98.48371872789454,17.986036740726604],[-98.48679693240979,17.990798747543238],[-98.48928199883215,17.990901153557388],[-98.49197021711348,17.988928670440828],[-98.49449485866904,17.98908134387881],[-98.49844258845673,17.991951092008208],[-98.50049177067547,17.995578937960033],[-98.50497343430777,17.99341086928132],[-98.5100011136679,17.992520525384407],[-98.51451377037807,17.992556854887027],[-98.51518361635704,17.992595137459716],[-98.52365314724182,17.994242292909973],[-98.52672482199051,17.996288849054793],[-98.52478375478773,17.99299252035604],[-98.52670593195182,17.98983172956713],[-98.52559597493604,17.985160202400778],[-98.5271839026671,17.98214680478509],[-98.52711857337374,17.979135857736082],[-98.52962826903945,17.975822522665908],[-98.53606168207011,17.975684981653387],[-98.53809863465165,17.98371595195215],[-98.54040286540373,17.981876156794158],[-98.5419751694846,17.976363017504866],[-98.54377690039644,17.973353390420755],[-98.55394741947731,17.978773145916193],[-98.55535022275245,17.976177078600244],[-98.55539031924019,17.97284011097838],[-98.5595900243311,17.974149301823502],[-98.56480339011222,17.974234724333655],[-98.56951421896935,17.97215492248364],[-98.57539728779494,17.97635323921787],[-98.58060230409257,17.975941526957172],[-98.58595526359676,17.9747434293879],[-98.58838252702833,17.972256249607028],[-98.58787331164416,17.97030967982289],[-98.58805288667179,17.970355204110717],[-98.59390377362666,17.967302827229332],[-98.59518892916287,17.965626315178724],[-98.59365208601236,17.963148781023847],[-98.59625131547608,17.959792145881522],[-98.59636241780123,17.960172761798617],[-98.59580090015737,17.96277151981633],[-98.60092115703293,17.96098815233381],[-98.60227579775068,17.961524369329766],[-98.60314538877037,17.960184872195782],[-98.60423716955279,17.95962033130104],[-98.60526013686592,17.959807787348666],[-98.60807972202292,17.95832069187844],[-98.6085983682126,17.95833107364109],[-98.6104835224358,17.958062792460566],[-98.61205867897888,17.95242067800899],[-98.6124761043796,17.951488347138707],[-98.61283198372274,17.950871218247983],[-98.61322090715277,17.950496816443263],[-98.61813262728106,17.946838217986567],[-98.62370241969023,17.941762024012405],[-98.62351124087297,17.942347703509483],[-98.62243795421415,17.94390309891253],[-98.62610803313584,17.944877532893543],[-98.63393186425674,17.94305169591803],[-98.63574556454853,17.94056755692685],[-98.63817711095555,17.93953576644674],[-98.64033108606412,17.93532395880186],[-98.64356241463986,17.93501505692325],[-98.64455850868205,17.933592391952175],[-98.6477212996769,17.934844878859224],[-98.65053817563171,17.933161050598756],[-98.65221285603525,17.934116263688338],[-98.65119805868738,17.936169497157096],[-98.65396428241434,17.936447318577564],[-98.65667066434742,17.94029263316395],[-98.66559703374526,17.944816454176532],[-98.67270207981187,17.94308882374827],[-98.67428058994034,17.945191639658844],[-98.67310282353515,17.950302748774334],[-98.67885756915553,17.953397540851142],[-98.68251888530506,17.95628313070017],[-98.68508563950263,17.955894133968457],[-98.68810201939647,17.961938171278916],[-98.69178708399949,17.9613898464479],[-98.69334525618433,17.959212689665208],[-98.6975564603394,17.95806419652763],[-98.69843202278054,17.9560645920929],[-98.70166833746663,17.9541385792038],[-98.70594805419324,17.955614446220295],[-98.70954647900419,17.959530406589806],[-98.70850285136709,17.96329893788146],[-98.7085074012358,17.963448421305827],[-98.70710637791774,17.96559754132892],[-98.71198033238676,17.969208871771457],[-98.71248216552311,17.968019925946066],[-98.71260486209917,17.96771145137984],[-98.71344935077695,17.966628252882913],[-98.71590488382748,17.97018938748431],[-98.7166570294363,17.973251180234],[-98.7185449695549,17.974823128665662],[-98.72561518090384,17.97792572527038],[-98.72756028404251,17.9801670023557],[-98.73036929036346,17.980859045877764],[-98.73320748900073,17.982960129171943],[-98.7340647106567,17.98185259759299],[-98.73769187478172,17.983622927317754],[-98.74512607505534,17.985304327499648],[-98.74891816403346,17.98566563846697],[-98.74991912427845,17.983560080818904],[-98.75067294637529,17.986760598461785],[-98.75408618886593,17.98683831637055],[-98.75463703028123,17.990729439348854],[-98.75850285202557,17.989592185855315],[-98.75880654889897,17.990829928686424],[-98.76242294287846,17.99093652092563],[-98.76694679786044,17.989265669112115],[-98.80169470933447,18.003001915625816],[-98.8045462570982,18.002195518836515],[-98.80801928591785,18.003019620368775],[-98.81100511622759,18.000834215813143],[-98.81362071598676,18.00087583258056],[-98.8149384239544,18.00169670480767],[-98.81648868699989,18.004394518233312],[-98.81515183812127,18.008815924218425],[-98.8128401225838,18.009533934282672],[-98.8132402974706,18.01124040866563],[-98.80869090454723,18.0152468216055],[-98.80604961732172,18.014962077203563],[-98.8066333341825,18.016802757536368],[-98.8027679936838,18.019819237566026],[-98.80125961387802,18.022052427888127],[-98.7940706305676,18.02397548744449],[-98.78941472363454,18.02254358562749],[-98.78688992903784,18.020766486212835],[-98.78189119005538,18.02144061500013],[-98.777843506166,18.01955318251197],[-98.77412637225973,18.02040104699796],[-98.77170719311499,18.01914838303412],[-98.76558898902101,18.0202724857769],[-98.7641912403605,18.0224993709744],[-98.76594883005578,18.022501504177683],[-98.76480139255875,18.02472751939729],[-98.7620223821528,18.02437242379142],[-98.75880417837669,18.027365851386094],[-98.75626281554958,18.027169206348447],[-98.75169594674628,18.02869050442615],[-98.75123986813543,18.03010380063904],[-98.74777152077206,18.031451896441126],[-98.7450950958629,18.03391922838523],[-98.74414479615251,18.033334998395162],[-98.74401664945907,18.036892099643353],[-98.74129459197565,18.03758145748685],[-98.74018768787215,18.040093093679218],[-98.73790297653818,18.039997488903055],[-98.73507763448515,18.044717518822836],[-98.73545532199574,18.045321088675962],[-98.73891517215333,18.045540438631235],[-98.7435099066804,18.044405674548898],[-98.74652347786616,18.04657752510201],[-98.75158276919461,18.045884331240018],[-98.75610616684537,18.047024099223506],[-98.75862475371287,18.044751632874863],[-98.76334016504245,18.049754024262768],[-98.76610914224204,18.05076091328982],[-98.76827679807519,18.049590335479877],[-98.77262926458206,18.048922849656094],[-98.77742517037882,18.05603699761997],[-98.78313580393706,18.0577733099729],[-98.78506994243173,18.05930566750743],[-98.79107876225663,18.058478848145853],[-98.7918883555335,18.060795191341526],[-98.79707011438978,18.062646476066504],[-98.79819744032721,18.06101233515642],[-98.79912512980178,18.05571881805463],[-98.80033664193604,18.053077821032673],[-98.80281582882543,18.052910791263287],[-98.80634594805639,18.054230201348787],[-98.8107473090302,18.050757271744658],[-98.81238821084048,18.051205668698856],[-98.8118062741429,18.053908285314378],[-98.81410240378699,18.0563741094889],[-98.81229011803333,18.06169021803447],[-98.8129997305698,18.06487536013117],[-98.81994963487233,18.064912192082716],[-98.82121727913943,18.063375058814245],[-98.82816221120316,18.06366188311614],[-98.83019697401454,18.064478077463434],[-98.834056860884,18.063492451515856],[-98.85723174239104,18.05925387830291],[-98.86981181090232,18.057216659085043],[-98.87071087574282,18.058199988267177],[-98.85236977210377,18.11760093134336],[-98.8663305460421,18.140581043937175],[-98.88187688562329,18.16616209765334],[-98.88478567164299,18.167032270797563],[-98.90717161478449,18.17372688252175],[-98.9416178087053,18.184306993749033],[-98.95721908963617,18.1886975073229],[-99.00006631628582,18.190204909318652],[-98.99815606144898,18.19986350721399],[-98.99545899019802,18.20898547436491],[-98.99406225487161,18.21285895017911],[-98.99529866421256,18.224372151345392],[-98.99535212683111,18.225710969933687],[-98.9948191041156,18.229292432811064],[-98.99500390485781,18.237391992828577],[-98.99183157488102,18.24451754339043],[-98.98904085038492,18.249317739013804],[-98.9995099226436,18.250380564627847],[-99.00063883138114,18.2497050791265],[-99.00135973999897,18.249328359904496],[-99.0042625908277,18.248115187189853],[-99.00663909705895,18.2440829280348],[-99.01093340109486,18.24745372522534],[-99.01129908139552,18.24749736999064],[-99.01932995962164,18.24541105303149],[-99.02359300258792,18.249186327880295],[-99.02177111471656,18.24992671374332],[-99.01891577860454,18.257155479638016],[-99.01718926153745,18.25954101336731],[-99.01585457533764,18.257974262962875],[-99.01470740078918,18.263265864315542],[-99.01690332826536,18.266391421132255],[-99.02674578943618,18.269970490830985],[-99.03170550800098,18.272314520556677],[-99.04365662851927,18.263145237101185],[-99.04909369114631,18.25958837649796],[-99.05302667304153,18.254337662571174],[-99.05445430554909,18.251551485788923],[-99.05728200536828,18.249924092364836],[-99.06389882258509,18.251869521623235],[-99.06335105337769,18.25466437270535],[-99.06149364727816,18.25682468413089],[-99.0616163957697,18.258852046110178],[-99.06405218548002,18.260501524994538],[-99.06308970593409,18.262985191814437],[-99.0583733404145,18.263113912551432],[-99.05442020700218,18.26235602534973],[-99.05395453210184,18.26252964190627],[-99.05335274400392,18.26309365855616],[-99.05317113349736,18.26347323519491],[-99.05483272945935,18.27135429991506],[-99.05714301981374,18.272920108209803],[-99.05943098374422,18.27125822185826],[-99.06245332034484,18.272269220345493],[-99.06521402420441,18.277070773374078],[-99.0649960647736,18.279220443580357],[-99.06736575976197,18.280679729913174],[-99.06773588196342,18.280595028121468],[-99.06953929873436,18.28225532152169],[-99.06945986587397,18.282659168226928],[-99.06936388314574,18.283234674507582],[-99.06911825695744,18.283586139061242],[-99.06522658041393,18.28483063005359],[-99.06485845313506,18.28475045194716],[-99.0626906034177,18.281729211006507],[-99.06083952373672,18.281960698218484],[-99.05770869959508,18.28424344556413],[-99.05177255826175,18.289815246931425],[-99.05279814467451,18.291389187165407],[-99.06009310139319,18.296665284441303],[-99.06063034550283,18.299044512285548],[-99.05969817982816,18.304873205229114],[-99.06189679736917,18.305063265101865],[-99.06364361265571,18.306809636562434],[-99.0642618506256,18.310280985698057],[-99.0620545355228,18.31367996291152],[-99.06195534709752,18.31642233433962],[-99.06332892803141,18.320171753526097],[-99.0674412746809,18.31920960993284],[-99.06991332719258,18.32423177548668],[-99.07049427463988,18.326839703186465],[-99.0699681635532,18.328371083464845],[-99.068132689501,18.33010340872943],[-99.06682761665803,18.332111009726702],[-99.06596398478155,18.33256650179402],[-99.0678564350398,18.334075493957982],[-99.07167877374093,18.335208511712437],[-99.075498093992,18.33997046318416],[-99.07556487235519,18.344618803027515],[-99.06985461077801,18.350423442412307],[-99.06988770277337,18.353664168910825],[-99.07116330666878,18.35638331095589],[-99.07031646634488,18.360127543233887],[-99.06639680230967,18.358905866028408],[-99.06579043874319,18.361436665807446],[-99.06605051330348,18.36710521100366],[-99.06798384455237,18.369337478889577],[-99.06999781197158,18.36889534981526],[-99.07239120728605,18.373400151317924],[-99.07283926553833,18.377312462867337],[-99.07416092523283,18.377488773048185],[-99.07812618395928,18.373463103782512],[-99.07983989989685,18.372608018382664],[-99.08154637455078,18.374052538037347],[-99.07939133733561,18.377853099293247],[-99.07853644787951,18.387065973081576],[-99.08415253975033,18.39136799804345],[-99.08778911516885,18.395647475347857],[-99.08954689240869,18.399985729941307],[-99.09449251234469,18.401740796958336],[-99.09939671502491,18.400694620439765],[-99.10051832571332,18.401189000947852],[-99.10509328067673,18.406411152433122],[-99.10805687829486,18.410856344941635],[-99.10828881035945,18.413835268918092],[-99.10830380636816,18.415048455804538],[-99.11094394255451,18.419203267677744],[-99.11275378693074,18.418502132947538],[-99.11795554846594,18.4208617286763],[-99.12233122449976,18.4239181542888],[-99.12407756228345,18.424103144196124],[-99.12789928819774,18.42671470190379],[-99.13019566057767,18.43093775562869],[-99.12867960284586,18.433698475610697],[-99.12495879805499,18.43627588755004],[-99.12439524031498,18.441239650686953],[-99.12520025086974,18.44245167377875],[-99.12958546745762,18.44083101584772],[-99.13239698907313,18.443663767780833],[-99.13267409334725,18.44640285103759],[-99.13637537589614,18.450142582065155],[-99.13405884118703,18.456360225775995],[-99.13554288366811,18.460801932147774],[-99.13943403404937,18.464051476015527],[-99.13788767460767,18.469568900547927],[-99.14057280817292,18.47066824364964],[-99.14062335279937,18.474973099467718],[-99.14489268725629,18.47543251182958],[-99.14482451480359,18.474915599297788],[-99.14455173288371,18.47271872356862],[-99.14116445011388,18.469083809299832],[-99.14270978644475,18.467843817183734],[-99.14225544020866,18.46561273184699],[-99.14679816970374,18.46488133474537],[-99.14912030492803,18.467436951010484],[-99.1561275660456,18.466348434669783],[-99.15846090405569,18.463619284463505],[-99.16031537121205,18.46433449923819],[-99.16236060768318,18.462875000696613],[-99.16319584381029,18.462797637488677],[-99.16394094798136,18.462629224891202],[-99.16372055951359,18.46185627075903],[-99.16782060530238,18.45871802933749],[-99.17047969117999,18.45522361120112],[-99.17255729703277,18.45505869336722],[-99.17870018673909,18.450851655109034],[-99.17896131892076,18.450847896210405],[-99.18131507543984,18.448417752542582],[-99.18224220287715,18.44042877762314],[-99.17934988941715,18.42889514506726],[-99.17790536842705,18.42474524361205],[-99.18881626461882,18.435206351798342],[-99.2066740276743,18.447434436405274],[-99.20442935780994,18.455281954598036],[-99.20542162981343,18.456588801314922],[-99.24600706243501,18.456433374756557],[-99.2461858714401,18.451711897001644],[-99.2476073344086,18.450999252674137],[-99.27500643654923,18.45401200421071],[-99.27505456735196,18.453784101529095],[-99.27648000554893,18.454173886613148],[-99.28082336137032,18.455092462366395],[-99.28156673277238,18.455569379405233],[-99.28316874816187,18.45750823210136],[-99.28407729994626,18.45641858986113],[-99.28741400256871,18.458769441298898],[-99.28776167969056,18.45727607743362],[-99.29131631822975,18.458255277801868],[-99.30423665309877,18.459473381266378],[-99.31005764672722,18.45668059043345],[-99.31215226206581,18.454787328534735],[-99.31579704626506,18.45578914940404],[-99.32321001290052,18.457867579406184],[-99.32836781961595,18.459540241990794],[-99.32940879092445,18.462437193494907],[-99.3288084514175,18.470656815617417],[-99.32826427505495,18.488831539127773],[-99.32941324981107,18.488927547633978],[-99.33664005162615,18.483938578663412],[-99.3455555348956,18.48229653111855],[-99.34605637106796,18.483948022607194],[-99.35267525666995,18.485980827141987],[-99.35070675773073,18.47897050150698],[-99.34344566427791,18.467127862201323],[-99.34698803424504,18.467676479778333],[-99.34647057154905,18.466487971646757],[-99.35740426503787,18.467669174830178],[-99.35505336328345,18.476737808174732],[-99.35557863080885,18.477218513997627],[-99.36423969947003,18.485144182242323],[-99.36412222257621,18.49249328688984],[-99.36418271303711,18.497708232677553],[-99.36295191796648,18.499026723954785],[-99.37238540411897,18.507890546113742],[-99.37633421522133,18.51366455810671],[-99.37921612254257,18.52053068786671],[-99.38387732012256,18.52115206052906],[-99.38529849064287,18.5262830116572],[-99.39027119081146,18.52568283045946],[-99.39098038845486,18.526853772139077],[-99.39107572746786,18.527011182983074],[-99.39923128504819,18.540406795317494],[-99.4008056009468,18.539535385880242],[-99.40072003495305,18.542894850247023],[-99.40677891488787,18.552931249145843],[-99.4069006744466,18.553131155193284],[-99.40583232445027,18.553576568397773],[-99.40780443150015,18.556066366496623],[-99.41376514728489,18.5589029289182],[-99.41382047780968,18.558632770307327],[-99.4153532830743,18.559683071880897],[-99.4228821877864,18.562067882602037],[-99.42433055881793,18.571925713163296],[-99.4252944451166,18.579127555377454],[-99.42050583645181,18.586222363037223],[-99.41970444502954,18.590336665786936],[-99.42193761625259,18.58891039885515],[-99.42339555529634,18.591277152272426],[-99.4259644327746,18.590748865316186],[-99.4293810229778,18.588920914677317],[-99.4317402601501,18.591165421279243],[-99.43564334175318,18.592761388978033],[-99.43517942052046,18.598067935413553],[-99.44049500010442,18.597464398539557],[-99.44272504699529,18.603160772665547],[-99.4413128385151,18.605402449035807],[-99.43995340192015,18.6109804697316],[-99.44120146217085,18.61257400735684],[-99.44609749436529,18.614492685497112],[-99.44877664314652,18.61209998513681],[-99.45146508129682,18.612336326879927],[-99.45388632811836,18.609902329451074],[-99.45550183643746,18.614000089502724],[-99.45509538717317,18.618315044031704],[-99.45622268905896,18.622495687078015],[-99.45764718678328,18.628475945133346],[-99.45803618769867,18.63083279509192],[-99.4580972565173,18.634061399337213],[-99.46021211802696,18.638183603258028],[-99.4644158823009,18.643669992574928],[-99.46583116209018,18.647417967285037],[-99.46715487842795,18.650144314892998],[-99.47415430913873,18.66524441661096],[-99.4746142361343,18.66752347299706],[-99.47480191719336,18.66844973945581],[-99.47519332572631,18.66912291197923],[-99.47544138469061,18.670841292516855],[-99.47757603786636,18.673565258644715],[-99.47863541973953,18.67740479823675],[-99.48069612164312,18.684441902858964],[-99.48151008337368,18.68745633169226],[-99.48291342563357,18.692655011676152],[-99.48096003488763,18.693225412493575],[-99.48138920167003,18.695058688509903],[-99.4831844272851,18.693658894129783],[-99.48385997425413,18.694776547140805],[-99.48556289947942,18.695033681871564],[-99.48425909478755,18.698456979564526],[-99.48603459353575,18.703226767288243],[-99.48876896832911,18.708987012109276],[-99.49441414768029,18.720544799546644],[-99.5045297744802,18.71170341768766],[-99.5110867765178,18.70886877794976],[-99.51575677612823,18.70779194384346],[-99.52234290293268,18.70743059593326],[-99.52908502201916,18.697791477836688],[-99.53238335330627,18.696766469102272],[-99.53301955511131,18.694495563930047],[-99.53643492534627,18.69375110155903],[-99.53871605175931,18.69514985720565],[-99.54449768232558,18.695357573845627],[-99.54505696229114,18.69745268475151],[-99.55110773522767,18.697391493297516],[-99.55401869027696,18.69878784256821],[-99.55534457224991,18.6977611242109],[-99.56029220923557,18.701988416681672],[-99.56183412834605,18.701135561131593],[-99.56486401606611,18.703645859444066],[-99.56854386120875,18.70465017596132],[-99.57141194910804,18.70744506222985],[-99.57148542402359,18.70958836858057],[-99.5742503510512,18.712412629955395],[-99.57632546143304,18.71237974761266],[-99.57675345448763,18.716545803993995],[-99.58033408298536,18.718447448046334],[-99.58174103884642,18.72217779741544],[-99.58067141066596,18.726666044439128],[-99.58087121337394,18.729915814240655],[-99.58049728820225,18.730766576664337],[-99.58006605106237,18.735744911273628],[-99.58421697638715,18.736753854659355],[-99.589908926806,18.739307209130857],[-99.59479920860718,18.73866163993273],[-99.59570644160021,18.739824514597046],[-99.60046470594796,18.739008346124308],[-99.60501684954136,18.74062996337102],[-99.61263093141628,18.73896195375187],[-99.6142980689516,18.73612107545074],[-99.61877987615759,18.741256314644602],[-99.6228660620751,18.739838901619066],[-99.62200385462336,18.736854662358382],[-99.62131054093754,18.734140685123805],[-99.62063995642285,18.727314117819674],[-99.62373147698418,18.722510219189644],[-99.62858235496577,18.720333730832294],[-99.63090775967146,18.720552230506826],[-99.6355630866783,18.72390616426992],[-99.63751710005693,18.728271337386218],[-99.63656650441686,18.73263064857821],[-99.63693641899567,18.73521018985906],[-99.63937036254583,18.73808485862719],[-99.64352428268,18.738508415937815],[-99.64874044410664,18.743186189512016],[-99.64862322643614,18.74802704435359],[-99.65049786789075,18.749779021706843],[-99.65065742718087,18.751869586486976],[-99.65258327874818,18.75247567799107],[-99.65377966453076,18.755617531910843],[-99.65610077463026,18.757575670126187],[-99.65720095763282,18.76215879896563],[-99.66043147675686,18.765629348608115],[-99.66026815586298,18.766128044961533],[-99.66032880563228,18.76952094666632],[-99.66145586129318,18.77130545747997],[-99.66489816963565,18.771682411378777],[-99.66698239956838,18.774170697970874],[-99.67032172209952,18.775784190387185],[-99.67079278510346,18.77649035071613],[-99.67399457608275,18.778130484326027],[-99.67482437633481,18.77899263997938],[-99.6785691880034,18.778638261042545],[-99.67909489026363,18.7789981210002],[-99.6831403426242,18.780789640691523],[-99.6848371067041,18.779937631482937],[-99.68834674030239,18.782323610287165],[-99.69005419723044,18.781408510577023],[-99.69064900843313,18.783096804413447],[-99.6961048214265,18.785093360755923],[-99.69705022277759,18.786336717554434],[-99.69699519408124,18.78255720672621],[-99.69672179685443,18.779865048867975],[-99.69584588069443,18.776605134920658],[-99.69678799988503,18.774782641545244],[-99.70124423513727,18.772633360929717],[-99.7057166224912,18.77015005249814],[-99.70878454148692,18.769698168681543],[-99.7061335138668,18.766508109498318],[-99.70649291174084,18.764780557645622],[-99.70447440770113,18.761631003090883],[-99.70166492483577,18.76038911384859],[-99.70104571953573,18.757364349559793],[-99.6981161245804,18.754753355843945],[-99.69538422356646,18.750250311977993],[-99.69213017884556,18.747545880077894],[-99.69206530168265,18.74535670849218],[-99.68813628752247,18.743205474950685],[-99.68666040528359,18.739060192355794],[-99.6845457544216,18.73575108084549],[-99.68214661342944,18.73615438480084],[-99.68182796715746,18.734541657210116],[-99.68410356959038,18.733461560591365],[-99.68193015384503,18.731541370643697],[-99.68077544103858,18.727429628903224],[-99.67967503012733,18.726860869422637],[-99.67768106114352,18.726527692858042],[-99.67341171846874,18.71790738171103],[-99.67224218204609,18.7175529726303],[-99.67166985072748,18.714864090196045],[-99.67193558083272,18.713690738181924],[-99.67991181679082,18.712038262324256],[-99.68013410437658,18.713493287966458],[-99.68374535863381,18.718172857216985],[-99.68663603246478,18.719957075350408],[-99.6905751200556,18.72111466184265],[-99.69179585205211,18.720475317381386],[-99.69445948460884,18.722649411700502],[-99.69495819022876,18.72312383349248],[-99.69730638447504,18.72711321231145],[-99.69892711350866,18.7276293567744],[-99.69842117247373,18.729735100653784],[-99.6998111614206,18.73093283098649],[-99.70003536133453,18.731397754609816],[-99.70044368024298,18.73269156477585],[-99.70406707147583,18.73461691033492],[-99.70472864396072,18.734932529294838],[-99.7057964346485,18.735068884316888],[-99.70653285926016,18.735464729930072],[-99.70928248087523,18.7350541907457],[-99.71056148232753,18.73643020774898],[-99.71459583188584,18.736214919166116],[-99.71815986782502,18.734440469112542],[-99.71969025083598,18.735339370908207],[-99.72044003233316,18.735889237245033],[-99.72181191594257,18.73725784220136],[-99.72650969543099,18.73828615480403],[-99.72693158013521,18.737906395334164],[-99.73316204372293,18.739570116466552],[-99.73703139645448,18.73983250606227],[-99.7389940221205,18.737051012161487],[-99.74068032507324,18.736497744703513],[-99.73964668979806,18.734619551144988],[-99.74106959419657,18.73369519626931],[-99.7409385081126,18.730809029090608],[-99.73909763989457,18.72827910944619],[-99.74121489837546,18.7285151441356],[-99.74219604632742,18.725885298380888],[-99.74406034291803,18.72566488285753],[-99.74787496496344,18.72323807576612],[-99.74976171386174,18.72021434997015],[-99.75392821953182,18.718817020200163],[-99.75335655612355,18.717421200478157],[-99.7557445065504,18.713867014131324],[-99.7572276457849,18.713688833254878],[-99.75847648734862,18.70830428642904],[-99.75741540537484,18.703983530437824],[-99.7548272991948,18.70173942468665],[-99.75490034131906,18.69738709299196],[-99.75992318151128,18.693949895140122],[-99.76282313392414,18.69381444025828],[-99.76590209961182,18.69143642528917],[-99.76741200427824,18.68901694956611],[-99.76815673748314,18.688250535386544],[-99.7724227556551,18.686197393469058],[-99.7728852528457,18.682124227259237],[-99.77244806582792,18.67998861478378],[-99.77434733189,18.674586365052846],[-99.77982350475673,18.667860479890578],[-99.78312474234156,18.665284191129786],[-99.78430558768491,18.66233559591359],[-99.78407132456658,18.658479812064627],[-99.78149631457319,18.65586394456153],[-99.78120612067602,18.655560951650614],[-99.78079115491727,18.65489754412863],[-99.78457830475014,18.651088931981917],[-99.78403375273348,18.647960542460396],[-99.78353265241856,18.64610691056407],[-99.78351778781939,18.644715252359617],[-99.78331555447829,18.642366350885368],[-99.78402938379759,18.641012250010192],[-99.78615335727488,18.63952815926109],[-99.78830641498337,18.63695813311699],[-99.79222732118211,18.632909556826633],[-99.79423180664566,18.62987982139805],[-99.79751218903652,18.63377530095488],[-99.79861696313213,18.63108802713242],[-99.80266920814802,18.635678035595674],[-99.80469799543107,18.637051154537062],[-99.80697840576107,18.636272960908457],[-99.80993976220685,18.638144158491286],[-99.80931982130562,18.639306394900984],[-99.81263645834798,18.640797628101893],[-99.81118023205909,18.63646734403261],[-99.81366947252741,18.63478062242774],[-99.81411001644602,18.6313437298636],[-99.8132428540323,18.629817308134818],[-99.81679334506106,18.624902964592252],[-99.81752379141005,18.62632253478148],[-99.82088099424976,18.624994689445032],[-99.82521366803923,18.626338134509183],[-99.82769152363096,18.624060647790486],[-99.82942038803901,18.626190313553707],[-99.83192519238804,18.62689962738824],[-99.83787209042879,18.623474880472486],[-99.84091845234946,18.625113351524647],[-99.84340862851849,18.624154710521623],[-99.84257414513411,18.621855267371757],[-99.8483595224875,18.62025883587438],[-99.84814712910031,18.617539488748776],[-99.84914005861458,18.612549905265325],[-99.84475378297208,18.609191833168495],[-99.84761808380904,18.605490407404034],[-99.85140416699733,18.606256787629434],[-99.858149408229,18.612272072176154],[-99.8631766017021,18.614208109212996],[-99.86374139775376,18.617862035709663],[-99.8682970698901,18.615862190501275],[-99.86893925185558,18.61469821251137],[-99.87187332194549,18.616497479820737],[-99.87924240681866,18.617746894066386],[-99.88175327815361,18.617535427690427],[-99.88344161683756,18.61914958970584],[-99.8858047536146,18.619294474415767],[-99.88902056082827,18.61835673800067],[-99.8906606477974,18.615296880373137],[-99.89514662017189,18.61190344767175],[-99.89621077550532,18.610095509798214],[-99.89992539250738,18.609057298168466],[-99.90132198464772,18.607151693205935],[-99.90159459303277,18.607373658193637],[-99.90637235445945,18.605130414454095],[-99.90631775502192,18.602269116955767],[-99.91046861288237,18.601047804574932],[-99.91666421812386,18.597881769916114],[-99.91820956763843,18.598298802957117],[-99.92028524640074,18.598762255728218],[-99.92131331029293,18.59852514471845],[-99.9239974190449,18.597591067927794],[-99.92697216344078,18.595157972843424],[-99.92861612995512,18.59425462287669],[-99.9343463969679,18.593344166970496],[-99.93650391177931,18.59104032153573],[-99.93905723181251,18.592009139587446],[-99.94136577828732,18.58904101632953],[-99.94260635733878,18.59002456583835],[-99.94327249273755,18.589852719773887],[-99.94417531157404,18.587894914567585],[-99.94716184374545,18.587940562171468],[-99.9467035128664,18.586328177442283],[-99.948259801358,18.58392848885137],[-99.9471631328301,18.583367018412503],[-99.94956935329122,18.578120149916742],[-99.95386874190353,18.57496325882454],[-99.95340758698927,18.572174134141505],[-99.95615999266573,18.572459793481585],[-99.95691552108599,18.569378385956725],[-99.96035657742408,18.56661596426909],[-99.9579520468817,18.565078073375332],[-99.96092358536106,18.56398854294838],[-99.95995514808448,18.561197214940023],[-99.96180729237591,18.555412176696507],[-99.96167226551086,18.55297890662007],[-99.96361706586424,18.554938284952755],[-99.96671487594728,18.557053435926377],[-99.96836448955571,18.55786385531343],[-99.97608800968521,18.56145090983955],[-99.97815031763179,18.563417849251266],[-99.97876303028244,18.564175140703412],[-99.98028558586168,18.565573627630044],[-99.98969490057607,18.569702158174834],[-99.99226529656801,18.569433969372653],[-99.9939166663246,18.566004074651175],[-99.99916570064426,18.563174446376536],[-100.00355979470129,18.56577394954195],[-100.00364933078447,18.567498759907778],[-99.9993008400694,18.583578368552878],[-100.00215294217224,18.584432650320707],[-100.00716094947825,18.587780601765303],[-100.01061414841172,18.590352085903476],[-100.01180057563823,18.592357065014767],[-100.01474586340788,18.59630787300432],[-100.01513265878219,18.599677205845865],[-100.02032947624826,18.602568964391367],[-100.02496363368311,18.606866759441687],[-100.03356964239902,18.606173482453528],[-100.03565806699402,18.59979287486243],[-100.0375792832213,18.596589936678242],[-100.04033500374169,18.597377967115392],[-100.04562414395832,18.5935337694562],[-100.05140916971732,18.59315798115938],[-100.05161188754323,18.59096999188995],[-100.05671136552985,18.588324397266206],[-100.0632461272615,18.585739044707168],[-100.06404159170319,18.585790788073552],[-100.06592782891386,18.59051856997786],[-100.06902067020832,18.59186178154863],[-100.0717549802929,18.593691494858717],[-100.08241382320438,18.58794983710203],[-100.07073150369058,18.58281633272594],[-100.07010095352081,18.576537370053302],[-100.0688863357675,18.564440638812584],[-100.07294305373546,18.560297944578338],[-100.07467418281004,18.553614411953617],[-100.07523571466464,18.551446349449293],[-100.08180473578665,18.5404095255833],[-100.08533517566781,18.538615526182184],[-100.0864827363992,18.53452503992736],[-100.08995113907054,18.52216078722887],[-100.10450951778046,18.524012221314422],[-100.11005886444298,18.521115102402177],[-100.12267729249089,18.516494550812297],[-100.12003049892257,18.516203706572753],[-100.12102910535998,18.514267270907055],[-100.11791930287728,18.51337959611294],[-100.11965688544234,18.51149968222404],[-100.11864376461739,18.50995586646701],[-100.12231879802118,18.510802281870212],[-100.1220354708808,18.50915287207448],[-100.1195689647854,18.508178128179622],[-100.11851554442228,18.50596214273594],[-100.12173800775122,18.505442494985516],[-100.12437760555542,18.506171486329436],[-100.12505847257876,18.507970272179477],[-100.1280121920957,18.507803098143427],[-100.12698078570315,18.50501668287444],[-100.12725736339792,18.50227120545196],[-100.13028898971777,18.503227036687974],[-100.13267957681808,18.50028222474151],[-100.133351391129,18.505800416933255],[-100.13618334128392,18.506124082278404],[-100.13925689714296,18.501690158209442],[-100.1421615202492,18.502539064592327],[-100.14319272391003,18.499333669136263],[-100.14482720293341,18.4984675587109],[-100.14589090807658,18.495634130491908],[-100.1448933033181,18.49114903386254],[-100.1455915097086,18.48802191889166],[-100.14641902429958,18.489793537538844],[-100.15124220693099,18.488673076164844],[-100.15135900667758,18.491093320183552],[-100.15814103266541,18.4919541257579],[-100.16012807227673,18.490490001198168],[-100.15930733377877,18.48884011557061],[-100.1574020307317,18.49057218232781],[-100.15608968975448,18.48954075212913],[-100.15719530470119,18.487102323910165],[-100.1586000481384,18.488177063898547],[-100.16325109093526,18.485604408083077],[-100.16568291751565,18.48691026105547],[-100.1663451753754,18.48545246736063],[-100.16456360975087,18.483498054454856],[-100.16674772330674,18.48144203936579],[-100.16533600095465,18.479713627696526],[-100.16719157182217,18.479267222820624],[-100.16806413523148,18.478769163231505],[-100.16941208814438,18.479070682367023],[-100.169819889307,18.483078707048264],[-100.17134556880973,18.483169208490835],[-100.17200207660505,18.48091834995114],[-100.17436999336678,18.481384735336576],[-100.17226636641749,18.476222457575545],[-100.17198382330974,18.471514148271694],[-100.17476127059905,18.47011725224155],[-100.18236814014364,18.46812153192866],[-100.1802311155086,18.46579843489286],[-100.1806306620735,18.46409179579433],[-100.18492613781933,18.458313170625047],[-100.18616474342952,18.459908876905217],[-100.18814703916667,18.458459714918888],[-100.18573624370441,18.455107235457206],[-100.18988049665762,18.4557720624814],[-100.19168221901225,18.45485240772672],[-100.19431188025095,18.456568169078025],[-100.19698795748633,18.45505567339484],[-100.19896004166549,18.456971830458656],[-100.20072872520984,18.455665240766905],[-100.19919621965232,18.451935083516787],[-100.2021174347633,18.448912904114422],[-100.20506140475601,18.446125786249922],[-100.20616844811553,18.44312545005249],[-100.20865576386694,18.44122932848643],[-100.2078879621015,18.44818413552707],[-100.20993619232593,18.44937733386581],[-100.2120760604667,18.44867564158443],[-100.21292124764602,18.446559761662513],[-100.21707609551862,18.44592369855667],[-100.21820446884328,18.440627322644104],[-100.22224882020862,18.43985285456614],[-100.2241047271715,18.43818685355967],[-100.22423242301403,18.436128340821995],[-100.22497335121699,18.433983698388715],[-100.22710573342937,18.435574455218102],[-100.22760403875048,18.433213468076303],[-100.22848279182665,18.431210252315566],[-100.22982439822738,18.43167612077599],[-100.23173716135955,18.430782789989962],[-100.23176484892377,18.429609185827474],[-100.23126983832611,18.42843277319065],[-100.23122434193243,18.4278973038887],[-100.23214365339965,18.428184065091557],[-100.23245689557774,18.427604245027624],[-100.23294103117041,18.428140398893106],[-100.23339141750182,18.4278627802816],[-100.23349602251449,18.426776569412084],[-100.23393502886995,18.424229571755575],[-100.23412203512964,18.424241039427557],[-100.23426890704775,18.426179660364028],[-100.23678317002248,18.425379710347784],[-100.23511108799693,18.419970243187493],[-100.2363996428981,18.416771770864216],[-100.23879670649706,18.416508394126765],[-100.23809451754727,18.418360186739505],[-100.24029786148185,18.41954216778589],[-100.24255419415726,18.41665056500699],[-100.24556521764828,18.418719761275156],[-100.24521092291008,18.42092449435677],[-100.24723380258064,18.421528095702058],[-100.25049768408178,18.426682044533493],[-100.25291412261424,18.4256693026133],[-100.25569758785343,18.426961161258248],[-100.25729328425894,18.429010789092104],[-100.25921517512381,18.42517058515523],[-100.25886666897168,18.423547698452694],[-100.26120575793618,18.421812458955344],[-100.26042797592021,18.415559326817572],[-100.26296774285015,18.417782902731176],[-100.26375428637965,18.41383146872488],[-100.26139898932882,18.41355266845278],[-100.26219874963465,18.412120151783938],[-100.26558413662144,18.412178700507468],[-100.26402628382374,18.41048098727066],[-100.26408223730454,18.408018138130217],[-100.26746063455084,18.40573770420849],[-100.26678335779565,18.404228103123444],[-100.26948588103647,18.39841657059486],[-100.26980182855664,18.390696121570727],[-100.26734411640348,18.386314551730493],[-100.268849036007,18.383124552636616],[-100.26787442975535,18.379451262722966],[-100.26961439498052,18.37661234467828],[-100.27089151957307,18.373732460431484],[-100.27181659003622,18.373049481762166],[-100.27442656774741,18.372365308488895],[-100.27597210135957,18.372093743584855],[-100.2766886587869,18.372080369579123],[-100.27775938968665,18.374486884416285],[-100.27739409473867,18.376188135383416],[-100.27715116986576,18.378899368195164],[-100.2797555316493,18.380624582203268],[-100.28151271508091,18.37864434414672],[-100.28337956822645,18.37783998369082],[-100.28579043076815,18.38058427979138],[-100.288208952417,18.379897416845665],[-100.29224611403293,18.381379172030336],[-100.29192605063844,18.37854149069193],[-100.2930123781997,18.376127808399985],[-100.29332635024281,18.375296488151264],[-100.29746664137258,18.374392268389613],[-100.29795993610048,18.372081594009444],[-100.30032313628925,18.370991569111197],[-100.30080478703121,18.3708160702472],[-100.30281579035199,18.367433813923867],[-100.30418296417628,18.367620461979982],[-100.30785814414509,18.370250821076013],[-100.31049496998588,18.374120907325334],[-100.31027164692091,18.374559992591458],[-100.31396651182752,18.377392336074024],[-100.31563900405399,18.381397622710097],[-100.31916375340222,18.38047126589055],[-100.32233062229619,18.383749757704038],[-100.3311754367021,18.38993975730017],[-100.33153382083532,18.39143501611295],[-100.34310924939143,18.398081121454027],[-100.34614129229664,18.400314494163524],[-100.35203464318136,18.414332772066984],[-100.3543493733336,18.41597786384608],[-100.35944132104788,18.42346186621552],[-100.374114536729,18.422985685303047],[-100.38535803470967,18.42652458516335],[-100.38029950605238,18.45566177466503],[-100.3775694737883,18.45963266560568],[-100.37739658354275,18.46347905472777],[-100.3674914901589,18.47538312987274],[-100.36200318019206,18.496847227623448],[-100.36321922761414,18.49909370477178],[-100.36922812219228,18.515197953990537],[-100.3731944216471,18.52413430477702],[-100.37370128972026,18.52911384381912],[-100.37940384854085,18.53452227374487],[-100.3823785303959,18.53734328682259],[-100.38879847560372,18.54017686351466],[-100.39595369225339,18.54052008999213],[-100.40315005604873,18.53397483661263],[-100.4059152091823,18.533549893924317],[-100.40644641811969,18.531096492978804],[-100.40986033849833,18.525161011085288],[-100.41136792912624,18.520739695024645],[-100.41833570632633,18.516706003323236],[-100.42006851288335,18.515949051248015],[-100.42372292653448,18.51435258193004],[-100.42909695966199,18.51004806188547],[-100.42985662609851,18.510976188798907],[-100.43488792942196,18.52880889572583],[-100.43640403659663,18.53170161975737],[-100.44262011106423,18.5410081292967],[-100.44479697734613,18.543646869266183],[-100.44663880247879,18.545662085474646],[-100.44650859612545,18.551494190981487],[-100.44895296749957,18.553706841882217],[-100.44929025940809,18.5572226098505],[-100.4478245760082,18.55859235448588],[-100.44788953735758,18.56069679196247],[-100.44313716739521,18.566203555220454],[-100.44243275093805,18.567983424730016],[-100.44349344664408,18.570993123031087],[-100.44080940362664,18.57442233870836],[-100.44063761621521,18.578068964967088],[-100.44105888577809,18.579399700677868],[-100.43788755967068,18.583803753631173],[-100.43686047483891,18.58567442228241],[-100.43701603602739,18.59287583818815],[-100.43559604615211,18.59199965877258],[-100.43617333104925,18.595649675164793],[-100.4363960144106,18.597078779263484],[-100.43560273703952,18.597969250494486],[-100.42973330084334,18.59927321297556],[-100.43683306210534,18.613716577647324],[-100.44303311206482,18.620037734039784],[-100.44650903140933,18.62246523506093],[-100.45140798418197,18.623926355734966],[-100.45763579609496,18.622379294364407],[-100.46193145382603,18.61855992079802],[-100.4742893165274,18.619216121820784],[-100.47639272873892,18.63008968831548],[-100.48706747725856,18.64051715715658],[-100.48817949415258,18.64419737429364],[-100.48879860822274,18.650192305621033],[-100.48684209069864,18.657612578801263],[-100.48550395191444,18.66047782390342],[-100.47813994926213,18.67216057509887],[-100.4783142868011,18.679536404199382],[-100.47920104161454,18.683733697941307],[-100.47869565031533,18.68616767460827],[-100.4764539362319,18.689193888310285],[-100.4715877226318,18.691268866386963],[-100.46330555483411,18.69307456309309],[-100.45447494459916,18.694417715610996],[-100.45133812558856,18.697206358530934],[-100.44713332320566,18.701575042631987],[-100.44973263851386,18.702963195680354],[-100.45037355845989,18.716048083103885],[-100.44656978579832,18.719794096427222],[-100.4441164332851,18.72374144392677],[-100.44265849203231,18.730326061595633],[-100.43985258492137,18.74053104522835],[-100.43814939016556,18.742696374355376],[-100.43700061618841,18.747250677378247],[-100.43713042795434,18.750555241066934],[-100.43020829793886,18.753811726659364],[-100.41808522260271,18.759514078745212],[-100.42257882293393,18.763757707720345],[-100.42314182619947,18.764773836593463],[-100.42775821685757,18.766618522993724],[-100.42610303691066,18.76964221588679],[-100.42658127557809,18.77440697663792],[-100.42756885237895,18.774735046699675],[-100.42883698281446,18.774597606896293],[-100.43058042558442,18.774453637427996],[-100.4308383450932,18.774394412258857],[-100.43113225915135,18.774490246998823],[-100.43136048955472,18.778790252602107],[-100.43136054761789,18.78005251379102],[-100.43072310341364,18.78231165409767],[-100.43060777459425,18.78306825878218],[-100.43076178148601,18.78338718883026],[-100.43100700661637,18.783534567669506],[-100.43115627752212,18.783463770208982],[-100.4319572799858,18.782727787523527],[-100.43406893099512,18.78084251516418],[-100.43482088600564,18.780001361141103],[-100.43607432417872,18.780108520630904],[-100.43627844019818,18.78075667167451],[-100.4363523530584,18.781662660206337],[-100.43633570404677,18.782073678729944],[-100.4365688633788,18.783111193875868],[-100.43765063606054,18.783078336521726],[-100.43981468966723,18.78250749453082],[-100.44265079339857,18.780435005066465],[-100.44146033000635,18.77695592708062],[-100.44393771087198,18.776543770793012],[-100.44521939084336,18.778689799672406],[-100.45054038718541,18.780279412546122],[-100.4504233871383,18.782527580130647],[-100.45240514337985,18.782039121191758],[-100.45325601398491,18.778579059199785],[-100.45533746642792,18.777707427717246],[-100.45719450669537,18.778713353101864],[-100.45606762702846,18.781033010242368],[-100.45621294084191,18.784802117170443],[-100.4564552130011,18.786001039879466],[-100.45799266931368,18.788233458532602],[-100.45760062370704,18.790274089117474],[-100.45924691744722,18.79074431922652],[-100.45836686167337,18.795671386829497],[-100.46215875033892,18.796968409470423],[-100.46508120396129,18.794440995123637],[-100.47762776892853,18.79596066372335],[-100.4794758502398,18.797814345511824],[-100.48177021658887,18.79865164305818],[-100.4851196532664,18.794904728410984],[-100.48967043970652,18.789980981114866],[-100.49083126650157,18.78996740482455],[-100.49761485879372,18.805960691955306],[-100.49585521149379,18.808174725022752],[-100.48988195944685,18.810378539969292],[-100.49348270264926,18.8239167250523],[-100.50216997908313,18.83086539260745],[-100.50647224151817,18.830251885513405],[-100.51396315603665,18.829312254999593],[-100.52663146927443,18.838055459774694],[-100.5386198916483,18.8441106424537],[-100.53795385377344,18.836183405787324],[-100.544566786097,18.8380429077431],[-100.54872280325577,18.842091970486706],[-100.54997173727384,18.84421805677806],[-100.55263279275363,18.84595122882024],[-100.55458816427466,18.845702470946208],[-100.557992767028,18.847180420224333],[-100.56234651425285,18.847061875798886],[-100.56817313205107,18.849743976967773],[-100.57222374066095,18.854201533447053],[-100.57373006417998,18.85463318841215],[-100.57639474996358,18.855167180168394],[-100.5767792159881,18.85778094731546],[-100.5821965941721,18.858919982171983],[-100.58431149794723,18.858242081091817],[-100.58690707738663,18.859903395375284],[-100.58693367779392,18.860436904314554],[-100.58716936511587,18.86200923311003],[-100.5896249319776,18.863227179898956],[-100.59076667113175,18.86590674172578],[-100.59245992755945,18.865889957733316],[-100.59159013296949,18.868164948592437],[-100.59353836615753,18.870662314105232],[-100.59401679647726,18.871213292813252],[-100.59720802534383,18.874527915125157],[-100.59724607549549,18.875511346523695]]]},"properties":{"cve_ent":"12"},"id":"inegi_refcenesta_2010.25"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-101.33978302703662,21.83700100899034],[-101.35139161340686,21.838089278215648],[-101.36566353971597,21.839361621435046],[-101.37144566511614,21.838340528306617],[-101.37378272988809,21.837918606944925],[-101.3778483641143,21.837258055406835],[-101.37889393661516,21.837105800709992],[-101.3799374422295,21.836928675864897],[-101.38274053922993,21.83648399568068],[-101.38438742063715,21.836194799740213],[-101.38551434628312,21.836005570851682],[-101.38793502615363,21.835550757464546],[-101.39020354027036,21.835054346285347],[-101.39432731058787,21.834167627780175],[-101.40034783975557,21.832866504886113],[-101.40700350817724,21.831455184988158],[-101.41250583406878,21.82920139478165],[-101.4138371461122,21.828650913388913],[-101.42029261375569,21.825940324311773],[-101.42266893118028,21.824962937728742],[-101.423387119356,21.825024194316654],[-101.42635682837971,21.825214680928923],[-101.43561413449794,21.825918812409327],[-101.44372619690944,21.826540661789124],[-101.44393424326762,21.826521624392058],[-101.4472102658774,21.826550563238925],[-101.44997219252303,21.826676242503254],[-101.45044971835301,21.826687164502914],[-101.45358587864388,21.82669178413647],[-101.45507234353897,21.829958544724207],[-101.45820615202189,21.8261647078877],[-101.45886244185647,21.825872594480813],[-101.46073559404357,21.82390561452604],[-101.46406140479581,21.820225035786507],[-101.46596323975768,21.827058798968153],[-101.47023064145475,21.82717659888516],[-101.47387339916861,21.827391016438582],[-101.48543176217544,21.818246940573886],[-101.53883216626633,21.77733487994982],[-101.56020554622233,21.779901760619055],[-101.58569407894072,21.778777124527267],[-101.58480514099892,21.771626372027242],[-101.58225780550737,21.77265256219266],[-101.5816962993544,21.763423660449007],[-101.57968280063449,21.736404605929977],[-101.57645340810626,21.73619631642714],[-101.56947846731731,21.73392427782545],[-101.56627963718603,21.73341256753389],[-101.55765329467403,21.73509866377981],[-101.570855367175,21.70430771642674],[-101.57119641369161,21.70641668643657],[-101.57901063159636,21.71195809739794],[-101.5807346466949,21.71035877331161],[-101.58404332197415,21.70957448812908],[-101.58290855590911,21.706237201292822],[-101.5797199014944,21.70353681550091],[-101.57527370142361,21.700880214065535],[-101.57242385419369,21.69809191035904],[-101.5719943620694,21.695222650155927],[-101.57014438379218,21.696278040821767],[-101.56928811843835,21.694218300756518],[-101.56957050076653,21.690381566922042],[-101.57212375433289,21.68886610762621],[-101.57285859178972,21.685097700155154],[-101.5766836840906,21.6807417609661],[-101.57907126212274,21.67546367054092],[-101.58043388529188,21.675421620338852],[-101.58258150511114,21.672613003461322],[-101.58250744861488,21.670653141746413],[-101.58459876794177,21.668960101060122],[-101.5814280302252,21.666998441346664],[-101.58163922745791,21.665040725211156],[-101.58448844012707,21.662209178386263],[-101.5829805369134,21.657886565904278],[-101.58481806920668,21.65469618430643],[-101.58896968849677,21.652026037663973],[-101.58909118069693,21.650289094165032],[-101.59170989576216,21.645870284920136],[-101.59190184657882,21.642765206944773],[-101.59379952509289,21.63840908893411],[-101.59608609458894,21.6370619070438],[-101.59340198533681,21.63186057261862],[-101.5901732605546,21.632627269769728],[-101.58908793412633,21.63141360720408],[-101.58436059585313,21.63107314694747],[-101.58214611336712,21.629336491308266],[-101.5801887437571,21.625531333003323],[-101.5815357885578,21.622730344760782],[-101.5839767996876,21.621204987554165],[-101.58352278905284,21.613627281408583],[-101.58602363399251,21.60780962860821],[-101.5895877687729,21.60906963556988],[-101.593521234901,21.611483180946777],[-101.59605606332912,21.609176294434576],[-101.59697040658705,21.605801516623387],[-101.59524458443377,21.603492158419556],[-101.59577406588522,21.600314997155124],[-101.59783049057506,21.599176036407016],[-101.60176666026729,21.59300985435459],[-101.60317360602602,21.593605111352815],[-101.60524750137057,21.588917430007143],[-101.60713319359161,21.58836700594844],[-101.60788421612705,21.58404972840566],[-101.61064095390589,21.585369753100736],[-101.61211536194395,21.582269715981795],[-101.61040670125664,21.58116694503724],[-101.61215617781846,21.575335581835134],[-101.60663275515259,21.57489833893385],[-101.60642347275945,21.564590376684748],[-101.60928724893972,21.562359479073223],[-101.60725652313187,21.562011744557935],[-101.61043820866905,21.558737336007198],[-101.6163658823383,21.558079175137607],[-101.61743896049342,21.55659410522361],[-101.61639178113143,21.554138693590858],[-101.61894320284944,21.55362731180594],[-101.62005648140519,21.55154415818282],[-101.6216597171798,21.55190362080691],[-101.62156161547489,21.549122756114627],[-101.61938076862407,21.548463921334815],[-101.61913768456202,21.54609783483278],[-101.62318558995622,21.546692709545823],[-101.62231433338593,21.542602062915194],[-101.62000801894624,21.541068962508177],[-101.62605141081593,21.5345712133348],[-101.62962797415884,21.535088354203936],[-101.6298083371189,21.5324959118106],[-101.63333921276859,21.53162909948429],[-101.63585056899922,21.532425735806896],[-101.64005222955853,21.528974264500448],[-101.64126883729364,21.526648322590972],[-101.63936374993136,21.51714116373597],[-101.64059928707798,21.514711945348836],[-101.63941544084503,21.5135860142733],[-101.63710348235787,21.516497886851425],[-101.63243145509773,21.5190541721538],[-101.63026989524855,21.51577730732805],[-101.6269785485589,21.513561300964056],[-101.62690935367925,21.509844784476797],[-101.58904197722887,21.46489996418444],[-101.58841998125126,21.461241688440964],[-101.59004223983823,21.45677741593323],[-101.58670649594546,21.452582926481625],[-101.59010917519629,21.4501596600349],[-101.58995092021985,21.44558088545392],[-101.5878917364692,21.44240520806619],[-101.58187252072497,21.447809419218913],[-101.58132153038054,21.439541470659492],[-101.58014888264631,21.43592534434697],[-101.58219921109111,21.433602595365926],[-101.58004905063035,21.432877609710772],[-101.58042392959157,21.428279689274575],[-101.57667555761208,21.42450598824786],[-101.5743705974383,21.42081190137219],[-101.5715381323086,21.418355654876052],[-101.57874928376572,21.418439672966826],[-101.58164129943833,21.417796928671862],[-101.58550938607254,21.415416196191757],[-101.5891393416357,21.41513148279239],[-101.59493851124637,21.418510086727167],[-101.59756474250821,21.42097693466053],[-101.60205209912198,21.41991477348978],[-101.6061220434463,21.416959351289165],[-101.6066341445026,21.414965920313648],[-101.61881689026228,21.415387525129404],[-101.62668830165182,21.40924279061619],[-101.63094422920994,21.40731307575402],[-101.63291197430766,21.407477601142716],[-101.6384062831653,21.41000229844832],[-101.65220027215429,21.406894310426708],[-101.65423743551924,21.407495791140093],[-101.66066658617979,21.406035211399228],[-101.66214145338398,21.40472476270338],[-101.66516198663743,21.40436277135035],[-101.66875661346404,21.401844040414915],[-101.67037793800438,21.40234574795653],[-101.67191388575992,21.398224400060883],[-101.67529617431421,21.395679495672482],[-101.67758295951649,21.395142370216206],[-101.6797627087534,21.390261329885732],[-101.67750180481067,21.38816528505788],[-101.67623174103227,21.389812022440253],[-101.67535946795823,21.38672033362559],[-101.67247556905568,21.386515612641062],[-101.66874347555478,21.38091354799957],[-101.66205149256996,21.376533761143207],[-101.65953288638389,21.3761427248607],[-101.65561723692758,21.373282836187286],[-101.65465654744315,21.370124358215833],[-101.65161158374559,21.369646151877134],[-101.6518168729666,21.365688949369087],[-101.649658286143,21.36231160501609],[-101.64600562490898,21.360196970119375],[-101.64522905339521,21.35706944240826],[-101.64284492810816,21.355106092345977],[-101.64254197469126,21.350304089369217],[-101.6435661420324,21.34871278083631],[-101.6437204833818,21.344574452171287],[-101.64502609183052,21.339200500370964],[-101.64657307841685,21.33806055316444],[-101.64543317997976,21.333765952502688],[-101.64652474639809,21.329592686591866],[-101.64615063527378,21.326318408309078],[-101.64385917674434,21.323306338101077],[-101.64168656971782,21.318348445858362],[-101.6407874535609,21.310532377513084],[-101.64196839552307,21.308892683629153],[-101.64121969945012,21.304596945314927],[-101.64317710744297,21.299335687173254],[-101.64785668471512,21.29755707203236],[-101.65048665004883,21.297884331619628],[-101.65579891159746,21.294755756361212],[-101.65944886953218,21.288195323668106],[-101.66285287992474,21.286579909051795],[-101.66595378715914,21.287835532800273],[-101.66626849133092,21.2866511220015],[-101.67110785915446,21.288181609654714],[-101.6717938454409,21.28711678499195],[-101.67689700908579,21.28882816050867],[-101.67809838619854,21.290520320296764],[-101.68330607318188,21.292090770342668],[-101.68603021734782,21.293792649555712],[-101.69452116887419,21.28767472265747],[-101.69772970736125,21.283845412342032],[-101.698934172816,21.277771691960993],[-101.70200537947352,21.275462877010398],[-101.70717198146286,21.276475316569417],[-101.70937673743293,21.28072565360128],[-101.73578788732823,21.277292226601844],[-101.73687057011483,21.270048091645776],[-101.73853511285125,21.26915959284503],[-101.74228833039007,21.2702016516958],[-101.74265160474869,21.271437661821494],[-101.74957071666915,21.271993764031322],[-101.75221509871307,21.270137866517928],[-101.75671542014652,21.269799263219284],[-101.75971650523826,21.267621732295538],[-101.75991063391814,21.26601012279741],[-101.75781448969184,21.263683323687758],[-101.75940272007887,21.260613334840116],[-101.76371716267568,21.259504851610643],[-101.76574894309294,21.26009507021047],[-101.76819723827754,21.257732275110982],[-101.76258904322162,21.251872002448295],[-101.75803539784476,21.248514530715852],[-101.7545864129342,21.243888540332534],[-101.76034630093517,21.243365934627718],[-101.76594944403644,21.2422312842354],[-101.77120044835613,21.234731275175193],[-101.77364667319694,21.223488634603257],[-101.77443477178394,21.196584368921663],[-101.78066473259946,21.191423062030424],[-101.78115694886878,21.187413179124917],[-101.7797738060084,21.184238117234145],[-101.78133461947522,21.181079990013814],[-101.78114456499247,21.175996648015996],[-101.78368207205773,21.171178524740185],[-101.7819960233441,21.16589330471055],[-101.78110878972495,21.160527898228395],[-101.7827007246633,21.158083437481537],[-101.78727139573567,21.15638200281404],[-101.79357072803003,21.15990276936526],[-101.80400915342227,21.1663481866521],[-101.8054653608068,21.164623654650427],[-101.80477625933094,21.15850064107815],[-101.81058331953403,21.156275461476525],[-101.81384178387316,21.15332693236428],[-101.81569776729054,21.149527377797995],[-101.81419534078583,21.14837685322567],[-101.8106557930646,21.149453165108355],[-101.81056684806987,21.142556294318467],[-101.81436254848364,21.140577310274296],[-101.81792356479417,21.137338871996064],[-101.82336101703908,21.135931764140537],[-101.82837006588943,21.1375888913131],[-101.8334480142849,21.13727296981989],[-101.83285777998384,21.129671350600972],[-101.83135782695751,21.128014674128906],[-101.83084592347063,21.119372545070632],[-101.82989126171191,21.11910418221339],[-101.8267754700833,21.12207875136312],[-101.82251351253962,21.12073189193063],[-101.82026784722024,21.118666397372294],[-101.81765880530651,21.10704569523341],[-101.82377728089784,21.1031419680441],[-101.82706289368741,21.102976235540268],[-101.8279735922734,21.100067533954757],[-101.83243762034022,21.10030793217925],[-101.83671088443691,21.099756068016745],[-101.83748689927529,21.096765437552392],[-101.85816088389748,21.096473567471378],[-101.8712556777835,21.09532408301658],[-101.87424899091582,21.09357876381273],[-101.87634501223567,21.090733756873192],[-101.87779781079928,21.085433933358388],[-101.87628188205059,21.079863185403894],[-101.87650664011869,21.077611858944408],[-101.87500204000378,21.075875198098004],[-101.87494275268142,21.070085370534287],[-101.88086587039356,21.06608623830914],[-101.89290752135827,21.055828968633193],[-101.89389345548062,21.052068002968383],[-101.89527942802044,21.050832315328023],[-101.89935272158715,21.051522782967197],[-101.90079041414515,21.050850510104908],[-101.89674736702182,21.048545117488914],[-101.8982310848196,21.042873646248893],[-101.89912608927068,21.042866810943565],[-101.8999626462537,21.038526710646124],[-101.90233880022726,21.03213048882941],[-101.90662741499989,21.028817545551647],[-101.9052547385013,21.023074144119676],[-101.90593653853284,21.014283946698527],[-101.90552824602821,21.01190501441289],[-101.90743724485799,21.008345405129262],[-101.90933032422282,21.001789855076936],[-101.90874633192777,20.9985850652468],[-101.91209735260497,20.995414003040594],[-101.91266624452476,20.993277582278154],[-101.91663057084372,20.98975510730935],[-101.92081027241767,20.983964489988807],[-101.92470599019845,20.98323669732997],[-101.92446247987402,20.978553818927935],[-101.92569869337945,20.977977529675854],[-101.92370259435472,20.972120796815034],[-101.92537978907399,20.969990378143336],[-101.93138859971867,20.967114904320226],[-101.93106793836284,20.963215496114117],[-101.9347813218414,20.960470153378935],[-101.9337344544029,20.956961232330457],[-101.93714437330868,20.955800862974627],[-101.93811721991455,20.951019027618145],[-101.93914323921393,20.95023576933005],[-101.93783961596557,20.94565652140824],[-101.93947163587029,20.94247942259807],[-101.93819293414168,20.94028802970547],[-101.93716278290327,20.934795845299902],[-101.93839586853835,20.93412460831337],[-101.93894975800299,20.93061424820695],[-101.9420880073535,20.928100278373392],[-101.94487364325187,20.930315174235886],[-101.9578765695108,20.935200835058424],[-101.96310031037433,20.922518026923],[-101.96383745851784,20.92367891642607],[-101.97004340867124,20.92339123928423],[-101.97971695286634,20.9248461934082],[-101.98056009028232,20.921703905489608],[-101.97993644617424,20.916447464060127],[-101.98206723236439,20.91395686950625],[-101.98800544013761,20.91274675146775],[-101.98915135047173,20.910171537685073],[-101.99231435350873,20.909415744066962],[-101.99456079927847,20.905366221283373],[-101.9990056031167,20.90179265981726],[-101.99895828241893,20.899788666981976],[-102.00330826214605,20.89767363848614],[-102.00433806371825,20.892032287753125],[-102.00768775240397,20.88616477988188],[-102.00963523853898,20.884508096939953],[-102.01515247712103,20.882535017098405],[-102.01799410630963,20.883284698324474],[-102.0161301230936,20.878276367971353],[-102.01257981167663,20.878343848673637],[-102.01527431243,20.874566270251307],[-102.01498567003244,20.869458791452303],[-102.01822267716415,20.866927496125697],[-102.02146981134052,20.862465998426956],[-102.02666054893308,20.859207150072564],[-102.03030485358892,20.855377889612726],[-102.03440513476812,20.85250443633265],[-102.03587123899166,20.849427142432944],[-102.0385850084798,20.84735233620546],[-102.04198385647317,20.846117213513878],[-102.04446443061437,20.84743191072846],[-102.04675927891242,20.846750527693644],[-102.04944670721011,20.847958282181708],[-102.05293274961195,20.84756473934499],[-102.05739647331598,20.843588207516916],[-102.06288716582242,20.84186390346838],[-102.06421378375035,20.83831150597223],[-102.06987648923797,20.839091118141198],[-102.07367789256483,20.83792425471097],[-102.07345314079788,20.836314142734068],[-102.07690167304247,20.834178337172148],[-102.07626165093143,20.831327894887636],[-102.07794546392381,20.831412113944737],[-102.08002002375292,20.828392313646248],[-102.07739048764705,20.82471002943089],[-102.0761937252608,20.819386271576775],[-102.07772081442329,20.81558906183693],[-102.07685973691179,20.811772481194623],[-102.07861427363099,20.807561224695007],[-102.08122836866403,20.805919895372597],[-102.07994507041559,20.801787065346502],[-102.08249911186567,20.80023588515013],[-102.08563932974408,20.800071777497294],[-102.08709189090564,20.80146052887875],[-102.09029005684567,20.796264307309286],[-102.0897595068513,20.791600169284322],[-102.09225246652443,20.789825763441115],[-102.09380210927407,20.78571615899625],[-102.09582672173673,20.782856886085938],[-102.09456375258083,20.781408982999608],[-102.09590838638087,20.780050516463007],[-102.09019226703884,20.780516212444695],[-102.09085010378413,20.77849534949428],[-102.0865981950534,20.77896034481512],[-102.08252659406946,20.77717620953115],[-102.08147819528324,20.7754431646257],[-102.08139020109178,20.77184477427113],[-102.079011905458,20.774027285935176],[-102.07836014727172,20.771844862846876],[-102.07606791111414,20.772171742065666],[-102.0738618983795,20.774817869798426],[-102.07362441687411,20.77677055042767],[-102.07070165318493,20.773567427589057],[-102.06759263263643,20.77224743706506],[-102.06667235468296,20.767715399462134],[-102.06563888645633,20.76675579571753],[-102.0694109008598,20.76312550353458],[-102.07239971054986,20.759183629237384],[-102.07220049933744,20.757295151402843],[-102.07363331985277,20.74875953442165],[-102.07012885185446,20.749151629271523],[-102.06690480671296,20.747533570650262],[-102.06562999855265,20.748741985832737],[-102.06103964408811,20.748516571041534],[-102.06079558376462,20.743814981981245],[-102.06448730235536,20.73874961011012],[-102.06137676911663,20.737054612697875],[-102.05558464432698,20.73743382605386],[-102.04354458571652,20.73741604066754],[-102.04220646500477,20.74030737400045],[-102.03670300368941,20.74265937851783],[-102.03446088450141,20.74213940479757],[-102.03491150391437,20.739554055224232],[-102.03424622263935,20.73547634706],[-102.03639976673696,20.733849762208308],[-102.03926191542888,20.728278927302938],[-102.0381206955256,20.726225190428863],[-102.04037115971738,20.72324762056587],[-102.03906245315943,20.722051779024525],[-102.03748475218828,20.71730355771342],[-102.0311385389196,20.719683828257303],[-102.02743628910662,20.719749124383497],[-102.02247617521135,20.717667040135552],[-102.02029301051681,20.71863641338848],[-102.0143893756777,20.717063662003],[-102.01248978390623,20.71392421844348],[-102.0123275229401,20.710707434971937],[-102.01497747599103,20.699618137853463],[-102.01874771210987,20.686318950958253],[-102.01768653275269,20.67947073236479],[-102.01909038824658,20.676184185900354],[-102.01556731131092,20.673463405993516],[-102.01407800202071,20.671191369353267],[-102.01551402376202,20.668524780410223],[-102.01383749148272,20.664441171967894],[-102.01041506657606,20.66401340963955],[-102.00707363197574,20.66075048276258],[-102.00226664151859,20.660477426467878],[-101.99712324110811,20.664706545554452],[-101.99528136201985,20.66155660562265],[-101.99302310159675,20.662387244757895],[-101.99038601249242,20.6608906027202],[-101.98194454704355,20.663326782696856],[-101.98137692631917,20.657529444968077],[-101.97729066649168,20.657810658133542],[-101.97719584446236,20.66006302905498],[-101.97373105773613,20.660660406004467],[-101.97375266204244,20.664318814593003],[-101.96807966175754,20.663641201030373],[-101.97016114800812,20.658473297859587],[-101.96990958575566,20.654321237612635],[-101.96853234061416,20.650912193181398],[-101.9690417982568,20.645850681780814],[-101.96791385944613,20.644622910279622],[-101.96948357912277,20.64139870710852],[-101.97144011690989,20.640541895508875],[-101.96898938333828,20.63740917604656],[-101.96413040803901,20.63893913515102],[-101.95919258637002,20.632303190229436],[-101.95707758040828,20.632642745786256],[-101.95555459133283,20.628745526318085],[-101.95800247399347,20.6266906231034],[-101.95780210706641,20.620415676774087],[-101.95608762822314,20.61914653971695],[-101.95830446267234,20.614384086863538],[-101.95873956606687,20.608791364002855],[-101.95483711073211,20.607845389862632],[-101.95250656462957,20.60929413882002],[-101.95129008598104,20.606775936953113],[-101.95383024694127,20.604338051082664],[-101.95686773267113,20.598991464348444],[-101.95788226781212,20.59846157489045],[-101.9585265786398,20.589121688406692],[-101.96027142234624,20.585316822613947],[-101.96703096414205,20.5793440934591],[-101.96656100974468,20.575128424844024],[-101.9629305210957,20.574368809199484],[-101.9628016398367,20.570242610613832],[-101.96989760715559,20.568810874414737],[-101.96892250433336,20.56213018889281],[-101.96933374974583,20.559083627188386],[-101.97501708233534,20.549828541696286],[-101.97391842192906,20.541788426846836],[-101.97624592088061,20.543415696856925],[-101.97835465242571,20.54316940639353],[-101.98028552649663,20.54099693600915],[-101.98358400062506,20.535295327662425],[-101.9872009055091,20.537053672586694],[-101.9884314034291,20.5396373226788],[-101.98751359723627,20.54195056050264],[-101.987912887361,20.545279804291567],[-101.99184094809641,20.54197245423478],[-101.99397237351127,20.544334013670095],[-101.99408518102996,20.54089434039929],[-101.99877782401302,20.541311077616967],[-101.9984879253879,20.545127478359063],[-102.003548288015,20.547249458159115],[-102.00402486455533,20.545263723996584],[-102.01119545571129,20.54498846293677],[-102.01414163122689,20.54259608640433],[-102.01353284791855,20.540088376572555],[-102.00866568868105,20.532628978281878],[-102.00976300871321,20.530963691226077],[-102.00962502974329,20.52733596004731],[-102.01258614834677,20.523696559628036],[-102.0138989580064,20.52358057016079],[-102.01674333453235,20.51924604770784],[-102.01878979193583,20.517757088441158],[-102.02077834405645,20.510231797810548],[-102.02065016649567,20.508174635725936],[-102.02233931641211,20.506652455850997],[-102.02552353127209,20.506108333949896],[-102.02657372274746,20.50114718994581],[-102.02860479383355,20.501356596746177],[-102.02910463388929,20.498115288242275],[-102.02819469555658,20.49654192572359],[-102.0333342964309,20.49509042608844],[-102.038747457412,20.491381421070628],[-102.03999103256103,20.488203487194255],[-102.04407324740481,20.48628928466104],[-102.04609032718116,20.481689436601073],[-102.04384958787142,20.47922440087001],[-102.04223311659291,20.4746706086014],[-102.04430756973136,20.47296252646555],[-102.04265919988416,20.468309033951755],[-102.04480325601571,20.463767322442834],[-102.04525546056675,20.458124741225106],[-102.0439088245866,20.45678536411151],[-102.04567874847521,20.454670151575215],[-102.04964817395444,20.45276420834813],[-102.05130350100092,20.454524871427623],[-102.05180802067326,20.452413310304735],[-102.05630135097232,20.452031158597265],[-102.05580087900881,20.448245807467686],[-102.05750183624241,20.445639905175483],[-102.06001702598155,20.444131717252844],[-102.06184063543071,20.444798100677758],[-102.06233196154164,20.441867069328396],[-102.06619964063941,20.440786516407456],[-102.06802278852842,20.43856270344827],[-102.06643721839669,20.436966630523045],[-102.06971802352001,20.433639419081203],[-102.07128112766401,20.433809237164212],[-102.07220666721093,20.4305376105018],[-102.07392771480386,20.428297740958442],[-102.07546271468516,20.428851780029447],[-102.076351577438,20.426430601490722],[-102.07424483264373,20.424426245151153],[-102.07934263279276,20.42138909827281],[-102.0783943710656,20.419607690331816],[-102.07574146305399,20.419243867710918],[-102.07628583036734,20.4164356107662],[-102.07496578068555,20.414599529641748],[-102.07134478217802,20.414465956955667],[-102.07110772849092,20.40891628568346],[-102.07735792282438,20.409328947258416],[-102.07869180416088,20.406668957794523],[-102.08079325729739,20.40711640107162],[-102.08049962472455,20.40404780834274],[-102.08453323547548,20.405009242470783],[-102.0846117497087,20.401633860791208],[-102.08574159696883,20.401745840889816],[-102.08620436513269,20.3964723381373],[-102.08850817455675,20.395265938995465],[-102.08731627137576,20.39399759487344],[-102.09141108969015,20.388819085166517],[-102.094489681016,20.389769615093314],[-102.09689916983251,20.38922025547646],[-102.09737065102257,20.387268231888925],[-102.09625445689693,20.38413126452764],[-102.09429695860678,20.383729665158285],[-102.08676942165943,20.38476046865503],[-102.08052609674377,20.380003332776425],[-102.073473311101,20.379173073954007],[-102.06932597686432,20.375404870417754],[-102.06503262747987,20.374921576384338],[-102.0603314545238,20.3769553822043],[-102.05582021046104,20.376990789622994],[-102.05288766874162,20.378544813775875],[-102.04404782480754,20.379358571653142],[-102.03758686074616,20.378535073661567],[-102.03429555556772,20.37888785447501],[-102.02699199221291,20.380921551816073],[-102.02200808252502,20.381205625499547],[-102.01925164538233,20.385105736084256],[-102.01865486393984,20.392581238674893],[-102.01670470476301,20.394435713112216],[-102.01328858123196,20.392979287364938],[-102.01371646636193,20.388812954068953],[-102.01016278685137,20.385332910100033],[-102.00987867017011,20.382777503099362],[-102.0114516386962,20.37855758713141],[-102.01790602017809,20.370898971860584],[-102.02291566447195,20.360046457353576],[-102.02330162279867,20.35365178807899],[-102.02507738738205,20.349342617515674],[-102.02363573688103,20.344316560898733],[-102.0176494933591,20.34233225603498],[-102.01655815474345,20.339377257287595],[-102.01720378292572,20.336084819433154],[-102.01489069500303,20.332154514341994],[-102.01584801787868,20.329639442972734],[-102.01379881281844,20.327930326016997],[-102.00771521543436,20.326586091601882],[-102.00603491940319,20.328253012710377],[-102.00490254227827,20.33306576658316],[-102.00633056659842,20.33568942610941],[-102.00953282430044,20.33822872528924],[-102.01029207433271,20.341088499514285],[-102.01383521951203,20.347910227579064],[-102.0124800948447,20.352143674350827],[-102.00873330156708,20.353561525169994],[-102.00272996764244,20.3535069862304],[-102.00315779262695,20.354451039776166],[-101.99940127359247,20.35471747981171],[-101.99891931063866,20.35675476271831],[-101.99694743879309,20.357353970229326],[-101.99639002563168,20.359643220849307],[-101.98994408990154,20.360789432373394],[-101.98087943378295,20.35856472122174],[-101.97458745575739,20.358237809047125],[-101.97157159142915,20.36000418701383],[-101.96779955072361,20.359288455772457],[-101.96668475344762,20.35312923377853],[-101.96409386376553,20.34986130157597],[-101.96274873318242,20.345271689543324],[-101.96155967301007,20.34434428845867],[-101.95769579668087,20.34476279384569],[-101.9513503297074,20.34430748507026],[-101.9458705031094,20.343126765251668],[-101.94471717382817,20.34212884764196],[-101.94404589103328,20.337957236385535],[-101.94722035081998,20.333333613634522],[-101.94808677405223,20.330250750150412],[-101.9515479802883,20.329345081773113],[-101.9556826744668,20.32662591513514],[-101.96299057029057,20.320098868143532],[-101.96308724298041,20.31810392621668],[-101.95895334323984,20.319553749957038],[-101.95703133051796,20.31783029479533],[-101.94895770817834,20.315107397238307],[-101.95001642139897,20.311480557004643],[-101.95357244713824,20.31293256000322],[-101.95626389930607,20.31293335811108],[-101.95607315420483,20.308308643953524],[-101.95838011805722,20.308037254833778],[-101.95991889468706,20.305135931431323],[-101.9523269022203,20.301415900296774],[-101.9510779631629,20.299873963595985],[-101.94954068000015,20.298422601868083],[-101.94588766142647,20.300234919730087],[-101.94290792780714,20.30068722387574],[-101.94060181457843,20.299235480019547],[-101.93493168165026,20.298054336079247],[-101.93531769300728,20.29479007507655],[-101.94021968395458,20.293975976893762],[-101.94271999797076,20.290531169316978],[-101.94704635578273,20.286633589271958],[-101.9453175354634,20.284003326092034],[-101.9423383505378,20.28400222512778],[-101.93858972651879,20.28536092048205],[-101.93724456904914,20.284725627845205],[-101.93686167913438,20.281461081033513],[-101.94147538670336,20.279468028123404],[-101.94676228719686,20.27584289093687],[-101.9474356350031,20.274120265853412],[-101.95079964464071,20.272307858568695],[-101.95108841952896,20.270947803546164],[-101.94724482211706,20.270583812098323],[-101.9435947162246,20.267136800667004],[-101.94638397072748,20.26051846693656],[-101.94628918009982,20.257254113811655],[-101.9449448928574,20.25507742481267],[-101.9400101309709,20.25127594581511],[-101.9343786645403,20.249270028463457],[-101.93217164056455,20.243737910632603],[-101.93309155621131,20.24275504622335],[-101.936999335341,20.24268018478756],[-101.93841763735713,20.24072701127608],[-101.9363941853747,20.23685904505163],[-101.93900987713283,20.23265895402676],[-101.93987262623733,20.22708176076435],[-101.9364111980762,20.2255277783986],[-101.93254500908898,20.226286368354465],[-101.93187580332466,20.22296674696173],[-101.928611745902,20.21689939446736],[-101.93038383000885,20.21667602974992],[-101.92970179080942,20.211522233661356],[-101.93150843141223,20.20876165135047],[-101.92974800161454,20.20796349025983],[-101.9264255716538,20.212259597831746],[-101.92192880818806,20.215627184946868],[-101.91891254157133,20.218859715344024],[-101.91570204110565,20.219196785316683],[-101.90961335922253,20.216479189573533],[-101.90704595564114,20.2133048682943],[-101.90739304128749,20.208872265133152],[-101.9086816776321,20.207242317141663],[-101.90933799245215,20.203404586342003],[-101.91080206481053,20.203110162543965],[-101.91522171731344,20.206665806735487],[-101.91551870303454,20.204033731127538],[-101.9180682917364,20.20295046041548],[-101.91943938134705,20.19762896344281],[-101.91789727919996,20.195077325509146],[-101.91058247985279,20.193771151695216],[-101.90930911140708,20.194510463057213],[-101.90796755572637,20.20004606734915],[-101.90396628168537,20.202993912122395],[-101.90090021781629,20.202030896802626],[-101.89778499396317,20.204127917101744],[-101.8930219886991,20.20377723025274],[-101.89072755340516,20.202673175952896],[-101.88719315536844,20.198375347320678],[-101.8858492710292,20.194034236303537],[-101.8877503366445,20.19238329144963],[-101.88811400085666,20.188393341992935],[-101.88419140489731,20.190146788103732],[-101.88221991094053,20.18822360958262],[-101.880048743918,20.188477983401697],[-101.8783360545396,20.191435959911644],[-101.87998568115137,20.196883398159855],[-101.88134296470542,20.199053077476776],[-101.88048917166111,20.201497299992013],[-101.87476797189169,20.20199165414499],[-101.87202983961475,20.204429834076564],[-101.87130068766243,20.208058351101158],[-101.87194336462227,20.210707294738427],[-101.85838974216801,20.211444759029803],[-101.85459574392047,20.212710305739904],[-101.84954129310381,20.217652366841776],[-101.84423989956747,20.219333437366174],[-101.84215624606344,20.220907627728764],[-101.83479842772368,20.224696931368896],[-101.83224882704161,20.22448337783368],[-101.82892667150116,20.221558244660287],[-101.82990379606093,20.21962985862683],[-101.8276815501826,20.214137410007027],[-101.82091602775603,20.21012106519794],[-101.81925686460607,20.207619738758467],[-101.82142186530933,20.20474276629784],[-101.82473086876286,20.203877973793908],[-101.82486071616626,20.20183759307764],[-101.81681925959072,20.201803428110964],[-101.80911682180954,20.20438020187737],[-101.80807401255726,20.208143881308274],[-101.80448833673245,20.21355000291129],[-101.80226579441864,20.21438781608532],[-101.80124026473379,20.21195914524577],[-101.79933426636319,20.210914666063843],[-101.79740519696486,20.211868566985686],[-101.79406883271787,20.215937747357884],[-101.78661568055742,20.219318449132913],[-101.784018427082,20.21787142272899],[-101.78464671684048,20.214455704610884],[-101.78304697008292,20.211361551138054],[-101.78037323702131,20.2101395726948],[-101.77836882567976,20.21156665448052],[-101.76791271014042,20.204613623979128],[-101.7644395476429,20.204539690074114],[-101.76040581125727,20.20186254498111],[-101.75845662327299,20.202096028424535],[-101.75775730544552,20.204406851895044],[-101.75221266440218,20.20369576012007],[-101.74877442291864,20.20491592623648],[-101.74351491978075,20.203912389761967],[-101.74276359784028,20.20677911540514],[-101.73733211903232,20.207988351814436],[-101.73271578938477,20.210676284344856],[-101.7318682530863,20.214454732108948],[-101.73036838199243,20.214463281152234],[-101.72723705842867,20.211450027344142],[-101.72637706296928,20.205903326679163],[-101.72306416772955,20.206002056644138],[-101.72079826225536,20.20491933425683],[-101.71586907336905,20.20435770198742],[-101.71359167974737,20.205780118847144],[-101.71062161701252,20.20530598744773],[-101.70602825367473,20.200594328176976],[-101.70426167001449,20.19461604175217],[-101.70387078511271,20.190439600313255],[-101.70183848334148,20.189208093441664],[-101.6979348959344,20.189674374269146],[-101.69380000876441,20.191957388021024],[-101.69039407024286,20.196816981600136],[-101.68981799910881,20.200873663892253],[-101.69269395785773,20.207279097465687],[-101.6894215205491,20.20965071265789],[-101.68945611000635,20.2134677058271],[-101.68547885601356,20.21846100806829],[-101.67659261535567,20.218537781123075],[-101.67514450659547,20.217358084407067],[-101.67311882141763,20.21255530821628],[-101.66847437048563,20.213135141009104],[-101.66564334249216,20.21638404908981],[-101.66921118371329,20.21886586350655],[-101.66731134229906,20.22255890218139],[-101.66794072368032,20.226315647394983],[-101.66725430367165,20.228083690779556],[-101.66364423979047,20.231737221102662],[-101.6633080155695,20.23757997750897],[-101.6597038580947,20.23976738325706],[-101.65821809266447,20.241838260178554],[-101.6540519156942,20.243299863304742],[-101.65244302173562,20.23958665143573],[-101.64886841995065,20.239778267835277],[-101.64625232871583,20.23866804435397],[-101.64401954501284,20.243559590142468],[-101.64401681428251,20.24716570127822],[-101.64600823983636,20.24999901522898],[-101.64802983346095,20.250427058561854],[-101.65084749799439,20.252897242720394],[-101.64677249799917,20.26006335868908],[-101.64356296690028,20.261898474572547],[-101.64380042793795,20.265658458613245],[-101.64207369582311,20.267879986250648],[-101.63883772818747,20.26581577995927],[-101.63776509912475,20.26880415326133],[-101.63537880680076,20.27091258429641],[-101.63235329662558,20.269504353124546],[-101.63252379586459,20.265628890945834],[-101.62839768268731,20.264772908001248],[-101.62553400746458,20.266997687432138],[-101.62567209922923,20.269748056535263],[-101.62382298014217,20.27360530513738],[-101.62396913928188,20.276108361357274],[-101.62887521992025,20.28193324288833],[-101.63230614480182,20.2839747799934],[-101.6346533812071,20.287731473094027],[-101.63435208090169,20.290253626466892],[-101.62842845062067,20.295923672963795],[-101.6292238355021,20.29868394889428],[-101.6257923038088,20.305605212322234],[-101.62726582967412,20.307359279061416],[-101.62685996303878,20.31149653232029],[-101.62465427483295,20.31458038721479],[-101.61992744238347,20.31550330588675],[-101.61777549624708,20.31240320895381],[-101.61479438875415,20.311732760224913],[-101.61127087093973,20.31272450205472],[-101.6085234507031,20.30974689692283],[-101.60451074695237,20.308940851656757],[-101.60588985144,20.302696674203446],[-101.60567908039707,20.299770694192432],[-101.60399559791,20.298035044182598],[-101.60027996593584,20.298417709947273],[-101.60043511107472,20.30344090777902],[-101.59928641638379,20.3070668987487],[-101.60066647222823,20.31037381902661],[-101.59708877767304,20.311669374725227],[-101.58975772988447,20.309340407163518],[-101.58881095995793,20.313345439941827],[-101.58444241280057,20.316721730779477],[-101.58421278247852,20.32574842361072],[-101.5835905460981,20.32718213056461],[-101.58054545540887,20.327133988392916],[-101.57688670531417,20.32552134704906],[-101.5757432795395,20.32132439871907],[-101.57160587367258,20.320712879207747],[-101.57079824634536,20.315937802671613],[-101.56785235253824,20.316791100403464],[-101.56656680540146,20.31568051563727],[-101.56448669120022,20.31700413056444],[-101.56123100141582,20.316982443241216],[-101.56350922459723,20.319645788680702],[-101.56329097927227,20.32135010645578],[-101.56056522595065,20.323033733551654],[-101.55986493782547,20.324977532798528],[-101.55565729032651,20.328508728094164],[-101.55402827414883,20.332196857752024],[-101.55063067240559,20.332451354679222],[-101.5473108107131,20.330429426115074],[-101.54100503311821,20.328724668242273],[-101.53781033594561,20.32437525326509],[-101.53442779218602,20.326901498139023],[-101.53308419260765,20.329772115510025],[-101.5293916827847,20.332587363118932],[-101.5229360927562,20.33234695648622],[-101.5218914313445,20.3275333599355],[-101.52370592454633,20.324516511856416],[-101.52415645772004,20.321230833010645],[-101.52066975852819,20.32084475163788],[-101.51713185791306,20.31792140939052],[-101.5104755066846,20.31891430760834],[-101.50697643355426,20.324457107505282],[-101.50230782834632,20.324497839873345],[-101.50136667947743,20.321423626154],[-101.50450343986,20.318950305578312],[-101.50310278301589,20.31713796357792],[-101.50324010183692,20.314700406113445],[-101.50186521473114,20.312025840054503],[-101.49324158147346,20.314005549580372],[-101.49237993004493,20.316700425058173],[-101.48811329544952,20.32205707034268],[-101.48531847964745,20.32372494094875],[-101.48111187123999,20.329670551251525],[-101.47924162589942,20.330572828468746],[-101.47470720619026,20.33040419050502],[-101.47212255243198,20.33116348124571],[-101.46530793693677,20.32914578232169],[-101.4630543848329,20.327928126191466],[-101.45682304138307,20.31926509116863],[-101.45547037049647,20.32016427344496],[-101.45126727540327,20.31906519689113],[-101.45154301134465,20.317838918945256],[-101.45459017837828,20.31816490525199],[-101.45545737043625,20.314340046869802],[-101.45669661241072,20.304370481302954],[-101.45047053124301,20.30505448441062],[-101.45035756369418,20.304240911344436],[-101.44377323363761,20.305430245727962],[-101.44019704439074,20.305192818523494],[-101.44039337779196,20.30352634262988],[-101.44972296600537,20.298228917060158],[-101.4481998192133,20.29647226745095],[-101.44455369787494,20.295101759627073],[-101.4449846395699,20.289725424980475],[-101.4482644143041,20.28958148572741],[-101.44925417881836,20.287482166355574],[-101.45717072446644,20.28514208468772],[-101.45837179672259,20.27602089887381],[-101.45443457279731,20.275164736197212],[-101.45625733695721,20.2739248923055],[-101.4565740792105,20.271172739589304],[-101.45896853594525,20.270197912324875],[-101.45593046076448,20.267169682398332],[-101.44892187225821,20.26528194471001],[-101.44610618170685,20.26391237875606],[-101.43685730238718,20.263785317237193],[-101.43708164959867,20.26826181198311],[-101.43548211224311,20.277380830511333],[-101.43001743924685,20.276129486651882],[-101.42514735154515,20.27609300983704],[-101.41969606102305,20.274444088115217],[-101.41965373271694,20.271541615184617],[-101.41819526777948,20.26813002415605],[-101.41559131132982,20.264758732159578],[-101.40647732720402,20.26363075833234],[-101.4031345312851,20.26011192983424],[-101.39936243208649,20.253341059660727],[-101.39745499890375,20.252308871588298],[-101.39532438212802,20.248549337483666],[-101.37180362464926,20.249124926108777],[-101.36051948215925,20.249055735573506],[-101.36105127803671,20.246308236330833],[-101.35820913184978,20.241890529143575],[-101.3532303046423,20.23732497323317],[-101.35285524165698,20.233989905249246],[-101.3631981764816,20.19579441130486],[-101.36999951674636,20.196563058214906],[-101.38539434140932,20.19995767752249],[-101.38798805669802,20.201328224565657],[-101.40560172270989,20.20332298171496],[-101.41177923779026,20.203341637531594],[-101.41989112653675,20.20159058492891],[-101.4216350925264,20.18323731063498],[-101.42253832770263,20.171442346285403],[-101.42368902495605,20.169890698149743],[-101.42249824941291,20.16322631647887],[-101.41809382099837,20.16277743151005],[-101.415225643501,20.159370887719888],[-101.41618220080267,20.1589626082652],[-101.41443259808909,20.156132695669385],[-101.40975095745279,20.151983829344772],[-101.40906148351758,20.15228772106491],[-101.40592004685487,20.143911335257542],[-101.40195612777268,20.14146641595636],[-101.39663620701015,20.142216384466792],[-101.39237495055607,20.144028921378776],[-101.38998950149039,20.137193004182393],[-101.38918492695177,20.130347988887365],[-101.39100772313907,20.12712071710814],[-101.39560717664301,20.128418892142292],[-101.4045135259338,20.126868751706354],[-101.40868904529793,20.123133827944798],[-101.40524229785149,20.105836832620753],[-101.40738028063703,20.10570638651052],[-101.40834195789478,20.102632646155655],[-101.40324918535435,20.100156322582393],[-101.4055222219639,20.09761992766397],[-101.40470118465055,20.096661534683676],[-101.4042715448906,20.087566389990513],[-101.40469588622545,20.080195181504394],[-101.39883853113082,20.081312853197176],[-101.39728777230283,20.082410224710316],[-101.39231462401159,20.083307578424524],[-101.38751314870393,20.08296124339006],[-101.3889458490878,20.0784922195445],[-101.39217872780273,20.077195773264407],[-101.39389844325882,20.07501317523213],[-101.3954466794226,20.069959822124247],[-101.39610796841606,20.065397685674327],[-101.3951003253373,20.062214393410386],[-101.39583583269922,20.060797855624457],[-101.3942777770813,20.05291182212767],[-101.39641842371992,20.050627606557214],[-101.40260805110859,20.047030463792396],[-101.40168027650276,20.035009052435726],[-101.39971945080651,20.036319440389605],[-101.39764117705948,20.0341390052086],[-101.39199423463282,20.033840914543703],[-101.38813622048866,20.03040987696255],[-101.38171240958121,20.03351833208893],[-101.37494653161139,20.040428869178527],[-101.37043436626954,20.036640588030878],[-101.36593046922098,20.036017745754805],[-101.36322937141392,20.03760202073323],[-101.35843115806915,20.0385824078233],[-101.3540720289443,20.038398465032913],[-101.3513400227526,20.034375185562794],[-101.34820738997757,20.03211117890811],[-101.33980115728667,20.031780836631356],[-101.33726385309313,20.032779977966186],[-101.33403925342611,20.031522759752363],[-101.3267107971675,20.032062110485015],[-101.32137182659187,20.033166476712097],[-101.31647507083875,20.037424389821297],[-101.30875625870237,20.036248283799466],[-101.30682775879956,20.03772510118074],[-101.29645952191595,20.03864479304883],[-101.29486987988201,20.038125396486294],[-101.28316977995667,20.030713047000233],[-101.2809721829421,20.02754405455454],[-101.27723801420785,20.029236650737573],[-101.2708557693644,20.031105946360583],[-101.26106721055572,20.03241112589319],[-101.25670843123868,20.034844955762082],[-101.25303053558531,20.03549607928852],[-101.2527402961565,20.03361466582777],[-101.24996608494712,20.028419851173226],[-101.25076555151401,20.02326402908858],[-101.24725688385325,20.025830565606668],[-101.24723381982511,20.02773825251893],[-101.23834597524916,20.032118558227637],[-101.23035703121849,20.02726603139149],[-101.22998834594864,20.022936436916552],[-101.22628637959036,20.01948622637724],[-101.2209414609095,20.012387006228778],[-101.22072632948453,20.011436274121877],[-101.21347622492027,20.010808509901324],[-101.20305551404209,20.00722415671231],[-101.20153182253966,20.025738551188738],[-101.19628173191387,20.024861485618487],[-101.19131284335157,20.027283185834165],[-101.18694097106447,20.027571838196252],[-101.18229477147929,20.026861077566707],[-101.17931916963511,20.029571011975122],[-101.160351505888,20.040200150906117],[-101.15995033913839,20.041930610459872],[-101.16390083031956,20.045918006440047],[-101.16711051085792,20.045383690517667],[-101.166611730863,20.042468299243524],[-101.16933986545092,20.045764928032156],[-101.17683000580911,20.050568321574758],[-101.18269368232018,20.053274498279393],[-101.19631845492057,20.057188551028105],[-101.18157433390769,20.06118710718829],[-101.1766829614844,20.064508311698262],[-101.1740143816549,20.072104846197817],[-101.17161977001456,20.073451725011296],[-101.17088614061794,20.075695787330517],[-101.17362836426054,20.07624363763307],[-101.1696576069508,20.082303550813435],[-101.17051472948003,20.084617907651307],[-101.17263377279681,20.084940064792477],[-101.17370094915356,20.09171261668689],[-101.17563299679188,20.095915262013534],[-101.17359046419779,20.097827501849167],[-101.17111710080076,20.09397957360858],[-101.1664059053598,20.091235870591277],[-101.16519110556374,20.087162969362055],[-101.15854886344334,20.08688066225102],[-101.15660741999164,20.08381001225365],[-101.15437110079034,20.085029667505808],[-101.15372956340349,20.083835007234484],[-101.13314706671088,20.05998465381208],[-101.12605372444176,20.064350440966678],[-101.11948142284626,20.07102174394089],[-101.1196890441721,20.07352858140399],[-101.11751881429024,20.07327281743096],[-101.11757530272695,20.074911849737475],[-101.11496562727734,20.075044679703012],[-101.11392208270507,20.07723329146893],[-101.11054361075236,20.076043579047052],[-101.1057453453272,20.0774521179315],[-101.09900701415586,20.0807938911816],[-101.09427718350679,20.082038837689993],[-101.07996785991156,20.082816053554097],[-101.078836725587,20.08508610166126],[-101.07485961782777,20.088388181149185],[-101.07195023078413,20.08891704083925],[-101.0536695235661,20.09052530198113],[-101.05104297315933,20.091130805734224],[-101.05081275766315,20.089791828180637],[-101.04741227034759,20.08984478182623],[-101.04290109376473,20.091954172406815],[-101.0403325822781,20.090631611017898],[-101.04008651772415,20.088978128514782],[-101.03525957457032,20.087335982011723],[-101.02813671196526,20.087913860845788],[-101.02579473693936,20.086635813539203],[-101.02135266284841,20.086944748582425],[-101.01727794691112,20.085695224752953],[-101.0091660294595,20.079534049865003],[-101.00079152108748,20.071606268813298],[-100.99271515850586,20.06448966706097],[-100.99400796725683,20.06314737955421],[-100.99840748087763,20.061441718205856],[-101.00448489779353,20.056051393177427],[-101.00923954319086,20.05005700216185],[-101.01398656957616,20.045711285405787],[-101.01360963423332,20.040557624391738],[-101.01270153943688,20.037758121791],[-101.00840608759563,20.03694999000055],[-101.00356662271793,20.03796399287137],[-101.00513615479406,20.034927015553365],[-101.00436655592051,20.03032018152942],[-101.00808917967618,20.028093184458385],[-101.00279138605384,20.02838045861148],[-100.99758727334114,20.02558778913823],[-100.99407198785354,20.02712059025481],[-100.98974778893444,20.027333223154756],[-100.98081904379069,20.023449961880942],[-100.97817626078444,20.016729192163154],[-100.97268491596407,20.013093977238327],[-100.9680646411793,20.011965232478815],[-100.96733467791273,20.009914339884006],[-100.96814686837979,20.006968579984573],[-100.97201310795566,20.003976599203554],[-100.97277972175385,20.002088947729305],[-100.97527156854767,20.00313919433205],[-100.98270078531664,20.00263064794234],[-100.98339967881651,19.996542047093442],[-100.98008872362516,19.995306242369793],[-100.97926926150387,19.993802889853384],[-100.98065551424662,19.98865673796621],[-100.9795285783344,19.98580580634882],[-100.97767768176755,19.985515663948775],[-100.97670925110043,19.98273844921465],[-100.98136655522097,19.98084446424508],[-100.98737452641808,19.979244380890407],[-100.99174781241612,19.975276283147366],[-100.99719861979491,19.972338958545322],[-100.99908665170528,19.969531480347314],[-101.00458282055251,19.966589825354674],[-101.00249019845307,19.965011012261414],[-101.00221563503521,19.961606300633605],[-101.00390588775451,19.956879367146314],[-101.00279458043957,19.95646502277293],[-101.00344269624742,19.953556268265288],[-101.00227569530176,19.95236325097335],[-100.99807098447656,19.954588761561638],[-100.99426824002796,19.954390030510126],[-100.98877188428071,19.95613872261822],[-100.983785796289,19.956716354754292],[-100.98079122962838,19.955221078340287],[-100.98190115067263,19.95301673486847],[-100.97936816283607,19.95291163503242],[-100.97780591725075,19.938648190821823],[-100.97661633693747,19.935338748538584],[-100.97184011182401,19.929976727675523],[-100.96441001132746,19.928274702178953],[-100.96107987610299,19.930051879031055],[-100.9571532952346,19.93109859323755],[-100.95485501269604,19.930807374917322],[-100.94787934913154,19.933563057591186],[-100.9470432126879,19.95026552147749],[-100.94753938693867,19.96254523233881],[-100.94165911190618,19.960229315322408],[-100.94163779571898,19.95952089323856],[-100.93562838900698,19.957191574739227],[-100.9325818866455,19.953490839133792],[-100.93073600875067,19.955967888096552],[-100.925113483279,19.957102808070033],[-100.92365157769319,19.958245310579514],[-100.91839339108492,19.95740107853385],[-100.91592281348971,19.957924551872964],[-100.91109821172762,19.961714472161702],[-100.90891088502889,19.962236963751593],[-100.90429610007055,19.961075061708755],[-100.90158591199935,19.959505830255353],[-100.89244418659842,19.95095945511588],[-100.8861738556671,19.94776511473964],[-100.88556851492399,19.94601548023553],[-100.88261279756716,19.94392626428737],[-100.87825714113046,19.944329661995482],[-100.87270385714709,19.94404651358343],[-100.86420101186638,19.946466012475128],[-100.86389022841382,19.948727730727285],[-100.86028595374506,19.948942970900703],[-100.8572129904914,19.946615764920068],[-100.8562322415736,19.94231198801276],[-100.85301287706443,19.94165094560367],[-100.85470802815087,19.93934642132257],[-100.85505236293142,19.93558224037838],[-100.85366611499262,19.934457504365128],[-100.84941753126947,19.935633825832724],[-100.84471160264667,19.934550731254433],[-100.83576183731668,19.93459642600567],[-100.83397495923111,19.947163564859522],[-100.830226818408,19.954134286986687],[-100.82996960035996,19.959722721688195],[-100.83128441064514,19.962685907279308],[-100.83286912313116,19.972395318496922],[-100.82995656526828,19.975420044986436],[-100.82430144917686,19.97832909945697],[-100.81894063502546,19.974057277012264],[-100.81238511301325,19.971388036284793],[-100.80921186544867,19.965810704276976],[-100.80220934410232,19.958340052363894],[-100.79206393855031,19.955574797403926],[-100.79066793343628,19.945431825010928],[-100.78923272594614,19.942972120004526],[-100.78368455443501,19.936078951969364],[-100.78293175227935,19.929917122690938],[-100.78086950541825,19.92398956162083],[-100.7811309082341,19.918899907927653],[-100.77881361241151,19.915149686246195],[-100.77420997664007,19.91540077312459],[-100.77199731276067,19.917924573653693],[-100.76696587617283,19.91722980336283],[-100.76516890439069,19.915838035205184],[-100.75350435810816,19.91712449169853],[-100.74875278670692,19.912750181322053],[-100.74714925189522,19.913069535768386],[-100.74018687609879,19.920943764743356],[-100.73874810076359,19.92394141606661],[-100.73280714508905,19.930619309171618],[-100.7188173567771,19.940519376916598],[-100.70847666371657,19.943055911364297],[-100.70429358026621,19.942767316795823],[-100.6980080755472,19.945237416787165],[-100.69496006475816,19.94767082508713],[-100.68064849819257,19.9504631481484],[-100.67651589399577,19.952979048980637],[-100.67181849042197,19.958524010470796],[-100.66038134025985,19.964548338805116],[-100.65380127070847,19.95969779224032],[-100.64886899459071,19.958001211109433],[-100.6411026087319,19.957238077570537],[-100.63698777886941,19.95775075660697],[-100.62941807682415,19.95777003516565],[-100.62063482697539,19.9569266470495],[-100.61757338637551,19.95769254722694],[-100.61603393375253,19.95963438625904],[-100.61168792082339,19.971942201801255],[-100.60551039477366,19.983014716660364],[-100.60189334657196,19.985893077165542],[-100.59925022064158,19.986615854418005],[-100.59852287695008,19.988300566116322],[-100.59433489251307,19.98981704732978],[-100.59560330186457,19.991662012095105],[-100.58295597817914,19.99195225101954],[-100.57671013725923,19.99306079229325],[-100.57031939401907,19.991931148852075],[-100.56319678575994,19.99139533829117],[-100.55789489380186,19.991715551491325],[-100.5567818563236,19.98529837234895],[-100.55897817466564,19.984569163997662],[-100.55858972434089,19.982875035534164],[-100.56229448453934,19.980321381657348],[-100.56301186830046,19.977626625192613],[-100.56669554604935,19.974129855735555],[-100.57115273428872,19.97537364831254],[-100.57546917993346,19.97569192623797],[-100.58062043763937,19.975040980197832],[-100.58759407881684,19.971390343438543],[-100.59267438784764,19.966467354152428],[-100.59385607333166,19.963930892622045],[-100.59294679584832,19.96268846493541],[-100.59307574615195,19.958280371257104],[-100.5894675886803,19.956680972077606],[-100.58413906900608,19.959023687032925],[-100.58116053521792,19.957400096364836],[-100.5773365033649,19.9589983640048],[-100.57594751727237,19.96174834678783],[-100.57162881671582,19.964737336919484],[-100.56548168311838,19.96613932510229],[-100.5636942730527,19.965037238287607],[-100.5608050387633,19.959805089318593],[-100.5556619396163,19.957815934971222],[-100.55238050834834,19.957586893858377],[-100.54696244491203,19.96058258329765],[-100.54286206679365,19.961685788410477],[-100.54124946168508,19.964585205632375],[-100.53441586407757,19.968640427959883],[-100.53367503492854,19.970687065135223],[-100.53504084984019,19.97197443198371],[-100.54242837205072,19.972831213099596],[-100.54063118031627,19.974929284295683],[-100.53960665192903,19.9742069994806],[-100.533978932921,19.97482817327551],[-100.53182333602535,19.976394498791365],[-100.52820131421771,19.97425731398272],[-100.52740419034353,19.97203459366716],[-100.52677940650312,19.965760451652898],[-100.52821485461726,19.955906086685843],[-100.52927857488737,19.951720863633966],[-100.52897599471169,19.943555042708226],[-100.53002141728143,19.93925954556039],[-100.53472997559095,19.93628592695393],[-100.53408278343744,19.93238427090199],[-100.53600850216515,19.92300660104479],[-100.52929584878495,19.920220825873912],[-100.51994644571181,19.91882005072381],[-100.51972396599751,19.921680522908275],[-100.52075117305526,19.92549156596874],[-100.52184944445173,19.925875061323723],[-100.52058366463291,19.93073993973013],[-100.51746009806322,19.9365758802997],[-100.51600458269019,19.936606427311517],[-100.51570409397203,19.940454238574205],[-100.51183759417296,19.942221071246024],[-100.51042009592544,19.951754937182557],[-100.51040724640279,19.95553939524791],[-100.51176906159634,19.95719467431178],[-100.50895826681665,19.959416010771974],[-100.5055828624246,19.957943395556924],[-100.49818423063789,19.958043203435352],[-100.48899578423442,19.966208238224056],[-100.48379353234463,19.967317823813516],[-100.48326614011938,19.96850120818749],[-100.48011112154603,19.969016239561483],[-100.47359704028275,19.972334250359495],[-100.46998220535704,19.975562287201228],[-100.47064554503123,19.978738196849406],[-100.4694186881731,19.980247331900273],[-100.46601615778695,19.97890562753952],[-100.46158402629482,19.980195186059746],[-100.46252842932267,19.984346284275148],[-100.46534930908888,19.98661452491416],[-100.4627115110797,19.988497476152304],[-100.45385778370189,19.98516894870096],[-100.44967156273543,19.9826776029318],[-100.4444241024429,19.9832710012289],[-100.44358387137424,19.982284998486477],[-100.43591638637145,19.98313441359278],[-100.43123564605406,19.985174999010894],[-100.4278616447715,19.985402258807653],[-100.42478010503623,19.984082485917384],[-100.4203577652828,19.98561341252332],[-100.4140013573529,19.98572505345129],[-100.41061519597434,19.98744548986099],[-100.40501887733569,19.98383185076284],[-100.39934100339525,19.985283233225232],[-100.39116703397389,19.988248520569073],[-100.38682935308907,19.988906786138216],[-100.37070587172383,19.989134464955896],[-100.3629311171349,19.989861076924342],[-100.36996036813389,20.015662971215875],[-100.37040325413454,20.021265587102505],[-100.36947199452732,20.021718830568375],[-100.36470827764583,20.019708235944222],[-100.36194315474148,20.023848715455472],[-100.36050504193656,20.023960684665553],[-100.36074428759684,20.02042234393582],[-100.3592741375619,20.009742302587256],[-100.35496966560942,20.010119588003136],[-100.35438440043248,20.027790614434252],[-100.35637313391737,20.038219733716574],[-100.35870610359251,20.047739750585606],[-100.36057345119912,20.052131555715164],[-100.36204082194746,20.053436626826226],[-100.35976818175118,20.057489790626903],[-100.35826368308318,20.06491646178671],[-100.36725011948471,20.06748750593141],[-100.3685265053893,20.06855912011457],[-100.38975110672328,20.08082293119344],[-100.39493524472715,20.09417927222961],[-100.39712029271698,20.097123590003548],[-100.38529153889328,20.10450558403187],[-100.38846209104236,20.114164347353665],[-100.39151167204136,20.121033190316155],[-100.38360804224948,20.129146356030333],[-100.37969202021122,20.13066562421841],[-100.370886933083,20.13618542117092],[-100.3698783337727,20.14666405234965],[-100.36651546078525,20.1536354215757],[-100.35989040047411,20.16433257623379],[-100.35892493162038,20.167221596188426],[-100.36077274583056,20.168683625725862],[-100.36099472540678,20.1728259613879],[-100.3588604622588,20.175281779581496],[-100.35480750515677,20.177686880914564],[-100.354034190285,20.180622270818333],[-100.35583668545803,20.182385932353327],[-100.34030835359039,20.18973660109799],[-100.34210662452608,20.194944450110086],[-100.34542092249524,20.196549423513886],[-100.34596965472787,20.200979908180102],[-100.34887629898657,20.20055900602341],[-100.35023729487153,20.199069151192646],[-100.35277519162258,20.20135930859891],[-100.35409704970726,20.209859412440892],[-100.35522526616086,20.211875491113062],[-100.3539285506057,20.214000473014607],[-100.35524455221815,20.21621530015267],[-100.35523670574287,20.21901836013268],[-100.3527168422442,20.221295206950117],[-100.35022113622199,20.22141243136622],[-100.3499588889494,20.2242472937736],[-100.34746769835647,20.22469440525498],[-100.3461420373851,20.22770366844776],[-100.34351801613002,20.228963727353516],[-100.34184854386393,20.232149243116282],[-100.34149857346159,20.239113180002676],[-100.33551528592841,20.24108121899326],[-100.33281062687172,20.24264900682175],[-100.33163087750086,20.245236511823464],[-100.32355837365674,20.251934021284285],[-100.32729999032779,20.257728449095453],[-100.32576305437794,20.2610203873449],[-100.32937807432779,20.26304958716304],[-100.33106781998896,20.266762830528762],[-100.33423186822614,20.26537417915017],[-100.33809901375139,20.26926997853036],[-100.3410780499683,20.273342448101857],[-100.344087729026,20.272944256394908],[-100.34741571322144,20.28047185735079],[-100.3475416686573,20.282399111351253],[-100.34585811105364,20.284442912122017],[-100.35065647013795,20.28841310037734],[-100.35743923199794,20.29219971096188],[-100.36300099602897,20.296383236738905],[-100.36982941433786,20.30263425134831],[-100.37918595762187,20.3019318830095],[-100.38604966723489,20.306493256186798],[-100.39202297691202,20.31432746710186],[-100.39236378222051,20.323210381536228],[-100.39078749150946,20.336413165811507],[-100.39186653478805,20.33739658616753],[-100.394016494006,20.35023191739475],[-100.39891969582607,20.35510841198294],[-100.40066729159622,20.358626997525903],[-100.4032732690577,20.36075058692552],[-100.40301064357038,20.36337631575202],[-100.40463646334155,20.364558854088784],[-100.40497130567638,20.367053024760196],[-100.40954335627094,20.37069189223797],[-100.40999519211118,20.37600640853293],[-100.41537034135001,20.37810219264435],[-100.42120386614664,20.378681332158635],[-100.42694847336003,20.381404490202954],[-100.43910260518646,20.385708824422125],[-100.44436237600951,20.387172446248712],[-100.45675156750303,20.386305188264714],[-100.46971468921492,20.387006353414108],[-100.47618106332789,20.389610795260296],[-100.47558527103484,20.392077632455596],[-100.47593160402613,20.40331414078969],[-100.47826992200947,20.416286369973534],[-100.48061690025685,20.419110732487184],[-100.48847680218188,20.425833308156655],[-100.48949800231975,20.431394102535364],[-100.48946000015667,20.44498286825268],[-100.48990049946167,20.453214164232065],[-100.48925155534732,20.456454842488313],[-100.48987438056105,20.461546308534935],[-100.48864969009236,20.471115999642564],[-100.4883836820199,20.473312680594006],[-100.49087783155164,20.47544739780824],[-100.49250285930754,20.481411419277435],[-100.4923821306894,20.490415544241444],[-100.49766366437473,20.49137309252353],[-100.49815495021289,20.49573695246113],[-100.50031214466856,20.500220123626093],[-100.4973571676901,20.50483040993049],[-100.50976128400151,20.506527389902658],[-100.50726474516222,20.508748508658755],[-100.50111136898465,20.512595737819595],[-100.501698719128,20.517149816013102],[-100.50315964121609,20.519665400718793],[-100.50774853361747,20.518524007126018],[-100.50852060732473,20.526209264000784],[-100.50742665265301,20.528822031367724],[-100.50509562475065,20.550194729260113],[-100.50476544504113,20.55503340329733],[-100.48500338084176,20.553804208698807],[-100.4838987030891,20.571440407424745],[-100.48211180714304,20.57144847652728],[-100.48221602827903,20.576356303343857],[-100.48464037534677,20.580111804283092],[-100.48753900270242,20.587946900253144],[-100.48639965042446,20.588319988561125],[-100.48877492888352,20.59404908777077],[-100.48968807613397,20.59817168542031],[-100.49117893130642,20.59876166601964],[-100.49350627231303,20.603969850170245],[-100.493999751204,20.60703466344131],[-100.49568028938836,20.609165217016653],[-100.49425467936555,20.61051021285209],[-100.4961774368274,20.61619373924134],[-100.49945025136338,20.617142259323032],[-100.5142794166178,20.623845877846406],[-100.51625003565795,20.6225678387857],[-100.51836174731386,20.625809234409076],[-100.52148632975013,20.624864292827567],[-100.52466391241813,20.62868518649998],[-100.52706934953278,20.629819519635475],[-100.5259690465557,20.630881988330373],[-100.52709424117131,20.6355062773672],[-100.52953527957936,20.63866726461106],[-100.53702957409445,20.63852590763304],[-100.53978651892874,20.63720373254347],[-100.55112518041659,20.633766040778255],[-100.55165319452931,20.634513345772632],[-100.5553245184397,20.64907915599389],[-100.56193062400911,20.671427780264025],[-100.56975032304814,20.671349024508515],[-100.57395929935763,20.67206605337327],[-100.5823065961963,20.67682114644134],[-100.58360348861669,20.678424260486054],[-100.58415185517714,20.682923614473964],[-100.58233510727143,20.688475416364327],[-100.58077592642138,20.68977941962794],[-100.58128445740704,20.69293263501396],[-100.58840188217368,20.705656625990002],[-100.59018562411558,20.710693724308044],[-100.59281627236368,20.71315850432137],[-100.59321022999012,20.71513425176454],[-100.59653571444977,20.71726091917344],[-100.59583316952921,20.71815973725245],[-100.58828481194479,20.7224104570995],[-100.58580429425444,20.726058619593516],[-100.58554632323256,20.72812964711352],[-100.58292417543879,20.72952245313479],[-100.56882343611562,20.73281623892325],[-100.55580573330496,20.734682316007024],[-100.54891461742875,20.736383416758144],[-100.54812107407514,20.749560872360405],[-100.5541835069726,20.756184087849306],[-100.55946797286174,20.76259131122447],[-100.56289449172755,20.768547061102993],[-100.56407730566411,20.77469686975644],[-100.55904309399409,20.799777293397085],[-100.55832829431858,20.804571153951827],[-100.57070538559799,20.805863340455574],[-100.57336444237262,20.803674174389016],[-100.57393707828061,20.805280803195217],[-100.57781484362357,20.808444523274716],[-100.57668849802565,20.81358960317783],[-100.57758894175987,20.81666975363146],[-100.57545604116297,20.81842011800967],[-100.57113072758943,20.81963040181637],[-100.56901123747951,20.82142689965093],[-100.56628310452538,20.820810398957462],[-100.55933222222035,20.829914671527604],[-100.54036581530727,20.836562874821595],[-100.53184905024216,20.84022458293572],[-100.52547283410735,20.843975369426573],[-100.52495754133213,20.84498479857109],[-100.51719380407167,20.84704619235299],[-100.5020486225726,20.852920462278746],[-100.50250011475481,20.855217391148642],[-100.50728661847415,20.86953822321567],[-100.50902352357718,20.870706706203407],[-100.50273628467988,20.87552050076863],[-100.49573568476183,20.886270301357513],[-100.4922891613607,20.89261563333173],[-100.49158726845968,20.896189877573818],[-100.48820615899723,20.899689922346],[-100.48499610127698,20.900784720201216],[-100.4853667702738,20.908799715733778],[-100.47945302924609,20.90906127301929],[-100.4699582976898,20.90703935243988],[-100.47002869730358,20.90770199972394],[-100.47223286994034,20.92844606177033],[-100.46654973895863,20.926877545955335],[-100.46591904783537,20.925342046828916],[-100.46098532769577,20.92331749706375],[-100.45317647961554,20.92319905028603],[-100.45312889662517,20.919584205793683],[-100.45395601259742,20.900179384525416],[-100.43266396096806,20.893279988211248],[-100.42452512101812,20.891539991297577],[-100.41279144684319,20.88780699593923],[-100.40845491679198,20.88824128818976],[-100.3944153094127,20.8921669577353],[-100.38132375647297,20.890483682075114],[-100.36274113753467,20.891401245961674],[-100.36312191271219,20.89051677210375],[-100.3559570234192,20.89045753181432],[-100.35478918002195,20.89113741366168],[-100.3335853718134,20.890728370195006],[-100.31401638345102,20.904774910952028],[-100.3001877816551,20.91386493630631],[-100.29839429992779,20.91529172335646],[-100.30369088110893,20.91954792615553],[-100.30537822120198,20.923826831829047],[-100.30419502068156,20.928319931721887],[-100.29920917203282,20.931327756439202],[-100.26554323514733,20.929247382598874],[-100.26265398670034,20.93348754769295],[-100.26337058998536,20.94928031166222],[-100.26179669656955,20.953373079836183],[-100.26334175252634,20.955015595217162],[-100.26786904685724,20.95743766214889],[-100.2720610904492,20.963029467558897],[-100.27064109392256,20.963851376265325],[-100.26913305012852,20.967212463270982],[-100.26362329981254,20.970998839676838],[-100.25930255939107,20.968173091393794],[-100.25422393542027,20.967482105966212],[-100.25052263173302,20.96519867575148],[-100.23932628398762,20.96079770728187],[-100.21359236733332,20.944073929784054],[-100.20088777695929,20.93701240579611],[-100.1878111398704,20.93254755778446],[-100.18420437460748,20.933177051082453],[-100.1844839523356,20.931411326219973],[-100.18152760170904,20.930401665257648],[-100.18125733306539,20.933406042474928],[-100.17837007946332,20.93866507326851],[-100.13531185108036,20.937263830511995],[-100.13442159028637,20.934813616896747],[-100.12879455919119,20.93441609283292],[-100.12695979737731,20.928067514787244],[-100.12432564365383,20.92747330814018],[-100.11782777840858,20.922155116322926],[-100.09273789644863,20.931681238350848],[-100.0641719401753,20.936288596098052],[-100.06689968730632,20.94220093235117],[-100.07206091415765,20.944778689249972],[-100.07456040013193,20.94812299055468],[-100.07792929765367,20.948033885817892],[-100.08073849553432,20.949857512961273],[-100.06880277376484,20.957912009872132],[-100.06904086979779,20.962906431094495],[-100.06981365183731,20.96478557613301],[-100.07623148677573,20.971407011699398],[-100.07804317358324,20.972657469756143],[-100.07643029363817,20.978063355569816],[-100.06984423965287,20.983802167839315],[-100.07318067875752,20.987677777468605],[-100.07393293023267,20.98973939182747],[-100.07281149827844,20.99320143172099],[-100.07142176118708,20.99233015134962],[-100.06425637787737,21.0004444257396],[-100.06074631523353,21.005815789106464],[-100.06242186494052,21.007880720914272],[-100.06239513706078,21.010662277651022],[-100.06454054286678,21.01355635207716],[-100.0642866464492,21.01561888256009],[-100.0656361686859,21.01838123269789],[-100.06864971653596,21.020176672047967],[-100.06894972526999,21.022813406335047],[-100.06425595267092,21.027149404358795],[-100.06122841911497,21.028521488275487],[-100.0544801235161,21.02778507645263],[-100.05402257542443,21.026442905497277],[-100.04848957810447,21.023193024197894],[-100.04842852940078,21.024961418988482],[-100.04063252014004,21.022212347238167],[-100.0290623784897,21.015063679648563],[-100.02256316173975,21.014621200979207],[-100.01862539730132,21.017582538673196],[-100.01656261057803,21.023463042978562],[-100.01106956262072,21.028504632453007],[-100.01219974364648,21.03596031140063],[-100.01111460070672,21.036841892483267],[-100.01086960821385,21.04305078474988],[-100.00881061709242,21.04371242262806],[-100.00665758387669,21.04639446775434],[-100.01574096707742,21.05164821545577],[-100.01976521037813,21.05512953074816],[-100.02007413563558,21.05979563940582],[-100.02168258639892,21.060905916848412],[-100.02031346196094,21.064001972406516],[-100.02549411953987,21.071270422540692],[-100.02629880413207,21.074045074421576],[-100.02331786504777,21.078047507271776],[-100.0247339682021,21.082838579165127],[-100.02375814991876,21.085229680730947],[-100.02360621434536,21.08920922890178],[-100.021916778645,21.093003162158425],[-100.02187762886274,21.100084447103143],[-100.02754307026089,21.100253018517208],[-100.02469013411934,21.10646307979823],[-100.02450315434811,21.10946301074472],[-100.02077812694307,21.113831936385566],[-100.01996781666838,21.1188097239517],[-100.01677119526266,21.12302709311956],[-100.01570116919919,21.126301387441288],[-100.01574068720777,21.129530654635687],[-100.01385503082321,21.131703586236256],[-100.01341913798194,21.1367573124636],[-100.01015147585713,21.145320564774067],[-100.0083723407048,21.14837494131575],[-100.00874085843401,21.15110973058796],[-100.00685203686089,21.15724860002814],[-100.00327892889129,21.157164228388353],[-100.00333125162388,21.15953502762261],[-100.00590868657042,21.16110824507581],[-100.00238743723207,21.168696579230982],[-100.00410744852155,21.1736626969157],[-99.99878847444108,21.18050019105459],[-99.99641765408609,21.18259490284811],[-100.0012218418816,21.188524074312454],[-100.0110857333795,21.189464339379015],[-99.98636804630905,21.218310032462227],[-99.97858259815115,21.215972913142252],[-99.94786483455903,21.212374933391857],[-99.95509973669579,21.207058782850424],[-99.95471412447097,21.20567181416419],[-99.94902653611342,21.210124867301772],[-99.94630825972882,21.210296165465024],[-99.94472905959339,21.208827250383877],[-99.9445536040106,21.199870146026115],[-99.94321813456827,21.195256376343195],[-99.94091535941158,21.19376508963552],[-99.93148441833551,21.191919020734076],[-99.9295162716021,21.190745821265295],[-99.92199296217677,21.1905181955442],[-99.89934718081003,21.1838972933877],[-99.89521443404345,21.17757923859085],[-99.88860518434774,21.173787166233183],[-99.88825095964023,21.169595020265263],[-99.8852881841591,21.170190401227728],[-99.88342027135263,21.16862616628083],[-99.87932767155587,21.168037914493254],[-99.87551033022015,21.16873926683644],[-99.87164676543284,21.169712615965523],[-99.86603987129479,21.16776931833425],[-99.86339664675637,21.166239174563998],[-99.86046034281571,21.166046957696892],[-99.85972881573815,21.165341852111226],[-99.84926844586937,21.16420584774545],[-99.84170704727183,21.158891794438034],[-99.83662436498145,21.157530333192426],[-99.83125855148518,21.157322722441222],[-99.82914529748354,21.15793487031175],[-99.81722950635293,21.16562948368221],[-99.81801957485874,21.166866140575905],[-99.81506356475825,21.16700893571965],[-99.80743346767366,21.17530851006228],[-99.8080214370678,21.176253451878097],[-99.80005190593073,21.179877894374272],[-99.77696962605438,21.19593851518937],[-99.77539483776172,21.204904627552708],[-99.77583353159821,21.207282321183868],[-99.77324564098956,21.20706556389706],[-99.76995775879254,21.209464036884185],[-99.76845071546643,21.211671607851656],[-99.76212861215026,21.21546365434517],[-99.75810563705892,21.21640296428933],[-99.75389224307668,21.220685477579593],[-99.7506707444806,21.2222445068748],[-99.74999380629731,21.223829928951943],[-99.74649637594683,21.22529475762792],[-99.74459346565624,21.22873498372212],[-99.74240520174646,21.229901524791387],[-99.73848345916588,21.235817763664443],[-99.69554888424426,21.2282279494205],[-99.68785486952044,21.225780260128147],[-99.69187601696632,21.23414200988657],[-99.69870634915901,21.240752092506284],[-99.69843849129398,21.25831227820578],[-99.69907630934568,21.266698400230666],[-99.69824377826217,21.268169710626182],[-99.67801273318668,21.288813254729803],[-99.67130261476524,21.301193759974637],[-99.68558561187695,21.308304038476933],[-99.69026875656692,21.307963837536988],[-99.7014000969117,21.31054169301882],[-99.70756530920244,21.314545832924296],[-99.7134967851548,21.31477047237587],[-99.71516868372487,21.313757989776093],[-99.71891103869143,21.31391729374411],[-99.73725312342657,21.312884970734103],[-99.73425053318704,21.308280541858437],[-99.73416115823778,21.301443920739075],[-99.75242473356462,21.29178339885209],[-99.75789357493983,21.29214036948207],[-99.76533919236743,21.301434889078166],[-99.76572348361123,21.303350415121372],[-99.77229614632665,21.308862789229636],[-99.77218627229422,21.30926136195893],[-99.77993479841967,21.31302816677794],[-99.78400308870954,21.320149566396935],[-99.78779082617268,21.32962172769777],[-99.78487839685391,21.327868505314825],[-99.78430809386248,21.33251770674667],[-99.77756527713592,21.343235423479655],[-99.79213267564586,21.343906598796366],[-99.79452201080522,21.357399414547274],[-99.79210353243883,21.360215206537475],[-99.78563638207373,21.365629151605162],[-99.78096700837244,21.368518486364906],[-99.7754955334837,21.374968594740494],[-99.7754560069622,21.379112375341947],[-99.77701272798737,21.385182331964984],[-99.77983832558795,21.38700080863805],[-99.77863542702784,21.39565370277421],[-99.77559739317286,21.398064857456518],[-99.77302974523417,21.401325049816876],[-99.77217712451,21.406731886080706],[-99.77581656773526,21.407253479878023],[-99.78043163691524,21.414772428258573],[-99.77592888736177,21.427033778609257],[-99.7797075232034,21.429917274660795],[-99.77867466573815,21.433280023015755],[-99.78038228715201,21.433771820845948],[-99.7787630306238,21.440875377146654],[-99.7761629385459,21.442522195879747],[-99.77815987710795,21.446513501016625],[-99.77430337686292,21.456278866226455],[-99.77688423313572,21.46017971879735],[-99.77325071523609,21.463092324914157],[-99.77219990658864,21.4673122288429],[-99.77680175861775,21.469787629761242],[-99.77310586615187,21.47634446582947],[-99.77460490809835,21.48163316075204],[-99.77449265031566,21.484591608608866],[-99.77287679077324,21.487103166516647],[-99.77526664811501,21.488743548236528],[-99.77407386963762,21.49178475325391],[-99.77734978407113,21.495022667737658],[-99.78523161707199,21.493342291943236],[-99.7910398340365,21.490671885975246],[-99.79234543043867,21.487376192954684],[-99.79077385994538,21.483214156460747],[-99.78796109507459,21.48054906942133],[-99.788362144453,21.477099977004684],[-99.79530157485965,21.473227149282707],[-99.80653062976523,21.4712442275752],[-99.80792899996555,21.46841777180424],[-99.8148492447657,21.464081082417238],[-99.8160456753406,21.462372853403167],[-99.81634865506544,21.461961799657843],[-99.82229880331795,21.463527602182808],[-99.82274923111038,21.464561708051633],[-99.82442076212692,21.466339905557334],[-99.82731802083424,21.466473791701276],[-99.82865502058365,21.466359140558666],[-99.83403489015109,21.464482264752235],[-99.83719005220678,21.464314942490773],[-99.83918134655232,21.462385632835833],[-99.83853736154487,21.466020492637938],[-99.8372403290802,21.471587976518435],[-99.8354343703516,21.47657524219602],[-99.83579261485465,21.47788125416446],[-99.84602186450542,21.476820152841015],[-99.85164859170027,21.475669001308916],[-99.85869221282462,21.475029895980413],[-99.86377537716277,21.47431028671491],[-99.86700037769407,21.47346238843835],[-99.87211717076843,21.47015161045715],[-99.87509318340528,21.467836695831977],[-99.88982527192485,21.45934301943157],[-99.89214069277818,21.45758470727668],[-99.90340868601248,21.449024743290522],[-99.90600538467856,21.448136586840064],[-99.91147243672066,21.45018264443081],[-99.92104367788437,21.45366735258432],[-99.92644987060862,21.456040751964792],[-99.942413626355,21.46178576390281],[-99.94376646358052,21.46121120716498],[-99.94213866964861,21.456452304731442],[-99.93896442168943,21.449788958160923],[-99.94270237430766,21.449874674006537],[-99.94759662087756,21.45434569214376],[-99.94673763094039,21.45557350540355],[-99.94925227218806,21.456002219527818],[-99.94764705050875,21.457455399645767],[-99.95064789816382,21.46152593373563],[-99.94960460104909,21.463173214928872],[-99.95029080856295,21.466308789352638],[-99.95205459344197,21.467118931029404],[-99.95297961684463,21.470619714799113],[-99.95161237102258,21.472580646832228],[-99.95218645784519,21.47316687118837],[-99.95795217725339,21.48265709940199],[-99.9576754265326,21.484893381904953],[-99.95174252607046,21.48771221821886],[-99.94794334763122,21.490688158465616],[-99.94592094634834,21.493974697029557],[-99.94570529365052,21.49743168712871],[-99.95065482646362,21.494677376500988],[-99.9529559802649,21.49617983345115],[-99.95412838926183,21.496945605155304],[-99.95945433899897,21.500327942919114],[-99.96092649450725,21.50269235707424],[-99.96511059407254,21.505121379287687],[-99.95955386053646,21.511905282663633],[-99.95610940826373,21.51941025425856],[-99.956975034339,21.521588464321553],[-99.95692722199561,21.521592821116997],[-99.95648859364832,21.524799067759602],[-99.95880275589735,21.526308563708994],[-99.95936222516917,21.52622187343411],[-99.95996006174693,21.52643291195608],[-99.96762623256836,21.52699395084676],[-99.97059443500933,21.527021884606427],[-99.97361211522389,21.52709464915995],[-99.9818766816914,21.525684254048826],[-99.9830111058684,21.52541105487211],[-99.98915533918546,21.52475813460177],[-99.99478579025936,21.5251379944811],[-99.99866894969256,21.52418197944081],[-100.00436986648396,21.524412023982848],[-100.02075448296875,21.524568688142153],[-100.03322405377082,21.525075876145763],[-100.04144392976292,21.525415094247705],[-100.04410330324293,21.525561386720938],[-100.05084861051381,21.52424488422639],[-100.06227605453995,21.523305476402697],[-100.0758436901728,21.557931679867522],[-100.089033437907,21.568156130572675],[-100.1124540681842,21.58729330892379],[-100.12490469913081,21.59364199820351],[-100.12493000383438,21.594114539960913],[-100.13261680906663,21.601932873342832],[-100.13945314668132,21.609589559732626],[-100.14490850926279,21.615360441233122],[-100.14702844644165,21.617943218206563],[-100.1471947924336,21.618125310514017],[-100.14740467595942,21.617817503465005],[-100.147634483344,21.617693320547744],[-100.15017781125601,21.61888448084403],[-100.15436637199969,21.617353545612445],[-100.15752157310357,21.613436482421832],[-100.16052256321967,21.607080208902744],[-100.16049860779128,21.60675266980644],[-100.16129350154387,21.604976576962656],[-100.16532972549885,21.60257400215653],[-100.16741089821193,21.60139134796094],[-100.17050975696571,21.600880824249316],[-100.17128279700995,21.602362041804497],[-100.17122332427675,21.602846823719005],[-100.17109824924586,21.604122507474244],[-100.17458959464932,21.610500494192934],[-100.17409006986378,21.6151736776726],[-100.17229634852362,21.61893510088197],[-100.17136898812447,21.62341269984961],[-100.1724830679455,21.629330986511434],[-100.17109518165802,21.631393770394368],[-100.16850129231932,21.63318497149595],[-100.16783784936575,21.63602408477658],[-100.16966945071766,21.638283274554567],[-100.17023597592436,21.63900652909689],[-100.17236885891805,21.641810124752794],[-100.17420579207686,21.644225058878362],[-100.17744082670691,21.648649175879996],[-100.17757212750365,21.648828926176236],[-100.17963474182926,21.65079048817296],[-100.18041752081126,21.65031967146041],[-100.18321401928824,21.64936248722489],[-100.18529360748187,21.65039786526154],[-100.18944959760876,21.64750210068695],[-100.1938950527317,21.64718337254402],[-100.2010804360151,21.65263327258657],[-100.2056050480017,21.657173939932704],[-100.21067691735857,21.65886703596425],[-100.22227543335771,21.66565151775518],[-100.23970412716233,21.665325828851053],[-100.24631148942422,21.66493260562089],[-100.25031016824579,21.669504608351474],[-100.25220746395502,21.671554036122075],[-100.25716716012965,21.675318151527904],[-100.25751970524811,21.6756911266649],[-100.25871544418771,21.676210943619367],[-100.26136276508015,21.67830503574112],[-100.26203475726226,21.67877048359543],[-100.26389588557299,21.679225780539923],[-100.26469273265394,21.68061608161173],[-100.26637371844805,21.68163702481371],[-100.26901475785405,21.6831101871212],[-100.27039300339504,21.684917031048997],[-100.27132620227235,21.68613536488033],[-100.27190360527703,21.68717365701974],[-100.29147958192289,21.684711033516578],[-100.30102732723253,21.684146347601654],[-100.30666604346021,21.683365802415096],[-100.32207813408723,21.682094173120618],[-100.32779884801488,21.684451306419817],[-100.33434324185117,21.686225942386727],[-100.33623366559777,21.68603682093243],[-100.34268755278856,21.688674443952493],[-100.3513655490957,21.69167084123478],[-100.35466203658768,21.690553130728404],[-100.36214670333817,21.686356687903697],[-100.36859203410734,21.68395263012917],[-100.37553113106526,21.679821088297842],[-100.38124063572161,21.680654651801945],[-100.38271705165477,21.680322769702002],[-100.3835769576313,21.679163264654676],[-100.38628208527115,21.68061158930152],[-100.38934885382128,21.68141120951833],[-100.3899258085188,21.680938162379448],[-100.39017894938769,21.679793642306947],[-100.3913702492573,21.67850313792735],[-100.39471368108593,21.678155208017017],[-100.39775498992736,21.67487462314199],[-100.40153130303213,21.674583044907024],[-100.40755321352265,21.677214985240767],[-100.41012299092876,21.677193155736518],[-100.41904253761533,21.674736771219557],[-100.4260533831469,21.6760844239663],[-100.42921289707107,21.67831793368731],[-100.43361500304707,21.678662788591055],[-100.43380013369222,21.679522873552344],[-100.43421413173633,21.680821659713274],[-100.43929515837931,21.678181028923348],[-100.43969187538193,21.676664256745255],[-100.442956130514,21.678518984713946],[-100.44734173789811,21.674923442011846],[-100.44514024237469,21.672267466829794],[-100.44950873294414,21.668930014864713],[-100.45128203217456,21.666349064834833],[-100.44882400465508,21.663010085099813],[-100.45252781306544,21.660554470255533],[-100.45275150569228,21.655170944936515],[-100.45487346150509,21.652966949325275],[-100.45693157954429,21.648962357307767],[-100.45606127465055,21.646450065797694],[-100.4583163448404,21.644005550555903],[-100.45666640201557,21.64197093982642],[-100.45842205793588,21.639091263162527],[-100.4615882227236,21.637579198885362],[-100.4598891036112,21.634676212517434],[-100.46087857444985,21.63353611895957],[-100.45947901283387,21.629245820183428],[-100.46039691536515,21.6239909142451],[-100.46470117304574,21.618490699197253],[-100.46973694524422,21.610090412716772],[-100.47049036937801,21.606465466812097],[-100.47242806628134,21.604347370583923],[-100.4750027394025,21.604182941775377],[-100.47838181202798,21.60218959212807],[-100.47947465689276,21.599873887054002],[-100.48376925564725,21.598117041207615],[-100.4858021498253,21.5944042760799],[-100.48084286316464,21.590858394209818],[-100.47603155676057,21.58987503514379],[-100.47145312748381,21.58757032055894],[-100.46991915847013,21.583826756698443],[-100.46774514162485,21.582087275584115],[-100.46665135684003,21.579382394553136],[-100.4630461396253,21.575671401221655],[-100.46070197848951,21.571210018565296],[-100.45800260343884,21.5644471448486],[-100.4553812206297,21.556256446530767],[-100.45813712084839,21.554879589528127],[-100.46056405103332,21.55497576240174],[-100.46484597141995,21.55362154699435],[-100.46036777733087,21.55053304854198],[-100.46108027508768,21.54533485244923],[-100.46427392156204,21.543168163393148],[-100.4804440463671,21.543118062759618],[-100.5108044780522,21.54244849751143],[-100.5133486611461,21.541871578810174],[-100.53395002233907,21.542326824495547],[-100.53551845277491,21.53901200445489],[-100.53947537664652,21.538326303359327],[-100.54458421255146,21.534781075599994],[-100.5466507099701,21.532291263047227],[-100.55105093928614,21.53212606255289],[-100.55304445936588,21.530538184783325],[-100.5562433933627,21.530687856531756],[-100.55971903212173,21.528586337872923],[-100.561361043038,21.530001447326526],[-100.5653316970081,21.530723603518652],[-100.56726962026755,21.529072566983757],[-100.57110368846628,21.530063325210165],[-100.57452587316891,21.527017171071293],[-100.57530241224373,21.527731996212594],[-100.57835784668288,21.525673620593125],[-100.57962333728375,21.526738363901586],[-100.58421375628654,21.52433375845169],[-100.58442773778847,21.522306426323382],[-100.5879099860557,21.51990274068902],[-100.59030748601293,21.51635475408193],[-100.59723466403233,21.512018204896094],[-100.60543863764877,21.50854530441228],[-100.6059463665,21.508871584299982],[-100.60651708841095,21.508902437160714],[-100.60695468069571,21.508809565668344],[-100.60878205602717,21.508658224372766],[-100.6092000045578,21.50842694144427],[-100.61139152277707,21.50934883451373],[-100.61303281081712,21.50783385879714],[-100.61495500518754,21.505789167982073],[-100.62042984695336,21.510232196151435],[-100.62191020967668,21.518985920489],[-100.61915612685152,21.522601893313265],[-100.61429931321322,21.533134545268695],[-100.63544732006756,21.54319162681827],[-100.63703520635846,21.54134502532611],[-100.63466351494071,21.537131281832956],[-100.63854157043903,21.5282930135765],[-100.65745607113018,21.524717976652937],[-100.66559957145819,21.527821215073516],[-100.66562017363736,21.535223066060382],[-100.66951272784274,21.53659921196322],[-100.6771841440293,21.541422542701923],[-100.68069368998414,21.54713947060634],[-100.68235782860398,21.54772377081298],[-100.69209792586429,21.546369141783032],[-100.7007174767337,21.55254865864532],[-100.70130158789891,21.55134536370963],[-100.70259369227102,21.548678767024853],[-100.70738271279936,21.548890556409276],[-100.70996342925679,21.550168179279922],[-100.71473011825549,21.549522435450285],[-100.71763023388758,21.550231512288235],[-100.72087954410864,21.5614905774799],[-100.7222039107968,21.562761118622063],[-100.72418317302288,21.564090000639283],[-100.72455737849367,21.564740816902713],[-100.72485579711531,21.566183799842975],[-100.72661061661864,21.56720543192256],[-100.72755525223727,21.568026266839013],[-100.7295183331143,21.575045224976407],[-100.730360474203,21.575532590822718],[-100.73272764273361,21.577355364145433],[-100.73354008516623,21.577502567875854],[-100.7340726364518,21.578543721649567],[-100.73970845450208,21.579178030818127],[-100.7434446228936,21.580178409160794],[-100.74490476285553,21.580723054451084],[-100.7472464983112,21.580941015969586],[-100.74818101875076,21.58056013051788],[-100.75018175060097,21.580364047147157],[-100.7525470616248,21.58134974975951],[-100.75614320343362,21.583570120043248],[-100.7571268708881,21.583706998494904],[-100.75759935376999,21.583890187426675],[-100.7617631853513,21.58493521085927],[-100.76202360752063,21.58505116151491],[-100.76320290954493,21.58799274005173],[-100.76517529766159,21.590287704783975],[-100.7652638759036,21.59047633348314],[-100.76575837600012,21.590511841660998],[-100.76619443637207,21.590466519324764],[-100.7660930662463,21.591992344780067],[-100.76611481404211,21.592143801036457],[-100.76702739305597,21.59228621740249],[-100.76872327367727,21.59405124193131],[-100.77246761321805,21.595451628676017],[-100.77185837350333,21.59298636164641],[-100.77329500144492,21.588121796256587],[-100.77518365090964,21.588546180490823],[-100.77617572643481,21.588629991964694],[-100.78386260114831,21.592028162555096],[-100.79071660808273,21.594070930178418],[-100.792308372136,21.594834176087772],[-100.8058693797866,21.59385985970073],[-100.80670391988951,21.593166448040733],[-100.80949610033218,21.592049827393566],[-100.8145776916632,21.60137794169765],[-100.81656096203398,21.60265339947813],[-100.83500826750702,21.609820786643127],[-100.85767824039067,21.61898658428862],[-100.85006052200805,21.63507204945239],[-100.84260116024211,21.64902660576962],[-100.8343214940258,21.66455877956281],[-100.84121900788591,21.667440498491544],[-100.85216602398464,21.67335020392568],[-100.85269160126825,21.67386090974327],[-100.85310578597779,21.674371389360033],[-100.85654812063348,21.678130023871063],[-100.85985794583542,21.68189885966899],[-100.86514988067239,21.68707959349939],[-100.869778790076,21.673398416796033],[-100.86982179599386,21.672969580418055],[-100.87011468039879,21.672489422023432],[-100.90237510529965,21.682018344107348],[-100.90445971095744,21.681124848184936],[-100.90718336578914,21.681636795593477],[-100.90771421412597,21.684728121075636],[-100.90765893730145,21.685236092757805],[-100.9082273619353,21.689392306418142],[-100.90933063821302,21.692265508662956],[-100.9121401312309,21.69203418417328],[-100.91240449784704,21.6920893805667],[-100.91278445473637,21.69231707868147],[-100.91302310052504,21.69246515132056],[-100.9134992408417,21.69288566386041],[-100.91354870392229,21.693161122027448],[-100.91453866136169,21.69375969177088],[-100.91484179712774,21.69410737876973],[-100.91578025067764,21.69456868359498],[-100.91651622001717,21.695260703119175],[-100.91774027451646,21.69626677624035],[-100.91987807030989,21.69913239091835],[-100.92044429261233,21.699733037911813],[-100.92120188827198,21.699959607823416],[-100.92127346187601,21.7002735726756],[-100.9125775728088,21.713648731724163],[-100.91800062267555,21.714454963350533],[-100.92608731879534,21.71690486530383],[-100.92949132149965,21.718051682016892],[-100.9380545460761,21.72053455881246],[-100.94350281054466,21.732621624418414],[-100.95020727434996,21.733286436882565],[-100.95444503630841,21.733772747485375],[-100.96540241875454,21.734858111010794],[-100.97113779923217,21.744895401510007],[-100.97711614257815,21.74977765797223],[-100.98197436681795,21.7535273598549],[-100.9856641962196,21.754097106721304],[-100.99108033449517,21.754908450986306],[-100.99162841502971,21.75507057166891],[-100.9948132578632,21.755581304113832],[-101.00002931909194,21.75640722935509],[-101.00163658225438,21.752811480516186],[-101.00230330929008,21.75081693885403],[-101.00315713307646,21.751046834916394],[-101.00611951365283,21.751910298149937],[-101.00517262249508,21.757231141597742],[-101.01011644933874,21.7579381527691],[-101.01141069335512,21.758122369963303],[-101.02266305256148,21.759846848444397],[-101.0260750690025,21.76037168408635],[-101.02885144630693,21.76083223156121],[-101.03031682737941,21.761088750476972],[-101.03199496208964,21.761462506148177],[-101.03449544808586,21.762968189694732],[-101.0379802267837,21.76221940937046],[-101.04884402876644,21.76388269067172],[-101.0490386051028,21.763898077162025],[-101.05924796670632,21.76552074088329],[-101.05967076261891,21.76506055081734],[-101.08233703369183,21.76149355985359],[-101.08454001689455,21.76050153573226],[-101.10451806596728,21.757446368541537],[-101.13613888734699,21.753225913323718],[-101.14321997012325,21.755556612989665],[-101.16126698256767,21.757505921551513],[-101.16392541504274,21.759047911428297],[-101.19016350197404,21.77747804855369],[-101.19206194215064,21.779297467306776],[-101.19873793420254,21.784939867269543],[-101.2197946251552,21.80220039197519],[-101.2185247495691,21.808852436810014],[-101.21721216083495,21.815813491216318],[-101.22903460054482,21.817829678153373],[-101.24231843107862,21.8206465732805],[-101.24505443617147,21.822091809780034],[-101.24818166530741,21.821935160132625],[-101.26072509255903,21.823449955468902],[-101.26495905042344,21.822570270224787],[-101.26610843097905,21.82152367915552],[-101.27223746430434,21.821928935450728],[-101.27548121434086,21.822134621055795],[-101.27883993436296,21.8211968219195],[-101.28045040620532,21.821634302130292],[-101.28367225570781,21.820204668236215],[-101.28415901819795,21.819392490805114],[-101.28654783992317,21.815692319480206],[-101.28681466947256,21.813387378041455],[-101.28766855850199,21.811846537908593],[-101.29109554362407,21.81262361106218],[-101.29354344833325,21.81486328476575],[-101.29589971933893,21.81791366283909],[-101.29695834383011,21.81926714452419],[-101.30587558156321,21.827014513065535],[-101.31124605867166,21.830374075119153],[-101.3145043304429,21.832394028255294],[-101.31948394367515,21.83533444733098],[-101.33978302703662,21.83700100899034]]]},"properties":{"cve_ent":"11"},"id":"inegi_refcenesta_2010.26"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-105.8745422447326,26.738575731267872],[-105.89410173669575,26.741009490619945],[-105.89833696982436,26.76385388429054],[-105.90693436648377,26.753085666661832],[-105.90860609761421,26.75283781221873],[-105.91397509988991,26.758195900252076],[-105.9187811181207,26.76116109274028],[-105.92405220777931,26.763334755892515],[-105.9281070109459,26.765931965726907],[-105.93178629826969,26.765602860057754],[-105.93757254016958,26.766675261197406],[-105.93919350105273,26.763215524697443],[-105.97002159418821,26.787644306534844],[-105.99215896095905,26.8049008972539],[-105.99553390276327,26.807530826555933],[-106.01532734298337,26.819727324046994],[-106.04733909463204,26.844875911577333],[-106.06504842112315,26.827633353940882],[-106.07315092845738,26.808748475437767],[-106.07754909080069,26.799395366205772],[-106.07810510245696,26.798310152423994],[-106.08418717569072,26.78643786043449],[-106.08749859702999,26.780744474011215],[-106.10064265883688,26.759333184788886],[-106.10496554745947,26.759364732935865],[-106.11031888813613,26.76442327593213],[-106.11429890855851,26.76514389361853],[-106.11825777993135,26.7711085649741],[-106.12290499328248,26.776054948978185],[-106.12526240699577,26.779410371125778],[-106.1275604109382,26.778900810661753],[-106.13208804612668,26.779212171613665],[-106.1334773263655,26.779058910552408],[-106.13616380136443,26.777388143574854],[-106.13857934359083,26.777624856489354],[-106.14277527736147,26.775123079758714],[-106.14446196215164,26.776546819564373],[-106.14545143109933,26.775148850660912],[-106.14766803665975,26.773943553675338],[-106.1492364057222,26.772617134535437],[-106.15779397265601,26.770974183378655],[-106.15995631980422,26.7718397500729],[-106.16317814529663,26.77473970916759],[-106.17010289074238,26.775212988609894],[-106.17160268410942,26.773614915908013],[-106.17698401815187,26.772991079615508],[-106.17810731245095,26.770742224328615],[-106.17833598316179,26.76579015865451],[-106.1797090525207,26.763063056294754],[-106.17302697962418,26.75541234454903],[-106.17056662167874,26.749570344949348],[-106.17245764746133,26.748623820072225],[-106.17396359769288,26.743467376996705],[-106.17633515443828,26.743438570857165],[-106.17778141054958,26.745448346175067],[-106.17893065058053,26.74193025509777],[-106.17682954183533,26.741331800683895],[-106.1766450266133,26.739297440519124],[-106.17929063796959,26.737538857422237],[-106.17658083305082,26.727722052044726],[-106.16481015920414,26.72648333262117],[-106.16358064549001,26.72635388983207],[-106.15148452405936,26.724984096687535],[-106.14144399747897,26.72078664815126],[-106.13739205388089,26.7185053545075],[-106.1357005640811,26.716741770002898],[-106.13178201596281,26.71379624590486],[-106.13101973355003,26.709918628102002],[-106.13067448153276,26.702203383660617],[-106.13219306944444,26.699780449614366],[-106.13223776711214,26.697230523118094],[-106.13857916108844,26.701156807301402],[-106.14312487684731,26.707044818620602],[-106.14451270786924,26.706947526453234],[-106.1474628043,26.70923773940939],[-106.15025079313085,26.70750383224413],[-106.15416201531048,26.70660026104639],[-106.15618945741659,26.70398579707785],[-106.16013266983566,26.702338441455083],[-106.1625611128913,26.70391605253792],[-106.16428313637954,26.704965567426086],[-106.1655364828884,26.705368507618573],[-106.16686183032397,26.705921713886767],[-106.1726620712102,26.705166801725],[-106.17874797020227,26.69916978425573],[-106.18551152631096,26.699404044062646],[-106.18967499307803,26.695139327146478],[-106.18721038306444,26.693250066756775],[-106.18498495317652,26.686659598492156],[-106.1857208880906,26.68399246417698],[-106.18872678588582,26.68333211321209],[-106.18902787225505,26.68269128558984],[-106.19025789851185,26.679825710239356],[-106.18845453423438,26.676990313642534],[-106.19166923454014,26.678460066957484],[-106.19328614541143,26.681876802204215],[-106.19712846996458,26.6837790225876],[-106.19924760639617,26.68235665339961],[-106.19939919402111,26.679449863846912],[-106.19834670551114,26.676009286306396],[-106.2007179963282,26.677782116377728],[-106.20302418139278,26.681225820949578],[-106.20792268104651,26.678064756144806],[-106.20658331146115,26.67435603724448],[-106.20643818855467,26.668334320014537],[-106.21111006346138,26.667733976908266],[-106.2172573030204,26.661017479519614],[-106.21982609068272,26.656355989297367],[-106.2181125522244,26.651613808897196],[-106.21835355791097,26.650610768136687],[-106.22030706699303,26.64898267319745],[-106.22144985781199,26.647678191330044],[-106.2222042884506,26.641172210371963],[-106.22034324937664,26.640398461931397],[-106.21981718751164,26.638171507200695],[-106.22414269506368,26.63725763642168],[-106.22557438696248,26.635377394662555],[-106.2244318980866,26.62934918873293],[-106.22347584130654,26.627824630134796],[-106.22604764446811,26.621034590820727],[-106.22696450858564,26.618685687000266],[-106.22755296046086,26.614718765184875],[-106.2306113945466,26.616200364141832],[-106.23203950375762,26.61365131482853],[-106.22992224581338,26.610569882457753],[-106.23038212942475,26.60988783866526],[-106.23350578163871,26.609634757586548],[-106.2351071211682,26.61348665164428],[-106.23600945488982,26.613187777062137],[-106.23608655664202,26.606746880266314],[-106.236209114411,26.604776184868513],[-106.23536993013073,26.603323448241895],[-106.23645989069735,26.597776561274543],[-106.23571905747002,26.592358424501697],[-106.23660132629345,26.58771114778017],[-106.23244035171291,26.587715417731715],[-106.23394667763114,26.58069485308846],[-106.23363726672846,26.579685909904526],[-106.2334627620653,26.579116867253106],[-106.23064187675124,26.57630146021461],[-106.23064310900475,26.574700554415585],[-106.23463489094564,26.569173889550598],[-106.23456060151824,26.56559042419184],[-106.23203950816202,26.561608385411034],[-106.23346412155098,26.558806903727202],[-106.2386700053114,26.563195974897553],[-106.2395271444696,26.562437319312266],[-106.24054681630008,26.551471231916935],[-106.24086749083358,26.548750508804744],[-106.24121711662906,26.54498991650229],[-106.2663290354626,26.5364321208682],[-106.28013545050163,26.53206722483992],[-106.26972819624478,26.527041440310597],[-106.2654539981113,26.50077801552237],[-106.25619598569239,26.440754548190796],[-106.26522061031932,26.424139704140373],[-106.26437405051979,26.406115915420173],[-106.27297695557246,26.40361545604054],[-106.2963051770709,26.364680458213854],[-106.27788996016034,26.367201104828837],[-106.275457923722,26.36741546367557],[-106.28704095295774,26.335081575078277],[-106.29022242139513,26.33474446788739],[-106.29951956592396,26.337082845755276],[-106.30811088651865,26.34496579711714],[-106.38355978760586,26.21879969984002],[-106.4202832099374,26.15728286392124],[-106.41561494892562,26.13940028622278],[-106.44024836556639,26.12380883825847],[-106.45602061074402,26.097349983437766],[-106.45559724028402,26.096055639356223],[-106.45440686903311,26.095260415498444],[-106.47122930851606,26.060522920548067],[-106.46504326722999,26.051936937747428],[-106.45409829227208,26.04635702617071],[-106.45498811703806,26.044955076806787],[-106.4533966368698,26.027840688593358],[-106.46104647050646,26.02011214113446],[-106.4619325780265,26.020626769683474],[-106.46409757592733,26.0178605334267],[-106.46745157933492,26.01828836767828],[-106.46862251065437,26.013093889237837],[-106.46868438787789,26.011759482276716],[-106.46954532769439,26.010279044354263],[-106.46966221749148,26.008178975587043],[-106.46954452856431,26.00734062041772],[-106.47040674129698,26.00542563485311],[-106.44471262135278,26.00508821773559],[-106.4558154673557,25.972579201473707],[-106.49166531393854,25.9680534729589],[-106.50147316219312,25.954955756624656],[-106.52038517095696,25.949665585302284],[-106.5337154588791,25.94576151972643],[-106.54730610240318,25.95242174844128],[-106.56012978652035,25.912706765313715],[-106.55993354609473,25.902223190444488],[-106.55639513901878,25.714309977573294],[-106.55596774915813,25.691706627659357],[-106.52655457532887,25.7133797698379],[-106.46404158609641,25.74170966576287],[-106.46361750502763,25.729043674107913],[-106.4807381982124,25.718779919308815],[-106.4870663367343,25.715645024238484],[-106.49261462683916,25.71438117424941],[-106.49889019385773,25.712042972534107],[-106.5010895335522,25.712156499084074],[-106.5027284008396,25.7092010635904],[-106.5078846550552,25.708082174428455],[-106.51115991912457,25.703577549749127],[-106.51665792714294,25.69942118112192],[-106.52102420037363,25.694905401174424],[-106.52494099677205,25.69450928036963],[-106.52840497249173,25.690656430227932],[-106.52721600276863,25.687488004345596],[-106.53096001392225,25.6857676074639],[-106.53122944504241,25.682321888371973],[-106.53381578699026,25.68106764458389],[-106.53553812691655,25.676830538480772],[-106.5399198217388,25.674502604770794],[-106.54478060278956,25.673853942863843],[-106.5474522999225,25.670951694567407],[-106.5526462350773,25.670153803652454],[-106.55501194327383,25.6684171692238],[-106.56334007002692,25.667212969798697],[-106.56598595309788,25.666160738129236],[-106.56789251810233,25.659649274463902],[-106.56966515263986,25.657662900639366],[-106.57402853869166,25.65609822357908],[-106.57639712378949,25.653193665564572],[-106.57929334790379,25.653349773879256],[-106.58492885919475,25.65049816473737],[-106.58868368868997,25.64788765414994],[-106.5912749744096,25.647779134507232],[-106.59262181471058,25.643535258432678],[-106.595364338727,25.642134280978837],[-106.6044193891666,25.63453629715167],[-106.60632721395115,25.631079281669088],[-106.61548385392564,25.621113244363073],[-106.61570718940982,25.61905819890552],[-106.62073235074627,25.61603011714243],[-106.62185457841167,25.610818544141182],[-106.62381662671822,25.60954777372342],[-106.62324564287366,25.60703553967062],[-106.6292555329137,25.603791624495898],[-106.62831126201962,25.601264397160094],[-106.63015569915967,25.59344573655136],[-106.62922015399334,25.590911173910683],[-106.62980928925441,25.587429910651508],[-106.63220379060516,25.58504109087204],[-106.63251131534679,25.584457105297474],[-106.63500342870913,25.586310713415628],[-106.63890934041979,25.586399207167347],[-106.64290762617418,25.585186000009173],[-106.64775304420385,25.58149859995399],[-106.65367302276007,25.577926876518234],[-106.65559546903205,25.57516582583662],[-106.65747991636579,25.570193745254016],[-106.65643503552394,25.565219457916044],[-106.65282631044596,25.558843616567287],[-106.65973804473077,25.564694439857135],[-106.66326387580375,25.563547918468203],[-106.6670854519146,25.564614929052084],[-106.67141983912654,25.567421652076405],[-106.67336543766345,25.571862135562014],[-106.67704982066249,25.57644286486385],[-106.6778894006136,25.581005609858323],[-106.67781723304284,25.58161897765524],[-106.67769596089414,25.583657238559965],[-106.67921205614613,25.587900519701748],[-106.68182866982079,25.59049961780312],[-106.68563769317427,25.589736539040246],[-106.70796984168476,25.60245126031714],[-106.6819685242242,25.57916844685616],[-106.69884721997823,25.580839541436035],[-106.6989203494507,25.586204515734437],[-106.70057008102725,25.58741633223525],[-106.70575813279493,25.597349738908292],[-106.70254869930841,25.58120575830526],[-106.71052933276593,25.58199498924955],[-106.74479636555628,25.585163390139087],[-106.81782572003635,25.57338943360986],[-106.86277493179864,25.57172194569341],[-106.87375598472124,25.571864827569527],[-106.89922208007835,25.643742040943835],[-106.89378369662313,25.644291348018328],[-106.90680958721578,25.64661995474728],[-106.9223869854938,25.646082174437538],[-106.95654152805696,25.65366821123132],[-106.99432452547507,25.66223259193214],[-106.9943958583666,25.661794811478103],[-106.9732904561559,25.62957043758564],[-107.03415932207042,25.59632320599451],[-107.0984576443945,25.565867600046772],[-107.10998841705032,25.560556463972546],[-107.11308094275222,25.56106029231745],[-107.11541058556696,25.558986573016114],[-107.12119101938862,25.556290826031557],[-107.11953429578523,25.5542217057843],[-107.12209014569794,25.553519507397425],[-107.12484465744217,25.550392328881628],[-107.12916974002133,25.549949542931472],[-107.13197675323937,25.55234956113702],[-107.13845475018303,25.55239443115562],[-107.13874935030918,25.56009509061971],[-107.17006991024226,25.55954680996041],[-107.1702500276865,25.557254417563627],[-107.17387949754965,25.556552564263143],[-107.17261468522554,25.551702044483704],[-107.1751650260789,25.549198327291606],[-107.17158639591486,25.546108073505764],[-107.17182888933212,25.542798941292688],[-107.17616751974242,25.54440384461492],[-107.17666103280663,25.54012510193354],[-107.17334234660512,25.538032018204603],[-107.17390726931302,25.534431528327673],[-107.17384746557696,25.534289527346232],[-107.16959626560777,25.5328257464343],[-107.17070960687022,25.5305128060088],[-107.17425439236024,25.529101287411322],[-107.17393653523925,25.52675874481389],[-107.17211546965098,25.526369760930777],[-107.17201082475754,25.523843377350545],[-107.1762509892414,25.521946254167403],[-107.17602897662732,25.51824522978569],[-107.1780555881096,25.515734172779958],[-107.17763478569049,25.51440031290832],[-107.17210582129019,25.50738996599256],[-107.16629029963644,25.502995321249728],[-107.16253699340746,25.50312031946453],[-107.1476842364525,25.505027214239362],[-107.13982230746831,25.496620898109427],[-107.13901846970839,25.491664508426766],[-107.14192277400991,25.486218564789397],[-107.1465784545884,25.483073517942785],[-107.14724184304242,25.47927043704442],[-107.14946678830955,25.478794207697945],[-107.15120508847372,25.47628268347097],[-107.15064516351055,25.473949436432747],[-107.15263237211184,25.469696331638488],[-107.15125485259085,25.467475735110895],[-107.15305090275666,25.465550402832037],[-107.15185499501274,25.463493792607835],[-107.15310631111493,25.46047451218874],[-107.15052815298475,25.458286116947534],[-107.15189447706393,25.457093277191007],[-107.15478399327736,25.457079305656464],[-107.15678794073176,25.455452923998678],[-107.15555019891025,25.449568479972925],[-107.15579568386397,25.44687158338013],[-107.16036666026446,25.445716017688994],[-107.16090628053985,25.44420265629492],[-107.1585796292548,25.442166245965836],[-107.16411471400204,25.440091496198875],[-107.16417354798011,25.43988550373308],[-107.18487440709339,25.436815801029525],[-107.21013222750827,25.417100508792714],[-107.17155080618664,25.32635787277303],[-107.20781657169823,25.331564228379023],[-107.20005399057993,25.320798919678055],[-107.1583908635796,25.262980292206464],[-107.14907094270296,25.259415450415645],[-107.14772182650597,25.258943959774285],[-107.14140541018656,25.255700259652997],[-107.1336587719174,25.25045011384526],[-107.13238310559365,25.250325809703554],[-107.12124742564254,25.24262201326809],[-107.12349000361968,25.2414361769396],[-107.13167506529629,25.232202223804507],[-107.1304232136963,25.229482754006312],[-107.13202137354415,25.226711797685596],[-107.1353849739213,25.225342638426923],[-107.14877479568975,25.224548138647492],[-107.13634667214433,25.201734901261773],[-107.12925597028169,25.189445332133175],[-107.12901368996296,25.18840137130786],[-107.12582101154493,25.187556230221105],[-107.1249737254077,25.185207064569227],[-107.12543008284462,25.172958056420498],[-107.12989163564322,25.053138794849815],[-107.0673989951514,25.03015520781537],[-107.06357128483415,25.025255353883836],[-107.0666997860659,25.02213007231734],[-107.06610092947267,25.01890535511137],[-107.0620141617132,25.012449569200896],[-107.06056437675824,25.005656785251006],[-107.06041980133693,25.002427434341826],[-107.05727797170664,24.9986978888395],[-107.04395874945112,24.976443597457376],[-107.03897407661555,24.968112176320744],[-107.01834390845897,24.933617363720657],[-107.02514667857662,24.92838050663704],[-107.02105288346758,24.909908271923598],[-107.00057531731369,24.9282409347191],[-106.97324942052018,24.909614691602883],[-106.97310321636547,24.909285903160537],[-106.9575369253078,24.89428761434516],[-106.95100943933818,24.88799666449046],[-106.94627807765983,24.888951740289656],[-106.93450764280851,24.880535846034434],[-106.93148510697534,24.87505032240142],[-106.93061611874009,24.87347310850413],[-106.9328628949666,24.8714792967088],[-106.92708026010729,24.866624380879102],[-106.9285541199975,24.866164230541017],[-106.95141810558232,24.859023720118046],[-106.95083182287686,24.857947698057274],[-106.94639325069585,24.858507924342746],[-106.94396112341678,24.851527366817095],[-106.9431366963588,24.843057459488534],[-106.94648781775481,24.83975316978075],[-106.93806094555629,24.835251013960146],[-106.93816675599129,24.834697299219272],[-106.93066256883907,24.820916674886746],[-106.91927678187108,24.813953121007614],[-106.90294888013864,24.828387851485388],[-106.88599839914656,24.826351189934655],[-106.86781575342826,24.824164272640814],[-106.86101517848817,24.818357735158372],[-106.7961287106562,24.75336113136484],[-106.79301071505847,24.74391033299412],[-106.78425429658853,24.74145644012458],[-106.77591665132144,24.73309566351719],[-106.71512530470096,24.672081869582996],[-106.71149270407739,24.670304853460664],[-106.70594836714452,24.665261655735662],[-106.6890504035917,24.623753726389907],[-106.68360860521267,24.598530470256208],[-106.66865210870986,24.57167276152967],[-106.66282154323505,24.56030023202277],[-106.64546066856991,24.528979459215805],[-106.63778161557855,24.53031177520114],[-106.63223782379026,24.529989500843726],[-106.62603430768297,24.52714144202082],[-106.62260700221606,24.524896675452112],[-106.63006707733467,24.506503148946138],[-106.62736319054653,24.503228492154335],[-106.6247750021688,24.500236050999206],[-106.60999494531848,24.49785127497654],[-106.60036171830268,24.483210810356354],[-106.60006606436718,24.486711228028298],[-106.59845638901402,24.48711817514271],[-106.59843390977375,24.49101086779234],[-106.59777248816727,24.49098853568853],[-106.59587311122891,24.493825632976836],[-106.59403878912605,24.49423727207369],[-106.59157392770425,24.491431099518252],[-106.58712449597044,24.49263977134433],[-106.58375866261395,24.490759915483807],[-106.580064839496,24.487244175685362],[-106.57866196477704,24.482224193595414],[-106.57627288299102,24.481919782859677],[-106.57231604643084,24.4773091966548],[-106.56409695387202,24.473167042843386],[-106.56001580190775,24.472710609604974],[-106.5594525816303,24.46964504585776],[-106.56242849122293,24.461178762336374],[-106.56283841560787,24.45878427642674],[-106.5664457447237,24.455872930886983],[-106.56832153772677,24.453099189540183],[-106.56926650613866,24.446190830031526],[-106.56763216921945,24.442172547624125],[-106.56868466906536,24.442047549499193],[-106.56845843144498,24.438501744847713],[-106.56927602129139,24.437020591696978],[-106.60158830492185,24.41456584619698],[-106.59528837070053,24.40947220312114],[-106.58346565485795,24.39026992463704],[-106.58595861040448,24.37900030281787],[-106.53408891783016,24.30954779147845],[-106.53324437862506,24.302672862794168],[-106.52799120943229,24.295123735958498],[-106.51709355570603,24.286984254680533],[-106.50909660325112,24.291139304234605],[-106.50856909211075,24.290961747347012],[-106.4696546660083,24.277856955831226],[-106.45772310983284,24.280574477822142],[-106.44795527306286,24.282080655777634],[-106.43753526428145,24.28389973019779],[-106.4294700957334,24.285074302139208],[-106.40313005088649,24.293095321057763],[-106.38325574040022,24.297930067067682],[-106.37453559206153,24.299817585250366],[-106.3675446637746,24.30194080643571],[-106.36301326451576,24.30417250372153],[-106.35919765638863,24.30746988989165],[-106.35262369401238,24.31646815795284],[-106.35158443408926,24.323778152392435],[-106.34785857342314,24.33827076912405],[-106.34614527957103,24.34493398030878],[-106.34410076637982,24.34880565059933],[-106.33632981625982,24.35569532188117],[-106.32784825397823,24.361062994952135],[-106.2688694072803,24.3747552876099],[-106.1944056595757,24.351785103407508],[-106.17358115679963,24.336327474743314],[-106.16997520105974,24.33365018311389],[-106.15253961740825,24.338770374542946],[-106.11845655633897,24.309597136024877],[-106.09250982781839,24.287374288769684],[-106.08887730521514,24.284408967859974],[-106.0892643723522,24.282291410027938],[-106.08919656746139,24.2815537240877],[-106.08690469494763,24.27769222818796],[-106.08243577939618,24.27460129070687],[-106.08202284506729,24.274082702083092],[-106.07974836090062,24.273065729911366],[-106.07912269599763,24.272851994080384],[-106.07854784417793,24.27297015457316],[-106.07754031364163,24.272593831694337],[-106.07453953606961,24.26942209295032],[-106.0742415646082,24.26568581298119],[-106.0743791284479,24.26501038217998],[-106.072867330098,24.260878736803193],[-106.07280999113584,24.25794465340863],[-106.0712960611109,24.249572573377293],[-106.06994835235054,24.220200585348323],[-106.04388357006547,24.2208503591184],[-106.04462964992052,24.213491978134925],[-106.04400035072359,24.211586505258026],[-106.04088420368834,24.2075759280238],[-106.03713359981037,24.204864292063917],[-106.03638206063238,24.204023417143617],[-106.03532835784574,24.199743521272694],[-106.0358892057597,24.199027294091138],[-106.03568297161763,24.197544515022344],[-106.03482150288124,24.197119943558164],[-106.03398248738631,24.19189240142049],[-106.02932553487335,24.18759500828901],[-106.02823837635896,24.187275812410576],[-106.02685167298188,24.185934549772014],[-106.02864103186187,24.180687943281782],[-106.0283719007681,24.180071883086555],[-106.02662093373715,24.17972748249423],[-106.02489129658676,24.17596925739406],[-106.02107526757737,24.173181826694986],[-106.0190048524504,24.167651023240467],[-106.01877026769642,24.166643334474657],[-106.01806708350279,24.164277384932916],[-106.01403039892705,24.161395235383168],[-106.01205346831404,24.161238470821104],[-106.00982429806459,24.15645456551067],[-106.00972171195235,24.155757663211034],[-106.0074671115492,24.153773008295445],[-106.0059113085004,24.147984989044858],[-106.00321076663738,24.146841034068245],[-106.00431797069979,24.144895865904118],[-106.00306069195273,24.143527954118838],[-106.00376474442817,24.139799417136942],[-106.00198894742465,24.13868688743088],[-106.00403915226764,24.135986991390098],[-106.00351799741873,24.13573332060065],[-106.0041981075737,24.129958104837613],[-106.00204378342164,24.129242979417768],[-106.00129148238426,24.128641389922393],[-106.00178748404187,24.12708624633217],[-106.00200380146015,24.126630490042714],[-106.00367257775588,24.125271946282396],[-106.00411863084571,24.12149707192475],[-105.99982992654674,24.11649551597492],[-105.99664961721112,24.114455670982977],[-105.99085459969899,24.115014440304265],[-105.98972399419421,24.114390167299803],[-105.98907722870405,24.10799767424811],[-105.99106863596899,24.105319940723575],[-105.99063447540749,24.101686908510715],[-105.99320311644163,24.101224962471463],[-105.99364344218623,24.098959894634675],[-105.99573820687476,24.097892467090276],[-105.99400698578108,24.093566924511208],[-105.99632049478896,24.089360197936685],[-105.99941579723946,24.090110284630043],[-106.00199161569009,24.087721023681695],[-106.00059796440735,24.086391421030385],[-106.00263592373557,24.082790833074796],[-106.00181226059425,24.08212439852798],[-106.00054211672699,24.07830997709698],[-106.00100071113854,24.075560974745542],[-106.00410040276324,24.075918274391597],[-106.00513990492846,24.073775972970907],[-106.00760194074519,24.073107836729093],[-106.00688767084915,24.067692535849517],[-106.00294848340474,24.066060902157744],[-106.00118168935722,24.06309295143734],[-106.00145055835702,24.060037421860443],[-105.99986440733812,24.055065983621205],[-105.99698853541219,24.054629574396017],[-105.99950144199136,24.049708948944044],[-106.00007399305395,24.046522915072444],[-105.99788088431444,24.04252040365668],[-105.99536217860901,24.043836859804117],[-105.99493187918495,24.04478299389325],[-105.99339735823264,24.044264889723365],[-105.9911737765695,24.041119544883827],[-105.98878239618034,24.041874773938446],[-105.98577084925097,24.03889645539249],[-105.98323892255888,24.038882009479266],[-105.98157726115431,24.041675161829573],[-105.9798164489386,24.042037368392755],[-105.97853100897021,24.039557781178644],[-105.97340367696535,24.034426814541632],[-105.97304319514114,24.032738102873395],[-105.96625635547719,24.031256664695547],[-105.96541345132465,24.027068849589284],[-105.96322994221993,24.026757054356494],[-105.95937216260336,24.023002078005447],[-105.96097084995131,24.02192266162041],[-105.96037140702055,24.017883572490575],[-105.95708806839707,24.01583473033702],[-105.95361588395087,24.015956646757445],[-105.95025811507878,24.01481883659227],[-105.94967595055732,24.01241498257582],[-105.94806225360179,24.012010112627536],[-105.94713155136589,24.014971807709117],[-105.9452689309249,24.012261019019036],[-105.94234293804357,24.014317915689276],[-105.93957949790416,24.007640595769885],[-105.93763203811386,24.004990943573773],[-105.93164872981856,24.00063233238302],[-105.92404332181678,23.99801729525626],[-105.92046764254553,23.999643580213103],[-105.91461470189847,23.999511595892898],[-105.91209429955506,23.997239192833092],[-105.91244008566122,23.995913419926694],[-105.91292549836726,23.992008406000082],[-105.91072092104861,23.988310876173045],[-105.90871790211219,23.986630173218998],[-105.90846158002421,23.98342663461426],[-105.94541506418932,23.948025686491462],[-105.89991939692237,23.94392128546957],[-105.88155350219262,23.93281961988953],[-105.87899231210213,23.92606631435035],[-105.87227980071947,23.92016812736921],[-105.86834310816567,23.918643557151597],[-105.86388644134615,23.912824013384352],[-105.86527737729057,23.908221609988004],[-105.86354841119714,23.904251086482645],[-105.85852074328466,23.90174484643444],[-105.85758795102561,23.8992961543114],[-105.85842630629583,23.893367441397572],[-105.86326923703257,23.889448308262217],[-105.86073698234901,23.8864229595236],[-105.86156673256664,23.88435391482625],[-105.86356090394031,23.884405603078676],[-105.86323873822039,23.88109812917412],[-105.86532367020334,23.88086516655568],[-105.86301024441491,23.878525617657942],[-105.86286357704046,23.878273363749372],[-105.86477326371573,23.87515622435029],[-105.86724132889572,23.875242982701423],[-105.88227404498679,23.878542356775768],[-105.88520217526082,23.879575073204762],[-105.95366198764953,23.90858459222875],[-105.96126556727637,23.840742146491266],[-105.95188070223816,23.81964958119528],[-105.9393302263723,23.79143022386438],[-105.93217460494145,23.794696003421393],[-105.93198849797739,23.79408426605272],[-105.93123654198519,23.790578674739663],[-105.92926319065543,23.78771714879673],[-105.92822154476949,23.784022332703103],[-105.9295313841194,23.7809648142142],[-105.9249365124108,23.773815464471625],[-105.9247988096489,23.771476193350452],[-105.92647397437679,23.768376608941196],[-105.92936853938306,23.766576307298692],[-105.9281311200653,23.762906467025402],[-105.9266676880406,23.7615223493479],[-105.92331815519083,23.76129967462481],[-105.9205295552141,23.75855036205627],[-105.91991340505558,23.757965077083213],[-105.9229484758581,23.75224010226583],[-105.92306290601226,23.747753762957927],[-105.91066007623834,23.741397047913438],[-105.90609335094081,23.739398850169323],[-105.90620291700964,23.73707089486345],[-105.91590583808505,23.726424749222815],[-105.91655570274293,23.715355767830204],[-105.92663376096101,23.68413565951988],[-105.92073429992018,23.655836377263313],[-105.90902955262669,23.590188524548694],[-105.90890536166052,23.588269552516067],[-105.89265538921336,23.552645278804107],[-105.88431791529524,23.59039386690887],[-105.8535960138476,23.597287592493387],[-105.84518580933161,23.583694837568203],[-105.84537522232205,23.596572977473272],[-105.84551601141266,23.603255536410245],[-105.82483243916073,23.607789673101763],[-105.81164389711438,23.611028555696066],[-105.80734990838408,23.5906338665406],[-105.80664678311382,23.588873019505684],[-105.80209849750719,23.58771348906066],[-105.80232080483069,23.586499284836748],[-105.79885397930838,23.583428609215787],[-105.79672802487909,23.583391699875506],[-105.79607749028531,23.580580092639025],[-105.79342406082571,23.57803644005145],[-105.78983845809438,23.57852404328088],[-105.78433183891826,23.573242037481577],[-105.78519026469172,23.56912232864636],[-105.7848767036794,23.569126784813136],[-105.77966589794448,23.566829743005542],[-105.77829507749362,23.56413504045912],[-105.77657993041623,23.56391850838895],[-105.77495888260734,23.56134425473465],[-105.77291202665475,23.560997693164268],[-105.772352318419,23.558913152304513],[-105.77250126932228,23.558578078482867],[-105.77028373398355,23.557664429899035],[-105.76770692497638,23.552384586852895],[-105.76755953820123,23.551545271230907],[-105.76934231789392,23.54802775854],[-105.76800562470146,23.545661705964108],[-105.76912351309954,23.541939345717196],[-105.76416127688668,23.538740405051442],[-105.76037570330169,23.53510615595104],[-105.75893427826912,23.532008104035754],[-105.75965226341935,23.52687606635169],[-105.75781464757,23.526341714840214],[-105.75754991652758,23.526284178937942],[-105.75679754319685,23.52447626510309],[-105.75764473911704,23.519479673850924],[-105.75662502365293,23.515548562678134],[-105.76007778651149,23.509139373842686],[-105.76040729790623,23.50320095257365],[-105.75501324027374,23.500983784491268],[-105.75103755880116,23.500274990809373],[-105.75069051508899,23.498025578223917],[-105.74842830089204,23.49581572832443],[-105.7486304348094,23.49367174544784],[-105.74471954462393,23.492144696054595],[-105.74304808561646,23.489918296148005],[-105.74009421938467,23.488641084333665],[-105.73935465324479,23.485340566938135],[-105.73645025458853,23.484376609170283],[-105.73415426166633,23.482382977406246],[-105.72980355100668,23.48232660980341],[-105.72774863972023,23.478809874222407],[-105.72344477915249,23.474840145978703],[-105.72651430392978,23.47141064633354],[-105.72806348724782,23.46681726717776],[-105.72712308586273,23.464023743816313],[-105.72454879069704,23.461408663069903],[-105.72515070822692,23.460092547697116],[-105.72694520351973,23.45909298415262],[-105.72872996466538,23.45858308500732],[-105.73041683984712,23.452697716039893],[-105.73388450751463,23.452178622054987],[-105.73869061694478,23.447951898918916],[-105.73839205856223,23.444638248565866],[-105.72923171033483,23.440231301529593],[-105.72803869302402,23.43889505442513],[-105.73053369357496,23.434619938900823],[-105.72956691483932,23.430322465817255],[-105.72833091088052,23.428984465103667],[-105.72506640088608,23.42855776822995],[-105.72092357511201,23.42634716594256],[-105.71723486469392,23.427066674926152],[-105.7111373927986,23.425431214681055],[-105.70778580048017,23.425963601000092],[-105.70457707444541,23.424846668724342],[-105.70363854542052,23.422302055170917],[-105.7003208449317,23.41968587015083],[-105.70400234962017,23.41126299940504],[-105.70968679310181,23.409083804547606],[-105.71040920988258,23.40758317010335],[-105.70860056994479,23.404121503525403],[-105.70972766900826,23.40076265695086],[-105.71133059687577,23.399084526236834],[-105.71174973054809,23.393496075669987],[-105.71305717563746,23.39234757009598],[-105.71509067706114,23.393256308349123],[-105.71800823168206,23.39192406033004],[-105.72130616786399,23.388014542357382],[-105.72280170808551,23.384794988706687],[-105.72026664739252,23.381133596611903],[-105.71729254866938,23.380037022087436],[-105.71885753545388,23.377665099014678],[-105.7232857936304,23.376572235878882],[-105.72587186800405,23.376996409687308],[-105.72698135881183,23.377460320335558],[-105.72921725666703,23.378107391535366],[-105.73051669079621,23.376951290669297],[-105.72994598709238,23.374010386411555],[-105.72420296027713,23.37238682644721],[-105.71906388544852,23.36941415907296],[-105.71780847906496,23.368334448907206],[-105.7153793947619,23.366820099920403],[-105.71556109776299,23.36552465251168],[-105.71224505812154,23.364281373683127],[-105.71166797226243,23.361347950720642],[-105.71305098987489,23.353942222917055],[-105.71541783433611,23.352621976653438],[-105.71400074647534,23.34961680309135],[-105.70743920757707,23.35015278940483],[-105.7051713736821,23.348731734301168],[-105.70396123369528,23.34048363831505],[-105.70165835853868,23.339893406495037],[-105.69707855330114,23.341763084867296],[-105.69405592097183,23.34015445484613],[-105.7001634857429,23.335963584285878],[-105.7021935010452,23.331881090738023],[-105.69872317729488,23.327479421757403],[-105.70077716642828,23.324240337874016],[-105.69456744185152,23.32157057554332],[-105.69327465688127,23.319013545897008],[-105.69233118475051,23.310974820370006],[-105.69833894519627,23.310232312487415],[-105.69936723897331,23.307547900809595],[-105.69140661603825,23.30528086872505],[-105.68888840052676,23.30747004822672],[-105.68735997632535,23.306425611847942],[-105.69262002595252,23.30277208172396],[-105.6938158404352,23.30030488431936],[-105.69016131586045,23.297802833085086],[-105.6907711534231,23.29461596864394],[-105.68708411108628,23.287520012808557],[-105.68545644630075,23.28611549320715],[-105.6848097431947,23.285742113642527],[-105.67818058535892,23.286013800431874],[-105.67623754582729,23.285269057533412],[-105.675127002316,23.282160889475563],[-105.67136428287557,23.28227100928251],[-105.67033384664836,23.2826014143252],[-105.66594546185752,23.282192411729],[-105.66378510532962,23.284339296288692],[-105.66522534325196,23.28664942694951],[-105.66370825909246,23.28742015713607],[-105.66110728657384,23.284262849184984],[-105.65828453933113,23.282194013575634],[-105.65437528294177,23.28196949039392],[-105.64887041446877,23.278608675586497],[-105.64691712400725,23.278716838316996],[-105.64493059254704,23.277616195705605],[-105.64287065773442,23.275433156638087],[-105.64500496713379,23.272407302415616],[-105.64546107844615,23.269368352877905],[-105.64279398859338,23.265969694919818],[-105.64631550718246,23.26368132451944],[-105.64774840624256,23.260310667366753],[-105.6468431156955,23.253365803619374],[-105.64609776281998,23.25177474568295],[-105.63918182533854,23.24501738578448],[-105.63987976232676,23.24298416003029],[-105.64131560457167,23.24175760730816],[-105.64234394850371,23.238076011182443],[-105.64072897996226,23.23747744843621],[-105.63439670992886,23.238106999801232],[-105.63188033034538,23.23738553775877],[-105.63031734641021,23.235581089633456],[-105.63152669511538,23.229633986065778],[-105.6314438922297,23.22364026629441],[-105.63071618011656,23.222136070484737],[-105.62953382455697,23.220176891972017],[-105.63094903628593,23.217709802486752],[-105.63408463899549,23.21650454262044],[-105.63567741284021,23.214054065886558],[-105.63034095822263,23.207495765548913],[-105.62971252522641,23.202294527257095],[-105.63177674241354,23.201530752171266],[-105.63522648365745,23.196922642194636],[-105.63416512943888,23.190822446929644],[-105.63515031703844,23.188938803219287],[-105.63552993566111,23.18854290802426],[-105.63614958986079,23.188489312001707],[-105.63952579707541,23.18712392181112],[-105.64071790632653,23.18545119089896],[-105.6385527148758,23.18156997303913],[-105.6341603707454,23.17645297012831],[-105.63303894275049,23.173448993808677],[-105.63317218361027,23.172751029473318],[-105.63348311282402,23.171894640655125],[-105.63784184642856,23.168902905462915],[-105.6390095627221,23.166917533661945],[-105.63855769146056,23.162261528080137],[-105.6367688949536,23.157567626978732],[-105.63861698402951,23.154828472748534],[-105.63981601032299,23.154323062031324],[-105.64580539831093,23.151501519522753],[-105.64617925413705,23.148890576685517],[-105.64525944275817,23.143696081082453],[-105.64399074908602,23.141768069909688],[-105.64093557957972,23.14013744017251],[-105.63708717140213,23.136202812101317],[-105.62994488610497,23.130881971408485],[-105.62672576575335,23.125482989086777],[-105.62352927775561,23.122336000246946],[-105.61875504274826,23.126303476179828],[-105.61619674574922,23.124900567131363],[-105.61751438251815,23.12221408397488],[-105.61153421771951,23.122553619460803],[-105.60695992091559,23.12178868288595],[-105.60574298786435,23.11844930587972],[-105.60774143304349,23.118509280709077],[-105.60904624429406,23.116635378397177],[-105.60583394940346,23.115987038932076],[-105.60377264622855,23.112925517226756],[-105.60180396600856,23.114138079610257],[-105.59764086075603,23.1091496077226],[-105.5945653235346,23.11116691857586],[-105.5903274443117,23.10929372734546],[-105.58920929380542,23.109744730986847],[-105.5886241005665,23.11021983817352],[-105.58779157408276,23.11081801254062],[-105.58642726452223,23.111209157162193],[-105.58424808580912,23.112860307983055],[-105.58340203876281,23.112300353717558],[-105.5797663006548,23.109321583856],[-105.57814988958575,23.109066332305076],[-105.57518903312388,23.11017936442522],[-105.57621683343956,23.10758389467628],[-105.57537674437424,23.10496689080435],[-105.57388529999378,23.106197670453014],[-105.57016826612232,23.106717919748576],[-105.57104972558056,23.108691395645053],[-105.56934276512862,23.110057503046676],[-105.56569056279216,23.10830476850532],[-105.56305582475858,23.10498171585857],[-105.5589408243901,23.103688512465],[-105.55825427089968,23.101830298043183],[-105.55506757623198,23.098990729959212],[-105.55099634466978,23.099193130465324],[-105.54928376836176,23.10047333273826],[-105.54861212722642,23.10441770048709],[-105.54756683227396,23.10329177880942],[-105.5419153007058,23.104440835132266],[-105.53962974097846,23.10356452434229],[-105.53707398393186,23.10454107003227],[-105.53744444502735,23.107647714952236],[-105.53413289462355,23.10992192089992],[-105.53162363543078,23.11336304809589],[-105.53245266249672,23.115135299147425],[-105.53121628989732,23.118061327039015],[-105.52749740181423,23.11994338888178],[-105.52510861212534,23.119888713694195],[-105.52116206394783,23.122242376416523],[-105.51915741747729,23.124365372762327],[-105.51668301439622,23.125027455671216],[-105.51388073781288,23.124022720716425],[-105.51236503044981,23.12515779187845],[-105.50777451416013,23.125062467198006],[-105.50403374815357,23.127729419762034],[-105.50197815580185,23.12801163635845],[-105.47467575424832,23.121993735197236],[-105.4553191863605,23.11733566903689],[-105.45153912072675,23.118835044071545],[-105.44618796651389,23.11962928334998],[-105.44514320712545,23.119163671357285],[-105.44036619514799,23.11669645425286],[-105.4340808588966,23.120461437904794],[-105.43054851203351,23.11997387092424],[-105.42442738043832,23.12029232585354],[-105.4197673274453,23.11752844887576],[-105.41589235759312,23.116897342303787],[-105.41324266653197,23.113055933678595],[-105.41311242511244,23.109528110271526],[-105.4079362189978,23.102953954000952],[-105.40141915455416,23.103476719409173],[-105.39879553045296,23.102210946675598],[-105.40034869861557,23.100013184699264],[-105.40097078676558,23.095129820032696],[-105.39901605088272,23.09181356932538],[-105.39926057376113,23.089276016265444],[-105.39579795055073,23.086489119065334],[-105.39231363223729,23.085331441746007],[-105.39224539040015,23.084081987575132],[-105.38534526455254,23.081791764426725],[-105.38471202713947,23.0844800795997],[-105.37987757794258,23.080931210476706],[-105.38057949121276,23.07927851893288],[-105.37792701648294,23.07776254099167],[-105.37544959563428,23.079035245563773],[-105.37065511137911,23.074916731464782],[-105.36567915511296,23.07404044880377],[-105.36404482974217,23.075197487187666],[-105.36110850133872,23.073391543086018],[-105.35831631173903,23.0739233708415],[-105.35734797188735,23.071902672309136],[-105.35899208311724,23.06927067314666],[-105.35852382071374,23.066281235059193],[-105.35612467268027,23.065137191204883],[-105.35769129230772,23.062974575175872],[-105.35335069676478,23.062169505626002],[-105.35047118817857,23.060575344632184],[-105.35066059662586,23.058359931284883],[-105.35285970077382,23.055292802620727],[-105.35069738293731,23.051849597430248],[-105.35412352408576,23.050151719829103],[-105.3547484702795,23.04738925338023],[-105.35813554284522,23.046794306690117],[-105.35608220127938,23.044173710278073],[-105.35421259485327,23.037563893251388],[-105.35184715663337,23.03742165109111],[-105.35079626213536,23.035634462651217],[-105.351645134215,23.0310063911856],[-105.35332032513202,23.028541779466423],[-105.35247920609964,23.02476396483428],[-105.35374963645677,23.019438388399692],[-105.35275825522649,23.01961423109441],[-105.34923440773463,23.016437507193928],[-105.34974086214191,23.015124287374647],[-105.34314960114153,23.012342475356718],[-105.34496497612054,23.0099457629355],[-105.34273631134715,23.00722859710487],[-105.3410256961862,23.00836979585779],[-105.340425883651,23.00351966413399],[-105.33614700465148,22.996032586106708],[-105.3338038763539,22.995224850052352],[-105.3345804420212,22.993415475515746],[-105.33877590521286,22.99349763858089],[-105.33837844427518,22.99114959534387],[-105.33507308224932,22.988426474841276],[-105.33671854632354,22.984740332476974],[-105.33959564235988,22.983503282415995],[-105.34005324706112,22.982003983685672],[-105.3362372258631,22.98002840272585],[-105.33730648011846,22.977381764604615],[-105.33944925367206,22.976396562676882],[-105.33687593908991,22.971685235031543],[-105.33837853999222,22.96969945340925],[-105.3425061420898,22.970415983858402],[-105.34274084679492,22.967478498786875],[-105.33843680669077,22.966477953731385],[-105.33711875695786,22.96768875378359],[-105.33730408118493,22.964136680997115],[-105.33333263445081,22.962080843510023],[-105.33068541384432,22.96269176688304],[-105.33384969188472,22.9561141758777],[-105.33414166153398,22.9534089184221],[-105.33202493912012,22.95170632835675],[-105.32961246713649,22.95287205784905],[-105.32827705589108,22.95201850951662],[-105.33049008129768,22.94798331594194],[-105.32871873133587,22.9474184085679],[-105.32834204443009,22.942988274342042],[-105.32356988674525,22.941330167577462],[-105.29769906421069,22.954162106136437],[-105.2540857008143,22.95627161693642],[-105.16357409079063,22.953871926209956],[-105.07601578638582,22.959638824010653],[-105.01382461633006,22.977672830010476],[-105.00313941619584,22.976982679093112],[-105.00822175740393,22.971496184994578],[-105.0083410468078,22.96845869455302],[-105.00596271735378,22.965579686856984],[-105.00320625367254,22.960102164940565],[-104.99802086649106,22.957173459943647],[-104.99843798209258,22.954550655042738],[-104.99689313648275,22.95200159858365],[-105.00031172098443,22.94720971677839],[-105.00083726554033,22.94386776550533],[-105.00396295564894,22.940654279813373],[-105.0048811569655,22.93755532655473],[-105.00419203552514,22.932013031428085],[-105.00994115054289,22.92654208817106],[-105.00971035808078,22.92148193381547],[-105.00560619436817,22.91695404800572],[-105.0048139234276,22.91456209606571],[-105.00195616724665,22.91194868239677],[-104.99985694421514,22.907195604669084],[-105.00228688920214,22.905979789158096],[-105.00567614374768,22.906742186948293],[-105.0050691333048,22.903552068066006],[-105.00071116636087,22.900662640713506],[-104.99505192298136,22.892979996796385],[-104.99321201700002,22.891490920889908],[-104.98894468181646,22.890883248203863],[-104.98779563701697,22.888252022103586],[-104.98805612019555,22.88275128971469],[-104.98704122077498,22.88150592568678],[-104.98743577904645,22.878567935307615],[-104.98970044359896,22.87655185148401],[-104.98849884247886,22.875040360331354],[-104.98812671394205,22.870289253557928],[-104.98856961439378,22.85939464746599],[-104.9878699732568,22.85551522605715],[-104.9906141156448,22.85214500089421],[-104.98746425087518,22.84618438602672],[-104.98965345930776,22.83886022509688],[-104.98840523076439,22.83604932423907],[-104.986088476401,22.834010022360246],[-104.98151257732883,22.832446487088646],[-104.97827638551837,22.826201332623782],[-104.97392153449101,22.825722105930083],[-104.97169172361527,22.82466164634735],[-104.97114779595893,22.8205857631541],[-104.96645256767454,22.818507395293352],[-104.96439468016416,22.815176989599365],[-104.95896731193415,22.813604605140483],[-104.95498800998018,22.81624960696837],[-104.953248341772,22.820494462827526],[-104.95001255712651,22.821774638612965],[-104.94050486343906,22.81616328152893],[-104.93602404087221,22.82650436536295],[-104.93279784138946,22.827308746067047],[-104.92975443899064,22.8264286575361],[-104.92713361825065,22.8242470574707],[-104.91949075853171,22.820625635980946],[-104.91717750614339,22.81719365097115],[-104.91310011306535,22.813782449813516],[-104.91146597561567,22.809334400529053],[-104.90825680382937,22.807600585187288],[-104.90839071547657,22.805353501188733],[-104.91132931830634,22.803192282928194],[-104.91013314624274,22.800657034944948],[-104.90560075427373,22.799817191243164],[-104.90571527080783,22.797591590676177],[-104.9077102716941,22.795326726380267],[-104.90990659480457,22.795378146554356],[-104.9130174993494,22.791704406774556],[-104.91335387367798,22.788938273218946],[-104.91035091208613,22.78640688809503],[-104.91030866589676,22.782027533842268],[-104.91341707456081,22.77529387045115],[-104.91329964779419,22.773159098186568],[-104.91150731830686,22.769738069762298],[-104.91263848215647,22.762730101806994],[-104.91431530087414,22.76026490003437],[-104.91442517815688,22.752620382171358],[-104.915636642614,22.74853797430893],[-104.91295887011592,22.74556901305857],[-104.8927204430077,22.73740924815604],[-105.05730270053789,22.688094001317722],[-105.06842279804312,22.6784139029088],[-105.07236894474318,22.65649909418022],[-105.00755274270438,22.58567196196026],[-104.98791315689056,22.498726616996407],[-104.96052517512175,22.505311442311438],[-104.86249312271934,22.60707049138597],[-104.85839705658123,22.648326703826285],[-104.84011642842626,22.65113857385535],[-104.84112672797198,22.649394597005312],[-104.84079279513031,22.646588474652333],[-104.83717456860802,22.64603051935245],[-104.83209866256607,22.641399378944016],[-104.82943256566057,22.640226459196015],[-104.8271769945689,22.640857298822937],[-104.82204377084923,22.639671058263502],[-104.81867298206112,22.64046537989384],[-104.8166919802826,22.63968264417366],[-104.81522940567459,22.637209308546517],[-104.81647232108054,22.636090657215334],[-104.81467751001367,22.63424918939478],[-104.81130877119477,22.63476545616294],[-104.81107190273144,22.637853248804277],[-104.80685049866725,22.64006952615472],[-104.80440031520811,22.639829779988474],[-104.80277265995556,22.642405469931077],[-104.80529002090879,22.64739391398075],[-104.80425594867268,22.648743863693994],[-104.79654581343584,22.64817081131156],[-104.79399207953884,22.64871098479921],[-104.79177840041103,22.647414379301892],[-104.78921661010156,22.647943722920616],[-104.78441248586142,22.645803888687283],[-104.78352798248858,22.644650284288957],[-104.77918724756853,22.64293144055739],[-104.77783302742887,22.63968144316391],[-104.77879199689238,22.63686192984295],[-104.7742124611521,22.632820972665172],[-104.77614434422645,22.63047533676297],[-104.77582948223557,22.62733740486857],[-104.77711090254462,22.624996180105143],[-104.77602345925288,22.622567687226194],[-104.77699827767998,22.619831534631714],[-104.77558116072493,22.617222022280657],[-104.77637144196501,22.615475199337084],[-104.77622730938299,22.610064145304534],[-104.77871151286269,22.60645910854049],[-104.77967938772963,22.60302388927994],[-104.77784395981064,22.601767518440795],[-104.77836772019509,22.59935728318635],[-104.77595810802018,22.597621796024555],[-104.7758041903823,22.594225834516465],[-104.77257268142154,22.591897602525478],[-104.77593419762621,22.58512330594135],[-104.77186008591087,22.582233618281123],[-104.77024739497995,22.582501366675956],[-104.76708710336032,22.580852767935767],[-104.76593491690778,22.578011334692064],[-104.76374018249305,22.57623822709371],[-104.7615201578239,22.57008345149984],[-104.75719239462006,22.567088064470738],[-104.75176760937399,22.56502557915934],[-104.75013404070279,22.565220850647563],[-104.74081380613478,22.561036284228123],[-104.73705300355618,22.55809566213992],[-104.72877606547263,22.558743392267388],[-104.72523035714568,22.561520970351523],[-104.72323011367297,22.566972549875516],[-104.71979677893984,22.569045218301596],[-104.71780205231039,22.56481813753743],[-104.71859099017092,22.56275668469908],[-104.71685327135151,22.560962171245876],[-104.71516436369012,22.555948796546488],[-104.71105185571639,22.556585845813515],[-104.70873707784995,22.554624316405636],[-104.70503603440596,22.555929543730826],[-104.70429853278051,22.554995411392554],[-104.69499846111609,22.55662627569575],[-104.68979410034711,22.558388671106513],[-104.6858001627532,22.55778809100883],[-104.68095799443427,22.559096238491634],[-104.67594361188458,22.561423275283346],[-104.66999832447783,22.565261731734324],[-104.66762196366204,22.562545196172493],[-104.66618013930952,22.55537598735748],[-104.66234982626617,22.550675072857132],[-104.66372450748042,22.549269382057616],[-104.66274500658051,22.54736222365699],[-104.66001524600193,22.54675007241798],[-104.65900207491569,22.542271107582337],[-104.65649529691899,22.54131546406154],[-104.65688961771622,22.53609131427004],[-104.65561034230313,22.534189277666997],[-104.65679126586014,22.533218283373685],[-104.65529701301006,22.52925788267936],[-104.65565255434802,22.526500534417096],[-104.65405065327707,22.525324081735846],[-104.65458420077078,22.52340629806355],[-104.65416853716687,22.499696631656832],[-104.65362898008715,22.49811873966587],[-104.65529172905428,22.462154658231043],[-104.63835965906287,22.463419395788037],[-104.60259198717245,22.46051481096663],[-104.60212652430846,22.45543707248487],[-104.60435787213424,22.450648880356937],[-104.60365469006035,22.449405016386322],[-104.605309094282,22.445191311604958],[-104.60251944818447,22.44254080060159],[-104.60150911194296,22.43916836923131],[-104.59909887435276,22.43868829717951],[-104.59717620943684,22.436755344812127],[-104.59707609395292,22.433872397043103],[-104.5987667346846,22.432017988949497],[-104.59552287437413,22.428590529060273],[-104.59564066022153,22.426714492189888],[-104.59353421853899,22.424765097998545],[-104.59455581386885,22.422810306239],[-104.59296433601259,22.418562342461485],[-104.59407861554621,22.41519955233565],[-104.59272402727163,22.411829248062816],[-104.58846968633418,22.41265440172907],[-104.58680043967462,22.410169978708552],[-104.58661054564811,22.406270719358474],[-104.58377685558202,22.406073067670036],[-104.58207429896748,22.40044767748026],[-104.57458940493501,22.394760028740052],[-104.57186892498703,22.393938318443247],[-104.56563403584278,22.3952770031475],[-104.56087914009436,22.39477857248488],[-104.55871511955911,22.3934389315354],[-104.55773596737401,22.386066192463886],[-104.55125297324753,22.3888665949695],[-104.55095461236556,22.38562103699178],[-104.54911305745122,22.379175026190183],[-104.5476687589362,22.376293434105264],[-104.54464181032426,22.37508862213417],[-104.5398938416393,22.37173301913765],[-104.53777664542503,22.367025636857022],[-104.53518045518791,22.364226454477432],[-104.53001235348052,22.363647634194933],[-104.52718362602224,22.36144321501598],[-104.52263218869291,22.360378274737457],[-104.51865866502766,22.36060394579863],[-104.51704178087203,22.35716924786351],[-104.51330495017987,22.354047851851988],[-104.50739822835862,22.346031529998015],[-104.49962695564722,22.3461840638044],[-104.49602995088918,22.35023639487048],[-104.49385614415854,22.351170440678118],[-104.48818141337921,22.35149275133631],[-104.48460643073139,22.34925966591925],[-104.48120967246001,22.35161691822657],[-104.48120594274695,22.35272830178741],[-104.48522683312507,22.35243564209128],[-104.48733262042003,22.35318886986886],[-104.49098568678136,22.35750437117963],[-104.49250182586763,22.360807492284266],[-104.49499027067316,22.36053209787724],[-104.49480057872785,22.362710596215436],[-104.4910353475612,22.3638224407876],[-104.488918794759,22.36537968966229],[-104.48786036847463,22.368905082984668],[-104.49112307482221,22.372335190539957],[-104.49314872085904,22.37128928374733],[-104.49541680162042,22.37261088617663],[-104.49538984815666,22.376324145369153],[-104.49413520173641,22.376254993840405],[-104.45924499309018,22.3868431912922],[-104.44521535909126,22.39308560918272],[-104.4319258167319,22.39804827302612],[-104.42297539087843,22.401797902521537],[-104.39741031431191,22.411917107018667],[-104.37151221068717,22.421658643193894],[-104.34884292248154,22.409716640483452],[-104.34445865135245,22.417571471596432],[-104.34081687144516,22.419604411168507],[-104.3357178294558,22.420293007946327],[-104.33821293515143,22.42218049676154],[-104.33697821729595,22.4240371540497],[-104.33416036595514,22.42166342354369],[-104.32944782099423,22.42676526619374],[-104.33114168345293,22.43012727184788],[-104.32933183001745,22.43224029744823],[-104.32933358286004,22.42828313889146],[-104.32748368926815,22.429326787064895],[-104.32300884868687,22.428014422262265],[-104.32018806065275,22.43009424647431],[-104.32220507895482,22.435252044804997],[-104.31941185042672,22.43581102743815],[-104.31910466426922,22.438102562164033],[-104.31751092595431,22.438279003491346],[-104.31824183868002,22.440745167555974],[-104.31612436065006,22.441302729404015],[-104.31507252347836,22.444320739344846],[-104.3157608144046,22.44718273427975],[-104.31476970912667,22.448760240903027],[-104.3114865825396,22.44924730029777],[-104.31146775941096,22.44933285789881],[-104.3110500632921,22.45057245140947],[-104.29902542297435,22.46170187091866],[-104.29855099635012,22.46354877680966],[-104.29612581152605,22.472989082817662],[-104.30283132886859,22.492016702859758],[-104.31436284800986,22.507095425800742],[-104.31949916573342,22.51766332687373],[-104.32089476457259,22.52641693834198],[-104.31965750069202,22.52947499373397],[-104.31974751219781,22.532528759554793],[-104.32270476977249,22.53302691103113],[-104.32582417686643,22.537396656074804],[-104.32311493593528,22.537112182348324],[-104.32106329337745,22.535516320430816],[-104.31551154975949,22.54116608466984],[-104.31052392430229,22.544535738069214],[-104.31005541481682,22.546136692413597],[-104.31318366691602,22.54722801964823],[-104.31118348664677,22.55401046830866],[-104.30568929822408,22.55788863862017],[-104.30240858627388,22.55805032863691],[-104.29705267846595,22.555116150573383],[-104.28884961395875,22.552965229935694],[-104.28957426281664,22.558763212825568],[-104.28885517798375,22.560943233130843],[-104.28399445160625,22.566970704393214],[-104.2837776880624,22.570994611923936],[-104.27886679534123,22.57660432637175],[-104.27777303254595,22.579353663182417],[-104.27817274147242,22.583070970890617],[-104.27620462653528,22.58428440042968],[-104.27360234917592,22.587949936086943],[-104.27058766074413,22.58895524955568],[-104.26641081423651,22.588007383632487],[-104.26405603392453,22.586404723759756],[-104.26140747302384,22.586202844924344],[-104.26154728081974,22.588897264998423],[-104.26047102511143,22.593544273101372],[-104.26025762602052,22.595214032608567],[-104.26186983653253,22.598041144846036],[-104.26745853684292,22.603129559383717],[-104.27369140789853,22.60638888688868],[-104.27448988818537,22.610074621633487],[-104.27623010434581,22.61290530383269],[-104.27592859770863,22.61523652553103],[-104.27606536300453,22.615703163686362],[-104.28151577486807,22.617068860220172],[-104.28328788786598,22.62170324268834],[-104.27874695918473,22.624961535863747],[-104.27464646375097,22.62661148242495],[-104.27403085169374,22.62682699490358],[-104.27364237239397,22.63028201605721],[-104.26927494557373,22.6358211150619],[-104.27280612938188,22.639554315320026],[-104.2781138797352,22.641927054049745],[-104.27838827202095,22.64220833097687],[-104.2804403210107,22.645063703020696],[-104.28335794074655,22.646118449710173],[-104.28639916230827,22.644633459384636],[-104.28962404695505,22.644459984769128],[-104.28958899635848,22.64877543230199],[-104.28722295206563,22.650337105132678],[-104.28155930382377,22.651302930759073],[-104.28064710193757,22.654323807297885],[-104.28485228206011,22.659340614457108],[-104.28577881655411,22.659787023020897],[-104.28832674085231,22.663525896809404],[-104.28661497177342,22.66810707330393],[-104.28247276786578,22.669311282526564],[-104.27877385160815,22.671699239827603],[-104.27957175207882,22.673871945382473],[-104.27875823528632,22.67620768658719],[-104.27540148676087,22.680194752377247],[-104.27438178210645,22.684920563952744],[-104.27677699636973,22.68717607936327],[-104.27833139233644,22.690223111230637],[-104.27966323656085,22.695863459286784],[-104.27762982555464,22.70240683381985],[-104.27355267102462,22.7066014397779],[-104.27100807694075,22.707716129397795],[-104.27121212153315,22.710560889901387],[-104.2674387654589,22.712021936532608],[-104.26346865206904,22.717384307521456],[-104.2630629231844,22.7176433373603],[-104.26800931097188,22.717782496577627],[-104.2691523558334,22.72086489004107],[-104.26761036523851,22.73154974611265],[-104.26634439515067,22.736539366029035],[-104.26199930436053,22.738454191165886],[-104.25836751414391,22.7389258055822],[-104.25615936805463,22.742092073339165],[-104.25574519877148,22.74267875651924],[-104.25077898157144,22.747998766470744],[-104.24637878259426,22.748424023674033],[-104.24410984976163,22.750072892096284],[-104.23734983947423,22.749783430490652],[-104.23562355850356,22.751909262706704],[-104.23207464442777,22.753103934507294],[-104.23190265873018,22.757772502729267],[-104.22942917284848,22.758905998433306],[-104.22640233454058,22.762412629829953],[-104.22683601514916,22.764106745740094],[-104.22458850279327,22.766689801438645],[-104.22449760284616,22.77182599971104],[-104.22779313415856,22.774867103857503],[-104.2257440897489,22.778314925642746],[-104.2210387091879,22.779420159609685],[-104.2159051085888,22.778936221135666],[-104.2134132911977,22.77726059937345],[-104.20970432050427,22.77974326567619],[-104.20459190521956,22.777414912586323],[-104.19961436059077,22.776477842036968],[-104.19748141496922,22.773220426117916],[-104.19477695600148,22.771320114264995],[-104.19139132713161,22.770724099977656],[-104.19073405666796,22.768113962532993],[-104.18661407452026,22.76357681678354],[-104.18726137869737,22.76155297819082],[-104.18218084483789,22.75826810065871],[-104.1767227205487,22.758733328088624],[-104.17642373778767,22.758922798149797],[-104.17134623668943,22.759985267090713],[-104.16441668048122,22.758729753352384],[-104.15737940716326,22.75967965309826],[-104.14984441938776,22.762294432466604],[-104.14733198993679,22.76406568352104],[-104.14566197860631,22.76376007578051],[-104.1426124143706,22.76772653950883],[-104.13771625593398,22.768126813895094],[-104.13032977450621,22.76375464508942],[-104.12293530355652,22.76354821511552],[-104.11938149899987,22.762255726686874],[-104.11313615022931,22.764263711568844],[-104.1115867780905,22.766617733376904],[-104.10720303182427,22.76860051599931],[-104.1039556574147,22.767720533837633],[-104.10224368356597,22.764895036653513],[-104.09528525032124,22.759243512752562],[-104.09129032315883,22.760611430428582],[-104.09088906692483,22.76210155243109],[-104.0856732544438,22.763079009479554],[-104.08209329152595,22.764502092378336],[-104.08047522787842,22.766616807959167],[-104.08007163117918,22.769909071136624],[-104.0823745019149,22.773647428472316],[-104.08549244435244,22.775581370178998],[-104.09066560067424,22.77530432991341],[-104.0940686876159,22.77929899373038],[-104.09165133689311,22.782276240335875],[-104.09101546647315,22.782903931158046],[-104.0911487495589,22.783154017476477],[-104.09135319920199,22.783365598494754],[-104.0925258698058,22.789019354705204],[-104.09433364049289,22.789923570776068],[-104.09659629992854,22.787973512277745],[-104.09792024418505,22.7917601971796],[-104.09790771833627,22.792011639428495],[-104.09816528591926,22.792809730998385],[-104.09863159551645,22.792912984647387],[-104.1002241836702,22.794825219958454],[-104.10016995806018,22.796917150572597],[-104.09831496470338,22.798653523192854],[-104.0972709233373,22.798699830116846],[-104.09427213530802,22.801343149720083],[-104.09418028800866,22.801933294208027],[-104.09595331552629,22.806210889539443],[-104.10022986270923,22.805553993633623],[-104.10102678597025,22.805810002048418],[-104.1040832007468,22.808060032294463],[-104.10749205043118,22.808089271561812],[-104.11110321661494,22.809650276557306],[-104.11132499985683,22.81097163948715],[-104.106201465874,22.81349990499234],[-104.10635099354556,22.81403618407535],[-104.10993453599406,22.820271858863634],[-104.11014365647844,22.822955100976742],[-104.1069192531516,22.829536494056697],[-104.10443007642846,22.832460445866275],[-104.10635207461718,22.834595635168057],[-104.1071701049965,22.83727602681165],[-104.1073785595629,22.83820000780827],[-104.1089140332108,22.842574062967742],[-104.1109023552691,22.843594536481987],[-104.11572739984086,22.848415608066034],[-104.11682768357878,22.850951910846277],[-104.11592968261522,22.85534473832479],[-104.1132573356445,22.85588722817124],[-104.10976936274704,22.854687932119077],[-104.10714771765652,22.85502315517141],[-104.10630403080751,22.856887728429513],[-104.1081898018312,22.865372942527813],[-104.10843593851752,22.870458446864916],[-104.1071301827701,22.871923902825245],[-104.10861486585253,22.876347319997365],[-104.10893929691412,22.876718441323703],[-104.10952086615328,22.878353053827368],[-104.10719634567226,22.882152030908742],[-104.10759661580511,22.884258876308593],[-104.10750488469756,22.884796209027],[-104.10870492484179,22.886645717026],[-104.10901531670544,22.88684706645381],[-104.11192410754296,22.888361600824055],[-104.11305737627339,22.89109940951812],[-104.11313480397132,22.891575963226273],[-104.11347018234324,22.892325763359736],[-104.11368997707297,22.8925249124257],[-104.11757833284781,22.896779921164296],[-104.11613821000782,22.902626005147226],[-104.11320804095385,22.90390802666957],[-104.1128180484148,22.905312022258727],[-104.11559752443463,22.907151132911963],[-104.1160001511019,22.90751568099455],[-104.11633657660866,22.907667509423163],[-104.12052635180379,22.90623370974754],[-104.12292174439511,22.90343331217042],[-104.12450791943769,22.903984065933003],[-104.12516748847219,22.904211914567213],[-104.12951985918926,22.90477634617156],[-104.13022113372966,22.90454441329564],[-104.13344697396707,22.90571499181135],[-104.13434184930173,22.91055511578196],[-104.13710116883664,22.912304267467505],[-104.1354383019218,22.915380582281216],[-104.13526347805458,22.915493738055773],[-104.13503372919837,22.9168838233432],[-104.13765567935769,22.919889607181688],[-104.13870103991508,22.91886011386248],[-104.14052669790397,22.921429726679946],[-104.14413969792525,22.922444334559998],[-104.14794241949136,22.921261831518905],[-104.15112207323119,22.922137124245353],[-104.15235387382012,22.923935512473236],[-104.15298098944601,22.924404895217776],[-104.15528897382165,22.928434430237587],[-104.15543825752997,22.932916198708085],[-104.15375977928801,22.93651793517057],[-104.15598890610721,22.9396699290848],[-104.15838872188067,22.941190159203472],[-104.16529673771169,22.941752011081007],[-104.16659289692569,22.9452207260029],[-104.16427108893237,22.949311399558155],[-104.16698526027415,22.954457996940903],[-104.16785998491372,22.95898048586116],[-104.16761876154357,22.96262953729729],[-104.16772337015954,22.962812409726325],[-104.16822274345515,22.9635676201338],[-104.16636591756912,22.96948814287782],[-104.16264849563203,22.973799599425888],[-104.1628470430523,22.975302487393378],[-104.16453615337963,22.975348620241164],[-104.1689801410954,22.97978773276634],[-104.17254159344907,22.980949066493167],[-104.1736144558974,22.982444948405714],[-104.17343328755675,22.99994651692407],[-104.17308362360689,23.03134923921573],[-104.17281415202336,23.053609318426027],[-104.17273650067881,23.060022433534698],[-104.17220275308051,23.103079213136994],[-104.17213239360706,23.128407671384934],[-104.1543217646265,23.150800495448948],[-104.12902261952962,23.18221421213019],[-104.12696018943501,23.21299885754064],[-104.12602135056727,23.22530599525527],[-104.12414304985202,23.241312557684182],[-104.12349676009399,23.246819148774478],[-104.12312729175858,23.249952819145847],[-104.12231963200725,23.255162771122514],[-104.12077174681338,23.275309377285794],[-104.12046639758398,23.282082775317917],[-104.12027162684569,23.282850667146818],[-104.11997635361422,23.288221775281954],[-104.11791716685696,23.29362718888507],[-104.11639223011207,23.295397966170583],[-104.11645544434583,23.299354487451296],[-104.11625858773988,23.299994858327807],[-104.1145464697288,23.30298960314775],[-104.11372346495966,23.307775175714596],[-104.11517345190447,23.314177176605483],[-104.11367035615643,23.31787301831207],[-104.11286020030968,23.32556508226679],[-104.11507677885533,23.328409968832716],[-104.11121460011043,23.351205488187873],[-104.10920692548478,23.354957338127576],[-104.106773379738,23.35513850955357],[-104.10116799554555,23.366737154893883],[-104.09943605458159,23.378585150497145],[-104.09573936045689,23.38421226873504],[-104.08626759281299,23.39862762467044],[-104.08095931080072,23.42134565758539],[-104.0740699325653,23.438282993426128],[-104.06493050214436,23.46075692233063],[-104.06512613758048,23.463536138743052],[-104.05200332274882,23.47328553397034],[-104.03905773450998,23.483150780024687],[-104.02423450801513,23.49451166048476],[-104.0038709798236,23.507839256767],[-103.99893625150037,23.511789932449574],[-103.99643886315067,23.514671421557523],[-103.9921351247009,23.515617239688368],[-103.99197078260033,23.515818277560015],[-103.99181162965641,23.516004345747717],[-103.99019439483465,23.51559197816465],[-103.98624335089346,23.519563326386844],[-103.98451316032532,23.519101505941308],[-103.98294599473803,23.52202340796083],[-103.97794180254357,23.522777302343115],[-103.9774542454524,23.52430800537286],[-103.97252271281593,23.527171362976333],[-103.96985493219154,23.526532654755442],[-103.96682213295719,23.528896251808305],[-103.96276537737401,23.529894090306527],[-103.96030690769385,23.53351448200408],[-103.95909639686215,23.533535607971373],[-103.95672151551076,23.538456336425213],[-103.95440389586321,23.537824827799],[-103.95216899547836,23.539402594789124],[-103.95030114133971,23.53851840723803],[-103.94644450150406,23.5438063175784],[-103.94260775542887,23.54718833264002],[-103.939987087742,23.547322402484497],[-103.93683464552026,23.5497052681539],[-103.93635682916675,23.54988277257894],[-103.93494257144863,23.55117408698652],[-103.93465101965683,23.55171455310051],[-103.9308857816423,23.552641060144197],[-103.92395814494165,23.55845648714319],[-103.92171540027596,23.56204641997897],[-103.91982733008831,23.56268470198171],[-103.91809802658992,23.5652354263093],[-103.91627066425997,23.56572524227238],[-103.91664414482341,23.571226280300323],[-103.91830320721834,23.574686830320502],[-103.9199454455242,23.575778654803457],[-103.9206506308476,23.583783600201173],[-103.92183512524537,23.587134304497965],[-103.9218526936582,23.587275325494602],[-103.92094526560055,23.58905822259038],[-103.91227716111143,23.58812205097513],[-103.91404886976153,23.583267563981224],[-103.9119335756659,23.576082880115962],[-103.8905460715157,23.57973323203231],[-103.89099101828225,23.58145234976422],[-103.88985382362762,23.584927817785513],[-103.8904570683602,23.584918213342405],[-103.89268533707002,23.58487975106567],[-103.89375383494098,23.585883666241386],[-103.89517195187642,23.587735670064376],[-103.8961405549527,23.588469530444115],[-103.89747707758397,23.590808272742265],[-103.89747024031442,23.590894315712546],[-103.8982615095789,23.591561496763006],[-103.90485120269682,23.59710610680986],[-103.90372598750781,23.598656123314697],[-103.90352460605203,23.598934681893354],[-103.90686731441707,23.601870950210014],[-103.90491659007353,23.6030990527712],[-103.90266777866645,23.60252998872835],[-103.90257762597628,23.60504465732282],[-103.89900682387042,23.603971708921904],[-103.89041171717213,23.597911282121686],[-103.88794934741702,23.596173149179947],[-103.88252238284002,23.592270591706836],[-103.87780456548512,23.618704854801194],[-103.87344902293387,23.620467511878758],[-103.87433357290524,23.622373114105017],[-103.87738017232192,23.628869442180303],[-103.87698480270666,23.62911896302927],[-103.86353112305915,23.63422825752002],[-103.84917850886603,23.64008170290674],[-103.8370082260372,23.630376046017886],[-103.81916216194628,23.61666794514906],[-103.81130194576912,23.613648806698166],[-103.8044506461876,23.61920724584786],[-103.8023415109177,23.622662206647988],[-103.79948772446573,23.624251454657042],[-103.79779637992516,23.627403730403614],[-103.79354178519253,23.630855060843544],[-103.79214912501664,23.638620824429324],[-103.78789848060126,23.662317097462733],[-103.78510350043359,23.676564899342566],[-103.81347126061769,23.67787985416652],[-103.84760571492569,23.679440750185165],[-103.85108053478706,23.67959922318414],[-103.84974743433816,23.68157044241201],[-103.84429846381158,23.684573237996972],[-103.84441395937728,23.685277283232438],[-103.84101460799974,23.70124289374519],[-103.85448991584383,23.72792234581658],[-103.86236234362332,23.752638389303456],[-103.85463950397343,23.76244661135422],[-103.85382499416039,23.76344340158215],[-103.85122069984942,23.766701878293702],[-103.85028579944782,23.770685219977395],[-103.84760616152914,23.770838317825053],[-103.8436629718708,23.773198376884693],[-103.84415063989127,23.774192946572498],[-103.84075435159968,23.7780393384852],[-103.83539096391814,23.78259137746221],[-103.83509494946492,23.78508919199146],[-103.83320106426339,23.784769132770748],[-103.82702074359923,23.788548799971693],[-103.82357753843951,23.788913054932948],[-103.82027328619313,23.7918795053468],[-103.82058739399002,23.795677680189215],[-103.8222481582198,23.800762595989795],[-103.81994585636005,23.802357416512564],[-103.81639968370587,23.80821536219537],[-103.81809232109731,23.81067817038297],[-103.8311863746186,23.82466184248767],[-103.83145463280329,23.828381125282704],[-103.83202653439622,23.83874299453862],[-103.83262151634261,23.848930362727344],[-103.84975430729043,23.862565982533567],[-103.8531123542503,23.874615554780917],[-103.8308217798297,23.907760368579943],[-103.82695418264586,23.93004087180384],[-103.82327361088608,23.95134147233398],[-103.81835983419626,23.96490860313446],[-103.83394656660903,23.969642296285713],[-103.8375490274351,23.96408100320383],[-103.85027577749423,23.988837426262933],[-103.87238658312225,24.00702172348565],[-103.84782597886948,24.003236153858097],[-103.84312884538679,24.026967115773118],[-103.83222450511869,24.023980410929994],[-103.81327412758014,24.02197358208275],[-103.81028152556007,24.04009193859173],[-103.79977033057662,24.050564450127354],[-103.79761148855687,24.049460963494994],[-103.76003000597711,24.077245754895955],[-103.74564254182343,24.088965107138563],[-103.71069568128667,24.117416806588665],[-103.69522974432124,24.13029175924146],[-103.68265226752624,24.137194255622546],[-103.6789310526238,24.139200914089315],[-103.67712181943051,24.140187718672394],[-103.6767292514458,24.140402496554486],[-103.66036154768261,24.149326294179048],[-103.65806256514236,24.1455381497679],[-103.65438681655519,24.139556976643462],[-103.63596953409012,24.11029337712546],[-103.62200667308616,24.117464687790232],[-103.60576554336615,24.151154469223627],[-103.5795582327732,24.17845801041176],[-103.5809718675983,24.179583299732883],[-103.57630956037809,24.180988535285508],[-103.5742522175708,24.18171164765249],[-103.57111760092442,24.18273275521966],[-103.5693661600148,24.18352803003563],[-103.56606430955998,24.185224321161684],[-103.56183403818511,24.19137029029889],[-103.5615528519906,24.191596022644774],[-103.55973351398865,24.193316290088262],[-103.55981276875991,24.195499825413776],[-103.55972637706344,24.19619421714583],[-103.55925835661509,24.198411449159266],[-103.5598633415774,24.198838860078013],[-103.56144971019955,24.200834594008654],[-103.56175413171269,24.201426000915205],[-103.56310594644594,24.203606621418942],[-103.56309901741008,24.206524829335308],[-103.56361663822867,24.206854030930003],[-103.56537511159308,24.207996522888493],[-103.56459328021549,24.21507535778295],[-103.56193612349284,24.225170149539736],[-103.56206471024848,24.225751743657156],[-103.56315809021231,24.227969594803767],[-103.5625779520509,24.231107376544003],[-103.56008317491899,24.236632395960385],[-103.55649277864296,24.24200397710399],[-103.55858481009761,24.243836665865445],[-103.56080953675445,24.251119324642445],[-103.5633800892391,24.25452070758115],[-103.56289142653645,24.25682302387395],[-103.56300342233521,24.25731410477721],[-103.56399928881683,24.257559179072643],[-103.56738106768358,24.266129942988982],[-103.5674438696243,24.27026651305698],[-103.56870586987225,24.27164724324689],[-103.56844979357271,24.273445236911982],[-103.56783869096961,24.275472583556848],[-103.56741990975831,24.276861864154625],[-103.56835724819592,24.28194105261076],[-103.56834994058693,24.28637125562267],[-103.55885881598164,24.287507864062377],[-103.55502400408818,24.289472688130274],[-103.54769678752757,24.291456352639557],[-103.54135634501694,24.290113879879357],[-103.5378155257402,24.29035931064078],[-103.53605058709064,24.29163137139318],[-103.53086366501543,24.29374525475322],[-103.53009798194773,24.292308980364567],[-103.52724949016368,24.291773957178293],[-103.52375757105006,24.288959427932525],[-103.5232053755031,24.289043404491395],[-103.51850776928626,24.288688899138663],[-103.51444353870238,24.286790986817323],[-103.51281406937011,24.28822706649879],[-103.5080651236508,24.287722134690114],[-103.50675541238974,24.287964038887594],[-103.50665084808702,24.29096603927502],[-103.50439846836792,24.291957709567953],[-103.50407892263564,24.29604639600251],[-103.50019905240771,24.296325142777903],[-103.49685126437817,24.29836953797502],[-103.49284748123722,24.297989713720995],[-103.48606532524269,24.30005903470527],[-103.48481310336734,24.30190149947623],[-103.48601790014942,24.304943052401825],[-103.48492926847115,24.308675664604095],[-103.48588585173377,24.311383404680498],[-103.48567172373737,24.315035624012978],[-103.48406262905843,24.318340943467035],[-103.47999403516127,24.318929330482604],[-103.47719954240313,24.320612500828645],[-103.47413409534079,24.32014620341124],[-103.47364678983445,24.3202634347399],[-103.47321487374006,24.320529496299514],[-103.47168718637914,24.321574428092333],[-103.4681085196421,24.319879257129458],[-103.46240075545711,24.320644174896984],[-103.46141951005518,24.3228862056676],[-103.46032816297395,24.32349846325235],[-103.45702998839766,24.32814551319632],[-103.4564117710899,24.328458833760806],[-103.45432330746235,24.33026521409289],[-103.449030913694,24.332109767955444],[-103.44771039950683,24.33361702932359],[-103.44747369128748,24.337104287467696],[-103.44893017884203,24.33861576313342],[-103.44314777224344,24.34100513174519],[-103.44236792870106,24.342069172750712],[-103.44133055369207,24.341279287890586],[-103.43818521432934,24.345973825593717],[-103.43672098433979,24.34744282229576],[-103.43786429788673,24.349382421945563],[-103.43603924303989,24.351771907830596],[-103.43573596228123,24.35503474699516],[-103.43446309868182,24.35698642011141],[-103.43293211315643,24.35864981668584],[-103.43048223022845,24.360564252401048],[-103.4311820934368,24.361580018344057],[-103.4279508746036,24.371898983353276],[-103.42955084530831,24.373990776044366],[-103.42680162093092,24.378327572984574],[-103.4254294046491,24.380322727195164],[-103.42546195668189,24.382189051901094],[-103.42548672588379,24.382417598342954],[-103.42605679360338,24.382735137277677],[-103.42792805027227,24.38590926119872],[-103.42802728516403,24.386558511496332],[-103.425619530505,24.387417278972123],[-103.42586962848759,24.38927970708113],[-103.42588053756134,24.389372485902356],[-103.42607310065995,24.38952828784562],[-103.42808249388202,24.39214683618735],[-103.42781401558773,24.395124107454023],[-103.43002986269471,24.39910821988775],[-103.43035860933287,24.40135717288689],[-103.42840844249713,24.40252725545247],[-103.42882578279836,24.407340932889383],[-103.4301084516784,24.40919948030188],[-103.42956495123798,24.40951223705855],[-103.42893323222256,24.411678273374207],[-103.42567386851067,24.41297644067089],[-103.425338076142,24.415296603882496],[-103.42161928750647,24.41658762555801],[-103.42220922730218,24.420920866337894],[-103.42015789692016,24.421394322080403],[-103.42192545931067,24.424078114047006],[-103.42177214798073,24.424501286922236],[-103.42091642827478,24.425499889842797],[-103.41981877416373,24.4262453262823],[-103.42024141084954,24.42659508064571],[-103.42027416466931,24.427149886213783],[-103.41957905646194,24.430345932632065],[-103.41515016806926,24.428582899455705],[-103.41291395376845,24.428836305889718],[-103.41198940452585,24.42713800192945],[-103.40953050168946,24.426397260863496],[-103.40992739431243,24.428547295020564],[-103.40624939412595,24.427791529769138],[-103.40592901693071,24.429604774584618],[-103.40145666878493,24.428120308431232],[-103.39831939479927,24.429758836668043],[-103.39974886629784,24.432778683711945],[-103.39405638672474,24.4320992857767],[-103.38760505236974,24.427461602551887],[-103.38620479585364,24.422964725993438],[-103.33004213860829,24.42816005566408],[-103.32549606319083,24.42664874342165],[-103.3220409433763,24.427164824328713],[-103.3220262329603,24.428381207080406],[-103.31650308546682,24.42899422389104],[-103.31446320574196,24.431420209925875],[-103.31179203331669,24.432602051308663],[-103.30943182660337,24.435246672663084],[-103.30608937424302,24.43268723952724],[-103.30563978775808,24.43442356537588],[-103.30388651064061,24.43228796915423],[-103.29769908445633,24.430067780257332],[-103.29447504276175,24.43010744116941],[-103.29363838817477,24.43148941990563],[-103.2904583733989,24.43166361863291],[-103.29036297783637,24.431604916994843],[-103.28957500072642,24.429651469685552],[-103.28264548325137,24.42883702797485],[-103.28029531252088,24.429730558371887],[-103.27327488920326,24.43069694956938],[-103.2712106762819,24.433382967184286],[-103.2693627612162,24.43293694706864],[-103.26451908381091,24.4345809269077],[-103.26399746405536,24.435124346306736],[-103.2623006063045,24.439542796234093],[-103.26008203468297,24.442092471147816],[-103.2560279323049,24.444677113541047],[-103.25353178647629,24.44725380044082],[-103.24934468761967,24.446685908600102],[-103.24527739459108,24.444989858719794],[-103.24287783584134,24.43993496151427],[-103.23798654328351,24.43555037636918],[-103.2339795549571,24.43583823098612],[-103.23362854075941,24.43073031298701],[-103.23693332521412,24.43059099149417],[-103.23663564157806,24.427056598162892],[-103.23365551675784,24.42716298004666],[-103.23377656054572,24.42350090638206],[-103.22682556257661,24.42381089953517],[-103.22724847050671,24.420389216512945],[-103.22224622631006,24.420593694541367],[-103.22283354136175,24.41710277458526],[-103.21788780635353,24.417209922181826],[-103.2173318558909,24.42081082457355],[-103.20241077883946,24.42137486809264],[-103.20209150013415,24.424469131823912],[-103.18735090969318,24.423134575583333],[-103.18195342301789,24.41989658975166],[-103.18185468680622,24.424165587941843],[-103.17705852481316,24.431597244372142],[-103.17226064934619,24.434561164193042],[-103.16598227881349,24.435278186085725],[-103.16322253733563,24.434561229264148],[-103.16166727741734,24.43092802785776],[-103.1577258143015,24.427840631272602],[-103.15294976919148,24.4272319103369],[-103.14830953037438,24.427898129094785],[-103.14606059928076,24.42739531474797],[-103.13982635139831,24.428321401978337],[-103.13950925835343,24.428470916515096],[-103.12743797174676,24.422471273353267],[-103.11838375428289,24.415268964428037],[-103.09852728391928,24.40162659709904],[-103.08751464114187,24.436027043045613],[-103.07508097536072,24.422624579714295],[-103.05827835231952,24.445096340905877],[-103.0554069981444,24.44902676863404],[-103.04315020934376,24.466500857596372],[-103.04066434560269,24.465031140329188],[-103.02995663734737,24.45869958457928],[-103.01762283125129,24.45140481955383],[-102.98357280542285,24.433257160246228],[-102.96778091930162,24.457434143401485],[-102.96744017413289,24.45770363402721],[-102.90135818277327,24.428597138244015],[-102.9001065113925,24.42850048211716],[-102.90140330955103,24.431344841353848],[-102.90179220208671,24.435713782806204],[-102.8996902014211,24.4383975251194],[-102.89581231652204,24.440580955984274],[-102.89489429191707,24.44203715302939],[-102.89530645330291,24.4464903932124],[-102.8948759252695,24.4503507073959],[-102.89069395103678,24.451061110086187],[-102.89429151092247,24.45868698278855],[-102.8918909490647,24.461118119740377],[-102.88558415317311,24.45692728623669],[-102.87638234954346,24.449000712317854],[-102.8749132656668,24.450962088331437],[-102.86578549870808,24.439446224598612],[-102.86409574190941,24.436437063504286],[-102.8606209158284,24.434492352831057],[-102.86056495460582,24.43143713916004],[-102.86181751519689,24.43011546722903],[-102.86501268570737,24.430312079240707],[-102.85858259677718,24.422926823943442],[-102.85637143266581,24.424599301367152],[-102.85389205250243,24.424359153049068],[-102.8526030454828,24.41934324848785],[-102.84590276836121,24.39808258650595],[-102.83404482683466,24.390108554316953],[-102.83173561066235,24.384691903339217],[-102.83076240173386,24.385244978808714],[-102.822176023493,24.386567562512425],[-102.81678780261677,24.38991577520426],[-102.81241555873925,24.389494426103568],[-102.8084543918024,24.393600090015354],[-102.80109723015744,24.398460976320223],[-102.79757655956973,24.39872335199533],[-102.7919906395939,24.40540214274762],[-102.78885239992917,24.406248473468338],[-102.78107751256874,24.40273162513131],[-102.77916451234432,24.400144581343397],[-102.77995289360354,24.397706627826324],[-102.77902097171585,24.39552786964731],[-102.76939950668964,24.389665433053494],[-102.76818596029437,24.388313711622345],[-102.7644454572586,24.387021566072008],[-102.76508572630269,24.38498705232911],[-102.76269346624423,24.38152069058316],[-102.75909952064183,24.38064441905192],[-102.7566543305955,24.376983000258008],[-102.75160008623789,24.375826846523296],[-102.73801276739476,24.377453316676167],[-102.73071544009537,24.376066616797686],[-102.72202722313455,24.375362781105366],[-102.71437301848283,24.378216843787243],[-102.7088129484344,24.377838054553308],[-102.7039867895187,24.374132539225457],[-102.69990440557882,24.373971852155933],[-102.69904310449994,24.3762482396412],[-102.68663814408723,24.377098347507967],[-102.68658669196788,24.37821776750559],[-102.67920365881673,24.37995643044826],[-102.66235860287361,24.381576631482915],[-102.65966945198772,24.385904906112273],[-102.65506330348427,24.388603701613135],[-102.6534532314584,24.38803222478748],[-102.644694765684,24.39140202571093],[-102.62888267938757,24.3931761683192],[-102.6242622778085,24.39440049233434],[-102.61474006701235,24.397979032213186],[-102.61181447293887,24.39995531289111],[-102.60735870844894,24.405327890178],[-102.60655470669133,24.411167297525708],[-102.60020402896612,24.41094281826298],[-102.57781866096445,24.4101577849583],[-102.56581347241826,24.408808845595445],[-102.53393141268714,24.407722106605945],[-102.53388569957548,24.408612969989235],[-102.52858447369744,24.413667086147882],[-102.52670189301779,24.41622706290042],[-102.52279225950144,24.415247117752415],[-102.52230514125739,24.418396566083572],[-102.5206212690187,24.420606717643977],[-102.52014631105561,24.42393213346668],[-102.5082106446942,24.424240824523224],[-102.50086105891654,24.424788803988065],[-102.48171362989376,24.427440823458767],[-102.47971814406912,24.428558337518552],[-102.47809946401787,24.432870646349784],[-102.47791703163932,24.433220121557838],[-102.47510283688212,24.43890025396672],[-102.47269698140809,24.43967974209977],[-102.4731268744336,24.445214790785656],[-102.47918619274941,24.443762708804456],[-102.4793189462186,24.444486050769058],[-102.48699621221391,24.44422838556858],[-102.47980697006534,24.490448051016756],[-102.4836549368473,24.52213143943186],[-102.49158724198696,24.587391561844015],[-102.49464142824678,24.61255521154328],[-102.51218224621812,24.70972077728544],[-102.5154398716083,24.719479864920174],[-102.52044100512046,24.73586215881562],[-102.54918187077766,24.829935585133455],[-102.56537289986522,24.86635542193278],[-102.56623578275617,24.902220756601366],[-102.67306156808985,24.942752074723728],[-102.67298999902772,24.97623764683442],[-102.67298444898518,24.978818249845176],[-102.66742583457977,24.978787201841385],[-102.65042080373445,24.978690952187947],[-102.64295555218695,24.97864816403944],[-102.63382805896453,24.99955395165216],[-102.63554292138872,25.00416909703],[-102.62888483582441,25.008321663687866],[-102.64300189736406,25.027812825772344],[-102.64914393849307,25.027767116672578],[-102.65103820158339,25.032336415209443],[-102.65143723525392,25.03611243984517],[-102.6534438622736,25.040682706042617],[-102.6528307121581,25.04582467186748],[-102.65310757128344,25.046021324776916],[-102.6683128325597,25.063920232910505],[-102.66969398202963,25.066636492258624],[-102.72474521610695,24.978380252403497],[-102.74795191782295,24.94113320678889],[-102.82906985058372,24.810738034574968],[-102.8531307177318,24.772000946183766],[-102.85640279152273,24.739773965267545],[-102.85646962620285,24.73987621058393],[-102.85681677316478,24.74018473382057],[-102.85685959524847,24.74021936245356],[-102.85688147197902,24.740236925309773],[-102.856924991965,24.74027182702065],[-102.85694621290469,24.74028889705329],[-102.85698737159316,24.740321985811363],[-102.85706536217089,24.740383214519113],[-102.8571026547288,24.740410942780954],[-102.857120976798,24.74042407503623],[-102.85717499972759,24.740461150687395],[-102.85724593235875,24.74050713329251],[-102.85728151766091,24.74052948352778],[-102.85731762585175,24.740551725302225],[-102.8573927685963,24.740596701014795],[-102.85745082665443,24.740630483031453],[-102.85750573527577,24.74066190104719],[-102.85759452289147,24.740711570638837],[-102.85762087564024,24.740725793189654],[-102.85763422648762,24.740732877304424],[-102.85766198755971,24.74074730658606],[-102.8576915646388,24.740762028387053],[-102.85774025173555,24.74078438878132],[-102.85777641514397,24.740799337273188],[-102.85782119544683,24.740815068906215],[-102.85788504054477,24.740833196766857],[-102.85792744404557,24.74084367491446],[-102.85849520094644,24.7409532255852],[-102.8592429680919,24.741065775373897],[-102.85937945098141,24.741082839855494],[-102.85980704811607,24.741128509713747],[-102.86010719146083,24.741153244106954],[-102.86042897378064,24.74117518869872],[-102.86099404897459,24.74121319936694],[-102.86199047954847,24.741297037118215],[-102.86309565487011,24.741414211539166],[-102.86333572719496,24.741444084086083],[-102.8638660685537,24.741525374562286],[-102.86413795285739,24.74158916650879],[-102.86422569027792,24.741620391694767],[-102.86427403868544,24.741641577718553],[-102.86430531065713,24.741653618513567],[-102.86433381587335,24.741659145754852],[-102.86437351606935,24.741660866659515],[-102.86440192732795,24.741661145737226],[-102.86458281196076,24.741663982275725],[-102.86463972317222,24.741665771317514],[-102.8647597374532,24.741671504782914],[-102.8655486001212,24.741747721227284],[-102.86565008603208,24.741749503886467],[-102.86588791764933,24.741738652792776],[-102.86598165480149,24.741731954989007],[-102.86623280167618,24.741723538090184],[-102.86634148953232,24.74172244214145],[-102.86639729380329,24.74172149375181],[-102.86651138649495,24.741717620353143],[-102.86656959161132,24.741714316141497],[-102.8668184486462,24.741696821602886],[-102.86711490570724,24.74168739029932],[-102.8673760282598,24.741694820364216],[-102.86756219151414,24.741707724469222],[-102.86765730156611,24.74171668352193],[-102.86784902117745,24.741739763217936],[-102.8679451830588,24.74175363271263],[-102.86823568357107,24.741801169609744],[-102.86853097737372,24.741851472443443],[-102.86900276038108,24.74192303519044],[-102.86925193365488,24.741957605069842],[-102.86931019502515,24.741965599231662],[-102.86934146374517,24.74196988966736],[-102.86934360177736,24.74197018303022],[-102.86935098246124,24.741972132580088],[-102.86945621445261,24.74199993323822],[-102.86952119603006,24.742017129013675],[-102.8695868642937,24.74203456008661],[-102.86964249153942,24.742049419814634],[-102.86968186246975,24.74206065368429],[-102.86969886802956,24.742066662023547],[-102.86976368527775,24.74209781172982],[-102.86995331632664,24.742203630211463],[-102.87017518319908,24.74233473245073],[-102.87033417260216,24.74243616483892],[-102.87083815643552,24.742835601548222],[-102.8709242682433,24.742912010880275],[-102.87099615361552,24.742974224820387],[-102.87108301925281,24.74304680756285],[-102.8711308249674,24.74308547210751],[-102.8711932213455,24.743135203318104],[-102.87123066733164,24.743165316331897],[-102.87124861348883,24.74318004130123],[-102.87128373320678,24.74320979616448],[-102.87130123512014,24.743225180750528],[-102.87133725441771,24.743257217065832],[-102.87149964409053,24.743382596132278],[-102.87159102326405,24.74344390844675],[-102.87168576460743,24.743512202836655],[-102.87177655405475,24.743588237252027],[-102.87183425705916,24.743641300084732],[-102.87188986841227,24.74369444509955],[-102.8719435121946,24.74374615675123],[-102.87196952431754,24.74377124189175],[-102.8720432030928,24.74384397475643],[-102.87218086010694,24.744008654211086],[-102.8722143758174,24.744061486642977],[-102.87223126570984,24.74409039443026],[-102.87230411518999,24.744227649512766],[-102.87232389951168,24.74426688162083],[-102.8723870304338,24.744393040353543],[-102.87243224490908,24.744482091415705],[-102.87247971635594,24.744573476718415],[-102.87252898094266,24.744666194641354],[-102.87260520415867,24.744805611523304],[-102.87265663715573,24.74489749948043],[-102.87270674900532,24.744988201077774],[-102.87279528719625,24.74516583746572],[-102.872830417881,24.745252731656194],[-102.87285989766707,24.74533861132244],[-102.87289671962952,24.745466245267437],[-102.87293958338518,24.745636046054415],[-102.87298511081326,24.745808919092042],[-102.8730265681649,24.74594250366266],[-102.87305636660858,24.746030646557927],[-102.8731098460022,24.746189825843146],[-102.87312945728587,24.746255613742562],[-102.87315481603014,24.746344710757683],[-102.87317415142877,24.746405421190275],[-102.87319945685158,24.74647320026753],[-102.87321494850744,24.746510514313798],[-102.87331921143578,24.74672409979695],[-102.87334507615708,24.746770829476986],[-102.87340105565823,24.74686661770005],[-102.87346067359624,24.746963745281732],[-102.87352135061116,24.74706005542953],[-102.8736625043552,24.74728476532556],[-102.87373710106272,24.747407303684213],[-102.87382812163509,24.747561280109778],[-102.87395043967194,24.74776457648221],[-102.87398821235934,24.747820905839376],[-102.87404926589772,24.747901297872488],[-102.87415723382912,24.748022451512156],[-102.87426704492793,24.7481345046848],[-102.87435211757844,24.748217387853913],[-102.87454345655476,24.748395162737438],[-102.87483866559626,24.74865196356285],[-102.87492565925544,24.74872309128648],[-102.8751708754333,24.748895992407427],[-102.87525916262189,24.748945981087445],[-102.87530562792682,24.748970184266682],[-102.87540330878807,24.749017296353315],[-102.87550746575903,24.749063066811175],[-102.87561818536756,24.74910792494137],[-102.87596332311819,24.749231118797866],[-102.87606995744329,24.749264933571794],[-102.87630500810133,24.74932954469091],[-102.87639028373155,24.74934817563343],[-102.87647292441659,24.74936346557763],[-102.87663818775195,24.74939219960578],[-102.87668098490542,24.749400670974126],[-102.8768643024797,24.749446329297996],[-102.87696317563933,24.749475228383574],[-102.87706619281448,24.74950656434015],[-102.8771190952657,24.749522763133427],[-102.87728185335988,24.749572079564018],[-102.87739148374334,24.749604952094842],[-102.87749984818902,24.749637293383955],[-102.87760509585303,24.74966865683143],[-102.87765600545293,24.74968386284621],[-102.87779948937396,24.749727268110973],[-102.87788546074279,24.74975411144635],[-102.87792494689938,24.749766830205203],[-102.87802947982988,24.749801948107915],[-102.87806074562667,24.74981260925938],[-102.87811998673033,24.7498323115351],[-102.8782059482511,24.74985773059234],[-102.87823606404021,24.749865371371186],[-102.878304818142,24.749880879058935],[-102.8784464084709,24.74990886938599],[-102.87904192409349,24.750018439344444],[-102.87925982354164,24.750057326058368],[-102.87960033781985,24.75011668865568],[-102.87982914525873,24.75015538329467],[-102.88005389930015,24.75019217994236],[-102.88177278660385,24.75026481689531],[-102.88225753774918,24.75023779736364],[-102.8824985436654,24.750235879112324],[-102.88272409419272,24.750266110599682],[-102.88277453452775,24.750280235044556],[-102.88292092885268,24.750336705553366],[-102.88301268177969,24.75038359594771],[-102.88313811715727,24.75046286643652],[-102.8832475697829,24.750551610431955],[-102.88331284710165,24.75061861462956],[-102.88337294762431,24.75069394064377],[-102.88343057302018,24.750781044921894],[-102.88358091065061,24.751033322775754],[-102.88377117044331,24.751337244470164],[-102.88385380650107,24.751463933183004],[-102.88413857303601,24.75188895209874],[-102.88423978269668,24.752036876506395],[-102.88453739945334,24.752463256376473],[-102.88472064478316,24.752719803243053],[-102.88505098101132,24.75317979514648],[-102.88519992399148,24.753392193669242],[-102.88540113497947,24.75370052791942],[-102.88569138051162,24.7543268182489],[-102.88575188951751,24.754550135210252],[-102.88579925603648,24.754784078927116],[-102.88583734558142,24.75503038638476],[-102.88590779541431,24.755676365550187],[-102.8859271929818,24.755918096903713],[-102.88594185842067,24.7561330635981],[-102.88595178830195,24.756320763550775],[-102.88595665312266,24.756656174754482],[-102.88594704731372,24.756912064045878],[-102.88593785545925,24.757086070305775],[-102.88593383027018,24.757170966057743],[-102.88593255918818,24.757471862587636],[-102.8859462378083,24.757592719714978],[-102.88595744748034,24.757648097884385],[-102.88598950092216,24.757753774132254],[-102.88609686128166,24.75797129042826],[-102.8861733119864,24.758089406395925],[-102.88637061213865,24.758337199745142],[-102.88677942364995,24.7587068775116],[-102.88704125009065,24.75887157505855],[-102.88745318517812,24.759062499968593],[-102.88768433766546,24.7591506851669],[-102.88793089889441,24.75923716266834],[-102.88843841922454,24.75940051078686],[-102.88897835943663,24.759555072821286],[-102.88915452294827,24.759603891436768],[-102.88932751456468,24.759657390141967],[-102.88951276443635,24.759724710972137],[-102.88972055534589,24.759812565040306],[-102.89025974983588,24.76009694757562],[-102.89044318329326,24.760222471510872],[-102.89059568517911,24.7603504635037],[-102.89072234075422,24.760482996083624],[-102.89082867232594,24.76062230165087],[-102.89092008063506,24.760770450947632],[-102.89099916984304,24.760925797133496],[-102.89109424636888,24.76116052542187],[-102.89122008064567,24.76176566353621],[-102.8912305102171,24.76194917498225],[-102.89123617982915,24.76206769236626],[-102.8912439937726,24.76217765337526],[-102.89124955492213,24.762227928764275],[-102.89132413011924,24.762457423417572],[-102.89134527026255,24.762490461846483],[-102.89142707349049,24.762598575999675],[-102.89149572782526,24.76268252092217],[-102.89157104355161,24.762774468237126],[-102.89164860378833,24.762872432717757],[-102.89176049817132,24.763026104105563],[-102.89190117462493,24.76322823093284],[-102.89197145485713,24.76332075597452],[-102.8921672944972,24.763514572390932],[-102.89226480222726,24.763581410164306],[-102.8923798407871,24.763645282475807],[-102.89259242942882,24.763750573035054],[-102.89276439477771,24.76384237614201],[-102.89307321975514,24.764038331292625],[-102.89318772662301,24.764120135545227],[-102.89341986512875,24.76429467361652],[-102.89363814021414,24.764465430654184],[-102.89382091592,24.76461038222118],[-102.89400481248617,24.76475466754158],[-102.89404942086634,24.764790289144514],[-102.89412887282703,24.7648575324136],[-102.89416880673508,24.76489405750732],[-102.89426122993609,24.76498451476749],[-102.89437348493675,24.76509894417495],[-102.89469237808538,24.765414096894688],[-102.89481600474369,24.76552290050381],[-102.89487507203751,24.7655718985107],[-102.8951865307543,24.765817775502],[-102.89527818783455,24.765890227171383],[-102.8953259522903,24.76592535465113],[-102.89543209853798,24.76599359056638],[-102.8958088429518,24.766152214670626],[-102.89635461620026,24.766282878654636],[-102.89651299608647,24.7663015657987],[-102.89666063257164,24.766308480309647],[-102.8969455205339,24.766293356892277],[-102.89709050695711,24.76627447108291],[-102.89723735746747,24.766250089452853],[-102.89738532068111,24.766221743768654],[-102.89753346781526,24.766190987063567],[-102.8977438118871,24.766144949999443],[-102.89786278674666,24.766118025084552],[-102.89801289594038,24.76608352552455],[-102.89809938871116,24.76606402001761],[-102.89821457480002,24.76603846376986],[-102.89827070956858,24.7660256651547],[-102.89839910482709,24.765994236769984],[-102.8985978494348,24.76593522695964],[-102.89870840380155,24.765889997426655],[-102.89879291764493,24.765839648586848],[-102.89888542280391,24.765748764556406],[-102.89900393007292,24.765538343838955],[-102.89904941670682,24.765438844560265],[-102.899095296432,24.765338435423985],[-102.89914244257551,24.76524244351549],[-102.89919266305441,24.76515358125181],[-102.89927977006721,24.765033834232042],[-102.89934975100044,24.76496301055431],[-102.89943144701118,24.764899501453385],[-102.89966811970277,24.764777071992512],[-102.89976650351497,24.76474458085687],[-102.89981548502317,24.764732140507135],[-102.8999143953294,24.76471487752923],[-102.90006960589284,24.764708001708243],[-102.90018110874564,24.7647161299912],[-102.90030142662192,24.764735695400418],[-102.90043218217374,24.76476917673972],[-102.90073125666686,24.764887826435483],[-102.90089840775516,24.76497335651925],[-102.90106980575257,24.76506938833677],[-102.90115497091222,24.765119312457443],[-102.90131998066357,24.76521891726344],[-102.90154817784031,24.765360195053972],[-102.90176514514388,24.765494592049947],[-102.90223110132587,24.765765430170916],[-102.90240748958917,24.765860370556425],[-102.90269857824717,24.766009542896484],[-102.90290665417626,24.766111593327537],[-102.90311450798214,24.766210377344805],[-102.90340230224302,24.766341445237686],[-102.9034869152103,24.766378248296405],[-102.90371446942004,24.76646983922467],[-102.9038587226421,24.766520128213642],[-102.90401050694715,24.76656638273988],[-102.90444487792968,24.766681939482908],[-102.90462004045145,24.76673069429927],[-102.90470335309737,24.766756002653267],[-102.90493683197042,24.766838573799077],[-102.90509785788896,24.76690387268576],[-102.9052822375699,24.76698192336312],[-102.90550557320717,24.767076380878393],[-102.90563247732149,24.767129478006837],[-102.90590577250725,24.767242730230464],[-102.9063292830968,24.767415481180365],[-102.90646469809724,24.76746989163854],[-102.90671609464778,24.76756971925829],[-102.90683187112842,24.767615470293947],[-102.90714072752775,24.76773933195301],[-102.9073940912977,24.767848946400704],[-102.90760031372776,24.767959921084014],[-102.90771991506756,24.768048529139094],[-102.90783131538262,24.76815896753658],[-102.90821719451145,24.768733891161162],[-102.90840383965798,24.7690255580369],[-102.90874652620522,24.76950915201951],[-102.90888765388792,24.76969122391222],[-102.90902648277194,24.76986360158594],[-102.90915868469398,24.770026944383005],[-102.90927989072526,24.770182002572767],[-102.90947810593946,24.770470638808376],[-102.90960457542252,24.770673277530193],[-102.90969093493936,24.7708044239061],[-102.90984066162122,24.77099810908578],[-102.90996424531488,24.771125784792275],[-102.91020303560401,24.77131578423632],[-102.91040344757823,24.771440490231214],[-102.91109525003452,24.77176191103672],[-102.91121945609416,24.771797583139687],[-102.91135357445813,24.771818984000333],[-102.91153384864157,24.77184000045628],[-102.9117110348405,24.77191528985111],[-102.91182653398533,24.771993517595718],[-102.9119717302313,24.77211312911146],[-102.91205978413308,24.77219335477008],[-102.91272362125125,24.772876780121237],[-102.91329290329014,24.773500738358848],[-102.91367605156984,24.773925158557915],[-102.91385322212233,24.774121480037365],[-102.91447775545623,24.774800652255408],[-102.91472172128931,24.775047253076366],[-102.91488223165942,24.77520063224779],[-102.91530956283742,24.775589997234647],[-102.91546644224547,24.77572708510172],[-102.91560308418963,24.775842631713658],[-102.91572087727559,24.775936144493016],[-102.91582340861794,24.776008690933736],[-102.91591426535894,24.776061338513728],[-102.91595639558989,24.776080571909006],[-102.91607266999284,24.77611364499586],[-102.91632657011439,24.77607391854798],[-102.91645049824882,24.7759847456407],[-102.91664680306303,24.77580803001706],[-102.9169435620044,24.77551349990489],[-102.91843710892175,24.774013784909016],[-102.91915358482589,24.77340654034964],[-102.91955488208328,24.7731288208127],[-102.91976437974904,24.773005199870227],[-102.91993655364377,24.77291835961472],[-102.92015390155461,24.77283847540076],[-102.92029116390137,24.772806514048284],[-102.92050991237352,24.77277542221998],[-102.92073957136506,24.772767952266406],[-102.92089345765783,24.772779755920112],[-102.9212733175251,24.772880150287108],[-102.92142965025818,24.77295077240268],[-102.92183452833706,24.773191914990377],[-102.92197581163634,24.773288063140285],[-102.92203544552467,24.773329781463133],[-102.92212494684657,24.77339304296669],[-102.92219863370718,24.77344518256706],[-102.92220492973917,24.773449637531314],[-102.92220567718971,24.773450430881553],[-102.92221090934333,24.77345598433294],[-102.9222251109054,24.77347105798549],[-102.9222729043309,24.773521849982615],[-102.9223255914236,24.773579428719756],[-102.92239308978947,24.77365731490363],[-102.92251754746252,24.773814068428123],[-102.92256406459552,24.773877245548192],[-102.9226604806924,24.7740174076136],[-102.92275504387999,24.774170969163947],[-102.92284011969133,24.774331917077063],[-102.92293518365472,24.774574553919763],[-102.92297671716591,24.774731294860885],[-102.92300531767279,24.774880606773934],[-102.92305584734345,24.77537558968089],[-102.92306100995086,24.775540592838126],[-102.92306163512205,24.77559596096279],[-102.92306079869513,24.775705922646125],[-102.92305290299151,24.775864319272955],[-102.92304215238983,24.775962055156867],[-102.92303514532335,24.77600818339249],[-102.92301879197544,24.776095953273284],[-102.92300061642237,24.776179181087116],[-102.92298217476508,24.776259594897624],[-102.92296467211679,24.77633880750477],[-102.92294790962984,24.776417970647117],[-102.9229313374646,24.77649812079767],[-102.92288672472068,24.776712606692797],[-102.922865012677,24.77681522802419],[-102.92285270195788,24.776873244983733],[-102.92282437562477,24.77700666206823],[-102.92279057299385,24.777165700244325],[-102.9227526424491,24.777342459621764],[-102.92271245663,24.77752618975296],[-102.92269210319841,24.77761730933753],[-102.92261270525876,24.77795375929486],[-102.9225731688382,24.778107342151486],[-102.92251082690944,24.778330470785818],[-102.9224887854574,24.778404860978526],[-102.92242437676862,24.77863201333446],[-102.92236668644983,24.77895081548661],[-102.92236226782421,24.779202198622215],[-102.92236744647505,24.779284291345277],[-102.92238504772513,24.779439132787672],[-102.9224228611161,24.7796314032866],[-102.92253990027774,24.779876692442144],[-102.92260079051613,24.77994322537063],[-102.92263593035443,24.779976536628055],[-102.92275325620233,24.780072771929383],[-102.92283540324775,24.78013025136056],[-102.92299093214928,24.780218875508922],[-102.92306360158426,24.780251195252617],[-102.92313444107975,24.780277897129054],[-102.92323970665842,24.7803110081436],[-102.92334489721645,24.780336719447803],[-102.92341499374902,24.78034917189467],[-102.92348509715583,24.78035747426236],[-102.92355600367739,24.78036180403302],[-102.92362927423545,24.780362855254907],[-102.92370650300035,24.78036134443198],[-102.92374709988889,24.780359852160416],[-102.92383318726922,24.78035553942516],[-102.92392681168587,24.780348642190745],[-102.92420159130592,24.780312952318354],[-102.92432966412184,24.78028995058719],[-102.92446706426585,24.78026380724566],[-102.92461261014887,24.78023634531445],[-102.92476511044953,24.780209319101345],[-102.92549805676134,24.78007461129414],[-102.92567382481985,24.780033873007085],[-102.9257682503262,24.7800113282222],[-102.92635281920565,24.779872522417122],[-102.92649837026846,24.77983746441032],[-102.92718988721299,24.77965319014811],[-102.92760541672772,24.77952604764181],[-102.9282907958314,24.77930107403995],[-102.92875556648562,24.779148170060353],[-102.92940656875822,24.778948862848893],[-102.92960274127853,24.77889487047014],[-102.930550406713,24.77866818681872],[-102.93088264113891,24.778590598379083],[-102.931062410751,24.778545170201767],[-102.93147694971401,24.778419721194155],[-102.9316396997495,24.778357770829984],[-102.93178098708364,24.778295970297847],[-102.93182434915406,24.778275543529332],[-102.93190720123869,24.778235666051614],[-102.93198688550677,24.7781979858961],[-102.9321056176405,24.77814791522212],[-102.93214559591081,24.778133340526495],[-102.93226398468272,24.77809615942084],[-102.93233913713999,24.778076838097093],[-102.93244163295458,24.778056019969597],[-102.93253082125966,24.7780442550183],[-102.9325835187438,24.778040839104676],[-102.9326313267311,24.778040562825595],[-102.93267603590903,24.778043596792998],[-102.93279490419678,24.77807019394237],[-102.9328535921274,24.778091076194755],[-102.93292309746755,24.77812314490029],[-102.93300624420192,24.77817183062757],[-102.93310585634185,24.778242563934782],[-102.93316246022817,24.77828757173745],[-102.93328532573946,24.778393141461436],[-102.93341305261998,24.778511025899775],[-102.93359271686523,24.77868882942795],[-102.9340987370519,24.779216615338385],[-102.93422301122291,24.779331797046154],[-102.93428274382507,24.77938603572244],[-102.93443058241905,24.779518264518174],[-102.93451882020076,24.77959668325866],[-102.93452610770089,24.779603159804196],[-102.93453313292832,24.779609063030875],[-102.93457752329738,24.77963966760609],[-102.93464069424294,24.77968322024833],[-102.93474072741736,24.779751706315608],[-102.93486729881448,24.779835603926983],[-102.935142305525,24.77999827888101],[-102.93532110639859,24.780074054017064],[-102.93542568621638,24.780100370586922],[-102.93552301306875,24.780110603317326],[-102.93557014690077,24.780110565822156],[-102.9356632795234,24.780101590885295],[-102.93575594297249,24.780081468451613],[-102.93589640016847,24.78003196691435],[-102.93613539510432,24.779906929170465],[-102.93622296030338,24.779848925866418],[-102.93635876693565,24.77973433383528],[-102.93640413232202,24.779677644279502],[-102.93645861030825,24.77955130046405],[-102.93647461572971,24.779309505346248],[-102.936466564733,24.779222587454342],[-102.9364381102759,24.779056850335735],[-102.93642278934703,24.77898554206712],[-102.936410328183,24.778927080098185],[-102.93640073477934,24.778867115840967],[-102.93639938906051,24.77884024744509],[-102.93640076066919,24.778818427441195],[-102.93640552734797,24.77878608674996],[-102.9364161871365,24.778729386943155],[-102.93641852318217,24.778718375566655],[-102.93642553919273,24.778692771521378],[-102.9364448235035,24.77862764941881],[-102.93650028081004,24.77845333841725],[-102.93658513611553,24.77825301492595],[-102.93660990203904,24.778210408977486],[-102.93666178643377,24.77813724984685],[-102.93673963660177,24.778049785413828],[-102.93678699636934,24.778000213798578],[-102.93682850321096,24.777953546019603],[-102.93686815397388,24.777909604475838],[-102.93693600849934,24.777850171086072],[-102.93699462270234,24.777815795228207],[-102.937109358643,24.777774601893043],[-102.93725640806457,24.77774995195142],[-102.93737237386381,24.777745020288478],[-102.93757429319697,24.777759399589627],[-102.93781238291746,24.777806609927325],[-102.93808907371334,24.777892704382964],[-102.93840053259362,24.778006068950674],[-102.93862360309453,24.778085443125633],[-102.93909028676694,24.778226540865717],[-102.9393136702829,24.778285482504486],[-102.93967690904623,24.778382679929166],[-102.93998356805821,24.77848911100625],[-102.94004008981659,24.77850971351262],[-102.94011504384207,24.77852918509501],[-102.94014157868173,24.77853515566676],[-102.94025193826053,24.778557353655117],[-102.94045992173238,24.778575485828753],[-102.94071679148709,24.778550368444144],[-102.94099410875936,24.77849556377771],[-102.94113074397086,24.77846872318861],[-102.94119781073573,24.77845699216482],[-102.9414676695859,24.778423667388267],[-102.94168419550402,24.778415357603592],[-102.94183991423222,24.77841749124775],[-102.9419211548128,24.77842007318793],[-102.94209012641443,24.77842678478828],[-102.94235915290199,24.778436307952404],[-102.94265522290596,24.7784401298195],[-102.94276383762309,24.778439644967364],[-102.94313204895872,24.778431619724643],[-102.94327134259464,24.77842652812393],[-102.9437193262259,24.77840737713217],[-102.944160263333,24.778390788848753],[-102.94453380331345,24.778387404707246],[-102.94485823094834,24.7784063599492],[-102.94520256353007,24.77845581741883],[-102.94547037679729,24.77850859240533],[-102.94561202543758,24.77853999095504],[-102.94628217921678,24.778724209919233],[-102.94656977420817,24.77883886714642],[-102.94671642384878,24.77891497564474],[-102.9468414000213,24.778991578507828],[-102.9470682679796,24.77914605319262],[-102.94722699237587,24.779250457764704],[-102.94802926521453,24.77946729277454],[-102.94833989577785,24.779518284684627],[-102.94867607988544,24.77958237294945],[-102.94927370206784,24.779755083885334],[-102.94958603651475,24.77992736601948],[-102.94976250807917,24.780063206772525],[-102.94994188896538,24.7802160902757],[-102.95039053227322,24.780573950601422],[-102.95085770230014,24.780889043150296],[-102.95125366727393,24.781121706023953],[-102.95147643294382,24.781243831895495],[-102.95195492915514,24.781494735565616],[-102.95270276579652,24.781872381261678],[-102.95318128965994,24.782113290565576],[-102.95362570895657,24.782341192241574],[-102.95441368644231,24.78276601763548],[-102.95459026009144,24.78286735469902],[-102.95492080256508,24.78306559600486],[-102.95522743335272,24.78325744629393],[-102.9560822504888,24.78378721302454],[-102.9565073097018,24.7840255450501],[-102.9570782412568,24.784318121610227],[-102.95723199488981,24.78439245647843],[-102.95765086950564,24.784589302360644],[-102.95789755848136,24.784703716199544],[-102.95819034021497,24.78484252405684],[-102.9583438314204,24.7849175970681],[-102.95848426264598,24.784986396996715],[-102.95862932818909,24.78505562254111],[-102.95879204388638,24.78513007984492],[-102.95896671149217,24.785207005065786],[-102.95931039513664,24.785349634117267],[-102.95953336382888,24.78543471613318],[-102.95967336386525,24.785487857629732],[-102.95989338677697,24.785578394297318],[-102.96024096127815,24.785746142895107],[-102.9604401871461,24.785854363321505],[-102.96088676747206,24.786123995644743],[-102.96100661684187,24.786201435408316],[-102.96125184621434,24.786364540131785],[-102.96137592467227,24.786449033145118],[-102.9616237552413,24.786620970623403],[-102.96174632248841,24.78670733319416],[-102.9619880744471,24.7868798970523],[-102.96234298753973,24.787137653747436],[-102.96257502975396,24.78730823201431],[-102.96291228619373,24.78755826386231],[-102.96311913895289,24.78771356619228],[-102.96330180717621,24.787853045326983],[-102.96343062430304,24.787954074069887],[-102.96351476302499,24.788022166913777],[-102.96357000699743,24.7880688070249],[-102.9636624259976,24.788152761353558],[-102.96370150430334,24.78819187883738],[-102.96377015674102,24.788268902599725],[-102.96383114499724,24.788348999391133],[-102.96397209839768,24.78860842211884],[-102.96401690000164,24.78874584076101],[-102.96404521020423,24.78889274904924],[-102.96405560618291,24.78899898100616],[-102.96405954457214,24.789179792403843],[-102.96405089165069,24.789413360484446],[-102.96403891315833,24.789614713117146],[-102.96402274854307,24.78985820177411],[-102.96400402939605,24.79012458349382],[-102.96398461941578,24.790388806978683],[-102.96395096328382,24.790817142448873],[-102.9639314435857,24.791100437871023],[-102.96393037138807,24.791344084310595],[-102.96393614653272,24.79146911138298],[-102.96394437839956,24.791593108346262],[-102.96397171711794,24.791930483034093],[-102.96397601086534,24.791979248431517],[-102.96398432818268,24.79206902674929],[-102.96399631566106,24.792183534168487],[-102.96400513929336,24.792252683520132],[-102.96403028401198,24.792406081651848],[-102.9640489568672,24.79250300546977],[-102.96406017620404,24.792556724656208],[-102.96408673266643,24.792672352460613],[-102.96410221058039,24.792733331029467],[-102.96413791774546,24.79285929237733],[-102.96418018411885,24.792987681092995],[-102.96420358518918,24.793051906030882],[-102.96425435555204,24.793178799140435],[-102.96433872900258,24.793360393113687],[-102.96436860971619,24.79341734416613],[-102.96446300481301,24.793575562669105],[-102.96459993577992,24.7937553197047],[-102.9646732391966,24.793831180589564],[-102.96479044894403,24.793928592851614],[-102.96483175928051,24.793957062205266],[-102.96496355723048,24.794031686476842],[-102.96506058498363,24.794071851038098],[-102.9652298202717,24.794112629505264],[-102.9652946606301,24.794119913669647],[-102.96569085576868,24.794104417211656],[-102.96577991073218,24.794093385211283],[-102.96596088260821,24.794067103231498],[-102.96631632977005,24.794007167446978],[-102.9664940490149,24.793971555951202],[-102.96667789522712,24.79392870593665],[-102.96677357159979,24.793903741378188],[-102.96697363528506,24.793845975335785],[-102.96707684014325,24.793813740814755],[-102.96728610636279,24.7937442650682],[-102.9673907719183,24.793707702366362],[-102.96759667841911,24.79363262362847],[-102.96769680298172,24.79359474658861],[-102.96799313424748,24.79348162183959],[-102.96819710549642,24.793407647637366],[-102.96841534376148,24.793335779525364],[-102.96853223579666,24.7933008018598],[-102.96878593800159,24.793231323558302],[-102.96907177508876,24.793159623485735],[-102.96939643986036,24.793082272210484],[-102.96957542411309,24.793040405652448],[-102.96996392892311,24.79294989234785],[-102.9710725502573,24.79268399432482],[-102.97131708729398,24.792618827753643],[-102.97141421060479,24.79259142009829],[-102.97171947549032,24.79250379801607],[-102.97213516152891,24.79241287479408],[-102.9723218042102,24.79238394112832],[-102.97259745465135,24.792356637520584],[-102.97276919691461,24.792350509729317],[-102.97292823715372,24.79235183738092],[-102.97307241762894,24.792358356389173],[-102.97313826115749,24.792362855126385],[-102.9733081254845,24.79237847160266],[-102.97339680261962,24.7923890107985],[-102.97349005180826,24.792401838149033],[-102.9735251478869,24.792406899086473],[-102.97354317019864,24.792409497943083],[-102.97355063997276,24.79241057510029],[-102.9735520203539,24.79241088690526],[-102.97356085304688,24.792412949855986],[-102.97358482750087,24.7924185492912],[-102.97363151460138,24.792429453443788],[-102.97379994779106,24.792470520961558],[-102.97390471219421,24.792499095030166],[-102.9741075040281,24.792567234400394],[-102.97432023778822,24.79266430540514],[-102.9745366328388,24.792786808224605],[-102.97467005061208,24.79290079381036],[-102.97470842229052,24.792951798615036],[-102.97478532807372,24.79312907184527],[-102.97480099078552,24.793202423237233],[-102.97473306817045,24.79439813877002],[-102.97468120324442,24.79470792326731],[-102.97461917252241,24.795041729349805],[-102.974584944031,24.79521457345362],[-102.97447280762242,24.795741600837516],[-102.97443397606969,24.79591508374409],[-102.97435790635308,24.796248970108707],[-102.9742881894415,24.796554501298942],[-102.97422974537614,24.796819048064208],[-102.97416513534665,24.797138381655998],[-102.97413420892451,24.797312928277393],[-102.97410030613594,24.79754072963243],[-102.97406765680824,24.798010150379696],[-102.9740773936303,24.79820610599245],[-102.97409513273095,24.798333649605468],[-102.97414353224184,24.798513033249947],[-102.97422086500018,24.798671206345887],[-102.97428426573566,24.798764482112915],[-102.97431817853402,24.798807612696464],[-102.97442349306738,24.79892359084124],[-102.97449445105639,24.798991125703196],[-102.97460330430681,24.79908288581811],[-102.97471742014898,24.79916963033901],[-102.97479611442907,24.79922624329066],[-102.9749126183305,24.79930549694052],[-102.97494984336362,24.799329503355693],[-102.97502019601808,24.799372600389006],[-102.97508584065304,24.79940887964011],[-102.975149848336,24.799438997689094],[-102.97537913984854,24.799499171801187],[-102.97552370116313,24.799510639376024],[-102.97562481387473,24.799514878486434],[-102.97590360173848,24.799520475174518],[-102.97629488363094,24.79952228409212],[-102.97651997850733,24.79952168808427],[-102.97744613726888,24.79950824306104],[-102.97782414290066,24.799494254438173],[-102.97822918431768,24.799463408300596],[-102.97869987201108,24.7993842520965],[-102.97907168961939,24.799296697065017],[-102.97935987133422,24.799220173094056],[-102.97965604541105,24.799134813165153],[-102.9797594859105,24.79910297156431],[-102.97997849394216,24.79903172489179],[-102.98009574590554,24.798991492799416],[-102.9803497067104,24.79889983491512],[-102.98048659953292,24.79884813040087],[-102.9807771689591,24.798733552825865],[-102.98092952911247,24.798670949364293],[-102.98124510918205,24.798535787104754],[-102.98140701265521,24.7984634979191],[-102.982065910286,24.79814899713722],[-102.9827078324808,24.797813165810396],[-102.98315047509357,24.797565065301],[-102.98365590565834,24.79727934124594],[-102.98395178028761,24.797127761104775],[-102.98425208559985,24.79701167109073],[-102.98437866139795,24.79698173523252],[-102.98455692198195,24.796962027478855],[-102.9846714111606,24.79696260678503],[-102.98484073938789,24.79697936600678],[-102.98518265168235,24.797043711453455],[-102.98529734686451,24.797065064871163],[-102.9854124350681,24.797082919463264],[-102.98547069108884,24.79709100421678],[-102.98578067734417,24.79713561940173],[-102.98606013587352,24.79718576326752],[-102.98620384195675,24.797207940954024],[-102.98634493067266,24.797222050474886],[-102.98654800345781,24.797221330023774],[-102.98668337693931,24.79720715635193],[-102.98675290676732,24.79719644453189],[-102.98722290602382,24.797088256591508],[-102.98798729779332,24.796758648300283],[-102.98821628108362,24.796614657448686],[-102.98828747459328,24.796565468717006],[-102.98842762592204,24.79646035668611],[-102.9885756709096,24.796336032426268],[-102.98865673146736,24.796262828395868],[-102.98874465895364,24.79618021652277],[-102.98894691558098,24.79598133233577],[-102.98929807208407,24.79561729847478],[-102.98974361184844,24.79511994707366],[-102.98991299988359,24.794910327341427],[-102.9900452601164,24.794733533775684],[-102.9901495044063,24.79458647516026],[-102.990234844518,24.794466060233503],[-102.99027312576158,24.794414863352472],[-102.99034336806568,24.794328233684382],[-102.990375841211,24.79429185079448],[-102.99046574110525,24.794204729275407],[-102.99052191703834,24.794160317109743],[-102.99054932704212,24.79414117969361],[-102.99062831742958,24.79409478051207],[-102.99065339250677,24.794082669926468],[-102.99070134476318,24.794062915082122],[-102.9907894868116,24.794039873339557],[-102.9908322741079,24.7940367927593],[-102.99087614564013,24.794039580785466],[-102.99092252573541,24.794048955390963],[-102.99097271586442,24.79406778121023],[-102.99112315887385,24.794178287170155],[-102.99123439249189,24.79429098822078],[-102.99127740639733,24.794334726485715],[-102.99140423351872,24.794452609524342],[-102.99164314367243,24.79461333211941],[-102.99174444237485,24.79466697593108],[-102.99184774359406,24.794717905525886],[-102.99218719305009,24.79488220512502],[-102.99226597113261,24.79492447031174],[-102.99234036833968,24.79496410928101],[-102.99237819447063,24.794982811119837],[-102.99245964250275,24.795017713870266],[-102.99250508069144,24.79503380852441],[-102.99260812804812,24.795063251406475],[-102.99278764403294,24.795102224793993],[-102.99333247001528,24.79519338081451],[-102.99346936387292,24.7952116087601],[-102.9938554584383,24.795242441746893],[-102.99391664543901,24.795244454442866],[-102.99409681349789,24.795246516997963],[-102.99415581141892,24.795245991299907],[-102.9943277902508,24.795240281027134],[-102.9944367006342,24.795232565864012],[-102.99453967953843,24.795221278354063],[-102.99458929575678,24.795214101590716],[-102.99468751256256,24.795196083675023],[-102.99473725393023,24.795184998118543],[-102.99484085454276,24.79515806279278],[-102.99489585456524,24.79514196861453],[-102.99507514432935,24.79508452030052],[-102.99513780460677,24.79506388337188],[-102.99526375460954,24.795023387388255],[-102.99538641490977,24.794987272039293],[-102.99544513978071,24.79497201891826],[-102.99566824735257,24.794930980186336],[-102.99589349381671,24.79491947669078],[-102.99601171570464,24.794923721015834],[-102.99607094783772,24.79492811571754],[-102.99634766818781,24.794970151471944],[-102.99639637350714,24.794982327175944],[-102.99648771858148,24.795011124642258],[-102.99657288738291,24.795046783566022],[-102.99669398781162,24.79511553216662],[-102.99677143473093,24.795171811611738],[-102.9969106701169,24.795303281553174],[-102.9969685785702,24.795375452367182],[-102.9970179870644,24.795450670519074],[-102.99708007917889,24.795569227876797],[-102.99715045326332,24.795738299250786],[-102.9971860982626,24.795828312625986],[-102.99722654255311,24.79592289121433],[-102.99733468825696,24.796128259052807],[-102.9973682113839,24.79618285011958],[-102.99756434108724,24.79646758277306],[-102.99765244521762,24.79658392883755],[-102.99779783412714,24.79675729462383],[-102.99790720171114,24.796870423973246],[-102.99809685758407,24.797034826265758],[-102.99816945260858,24.79708987370151],[-102.99842735287416,24.797266795884184],[-102.9985295671163,24.797332362539578],[-102.99902997106312,24.797638235169018],[-103.00012962217727,24.798191080720585],[-103.00035560856384,24.798271625078087],[-103.00063770449657,24.79835395498793],[-103.00078491065523,24.798387528761396],[-103.00090667383381,24.79840705208443],[-103.00101256582877,24.79841492924112],[-103.00111215845811,24.79841356448162],[-103.00126389034074,24.79839831675247],[-103.00136498744371,24.79838025970116],[-103.0014145854359,24.79836901103147],[-103.00151032478061,24.798342319117012],[-103.00164191019854,24.798292631955917],[-103.0017577666843,24.798233025088564],[-103.00182592409789,24.798188727769343],[-103.00188678656201,24.79814147880211],[-103.00194119193696,24.79809199811342],[-103.00196630023657,24.798066655162415],[-103.00203481728215,24.797989340468177],[-103.00209457618718,24.797911328966222],[-103.00212818035516,24.797858411710934],[-103.00214264211229,24.797831470642905],[-103.00216610197975,24.797776274352657],[-103.0021865296601,24.79766094062967],[-103.00214774047168,24.797518229800403],[-103.00211022255439,24.79746478616721],[-103.00208795827456,24.797439061784928],[-103.0020386459127,24.797389747988518],[-103.00195936119599,24.797321460646003],[-103.0018349028606,24.79720900407591],[-103.00179316924198,24.797155084559733],[-103.00172821615791,24.797021866893715],[-103.00167615916456,24.796871441799624],[-103.00163757137068,24.79675970194205],[-103.001589313083,24.79661600278604],[-103.00157868429591,24.79658101664262],[-103.00155981325685,24.796511787534314],[-103.00154384455317,24.79644178260213],[-103.00152438436135,24.796330352643906],[-103.00151382147794,24.796248523384463],[-103.00150272194395,24.79601165334708],[-103.00150497625873,24.795958898502363],[-103.00154813321308,24.7956661769407],[-103.00156292759777,24.795600192974632],[-103.00159805077652,24.795458524930268],[-103.00164005655893,24.79530221257926],[-103.00171671448055,24.7950461345618],[-103.00185000222211,24.794697642062772],[-103.00188973409757,24.794614492675123],[-103.00197683203317,24.794455630507628],[-103.00217793961764,24.79416834237213],[-103.00223306791412,24.79410300491577],[-103.00234820226729,24.793979904597222],[-103.00259360345814,24.793757105253633],[-103.00272134672878,24.79365324827745],[-103.00298019617384,24.79345768294695],[-103.00317117686325,24.79333384627131],[-103.00329405509632,24.793268629022634],[-103.00352304605781,24.79318076511396],[-103.00376710737794,24.793126178893033],[-103.00385716542252,24.793115091323102],[-103.00395335987878,24.79310832901183],[-103.00406342880632,24.79310479759772],[-103.00419444823558,24.793104181043645],[-103.00435084609524,24.79310927668064],[-103.0046412654072,24.793135452225215],[-103.004877050365,24.79317026555219],[-103.00527130297377,24.79324509736739],[-103.005649471455,24.793328469845562],[-103.00585699008468,24.79337858795577],[-103.00594450352304,24.7934016666469],[-103.00616958857978,24.79347640932849],[-103.00631281089022,24.793542562038112],[-103.00656243236011,24.79368726724624],[-103.00675941579937,24.793813687714646],[-103.00697783480456,24.793957820698097],[-103.00746720034437,24.79427755920858],[-103.00786167010477,24.79452745459122],[-103.00825657210095,24.794772443382953],[-103.00876368610386,24.795079686774045],[-103.00901856858837,24.7952299829426],[-103.00914898639354,24.795305691701344],[-103.00941914127094,24.79545998895651],[-103.00983465664194,24.79569101621712],[-103.01022195807286,24.795898347457978],[-103.010538206602,24.796058148252087],[-103.01085271080149,24.796214336974288],[-103.01098167810136,24.796286931836903],[-103.01110131158731,24.79636562116218],[-103.01126846156063,24.79649628849438],[-103.01142519448683,24.796639807642805],[-103.01152564991605,24.79674116023824],[-103.01157417287328,24.79679295953696],[-103.01170916456425,24.79695003578837],[-103.01178721289847,24.79705380721839],[-103.01185413512479,24.797155192138916],[-103.01197300985689,24.7973550327319],[-103.01207102153273,24.797508090398367],[-103.01214701195426,24.79761257552218],[-103.01236056293345,24.797868660282177],[-103.01249403010524,24.798011417263183],[-103.01257621094862,24.798098893409815],[-103.01262555372955,24.798152996579063],[-103.01271032239208,24.798252041883643],[-103.01279242341775,24.798358989433495],[-103.01287549223639,24.79847930534146],[-103.01296411147064,24.798618911331175],[-103.01306286378195,24.79878372911321],[-103.01317432152712,24.798976042381582],[-103.01329301565357,24.799183582827254],[-103.0136199452661,24.799742285984564],[-103.01370835960887,24.79987814289234],[-103.01379330450862,24.799995073495836],[-103.01397496385431,24.800198284364797],[-103.0140756815207,24.800292118418724],[-103.01428886436952,24.800469101582166],[-103.01439791220434,24.800553474829712],[-103.0147298462175,24.800781554156742],[-103.01484199511833,24.800845535343115],[-103.01495450502046,24.800902123116487],[-103.01506695505861,24.800950753364248],[-103.01512302610757,24.80097190813126],[-103.01523463203716,24.80100756777523],[-103.01529027059001,24.8010220719828],[-103.0154019654646,24.801044754996497],[-103.01551525924253,24.80105946976562],[-103.01563140217957,24.80106677503653],[-103.01594783460223,24.80105576701891],[-103.01609322203137,24.801040629822012],[-103.01625408097823,24.8010198825923],[-103.01651565192384,24.800978187612372],[-103.01668988656144,24.800942892857847],[-103.01677337652882,24.800922877071173],[-103.01699780370183,24.800853146894497],[-103.01719204252356,24.80077129319733],[-103.01731665109753,24.800712108244568],[-103.01751513440615,24.80061925974661],[-103.01767012597463,24.800554510021072],[-103.01796624840233,24.800451046783223],[-103.01822270835515,24.800376692377256],[-103.01884479343158,24.800220368190764],[-103.01931897121545,24.800107370338424],[-103.01960124303332,24.800039000782704],[-103.01973158727111,24.80000745618986],[-103.02020224064523,24.799901500695853],[-103.02031177042136,24.79988062928919],[-103.02052591218569,24.799846297828537],[-103.0207324491293,24.799822055709285],[-103.02092951442484,24.79980810557788],[-103.02102391182052,24.799805053336968],[-103.02128755274225,24.799811608926802],[-103.0214435320446,24.79982776988186],[-103.02158005224925,24.799851637775816],[-103.02169398644008,24.79988171743463],[-103.02174164099875,24.799898654064293],[-103.02185018961649,24.799956747668887],[-103.02189803050197,24.800001755313644],[-103.021960942352,24.800168246163196],[-103.02197196880473,24.80030434720652],[-103.02197995645218,24.800379331404542],[-103.02198710403133,24.800418508742382],[-103.02203175390162,24.800542711417734],[-103.022089686544,24.80063101349748],[-103.02239396578352,24.800894798187244],[-103.02260684460936,24.801040170248257],[-103.02288698282388,24.801221716264706],[-103.02359296080522,24.801679631182253],[-103.02430186323943,24.802190964561817],[-103.02445778273233,24.802319150423557],[-103.0250162472546,24.802849053331954],[-103.02578316254926,24.803750574688536],[-103.02619792901476,24.8042774236294],[-103.02650452077864,24.804640910561318],[-103.02664210526433,24.804775488000075],[-103.02669146759598,24.80481986361508],[-103.02680216428564,24.804912706877076],[-103.02693314570178,24.805010346037648],[-103.02727628812283,24.805216755202764],[-103.0277110996895,24.805422011940948],[-103.02803266573562,24.805552607793686],[-103.02822076760117,24.805621361228077],[-103.02847250284788,24.8057102419005],[-103.02863316653247,24.805772068254498],[-103.02871472379553,24.805806857474522],[-103.02897166454795,24.80593268529435],[-103.02906083825468,24.8059806838005],[-103.02924305426541,24.806083358454146],[-103.0293356227026,24.806137232534468],[-103.02952247843825,24.80624804121385],[-103.02970963638279,24.806360071888378],[-103.0298943867441,24.806469748618667],[-103.02998500684913,24.806522584332754],[-103.03016103242857,24.806622010621652],[-103.03032836038335,24.806711257669292],[-103.03063709999952,24.806868694221805],[-103.03098005868009,24.807063899537866],[-103.03110846501801,24.807165479086905],[-103.03123534611308,24.807297480395448],[-103.03162195868276,24.807938900638987],[-103.0317514312826,24.808216396183525],[-103.03181575498098,24.80836225833542],[-103.03194233985016,24.808661235018803],[-103.03206236260036,24.80895530114458],[-103.03230230039878,24.809550801033822],[-103.03240024298822,24.809770779974997],[-103.03246266390738,24.809889273970953],[-103.03253472717864,24.810008642181003],[-103.03262357536659,24.810143439639376],[-103.0330526524462,24.810672290995342],[-103.03312544039915,24.810729463230984],[-103.03322514282468,24.810787757437254],[-103.03328966410675,24.81081644631945],[-103.03342382875599,24.8108604938472],[-103.03370709228943,24.810919974198157],[-103.03379857244232,24.81093153362997],[-103.03384530209905,24.810935656965057],[-103.03394013986656,24.810940177323005],[-103.03413474622897,24.81093716878985],[-103.03428461568723,24.810928002693174],[-103.03433549484777,24.810924349435766],[-103.03443979524525,24.810917357964513],[-103.03454894426432,24.810912205712214],[-103.03460588420342,24.810910851476763],[-103.03472555730656,24.81091163542743],[-103.03478853604895,24.81091410501375],[-103.0349904254901,24.810931277993404],[-103.03521230545351,24.810965586373186],[-103.03537286321409,24.810999360879578],[-103.03611159974275,24.811185165973882],[-103.03638651988024,24.811253077981462],[-103.03666350241122,24.81131879504312],[-103.03691840089539,24.811375464646744],[-103.03703002283225,24.811398265284538],[-103.03728748860806,24.81144050316334],[-103.03751534437208,24.81145403318152],[-103.03776448066384,24.811442917453803],[-103.03791802337912,24.81142365427695],[-103.03817474857169,24.811359890808887],[-103.03827680189801,24.811322456760138],[-103.03842896501897,24.811253378233744],[-103.03867961277501,24.811120129853975],[-103.03886823360074,24.811021303455504],[-103.03912443051587,24.810892463942423],[-103.03961128353927,24.810656192142403],[-103.04011953374282,24.810414925355246],[-103.04041361136899,24.810277232680903],[-103.04065514979209,24.8101657701784],[-103.04125578310737,24.80990658690888],[-103.04140813213701,24.809849260163958],[-103.04166706863435,24.80976245381106],[-103.04187738751068,24.809698974336072],[-103.0422387814383,24.80959951224895],[-103.04259375905303,24.80951544206721],[-103.04287702603233,24.809468450749876],[-103.0432543352411,24.809475043504335],[-103.0433620270041,24.809493559651855],[-103.04341551069047,24.809504631669483],[-103.04352162097359,24.80953004962788],[-103.04362641153665,24.809559360865933],[-103.04372971791219,24.809592030279248],[-103.04383247630477,24.80962824121059],[-103.04404454452515,24.80971492600679],[-103.04415804532772,24.809767249981633],[-103.04427982638157,24.80982641829297],[-103.04441298221252,24.809892615689478],[-103.04456062884105,24.809966010986273],[-103.04472609053181,24.810046838715152],[-103.04491748091152,24.81013684521713],[-103.0461728399066,24.810644761355604],[-103.04658194423735,24.810794925198365],[-103.0469637324187,24.81093096471011],[-103.0472798049829,24.811039366747707],[-103.04751871033022,24.811116607809765],[-103.0478281773228,24.81120390446341],[-103.04793180203694,24.81122761566229],[-103.04805374285309,24.811248975451065],[-103.04811812890324,24.811253852569166],[-103.04817310814786,24.811251210955106],[-103.04822291617978,24.811239145878005],[-103.04827460709214,24.811208231553564],[-103.04837264599689,24.811101785726294],[-103.0484626503578,24.81097497414106],[-103.0485732443164,24.810806989279513],[-103.04882336497599,24.810432664563393],[-103.04894623686306,24.81026939076554],[-103.0490629326822,24.810137706615023],[-103.04912026636993,24.810082463498816],[-103.04923571125994,24.809990267403407],[-103.04941929342442,24.809889031685827],[-103.04955648472071,24.80984085450308],[-103.04989741222408,24.809781387307623],[-103.0500016439492,24.80977278875497],[-103.05037111241529,24.809758704420915],[-103.05066733401878,24.80975782369609],[-103.05159144565113,24.809778500286484],[-103.05201021960471,24.80979398846455],[-103.05242112970592,24.809812938423818],[-103.05296585926135,24.809847033046765],[-103.05326285782462,24.809873907636245],[-103.0535182547141,24.809905606339328],[-103.05374473041667,24.809943560797024],[-103.05405657237657,24.810015552193306],[-103.05415697275669,24.810044633643997],[-103.05435582657344,24.810112378251972],[-103.05455573674072,24.81019508472332],[-103.05476098502976,24.8102952854656],[-103.0549735306289,24.810413418083954],[-103.05530520494938,24.810620585730362],[-103.05757280036471,24.812657201757816],[-103.05782447865494,24.812884022903688],[-103.05797327308306,24.8129980971309],[-103.05826867182924,24.81318276633243],[-103.05866584965543,24.81337154656586],[-103.05908370111092,24.81351468821623],[-103.05925676289831,24.813560641821425],[-103.05943414328522,24.81360126030438],[-103.05961581601099,24.813637616456447],[-103.0597991351089,24.813672065700246],[-103.05998079969442,24.813707284128782],[-103.06006998002164,24.81372601807061],[-103.06024309041095,24.813767395291052],[-103.06040921179107,24.81381591467118],[-103.06057052852987,24.813873655774273],[-103.06072934171402,24.813942685460063],[-103.06088809943918,24.814025057834442],[-103.0609690769524,24.81407181536275],[-103.06133044580247,24.814300274299512],[-103.06180516897524,24.814602241501177],[-103.06224465091293,24.814864023513394],[-103.06306825916909,24.815294407416673],[-103.06369930331732,24.81557990953513],[-103.06395612987387,24.815691719693234],[-103.06437766914047,24.815886390145636],[-103.06456717406326,24.815992108816772],[-103.06470633651031,24.816078513450464],[-103.06486892657716,24.816185604236466],[-103.06517501615627,24.816397336638943],[-103.06635663429853,24.817238759137922],[-103.06665210481367,24.817441136184016],[-103.06678992911367,24.817532636150247],[-103.06729224075599,24.817845198607017],[-103.06740961975407,24.817912677348204],[-103.0677539525629,24.818097532219895],[-103.06809049744402,24.818259769908423],[-103.0682009800422,24.818309171636827],[-103.06841939882526,24.818401384653043],[-103.0686345612765,24.818484998425845],[-103.06884715281961,24.818559155137734],[-103.06916301766432,24.81865015804499],[-103.06937289952464,24.818695793389168],[-103.06947869437369,24.81871442661071],[-103.06969603290247,24.818746137192647],[-103.06980924163776,24.818760388415058],[-103.07004890070635,24.818788617359928],[-103.07031151415902,24.818820218729797],[-103.07059771070271,24.818855670511027],[-103.07186995041906,24.818967421436014],[-103.0720289672663,24.81897535974025],[-103.07247687384177,24.819000303617088],[-103.07273851155259,24.819022991223164],[-103.07307140545834,24.81906821520454],[-103.07326368258163,24.81910228816463],[-103.07352537058989,24.819153101790846],[-103.07368955289655,24.819186171701176],[-103.07384781091463,24.819222092418784],[-103.07400168628112,24.819264315192356],[-103.07415270390396,24.819316191119015],[-103.07430200354605,24.81937876795746],[-103.07445033981116,24.81945079013093],[-103.0745243772567,24.81948991955437],[-103.0746726519294,24.819573567745522],[-103.07489498774208,24.81970765393919],[-103.07503973812123,24.81979548866218],[-103.07517850712412,24.819875690273932],[-103.07524479076653,24.81991121752725],[-103.07542972766544,24.81999575004386],[-103.07554354464185,24.82003638090788],[-103.07565198686007,24.820067291281134],[-103.07611733116244,24.82013566942362],[-103.07622326534653,24.820141357345904],[-103.07633146096043,24.820144565441012],[-103.07644171122695,24.820145105562062],[-103.07655380936802,24.820142789562055],[-103.0766677197663,24.82013727031051],[-103.07690374459736,24.820112530791278],[-103.07696505802812,24.820102658783526],[-103.07722356328009,24.820045625280102],[-103.07736459763856,24.820008341062078],[-103.07751681305785,24.819967192566764],[-103.07805945830023,24.81982333202376],[-103.07849725607247,24.81968495910246],[-103.07873282982428,24.8196004747972],[-103.0790765197496,24.81947847619648],[-103.07928108522987,24.819415094680267],[-103.0794547514879,24.819375278671828],[-103.07966660285587,24.81935230091983],[-103.0797856480018,24.819353227409295],[-103.08005033158645,24.81937760446789],[-103.08010087657561,24.819384364201824],[-103.08020175748379,24.819398938533595],[-103.08025263400287,24.819406550817575],[-103.0804094545112,24.81943046205197],[-103.08051849985725,24.819448390268576],[-103.08069067958496,24.81948063075231],[-103.0808724710235,24.819520817064358],[-103.08099312349651,24.81955044076767],[-103.08116200080036,24.819595659631318],[-103.08126113726564,24.81962472348681],[-103.08143282673325,24.819683033959564],[-103.08151080010526,24.819714518008368],[-103.08158678880204,24.81974854313239],[-103.08166174957393,24.819783712648928],[-103.0817362884793,24.81981812679743],[-103.08181101157288,24.819849885816154],[-103.08188989087995,24.819878046001804],[-103.08199036232872,24.819905487874053],[-103.08233928940467,24.819973562670157],[-103.082621895557,24.820020529979672],[-103.08278722329322,24.820046749714834],[-103.08353893539993,24.82015763815798],[-103.08411853409916,24.820233164221236],[-103.0844946151833,24.820276267834743],[-103.08486649646972,24.820313716472185],[-103.08505203057086,24.820330371353748],[-103.08542417910382,24.82035967682947],[-103.08596595524148,24.820395834024225],[-103.0861335678099,24.820406649147742],[-103.08656676845254,24.820438378605047],[-103.08668136751345,24.820449389300848],[-103.0868689162707,24.82047243465388],[-103.08694612520651,24.820484411224015],[-103.08713704568964,24.820521807844727],[-103.08774975456544,24.820675021905743],[-103.08785346067458,24.820707735479118],[-103.08801230736248,24.8207635758356],[-103.08824244404383,24.82085436890378],[-103.08848404596495,24.82095262522722],[-103.08860228374823,24.820998507517174],[-103.08877945451547,24.821063950973155],[-103.08890589983474,24.821110473239912],[-103.08897384311854,24.82113595842725],[-103.08920338989543,24.82122578289028],[-103.08964050848465,24.821412086490398],[-103.089901856859,24.821534600012228],[-103.09006939961296,24.821617371540526],[-103.09039136160078,24.821780587201772],[-103.09062480418953,24.82189763090537],[-103.09093604226445,24.822048340042272],[-103.09101544648627,24.822085597733462],[-103.09117743430176,24.822159710652443],[-103.09134333561082,24.822231669658834],[-103.09168465588249,24.822360624795692],[-103.09225976783318,24.822523282689644],[-103.09239149230734,24.8225624086337],[-103.09244946081753,24.822581874411696],[-103.09255246183352,24.82262135196305],[-103.0927240006136,24.822706541498462],[-103.09287589755553,24.82280603025862],[-103.0929118185332,24.82283327641136],[-103.09298118116965,24.822890495809816],[-103.09304722627928,24.822951208243467],[-103.0931696395644,24.823079316873816],[-103.09322624880497,24.823143849091082],[-103.09327997728326,24.823206830701224],[-103.09333146364224,24.82326821429899],[-103.09338184166091,24.82332929241403],[-103.09343226665032,24.823391415833157],[-103.09348386036532,24.823455895812685],[-103.09361855488942,24.823628043462293],[-103.09372846708163,24.823772831195868],[-103.09378261394602,24.823847414281204],[-103.09383527167489,24.82392438872455],[-103.09390990553396,24.824045903235003],[-103.09395624295587,24.824130115625678],[-103.09402125700194,24.824254354390348],[-103.09410173329104,24.824401370860812],[-103.09416508176895,24.824497879123896],[-103.09427332505504,24.82462707447752],[-103.09434251960164,24.824697546767936],[-103.09450775410107,24.824854427338153],[-103.09455381999317,24.824897368390623],[-103.09465027300593,24.8249875501254],[-103.0947497367415,24.825080905618904],[-103.09489701950133,24.825219606351027],[-103.09494387612222,24.825263819841837],[-103.09503264998551,24.82534775537613],[-103.09557454343536,24.82586775544314],[-103.09565146577836,24.825926656649187],[-103.09579188008439,24.82600679898195],[-103.09585937709522,24.82603723734752],[-103.09592894615906,24.826068094372772],[-103.09597217999647,24.826088638585986],[-103.0961101220393,24.826159417016584],[-103.0963643286882,24.826296486214005],[-103.09679195918625,24.826531890553042],[-103.1624292912478,24.88243114563238],[-103.22205118814009,24.933140866588417],[-103.25897804739276,24.96451621362604],[-103.25867255315103,24.96525298909262],[-103.25891517197465,24.965910869673735],[-103.25910737694812,24.96670928553766],[-103.25903590066173,24.96758350265503],[-103.25864359963384,24.968332887105873],[-103.25780048385349,24.969308953780626],[-103.25557259115266,24.96991362090165],[-103.25450414159616,24.96994034379486],[-103.25322723160536,24.969847766076043],[-103.25304745389008,24.969849197994108],[-103.2528293092671,24.97001474651495],[-103.2525912971218,24.97040405231303],[-103.25223709123293,24.971975694309663],[-103.2517693912809,24.973017251441945],[-103.25166432341575,24.973518613832482],[-103.25130901383159,24.97526690602689],[-103.24873737623363,24.98036475671904],[-103.24801259774415,24.980825538359795],[-103.24616396631893,24.98179573263951],[-103.24562826150822,24.982182193763606],[-103.24514381434795,24.98325876426162],[-103.24634133103939,24.985233176577935],[-103.24647543267395,24.985678025532764],[-103.24558672889157,24.988741597751755],[-103.24584909029295,24.99006817036104],[-103.24716431008551,24.990859933640138],[-103.24847842708073,24.991984273651497],[-103.24865567871774,24.992802557755226],[-103.2485410288599,24.993034781613005],[-103.24735669344722,24.993847745884864],[-103.24660509878834,24.99507076691475],[-103.24656306983809,24.996026602748145],[-103.24667475115655,24.996413171560675],[-103.24736497138792,24.99696043187953],[-103.24776835082781,24.997357649613605],[-103.2489018513603,24.99846380022808],[-103.24920597619689,24.998925506393277],[-103.2501649181836,24.999739318598813],[-103.25112704020006,25.000612766712834],[-103.25289132199441,25.002243321218145],[-103.25459684777837,25.00403159872326],[-103.25608506960958,25.004993143427555],[-103.25985851079565,25.006973272261973],[-103.26161964543212,25.008296919718134],[-103.26340947115278,25.009483801620036],[-103.2648982431474,25.01068942790988],[-103.2656131722814,25.011266087653667],[-103.26684875901174,25.01195688175892],[-103.26861499608975,25.013790003366694],[-103.27114835087934,25.01668036976855],[-103.27403416911716,25.0209024978779],[-103.27410080577732,25.0230410019621],[-103.27366211518131,25.02416387953366],[-103.27315135711808,25.025068933851003],[-103.27246414144031,25.025693534628715],[-103.27079134622693,25.02650713695357],[-103.27015674843665,25.0267598603059],[-103.26919634451446,25.026877853779922],[-103.26782809179701,25.026912570348372],[-103.26762968013111,25.027059775113173],[-103.26738386239026,25.02747126960071],[-103.26741588916605,25.027810914010047],[-103.26748933552881,25.028043728619593],[-103.26851331629433,25.029564317966106],[-103.26865691380289,25.02994537000029],[-103.2700452203083,25.031707874647623],[-103.27031739385944,25.03195138684822],[-103.27208364907807,25.032728833382237],[-103.27283553154075,25.0329775697046],[-103.27347731108887,25.03320898137116],[-103.27499654778165,25.033560692688468],[-103.27666779387596,25.033699387727893],[-103.27753950593336,25.033938011144073],[-103.27787181940556,25.03419922122822],[-103.27798774208463,25.03440609882699],[-103.27766990990335,25.03501078134809],[-103.27745213834419,25.03536673836288],[-103.27631481844202,25.036705383979324],[-103.2745149851985,25.038334571638188],[-103.27227513963703,25.039125029673244],[-103.27171920430771,25.039258842252593],[-103.27010574836169,25.039678256987145],[-103.26967480246464,25.039936531196645],[-103.26955661803265,25.040828187471845],[-103.2698640996627,25.04156166031521],[-103.2705871268841,25.042513604082956],[-103.27440637547045,25.04571851714411],[-103.27445765309756,25.046257184929686],[-103.27379638155116,25.047108837505846],[-103.27341048004735,25.047503270707864],[-103.27235232325557,25.04812013866581],[-103.2712357615294,25.04840215691638],[-103.26957851186563,25.04857933406538],[-103.2690497687147,25.04883791277956],[-103.26878889768858,25.049143325668183],[-103.2689124281095,25.050307279600304],[-103.26968839468742,25.05295462435066],[-103.26968370395889,25.054528969033015],[-103.26936992643823,25.05515030210887],[-103.26668236508203,25.055244755978833],[-103.26633827419653,25.054561865326548],[-103.26559726802623,25.053855737468496],[-103.26353427480251,25.053672361939675],[-103.26150632960446,25.054168240826414],[-103.26101289561478,25.05541520649922],[-103.26115672859834,25.05678216196003],[-103.26177437381517,25.058099652719022],[-103.26363868134177,25.059290558757652],[-103.2647798404376,25.0596750532888],[-103.2668134582758,25.060159205821492],[-103.26837269229372,25.060333774854314],[-103.2708615444152,25.06035010338411],[-103.27210674989567,25.06197806292073],[-103.27237340808927,25.062676609889593],[-103.27298246147944,25.063636291027706],[-103.27458875989402,25.06455505861078],[-103.27488735692413,25.064425236455463],[-103.27598943005307,25.063670117282413],[-103.2768035351337,25.06310840746528],[-103.27725113738785,25.062886377821314],[-103.27763010291403,25.06280140186084],[-103.2777401271465,25.062809614795185],[-103.27823144925526,25.062969429575958],[-103.28064358784167,25.064625892301706],[-103.2812483198449,25.065139672151304],[-103.28358802466897,25.06725911527701],[-103.2850731818948,25.068082496393572],[-103.28830199966325,25.068740882908628],[-103.28951565235883,25.069167745840332],[-103.29065146610668,25.070014609536656],[-103.29170817868254,25.07101002025064],[-103.29207382110047,25.071460712906116],[-103.29275878105892,25.073002090773628],[-103.29267882598572,25.074012837157454],[-103.29260746318158,25.0770148461732],[-103.29322580019556,25.0786560310288],[-103.29500638719054,25.079978374753807],[-103.30257626891608,25.083370185235538],[-103.30602818289793,25.083311566577663],[-103.30733443765502,25.08371830177714],[-103.30766252430851,25.083971519871113],[-103.30944444213964,25.084589821139957],[-103.31195868250188,25.08485765290527],[-103.31318310582282,25.085952018527564],[-103.31387026618256,25.08659286363786],[-103.31730895871425,25.088611632799484],[-103.31776227976053,25.088683535604957],[-103.31850851829188,25.08931039610752],[-103.31869030202137,25.089726446733096],[-103.31920198086874,25.09057080096727],[-103.32101151274321,25.092441480445416],[-103.321587166884,25.093756750437763],[-103.32227331851499,25.09428979851134],[-103.32390542168798,25.094707140674643],[-103.32580940743117,25.094271040273497],[-103.32671688308216,25.094443289212393],[-103.32728968026419,25.094798291530424],[-103.328137220251,25.09548836260626],[-103.32871608197473,25.09584392750037],[-103.32908841713396,25.09595902619685],[-103.33113923160874,25.09605778303313],[-103.33217707284638,25.09625302672191],[-103.3326090989982,25.09645522868857],[-103.33402063075948,25.0972873489153],[-103.33527291602445,25.09803845878065],[-103.33669759223801,25.098892224213728],[-103.33782231135973,25.099580463342534],[-103.33924048994692,25.101103510321025],[-103.34017214568303,25.102983358888878],[-103.34027136280218,25.104086103781583],[-103.34010597871958,25.104360739834533],[-103.33993992122515,25.10456981539886],[-103.33954728855736,25.10494474520425],[-103.33908819513135,25.105815778318345],[-103.33909517031594,25.106495974343204],[-103.33928095967894,25.10712021826248],[-103.34103548969108,25.109118825403982],[-103.34473128605521,25.11091036539875],[-103.34856917374384,25.10908170753447],[-103.35019263232829,25.107556531162118],[-103.35113111144432,25.107249912836153],[-103.35144174784352,25.10721895723526],[-103.35232887812776,25.107296214971257],[-103.35699906140064,25.108654491774132],[-103.35953930689169,25.110028850222875],[-103.36099656462068,25.1120239806462],[-103.36356633992466,25.116308326526394],[-103.36531863883226,25.119051233839457],[-103.36841950985195,25.12215656961621],[-103.37130372223197,25.12616977943577],[-103.37212784734425,25.127767975877475],[-103.3723899220584,25.129596408201962],[-103.37414284394555,25.134554653798602],[-103.37624320060178,25.13943348662434],[-103.37648367612303,25.14033531290397],[-103.37714183923799,25.142049171466965],[-103.37844142848905,25.143343859883316],[-103.37943739269178,25.14420584051902],[-103.38131638882487,25.144681236010513],[-103.38135885976408,25.14468453043554],[-103.38247911640832,25.144914813179867],[-103.38239321805582,25.145905294260842],[-103.3831919102314,25.149190862258592],[-103.38522480901173,25.15075718554175],[-103.38590450661292,25.151258055011567],[-103.38629199845275,25.151854841047793],[-103.38744942824326,25.15316510160295],[-103.38936061419372,25.15504222937477],[-103.38966972798954,25.15515954979213],[-103.3904947743523,25.155539070250768],[-103.39157130667678,25.15612976009021],[-103.39307496308493,25.156903413818668],[-103.39429041788628,25.157735631820742],[-103.3944135405929,25.158029600723125],[-103.39409494306267,25.158441991246946],[-103.39354018648083,25.158790216923194],[-103.3931653891841,25.158915817321144],[-103.39280202428847,25.15921246687674],[-103.39295445105279,25.15975796622058],[-103.39413450526285,25.160272370652365],[-103.39420127057815,25.16052807842925],[-103.394072889977,25.161522003047764],[-103.39411970989124,25.161788340520218],[-103.39437320171157,25.162186237723404],[-103.39564295811766,25.16301526692439],[-103.39671772024093,25.163432556933685],[-103.3972802842826,25.163746960122523],[-103.39739871455947,25.163852613037193],[-103.39744725565976,25.16427899481596],[-103.39711563904837,25.16480210775154],[-103.39660766651696,25.165286767670466],[-103.39649223215577,25.16546118141457],[-103.3964972263887,25.165927951494893],[-103.39683045592523,25.16692532673244],[-103.39666266327265,25.16768706375683],[-103.39668432002662,25.168340418512514],[-103.39690880821422,25.168765239763786],[-103.39716246477104,25.169176459427604],[-103.39867164574491,25.170307405115125],[-103.39890653759505,25.170789972348928],[-103.39877247563584,25.17150691138346],[-103.39851229106586,25.171856000681032],[-103.39806350650935,25.172393482635982],[-103.39795949590768,25.173634807233725],[-103.39807441478058,25.174780828943085],[-103.39820173959902,25.17548391450515],[-103.39838053644621,25.175749090155648],[-103.3990943009934,25.176676390527234],[-103.39940490466171,25.176927039559416],[-103.39997915314825,25.177148686402177],[-103.40032305271035,25.17733727417817],[-103.40082431173334,25.1780214536779],[-103.40194023959322,25.180892461199903],[-103.40267926283644,25.1821104166479],[-103.40307945559556,25.182506977035075],[-103.40382966537936,25.182727042769613],[-103.40530036668576,25.183127401111108],[-103.40571162665162,25.18319042067435],[-103.40628318279914,25.183158649604138],[-103.40659036591472,25.1830892213394],[-103.40781697293949,25.182611447314798],[-103.40835718032923,25.182393217228878],[-103.40907462964589,25.182293445111895],[-103.40951824438372,25.1826362564251],[-103.40974350127021,25.183127736364156],[-103.4093163313483,25.184758265484618],[-103.40986401357327,25.185412041686675],[-103.41104905155714,25.186230506567767],[-103.4128503315905,25.187361403165312],[-103.41428506454588,25.18849556811159],[-103.41489145058443,25.188970276366376],[-103.41646109187371,25.19036995683888],[-103.41832122051255,25.19200594694331],[-103.41877301265345,25.19309556598364],[-103.4186816743478,25.194136715530135],[-103.41839696633508,25.194926187767408],[-103.41833766551144,25.196217868113365],[-103.41904591066606,25.196614209032248],[-103.42076827764782,25.19721221512276],[-103.42228361337459,25.197652025363766],[-103.42332581256329,25.198175025700493],[-103.4235270173333,25.198824901686407],[-103.42521828958223,25.200918780772497],[-103.42558512895846,25.20137916841236],[-103.42604279881022,25.201620872185458],[-103.42720248230017,25.201386874412663],[-103.43031949005939,25.199577606360663],[-103.43446060903864,25.200851510454697],[-103.436640719877,25.202657398229633],[-103.4368991979427,25.20264884335728],[-103.43749688119527,25.201953358723813],[-103.43802856624347,25.201719184154683],[-103.43851139754497,25.201845243174773],[-103.43887810087438,25.202164223439752],[-103.4389853728564,25.202700455962145],[-103.43895462078342,25.203421031903986],[-103.43922514605822,25.204106912878558],[-103.4395762731715,25.204477792648106],[-103.44134292988076,25.205957956526504],[-103.44206135710107,25.206690205015548],[-103.44262181598071,25.20730441410643],[-103.4438024742388,25.208297457841184],[-103.44570987171477,25.21041202901762],[-103.44710140894023,25.212893342297093],[-103.44734213825325,25.21343797508274],[-103.44739263635131,25.21402435546679],[-103.44747794711287,25.215103889205807],[-103.44851759003882,25.21729441864187],[-103.4494974135576,25.21835239824287],[-103.44994273923402,25.218828445744748],[-103.45010940283248,25.219307055249487],[-103.45004630138249,25.220227918651176],[-103.44993226547234,25.220888478343795],[-103.44968615663282,25.22213846800156],[-103.44882096156675,25.223480145290637],[-103.44875144910003,25.223746908296448],[-103.44881618318522,25.22429313977534],[-103.44908907265705,25.226411262492377],[-103.44952894137344,25.227714267940485],[-103.45021373429819,25.228614906604548],[-103.45105451883501,25.229033967055955],[-103.45140713301856,25.229084064678716],[-103.45263338990338,25.229434269086084],[-103.45530355683746,25.231660942451242],[-103.4563971704419,25.232384381963243],[-103.46017980457339,25.23350974191584],[-103.4608018352169,25.234037461468745],[-103.46067625275174,25.234612132182576],[-103.46068312197457,25.235225576584696],[-103.46079028287744,25.235624706957026],[-103.46128612860247,25.23667374389788],[-103.46205179105777,25.237265462117193],[-103.46331790296125,25.237667169295094],[-103.46430308997537,25.237871420377132],[-103.46565664456972,25.23821894111461],[-103.46623395563438,25.238680381343784],[-103.4664578917322,25.23902506571386],[-103.46630193649361,25.239506652701778],[-103.46555578413256,25.240994011936493],[-103.4659870414643,25.24151015257371],[-103.4680143538124,25.241758043651544],[-103.46838331428455,25.241954662790647],[-103.46850292407584,25.242153603426175],[-103.46899427920721,25.243413251091965],[-103.46929245693957,25.243837265631726],[-103.47072241495317,25.245850987599738],[-103.47122510211432,25.247393598369],[-103.47173622499105,25.24812196153556],[-103.47219914704988,25.24860977411896],[-103.47303662165695,25.250015695893865],[-103.47340561305845,25.250212302220632],[-103.4743325860253,25.250263983585626],[-103.47528986184534,25.250169878470103],[-103.4767776756184,25.250014025799942],[-103.47715677826244,25.250266977680724],[-103.48217093815197,25.252336389396135],[-103.48448756295033,25.253302996454863],[-103.48787982231505,25.253722673690447],[-103.4884534998115,25.253125260506067],[-103.48893709966427,25.252937700039524],[-103.49053474192328,25.252446158031375],[-103.49184436370933,25.252780538661227],[-103.49378295235078,25.254229270790688],[-103.49624773229294,25.255499592089507],[-103.4968246337832,25.255907565677205],[-103.49724174213691,25.257666763841428],[-103.49799450456572,25.258755999824245],[-103.49824104108035,25.2590300555338],[-103.49849941033466,25.259451403828507],[-103.49844292081991,25.259829685507896],[-103.49844641379809,25.260133694482874],[-103.49842046322493,25.260622809038125],[-103.49849520571189,25.26098271719212],[-103.4985324848202,25.26115865038207],[-103.4985936295248,25.261871311739185],[-103.49860510166025,25.262103596068016],[-103.49865767522118,25.26284036969838],[-103.49856287829994,25.2630335950264],[-103.49867324675103,25.263541658026952],[-103.49878597962129,25.26368190351684],[-103.49902714709367,25.264366024749222],[-103.49910911445625,25.264728634976393],[-103.49926843973697,25.26539757021925],[-103.49950674557743,25.265732113362674],[-103.4997120743713,25.265968394553568],[-103.49982743193942,25.266277754175178],[-103.50218157831682,25.270656546069404],[-103.50383482982238,25.2746540938316],[-103.50480256813597,25.27585852240162],[-103.5058331407227,25.27656873559829],[-103.50594145249863,25.2766345258878],[-103.50710631150048,25.27711686792236],[-103.509841782345,25.27847009824393],[-103.51071005330004,25.27912612683292],[-103.51081356046188,25.28043336517004],[-103.50994734782614,25.28157450185455],[-103.50928976080081,25.28208738953515],[-103.50794441227987,25.283091292849747],[-103.50742680191166,25.28401647596212],[-103.50765600014824,25.28550124237097],[-103.50812921190965,25.286327915980337],[-103.50909283027488,25.288128776417295],[-103.50988675416033,25.29029040527297],[-103.50975260262902,25.290889443619164],[-103.50892615186905,25.29185590621836],[-103.50791452273097,25.2927566187725],[-103.50679639534258,25.293220844356142],[-103.50511090919878,25.293212521988323],[-103.5032960975173,25.29212988369693],[-103.50297534333879,25.291986458630277],[-103.5021767961548,25.291973102814097],[-103.50095899350487,25.292553886130293],[-103.50056859447454,25.292891853750575],[-103.49968856030097,25.293517673063718],[-103.49851025502034,25.294127833586913],[-103.4978971919117,25.294833322387603],[-103.49746397311986,25.295979659874433],[-103.49734528478513,25.29641597741579],[-103.49749529428487,25.29738882402546],[-103.4977944631907,25.29821492759021],[-103.49760754946328,25.298788941849125],[-103.49665160804597,25.30002993534214],[-103.49659765850879,25.300441380070765],[-103.49656045670201,25.30085266579283],[-103.49655586174202,25.30126489612553],[-103.4967276040224,25.30186778811094],[-103.49678588420682,25.302704954621674],[-103.49670459724763,25.303470549032284],[-103.49652645744942,25.30427296319266],[-103.49652482934289,25.305736517169862],[-103.49663227277358,25.306739081384933],[-103.49655481932376,25.30767545392888],[-103.49638590141006,25.309582999905388],[-103.49574289024514,25.311109465726645],[-103.49508217965649,25.31166101140849],[-103.49440812388463,25.31176076202496],[-103.492629632915,25.311550868876964],[-103.49229207016782,25.31155406200861],[-103.49154522412528,25.311707829290697],[-103.49069839849312,25.31210259483788],[-103.48977725389,25.312418034214204],[-103.48928144551263,25.312702783672876],[-103.48835094203542,25.31348507532192],[-103.48530737658092,25.315333821671175],[-103.48421074192316,25.316997865853295],[-103.48316219971014,25.319021538429297],[-103.48167139470695,25.321261441207753],[-103.48068207875315,25.322044246959877],[-103.4800433766527,25.32267705376131],[-103.47907144126862,25.32499336658765],[-103.4797309170616,25.326187470143225],[-103.48330246725737,25.32857242440008],[-103.48670561604638,25.33134109576406],[-103.48476643388591,25.333896911450267],[-103.4807762642929,25.33417601457097],[-103.48059749819424,25.334193777121698],[-103.48029748627096,25.334470450737285],[-103.4801831192305,25.334884291838932],[-103.48002170020328,25.335382957597744],[-103.47898483151334,25.337838158767227],[-103.47779811244777,25.338868436710015],[-103.47611520439449,25.34028898995166],[-103.47554340668665,25.340794572256186],[-103.47508163705169,25.341505704386236],[-103.47291644926685,25.34348636578312],[-103.47087063750536,25.345278299342],[-103.46977294704521,25.346888875968887],[-103.46951237171459,25.348518320254698],[-103.46915405894117,25.350141395379694],[-103.4684477618805,25.350461975684368],[-103.46720466281931,25.350900298717193],[-103.46621662657503,25.35234816826994],[-103.46616389014594,25.35288210988068],[-103.46592523627379,25.356466927962742],[-103.46588371652786,25.35983836806389],[-103.46557557652517,25.36054860712079],[-103.46540393719158,25.361032714063754],[-103.46490085047537,25.361997578426553],[-103.46304583696451,25.36448069756051],[-103.46234089447205,25.36578081836319],[-103.46207882384124,25.36729022432928],[-103.46191220182567,25.36814526855119],[-103.46150866017234,25.36890852711207],[-103.46121183513606,25.36993814314411],[-103.46100607889315,25.371233643647997],[-103.46096981210513,25.37192743828092],[-103.46235048049238,25.374993018052464],[-103.46239646901535,25.375165959519336],[-103.46247869829602,25.375707797498762],[-103.46227108194711,25.37619298600896],[-103.46181857135298,25.376371157416713],[-103.46117731397163,25.376183784629916],[-103.4603144809833,25.376000212170652],[-103.45878696463683,25.37600384251681],[-103.45808089269849,25.375989355472882],[-103.45703567747444,25.376692220093787],[-103.4577521790062,25.377462690043103],[-103.45794800110332,25.377900963544334],[-103.45792041703868,25.378061244603373],[-103.4577015043343,25.378183295351334],[-103.45738533301244,25.37824666871711],[-103.45426542188693,25.379535243277246],[-103.4517238285037,25.3806219496542],[-103.4499640513618,25.38085149877736],[-103.44905404364926,25.3808998639106],[-103.4479693015976,25.381083183541534],[-103.44654618932515,25.382536499564424],[-103.4455932066204,25.383589297800597],[-103.44452770858817,25.38418582771851],[-103.44338405106697,25.384356326083093],[-103.4427813772864,25.38430848480084],[-103.44198912412509,25.384382401458367],[-103.44156545643165,25.38458630552782],[-103.43975144173987,25.385229645072457],[-103.43847914495814,25.385721331224374],[-103.43681282820921,25.386443309263825],[-103.43603668900971,25.38653669448803],[-103.43472632452966,25.386241873393885],[-103.43318583157674,25.38638923444563],[-103.43228193600396,25.386997540792606],[-103.43011417056852,25.388870875912176],[-103.429513821895,25.389036337693142],[-103.42784332080339,25.38938484451404],[-103.424532599406,25.38998034180713],[-103.42366212628826,25.390644306202603],[-103.42322727837035,25.390989590491927],[-103.42154884160078,25.39294393796797],[-103.4200197176516,25.39422496659853],[-103.41930125498334,25.394338113712934],[-103.41884336639407,25.394102186810073],[-103.41884162352608,25.393942165781425],[-103.41820852003741,25.393801157817734],[-103.41745850354812,25.39371454675313],[-103.41694449283386,25.39371916060111],[-103.4165805272172,25.394015818786386],[-103.41560868399995,25.39489787829251],[-103.41517336590937,25.39507767988323],[-103.4135225790078,25.395527092749603],[-103.41272285950419,25.395684066479646],[-103.41198163651899,25.395917499742552],[-103.40871366412506,25.39638966147379],[-103.40809684697143,25.39775540855436],[-103.4066991754238,25.398901397095756],[-103.40484347388497,25.398437836290384],[-103.40345673914965,25.39787673981357],[-103.40146821903556,25.39718811485011],[-103.39919900273338,25.395980995940533],[-103.39598512764121,25.39545260113175],[-103.3946437217615,25.39632545640586],[-103.39345993768274,25.39662437300825],[-103.39132219838979,25.397273792600856],[-103.39074562137137,25.39741515164195],[-103.39027489207797,25.39723345061367],[-103.38810647242764,25.396141081820588],[-103.38497509082242,25.394195441545378],[-103.38046173036042,25.39095643917898],[-103.3740530672676,25.390478922640114],[-103.37139699098122,25.390611552920006],[-103.37113433063416,25.390773858175294],[-103.37087251158505,25.391016173920377],[-103.37075059032782,25.391990741347854],[-103.37090484862273,25.3926963873771],[-103.37074979178664,25.39331098489629],[-103.36891697377837,25.39360693748796],[-103.36734513953621,25.393580548953082],[-103.36538497985231,25.393064933260177],[-103.36495732203792,25.39277439863804],[-103.36349477776162,25.391807047048587],[-103.36252471360979,25.3903351479031],[-103.36117749684684,25.387906336464766],[-103.3597117928548,25.386785431420606],[-103.35790700785799,25.3848550002956],[-103.35757403404529,25.382497428933448],[-103.35747689363808,25.38163143721971],[-103.35296941787283,25.375176196158748],[-103.35103655429981,25.37288565069042],[-103.34987625286692,25.372868908095597],[-103.34846191353506,25.372427575205506],[-103.3453133139189,25.37144323012876],[-103.34246905843582,25.370467254610958],[-103.34124936509886,25.370384275357253],[-103.34013738038556,25.37078044986913],[-103.33691619609283,25.37123114585347],[-103.33692571410961,25.371513463656925],[-103.33747484755037,25.38412852064971],[-103.33774518516861,25.397572976321328],[-103.34136772384511,25.410142229416522],[-103.35102133551686,25.410345036958688],[-103.36906200265418,25.416460726960736],[-103.390651286619,25.43459115717212],[-103.39874764283604,25.450600379978937],[-103.4280300786512,25.47525458307024],[-103.43572855088189,25.47907398358342],[-103.47515602558138,25.517921530535148],[-103.4756503728924,25.517562590445607],[-103.47593237898445,25.517646011894897],[-103.47529528914617,25.517995364672515],[-103.47509501303091,25.518332992545368],[-103.4820665780299,25.525394313435527],[-103.48343510051501,25.52776956620886],[-103.483794650025,25.52821871525549],[-103.48402018153627,25.528500461624333],[-103.48426603428499,25.528929275615212],[-103.48471136484301,25.5294490629081],[-103.48556622069526,25.528933277903832],[-103.49351171348127,25.536972169973012],[-103.49425510777974,25.537574373405732],[-103.49419593633172,25.538011919445694],[-103.48682423212949,25.540489607401298],[-103.48455197671996,25.54163575176898],[-103.48270170438991,25.54220141049649],[-103.48104097375841,25.54235128442008],[-103.47681001993328,25.543523824291128],[-103.47473119278044,25.544314161603324],[-103.47171892754756,25.545661253748733],[-103.46861551287333,25.54692377927745],[-103.46726182301188,25.548288109118914],[-103.46418414316503,25.551138162223026],[-103.46306926010527,25.551836595370276],[-103.45718558317571,25.555595989534424],[-103.45361980209987,25.559877112589902],[-103.45275635851436,25.56165312999758],[-103.45186217596358,25.563786877395728],[-103.45131670926628,25.566981316936676],[-103.45126999849884,25.568744196043042],[-103.45195226382646,25.571658100537093],[-103.45238282011962,25.57366549880777],[-103.45262630802415,25.575279061464244],[-103.45099069577157,25.578933693851354],[-103.44675151831319,25.58167530431058],[-103.43804958242976,25.581500029119752],[-103.43536653733617,25.58277754466326],[-103.4333903608777,25.586800692148415],[-103.43369785125356,25.58930361500586],[-103.43871586559783,25.594861162559596],[-103.43737721014656,25.59728287645902],[-103.43354787029415,25.597170679764076],[-103.43028548750118,25.59825869178303],[-103.4284171397428,25.60201972574731],[-103.4283561061822,25.602377143058504],[-103.42829902341089,25.602626435523746],[-103.42773342499868,25.610665978508337],[-103.42759335902394,25.611142284511004],[-103.42722407111552,25.61169407629569],[-103.42704795150996,25.61188700145101],[-103.42673963774905,25.612139332838296],[-103.42659280930434,25.612228955580008],[-103.4263340695581,25.61236415685312],[-103.42622693462909,25.61244034367337],[-103.42598135974208,25.612628811266916],[-103.42542008738326,25.61287663699858],[-103.42526445885437,25.612943798888466],[-103.42494677855149,25.613002294692592],[-103.42453865468809,25.613084436486247],[-103.42409097810747,25.61314419899196],[-103.42143502659934,25.613253155513405],[-103.42084635575401,25.613212710540893],[-103.41726063816282,25.613627860992892],[-103.41613713382827,25.615171970451456],[-103.41663485037583,25.616451091111344],[-103.41893336097473,25.61774862652294],[-103.4222456345272,25.618120648675188],[-103.42495402560058,25.61998563888602],[-103.42539451939325,25.621924104926848],[-103.42477012398018,25.62367992810755],[-103.42394201733345,25.62451720976418],[-103.4205420926848,25.625663723119544],[-103.41290423677475,25.624503590456527],[-103.40747844779452,25.625681453818572],[-103.40327558084431,25.628128289868812],[-103.40268953567494,25.6298415482143],[-103.40474158515985,25.63437088558311],[-103.4081945773118,25.638901957909695],[-103.40885222622995,25.64050726242658],[-103.40886023335372,25.641246108369614],[-103.40771954118321,25.64383135035274],[-103.40685194104844,25.6445259864621],[-103.40512839768428,25.64531883871615],[-103.40336148392208,25.64576041003187],[-103.40096531701028,25.646008787479502],[-103.39525225398143,25.645046467693533],[-103.39486656812926,25.644906191461132],[-103.39362982804676,25.644413639537277],[-103.3933151247798,25.64425893612804],[-103.38781581471915,25.641103400552993],[-103.38740961951936,25.640941355418192],[-103.38586701537895,25.640408042966214],[-103.38544094169282,25.64029637850541],[-103.38336442886157,25.639893356407754],[-103.38300847146218,25.639881264647613],[-103.38091675085042,25.6408947123698],[-103.38085722191579,25.643292624061246],[-103.38364525613605,25.652298869592983],[-103.38366562391764,25.652574165688634],[-103.38363796821886,25.653253953910053],[-103.38357595598234,25.653617170623136],[-103.38072438676909,25.65786336325408],[-103.37650155523642,25.661185672365946],[-103.3762070410744,25.66136994968008],[-103.37246200825336,25.66338150577741],[-103.36908900379933,25.66637093932934],[-103.36339239088318,25.67424695678318],[-103.36085704952569,25.6851001859402],[-103.35958779512492,25.688728361736253],[-103.35937144062598,25.688976533013545],[-103.3574468425083,25.690396558201996],[-103.35719783619442,25.690547644849744],[-103.35544621826614,25.691378649243404],[-103.35530844958691,25.691432744652445],[-103.35109972249671,25.692783843575512],[-103.34921371392096,25.693443935107837],[-103.35056247842658,25.694839361533468],[-103.35216382411375,25.69666519468177],[-103.35499085595683,25.69986003325306],[-103.35245880172477,25.70142296184781],[-103.35171578484903,25.70188524883781],[-103.34223277478276,25.704523407268198],[-103.34022560090642,25.705520393165443],[-103.34029276905346,25.706298706071436],[-103.33939448361559,25.707903980882293],[-103.3415243833814,25.708622875267906],[-103.3475482012716,25.712960543431052],[-103.34760282692304,25.712998338901627],[-103.35283606053122,25.71655308523026],[-103.35231668034868,25.71737674920439],[-103.35170879388835,25.718356263655664],[-103.35071722131158,25.7192247634012],[-103.34959004409768,25.719820776048948],[-103.34483293085748,25.7218553547566],[-103.3410734207601,25.723300939475905],[-103.34052791566666,25.723770281348493],[-103.34028918836663,25.72403447175884],[-103.3387417079474,25.72616680107427],[-103.33810959548043,25.727260366088103],[-103.33370521123112,25.738736101548284],[-103.33218002573187,25.743266023969852],[-103.32893375861488,25.752908769659427],[-103.32639342227759,25.760445492891904],[-103.32632171192466,25.763264547743688],[-103.32635436626026,25.764592786074218],[-103.32657896852476,25.7698655269283],[-103.32656257842285,25.770850890121494],[-103.32666806039617,25.77169782573094],[-103.32667882901131,25.771793724282986],[-103.32557004537762,25.77995147196424],[-103.32376497220065,25.78241043890506],[-103.3230563063683,25.78373639441685],[-103.32297816907453,25.7927205116942],[-103.32166678630182,25.796191118495415],[-103.32280325475273,25.798360127085743],[-103.32298021621608,25.799051995814466],[-103.3220765068387,25.801372001766083],[-103.32127366447224,25.8019276120865],[-103.31935189545703,25.804648742666018],[-103.31890897943862,25.806100983664408],[-103.31858765890416,25.812701288312667],[-103.3189177897192,25.814801520623405],[-103.3216126127337,25.821946123546923],[-103.32288904135225,25.825082303779766],[-103.33166660263237,25.831663015769152],[-103.3360061159799,25.838737073570712],[-103.33665895168912,25.843132508836618],[-103.33683687089683,25.843677518966274],[-103.337116523725,25.844130562262308],[-103.33824332171912,25.8452438445521],[-103.34025113394074,25.847214821481657],[-103.34249682220252,25.849423954985696],[-103.34417517100388,25.852288556339374],[-103.34464440807477,25.85497688827013],[-103.34482704403524,25.85606936132575],[-103.3450223474797,25.857290982032566],[-103.34508803027569,25.857505196569036],[-103.34636010248147,25.86030438477752],[-103.34669930764579,25.883532199630736],[-103.34679229956112,25.889898491668134],[-103.34750584142358,25.938726128207804],[-103.34866170895634,26.017739724268097],[-103.34907993707833,26.046304165345816],[-103.3504882181507,26.142389958813737],[-103.29537925209064,26.229918921482295],[-103.2608252624758,26.28472681845608],[-103.31679260080688,26.3617761844979],[-103.31762576994402,26.365275768824233],[-103.33584138594574,26.441735811188607],[-103.3627218514846,26.554386595750316],[-103.37418349228682,26.602354887477304],[-103.48797784310369,26.641489265968346],[-103.6369629172271,26.69256490991137],[-103.63698242851552,26.69343576678085],[-103.64389145267887,26.690158491492184],[-103.65825599853468,26.71948395329241],[-103.68202045757647,26.721569744643602],[-103.69909410460144,26.725256377200196],[-103.8381380506928,26.7499636191489],[-103.86129849452215,26.75409457406198],[-103.86129741037286,26.750420809672733],[-103.86362221346025,26.751066702142907],[-103.86934691514193,26.75264184720828],[-103.88118828916379,26.75491801932202],[-103.90046372854067,26.754906118542294],[-103.92775342181397,26.752729647882404],[-103.93257747354721,26.753994988666932],[-103.99383282866319,26.753610421961355],[-103.99388374281187,26.77636285280522],[-103.9949954875882,26.777540265579432],[-104.03319061774317,26.774391488224524],[-104.04006700834321,26.754764332752757],[-104.04160409253774,26.749632068780556],[-104.04573781639522,26.74297653113797],[-104.05692962288566,26.74815742188781],[-104.07332910110546,26.751452154108563],[-104.13281691230958,26.763388253417133],[-104.149464298201,26.766713556994148],[-104.18393589710877,26.773572002837568],[-104.19999450795268,26.77500947961039],[-104.22780884010865,26.777153630006126],[-104.22767128462522,26.77930767747239],[-104.23247628598494,26.78518605940701],[-104.25094542693569,26.808504894820373],[-104.25120154642502,26.811547429554082],[-104.25709030107464,26.822429198613747],[-104.2613939850919,26.830380488772335],[-104.26250553162913,26.831378735868498],[-104.26293336676378,26.83171449076974],[-104.26746969129687,26.838031264488393],[-104.26944525847426,26.83875147761114],[-104.26988937285387,26.838975642212517],[-104.27062706698678,26.8385733311452],[-104.27304241146015,26.842279524247147],[-104.2818824078729,26.83564381175421],[-104.28086855295095,26.831030321302137],[-104.28361924496465,26.82531415434886],[-104.28884869210947,26.820499755861533],[-104.29488805830107,26.81775101867396],[-104.2921623360154,26.816617210359198],[-104.28750489331884,26.816734871633855],[-104.28809850464125,26.815214573142157],[-104.28921338892292,26.815220180819153],[-104.28964637101348,26.815462073007723],[-104.29156184291912,26.815718497686362],[-104.29179334197227,26.81523312387037],[-104.29320473331927,26.811587480438618],[-104.29941396906219,26.809784792974767],[-104.29916954693641,26.808598798913977],[-104.30914133539432,26.80522977361028],[-104.31340379794597,26.80204627591121],[-104.31524161109661,26.79864548006111],[-104.31276467524674,26.79707557644514],[-104.31138072011748,26.795468006466308],[-104.3111200622393,26.794975049771836],[-104.3095293053886,26.793518826237005],[-104.30887155576067,26.793403908885807],[-104.3053154745844,26.792891794803268],[-104.30657595848209,26.791671757341135],[-104.3068230487491,26.7887599454466],[-104.30469681320625,26.785900457710568],[-104.30325444603727,26.78365576926052],[-104.30359155046102,26.780881075520824],[-104.30288411193817,26.773795653594675],[-104.30176193811008,26.771948576124714],[-104.31727960142632,26.76073675971145],[-104.31393861022912,26.759316741184534],[-104.31150964077841,26.756294045758466],[-104.30432504695744,26.755418904134785],[-104.29541068620932,26.74640163961783],[-104.29279617073712,26.739675979240417],[-104.29032215779574,26.73619807659469],[-104.28896907756592,26.73043452246776],[-104.28762867130672,26.72916651757913],[-104.2865434800226,26.725402996809976],[-104.29692813402426,26.717918202975454],[-104.3064226386897,26.70758772342066],[-104.30679533379697,26.707168175091965],[-104.30544277190035,26.70175779916957],[-104.31047841483428,26.69433153876861],[-104.32243347968449,26.670788403875633],[-104.32376378565374,26.66890208383785],[-104.33038742950669,26.656532920021448],[-104.34602285887706,26.650676346327714],[-104.35621083384416,26.64649747881242],[-104.37542253679231,26.6407164910205],[-104.38272393023772,26.63508671225162],[-104.38563144897853,26.632295714233123],[-104.39060311698262,26.629843341384685],[-104.39528121924536,26.628882054345922],[-104.39692002856134,26.62766844509531],[-104.40698202696746,26.622056061872456],[-104.42484930611442,26.61023458180989],[-104.42643846099935,26.61021810520083],[-104.43477523903721,26.60452053476513],[-104.43533453868815,26.60279110245324],[-104.43683387573537,26.601291282420277],[-104.43698911296718,26.60113599198752],[-104.43823385239841,26.599475391213673],[-104.44005605975383,26.596586932411356],[-104.44150625541232,26.59094411718047],[-104.44467570201084,26.5832646391176],[-104.44739783305238,26.580265439793322],[-104.45090042861364,26.57158855143564],[-104.45120046450353,26.565491198527354],[-104.45227365658911,26.562674816209267],[-104.45309303458754,26.556903410989037],[-104.45546915680421,26.549244898211327],[-104.46563711977075,26.526515116585017],[-104.46660130149758,26.524475485041194],[-104.46855544346568,26.52034144235364],[-104.4714750672457,26.51755908211311],[-104.47290947151976,26.511555322349295],[-104.47920665519797,26.500076759391163],[-104.48208516517406,26.496076936185887],[-104.48313916750595,26.49519026896752],[-104.48411157592909,26.494655997266648],[-104.48866821113768,26.48262614063225],[-104.48901042735918,26.481533894217023],[-104.48939337877431,26.480527630292215],[-104.48962340820236,26.47966369946721],[-104.49480046530402,26.470966979577554],[-104.49589931636791,26.466859302627824],[-104.5001825718353,26.466775661181373],[-104.50306157618866,26.464980887780882],[-104.50121127252055,26.458196534736715],[-104.50143599901861,26.44958287186381],[-104.49696203210755,26.44356735634574],[-104.49601246692805,26.44055411541393],[-104.49540177390895,26.433418951355975],[-104.49622245138613,26.426390549052257],[-104.49808459729178,26.422661998245133],[-104.50099106000914,26.4147264451409],[-104.50109052583548,26.414541675360795],[-104.5197594086028,26.395761403386416],[-104.56624417623891,26.348770531848686],[-104.57445147958316,26.340468283658765],[-104.5938564850864,26.3804396493515],[-104.62008858508864,26.368842641447316],[-104.62027653096544,26.369003275825094],[-104.6225610013347,26.37063806052879],[-104.6261332606681,26.37155441293254],[-104.62724358420832,26.373279188543563],[-104.62775769592923,26.374388419361367],[-104.62669811174612,26.37632147232989],[-104.62817318410299,26.37818968814821],[-104.63476416527698,26.380748173611494],[-104.63762952070476,26.38388283207712],[-104.63863156396377,26.38614812200285],[-104.64078418150098,26.388302725918777],[-104.64662105320872,26.392020201740536],[-104.64895441152896,26.390975254988803],[-104.65033560262884,26.39147774991983],[-104.65407538157092,26.391053018307446],[-104.65508473258348,26.39491299056698],[-104.6585215386404,26.399024573730514],[-104.65893713918479,26.401983701979987],[-104.65895041508452,26.402798040758057],[-104.66394656926661,26.410693586281752],[-104.66567600624239,26.41006839855811],[-104.67020787724164,26.412088388113318],[-104.67198814966446,26.415469755761933],[-104.67125664902193,26.417016332580545],[-104.67091408765242,26.417153374638758],[-104.66951948356393,26.419233639997174],[-104.67030034788132,26.419526611789763],[-104.6741182900887,26.421139485837614],[-104.67407267773854,26.42236483404963],[-104.67370355060837,26.42252511675531],[-104.67482067114867,26.423081720172718],[-104.67785175727391,26.427972863916978],[-104.67773326913147,26.42966878682239],[-104.6805806671602,26.430106084481054],[-104.68105192710647,26.430112121919876],[-104.68505298328176,26.43212009485751],[-104.68704184761202,26.434159063876734],[-104.68677483025431,26.434485713021616],[-104.68888728311737,26.436705203664076],[-104.68932868103502,26.436946588856983],[-104.7040287137637,26.452463391343827],[-104.7043117892839,26.45278277334552],[-104.70968621076082,26.455888123364446],[-104.71098308996659,26.461430031973066],[-104.71097603790565,26.461947573277143],[-104.71182240721174,26.465062632707998],[-104.71355340713399,26.466713796306863],[-104.71687295098684,26.466750360371577],[-104.71728860713768,26.466943158281822],[-104.71793887055094,26.46718559107461],[-104.71864460351259,26.467193349344882],[-104.7201937773093,26.468622054566765],[-104.72053389762664,26.468602260520356],[-104.72407228413397,26.471793825615237],[-104.72532424211579,26.476062727617432],[-104.7270363315979,26.47796492306196],[-104.72770681053845,26.4783977940167],[-104.73122443388428,26.48004578755456],[-104.73200932246414,26.48005335634764],[-104.73224590922939,26.479961449433176],[-104.73261806961494,26.479470551660654],[-104.73368095444414,26.480304930497255],[-104.73446920016369,26.48002995557016],[-104.73670254293893,26.479250836070207],[-104.73717179902758,26.47939662495037],[-104.73727282312575,26.47970370458887],[-104.7372441490063,26.479915351095087],[-104.73656383396451,26.482122221899772],[-104.73921547188456,26.483024831909802],[-104.74716869226677,26.491852111705953],[-104.74766057821199,26.49230419021535],[-104.75575546654477,26.488423690686375],[-104.76095605795882,26.485818724416276],[-104.76880635764587,26.49017217736906],[-104.77691063986452,26.49259577241088],[-104.79122579571651,26.504561069289707],[-104.79461217415184,26.503869389370152],[-104.79903576188076,26.50566188941258],[-104.80927413852459,26.508497415885074],[-104.85210351677176,26.505635692233227],[-104.8550218271127,26.50510180842639],[-104.8565832258297,26.502868839391112],[-104.85896404088766,26.50333278448784],[-104.85893899897263,26.505294811841566],[-104.8648871201571,26.505535509355582],[-104.87046547534601,26.504172933144787],[-104.87363424888042,26.50796045813388],[-104.87584468876929,26.505546097630543],[-104.89890032671673,26.510018304262587],[-104.90855071799075,26.505499201629164],[-104.9182516866544,26.4938433941187],[-104.93225849809357,26.487512646234393],[-104.93672992120543,26.483711585645096],[-104.93777097112138,26.481397384625836],[-104.94031707381805,26.47939271160692],[-104.9389386289692,26.475967063528856],[-104.94078814972221,26.476329907704383],[-104.94199718333658,26.473324798827264],[-104.94388529422775,26.47298727575287],[-104.9443766732839,26.468344690489232],[-104.94465692516894,26.4682813588542],[-104.94701740686759,26.4683150883655],[-104.94764553277668,26.468320334567352],[-104.95455913482476,26.470521555065147],[-104.95767840652144,26.472643960539074],[-104.9589195934791,26.471570623991113],[-104.96321518988782,26.473390915858886],[-104.9670832885252,26.468245438100553],[-104.96959186841292,26.465952287229925],[-104.96539322169446,26.463035094807935],[-104.96197184025567,26.46489144688121],[-104.95770567574272,26.46428825291514],[-104.95623904241461,26.46284468091244],[-104.95844727354421,26.459366964936407],[-104.95754762831433,26.455807971707202],[-104.96083302711554,26.45374801184198],[-104.96105999029311,26.452131168313542],[-104.96706093607696,26.4487448464032],[-104.96754612192899,26.449013620945948],[-104.96789983544585,26.449419724759082],[-104.9683625849118,26.449987086863246],[-104.9737497941619,26.45303973099857],[-104.97638593060515,26.45273534607844],[-104.97742847686015,26.452744862005318],[-104.98012131217695,26.45099247180508],[-104.98056407738358,26.454286915668774],[-104.98481449464776,26.452129278811697],[-104.98789426997666,26.45349147433143],[-104.98833290305032,26.4538943122177],[-104.99151185873109,26.456339712222302],[-104.99745793625078,26.455708876146332],[-105.00067316367597,26.454305961002774],[-105.00083198180988,26.453870159344547],[-105.0022234841357,26.451484813847287],[-105.00557957333001,26.448475731238375],[-105.01057508157095,26.448358321380056],[-105.01275216495776,26.4461992026429],[-105.01492596628424,26.4470304815963],[-105.01768145062022,26.444649583997602],[-105.0203227503801,26.444243089700535],[-105.02390456352805,26.441736554187514],[-105.02423664407439,26.44011691163945],[-105.02706911155622,26.436942058141824],[-105.0283805537785,26.43762879749147],[-105.03258993786557,26.434377290942507],[-105.03733969472222,26.43575693571762],[-105.04026342613463,26.43412707314576],[-105.04539790079161,26.432971107578396],[-105.04897003807315,26.429659685082186],[-105.05257780965644,26.429764591069727],[-105.05376374123853,26.424750340600667],[-105.05621698290594,26.422143765781072],[-105.05663402357635,26.419300534546608],[-105.10154955723237,26.521405521268377],[-105.18206290781967,26.492153883779963],[-105.26468257990007,26.462072760726358],[-105.26500186855299,26.462416119129045],[-105.26891352070987,26.464688409038843],[-105.27072230260887,26.46721061465263],[-105.26890577601233,26.472004094734814],[-105.27044925493976,26.474734031965056],[-105.26946334849788,26.47976373596873],[-105.27508372115892,26.485600574832176],[-105.2794732366205,26.487528384173515],[-105.28186449576083,26.486957926477317],[-105.28792499360458,26.48892735539789],[-105.29035770850726,26.487811538501433],[-105.29197621524645,26.485115823261197],[-105.29160122626462,26.48105921567378],[-105.29163214985988,26.48088985691868],[-105.2984568800606,26.482018240753234],[-105.29968029059711,26.478891448142065],[-105.30203359394102,26.47610234597954],[-105.30224476960313,26.475605670429957],[-105.30123947734927,26.473296769427463],[-105.30377603632252,26.473007923036562],[-105.30903060405046,26.469687445136458],[-105.31345851714508,26.471469495668316],[-105.31576314619701,26.47003690289182],[-105.31657775465453,26.467852916246784],[-105.31625619582064,26.462595963866534],[-105.31736997443664,26.462491520383708],[-105.33408277227812,26.4695648453569],[-105.33824718273542,26.473871694032994],[-105.33855684711648,26.47746495885093],[-105.33875366041343,26.47805017877323],[-105.34203257988054,26.479472593077105],[-105.34461585047978,26.477381234434233],[-105.35276536856821,26.47887648026108],[-105.35563045874636,26.481625580283037],[-105.35716159815587,26.485618066361155],[-105.35539261699319,26.48833699721439],[-105.35407597661049,26.493615038143673],[-105.35095877277553,26.497899113559868],[-105.34270610985476,26.50451550241212],[-105.34766310647342,26.50451541775135],[-105.34953831348844,26.508720287694075],[-105.34778253668185,26.51174692371461],[-105.35574794865283,26.521846502063738],[-105.35629024337305,26.52472322633247],[-105.3619561115454,26.530078812106808],[-105.36252706977655,26.532024309946223],[-105.36541234669642,26.531452617114837],[-105.36816761037392,26.53399338421133],[-105.37283473806605,26.52966459786893],[-105.37914409572141,26.528977694322123],[-105.38109937534585,26.52959177609739],[-105.38373431665622,26.527547721937367],[-105.38555637163012,26.522576703509003],[-105.3887296844519,26.524063112097735],[-105.39006389953425,26.523943825864592],[-105.39680125266102,26.521800621653483],[-105.39739109050919,26.520273031397437],[-105.4008395197477,26.517846905655347],[-105.403427575448,26.51752466890946],[-105.40730248067996,26.520464984205205],[-105.40958258992868,26.52003335918255],[-105.42213413981142,26.52144064200064],[-105.423444742389,26.52275386550781],[-105.43056251667531,26.523829495406574],[-105.43604251654938,26.527749424032038],[-105.43860204308385,26.528344760101163],[-105.44296102119978,26.527389926496085],[-105.44441098585816,26.529078403318636],[-105.44693324163626,26.52721261667665],[-105.4502457637879,26.528580405926505],[-105.45073580534648,26.52718394207119],[-105.45529567290043,26.528000043220516],[-105.45589868740899,26.529719316075443],[-105.46031662752239,26.52929279790834],[-105.46360604544594,26.526871338405044],[-105.46759117635298,26.526051519827035],[-105.4701424163971,26.527898049338376],[-105.47157474271916,26.52636321958778],[-105.47435920028556,26.526480733172093],[-105.46923545347846,26.51932563303251],[-105.46924244962764,26.5152515521886],[-105.46789477850592,26.511389972751772],[-105.47069808214303,26.508651107072808],[-105.47636594637186,26.511097640203957],[-105.47859128052755,26.511425708762033],[-105.4812747031475,26.513365652033826],[-105.48244845287377,26.51685047405323],[-105.48546598672118,26.516905312250856],[-105.48622541319952,26.518568232703217],[-105.48903043984512,26.51845155325202],[-105.49141124802918,26.520558476435156],[-105.49185864565504,26.523639819067967],[-105.4956290120607,26.525631079879986],[-105.4972206966628,26.530559134322743],[-105.4962555607525,26.534355763402687],[-105.49608532855501,26.542851872080973],[-105.51733522443874,26.544133996598248],[-105.54900302491131,26.546578586030137],[-105.56533665803198,26.577645216378187],[-105.59641477684926,26.637919938252992],[-105.61948726095193,26.68350943991834],[-105.61595921244879,26.668179651307355],[-105.61120042280032,26.651208580133186],[-105.60101005302715,26.614848888082975],[-105.6093673150749,26.613732266229476],[-105.6325156587884,26.619688781580862],[-105.63904895466584,26.620097095258302],[-105.64089298340241,26.619996194298324],[-105.64044144925776,26.61355732185939],[-105.6372028093615,26.609141872760063],[-105.64553332683175,26.61660997329909],[-105.67488306304324,26.617670315187866],[-105.67094800489679,26.63522645961035],[-105.6756546318062,26.63508573512462],[-105.67657621948086,26.640410956717574],[-105.67843908333879,26.643888710394776],[-105.68034439869984,26.644984379185473],[-105.68142271705204,26.648651136780813],[-105.68944247343222,26.65634270600185],[-105.68988004624634,26.657188844316636],[-105.70479876393131,26.65290769466833],[-105.72890797633795,26.69789605624004],[-105.73496357731301,26.684819616451477],[-105.73496649572121,26.685326087382975],[-105.73507902853555,26.692079900662804],[-105.73763145381383,26.693343776088966],[-105.73818174043453,26.693625039924314],[-105.73819026816017,26.697880845403006],[-105.73950643362218,26.70147616434849],[-105.74559311179951,26.706322252480334],[-105.74528921498893,26.71128394817714],[-105.74634184320439,26.71386858291538],[-105.75001792053331,26.714055223664445],[-105.75467392274919,26.71116487882614],[-105.76150471857187,26.71288435825784],[-105.76728018943777,26.710080607158147],[-105.76966609435033,26.707234691188035],[-105.78130499332025,26.70745465283693],[-105.78776261097829,26.70379761989045],[-105.78976785555341,26.699490849673168],[-105.79141343387766,26.698006281632786],[-105.7942612994513,26.698767258694033],[-105.77580867228676,26.66093313588499],[-105.814552888312,26.690966912737508],[-105.86543746786504,26.747375855578866],[-105.8745422447326,26.738575731267872]]]},"properties":{"cve_ent":"10"},"id":"inegi_refcenesta_2010.27"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.0638625338998,19.498778714190223],[-99.07721537219442,19.503884602349956],[-99.09739953086222,19.51263124463668],[-99.10343072523023,19.511286220361058],[-99.10730429351014,19.50968499397618],[-99.10897409882818,19.51111036475885],[-99.11440711128222,19.511060814578684],[-99.12101471900507,19.51629164612649],[-99.12589849147713,19.52120817860896],[-99.12818362450656,19.525881292055033],[-99.12736766591217,19.535083906337377],[-99.13057459018347,19.536091294962716],[-99.12273296977241,19.54544370816376],[-99.12103574099473,19.54913195495118],[-99.1184801272127,19.55218522243058],[-99.11562146013074,19.554039619454272],[-99.11571862423739,19.55666025432106],[-99.10809721527113,19.564888494689058],[-99.11181804841164,19.568726922168196],[-99.11466172291631,19.57979630953173],[-99.11690614509172,19.581444592593584],[-99.11859756179479,19.584461728449412],[-99.11788784691146,19.590592301115123],[-99.11946221030854,19.591991985786365],[-99.12370609872903,19.592757280308888],[-99.12699260191295,19.588507695286694],[-99.13376084925233,19.5862436289583],[-99.13375974930989,19.584888102145044],[-99.13790438401395,19.581134711783477],[-99.1395681305226,19.575395039111243],[-99.14366519088469,19.572183763776536],[-99.14580738422706,19.568748052043134],[-99.14599554649106,19.565901289451233],[-99.15090062913094,19.560520351827563],[-99.15280870426801,19.561964657372243],[-99.1561438065541,19.56015445192429],[-99.15809551697464,19.557351337723446],[-99.15756897232347,19.555047393404948],[-99.16089999858667,19.549260881051737],[-99.15108490070281,19.54484570917424],[-99.15851348332052,19.533921028057136],[-99.1558472410938,19.53244047710689],[-99.15859871871919,19.52885785186828],[-99.15679812658539,19.52809077742819],[-99.15915865212406,19.526903348401447],[-99.16767249406502,19.529250768534553],[-99.1760114645985,19.532036043055825],[-99.17704573449555,19.529328470662676],[-99.17536094798976,19.53009461044843],[-99.17136728055175,19.527188519353217],[-99.17463071161126,19.524065035003787],[-99.16996265664807,19.52205543076485],[-99.1629751967373,19.517961494265023],[-99.15718110657338,19.502848882953685],[-99.16707816044664,19.506092407870085],[-99.17304284083332,19.508586704418747],[-99.17705041669524,19.506194905219502],[-99.1852213649907,19.50853706885124],[-99.19189795852066,19.511273110588775],[-99.20467164600973,19.51513596095515],[-99.20897047158064,19.512680622956054],[-99.21016416315416,19.511139123693056],[-99.21199250178813,19.50351072909831],[-99.2161800565201,19.490166481809297],[-99.21966275137532,19.48031447056286],[-99.2211150709843,19.475068474890293],[-99.20682497650313,19.47121507100826],[-99.21214839817452,19.46711391473309],[-99.21528512899084,19.456223855754217],[-99.21736481242016,19.453671105555998],[-99.21997277699592,19.452880135221392],[-99.22012764252787,19.447987283990585],[-99.22014597263052,19.44644129010726],[-99.21817968219631,19.44405750336341],[-99.22058281171712,19.443675323806474],[-99.2278514001743,19.438558675712954],[-99.22750324020978,19.435230498011208],[-99.22615752977168,19.433719126270887],[-99.22687231271686,19.431585986464427],[-99.22371596066267,19.42970085981534],[-99.22227442152473,19.427022961381283],[-99.2244675522187,19.427080049907374],[-99.22938354337094,19.422204544120348],[-99.23297404680005,19.41939502465584],[-99.23361252780455,19.416584873907823],[-99.236914893539,19.41270658968284],[-99.24233129480393,19.411301513911894],[-99.24831196544756,19.408648583551383],[-99.25094168162542,19.406416430332115],[-99.25603810867699,19.40356149604139],[-99.2569793538741,19.400431686244985],[-99.25867904556935,19.4040604480482],[-99.25987051056092,19.40054006405836],[-99.26576075898089,19.398190304987338],[-99.2695695177083,19.390383807530327],[-99.27243249939693,19.389678412727335],[-99.27321497003021,19.387586865663764],[-99.28003512341587,19.38226820107309],[-99.28456870264,19.379688282477503],[-99.28569702861148,19.376439116438178],[-99.28766792233989,19.376682171502807],[-99.29061394366147,19.375022540076372],[-99.2955872927414,19.36907728547982],[-99.29747257165064,19.369413995094135],[-99.29901977952892,19.367515262656013],[-99.3012315771839,19.369700442611077],[-99.30130904578789,19.377083823651276],[-99.30500525864426,19.376833433279216],[-99.30776485688955,19.37156117274833],[-99.31308764067609,19.370448742877784],[-99.31538975399047,19.36588835758721],[-99.3168615590103,19.36630652571688],[-99.31954278818301,19.36361804359956],[-99.32070360994697,19.360447948580543],[-99.31832868531217,19.358309401375436],[-99.32376351840958,19.35795258462116],[-99.32639199515631,19.353671635258706],[-99.32848441869129,19.35309238524792],[-99.32827225820034,19.345202434590135],[-99.33115194650685,19.339775625876257],[-99.33230695100934,19.33351810672201],[-99.33384207131553,19.33059040550637],[-99.35653601911463,19.306794295477914],[-99.35636863020824,19.3033334200872],[-99.35627424171025,19.302014524083802],[-99.34998525649854,19.2968371901228],[-99.35349778818255,19.29740184201745],[-99.35149208867074,19.294152379801858],[-99.35453602611051,19.293288015984558],[-99.35358134767228,19.291934309392218],[-99.36492420379875,19.277769252714222],[-99.36192190747323,19.275741867503882],[-99.34821370617692,19.273960946309046],[-99.344686599194,19.269475223946074],[-99.33915989600092,19.267697146560124],[-99.33762984041817,19.26403996906663],[-99.339857237275,19.25965291284274],[-99.34206867395216,19.247539199904395],[-99.34234097299839,19.241122399228345],[-99.33082148211827,19.237935298135255],[-99.32671959659274,19.232565569824033],[-99.32129650013076,19.232665474689213],[-99.3153433610363,19.22919648459191],[-99.3162497565815,19.22150168161062],[-99.30713553537714,19.21372846442017],[-99.30613062383838,19.206143743538007],[-99.30468651287157,19.202645355474544],[-99.30276264355189,19.19085509057288],[-99.29559685290889,19.172882804590415],[-99.29311506580888,19.165299072808125],[-99.28760524561704,19.146600573929845],[-99.27869521819008,19.13170172697704],[-99.22677778069317,19.096060003678645],[-99.13537901575552,19.089296071062847],[-99.12543312082187,19.062064718625834],[-99.05980023334854,19.048236664022056],[-99.04320886421806,19.075755460705068],[-99.02899368204368,19.085368792230724],[-98.98359448558631,19.07876325095998],[-98.97899540481734,19.074455953421932],[-98.97369660971157,19.079553174040143],[-98.96828358840276,19.083140871055377],[-98.96572148355466,19.085861170224746],[-98.96326577135608,19.092062791917897],[-98.96123979141203,19.095583183655663],[-98.95906350744337,19.104277959596004],[-98.95870199334257,19.11363850074423],[-98.95750747720774,19.122383213221042],[-98.96109188790535,19.13302910869055],[-98.965112718765,19.14041481755214],[-98.96645593925166,19.14387050415155],[-98.95462630677946,19.14952436070911],[-98.96736639850258,19.164438689151552],[-98.95238564861353,19.168637616090848],[-98.956174682766,19.17676306316997],[-98.9598490571496,19.179167876380575],[-98.96641033948288,19.187031662691197],[-98.96769389185215,19.18974307913993],[-98.9669786999765,19.19792165215307],[-98.96770189198196,19.203128840794022],[-98.96967857378064,19.204252913208563],[-98.96722874266527,19.20625109374106],[-98.96683776406161,19.209006558069234],[-98.96837656083164,19.21048884987391],[-98.96269404933082,19.214142628359582],[-98.95746128458285,19.2151355402724],[-98.95394833323206,19.214645847493102],[-98.95108553524926,19.218183699478516],[-98.94255321037843,19.215614861647737],[-98.94030281185218,19.223239640045733],[-98.96858650420899,19.232217947848028],[-98.96598687015342,19.249941007116718],[-98.97653062561119,19.25312538857162],[-98.97491757135782,19.25949052225218],[-98.97143088280279,19.278366688577478],[-98.9672238447742,19.305969839369766],[-98.96477606282764,19.306880770021564],[-98.96296582348936,19.31672738855275],[-98.95790262322384,19.323227616388408],[-98.97432515234487,19.337026570020214],[-98.97879332085341,19.34328927881677],[-98.9914674247479,19.355464199624294],[-98.99455666708883,19.358141325078577],[-98.99346759810476,19.360383722473784],[-98.99193917978857,19.367598706497006],[-99.01016471564537,19.378325192066825],[-99.01560442429894,19.38119009483836],[-99.01720529223837,19.38202218120051],[-99.02005612299502,19.383508435368753],[-99.05490802033313,19.399367836397857],[-99.05813572716687,19.40069215413206],[-99.05583625606232,19.42196123587712],[-99.05473062715737,19.425266488438353],[-99.05440066759962,19.425972850749247],[-99.04820907885704,19.439637110078763],[-99.04645882399439,19.442364636846435],[-99.05111965729049,19.450639115046442],[-99.06336101060532,19.478609278596366],[-99.063277817722,19.481267646905337],[-99.06485289839497,19.481835964729555],[-99.06799134249479,19.489083210642832],[-99.0638625338998,19.498778714190223]]]},"properties":{"cve_ent":"09"},"id":"inegi_refcenesta_2010.28"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-103.3069618878385,29.00392541810612],[-103.31059375551308,29.004541292842077],[-103.31475031014656,29.008113432797643],[-103.31598120514877,29.01084713054138],[-103.31096653823619,29.014737171753723],[-103.30873408684454,29.017748949421502],[-103.30680769320884,29.022052766577303],[-103.30688778573699,29.02377863552232],[-103.3093526927164,29.02570990448163],[-103.31392420456751,29.0262738540913],[-103.3154890546054,29.025371778383487],[-103.31986354885998,29.02049703259854],[-103.32424472248687,29.017083008836664],[-103.32837754011564,29.016040118497813],[-103.33647503751303,29.018173314774117],[-103.33886754312203,29.020301422482135],[-103.3421618212534,29.02753512504762],[-103.34159336659246,29.028542954805573],[-103.33753114871251,29.028075133267464],[-103.33282422008119,29.02872249635203],[-103.32910227429221,29.030780013907645],[-103.32779333357456,29.032602657502082],[-103.32708555024197,29.037632010393054],[-103.32819190947197,29.041126192668628],[-103.33057607875804,29.043150424988198],[-103.33741870360711,29.044646688790124],[-103.34065773817468,29.04431102114637],[-103.34591139274988,29.04671248558151],[-103.3486393567182,29.04280096914971],[-103.34812795270796,29.039272333123108],[-103.34913284324193,29.03699736471782],[-103.35114497320433,29.028051654472563],[-103.35579231047399,29.02092936235738],[-103.35802483877427,29.018989652244272],[-103.36510756278545,29.019660110266898],[-103.37081480339617,29.022133383345306],[-103.3768745165263,29.023902955438302],[-103.3846315650419,29.02375298246858],[-103.38573802688211,29.02218340802625],[-103.38778429286168,29.024261980062363],[-103.38746330467887,29.028515190761198],[-103.38802936305478,29.032067499646473],[-103.39092867353219,29.034643818675306],[-103.3925320371547,29.034886635321072],[-103.39522243363069,29.032384335739266],[-103.40001837774531,29.03106738777103],[-103.40279479799733,29.031926854482833],[-103.4038270850022,29.033694786184526],[-103.40499508397079,29.03950657758054],[-103.41447321654317,29.038046653521235],[-103.41693067069514,29.03862226323008],[-103.41731195041353,29.041938549702365],[-103.41992550203673,29.043267063641395],[-103.42215022776571,29.042525101121214],[-103.42894741631568,29.042086100069696],[-103.43281713753186,29.043631652431145],[-103.43374250096628,29.04549291764704],[-103.43000504522394,29.048719969978038],[-103.4306621875374,29.050697570283376],[-103.43470189105159,29.055252784937238],[-103.43492848645235,29.05767505927014],[-103.4411825813225,29.058784500908814],[-103.44590425150074,29.061203278449227],[-103.44989461396182,29.06521717688929],[-103.45043016071622,29.06982698132458],[-103.45001253807396,29.07266953097144],[-103.46079749799884,29.07243456464147],[-103.46124540710196,29.068910386407595],[-103.463590064129,29.065911549176462],[-103.46717055542462,29.066796697055736],[-103.47169251520859,29.066792466101276],[-103.47405165402193,29.0708457602297],[-103.47069491942756,29.077860263449566],[-103.47020504593797,29.08418168855826],[-103.47177460165244,29.085880908156525],[-103.47559232918297,29.087566117381698],[-103.47744934523547,29.090559400987217],[-103.48276072935306,29.093238011992185],[-103.4858522415156,29.0956721516813],[-103.490611489652,29.101592217189193],[-103.49434900404214,29.10847176204527],[-103.4986057707228,29.10834806045108],[-103.50099485583121,29.107064816249476],[-103.50471108045969,29.107926054804466],[-103.5053124152032,29.1106788611944],[-103.50173390308794,29.114167100219504],[-103.50182138679577,29.117905161595672],[-103.50516162917552,29.11907047954179],[-103.5096085360716,29.118500560018163],[-103.51422954292502,29.120517023033358],[-103.51754696283729,29.120953210431594],[-103.52416032820508,29.120790917505076],[-103.52522455886191,29.122111467925208],[-103.52364981088209,29.12647781165964],[-103.52379376612544,29.135105700059626],[-103.5247735493275,29.137272205548243],[-103.53118114691966,29.14101108731063],[-103.53687501420399,29.14296038626736],[-103.53916907509182,29.14475563814466],[-103.54441799647611,29.144657769889477],[-103.5474510770174,29.143164540996224],[-103.54948511180379,29.143383632118912],[-103.5518287023744,29.146072156016828],[-103.55269735767683,29.14922539790558],[-103.5504228530749,29.154459284112818],[-103.55313793925052,29.157924917436446],[-103.55495546452721,29.158683820954252],[-103.55917591571523,29.15533754718632],[-103.56507019491488,29.15479457071541],[-103.57000488449103,29.15326060470926],[-103.57292216415999,29.153647026756005],[-103.57767264243358,29.15135986754501],[-103.58501784727491,29.14966915011172],[-103.59350413810819,29.150309170839364],[-103.59918874137799,29.154818231431477],[-103.60067377420285,29.158231842428336],[-103.6058880466008,29.160153175734308],[-103.61007378137089,29.16468039222417],[-103.6122138690522,29.16529853117646],[-103.61865218079191,29.162827282092735],[-103.62459652224794,29.163198673429577],[-103.62786575115945,29.162785732212],[-103.63205940655689,29.158919827799252],[-103.63463149640762,29.158669127500502],[-103.63896127371913,29.160939110461584],[-103.64451191297667,29.15923967928626],[-103.6479759406318,29.156875616617583],[-103.65014596248432,29.156693951046805],[-103.65161248993422,29.158390871813936],[-103.65130774960602,29.161046440318557],[-103.65325627209978,29.162791775474773],[-103.65684711351884,29.169408113259806],[-103.65922656282896,29.17059040966194],[-103.66469004617869,29.170794093517657],[-103.66988906289129,29.173588553321167],[-103.67194688238249,29.173279168080853],[-103.68469670527628,29.176143407459335],[-103.6884833495385,29.178185785496908],[-103.69581006973215,29.17731177606794],[-103.69833396062347,29.177607141371197],[-103.7004014926568,29.179390071527052],[-103.70365916296498,29.1848724160306],[-103.70809863237872,29.18436579745753],[-103.70987960058989,29.185070740963965],[-103.71418510221406,29.184565728896416],[-103.71554920832887,29.181372639396045],[-103.71904185738777,29.18188964960899],[-103.72429731281449,29.1911774747187],[-103.72868268778166,29.193657422028252],[-103.7300450120776,29.197942218320463],[-103.73681930876523,29.20210594362311],[-103.73977270073539,29.205404703805982],[-103.74249689419713,29.2108700134022],[-103.74330015727054,29.215326988281674],[-103.74080035792969,29.219453067369273],[-103.74264713019022,29.222296644905214],[-103.74885132195294,29.219953770186635],[-103.75359201098229,29.219723743001452],[-103.75688065507666,29.22073648317229],[-103.75736061624048,29.223575270800495],[-103.75493205735819,29.225678269323907],[-103.75427192873292,29.22773327803111],[-103.75817300642893,29.232970402204955],[-103.76038022190852,29.23345717575478],[-103.76357419891633,29.232166517086455],[-103.76812956343434,29.22758810377843],[-103.76775266971788,29.22453626340956],[-103.76957004954983,29.22126573305883],[-103.77626210310501,29.22072550234111],[-103.77806526879806,29.22406308391396],[-103.78181244910172,29.22814942951794],[-103.78077578006662,29.23305532646401],[-103.78147482376488,29.240523664650823],[-103.78059012014904,29.243475577586764],[-103.77686658009162,29.243668782740713],[-103.7759786384936,29.244974577498567],[-103.77555253419615,29.249566161976134],[-103.77706273000081,29.255941425356298],[-103.78231744335875,29.263228412238448],[-103.78332465695848,29.265518869799166],[-103.78860710009161,29.265468224618985],[-103.797876947237,29.259105778337698],[-103.8007768215258,29.25929993129631],[-103.80636784725749,29.261454736497797],[-103.8067645540379,29.26405941583772],[-103.80912468346457,29.266965432567588],[-103.8076233670767,29.26990278190783],[-103.80964462322231,29.27333096339231],[-103.81403845091091,29.27451480739984],[-103.81759279092302,29.272371168859763],[-103.82534971521858,29.269791000140174],[-103.83623883743132,29.274079123207514],[-103.83790291899123,29.278429212196954],[-103.84439694637723,29.280005074366272],[-103.8484743490609,29.28001656025441],[-103.8558607291464,29.281955201516837],[-103.86341101933652,29.279799128580862],[-103.86632734134832,29.282225747770326],[-103.86954395459452,29.280697076181013],[-103.8728394827761,29.283306136471538],[-103.87940020921326,29.285514310890278],[-103.88516891809763,29.28418281133844],[-103.88536012749279,29.281569599023612],[-103.88947644122061,29.279415693726833],[-103.89953544450657,29.287732528505956],[-103.90157592584353,29.28781973617953],[-103.91358193092265,29.284442016347896],[-103.91799104854067,29.28494028157661],[-103.91860577958397,29.290316509104287],[-103.92573990196945,29.29432468785535],[-103.93044594619778,29.293524628985153],[-103.93832269930658,29.292982071430004],[-103.94370824061167,29.295346094551974],[-103.94858679117254,29.295130708624413],[-103.95236248827098,29.29747189107394],[-103.9548192806613,29.29689344432387],[-103.96118844569526,29.298771389734043],[-103.9646451346594,29.298553705193967],[-103.96802558867319,29.29988927334142],[-103.97045970511704,29.296841523719706],[-103.9761989383141,29.296729455965306],[-103.9836368461805,29.29969517057947],[-103.98622432932319,29.301607010923306],[-103.99471662364385,29.304932048770127],[-104.00163646995668,29.305539503091666],[-104.004210065895,29.307243222818727],[-104.00823481259545,29.308137034600975],[-104.01553096054198,29.311611533386895],[-104.01956203306014,29.31182291368009],[-104.02915013396364,29.315642785244393],[-104.03789388744195,29.319905170678],[-104.04308003329754,29.323639554402916],[-104.04729991473044,29.325609363871877],[-104.05443847447589,29.329979177935513],[-104.05635474532971,29.33207376773703],[-104.05593935907979,29.336880864731654],[-104.06038689869291,29.338374583399002],[-104.06743909915315,29.341640552720264],[-104.0729211277935,29.346189901090497],[-104.0774020595324,29.344413538653214],[-104.08307910795384,29.346582708998994],[-104.08577872098596,29.349669408032582],[-104.09126538728862,29.35346542291279],[-104.08934252663556,29.357226997750388],[-104.09108177180559,29.35963108196313],[-104.09814898155287,29.361578257413896],[-104.09848211978704,29.36622650129931],[-104.10178539475083,29.367981519972147],[-104.10507745886696,29.37194727005067],[-104.10997420042446,29.373993031874818],[-104.1155197443565,29.3727541956506],[-104.11809050535146,29.3708343964405],[-104.12144592039772,29.37167054646494],[-104.12188704404099,29.37800935632913],[-104.12421599330344,29.381198371405674],[-104.12940928220866,29.37984989917635],[-104.13392386322363,29.381668902676722],[-104.13611763323212,29.38481397212138],[-104.13798040403702,29.381735127011666],[-104.14158464721709,29.380236598817362],[-104.14391505967495,29.381755575300645],[-104.14341339446486,29.384566262726366],[-104.14450816736456,29.38776143594322],[-104.1505512237278,29.38695588133851],[-104.15194878148799,29.388685585877738],[-104.15338308593726,29.39325991398482],[-104.15611789281633,29.39396926380988],[-104.15876521445648,29.391929224515422],[-104.16230114270758,29.39165468834028],[-104.16792935961092,29.395514847369327],[-104.16861631393635,29.39768509776775],[-104.16677691231217,29.398953017476344],[-104.16778847574022,29.402879092900776],[-104.17269012922429,29.40750940976295],[-104.1740863056981,29.41001499917678],[-104.17760677576683,29.410916312078257],[-104.18035455368471,29.412847757000804],[-104.18143981160392,29.4257554245184],[-104.18443974050865,29.428832936635388],[-104.18841232838065,29.430404865744208],[-104.19046250224216,29.433176402701633],[-104.19340431948638,29.43526744705997],[-104.19550922881331,29.44140050346084],[-104.19844381224897,29.443256456681638],[-104.20638660298164,29.447105001194927],[-104.2119666013138,29.45098818726416],[-104.21750684932158,29.456118555695355],[-104.21742649094472,29.458613375776906],[-104.21332991205969,29.461560621494982],[-104.21227910368793,29.468947541000034],[-104.21058512218912,29.473904596860564],[-104.21086052697183,29.47660223758544],[-104.20881519597339,29.480674313042186],[-104.21454029671418,29.48565916570493],[-104.21712508482358,29.484136976536774],[-104.22768726263882,29.4799705407832],[-104.22910842519735,29.479041488670475],[-104.2315552572141,29.479897682853732],[-104.2339141772224,29.487129209895443],[-104.23337502170546,29.492857350586632],[-104.23682121947706,29.497145574003014],[-104.24068832155865,29.49784857192958],[-104.24499374930707,29.500445395963936],[-104.24684574876017,29.502821327089407],[-104.25406356875936,29.506497281081238],[-104.26030651784242,29.506669751942866],[-104.26231724412423,29.509770537583165],[-104.26117229925705,29.510928165015343],[-104.26364446846566,29.5141584371014],[-104.2686544552663,29.514432101871705],[-104.27136749387569,29.515986429156555],[-104.28423146963235,29.51796617379091],[-104.28684791241147,29.519028772364152],[-104.29206186460681,29.519766756357853],[-104.29324172260868,29.522911712764824],[-104.29512907462362,29.523875067779954],[-104.3049037584376,29.52428502497736],[-104.31109364713586,29.523633387456755],[-104.31107167406697,29.528619739461078],[-104.31340838265919,29.531758546727133],[-104.31711772603387,29.532510460525714],[-104.32118676347551,29.528737622579115],[-104.32042642715095,29.525299931374548],[-104.3217774561067,29.522278579546423],[-104.32345826524681,29.52188278418123],[-104.32617393490034,29.52348300449944],[-104.33138147779846,29.522408740016203],[-104.33305763452734,29.5202726009058],[-104.33538326624728,29.51979569229718],[-104.33803236581713,29.52089774547693],[-104.33844418652887,29.525643342457556],[-104.33980930365504,29.527228534580047],[-104.34394060392708,29.528574203032974],[-104.35313700655786,29.52866918055429],[-104.35385623740171,29.532212425558896],[-104.35237066040634,29.53575455821823],[-104.35330031254773,29.538942962773717],[-104.35615363838139,29.54119476032696],[-104.35803347370523,29.54101101318446],[-104.35894650919778,29.536886819432993],[-104.36022349531498,29.535862698031053],[-104.36825023542553,29.538907796957176],[-104.37021347606174,29.542931966159472],[-104.37474818412943,29.544202009550986],[-104.38001665921291,29.541830369183515],[-104.38492331541266,29.542991464659792],[-104.38552980620864,29.546065458328997],[-104.38356208110963,29.549683509363604],[-104.38354532797837,29.55241127388615],[-104.3855661275046,29.554671104128033],[-104.39321491128771,29.55350971147078],[-104.39453115199677,29.5573286839674],[-104.39408893258849,29.560390098178402],[-104.3975208076925,29.567455301759708],[-104.39647987577621,29.57000569477384],[-104.39898176195317,29.573004494254405],[-104.42254105417248,29.58715383714764],[-104.430943105079,29.591748298644404],[-104.45247627498338,29.604659674373522],[-104.4553495803791,29.606581371669904],[-104.45634960903891,29.608461149775906],[-104.46047390049614,29.60866664520222],[-104.46379141605604,29.61024481655653],[-104.46579640135019,29.609329266727173],[-104.46740542114213,29.610816467994766],[-104.46553929528375,29.61577491489527],[-104.46557581585569,29.618314018738886],[-104.46835973482621,29.61915342071137],[-104.47400371213297,29.618644411750154],[-104.47477882998902,29.623855946239473],[-104.47595196267076,29.624744082428606],[-104.47635074865644,29.62832972722248],[-104.48342173043295,29.627828045677802],[-104.48585658408831,29.628694483582137],[-104.48742886095113,29.63131053319836],[-104.48743833321117,29.633802911465693],[-104.49478979580743,29.63404995433757],[-104.49689267168549,29.636119129200836],[-104.49675195613634,29.63936564382277],[-104.5009699020469,29.63882447176752],[-104.5034770859728,29.637267832354212],[-104.50617555268707,29.63773119553815],[-104.5054824195928,29.63454110246488],[-104.50833439301971,29.632651277783395],[-104.51287239955951,29.637373264549296],[-104.51549231379971,29.641599589491193],[-104.51000584736653,29.643731025786735],[-104.51225602083514,29.646621291948804],[-104.51722013067257,29.647364427294804],[-104.51826670310385,29.648951484079078],[-104.51659525768918,29.652403545490017],[-104.51931102144908,29.65399513089625],[-104.5228223578755,29.658375765463006],[-104.52499404276682,29.659573705073797],[-104.52484082210407,29.66552452000741],[-104.52616992888107,29.66797831044471],[-104.52864867051824,29.6680910355131],[-104.5289457479467,29.66994524640569],[-104.53092365488607,29.670769087551946],[-104.53356649133366,29.669257367131593],[-104.53347407008351,29.666695390282996],[-104.53642673547188,29.667884174688993],[-104.53530534136479,29.672082588974376],[-104.53878262087426,29.677685943720803],[-104.54415995134576,29.680704213387912],[-104.54381723731836,29.68296553161889],[-104.541017981756,29.684831965177864],[-104.53867094852416,29.684553346058976],[-104.53288821645373,29.686806656782778],[-104.53076673630437,29.688994281113878],[-104.5315829270998,29.69133632607827],[-104.53799599560563,29.69335538048972],[-104.544133087663,29.69669410836559],[-104.54585504933618,29.7001307578401],[-104.54372267250096,29.703376843018532],[-104.54636484302591,29.708872083035487],[-104.54428955981007,29.71056558352808],[-104.54533310533378,29.713657367156827],[-104.54733964715251,29.71452767668245],[-104.54507109721862,29.715917741738906],[-104.54779222854461,29.717720340350468],[-104.55011607932465,29.716423643674204],[-104.55236583146677,29.71733808506167],[-104.5495240710701,29.720004640878187],[-104.54970678302647,29.721389848347087],[-104.552481296996,29.723144707075278],[-104.55166023333032,29.72583484001001],[-104.54944535792504,29.727224349996902],[-104.5495033145358,29.731032941937258],[-104.55633229073402,29.731870637994632],[-104.55597853617024,29.735166715945297],[-104.55988630529163,29.735238734784218],[-104.55941589724398,29.73794833403531],[-104.55059547325226,29.73906204903659],[-104.54971498032995,29.74140013964694],[-104.55186977222996,29.74135162742283],[-104.55372568632242,29.742905502939493],[-104.55620378655624,29.74285316261114],[-104.55762231411575,29.745752371931758],[-104.56274655319032,29.747808823625462],[-104.56919943802603,29.751548434783842],[-104.57007630328553,29.75369838664568],[-104.56908201060321,29.757081904974314],[-104.56733542334439,29.756710363475236],[-104.56678626353965,29.759862908779496],[-104.56394106255755,29.761514852242613],[-104.56576441721478,29.761812552999118],[-104.5659818955088,29.764696742404453],[-104.56833712545125,29.766288851940033],[-104.56534654051086,29.770134918325766],[-104.56893631048985,29.774473210885446],[-104.57072028297972,29.7783483616887],[-104.5741990963121,29.779774219284946],[-104.57426416585446,29.781394635982338],[-104.57872783866014,29.782589609954186],[-104.57864801877884,29.786404128952825],[-104.57950716342759,29.790130980967206],[-104.58229880505462,29.792268602840807],[-104.58127137471729,29.79459499841232],[-104.58319992792667,29.795781894534116],[-104.5897969235777,29.796060797792848],[-104.59080780346147,29.798181308638334],[-104.5898695899491,29.799704053349615],[-104.5860834143786,29.80095021453917],[-104.58657749358343,29.803469533408247],[-104.59005805757249,29.806800488579654],[-104.59207088242584,29.810406712512133],[-104.59391752767107,29.808256444542394],[-104.59180661214197,29.80813622474136],[-104.59381631256082,29.80506140497829],[-104.59866096187267,29.81007386824865],[-104.60096019770623,29.815855396399456],[-104.60319479311931,29.817193423257834],[-104.60606497677395,29.81643357642406],[-104.6075606287526,29.819473932997994],[-104.60998676989817,29.818968551861985],[-104.61047765869648,29.82047635877916],[-104.60893489397654,29.82463683145221],[-104.6085777291645,29.827828271630267],[-104.61199450185478,29.827185708163313],[-104.61569349098494,29.829589075557465],[-104.61866479983229,29.8296479600848],[-104.62035896027453,29.83096219719681],[-104.62004796072557,29.833069503113222],[-104.61309566784661,29.834171900444346],[-104.61070116060182,29.8366520693894],[-104.60940333480755,29.83943741136369],[-104.6108550601815,29.842173823029498],[-104.61387361765009,29.84399517936032],[-104.61565935418844,29.846434716177498],[-104.61952639892019,29.843749219458118],[-104.61903391829787,29.842217982578404],[-104.62371485794966,29.84243759628322],[-104.62423699682154,29.844955595665738],[-104.62180352744389,29.846284915332546],[-104.62164050552036,29.84956204421104],[-104.62410090251211,29.851054609363587],[-104.6287970874667,29.852002690157178],[-104.63069918702308,29.856930674095963],[-104.62981363283717,29.862191940354876],[-104.63179679231416,29.868057396698077],[-104.63389173047597,29.87116547582565],[-104.63784738644051,29.87423935985015],[-104.64088185080783,29.873495188893628],[-104.64326812938464,29.877437331439012],[-104.64580076968343,29.878291191033952],[-104.64634977027981,29.88360749519245],[-104.65217829036249,29.88824589859496],[-104.65074752591136,29.890590479610182],[-104.65346243627715,29.89178912171502],[-104.65393598191622,29.890168653562682],[-104.65659244159224,29.889417161404538],[-104.65802561625367,29.89046562949062],[-104.6579286397108,29.895263584751433],[-104.65915364567059,29.89824473791805],[-104.65841276393559,29.90178251125934],[-104.65580430766437,29.901967306334257],[-104.6552679267732,29.905307895322096],[-104.66273119518968,29.90455753950158],[-104.66254419955055,29.90131919086167],[-104.66629927742179,29.902754304659766],[-104.66563119546902,29.90941785302016],[-104.67031129579607,29.911954542935348],[-104.67444459747924,29.91088209223767],[-104.67694871873294,29.91307489775869],[-104.67637323372423,29.91603689097559],[-104.67992140514849,29.921359880089426],[-104.67972183565502,29.925051776148507],[-104.67869158297867,29.926554645992553],[-104.68294990772654,29.929174549349398],[-104.68315869899686,29.931714956611188],[-104.68135367982467,29.930323426915606],[-104.67951502735048,29.931260084967562],[-104.67945515305695,29.933306021829253],[-104.68274348790203,29.935312307355957],[-104.68121769185302,29.940130147355603],[-104.6786032497734,29.93847809555325],[-104.67794747576949,29.941157688245823],[-104.67853264743911,29.944239849986445],[-104.68071484525746,29.946008538521426],[-104.67724016347216,29.952303633443933],[-104.67481402643494,29.950816554436244],[-104.67337008791719,29.955140594754255],[-104.6742290494638,29.95692990180754],[-104.67979525925233,29.95593108808316],[-104.68092507889492,29.95748577293233],[-104.68500558084003,29.95660103921489],[-104.68325977620356,29.96273541006707],[-104.68349451889071,29.965675665383458],[-104.68205274585364,29.969294259364347],[-104.68555910546439,29.97104225504893],[-104.68301835213151,29.971671689374375],[-104.68011982506607,29.974605035231775],[-104.68016784779178,29.976698232995147],[-104.68224626983402,29.97722021512152],[-104.68625245912904,29.97421867765064],[-104.68849561404517,29.973776684572613],[-104.6930026268243,29.97517386426813],[-104.69007323662481,29.979565472476224],[-104.6884490214058,29.980808433016023],[-104.68803366365006,29.984452807561297],[-104.68597520498349,29.98637681631078],[-104.68574679173804,29.99075063845646],[-104.68974591471328,29.990453541432316],[-104.69492715739568,29.99255763636461],[-104.6937070074315,29.99417779331577],[-104.6899796057582,29.993864128392772],[-104.68719055443296,29.996139351919112],[-104.68923903637926,30.001418572482066],[-104.69072547151768,30.00310995860849],[-104.69250655093293,30.001675246960872],[-104.69404658317359,30.002778987659212],[-104.69351035901963,30.007620938467824],[-104.69110753954999,30.008350925843786],[-104.68946224646385,30.01098419579472],[-104.68984331940021,30.014955996613082],[-104.69349245635362,30.019113938381224],[-104.69713870435481,30.019417284707572],[-104.70246103899319,30.0215291754497],[-104.70394943144976,30.024818615099605],[-104.70241309197178,30.02841559101404],[-104.70238823586288,30.030859919255192],[-104.70050025313844,30.034057547030216],[-104.70077183115467,30.035749587338046],[-104.69510100973741,30.03782136413298],[-104.70080559580833,30.043552547850993],[-104.70659307981316,30.050576088191804],[-104.70397646086008,30.05494939587402],[-104.7046548844296,30.058262852216217],[-104.70211695069435,30.060262271962245],[-104.70365975966382,30.063340137182138],[-104.70252627534774,30.06484506558894],[-104.69728463904875,30.065083411102933],[-104.69301928696967,30.069880534744357],[-104.69085806723501,30.070492843963677],[-104.6932911331466,30.071948625327252],[-104.69264432724037,30.074134761938694],[-104.68829336220392,30.07362013812508],[-104.68680927838886,30.076558786319595],[-104.6888081492703,30.075453075744406],[-104.69070023483647,30.07611010450239],[-104.68967549685271,30.078931011393195],[-104.6863265766583,30.08170615114267],[-104.68508607355716,30.085396733897426],[-104.68654674814172,30.087205680414456],[-104.68827491900913,30.08520701984054],[-104.68979168997521,30.089648208407482],[-104.68649549927125,30.09108365986441],[-104.6859851941689,30.09554944631043],[-104.68493284555302,30.09801777848395],[-104.68563693511567,30.099897629223733],[-104.68901210705724,30.095242288459815],[-104.69222918762193,30.09620409933183],[-104.69247529373308,30.099846879644247],[-104.69431475022685,30.101679023190457],[-104.69239769892488,30.104312437546582],[-104.69183288887302,30.107955676000245],[-104.69018266809377,30.10624090746154],[-104.68726291307303,30.105678432953653],[-104.68545329006884,30.10770061552472],[-104.68607724114275,30.110802641387068],[-104.69143001423902,30.11131678620535],[-104.69186538067123,30.114982954330117],[-104.69051570623208,30.117592507073255],[-104.69535541044121,30.11834180571293],[-104.69370869645996,30.121327608324123],[-104.6956853996997,30.125180875150136],[-104.69533969598598,30.132278867202388],[-104.69645022990625,30.134675468108014],[-104.69482756713046,30.134253386988632],[-104.6925845648326,30.135782355788706],[-104.69112677688884,30.13879150898697],[-104.68944938878968,30.137570305039958],[-104.68955325315795,30.140847723145555],[-104.68645086444582,30.14152034026864],[-104.68542585479088,30.145069755651946],[-104.68850862036152,30.145115132901424],[-104.68813170954314,30.147371577972933],[-104.68989085523953,30.149227320920545],[-104.68667484622995,30.152072853093102],[-104.68938108031017,30.15458617095146],[-104.68730262655822,30.159969356110935],[-104.68809159326042,30.16624409200398],[-104.68647165117858,30.170240362250752],[-104.68625719918413,30.172919749973858],[-104.687557559369,30.17564534660545],[-104.68682971246596,30.17907708061847],[-104.69140536612832,30.18433913726045],[-104.69308617301687,30.188850643164585],[-104.69679465490856,30.1914572351277],[-104.69606716667533,30.195077031508163],[-104.69712454679018,30.197755666834723],[-104.69942511950626,30.198717859237433],[-104.70016064542818,30.204522477084424],[-104.70419458172643,30.20710515316989],[-104.70476398459982,30.208397406437484],[-104.7024937575826,30.2114541812702],[-104.70260324844963,30.21286424848057],[-104.70858968330487,30.219370402248842],[-104.71102897269293,30.223199573583145],[-104.70791947208625,30.22609250715442],[-104.70619483710067,30.234131432735808],[-104.71255853452772,30.23739383722392],[-104.71445647614087,30.240635769034895],[-104.71681339584808,30.24260821150824],[-104.71925405209237,30.246883761957065],[-104.72244979334215,30.24831490709545],[-104.72445591787397,30.250563465644234],[-104.72490434275039,30.253732479244547],[-104.72783299066435,30.25513086175033],[-104.72936346308302,30.258248879761766],[-104.73332777275687,30.26112293516968],[-104.73714436060595,30.261484386728682],[-104.7369811385085,30.25594221482629],[-104.7402449178623,30.25935888822255],[-104.75024015082244,30.261692720093265],[-104.75190171028578,30.263847029698468],[-104.74902898922971,30.26815615797699],[-104.74783783085485,30.273280777066987],[-104.7510217709596,30.27155397617588],[-104.75160143774445,30.273759447404814],[-104.75456800940526,30.271868998215098],[-104.75997851897074,30.271659886968052],[-104.75993828142236,30.274290520496095],[-104.76318688262154,30.27458299674447],[-104.76014479526589,30.277530825545114],[-104.75827128998691,30.281460421141958],[-104.75859800079462,30.286978426033897],[-104.75935993615201,30.28777396395975],[-104.75938915742569,30.293316618648362],[-104.76143262438143,30.301012062858263],[-104.76691417465122,30.30366772698096],[-104.76592789981811,30.30651349969304],[-104.76851549211284,30.30448334358033],[-104.77281067007709,30.30291597678962],[-104.77508970100286,30.303916665614054],[-104.77903816496053,30.303313437190923],[-104.77940275735898,30.305637091158133],[-104.77668194034334,30.308020300147916],[-104.77707317920817,30.310273391228577],[-104.78009743639927,30.313854448666177],[-104.78330544340832,30.316354311716623],[-104.78658309213813,30.31674004423934],[-104.78908569245345,30.318913878493277],[-104.78880257842184,30.32154551732424],[-104.79094382476171,30.322006321220613],[-104.79180448736088,30.32583098471457],[-104.7945172719206,30.326806037511858],[-104.79757041339707,30.330504001281156],[-104.80263692932624,30.331140114940865],[-104.80662771902905,30.33302542725602],[-104.81128244794985,30.332653065569843],[-104.81171475202717,30.333531322931435],[-104.80997755706443,30.341090268356425],[-104.81172000078283,30.34272676793705],[-104.8157910194314,30.344329620369535],[-104.8178082564811,30.34662245434697],[-104.8201952734957,30.34731656939914],[-104.82213338341052,30.349938491714113],[-104.82154875048053,30.351819965693437],[-104.81473255391245,30.353188532318768],[-104.81382215202598,30.35960421743863],[-104.81109877530668,30.361659320072476],[-104.81153420664953,30.36668346907544],[-104.81651399200291,30.366051182298406],[-104.81936908403327,30.367964548943064],[-104.81900802035972,30.371042815756425],[-104.81615396386815,30.373944090759096],[-104.81746441012172,30.375699825081995],[-104.82768957619982,30.373423532799848],[-104.83188512026311,30.37295855431728],[-104.83728078387315,30.37387369930036],[-104.83837592199689,30.375699742629706],[-104.84516678256045,30.378910791612327],[-104.84875853181313,30.383598824207866],[-104.85422850843116,30.385562488290077],[-104.85916217113532,30.390401068494498],[-104.85613131883838,30.3952533886702],[-104.85429415670762,30.400405403024365],[-104.85582636019939,30.40279384543959],[-104.85740520822185,30.408282211282994],[-104.85474234996406,30.411418278078372],[-104.85112641182167,30.41383063428333],[-104.84777255182576,30.414832521966673],[-104.84893186628256,30.418256139129255],[-104.84870908736298,30.421662634461484],[-104.84996784821118,30.41926125721369],[-104.85218797800263,30.41894566849976],[-104.85374502781065,30.420934752744472],[-104.85675899710134,30.421883639623218],[-104.85680010479166,30.42411461707468],[-104.86147604100643,30.426441297880388],[-104.86059895649748,30.42916979575159],[-104.85801886754479,30.432610843136217],[-104.85900444443377,30.434179787753465],[-104.85829265135749,30.43735372374624],[-104.8597708853797,30.439671905180433],[-104.86558152402245,30.44128853348724],[-104.86799273005943,30.441112691360217],[-104.86762753675202,30.443345591111893],[-104.86536406559287,30.445446572584274],[-104.86447087524078,30.449913120448628],[-104.86494424411688,30.451883697817834],[-104.86810172409872,30.453911998601313],[-104.86980695423318,30.457732081007464],[-104.86824213045753,30.463141279861134],[-104.8662713413425,30.464442356038944],[-104.86594033138158,30.467802399394486],[-104.86955896561727,30.474008955594854],[-104.86950867579264,30.478847271200436],[-104.87184822880891,30.480033883767533],[-104.86924778747795,30.48467298798016],[-104.86708391464344,30.485528757761585],[-104.86758854117784,30.488109796894435],[-104.86648744602985,30.49403342623134],[-104.870746120278,30.49417757880923],[-104.8738999281976,30.495407238876282],[-104.87199837585536,30.50167545664442],[-104.87340288306564,30.503716380646324],[-104.87188467214287,30.510357164465006],[-104.8732943233145,30.513597229250195],[-104.87659785262878,30.510652868583975],[-104.87943645662472,30.51532142572802],[-104.87913446544104,30.517449090750688],[-104.88263716934358,30.516331463171582],[-104.88568427214005,30.518076135285582],[-104.88484864801222,30.519847371084325],[-104.88138645403598,30.520140480509895],[-104.88155041008332,30.521804053898677],[-104.88580079536786,30.52425660207564],[-104.88370624873875,30.525839403995747],[-104.88245689879125,30.523651722139277],[-104.88065160437344,30.524494735835447],[-104.88029209611716,30.529846259400017],[-104.88190445382173,30.532232140332155],[-104.88763534782129,30.533853672117402],[-104.88918500275446,30.534971919648626],[-104.89078685574691,30.53987433574605],[-104.88732611672765,30.54458857717617],[-104.8876444646346,30.546622668331963],[-104.89035406693944,30.54647497925282],[-104.88967604522077,30.54868718410097],[-104.89247408574164,30.55086427912272],[-104.89320287955115,30.552953650661948],[-104.89550116377745,30.55272708737084],[-104.89774325895604,30.554101683569797],[-104.89765970068828,30.556244777019913],[-104.89528940244577,30.558849197517986],[-104.8962363204526,30.563681845069482],[-104.89886886026011,30.56798144073548],[-104.89915782092135,30.57051044371616],[-104.90720295394533,30.578159301602113],[-104.9077745631838,30.582535543164283],[-104.90976946649937,30.584930375232602],[-104.91334087859224,30.585690761319654],[-104.91699535176451,30.58484883585203],[-104.91981513499826,30.586883484872658],[-104.9211061956691,30.58932797209758],[-104.91971508139613,30.59086149346774],[-104.9185757737888,30.59471371105957],[-104.91871896762689,30.597577356750264],[-104.92147233592158,30.59773315298679],[-104.9223605789204,30.603532009592016],[-104.92512684916295,30.60502768657875],[-104.92697918681228,30.60455861300852],[-104.92929114775256,30.599157373181413],[-104.93050634408598,30.598453413828906],[-104.93471534236886,30.60052980036238],[-104.93488601527599,30.605015051354485],[-104.93627100473515,30.606068412745287],[-104.93922766832799,30.603770504884324],[-104.94421453952918,30.602924880548812],[-104.94722888287043,30.60448133444362],[-104.95005322645778,30.603881336315283],[-104.95380281932069,30.606538798125882],[-104.95468322809973,30.60890436984755],[-104.95891314251634,30.61029723667332],[-104.96700158309534,30.607875861731145],[-104.97167664041302,30.610004063171687],[-104.975166734335,30.61396416095596],[-104.97437807400587,30.61611046969324],[-104.9771738271154,30.617627484253774],[-104.98000951371063,30.621541648534503],[-104.97917397040425,30.62759354838454],[-104.98218293784657,30.630090112750963],[-104.9826670824562,30.633740418956563],[-104.98418061337861,30.635164706652347],[-104.98404119346174,30.643142178354935],[-104.98556656221189,30.649622114891997],[-104.98563967895399,30.65481655268212],[-104.98455635671718,30.655445468999005],[-104.9861474261109,30.65785451233893],[-104.98539368047722,30.66176330167235],[-104.99008074849553,30.662996845866076],[-104.99337068313321,30.66510627800068],[-104.99202642863918,30.668096820146843],[-104.99485856525666,30.670294117394803],[-104.99931548688505,30.670736500354963],[-105.001638933391,30.67290785962723],[-105.001123135456,30.67523592869827],[-105.00218720173598,30.68070738914747],[-105.00756693129858,30.686026093138082],[-105.01261523189419,30.68355636235964],[-105.01360706752263,30.68221843487777],[-105.01858523701998,30.68469001663442],[-105.02121472214509,30.681341071193287],[-105.02585578727115,30.681204592868653],[-105.02724459339788,30.678850991965135],[-105.03293321975048,30.68168845327483],[-105.03641422830759,30.68690769311121],[-105.03954455729598,30.688529392541056],[-105.04384669004963,30.687385730552307],[-105.0461788420211,30.68873058229127],[-105.04718321297202,30.687204683491757],[-105.0449449715075,30.684498907420277],[-105.04582099725599,30.6800935318102],[-105.04806651257064,30.679926813955205],[-105.04877345880192,30.68231808389072],[-105.05323129449891,30.681676668276225],[-105.05518691875727,30.68255454034835],[-105.05443965957892,30.684305675330222],[-105.05654855393647,30.687310733339586],[-105.0595715568619,30.68772546161017],[-105.06193670949881,30.685822116786937],[-105.06335992256345,30.687708552974414],[-105.06335302454494,30.690581030483088],[-105.0616026877442,30.69463535654819],[-105.06324500786678,30.698487527784778],[-105.06565383340944,30.698328889315462],[-105.06808493763936,30.700620313428658],[-105.06823009138583,30.70326511875487],[-105.06956951917965,30.70201531329485],[-105.07594637214532,30.701613005471188],[-105.07942022240155,30.699436618628567],[-105.08223763035147,30.70285432104862],[-105.08010487293438,30.703357107048873],[-105.08058155729685,30.707926243718248],[-105.08319572326997,30.709543867503214],[-105.08665101112507,30.709626884685633],[-105.08798753570233,30.71080213250434],[-105.08711819287561,30.71473707729075],[-105.09177882228107,30.71711873151156],[-105.09620307868062,30.715791183769966],[-105.09889291399656,30.71710622385092],[-105.09860453620826,30.719328453480728],[-105.1005095339089,30.722157401823836],[-105.10561207262623,30.72366633507795],[-105.10400911044024,30.725185590480294],[-105.10343278753157,30.728829475228395],[-105.10734495470149,30.7318080066305],[-105.1077561415031,30.7297804230584],[-105.1118058983327,30.732742293552292],[-105.11171878425898,30.73641117653517],[-105.11000015324493,30.740020285268827],[-105.11204867502897,30.740360366577704],[-105.11113714498418,30.743327834385866],[-105.11410258248355,30.745810373367362],[-105.11622690126995,30.74304605934242],[-105.11871823665223,30.74289059309575],[-105.12083863683068,30.74417607034451],[-105.12053148054156,30.746679920081817],[-105.11815635194131,30.749125398775845],[-105.1220253472328,30.749558153084536],[-105.1257698921861,30.747818148314366],[-105.12812387480312,30.748079338924697],[-105.12935787588168,30.750153319447804],[-105.14071052624564,30.752266633819488],[-105.1427969760091,30.754625210584493],[-105.14542867977138,30.754253680527142],[-105.15162219187158,30.751241441149546],[-105.15725133077171,30.753520733685036],[-105.16076482562517,30.75184187541896],[-105.16192174137478,30.753201556487852],[-105.16041873700948,30.758223233206934],[-105.15814075710813,30.760230369309227],[-105.15623718125659,30.769445037118487],[-105.15863835152624,30.77096878491716],[-105.16071973140515,30.770176725437636],[-105.16358271903283,30.771176933093386],[-105.16526366112964,30.778950376390412],[-105.1685671249191,30.77876797281158],[-105.16856964129909,30.77653478459274],[-105.17014515536152,30.772785182613916],[-105.17468037801308,30.767547257492197],[-105.17671860488986,30.768163833534345],[-105.17946341686036,30.770992923586164],[-105.18233972606976,30.776107122766746],[-105.18497754099349,30.77726302566782],[-105.18600654049646,30.784494717306586],[-105.19135345008078,30.786479824766502],[-105.19304701246443,30.790209889347807],[-105.19555956150873,30.792254207509643],[-105.19930464051305,30.788114542722496],[-105.20375913691316,30.78778579960266],[-105.20722286802902,30.785469121698213],[-105.2075968417717,30.783414263282566],[-105.21154187189495,30.781820509480724],[-105.21977031051671,30.786661264171528],[-105.22005350785946,30.788646353909087],[-105.21739469947266,30.793414360932047],[-105.21503300456715,30.79271599558888],[-105.21146927851566,30.794300448435706],[-105.21086293390397,30.799402731620432],[-105.21296388502594,30.800420645389522],[-105.21380491544892,30.80378979242431],[-105.21555248158757,30.805899469771077],[-105.21781683057606,30.80581846795144],[-105.22388414164419,30.80096451261636],[-105.22739932347463,30.799260393289103],[-105.2291094879497,30.80047521727238],[-105.22957745219043,30.80368946272864],[-105.23526093610513,30.80274662407726],[-105.23756519126806,30.803513015292253],[-105.24190673892883,30.80216797000378],[-105.2439687844684,30.800104469983864],[-105.2480246912238,30.80013568165282],[-105.25036785338614,30.798999177349913],[-105.25248674720939,30.796326443987482],[-105.25636495000606,30.7944232958003],[-105.25808153155117,30.79495625109888],[-105.2600504017521,30.797567045262838],[-105.26311278231623,30.799536059192008],[-105.26588175218552,30.803609923180034],[-105.2658321567153,30.80685209713903],[-105.26815637475408,30.808888041951604],[-105.27167551055817,30.809322031606484],[-105.27514293915777,30.806909689168094],[-105.27754187906254,30.81153964847971],[-105.27902870299721,30.812669420774625],[-105.27940337208662,30.815597926631483],[-105.28225354128585,30.818028853032274],[-105.28458914316923,30.818724994605816],[-105.2868075715511,30.817912393769916],[-105.28906484990796,30.819099249960175],[-105.28984435290772,30.824910247687797],[-105.29274298115752,30.82635539220132],[-105.2999136198764,30.825087560376403],[-105.30119780092826,30.822759924419188],[-105.30100408180834,30.818333642318862],[-105.30615910710856,30.809752368469844],[-105.30886731517046,30.81062611067148],[-105.30820048355861,30.814833181239806],[-105.3103253297225,30.81650850641654],[-105.31154139782478,30.81276791840122],[-105.31439262142425,30.81237735386088],[-105.31534092154754,30.810789666554058],[-105.31765393235389,30.811390367493175],[-105.31889982136204,30.813221855637437],[-105.31635167708112,30.81860686161974],[-105.31909949838729,30.82486479742306],[-105.3182824548876,30.827679588889282],[-105.31958299176347,30.828948873029105],[-105.32223642305405,30.82758721390678],[-105.32393354976489,30.82854166715032],[-105.32743770034574,30.824789417448073],[-105.33023717047968,30.826042074764985],[-105.32816971887291,30.831068494773945],[-105.33386653147011,30.833686203612956],[-105.3377719468769,30.834336691832846],[-105.33910391432141,30.840256422151924],[-105.34348143939843,30.84096734161625],[-105.34583968258636,30.840543688088474],[-105.35194183495099,30.835578493379955],[-105.35422411571147,30.83736561482135],[-105.3535408743287,30.842268317701837],[-105.35705464043212,30.845252665763496],[-105.35950403114595,30.846166653360058],[-105.36127288641859,30.850079444332664],[-105.36272554024089,30.850402500386394],[-105.36901711661847,30.847383503616868],[-105.37596214965458,30.84832306371129],[-105.37932319671944,30.85067532022049],[-105.38336699859093,30.85209684752192],[-105.38526437523427,30.850765249059293],[-105.38733118693654,30.853590394851608],[-105.39623524656844,30.85049296198372],[-105.40118646212909,30.85318799480342],[-105.40184796779818,30.854443586301727],[-105.39983962878097,30.857658054694355],[-105.39499446961514,30.858791977681676],[-105.39486805562211,30.863072343963893],[-105.3960547491451,30.8645992122066],[-105.39395259223011,30.86739243420817],[-105.39520844996503,30.871409330872552],[-105.39166278605722,30.874232189470433],[-105.39330290141419,30.876384380271475],[-105.40031299432087,30.87663969823683],[-105.40447091046417,30.880150096583975],[-105.40011599283764,30.883271929932732],[-105.39905160398575,30.885174185951257],[-105.40031577940368,30.88653488928327],[-105.40009526098993,30.889383432288128],[-105.40412383293898,30.89214437391047],[-105.40811604777298,30.889688024348857],[-105.412371909059,30.888871383275557],[-105.41085418097333,30.892099350981823],[-105.4123171607813,30.89373787590216],[-105.41376124661213,30.89859684231027],[-105.41620698915773,30.90028548272369],[-105.42659446388399,30.90136251259662],[-105.43028589359903,30.905657431944462],[-105.43338203781855,30.906227503880075],[-105.43486756142408,30.90767727335077],[-105.44156638059786,30.90840695879689],[-105.44498101391946,30.913482891906824],[-105.44504354729634,30.91761831357661],[-105.4471374661099,30.919360752383568],[-105.45143460825972,30.916121044803674],[-105.45318023250854,30.91615489455296],[-105.45462451018898,30.91901555653868],[-105.45199383868305,30.92045757263844],[-105.45186062805118,30.924409067233057],[-105.45660885276209,30.924567821215135],[-105.4649857756117,30.925778087149183],[-105.4671931885834,30.924791325188835],[-105.46784230957252,30.929384434653343],[-105.47119501375232,30.93126442354327],[-105.47110068798236,30.93368734732735],[-105.47588134822126,30.93400924107476],[-105.47871165093159,30.938579577123562],[-105.48248713676162,30.940920393701276],[-105.48636867134871,30.94220115843592],[-105.48954982316957,30.940934763447046],[-105.49203198622035,30.94285625019046],[-105.48847152513116,30.943261123424918],[-105.48987717505929,30.94567563788479],[-105.49481664366567,30.949589594181987],[-105.49652206742661,30.949153638416078],[-105.49929622974969,30.950786704746747],[-105.49726595402865,30.955084314272256],[-105.49434412473778,30.955898784804504],[-105.4945830183741,30.95756248452352],[-105.49933976745348,30.963619041690208],[-105.50083796526451,30.966384020320447],[-105.50393980485944,30.968009984726052],[-105.50860779882913,30.966264729937905],[-105.51360619520227,30.966510063602243],[-105.51633054000803,30.965464362938178],[-105.5169979121601,30.96871709572872],[-105.51898813750967,30.97243495922112],[-105.52215277287507,30.976198015823115],[-105.52687601939277,30.978211577501554],[-105.53295613492907,30.984637922456443],[-105.53809488337441,30.98591346486876],[-105.5432179195721,30.984791720301985],[-105.55586032569272,30.988888543772305],[-105.55758603999533,30.990049629659495],[-105.56475914350187,30.999200636470448],[-105.56646486717011,31.003235521482736],[-105.57008599962677,31.008174066730476],[-105.57033247036208,31.00970891834146],[-105.56866183240697,31.014532683342907],[-105.56966716703761,31.017004408401135],[-105.57267856644984,31.019105237518204],[-105.57716604849998,31.019598490651333],[-105.5789377237736,31.021243598514047],[-105.58117739225173,31.026686598511617],[-105.57970949916205,31.03118656573838],[-105.57987835354578,31.035729139759496],[-105.5850179717745,31.055896580715284],[-105.58844430947863,31.06024155076676],[-105.59463834576917,31.063553008375152],[-105.59650837969775,31.066329020693843],[-105.59884603686993,31.075301163215784],[-105.60414225005945,31.083268054844325],[-105.60763399555589,31.08578006700651],[-105.62704019949621,31.098200431426676],[-105.62872384830547,31.098502236889942],[-105.63987177994414,31.097705857752885],[-105.64298288009206,31.099407683087975],[-105.64673468403578,31.113517087521586],[-105.64828285359505,31.115390536313555],[-105.65967136172839,31.119606725862184],[-105.66187508805461,31.119897763058646],[-105.66723241123276,31.122620531389998],[-105.67901450479309,31.125978677203875],[-105.70932351254396,31.13628986839791],[-105.71586388570785,31.14022634055806],[-105.71762883552134,31.14244598412904],[-105.71824525937456,31.147240069127008],[-105.72035344307068,31.14975274802822],[-105.74096674897538,31.164113993669957],[-105.74526004660453,31.165424737773606],[-105.76333238392681,31.164273442021567],[-105.7711692669094,31.165223526344732],[-105.77401871367198,31.167711294627168],[-105.77609916422995,31.176149001165243],[-105.77995180984192,31.18212518004873],[-105.7806038449616,31.184191635827347],[-105.77974381240085,31.191009035384184],[-105.78291305010993,31.19764588661991],[-105.78414910398305,31.198836716273263],[-105.79238976844408,31.20132663772165],[-105.79488870370164,31.20307389794118],[-105.81391837720673,31.225134426840327],[-105.81781445747578,31.23016980362644],[-105.83613016222864,31.247242071501034],[-105.8416889423874,31.25461730654399],[-105.85113340052584,31.26587111416808],[-105.8533809768108,31.272144940561247],[-105.858992663388,31.276349322094973],[-105.87033130809453,31.289715836577955],[-105.87733830356115,31.291709626222314],[-105.89175765153169,31.290267205081875],[-105.89329015124417,31.29038366516278],[-105.89665886867016,31.292966338719737],[-105.90294137769916,31.306098317353133],[-105.9085603788161,31.31272094042157],[-105.9126388613264,31.31297607687594],[-105.92161511281569,31.312169211910657],[-105.93171557700225,31.312817615118092],[-105.93782773877416,31.318239914709636],[-105.94040921794601,31.323501196292852],[-105.94763579990399,31.33959075434757],[-105.94527510196161,31.352095299560233],[-105.94574285953234,31.353434273086577],[-105.95351087612136,31.364094333765763],[-105.95529274053195,31.365126224784944],[-105.96868073808093,31.365796161876347],[-105.97145273522415,31.366610038408567],[-105.98187730710788,31.375314298803175],[-106.00341653335198,31.392155505052244],[-106.00478206734346,31.39265500925029],[-106.02297612188812,31.393978144229834],[-106.07792818594453,31.39817942149631],[-106.08019656313274,31.398602791099336],[-106.08492950730937,31.40146778823987],[-106.10682508044488,31.421778260715257],[-106.11052349373603,31.42352140372776],[-106.12828989788284,31.424301646277627],[-106.13241814971406,31.425183063477505],[-106.15634691204582,31.43696938674634],[-106.15855504192183,31.438499723740904],[-106.16876626047565,31.45039122677042],[-106.1745800905311,31.455242866766866],[-106.17952837312293,31.457250004852256],[-106.19513040073912,31.461103658717832],[-106.20136204815367,31.46292737643455],[-106.2081308663025,31.467581909033527],[-106.21587456967319,31.476253600551672],[-106.21959714110841,31.48154751856049],[-106.22380392961259,31.499608410293604],[-106.22590426162571,31.502967052914187],[-106.23513285632862,31.51170807033975],[-106.23691934662554,31.51434026088174],[-106.2444934651644,31.53829352016095],[-106.24718883522826,31.542805822916534],[-106.24960712860627,31.54499063086729],[-106.26175019218448,31.552199094144214],[-106.27927903537164,31.561188069382183],[-106.28093020882869,31.563655126798835],[-106.28747114483923,31.584361811652684],[-106.2899793403102,31.589837251476013],[-106.3025133111268,31.61081858111538],[-106.30316611538075,31.62231467478904],[-106.30823566734608,31.62999666077468],[-106.31972046803946,31.6436889141591],[-106.328236773063,31.65562087384484],[-106.33003017851593,31.658909874095457],[-106.33397383938723,31.66282579866356],[-106.33799163233516,31.671369833144183],[-106.34454699912578,31.686404930219226],[-106.35021239939329,31.69749476487266],[-106.36961537559944,31.710528926143354],[-106.37403029542463,31.71559622449331],[-106.37795175353295,31.72844062523137],[-106.38126846709105,31.73233504081145],[-106.40590165714082,31.74581049705222],[-106.41679971001281,31.751556594750014],[-106.42043231186375,31.752726848002],[-106.43009451587841,31.753839287603057],[-106.43640967190277,31.755644626335766],[-106.45092841800482,31.76436831608288],[-106.4562553822575,31.76377951713374],[-106.46461469740211,31.760679489774304],[-106.4690427052081,31.757345918675128],[-106.47069727996461,31.752552666689212],[-106.47319585838102,31.750479115795372],[-106.483356517515,31.747950244387653],[-106.48754550906136,31.74771685429249],[-106.4897294122037,31.748483721831917],[-106.5022520634314,31.757966665987908],[-106.50653282932018,31.760909630984543],[-106.5093917434632,31.761076120985535],[-106.5117254700067,31.76490295461582],[-106.5121936121837,31.768462705044954],[-106.5147932649129,31.77151779028327],[-106.5189565948013,31.772435432845384],[-106.52250038402167,31.775153571117187],[-106.52840837214342,31.781628020101607],[-106.52852327270233,31.783817452715823],[-106.66730557586328,31.784073727719203],[-106.71965167696936,31.784009596469332],[-106.81029487124607,31.783825597904524],[-106.90742349551851,31.78383923466663],[-106.97386360693275,31.783743729532205],[-107.00061008620173,31.783955369292983],[-107.04215779992779,31.783882744357413],[-107.25880640408502,31.783748306367443],[-107.3076543179364,31.783949817452765],[-107.34247872927597,31.783819015418658],[-107.36184489587481,31.783950764688484],[-107.42071401437875,31.783857423116842],[-107.5119955789886,31.783938474377692],[-107.62115899904677,31.783598331051394],[-107.66771266721412,31.78362226533187],[-107.72393085468843,31.783254162131698],[-107.77353253721054,31.78341757183472],[-107.81897255458284,31.783418613315405],[-107.90551387803498,31.783177056862883],[-107.95061667869948,31.783491757615934],[-108.00118685676449,31.78332070983538],[-108.04243955137093,31.78448628948064],[-108.13866324079243,31.78374725398419],[-108.20837345683071,31.783754007465518],[-108.20829115672126,31.715861873029723],[-108.20849497645139,31.70857229459233],[-108.20849330750838,31.647836121232842],[-108.20750573362125,31.591700369389685],[-108.20770658057017,31.542503334576566],[-108.20847317584361,31.33336334224515],[-108.30487881001562,31.333676640828685],[-108.33012221627109,31.333591935273375],[-108.34565161237907,31.33305917200647],[-108.37040957383505,31.33301183812938],[-108.42896523816421,31.333385169126245],[-108.50217415591493,31.333444712532184],[-108.60690009084891,31.333314237898264],[-108.66724816578522,31.333470844897647],[-108.75591614521142,31.332419011416846],[-108.79199815241856,31.277472401227953],[-108.81723143528052,31.239005659129134],[-108.8798124731336,31.238785938051706],[-108.88169513165076,31.235560182164818],[-108.89344640498871,31.227642923706867],[-108.89870398134246,31.224782794657756],[-108.90629080721635,31.2133430868177],[-108.90664749522085,31.208050915472825],[-108.90531557458792,31.205118617265043],[-108.90301895371834,31.203139096324776],[-108.90033230805045,31.202452124365266],[-108.8606871888465,31.21892719381566],[-108.84833197283808,31.19510759067225],[-108.80502466863032,31.192955537960415],[-108.83501234862285,31.169334704563937],[-108.8456400579309,31.13557622286413],[-108.8332973246736,31.125458542762885],[-108.76999685877695,31.10247182458528],[-108.77012742372682,31.101924866469687],[-108.77052524827087,31.099940769257103],[-108.77019448764764,31.092328680691253],[-108.7690151582782,31.0894352234576],[-108.76935377114216,31.088357926326125],[-108.76703941915628,31.083029998463815],[-108.7661493563013,31.078482156467146],[-108.76646253192115,31.074104777102548],[-108.76381578322474,31.072411459909063],[-108.75968656957053,31.071603607670454],[-108.75670168975091,31.07098235837759],[-108.75376781008998,31.07053526531081],[-108.7504510098392,31.069750738290566],[-108.74719529006654,31.06677312640676],[-108.74449116308182,31.0626289211242],[-108.74018873284842,31.058086220151438],[-108.73454628307815,31.053622577520116],[-108.72989913511861,31.052154183844834],[-108.74034270953535,31.046878899154194],[-108.74385052337948,31.04207596414716],[-108.74902312667751,31.03762563402887],[-108.75246602092284,31.033847500944603],[-108.72259169878953,31.03374685968288],[-108.70865899253147,31.033872296615527],[-108.68438668375882,31.033739540587874],[-108.6840118904442,31.024534130542975],[-108.68380744139932,31.00597332850947],[-108.80325546047601,31.004829266336117],[-108.80301542074687,30.976750747408744],[-108.80239257358306,30.904101002728396],[-108.8431515816361,30.90547590173935],[-108.9392427323977,30.907565165492997],[-108.9298492387959,30.861020929596634],[-108.93537826153926,30.776362650746876],[-108.9354568016131,30.77363126567957],[-108.94830243975588,30.73691128014542],[-108.91896836464593,30.73935365588261],[-108.88691946229056,30.719286530393674],[-108.86692524165659,30.68938662633326],[-108.869028984495,30.681070353632037],[-108.87774358574694,30.63783839348713],[-108.8764652829999,30.624574316432813],[-108.85751962257808,30.61740281992968],[-108.84827728617057,30.614252036603546],[-108.83939057686268,30.605902443543528],[-108.83426436373742,30.605741317655998],[-108.8306474230032,30.601733019579797],[-108.76201974855036,30.587271967957633],[-108.75654172084086,30.59607572447169],[-108.72666566499242,30.594548077470222],[-108.72743949347364,30.58047690853408],[-108.6873983140153,30.5547647624432],[-108.67779220555025,30.55707272232121],[-108.67468497481764,30.53507437764023],[-108.6729328337629,30.531025655758185],[-108.66197290214302,30.521941889869197],[-108.6599302240432,30.500132786733502],[-108.65711650339148,30.47031675129341],[-108.66477187258903,30.468151644506975],[-108.66098292637628,30.466650193710564],[-108.60384323343027,30.46511299339278],[-108.61355868433549,30.435716381536338],[-108.61742635499962,30.433798767931364],[-108.64865225224497,30.416864715866097],[-108.636953640282,30.399860779571895],[-108.62043449564607,30.375667447166336],[-108.6198398925913,30.374796382021714],[-108.62205648994274,30.340318167383714],[-108.58000597644337,30.337482108580105],[-108.5749170990083,30.32754351119786],[-108.57145301671608,30.327733857906253],[-108.56577376750988,30.308186380314623],[-108.54219901767965,30.28351216694682],[-108.55054665771422,30.266642181031614],[-108.5599520659631,30.26992838581299],[-108.56500078420709,30.26973146752755],[-108.56719812678477,30.272899275977977],[-108.57294292521124,30.274330313702876],[-108.57315202035767,30.276927855679048],[-108.58307098880942,30.28140986274002],[-108.58352670221353,30.285407081698338],[-108.58603374293654,30.28606957129648],[-108.62021762686857,30.298229730442586],[-108.61908577953352,30.271383815400497],[-108.61757294228988,30.23597724278693],[-108.61165574601904,30.102349426953197],[-108.61448032205914,30.096802779423456],[-108.61448047103647,30.096780286405703],[-108.61822289198989,30.08945253772464],[-108.61453011776115,30.089275556049984],[-108.61473558873882,30.058138511997527],[-108.61314006099008,30.051867021522128],[-108.61059820104629,30.04236418450637],[-108.60692209266688,30.028617928139568],[-108.61061955514202,30.003585351721995],[-108.61112583476876,30.000156498166803],[-108.61227178882228,29.992393813083083],[-108.61402402435647,29.97993931980602],[-108.6154995773677,29.965872427322097],[-108.62774850778504,29.954447645247967],[-108.62850091118457,29.95348186535739],[-108.62870897485021,29.95303439218651],[-108.62807521430966,29.95133569582697],[-108.62287155149806,29.950471651274427],[-108.6187755240673,29.93132132707956],[-108.61911297910694,29.909377696357126],[-108.61486306116825,29.895125264174396],[-108.61469338516645,29.884464015198148],[-108.62169071503024,29.878209484453805],[-108.60719925769178,29.847140063440065],[-108.60838319451244,29.845144070706112],[-108.61489306174883,29.844077998655393],[-108.63475011040947,29.832054312069488],[-108.63571773441902,29.829684476924456],[-108.63216645455515,29.81803343800857],[-108.62944418285997,29.806273845019405],[-108.62401863413885,29.802655052695343],[-108.61855959354745,29.800466007126886],[-108.60757976767184,29.797915730788475],[-108.60166766464948,29.797111675876238],[-108.54875762178347,29.796529363422678],[-108.54125877478793,29.79613784900215],[-108.53496427720808,29.751364504972003],[-108.53605798547102,29.750168891551084],[-108.53694072117395,29.749203876126217],[-108.53839743372555,29.747611334651708],[-108.5407755639389,29.73622797404164],[-108.54780934951077,29.737350275105996],[-108.59275130120966,29.728391494758],[-108.59253438269246,29.71764572978026],[-108.65909895367093,29.716127400716744],[-108.65627641289126,29.71198792325515],[-108.64516732262945,29.69195757713578],[-108.61828002970105,29.660525438246566],[-108.65498792628904,29.649432890913317],[-108.64465714997436,29.627549215649424],[-108.64619771500412,29.611819381906457],[-108.64632510289317,29.610442277733057],[-108.64113712144672,29.588885666900694],[-108.65950507199204,29.58404067800967],[-108.63832420048095,29.558318838068715],[-108.66230913056921,29.544481654234232],[-108.6494589142016,29.509979071572218],[-108.6487126576373,29.509101029122576],[-108.64523684108781,29.50772011465415],[-108.640120813755,29.50713464764999],[-108.63071401571563,29.504310308079823],[-108.62645111887036,29.502447938886178],[-108.62614646248676,29.50038245272077],[-108.63633337044485,29.493712367817523],[-108.64067190465067,29.49114536034199],[-108.64398631700487,29.488839506080467],[-108.64888863960687,29.488061623318174],[-108.66428586783906,29.48531688242406],[-108.67652460866884,29.484660918759346],[-108.68960645525999,29.484000419387883],[-108.69433192238614,29.46711419275738],[-108.71775386692792,29.465953828428667],[-108.71907824888865,29.459789258944284],[-108.70737965757803,29.439479105877012],[-108.70351893417654,29.410073147786647],[-108.70362203958041,29.408454854419574],[-108.66973291722013,29.307416924379595],[-108.6822085770471,29.26742981391959],[-108.73030240225671,29.269093611977837],[-108.73066708867395,29.263402784428195],[-108.74142231814471,29.258535319140663],[-108.74447395478995,29.259567002464337],[-108.75005009918243,29.256727466818802],[-108.75430299708916,29.25945720424704],[-108.7572585826997,29.255667342925562],[-108.76103040853235,29.25545890375139],[-108.76188762507525,29.2538835868732],[-108.75976895663263,29.25150992363035],[-108.75749013893773,29.250781846997427],[-108.75109597229425,29.250936829571742],[-108.7412445611269,29.2404269926368],[-108.74282836745698,29.225864348897346],[-108.73540833364223,29.21771269005609],[-108.73982995899183,29.2008203289476],[-108.75386949111908,29.20009805575222],[-108.75134086103174,29.189653613381722],[-108.74915834047562,29.180637170666216],[-108.74659505963348,29.176280487335532],[-108.74519054635653,29.172230846421144],[-108.74602497490667,29.16401651876862],[-108.74529690686819,29.16234274498362],[-108.72885354126402,29.171801142161257],[-108.70950050270369,29.1491335411485],[-108.70001712215424,29.135046675669457],[-108.69852820303981,29.12773956486626],[-108.7082612205889,29.11427728771082],[-108.72642686030883,29.098174349533224],[-108.7295895217232,29.096532698036015],[-108.72747148529544,29.085761201183345],[-108.71152874324065,29.087417777204735],[-108.70943818045305,29.083003330218503],[-108.7110497835389,29.077547033278734],[-108.71496661388647,29.076608265347204],[-108.71310712889738,29.070367345641955],[-108.7159480295727,29.069818008735126],[-108.72435312090073,29.069897004163295],[-108.71131340055285,29.003489343102103],[-108.71421815905336,29.001465335258843],[-108.71000008109638,28.983230960293497],[-108.70781310696162,28.985571359747325],[-108.69814537240785,28.93626566014416],[-108.69782011050836,28.931388371027595],[-108.70106844520018,28.92764530875621],[-108.70512190008418,28.9116099999128],[-108.70593804362585,28.906585815865867],[-108.70892094308607,28.905900728597373],[-108.70631898978792,28.903627007338287],[-108.70493297737943,28.900021674197603],[-108.7061042149324,28.897338379295093],[-108.70604323686314,28.893232509407824],[-108.7096821194728,28.889824703887882],[-108.70875882591724,28.8884867496717],[-108.70619669877931,28.889419905054126],[-108.70684419518903,28.884264322548177],[-108.69471101168853,28.879501731201117],[-108.6871296641778,28.87565025235466],[-108.68175761605295,28.86707662691839],[-108.6781762319007,28.863275881598668],[-108.68120052143223,28.854771165287957],[-108.66583516177229,28.828216123298034],[-108.65784954854729,28.809224487756865],[-108.6296250950922,28.811722358324005],[-108.62381737859317,28.806123002850143],[-108.62439564786956,28.80011641127544],[-108.63158337082575,28.794550228129197],[-108.63632843135372,28.791882763864066],[-108.64555675233595,28.794727085553916],[-108.6432944226392,28.765067556064935],[-108.63009947675107,28.75981748122183],[-108.62523376115081,28.759336532723353],[-108.62074340372016,28.750327506659744],[-108.60662043983467,28.74459713768522],[-108.60143309817465,28.743812520823553],[-108.58378520723392,28.740139377005846],[-108.58390764494095,28.66593136660225],[-108.57898421512937,28.65733605240939],[-108.58015120383544,28.632446339698447],[-108.56439636905168,28.6127096431689],[-108.56194553482516,28.59230161687657],[-108.55820949185284,28.58865579177126],[-108.55563573440548,28.587262289166745],[-108.55162502248766,28.577774030239084],[-108.53128684604883,28.556668582081898],[-108.53185998021019,28.538973096664847],[-108.52328665300115,28.505910352800015],[-108.51889716471197,28.50649977738027],[-108.51270855474667,28.508213158127035],[-108.50767171407972,28.50821590244118],[-108.50773175916328,28.499853182649304],[-108.5062878468326,28.497803322641687],[-108.50504195391989,28.492853782234306],[-108.50684987191187,28.490438353493403],[-108.50888564631845,28.488239820060016],[-108.50914088585603,28.487767337573473],[-108.51369675842642,28.48448995207019],[-108.51448364980962,28.481310956160314],[-108.5131985341489,28.47740916734773],[-108.51347162644964,28.474274805016137],[-108.51546416500355,28.47083671544732],[-108.51682673813667,28.465215922209723],[-108.520388785117,28.459758817677027],[-108.51969589310806,28.45878155715957],[-108.51744292187271,28.455622691127132],[-108.51254038202524,28.4549075351145],[-108.50414121789657,28.454439273737478],[-108.50865054526435,28.449299136114917],[-108.51363380138667,28.439603336425364],[-108.51554140597358,28.42628431711819],[-108.48898192013712,28.375115699075593],[-108.47970101097155,28.369551057940896],[-108.50136539831732,28.355729262845784],[-108.50568286814473,28.360805884423087],[-108.52165100696885,28.3650606228764],[-108.51963772425518,28.334762177421283],[-108.53588274905098,28.32373198085645],[-108.55092784486959,28.318055450015663],[-108.60350743062043,28.34756190869831],[-108.611167294256,28.33525681562793],[-108.63618093872185,28.33522801277894],[-108.6354859746495,28.306256104563147],[-108.64129313348406,28.291608645670237],[-108.64436450029797,28.298280203346337],[-108.65237313014296,28.29835176753147],[-108.65583228622097,28.301806958643226],[-108.66111043539826,28.296329678020356],[-108.66193388177948,28.295475102551336],[-108.66721251015781,28.29940391557483],[-108.67059609194683,28.29804734608041],[-108.67337928750248,28.299073880280844],[-108.6748902031564,28.30211207905853],[-108.67648654650708,28.30289403664557],[-108.68722510616828,28.30346248782257],[-108.71389044578785,28.287975072890333],[-108.75098388204668,28.27156934669557],[-108.79668450599445,28.267163442539754],[-108.79744139092043,28.266597040823797],[-108.791663186986,28.253617062012893],[-108.81871261290672,28.261766131053264],[-108.82328964180806,28.26257609392127],[-108.83042295302113,28.265049281550546],[-108.83268168182468,28.264830635596013],[-108.83583541316477,28.262753781224546],[-108.8405489329952,28.254330413734408],[-108.84199691159307,28.253257368923585],[-108.84473305741886,28.25463997724171],[-108.85033635886509,28.25900606848228],[-108.85184552435248,28.259337781682802],[-108.85608856623486,28.251538285124866],[-108.86158287915629,28.25678705389879],[-108.86382517411653,28.256357809845895],[-108.86925920917861,28.2570149221134],[-108.87296589329685,28.26047751235319],[-108.87601034105597,28.261646729960717],[-108.87952840526941,28.264505151764297],[-108.89130894132825,28.261020642757103],[-108.89592579030665,28.260479266565085],[-108.90370582147608,28.261705708342333],[-108.90851889533644,28.25972589470024],[-108.91267539490838,28.260001251268193],[-108.92115397711802,28.251453290841596],[-108.92201445338736,28.251491779045182],[-108.92730509193098,28.258590036355486],[-108.92881613354626,28.259555900578903],[-108.94226034602764,28.259695628819998],[-108.95331898612432,28.26226975506313],[-108.96141270694216,28.262004205305345],[-108.9689578726954,28.266171121783657],[-108.97217674206865,28.271764687400605],[-108.97367120742848,28.273095438697112],[-108.98105006297709,28.276215510333202],[-108.98421611624343,28.278307460073904],[-108.98607840251128,28.283709724410073],[-108.98318586854839,28.2863356349622],[-108.98319107972554,28.28758104495654],[-108.98905587594254,28.291451821536157],[-108.9880495466781,28.294986115816812],[-108.99030048910834,28.297637394030858],[-108.99457190450164,28.297933852949996],[-108.9969217736508,28.29549606962138],[-108.99570007146008,28.291773689151512],[-108.9955450853484,28.286386967215662],[-108.99183851342957,28.281481822990997],[-108.98705476379519,28.277832683192628],[-108.9895617232126,28.270933890723256],[-108.98858281068857,28.267054715598874],[-108.9886454495433,28.26185887242093],[-108.99313992301057,28.260478632064974],[-108.99509604575877,28.255463521522813],[-108.9987774035153,28.255452902095385],[-109.00050742651268,28.25909626858015],[-109.00309584661852,28.262179709065663],[-109.00648812302228,28.263246687336903],[-109.00828465426429,28.265654724234423],[-109.01249665187817,28.266282984598888],[-109.01690331629021,28.27036255739864],[-109.01787245983763,28.272134901312768],[-109.0227770041621,28.277531941274503],[-109.02571794124077,28.278271483902927],[-109.02862965104657,28.27677588976138],[-109.03149366288864,28.272559856296652],[-109.03311336677496,28.273241084118524],[-109.03891052322484,28.26956998651201],[-109.04068194768956,28.266990021879337],[-109.04494079951189,28.270488250049027],[-109.04657472969785,28.275592161199995],[-109.04441705140033,28.278455908081753],[-109.04576473981251,28.28116164941713],[-109.04966807885461,28.28119237580603],[-109.051511473272,28.276447461864052],[-109.05641741133587,28.279183045891102],[-109.05951149053442,28.2847360526863],[-109.06388296368686,28.28359665590989],[-109.06625689234636,28.2864429689277],[-109.06869640590384,28.286138839144314],[-109.07010789145806,28.28428421273651],[-109.06708792963735,28.280988172689035],[-109.0633193361129,28.280064932073344],[-109.06194266935188,28.274724986727676],[-109.05959289875477,28.272324792537802],[-109.05843617745484,28.267268863621894],[-109.0606150685353,28.267723330800266],[-109.06253948160679,28.269971168907944],[-109.07026108133306,28.27402247128225],[-109.0748861682523,28.272609408043877],[-109.06918854573132,28.249821015193618],[-109.06712402283102,28.235307957842167],[-109.06683982362154,28.233309122301705],[-109.06199011083055,28.19920194055453],[-109.0701879257781,28.16314093958664],[-109.07083342755283,28.159071656565516],[-109.07083307399182,28.155127155143532],[-109.07170561946998,28.150307491731155],[-109.07289420574278,28.148572349006542],[-109.07104641658981,28.14535997410053],[-109.06766837710734,28.143670184238715],[-109.06670055762584,28.14120766145021],[-109.06828090469583,28.14067380886479],[-109.06836684754484,28.13442694956825],[-109.06946948571425,28.133890960632186],[-109.06798584901497,28.12901250223456],[-109.06513083813661,28.125830737399838],[-109.062801938522,28.12580155889617],[-109.06262440021482,28.12231320716478],[-109.06233596110462,28.12146554956695],[-109.062031493299,28.118088507353264],[-109.06142478806754,28.117803045569815],[-109.05966725882121,28.115561260426375],[-109.05952982104799,28.112649660031252],[-109.05883678817486,28.11140402131622],[-109.05651457857539,28.1082239821111],[-109.05587567763166,28.104209703516403],[-109.0539512577534,28.102422646963532],[-109.05359121448481,28.10019611189682],[-109.05119439148518,28.09907183335207],[-109.05300071146394,28.097712235623135],[-109.05220527840623,28.09539661877426],[-109.04889789435055,28.09242653575012],[-109.05178897027452,28.090572947768862],[-109.05156932422875,28.089635266828168],[-109.0494961425033,28.087067342173384],[-109.04992711253811,28.083567736581415],[-109.0481690146018,28.080420909212933],[-109.04342196670115,28.067877208907476],[-109.04156332485087,28.06388743959451],[-109.03919278247025,28.051233414395938],[-109.03656788266369,28.033093492898274],[-109.03189961366519,28.018288031862596],[-109.02953133129739,28.01672453531546],[-109.0163607105867,28.00802800666679],[-109.00536459611732,27.995531794375495],[-108.99168493437327,27.97998089583848],[-108.98198197107325,27.9802725151975],[-108.9637053932147,27.97252401392973],[-108.95031378647519,27.954039533545313],[-108.92651102393313,27.9405942317195],[-108.92528062276153,27.920720598854757],[-108.92452555482305,27.900860931597776],[-108.92008976021373,27.890813747440063],[-108.91975075748178,27.870944551959496],[-108.91486799131496,27.85400523084462],[-108.91441166999795,27.853859047565095],[-108.90470337766203,27.850748587874193],[-108.86914021084971,27.83928633442042],[-108.87283157589866,27.831597291311027],[-108.88314572606771,27.81996436650536],[-108.88608172665238,27.813670030249057],[-108.90451774598336,27.8076827944127],[-108.91046413790156,27.8091357545743],[-108.92029421060477,27.783973055008403],[-108.9134249356112,27.77298202491147],[-108.90121091739269,27.75404272272857],[-108.89551564229743,27.744807098504793],[-108.8632583983167,27.744541546094865],[-108.83296377672895,27.74434956358641],[-108.81898113056718,27.733675849499036],[-108.81700365589387,27.732166080116656],[-108.80822736355486,27.738165465879945],[-108.80488126223077,27.736176081049734],[-108.80383651677022,27.73020199646038],[-108.80131652703182,27.727331106098347],[-108.80087866246038,27.72433696306689],[-108.7986154334335,27.72303098672859],[-108.78449462958145,27.730465244237564],[-108.78444693549301,27.714906863460612],[-108.76602478745161,27.70583356476783],[-108.77278676625605,27.69650147579688],[-108.76475698032652,27.693497352901034],[-108.76255445800678,27.67602579722859],[-108.76049113414712,27.673679417882454],[-108.74931378959923,27.664730815024825],[-108.75405505154657,27.645641285591182],[-108.75419937837734,27.636733423606813],[-108.73985238027444,27.599954587784055],[-108.72295808803636,27.588147734373194],[-108.71280771472698,27.566246479302492],[-108.69025645322876,27.55918112042872],[-108.6764929966019,27.553129572226112],[-108.66723009032683,27.549055723590754],[-108.65527706862099,27.54379743282834],[-108.6524053575605,27.537032908809863],[-108.65288348150068,27.528574786136517],[-108.65577870443235,27.477310915551584],[-108.65302290542002,27.469031626202877],[-108.66101427616417,27.46499094814567],[-108.66164840201236,27.464744355182916],[-108.65977935721963,27.46245151727419],[-108.63341768489488,27.428136475047268],[-108.62773924857004,27.41056702750035],[-108.62820195242375,27.40133990171904],[-108.62825582224082,27.400265464841084],[-108.62912519639286,27.38292059641134],[-108.61958057251354,27.36724288289514],[-108.61890151946028,27.3661273108915],[-108.5910451262439,27.318080477439764],[-108.62559062704963,27.28924586027182],[-108.64733896711357,27.256983919981167],[-108.66437549829243,27.239395829675402],[-108.66251016898906,27.238672844363975],[-108.65936686199615,27.234807382162614],[-108.65808851036024,27.23165221055899],[-108.65823966686281,27.227550704703503],[-108.6610735232747,27.2245314997391],[-108.66231479072832,27.21824944702621],[-108.65730394559927,27.20732439363144],[-108.65558420734459,27.201482354365794],[-108.65310526852159,27.19532026678445],[-108.65294718541304,27.19256862272516],[-108.65334142504179,27.189981538359064],[-108.64934388815442,27.191204949683822],[-108.6474236538578,27.18558421931698],[-108.64869856397439,27.18249846034422],[-108.65097352831538,27.180009979996214],[-108.6529848230727,27.178324478280217],[-108.65215585234745,27.175686577598697],[-108.6496698688519,27.175837591515972],[-108.64432015727022,27.178811154520133],[-108.6320821353653,27.168945768901153],[-108.62242243642157,27.156890872831354],[-108.62093532189971,27.156519525426802],[-108.61142670567455,27.15414474777259],[-108.60440495299474,27.131057065182517],[-108.6007307451232,27.118972487581857],[-108.5981000753045,27.089651788913386],[-108.59695618204961,27.076899649732525],[-108.60618896756012,27.06358501594059],[-108.60227604636145,27.036943274665987],[-108.56253526975013,27.046018938480756],[-108.57224741093859,27.012655835066766],[-108.56074288360833,27.003291275462516],[-108.55176343083588,26.99714529949972],[-108.50761242932418,26.989223766644614],[-108.50248612035597,26.987357031622594],[-108.50418977332117,26.99243297834738],[-108.50185287631803,26.996280941758755],[-108.50448592428677,27.0023375011653],[-108.50625147873029,27.002903016670302],[-108.50377599598272,27.007045230805033],[-108.5030733529506,27.005006521264818],[-108.50086772915915,27.004437057631776],[-108.50159646467961,27.00805251370656],[-108.49779431154036,27.010423055066212],[-108.49730042758262,27.013408754830778],[-108.48880914723037,27.01627938682691],[-108.4869745360894,27.015344976479412],[-108.48417187279932,27.017438941077558],[-108.48350700817144,27.021154131031494],[-108.48512900969598,27.027069399373488],[-108.48684716909378,27.02954738335626],[-108.49173488110802,27.031380198050044],[-108.48703533484502,27.03253110316456],[-108.48747207102275,27.03370449327923],[-108.48775696481192,27.034050383261672],[-108.48614954014141,27.037154943124392],[-108.4854403057447,27.037615723308704],[-108.4817196304499,27.038007127994263],[-108.48102147196295,27.038334924954313],[-108.47828798408193,27.03890260910765],[-108.47772388975244,27.038829496743006],[-108.47551446821933,27.039945202632794],[-108.47399280412998,27.036982655207623],[-108.47362592504362,27.035417428044468],[-108.47193875951012,27.030598632182546],[-108.46994156659099,27.031282955057577],[-108.47022084023769,27.03449862306053],[-108.46952887001925,27.035874005726782],[-108.46550568286176,27.039914119949003],[-108.46430896273097,27.040099913497727],[-108.45895251025883,27.034619639798677],[-108.45827403777253,27.029667198179425],[-108.45479106635821,27.027035860508988],[-108.44806691665212,27.029179927126393],[-108.44310159973287,27.02949806493774],[-108.4371769356693,27.026663307676472],[-108.43353048979469,27.026465815460824],[-108.42524342020778,27.023955360467426],[-108.4220128653838,27.02154281768162],[-108.41945106232794,27.020482529484298],[-108.4148893346657,27.02071233644301],[-108.4111434667467,27.017780767183297],[-108.40964044963533,27.01340494749695],[-108.37163739563073,27.023011830099108],[-108.35010993213643,27.022554425970156],[-108.34764688356273,27.018360204121564],[-108.34099087183398,27.013670373933167],[-108.33937157367069,27.009996131032665],[-108.33499959323649,27.005237357074293],[-108.33211962377277,27.00473908029943],[-108.32761230288321,27.00773013803871],[-108.3249073524234,27.006206499773555],[-108.32202602295973,27.008936548124495],[-108.32261396018077,27.015280704502345],[-108.32471556112046,27.016781750982318],[-108.32598137301017,27.02049295294904],[-108.32305107498922,27.025526051059956],[-108.32271354710082,27.027665009669306],[-108.31867741706316,27.03067853235933],[-108.31747590658978,27.034111127054587],[-108.31013024257743,27.035483811844415],[-108.30742630310516,27.034852795272627],[-108.30338765989075,27.036620354227125],[-108.30162441136213,27.033262106304335],[-108.29928734661269,27.03220749575047],[-108.2982348403192,27.030258317401945],[-108.29313716850749,27.025376528786637],[-108.28891423235643,27.026579915265984],[-108.2893100435748,27.020745946611328],[-108.29081119568025,27.01737086885663],[-108.28979639728453,27.01446604822388],[-108.28929797120236,27.013935719820324],[-108.28601014204497,27.012470641025118],[-108.28160536899532,27.013165515301466],[-108.27879755499214,27.016163008549768],[-108.27474916675362,27.01819929750269],[-108.27313021295976,27.022493886506368],[-108.26673667703977,27.02636054882896],[-108.26552086614805,27.02587759203334],[-108.26232479555375,27.027590531366684],[-108.2630277156627,27.028949161316348],[-108.260462886156,27.029324566906723],[-108.26098816061483,27.03219943202265],[-108.2585856326304,27.035269108580394],[-108.25566865043311,27.036577494709036],[-108.25087030467137,27.040912455701744],[-108.24616657486547,27.03881066396002],[-108.24294056920888,27.042047993246058],[-108.24121869609502,27.041846041490146],[-108.23729950714812,27.03814236927377],[-108.23604482897849,27.03550636336172],[-108.23407312506413,27.034394457291228],[-108.23298936850836,27.032942269088778],[-108.23214276133518,27.031602051745665],[-108.22585404841988,27.027221360952808],[-108.22269855145618,27.027690910093497],[-108.22113843072339,27.027731661065502],[-108.21946574277177,27.0290937294518],[-108.21472062566579,27.030216142889344],[-108.21332018657398,27.033570584979145],[-108.21156619843373,27.03444889614144],[-108.20954780853157,27.032294394058226],[-108.20542727949032,27.0325716989924],[-108.2035935991629,27.03074669341396],[-108.20064288266775,27.032047349062566],[-108.19948576232042,27.035172222505594],[-108.19427440594632,27.031953351743994],[-108.19445209939198,27.028925631596508],[-108.19236237393983,27.026625204427376],[-108.1922314937512,27.02644902547172],[-108.19486185031576,27.026226795171567],[-108.19365908723495,27.022586026946726],[-108.19370096651858,27.022422190339512],[-108.19273088223662,27.021393208911263],[-108.1920802993152,27.021015021253902],[-108.18983469745882,27.01859604435049],[-108.18907251194588,27.014118743794086],[-108.18733646996736,27.013438198854544],[-108.18728403670042,27.010270391843903],[-108.1838196975628,27.00925113219637],[-108.18391925539595,27.006682461813455],[-108.18154287091613,27.003195636215594],[-108.18193290322637,26.996580692665873],[-108.1836242542467,26.995309896921015],[-108.18152401703799,26.99410992308532],[-108.18244908896497,26.993020860483966],[-108.1864030501805,26.99296444548986],[-108.18822388231354,26.98950608550234],[-108.18849632677023,26.98888418500661],[-108.18789331278919,26.986361116861247],[-108.18958173387779,26.986793634550338],[-108.19459216802068,26.983558135072542],[-108.19730766176201,26.98360195609456],[-108.19690724364841,26.98112356742854],[-108.19879230343207,26.98092727481651],[-108.20126884211578,26.98302472396881],[-108.20471162360616,26.980293467990464],[-108.20797247716052,26.98106456815816],[-108.21085141647336,26.98038190255147],[-108.21069087888259,26.978119800471575],[-108.21452670547228,26.97732336945427],[-108.21602842559616,26.97039687217972],[-108.2189578070288,26.971675019311476],[-108.21837356592317,26.964787004566062],[-108.22629970786045,26.963644195291977],[-108.23328880355683,26.960243007942097],[-108.23355855065091,26.959618020219352],[-108.23501571478636,26.958619842585676],[-108.23497890423022,26.953965754379624],[-108.23050651038136,26.9479648226864],[-108.23073867835029,26.945566145802047],[-108.23094542471608,26.94419697291181],[-108.22933898190956,26.941453591752918],[-108.23041564049453,26.940200373478035],[-108.2295809751298,26.93980072712236],[-108.23101629786277,26.932804556123017],[-108.22937699901036,26.930620573701788],[-108.22625106402535,26.929533579562644],[-108.22514020729483,26.92209142850902],[-108.22653998902803,26.921296226928348],[-108.22780150175947,26.918028394632017],[-108.22734432019968,26.914397545879865],[-108.22865988110982,26.912825924299796],[-108.22853341730479,26.91031231875337],[-108.23032428921778,26.90645606000976],[-108.2302369003882,26.90572458018886],[-108.22690224083107,26.902335508438853],[-108.22067445351126,26.89780124798267],[-108.2185125030773,26.89522038214767],[-108.2162122673032,26.8900380349437],[-108.21232949447148,26.88615401454365],[-108.20620857801697,26.88554959062776],[-108.20352659323197,26.887672181374626],[-108.20277959302058,26.890618711069692],[-108.2037100370635,26.89390063588519],[-108.20627488148841,26.89926969953558],[-108.20796368513265,26.90462140426132],[-108.2073901873519,26.906000071198605],[-108.20422810385224,26.90569574461881],[-108.20235982354694,26.90379120996721],[-108.2005458960445,26.903513513736584],[-108.19766697716034,26.90267074342455],[-108.19583502947921,26.900398278804005],[-108.19008050384588,26.89587213745125],[-108.18707898316222,26.897262807266486],[-108.18566947526864,26.899712537660662],[-108.18172892606952,26.89818351022518],[-108.18020849467854,26.890282044529556],[-108.17922364785176,26.88782170533068],[-108.17870848202,26.884523208604264],[-108.17758443000105,26.882200453479868],[-108.17454863430754,26.881464825522357],[-108.17251554705524,26.882490236059994],[-108.17094292754177,26.885923583785257],[-108.17097241619962,26.887723237486682],[-108.17174976842921,26.89233640711467],[-108.16705194479022,26.8958403047331],[-108.16586107724163,26.895883022058626],[-108.1598657694451,26.89476304933231],[-108.15591325436321,26.89521651201966],[-108.15317411024023,26.897693270659772],[-108.1503511755489,26.903499820554543],[-108.14831480061514,26.907589806839667],[-108.14538235710819,26.90886312449277],[-108.14420310132016,26.90843947754803],[-108.14172114117821,26.90659018961918],[-108.14154011170905,26.904920751699933],[-108.14149430682744,26.903787111340932],[-108.14200097675757,26.89775722355057],[-108.1399545626337,26.89623399738582],[-108.13960045457475,26.89547949846525],[-108.14424734749178,26.867649329537983],[-108.09410724905484,26.87046367457748],[-108.0845568990311,26.86133827718544],[-108.03683121746337,26.810075236206387],[-108.02682084689212,26.79846637418575],[-108.0376490418393,26.769780806615188],[-108.01426423371493,26.77315294062936],[-108.00570073374229,26.761048798594913],[-108.01086893371968,26.754131299175924],[-108.01372172777712,26.75031253612775],[-108.01524184953388,26.737054026074873],[-108.01824683843148,26.7322633351568],[-108.01881208096,26.731781464454343],[-108.01866019823467,26.72983029207421],[-108.01085114773082,26.725650009580022],[-108.00880239077964,26.7233118581305],[-108.00671003907559,26.71478258982961],[-108.00705980797437,26.70641785554875],[-108.00678549024303,26.705531343556913],[-108.00896886663833,26.70158072449874],[-108.00789662425882,26.699330465213166],[-108.01171602872557,26.693609089902566],[-108.01174663842141,26.689482429816223],[-108.01498187469213,26.68714415984175],[-108.01427564912336,26.68604363051611],[-108.01943262579988,26.683544002264398],[-108.0211164316625,26.680847077225508],[-108.02147747242344,26.680537760668983],[-108.022751579844,26.680156439212283],[-108.02290415278611,26.679851019329476],[-108.02515748862749,26.67855230647666],[-108.02635450704611,26.676273991579365],[-108.02658427925661,26.675231913476978],[-108.02884314494361,26.67344253982469],[-108.03054778033612,26.674018229314754],[-108.03060647074295,26.67051265372777],[-108.0328695324211,26.667671769579385],[-108.03445764520905,26.668155414694468],[-108.03960197547127,26.66625248563531],[-108.04289825178796,26.666509215493306],[-108.04269789072288,26.664705931631033],[-108.04278097005351,26.664165794225255],[-108.0449815531868,26.662763825213972],[-108.04642796242916,26.659886933990265],[-108.05313151628286,26.658048812225616],[-108.05325278210853,26.65630600241053],[-108.0553071270948,26.65649440299154],[-108.05554124389647,26.65646221913937],[-108.05501881846209,26.65475391902413],[-108.05618744386396,26.652026400576915],[-108.05875532092216,26.65073247908697],[-108.0601961981352,26.65157374723617],[-108.06464627507722,26.647370501020873],[-108.06960120472604,26.647190625007624],[-108.06988472057469,26.647253857364035],[-108.07076361539288,26.646921811082734],[-108.07082110107211,26.646623159448097],[-108.07115118686443,26.646141342858982],[-108.0712983840155,26.646050046798507],[-108.07279019763524,26.64718229086145],[-108.07321578916111,26.64686364012522],[-108.0738270527649,26.64682456350772],[-108.07399562082986,26.64697118725553],[-108.0744759688273,26.646607272376855],[-108.07454060622035,26.646424788865033],[-108.07615036075907,26.645456277157052],[-108.07673820543994,26.645318442289238],[-108.08065137811303,26.644509114102732],[-108.0809405144708,26.641263792290943],[-108.08093963335688,26.641163338069987],[-108.07734173325736,26.63920239045234],[-108.07399840345312,26.635427104257587],[-108.07438381239433,26.632404520265084],[-108.07597529996866,26.630602103553713],[-108.07606536277461,26.630228746895057],[-108.07455837902876,26.627993746690265],[-108.07131158295414,26.62734712777643],[-108.07116979170064,26.62770663331719],[-108.0704924857535,26.629425812042427],[-108.07023890592001,26.629888989355095],[-108.06914837729335,26.63139886381788],[-108.0688167066549,26.631448239850215],[-108.06842148508298,26.631451013941046],[-108.06700864611565,26.630314851417495],[-108.06625294855854,26.630283292815193],[-108.06351013731455,26.630648844369375],[-108.06091815767257,26.62696562695527],[-108.05651068752638,26.627727302432277],[-108.05389952476162,26.627173709411636],[-108.05158235359124,26.629835841271472],[-108.05044293264882,26.628140702166093],[-108.04453294334797,26.624968168796784],[-108.04515006787472,26.619713485171474],[-108.03971794015018,26.619566581040317],[-108.03853538183046,26.619790030784714],[-108.03634343864894,26.619110286846592],[-108.03387658851153,26.616304893282745],[-108.0318095431324,26.61592434956816],[-108.03223591140608,26.61412830193717],[-108.03253070714271,26.61375459930707],[-108.03472516609025,26.611482187379465],[-108.03540742309997,26.60920648951202],[-108.0336141684636,26.607765031842177],[-108.03251363639743,26.60318221190562],[-108.02709958138092,26.59849850796843],[-108.02129629961195,26.597339418026195],[-108.01841343748941,26.595147911237518],[-108.01451932953483,26.593415125295735],[-108.01217489074185,26.591395509658525],[-108.01104806395222,26.58796439481756],[-108.01129633562022,26.587370692221157],[-108.01288867841777,26.58192690500016],[-108.01248401279292,26.579643018328397],[-108.01050961239508,26.57820420039036],[-108.01000027367536,26.578136894588],[-108.00724760936146,26.57578976852966],[-108.00051815239982,26.57201608158914],[-107.9972844037863,26.567532564167266],[-107.99697943308996,26.564088845005358],[-107.99544181356822,26.563310865713675],[-107.99230465942605,26.562576655843543],[-107.98983190827869,26.55158907244703],[-107.98997031230107,26.54833081377808],[-107.9897448247396,26.548039797563035],[-107.988039650892,26.546127518586616],[-107.98364394307094,26.546036973364835],[-107.9822627739328,26.543180209235913],[-107.97969100667257,26.54318460134374],[-107.97784451116496,26.53699976908905],[-107.97779736710572,26.53675010556333],[-107.97649708771223,26.535459614705474],[-107.97068175401705,26.533045842498836],[-107.96859536317936,26.530817527868237],[-107.96364721901887,26.52725860328991],[-107.96115572841956,26.527067627398992],[-107.96216770014479,26.522857240877954],[-107.9611441643118,26.51989216632478],[-107.96199138091066,26.51780457972626],[-107.95937151535213,26.513131485773386],[-107.95938819140287,26.512888060142984],[-107.95881487080635,26.51012411110605],[-107.95579153046538,26.507373437358638],[-107.95656608742036,26.500011592599378],[-107.9580698231232,26.49685508107507],[-107.95726530671982,26.493743954413674],[-107.96024911088915,26.491966835162657],[-107.96884076532604,26.49014888743625],[-107.97260647500974,26.487298249873447],[-107.97785350442922,26.481463006415595],[-107.97861366532362,26.480716524711795],[-107.98189213697646,26.477169047660993],[-107.98273227043774,26.4761181512481],[-107.9837554664702,26.47495092745669],[-107.98562260006986,26.472099776450705],[-107.96963910543116,26.47016786746417],[-108.00058567141775,26.447559967801396],[-108.01279701556047,26.439048057947275],[-108.00058629906243,26.422162159285563],[-107.97302545111211,26.39252697795706],[-107.97411783281797,26.388634305482583],[-107.91216212162647,26.303670686670444],[-107.87331991191917,26.25033436439645],[-107.85626456916214,26.226035120736242],[-107.85401850267914,26.19651939220438],[-107.84150390135449,26.18491147273255],[-107.83808092794152,26.18241698434315],[-107.82736624876497,26.1843141487783],[-107.8269449958621,26.184529500196447],[-107.82383118032249,26.184649836535016],[-107.82381696038027,26.186779964043353],[-107.82208258249716,26.186961931197573],[-107.82167047035853,26.186200893969897],[-107.82133473872068,26.185882105051917],[-107.82086571435917,26.185477167492877],[-107.81824577143072,26.183454492941507],[-107.81755222958088,26.183261013433196],[-107.81524259709619,26.182714646475972],[-107.8102767696509,26.18368142841939],[-107.80641498212896,26.177916418998223],[-107.80617364283972,26.177570895896565],[-107.80453597855961,26.17480193479099],[-107.7988430702735,26.17375706129161],[-107.79625359468878,26.172663332807474],[-107.79356813599549,26.168629448996512],[-107.79081703413948,26.168740513666705],[-107.78980772599152,26.168760090548858],[-107.7889239078794,26.168613785034836],[-107.78779193675854,26.16345224174927],[-107.780690464587,26.136937591302967],[-107.7551721505597,26.134512443021322],[-107.75346668868053,26.136642122273656],[-107.7527134926712,26.137557911533577],[-107.7494038897521,26.14061039860485],[-107.74774464834411,26.145095416867036],[-107.74866442917488,26.148271197848146],[-107.74759715872483,26.153793173871975],[-107.74519514702837,26.155648881385844],[-107.73820701479042,26.15644410279549],[-107.73801214403977,26.15872402040486],[-107.74007456318094,26.162289472097314],[-107.73920106975675,26.166722217766676],[-107.73621684039796,26.16821589667859],[-107.73373251225723,26.167495229481915],[-107.72960075896094,26.164835510151818],[-107.72887436251898,26.164394807491135],[-107.72397261880656,26.163284742664416],[-107.71577845673261,26.165546932934888],[-107.71412954930503,26.168793401882624],[-107.7139749012004,26.16930539443854],[-107.71352393949223,26.172455615289095],[-107.71166114718977,26.174299656561686],[-107.70793628525729,26.173376043232565],[-107.7057163431395,26.170010681622557],[-107.7043501318571,26.170223331761633],[-107.69919351966945,26.170736509394487],[-107.69661695108226,26.16740268527036],[-107.6964415887154,26.166770579932518],[-107.69631928371774,26.165473647436727],[-107.69183864588149,26.165764948283424],[-107.69139185671327,26.165725769456117],[-107.68726461491838,26.16539189432325],[-107.68340099493389,26.163425242060384],[-107.68052662902682,26.16300891046518],[-107.67941169027449,26.164395104064738],[-107.67680859051774,26.163531484962107],[-107.6689543017215,26.164511996558133],[-107.66372548119585,26.163986947358808],[-107.66281860269663,26.163764519227584],[-107.65914179576191,26.162649471388306],[-107.65508938105546,26.16393136916821],[-107.6527642894194,26.163640963287207],[-107.6460820153655,26.158288979683505],[-107.64226723910633,26.157559338553597],[-107.64096459431948,26.15579524550293],[-107.63534625407681,26.154657896774836],[-107.63234511997791,26.157163850980623],[-107.62523586564629,26.159499395365515],[-107.62095962620816,26.162472190967037],[-107.61313658958596,26.16258714571177],[-107.60388349636708,26.16548120485737],[-107.59746185181808,26.165335141976243],[-107.59347406097709,26.16601459072774],[-107.58943469626814,26.16992754073192],[-107.58566500221497,26.169652519998806],[-107.58291414441538,26.17066523617018],[-107.58229607160047,26.17065319336166],[-107.57957360782285,26.166484572299964],[-107.57956571085464,26.166125885197744],[-107.57726153595218,26.164604800526035],[-107.57459029229625,26.16496360010683],[-107.57028402198983,26.163342122099664],[-107.56716793941484,26.164705309355384],[-107.56493483348066,26.164481989001843],[-107.56206926978518,26.162021217354436],[-107.56113026118362,26.161535576016092],[-107.55567733569069,26.159623061465993],[-107.55395717205943,26.151750247928533],[-107.55185580170792,26.149924258110502],[-107.55060508552413,26.14911202415965],[-107.54794420341881,26.14744110231362],[-107.54327740515134,26.14634893611492],[-107.54020965073056,26.14235267055699],[-107.53999657314768,26.140804367920623],[-107.54384425784394,26.137623495680884],[-107.54193035203048,26.1368548792924],[-107.53714622984364,26.13750091456143],[-107.53569534189785,26.132564003563573],[-107.53282092559056,26.13020958054824],[-107.53261172777212,26.129849832947457],[-107.52861568186495,26.129196844973364],[-107.52626705150641,26.12774763944782],[-107.52681759139006,26.122456583815108],[-107.52811257197334,26.12138069556744],[-107.5234892634017,26.112104274694047],[-107.52212945712,26.111820450343885],[-107.52214330082148,26.108552102218084],[-107.52394021931804,26.107230115767436],[-107.52001998766099,26.10422717686191],[-107.51694624185325,26.10840493213857],[-107.51334117414319,26.11093886799671],[-107.5101864271416,26.111100586310954],[-107.50888135535268,26.11361367043878],[-107.50611521272464,26.11578747459822],[-107.50390669426861,26.115917327843533],[-107.50050184877693,26.11307369351357],[-107.49374465943009,26.110580287477433],[-107.48835436128218,26.11478500342122],[-107.48526138091268,26.115421385554725],[-107.48545201156713,26.119698795835802],[-107.48288157296827,26.12088615101618],[-107.47863888070373,26.12101020914406],[-107.47775322393949,26.120957014923306],[-107.4778801359289,26.121324469949684],[-107.47792122958202,26.121681481368853],[-107.47777903736431,26.121917524116157],[-107.47774014487658,26.122070816535654],[-107.47791629469646,26.123452223033667],[-107.47287316235975,26.126192656577018],[-107.46956116541833,26.128852119637827],[-107.46638918628207,26.133336028654185],[-107.4631993775476,26.136548567761793],[-107.45797595807073,26.138558235333505],[-107.44993291869906,26.13780348153915],[-107.4477087580517,26.13918270067734],[-107.44286366237083,26.13961612121426],[-107.43909145739116,26.141149877481155],[-107.43104269812818,26.142859925443247],[-107.43234746548882,26.13824576603224],[-107.41611823410375,26.141220245055536],[-107.34652779298983,26.109523129830848],[-107.3270351399837,26.090889840356283],[-107.3048897979885,26.07640243208823],[-107.30669172187595,26.048784151611926],[-107.27634626293923,26.001976534207472],[-107.27808362373997,25.99798587254719],[-107.27878069652809,25.993504677086946],[-107.28203021311867,25.99198062014301],[-107.28237630147868,25.983185988185767],[-107.28048936689987,25.980701644975852],[-107.28228021774254,25.977992345044413],[-107.28256860689862,25.97537611767939],[-107.28052725686427,25.972844474043313],[-107.28009313282178,25.970233874122016],[-107.28157344154556,25.96825658875315],[-107.28205074059395,25.962421677442194],[-107.27994293472847,25.95931080178434],[-107.28028788286508,25.95739508934446],[-107.28440193773724,25.956604005326767],[-107.28703478227169,25.953984836005702],[-107.29023074605504,25.943726913516173],[-107.29612821382375,25.924793407003335],[-107.24247065954643,25.892369639311767],[-107.24450042860275,25.887410721859112],[-107.2432219839502,25.885232203111684],[-107.24574478802293,25.88349916007013],[-107.24626832127836,25.877753890672864],[-107.2448250925222,25.878141223399837],[-107.24512345858335,25.877153636059177],[-107.2414813002913,25.881010760685115],[-107.24031565206178,25.880379388717245],[-107.23701958800183,25.878827836153846],[-107.23135731340284,25.871481958387335],[-107.22903295897879,25.869741749282127],[-107.22527973144787,25.868615404779348],[-107.213649648856,25.862077644754095],[-107.21312327419122,25.86189441508617],[-107.21157749716485,25.862583248078067],[-107.20694914455339,25.863919411592462],[-107.20746899756824,25.861406657588134],[-107.20851438981816,25.85874086276715],[-107.2088655341704,25.856312775114304],[-107.20439935704263,25.856703213309117],[-107.20125833138451,25.855286044173283],[-107.19901780665936,25.85320416128036],[-107.19821287385452,25.85308686585489],[-107.19654455430839,25.85297713019986],[-107.19457701452643,25.852307811931837],[-107.113244803116,25.795758759432374],[-107.0907256279512,25.780083165802296],[-107.05932771719,25.75821389078311],[-107.05790477030479,25.757367968298013],[-107.06174212218627,25.753850272787645],[-107.0647684243562,25.747648921861355],[-107.0636439084974,25.744329725706848],[-107.06049828557195,25.739996197243272],[-107.06094715357403,25.737688153649174],[-107.06474224517461,25.732777972192537],[-107.06455124027002,25.728335383898525],[-107.06537973519409,25.725203367017116],[-107.06221639671492,25.72430141414634],[-107.06242112679837,25.721636726153577],[-107.06412866936387,25.718812482419935],[-107.06093494155044,25.715686288174084],[-107.05830422572359,25.71434137855539],[-107.04850927014212,25.7112622531003],[-107.04731376147157,25.70974898613042],[-107.04742028634189,25.70648139147619],[-107.04763727072515,25.704837402211297],[-107.04748695674533,25.70391506024157],[-107.04737146262727,25.70273473976465],[-107.0468996071474,25.700579200977586],[-107.04312661279829,25.697698780019607],[-107.0407551182401,25.697016197463654],[-107.03386094176864,25.698189705403195],[-107.02529300604061,25.696202574995596],[-107.01963076660695,25.69216573597322],[-107.01742903398087,25.692807035865542],[-107.01673347889266,25.692669335519497],[-107.01504200413888,25.69135099281192],[-107.01032402618029,25.691989653819235],[-107.01061713988912,25.698368011339255],[-107.00609939990238,25.698471763368275],[-107.00428906674648,25.70123971637321],[-107.00476675687963,25.703134013066915],[-107.00056199181006,25.707035365417084],[-106.99676264113396,25.708209737862035],[-106.99503462827522,25.709792919739186],[-106.99140739879255,25.71048987662641],[-106.9902987597514,25.714924060531644],[-106.96532269379264,25.697878585617957],[-106.96915241412881,25.683005683777708],[-106.96594617873154,25.6770950077061],[-106.96684523379855,25.672833667073576],[-106.96693981772921,25.66833082188316],[-106.98611862319518,25.664060541428057],[-106.99432452489918,25.66223259546672],[-106.95654152805696,25.65366821123132],[-106.9223869854938,25.646082174437538],[-106.90680958721578,25.64661995474728],[-106.89378369662313,25.644291348018328],[-106.89922208007835,25.643742040943835],[-106.87375598472124,25.571864827569527],[-106.86277493179864,25.57172194569341],[-106.81782572003635,25.57338943360986],[-106.74479636555628,25.585163390139087],[-106.71052933276593,25.58199498924955],[-106.70254869876635,25.581205758285193],[-106.70575813279493,25.597349738908292],[-106.70057008102725,25.58741633223525],[-106.6989203494507,25.586204515734437],[-106.69884721997823,25.580839541436035],[-106.6819685242242,25.57916844685616],[-106.70796984168476,25.60245126031714],[-106.68563769317427,25.589736539040246],[-106.68182866982079,25.59049961780312],[-106.67921205614613,25.587900519701748],[-106.67769596089414,25.583657238559965],[-106.67781723304284,25.58161897765524],[-106.6778894006136,25.581005609858323],[-106.67704982066249,25.57644286486385],[-106.67336543766345,25.571862135562014],[-106.67141983912654,25.567421652076405],[-106.6670854519146,25.564614929052084],[-106.66326387580375,25.563547918468203],[-106.65973804473077,25.564694439857135],[-106.65282631044596,25.558843616567287],[-106.65643503552394,25.565219457916044],[-106.65747991636579,25.570193745254016],[-106.65559546903205,25.57516582583662],[-106.65367302276007,25.577926876518234],[-106.64775304420385,25.58149859995399],[-106.64290762617418,25.585186000009173],[-106.63890934041979,25.586399207167347],[-106.63500342870913,25.586310713415628],[-106.63251131534679,25.584457105297474],[-106.63220379060516,25.58504109087204],[-106.62980928925441,25.587429910651508],[-106.62922015399334,25.590911173910683],[-106.63015569915967,25.59344573655136],[-106.62831126201962,25.601264397160094],[-106.6292555329137,25.603791624495898],[-106.62324564287366,25.60703553967062],[-106.62381662671822,25.60954777372342],[-106.62185457841167,25.610818544141182],[-106.62073235074627,25.61603011714243],[-106.61570718940982,25.61905819890552],[-106.61548385392564,25.621113244363073],[-106.60632721395115,25.631079281669088],[-106.6044193891666,25.63453629715167],[-106.595364338727,25.642134280978837],[-106.59262181471058,25.643535258432678],[-106.5912749744096,25.647779134507232],[-106.58868368868997,25.64788765414994],[-106.58492885919475,25.65049816473737],[-106.57929334790379,25.653349773879256],[-106.57639712378949,25.653193665564572],[-106.57402853869166,25.65609822357908],[-106.56966515263986,25.657662900639366],[-106.56789251810233,25.659649274463902],[-106.56598595309788,25.666160738129236],[-106.56334007002692,25.667212969798697],[-106.55501194327383,25.6684171692238],[-106.5526462350773,25.670153803652454],[-106.5474522999225,25.670951694567407],[-106.54478060278956,25.673853942863843],[-106.5399198217388,25.674502604770794],[-106.53553812691655,25.676830538480772],[-106.53381578699026,25.68106764458389],[-106.53122944504241,25.682321888371973],[-106.53096001392225,25.6857676074639],[-106.52721600276863,25.687488004345596],[-106.52840497249173,25.690656430227932],[-106.52494099677205,25.69450928036963],[-106.52102420037363,25.694905401174424],[-106.51665792714294,25.69942118112192],[-106.51115991912457,25.703577549749127],[-106.5078846550552,25.708082174428455],[-106.5027284008396,25.7092010635904],[-106.5010895335522,25.712156499084074],[-106.49889019385773,25.712042972534107],[-106.49261462683916,25.71438117424941],[-106.4870663367343,25.715645024238484],[-106.4807381982124,25.718779919308815],[-106.46361750502763,25.729043674107913],[-106.46404158609755,25.7417096657],[-106.52655457815229,25.713379768557672],[-106.55596774915813,25.691706627659357],[-106.55639513901878,25.714309977573294],[-106.55993354609473,25.902223190444488],[-106.56012978652035,25.912706765313715],[-106.54730610240318,25.95242174844128],[-106.5337154588791,25.94576151972643],[-106.52038517095696,25.949665585302284],[-106.50147316190964,25.954955756739594],[-106.49166531393854,25.9680534729589],[-106.4558154678079,25.972579201416693],[-106.44471261841727,26.00508821770751],[-106.47040674129698,26.00542563485311],[-106.46954452856431,26.00734062041772],[-106.46966221749148,26.008178975587043],[-106.46954532769439,26.010279044354263],[-106.46868438787789,26.011759482276716],[-106.46862251065437,26.013093889237837],[-106.46745157933492,26.01828836767828],[-106.46409757592733,26.0178605334267],[-106.4619325780265,26.020626769683474],[-106.46104647050646,26.02011214113446],[-106.4533966368698,26.027840688593358],[-106.45498811703806,26.044955076806787],[-106.45409829227208,26.04635702617071],[-106.46504326722999,26.051936937747428],[-106.47122930851606,26.060522920548067],[-106.4544068692,26.095260415864402],[-106.45559724028402,26.096055639356223],[-106.45602061074402,26.097349983437766],[-106.44024836451604,26.123808838923367],[-106.41561494892562,26.13940028622278],[-106.4202832099374,26.15728286392124],[-106.38355978760586,26.21879969984002],[-106.30811088651865,26.34496579711714],[-106.29951956591498,26.33708284574709],[-106.29022242139513,26.33474446788739],[-106.28704095295774,26.335081575078277],[-106.27545792416879,26.367415464006],[-106.27788996016034,26.367201104828837],[-106.2963051765928,26.364680458334647],[-106.27297695557246,26.40361545604054],[-106.26437405051979,26.406115915420173],[-106.26522061031932,26.424139704140373],[-106.25619598569239,26.440754548190796],[-106.2654539981113,26.50077801552237],[-106.26972819624478,26.527041440310597],[-106.28013545050163,26.53206722483992],[-106.2663290354626,26.5364321208682],[-106.24121711662906,26.54498991650229],[-106.24086749083358,26.548750508804744],[-106.24054681630008,26.551471231916935],[-106.2395271444696,26.562437319312266],[-106.2386700053114,26.563195974897553],[-106.23346412155098,26.558806903727202],[-106.23203950816202,26.561608385411034],[-106.23456060151824,26.56559042419184],[-106.23463489094564,26.569173889550598],[-106.23064310900475,26.574700554415585],[-106.23064187675124,26.57630146021461],[-106.2334627620653,26.579116867253106],[-106.23363726672846,26.579685909904526],[-106.23394667763114,26.58069485308846],[-106.23244035171291,26.587715417731715],[-106.23660132629345,26.58771114778017],[-106.23571905747002,26.592358424501697],[-106.23645989069735,26.597776561274543],[-106.23536993013073,26.603323448241895],[-106.236209114411,26.604776184868513],[-106.23608655664202,26.606746880266314],[-106.23600945488982,26.613187777062137],[-106.2351071211682,26.61348665164428],[-106.23350578163871,26.609634757586548],[-106.23038212942475,26.60988783866526],[-106.22992224581338,26.610569882457753],[-106.23203950375762,26.61365131482853],[-106.2306113945466,26.616200364141832],[-106.22755296046086,26.614718765184875],[-106.22696450858564,26.618685687000266],[-106.22604764446811,26.621034590820727],[-106.22347584130654,26.627824630134796],[-106.2244318980866,26.62934918873293],[-106.22557438696248,26.635377394662555],[-106.22414269506368,26.63725763642168],[-106.21981718751164,26.638171507200695],[-106.22034324937664,26.640398461931397],[-106.2222042884506,26.641172210371963],[-106.22144985781199,26.647678191330044],[-106.22030706699303,26.64898267319745],[-106.21835355791097,26.650610768136687],[-106.2181125522244,26.651613808897196],[-106.21982609068272,26.656355989297367],[-106.2172573030204,26.661017479519614],[-106.21111006346138,26.667733976908266],[-106.20643818855467,26.668334320014537],[-106.20658331146115,26.67435603724448],[-106.20792268104651,26.678064756144806],[-106.20302418139278,26.681225820949578],[-106.2007179963282,26.677782116377728],[-106.19834670551114,26.676009286306396],[-106.19939919402111,26.679449863846912],[-106.19924760639617,26.68235665339961],[-106.19712846996458,26.6837790225876],[-106.19328614541143,26.681876802204215],[-106.19166923454014,26.678460066957484],[-106.18845453423438,26.676990313642534],[-106.19025789851185,26.679825710239356],[-106.18902787225505,26.68269128558984],[-106.18872678588582,26.68333211321209],[-106.1857208880906,26.68399246417698],[-106.18498495317652,26.686659598492156],[-106.18721038306444,26.693250066756775],[-106.18967499307803,26.695139327146478],[-106.18551152631096,26.699404044062646],[-106.17874797020227,26.69916978425573],[-106.1726620712102,26.705166801725],[-106.16686183032397,26.705921713886767],[-106.1655364828884,26.705368507618573],[-106.16428313637954,26.704965567426086],[-106.1625611128913,26.70391605253792],[-106.16013266983566,26.702338441455083],[-106.15618945741659,26.70398579707785],[-106.15416201531048,26.70660026104639],[-106.15025079313085,26.70750383224413],[-106.1474628043,26.70923773940939],[-106.14451270786924,26.706947526453234],[-106.14312487684731,26.707044818620602],[-106.13857916108844,26.701156807301402],[-106.13223776711214,26.697230523118094],[-106.13219306944444,26.699780449614366],[-106.13067448153276,26.702203383660617],[-106.13101973355003,26.709918628102002],[-106.13178201596281,26.71379624590486],[-106.1357005640811,26.716741770002898],[-106.13739205388089,26.7185053545075],[-106.14144399747897,26.72078664815126],[-106.15148452405936,26.724984096687535],[-106.16358064549001,26.72635388983207],[-106.16481015920414,26.72648333262117],[-106.17658083305082,26.727722052044726],[-106.17929063796959,26.737538857422237],[-106.1766450266133,26.739297440519124],[-106.17682954183533,26.741331800683895],[-106.17893065058053,26.74193025509777],[-106.17778141054958,26.745448346175067],[-106.17633515443828,26.743438570857165],[-106.17396359769288,26.743467376996705],[-106.17245764746133,26.748623820072225],[-106.17056662167874,26.749570344949348],[-106.17302697962418,26.75541234454903],[-106.1797090525207,26.763063056294754],[-106.17833598316179,26.76579015865451],[-106.17810731245095,26.770742224328615],[-106.17698401815187,26.772991079615508],[-106.17160268410942,26.773614915908013],[-106.17010289074238,26.775212988609894],[-106.16317814529663,26.77473970916759],[-106.15995631980422,26.7718397500729],[-106.15779397265601,26.770974183378655],[-106.1492364057222,26.772617134535437],[-106.14766803665975,26.773943553675338],[-106.14545143109933,26.775148850660912],[-106.14446196215164,26.776546819564373],[-106.14277527736147,26.775123079758714],[-106.13857934359083,26.777624856489354],[-106.13616380136443,26.777388143574854],[-106.1334773263655,26.779058910552408],[-106.13208804612668,26.779212171613665],[-106.1275604109382,26.778900810661753],[-106.12526240699577,26.779410371125778],[-106.12290499328248,26.776054948978185],[-106.11825777993135,26.7711085649741],[-106.11429890855851,26.76514389361853],[-106.11031888813613,26.76442327593213],[-106.10496554745947,26.759364732935865],[-106.10064265883688,26.759333184788886],[-106.08749859702999,26.780744474011215],[-106.08418717569072,26.78643786043449],[-106.07810510245696,26.798310152423994],[-106.07754909080069,26.799395366205772],[-106.07315092845738,26.808748475437767],[-106.06504842112315,26.827633353940882],[-106.04733909463204,26.844875911577333],[-106.01532734298337,26.819727324046994],[-105.99553390554587,26.80753082872417],[-105.99215896095905,26.8049008972539],[-105.97002159418821,26.787644306534844],[-105.93919350105273,26.763215524697443],[-105.93757254016958,26.766675261197406],[-105.93178629826969,26.765602860057754],[-105.9281070109459,26.765931965726907],[-105.92405220777931,26.763334755892515],[-105.9187811181207,26.76116109274028],[-105.91397509988991,26.758195900252076],[-105.90860609761421,26.75283781221873],[-105.90693436648377,26.753085666661832],[-105.89833696982436,26.76385388429054],[-105.89410173669575,26.741009490619945],[-105.8745422447326,26.738575731267872],[-105.86543746702642,26.747375859973033],[-105.81455289328471,26.690966912666624],[-105.77580867035579,26.660933134387676],[-105.7942612994513,26.698767258694033],[-105.79141343387766,26.698006281632786],[-105.78976785555341,26.699490849673168],[-105.78776261097829,26.70379761989045],[-105.78130499332025,26.70745465283693],[-105.76966609435033,26.707234691188035],[-105.76728018943777,26.710080607158147],[-105.76150471857187,26.71288435825784],[-105.75467392274919,26.71116487882614],[-105.75001792053331,26.714055223664445],[-105.74634184320439,26.71386858291538],[-105.74528921498893,26.71128394817714],[-105.74559311179951,26.706322252480334],[-105.73950643362218,26.70147616434849],[-105.73819026816017,26.697880845403006],[-105.73818174043453,26.693625039924314],[-105.73763145381383,26.693343776088966],[-105.73507902853555,26.692079900662804],[-105.73496649572121,26.685326087382975],[-105.73496357731301,26.684819616451477],[-105.72890797633795,26.69789605624004],[-105.70479876393131,26.65290769466833],[-105.68988004624634,26.657188844316636],[-105.68944247343222,26.65634270600185],[-105.68142271705204,26.648651136780813],[-105.68034439869984,26.644984379185473],[-105.67843908333879,26.643888710394776],[-105.67657621948086,26.640410956717574],[-105.6756546318062,26.63508573512462],[-105.67094800489679,26.63522645961035],[-105.67488306303437,26.617670315227485],[-105.64553332683175,26.61660997329909],[-105.6372028093615,26.609141872760063],[-105.64044144925776,26.61355732185939],[-105.64089298340241,26.619996194298324],[-105.63904895466584,26.620097095258302],[-105.632515658785,26.619688781579953],[-105.6093673150749,26.613732266229476],[-105.60101005949059,26.61484889091662],[-105.61120042280032,26.651208580133186],[-105.61595921244879,26.668179651307355],[-105.61948726095193,26.68350943991834],[-105.59641477684926,26.637919938252992],[-105.56533665803198,26.577645216378187],[-105.54900302491131,26.546578586030137],[-105.51733522443874,26.544133996598248],[-105.49608532855501,26.542851872080973],[-105.4962555607525,26.534355763402687],[-105.4972206966628,26.530559134322743],[-105.4956290120607,26.525631079879986],[-105.49185864565504,26.523639819067967],[-105.49141124802918,26.520558476435156],[-105.48903043984512,26.51845155325202],[-105.48622541319952,26.518568232703217],[-105.48546598672118,26.516905312250856],[-105.48244845287377,26.51685047405323],[-105.4812747031475,26.513365652033826],[-105.47859128052755,26.511425708762033],[-105.47636594637186,26.511097640203957],[-105.47069808214303,26.508651107072808],[-105.46789477850592,26.511389972751772],[-105.46924244962764,26.5152515521886],[-105.46923545347846,26.51932563303251],[-105.47435920028556,26.526480733172093],[-105.47157474271916,26.52636321958778],[-105.4701424163971,26.527898049338376],[-105.46759117635298,26.526051519827035],[-105.46360604544594,26.526871338405044],[-105.46031662752239,26.52929279790834],[-105.45589868740899,26.529719316075443],[-105.45529567290043,26.528000043220516],[-105.45073580534648,26.52718394207119],[-105.4502457637879,26.528580405926505],[-105.44693324163626,26.52721261667665],[-105.44441098585816,26.529078403318636],[-105.44296102119978,26.527389926496085],[-105.43860204308385,26.528344760101163],[-105.43604251654938,26.527749424032038],[-105.43056251667531,26.523829495406574],[-105.423444742389,26.52275386550781],[-105.42213413981142,26.52144064200064],[-105.40958258992868,26.52003335918255],[-105.40730248067996,26.520464984205205],[-105.403427575448,26.51752466890946],[-105.4008395197477,26.517846905655347],[-105.39739109050919,26.520273031397437],[-105.39680125266102,26.521800621653483],[-105.39006389953425,26.523943825864592],[-105.3887296844519,26.524063112097735],[-105.38555637163012,26.522576703509003],[-105.38373431665622,26.527547721937367],[-105.38109937534585,26.52959177609739],[-105.37914409572141,26.528977694322123],[-105.37283473806605,26.52966459786893],[-105.36816761037392,26.53399338421133],[-105.36541234669642,26.531452617114837],[-105.36252706977655,26.532024309946223],[-105.3619561115454,26.530078812106808],[-105.35629024337305,26.52472322633247],[-105.35574794865283,26.521846502063738],[-105.34778253668185,26.51174692371461],[-105.34953831348844,26.508720287694075],[-105.34766310647342,26.50451541775135],[-105.34270610985476,26.50451550241212],[-105.35095877277553,26.497899113559868],[-105.35407597661049,26.493615038143673],[-105.35539261699319,26.48833699721439],[-105.35716159815587,26.485618066361155],[-105.35563045874636,26.481625580283037],[-105.35276536856821,26.47887648026108],[-105.34461585047978,26.477381234434233],[-105.34203257988054,26.479472593077105],[-105.33875366041343,26.47805017877323],[-105.33855684711648,26.47746495885093],[-105.33824718273542,26.473871694032994],[-105.33408277227812,26.4695648453569],[-105.31736997443664,26.462491520383708],[-105.31625619582064,26.462595963866534],[-105.31657775465453,26.467852916246784],[-105.31576314619701,26.47003690289182],[-105.31345851714508,26.471469495668316],[-105.30903060405046,26.469687445136458],[-105.30377603632252,26.473007923036562],[-105.30123947734927,26.473296769427463],[-105.30224476960313,26.475605670429957],[-105.30203359394102,26.47610234597954],[-105.29968029059711,26.478891448142065],[-105.2984568800606,26.482018240753234],[-105.29163214985988,26.48088985691868],[-105.29160122626462,26.48105921567378],[-105.29197621524645,26.485115823261197],[-105.29035770850726,26.487811538501433],[-105.28792499360458,26.48892735539789],[-105.28186449576083,26.486957926477317],[-105.2794732366205,26.487528384173515],[-105.27508372115892,26.485600574832176],[-105.26946334849788,26.47976373596873],[-105.27044925493976,26.474734031965056],[-105.26890577601233,26.472004094734814],[-105.27072230260887,26.46721061465263],[-105.26891352070987,26.464688409038843],[-105.26500186855299,26.462416119129045],[-105.26468257990007,26.462072760726358],[-105.18206290781967,26.492153883779963],[-105.10154955723237,26.521405521268377],[-105.05663402357635,26.419300534546608],[-105.05621698290594,26.422143765781072],[-105.05376374123853,26.424750340600667],[-105.05257780965644,26.429764591069727],[-105.04897003807315,26.429659685082186],[-105.04539790079161,26.432971107578396],[-105.04026342613463,26.43412707314576],[-105.03733969472222,26.43575693571762],[-105.03258993786557,26.434377290942507],[-105.0283805537785,26.43762879749147],[-105.02706911155622,26.436942058141824],[-105.02423664407439,26.44011691163945],[-105.02390456352805,26.441736554187514],[-105.0203227503801,26.444243089700535],[-105.01768145062022,26.444649583997602],[-105.01492596628424,26.4470304815963],[-105.01275216495776,26.4461992026429],[-105.01057508157095,26.448358321380056],[-105.00557957333001,26.448475731238375],[-105.0022234841357,26.451484813847287],[-105.00083198180988,26.453870159344547],[-105.00067316367597,26.454305961002774],[-104.99745793625078,26.455708876146332],[-104.99151185873109,26.456339712222302],[-104.98833290305032,26.4538943122177],[-104.98789426997666,26.45349147433143],[-104.98481449464776,26.452129278811697],[-104.98056407738358,26.454286915668774],[-104.98012131217695,26.45099247180508],[-104.97742847686015,26.452744862005318],[-104.97638593060515,26.45273534607844],[-104.9737497941619,26.45303973099857],[-104.9683625849118,26.449987086863246],[-104.96789983544585,26.449419724759082],[-104.96754612192899,26.449013620945948],[-104.96706093607696,26.4487448464032],[-104.96105999029311,26.452131168313542],[-104.96083302711554,26.45374801184198],[-104.95754762831433,26.455807971707202],[-104.95844727354421,26.459366964936407],[-104.95623904241461,26.46284468091244],[-104.95770567574272,26.46428825291514],[-104.96197184025567,26.46489144688121],[-104.96539322169446,26.463035094807935],[-104.96959186841292,26.465952287229925],[-104.9670832885252,26.468245438100553],[-104.96321518988782,26.473390915858886],[-104.9589195934791,26.471570623991113],[-104.95767840652144,26.472643960539074],[-104.95455913482476,26.470521555065147],[-104.94764553277668,26.468320334567352],[-104.94701740686759,26.4683150883655],[-104.94465692516894,26.4682813588542],[-104.9443766732839,26.468344690489232],[-104.94388529422775,26.47298727575287],[-104.94199718333658,26.473324798827264],[-104.94078814972221,26.476329907704383],[-104.9389386289692,26.475967063528856],[-104.94031707381805,26.47939271160692],[-104.93777097112138,26.481397384625836],[-104.93672992120543,26.483711585645096],[-104.93225849809357,26.487512646234393],[-104.9182516866544,26.4938433941187],[-104.90855071799075,26.505499201629164],[-104.89890032671673,26.510018304262587],[-104.87584468876929,26.505546097630543],[-104.87363424888042,26.50796045813388],[-104.87046547534601,26.504172933144787],[-104.8648871201571,26.505535509355582],[-104.85893899897263,26.505294811841566],[-104.85896404088766,26.50333278448784],[-104.8565832258297,26.502868839391112],[-104.8550218271127,26.50510180842639],[-104.85210351677176,26.505635692233227],[-104.80927413852459,26.508497415885074],[-104.79903576188076,26.50566188941258],[-104.79461217415184,26.503869389370152],[-104.79122579571651,26.504561069289707],[-104.77691063986452,26.49259577241088],[-104.76880635764587,26.49017217736906],[-104.76095605795882,26.485818724416276],[-104.75575546654477,26.488423690686375],[-104.74766057821199,26.49230419021535],[-104.74716869226677,26.491852111705953],[-104.73921547188456,26.483024831909802],[-104.73656383396451,26.482122221899772],[-104.7372441490063,26.479915351095087],[-104.73727282312575,26.47970370458887],[-104.73717179902758,26.47939662495037],[-104.73670254293893,26.479250836070207],[-104.73446920016369,26.48002995557016],[-104.73368095444414,26.480304930497255],[-104.73261806961494,26.479470551660654],[-104.73224590922939,26.479961449433176],[-104.73200932246414,26.48005335634764],[-104.73122443388428,26.48004578755456],[-104.72770681053845,26.4783977940167],[-104.7270363315979,26.47796492306196],[-104.72532424211579,26.476062727617432],[-104.72407228413397,26.471793825615237],[-104.72053389762664,26.468602260520356],[-104.7201937773093,26.468622054566765],[-104.71864460351259,26.467193349344882],[-104.71793887055094,26.46718559107461],[-104.71728860713768,26.466943158281822],[-104.71687295098684,26.466750360371577],[-104.71355340713399,26.466713796306863],[-104.71182240721174,26.465062632707998],[-104.71097603790565,26.461947573277143],[-104.71098308996659,26.461430031973066],[-104.70968621076082,26.455888123364446],[-104.7043117892839,26.45278277334552],[-104.7040287137637,26.452463391343827],[-104.68932868103502,26.436946588856983],[-104.68888728311737,26.436705203664076],[-104.68677483025431,26.434485713021616],[-104.68704184761202,26.434159063876734],[-104.68505298328176,26.43212009485751],[-104.68105192710647,26.430112121919876],[-104.6805806671602,26.430106084481054],[-104.67773326913147,26.42966878682239],[-104.67785175727391,26.427972863916978],[-104.67482067114867,26.423081720172718],[-104.67370355060837,26.42252511675531],[-104.67407267773854,26.42236483404963],[-104.6741182900887,26.421139485837614],[-104.67030034788132,26.419526611789763],[-104.66951948356393,26.419233639997174],[-104.67091408765242,26.417153374638758],[-104.67125664902193,26.417016332580545],[-104.67198814966446,26.415469755761933],[-104.67020787724164,26.412088388113318],[-104.66567600624239,26.41006839855811],[-104.66394656926661,26.410693586281752],[-104.65895041508452,26.402798040758057],[-104.65893713918479,26.401983701979987],[-104.6585215386404,26.399024573730514],[-104.65508473258348,26.39491299056698],[-104.65407538157092,26.391053018307446],[-104.65033560262884,26.39147774991983],[-104.64895441152896,26.390975254988803],[-104.64662105320872,26.392020201740536],[-104.64078418150098,26.388302725918777],[-104.63863156396377,26.38614812200285],[-104.63762952070476,26.38388283207712],[-104.63476416527698,26.380748173611494],[-104.62817318410299,26.37818968814821],[-104.62669811174612,26.37632147232989],[-104.62775769592923,26.374388419361367],[-104.62724358420832,26.373279188543563],[-104.6261332606681,26.37155441293254],[-104.6225610013347,26.37063806052879],[-104.62027653096544,26.369003275825094],[-104.62008858491367,26.368842640960736],[-104.5938564850864,26.3804396493515],[-104.57445147958316,26.340468283658765],[-104.56624417623891,26.348770531848686],[-104.5197594086028,26.395761403386416],[-104.50109052583548,26.414541675360795],[-104.50099106000914,26.4147264451409],[-104.49808459729178,26.422661998245133],[-104.49622245138613,26.426390549052257],[-104.49540177390895,26.433418951355975],[-104.49601246692805,26.44055411541393],[-104.49696203210755,26.44356735634574],[-104.50143599901861,26.44958287186381],[-104.50121127252055,26.458196534736715],[-104.50306157618866,26.464980887780882],[-104.5001825718353,26.466775661181373],[-104.49589931636791,26.466859302627824],[-104.49480046530402,26.470966979577554],[-104.48962340820236,26.47966369946721],[-104.48939337877431,26.480527630292215],[-104.48901042735918,26.481533894217023],[-104.48866821113768,26.48262614063225],[-104.48411157592909,26.494655997266648],[-104.48313916750595,26.49519026896752],[-104.48208516517406,26.496076936185887],[-104.47920665519797,26.500076759391163],[-104.47290947151976,26.511555322349295],[-104.4714750672457,26.51755908211311],[-104.46855544346568,26.52034144235364],[-104.46660130149758,26.524475485041194],[-104.46563711977075,26.526515116585017],[-104.45546915680421,26.549244898211327],[-104.45309303458754,26.556903410989037],[-104.45227365658911,26.562674816209267],[-104.45120046450353,26.565491198527354],[-104.45090042861364,26.57158855143564],[-104.44739783305238,26.580265439793322],[-104.44467570201084,26.5832646391176],[-104.44150625541232,26.59094411718047],[-104.44005605975383,26.596586932411356],[-104.43823385239841,26.599475391213673],[-104.43698911296718,26.60113599198752],[-104.43683387573537,26.601291282420277],[-104.43533453868815,26.60279110245324],[-104.43477523903721,26.60452053476513],[-104.42643846099935,26.61021810520083],[-104.42484930611442,26.61023458180989],[-104.40698202696746,26.622056061872456],[-104.39692002856134,26.62766844509531],[-104.39528121924536,26.628882054345922],[-104.39060311698262,26.629843341384685],[-104.38563144897853,26.632295714233123],[-104.38272393023772,26.63508671225162],[-104.37542253679231,26.6407164910205],[-104.35621083384416,26.64649747881242],[-104.34602285887706,26.650676346327714],[-104.33038742950669,26.656532920021448],[-104.32376378565374,26.66890208383785],[-104.32243347968449,26.670788403875633],[-104.31047841483428,26.69433153876861],[-104.30544277190035,26.70175779916957],[-104.30679533379697,26.707168175091965],[-104.3064226386897,26.70758772342066],[-104.29692813402426,26.717918202975454],[-104.2865434800226,26.725402996809976],[-104.28762867130672,26.72916651757913],[-104.28896907756592,26.73043452246776],[-104.29032215779574,26.73619807659469],[-104.29279617073712,26.739675979240417],[-104.29541068620932,26.74640163961783],[-104.30432504695744,26.755418904134785],[-104.31150964077841,26.756294045758466],[-104.31393861022912,26.759316741184534],[-104.31727960142632,26.76073675971145],[-104.30176193811008,26.771948576124714],[-104.30288411193817,26.773795653594675],[-104.30359155046102,26.780881075520824],[-104.30325444603727,26.78365576926052],[-104.30469681320625,26.785900457710568],[-104.3068230487491,26.7887599454466],[-104.30657595848209,26.791671757341135],[-104.3053154745844,26.792891794803268],[-104.30887155576067,26.793403908885807],[-104.3095293053886,26.793518826237005],[-104.3111200622393,26.794975049771836],[-104.31138072011748,26.795468006466308],[-104.31276467524674,26.79707557644514],[-104.31524161109661,26.79864548006111],[-104.31340379794597,26.80204627591121],[-104.30914133539432,26.80522977361028],[-104.29916954693641,26.808598798913977],[-104.29941396906219,26.809784792974767],[-104.29320473331927,26.811587480438618],[-104.29179334197227,26.81523312387037],[-104.29156184291912,26.815718497686362],[-104.28964637101348,26.815462073007723],[-104.28921338892292,26.815220180819153],[-104.28809850464125,26.815214573142157],[-104.28750489331884,26.816734871633855],[-104.2921623360154,26.816617210359198],[-104.29488805830107,26.81775101867396],[-104.28884869210947,26.820499755861533],[-104.28361924496465,26.82531415434886],[-104.28086855295095,26.831030321302137],[-104.2818824078729,26.83564381175421],[-104.27304241146015,26.842279524247147],[-104.27062706698678,26.8385733311452],[-104.26988937285387,26.838975642212517],[-104.26944525847426,26.83875147761114],[-104.26746969129687,26.838031264488393],[-104.26293336676378,26.83171449076974],[-104.26250553162913,26.831378735868498],[-104.2613939850919,26.830380488772335],[-104.25709030107464,26.822429198613747],[-104.25120154642502,26.811547429554082],[-104.25094542693569,26.808504894820373],[-104.23247628598494,26.78518605940701],[-104.22767128462522,26.77930767747239],[-104.22780884010865,26.777153630006126],[-104.199982010452,26.775008515098023],[-104.18393589710877,26.773572002837568],[-104.149464298201,26.766713556994148],[-104.13281691230958,26.763388253417133],[-104.07332910110546,26.751452154108563],[-104.05692962288566,26.74815742188781],[-104.04573781639522,26.74297653113797],[-104.04160409253774,26.749632068780556],[-104.04006700834321,26.754764332752757],[-104.03319061774317,26.774391488224524],[-103.9949954875882,26.777540265579432],[-103.99388374281187,26.77636285280522],[-103.99383282866319,26.753610421961355],[-103.93257747354721,26.753994988666932],[-103.92775342181397,26.752729647882404],[-103.90046372853305,26.754906118542806],[-103.88118828916379,26.75491801932202],[-103.86934691514193,26.75264184720828],[-103.86362221346025,26.751066702142907],[-103.86129741034995,26.75042080966631],[-103.86129849452215,26.75409457406198],[-103.8381380506928,26.7499636191489],[-103.69909410460099,26.72525637717723],[-103.6993655867297,26.72585054677984],[-103.70164094755211,26.73078308613225],[-103.71524869915288,26.735077260962555],[-103.71708079988247,26.74253483330159],[-103.7182761292878,26.74502532874351],[-103.7191064411166,26.74875385124153],[-103.72487080647994,26.77210651549632],[-103.750619731435,26.80990508223954],[-103.75396792997361,26.82957344251281],[-103.75990348492195,26.83250390920557],[-103.76114091572708,26.83296185367493],[-103.76194801674256,26.833401380607143],[-103.77018762651903,26.83513563426692],[-103.77960544043282,26.836126250871303],[-103.78500384635339,26.840994919659636],[-103.79005046841621,26.845555606182472],[-103.80447801951448,26.855009593737577],[-103.81433915568664,26.866132184604567],[-103.82253493185584,26.875374342872078],[-103.82810615733189,26.87870360507344],[-103.83141828998941,26.880532029124538],[-103.84215802567718,26.89145030497474],[-103.84749239749914,26.892991162662213],[-103.85170071453729,26.896133834131604],[-103.85194346667231,26.905230444225765],[-103.83591918611114,26.93581334880787],[-103.85202331621213,26.93456203062567],[-103.83269958282068,26.947870044913714],[-103.78462875305655,26.980698529633003],[-103.77994768891301,27.008886298776872],[-103.76849826817505,27.01334804838808],[-103.74772772527501,27.02179867471034],[-103.74578913995566,27.022699568489656],[-103.74253064496634,27.021772823820754],[-103.74083437690638,27.022521748351153],[-103.74233697456856,27.02427195429948],[-103.74431103697839,27.026697960936303],[-103.74544548908995,27.03333098272111],[-103.74536282163996,27.041417960651415],[-103.74728960018257,27.047691053178482],[-103.74786697749244,27.049673472664836],[-103.74798419080156,27.050432448364518],[-103.74900132489705,27.055218993466838],[-103.7491292030079,27.056271307293173],[-103.74906068806689,27.06114133487489],[-103.75066461997613,27.070637015309217],[-103.75089564092252,27.072257421246263],[-103.75091228441073,27.07238333040459],[-103.75123612115704,27.07404355050835],[-103.75216692555966,27.076998449113432],[-103.75261006579643,27.07810778365979],[-103.75343620320342,27.079017942771827],[-103.75627007814569,27.082106126923577],[-103.76305323173989,27.083912843891255],[-103.76524934270213,27.0850323786413],[-103.76638755083013,27.085388175106687],[-103.76772304140559,27.08613274433003],[-103.76977051824139,27.087276111995095],[-103.77379528620025,27.089615631564982],[-103.7803425675429,27.09059846152519],[-103.78342668821102,27.09117580818844],[-103.7946245667635,27.114684058074886],[-103.79939846921695,27.124729532486697],[-103.79843036821484,27.213198754103814],[-103.80939543784729,27.249203081452663],[-103.81976349423752,27.24295655426471],[-103.82041130441723,27.248413438320085],[-103.82207649279161,27.25359519352122],[-103.82260270997517,27.256773130620445],[-103.82529571639657,27.262401236235974],[-103.82655307018024,27.26944350504334],[-103.82879253089078,27.274531139244743],[-103.83059326393186,27.276847480119955],[-103.83035388161142,27.281190848869414],[-103.83210013758031,27.29368277892496],[-103.83212255908035,27.298293475779303],[-103.84757898648087,27.302904241012925],[-103.84811702339539,27.30304950878474],[-103.87687601987619,27.3115921378822],[-103.86365041166073,27.440920744914365],[-103.85850514041692,27.43989149747489],[-103.8565351835295,27.500263675960696],[-103.85526430497981,27.532574657060252],[-103.85460094775522,27.54943273490005],[-103.86883765463233,27.607136830014156],[-103.88355552608255,27.600771753643983],[-103.89726286754922,27.656548774718374],[-103.88324458575232,27.65759181029273],[-103.89553265862145,27.674021193091846],[-103.88950493922528,27.71321714459998],[-103.89669228687796,27.740557242937257],[-103.88114534039647,27.739185742730513],[-103.93564955258609,27.797552739644345],[-103.92191726355571,27.80912675533102],[-103.90277124179687,27.825257106991614],[-103.9008439284097,27.8268572551807],[-103.94390670290147,27.82687055423338],[-103.94838291465845,27.831018374747998],[-103.96000192022512,27.835309014917925],[-103.94578304604659,27.85638822997828],[-103.94564465602014,27.888861818493012],[-103.94333127694608,27.888843222057176],[-103.95237663063568,27.93700217317911],[-103.95497349592375,27.950820994495132],[-103.9543452246777,27.950644096344604],[-103.94508437105213,27.94801569571979],[-103.9356430904379,27.94534236554108],[-103.93974188148314,27.933887078383975],[-103.9418675903649,27.927796490890103],[-103.89288584482625,27.914022962244303],[-103.88538752189038,27.9355126575756],[-103.88538354320536,27.935524058022054],[-103.87771593740217,27.957490333591068],[-103.92669189519626,27.971356759909327],[-103.8985812343484,28.03862916364244],[-103.88948524836479,28.060376925175945],[-103.88643530580475,28.066174424122437],[-103.88272736111338,28.072199256431077],[-103.86956991347779,28.094472183216283],[-103.86094129831366,28.10902193243402],[-103.86749986148806,28.112135673600392],[-103.86064679676508,28.1250528010504],[-103.86062450119312,28.12524298009589],[-103.83747997141234,28.169245290045353],[-103.83039960591816,28.182427898848005],[-103.82865348430835,28.18573940709905],[-103.7979902626144,28.243853104430173],[-103.79477368600192,28.24994488177515],[-103.78992491967097,28.259142779657623],[-103.7681797795222,28.300372524550994],[-103.7628712392721,28.298196788831376],[-103.74123876202714,28.334716080506894],[-103.72833286350357,28.356491013613493],[-103.71519586932897,28.380540707284524],[-103.6924309441282,28.422185968429517],[-103.64301079670912,28.512461870547668],[-103.64335502387883,28.530634445241276],[-103.64794446170737,28.532983483432986],[-103.6375012147277,28.554505315373376],[-103.62456759383667,28.58114651404827],[-103.62374722255356,28.580907029968216],[-103.60100839272275,28.574907404737132],[-103.59191587505865,28.590834259919347],[-103.61581854512997,28.59812536073332],[-103.61604603244047,28.59819473021878],[-103.5963737035666,28.639474547052885],[-103.5820014853735,28.628793512822995],[-103.57857368898277,28.633140063014025],[-103.57265896015889,28.640639171368946],[-103.56864537275533,28.632970502128728],[-103.55729531086126,28.611280673743295],[-103.54249923953239,28.633645342227737],[-103.54022194598622,28.63708678220729],[-103.53004667850439,28.65312879598224],[-103.51976198926587,28.668745026537124],[-103.51451214363345,28.66499784488616],[-103.46325460270913,28.756614538688382],[-103.46634534669545,28.759457634061732],[-103.43166303993144,28.81318034694823],[-103.42355363107652,28.821289712599537],[-103.41001538980731,28.840922391085485],[-103.40458611382189,28.82955152942327],[-103.40433657903236,28.829786001462253],[-103.40333396436898,28.829484727894737],[-103.40056095952724,28.828615617028788],[-103.3997218836007,28.82981893111821],[-103.39913176832061,28.830078260901473],[-103.39894887015367,28.8306983250867],[-103.39834881386724,28.831291114674457],[-103.39819927038502,28.832059945620017],[-103.39628713672596,28.833764671101676],[-103.39608698233957,28.83439622748574],[-103.39588812416537,28.83461135524476],[-103.39558627109307,28.835587279233096],[-103.39539587668946,28.836979727600237],[-103.39532285715416,28.837621794807774],[-103.39434592534099,28.839938520442047],[-103.39424600337031,28.84044032886993],[-103.39461484081204,28.840791456876048],[-103.3947509624947,28.842217951817247],[-103.39489577374735,28.843108622643058],[-103.39491485006806,28.84384771953006],[-103.39543303875973,28.845049199766436],[-103.39562457793289,28.845960450981693],[-103.39567448649206,28.84653457494943],[-103.39627990548422,28.8481546163614],[-103.39656803688581,28.849475293593684],[-103.39681093544345,28.849988272481653],[-103.3974974486618,28.851255873991136],[-103.39789217200308,28.851759196261412],[-103.39789821504723,28.852305022481858],[-103.3982994108622,28.853453687474143],[-103.39891769806667,28.8546079863209],[-103.39926114379307,28.855417830354156],[-103.39931109086996,28.856407367916802],[-103.39933269838502,28.856908735312004],[-103.39972704810333,28.858084667646096],[-103.40000383762475,28.858426983899335],[-103.40016106978368,28.858721072126514],[-103.40087040589549,28.86023571246926],[-103.40092883518031,28.8608020290078],[-103.4011547683973,28.861504564601603],[-103.40363157023899,28.86591251939973],[-103.40391391249227,28.866301048534467],[-103.40373506586207,28.86869796873691],[-103.40365025890782,28.869254116414652],[-103.37087453458565,28.90681222389685],[-103.35770066492773,28.92025062820761],[-103.3092153408997,29.00118718382663],[-103.30859749246775,29.00109395236109],[-103.308126678451,29.001635556930466],[-103.3069618878385,29.00392541810612]]]},"properties":{"cve_ent":"08"},"id":"inegi_refcenesta_2010.29"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-93.16661745554978,17.935044107153374],[-93.17266370305367,17.939737076043627],[-93.1789923159547,17.93890281994709],[-93.18314389850224,17.94030905345147],[-93.18504565517895,17.946144625940747],[-93.18721458062265,17.948215211755723],[-93.18845911311314,17.95363499208372],[-93.1920015851901,17.9561357206544],[-93.19450625480044,17.955594067058485],[-93.20074340517999,17.95637143618967],[-93.20349931466217,17.958936137079547],[-93.20735876197472,17.960637935818283],[-93.21109030732123,17.957918717516918],[-93.21421111293097,17.956732087718933],[-93.21571709492048,17.957492847859328],[-93.22539937219233,17.95130335809438],[-93.23096121493069,17.9487527123228],[-93.23376912173563,17.948890822769442],[-93.24134140263095,17.95051194080088],[-93.24222356005936,17.955458093006712],[-93.24437742871766,17.95910873705867],[-93.24640124976992,17.96090431373267],[-93.25671490506903,17.96304318711867],[-93.26048917424026,17.9660697340542],[-93.26124249024627,17.969785291764424],[-93.26509896424574,17.971255827583036],[-93.26815959557933,17.97428915833001],[-93.27271578156285,17.981337014171515],[-93.2749232938611,17.982847005365613],[-93.27737953368097,17.982281047267804],[-93.27832268980944,17.985287798083277],[-93.2814185009106,17.982359287976294],[-93.28088981266171,17.978971488568163],[-93.28190661196459,17.97505015850396],[-93.28165202023627,17.971965980364416],[-93.28300761658159,17.967499382242636],[-93.28770745546694,17.961014897079792],[-93.2935498327393,17.957129417200633],[-93.29458193180727,17.955605629907836],[-93.29547091295791,17.94970481312737],[-93.29838059375635,17.94786173546106],[-93.29552748504602,17.941245320639723],[-93.29800969277426,17.938581782272763],[-93.30170171458417,17.93625966257713],[-93.30770388109977,17.93587020846536],[-93.31101270288008,17.932279345378618],[-93.3135327405077,17.93086404391522],[-93.31722134013887,17.93052091452546],[-93.32526703386259,17.927942740685182],[-93.32855004193135,17.928781591470283],[-93.33073009944968,17.932294047941355],[-93.33381245598787,17.933894749753165],[-93.33667019424803,17.93660124829171],[-93.33993965250426,17.932852330895116],[-93.34116589402299,17.928751991599086],[-93.3407667350611,17.92364022561611],[-93.33896744177747,17.921003436299657],[-93.33930565347134,17.914948613874515],[-93.33729007232932,17.911423134998245],[-93.33602244092276,17.90498656142097],[-93.34126191779012,17.903143968321217],[-93.34236425041655,17.898431210474484],[-93.34459847855015,17.893788001056464],[-93.34449392002256,17.888063407151208],[-93.34764084884648,17.885727980692934],[-93.34997486206225,17.882592346846536],[-93.3505827635413,17.87606603663869],[-93.34932521525053,17.873546560146224],[-93.34971272929243,17.86796280758813],[-93.34434304801488,17.862031439959026],[-93.33656315294286,17.856408471237103],[-93.33429510236351,17.851698891805768],[-93.33470886425903,17.847316609088466],[-93.3361580774577,17.845194974509127],[-93.34095290043052,17.843235029583695],[-93.33979333250875,17.839961504763608],[-93.33949369133234,17.83567412590719],[-93.34244127628278,17.831713429062916],[-93.34305299491746,17.828673769832847],[-93.3469585562238,17.823699044313457],[-93.349285607188,17.814909338136886],[-93.34346921277069,17.80365406160547],[-93.34105539016588,17.80016971571297],[-93.34188819286351,17.79696492449102],[-93.3520924698455,17.795423462545784],[-93.36464358148828,17.803019704211124],[-93.36661094802014,17.802923324653477],[-93.36557389934325,17.799437776440413],[-93.36736845748294,17.798823287440996],[-93.37048597096702,17.794037428352226],[-93.37422425026512,17.794245255832607],[-93.37410343282238,17.79598873311693],[-93.37640878469756,17.79585233231512],[-93.37760682735234,17.7931966316865],[-93.37743871552487,17.789403523454553],[-93.37851575577713,17.784557733636234],[-93.38094849486885,17.78316494798395],[-93.37919920891335,17.780504849801105],[-93.3774789994145,17.7814020637162],[-93.37216716698521,17.781172505502354],[-93.36441870339712,17.779084315488035],[-93.36375854578432,17.782312574244145],[-93.35850308455491,17.7883963234284],[-93.35510845207932,17.78750463467054],[-93.3431078466246,17.78751668628678],[-93.34619359974334,17.775616481093095],[-93.34913508935904,17.76708527037266],[-93.35281967102958,17.76373619268901],[-93.36174608871573,17.764527874724877],[-93.37541994918035,17.76679801127807],[-93.37759840581793,17.77182282419244],[-93.38061767525267,17.774354382765523],[-93.3843933546579,17.773085291684595],[-93.38568054651324,17.776674680914198],[-93.38736625533846,17.777577330103554],[-93.38965914945123,17.775955379256118],[-93.39054782837627,17.77339971412755],[-93.38926251238524,17.767928543153516],[-93.38679793188231,17.761790298696212],[-93.38536350370089,17.760395464856515],[-93.38231757985267,17.74987574531076],[-93.38076645123664,17.74729826575134],[-93.37679455725333,17.743659561824927],[-93.37375713165767,17.742415588879624],[-93.3699398966678,17.73742245790396],[-93.3707121651376,17.734657815606113],[-93.37332445582439,17.733953672050347],[-93.37170620633151,17.7325614229415],[-93.3693065318829,17.732795836416756],[-93.36959112960972,17.729352756365472],[-93.36710485123336,17.727947952017587],[-93.3630294698412,17.72729322937937],[-93.36449845035827,17.726666852096344],[-93.36252072721311,17.72319774304657],[-93.36005447165724,17.722466646337523],[-93.35968449051131,17.719925118357992],[-93.35768377954554,17.71659755723141],[-93.35505948282088,17.714227799866478],[-93.35482583766924,17.71115711819988],[-93.35642192734929,17.71095378399548],[-93.35519568940043,17.706393638811164],[-93.35340986328885,17.707282095472465],[-93.35357737117647,17.70195494187709],[-93.35546147672449,17.70106557134892],[-93.3552660676458,17.69875805280344],[-93.35319183474212,17.6978582729908],[-93.35348572932344,17.69531056842243],[-93.35594402621439,17.692860602648693],[-93.35672217319427,17.68715073284949],[-93.35497983015154,17.68502252433359],[-93.35383658929356,17.68135704120465],[-93.35509604864149,17.677056586851677],[-93.36041700555762,17.666025993071628],[-93.36020440011339,17.66202196989957],[-93.35682339439796,17.650954405536993],[-93.35627777618078,17.6480374415994],[-93.36196220535714,17.64628792320383],[-93.37894565265043,17.64543378115485],[-93.38478872751028,17.64437794023081],[-93.38467548159002,17.641855041504584],[-93.38459482145225,17.640130139722658],[-93.38411729517213,17.637205348379837],[-93.38627058976454,17.63298366374579],[-93.38783249220944,17.632168329797025],[-93.38948845873114,17.63135840325981],[-93.39159785488488,17.630846202151588],[-93.3934136838842,17.63049813553357],[-93.39494160609507,17.630224001850706],[-93.39771150180718,17.628210628819375],[-93.39805023925254,17.62732476366091],[-93.40168368258196,17.62508944463525],[-93.40265270270237,17.62469253304488],[-93.4041033997106,17.62414226007229],[-93.40559924004867,17.62287028304206],[-93.40959929549217,17.619297862514145],[-93.4110799255941,17.616757482850517],[-93.41177972732919,17.614624885082662],[-93.41248130652474,17.610953316251084],[-93.413021115243,17.608358870440213],[-93.41370571451404,17.60495796063259],[-93.41451075491221,17.602650381923468],[-93.41537037166876,17.600979671858056],[-93.4160531171218,17.599117734217884],[-93.41695214400784,17.596815570363503],[-93.41760667079268,17.59540467620326],[-93.42048991012922,17.5900479331209],[-93.42216207355057,17.588967081384624],[-93.42313078010784,17.588570060995778],[-93.42496286185929,17.587951015793635],[-93.42735925099396,17.587364340092904],[-93.4290634792037,17.58728108762631],[-93.43067365133305,17.587192419490748],[-93.43275409155916,17.587130709662006],[-93.43520512289228,17.587180752106008],[-93.43783864291674,17.587331745181643],[-93.44105335534124,17.587244409828656],[-93.44181141035585,17.58719731874328],[-93.44447302487998,17.586897158719182],[-93.44524792738525,17.586579428366747],[-93.44689318927828,17.584410434601864],[-93.44758665610112,17.58236799105407],[-93.44813691990566,17.57959312957712],[-93.44848783762484,17.57698792102991],[-93.44881345644836,17.571755997058517],[-93.44901977600387,17.56995728043114],[-93.44949698875985,17.56835513140527],[-93.44999664209712,17.566392167329695],[-93.45020293813843,17.564593465239852],[-93.45062536676858,17.562354516098935],[-93.45076006062766,17.560189627736293],[-93.45073474094949,17.557562964611236],[-93.45083575693207,17.555939310599456],[-93.45076554161727,17.554034286511694],[-93.45086231196171,17.550962023059867],[-93.45095771000877,17.54942858886227],[-93.45239890270284,17.545980699379015],[-93.45411943125526,17.54562656296423],[-93.45592836913823,17.545367988471753],[-93.45864953179853,17.54561418597325],[-93.46038559288121,17.546528179073846],[-93.46509015344662,17.549784389841022],[-93.46689793566713,17.551064498614267],[-93.46881098321398,17.55216955431456],[-93.47074645657142,17.552913774810463],[-93.47176961447275,17.553153256209953],[-93.47570778868186,17.553559156549454],[-93.4815612278748,17.55199219879586],[-93.48263471614047,17.55141977479434],[-93.48633840149273,17.546471234724493],[-93.48708041692981,17.545155719101672],[-93.4884433945237,17.5414315404621],[-93.48863239107635,17.539903466367264],[-93.48910903834218,17.53830127188263],[-93.48933618593037,17.537680578766526],[-93.49029968008159,17.535834576475565],[-93.49051006299055,17.535484487851534],[-93.49062642405607,17.535129041057417],[-93.49452238967189,17.53065929243303],[-93.49561682396836,17.522728969041793],[-93.49816452533389,17.52285776322759],[-93.49773784904545,17.52026774373826],[-93.49970337870167,17.519346479142428],[-93.49951039944631,17.513979364533498],[-93.50138210195274,17.51289902666082],[-93.50032276876027,17.511347025708574],[-93.50222454283795,17.507509768611953],[-93.50161231307959,17.502566461469996],[-93.50258854607017,17.49942815182459],[-93.50486027096161,17.500000872359976],[-93.50334724177412,17.501288225034557],[-93.50765172360371,17.501159761495728],[-93.50439937940882,17.497531649203722],[-93.50678878668919,17.493934411559053],[-93.50849509024454,17.4961862592462],[-93.50962874827712,17.493995961483847],[-93.50768721130316,17.49358514815401],[-93.50906347333301,17.490571701041915],[-93.51199903494239,17.491446939479204],[-93.51455376546375,17.4906241416939],[-93.51402234860086,17.486344393399634],[-93.51140504762793,17.485838386794683],[-93.51164713611826,17.483385941852077],[-93.50623290215168,17.4786205714704],[-93.509883122627,17.47373027549139],[-93.50940433792744,17.470902348659706],[-93.50770783420882,17.471730085529657],[-93.50825874885504,17.46874499914037],[-93.50721863505896,17.467256246624117],[-93.50804583027485,17.463286085232085],[-93.51093812942605,17.460125740873252],[-93.51222479871763,17.452266061497653],[-93.51101155634234,17.448369366074814],[-93.51333156182449,17.446143452743968],[-93.51380471976421,17.44280526789953],[-93.51544149609202,17.44033318782948],[-93.5194312297848,17.439522987919304],[-93.51991679019915,17.43543212793162],[-93.52435267633155,17.432884226230783],[-93.52525076185435,17.430542065457928],[-93.52410442952822,17.42964613474362],[-93.5316691015978,17.418981067789957],[-93.53922848347781,17.408904585462437],[-93.5435448491611,17.402597940955218],[-93.55236683127612,17.390810135154425],[-93.55539308571315,17.386331738549416],[-93.57105212805897,17.36526180138054],[-93.58408718463795,17.34702335922026],[-93.58970672169818,17.33985295891705],[-93.59771197112576,17.328269819029458],[-93.6079398087387,17.314930016649043],[-93.61115593142608,17.31237599250221],[-93.61119547893855,17.312344586361917],[-93.61149205138878,17.312109061230785],[-93.61393358412602,17.31017006100592],[-93.61450013395307,17.30972010967264],[-93.63544267906121,17.293085160361443],[-93.63813233406233,17.290948359398953],[-93.66441145816367,17.286193390615608],[-93.66269436554387,17.256276892928327],[-93.68987225465406,17.255306266043306],[-93.69566894664325,17.24723017178968],[-93.71752158549248,17.24934329325737],[-93.72436910701225,17.24708590426627],[-93.73679311369978,17.247511129691077],[-93.74261173753956,17.24599597950248],[-93.74618260837786,17.243688994390368],[-93.75420985196621,17.243644798714456],[-93.76098961558421,17.239784507847958],[-93.76362043943709,17.239439442049957],[-93.76591766565292,17.24149785549497],[-93.769342773147,17.242591589931862],[-93.77245020082012,17.245823554391166],[-93.78800471900905,17.233794177735263],[-93.79122121223969,17.23211800541486],[-93.79128959193918,17.237446549582387],[-93.79485426167003,17.24089766678952],[-93.79830584278108,17.24192263948146],[-93.80144868379261,17.240379499201936],[-93.80215210899735,17.234341496316688],[-93.80435400577676,17.23306538474202],[-93.80594759133163,17.230221759615006],[-93.80513099285497,17.22586210622154],[-93.80376249360319,17.224868163725205],[-93.81879440997602,17.20202352416476],[-93.81807555611238,17.199329850604272],[-93.82011996145587,17.195323375167334],[-93.82594075855764,17.191410113134737],[-93.82673251672355,17.189316872823326],[-93.82713769178235,17.172503479963495],[-93.83904521408738,17.17294688435453],[-93.8411846721923,17.172202276144787],[-93.84396893335605,17.168611756105122],[-93.85333832897373,17.165121063828735],[-93.8609157759596,17.163741140393313],[-93.86231684099897,17.15154401164449],[-93.87012326997313,17.14664741118287],[-93.86742677178643,17.136964911111136],[-93.93012229685638,16.98173508688194],[-93.99310640484993,16.825456832690747],[-94.04952604240663,16.685182453829782],[-94.09874593590393,16.562589350591793],[-94.13915599643025,16.461786427570075],[-94.13831960050146,16.46129511418917],[-94.05066485072507,16.329713929628213],[-94.05163650712518,16.327492277588988],[-94.04916329413476,16.32120732591079],[-94.04404246796969,16.30758395259545],[-94.04323758196307,16.3054493399124],[-94.03720860590096,16.289653909154765],[-94.03296100723935,16.275944976411097],[-94.03748592260439,16.267110705744074],[-94.04085302039141,16.26075133320012],[-94.04353436224335,16.255686915388083],[-94.03513899186703,16.248278924384522],[-94.03519555930762,16.23955367209055],[-94.0385003910651,16.23020175135389],[-94.04695173863541,16.220701592159287],[-94.0484699236032,16.216171469246888],[-94.05790146066448,16.209223436228285],[-94.06265224354087,16.206544251311186],[-94.08481533346816,16.192651175760204],[-94.09540951222056,16.185534162644444],[-94.10956760375092,16.179101242693093],[-94.10276369268774,16.14251592333096],[-94.03963248057107,16.030535350148057],[-94.03936482925957,16.030066747471437],[-94.03943795490562,16.02711884682003],[-94.03726192352991,16.0252070765913],[-94.03600810496016,16.02209472177691],[-94.02463726052451,16.016527282090237],[-94.02131720080087,16.01560330035693],[-94.0157779256906,16.01289561774655],[-94.01365509412568,16.010834258311945],[-94.01034089883404,16.00952718645533],[-94.00440518140448,16.008563009352713],[-94.00021667541273,16.00658526314612],[-94.000218837305,16.00308872281613],[-93.99671772603477,16.001676074606507],[-93.9571501524253,15.984601966318394],[-93.9555492939316,15.985946173844297],[-93.95490264832347,15.988773384909734],[-93.9528469201814,15.989888552504283],[-93.94707907903813,15.986677975105522],[-93.94272315645196,15.983477371060587],[-93.93996141032744,15.983041956125362],[-93.93479172856729,15.9846655015495],[-93.92527122269064,15.984630538664476],[-93.91650179088856,15.982852803084597],[-93.90678063603826,15.979407929996455],[-93.89075590855896,15.972624461320436],[-93.86840210233618,15.962510563198634],[-93.84076694092113,15.9486784334523],[-93.80800786443905,15.930850052492133],[-93.78691834248735,15.919166913669358],[-93.77264072413857,15.910800470382242],[-93.7489812938233,15.89651501448435],[-93.73736720547521,15.889127236377249],[-93.72583826955167,15.88231284311388],[-93.70913052139281,15.871591770108125],[-93.69766380124167,15.864029928802836],[-93.69001406431897,15.85830848179387],[-93.68399558060048,15.85490968028023],[-93.68310647645211,15.853654626807156],[-93.65626092221964,15.836116679662837],[-93.6304241488603,15.818402193638462],[-93.59869078905967,15.79621505412581],[-93.58484496285615,15.78640588588138],[-93.55679300556801,15.765860475907743],[-93.55127375176647,15.762082809692345],[-93.53881551761884,15.752909307720415],[-93.51750714470285,15.736921283714707],[-93.49551874085654,15.72010245815045],[-93.48501573991626,15.712267839189792],[-93.46155839584327,15.69425503085472],[-93.43397414635422,15.672194945485273],[-93.42296876705092,15.66313382680147],[-93.40348950067971,15.64788101814321],[-93.39394267441628,15.63982577631515],[-93.38808621624474,15.635512111818457],[-93.35769034171767,15.61113274943449],[-93.3323455517309,15.59112458152515],[-93.3210868349583,15.58087349827855],[-93.31963400779074,15.580298908372583],[-93.303778803856,15.567179984679967],[-93.27012248448801,15.53870641594176],[-93.25266073101187,15.523624978466557],[-93.24995472537273,15.521563489679068],[-93.23751581177112,15.51073877907902],[-93.23040557188472,15.503650044653227],[-93.22233936922828,15.497296360552241],[-93.20276866130183,15.480610005128824],[-93.17766010372299,15.4584005715015],[-93.15906826341916,15.441556177170241],[-93.12377698455805,15.409195228760723],[-93.1034839334967,15.390734072459622],[-93.08766941414797,15.376591680725483],[-93.06044213515878,15.351552146944357],[-93.04331843990025,15.335422220350495],[-93.02066825825574,15.31600214284066],[-92.99902226318255,15.295471884586163],[-92.98611482559619,15.283676970078318],[-92.98274796921402,15.280214357736043],[-92.9656559405833,15.264284600681776],[-92.95691910019792,15.255889056484307],[-92.9549617495594,15.25726970059003],[-92.95524207949916,15.254075970758493],[-92.93444742574735,15.23448459137677],[-92.9201358066747,15.22121201410846],[-92.90157992268547,15.203363162869664],[-92.89546125151372,15.19793110413866],[-92.88000334911163,15.183001273944797],[-92.86299978349177,15.165513404966305],[-92.8596824920408,15.160627148512106],[-92.85651472872922,15.158650864064896],[-92.85397770560076,15.158786605220087],[-92.85375669247765,15.152794408041473],[-92.84320525589152,15.142596251272096],[-92.81234798909287,15.112395173288746],[-92.79910220397807,15.099270121085965],[-92.7788341671399,15.078878045348802],[-92.75416854069101,15.053500724099933],[-92.7448276645963,15.043572144066786],[-92.72703459874907,15.02505736511472],[-92.71329997822403,15.011497803582586],[-92.70168008974326,14.999743844829311],[-92.67482824909564,14.97184363212665],[-92.65839006855464,14.954974361875202],[-92.64133551805736,14.936631837945583],[-92.63223736798528,14.926629443018498],[-92.63097398310458,14.924780740132121],[-92.59415005563801,14.886590001839409],[-92.58710086247646,14.879715982511584],[-92.58288754721491,14.875113103347587],[-92.57118703516363,14.86321408374414],[-92.5548411673845,14.84616156821528],[-92.54836824897444,14.839692680535506],[-92.5216654168741,14.811700284253163],[-92.520812221053,14.810217733972934],[-92.51234998878431,14.801541667636116],[-92.50225316488485,14.792194176147689],[-92.49816825385705,14.788014368999143],[-92.4727391658343,14.763417527992488],[-92.46007833662827,14.75175667705912],[-92.44340092678635,14.73738771670105],[-92.44145131624265,14.736273751542],[-92.43257322157729,14.728423458428438],[-92.42871020563035,14.723178326824382],[-92.4295107296843,14.721927230823724],[-92.41922610960358,14.712509912349333],[-92.41572282551817,14.709782686270273],[-92.40898289978668,14.703016919283414],[-92.41064340757958,14.699035121329985],[-92.4109088726567,14.695234270596814],[-92.40942028784866,14.696119724558343],[-92.39266005093066,14.683142537713934],[-92.36762402846313,14.662131606493688],[-92.34376253278094,14.64085335130136],[-92.32612141346158,14.624859733247604],[-92.31935348927027,14.618209275295612],[-92.30615726662899,14.606550929203195],[-92.27589462556205,14.578158097088817],[-92.24381820438265,14.547603688655556],[-92.23218497275985,14.537521690555877],[-92.22675194468218,14.532098361949238],[-92.22494744835649,14.533886733106556],[-92.22110116596792,14.534987906461708],[-92.21965870426095,14.536468048877282],[-92.21845735895033,14.54027030152298],[-92.21642225471425,14.543604762837163],[-92.21611567041839,14.55561621000561],[-92.21493682881254,14.55715428321787],[-92.21035777430762,14.557967320873729],[-92.20809464520164,14.559187692690159],[-92.20561638806328,14.563119971326216],[-92.20298596390035,14.564495894841059],[-92.19870462018656,14.564053337816802],[-92.19729055172053,14.565924830400434],[-92.18791892997604,14.574190769140841],[-92.18495032529108,14.575710923905433],[-92.1824763474836,14.578329472351413],[-92.18248515513415,14.583868931334848],[-92.18184111910955,14.591067478365119],[-92.17990871018304,14.594235969754038],[-92.17781828850923,14.601377971435966],[-92.17791173747338,14.606980669858501],[-92.17465582682274,14.611063470346778],[-92.17563895282859,14.613237302604432],[-92.18063142791743,14.613773846580614],[-92.18075443738934,14.616575454837516],[-92.17692277786972,14.62064138243585],[-92.17705437727614,14.626225632254489],[-92.17305647737646,14.629821663850862],[-92.17109416665409,14.633515605470166],[-92.16952863827055,14.639149602071484],[-92.16757673703836,14.641064497626473],[-92.16399979969674,14.641645647774396],[-92.16032251076604,14.641039167354904],[-92.15886903357102,14.642221306987153],[-92.16052337434053,14.648343046553975],[-92.16043803228382,14.650717221850527],[-92.15837309329169,14.652231117710357],[-92.1520910867298,14.654620525150449],[-92.15013369604549,14.655908181203358],[-92.14675885559024,14.660830615840155],[-92.1458842153188,14.665103228701696],[-92.14718739752868,14.668363601448618],[-92.14740749552237,14.673950325811177],[-92.14662786869121,14.682312527447039],[-92.14342996477194,14.688904534738356],[-92.14313448267359,14.692356512366928],[-92.14571163054808,14.694446493739406],[-92.14741615771516,14.69775859498725],[-92.14753836896352,14.70065288686277],[-92.14896779168026,14.705772106491395],[-92.14762241689118,14.712550907092407],[-92.14784909316165,14.720183034328556],[-92.14978837067952,14.722434659525106],[-92.15392614421239,14.725319169147554],[-92.15495912282887,14.727246230976732],[-92.15576961607064,14.732917846116436],[-92.15783724366031,14.736367063496573],[-92.16162710208795,14.73840534727782],[-92.1647378477823,14.741200317186497],[-92.16993059300324,14.743749660790229],[-92.16897706888881,14.748250800571668],[-92.17180670429127,14.752745166495743],[-92.17176090582046,14.75674613590877],[-92.17050745871302,14.758006970159613],[-92.16431137952509,14.759249970428925],[-92.16185542167233,14.76202478972715],[-92.16072584561334,14.773496531229114],[-92.16466549609066,14.777357404505153],[-92.1645430445555,14.782165182921972],[-92.16557693923045,14.783940375145391],[-92.17050204985804,14.788715748252457],[-92.17143234153065,14.792297945511677],[-92.17696979601334,14.800365238569782],[-92.17871201659909,14.807558491486304],[-92.17874860998643,14.811658269347845],[-92.17718392191978,14.814369092172171],[-92.17738330053595,14.816697998170355],[-92.18002693475319,14.819491137025182],[-92.18188658548144,14.82319249114505],[-92.18370220910418,14.82476793835599],[-92.18483409108404,14.828264245056687],[-92.18264053329494,14.834219146059354],[-92.18149674360791,14.840792314305872],[-92.182791266391,14.842568367741421],[-92.18141917280434,14.847574156232326],[-92.17609734711698,14.850946192516119],[-92.17473176314229,14.85418050739338],[-92.17196229923184,14.85700485558317],[-92.1721608639167,14.859536202793265],[-92.17038589068636,14.860896335687016],[-92.16588141085776,14.86025295573205],[-92.15634945856982,14.865461449849477],[-92.14974948512554,14.867767453878628],[-92.14656279035762,14.870205409173138],[-92.14505193517641,14.873476841841011],[-92.14421139154865,14.877697468830092],[-92.14179558566468,14.882494785265521],[-92.141711458607,14.884824813783041],[-92.13901266003921,14.885397286981686],[-92.13735582122655,14.887648579512359],[-92.13621022164176,14.89317882682775],[-92.13896291611388,14.897922688655399],[-92.14126078439745,14.904048462168873],[-92.14156111572976,14.90636058229643],[-92.14439819840396,14.908774364729197],[-92.14476441084668,14.910887603499646],[-92.14166994079346,14.916701874942987],[-92.14218538880647,14.918961322948746],[-92.14149295164003,14.92354658273058],[-92.14350270615728,14.926831153332046],[-92.1435537205366,14.93303870376343],[-92.14303452006004,14.938709716215385],[-92.14360652640755,14.940602838962832],[-92.14669719954009,14.944114733815809],[-92.14833660254953,14.948456879154548],[-92.14847758424094,14.954693631828718],[-92.14601723099713,14.959230844048136],[-92.14687670688022,14.961728544249809],[-92.1465602180765,14.967537084415653],[-92.14710634535493,14.969533155453917],[-92.1447740398392,14.974947090471517],[-92.14557581064207,14.977844271574725],[-92.14913295975629,14.982631587400249],[-92.15078058562278,14.983631271751392],[-92.15076762811731,14.986917562539873],[-92.14744965044974,14.990650067437741],[-92.13943825157054,14.99456951711187],[-92.13931083558862,14.998238905023811],[-92.13789483248866,14.99993155021349],[-92.13923737339866,15.002511017191125],[-92.13635924713424,15.003321730005496],[-92.13437925431856,15.00506698615294],[-92.13419779938499,15.008133646997464],[-92.1314460998932,15.012843629637132],[-92.12840224038285,15.012777222968168],[-92.12698292788804,15.015236607850909],[-92.12286975950502,15.014727823298813],[-92.12175126188976,15.012532552573987],[-92.11955680792374,15.011538144446945],[-92.11835772612261,15.01525812518264],[-92.1152092247105,15.013219272211245],[-92.11131798644914,15.01358751867923],[-92.10974978123988,15.0111165726899],[-92.1051563851799,15.010782792370776],[-92.09935522886212,15.009554887468596],[-92.09788338179692,15.011027952525524],[-92.09775616336651,15.014478180539754],[-92.09470470356052,15.016218816837238],[-92.09096884901396,15.019818973729855],[-92.08566580861566,15.020728862886415],[-92.08446890143279,15.02379135892221],[-92.0802539099256,15.028473023537629],[-92.0786589485229,15.032300691699618],[-92.07966291792695,15.034824329017965],[-92.07824125774573,15.03766678260456],[-92.07816982767292,15.041171976326723],[-92.07697998102606,15.042536475740576],[-92.07809720516434,15.044951035811039],[-92.07651244498709,15.046368695143542],[-92.07234910879743,15.044325121253166],[-92.07019600844592,15.046781110835013],[-92.0708545111849,15.050930775075528],[-92.06853432335095,15.052893102886514],[-92.06835446972474,15.055357146863912],[-92.07232409570076,15.057724509448462],[-92.07295588418629,15.061707006055428],[-92.06999044692884,15.062679995325595],[-92.06774381136364,15.066256633142928],[-92.06305736294706,15.070136134054394],[-92.0609048712065,15.068863427176552],[-92.05932437413037,15.071113971018178],[-92.06192512070811,15.073951634584319],[-92.07301339616424,15.088168079754041],[-92.08870277408647,15.107927946661903],[-92.09198477293262,15.111746325392062],[-92.10417843022998,15.127611562402251],[-92.11111677571154,15.135892265868279],[-92.1177091079378,15.14447151975287],[-92.13122035967513,15.161212561350453],[-92.14908421396319,15.183914413033278],[-92.15743708288204,15.194133131096976],[-92.16139175146924,15.199402503639192],[-92.17016987845255,15.210171944838294],[-92.18254886186361,15.225849041808033],[-92.19727439760686,15.24405006968027],[-92.21007594089895,15.261215391640746],[-92.15795188334323,15.350105727415837],[-92.08509407530812,15.474199228743146],[-92.00006504529074,15.618791924363052],[-91.93865322236633,15.723066999877062],[-91.89767914552647,15.792566018013076],[-91.81023176470944,15.940693436809568],[-91.73138414682711,16.07402036316165],[-91.55499039285604,16.07425442476108],[-91.43777332579873,16.074334004092975],[-91.33338212743217,16.07436343040075],[-91.23134652191806,16.07433706704927],[-91.10783237374017,16.074244184921156],[-90.95357772910916,16.07403615040886],[-90.81365216610658,16.074183588312337],[-90.70673806224954,16.074242371563855],[-90.55196796311014,16.074247507767836],[-90.53662673011496,16.074042712768062],[-90.5238355622285,16.074238553135103],[-90.44084088732569,16.07419489554752],[-90.44223351983146,16.07708349391811],[-90.44518593497475,16.080508682794687],[-90.44515380211027,16.083022150915042],[-90.43956652843946,16.087742060669655],[-90.43796287945116,16.08981770954449],[-90.43668171959251,16.09441104668889],[-90.4333823856847,16.096504379168493],[-90.42684057454551,16.095385528596125],[-90.4241059238069,16.099542262975604],[-90.4258914392554,16.10478186441901],[-90.42863629190794,16.10595758514154],[-90.43377253311087,16.10514335357584],[-90.44286032908286,16.09890980655541],[-90.44420464393414,16.09553601202026],[-90.448665076657,16.092047076284757],[-90.45366957271335,16.09225913160776],[-90.455639584854,16.093440669474944],[-90.45400252412486,16.09814418827233],[-90.4566805423508,16.104575029834848],[-90.45709926489758,16.108845974417022],[-90.45661156594656,16.1121487153996],[-90.4540480878726,16.121449907763974],[-90.45144591433746,16.124504020415657],[-90.4487726707568,16.123862642705603],[-90.44472060834329,16.120043368951485],[-90.44070893231884,16.119233510874153],[-90.43596340338183,16.117234022710136],[-90.43269552322204,16.116851934449016],[-90.42976579753156,16.11776886866113],[-90.42862063110613,16.120954475062035],[-90.4298139893113,16.126263111269623],[-90.42981097576302,16.13120291509125],[-90.42809501017268,16.13582896995615],[-90.42806303801387,16.13830430989111],[-90.42946134741743,16.13995896884444],[-90.43469125740813,16.141126552296953],[-90.4382751289155,16.142722675396385],[-90.44537261665465,16.142807891942766],[-90.44851486221245,16.14379775742441],[-90.45042737216045,16.148429377328398],[-90.44988156744125,16.151012868526436],[-90.44731782419558,16.154105413173113],[-90.4428009369625,16.155727106901566],[-90.43795018734357,16.1557068797037],[-90.4351771184185,16.15666378660586],[-90.43121758871484,16.159532940340682],[-90.42455578342776,16.162309037629655],[-90.42615036515343,16.167089322840525],[-90.42570470830947,16.171045079269618],[-90.4266283145148,16.173247639809404],[-90.4314622584036,16.177648107154425],[-90.43718322249549,16.1805737471405],[-90.44085674725977,16.181821620838775],[-90.44747650898938,16.182358260671776],[-90.45197821886183,16.18504037134221],[-90.45328885325927,16.187417571806066],[-90.45325253961374,16.193320863736744],[-90.45566174475988,16.20225671928131],[-90.45667330713769,16.20950567337269],[-90.45539855377143,16.21675669825703],[-90.45331582931487,16.222254543622512],[-90.4511908431212,16.224895214832202],[-90.44115488560675,16.230728733320007],[-90.43814402930121,16.23168266702021],[-90.42877225948524,16.2302742361976],[-90.42808467478386,16.234607909352178],[-90.43151744880072,16.23740305846377],[-90.4380891725375,16.240085533878187],[-90.43903990386349,16.245886407815306],[-90.4413842868334,16.24766678716253],[-90.44525240997001,16.24451406134881],[-90.44655171467315,16.24167310694463],[-90.44936791542398,16.240526284732482],[-90.45353002352954,16.242099872766232],[-90.4549954455129,16.245375652942812],[-90.45390203104114,16.250618717468285],[-90.44970955270713,16.257500350051146],[-90.4454747873454,16.26152473447064],[-90.44185465964921,16.261789782590824],[-90.43878958663532,16.260800517530356],[-90.43297382121449,16.255892913887408],[-90.43015551659249,16.25414477689401],[-90.42648546900239,16.254176384013988],[-90.42353076150238,16.256844675968466],[-90.42231817566761,16.26169133657055],[-90.42350645735053,16.264371935796532],[-90.42722657003145,16.269597118306706],[-90.43136084856991,16.274082684947814],[-90.43877955526438,16.277143499685508],[-90.4408233582817,16.280824690816587],[-90.44043975087612,16.28643438169928],[-90.43764545746285,16.28887624258556],[-90.43304883080532,16.290305893685797],[-90.4318598734447,16.293063237275874],[-90.43289950023262,16.295056433834986],[-90.43885989870546,16.298023447040975],[-90.43921739544857,16.300884372142036],[-90.43764766715651,16.303226784799506],[-90.43272854186853,16.305147606858952],[-90.42945862209382,16.304688863987508],[-90.42323264449271,16.305359402577665],[-90.41818947362248,16.304688407303956],[-90.41561795052155,16.305152085902023],[-90.41060719046868,16.308023417356424],[-90.40865585937962,16.312341404722986],[-90.40868414999659,16.316188549603737],[-90.41212280276443,16.32467649596566],[-90.41001090900608,16.32918293999745],[-90.40322189493463,16.332146408400945],[-90.40153911646962,16.334030020218222],[-90.3997211372373,16.33848294358478],[-90.3975352588464,16.339598569204384],[-90.39331720205257,16.339165582390706],[-90.38919024579747,16.33484881144716],[-90.38596204676975,16.334199428366162],[-90.38417540060163,16.334977082202954],[-90.38131438996498,16.339359579553218],[-90.38173472183001,16.34336386345342],[-90.38332859272617,16.34521180755945],[-90.39693089974293,16.347955549659616],[-90.39924097238304,16.34939328663529],[-90.40085992089803,16.35234595225893],[-90.40070030140163,16.358437865235885],[-90.40193619461144,16.360509804240223],[-90.40552418280566,16.360858745087626],[-90.40752398942612,16.35890285890963],[-90.40795969636235,16.35281430996497],[-90.40621091386964,16.34772722082431],[-90.40698548173702,16.345870494227313],[-90.40931420653573,16.345899139493724],[-90.41168305782037,16.35186983499318],[-90.412010943577,16.35730344051052],[-90.41121626490286,16.36068341930246],[-90.40819402567439,16.365044101968977],[-90.40110465052419,16.371377720609928],[-90.39688291317628,16.374143943163517],[-90.39462725931048,16.374534973645666],[-90.38892618039955,16.37275040294361],[-90.38392644029273,16.36743042632935],[-90.38299293983863,16.363419761998216],[-90.37972198745359,16.360027484868397],[-90.3761387101647,16.359335392912215],[-90.37355878732791,16.360369637707834],[-90.37069812439097,16.364675730349177],[-90.37021372160393,16.36768946232587],[-90.37195243529374,16.3734621666527],[-90.37527921108477,16.375636515292683],[-90.38172641578353,16.375842951895436],[-90.38645206920495,16.377938705727047],[-90.39360221080466,16.383588058594512],[-90.39681656464438,16.385341774082235],[-90.4011260025245,16.391431894877257],[-90.40225884407079,16.39533074034665],[-90.40191066995715,16.397763983702248],[-90.39955402281748,16.3997915070737],[-90.3912981407189,16.40180665654833],[-90.38825746744556,16.404777693137362],[-90.38695370531684,16.410741020272724],[-90.3872922612228,16.412002081238427],[-90.39426893889214,16.415935517292667],[-90.39792329285842,16.416175970159486],[-90.40094529139998,16.4086722617223],[-90.40339212345464,16.405807944447247],[-90.40645443643206,16.404169966172446],[-90.40894178267854,16.404200665274175],[-90.41174215771662,16.40743449190785],[-90.41610763651624,16.421602347772534],[-90.41978005706505,16.4246183253739],[-90.42360319528501,16.425198527794237],[-90.43166299154484,16.423774833747473],[-90.43956128459888,16.423795189324267],[-90.4438598512665,16.42426656480103],[-90.45140726009942,16.42264421568484],[-90.45531744203527,16.42261549685395],[-90.45675383527453,16.42149027098418],[-90.46102186299032,16.421275335750806],[-90.47181559968578,16.425035527089562],[-90.47639816407798,16.424938342535995],[-90.48254677224816,16.422841155473918],[-90.48608745134618,16.423911998637777],[-90.48723536965838,16.426782405693643],[-90.48586167597318,16.432250717155227],[-90.48146527452434,16.436273446227403],[-90.47830490225817,16.441974361072823],[-90.47813132531962,16.44623817900498],[-90.47950681513441,16.44983504448402],[-90.47732999400154,16.456770202186533],[-90.47761294897612,16.459325531669492],[-90.48192887576681,16.46158660565743],[-90.48655069441804,16.46042413530938],[-90.49085168200673,16.45464813753597],[-90.49319751406608,16.453457382608235],[-90.49776566436395,16.45454039649178],[-90.49942634172879,16.457493074984995],[-90.49901561736044,16.4648774225559],[-90.50363282893369,16.468322449734615],[-90.51421576973348,16.469896344122787],[-90.52381018143626,16.467191446959305],[-90.52546488871485,16.464430473348102],[-90.52506391566959,16.45867421237574],[-90.52780171037011,16.45771621677767],[-90.53479566920578,16.462148731281218],[-90.54569194391337,16.46670784592061],[-90.54786984276183,16.469437765010525],[-90.54799621457539,16.47195319053435],[-90.54649636264497,16.474982816450904],[-90.54317029684205,16.478714696624138],[-90.54298586478433,16.480807479439477],[-90.54606483024821,16.482263801029546],[-90.55168317627982,16.481605925022336],[-90.55693515490321,16.47865819772028],[-90.5649691683571,16.477532965349383],[-90.56946798296633,16.47476657082524],[-90.57789934078033,16.472725577489655],[-90.58528612628567,16.469611294883634],[-90.58844568266255,16.46968581054307],[-90.59119140780803,16.471279162334724],[-90.59366960213936,16.475345332619668],[-90.59397054833488,16.479767366327394],[-90.59245581171626,16.48876310686387],[-90.59519664885812,16.49077538683406],[-90.59832176232277,16.490468488189094],[-90.60420787498316,16.487336341344644],[-90.61228995330043,16.48876198146877],[-90.61432614558373,16.48785051043683],[-90.61505324906693,16.483325901068554],[-90.61659774809755,16.479800980639254],[-90.61879510693166,16.477807140435914],[-90.62555986748953,16.477084087602634],[-90.62970111234154,16.47832722756965],[-90.63397181898159,16.481270564980775],[-90.63493259240659,16.483490770830656],[-90.63344191073952,16.489111535150244],[-90.62971632976422,16.49005972912886],[-90.62531446786744,16.48814328153378],[-90.6214471567418,16.48775650452086],[-90.61859161708759,16.488638205032203],[-90.60921868185346,16.4941937146819],[-90.60605661409261,16.500709245051837],[-90.60572614098703,16.505085967778655],[-90.60748096127611,16.5108802723322],[-90.61036957218573,16.516260122231074],[-90.61535402302849,16.521050620052108],[-90.61947655070043,16.521994536474097],[-90.62388339898138,16.519784592987037],[-90.62955158983647,16.515712503309146],[-90.63559482152664,16.51352084615951],[-90.64208621845182,16.51448978598387],[-90.64502437594501,16.517615646196873],[-90.64553244861162,16.519497756968292],[-90.64277665895213,16.531492533068445],[-90.64260925321679,16.53434784859718],[-90.64455778432847,16.53934167822416],[-90.64826384256884,16.54386123144684],[-90.64817720262118,16.547357146088018],[-90.64648770886146,16.550788083100542],[-90.64754070651355,16.5588172246417],[-90.64635101151964,16.562044800961473],[-90.641420284106,16.56723433397815],[-90.63688121356842,16.570796374105555],[-90.62776274579141,16.574615957484355],[-90.62557531072508,16.57616885490586],[-90.62655429666432,16.579335703623144],[-90.62878324149739,16.58162126531829],[-90.63517977750138,16.59234233612966],[-90.6383345999302,16.594936865317436],[-90.64186329010641,16.59591509727045],[-90.64245624513399,16.594471901548957],[-90.64090367238583,16.591103400651207],[-90.64034086502858,16.586448746038855],[-90.64144652642472,16.582879130033746],[-90.64463491400323,16.57907722004302],[-90.64867652637872,16.577886220847063],[-90.6575595264261,16.57718178031979],[-90.66135560055056,16.577992086681206],[-90.66684143200843,16.581806453408717],[-90.66765188167813,16.58799911688925],[-90.66639176484335,16.589733442038323],[-90.65888954475025,16.59089791084773],[-90.65417512151362,16.59280645893864],[-90.65335789269483,16.594503038670837],[-90.65624251131169,16.604372070324928],[-90.65517135920271,16.60875242142049],[-90.65609944253691,16.612515650801015],[-90.66018371522944,16.619501866424457],[-90.66206167956369,16.62890493890103],[-90.66127913375658,16.6313966564162],[-90.65794896438541,16.635879465177027],[-90.65721591188537,16.637918146405298],[-90.6589830221082,16.64186143117263],[-90.6675921570814,16.651880715059292],[-90.67390318222806,16.657596013439047],[-90.67594822829687,16.660561485584594],[-90.6756476123445,16.66345799574077],[-90.67937894077721,16.67351083056741],[-90.67981345971663,16.6778655297324],[-90.67923279627092,16.681952971511237],[-90.68063258587551,16.687043461038],[-90.68318359570094,16.689695830667347],[-90.6894490934535,16.6915570141652],[-90.69223461099921,16.694868723819752],[-90.69526580479771,16.69660643543739],[-90.69867877252227,16.699711487146658],[-90.70617782871392,16.702460085200528],[-90.70951228709436,16.704754751139035],[-90.70989919342861,16.709402231112506],[-90.70744700170144,16.715152480145548],[-90.7077657451423,16.718095278641783],[-90.70944502867633,16.721947730758757],[-90.71525803389488,16.72789066574859],[-90.72119514455943,16.729128746591755],[-90.72422817020419,16.73078094036339],[-90.73146507687761,16.73610021349168],[-90.73917353638393,16.740499565895846],[-90.74397246107458,16.7425116392688],[-90.74708538092727,16.744931192218473],[-90.75684511575935,16.751060939562137],[-90.75807067698798,16.753136408692],[-90.75856048305047,16.75941558684383],[-90.75987955139061,16.76117787947993],[-90.76602052383726,16.764198578857133],[-90.78244856437442,16.768189260369127],[-90.78871155853034,16.771563518208893],[-90.7911255505798,16.771480100294866],[-90.79645529227167,16.774570827506977],[-90.80094502429466,16.77542202081787],[-90.8032017372953,16.776675997049324],[-90.80489951999436,16.782091469627403],[-90.80420007287609,16.786128950670104],[-90.802097565932,16.79118997878595],[-90.80174883765562,16.795083127801377],[-90.80287965750767,16.79796491598637],[-90.80530948476758,16.79900208884044],[-90.81027544083582,16.799246351732677],[-90.81604477084227,16.79876108642759],[-90.82451522743878,16.798684919793857],[-90.8272859048156,16.79727289476682],[-90.8349627869369,16.79607040132089],[-90.84209354978617,16.795818972953498],[-90.84878447207643,16.796534869999334],[-90.85394537640121,16.797773544254937],[-90.8565699813567,16.79967719506243],[-90.86028612069299,16.810303826876577],[-90.86252733980257,16.813017112424973],[-90.87208475032884,16.820796508608908],[-90.87771254020305,16.8237862203365],[-90.88503699426781,16.825217096509107],[-90.89590872583756,16.82483573028054],[-90.90272343540374,16.822194695723283],[-90.90873745446817,16.82250242379581],[-90.91621109510129,16.82048240645878],[-90.92014859401291,16.82089979320864],[-90.92285177604936,16.823003365118893],[-90.92413771021381,16.82558333950982],[-90.92520971859824,16.831304179606605],[-90.92677403105705,16.834093553196794],[-90.93190375176846,16.839192052815918],[-90.933888751388,16.84232109109206],[-90.934218438588,16.847598118290023],[-90.93249459281913,16.852932271585644],[-90.9323641839785,16.85717974926456],[-90.93451292700684,16.860015804422574],[-90.93695099884599,16.861304963108864],[-90.94926391876112,16.865244908110185],[-90.95553891585558,16.865477458437624],[-90.9592193118512,16.86436274716874],[-90.96704472591347,16.86052871580665],[-90.97022171546905,16.860616813793513],[-90.974054788599,16.86362645939238],[-90.97467453569362,16.866218492777477],[-90.97213076584598,16.870959097910486],[-90.97003575550332,16.87241062308948],[-90.96322401555062,16.875450073984894],[-90.95769677009935,16.87862269574805],[-90.95450920822293,16.884474176637923],[-90.95432033767378,16.887435668737282],[-90.9574383997105,16.896769899314904],[-90.96637116061862,16.902142183612682],[-90.97232668611184,16.903012920051367],[-90.97904532098818,16.9022488806184],[-90.98307692914966,16.900218421106786],[-90.9850630947235,16.897954075400435],[-90.98647287594389,16.89453264126479],[-90.9863446202034,16.891720940747405],[-90.9843748811611,16.885057447719305],[-90.98061031086951,16.877112765523805],[-90.98086701171786,16.86979612453098],[-90.9817313100803,16.866705684669455],[-90.98545564547533,16.863288126639816],[-90.9878314918173,16.863084952537747],[-90.98995598846142,16.864389316814083],[-90.9923006758844,16.874822710846388],[-90.99721335646967,16.880356012685468],[-91.00560960774641,16.885413852059628],[-91.00906751131157,16.886825411710504],[-91.01849560719342,16.8886593816585],[-91.0225747925657,16.890718513878085],[-91.02804848759979,16.891852599162064],[-91.03170231754854,16.893322317195725],[-91.03654583067714,16.894240933056267],[-91.04516225982076,16.89670675650217],[-91.04853193112524,16.898459569314582],[-91.05997750020265,16.89977644809693],[-91.06562732004215,16.902858250384952],[-91.07125508539838,16.908116427752077],[-91.07386632020888,16.911840751890793],[-91.07251943991582,16.916630265005438],[-91.06772370390581,16.91871091393375],[-91.06460815849414,16.922098004670886],[-91.06448006537391,16.92512975750401],[-91.07173030598011,16.93197480102873],[-91.0735607715356,16.936101019835007],[-91.07847121390591,16.942129346727256],[-91.08230905521305,16.9454564635962],[-91.09228318882526,16.951048811795147],[-91.09538506652564,16.954578826524028],[-91.09705984509122,16.958192763561442],[-91.09876507346354,16.964450256926],[-91.1054143773145,16.970948754544963],[-91.11249727370546,16.974449673862807],[-91.1162511486674,16.97442823452218],[-91.12004969190491,16.977528341125435],[-91.12201752983117,16.98091910897449],[-91.12150127198146,16.988451830681527],[-91.12011726255741,16.992727289840843],[-91.11995867338533,16.997581693916914],[-91.12160596384831,17.00218270434908],[-91.1270173436638,17.005971487994827],[-91.13671703827328,17.00690095468798],[-91.14288688333613,17.005979293658868],[-91.14904497041977,17.004237724593565],[-91.15440300634219,17.004870052267847],[-91.1757350648802,17.016081810527112],[-91.18078931383599,17.023084205186024],[-91.18475931393357,17.027617846090322],[-91.18984930154033,17.034845154582115],[-91.19328719590533,17.038354298731576],[-91.19993726467004,17.042326896438567],[-91.20335966155392,17.044948595895903],[-91.20929227811376,17.05167803558902],[-91.21155456696772,17.05719804630229],[-91.21381293661705,17.059715996964485],[-91.21458404574986,17.06324187051723],[-91.21723253699474,17.06559979547029],[-91.21646943645067,17.069551421744166],[-91.21708830236526,17.07597709069131],[-91.22253869340369,17.08858143933537],[-91.2249149164075,17.09282316603418],[-91.2327165228375,17.099895255182446],[-91.23445855470277,17.100587484835387],[-91.24055076739796,17.099985505036216],[-91.25629637372128,17.101039513111346],[-91.26494638808492,17.105829807070563],[-91.26845930773322,17.110200127421308],[-91.27021592396392,17.11460429814099],[-91.2718383384132,17.123023018761558],[-91.27220938220927,17.133295920786907],[-91.27306780990767,17.13773447839816],[-91.27238897273037,17.14284163476782],[-91.27092627625552,17.146027608697466],[-91.26737974488361,17.15033682955385],[-91.26377227638903,17.156866285409706],[-91.26296434327628,17.16259409910822],[-91.26399152786576,17.167085519063107],[-91.2672683149396,17.17065370127841],[-91.27053530670054,17.17203581317125],[-91.27322619609203,17.175304091671535],[-91.27785058344233,17.179178399416173],[-91.27966857945268,17.179637501135858],[-91.28415324348953,17.178111462399613],[-91.30369941748825,17.180639583219147],[-91.30803491529349,17.179461934163157],[-91.31179639653328,17.179960423467776],[-91.31949082022794,17.18305623996889],[-91.32535150960007,17.18249794976049],[-91.3312381521315,17.176792661021466],[-91.33467419282118,17.166115871349177],[-91.3353240962798,17.161554417372656],[-91.33971121578338,17.15854214786043],[-91.34429976585216,17.158657890767074],[-91.34916163979892,17.16002480116458],[-91.35030699350267,17.16370320404161],[-91.34860639720938,17.170940105447755],[-91.34704624476439,17.17444022498381],[-91.34773093214352,17.17885826791411],[-91.35009052277803,17.182081301608093],[-91.35286725834584,17.188090916198746],[-91.35474765727474,17.190771140189383],[-91.35910831509165,17.193415197801528],[-91.36563757135076,17.196326377986793],[-91.37206337435964,17.202706829440217],[-91.37640321605517,17.204857641273918],[-91.39026699609053,17.20633494788467],[-91.39404402522445,17.205113807527084],[-91.40211748607851,17.204564798732974],[-91.41269260666974,17.20662441435286],[-91.41843432606231,17.209050921846654],[-91.42345241547554,17.212847025819656],[-91.42877137246097,17.218548624468895],[-91.43063453803711,17.22406578669444],[-91.430664479386,17.226468045072977],[-91.43219669413429,17.230304173539935],[-91.434488179026,17.232735494313317],[-91.43520194585324,17.23749370431068],[-91.43801793186083,17.245307207347253],[-91.43940909021592,17.247863292792943],[-91.43950387947467,17.25260694376368],[-91.43746705955687,17.257006568735562],[-91.43520456904503,17.25979558129353],[-91.43122287182945,17.26649446465285],[-91.43099581956216,17.268762796928456],[-91.42716249481242,17.27920037132361],[-91.42749802704628,17.285982839057567],[-91.4268164019548,17.288707582279017],[-91.42647661828522,17.29706302217454],[-91.42518087167991,17.302305303527532],[-91.41868175930563,17.30347550835785],[-91.41762609007196,17.304308204078723],[-91.41642145784965,17.3058904929062],[-91.41259251040992,17.307548998209768],[-91.40965500587953,17.307114380909184],[-91.40797551266678,17.306510911009013],[-91.40400056310295,17.30406693676116],[-91.39843647260813,17.3016975418347],[-91.39253083216835,17.299540368955945],[-91.38831996058536,17.300591248192006],[-91.3880615771181,17.304320265637102],[-91.38389958104108,17.310100385135684],[-91.38353975171015,17.315086750287037],[-91.38504460950719,17.320252225636352],[-91.38836005536683,17.32348943842129],[-91.39699740796897,17.337945061336313],[-91.40017217475975,17.340275926622212],[-91.40510406582808,17.342696329606554],[-91.41360178083698,17.343872704826367],[-91.41677534696623,17.345627119173855],[-91.41749542340659,17.347196443459495],[-91.41677087564,17.35205521910848],[-91.41491399344534,17.355888462703376],[-91.41437588731651,17.359185511292367],[-91.41681350734785,17.363624860083178],[-91.41729927407755,17.369691838057406],[-91.41983261973496,17.374070669560467],[-91.42207864414382,17.37534580389479],[-91.43032070315911,17.37771296080865],[-91.43484386519708,17.38213351249209],[-91.439298468034,17.38428736898777],[-91.44449963121139,17.3840050481636],[-91.44717644935446,17.382899364715513],[-91.45271589703037,17.375823173435492],[-91.45649563728779,17.37572154185534],[-91.46785264217817,17.380341185213524],[-91.47255579312235,17.382613091429732],[-91.47617187568756,17.385522287107506],[-91.48427306979067,17.388061599192383],[-91.49873933059655,17.395767659486467],[-91.50050033478249,17.39833007401711],[-91.50500476419887,17.399482443313275],[-91.50993554356751,17.392202710650054],[-91.51446871301681,17.394690860543108],[-91.5150845903022,17.39482341910474],[-91.51724425030716,17.398232721360557],[-91.52727501871192,17.402356748035345],[-91.53032305330731,17.405499735909245],[-91.53684713287231,17.407362680699862],[-91.53707888660313,17.414217809630657],[-91.5372442106081,17.419736166348173],[-91.55209323646721,17.42256694220083],[-91.5524333297891,17.421506278406184],[-91.55785669238509,17.422244159275294],[-91.55813964269902,17.41089289692036],[-91.55879353801316,17.40052958401367],[-91.57433693023825,17.40601761270989],[-91.57549414852286,17.40630441144026],[-91.57968832948188,17.407343811452165],[-91.60689818834447,17.41689138327115],[-91.60894816615075,17.42549982509297],[-91.61748594432822,17.426242489694744],[-91.61797199943709,17.42866529247823],[-91.62016710836542,17.431662296203797],[-91.62455207996555,17.43246411445415],[-91.6307409875543,17.43558754557074],[-91.63488734608035,17.43649492467256],[-91.63733735146269,17.429957187031164],[-91.64274192305749,17.43200861168424],[-91.64332643516894,17.430987991424843],[-91.64665612957447,17.433315545253777],[-91.65338302920111,17.43603620621292],[-91.65436584450117,17.436438703635474],[-91.6676764320419,17.441895140566942],[-91.67204314459366,17.444058815609083],[-91.66473792729391,17.460995314098056],[-91.67163124845314,17.46449375278172],[-91.67296054468403,17.461808796732385],[-91.67610139071525,17.462794029971747],[-91.68229522155451,17.46296567477947],[-91.69005905921449,17.465876066702094],[-91.69296951743655,17.465613579540673],[-91.69957352075932,17.466977702525753],[-91.6972589803741,17.46821699008649],[-91.69237372594876,17.466835979143184],[-91.69171170933373,17.473773842228297],[-91.68934127905055,17.474991942274528],[-91.68581999838199,17.47320673228421],[-91.6836191103173,17.470073439367695],[-91.68190565888574,17.469447976419815],[-91.67672211840159,17.474126587277624],[-91.67145965497468,17.473652187326877],[-91.67241593510158,17.475701842668116],[-91.67106100547016,17.478715467624454],[-91.66941620202516,17.47974322680443],[-91.6673907134936,17.478927580195887],[-91.66713458721131,17.481820500795664],[-91.66525765270217,17.47989703958865],[-91.66432507474434,17.48169239554909],[-91.66281677475632,17.479816735872078],[-91.66194338922321,17.482706393532965],[-91.66043543513172,17.486275615320096],[-91.65768802588133,17.48665506284891],[-91.6558484890233,17.4904279450721],[-91.65221749408897,17.492193514648875],[-91.6528827961792,17.49537176714523],[-91.65465291310193,17.49638810662185],[-91.65224242157421,17.497524594607853],[-91.65076960737764,17.495395711217782],[-91.65035186777573,17.498061638811976],[-91.65224915364882,17.500563665967434],[-91.65031360287662,17.5001504288752],[-91.65059911982843,17.50258875592675],[-91.6483267343408,17.503373497653513],[-91.64825519174752,17.50589374297755],[-91.64994570955685,17.50578504687178],[-91.64882578315729,17.508362909309426],[-91.64680227736432,17.509867099432824],[-91.64895960704001,17.510615465477997],[-91.64907716614425,17.51777274051625],[-91.64319897841563,17.517570942634734],[-91.64066711430212,17.520461367831558],[-91.64289360586372,17.524921275525514],[-91.64141760679053,17.527159385539107],[-91.64174062459631,17.5293210064587],[-91.63918919512247,17.529610871476734],[-91.64020949475469,17.532980682555262],[-91.63749299427184,17.532053211224593],[-91.6347151523861,17.53317453749912],[-91.63428773304963,17.534624260806538],[-91.6374997336855,17.54039615914911],[-91.63900548373431,17.541777579653],[-91.63711479748588,17.54294619520806],[-91.63497515312451,17.548222139242398],[-91.63576729988768,17.55192299892866],[-91.63965342080508,17.555304625649],[-91.64104313864169,17.558170047921976],[-91.64009187117352,17.56099176013504],[-91.64161302496098,17.566342429058977],[-91.64048655418725,17.569974236215103],[-91.63892970958568,17.57169144926121],[-91.64055654334993,17.572638033827843],[-91.64040057723219,17.57594379120411],[-91.63925461450572,17.577262157599193],[-91.63882739464657,17.581469428772266],[-91.64021635621054,17.581775355955585],[-91.64139974695291,17.585012424600677],[-91.64334400711931,17.584501703157628],[-91.6423455308261,17.586748911454038],[-91.64689727164239,17.59013815205617],[-91.64433336071755,17.59145330303039],[-91.6469297985281,17.59173865480483],[-91.64692924321423,17.593056873520652],[-91.64433653542483,17.593385020338474],[-91.64483709258587,17.595878732885183],[-91.64768852540817,17.594177278304016],[-91.64922593596134,17.59800325665259],[-91.65308489189874,17.59866527603515],[-91.65213285462926,17.600379007621314],[-91.65285296732094,17.60321301584321],[-91.65694731333684,17.60399480082981],[-91.65634955286765,17.605466229306103],[-91.66208974464655,17.60836381787965],[-91.66306644188563,17.612709176518763],[-91.65948196550909,17.613633764483552],[-91.65679621061196,17.61220397990195],[-91.65699560710459,17.615336657798593],[-91.65224251677483,17.615928757734423],[-91.65066024341195,17.617599654978676],[-91.65219367952164,17.619759171725946],[-91.64644384935394,17.618000728780714],[-91.64683550823668,17.621301475670748],[-91.64514562533401,17.622951236076744],[-91.64987787702097,17.623731367683718],[-91.65182014780527,17.625909205819482],[-91.65309739640236,17.624808004839508],[-91.65624193593152,17.626063289542344],[-91.65934152030707,17.63100584311053],[-91.65663630638227,17.6295816055366],[-91.65490495270922,17.63054819600933],[-91.65724152300311,17.63177283079972],[-91.65812393785654,17.63436050442499],[-91.65444957153176,17.6339619925256],[-91.65576264164224,17.636183785692822],[-91.65325211743362,17.63582933091135],[-91.65281125793877,17.638570744467586],[-91.65601467399745,17.63955403368493],[-91.65594969217943,17.641929187272524],[-91.65810948288618,17.639637316101812],[-91.65804375342634,17.642859849801596],[-91.65671628825629,17.642672539798923],[-91.6568174095724,17.645472557044513],[-91.65484974171886,17.643140672927984],[-91.65444041939793,17.646750152285335],[-91.65649508722805,17.649533225088476],[-91.659764492862,17.649194767086215],[-91.66064248790411,17.652936847187107],[-91.65878033444511,17.654186909296413],[-91.65865878996573,17.65645471337217],[-91.66315368551722,17.65845316030527],[-91.66115062424865,17.658870665277732],[-91.6606492827836,17.66073334799779],[-91.66252485860144,17.664141103005363],[-91.66047107772943,17.66377048861267],[-91.66039150394778,17.665524406536463],[-91.66419663429417,17.666236346611356],[-91.6614163491397,17.666836973376064],[-91.65900758284732,17.665935230229593],[-91.6582964617383,17.667518001456756],[-91.659307563673,17.670301984351454],[-91.6547435061238,17.676157122356642],[-91.65854412499766,17.674809626155593],[-91.66099993637374,17.678765892792228],[-91.66573244656718,17.67999784571697],[-91.66451431717798,17.682053255447556],[-91.66616844352109,17.683648148927603],[-91.67299249574262,17.683472433977272],[-91.67688501791895,17.675294555259086],[-91.67922928619959,17.674464075808544],[-91.67843000239918,17.67125563256195],[-91.68137726643289,17.67013371746941],[-91.68321709471633,17.672665601403025],[-91.68302111481557,17.675574248607177],[-91.68519278105964,17.678144621800243],[-91.68744259525124,17.679107240465896],[-91.69049254375619,17.68330963999881],[-91.69371123663007,17.68500119529176],[-91.69655782009102,17.68539150473009],[-91.69694866929336,17.683181131099445],[-91.699141887456,17.6827603365154],[-91.69669878870207,17.67960667885984],[-91.70036993315404,17.678808158735137],[-91.70007818640113,17.681011502635556],[-91.70161994256483,17.681699890094592],[-91.70185958377067,17.68717896947004],[-91.70103767594662,17.689679640689462],[-91.704035763263,17.692225088720818],[-91.70452455537185,17.689859906948982],[-91.70823176033758,17.688130066691258],[-91.71272436897391,17.6893364792316],[-91.71707749701943,17.687746514075457],[-91.71765165315122,17.689615525679073],[-91.71685460460759,17.693471713108522],[-91.71464083885883,17.695014050843042],[-91.71762736175634,17.69447908548659],[-91.71857322794875,17.695506529387558],[-91.71754541187931,17.698409234177518],[-91.71985741211779,17.697509234227027],[-91.71921292721527,17.69327067752107],[-91.72476354263779,17.692063898845504],[-91.72773714366036,17.694249500448848],[-91.73329400013904,17.696580331314067],[-91.73403342688687,17.700193738754876],[-91.73683524716068,17.7007932289647],[-91.73824761390568,17.702846946566183],[-91.73809044448143,17.70547340980761],[-91.73968552625672,17.704708998261594],[-91.7409868964184,17.706284145373047],[-91.73855213076143,17.706884971454713],[-91.73915341404296,17.71091424273527],[-91.74437534784863,17.70672437245588],[-91.74905278508373,17.700286306692362],[-91.75207647807548,17.702674739356837],[-91.75391477826577,17.705347317881888],[-91.76785261696665,17.703115445060916],[-91.77149259725752,17.709986594967063],[-91.77660258754975,17.715431683686177],[-91.77563467387216,17.71227239884405],[-91.77595616869166,17.70915832562258],[-91.77862432812941,17.707336654735172],[-91.78226751452598,17.709500515751245],[-91.78401454609775,17.71674120666046],[-91.78651588437708,17.719025683958137],[-91.79542961471873,17.72274284782037],[-91.80403797038792,17.72455371563194],[-91.8082108751563,17.72484226810724],[-91.81280495673155,17.726198514400437],[-91.81557610060719,17.727756884842222],[-91.81843394718987,17.72743223238814],[-91.82131813644173,17.73196079168474],[-91.82531486852588,17.734592593376362],[-91.82526782079674,17.734863144067504],[-91.82623272889276,17.735382628286004],[-91.8291674522689,17.736743289901028],[-91.83066169129211,17.737677237451976],[-91.8284720041541,17.739235612405878],[-91.82694181292345,17.74056716969858],[-91.82553387559062,17.7413204266677],[-91.8224110764649,17.74315650765311],[-91.81982952131148,17.745191254606084],[-91.81677386582584,17.747056536416324],[-91.81284593974891,17.750317807487477],[-91.81113317017304,17.750868333640483],[-91.80694071191328,17.74887639214893],[-91.80406069316848,17.746544888211815],[-91.79836865564891,17.74418347932027],[-91.79338927873198,17.74448381915454],[-91.7901617397361,17.74601810741325],[-91.79190038377152,17.750793889263093],[-91.79115869351796,17.7565405291586],[-91.78859435845999,17.756515470232614],[-91.78859478353024,17.759637061376225],[-91.7852934068066,17.76859929886382],[-91.78296586789384,17.777605940126705],[-91.78203005800333,17.78673028571211],[-91.78222099537874,17.791952254932312],[-91.78361302592987,17.797217104570507],[-91.78853277791433,17.808190193233997],[-91.79174067238091,17.817572116333963],[-91.79237157882648,17.824516940116098],[-91.79181219611064,17.830620523999073],[-91.7903869938146,17.835416725667073],[-91.78609757076975,17.84170790179752],[-91.78068342410722,17.847130164075452],[-91.77969045797505,17.851298584461915],[-91.78187294027117,17.854288222186824],[-91.78816665042893,17.857737427240295],[-91.7979668057705,17.86213105141553],[-91.80057712293848,17.864193133585275],[-91.80436873825738,17.868866447913888],[-91.80780532139215,17.878574620961558],[-91.80914366038706,17.886874893576362],[-91.80886855518543,17.89418068122893],[-91.80927197810234,17.896849161449722],[-91.81252126703896,17.900372025622517],[-91.8161843874397,17.90014633191811],[-91.8207278022179,17.897652352908267],[-91.82583941737624,17.89396320562588],[-91.83163995684419,17.888945034463347],[-91.83540557351688,17.886592818898293],[-91.8412525113539,17.884333647736298],[-91.84968628734293,17.88286460014058],[-91.85438128449749,17.88335727551589],[-91.8579371491092,17.884649172304535],[-91.86512868693262,17.88879535276061],[-91.87068931439882,17.89078072040047],[-91.87847053636523,17.890050658044288],[-91.89115088486852,17.887049131690276],[-91.89583886310243,17.888718813728588],[-91.89883704650242,17.89312782519528],[-91.90296680913917,17.896034226091956],[-91.90739307431909,17.898167179731615],[-91.91247056378751,17.89980765608118],[-91.91583902577088,17.900074453551554],[-91.92085765052099,17.89820176191779],[-91.92343341786557,17.895580923066063],[-91.92549682781174,17.89193417466396],[-91.92390557038044,17.88238520287325],[-91.9244124902466,17.87891586507436],[-91.92806133182944,17.870822505543174],[-91.93398668883094,17.866018793333126],[-91.94141117624702,17.863301489633216],[-91.9484091650587,17.863308347430745],[-91.95260865116052,17.865408043890966],[-91.95611902041941,17.86902303869033],[-91.95746257861708,17.871975370502923],[-91.9568327722169,17.879929915028754],[-91.95542560927822,17.882309488169597],[-91.95010233140601,17.88803613971794],[-91.94689916758585,17.892731056640912],[-91.9394341859819,17.901114958621747],[-91.93959784122433,17.90629306527717],[-91.94152760905854,17.908752666503517],[-91.94498618365526,17.910259508403158],[-91.95820162523086,17.910053798229455],[-91.96993096319886,17.910395254828416],[-91.97363681088723,17.911431189479913],[-91.9813902436378,17.91568814244249],[-91.98399915467269,17.91852293295966],[-91.98659845340433,17.923062730280662],[-91.9888216350464,17.93202638824289],[-91.9904898160886,17.93602179090385],[-91.99567109078532,17.942589969753726],[-91.9998878989208,17.943344645596085],[-91.99545161612247,17.92900277255262],[-91.99128973588682,17.919612303081237],[-91.9935126228462,17.911079709845524],[-91.99840254717776,17.89896578895781],[-92.00050160977662,17.898736933474822],[-92.00335506037226,17.890518189446368],[-92.01554662315084,17.897501116592537],[-92.01924965472182,17.89547207238809],[-92.02060819846122,17.89180400310721],[-92.01970790186289,17.887823926005353],[-92.02969894065399,17.889143931288572],[-92.0597074150624,17.87881752527244],[-92.06707323627137,17.876405769464952],[-92.07054671982229,17.87772851298871],[-92.07234121341361,17.877054139949905],[-92.07206829530372,17.874518227072315],[-92.06664872176657,17.87018503533625],[-92.06332059677266,17.871899127460267],[-92.05908277640731,17.871327461818908],[-92.05416678628973,17.86861254121999],[-92.05164678474006,17.86609123775014],[-92.05031469895653,17.86131510347684],[-92.0484493906772,17.858038060292813],[-92.04940707017727,17.854772035946212],[-92.05358697495609,17.85225231092346],[-92.05342868724341,17.84849393509188],[-92.05806498321164,17.846689979578912],[-92.06233027227393,17.848661400177093],[-92.06829520716809,17.848689843275793],[-92.07247342782983,17.85055452062221],[-92.08488781244995,17.855195266521605],[-92.09046881353976,17.856599488000597],[-92.0904976268476,17.85072778189152],[-92.10203335872984,17.850880172219263],[-92.10646288907645,17.83812704996518],[-92.09939825491858,17.834633563098464],[-92.10460131318018,17.82762600964486],[-92.10380929992397,17.827669949227015],[-92.10553518203568,17.81293872224245],[-92.11167629047344,17.806256486367545],[-92.12048163632517,17.795972696168405],[-92.12101865061715,17.796841650996157],[-92.13951778982056,17.80952771261036],[-92.14658277036142,17.814676002006195],[-92.14662262727927,17.812419562664502],[-92.12713808166677,17.785898377955732],[-92.13597188916975,17.779012304658522],[-92.13255446953531,17.775063936888216],[-92.13204722067508,17.770278157812925],[-92.12991342314643,17.766974407941916],[-92.13082541615819,17.766080360860258],[-92.15170817174322,17.76456887524961],[-92.15245401494724,17.779065571109186],[-92.16097368786967,17.782238761757696],[-92.17195018861452,17.78656785184893],[-92.18848714925457,17.768134632982424],[-92.19449939747278,17.776641184878713],[-92.2033535696167,17.7691070950915],[-92.21304654339428,17.760453053506637],[-92.23069697935608,17.74412497695272],[-92.24739563004806,17.724549634509515],[-92.25771310205448,17.71198538898409],[-92.26984542215496,17.697719002341557],[-92.27367001585827,17.693328248230728],[-92.27462288539368,17.692258052500108],[-92.28868154025292,17.702667337276637],[-92.29480096069915,17.69992941777076],[-92.29835468836131,17.70323693596731],[-92.30867154261807,17.706284777074814],[-92.31331592549293,17.704511816594163],[-92.31510112836708,17.70670217090492],[-92.3152781270386,17.70967106363122],[-92.32158924255572,17.709804110278867],[-92.32808996995021,17.71373003258384],[-92.32955930816053,17.710712854983967],[-92.33685427636908,17.71220182876982],[-92.33823066517544,17.706233652149024],[-92.34012921655335,17.703757986186986],[-92.34365120211487,17.704066261265893],[-92.34401804504802,17.701887622672643],[-92.34588935093427,17.70155714679646],[-92.34989905889915,17.70278467242798],[-92.35000583772484,17.67404478845242],[-92.34915948664406,17.654727521453935],[-92.35494144476576,17.65405605965134],[-92.35479476966151,17.646305600317646],[-92.35580136032223,17.64605980450017],[-92.3558576979247,17.6420133747132],[-92.35813167583069,17.64195914551658],[-92.3580289408788,17.63629599816784],[-92.35627970560364,17.636005024139877],[-92.35366334893837,17.628194247404394],[-92.35119543008011,17.624739433900174],[-92.35149818161801,17.619632072844126],[-92.35067370662733,17.61793406280225],[-92.3595518254827,17.612735344553073],[-92.37285871709895,17.604281412991213],[-92.40085814015839,17.586032547258355],[-92.40207859590669,17.578040114432042],[-92.40656846155673,17.580349676776052],[-92.40945973372368,17.57995672092403],[-92.41781177785339,17.576364795668496],[-92.4212368725972,17.577243701255213],[-92.42853116427932,17.57412282368159],[-92.4357697631853,17.570232929141582],[-92.43812218901127,17.57046481811591],[-92.44416870979853,17.574002451536785],[-92.44839463244296,17.574366273078056],[-92.45457358378457,17.57312882623279],[-92.45736219640958,17.57319105080319],[-92.46173501726918,17.57599590451781],[-92.46842844846276,17.57703328215848],[-92.47381147021252,17.57456980081099],[-92.4846883622397,17.57492074242475],[-92.49719636236529,17.572249152640666],[-92.50063377346282,17.572355941653143],[-92.508592596359,17.57395483263332],[-92.51344463158188,17.573267447604223],[-92.5199848995145,17.573049762428752],[-92.52010471481219,17.571879333343702],[-92.53007341157007,17.54999840810973],[-92.5361966323369,17.547942339506676],[-92.5534488878356,17.54279885588295],[-92.55803053609355,17.540225419560613],[-92.5596464634391,17.544528265417455],[-92.56296457106066,17.54558631455467],[-92.56301619554131,17.54562857070738],[-92.57141092618093,17.54960860968896],[-92.5969896922976,17.52035964178583],[-92.5923073661346,17.512891602941238],[-92.59308983475785,17.506420687753007],[-92.59465801132518,17.50445743641785],[-92.59990142624548,17.50080001961129],[-92.59439339437517,17.4942439793129],[-92.59418190706305,17.492433579607905],[-92.60058209504916,17.48370005420105],[-92.60325800738502,17.481161117226236],[-92.60582514555267,17.477375739710055],[-92.61655410895793,17.470302101269226],[-92.61914466148198,17.46929326658551],[-92.62433803656654,17.465863403927074],[-92.62914084705079,17.465495822036644],[-92.63780510108893,17.463661773153035],[-92.64219102096996,17.463297205603737],[-92.64886228915924,17.46070203374876],[-92.65453117280538,17.45566726670296],[-92.65582581598693,17.452092120319435],[-92.65875069598974,17.44478426859297],[-92.65961959702088,17.445397547010202],[-92.66579586625522,17.45684675870251],[-92.66818515756466,17.456694562347764],[-92.66769928389357,17.450212680131756],[-92.66790536830297,17.425954832591458],[-92.67591245580928,17.412609220956995],[-92.67582766221523,17.41081361987375],[-92.67851538549212,17.397749346212265],[-92.6789377902299,17.385161048376858],[-92.67770273507904,17.37998861365935],[-92.68125626000261,17.377075541369436],[-92.68333424553452,17.376775925517677],[-92.6889759043388,17.373249253767312],[-92.69706059879428,17.36974340621356],[-92.7016012010182,17.364999084397084],[-92.70478063086932,17.363289365103128],[-92.70851933875997,17.363407532207304],[-92.71149027450264,17.361009602396678],[-92.71692953466606,17.35783067808319],[-92.71851941406686,17.355452647857305],[-92.7203788547551,17.355335605012385],[-92.72950834170445,17.348128502088343],[-92.73259792051493,17.348118988293436],[-92.75175521112465,17.343658112577316],[-92.75418020170468,17.34329866582192],[-92.75610164262645,17.344734563255088],[-92.75601585613936,17.347104658084277],[-92.75839622161948,17.34962458836486],[-92.75760796569557,17.35035409991366],[-92.7587374090237,17.358197784640993],[-92.7635766681808,17.35856253959929],[-92.77066330852887,17.360396326001478],[-92.76926549667928,17.365135537854826],[-92.77001767204172,17.36804790167696],[-92.76705656059829,17.381237887137786],[-92.76729038590497,17.383404418193493],[-92.77095121437708,17.38884264465412],[-92.77310746576472,17.389493519078712],[-92.77436800778048,17.392252539613935],[-92.79079422539735,17.404985134477897],[-92.78987348817321,17.408343251029294],[-92.78753519888761,17.412781073769906],[-92.78622011305879,17.413168791243834],[-92.78575710260594,17.416030317422496],[-92.78579470361251,17.41752729868557],[-92.79105429811796,17.415010142714436],[-92.79839839494747,17.41316819291478],[-92.80016374160726,17.413844529377343],[-92.80627731353917,17.41056213714768],[-92.81243971539942,17.41047598680359],[-92.82260938542197,17.408876240641746],[-92.82422802419359,17.408647874974235],[-92.82939960714907,17.408599338637316],[-92.83027516394168,17.406983295455007],[-92.82904155997414,17.399762623063793],[-92.82758173880728,17.398953840662784],[-92.82921631766806,17.396300493470676],[-92.83115867810767,17.39912437833175],[-92.83465656801786,17.401328063163305],[-92.84012800802816,17.404621097363474],[-92.84624637817075,17.406552583325436],[-92.85155399656117,17.408951117277866],[-92.85426445746504,17.411197632546077],[-92.8561910114575,17.41887621875594],[-92.84453763032747,17.421322036232823],[-92.83397176067393,17.421724700155835],[-92.82582474643976,17.42378421374218],[-92.82227976341761,17.427110243144682],[-92.8196308388732,17.432745958495786],[-92.81975503047624,17.437664162824035],[-92.82237960018296,17.44786370893587],[-92.82225572185973,17.45220163205687],[-92.82647023208312,17.453036161524608],[-92.8275348877105,17.455938749899758],[-92.8280149206924,17.4673658826527],[-92.82889795196172,17.472865867312578],[-92.83062627298659,17.47960421687094],[-92.83390200458786,17.48218764113443],[-92.83584984052266,17.4805245118946],[-92.83431695865107,17.477925954622265],[-92.83568142126785,17.475152873979653],[-92.84180665859975,17.47256745544405],[-92.84702564135478,17.469577091331473],[-92.85075650002756,17.469571208038474],[-92.85568948813699,17.47896594283253],[-92.85618175570517,17.483871884966106],[-92.85931114612663,17.499051409838216],[-92.85980874950491,17.500281547611905],[-92.86618975794869,17.504327307347467],[-92.87069843086897,17.50530865659306],[-92.87787835947802,17.507981390107602],[-92.88735617404018,17.510463542454545],[-92.89682643992376,17.503403272344997],[-92.8990980423564,17.502761381883147],[-92.9045503129359,17.503272732247524],[-92.90710121030111,17.505263805276797],[-92.91065597494526,17.502372420776965],[-92.90996715150078,17.500077981406776],[-92.91293754410822,17.498213061846457],[-92.91612346780738,17.499411981329445],[-92.92046113859902,17.50267780330853],[-92.93787245660565,17.5026468331896],[-92.9394833331159,17.502179841812847],[-92.93875523440477,17.499536220210643],[-92.94149558106807,17.49702219887962],[-92.94093168179518,17.49483071411032],[-92.9421958472156,17.493174170483996],[-92.94155364812207,17.490781098759214],[-92.94448104359265,17.48726659590426],[-92.94366360254196,17.486137023429194],[-92.94524082739747,17.48279624477766],[-92.94691771341553,17.482133780871322],[-92.95568051116527,17.4886553456127],[-92.95590357953444,17.49076642113687],[-92.95806752139214,17.491974233468284],[-92.95900759012619,17.497397859475086],[-92.96257832433747,17.50326556079193],[-92.96269343788902,17.507178541141627],[-92.96607883185533,17.511271881204607],[-92.96737291727976,17.51743693486594],[-92.96922536402013,17.51831485719333],[-92.97506458412846,17.518638735219213],[-92.97488809852035,17.51695387955573],[-92.97724124785725,17.516073333155305],[-92.97882465700934,17.51248044175952],[-92.98487341764684,17.511307863072943],[-92.98563478175703,17.515170208925497],[-92.98299382399642,17.51891090903922],[-92.98830215680175,17.523503691087058],[-92.99048379989478,17.52756132044351],[-92.99264831596969,17.530015730594187],[-92.99085032698986,17.53194337584523],[-92.9879513044632,17.532042707524283],[-92.98219067249727,17.533443398689315],[-92.98016733763751,17.534995898531577],[-92.98048967195905,17.53756282884683],[-92.98734985951415,17.540136186343375],[-92.9893821984117,17.544006663026153],[-92.98793561633107,17.548925323254934],[-92.99057580598179,17.551182428356697],[-92.99380311613567,17.550565086494828],[-93.00458599876123,17.555198980938428],[-93.00593134626564,17.555982182133334],[-93.00581002178654,17.55928277484594],[-93.00754092145132,17.56006648719125],[-93.00755215744095,17.560109551064954],[-93.0075596673019,17.56071962061702],[-93.0076864984577,17.56124878058796],[-93.0068515589931,17.561916299351083],[-93.00579650550674,17.564108475715557],[-93.00711520846681,17.56542235932551],[-93.00448884609187,17.569173816105888],[-93.00614901902208,17.57140857066048],[-93.00437839970817,17.57773369882375],[-93.0070997341059,17.58149557776437],[-93.01075387459468,17.58059718789343],[-93.01046957791232,17.582654652949373],[-93.01367918352292,17.586700644333405],[-93.01496666328057,17.591469582383752],[-93.01949798479058,17.59437043692361],[-93.02333014695137,17.595102370144332],[-93.02435704904912,17.59623817563221],[-93.02881635223662,17.597362514423878],[-93.03242394918936,17.600912502040444],[-93.03305664723598,17.60227482946874],[-93.03306276570225,17.602321687417884],[-93.03303832036033,17.60235976720503],[-93.03283364158642,17.60258041626497],[-93.0359658992121,17.605202849550608],[-93.03763772754985,17.60777769044148],[-93.04052533518552,17.60982815092683],[-93.0402211403649,17.611648089759342],[-93.04190694538136,17.61395626032231],[-93.04145954955851,17.616394312409795],[-93.04310819903338,17.61714937924478],[-93.04414909024234,17.620045954698412],[-93.04264527984373,17.625746289910808],[-93.0437155124381,17.630733450217406],[-93.04394394338408,17.635452781904803],[-93.04519150634331,17.64161994841595],[-93.04545764865605,17.65910544179434],[-93.04365959865572,17.660020534349485],[-93.04338215165797,17.662923592878883],[-93.04423333318368,17.666443905209746],[-93.04306750875583,17.667982375763017],[-93.04076969319118,17.667358469516387],[-93.04076408048621,17.6703261387716],[-93.04442992508581,17.673406251750123],[-93.04026612346252,17.675200025857862],[-93.04193106444166,17.680494855839413],[-93.03788070089519,17.683248023603767],[-93.04203106332949,17.686385248182944],[-93.04111982207695,17.690492271149253],[-93.03911842647051,17.69196300002659],[-93.03889751239501,17.68842197093852],[-93.03764878043609,17.69058445654315],[-93.03769566651164,17.69384914905362],[-93.04072177954026,17.692978521568307],[-93.03948626099492,17.696257321327153],[-93.03997577378334,17.697878905949608],[-93.03809464284808,17.699046894075195],[-93.04015663307462,17.700819002230162],[-93.03737974264823,17.701273629553157],[-93.03775808110453,17.704919648334283],[-93.0393158095282,17.704378774686745],[-93.03885154342709,17.706817746186346],[-93.0407568488369,17.704125815113457],[-93.04303189451434,17.70421889987057],[-93.0414973996809,17.707228877862747],[-93.04479592179217,17.707975046958325],[-93.04478156476051,17.711077007757353],[-93.04318445350384,17.708804585838266],[-93.04205548211911,17.710330166354197],[-93.04436798578695,17.7133879601148],[-93.04728311933013,17.712607039606837],[-93.04786227209252,17.711237479682325],[-93.04978480171485,17.714187415054027],[-93.0515777403113,17.712659967648676],[-93.05370014944981,17.711336767645946],[-93.0547862654376,17.713199327537893],[-93.05362813131103,17.715799418211475],[-93.05490806018912,17.717312631185052],[-93.05354704471625,17.7189403289442],[-93.057625614382,17.720659537675147],[-93.05546579300125,17.721589919391022],[-93.0571760431647,17.72365579031066],[-93.0546925626142,17.727054432584396],[-93.05539320944672,17.730370458287155],[-93.05410580153443,17.732349665689753],[-93.055123324428,17.735120900315508],[-93.0532179898409,17.736588918820132],[-93.05419709825821,17.738286104555584],[-93.05259334882237,17.74211392282166],[-93.05433971279047,17.742171105826458],[-93.05156871156288,17.745694563787765],[-93.04708737314252,17.748071696584873],[-93.04671196890826,17.750145526780273],[-93.0486243155367,17.75128384093415],[-93.04606415715637,17.75306727455518],[-93.04568801466678,17.75604171462328],[-93.04776713710373,17.758352775109927],[-93.04437053439835,17.76048471184305],[-93.04528007077022,17.762503370346167],[-93.04316311644925,17.763910868027722],[-93.04263828443771,17.768411512653245],[-93.04019744447811,17.76999791353785],[-93.03916286027146,17.76637325390817],[-93.0365904313287,17.76635412687898],[-93.03722618069219,17.768989191699745],[-93.02801222310586,17.77147798624867],[-93.02593266875215,17.77490043553547],[-93.02662793063541,17.776448012036553],[-93.02341439930655,17.776591512760604],[-93.02385067854658,17.779119327355033],[-93.02170640780838,17.78092470930403],[-93.02001236705945,17.780650634505264],[-93.01892826756892,17.784126660773154],[-93.01680880587787,17.784166597073806],[-93.01588720882222,17.786026800587024],[-93.0183785852339,17.787052029741915],[-93.01733264604911,17.78937276712321],[-93.01870300420472,17.79070811809379],[-93.01460174229487,17.792358009154725],[-93.0139390198504,17.794833106382157],[-93.01217023055528,17.796168700760518],[-93.0128574824912,17.79893190771253],[-93.01573526129772,17.79809903779443],[-93.01591679082958,17.801148055183376],[-93.01957100972157,17.80372170426068],[-93.01699640405275,17.806143962630017],[-93.01668481166513,17.808558650928603],[-93.01948273903224,17.80936700125858],[-93.01966644394219,17.812755912696616],[-93.02148420386726,17.81531908711014],[-93.02703706979105,17.81997087131367],[-93.02751097629823,17.82193897899566],[-93.02543628426099,17.82541844766348],[-93.03316445370501,17.833097258327086],[-93.04027649728499,17.840934482233536],[-93.04130617567466,17.838287614230182],[-93.0421872113003,17.838607230237642],[-93.04445005959337,17.84059640173149],[-93.04336779215595,17.841881180337452],[-93.04312630694534,17.842577305889847],[-93.04801188450847,17.84303572698775],[-93.05185115935853,17.843394404707624],[-93.05580375270563,17.843813109617315],[-93.05799020744644,17.844140446459733],[-93.05870782946454,17.844190684953276],[-93.06118853057768,17.84406746481983],[-93.06407963726178,17.84387586253979],[-93.07562637679172,17.842677738421514],[-93.07713543334467,17.84248851622732],[-93.07970219045455,17.84222350732574],[-93.08054031668576,17.84207613305665],[-93.08884358243546,17.841464844673908],[-93.09023074610093,17.841691517258255],[-93.09408988079281,17.84117175779454],[-93.09868766823905,17.842858404203923],[-93.1016454666472,17.84582833208924],[-93.1035707116414,17.842804388320417],[-93.10546066830074,17.8392452046146],[-93.10715850613747,17.835646834009026],[-93.11054801686208,17.83012006110215],[-93.11459079230661,17.824312248062085],[-93.11564075085579,17.822212625577663],[-93.12040466444864,17.83388406711873],[-93.12902789266485,17.84474184611105],[-93.13047738439622,17.84897063016041],[-93.1318003164721,17.852316416867268],[-93.12949296114243,17.856417866334823],[-93.1294314370702,17.858757308249835],[-93.12360825430477,17.86777092046981],[-93.12362598954917,17.8744503876826],[-93.12137621070008,17.87664530485398],[-93.11425424021422,17.875379532788145],[-93.11362399358359,17.877092376527685],[-93.11156479501301,17.876583211968978],[-93.10728850431803,17.878711311101142],[-93.10234533182376,17.88209470558803],[-93.09544492204213,17.88564968233385],[-93.09142246814531,17.887051877315344],[-93.08970463029613,17.892674961412354],[-93.09137593601952,17.897561252015237],[-93.09598713399777,17.898486554507656],[-93.09786126330471,17.901415288845385],[-93.10055536021594,17.90209097658544],[-93.10082005270681,17.906034965587992],[-93.10376234275282,17.90629800191016],[-93.10497503716687,17.90741932325119],[-93.10975961771965,17.9085720135933],[-93.11499746705721,17.908986474689698],[-93.12240706742637,17.906822719990714],[-93.12807988231356,17.907284522974635],[-93.13228358503034,17.91046156192516],[-93.13314845044914,17.913304823280043],[-93.13693279034572,17.918358934312664],[-93.14254465088464,17.918714491829064],[-93.14598207124618,17.919926668367225],[-93.14707006196119,17.9237877510173],[-93.1448676763452,17.92604011659472],[-93.14434872505728,17.930711877653266],[-93.14507802723807,17.93235297614484],[-93.14759283584482,17.932754189842854],[-93.14889742156095,17.93450560962748],[-93.15655585226989,17.93549977084558],[-93.15787126022508,17.936362786401617],[-93.16334895430288,17.936237557191873],[-93.16661745554978,17.935044107153374]]]},"properties":{"cve_ent":"07"},"id":"inegi_refcenesta_2010.30"}, +{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[-114.726498587771,18.360371887963595],[-114.73064436620871,18.36202598309734],[-114.7344735740611,18.365507604194534],[-114.74049555002864,18.36550826102433],[-114.74593139124312,18.362265750238066],[-114.75102968750014,18.361310121823408],[-114.7567345741673,18.35738747084531],[-114.75945528906306,18.34414984632167],[-114.75944111078769,18.338743639595464],[-114.75579547582925,18.33377449879123],[-114.75199208327342,18.332593999791868],[-114.74255158778908,18.33660317773672],[-114.73683199628374,18.335119242468522],[-114.72742060402754,18.34131463448341],[-114.7241204122318,18.336702567412544],[-114.7189211024691,18.340068366912817],[-114.70880216640046,18.343015179303904],[-114.70439211932933,18.3419258151676],[-114.70014971438775,18.339692370761668],[-114.69450687195342,18.34212009589544],[-114.68489428647536,18.350146340415108],[-114.68096276796808,18.35482609019465],[-114.68310192086653,18.358358811109213],[-114.68809348301647,18.362806991834987],[-114.69211493984602,18.364571932739523],[-114.69596798705277,18.36173001470496],[-114.70018728565321,18.361662405532797],[-114.70517011949175,18.360588802142445],[-114.70971565413191,18.361338639182577],[-114.72194755023241,18.359737745324537],[-114.726498587771,18.360371887963595]]],[[[-110.98818843332549,18.85350560875571],[-110.9840704614835,18.85787625279454],[-110.99105028521137,18.858643137799277],[-110.99277568004237,18.857541044206016],[-110.9908353715407,18.853808373575816],[-110.99740629885866,18.8521495029716],[-110.99855497821767,18.854135523419757],[-110.99934122629827,18.85208756422378],[-111.00127807988645,18.85191045709854],[-110.99963598236968,18.84634639736754],[-111.00005654248696,18.84440315096498],[-111.00293230950143,18.845172248112874],[-111.00873872481338,18.8408473181874],[-111.01012413123016,18.838930810647753],[-111.01023178656646,18.835368884915226],[-111.008994562336,18.832345634021863],[-111.01120530410361,18.831141698195268],[-111.01023358443666,18.827320707621197],[-111.01412289423195,18.826507116147354],[-111.01263457295062,18.823821644553448],[-111.01432737470122,18.821168894768277],[-111.01396864893951,18.819604003626296],[-111.01854628345603,18.81593521794605],[-111.02742511008478,18.81778778755364],[-111.02999328007877,18.816707807278135],[-111.03074469907176,18.81178460373303],[-111.03939535461149,18.813170459753735],[-111.04036202327899,18.809172060058643],[-111.04287558695302,18.80804805877318],[-111.04510200682779,18.809173363106254],[-111.04970465427283,18.808109554484815],[-111.05117961194856,18.809752239466434],[-111.05395178282396,18.809152863236022],[-111.05370613484683,18.807317646456397],[-111.04973614190362,18.807320725057593],[-111.04619706864804,18.80635264517292],[-111.04536415176324,18.805025089996207],[-111.04682694672209,18.802909684274653],[-111.05038702176938,18.800936761262335],[-111.04728192959249,18.799817334618524],[-111.04841234020444,18.79432930788431],[-111.04425302049214,18.792146181560327],[-111.04428720313172,18.786973079019845],[-111.0496321023432,18.785853821379476],[-111.04863961504816,18.782722271643877],[-111.05414352675763,18.78034266157772],[-111.0562793500639,18.77752613525513],[-111.0577204162318,18.773770776946208],[-111.05631021475267,18.77246786701727],[-111.05493944371972,18.773925205608066],[-111.05112508501287,18.772326521866034],[-111.05015899208382,18.776324797565394],[-111.04732365954334,18.778316948548934],[-111.04387755519622,18.77649862092875],[-111.03912545042226,18.777978898936283],[-111.03750257935593,18.779774425252867],[-111.03573194944579,18.77443658058297],[-111.0322385385694,18.770202308246326],[-111.02958067867684,18.77024456143198],[-111.03050529137295,18.7676254582521],[-111.02528116359065,18.76687611747849],[-111.02445026575765,18.768264462912157],[-111.02343743121583,18.765822366797465],[-111.02491277973036,18.760918386839876],[-111.02240500140272,18.76004508785087],[-111.02069697034932,18.756663828601404],[-111.01755001231169,18.756922897218942],[-111.01908432130222,18.75409047491712],[-111.02054189788885,18.753785340494687],[-111.01881961626253,18.750863645075583],[-111.01911366205735,18.749147013943002],[-111.01568112155059,18.746868127865696],[-111.01502361075376,18.748689896463134],[-111.01284593348612,18.74886009423119],[-111.01125463524278,18.745597155459052],[-111.00777905083055,18.744811680094642],[-111.00145943560563,18.750272408901026],[-110.99880317405598,18.74629024143627],[-110.99267123690157,18.745546563506366],[-110.98887098359211,18.743487016296797],[-110.99023923407998,18.742144979366003],[-110.98888310742257,18.739118417386976],[-110.98520809133487,18.73694746757576],[-110.98139294180123,18.739371602535925],[-110.97684682982725,18.73809610830159],[-110.97250628957948,18.737976540934596],[-110.97115055550375,18.734949203545796],[-110.96553201108895,18.733184107353736],[-110.96486956799083,18.727186871535423],[-110.96346625244473,18.72967754829625],[-110.96179956374453,18.728941293822857],[-110.96213219817315,18.725961292641728],[-110.95677973774184,18.723398320003867],[-110.9595484973986,18.719680736444843],[-110.95956736312303,18.715081739915263],[-110.95387929323999,18.711704949020543],[-110.95082995818842,18.712769678499342],[-110.95101603898496,18.718524179082408],[-110.94626380793659,18.716092392208168],[-110.94391264843625,18.714072517580803],[-110.94224341177295,18.717360393600416],[-110.94280709499952,18.71864143698025],[-110.94147867138645,18.722628464525314],[-110.92936041940095,18.72033641635238],[-110.92445066131029,18.723074001003965],[-110.92194280085755,18.726108779792412],[-110.92195500581488,18.729673588227683],[-110.91933107589824,18.736499101001357],[-110.91894880520562,18.74499767237188],[-110.917657760086,18.74772098181188],[-110.91960633384213,18.751109802758435],[-110.91879792294407,18.753847048247906],[-110.92058227929431,18.758610785681753],[-110.92062924793476,18.76493621138229],[-110.91698281017386,18.769663783863678],[-110.91466773596215,18.77040368082322],[-110.91441580708783,18.774651017667395],[-110.91682755295886,18.774718913939296],[-110.91566030739278,18.777330734144243],[-110.91791742059405,18.778543218781692],[-110.9194689204491,18.78698035661722],[-110.91827017709954,18.790626334179535],[-110.91969988595406,18.791241158056323],[-110.92362310640476,18.79709989304024],[-110.92808729338515,18.80113391841354],[-110.93240901997859,18.805853716704576],[-110.93300597234054,18.810009531894707],[-110.93479371003673,18.81074920202218],[-110.93710526429771,18.814147888023797],[-110.94093307912868,18.815288930964243],[-110.94037395250416,18.82171267708526],[-110.94201331298251,18.823368207905617],[-110.94237696386296,18.827287427594456],[-110.94624036873904,18.82727994632785],[-110.94683783568422,18.83143582267718],[-110.94969447332966,18.832779691055578],[-110.95222422594264,18.829055660572976],[-110.9553788299969,18.82856799296411],[-110.95907237922194,18.830165102750925],[-110.9608255078017,18.83205353390673],[-110.96122087439795,18.834938948908984],[-110.96416396210839,18.8374350908947],[-110.96458277614909,18.83951640263416],[-110.96659504314619,18.84083655003269],[-110.96817567656001,18.844444630857538],[-110.97046450714953,18.844622762905885],[-110.97112591537206,18.846711207122212],[-110.97552520494725,18.844992831654167],[-110.97944153079033,18.847285523705295],[-110.97895576049922,18.85129627257021],[-110.97996258387593,18.85396843710714],[-110.98197696523079,18.85126451722681],[-110.98409247394767,18.853162879063746],[-110.9875122760073,18.851877377988956],[-110.98818843332549,18.85350560875571]]],[[[-104.48646394954,19.104869424995286],[-104.48894026690493,19.10257313162299],[-104.4863035327761,19.100614208028105],[-104.48503195742444,19.103803610117893],[-104.48646394954,19.104869424995286]]],[[[-110.81029860174061,19.28752842460011],[-110.80925141507868,19.290028139459196],[-110.81281182502767,19.29231429554426],[-110.81208116699753,19.300112267968473],[-110.80922315475402,19.30244549909395],[-110.80785653908646,19.30735085526925],[-110.8056948439799,19.310623484802477],[-110.80767599032293,19.31309449300926],[-110.8098894871797,19.319711649234534],[-110.8126434719751,19.320709653030235],[-110.81615592504147,19.320694511437523],[-110.81483757617212,19.31640313599746],[-110.81547309265972,19.31159201806213],[-110.81938467580324,19.31043820662319],[-110.81926264675928,19.30664023557034],[-110.82030363341607,19.30436992980617],[-110.82766383268694,19.301359056293904],[-110.83001267991523,19.299816006187882],[-110.83180361263567,19.29676258633134],[-110.83346188846474,19.29025511370503],[-110.83082332793362,19.28558126652797],[-110.82761158473625,19.28376577671048],[-110.82027661975422,19.28597196242191],[-110.81829659151663,19.28350114149646],[-110.81500512689962,19.284212559278956],[-110.81029860174061,19.28752842460011]]],[[[-103.60619930487621,19.500557861997436],[-103.618276501303,19.512518771356383],[-103.64838168329607,19.501927038589656],[-103.6531892596862,19.500734305167725],[-103.6565059951244,19.50209081147966],[-103.6601979753948,19.501750213914363],[-103.66487860919813,19.502630907047887],[-103.67070014228676,19.500467905041603],[-103.67711400842353,19.496250535825993],[-103.68044825088498,19.49594247776656],[-103.68196607428047,19.49350622357099],[-103.68428759878282,19.494248334489328],[-103.6904343523666,19.492031902970496],[-103.69338429098423,19.486589066200054],[-103.69571470010379,19.4865153804256],[-103.69882747026998,19.4847611466746],[-103.7000083767627,19.480845207912523],[-103.70424841437006,19.477098785398653],[-103.70453893208474,19.476647525601663],[-103.70827330408883,19.469856544140043],[-103.71144316634326,19.468036202683948],[-103.71578940228562,19.46700952466722],[-103.71637242972713,19.465744502949292],[-103.71615645576708,19.456958053546714],[-103.71720053848168,19.454305789144144],[-103.72543577078397,19.451228164520728],[-103.7284856398677,19.44805987484301],[-103.73318707170722,19.445358000192584],[-103.73458884319092,19.443676441847742],[-103.738681453553,19.44328176331578],[-103.74510778664381,19.445367020296885],[-103.75065831547505,19.445663562756636],[-103.75685771713063,19.442135459063536],[-103.76029848494949,19.439574881846454],[-103.76446446725225,19.437634863244853],[-103.76780843572982,19.434627197511475],[-103.77188389662786,19.433456487137505],[-103.77395052952829,19.430804620189463],[-103.77722185190521,19.43103801932591],[-103.792733657339,19.427513695670598],[-103.79649486604973,19.42449095649249],[-103.79789249694562,19.42199278967672],[-103.80133590458155,19.421973419596384],[-103.80599726862414,19.417641091995733],[-103.81070763015128,19.414610984939088],[-103.81528640622884,19.413859953122085],[-103.81765706660644,19.412442763939566],[-103.81897099113871,19.408870492611186],[-103.82084742784633,19.410512240745447],[-103.82141669208761,19.41415962378443],[-103.82346445576826,19.417691428471187],[-103.82205833751993,19.42249678555055],[-103.82357938789244,19.424825810543837],[-103.82352826009259,19.427210496871567],[-103.82755532039096,19.43180154080642],[-103.82789189306925,19.43339390068826],[-103.82445475012804,19.435887127922],[-103.82492799256607,19.43813375164052],[-103.82935452983241,19.438747705991148],[-103.83177887248257,19.440112522358277],[-103.83489889098774,19.439654439906462],[-103.83502339132178,19.439679024167162],[-103.84250694198789,19.437263384308153],[-103.84664302208654,19.433703163094663],[-103.84979646568559,19.43313479000051],[-103.8547808404283,19.43094160622013],[-103.85826871182081,19.43212316376082],[-103.85932626029933,19.434937696312716],[-103.85821296376406,19.437132252939136],[-103.86232313428718,19.44280248168502],[-103.86375500395047,19.447384745665374],[-103.87037018613387,19.444756783022513],[-103.87266410027951,19.44556282071511],[-103.87556484479558,19.443216984975038],[-103.87941816976524,19.444488660019772],[-103.88326226992922,19.456044057306258],[-103.88686010243231,19.46164484074683],[-103.88866017288103,19.46331626488211],[-103.89105212369293,19.463579768970533],[-103.89731770509331,19.46143187811265],[-103.89811526676078,19.460191268484323],[-103.90464366508701,19.45691057807909],[-103.90876545842474,19.453628302690163],[-103.89796207099363,19.438599491864863],[-103.89762888218524,19.436282441581113],[-103.8995215930745,19.434547243105555],[-103.91039880003939,19.438994471021942],[-103.91466468359124,19.440094599685892],[-103.93085652137052,19.445482212357433],[-103.94740613999988,19.44954731371871],[-103.9647986570406,19.454162653337278],[-103.96930443210613,19.459231492017295],[-103.97292404180047,19.46627927326955],[-103.97403073913392,19.47091555343752],[-103.97400709699542,19.474552913329546],[-103.98709712807266,19.474295916813787],[-103.98816433550502,19.471160243317456],[-103.99151247949169,19.471324593235636],[-103.99767242671032,19.471626177873475],[-104.00004554705606,19.468828824834304],[-104.00564989914886,19.47227547497414],[-104.01903994908525,19.476477379936625],[-104.02959365219351,19.481352705908193],[-104.03154328570605,19.48138660295865],[-104.03913570298471,19.484661458040023],[-104.05176359231427,19.49760054114506],[-104.06172506257184,19.497702931737592],[-104.06467214436566,19.492925735466656],[-104.06898126166772,19.484296823966474],[-104.07127308705401,19.483582478883136],[-104.07155205112724,19.483517491956377],[-104.07347023164971,19.48303808752553],[-104.07673952768499,19.48021471727168],[-104.0866397873844,19.44203099367735],[-104.08383623657636,19.439967478809024],[-104.08048729749453,19.435212939460314],[-104.07994294588565,19.431781755889062],[-104.0708837594608,19.435235437382744],[-104.08383739656546,19.41559896131855],[-104.08420537212515,19.409072338003682],[-104.08635886997541,19.405029325917667],[-104.09022621075354,19.39302479692958],[-104.09890640325307,19.38830277353952],[-104.10407067687987,19.38420859570897],[-104.11045779723628,19.380306753587377],[-104.11879857913931,19.371663551692563],[-104.12026322232373,19.36009044024047],[-104.13334411728596,19.35374583712951],[-104.12472651290653,19.328689711508616],[-104.12173585887928,19.32774918971927],[-104.12501126314646,19.32592999382331],[-104.12549736156308,19.32425224977669],[-104.12290586067178,19.32099837628425],[-104.12298461457033,19.319041944132834],[-104.12576040660883,19.320404442964104],[-104.12911182600055,19.317819940990262],[-104.13176525188726,19.32099495434187],[-104.13469742401327,19.31891321847303],[-104.1360499184945,19.316311477500847],[-104.13587207943294,19.31308402422411],[-104.13744212402446,19.312353661971144],[-104.1401588638667,19.316167033837587],[-104.14336909685477,19.313864095021756],[-104.14416395383773,19.311920794363232],[-104.14537363211377,19.311260934948166],[-104.14992536712134,19.314169809910368],[-104.15407524537233,19.314442993626187],[-104.15400580091904,19.311962823597582],[-104.15809880748162,19.31083149321904],[-104.16007004626192,19.304003802294403],[-104.16260609003751,19.302995799322105],[-104.1639265105938,19.30828435573642],[-104.16893594581501,19.307970257062607],[-104.16854841171408,19.310367144403983],[-104.1697965893984,19.312963737348923],[-104.17353461578358,19.31430309501104],[-104.18089997080244,19.31201713071283],[-104.17956560169443,19.308986930882895],[-104.18192111153297,19.306932460923235],[-104.18536154933003,19.306358772962994],[-104.18471936346543,19.30357881764087],[-104.18952075086673,19.302435907680774],[-104.18975268617339,19.292950447283033],[-104.19224612165647,19.292582331621134],[-104.19233239048623,19.29531907467731],[-104.19672649051188,19.296594501016443],[-104.20434628972214,19.303602221755796],[-104.20475519425395,19.303704402338724],[-104.20691817840111,19.300012725481906],[-104.21417319283125,19.30237333275386],[-104.2162931039976,19.299805619809376],[-104.21970735265268,19.299445372478544],[-104.21964068924046,19.301351563770822],[-104.22617854512077,19.30225242071384],[-104.22884862673135,19.304776298822105],[-104.23199037220002,19.3053060066203],[-104.23529243770565,19.307640498720332],[-104.2433964262309,19.30950527597281],[-104.24769098708697,19.312178901037782],[-104.25262801928966,19.310282292221984],[-104.25585761685272,19.309899180776483],[-104.26117905098016,19.31180619396264],[-104.2619292754681,19.307737184600796],[-104.2675013434066,19.304921168686292],[-104.26890576727732,19.30264832059578],[-104.2730022910705,19.30075163529733],[-104.27681899742987,19.300913324786166],[-104.2796408339862,19.303383079849368],[-104.28282566706827,19.300826745892607],[-104.28275938281809,19.297307625317217],[-104.28718994241268,19.297175603848814],[-104.28689219240067,19.299587745328438],[-104.29141694829048,19.30269668321779],[-104.29402023323462,19.30347079390748],[-104.29833326903002,19.302133374668813],[-104.2991913444659,19.297458917467395],[-104.30059011217611,19.295586370122464],[-104.30587800559522,19.29341674238566],[-104.3106337334815,19.289507481059786],[-104.31124462540805,19.28320039051698],[-104.31280266735524,19.280095971440858],[-104.31480390773328,19.279355885268046],[-104.3188882920735,19.280036534076316],[-104.31954457836832,19.280257233940063],[-104.32312228538422,19.28088264346883],[-104.3258323017032,19.284560357563862],[-104.33184814654419,19.287512305522284],[-104.3341307201731,19.2865013663789],[-104.3378355724443,19.289039398005684],[-104.34107713277399,19.28987546786209],[-104.34388029223499,19.289545989854332],[-104.34500095373505,19.287336711360354],[-104.35357696186384,19.276970915376467],[-104.35520614665836,19.273781049314834],[-104.35794297150699,19.270569286974137],[-104.36187369239684,19.26907840733554],[-104.36434521935121,19.26979148684103],[-104.36296311577269,19.27376263977129],[-104.36519643965113,19.277166919278102],[-104.37427346298188,19.28188398261466],[-104.38157206841532,19.275484640127786],[-104.38332402045256,19.27271327304743],[-104.38687663671277,19.271406194194128],[-104.39556060499979,19.271288243945776],[-104.39796869831451,19.269762797093904],[-104.39996142898946,19.267070273124432],[-104.40219689199023,19.26828244466094],[-104.40319063438392,19.271781416387853],[-104.40126169058874,19.276466925166517],[-104.40245262783776,19.278400657763143],[-104.39743168068549,19.28581919573287],[-104.39923190077974,19.28871035156351],[-104.40094560011033,19.28906980411068],[-104.40473034463264,19.286839196419464],[-104.412365191785,19.285329241997147],[-104.41321673206295,19.282945356511675],[-104.41744762765939,19.280269094234654],[-104.42025260545938,19.27957306202785],[-104.42381519524594,19.28208112467854],[-104.42923307467368,19.27929134624219],[-104.43573139923774,19.279126133024192],[-104.43886782496872,19.2782361117101],[-104.43925912124877,19.277987859086863],[-104.43979575519921,19.277233788037847],[-104.43657888367602,19.272588373735914],[-104.4357645938145,19.26963723884745],[-104.43703978126837,19.268226129375535],[-104.43840784808413,19.262873092350503],[-104.44189709001859,19.26142644304275],[-104.44752783876612,19.2602560155824],[-104.45016439026352,19.258921386525344],[-104.45613236533347,19.26001314527366],[-104.45925800341632,19.25701928247173],[-104.45966529030187,19.253996757048867],[-104.45567796870887,19.248453652363025],[-104.46061099032943,19.246045893663222],[-104.46262412745068,19.247276907711296],[-104.46611209698426,19.24596354553813],[-104.4672182907118,19.24452435433318],[-104.46597169202033,19.240921859807884],[-104.46282216691668,19.236095800599117],[-104.4630162577314,19.232959666499653],[-104.46478459899788,19.230037778478163],[-104.466896328232,19.23101021155037],[-104.47252978579343,19.228943246674135],[-104.47339013133603,19.230229788548968],[-104.4740091508055,19.236548132840994],[-104.47725768464397,19.238703388155443],[-104.47851273248864,19.238052171605432],[-104.48079394556993,19.233473049452186],[-104.48384951283867,19.23054045882759],[-104.48738124391184,19.229432643243285],[-104.48895489607526,19.229943363811856],[-104.49014191193731,19.232733983684284],[-104.4897028551502,19.241520552513805],[-104.48844802701814,19.247232698078335],[-104.4945354295217,19.25394704063939],[-104.49737975454673,19.254497051855196],[-104.5020906476509,19.252101267121702],[-104.50608993368087,19.245083080168172],[-104.50913175756341,19.24446205455024],[-104.51407514237468,19.248144945366164],[-104.523319386519,19.260372379525222],[-104.52529931801143,19.261118428761677],[-104.5302878683861,19.259788832594836],[-104.53128613803756,19.259342398129434],[-104.53378370793007,19.258040741143304],[-104.53555730633394,19.253038321579027],[-104.5370516427746,19.25103486283456],[-104.54323527190866,19.246266966744713],[-104.5439175258212,19.245920126685974],[-104.54847133955832,19.243346837249874],[-104.55451594990677,19.237097791048484],[-104.55746399625565,19.231124875436024],[-104.55952598942542,19.229529468488863],[-104.56061280049596,19.22601129403739],[-104.55954426492286,19.220544801529456],[-104.56203639061994,19.218354123134702],[-104.56729532166838,19.21975803622803],[-104.56911274259465,19.21869522999566],[-104.5704374158583,19.21480575079562],[-104.5693187276056,19.209940378451165],[-104.5696012919853,19.205883412232538],[-104.56752614165185,19.20400335304066],[-104.56757239839243,19.200099720675723],[-104.5697002011259,19.19702351097368],[-104.57341946026276,19.19477127228373],[-104.57490147539772,19.19201190903385],[-104.57383727861361,19.18961641355361],[-104.5745735160574,19.184986401304286],[-104.5769376159734,19.18020460762898],[-104.58016704573117,19.177880684455772],[-104.58398961236577,19.17798932202669],[-104.58666779954996,19.18538506684081],[-104.58932673665299,19.186565950666022],[-104.5926252781984,19.185987303861737],[-104.59626635879494,19.183620278486046],[-104.60028748080583,19.179053370232907],[-104.60034304648474,19.17794299997547],[-104.59688112432406,19.173261447985283],[-104.59584233750041,19.170641702488297],[-104.59665427995128,19.165496645227734],[-104.59614262662808,19.164052230484515],[-104.59154195839807,19.162399162587576],[-104.5884525836434,19.16337116046924],[-104.58602720906327,19.162339558299834],[-104.58703860033171,19.153520943946035],[-104.58886692588499,19.150811083572478],[-104.59099024463166,19.149917162832537],[-104.59510188034977,19.150532485704844],[-104.59677402557384,19.15184150057877],[-104.60331921755085,19.152059456187146],[-104.60817150401948,19.15493050239826],[-104.61011521193689,19.154572024980382],[-104.61312729633426,19.156534511947427],[-104.61133708335404,19.15987908864747],[-104.61195285087717,19.161407424011315],[-104.6157477054482,19.161680900093984],[-104.61706158208005,19.1665461015034],[-104.61902804545332,19.16808894945609],[-104.61590702193826,19.170566172294855],[-104.61530150134661,19.174104165893198],[-104.61608704621312,19.177958171808655],[-104.61827510805568,19.178850002833883],[-104.61903752471602,19.180872486863734],[-104.62269067350155,19.180039198257987],[-104.62620610673974,19.17804706819618],[-104.62651971139775,19.175510282416496],[-104.62856568561648,19.1732015560317],[-104.64116669536406,19.17743749312592],[-104.64191731651562,19.17772265217377],[-104.65177583010382,19.181369790147585],[-104.65324163408388,19.182491448329756],[-104.65912551265814,19.182467963026625],[-104.66423755824923,19.18312975689969],[-104.67035580055642,19.185693024381123],[-104.67529443029429,19.185558225068803],[-104.67954592022159,19.19099102728245],[-104.67997934415166,19.193171518580527],[-104.68325525250219,19.190710672704995],[-104.6816341240011,19.188691072095082],[-104.68261073191928,19.187410940327197],[-104.68032869518129,19.18550660313292],[-104.68283218089533,19.182413307744184],[-104.68498512731412,19.182407990588786],[-104.68492684852771,19.184549196765772],[-104.6889766560052,19.184092630353348],[-104.69047774310673,19.17667541171869],[-104.68394403186437,19.17678911402993],[-104.67618794529142,19.175049826495638],[-104.66454317976275,19.171736317548607],[-104.65650887295328,19.169124356475038],[-104.63234836045012,19.160741458200278],[-104.61254878248053,19.153431324503856],[-104.60168094082422,19.1502902520225],[-104.5939875827587,19.148528898227198],[-104.58426919296869,19.147747031260337],[-104.57173902315355,19.145816652159283],[-104.56294956164658,19.14399728024057],[-104.55300462493972,19.14117960837268],[-104.52949820370719,19.13526173644135],[-104.51590110650449,19.13199271706486],[-104.50384225828901,19.12840298733505],[-104.48938204275481,19.124553155840204],[-104.48509044706788,19.12293507316457],[-104.47323674747184,19.116466324838598],[-104.47113349664966,19.11317093441562],[-104.46807720172654,19.111960286804845],[-104.46681882032607,19.110099099481488],[-104.46535341676463,19.111765966499604],[-104.45854994124238,19.111362367190225],[-104.45340178058024,19.109860437601867],[-104.45147240125931,19.108483726089787],[-104.4497686412895,19.1034214506318],[-104.4508689303712,19.102189558957434],[-104.44777747411268,19.098643311380044],[-104.44870985005133,19.09493120070448],[-104.44457962883473,19.092534793244454],[-104.44425167135785,19.087890240142542],[-104.4419300373138,19.08636485063323],[-104.44171797770298,19.08325675951579],[-104.43689095565378,19.085417762837153],[-104.43848950076386,19.089580695904772],[-104.43686431855815,19.09127881851441],[-104.43867869655531,19.092618553815214],[-104.4396115349764,19.096169479695675],[-104.43713620643632,19.09881471611436],[-104.4345786356065,19.096977384556396],[-104.43422824188485,19.094859174006103],[-104.43104149347488,19.094717950334257],[-104.43048391530431,19.093065172479385],[-104.42776761141647,19.092129415726447],[-104.42826225945277,19.09500329213762],[-104.42569835455737,19.097702129027766],[-104.42346767813797,19.098230863059428],[-104.42339558717958,19.100289392277602],[-104.42025222779614,19.101204823564842],[-104.41764778919162,19.10546917575317],[-104.41321788019121,19.105485458668795],[-104.41123523990808,19.106547332365153],[-104.41049664585114,19.104093659013188],[-104.40551880537129,19.10298173287765],[-104.40405243582723,19.10054728710628],[-104.40392733414706,19.096680403225662],[-104.39840808131487,19.09305314915059],[-104.3989414342505,19.089635479786693],[-104.39705902756191,19.089596672511618],[-104.39569525112802,19.085434694833566],[-104.3953310189226,19.090226382642243],[-104.39241335734079,19.091867684242857],[-104.39154058793059,19.095262550654297],[-104.38980028605386,19.09601601005886],[-104.39204169512811,19.10099684117955],[-104.39651296437603,19.10283824396305],[-104.39889060819235,19.1069724532324],[-104.39843478230131,19.10921361459856],[-104.39492440346709,19.113862108678177],[-104.39064646533978,19.116569952214036],[-104.3820345360055,19.119030190117087],[-104.37247886731825,19.11972209452938],[-104.36667234045052,19.119060804883418],[-104.36158961937508,19.117855749011994],[-104.35345858550806,19.114320822210573],[-104.35092443193099,19.11183756725444],[-104.35048473373632,19.110033776623084],[-104.35208058235492,19.10633998777405],[-104.35459917960895,19.10532328334051],[-104.35369026832831,19.103976453785435],[-104.35167355099225,19.105433834977703],[-104.34959112300947,19.10308900787294],[-104.35049343451482,19.1008800913944],[-104.3560450546778,19.097193359584082],[-104.35387681918883,19.094486152785976],[-104.35448770875223,19.091413726770497],[-104.35038485653371,19.091664952521626],[-104.34915176658546,19.092819392699084],[-104.34886191806947,19.09709910761785],[-104.34530490443404,19.097961426481447],[-104.34699484994104,19.101468853223764],[-104.34362342592595,19.10395487375223],[-104.34246365115177,19.102839149301417],[-104.33990816216345,19.10424536484544],[-104.32950232548296,19.10047385868529],[-104.32039353916616,19.095059302552556],[-104.31427468661104,19.08974688933779],[-104.31008024564346,19.084735001801164],[-104.30574702892005,19.077161358163266],[-104.30384251642124,19.071526773163612],[-104.30297290224507,19.066743762989347],[-104.30323664902329,19.062180741523605],[-104.30543650753356,19.061638044068843],[-104.30414712275916,19.05840093382284],[-104.31140111719878,19.053582596100227],[-104.31776018838838,19.054687363131734],[-104.31810531354847,19.0582007613192],[-104.3146643392351,19.061171073092623],[-104.32095143594199,19.057167898057628],[-104.32180026575128,19.05550713050195],[-104.3294863721103,19.05072125826905],[-104.3297478199612,19.047252823158374],[-104.33194111681024,19.044182147929064],[-104.33080775737903,19.038387645664955],[-104.3314970082667,19.03543854139747],[-104.33399522483614,19.03361274715388],[-104.33283549787376,19.03113116171238],[-104.33617740175413,19.0294077819359],[-104.33479600175133,19.028901469489313],[-104.33493961414439,19.024301453762632],[-104.33622168771143,19.02244940159676],[-104.33328009091395,19.02037064028542],[-104.33206412408782,19.0176218792094],[-104.32982000256112,19.017937385196433],[-104.3287692701528,19.020005225903617],[-104.3195803595089,19.01893562192936],[-104.30966699129812,19.016963801828354],[-104.29992755567184,19.014122946161592],[-104.28357271426057,19.00870212131906],[-104.26509303221718,19.00131073590086],[-104.25895569820818,18.997718167730966],[-104.25825928583731,18.998612159670984],[-104.25198012437562,18.99702472962366],[-104.24213120932052,18.993117335224497],[-104.23903809948968,18.99233115168579],[-104.22173625871983,18.986179158264804],[-104.19995600994383,18.978063717012844],[-104.18266209967618,18.971249349354935],[-104.17694919940544,18.96929380462541],[-104.17172755275965,18.966695706660005],[-104.16081368955196,18.962683910602152],[-104.15096349727457,18.957927999624417],[-104.13574124326209,18.951716700064253],[-104.12133437044503,18.94491580488034],[-104.10876942401285,18.93860203809379],[-104.09530046580437,18.93071509168277],[-104.09023274645034,18.92819460291878],[-104.07196363409736,18.91739886483981],[-104.06853016224557,18.91503978989499],[-104.05780809370782,18.90883819670205],[-104.0384881696541,18.898291353231343],[-104.0215795052772,18.88996341653126],[-104.01245442182397,18.886609532607054],[-104.00588848456829,18.883767075201774],[-104.00013202548405,18.88032035232368],[-103.9993414441575,18.880551827053182],[-103.99030692102991,18.87408961556264],[-103.98318470641237,18.872582404322202],[-103.9767017592539,18.86706104184759],[-103.9731056758402,18.865534652800818],[-103.96940671161639,18.862955387702414],[-103.96435336145663,18.858509660763275],[-103.95875530283536,18.85150160756791],[-103.95159808413337,18.84498371400224],[-103.94750414552891,18.842092251028703],[-103.93346408186932,18.83374055543578],[-103.89580316020283,18.8109886247575],[-103.87659559738034,18.799230905852312],[-103.8574953005674,18.786690511338747],[-103.83374413232235,18.770647183249423],[-103.80341894083347,18.748910232750518],[-103.78783974423811,18.735712674713852],[-103.77530424447849,18.724405267900124],[-103.75638127111966,18.705727625121426],[-103.75264114451397,18.70305925309941],[-103.74312358472685,18.69299047354599],[-103.74051400919865,18.689327494366296],[-103.73915287678619,18.685057343889866],[-103.73776549963105,18.684155820312867],[-103.73652103199498,18.68830892378378],[-103.73798223014592,18.69407442966252],[-103.73449759531837,18.697196774744555],[-103.73014742698945,18.698791928484127],[-103.72760130450484,18.701639776532375],[-103.72568890413146,18.707676670765068],[-103.72372591860307,18.709166776842153],[-103.71893030472569,18.710431497812635],[-103.71724160470785,18.713208373505893],[-103.71599259209671,18.71887748831375],[-103.71271738091133,18.726353938644536],[-103.70935300119379,18.72902905989281],[-103.70724892526596,18.732076564113868],[-103.70364579299945,18.73895874211064],[-103.70285250970636,18.742859632370653],[-103.70316758086187,18.748494418931386],[-103.70244341038051,18.75124215664414],[-103.70030265269548,18.75435575540746],[-103.69757079204874,18.755922550310913],[-103.68954334527041,18.754531958504742],[-103.68543837883323,18.757292776034546],[-103.68473176652145,18.76231112770421],[-103.68067046082655,18.772130962450092],[-103.67901699999749,18.773211044838092],[-103.67420517119825,18.773336348632597],[-103.66935671649907,18.77446700710243],[-103.66480200202949,18.777872173166543],[-103.65850746583448,18.779198341857693],[-103.65371133537724,18.776542415672736],[-103.65075638859417,18.777936312909844],[-103.64639834850618,18.781649496145405],[-103.64325847798062,18.782940546221482],[-103.63746834679722,18.783527271889],[-103.63646793974908,18.785772346921192],[-103.6332400479759,18.789620149908387],[-103.62961653196555,18.791177266786974],[-103.62678646689119,18.793518963867882],[-103.6200310127773,18.80138320682852],[-103.61984621881635,18.804235134535134],[-103.62159791781511,18.8100959550016],[-103.62036752086749,18.816508596988797],[-103.62069141940702,18.820351809495094],[-103.62340184865946,18.823985467785576],[-103.62617760766778,18.829124298106706],[-103.62619963922009,18.830974373901824],[-103.62133197807913,18.836722905943134],[-103.61695730788358,18.840602364022175],[-103.61833532100445,18.845440385256154],[-103.62443926958355,18.852658039976063],[-103.62873786660805,18.856033077473],[-103.6342892411152,18.859219803507017],[-103.63786715492665,18.864530957805073],[-103.64057237080596,18.867244496701744],[-103.6403431138902,18.869537250051053],[-103.63771700399985,18.872232393389595],[-103.6319609782235,18.880063186360132],[-103.63113922810612,18.88397239665977],[-103.62675392118797,18.88875480827795],[-103.62447456828653,18.88872625931674],[-103.62028188562374,18.89303901120263],[-103.61468262991502,18.892164211256045],[-103.60803928706036,18.887847134377978],[-103.60562506066475,18.883163793207814],[-103.60160992149639,18.881300519486217],[-103.59733658572645,18.88435095543946],[-103.58916404223481,18.877041447913655],[-103.5879898604041,18.875281448320834],[-103.58985397432724,18.87077972146875],[-103.58757568671598,18.865846947811292],[-103.58437688294032,18.86615624253818],[-103.58341188407206,18.871355709253123],[-103.58372327389975,18.873907475318447],[-103.58154477689175,18.875925096561105],[-103.57812406225548,18.875272420176714],[-103.57708838484655,18.873556649187265],[-103.57324414423948,18.87132789368036],[-103.57234299756237,18.8725943759228],[-103.57223008111589,18.88021873173193],[-103.5689628949346,18.88365645750156],[-103.56885328886347,18.892518804426118],[-103.56681064241786,18.89358649895695],[-103.56182445949128,18.89418162448078],[-103.55927723255923,18.89652062776463],[-103.55903419507268,18.9038628471136],[-103.55738688290273,18.906842992100337],[-103.55332838823824,18.9059907982803],[-103.55032464018342,18.907845724533786],[-103.54148906215613,18.909665224812443],[-103.53952026072545,18.909403081862934],[-103.53323971789405,18.905218079228575],[-103.53083750958331,18.907286124253574],[-103.52952131711999,18.91151686717717],[-103.52841403090281,18.912316716588634],[-103.53306797680443,18.919246005506352],[-103.53427787133194,18.92458058650942],[-103.5336203287734,18.927036207916274],[-103.52724409513763,18.928100458237054],[-103.52418449692465,18.9270578004261],[-103.52249353885475,18.92792810768276],[-103.51922856561265,18.932910000374022],[-103.51442162394108,18.934388743030183],[-103.51385290382132,18.9364073438976],[-103.51495829355684,18.93911734254675],[-103.52010659300169,18.94306730812184],[-103.52234654424711,18.947037630592092],[-103.52231826232338,18.948515705833813],[-103.51946784048761,18.950226155773407],[-103.51240745139881,18.949407631586098],[-103.51068017635617,18.946370347466598],[-103.50839814874769,18.9467211493818],[-103.50535444778842,18.949922324239083],[-103.50419034863046,18.95522602200714],[-103.502928332431,18.95707459524209],[-103.50413813362343,18.959382464368787],[-103.50662676525457,18.959362680927256],[-103.50904889514624,18.962107716079686],[-103.50860144490804,18.963671327175064],[-103.49771820666672,18.96065358476301],[-103.49417954305034,18.95812179075176],[-103.4904809035491,18.95899119004264],[-103.48876407663607,18.962144168736017],[-103.48871414440168,18.965598328052295],[-103.48954205084391,18.968691500051705],[-103.49440022239918,18.970114442125066],[-103.49555799314555,18.973271889348382],[-103.49202288654203,18.977022010125495],[-103.48985071036105,18.98077164059879],[-103.49219461426225,18.987066580303747],[-103.49083121195048,18.995820808693622],[-103.49270821462261,19.00051111554319],[-103.49309924519798,19.003368616096168],[-103.49394911139825,19.00689235958498],[-103.49682941970781,19.01125263146332],[-103.49874190768566,19.01203923517363],[-103.4944650583397,19.01470608369948],[-103.49396036140166,19.021829228854642],[-103.493083357057,19.023478810231722],[-103.48975927406775,19.025346310906173],[-103.48850554260025,19.027586746900226],[-103.49095746577478,19.029761535793227],[-103.49090519436879,19.032669836224443],[-103.49695104631536,19.035176780156007],[-103.49631768846831,19.03880753531456],[-103.4985223617789,19.0451481316573],[-103.50181187987795,19.049133684406456],[-103.50624685937589,19.049281363273963],[-103.50936405574947,19.057556441590805],[-103.51386185977026,19.06032433888703],[-103.51695387406164,19.06098328993221],[-103.51799286476302,19.06294451511269],[-103.52232352652209,19.0659539370576],[-103.52324975553483,19.068360044613485],[-103.52182457617863,19.075236325855656],[-103.52222599436311,19.076665237369753],[-103.52558227952579,19.07780975983411],[-103.52642621775033,19.079218005410098],[-103.52505184660959,19.081060289548134],[-103.52455248594345,19.084962071160078],[-103.52256214825093,19.0922168741115],[-103.5182590460006,19.097232671655206],[-103.51807429053366,19.097420121541063],[-103.51760363046265,19.099296749735572],[-103.52112709123298,19.101980284027945],[-103.52157314368804,19.10370225473406],[-103.52056956562484,19.110251648632754],[-103.52083914398492,19.11246622861404],[-103.52361679328777,19.115640659526832],[-103.51955694453937,19.124454541771286],[-103.5153762932257,19.12833843221273],[-103.51429302612593,19.13019762323114],[-103.51098380140263,19.132710042616907],[-103.51401623232277,19.13711375905217],[-103.51172918114662,19.146752410559145],[-103.5097486582967,19.148946678491086],[-103.50916564223354,19.155961313290163],[-103.50212055152105,19.162485901123034],[-103.50197873415823,19.167963300671204],[-103.50312680016572,19.170172117447066],[-103.49938957105297,19.17211316219101],[-103.49763088226717,19.17464214902077],[-103.49755433256234,19.177295469093053],[-103.49884413772332,19.180590535124452],[-103.49824440295885,19.186043147428506],[-103.50142565267822,19.190105227320146],[-103.50353263693063,19.194860675650943],[-103.50788999739859,19.19867033278325],[-103.51086506342807,19.199657936787673],[-103.51104561950234,19.205662973415656],[-103.51192274153931,19.208143695735146],[-103.51507366948721,19.211597339206094],[-103.51111338918321,19.212420232447073],[-103.50975003104793,19.214588031983567],[-103.51166639856143,19.21694576307698],[-103.51323529624591,19.21648214490608],[-103.51395368843964,19.218814141395683],[-103.51099443023492,19.221671699415765],[-103.5106887607023,19.224603465661005],[-103.5064897186997,19.227767781531668],[-103.50761625641655,19.230148067665027],[-103.50583815672888,19.23594279578549],[-103.50579581408556,19.235994670678508],[-103.50573942478735,19.236734783221095],[-103.50593050869674,19.237136427445478],[-103.50905877853023,19.24016192410579],[-103.50928249453256,19.24055545855191],[-103.50990621091654,19.243301509651474],[-103.507678733526,19.246373442172114],[-103.50751029179332,19.249974836276976],[-103.50546009060827,19.252388548670297],[-103.5055426235013,19.25467786686437],[-103.50792572814407,19.258251600037227],[-103.50673768425719,19.26638914366174],[-103.50887566202584,19.26711126223188],[-103.50707453176636,19.272701025882725],[-103.50798137220829,19.275338911885683],[-103.50683922805126,19.280058727550056],[-103.50670941197853,19.29228358814072],[-103.50918158526594,19.295149914944886],[-103.50597477501947,19.296179520525584],[-103.50509385189679,19.299336797614274],[-103.50096688432058,19.299750592995508],[-103.50011619324835,19.30759211367115],[-103.4980575446022,19.30917435078686],[-103.49444975170456,19.31028739897897],[-103.49167280981789,19.308583713796168],[-103.48964010929114,19.31188906691807],[-103.49001762921375,19.31452482833498],[-103.49248623159286,19.317047868837562],[-103.49572381521108,19.31864252205736],[-103.49406304793058,19.322284035310076],[-103.49080555652017,19.32332367929729],[-103.48681853319135,19.32741341868342],[-103.48742453152295,19.33182942188506],[-103.48634645165953,19.33749456094995],[-103.48757084702038,19.340214556396973],[-103.49176301082286,19.344292061648844],[-103.49200526002505,19.345827991670944],[-103.49753579075798,19.347119859507472],[-103.49974312361763,19.344315457468497],[-103.50186658252045,19.344990239975857],[-103.50399871303341,19.347881727436175],[-103.50705804032657,19.349673312497657],[-103.50891754762466,19.34950484424104],[-103.51041684582856,19.351293300318673],[-103.51512372156645,19.35200094508815],[-103.5155762329178,19.35432250929233],[-103.51871122525648,19.354866873125786],[-103.51695057100306,19.356468436031037],[-103.52008338594572,19.356365522097633],[-103.52346900227633,19.35951034458151],[-103.523280679079,19.36400649198856],[-103.52478531028459,19.369051836495032],[-103.52613402391506,19.369069157479885],[-103.52672200461262,19.372764729623782],[-103.52835064183131,19.37371061586174],[-103.533257598374,19.380237328943394],[-103.536106977658,19.380949915005885],[-103.53663112759006,19.385084299936693],[-103.53829896037979,19.388511914971502],[-103.54249388929497,19.390780164224793],[-103.54321703756023,19.394127112531237],[-103.5454449720716,19.394826595104405],[-103.54813207090234,19.397878802089338],[-103.55169557940502,19.399176910417225],[-103.55212733738438,19.40122305863588],[-103.55473976208805,19.40291754473452],[-103.55473741001117,19.40338028029106],[-103.55463690724355,19.40436209624653],[-103.55494062066356,19.404451206371505],[-103.55621120009982,19.40697173724351],[-103.55907491168244,19.407584133688204],[-103.55891123424459,19.409004617874132],[-103.56485518998244,19.406395305775447],[-103.56907280370194,19.40641070923425],[-103.5745349599083,19.412316098581698],[-103.57448315343487,19.414952176924885],[-103.57720977943399,19.416934510419367],[-103.5754896374433,19.419986869775073],[-103.57872542856819,19.42616333830904],[-103.5781768588717,19.4286827485372],[-103.57812452534176,19.429862551579845],[-103.57891669691799,19.435485760131428],[-103.58292536026335,19.436810342385286],[-103.58632852604603,19.43952459679707],[-103.58666282500326,19.44402944634146],[-103.5889457931305,19.445514089481264],[-103.5944085488988,19.452958720976028],[-103.59818994919374,19.45542555488703],[-103.60030891335697,19.461062754897284],[-103.60285508268868,19.46393076447822],[-103.60767826814623,19.46561926903945],[-103.60868770735703,19.469630994248575],[-103.61112784250082,19.46956768227068],[-103.61535756716717,19.47499544562146],[-103.61379407095848,19.480267595995315],[-103.61445676335524,19.48120288307939],[-103.61241211787365,19.48563124506137],[-103.61236858394108,19.48921261581671],[-103.61482421937137,19.49404660771802],[-103.61138838038664,19.495189913110266],[-103.60619930487621,19.500557861997436]]]]},"properties":{"cve_ent":"06"},"id":"inegi_refcenesta_2010.31"}, +{"type":"Feature","geometry":{"type":"Polygon","coordinates":[[[-99.85926350363872,27.752751062031052],[-99.84322258776785,27.769862819050616],[-99.84327978908698,27.773729019686698],[-99.84537024353688,27.781065605787262],[-99.84885164470154,27.78759361593268],[-99.84938091113236,27.791396822950276],[-99.85075948963623,27.793903172909154],[-99.85701692827172,27.79444279575722],[-99.86015090519203,27.793535147923194],[-99.86265464075001,27.794185660142944],[-99.86927642723822,27.794280008159262],[-99.87549998727877,27.796797039600676],[-99.87763633945787,27.799651338161368],[-99.87778197162328,27.801462910850546],[-99.87443624095533,27.810246010667413],[-99.87430918216933,27.81571858713727],[-99.87755411712641,27.823334557376825],[-99.87811400480894,27.827708502379267],[-99.87600103351662,27.834297522393854],[-99.87588221316713,27.837665592216354],[-99.87798056296589,27.8438551525482],[-99.88157529268125,27.84961961336711],[-99.89281824632712,27.8556155722236],[-99.89657100641364,27.860623060003775],[-99.90131727113186,27.86440976420556],[-99.90408261212059,27.873704926703567],[-99.90424182313126,27.875670513374246],[-99.90275695999014,27.88194014749206],[-99.89889944229952,27.885794821903175],[-99.89394171764434,27.892978280472335],[-99.89352797888228,27.899479550627063],[-99.89798392315305,27.909138123355888],[-99.90062542046826,27.912447294532058],[-99.91186220636905,27.915645675056794],[-99.91754427907313,27.91791055085747],[-99.92159745545547,27.92177852330059],[-99.92582166144484,27.927078774713266],[-99.92412089181238,27.929242047027117],[-99.9243650968383,27.93211891554813],[-99.92718918558649,27.93641569252071],[-99.93284625289317,27.93721358206932],[-99.93652945487747,27.939649574899533],[-99.93868201354007,27.94659341973818],[-99.93883485598371,27.95216408184524],[-99.93658229789798,27.95793667820567],[-99.93391812823012,27.961977548136417],[-99.93255997588022,27.96617370696464],[-99.93092503112626,27.97968691637118],[-99.9337975209786,27.981835788785077],[-99.94442839006791,27.982417878542265],[-99.95399557592873,27.98328450904063],[-99.96017203683613,27.98333470806233],[-99.96479379670882,27.984208967538677],[-99.97106618037526,27.986242951100678],[-99.97701000957062,27.989307355433823],[-99.98487406265662,27.9908734675966],[-99.99049225814707,27.993616542486336],[-99.99557830058706,28.000688885956322],[-100.00058735945493,28.01177762506154],[-100.00402573458229,28.015663308031435],[-100.00764132037119,28.02146293570837],[-100.01266989979518,28.037561318587734],[-100.01293164076043,28.043130862924443],[-100.01558078375098,28.051979522376712],[-100.01677827815553,28.06189487019401],[-100.01774709820086,28.06513351474615],[-100.02023462942702,28.06785454020053],[-100.02835137301344,28.073133738387924],[-100.03591144342772,28.0758451975596],[-100.04450512848803,28.07839550916492],[-100.04918726644388,28.081306024782066],[-100.05300302124976,28.085052409533432],[-100.05540687375719,28.089614863884663],[-100.0566526765113,28.093913650037848],[-100.05538480987121,28.100581610488973],[-100.05647375206036,28.10475187355189],[-100.06070667130973,28.108944481566084],[-100.06382475703322,28.110804852876242],[-100.06780694041612,28.114328366551717],[-100.06999734101197,28.118427754681306],[-100.07504358355203,28.125067670099668],[-100.07965400835155,28.13290946945159],[-100.08338712324229,28.14332043510666],[-100.08703914023619,28.146820296627993],[-100.09019957530319,28.148327457858272],[-100.10783943550376,28.153281648871427],[-100.12006650847081,28.15584925349316],[-100.1300825440573,28.162141293897264],[-100.14068246617228,28.168007543523572],[-100.14309737462469,28.168312538684233],[-100.15510707638452,28.167327692143772],[-100.15911940583419,28.167688622797982],[-100.16759852667991,28.170930158837223],[-100.17380644153712,28.178905154990503],[-100.18425446022394,28.184961394389177],[-100.19574173763033,28.189728004769165],[-100.200951173681,28.190515534242422],[-100.20646172824479,28.19013374444762],[-100.20916112294037,28.191226233421617],[-100.21136490008695,28.193931818140868],[-100.21290414651469,28.19911980454441],[-100.21373589272906,28.20559705158837],[-100.21341199835382,28.209204396687085],[-100.21707285683652,28.22576952008484],[-100.2195267311439,28.231445958615268],[-100.22228173757338,28.23438804716318],[-100.22478630715347,28.23574627946067],[-100.22930233989587,28.23594099444415],[-100.23692548875954,28.235066744712014],[-100.24120768452815,28.235145658568626],[-100.24425220631014,28.23438383435297],[-100.25070685701053,28.235764528249433],[-100.25658942024035,28.239294197082017],[-100.26053133059321,28.24428068032114],[-100.26716533257206,28.250248009232166],[-100.27635446961563,28.26106158524084],[-100.28174814965547,28.269513218625775],[-100.28412788916387,28.271400182450805],[-100.2894022025751,28.273788559442664],[-100.29362129049093,28.27876336464402],[-100.29424398041238,28.283574508739434],[-100.29129646974536,28.292556507065683],[-100.28819372921288,28.299605350384297],[-100.28615914192994,28.307461885678663],[-100.2867600644093,28.31324245951106],[-100.29118307913768,28.32001263204438],[-100.29330529693561,28.32132298391781],[-100.29652377786209,28.325752410015184],[-100.30588879619955,28.335215876592144],[-100.30894916276833,28.338757199147153],[-100.31048620025257,28.343132902296816],[-100.31410612374782,28.34554988402624],[-100.3155216032639,28.34884365014034],[-100.3169842740142,28.356250536856408],[-100.31875868007097,28.3600222741307],[-100.3241772923177,28.365873444919657],[-100.32904781277415,28.371927015150163],[-100.33962860245396,28.382761843390142],[-100.3429313794802,28.387157748729578],[-100.34741099902459,28.396749342306066],[-100.34948188654994,28.403400469524968],[-100.34720980864876,28.406848378039058],[-100.34536394607255,28.407957561234298],[-100.34200822836544,28.413553325601356],[-100.33591303129441,28.430137020315556],[-100.33725135087985,28.434625705511735],[-100.33770995513788,28.443627685061074],[-100.34079564330358,28.448935548262796],[-100.34763617782568,28.45506774162891],[-100.35032516274595,28.4586480465577],[-100.36035010738436,28.466452203636322],[-100.36180389346583,28.469066391844592],[-100.36652499838084,28.473100546512512],[-100.36839922994324,28.47666689780823],[-100.36790321676881,28.47947797738908],[-100.36324395319195,28.482024225211603],[-100.3561009776464,28.481878428692596],[-100.3443688339243,28.48615756788115],[-100.33846292608285,28.49047767009438],[-100.33384964361437,28.49681963266869],[-100.3342096534929,28.49981693237646],[-100.33756364230163,28.50156534140541],[-100.34891765286557,28.504116781355208],[-100.35207607522307,28.503900638518076],[-100.35664195532934,28.50493479179113],[-100.35882816473912,28.50718286153341],[-100.37695567515027,28.51201866975947],[-100.38076854446592,28.512094993139442],[-100.3866612228199,28.514078711624165],[-100.38854026019902,28.51539898681716],[-100.39369266519765,28.526185133476417],[-100.3956825380335,28.529363554118788],[-100.39993586373402,28.53088366671443],[-100.40336788894604,28.533663022258565],[-100.40563799126215,28.537044655626175],[-100.40928895276016,28.544354935210322],[-100.41099986771803,28.549752016711864],[-100.41086401508687,28.552856329830092],[-100.40804344196732,28.55813254388221],[-100.4057538336865,28.56036458936012],[-100.40462617310402,28.563160020820987],[-100.39996465757264,28.570104129034974],[-100.39728997097882,28.575316184114058],[-100.39680425535227,28.58096693979695],[-100.39869381920954,28.585376022785283],[-100.4028721659588,28.587533191677494],[-100.40885616987515,28.5887047674737],[-100.41697125202853,28.592503660019986],[-100.4298578857942,28.59622953804427],[-100.43188810999362,28.59771043430908],[-100.4333402411894,28.605874836973555],[-100.4346730232586,28.606783450088642],[-100.44352737319292,28.607666740739944],[-100.44715694432608,28.609227030143188],[-100.44859404927445,28.61761047560475],[-100.44735658679747,28.621074380468144],[-100.44693828279571,28.632076806438477],[-100.44542273689672,28.637649300811802],[-100.44670982564668,28.642044058221302],[-100.45533060275528,28.64278551396967],[-100.45796347938852,28.640954624227277],[-100.4614671379797,28.64083961315231],[-100.47322470527297,28.646351692357086],[-100.47515792895518,28.64788881894259],[-100.47962444513439,28.655607096464564],[-100.48311758636152,28.655483104772998],[-100.48922969285667,28.65813237216088],[-100.49284849495655,28.65786076695855],[-100.49661472756407,28.65869085888386],[-100.50017720428446,28.661668157231134],[-100.50158250478398,28.666971285337013],[-100.50819418450584,28.684085532662266],[-100.51001771525915,28.691366789883773],[-100.51168420804828,28.707679436729904],[-100.508908317465,28.71071534192805],[-100.50666790651258,28.716932147871375],[-100.50796006595169,28.722456786790133],[-100.50675071913281,28.732278610152434],[-100.50737043396703,28.740417603338642],[-100.5098566738601,28.741536504882333],[-100.51417497282,28.741935480160237],[-100.51535950192897,28.744824799421963],[-100.51433396099031,28.747321253477878],[-100.5145173692656,28.751331153589888],[-100.5166014512289,28.754125590006936],[-100.5210576024212,28.75761245475178],[-100.52310798177962,28.757846867142632],[-100.52898695980764,28.75592643692596],[-100.53344466158592,28.758811460678885],[-100.53293605814497,28.7640336220137],[-100.52969885871005,28.76865387213536],[-100.53050983236955,28.772120971841048],[-100.53427609709888,28.774534700664958],[-100.53776573932822,28.78009644398486],[-100.53732496171227,28.783946668560475],[-100.53298684635229,28.7885364445674],[-100.53265020762944,28.793106317145885],[-100.53377846262305,28.80122683163836],[-100.53583907231132,28.805960168997046],[-100.54182144543995,28.80804625083283],[-100.54633190363558,28.813308953957517],[-100.54551347643377,28.818458337842515],[-100.54667107738805,28.825452521477416],[-100.55319434370602,28.82816401668731],[-100.56179211003342,28.829199205163945],[-100.56771032522698,28.827780602003145],[-100.57064049506033,28.826098532521712],[-100.57442284036523,28.828552170550495],[-100.5768932375928,28.83497619967511],[-100.5769204119913,28.83677835830207],[-100.57401709488516,28.843724813784718],[-100.57290494763868,28.84796948503549],[-100.57361327587796,28.849698350012204],[-100.58191422442223,28.857196506011917],[-100.58619098342189,28.85910272927896],[-100.58986743932434,28.86157132966298],[-100.59153227786646,28.864635492482307],[-100.58984621395558,28.871211817201242],[-100.590389088292,28.87291712211237],[-100.59474296135346,28.87372894476505],[-100.59690020899416,28.87313689991879],[-100.59901703730128,28.87524199324639],[-100.5993382043199,28.87858548500361],[-100.59719875080259,28.881325089210748],[-100.59055234737605,28.883550651183327],[-100.58926451663604,28.885497069429107],[-100.59105202268853,28.88944139561744],[-100.59400551798336,28.889200479166902],[-100.59942320148951,28.886519365882805],[-100.60182356193496,28.886490848736287],[-100.60408545814386,28.888884383623406],[-100.60256323779748,28.892713403743016],[-100.60221925814739,28.897780718336207],[-100.60076412086437,28.89933507616655],[-100.60228905632852,28.902306206808362],[-100.60746919156554,28.902768738932934],[-100.61216274158795,28.900785713808773],[-100.61582691106787,28.902930494646114],[-100.61648028167338,28.907300031576824],[-100.61837635195639,28.908795516361863],[-100.62253956127626,28.910192509144338],[-100.624922383007,28.90900506084978],[-100.62479361418269,28.906380199943214],[-100.62884184576325,28.9030868939343],[-100.63256465648675,28.903744267650154],[-100.63638197481373,28.911323050785768],[-100.64037311502881,28.913720646008414],[-100.64101108139408,28.915180563169088],[-100.63811998148844,28.916630065095944],[-100.63277735195015,28.916398762458584],[-100.62996105306456,28.91820808950007],[-100.62965166268492,28.92255071349308],[-100.63105896474354,28.924516357230118],[-100.63642772522684,28.92594554162349],[-100.6396470902688,28.928660615015417],[-100.64213289845304,28.93280910075805],[-100.64339791810261,28.937541136036316],[-100.64561275370653,28.94010292061938],[-100.65076894857765,28.94199631890126],[-100.65153109625635,28.945720921816587],[-100.64919890371766,28.952145837951036],[-100.64728549090415,28.95527207747483],[-100.64710822658077,28.9588790994693],[-100.64828406317702,28.960976099156824],[-100.6506200887913,28.96223836031089],[-100.64916776889436,28.964882552784616],[-100.64667062168354,28.966411685045557],[-100.64665884386682,28.971865980387918],[-100.64833047617259,28.97544298295776],[-100.6481979390478,28.984423835232406],[-100.64566651741103,28.98789840517975],[-100.64688970217372,28.991606054549834],[-100.64919416794163,28.995774067149796],[-100.64867137304788,29.000197835299446],[-100.651036459703,29.008335377257424],[-100.65437133339549,29.016071510503423],[-100.65630999638717,29.018100516432014],[-100.66020542184606,29.03191745896754],[-100.66317930103946,29.046469788011564],[-100.66366917508168,29.050548663012364],[-100.66312766825928,29.05771146748492],[-100.66340771116342,29.064046613518997],[-100.66442231964481,29.074681460284523],[-100.6688406087261,29.090028796372053],[-100.67200685513978,29.09448528032118],[-100.67361346767382,29.09998267999282],[-100.6813857875847,29.109117001979996],[-100.68440675794687,29.111394567870548],[-100.69892043184177,29.116901371668916],[-100.70836305547857,29.11873715956841],[-100.72634213885618,29.128607602101738],[-100.73175919919902,29.13409697042647],[-100.7378280934933,29.139024488276732],[-100.73889478278699,29.142707691044393],[-100.73709605661719,29.147943241266546],[-100.74286632098006,29.152730343061023],[-100.7468453819144,29.15454741447911],[-100.75258182911551,29.155484334456105],[-100.75815775791523,29.15776761428583],[-100.75959025878143,29.157034350768015],[-100.76350867464652,29.16010441114713],[-100.76340135962681,29.164157293212952],[-100.76609729065905,29.166137582016688],[-100.76970815440382,29.166365924298987],[-100.7726735472113,29.168293169680055],[-100.77377941926505,29.17080324890543],[-100.77600918852647,29.172507704611917],[-100.77500460565312,29.17484138811153],[-100.77032339685763,29.179619587102707],[-100.76624892499717,29.184895306898113],[-100.76578681027291,29.1917150848833],[-100.76701315945849,29.195706030358906],[-100.76932604202949,29.199239803736816],[-100.77603064371732,29.199754903810003],[-100.77664560996078,29.204476130566718],[-100.77392738676934,29.21076489262788],[-100.77634939322314,29.21276139209533],[-100.77894852173335,29.217901567602212],[-100.78151316044017,29.21954966777446],[-100.78159765286335,29.221216588563436],[-100.78417269796267,29.226713113764276],[-100.78558988728082,29.228032781720344],[-100.79142848972162,29.225641555864456],[-100.79419940143032,29.22676703705571],[-100.79647967815225,29.23023750175622],[-100.7967342912944,29.235453588527434],[-100.7947698049274,29.238641847965425],[-100.79427046991628,29.242100332208224],[-100.79754437840654,29.246972000677204],[-100.80127081287065,29.249827793127736],[-100.80772977614083,29.252810662513184],[-100.81146376526976,29.253575364009293],[-100.81570439697748,29.253490201250997],[-100.81633182126103,29.256300278873482],[-100.81285174273233,29.26144641363362],[-100.81467197135305,29.264258970021558],[-100.8181807394538,29.264253535413616],[-100.82338342626105,29.261761375747255],[-100.82961204129947,29.262008812243096],[-100.83349038661993,29.261242790011465],[-100.84041042555737,29.264217911532683],[-100.84335003726108,29.268034993485458],[-100.84862786572444,29.271842180903548],[-100.85324090214499,29.2724972167984],[-100.8544377685215,29.275325801662348],[-100.86173835119979,29.276301314706586],[-100.86325303088762,29.275837650459493],[-100.87494407375402,29.279271020738918],[-100.87973911750527,29.281861817215315],[-100.88103269540738,29.285792189334813],[-100.88016618990571,29.28901456745524],[-100.88132250654508,29.29833144582784],[-100.88461933050712,29.302787184335784],[-100.88643556656467,29.30777514829714],[-100.8897195637411,29.308388229808713],[-100.89340971874958,29.31060623346218],[-100.89789474675922,29.309287966953093],[-100.90654004657114,29.313334211964502],[-100.90652266759929,29.315515954368266],[-100.90923889778037,29.317506410888257],[-100.91310458542091,29.317738627454787],[-100.91725626577659,29.319809798120843],[-100.9178259702997,29.32447706591762],[-100.9226002605622,29.32679870360488],[-100.92757930803185,29.326625420017592],[-100.93585889818434,29.331408639405993],[-100.93985044482412,29.332618958145417],[-100.94181935265965,29.338975334681493],[-100.94465378827653,29.344070631111038],[-100.95043368413303,29.348016894564466],[-100.96228947204088,29.347030708146804],[-100.96520024591507,29.347736147386627],[-100.9720061120953,29.35177795556757],[-100.9737310294812,29.355210988160366],[-100.97806166700076,29.356656070571432],[-100.98491339742617,29.35990940909744],[-100.99467853287445,29.363205787257925],[-101.00503581375068,29.365440310303484],[-101.01005872899145,29.368532171365928],[-101.0141293935132,29.37424895188923],[-101.01334275581775,29.379937429948654],[-101.01702248342775,29.387727643400922],[-101.02056496570088,29.392455290724342],[-101.02450751627907,29.394294529177614],[-101.03035314104642,29.399315408237157],[-101.03385419527547,29.403875617941196],[-101.03682885526649,29.40622715656906],[-101.03882831223598,29.41054327463945],[-101.03779440593735,29.413209729618927],[-101.03824526439848,29.417525545252147],[-101.03955169459942,29.419586366702163],[-101.0430388482244,29.42915503864924],[-101.04693613000478,29.43275113495622],[-101.05114849677585,29.435240220155492],[-101.05700376166237,29.440754231916117],[-101.05717587688383,29.44654917953278],[-101.05971750475601,29.454786806987954],[-101.05983428236738,29.460565014627093],[-101.06181234323611,29.46424552868524],[-101.06802797139176,29.465624801764307],[-101.07425626597006,29.467618476690916],[-101.08220454536195,29.471183651931142],[-101.08772037796712,29.472695909350136],[-101.09307555592994,29.47322664721395],[-101.1048548878868,29.47156504523474],[-101.11309479895067,29.47006423542814],[-101.11583933905928,29.470238497985633],[-101.12008044294436,29.47181724625301],[-101.12980644718613,29.47668707091617],[-101.13318096351685,29.476511939187503],[-101.14063539841112,29.47348486107171],[-101.14272874555314,29.473210338167746],[-101.14763302917066,29.474461498808807],[-101.15200083220009,29.477955873120663],[-101.15640600915793,29.483049515026607],[-101.16885053831072,29.499710268348963],[-101.17257557939121,29.5055107058173],[-101.17512218513559,29.51042286412138],[-101.17743134139255,29.513310823264305],[-101.18137091236048,29.51619973027516],[-101.1855522579906,29.518001855420835],[-101.20710742932954,29.521362034617937],[-101.22155788412499,29.52128861337235],[-101.22688524353254,29.521707824772875],[-101.23465188517036,29.5234657201687],[-101.23824898479393,29.52360334427243],[-101.25090361072648,29.52105084107677],[-101.25576925535205,29.520890778070566],[-101.26004385319527,29.523771834472882],[-101.26107256410006,29.526661355303133],[-101.26110709011289,29.53070358499582],[-101.25973038631179,29.53827588934257],[-101.25833298155987,29.54276552298819],[-101.2543469884859,29.55127971819826],[-101.24930629013096,29.558869814386753],[-101.24490134941323,29.562468809721565],[-101.24346663014882,29.564581415206987],[-101.24320963686216,29.56998019078418],[-101.24531403570882,29.577385041068567],[-101.24767572739682,29.58386674837101],[-101.24833319524765,29.588419836924288],[-101.25044684944618,29.595376021157904],[-101.25227365568117,29.60391150476636],[-101.250130022772,29.608101499971212],[-101.24784920584273,29.616954627724056],[-101.24811520591874,29.620435863493356],[-101.24980945337182,29.623789257717362],[-101.2527506361306,29.626378004668425],[-101.25695455484009,29.628388414584094],[-101.26339216455659,29.630564750354893],[-101.26831075432665,29.629802867426577],[-101.280541037869,29.618151108742666],[-101.28070586810293,29.61442443085565],[-101.27813265664327,29.6084892724802],[-101.27694027310451,29.601108985950418],[-101.27833217064256,29.588962016825803],[-101.28362587848824,29.58253757195814],[-101.28920774795887,29.57378894379582],[-101.29152465874216,29.57207860332744],[-101.2968764627251,29.572228182240792],[-101.30024961564004,29.574305417278822],[-101.30617452446057,29.579944435953053],[-101.30879815811875,29.58319108358819],[-101.3105218069656,29.586882447579228],[-101.31188873909281,29.59334633134256],[-101.31267660035479,29.605904196008055],[-101.31131976157002,29.614473167213873],[-101.30966602329136,29.61870846326144],[-101.30475692214458,29.62684489531523],[-101.30240558656226,29.631969837107988],[-101.30050211617493,29.63793873438044],[-101.30022850174373,29.642978687416303],[-101.30175050923816,29.650959282091378],[-101.30444262240565,29.653478507695297],[-101.31134165764757,29.65682004434251],[-101.31449036696392,29.65778966737878],[-101.31731716813499,29.660112600774312],[-101.32010743477292,29.660838409817757],[-101.32640823283418,29.661042609957406],[-101.33076252065177,29.65982834055842],[-101.33688163780295,29.659627366316727],[-101.34299004344336,29.66230332459247],[-101.3458575032335,29.662760935340543],[-101.3485696475426,29.661308871423216],[-101.35231000145177,29.65360651157465],[-101.35665428619274,29.648421600085328],[-101.3601969178273,29.648116482913792],[-101.36233836225193,29.651666092094104],[-101.36408794160087,29.661166161375036],[-101.3640709977978,29.66518483869072],[-101.36493789700631,29.667856359330983],[-101.36891573498008,29.672792404412462],[-101.3725624417147,29.675704589257748],[-101.37346038064715,29.679682660602225],[-101.37011878432031,29.69352327177552],[-101.37029121979083,29.697320673864624],[-101.3740332592501,29.702165271128592],[-101.37715008940967,29.703731201449102],[-101.38079713241416,29.704246624195378],[-101.38867736717782,29.70775986466373],[-101.39473286999879,29.711103815378237],[-101.39869712004975,29.71560707994979],[-101.39868346849823,29.72005290897937],[-101.39618730965339,29.72828450456319],[-101.39643924709594,29.73392814589721],[-101.40054865944347,29.738372195011834],[-101.40706407267197,29.739999587358795],[-101.41363381495808,29.743884930795446],[-101.415696440798,29.74641460959822],[-101.41602791640884,29.750413611025465],[-101.41258738930696,29.754276096864714],[-101.4037164436537,29.75762115859885],[-101.40074504592195,29.759558091054828],[-101.39865384667678,29.762642418077064],[-101.39877373728882,29.76767225538515],[-101.40131976642601,29.77070685658822],[-101.40381687119299,29.771688406326405],[-101.40886507629313,29.770980346550232],[-101.41386886880497,29.76842441535416],[-101.42661211511023,29.759564898222663],[-101.43326490701321,29.753523736147883],[-101.43685708527204,29.751095643410736],[-101.44401035115385,29.749834015880083],[-101.44898428083548,29.75097430186679],[-101.45104291546909,29.753298090576664],[-101.45272314296597,29.7642549898556],[-101.4550877241544,29.769448386655142],[-101.45567894117676,29.774366613465304],[-101.45338663228142,29.781802989495304],[-101.45420335468765,29.786306263080405],[-101.45946745795499,29.78959721449951],[-101.4642981197909,29.789609901084475],[-101.47189688584086,29.787208754192477],[-101.47946238369144,29.783472844880976],[-101.48141855538069,29.78158768581676],[-101.48435321721496,29.776398018612667],[-101.48642435612555,29.774407955242793],[-101.4975592787597,29.76771354428473],[-101.5014907432377,29.764516057761398],[-101.50357418745324,29.76377508194895],[-101.5091480683912,29.764167595734136],[-101.51466147251699,29.76532272147358],[-101.51999761353846,29.76492985571656],[-101.52443639245206,29.76317011086661],[-101.52746920804486,29.76023205083601],[-101.5306037273113,29.758451709764984],[-101.53462843769637,29.757873526307094],[-101.53743322094067,29.75840671431706],[-101.5395284571265,29.760551691711385],[-101.53972857905342,29.763926590641972],[-101.53822127517287,29.77394089048755],[-101.53805969752233,29.77915415099136],[-101.53896305036614,29.786361289612557],[-101.53829071857893,29.789726224271305],[-101.53550026791947,29.794395326109964],[-101.53525899000209,29.799197994263807],[-101.53910229716564,29.804663755079673],[-101.54042407276751,29.80886174847808],[-101.5436272109439,29.81209291635639],[-101.5469238138844,29.81122765715702],[-101.5501557046839,29.806238192883598],[-101.55204846791071,29.804440692448168],[-101.55766391567607,29.801287030042317],[-101.56460055023695,29.8008232586958],[-101.56783190321926,29.799033587768292],[-101.57005136793725,29.795898059933393],[-101.57123368944701,29.79257365421006],[-101.57471989972356,29.788171313766952],[-101.57283714294329,29.78455728242517],[-101.57326152925606,29.777981205766707],[-101.57236554815518,29.775065525059347],[-101.57289746943803,29.772105974939677],[-101.57486133968382,29.769276016549725],[-101.5803780373783,29.769424647595883],[-101.58388736869097,29.770515711188978],[-101.58879488074922,29.770637046878733],[-101.5952579864213,29.771641291487413],[-101.59750887424116,29.77324863116104],[-101.6039445545074,29.77445341284863],[-101.60654725796218,29.77413009361254],[-101.6163987120218,29.76974655325199],[-101.61975597662854,29.76961205072905],[-101.62488043284651,29.77091337169844],[-101.62883847974348,29.77030500235918],[-101.63276376743971,29.765048545987497],[-101.63310130791137,29.761024801722954],[-101.63580619514346,29.758017088444888],[-101.64047292515886,29.75690751440709],[-101.64344656329314,29.754096277637302],[-101.64864137142018,29.755595722273654],[-101.65232411970351,29.758753204669404],[-101.65327816738437,29.76255645259505],[-101.65524736434804,29.76597701951846],[-101.65841500684274,29.7665432646279],[-101.66146499214858,29.771258493745847],[-101.66601681573997,29.769727524924974],[-101.67042251002101,29.769295000090892],[-101.67489620308919,29.76480134295349],[-101.67500876173523,29.761005331269303],[-101.6806100649111,29.760476706815723],[-101.68584309646059,29.766291854482063],[-101.68646793344021,29.768784435212126],[-101.68931260871585,29.771045344395418],[-101.69466873466911,29.768702984871652],[-101.69772464945737,29.765705917797675],[-101.70115463931324,29.765299482745093],[-101.7091506377613,29.761833620422806],[-101.7110669926551,29.76199458975509],[-101.71311079333543,29.764267805337226],[-101.71420050363832,29.768010594256225],[-101.7206931381728,29.776121902643467],[-101.72506062393745,29.775890079372687],[-101.72840021199335,29.772459607139808],[-101.73071735630344,29.771367138545827],[-101.73446044404022,29.77147386111494],[-101.73820184523964,29.772566516140387],[-101.74121462748428,29.778139157355895],[-101.74276847894146,29.779103223525567],[-101.75091388198689,29.77744763502352],[-101.75458785654229,29.777457695546786],[-101.75625378565428,29.779732520018683],[-101.7602969275386,29.781935537099457],[-101.7650881758085,29.78330499979063],[-101.76529045050165,29.784123106189952],[-101.7709186017862,29.787687138058004],[-101.77387093401461,29.788890528536967],[-101.78069396996506,29.7896874324166],[-101.78447151447284,29.78892558420148],[-101.78583157160995,29.787743058339913],[-101.78591503521079,29.782793043797085],[-101.78835576189306,29.77969947398151],[-101.7966001928367,29.779086500370283],[-101.80361218250846,29.77982894909161],[-101.8090725238888,29.782175226531137],[-101.81265545373344,29.78649173639218],[-101.81393654217095,29.79070734903155],[-101.81388581220466,29.793828822877344],[-101.80643652980677,29.7994993655974],[-101.80382914239254,29.80388524759735],[-101.80986300409455,29.807368125442338],[-101.81291213547269,29.810001819413515],[-101.81823704937028,29.81167725783581],[-101.82279928271623,29.810543517251915],[-101.82556697285645,29.807326651923688],[-101.82573828115693,29.80451207126322],[-101.82380889079877,29.800404341144656],[-101.82156123936517,29.79825506918212],[-101.81882510436776,29.793210597182906],[-101.818845369916,29.790240272334586],[-101.82076154540692,29.78821708827593],[-101.82603326492551,29.787601225628634],[-101.83597452185847,29.79234632383401],[-101.83928029751576,29.79478693921652],[-101.84714159624866,29.802892673019073],[-101.84850774537915,29.806504388710948],[-101.85069892279796,29.807598038210244],[-101.85615156930135,29.807038756639884],[-101.85940358347892,29.803575118023957],[-101.86392836759052,29.799941036329358],[-101.87100235995217,29.79556873599688],[-101.87483420548301,29.79407752367814],[-101.88046014619295,29.795580329408494],[-101.88308876043243,29.793396404626094],[-101.88905420451727,29.797002825569166],[-101.89278962746204,29.797795873336895],[-101.89987857993987,29.798335162728847],[-101.91063375595212,29.798392016583307],[-101.91296232633476,29.797628891437625],[-101.92066705638774,29.788916726551918],[-101.92182159821726,29.786496114251804],[-101.92623746228128,29.783345750392982],[-101.92924235228924,29.782797187053006],[-101.93278070082579,29.784468034335532],[-101.9340709221396,29.787354553115847],[-101.9324159293659,29.790559065521848],[-101.93354402679063,29.79710281466862],[-101.93778203964399,29.800738674863794],[-101.9474575774218,29.80111685955393],[-101.94838682710912,29.799607528647982],[-101.9558485925545,29.79543541508542],[-101.9616213091798,29.798162769223154],[-101.96311884125072,29.800004780567008],[-101.96491228591549,29.805304603286686],[-101.96530039564686,29.811021632966913],[-101.96801380886319,29.81347290100456],[-101.9713243998799,29.813722107238505],[-101.97386122480151,29.815639224410916],[-101.98126390321488,29.815427064588732],[-101.98314737127532,29.809785233259163],[-101.98158349212247,29.806683423503443],[-101.98471994131802,29.798501172701208],[-101.98950257958575,29.796833783623185],[-101.99166029559228,29.79841509192761],[-101.99464006091216,29.805381592920185],[-101.99720034339987,29.806182874063495],[-102.00059942087483,29.80530485181498],[-102.00557511269324,29.801465018584395],[-102.00979380700949,29.800460929113854],[-102.01404070733622,29.797667290368622],[-102.01690273989976,29.7980220904376],[-102.0200346860596,29.802041213614075],[-102.02421805639153,29.803164097504634],[-102.0268294115449,29.80199794103777],[-102.03478187618771,29.804329574998917],[-102.03982694096857,29.801837152901214],[-102.04075314409022,29.798067512841385],[-102.03791167279866,29.792781967388862],[-102.040076953572,29.790411806777627],[-102.04575906357468,29.79031232208797],[-102.04945817308726,29.785340794397086],[-102.05151502524598,29.785147407950546],[-102.05483468848456,29.787263544359917],[-102.05698829041478,29.786548604860855],[-102.0672775237071,29.787176051110123],[-102.07309952352597,29.78682178860936],[-102.07468433429847,29.787856237335518],[-102.07596320561777,29.79143757220112],[-102.07838275435586,29.793323252117204],[-102.08198320608187,29.793418383011783],[-102.08365163056345,29.795287945750715],[-102.09273231311761,29.791899338175767],[-102.09552389701872,29.79157800764699],[-102.10145913550775,29.793847342039385],[-102.10696806354417,29.79299728799606],[-102.1082190084436,29.792053293667834],[-102.11165898306189,29.793631326390994],[-102.11633664174866,29.793024301024843],[-102.11812197739164,29.79919129374383],[-102.11699610068422,29.800705073214488],[-102.1196585170328,29.802672922081285],[-102.12352831138207,29.80208327855331],[-102.12753493933019,29.798805613741933],[-102.13000627475537,29.798802192791868],[-102.13375814026926,29.8012196218113],[-102.14044436033913,29.802396169426345],[-102.14415889046717,29.804028198364506],[-102.14879775849698,29.810361957737484],[-102.15130566071826,29.81209469581313],[-102.15359097002562,29.811573088501348],[-102.15961898021459,29.814423922797403],[-102.16070324610365,29.818084006002664],[-102.16796745924091,29.826275462267574],[-102.17295614321046,29.825619421799615],[-102.17915063804242,29.825883136699645],[-102.18107635593634,29.831487139692115],[-102.17816860651288,29.836615846501786],[-102.17844171747464,29.839591851704938],[-102.18172839928411,29.84574118904544],[-102.18740693360269,29.848877800028447],[-102.18980150369208,29.84852902250924],[-102.19250595614352,29.84522918734592],[-102.19319368760284,29.83935218238321],[-102.19626292897146,29.836258359075828],[-102.20000073903202,29.837037457355734],[-102.20189186501335,29.83954918952253],[-102.20781081738949,29.843926236359493],[-102.21163302112029,29.84454348549434],[-102.21497767716022,29.844008528915197],[-102.22141836468666,29.84040562706531],[-102.22371713433859,29.840690424012905],[-102.2279732148009,29.843711741089805],[-102.23002972092735,29.84720685604475],[-102.2332775241839,29.848609289769968],[-102.24382396987454,29.848187775645613],[-102.24551637163904,29.851293636866046],[-102.24344729419136,29.85981989313757],[-102.24600108520644,29.863969514289693],[-102.24995147820283,29.863439384916774],[-102.25209623144548,29.85824881421479],[-102.25126949390278,29.855900129838915],[-102.25243978760108,29.853775632287352],[-102.25486480008112,29.852530853771498],[-102.26208141235946,29.853543759127547],[-102.26388280397032,29.85489219560435],[-102.26444158502096,29.857196693839455],[-102.26317415384852,29.861788788954414],[-102.26202992020325,29.863183364589474],[-102.26344092290532,29.866528256470815],[-102.26573133133303,29.867972255259986],[-102.26958789992239,29.867719003242257],[-102.27657431392544,29.86298150812513],[-102.2812395894349,29.86292728921933],[-102.28334533641151,29.864442944598522],[-102.28710804905938,29.87132808829051],[-102.29592818864813,29.873724375305358],[-102.3012802204534,29.87783822667035],[-102.31325175369813,29.877740213966263],[-102.31634848047457,29.88001385313578],[-102.32169937353086,29.878349430742105],[-102.32507214458451,29.87223101479327],[-102.32281087768882,29.86593473256795],[-102.32339909923792,29.864237941590886],[-102.32722347891661,29.862725198413386],[-102.33212949074868,29.862899731716027],[-102.33375515480884,29.868246954066308],[-102.34103192641618,29.86956756442993],[-102.34371430518246,29.86508192165695],[-102.34969253951175,29.862926379881685],[-102.35059795886343,29.860881172373638],[-102.35048513222472,29.85732467455489],[-102.35207159157562,29.85304130389443],[-102.35437343808468,29.85144594627451],[-102.35937332613634,29.85038544514191],[-102.36148272266888,29.84919144092055],[-102.36490739184416,29.84554720614085],[-102.36419931061312,29.840100319079625],[-102.36263905765162,29.836103538432383],[-102.3631106891292,29.831402756056434],[-102.36987822655573,29.8198710064363],[-102.37222155317136,29.81394861715421],[-102.37331793671785,29.808085867054274],[-102.37755936237522,29.800474077162505],[-102.37790866855869,29.797497700835606],[-102.37736784022093,29.78986493174824],[-102.37935559227577,29.78801168653888],[-102.3855393916512,29.785883339420423],[-102.39009389942646,29.78270801108431],[-102.38996460190162,29.78103965569096],[-102.38697130206401,29.777986713001894],[-102.3850461879897,29.771063723507154],[-102.38704415058703,29.766852694362],[-102.38647732620984,29.763068449785465],[-102.38829036869976,29.761423837368397],[-102.38979575324822,29.762147923312682],[-102.39350117136848,29.768549481258788],[-102.39871332027712,29.76997549359811],[-102.40434136930298,29.76550172637974],[-102.40984298850458,29.7649136755104],[-102.41220181592894,29.768417814303064],[-102.41666218927611,29.76984378422918],[-102.41934332628267,29.76916721495496],[-102.42330054952197,29.77026450859603],[-102.42645250943605,29.77349408603544],[-102.43196369056875,29.775489509593],[-102.43394233921435,29.777056906892824],[-102.43704384736128,29.776128967790896],[-102.43716312656755,29.774813565044667],[-102.44044872465048,29.773710745376377],[-102.44518542894792,29.77726846033869],[-102.4506137898295,29.777497506959435],[-102.45455245313093,29.775139772429327],[-102.45767316170287,29.774836856850527],[-102.46007147315464,29.77695333798613],[-102.46258922656426,29.78155140339294],[-102.46624264494989,29.783777794897674],[-102.4689038600406,29.782444951319235],[-102.47089809216436,29.780025332265154],[-102.47128428184237,29.777481289664934],[-102.47400336698456,29.776128828468018],[-102.48034885294243,29.77611942581194],[-102.48215700640901,29.777554042074883],[-102.48163933075688,29.781254074107096],[-102.48398503766907,29.78507795665672],[-102.48724836132834,29.786928666619417],[-102.49914500062283,29.78114972046245],[-102.51679185034533,29.7844691185266],[-102.51940036927749,29.78052376409039],[-102.51869589768637,29.778824347351474],[-102.51449519222831,29.77557169230289],[-102.51156820702175,29.774552972525555],[-102.51102812194142,29.771363229812607],[-102.51314492589381,29.769366572486717],[-102.51387461797088,29.765534479296036],[-102.52289467113832,29.760025541388927],[-102.52924198941639,29.758018883284194],[-102.53547368639357,29.754533009284785],[-102.54128812262263,29.748391224807165],[-102.54839872841063,29.74458614319434],[-102.55026552381634,29.745088903442536],[-102.55538368198467,29.749251433409484],[-102.5550083259065,29.754898425817885],[-102.55873746445042,29.75897684030224],[-102.56321709583955,29.767895460268733],[-102.56619246277415,29.769657802886],[-102.56739420502208,29.771657619345945],[-102.57075066160206,29.77147228291227],[-102.57432439999644,29.768203461785447],[-102.57503313538217,29.765941250657534],[-102.57361556583805,29.76303103231868],[-102.57421727862703,29.76147301213541],[-102.57238981901276,29.75745948579123],[-102.57403569747908,29.755019503105302],[-102.58013950918837,29.755291753531765],[-102.58511208369902,29.750991908683602],[-102.58863494742064,29.749116826231614],[-102.59284978019127,29.749387969852762],[-102.59541512917286,29.751213974073323],[-102.59787363045274,29.751333525007624],[-102.60455400074056,29.75010369903697],[-102.60813687005253,29.747571854650346],[-102.6128259563842,29.74805065959839],[-102.61496581436666,29.74647921360355],[-102.62273237475773,29.736162961632488],[-102.62933910206857,29.73515566208914],[-102.63006805347288,29.73410723425326],[-102.64013756223625,29.733511114948385],[-102.64622948092972,29.73381854060898],[-102.65443553800287,29.73555178903962],[-102.65959971759276,29.73547091228079],[-102.66368057092757,29.736536216635955],[-102.66749977446517,29.74001829643163],[-102.66697083977022,29.743675938303852],[-102.66893257514931,29.746052381831134],[-102.67208516575266,29.74437623909688],[-102.67445116037726,29.744382079898855],[-102.6769939577926,29.741578085038384],[-102.67962604715706,29.73255925684083],[-102.6814893280428,29.728269688994658],[-102.68499070517345,29.72697294654205],[-102.68763273511883,29.722632018156276],[-102.69103144138643,29.722005558961712],[-102.69022682250392,29.713824049979053],[-102.69013558251868,29.70735483148195],[-102.68897802628652,29.70502312248294],[-102.69862258446909,29.69734915804571],[-102.69907040996952,29.68728837686865],[-102.69950161077844,29.68578751762942],[-102.69570845162332,29.68145759809255],[-102.69330813607388,29.67672402388655],[-102.69553804146835,29.674538415706934],[-102.69637314034162,29.6720963533171],[-102.69980941357505,29.672370131781577],[-102.70362493947977,29.6715916585714],[-102.70857931622658,29.666907603352342],[-102.70901477065928,29.66492489206172],[-102.71226803621738,29.658758885967757],[-102.71773742399046,29.654255618709954],[-102.7224090263046,29.651253973043367],[-102.72574887306234,29.651155229946312],[-102.72402103140308,29.64857973650254],[-102.72572220762663,29.64326110481494],[-102.7295031581138,29.64065207815372],[-102.7373980053772,29.64190107814767],[-102.7370022042495,29.639417629344962],[-102.7410214315243,29.635863730202004],[-102.74219875680001,29.632119982329584],[-102.74190593153372,29.629899835916717],[-102.73898589359214,29.625328571993577],[-102.73855541652784,29.618906774290224],[-102.73908598118851,29.606514509433794],[-102.74092104516927,29.604530668436553],[-102.74140880680045,29.60195070342445],[-102.73974575395187,29.599883415658383],[-102.74010190787135,29.59807073223334],[-102.74471226796811,29.59302378697396],[-102.74640859502523,29.592587434915117],[-102.74939180737988,29.59493341162471],[-102.75567340511668,29.597329796911026],[-102.761775983772,29.59863590715156],[-102.76553339156408,29.59763768604546],[-102.76849469702813,29.594808927094846],[-102.76604422417034,29.589991531238752],[-102.76384528612544,29.5830973673078],[-102.76207583168667,29.57997919196373],[-102.7646359693216,29.57337056807347],[-102.7676006116094,29.57174462362434],[-102.76977960213117,29.573656905091582],[-102.77393041782642,29.573238261182325],[-102.77340098508529,29.56663529273351],[-102.77773931102814,29.560693362481004],[-102.77747188177989,29.555098197087432],[-102.77537880547595,29.55137709604037],[-102.7713031753209,29.54812408844856],[-102.77676437739734,29.54707026243136],[-102.77828795805601,29.54360519886052],[-102.78317487755311,29.541801459465717],[-102.78938167375696,29.54372452010125],[-102.79198200045766,29.542332882901974],[-102.79312430766242,29.539626487415035],[-102.79153293281985,29.5360140323765],[-102.79214521903623,29.532722843621684],[-102.79716214283059,29.529408612435134],[-102.79843345398967,29.526703244754174],[-102.80369587054952,29.523963282126545],[-102.80776943665751,29.52309449984523],[-102.80846033074329,29.5189586088008],[-102.8064841643158,29.515683979680432],[-102.80734646185817,29.51292649304071],[-102.8066224450464,29.50716010502896],[-102.80735699379261,29.50405760254847],[-102.80440329812615,29.501276999899346],[-102.80467954375393,29.499080173579046],[-102.80726181284183,29.494232111988595],[-102.80489410424866,29.490384289849658],[-102.80196703592316,29.488276061441127],[-102.80073940862155,29.48600508159194],[-102.80411284005947,29.48402589112459],[-102.8083458849382,29.483373595738044],[-102.81080275286774,29.484064868808275],[-102.81459123154218,29.48248025063384],[-102.8155749565729,29.47777743089256],[-102.8155735597474,29.47427219271924],[-102.81439652891027,29.471287665210866],[-102.8165356788416,29.47064295912378],[-102.81784045183451,29.46755651811776],[-102.82217752578293,29.46397143397354],[-102.82353324780212,29.45972156143091],[-102.82537701620055,29.457938134300832],[-102.82527694035144,29.4551164907582],[-102.82381741304891,29.45207527403619],[-102.81940989929569,29.45069263052187],[-102.82884847796248,29.44605668521814],[-102.83066728948319,29.444486153700836],[-102.831666315404,29.437963877575953],[-102.83067151556071,29.434590709806855],[-102.83225658398675,29.432951555744978],[-102.83070499143923,29.42843346970045],[-102.82842946672673,29.424086039741326],[-102.82706128623244,29.416983174932682],[-102.83305612829474,29.411135154584485],[-102.83271594733759,29.408571349146712],[-102.82626602017433,29.407506690885555],[-102.82598716952589,29.402784853596074],[-102.8201479010275,29.403671644895496],[-102.8132378723393,29.402186728277],[-102.81209163434181,29.40141356661269],[-102.81567606240782,29.39689779068209],[-102.81944927290607,29.398297014386287],[-102.82600719955758,29.396421295008963],[-102.82906446248558,29.391387756779523],[-102.83300390089295,29.38730285001293],[-102.83373456718869,29.379239900837206],[-102.83723109414359,29.377586836462058],[-102.84037503094248,29.377504182479015],[-102.84493677471295,29.374308281501214],[-102.84462030963454,29.368621927471793],[-102.84529408090077,29.364908363781467],[-102.83979584954358,29.361552514090533],[-102.83921976907953,29.35889534672259],[-102.84507105197827,29.35768908576],[-102.84928543723834,29.355513601711834],[-102.85647274060983,29.353553341241764],[-102.85998385427183,29.35163277775257],[-102.86338790413231,29.3513207760534],[-102.87285444638195,29.35213348288039],[-102.87701450919138,29.354849521535527],[-102.88106529591727,29.35202096253198],[-102.88398172834724,29.347980503754684],[-102.88393696022956,29.346258213740214],[-102.88022738961462,29.341209354368743],[-102.88113787521968,29.333617012605657],[-102.88453130613016,29.32642651494649],[-102.8845153019908,29.32040885722182],[-102.88637090040038,29.319138427642713],[-102.88810169077959,29.315516190164544],[-102.88752105387829,29.311189373534262],[-102.89034365706448,29.30932441377871],[-102.89302320700625,29.308964040779188],[-102.89249453366222,29.30547765951337],[-102.89015257724242,29.30251119853608],[-102.88817559866749,29.292691925219117],[-102.88964043036032,29.28865547911431],[-102.89669745933014,29.284503151187494],[-102.89863262705086,29.280585005661237],[-102.90137955644042,29.28065648710583],[-102.90347644740626,29.27839391498327],[-102.90298140025277,29.275850245137292],[-102.90027635381466,29.27288903851587],[-102.8992681449339,29.268877776424176],[-102.90219498807613,29.26478345342707],[-102.90629956172921,29.26207752465109],[-102.90609930284961,29.258363538069545],[-102.90289610413515,29.254094408259846],[-102.89674359569909,29.254076162533863],[-102.89375326355531,29.25019541386797],[-102.88761631750674,29.245699044795003],[-102.88145964868596,29.246165918286863],[-102.87461909333035,29.243646167937527],[-102.87119747543079,29.241191154180285],[-102.87062676156836,29.23394254850757],[-102.87139026509641,29.23186932697996],[-102.86843862372297,29.23016028449132],[-102.86636102955282,29.227074566461226],[-102.86801488305053,29.222862316228543],[-102.87165197883076,29.220003364145953],[-102.87779175071927,29.216127663986754],[-102.87798480088833,29.214187191234487],[-102.88430915585582,29.212201433336475],[-102.88542942777724,29.210550489222783],[-102.8943699473607,29.20857287064831],[-102.89941523158006,29.209159502190232],[-102.90081196613909,29.21187487940415],[-102.90722536229083,29.217382804074305],[-102.90947062531365,29.219973604201755],[-102.9123116712716,29.21943369079662],[-102.91528113475187,29.217376412203976],[-102.91635029907366,29.21511861857084],[-102.91591381220292,29.211262948692365],[-102.9131752655104,29.207985529305972],[-102.91428934759875,29.200254734690645],[-102.9190564017461,29.199135408374048],[-102.91813540046189,29.190765338697418],[-102.9218082349044,29.191684659729333],[-102.92394981538803,29.193213520691415],[-102.93302294557748,29.194509376223834],[-102.93937060393705,29.188256319012794],[-102.94179756481685,29.191639445769283],[-102.94358993477164,29.191373894800165],[-102.94579768498124,29.1878728600376],[-102.94496880756446,29.18680887149202],[-102.94571613399239,29.183255839975516],[-102.9476161501874,29.180826873091576],[-102.94956554071575,29.180447190756354],[-102.95090420787625,29.178319504940248],[-102.95081937236074,29.173528647694525],[-102.95247296013127,29.17386974646388],[-102.95561411944891,29.177882744048418],[-102.96277773058733,29.180116567117693],[-102.96599832282806,29.182402928440354],[-102.96834624986423,29.18275412867513],[-102.9733627641624,29.18561624766636],[-102.97811950450011,29.18652350209652],[-102.98180783569092,29.18572580617348],[-102.98602217138978,29.183123466437962],[-102.99001333108043,29.18348812450671],[-102.99234275618625,29.18085719115055],[-102.99699879304939,29.177800170384614],[-102.99827493709728,29.173991378120434],[-102.99595325436246,29.164372531749677],[-102.99625937761465,29.160280623358346],[-102.99951252298536,29.156197693827664],[-103.0025375293028,29.149986410923304],[-103.0081789944698,29.148249283107305],[-103.00905398874539,29.142409010527274],[-103.00907073793445,29.137391507909967],[-103.01251646627605,29.13707421995656],[-103.0156891781657,29.134446571486535],[-103.01219955129346,29.128454243067665],[-103.01354816555948,29.12506404713355],[-103.01911828639038,29.12605646037457],[-103.02331693687364,29.122942868818768],[-103.02431175178305,29.119349390071477],[-103.02849600856479,29.11539120159034],[-103.0364766473358,29.11424070262882],[-103.03746101472535,29.11301825559508],[-103.03636131363339,29.11061869593709],[-103.03227637801297,29.107077143315053],[-103.03256023130973,29.10361607242669],[-103.03379726895884,29.10120396297833],[-103.03746079890499,29.098106730223094],[-103.04086723418874,29.096295590597776],[-103.04497896013191,29.095258407892914],[-103.04835429769179,29.096292554315653],[-103.05103074005444,29.0999242762843],[-103.05470106672226,29.100724495419],[-103.05830427660561,29.095908266556137],[-103.0614191174028,29.09435559795287],[-103.06424486106516,29.091260298158602],[-103.07050308229583,29.0935597212042],[-103.07597214854303,29.09142141736919],[-103.08033105154351,29.08711973653459],[-103.07656928378418,29.079445485955546],[-103.07690697694738,29.07595338054483],[-103.07889998180826,29.07362078698901],[-103.08351664486429,29.07084916899771],[-103.08748714881409,29.067334113202662],[-103.08540456600849,29.05833946245741],[-103.08587402100534,29.05381274055003],[-103.09009859499088,29.0533950914118],[-103.091993177549,29.05737987834192],[-103.09161523400252,29.063707971968995],[-103.09412391919642,29.06498181566758],[-103.09644701714262,29.063830089447436],[-103.09714942747064,29.060523939784616],[-103.10036015542721,29.06068110640672],[-103.10152884463207,29.05673131746954],[-103.10045960435514,29.05411807547148],[-103.10137490407709,29.048907691940087],[-103.10423728273753,29.046027478160624],[-103.10598188790755,29.042402672107585],[-103.10664787271298,29.038660862250993],[-103.10416863150783,29.033186851719734],[-103.10047084390078,29.030585471342306],[-103.09807695509875,29.02727073835979],[-103.09820971646332,29.025625036938607],[-103.10161510667155,29.017877421254695],[-103.10328556959331,29.01625702074864],[-103.1085905217206,29.013265971760745],[-103.11628068455548,29.00235117521703],[-103.11760246648197,28.997516127405277],[-103.11404908216684,28.989278321122697],[-103.11585460436993,28.984357272104774],[-103.1189104778893,28.983587628553607],[-103.1231502950099,28.984300315848202],[-103.12669606020097,28.981954867717036],[-103.13163651814557,28.983911287525586],[-103.1359324978684,28.983283365722286],[-103.14403544990955,28.9774969808671],[-103.15151531886426,28.975129195987165],[-103.15384473619412,28.97147575838102],[-103.1564644463474,28.972881526173126],[-103.16074779712864,28.97369607270133],[-103.16376949547015,28.972067489733263],[-103.16612569738567,28.973992181614733],[-103.16592481187985,28.977683746891444],[-103.17062058807733,28.980341583931136],[-103.17260066914099,28.980525742760335],[-103.17436662589006,28.977885043045944],[-103.17691896269082,28.978041051670118],[-103.17818518927362,28.98039421560884],[-103.18074939423798,28.982228309754362],[-103.1908706090581,28.984001650378616],[-103.19168289332833,28.98378503019228],[-103.20394637235069,28.987093440794638],[-103.20919734820018,28.986565095730043],[-103.21434825020219,28.987703163856736],[-103.21855340788267,28.985861771529585],[-103.21972250683984,28.983550587012758],[-103.22116413250916,28.983702812480317],[-103.22569280307539,28.989937060195587],[-103.22814497893364,28.991703799968377],[-103.22970483464775,28.989058804679587],[-103.23320389991,28.986069776732506],[-103.23624947220497,28.984588062274497],[-103.23741658871091,28.981797880089857],[-103.24092370579723,28.981096730704166],[-103.25033908215715,28.98022171076002],[-103.25215338945765,28.985409303456436],[-103.25569789469512,28.988880130287896],[-103.25955542384946,28.990626213856274],[-103.25965160909118,28.991555052356944],[-103.26647973042452,28.9959246835445],[-103.26920649107183,28.99367770565044],[-103.26985913346459,28.988931225336955],[-103.27201719925421,28.98445026251983],[-103.27416628783322,28.981789053403816],[-103.27813506492402,28.978992290194356],[-103.27967369029875,28.975924134164984],[-103.28514169368128,28.976462235917836],[-103.28835315317275,28.97812522581512],[-103.28847719311511,28.9811122723342],[-103.28311322919069,28.98283216912523],[-103.2817157124478,28.9890414569212],[-103.28600275367569,28.99996831017893],[-103.28840073136865,29.00241950020643],[-103.29420159728647,29.00488691184995],[-103.29580823887522,29.006367180787777],[-103.30259835187832,29.007908036143647],[-103.3069618878385,29.00392541810612],[-103.308126678451,29.001635556930466],[-103.30859749246775,29.00109395236109],[-103.30921534089981,29.00118718382663],[-103.35770066492773,28.92025062820761],[-103.37087453458565,28.90681222389685],[-103.40365025890782,28.869254116414652],[-103.40373506586207,28.86869796873691],[-103.40391391249227,28.866301048534467],[-103.40363157023899,28.86591251939973],[-103.4011547683973,28.861504564601603],[-103.40092883518031,28.8608020290078],[-103.40087040589549,28.86023571246926],[-103.40016106978368,28.858721072126514],[-103.40000383762475,28.858426983899335],[-103.39972704810333,28.858084667646096],[-103.39933269838502,28.856908735312004],[-103.39931109086996,28.856407367916802],[-103.39926114379307,28.855417830354156],[-103.39891769806667,28.8546079863209],[-103.3982994108622,28.853453687474143],[-103.39789821504723,28.852305022481858],[-103.39789217200308,28.851759196261412],[-103.3974974486618,28.851255873991136],[-103.39681093544345,28.849988272481653],[-103.39656803688581,28.849475293593684],[-103.39627990548422,28.8481546163614],[-103.39567448649206,28.84653457494943],[-103.39562457793289,28.845960450981693],[-103.39543303875973,28.845049199766436],[-103.39491485006806,28.84384771953006],[-103.39489577374735,28.843108622643058],[-103.3947509624947,28.842217951817247],[-103.39461484081204,28.840791456876048],[-103.39424600337031,28.84044032886993],[-103.39434592534099,28.839938520442047],[-103.39532285715416,28.837621794807774],[-103.39539587668946,28.836979727600237],[-103.39558627109307,28.835587279233096],[-103.39588812416537,28.83461135524476],[-103.39608698233957,28.83439622748574],[-103.39628713672596,28.833764671101676],[-103.39819927038502,28.832059945620017],[-103.39834881386724,28.831291114674457],[-103.39894887015367,28.8306983250867],[-103.39913176832061,28.830078260901473],[-103.3997218836007,28.82981893111821],[-103.40056095952724,28.828615617028788],[-103.40333396436898,28.829484727894737],[-103.40433657903236,28.829786001462253],[-103.40458611382184,28.82955152942327],[-103.41001538980731,28.840922391085485],[-103.42355363107652,28.821289712599537],[-103.43166303993132,28.81318034694823],[-103.46634534669539,28.759457634061732],[-103.46325460270901,28.756614538688382],[-103.51451214363345,28.66499784488616],[-103.51976206712817,28.66874490865706],[-103.53004667850428,28.65312879598224],[-103.54022194598622,28.63708678220729],[-103.54249923953239,28.633645342227737],[-103.55729531086132,28.611280673743067],[-103.56864537275533,28.632970502128728],[-103.57265896015883,28.640639171369116],[-103.57857368898277,28.633140063014025],[-103.5820014853735,28.628793512822995],[-103.59637370356648,28.639474547052885],[-103.61604603244047,28.59819473021878],[-103.61581854512997,28.59812536073332],[-103.59191587505865,28.590834259919347],[-103.60100839272349,28.57490740474543],[-103.62374722255356,28.580907029968216],[-103.62456759947776,28.58114651498721],[-103.6375012147277,28.554505315373376],[-103.6479444617085,28.53298348345021],[-103.64335502387883,28.530634445241276],[-103.64301079671026,28.51246187056529],[-103.6924309441282,28.422185968429517],[-103.71519586932897,28.380540707284524],[-103.72833286350357,28.356491013613493],[-103.74123876202714,28.334716080506894],[-103.7628712392721,28.298196788831376],[-103.76817977952209,28.300372524550994],[-103.78992491967097,28.259142779657623],[-103.79477368600192,28.24994488177515],[-103.7979902626144,28.243853104430173],[-103.82865348430835,28.18573940709905],[-103.83039960591816,28.182427898848005],[-103.83747997141234,28.16924529004558],[-103.86062450119312,28.12524298009589],[-103.86064679676508,28.1250528010504],[-103.867499861407,28.11213567356026],[-103.86094129831366,28.10902193243402],[-103.86956991347779,28.094472183216283],[-103.88272736111338,28.072199256431077],[-103.88643530580475,28.066174424122437],[-103.88948527306434,28.060376935807994],[-103.8985812343484,28.03862916364244],[-103.92669189519626,27.971356759909327],[-103.87771593740212,27.957490333591068],[-103.88538354320536,27.935524058022054],[-103.88538752189038,27.9355126575756],[-103.89288584279655,27.914022964142305],[-103.94186759036478,27.927796490890103],[-103.93974188148314,27.933887078383975],[-103.9356430904379,27.94534236554108],[-103.94508437105213,27.94801569571979],[-103.9543452246777,27.950644096344604],[-103.95497349592364,27.950820994495132],[-103.95237663063568,27.93700217317911],[-103.94333127694608,27.888843222057176],[-103.94564465602008,27.888861818493012],[-103.94578304604659,27.85638822997828],[-103.96000192022512,27.835309014917925],[-103.94838291465845,27.831018374747998],[-103.94390670290147,27.82687055423338],[-103.9008439284097,27.82685725518047],[-103.90277124179687,27.825257106991614],[-103.92191726355571,27.80912675533102],[-103.93564955258597,27.797552739644345],[-103.88114534039647,27.739185742730513],[-103.89669228687796,27.740557242937086],[-103.88950493922528,27.71321714459998],[-103.89553265862145,27.674021193091846],[-103.88324458575232,27.65759181029273],[-103.89726286754922,27.656548774718374],[-103.88355552608255,27.600771753643983],[-103.86883765463233,27.607136830014156],[-103.85460094775522,27.549432734900222],[-103.85526430497981,27.532574657060252],[-103.85653518352945,27.500263675960696],[-103.85850514041692,27.43989149747489],[-103.86365041166073,27.440920744914365],[-103.87687601987608,27.3115921378822],[-103.84811702339539,27.30304950878474],[-103.84757898648087,27.302904241012925],[-103.83212255908035,27.298293475779303],[-103.83210013758031,27.29368277892496],[-103.83035388161142,27.281190848869414],[-103.83059326393186,27.276847480119955],[-103.82879253089078,27.274531139244743],[-103.82655307018024,27.26944350504334],[-103.82529571639657,27.262401236235974],[-103.82260270997517,27.256773130620445],[-103.82207649279161,27.25359519352122],[-103.82041130441723,27.248413438320085],[-103.81976349423752,27.24295655426471],[-103.80939543784729,27.249203081452663],[-103.79843036821484,27.213198754103814],[-103.79939846921695,27.124729532486697],[-103.7946245667635,27.114684058074886],[-103.78342668821102,27.09117580818844],[-103.7803425675429,27.09059846152519],[-103.77379528620025,27.089615631564982],[-103.76977051824139,27.087276111995095],[-103.76772304140559,27.08613274433003],[-103.76638755083013,27.085388175106687],[-103.76524934270213,27.0850323786413],[-103.76305323173989,27.083912843891255],[-103.75627007814569,27.082106126923577],[-103.75343620320342,27.079017942771827],[-103.75261006579643,27.07810778365979],[-103.75216692555966,27.076998449113432],[-103.75123612115704,27.07404355050835],[-103.75091228441073,27.07238333040459],[-103.75089564092252,27.072257421246263],[-103.75066461997613,27.070637015309217],[-103.74906068806689,27.06114133487489],[-103.7491292030079,27.056271307293173],[-103.74900132489705,27.055218993466838],[-103.74798419080156,27.050432448364518],[-103.74786697749244,27.049673472664836],[-103.74728960018257,27.047691053178482],[-103.74536282163996,27.041417960651415],[-103.74544548908995,27.03333098272111],[-103.74431103697839,27.026697960936303],[-103.74233697456856,27.02427195429948],[-103.74083437690626,27.022521748351153],[-103.74253064496634,27.021772823820754],[-103.74578913995566,27.022699568489656],[-103.74772772527501,27.02179867471034],[-103.76849826817505,27.01334804838808],[-103.77994768891301,27.008886298776872],[-103.78462875305655,26.980698529633003],[-103.83269958282068,26.947870044913714],[-103.85202331621213,26.93456203062567],[-103.83591918611114,26.93581334880787],[-103.85194346667231,26.905230444225765],[-103.85170071453729,26.896133834131774],[-103.84749239749914,26.892991162662213],[-103.84215802567718,26.89145030497474],[-103.8314182899893,26.880532029124765],[-103.82810615733189,26.87870360507344],[-103.82253493185578,26.875374342872078],[-103.81433915568664,26.866132184604567],[-103.80447801951448,26.855009593737748],[-103.79005046841633,26.845555606182472],[-103.78500384635339,26.840994919659636],[-103.77960544043282,26.836126250871303],[-103.77018762651903,26.83513563426692],[-103.76194801674256,26.833401380607143],[-103.76114091572708,26.83296185367493],[-103.75990348492195,26.83250390920557],[-103.75396792997361,26.82957344251281],[-103.750619731435,26.809905082239368],[-103.72487080647983,26.77210651549649],[-103.7191064411166,26.74875385124153],[-103.7182761292878,26.74502532874351],[-103.71708079988247,26.74253483330159],[-103.71524869915288,26.735077260962555],[-103.70164094755222,26.73078308613225],[-103.6993655867297,26.72585054677984],[-103.69909410460099,26.72525637717723],[-103.68202045757647,26.721569744643602],[-103.65825599853468,26.71948395329241],[-103.64389145267887,26.690158491492184],[-103.63698242851552,26.69343576678085],[-103.6369629172271,26.69256490991137],[-103.48797784310369,26.641489265968346],[-103.37418349228682,26.602354887477304],[-103.3627218514846,26.554386595750316],[-103.33584138594574,26.441735811188607],[-103.31762576994402,26.365275768824233],[-103.31679260080688,26.3617761844979],[-103.2608252624758,26.28472681845608],[-103.29537925209058,26.229918921482295],[-103.3504882181507,26.142389958813737],[-103.34907993707833,26.046304165345816],[-103.34866170895634,26.017739724268097],[-103.34750584142358,25.938726128207804],[-103.34679229956112,25.889898491668134],[-103.34669930764579,25.883532199630736],[-103.3463601018592,25.86030438339907],[-103.34508803027569,25.857505196569036],[-103.3450223474797,25.857290982032566],[-103.34482704403524,25.85606936132575],[-103.34464440807477,25.85497688827013],[-103.34417517100388,25.852288556339374],[-103.34249682220252,25.849423954985696],[-103.34025113394074,25.847214821481657],[-103.33824332171912,25.8452438445521],[-103.337116523725,25.844130562262308],[-103.33683687089683,25.843677518966274],[-103.33665895168912,25.843132508836618],[-103.3360061159799,25.838737073570712],[-103.33166660263248,25.831663015769152],[-103.32288904135225,25.825082303779766],[-103.3216126127337,25.821946123546923],[-103.3189177897192,25.814801520623405],[-103.31858765890416,25.812701288312667],[-103.31890897943862,25.806100983664408],[-103.31935189545703,25.804648742666018],[-103.32127366447224,25.8019276120865],[-103.3220765068387,25.801372001766083],[-103.32298021621608,25.799051995814466],[-103.32280325475273,25.798360127085743],[-103.32166678630182,25.796191118495415],[-103.32297816907453,25.7927205116942],[-103.3230563063683,25.78373639441685],[-103.32376497220065,25.78241043890506],[-103.32557004537762,25.77995147196424],[-103.32667882901131,25.771793724282986],[-103.32666806039617,25.77169782573094],[-103.32656257842285,25.770850890121494],[-103.32657896852476,25.7698655269283],[-103.32635436626026,25.764592786074218],[-103.32632171192466,25.763264547743688],[-103.32639342236303,25.76044549263878],[-103.32893375861488,25.752908769659427],[-103.33218002573187,25.743266023969852],[-103.33370521123112,25.738736101548284],[-103.33810959548043,25.727260366088103],[-103.3387417079474,25.72616680107427],[-103.34028918836663,25.72403447175884],[-103.34052791566666,25.723770281348493],[-103.3410734207601,25.723300939475905],[-103.34483293085748,25.7218553547566],[-103.34959004409768,25.719820776048948],[-103.35071722131158,25.7192247634012],[-103.35170879388835,25.718356263655664],[-103.35231668034868,25.71737674920439],[-103.35283606053122,25.716553085230032],[-103.34760282692304,25.712998338901627],[-103.3475482012716,25.712960543431052],[-103.34152438338151,25.708622875267906],[-103.33939448361667,25.707903980914466],[-103.34029276905346,25.706298706071436],[-103.34022560090642,25.705520393165443],[-103.34223277478276,25.704523407268198],[-103.35171578484903,25.70188524883781],[-103.35245880172477,25.70142296184781],[-103.35499085595677,25.69986003325306],[-103.35216382411375,25.69666519468177],[-103.35056247842658,25.694839361533468],[-103.34921371392107,25.693443935107837],[-103.35109972249671,25.692783843575512],[-103.35530844958691,25.691432744652445],[-103.35544621826614,25.691378649243404],[-103.35719783619442,25.690547644849744],[-103.3574468425083,25.690396558201996],[-103.35937144062598,25.688976533013545],[-103.35958779512492,25.688728361736253],[-103.36085704952569,25.6851001859402],[-103.36339239088318,25.67424695678318],[-103.36908900379933,25.66637093932934],[-103.37246200825336,25.66338150577741],[-103.3762070410744,25.66136994968008],[-103.37650155523642,25.661185672365946],[-103.38072438676909,25.65786336325408],[-103.38357595598234,25.653617170623136],[-103.38363796821886,25.653253953910053],[-103.38366562391764,25.652574165688634],[-103.38364525613605,25.652298869592983],[-103.38085722191579,25.643292624061246],[-103.38091675085042,25.6408947123698],[-103.38300847146218,25.639881264647613],[-103.38336442886157,25.639893356407754],[-103.38544094169282,25.64029637850541],[-103.38586701537895,25.640408042966214],[-103.38740961951936,25.640941355418192],[-103.38781581471915,25.641103400552993],[-103.3933151247798,25.64425893612804],[-103.39362982804676,25.644413639537277],[-103.39486656812926,25.644906191461132],[-103.39525225398143,25.645046467693533],[-103.40096531701028,25.646008787479502],[-103.40336148392208,25.64576041003187],[-103.40512839768428,25.64531883871615],[-103.40685194104844,25.6445259864621],[-103.40771954118321,25.64383135035274],[-103.40886023335372,25.641246108369614],[-103.40885222622995,25.64050726242658],[-103.4081945773118,25.638901957909695],[-103.40474158515985,25.63437088558311],[-103.40268953567494,25.6298415482143],[-103.40327558084431,25.628128289868812],[-103.40747844779452,25.625681453818572],[-103.41290423677475,25.624503590456527],[-103.4205420926848,25.625663723119544],[-103.42394201733345,25.62451720976418],[-103.42477012398018,25.62367992810755],[-103.42539451939325,25.621924104926848],[-103.42495402560058,25.61998563888602],[-103.4222456345272,25.618120648675188],[-103.41893336097473,25.61774862652294],[-103.41663485037583,25.616451091111344],[-103.41613713382827,25.615171970451456],[-103.41726063816282,25.613627860992892],[-103.42084635575401,25.613212710540893],[-103.42143502659934,25.613253155513405],[-103.42409097810747,25.61314419899196],[-103.42453865468809,25.613084436486247],[-103.42494677855149,25.613002294692592],[-103.42526445885437,25.612943798888466],[-103.42542008738326,25.61287663699858],[-103.42598135974208,25.612628811266916],[-103.42622693462909,25.61244034367337],[-103.4263340695581,25.61236415685312],[-103.42659280930434,25.612228955580008],[-103.42673963774905,25.612139332838296],[-103.42704795150996,25.61188700145101],[-103.42722407111552,25.61169407629569],[-103.42759335902394,25.611142284511004],[-103.42773342499868,25.610665978508337],[-103.42829902341089,25.602626435523746],[-103.4283561061822,25.602377143058504],[-103.4284171397428,25.60201972574731],[-103.43028548741023,25.598258691853914],[-103.43354787079056,25.59717068014419],[-103.43737721055942,25.59728287622437],[-103.43871586524409,25.594861162699544],[-103.43369785162685,25.58930361522846],[-103.43339036056136,25.586800691844132],[-103.43536653714017,25.582777544248813],[-103.43804958259523,25.5815000295338],[-103.44675151854977,25.58167530416989],[-103.45099069556187,25.578933693569297],[-103.45262630794019,25.575279061056563],[-103.45238282011962,25.57366549880777],[-103.45195226382646,25.571658100537093],[-103.45126999849884,25.568744196043042],[-103.45131670926628,25.566981316936676],[-103.45186217596358,25.563786877395728],[-103.45275635851436,25.56165312999758],[-103.45361980209987,25.559877112589902],[-103.45718558317571,25.555595989534424],[-103.46306926010527,25.551836595370276],[-103.46418414316503,25.551138162223026],[-103.46726182301188,25.548288109118914],[-103.46861551287333,25.54692377927745],[-103.47171892754756,25.545661253748733],[-103.47473119278044,25.544314161603324],[-103.47681001993328,25.543523824291128],[-103.48104097375841,25.54235128442008],[-103.48270170438991,25.54220141049649],[-103.48455197671996,25.54163575176898],[-103.48682423212949,25.540489607401298],[-103.49419593633172,25.538011919445694],[-103.49425510777974,25.537574373405732],[-103.49351171348127,25.536972169973012],[-103.48556622069532,25.52893327790406],[-103.48471136484301,25.5294490629081],[-103.48426603428499,25.528929275615212],[-103.48402018153627,25.528500461624333],[-103.483794650025,25.52821871525549],[-103.48343510051501,25.52776956620886],[-103.4820665780299,25.525394313435527],[-103.47509501303091,25.518332992545368],[-103.47529528914617,25.517995364672515],[-103.47593237898445,25.517646011894897],[-103.4756503728924,25.517562590445607],[-103.47515602558138,25.517921530535148],[-103.43572855088189,25.47907398358342],[-103.4280300786512,25.47525458307024],[-103.39874764283604,25.450600379978937],[-103.390651286619,25.43459115717212],[-103.36906200265418,25.416460726960736],[-103.35102133551686,25.410345036958688],[-103.34136772384505,25.410142229416522],[-103.33774518516861,25.397572976321328],[-103.33747484755037,25.38412852064971],[-103.33692571410961,25.371513463656925],[-103.33691619609283,25.37123114585347],[-103.34013738038556,25.37078044986913],[-103.34124936509886,25.370384275357253],[-103.34246905843582,25.370467254610958],[-103.3453133139189,25.37144323012876],[-103.34846191353506,25.372427575205506],[-103.34987625286692,25.372868908095597],[-103.35103655429981,25.37288565069042],[-103.35296941787283,25.375176196158748],[-103.35747689363808,25.38163143721971],[-103.35757403404529,25.382497428933448],[-103.35790700785799,25.3848550002956],[-103.3597117928548,25.386785431420606],[-103.36117749684684,25.387906336464766],[-103.36252471360979,25.3903351479031],[-103.36349477776162,25.391807047048587],[-103.36495732203792,25.39277439863804],[-103.36538497985231,25.393064933260177],[-103.36734513953621,25.393580548953082],[-103.36891697377837,25.39360693748796],[-103.37074979178664,25.39331098489629],[-103.37090484862273,25.3926963873771],[-103.37075059032782,25.391990741347854],[-103.37087251158505,25.391016173920377],[-103.37113433063416,25.390773858175294],[-103.37139699098122,25.390611552920006],[-103.3740530672676,25.390478922640114],[-103.38046173036042,25.39095643917898],[-103.38497509082242,25.394195441545378],[-103.38810647242764,25.396141081820588],[-103.39027489207797,25.39723345061367],[-103.39074562137137,25.39741515164195],[-103.39132219838979,25.397273792600856],[-103.39345993768274,25.39662437300825],[-103.3946437217615,25.39632545640586],[-103.39598512764121,25.39545260113175],[-103.39919900273338,25.395980995940533],[-103.40146821903556,25.39718811485011],[-103.40345673914965,25.39787673981357],[-103.40484347388497,25.398437836290384],[-103.4066991754238,25.398901397095756],[-103.40809684697143,25.39775540855436],[-103.40871366412506,25.39638966147379],[-103.41198163651899,25.395917499742552],[-103.41272285950419,25.395684066479646],[-103.4135225790078,25.395527092749603],[-103.41517336590937,25.39507767988323],[-103.41560868399995,25.39489787829251],[-103.4165805272172,25.394015818786386],[-103.41694449283386,25.39371916060111],[-103.41745850354812,25.39371454675313],[-103.41820852003741,25.393801157817734],[-103.41884162352608,25.393942165781425],[-103.41884336639407,25.394102186810073],[-103.41930125498334,25.394338113712934],[-103.4200197176516,25.39422496659853],[-103.42154884160078,25.39294393796797],[-103.42322727837035,25.390989590491927],[-103.42366212628826,25.390644306202603],[-103.424532599406,25.38998034180713],[-103.42784332080339,25.38938484451404],[-103.429513821895,25.389036337693142],[-103.43011417056852,25.388870875912176],[-103.43228193600396,25.386997540792606],[-103.43318583157674,25.38638923444563],[-103.43472632452966,25.386241873393885],[-103.43603668900971,25.38653669448803],[-103.43681282820921,25.386443309263825],[-103.43847914495814,25.385721331224374],[-103.43975144173987,25.385229645072457],[-103.44156545643165,25.38458630552782],[-103.44198912412509,25.384382401458367],[-103.4427813772864,25.38430848480084],[-103.44338405106697,25.384356326083093],[-103.44452770858817,25.38418582771851],[-103.4455932066204,25.383589297800597],[-103.44654618932515,25.382536499564424],[-103.4479693015976,25.381083183541534],[-103.44905404364926,25.3808998639106],[-103.4499640513618,25.38085149877736],[-103.4517238285037,25.3806219496542],[-103.45426542188693,25.379535243277246],[-103.45738533301244,25.37824666871711],[-103.4577015043343,25.378183295351334],[-103.45792041703868,25.378061244603373],[-103.45794800110332,25.377900963544334],[-103.4577521790062,25.377462690043103],[-103.45703567747444,25.376692220093787],[-103.45808089269849,25.375989355472882],[-103.45878696463683,25.37600384251681],[-103.4603144809833,25.376000212170652],[-103.46117731397163,25.376183784629916],[-103.46181857135298,25.376371157416713],[-103.46227108194711,25.37619298600896],[-103.46247869829602,25.375707797498762],[-103.46239646901535,25.375165959519336],[-103.46235048049238,25.374993018052464],[-103.46096981210513,25.37192743828092],[-103.46100607889315,25.371233643647997],[-103.46121183513606,25.36993814314411],[-103.46150866017234,25.36890852711207],[-103.46191220182567,25.36814526855119],[-103.46207882384124,25.36729022432928],[-103.46234089447205,25.36578081836319],[-103.46304583696451,25.36448069756051],[-103.46490085047537,25.361997578426553],[-103.46540393719158,25.361032714063754],[-103.46557557652517,25.36054860712079],[-103.46588371652786,25.35983836806389],[-103.46592523627379,25.356466927962742],[-103.46616389014594,25.35288210988068],[-103.46621662657503,25.35234816826994],[-103.46720466281931,25.350900298717193],[-103.4684477618805,25.350461975684368],[-103.46915405894117,25.350141395379694],[-103.46951237171459,25.348518320254698],[-103.46977294704521,25.346888875968887],[-103.47087063750536,25.345278299342],[-103.47291644926685,25.34348636578312],[-103.47508163705169,25.341505704386236],[-103.47554340668665,25.340794572256186],[-103.47611520439449,25.34028898995166],[-103.47779811244777,25.338868436710015],[-103.47898483151334,25.337838158767227],[-103.48002170020328,25.335382957597744],[-103.4801831192305,25.334884291838932],[-103.48029748627096,25.334470450737285],[-103.48059749819424,25.334193777121698],[-103.4807762642929,25.33417601457097],[-103.48476643388585,25.333896911450267],[-103.48670561604638,25.33134109576406],[-103.48330246725737,25.32857242440008],[-103.4797309170616,25.326187470143225],[-103.47907144126862,25.32499336658765],[-103.4800433766527,25.32267705376131],[-103.48068207875315,25.322044246959877],[-103.48167139470695,25.321261441207753],[-103.48316219971014,25.319021538429297],[-103.48421074192316,25.316997865853295],[-103.48530737658092,25.315333821671175],[-103.48835094203542,25.31348507532192],[-103.48928144551263,25.312702783672876],[-103.48977725389,25.312418034214204],[-103.49069839849312,25.31210259483788],[-103.49154522412528,25.311707829290697],[-103.49229207016782,25.31155406200861],[-103.492629632915,25.311550868876964],[-103.49440812388463,25.31176076202496],[-103.49508217965649,25.31166101140849],[-103.49574289024514,25.311109465726645],[-103.49638590141006,25.309582999905388],[-103.49655481932376,25.30767545392888],[-103.49663227277358,25.306739081384933],[-103.49652482934289,25.305736517169862],[-103.49652645744942,25.30427296319266],[-103.49670459724763,25.303470549032284],[-103.49678588420682,25.302704954621674],[-103.4967276040224,25.30186778811094],[-103.49655586174202,25.30126489612553],[-103.49656045670201,25.30085266579283],[-103.49659765850879,25.300441380070765],[-103.49665160804597,25.30002993534214],[-103.49760754946328,25.298788941849125],[-103.4977944631907,25.29821492759021],[-103.49749529428487,25.29738882402546],[-103.49734528478513,25.29641597741579],[-103.49746397311986,25.295979659874433],[-103.4978971919117,25.294833322387603],[-103.49851025502034,25.294127833586913],[-103.49968856030097,25.293517673063718],[-103.50056859447454,25.292891853750575],[-103.50095899350487,25.292553886130293],[-103.5021767961548,25.291973102814097],[-103.50297534333879,25.291986458630277],[-103.5032960975173,25.29212988369693],[-103.50511090919878,25.293212521988323],[-103.50679639534258,25.293220844356142],[-103.50791452273097,25.2927566187725],[-103.50892615186905,25.29185590621836],[-103.50975260262902,25.290889443619164],[-103.50988675416033,25.29029040527297],[-103.50909283027488,25.288128776417295],[-103.50812921190965,25.286327915980337],[-103.50765600014824,25.28550124237097],[-103.50742680191166,25.28401647596212],[-103.50794441227987,25.283091292849747],[-103.50928976080081,25.28208738953515],[-103.50994734782614,25.28157450185455],[-103.51081356046188,25.28043336517004],[-103.51071005330004,25.27912612683292],[-103.509841782345,25.27847009824393],[-103.50710631150048,25.27711686792236],[-103.50594145249863,25.2766345258878],[-103.5058331407227,25.27656873559829],[-103.50480256813597,25.27585852240162],[-103.50383482982238,25.2746540938316],[-103.50218157831682,25.270656546069404],[-103.49982743193942,25.266277754175178],[-103.4997120743713,25.265968394553568],[-103.49950674557743,25.265732113362674],[-103.49926843973697,25.26539757021925],[-103.49910911445625,25.264728634976393],[-103.49902714709367,25.264366024749222],[-103.49878597962129,25.26368190351684],[-103.49867324675103,25.263541658026952],[-103.49856287829994,25.2630335950264],[-103.49865767522118,25.26284036969838],[-103.49860510166025,25.262103596068016],[-103.4985936295248,25.261871311739185],[-103.4985324848202,25.26115865038207],[-103.49849520571189,25.26098271719212],[-103.49842046322493,25.260622809038125],[-103.49844641379809,25.260133694482874],[-103.49844292081991,25.259829685507896],[-103.49849941033466,25.259451403828507],[-103.49824104108035,25.2590300555338],[-103.49799450456572,25.258755999824245],[-103.49724174213691,25.257666763841428],[-103.4968246337832,25.255907565677205],[-103.49624773229294,25.255499592089507],[-103.49378295235078,25.254229270790688],[-103.49184436370933,25.252780538661227],[-103.49053474192328,25.252446158031375],[-103.48893709966427,25.252937700039524],[-103.4884534998115,25.253125260506067],[-103.48787982231505,25.253722673690447],[-103.48448756295033,25.253302996454863],[-103.48217093815197,25.252336389396135],[-103.47715677826244,25.250266977680724],[-103.4767776756184,25.250014025799942],[-103.47528986184534,25.250169878470103],[-103.4743325860253,25.250263983585626],[-103.47340561305845,25.250212302220632],[-103.47303662165695,25.250015695893865],[-103.47219914704988,25.24860977411896],[-103.47173622499105,25.24812196153556],[-103.47122510211432,25.247393598369],[-103.47072241495317,25.245850987599738],[-103.46929245693957,25.243837265631726],[-103.46899427920721,25.243413251091965],[-103.46850292407584,25.242153603426175],[-103.46838331428455,25.241954662790647],[-103.4680143538124,25.241758043651544],[-103.4659870414643,25.24151015257371],[-103.46555578413256,25.240994011936493],[-103.46630193649361,25.239506652701778],[-103.4664578917322,25.23902506571386],[-103.46623395563438,25.238680381343784],[-103.46565664456972,25.23821894111461],[-103.46430308997537,25.237871420377132],[-103.46331790296125,25.237667169295094],[-103.46205179105777,25.237265462117193],[-103.46128612860247,25.23667374389788],[-103.46079028287744,25.235624706957026],[-103.46068312197457,25.235225576584696],[-103.46067625275174,25.234612132182576],[-103.4608018352169,25.234037461468745],[-103.46017980457339,25.23350974191584],[-103.4563971704419,25.232384381963243],[-103.45530355683746,25.231660942451242],[-103.45263338990338,25.229434269086084],[-103.45140713301856,25.229084064678716],[-103.45105451883501,25.229033967055955],[-103.45021373429819,25.228614906604548],[-103.44952894137344,25.227714267940485],[-103.44908907265705,25.226411262492377],[-103.44881618318522,25.22429313977534],[-103.44875144910003,25.223746908296448],[-103.44882096156675,25.223480145290637],[-103.44968615663282,25.22213846800156],[-103.44993226547234,25.220888478343795],[-103.45004630138249,25.220227918651176],[-103.45010940283248,25.219307055249487],[-103.44994273923402,25.218828445744748],[-103.4494974135576,25.21835239824287],[-103.44851759003882,25.21729441864187],[-103.44747794711287,25.215103889205807],[-103.44739263635131,25.21402435546679],[-103.44734213825325,25.21343797508274],[-103.44710140894023,25.212893342297093],[-103.44570987171477,25.21041202901762],[-103.4438024742388,25.208297457841184],[-103.44262181598071,25.20730441410643],[-103.44206135710107,25.206690205015548],[-103.44134292988076,25.205957956526504],[-103.4395762731715,25.204477792648106],[-103.43922514605822,25.204106912878558],[-103.43895462078342,25.203421031903986],[-103.4389853728564,25.202700455962145],[-103.43887810087438,25.202164223439752],[-103.43851139754497,25.201845243174773],[-103.43802856624347,25.201719184154683],[-103.43749688119527,25.201953358723813],[-103.4368991979427,25.20264884335728],[-103.436640719877,25.202657398229633],[-103.43446060903864,25.200851510454697],[-103.43031949005939,25.199577606360663],[-103.42720248230017,25.201386874412663],[-103.42604279881022,25.201620872185458],[-103.42558512895846,25.20137916841236],[-103.42521828958223,25.200918780772497],[-103.4235270173333,25.198824901686407],[-103.42332581256329,25.198175025700493],[-103.42228361337459,25.197652025363766],[-103.42076827764782,25.19721221512276],[-103.41904591066606,25.196614209032248],[-103.41833766551144,25.196217868113365],[-103.41839696633508,25.194926187767408],[-103.4186816743478,25.194136715530135],[-103.41877301265345,25.19309556598364],[-103.41832122051255,25.19200594694331],[-103.41646109187371,25.19036995683888],[-103.41489145058443,25.188970276366376],[-103.41428506454588,25.18849556811159],[-103.4128503315905,25.187361403165312],[-103.41104905155714,25.186230506567767],[-103.40986401357327,25.185412041686675],[-103.4093163313483,25.184758265484618],[-103.40974350127021,25.183127736364156],[-103.40951824438372,25.1826362564251],[-103.40907462964589,25.182293445111895],[-103.40835718032923,25.182393217228878],[-103.40781697293949,25.182611447314798],[-103.40659036591472,25.1830892213394],[-103.40628318279914,25.183158649604138],[-103.40571162665162,25.18319042067435],[-103.40530036668576,25.183127401111108],[-103.40382966537936,25.182727042769613],[-103.40307945559556,25.182506977035075],[-103.40267926283644,25.1821104166479],[-103.40194023959322,25.180892461199903],[-103.40082431173334,25.1780214536779],[-103.40032305271035,25.17733727417817],[-103.39997915314825,25.177148686402177],[-103.39940490466171,25.176927039559416],[-103.3990943009934,25.176676390527234],[-103.39838053644621,25.175749090155648],[-103.39820173959902,25.17548391450515],[-103.39807441478058,25.174780828943085],[-103.39795949590768,25.173634807233725],[-103.39806350650935,25.172393482635982],[-103.39851229106586,25.171856000681032],[-103.39877247563584,25.17150691138346],[-103.39890653759505,25.170789972348928],[-103.39867164574491,25.170307405115125],[-103.39716246477104,25.169176459427604],[-103.39690880821422,25.168765239763786],[-103.39668432002662,25.168340418512514],[-103.39666266327265,25.16768706375683],[-103.39683045592523,25.16692532673244],[-103.3964972263887,25.165927951494893],[-103.39649223215577,25.16546118141457],[-103.39660766651696,25.165286767670466],[-103.39711563904837,25.16480210775154],[-103.39744725565976,25.16427899481596],[-103.39739871455947,25.163852613037193],[-103.3972802842826,25.163746960122523],[-103.39671772024093,25.163432556933685],[-103.39564295811766,25.16301526692439],[-103.39437320171157,25.162186237723404],[-103.39411970989124,25.161788340520218],[-103.394072889977,25.161522003047764],[-103.39420127057815,25.16052807842925],[-103.39413450526285,25.160272370652365],[-103.39295445105279,25.15975796622058],[-103.39280202428847,25.15921246687674],[-103.3931653891841,25.158915817321144],[-103.39354018648083,25.158790216923194],[-103.39409494306267,25.158441991246946],[-103.3944135405929,25.158029600723125],[-103.39429041788628,25.157735631820742],[-103.39307496308493,25.156903413818668],[-103.39157130667678,25.15612976009021],[-103.3904947743523,25.155539070250768],[-103.38966972798954,25.15515954979213],[-103.38936061419372,25.15504222937477],[-103.38744942824326,25.15316510160295],[-103.38629199845275,25.151854841047793],[-103.38590450661292,25.151258055011567],[-103.38522480901173,25.15075718554175],[-103.3831919102314,25.149190862258592],[-103.38239321805582,25.145905294260842],[-103.38247911640832,25.144914813179867],[-103.38135885976408,25.14468453043554],[-103.38131638882487,25.144681236010513],[-103.37943739269178,25.14420584051902],[-103.37844142848905,25.143343859883316],[-103.37714183923799,25.142049171466965],[-103.37648367612303,25.14033531290397],[-103.37624320060178,25.13943348662434],[-103.37414284394555,25.134554653798602],[-103.3723899220584,25.129596408201962],[-103.37212784734425,25.127767975877475],[-103.37130372223197,25.12616977943577],[-103.36841950985195,25.12215656961621],[-103.36531863883226,25.119051233839457],[-103.36356633992466,25.116308326526394],[-103.36099656462068,25.1120239806462],[-103.35953930689169,25.110028850222875],[-103.35699906140064,25.108654491774132],[-103.35232887812776,25.107296214971257],[-103.35144174784352,25.10721895723526],[-103.35113111144432,25.107249912836153],[-103.35019263232829,25.107556531162118],[-103.34856917374384,25.10908170753447],[-103.34473128605521,25.11091036539875],[-103.34103548969108,25.109118825403982],[-103.33928095967894,25.10712021826248],[-103.33909517031594,25.106495974343204],[-103.33908819513135,25.105815778318345],[-103.33954728855736,25.10494474520425],[-103.33993992122515,25.10456981539886],[-103.34010597871958,25.104360739834533],[-103.34027136280218,25.104086103781583],[-103.34017214568303,25.102983358888878],[-103.33924048994692,25.101103510321025],[-103.33782231135973,25.099580463342534],[-103.33669759223801,25.098892224213728],[-103.33527291602445,25.09803845878065],[-103.33402063075948,25.0972873489153],[-103.3326090989982,25.09645522868857],[-103.33217707284638,25.09625302672191],[-103.33113923160874,25.09605778303313],[-103.32908841713396,25.09595902619685],[-103.32871608197473,25.09584392750037],[-103.328137220251,25.09548836260626],[-103.32728968026419,25.094798291530424],[-103.32671688308216,25.094443289212393],[-103.32580940743117,25.094271040273497],[-103.32390542168798,25.094707140674643],[-103.32227331851499,25.09428979851134],[-103.321587166884,25.093756750437763],[-103.32101151274321,25.092441480445416],[-103.31920198086874,25.09057080096727],[-103.31869030202137,25.089726446733096],[-103.31850851829188,25.08931039610752],[-103.31776227976053,25.088683535604957],[-103.31730895871425,25.088611632799484],[-103.31387026618256,25.08659286363786],[-103.31318310582282,25.085952018527564],[-103.31195868250188,25.08485765290527],[-103.30944444213964,25.084589821139957],[-103.30766252430851,25.083971519871113],[-103.30733443765502,25.08371830177714],[-103.30602818289793,25.083311566577663],[-103.30257626891608,25.083370185235538],[-103.29500638719054,25.079978374753807],[-103.29322580019556,25.0786560310288],[-103.29260746318158,25.0770148461732],[-103.29267882598572,25.074012837157454],[-103.29275878105892,25.073002090773628],[-103.29207382110047,25.071460712906116],[-103.29170817868254,25.07101002025064],[-103.29065146610668,25.070014609536656],[-103.28951565235883,25.069167745840332],[-103.28830199966325,25.068740882908628],[-103.2850731818948,25.068082496393572],[-103.28358802466897,25.06725911527701],[-103.2812483198449,25.065139672151304],[-103.28064358784167,25.064625892301706],[-103.27823144925526,25.062969429575958],[-103.2777401271465,25.062809614795185],[-103.27763010291403,25.06280140186084],[-103.27725113738785,25.062886377821314],[-103.2768035351337,25.06310840746528],[-103.27598943005307,25.063670117282413],[-103.27488735692413,25.064425236455463],[-103.27458875989402,25.06455505861078],[-103.27298246147944,25.063636291027706],[-103.27237340808927,25.062676609889593],[-103.27210674989567,25.06197806292073],[-103.2708615444152,25.06035010338411],[-103.26837269229372,25.060333774854314],[-103.2668134582758,25.060159205821492],[-103.2647798404376,25.0596750532888],[-103.26363868134177,25.059290558757652],[-103.26177437381517,25.058099652719022],[-103.26115672859834,25.05678216196003],[-103.26101289561478,25.05541520649922],[-103.26150632960446,25.054168240826414],[-103.26353427480251,25.053672361939675],[-103.26559726802623,25.053855737468496],[-103.26633827419653,25.054561865326548],[-103.26668236508203,25.055244755978833],[-103.26936992643823,25.05515030210887],[-103.26968370395889,25.054528969033015],[-103.26968839468742,25.05295462435066],[-103.2689124281095,25.050307279600304],[-103.26878889768858,25.049143325668183],[-103.2690497687147,25.04883791277956],[-103.26957851186563,25.04857933406538],[-103.2712357615294,25.04840215691638],[-103.27235232325557,25.04812013866581],[-103.27341048004735,25.047503270707864],[-103.27379638155116,25.047108837505846],[-103.27445765309756,25.046257184929686],[-103.27440637547045,25.04571851714411],[-103.2705871268841,25.042513604082956],[-103.2698640996627,25.04156166031521],[-103.26955661803265,25.040828187471845],[-103.26967480246464,25.039936531196645],[-103.27010574836169,25.039678256987145],[-103.27171920430771,25.039258842252593],[-103.27227513963703,25.039125029673244],[-103.2745149851985,25.038334571638188],[-103.27631481844202,25.036705383979324],[-103.27745213834419,25.03536673836288],[-103.27766990990335,25.03501078134809],[-103.27798774208463,25.03440609882699],[-103.27787181940556,25.03419922122822],[-103.27753950593336,25.033938011144073],[-103.27666779387596,25.033699387727893],[-103.27499654778165,25.033560692688468],[-103.27347731108887,25.03320898137116],[-103.27283553154075,25.0329775697046],[-103.27208364907807,25.032728833382237],[-103.27031739385944,25.03195138684822],[-103.2700452203083,25.031707874647623],[-103.26865691380289,25.02994537000029],[-103.26851331629433,25.029564317966106],[-103.26748933552881,25.028043728619593],[-103.26741588916605,25.027810914010047],[-103.26738386239026,25.02747126960071],[-103.26762968013111,25.027059775113173],[-103.26782809179701,25.026912570348372],[-103.26919634451446,25.026877853779922],[-103.27015674843665,25.0267598603059],[-103.27079134622693,25.02650713695357],[-103.27246414144031,25.025693534628715],[-103.27315135711808,25.025068933851003],[-103.27366211518131,25.02416387953366],[-103.27410080577732,25.0230410019621],[-103.27403416911716,25.0209024978779],[-103.27114835087934,25.01668036976855],[-103.26861499608975,25.013790003366694],[-103.26684875901174,25.01195688175892],[-103.2656131722814,25.011266087653667],[-103.2648982431474,25.01068942790988],[-103.26340947115278,25.009483801620036],[-103.26161964543212,25.008296919718134],[-103.25985851079565,25.006973272261973],[-103.25608506960958,25.004993143427555],[-103.25459684777837,25.00403159872326],[-103.25289132199441,25.002243321218145],[-103.25112704020006,25.000612766712834],[-103.2501649181836,24.999739318598813],[-103.24920597619689,24.998925506393277],[-103.2489018513603,24.99846380022808],[-103.24776835082781,24.997357649613605],[-103.24736497138792,24.99696043187953],[-103.24667475115655,24.996413171560675],[-103.24656306983809,24.996026602748145],[-103.24660509878834,24.99507076691475],[-103.24735669344722,24.993847745884864],[-103.2485410288599,24.993034781613005],[-103.24865567871774,24.992802557755226],[-103.24847842708073,24.991984273651497],[-103.24716431008551,24.990859933640138],[-103.24584909029295,24.99006817036104],[-103.24558672889157,24.988741597751755],[-103.24647543267395,24.985678025532764],[-103.24634133103939,24.985233176577935],[-103.24514381434795,24.98325876426162],[-103.24562826150822,24.982182193763606],[-103.24616396631893,24.98179573263951],[-103.24801259774415,24.980825538359795],[-103.24873737623363,24.98036475671904],[-103.25130901383159,24.97526690602689],[-103.25166432341575,24.973518613832482],[-103.2517693912809,24.973017251441945],[-103.25223709123293,24.971975694309663],[-103.2525912971218,24.97040405231303],[-103.2528293092671,24.97001474651495],[-103.25304745389008,24.969849197994108],[-103.25322723160536,24.969847766076043],[-103.25450414159616,24.96994034379486],[-103.25557259115266,24.96991362090165],[-103.25780048385349,24.969308953780626],[-103.25864359963384,24.968332887105873],[-103.25903590066173,24.96758350265503],[-103.25910737694812,24.96670928553766],[-103.25891517197465,24.965910869673735],[-103.25867255315103,24.96525298909262],[-103.25897804739276,24.96451621362604],[-103.22205118814009,24.933140866588417],[-103.16242929124769,24.88243114563238],[-103.09679195918613,24.826531890553042],[-103.0963643286882,24.826296486214005],[-103.0961101220393,24.826159417016584],[-103.09597217999647,24.826088638585986],[-103.09592894615906,24.826068094372772],[-103.09585937709522,24.82603723734752],[-103.09579188008439,24.82600679898195],[-103.09565146577836,24.825926656649187],[-103.09557454343536,24.82586775544314],[-103.09503264998551,24.82534775537613],[-103.09494387612222,24.825263819841837],[-103.09489701950133,24.825219606351027],[-103.0947497367415,24.825080905618904],[-103.09465027300593,24.8249875501254],[-103.09455381999317,24.824897368390623],[-103.09450775410107,24.824854427338153],[-103.09434251960164,24.824697546767936],[-103.09427332505504,24.82462707447752],[-103.09416508176895,24.824497879123896],[-103.09410173329104,24.824401370860812],[-103.09402125700194,24.824254354390348],[-103.09395624295587,24.824130115625678],[-103.09390990553396,24.824045903235003],[-103.09383527167489,24.82392438872455],[-103.09378261394602,24.823847414281204],[-103.09372846708163,24.823772831195868],[-103.09361855488942,24.823628043462293],[-103.09348386036532,24.823455895812685],[-103.09343226665032,24.823391415833157],[-103.09338184166091,24.82332929241403],[-103.09333146364224,24.82326821429899],[-103.09327997728326,24.823206830701224],[-103.09322624880497,24.823143849091082],[-103.0931696395644,24.823079316873816],[-103.09304722627928,24.822951208243467],[-103.09298118116965,24.822890495809816],[-103.0929118185332,24.82283327641136],[-103.09287589755553,24.82280603025862],[-103.0927240006136,24.822706541498462],[-103.09255246183352,24.82262135196305],[-103.09244946081753,24.822581874411696],[-103.09239149230734,24.8225624086337],[-103.09225976783318,24.822523282689644],[-103.09168465588249,24.822360624795692],[-103.09134333561082,24.822231669658834],[-103.09117743430176,24.822159710652443],[-103.09101544648627,24.822085597733462],[-103.09093604226445,24.822048340042272],[-103.09062480418953,24.82189763090537],[-103.09039136160078,24.821780587201772],[-103.09006939961296,24.821617371540526],[-103.089901856859,24.821534600012228],[-103.08964050848465,24.821412086490398],[-103.08920338989543,24.82122578289028],[-103.08897384311854,24.82113595842725],[-103.08890589983474,24.821110473239912],[-103.08877945451547,24.821063950973155],[-103.08860228374823,24.820998507517174],[-103.08848404596495,24.82095262522722],[-103.08824244404383,24.82085436890378],[-103.08801230736248,24.8207635758356],[-103.08785346067458,24.820707735479118],[-103.08774975456544,24.820675021905743],[-103.08713704568964,24.820521807844727],[-103.08694612520651,24.820484411224015],[-103.0868689162707,24.82047243465388],[-103.08668136751345,24.820449389300848],[-103.08656676845254,24.820438378605047],[-103.0861335678099,24.820406649147742],[-103.08596595524148,24.820395834024225],[-103.08542417910382,24.82035967682947],[-103.08505203057086,24.820330371353748],[-103.08486649646972,24.820313716472185],[-103.0844946151833,24.820276267834743],[-103.08411853409916,24.820233164221236],[-103.08353893539993,24.82015763815798],[-103.08278722329322,24.820046749714834],[-103.082621895557,24.820020529979672],[-103.08233928940467,24.819973562670157],[-103.08199036232872,24.819905487874053],[-103.08188989087995,24.819878046001804],[-103.08181101157288,24.819849885816154],[-103.0817362884793,24.81981812679743],[-103.08166174957393,24.819783712648928],[-103.08158678880204,24.81974854313239],[-103.08151080010526,24.819714518008368],[-103.08143282673325,24.819683033959564],[-103.08126113726564,24.81962472348681],[-103.08116200080036,24.819595659631318],[-103.08099312349651,24.81955044076767],[-103.0808724710235,24.819520817064358],[-103.08069067958496,24.81948063075231],[-103.08051849985725,24.819448390268576],[-103.0804094545112,24.81943046205197],[-103.08025263400287,24.819406550817575],[-103.08020175748379,24.819398938533595],[-103.08010087657561,24.819384364201824],[-103.08005033158645,24.81937760446789],[-103.0797856480018,24.819353227409295],[-103.07966660285587,24.81935230091983],[-103.0794547514879,24.819375278671828],[-103.07928108522987,24.819415094680267],[-103.0790765197496,24.81947847619648],[-103.07873282982428,24.8196004747972],[-103.07849725607247,24.81968495910246],[-103.07805945830023,24.81982333202376],[-103.07751681305785,24.819967192566764],[-103.07736459763856,24.820008341062078],[-103.07722356328009,24.820045625280102],[-103.07696505802812,24.820102658783526],[-103.07690374459736,24.820112530791278],[-103.0766677197663,24.82013727031051],[-103.07655380936802,24.820142789562055],[-103.07644171122695,24.820145105562062],[-103.07633146096043,24.820144565441012],[-103.07622326534653,24.820141357345904],[-103.07611733116244,24.82013566942362],[-103.07565198686007,24.820067291281134],[-103.07554354464185,24.82003638090788],[-103.07542972766544,24.81999575004386],[-103.07524479076653,24.81991121752725],[-103.07517850712412,24.819875690273932],[-103.07503973812123,24.81979548866218],[-103.07489498774208,24.81970765393919],[-103.0746726519294,24.819573567745522],[-103.0745243772567,24.81948991955437],[-103.07445033981116,24.81945079013093],[-103.07430200354605,24.81937876795746],[-103.07415270390396,24.819316191119015],[-103.07400168628112,24.819264315192356],[-103.07384781091463,24.819222092418784],[-103.07368955289655,24.819186171701176],[-103.07352537058989,24.819153101790846],[-103.07326368258163,24.81910228816463],[-103.07307140545834,24.81906821520454],[-103.07273851155259,24.819022991223164],[-103.07247687384177,24.819000303617088],[-103.0720289672663,24.81897535974025],[-103.07186995041906,24.818967421436014],[-103.07059771070271,24.818855670511027],[-103.07031151415902,24.818820218729797],[-103.07004890070635,24.818788617359928],[-103.06980924163776,24.818760388415058],[-103.06969603290247,24.818746137192647],[-103.06947869437369,24.81871442661071],[-103.06937289952464,24.818695793389168],[-103.06916301766432,24.81865015804499],[-103.06884715281961,24.818559155137734],[-103.0686345612765,24.818484998425845],[-103.06841939882526,24.818401384653043],[-103.0682009800422,24.818309171636827],[-103.06809049744402,24.818259769908423],[-103.0677539525629,24.818097532219895],[-103.06740961975407,24.817912677348204],[-103.06729224075599,24.817845198607017],[-103.06678992911367,24.817532636150247],[-103.06665210481367,24.817441136184016],[-103.06635663429853,24.817238759137922],[-103.06517501615627,24.816397336638943],[-103.06486892657716,24.816185604236466],[-103.06470633651031,24.816078513450464],[-103.06456717406326,24.815992108816772],[-103.06437766914047,24.815886390145636],[-103.06395612987387,24.815691719693234],[-103.06369930331732,24.81557990953513],[-103.06306825916909,24.815294407416673],[-103.06224465091293,24.814864023513394],[-103.06180516897524,24.814602241501177],[-103.06133044580247,24.814300274299512],[-103.0609690769524,24.81407181536275],[-103.06088809943918,24.814025057834442],[-103.06072934171402,24.813942685460063],[-103.06057052852987,24.813873655774273],[-103.06040921179107,24.81381591467118],[-103.06024309041095,24.813767395291052],[-103.06006998002164,24.81372601807061],[-103.05998079969442,24.813707284128782],[-103.0597991351089,24.813672065700246],[-103.05961581601099,24.813637616456447],[-103.05943414328522,24.81360126030438],[-103.05925676289831,24.813560641821425],[-103.05908370111092,24.81351468821623],[-103.05866584965543,24.81337154656586],[-103.05826867182924,24.81318276633243],[-103.05797327308306,24.8129980971309],[-103.05782447865494,24.812884022903688],[-103.05757280036471,24.812657201757816],[-103.05530520494938,24.810620585730362],[-103.0549735306289,24.810413418083954],[-103.05476098502976,24.8102952854656],[-103.05455573674072,24.81019508472332],[-103.05435582657344,24.810112378251972],[-103.05415697275669,24.810044633643997],[-103.05405657237657,24.810015552193306],[-103.05374473041667,24.809943560797024],[-103.0535182547141,24.809905606339328],[-103.05326285782462,24.809873907636245],[-103.05296585926135,24.809847033046765],[-103.05242112970592,24.809812938423818],[-103.05201021960471,24.80979398846455],[-103.05159144565113,24.809778500286484],[-103.05066733401878,24.80975782369609],[-103.05037111241529,24.809758704420915],[-103.0500016439492,24.80977278875497],[-103.04989741222408,24.809781387307623],[-103.04955648472071,24.80984085450308],[-103.04941929342442,24.809889031685827],[-103.04923571125994,24.809990267403407],[-103.04912026636993,24.810082463498816],[-103.0490629326822,24.810137706615023],[-103.04894623686306,24.81026939076554],[-103.04882336497599,24.810432664563393],[-103.0485732443164,24.810806989279513],[-103.0484626503578,24.81097497414106],[-103.04837264599689,24.811101785726294],[-103.04827460709214,24.811208231553564],[-103.04822291617978,24.811239145878005],[-103.04817310814786,24.811251210955106],[-103.04811812890324,24.811253852569166],[-103.04805374285309,24.811248975451065],[-103.04793180203694,24.81122761566229],[-103.0478281773228,24.81120390446341],[-103.04751871033022,24.811116607809765],[-103.0472798049829,24.811039366747707],[-103.0469637324187,24.81093096471011],[-103.04658194423735,24.810794925198365],[-103.0461728399066,24.810644761355604],[-103.04491748091152,24.81013684521713],[-103.04472609053181,24.810046838715152],[-103.04456062884105,24.809966010986273],[-103.04441298221252,24.809892615689478],[-103.04427982638157,24.80982641829297],[-103.04415804532772,24.809767249981633],[-103.04404454452515,24.80971492600679],[-103.04383247630477,24.80962824121059],[-103.04372971791219,24.809592030279248],[-103.04362641153665,24.809559360865933],[-103.04352162097359,24.80953004962788],[-103.04341551069047,24.809504631669483],[-103.0433620270041,24.809493559651855],[-103.0432543352411,24.809475043504335],[-103.04287702603233,24.809468450749876],[-103.04259375905303,24.80951544206721],[-103.0422387814383,24.80959951224895],[-103.04187738751068,24.809698974336072],[-103.04166706863435,24.80976245381106],[-103.04140813213701,24.809849260163958],[-103.04125578310737,24.80990658690888],[-103.04065514979209,24.8101657701784],[-103.04041361136899,24.810277232680903],[-103.04011953374282,24.810414925355246],[-103.03961128353927,24.810656192142403],[-103.03912443051587,24.810892463942423],[-103.03886823360074,24.811021303455504],[-103.03867961277501,24.811120129853975],[-103.03842896501897,24.811253378233744],[-103.03827680189801,24.811322456760138],[-103.03817474857169,24.811359890808887],[-103.03791802337912,24.81142365427695],[-103.03776448066384,24.811442917453803],[-103.03751534437208,24.81145403318152],[-103.03728748860806,24.81144050316334],[-103.03703002283225,24.811398265284538],[-103.03691840089539,24.811375464646744],[-103.03666350241122,24.81131879504312],[-103.03638651988024,24.811253077981462],[-103.03611159974275,24.811185165973882],[-103.03537286321409,24.810999360879578],[-103.03521230545351,24.810965586373186],[-103.0349904254901,24.810931277993404],[-103.03478853604895,24.81091410501375],[-103.03472555730656,24.81091163542743],[-103.03460588420342,24.810910851476763],[-103.03454894426432,24.810912205712214],[-103.03443979524525,24.810917357964513],[-103.03433549484777,24.810924349435766],[-103.03428461568723,24.810928002693174],[-103.03413474622897,24.81093716878985],[-103.03394013986656,24.810940177323005],[-103.03384530209905,24.810935656965057],[-103.03379857244232,24.81093153362997],[-103.03370709228943,24.810919974198157],[-103.03342382875599,24.8108604938472],[-103.03328966410675,24.81081644631945],[-103.03322514282468,24.810787757437254],[-103.03312544039915,24.810729463230984],[-103.0330526524462,24.810672290995342],[-103.03262357536659,24.810143439639376],[-103.03253472717864,24.810008642181003],[-103.03246266390738,24.809889273970953],[-103.03240024298822,24.809770779974997],[-103.03230230039878,24.809550801033822],[-103.03206236260036,24.80895530114458],[-103.03194233985016,24.808661235018803],[-103.03181575498098,24.80836225833542],[-103.0317514312826,24.808216396183525],[-103.03162195868276,24.807938900638987],[-103.03123534611308,24.807297480395448],[-103.03110846501801,24.807165479086905],[-103.03098005868009,24.807063899537866],[-103.03063709999952,24.806868694221805],[-103.03032836038335,24.806711257669292],[-103.03016103242857,24.806622010621652],[-103.02998500684913,24.806522584332754],[-103.0298943867441,24.806469748618667],[-103.02970963638279,24.806360071888378],[-103.02952247843825,24.80624804121385],[-103.0293356227026,24.806137232534468],[-103.02924305426541,24.806083358454146],[-103.02906083825468,24.8059806838005],[-103.02897166454795,24.80593268529435],[-103.02871472379553,24.805806857474522],[-103.02863316653247,24.805772068254498],[-103.02847250284788,24.8057102419005],[-103.02822076760117,24.805621361228077],[-103.02803266573562,24.805552607793686],[-103.0277110996895,24.805422011940948],[-103.02727628812283,24.805216755202764],[-103.02693314570178,24.805010346037648],[-103.02680216428564,24.804912706877076],[-103.02669146759598,24.80481986361508],[-103.02664210526433,24.804775488000075],[-103.02650452077864,24.804640910561318],[-103.02619792901476,24.8042774236294],[-103.02578316254926,24.803750574688536],[-103.0250162472546,24.802849053331954],[-103.02445778273233,24.802319150423557],[-103.02430186323943,24.802190964561817],[-103.02359296080522,24.801679631182253],[-103.02288698282388,24.801221716264706],[-103.02260684460936,24.801040170248257],[-103.02239396578352,24.800894798187244],[-103.022089686544,24.80063101349748],[-103.02203175390162,24.800542711417734],[-103.02198710403133,24.800418508742382],[-103.02197995645218,24.800379331404542],[-103.02197196880473,24.80030434720652],[-103.021960942352,24.800168246163196],[-103.02189803050197,24.800001755313644],[-103.02185018961649,24.799956747668887],[-103.02174164099875,24.799898654064293],[-103.02169398644008,24.79988171743463],[-103.02158005224925,24.799851637775816],[-103.0214435320446,24.79982776988186],[-103.02128755274225,24.799811608926802],[-103.02102391182052,24.799805053336968],[-103.02092951442484,24.79980810557788],[-103.0207324491293,24.799822055709285],[-103.02052591218569,24.799846297828537],[-103.02031177042136,24.79988062928919],[-103.02020224064523,24.799901500695853],[-103.01973158727111,24.80000745618986],[-103.01960124303332,24.800039000782704],[-103.01931897121545,24.800107370338424],[-103.01884479343158,24.800220368190764],[-103.01822270835515,24.800376692377256],[-103.01796624840233,24.800451046783223],[-103.01767012597463,24.800554510021072],[-103.01751513440615,24.80061925974661],[-103.01731665109753,24.800712108244568],[-103.01719204252356,24.80077129319733],[-103.01699780370183,24.800853146894497],[-103.01677337652882,24.800922877071173],[-103.01668988656144,24.800942892857847],[-103.01651565192384,24.800978187612372],[-103.01625408097823,24.8010198825923],[-103.01609322203137,24.801040629822012],[-103.01594783460223,24.80105576701891],[-103.01563140217957,24.80106677503653],[-103.01551525924253,24.80105946976562],[-103.0154019654646,24.801044754996497],[-103.01529027059001,24.8010220719828],[-103.01523463203716,24.80100756777523],[-103.01512302610757,24.80097190813126],[-103.01506695505861,24.800950753364248],[-103.01495450502046,24.800902123116487],[-103.01484199511833,24.800845535343115],[-103.0147298462175,24.800781554156742],[-103.01439791220434,24.800553474829712],[-103.01428886436952,24.800469101582166],[-103.0140756815207,24.800292118418724],[-103.01397496385431,24.800198284364797],[-103.01379330450862,24.799995073495836],[-103.01370835960887,24.79987814289234],[-103.0136199452661,24.799742285984564],[-103.01329301565357,24.799183582827254],[-103.01317432152712,24.798976042381582],[-103.01306286378195,24.79878372911321],[-103.01296411147064,24.798618911331175],[-103.01287549223639,24.79847930534146],[-103.01279242341775,24.798358989433495],[-103.01271032239208,24.798252041883643],[-103.01262555372955,24.798152996579063],[-103.01257621094862,24.798098893409815],[-103.01249403010524,24.798011417263183],[-103.01236056293345,24.797868660282177],[-103.01214701195426,24.79761257552218],[-103.01207102153273,24.797508090398367],[-103.01197300985689,24.7973550327319],[-103.01185413512479,24.797155192138916],[-103.01178721289847,24.79705380721839],[-103.01170916456425,24.79695003578837],[-103.01157417287328,24.79679295953696],[-103.01152564991605,24.79674116023824],[-103.01142519448683,24.796639807642805],[-103.01126846156063,24.79649628849438],[-103.01110131158731,24.79636562116218],[-103.01098167810136,24.796286931836903],[-103.01085271080149,24.796214336974288],[-103.010538206602,24.796058148252087],[-103.01022195807286,24.795898347457978],[-103.00983465664194,24.79569101621712],[-103.00941914127094,24.79545998895651],[-103.00914898639354,24.795305691701344],[-103.00901856858837,24.7952299829426],[-103.00876368610386,24.795079686774045],[-103.00825657210095,24.794772443382953],[-103.00786167010477,24.79452745459122],[-103.00746720034437,24.79427755920858],[-103.00697783480456,24.793957820698097],[-103.00675941579937,24.793813687714646],[-103.00656243236011,24.79368726724624],[-103.00631281089022,24.793542562038112],[-103.00616958857978,24.79347640932849],[-103.00594450352304,24.7934016666469],[-103.00585699008468,24.79337858795577],[-103.005649471455,24.793328469845562],[-103.00527130297377,24.79324509736739],[-103.004877050365,24.79317026555219],[-103.0046412654072,24.793135452225215],[-103.00435084609524,24.79310927668064],[-103.00419444823558,24.793104181043645],[-103.00406342880632,24.79310479759772],[-103.00395335987878,24.79310832901183],[-103.00385716542252,24.793115091323102],[-103.00376710737794,24.793126178893033],[-103.00352304605781,24.79318076511396],[-103.00329405509632,24.793268629022634],[-103.00317117686325,24.79333384627131],[-103.00298019617384,24.79345768294695],[-103.00272134672878,24.79365324827745],[-103.00259360345814,24.793757105253633],[-103.00234820226729,24.793979904597222],[-103.00223306791412,24.79410300491577],[-103.00217793961764,24.79416834237213],[-103.00197683203317,24.794455630507628],[-103.00188973409757,24.794614492675123],[-103.00185000222211,24.794697642062772],[-103.00171671448055,24.7950461345618],[-103.00164005655893,24.79530221257926],[-103.00159805077652,24.795458524930268],[-103.00156292759777,24.795600192974632],[-103.00154813321308,24.7956661769407],[-103.00150497625873,24.795958898502363],[-103.00150272194395,24.79601165334708],[-103.00151382147794,24.796248523384463],[-103.00152438436135,24.796330352643906],[-103.00154384455317,24.79644178260213],[-103.00155981325685,24.796511787534314],[-103.00157868429591,24.79658101664262],[-103.001589313083,24.79661600278604],[-103.00163757137068,24.79675970194205],[-103.00167615916456,24.796871441799624],[-103.00172821615791,24.797021866893715],[-103.00179316924198,24.797155084559733],[-103.0018349028606,24.79720900407591],[-103.00195936119599,24.797321460646003],[-103.0020386459127,24.797389747988518],[-103.00208795827456,24.797439061784928],[-103.00211022255439,24.79746478616721],[-103.00214774047168,24.797518229800403],[-103.0021865296601,24.79766094062967],[-103.00216610197975,24.797776274352657],[-103.00214264211229,24.797831470642905],[-103.00212818035516,24.797858411710934],[-103.00209457618718,24.797911328966222],[-103.00203481728215,24.797989340468177],[-103.00196630023657,24.798066655162415],[-103.00194119193696,24.79809199811342],[-103.00188678656201,24.79814147880211],[-103.00182592409789,24.798188727769343],[-103.0017577666843,24.798233025088564],[-103.00164191019854,24.798292631955917],[-103.00151032478061,24.798342319117012],[-103.0014145854359,24.79836901103147],[-103.00136498744371,24.79838025970116],[-103.00126389034074,24.79839831675247],[-103.00111215845811,24.79841356448162],[-103.00101256582877,24.79841492924112],[-103.00090667383381,24.79840705208443],[-103.00078491065523,24.798387528761396],[-103.00063770449657,24.79835395498793],[-103.00035560856384,24.798271625078087],[-103.00012962217727,24.798191080720585],[-102.99902997106312,24.797638235169018],[-102.9985295671163,24.797332362539578],[-102.99842735287416,24.797266795884184],[-102.99816945260858,24.79708987370151],[-102.99809685758407,24.797034826265758],[-102.99790720171114,24.796870423973246],[-102.99779783412714,24.79675729462383],[-102.99765244521762,24.79658392883755],[-102.99756434108724,24.79646758277306],[-102.9973682113839,24.79618285011958],[-102.99733468825696,24.796128259052807],[-102.99722654255311,24.79592289121433],[-102.9971860982626,24.795828312625986],[-102.99715045326332,24.795738299250786],[-102.99708007917889,24.795569227876797],[-102.9970179870644,24.795450670519074],[-102.9969685785702,24.795375452367182],[-102.9969106701169,24.795303281553174],[-102.99677143473093,24.795171811611738],[-102.99669398781162,24.79511553216662],[-102.99657288738291,24.795046783566022],[-102.99648771858148,24.795011124642258],[-102.99639637350714,24.794982327175944],[-102.99634766818781,24.794970151471944],[-102.99607094783772,24.79492811571754],[-102.99601171570464,24.794923721015834],[-102.99589349381671,24.79491947669078],[-102.99566824735257,24.794930980186336],[-102.99544513978071,24.79497201891826],[-102.99538641490977,24.794987272039293],[-102.99526375460954,24.795023387388255],[-102.99513780460677,24.79506388337188],[-102.99507514432935,24.79508452030052],[-102.99489585456524,24.79514196861453],[-102.99484085454276,24.79515806279278],[-102.99473725393023,24.795184998118543],[-102.99468751256256,24.795196083675023],[-102.99458929575678,24.795214101590716],[-102.99453967953843,24.795221278354063],[-102.9944367006342,24.795232565864012],[-102.9943277902508,24.795240281027134],[-102.99415581141892,24.795245991299907],[-102.99409681349789,24.795246516997963],[-102.99391664543901,24.795244454442866],[-102.9938554584383,24.795242441746893],[-102.99346936387292,24.7952116087601],[-102.99333247001528,24.79519338081451],[-102.99278764403294,24.795102224793993],[-102.99260812804812,24.795063251406475],[-102.99250508069144,24.79503380852441],[-102.99245964250275,24.795017713870266],[-102.99237819447063,24.794982811119837],[-102.99234036833968,24.79496410928101],[-102.99226597113261,24.79492447031174],[-102.99218719305009,24.79488220512502],[-102.99184774359406,24.794717905525886],[-102.99174444237485,24.79466697593108],[-102.99164314367243,24.79461333211941],[-102.99140423351872,24.794452609524342],[-102.99127740639733,24.794334726485715],[-102.99123439249189,24.79429098822078],[-102.99112315887385,24.794178287170155],[-102.99097271586442,24.79406778121023],[-102.99092252573541,24.794048955390963],[-102.99087614564013,24.794039580785466],[-102.9908322741079,24.7940367927593],[-102.9907894868116,24.794039873339557],[-102.99070134476318,24.794062915082122],[-102.99065339250677,24.794082669926468],[-102.99062831742958,24.79409478051207],[-102.99054932704212,24.79414117969361],[-102.99052191703834,24.794160317109743],[-102.99046574110525,24.794204729275407],[-102.990375841211,24.79429185079448],[-102.99034336806568,24.794328233684382],[-102.99027312576158,24.794414863352472],[-102.990234844518,24.794466060233503],[-102.9901495044063,24.79458647516026],[-102.9900452601164,24.794733533775684],[-102.98991299988359,24.794910327341427],[-102.98974361184844,24.79511994707366],[-102.98929807208407,24.79561729847478],[-102.98894691558098,24.79598133233577],[-102.98874465895364,24.79618021652277],[-102.98865673146736,24.796262828395868],[-102.9885756709096,24.796336032426268],[-102.98842762592204,24.79646035668611],[-102.98828747459328,24.796565468717006],[-102.98821628108362,24.796614657448686],[-102.98798729779332,24.796758648300283],[-102.98722290602382,24.797088256591508],[-102.98675290676732,24.79719644453189],[-102.98668337693931,24.79720715635193],[-102.98654800345781,24.797221330023774],[-102.98634493067266,24.797222050474886],[-102.98620384195675,24.797207940954024],[-102.98606013587352,24.79718576326752],[-102.98578067734417,24.79713561940173],[-102.98547069108884,24.79709100421678],[-102.9854124350681,24.797082919463264],[-102.98529734686451,24.797065064871163],[-102.98518265168235,24.797043711453455],[-102.98484073938789,24.79697936600678],[-102.9846714111606,24.79696260678503],[-102.98455692198195,24.796962027478855],[-102.98437866139795,24.79698173523252],[-102.98425208559985,24.79701167109073],[-102.98395178028761,24.797127761104775],[-102.98365590565834,24.79727934124594],[-102.98315047509357,24.797565065301],[-102.9827078324808,24.797813165810396],[-102.982065910286,24.79814899713722],[-102.98140701265521,24.7984634979191],[-102.98124510918205,24.798535787104754],[-102.98092952911247,24.798670949364293],[-102.9807771689591,24.798733552825865],[-102.98048659953292,24.79884813040087],[-102.9803497067104,24.79889983491512],[-102.98009574590554,24.798991492799416],[-102.97997849394216,24.79903172489179],[-102.9797594859105,24.79910297156431],[-102.97965604541105,24.799134813165153],[-102.97935987133422,24.799220173094056],[-102.97907168961939,24.799296697065017],[-102.97869987201108,24.7993842520965],[-102.97822918431768,24.799463408300596],[-102.97782414290066,24.799494254438173],[-102.97744613726888,24.79950824306104],[-102.97651997850733,24.79952168808427],[-102.97629488363094,24.79952228409212],[-102.97590360173848,24.799520475174518],[-102.97562481387473,24.799514878486434],[-102.97552370116313,24.799510639376024],[-102.97537913984854,24.799499171801187],[-102.975149848336,24.799438997689094],[-102.97508584065304,24.79940887964011],[-102.97502019601808,24.799372600389006],[-102.97494984336362,24.799329503355693],[-102.9749126183305,24.79930549694052],[-102.97479611442907,24.79922624329066],[-102.97471742014898,24.79916963033901],[-102.97460330430681,24.79908288581811],[-102.97449445105639,24.798991125703196],[-102.97442349306738,24.79892359084124],[-102.97431817853402,24.798807612696464],[-102.97428426573566,24.798764482112915],[-102.97422086500018,24.798671206345887],[-102.97414353224184,24.798513033249947],[-102.97409513273095,24.798333649605468],[-102.9740773936303,24.79820610599245],[-102.97406765680824,24.798010150379696],[-102.97410030613594,24.79754072963243],[-102.97413420892451,24.797312928277393],[-102.97416513534665,24.797138381655998],[-102.97422974537614,24.796819048064208],[-102.9742881894415,24.796554501298942],[-102.97435790635308,24.796248970108707],[-102.97443397606969,24.79591508374409],[-102.97447280762242,24.795741600837516],[-102.974584944031,24.79521457345362],[-102.97461917252241,24.795041729349805],[-102.97468120324442,24.79470792326731],[-102.97473306817045,24.79439813877002],[-102.97480099078552,24.793202423237233],[-102.97478532807372,24.79312907184527],[-102.97470842229052,24.792951798615036],[-102.97467005061208,24.79290079381036],[-102.9745366328388,24.792786808224605],[-102.97432023778822,24.79266430540514],[-102.9741075040281,24.792567234400394],[-102.97390471219421,24.792499095030166],[-102.97379994779106,24.792470520961558],[-102.97363151460138,24.792429453443788],[-102.97358482750087,24.7924185492912],[-102.97356085304688,24.792412949855986],[-102.9735520203539,24.79241088690526],[-102.97355063997276,24.79241057510029],[-102.97354317019864,24.792409497943083],[-102.9735251478869,24.792406899086473],[-102.97349005180826,24.792401838149033],[-102.97339680261962,24.7923890107985],[-102.9733081254845,24.79237847160266],[-102.97313826115749,24.792362855126385],[-102.97307241762894,24.792358356389173],[-102.97292823715372,24.79235183738092],[-102.97276919691461,24.792350509729317],[-102.97259745465135,24.792356637520584],[-102.9723218042102,24.79238394112832],[-102.97213516152891,24.79241287479408],[-102.97171947549032,24.79250379801607],[-102.97141421060479,24.79259142009829],[-102.97131708729398,24.792618827753643],[-102.9710725502573,24.79268399432482],[-102.96996392892311,24.79294989234785],[-102.96957542411309,24.793040405652448],[-102.96939643986036,24.793082272210484],[-102.96907177508876,24.793159623485735],[-102.96878593800159,24.793231323558302],[-102.96853223579666,24.7933008018598],[-102.96841534376148,24.793335779525364],[-102.96819710549642,24.793407647637366],[-102.96799313424748,24.79348162183959],[-102.96769680298172,24.79359474658861],[-102.96759667841911,24.79363262362847],[-102.9673907719183,24.793707702366362],[-102.96728610636279,24.7937442650682],[-102.96707684014325,24.793813740814755],[-102.96697363528506,24.793845975335785],[-102.96677357159979,24.793903741378188],[-102.96667789522712,24.79392870593665],[-102.9664940490149,24.793971555951202],[-102.96631632977005,24.794007167446978],[-102.96596088260821,24.794067103231498],[-102.96577991073218,24.794093385211283],[-102.96569085576868,24.794104417211656],[-102.9652946606301,24.794119913669647],[-102.9652298202717,24.794112629505264],[-102.96506058498363,24.794071851038098],[-102.96496355723048,24.794031686476842],[-102.96483175928051,24.793957062205266],[-102.96479044894403,24.793928592851614],[-102.9646732391966,24.793831180589564],[-102.96459993577992,24.7937553197047],[-102.96446300481301,24.793575562669105],[-102.96436860971619,24.79341734416613],[-102.96433872900258,24.793360393113687],[-102.96425435555204,24.793178799140435],[-102.96420358518918,24.793051906030882],[-102.96418018411885,24.792987681092995],[-102.96413791774546,24.79285929237733],[-102.96410221058039,24.792733331029467],[-102.96408673266643,24.792672352460613],[-102.96406017620404,24.792556724656208],[-102.9640489568672,24.79250300546977],[-102.96403028401198,24.792406081651848],[-102.96400513929336,24.792252683520132],[-102.96399631566106,24.792183534168487],[-102.96398432818268,24.79206902674929],[-102.96397601086534,24.791979248431517],[-102.96397171711794,24.791930483034093],[-102.96394437839956,24.791593108346262],[-102.96393614653272,24.79146911138298],[-102.96393037138807,24.791344084310595],[-102.9639314435857,24.791100437871023],[-102.96395096328382,24.790817142448873],[-102.96398461941578,24.790388806978683],[-102.96400402939605,24.79012458349382],[-102.96402274854307,24.78985820177411],[-102.96403891315833,24.789614713117146],[-102.96405089165069,24.789413360484446],[-102.96405954457214,24.789179792403843],[-102.96405560618291,24.78899898100616],[-102.96404521020423,24.78889274904924],[-102.96401690000164,24.78874584076101],[-102.96397209839768,24.78860842211884],[-102.96383114499724,24.788348999391133],[-102.96377015674102,24.788268902599725],[-102.96370150430334,24.78819187883738],[-102.9636624259976,24.788152761353558],[-102.96357000699743,24.7880688070249],[-102.96351476302499,24.788022166913777],[-102.96343062430304,24.787954074069887],[-102.96330180717621,24.787853045326983],[-102.96311913895289,24.78771356619228],[-102.96291228619373,24.78755826386231],[-102.96257502975396,24.78730823201431],[-102.96234298753973,24.787137653747436],[-102.9619880744471,24.7868798970523],[-102.96174632248841,24.78670733319416],[-102.9616237552413,24.786620970623403],[-102.96137592467227,24.786449033145118],[-102.96125184621434,24.786364540131785],[-102.96100661684187,24.786201435408316],[-102.96088676747206,24.786123995644743],[-102.9604401871461,24.785854363321505],[-102.96024096127815,24.785746142895107],[-102.95989338677697,24.785578394297318],[-102.95967336386525,24.785487857629732],[-102.95953336382888,24.78543471613318],[-102.95931039513664,24.785349634117267],[-102.95896671149217,24.785207005065786],[-102.95879204388638,24.78513007984492],[-102.95862932818909,24.78505562254111],[-102.95848426264598,24.784986396996715],[-102.9583438314204,24.7849175970681],[-102.95819034021497,24.78484252405684],[-102.95789755848136,24.784703716199544],[-102.95765086950564,24.784589302360644],[-102.95723199488981,24.78439245647843],[-102.9570782412568,24.784318121610227],[-102.9565073097018,24.7840255450501],[-102.9560822504888,24.78378721302454],[-102.95522743335272,24.78325744629393],[-102.95492080256508,24.78306559600486],[-102.95459026009144,24.78286735469902],[-102.95441368644231,24.78276601763548],[-102.95362570895657,24.782341192241574],[-102.95318128965994,24.782113290565576],[-102.95270276579652,24.781872381261678],[-102.95195492915514,24.781494735565616],[-102.95147643294382,24.781243831895495],[-102.95125366727393,24.781121706023953],[-102.95085770230014,24.780889043150296],[-102.95039053227322,24.780573950601422],[-102.94994188896538,24.7802160902757],[-102.94976250807917,24.780063206772525],[-102.94958603651475,24.77992736601948],[-102.94927370206784,24.779755083885334],[-102.94867607988544,24.77958237294945],[-102.94833989577785,24.779518284684627],[-102.94802926521453,24.77946729277454],[-102.94722699237587,24.779250457764704],[-102.9470682679796,24.77914605319262],[-102.9468414000213,24.778991578507828],[-102.94671642384878,24.77891497564474],[-102.94656977420817,24.77883886714642],[-102.94628217921678,24.778724209919233],[-102.94561202543758,24.77853999095504],[-102.94547037679729,24.77850859240533],[-102.94520256353007,24.77845581741883],[-102.94485823094834,24.7784063599492],[-102.94453380331345,24.778387404707246],[-102.944160263333,24.778390788848753],[-102.9437193262259,24.77840737713217],[-102.94327134259464,24.77842652812393],[-102.94313204895872,24.778431619724643],[-102.94276383762309,24.778439644967364],[-102.94265522290596,24.7784401298195],[-102.94235915290199,24.778436307952404],[-102.94209012641443,24.77842678478828],[-102.9419211548128,24.77842007318793],[-102.94183991423222,24.77841749124775],[-102.94168419550402,24.778415357603592],[-102.9414676695859,24.778423667388267],[-102.94119781073573,24.77845699216482],[-102.94113074397086,24.77846872318861],[-102.94099410875936,24.77849556377771],[-102.94071679148709,24.778550368444144],[-102.94045992173238,24.778575485828753],[-102.94025193826053,24.778557353655117],[-102.94014157868173,24.77853515566676],[-102.94011504384207,24.77852918509501],[-102.94004008981659,24.77850971351262],[-102.93998356805821,24.77848911100625],[-102.93967690904623,24.778382679929166],[-102.9393136702829,24.778285482504486],[-102.93909028676694,24.778226540865717],[-102.93862360309453,24.778085443125633],[-102.93840053259362,24.778006068950674],[-102.93808907371334,24.777892704382964],[-102.93781238291746,24.777806609927325],[-102.93757429319697,24.777759399589627],[-102.93737237386381,24.777745020288478],[-102.93725640806457,24.77774995195142],[-102.937109358643,24.777774601893043],[-102.93699462270234,24.777815795228207],[-102.93693600849934,24.777850171086072],[-102.93686815397388,24.777909604475838],[-102.93682850321096,24.777953546019603],[-102.93678699636934,24.778000213798578],[-102.93673963660177,24.778049785413828],[-102.93666178643377,24.77813724984685],[-102.93660990203904,24.778210408977486],[-102.93658513611553,24.77825301492595],[-102.93650028081004,24.77845333841725],[-102.9364448235035,24.77862764941881],[-102.93642553919273,24.778692771521378],[-102.93641852318217,24.778718375566655],[-102.9364161871365,24.778729386943155],[-102.93640552734797,24.77878608674996],[-102.93640076066919,24.778818427441195],[-102.93639938906051,24.77884024744509],[-102.93640073477934,24.778867115840967],[-102.936410328183,24.778927080098185],[-102.93642278934703,24.77898554206712],[-102.9364381102759,24.779056850335735],[-102.936466564733,24.779222587454342],[-102.93647461572971,24.779309505346248],[-102.93645861030825,24.77955130046405],[-102.93640413232202,24.779677644279502],[-102.93635876693565,24.77973433383528],[-102.93622296030338,24.779848925866418],[-102.93613539510432,24.779906929170465],[-102.93589640016847,24.78003196691435],[-102.93575594297249,24.780081468451613],[-102.9356632795234,24.780101590885295],[-102.93557014690077,24.780110565822156],[-102.93552301306875,24.780110603317326],[-102.93542568621638,24.780100370586922],[-102.93532110639859,24.780074054017064],[-102.935142305525,24.77999827888101],[-102.93486729881448,24.779835603926983],[-102.93474072741736,24.779751706315608],[-102.93464069424294,24.77968322024833],[-102.93457752329738,24.77963966760609],[-102.93453313292832,24.779609063030875],[-102.93452610770089,24.779603159804196],[-102.93451882020076,24.77959668325866],[-102.93443058241905,24.779518264518174],[-102.93428274382507,24.77938603572244],[-102.93422301122291,24.779331797046154],[-102.9340987370519,24.779216615338385],[-102.93359271686523,24.77868882942795],[-102.93341305261998,24.778511025899775],[-102.93328532573946,24.778393141461436],[-102.93316246022817,24.77828757173745],[-102.93310585634185,24.778242563934782],[-102.93300624420192,24.77817183062757],[-102.93292309746755,24.77812314490029],[-102.9328535921274,24.778091076194755],[-102.93279490419678,24.77807019394237],[-102.93267603590903,24.778043596792998],[-102.9326313267311,24.778040562825595],[-102.9325835187438,24.778040839104676],[-102.93253082125966,24.7780442550183],[-102.93244163295458,24.778056019969597],[-102.93233913713999,24.778076838097093],[-102.93226398468272,24.77809615942084],[-102.93214559591081,24.778133340526495],[-102.9321056176405,24.77814791522212],[-102.93198688550677,24.7781979858961],[-102.93190720123869,24.778235666051614],[-102.93182434915406,24.778275543529332],[-102.93178098708364,24.778295970297847],[-102.9316396997495,24.778357770829984],[-102.93147694971401,24.778419721194155],[-102.931062410751,24.778545170201767],[-102.93088264113891,24.778590598379083],[-102.930550406713,24.77866818681872],[-102.92960274127853,24.77889487047014],[-102.92940656875822,24.778948862848893],[-102.92875556648562,24.779148170060353],[-102.9282907958314,24.77930107403995],[-102.92760541672772,24.77952604764181],[-102.92718988721299,24.77965319014811],[-102.92649837026846,24.77983746441032],[-102.92635281920565,24.779872522417122],[-102.9257682503262,24.7800113282222],[-102.92567382481985,24.780033873007085],[-102.92549805676134,24.78007461129414],[-102.92476511044953,24.780209319101345],[-102.92461261014887,24.78023634531445],[-102.92446706426585,24.78026380724566],[-102.92432966412184,24.78028995058719],[-102.92420159130592,24.780312952318354],[-102.92392681168587,24.780348642190745],[-102.92383318726922,24.78035553942516],[-102.92374709988889,24.780359852160416],[-102.92370650300035,24.78036134443198],[-102.92362927423545,24.780362855254907],[-102.92355600367739,24.78036180403302],[-102.92348509715583,24.78035747426236],[-102.92341499374902,24.78034917189467],[-102.92334489721645,24.780336719447803],[-102.92323970665842,24.7803110081436],[-102.92313444107975,24.780277897129054],[-102.92306360158426,24.780251195252617],[-102.92299093214928,24.780218875508922],[-102.92283540324775,24.78013025136056],[-102.92275325620233,24.780072771929383],[-102.92263593035443,24.779976536628055],[-102.92260079051613,24.77994322537063],[-102.92253990027774,24.779876692442144],[-102.9224228611161,24.7796314032866],[-102.92238504772513,24.779439132787672],[-102.92236744647505,24.779284291345277],[-102.92236226782421,24.779202198622215],[-102.92236668644983,24.77895081548661],[-102.92242437676862,24.77863201333446],[-102.9224887854574,24.778404860978526],[-102.92251082690944,24.778330470785818],[-102.9225731688382,24.778107342151486],[-102.92261270525876,24.77795375929486],[-102.92269210319841,24.77761730933753],[-102.92271245663,24.77752618975296],[-102.9227526424491,24.777342459621764],[-102.92279057299385,24.777165700244325],[-102.92282437562477,24.77700666206823],[-102.92285270195788,24.776873244983733],[-102.922865012677,24.77681522802419],[-102.92288672472068,24.776712606692797],[-102.9229313374646,24.77649812079767],[-102.92294790962984,24.776417970647117],[-102.92296467211679,24.77633880750477],[-102.92298217476508,24.776259594897624],[-102.92300061642237,24.776179181087116],[-102.92301879197544,24.776095953273284],[-102.92303514532335,24.77600818339249],[-102.92304215238983,24.775962055156867],[-102.92305290299151,24.775864319272955],[-102.92306079869513,24.775705922646125],[-102.92306163512205,24.77559596096279],[-102.92306100995086,24.775540592838126],[-102.92305584734345,24.77537558968089],[-102.92300531767279,24.774880606773934],[-102.92297671716591,24.774731294860885],[-102.92293518365472,24.774574553919763],[-102.92284011969133,24.774331917077063],[-102.92275504387999,24.774170969163947],[-102.9226604806924,24.7740174076136],[-102.92256406459552,24.773877245548192],[-102.92251754746252,24.773814068428123],[-102.92239308978947,24.77365731490363],[-102.9223255914236,24.773579428719756],[-102.9222729043309,24.773521849982615],[-102.9222251109054,24.77347105798549],[-102.92221090934333,24.77345598433294],[-102.92220567718971,24.773450430881553],[-102.92220492973917,24.773449637531314],[-102.92219863370718,24.77344518256706],[-102.92212494684657,24.77339304296669],[-102.92203544552467,24.773329781463133],[-102.92197581163634,24.773288063140285],[-102.92183452833706,24.773191914990377],[-102.92142965025818,24.77295077240268],[-102.9212733175251,24.772880150287108],[-102.92089345765783,24.772779755920112],[-102.92073957136506,24.772767952266406],[-102.92050991237352,24.77277542221998],[-102.92029116390137,24.772806514048284],[-102.92015390155461,24.77283847540076],[-102.91993655364377,24.77291835961472],[-102.91976437974904,24.773005199870227],[-102.91955488208328,24.7731288208127],[-102.91915358482589,24.77340654034964],[-102.91843710892175,24.774013784909016],[-102.9169435620044,24.77551349990489],[-102.91664680306303,24.77580803001706],[-102.91645049824882,24.7759847456407],[-102.91632657011439,24.77607391854798],[-102.91607266999284,24.77611364499586],[-102.91595639558989,24.776080571909006],[-102.91591426535894,24.776061338513728],[-102.91582340861794,24.776008690933736],[-102.91572087727559,24.775936144493016],[-102.91560308418963,24.775842631713658],[-102.91546644224547,24.77572708510172],[-102.91530956283742,24.775589997234647],[-102.91488223165942,24.77520063224779],[-102.91472172128931,24.775047253076366],[-102.91447775545623,24.774800652255408],[-102.91385322212233,24.774121480037365],[-102.91367605156984,24.773925158557915],[-102.91329290329014,24.773500738358848],[-102.91272362125125,24.772876780121237],[-102.91205978413308,24.77219335477008],[-102.9119717302313,24.77211312911146],[-102.91182653398533,24.771993517595718],[-102.9117110348405,24.77191528985111],[-102.91153384864157,24.77184000045628],[-102.91135357445813,24.771818984000333],[-102.91121945609416,24.771797583139687],[-102.91109525003452,24.77176191103672],[-102.91040344757823,24.771440490231214],[-102.91020303560401,24.77131578423632],[-102.90996424531488,24.771125784792275],[-102.90984066162122,24.77099810908578],[-102.90969093493936,24.7708044239061],[-102.90960457542252,24.770673277530193],[-102.90947810593946,24.770470638808376],[-102.90927989072526,24.770182002572767],[-102.90915868469398,24.770026944383005],[-102.90902648277194,24.76986360158594],[-102.90888765388792,24.76969122391222],[-102.90874652620522,24.76950915201951],[-102.90840383965798,24.7690255580369],[-102.90821719451145,24.768733891161162],[-102.90783131538262,24.76815896753658],[-102.90771991506756,24.768048529139094],[-102.90760031372776,24.767959921084014],[-102.9073940912977,24.767848946400704],[-102.90714072752775,24.76773933195301],[-102.90683187112842,24.767615470293947],[-102.90671609464778,24.76756971925829],[-102.90646469809724,24.76746989163854],[-102.9063292830968,24.767415481180365],[-102.90590577250725,24.767242730230464],[-102.90563247732149,24.767129478006837],[-102.90550557320717,24.767076380878393],[-102.9052822375699,24.76698192336312],[-102.90509785788896,24.76690387268576],[-102.90493683197042,24.766838573799077],[-102.90470335309737,24.766756002653267],[-102.90462004045145,24.76673069429927],[-102.90444487792968,24.766681939482908],[-102.90401050694715,24.76656638273988],[-102.9038587226421,24.766520128213642],[-102.90371446942004,24.76646983922467],[-102.9034869152103,24.766378248296405],[-102.90340230224302,24.766341445237686],[-102.90311450798214,24.766210377344805],[-102.90290665417626,24.766111593327537],[-102.90269857824717,24.766009542896484],[-102.90240748958917,24.765860370556425],[-102.90223110132587,24.765765430170916],[-102.90176514514388,24.765494592049947],[-102.90154817784031,24.765360195053972],[-102.90131998066357,24.76521891726344],[-102.90115497091222,24.765119312457443],[-102.90106980575257,24.76506938833677],[-102.90089840775516,24.76497335651925],[-102.90073125666686,24.764887826435483],[-102.90043218217374,24.76476917673972],[-102.90030142662192,24.764735695400418],[-102.90018110874564,24.7647161299912],[-102.90006960589284,24.764708001708243],[-102.8999143953294,24.76471487752923],[-102.89981548502317,24.764732140507135],[-102.89976650351497,24.76474458085687],[-102.89966811970277,24.764777071992512],[-102.89943144701118,24.764899501453385],[-102.89934975100044,24.76496301055431],[-102.89927977006721,24.765033834232042],[-102.89919266305441,24.76515358125181],[-102.89914244257551,24.76524244351549],[-102.899095296432,24.765338435423985],[-102.89904941670682,24.765438844560265],[-102.89900393007292,24.765538343838955],[-102.89888542280391,24.765748764556406],[-102.89879291764493,24.765839648586848],[-102.89870840380155,24.765889997426655],[-102.8985978494348,24.76593522695964],[-102.89839910482709,24.765994236769984],[-102.89827070956858,24.7660256651547],[-102.89821457480002,24.76603846376986],[-102.89809938871116,24.76606402001761],[-102.89801289594038,24.76608352552455],[-102.89786278674666,24.766118025084552],[-102.8977438118871,24.766144949999443],[-102.89753346781526,24.766190987063567],[-102.89738532068111,24.766221743768654],[-102.89723735746747,24.766250089452853],[-102.89709050695711,24.76627447108291],[-102.8969455205339,24.766293356892277],[-102.89666063257164,24.766308480309647],[-102.89651299608647,24.7663015657987],[-102.89635461620026,24.766282878654636],[-102.8958088429518,24.766152214670626],[-102.89543209853798,24.76599359056638],[-102.8953259522903,24.76592535465113],[-102.89527818783455,24.765890227171383],[-102.8951865307543,24.765817775502],[-102.89487507203751,24.7655718985107],[-102.89481600474369,24.76552290050381],[-102.89469237808538,24.765414096894688],[-102.89437348493675,24.76509894417495],[-102.89426122993609,24.76498451476749],[-102.89416880673508,24.76489405750732],[-102.89412887282703,24.7648575324136],[-102.89404942086634,24.764790289144514],[-102.89400481248617,24.76475466754158],[-102.89382091592,24.76461038222118],[-102.89363814021414,24.764465430654184],[-102.89341986512875,24.76429467361652],[-102.89318772662301,24.764120135545227],[-102.89307321975514,24.764038331292625],[-102.89276439477771,24.76384237614201],[-102.89259242942882,24.763750573035054],[-102.8923798407871,24.763645282475807],[-102.89226480222726,24.763581410164306],[-102.8921672944972,24.763514572390932],[-102.89197145485713,24.76332075597452],[-102.89190117462493,24.76322823093284],[-102.89176049817132,24.763026104105563],[-102.89164860378833,24.762872432717757],[-102.89157104355161,24.762774468237126],[-102.89149572782526,24.76268252092217],[-102.89142707349049,24.762598575999675],[-102.89134527026255,24.762490461846483],[-102.89132413011924,24.762457423417572],[-102.89124955492213,24.762227928764275],[-102.8912439937726,24.76217765337526],[-102.89123617982915,24.76206769236626],[-102.8912305102171,24.76194917498225],[-102.89122008064567,24.76176566353621],[-102.89109424636888,24.76116052542187],[-102.89099916984304,24.760925797133496],[-102.89092008063506,24.760770450947632],[-102.89082867232594,24.76062230165087],[-102.89072234075422,24.760482996083624],[-102.89059568517911,24.7603504635037],[-102.89044318329326,24.760222471510872],[-102.89025974983588,24.76009694757562],[-102.88972055534589,24.759812565040306],[-102.88951276443635,24.759724710972137],[-102.88932751456468,24.759657390141967],[-102.88915452294827,24.759603891436768],[-102.88897835943663,24.759555072821286],[-102.88843841922454,24.75940051078686],[-102.88793089889441,24.75923716266834],[-102.88768433766546,24.7591506851669],[-102.88745318517812,24.759062499968593],[-102.88704125009065,24.75887157505855],[-102.88677942364995,24.7587068775116],[-102.88637061213865,24.758337199745142],[-102.8861733119864,24.758089406395925],[-102.88609686128166,24.75797129042826],[-102.88598950092216,24.757753774132254],[-102.88595744748034,24.757648097884385],[-102.8859462378083,24.757592719714978],[-102.88593255918818,24.757471862587636],[-102.88593383027018,24.757170966057743],[-102.88593785545925,24.757086070305775],[-102.88594704731372,24.756912064045878],[-102.88595665312266,24.756656174754482],[-102.88595178830195,24.756320763550775],[-102.88594185842067,24.7561330635981],[-102.8859271929818,24.755918096903713],[-102.88590779541431,24.755676365550187],[-102.88583734558142,24.75503038638476],[-102.88579925603648,24.754784078927116],[-102.88575188951751,24.754550135210252],[-102.88569138051162,24.7543268182489],[-102.88540113497947,24.75370052791942],[-102.88519992399148,24.753392193669242],[-102.88505098101132,24.75317979514648],[-102.88472064478316,24.752719803243053],[-102.88453739945334,24.752463256376473],[-102.88423978269668,24.752036876506395],[-102.88413857303601,24.75188895209874],[-102.88385380650107,24.751463933183004],[-102.88377117044331,24.751337244470164],[-102.88358091065061,24.751033322775754],[-102.88343057302018,24.750781044921894],[-102.88337294762431,24.75069394064377],[-102.88331284710165,24.75061861462956],[-102.8832475697829,24.750551610431955],[-102.88313811715727,24.75046286643652],[-102.88301268177969,24.75038359594771],[-102.88292092885268,24.750336705553366],[-102.88277453452775,24.750280235044556],[-102.88272409419272,24.750266110599682],[-102.8824985436654,24.750235879112324],[-102.88225753774918,24.75023779736364],[-102.88177278660385,24.75026481689531],[-102.88005389930015,24.75019217994236],[-102.87982914525873,24.75015538329467],[-102.87960033781985,24.75011668865568],[-102.87925982354164,24.750057326058368],[-102.87904192409349,24.750018439344444],[-102.8784464084709,24.74990886938599],[-102.878304818142,24.749880879058935],[-102.87823606404021,24.749865371371186],[-102.8782059482511,24.74985773059234],[-102.87811998673033,24.7498323115351],[-102.87806074562667,24.74981260925938],[-102.87802947982988,24.749801948107915],[-102.87792494689938,24.749766830205203],[-102.87788546074279,24.74975411144635],[-102.87779948937396,24.749727268110973],[-102.87765600545293,24.74968386284621],[-102.87760509585303,24.74966865683143],[-102.87749984818902,24.749637293383955],[-102.87739148374334,24.749604952094842],[-102.87728185335988,24.749572079564018],[-102.8771190952657,24.749522763133427],[-102.87706619281448,24.74950656434015],[-102.87696317563933,24.749475228383574],[-102.8768643024797,24.749446329297996],[-102.87668098490542,24.749400670974126],[-102.87663818775195,24.74939219960578],[-102.87647292441659,24.74936346557763],[-102.87639028373155,24.74934817563343],[-102.87630500810133,24.74932954469091],[-102.87606995744329,24.749264933571794],[-102.87596332311819,24.749231118797866],[-102.87561818536756,24.74910792494137],[-102.87550746575903,24.749063066811175],[-102.87540330878807,24.749017296353315],[-102.87530562792682,24.748970184266682],[-102.87525916262189,24.748945981087445],[-102.8751708754333,24.748895992407427],[-102.87492565925544,24.74872309128648],[-102.87483866559626,24.74865196356285],[-102.87454345655476,24.748395162737438],[-102.87435211757844,24.748217387853913],[-102.87426704492793,24.7481345046848],[-102.87415723382912,24.748022451512156],[-102.87404926589772,24.747901297872488],[-102.87398821235934,24.747820905839376],[-102.87395043967194,24.74776457648221],[-102.87382812163509,24.747561280109778],[-102.87373710106272,24.747407303684213],[-102.8736625043552,24.74728476532556],[-102.87352135061116,24.74706005542953],[-102.87346067359624,24.746963745281732],[-102.87340105565823,24.74686661770005],[-102.87334507615708,24.746770829476986],[-102.87331921143578,24.74672409979695],[-102.87321494850744,24.746510514313798],[-102.87319945685158,24.74647320026753],[-102.87317415142877,24.746405421190275],[-102.87315481603014,24.746344710757683],[-102.87312945728587,24.746255613742562],[-102.8731098460022,24.746189825843146],[-102.87305636660858,24.746030646557927],[-102.8730265681649,24.74594250366266],[-102.87298511081326,24.745808919092042],[-102.87293958338518,24.745636046054415],[-102.87289671962952,24.745466245267437],[-102.87285989766707,24.74533861132244],[-102.872830417881,24.745252731656194],[-102.87279528719625,24.74516583746572],[-102.87270674900532,24.744988201077774],[-102.87265663715573,24.74489749948043],[-102.87260520415867,24.744805611523304],[-102.87252898094266,24.744666194641354],[-102.87247971635594,24.744573476718415],[-102.87243224490908,24.744482091415705],[-102.8723870304338,24.744393040353543],[-102.87232389951168,24.74426688162083],[-102.87230411518999,24.744227649512766],[-102.87223126570984,24.74409039443026],[-102.8722143758174,24.744061486642977],[-102.87218086010694,24.744008654211086],[-102.8720432030928,24.74384397475643],[-102.87196952431754,24.74377124189175],[-102.8719435121946,24.74374615675123],[-102.87188986841227,24.74369444509955],[-102.87183425705916,24.743641300084732],[-102.87177655405475,24.743588237252027],[-102.87168576460743,24.743512202836655],[-102.87159102326405,24.74344390844675],[-102.87149964409053,24.743382596132278],[-102.87133725441771,24.743257217065832],[-102.87130123512014,24.743225180750528],[-102.87128373320678,24.74320979616448],[-102.87124861348883,24.74318004130123],[-102.87123066733164,24.743165316331897],[-102.8711932213455,24.743135203318104],[-102.8711308249674,24.74308547210751],[-102.87108301925281,24.74304680756285],[-102.87099615361552,24.742974224820387],[-102.8709242682433,24.742912010880275],[-102.87083815643552,24.742835601548222],[-102.87033417260216,24.74243616483892],[-102.87017518319908,24.74233473245073],[-102.86995331632664,24.742203630211463],[-102.86976368527775,24.74209781172982],[-102.86969886802956,24.742066662023547],[-102.86968186246975,24.74206065368429],[-102.86964249153942,24.742049419814634],[-102.8695868642937,24.74203456008661],[-102.86952119603006,24.742017129013675],[-102.86945621445261,24.74199993323822],[-102.86935098246124,24.741972132580088],[-102.86934360177736,24.74197018303022],[-102.86934146374517,24.74196988966736],[-102.86931019502515,24.741965599231662],[-102.86925193365488,24.741957605069842],[-102.86900276038108,24.74192303519044],[-102.86853097737372,24.741851472443443],[-102.86823568357107,24.741801169609744],[-102.8679451830588,24.74175363271263],[-102.86784902117745,24.741739763217936],[-102.86765730156611,24.74171668352193],[-102.86756219151414,24.741707724469222],[-102.8673760282598,24.741694820364216],[-102.86711490570724,24.74168739029932],[-102.8668184486462,24.741696821602886],[-102.86656959161132,24.741714316141497],[-102.86651138649495,24.741717620353143],[-102.86639729380329,24.74172149375181],[-102.86634148953232,24.74172244214145],[-102.86623280167618,24.741723538090184],[-102.86598165480149,24.741731954989007],[-102.86588791764933,24.741738652792776],[-102.86565008603208,24.741749503886467],[-102.8655486001212,24.741747721227284],[-102.8647597374532,24.741671504782914],[-102.86463972317222,24.741665771317514],[-102.86458281196076,24.741663982275725],[-102.86440192732795,24.741661145737226],[-102.86437351606935,24.741660866659515],[-102.86433381587335,24.741659145754852],[-102.86430531065713,24.741653618513567],[-102.86427403868544,24.741641577718553],[-102.86422569027792,24.741620391694767],[-102.86413795285739,24.74158916650879],[-102.8638660685537,24.741525374562286],[-102.86333572719496,24.741444084086083],[-102.86309565487011,24.741414211539166],[-102.86199047954847,24.741297037118215],[-102.86099404897459,24.74121319936694],[-102.86042897378064,24.74117518869872],[-102.86010719146083,24.741153244106954],[-102.85980704811607,24.741128509713747],[-102.85937945098141,24.741082839855494],[-102.8592429680919,24.741065775373897],[-102.85849520094644,24.7409532255852],[-102.85792744404557,24.74084367491446],[-102.85788504054477,24.740833196766857],[-102.85782119544683,24.740815068906215],[-102.85777641514397,24.740799337273188],[-102.85774025173555,24.74078438878132],[-102.8576915646388,24.740762028387053],[-102.85766198755971,24.74074730658606],[-102.85763422648762,24.740732877304424],[-102.85762087564024,24.740725793189654],[-102.85759452289147,24.740711570638837],[-102.85750573527577,24.74066190104719],[-102.85745082665443,24.740630483031453],[-102.8573927685963,24.740596701014795],[-102.85731762585175,24.740551725302225],[-102.85728151766091,24.74052948352778],[-102.85724593235875,24.74050713329251],[-102.85717499972759,24.740461150687395],[-102.857120976798,24.74042407503623],[-102.8571026547288,24.740410942780954],[-102.85706536217089,24.740383214519113],[-102.85698737159316,24.740321985811363],[-102.85694621290469,24.74028889705329],[-102.856924991965,24.74027182702065],[-102.85688147197902,24.740236925309773],[-102.85685959524847,24.74021936245356],[-102.85681677316478,24.74018473382057],[-102.85646962620285,24.73987621058393],[-102.85640279152273,24.739773965267545],[-102.85313071761021,24.77200094585163],[-102.82906985058372,24.810738034574968],[-102.74795191802991,24.94113320667327],[-102.72474521610695,24.978380252403497],[-102.66969398202963,25.066636492258624],[-102.61170297683418,25.049145439873882],[-102.48525245360412,25.011133935071427],[-102.44676344612776,24.999515409734386],[-102.4536778008108,25.048137806993793],[-102.4633252062223,25.115916154406932],[-102.39887849566179,25.119518009011358],[-102.29551302408424,25.125235507610228],[-102.26654900026568,25.121828287335404],[-102.23762220486049,25.118462379872767],[-102.14617938813535,25.0904559036685],[-102.0818056223307,25.070700602926365],[-102.00808050371222,25.053947966629664],[-101.92313356970828,25.034597034753062],[-101.84881000054281,25.017623615511752],[-101.83189845559025,24.972173221054334],[-101.79325286965826,24.907655710496442],[-101.7734629566429,24.875535121363782],[-101.7267506637557,24.856747317953193],[-101.6851494908102,24.840012667605947],[-101.6563317653414,24.860793173845764],[-101.60126063048875,24.83556319412753],[-101.60376440018399,24.820739281070644],[-101.60416294215116,24.818379468481055],[-101.60745858419523,24.798863141392985],[-101.60901162561379,24.78966413963758],[-101.6407672251434,24.80070354441085],[-101.62485237622946,24.764832659670105],[-101.62418316772977,24.763343037524635],[-101.6222697137892,24.75898308187959],[-101.60040668136628,24.754396722035665],[-101.54057875862247,24.74558125101089],[-101.51941565089942,24.746469857875923],[-101.49170533116938,24.743775857959974],[-101.46163935148854,24.736756815536808],[-101.41265496009265,24.772055009629753],[-101.4021570653299,24.788222435312775],[-101.34214157450452,24.81335250822906],[-101.31312313449604,24.801410855461484],[-101.23608890929319,24.77787897044152],[-101.21503913457673,24.775167845158137],[-101.20172558866176,24.765488320913448],[-101.18843787293918,24.74935317804841],[-101.18180281976811,24.739014976760302],[-101.18177167648605,24.73894059752547],[-101.17903509121334,24.73295667704599],[-101.16464594067662,24.681558963045575],[-101.14774497923588,24.653985529126828],[-101.1276196023635,24.623361767482606],[-101.08049513363073,24.591185314814993],[-100.9587926057805,24.542684065048377],[-100.93466477303963,24.559578817753277],[-100.91977869403058,24.570712845509036],[-100.9128139290462,24.575947954415255],[-100.902233794707,24.583917707861076],[-100.90057496659068,24.582861987096408],[-100.88289168448011,24.571677760419504],[-100.88055360344634,24.570593196975835],[-100.88054120030739,24.570588018915373],[-100.8805149637463,24.57057705807017],[-100.88026526629113,24.570472785920117],[-100.87274209276956,24.567008577478248],[-100.86776979696646,24.564751373327],[-100.86213511836246,24.562193164404277],[-100.8478056810024,24.55561864773722],[-100.83582489047058,24.553890605190645],[-100.82275604663334,24.552004521112565],[-100.82188473065884,24.552319644201248],[-100.81041639273298,24.551593805794425],[-100.80191074287342,24.5553201872263],[-100.79993411585474,24.556186077369034],[-100.80547293658526,24.596340118483],[-100.80455630109594,24.603406715066285],[-100.80149565036834,24.674010682596133],[-100.79855222943769,24.72405958673488],[-100.79697824262286,24.750806901394583],[-100.81314322649592,24.792236864923552],[-100.81854416174565,24.804339134439715],[-100.82741349955518,24.824207890189882],[-100.82613241782752,24.835004572929563],[-100.81628864174581,24.843366437798522],[-100.78337100344146,24.87131123511432],[-100.75143632606006,24.898412981021693],[-100.72749549586939,24.918716548733414],[-100.75394981357175,24.943392928790615],[-100.78853958559938,24.971919293557676],[-100.79146300179139,24.97405067493628],[-100.79206308618518,24.979148181578296],[-100.80276030708501,24.985623266787854],[-100.82150559468874,24.99671083717834],[-100.82114897535087,25.0000004178591],[-100.81438712198502,25.062350941863883],[-100.81081350157183,25.09537967422068],[-100.80735118960172,25.127367374243477],[-100.80726660823723,25.128148691535557],[-100.80713657729666,25.129349837202426],[-100.8068238843461,25.13223813661733],[-100.80313045317433,25.165258465112515],[-100.79685799270584,25.1700014926912],[-100.79105458869458,25.174389293311833],[-100.77192651074989,25.1888478409453],[-100.76244606611897,25.196011830931923],[-100.74348155652194,25.210338376547895],[-100.74010847845494,25.212885953392856],[-100.70930997912296,25.23613891762642],[-100.70149712283461,25.23769869634009],[-100.69941702320705,25.238047943238485],[-100.6519981152249,25.246001565559084],[-100.63499294719685,25.248850140183436],[-100.6299006282157,25.249702784180442],[-100.62275544030433,25.250898858126106],[-100.60790203572452,25.252767264466172],[-100.59568555925836,25.254762511579088],[-100.59196241697737,25.255050014802123],[-100.58736030318164,25.25394602788475],[-100.58577538482041,25.253512865170023],[-100.5819942395857,25.251692056580964],[-100.57843464733878,25.25109349303341],[-100.56601869859338,25.248335078873026],[-100.56514556255365,25.248104040092755],[-100.56363543082881,25.24770524659675],[-100.5533426565895,25.245086159314212],[-100.54783904500715,25.243631802723144],[-100.52960688140558,25.240142934756193],[-100.4985464705477,25.23750748142652],[-100.47251737708632,25.231195659441937],[-100.44364143379539,25.223145219266655],[-100.43243691446031,25.218762299252205],[-100.41746924940333,25.21290561088415],[-100.40740919229108,25.208968111674437],[-100.39049671553863,25.204595426054425],[-100.3812897500344,25.20089769067181],[-100.37668521563779,25.199447331427393],[-100.34946330022234,25.192265268346944],[-100.34243208108211,25.189856708955233],[-100.33200741392108,25.186285211429038],[-100.32555012129654,25.222258756921008],[-100.30930738839714,25.214805524566884],[-100.30528361021476,25.213417223436124],[-100.28036662811513,25.20940871788889],[-100.26138349923036,25.207070571575514],[-100.22957559840415,25.217916512172337],[-100.24483031707399,25.228132580432145],[-100.24468646589673,25.228986606578303],[-100.23442050754113,25.23549642869949],[-100.26251011963046,25.254022790731142],[-100.25394160112478,25.265567652582547],[-100.24314189753568,25.267443349278096],[-100.24377452603551,25.269714467585572],[-100.25413843450309,25.306908771951782],[-100.259672300477,25.30554503502168],[-100.26170632371895,25.305527642334198],[-100.26397450148204,25.30529339690935],[-100.27621317691,25.31300733474791],[-100.27743594811864,25.31628597273351],[-100.28157961774758,25.319713724257554],[-100.28724831397022,25.32166258269382],[-100.29235095480374,25.325547884650746],[-100.29867445496609,25.326957665422356],[-100.30427114357576,25.328973181141293],[-100.30884297575255,25.33296664295125],[-100.31237916003073,25.335970633387547],[-100.31505169179354,25.337243218452272],[-100.32072833374792,25.33857822827406],[-100.32335310055555,25.339985194206804],[-100.32680370289853,25.34035647140297],[-100.3319430600036,25.338686722438467],[-100.33378904897478,25.338058288626087],[-100.34291084924996,25.337847912065513],[-100.34702707235164,25.33689270009711],[-100.35016931256445,25.336711052557803],[-100.35309186152676,25.33457837501726],[-100.36428170557201,25.332853502907597],[-100.38405207872819,25.32980392013178],[-100.38749776938505,25.32870759098148],[-100.39456741677282,25.327854416828814],[-100.39953872442123,25.32790981167699],[-100.40264032613737,25.329111291225388],[-100.40847380049019,25.328816297954177],[-100.41436038614444,25.32989993029304],[-100.41456067825806,25.326998100440164],[-100.41845210761221,25.327980743843455],[-100.43353806671149,25.331491676721896],[-100.44602862196763,25.331857697279588],[-100.4700988222043,25.33778984541732],[-100.4579880266001,25.384740337022947],[-100.45521964511471,25.395467557564984],[-100.45195490523821,25.408115685012604],[-100.45159291034628,25.410466644359474],[-100.45486451599959,25.413811882786888],[-100.45509369303278,25.41394659712131],[-100.45974880525773,25.41602778393849],[-100.46257019590729,25.418119394317614],[-100.4625701773931,25.418153518169618],[-100.4676065777549,25.42053968909147],[-100.47522225660799,25.423899749009934],[-100.48515592369415,25.427889932789412],[-100.4963993798969,25.431623569236194],[-100.50071569997579,25.432689624373722],[-100.5098045351574,25.43296695013572],[-100.51595030076709,25.433805205357544],[-100.52270308893458,25.434324729308855],[-100.52264207129298,25.435455063957136],[-100.51746378317841,25.449036606630784],[-100.52541309634603,25.449753852932076],[-100.53088314863305,25.463467650139023],[-100.54511291224804,25.464612629944043],[-100.56096712297398,25.46453840288507],[-100.5718353124222,25.468095140807918],[-100.57864962679429,25.469786734214438],[-100.58488908626884,25.470813038846813],[-100.57951030818231,25.494543984344034],[-100.59413507436125,25.49866418472169],[-100.61909058965762,25.505691084556304],[-100.60858136788579,25.51344505857901],[-100.59975034232775,25.51995952743175],[-100.59667244689803,25.519715603422583],[-100.52969933031784,25.514392878589604],[-100.53843590563588,25.531853919613866],[-100.54830701902256,25.534270559947913],[-100.55999681369065,25.534893363622302],[-100.56785922934819,25.537508752219196],[-100.57072217901674,25.53816757275564],[-100.57790119855878,25.540062923803134],[-100.58265125860345,25.541839022940962],[-100.58528569693965,25.542737701124906],[-100.58771624459229,25.54322379364828],[-100.59282952416203,25.54396554344305],[-100.59429844025834,25.54437415586017],[-100.59752354438956,25.54421492699896],[-100.599420599484,25.54410570308835],[-100.60220197960695,25.543695277239124],[-100.60863659528604,25.542641953404598],[-100.61203691140389,25.54202278552407],[-100.61299830709254,25.54203116319809],[-100.61473253143151,25.54234689996599],[-100.61501027911032,25.545421710137987],[-100.61403145228303,25.547421796471895],[-100.61367248519815,25.547818897967545],[-100.61331351592196,25.54821599853051],[-100.61211918203054,25.550113480985715],[-100.61371460980524,25.553067242458326],[-100.63290184410067,25.571299350609195],[-100.639472677622,25.57230990872563],[-100.64434456248807,25.57246531536839],[-100.65372210752793,25.56997670616346],[-100.6584833182759,25.56796301300301],[-100.66183764211576,25.568318316456157],[-100.66432215525543,25.569399670712585],[-100.66797775650389,25.5692028889423],[-100.67470335080947,25.568007859939655],[-100.6783329572225,25.567673202486446],[-100.6804978374758,25.567986546800114],[-100.68343245935819,25.567849427003694],[-100.68610044854142,25.567506673809362],[-100.69028634450274,25.567100785378727],[-100.71991647066943,25.603066960856097],[-100.72473953795321,25.61982257160861],[-100.72977289996874,25.63389566023926],[-100.7811986511636,25.638582082149526],[-100.78238265722979,25.639166400298393],[-100.78342024756421,25.639678434668667],[-100.78040983205665,25.645729425306115],[-100.78777528308387,25.68359721310634],[-100.80369870694352,25.708755377719797],[-100.80561394703534,25.724301803971912],[-100.82512359448879,25.751721116144665],[-100.84392322709533,25.785855512798435],[-100.85428687031379,25.804663693998975],[-100.86190139451492,25.818478619488417],[-100.84706871302723,25.857885728775102],[-100.84636256757216,25.858743105180167],[-100.83711964657886,25.86381259039831],[-100.83576556904165,25.866594314010456],[-100.83244863629062,25.881982364767623],[-100.82266894504801,25.916884542689843],[-100.82724481474867,25.920496713666182],[-100.83442487514742,25.945042909766812],[-100.87687866716908,25.9472191658474],[-100.905531639878,25.956945701011875],[-100.90496485540228,25.988635975037084],[-100.90491909945399,25.991194515671168],[-100.90460610010712,26.008702233275585],[-100.90552762619393,26.012178062874625],[-100.91641566707023,26.075610555384458],[-100.94289801791336,26.086789068248265],[-100.94263942359828,26.090618046831196],[-100.94973495649657,26.09735218017994],[-100.9528703370429,26.100325700444614],[-100.9563006404864,26.104784695829608],[-100.96033805160346,26.1118674352212],[-100.96564564470839,26.11727696126826],[-100.9722590514009,26.127680671741075],[-100.97624664846978,26.13274040018689],[-100.98274204382722,26.13947720733762],[-100.98862717477022,26.143154401041613],[-100.99813054244265,26.148477429699824],[-101.0088827658297,26.153823642928216],[-101.02117282003832,26.15774675375269],[-101.02717974942584,26.159663788331443],[-101.04739819164769,26.16984602286641],[-101.06857466822157,26.189031024785095],[-101.07464691467061,26.19897473656067],[-101.09173895950903,26.244511045053457],[-101.09761968768873,26.252910411827145],[-101.10453149741056,26.261624703118002],[-101.1362968404107,26.295459936824898],[-101.1854420526206,26.345400958597338],[-101.20676270962235,26.36977820707193],[-101.1896013471146,26.384680030668164],[-101.17848835416748,26.392014645991082],[-101.15823835497844,26.407930951482626],[-101.14709459514972,26.41695290661812],[-101.11401953848139,26.442639890378075],[-101.11131644444242,26.444913687641986],[-101.07898174025888,26.469171920315603],[-101.04513555506418,26.4963526960874],[-101.00919881255288,26.525197879638085],[-100.98276408064936,26.546402168893223],[-100.91802316405159,26.598283345502068],[-100.90509116814172,26.608638111947073],[-100.88136716210255,26.62861184140945],[-100.87431684356812,26.63454561843014],[-100.82607060879985,26.674620652922613],[-100.7530354398283,26.73520780235077],[-100.69122888839314,26.613789423251205],[-100.6144001987791,26.68563889035437],[-100.60797842214964,26.71087348926511],[-100.60152387648623,26.736225922517406],[-100.60130712990457,26.737077078575965],[-100.59013582991292,26.7595206678306],[-100.57890187989437,26.770126660565666],[-100.56687553497886,26.78080639920131],[-100.56065946888793,26.785499782700583],[-100.55716847671005,26.790307558911707],[-100.55675892251014,26.790260387911758],[-100.55152703996998,26.794168519990365],[-100.5516565048311,26.79440340999929],[-100.54727098985194,26.79820133206431],[-100.541772800086,26.80600153392652],[-100.53815574630761,26.80855820631126],[-100.53858873986559,26.8115463671607],[-100.54143256460219,26.81273845615266],[-100.54172206778156,26.821248328133606],[-100.54467799475509,26.822794795499533],[-100.54466670140482,26.822889979352112],[-100.544709568911,26.823841956417652],[-100.5447893729193,26.824142186785878],[-100.54498814621383,26.82439500884942],[-100.54506280051157,26.824727022365153],[-100.54499105979198,26.825127986083373],[-100.54499783332051,26.825519625686752],[-100.5449828857486,26.82585082320668],[-100.54502416435145,26.826162452052415],[-100.5451322031031,26.826514852225273],[-100.54527418001697,26.82683743577377],[-100.54541419726559,26.82725224163937],[-100.5454785421606,26.827467292650113],[-100.54559239883963,26.827732670708656],[-100.5456621917233,26.8279577457771],[-100.54568809632644,26.82812756070814],[-100.5456353714116,26.828361495693116],[-100.54552725360463,26.828676690888926],[-100.54524072133074,26.82904225264133],[-100.54518004464467,26.829110732396032],[-100.54506094547958,26.82961587797257],[-100.54537861366475,26.83047015630831],[-100.54583236357507,26.831210620949037],[-100.54604979350631,26.831464295705075],[-100.54611308290055,26.831604416326854],[-100.54617637243268,26.83174453690083],[-100.54623966210261,26.831884657427224],[-100.5462246526364,26.83206476532075],[-100.54617425993092,26.83231432383758],[-100.5461034934221,26.8324532251213],[-100.54606811011047,26.832522675743064],[-100.54599734337245,26.83266157694652],[-100.54588689600229,26.83279081346859],[-100.54577644841032,26.832920049895165],[-100.54554594810963,26.83328251268614],[-100.54553768531088,26.833439424521657],[-100.54564211914038,26.833670040836864],[-100.54575068463362,26.833822201144642],[-100.54585271826005,26.833978178647385],[-100.5459125443665,26.834137648861144],[-100.54593016280086,26.834300611831395],[-100.545830851071,26.83476485568218],[-100.54572630397087,26.835007868820355],[-100.54556952040235,26.835608363055314],[-100.54564031479356,26.83585208208268],[-100.54570767805399,26.83599277188364],[-100.54638896177124,26.838188162190875],[-100.54640307219489,26.838380961866278],[-100.54631332047302,26.838540706298204],[-100.54624862430495,26.838703146590376],[-100.54622071162953,26.838781262060365],[-100.54622003138638,26.839256854670452],[-100.54625386128373,26.83944936621458],[-100.54627693680823,26.839623541129754],[-100.54625159434119,26.8397865574442],[-100.5462148088364,26.840134772803992],[-100.54617556762611,26.840282566719623],[-100.54609325561336,26.840501519664826],[-100.546007114046,26.840643837741254],[-100.54578812918265,26.841027611753816],[-100.54564884298986,26.84153239806983],[-100.54595646840806,26.842067290524426],[-100.5460567944072,26.842475738368876],[-100.54628903296168,26.842878150414947],[-100.54662134200623,26.84318790824659],[-100.54676222331983,26.84329336441931],[-100.54712008343199,26.843628429889407],[-100.54727225545281,26.844143162772923],[-100.5473476982483,26.844367625287134],[-100.54751895597622,26.844856647977394],[-100.54755619158618,26.84502150576276],[-100.54758940911881,26.845241166469464],[-100.54760581410159,26.84559472966913],[-100.54756199110653,26.846164055122244],[-100.54756602945713,26.846513729256856],[-100.54756888658608,26.846596787749718],[-100.54756099534569,26.846812096311112],[-100.54694751627272,26.847447761445892],[-100.54770130175814,26.848769060761356],[-100.54789900428966,26.8489284690923],[-100.54809874636425,26.84913964633705],[-100.54805233579066,26.849414457514285],[-100.5476733841366,26.84979250073127],[-100.5473517917963,26.850058009848],[-100.54725554970162,26.850317297567813],[-100.54724245537528,26.85055875515758],[-100.54804715446772,26.853055188168128],[-100.54885824869223,26.85374011586117],[-100.54920388470856,26.853826432436563],[-100.55014930370038,26.854054461517137],[-100.55017414071068,26.854479435283906],[-100.5502064901865,26.8550408865205],[-100.55009527361443,26.85549366082961],[-100.55008077274772,26.856140073873917],[-100.55030238945847,26.85629922440063],[-100.55135866443504,26.858729736843145],[-100.54735465916406,26.866570679972426],[-100.54686310158024,26.869962332433715],[-100.54066580736554,26.880969983320824],[-100.54157294616869,26.88889314594104],[-100.53842980259162,26.90611970806009],[-100.53858057010171,26.90665448684166],[-100.54215752331856,26.919220452796026],[-100.54492628823596,26.925348807796922],[-100.5447607780074,26.927377821675805],[-100.54253922782897,26.928789626555726],[-100.54042652867997,26.932514351239433],[-100.53895082322828,26.937376160626172],[-100.53823939794268,26.93971985199994],[-100.54182321154144,26.949199273795216],[-100.54080910127243,26.954808065232726],[-100.54270261115687,26.960420086632325],[-100.54144500872127,26.966055334016232],[-100.5416999966929,26.96659674783416],[-100.54169784460657,26.966674482690962],[-100.54172101956016,26.9674516620193],[-100.54174808531968,26.967684739693254],[-100.5421015140393,26.968829934774817],[-100.54279470445715,26.970043212274618],[-100.54330265700497,26.97079491927775],[-100.54347197584156,26.971045487770425],[-100.54374399082587,26.971415401582533],[-100.5442994068863,26.972392705837876],[-100.54441989309805,26.972744137552013],[-100.54454430897334,26.973269136368856],[-100.54466134818352,26.973799633896874],[-100.54488410560009,26.97491214512388],[-100.54510641945268,26.97589780903718],[-100.54525915225133,26.97820115277551],[-100.54521064082252,26.978653677253135],[-100.54510535518176,26.97932689383765],[-100.54487170654409,26.979990288530416],[-100.54451027791441,26.980579867401843],[-100.54321565352518,26.98224126653372],[-100.54297126140727,26.98253375253995],[-100.54292238285018,26.98259224968416],[-100.54230114791147,26.983268279729998],[-100.54208250521526,26.9834849776733],[-100.54197318359064,26.983593326511823],[-100.54022662747656,26.98531556827612],[-100.53996994815361,26.985687134097816],[-100.53971563833136,26.986418126764363],[-100.53968364094334,26.986669998475406],[-100.53971548852638,26.987032599286294],[-100.53973459716258,26.987250159694213],[-100.53979357240183,26.987864438680845],[-100.53981845390962,26.988381339009266],[-100.53983622653789,26.98875055333093],[-100.53986110838889,26.98926745310297],[-100.54003765877741,26.990472590749732],[-100.54179179662003,26.995434268353108],[-100.54184312533863,26.99576961449361],[-100.54187066088127,26.996010610895837],[-100.54192656200615,26.99724973066691],[-100.54192524407665,26.997326338398068],[-100.54184753977103,26.998883703465765],[-100.54180135897565,26.999322575154622],[-100.54177334720833,26.999541600806594],[-100.54158746062797,27.000494431973834],[-100.54146089448591,27.001016308247586],[-100.54144281352444,27.001090861965963],[-100.54140504149672,27.0012380862089],[-100.54134596822678,27.001456097755693],[-100.54104656118096,27.002605930495292],[-100.5409196780493,27.00310559692616],[-100.54083155455533,27.003462685384534],[-100.54033844967466,27.006774841862523],[-100.5409561262154,27.011753188445653],[-100.54064348132482,27.014898729075924],[-100.53986721459978,27.016910416554424],[-100.53978122282615,27.01719673505255],[-100.53969523066911,27.017483053405385],[-100.53917255566904,27.019066145716863],[-100.53914484309911,27.01913876806907],[-100.53856915754614,27.020524283312056],[-100.53850806837681,27.020660910260574],[-100.53844697907743,27.020797537163276],[-100.53716152152515,27.02333126042629],[-100.53682898932618,27.023855857574233],[-100.53678742261025,27.023921432145755],[-100.5366211553224,27.024183730271773],[-100.53615302904456,27.02504982036953],[-100.53591333195305,27.025723720736494],[-100.53575595783099,27.026316108905405],[-100.53572827372085,27.02761826363667],[-100.53578170823499,27.027921400200512],[-100.53585190403527,27.02814610436849],[-100.53594549881763,27.028445709782375],[-100.5359949568172,27.028511622319172],[-100.53614333112034,27.028709359806328],[-100.53629170588044,27.02890709710863],[-100.53649630244803,27.029236856491764],[-100.5366126565259,27.02943474158036],[-100.5373355507628,27.03178091465287],[-100.53739411796607,27.032077148317853],[-100.53740875980913,27.032151206714104],[-100.53751327170067,27.033249481438077],[-100.53752336949128,27.033395497942365],[-100.53871651332543,27.03782992106278],[-100.53872542394788,27.037880036521415],[-100.53878123234568,27.03819391524388],[-100.53879056550119,27.038354506169867],[-100.53872905200228,27.039273945909144],[-100.53785691308536,27.04149484520508],[-100.53781987808782,27.041560037895465],[-100.53774580798,27.04169042323514],[-100.5371591431632,27.042612019769706],[-100.53608671568833,27.043838904037273],[-100.53564066107543,27.044285926708596],[-100.53399784509708,27.04558443793195],[-100.53978427523481,27.047405829928493],[-100.65343920458508,27.075663905014608],[-100.6536477982321,27.077287886109616],[-100.65602190152879,27.082133281456095],[-100.65895243715585,27.084398100390956],[-100.66105212979664,27.08556015984192],[-100.66406587203721,27.086908674026347],[-100.66925214194936,27.087064204110447],[-100.67324333171831,27.08430519821684],[-100.67475175962062,27.086464307593815],[-100.6750025484672,27.096537801110287],[-100.67586951946339,27.099108969415738],[-100.67679126676353,27.10687737816545],[-100.68054031907491,27.11084083381303],[-100.68271870519732,27.111394586957886],[-100.68896303944894,27.110737757937898],[-100.69164373871791,27.109903853350033],[-100.69464373315896,27.109770152905185],[-100.69890326082998,27.107618821260985],[-100.70076840545352,27.103617244041004],[-100.70348908870068,27.10163591027998],[-100.70932587213287,27.09876347694609],[-100.71134586978951,27.093729430955023],[-100.71164852840917,27.088486801213662],[-100.71396101790799,27.084818318805844],[-100.71822293750239,27.080096594002896],[-100.72470516619273,27.07788387593598],[-100.72717159594981,27.078423885454697],[-100.7286658438178,27.08023113212289],[-100.72978118646273,27.081417375187414],[-100.73334156237325,27.083325599792943],[-100.73771013500783,27.084729761718165],[-100.74474796308391,27.083394465181357],[-100.74862098099516,27.081252809373098],[-100.7477945823523,27.075641989311578],[-100.74782724793454,27.069710746565875],[-100.7467957340541,27.06430621401904],[-100.74540352531267,27.060576302938784],[-100.74308873414407,27.05694871189968],[-100.73603870563824,27.04919756130829],[-100.73583581896912,27.04757971592653],[-100.74089206353108,27.041057029324463],[-100.74771353140414,27.03625678420076],[-100.7482446118837,27.036963103200492],[-100.74851623225487,27.03991729651875],[-100.74704826035202,27.04611104814751],[-100.7485308236707,27.049152693279495],[-100.75417559309415,27.05394200065831],[-100.7626740785359,27.06263413812144],[-100.76586399750056,27.063325155853363],[-100.77015686863678,27.06308771755232],[-100.77679722156955,27.06007561524143],[-100.78105254759896,27.058656171658697],[-100.78422999501254,27.058922288393717],[-100.78901191359984,27.055805076768763],[-100.79157707744253,27.052594515840326],[-100.79526909799347,27.049981180887073],[-100.79671961066737,27.04640272668621],[-100.7994361239933,27.045830755669385],[-100.8040447699156,27.050904152703936],[-100.80495321796786,27.0526713814225],[-100.80926851984032,27.056482472571815],[-100.8095879730053,27.05782488576807],[-100.80764792291575,27.065831463357085],[-100.80960682387479,27.068367835793424],[-100.81275792972934,27.070296739595108],[-100.81789558065759,27.071905259161554],[-100.82077847693574,27.07259486019666],[-100.83056139549365,27.07388547391372],[-100.83199351825476,27.12270672264367],[-100.83370182580325,27.180828713024084],[-100.83412341719247,27.19517396484656],[-100.82780546456047,27.20083312285135],[-100.80405143010302,27.22210281943228],[-100.6988978580593,27.3161381905893],[-100.6879246068367,27.325939946021492],[-100.67800621675474,27.334797307092913],[-100.64618519169613,27.342016711348663],[-100.5334165519015,27.367535915376266],[-100.53167806315969,27.36792875853729],[-100.48386003833252,27.37872504503804],[-100.48323449315563,27.37886616307634],[-100.42190922700723,27.392685005375768],[-100.41769955229495,27.393632759823333],[-100.41545203082467,27.40383907347956],[-100.40957479390835,27.42904340007516],[-100.40802912284113,27.43527068289984],[-100.40305290948362,27.456885601310205],[-100.39348122909632,27.498081799912995],[-100.38976677140448,27.514355037182213],[-100.38469928561813,27.536325273062573],[-100.38196348852375,27.54822049683014],[-100.37799775672721,27.565386591652896],[-100.37260211434176,27.588800913985096],[-100.36195206281889,27.635083123062373],[-100.35060984156104,27.684598559789208],[-100.35034120937297,27.684800460668896],[-100.33681327415667,27.694640262962196],[-100.30986880356517,27.71398359097924],[-100.29690724993895,27.723201146031784],[-100.28611050975883,27.73099526827218],[-100.2562497374982,27.751740424142326],[-100.24566197321201,27.758997368514827],[-100.245274658217,27.759266446408844],[-100.2209068255334,27.77636297696921],[-100.18842552576234,27.79913718620429],[-100.18338966800485,27.794281552385883],[-100.1827263286583,27.7936422607886],[-100.14371316714738,27.75602454008964],[-100.1134250201722,27.726793563844637],[-100.11053053228085,27.724000215771923],[-100.07747721350756,27.69208705028018],[-100.03301274874008,27.64911343931766],[-100.01617338568786,27.63282583825014],[-99.99884482767385,27.61527940285555],[-99.93268683498184,27.674420737834566],[-99.93232369087559,27.674800098349465],[-99.91135501601195,27.69925746159396],[-99.91004982687298,27.698620773380696],[-99.88811690524551,27.721904071292784],[-99.87965514405948,27.731061287910848],[-99.85926350363872,27.752751062031052]]]},"properties":{"cve_ent":"05"},"id":"inegi_refcenesta_2010.32"} +]} \ No newline at end of file diff --git a/static/data-files/template_coordenadas_pines.csv b/static/data-files/template_coordenadas_pines.csv new file mode 100644 index 0000000..d46f1d1 --- /dev/null +++ b/static/data-files/template_coordenadas_pines.csv @@ -0,0 +1 @@ +Etiqueta_pin,Estado,Municipio,Localidad,Latitud,Longitud,Comentario diff --git a/static/js/index/01_cobertura.js b/static/js/index/01_cobertura.js new file mode 100644 index 0000000..3a4d25a --- /dev/null +++ b/static/js/index/01_cobertura.js @@ -0,0 +1,137 @@ +// =============================== +// CONFIGURACIÓN GENERAL +// =============================== + + +const TILE_URL = location.href + "/tiles/{z}/{x}/{y}.pbf"; +const SOURCE_LAYER = "municipios"; + +// =============================== +// MAPA +// =============================== +const map = new maplibregl.Map({ + container: "map", + + center: [-102.20, 23.3646], + zoom: 5, + minZoom: 5, + maxZoom: 17, + style: { + version: 8, + sources: { + // Fondo raster OSM + osm: { + type: "raster", + tiles: [ + "https://a.tile.openstreetmap.org/{z}/{x}/{y}.png", + "https://b.tile.openstreetmap.org/{z}/{x}/{y}.png", + "https://c.tile.openstreetmap.org/{z}/{x}/{y}.png" + ], + tileSize: 256, + attribution: "© OpenStreetMap contributors" + }, + + // Vector tiles (MBTiles) + municipios: { + type: "vector", + tiles: [TILE_URL], + minzoom: 5, + maxzoom: 18 + } + }, + + layers: [ + // =============================== + // BASE RASTER + // =============================== + { + id: "osm-base", + type: "raster", + source: "osm", + maxzoom: 18 + }, + + // =============================== + // POLÍGONOS (RELLENO) + // =============================== + { + id: "municipios-fill", + type: "fill", + source: "municipios", + "source-layer": SOURCE_LAYER, + minzoom: 5, + maxzoom: 18, + paint: { + "fill-color": "#1976d2", + "fill-opacity": [ + "interpolate", + ["linear"], + ["zoom"], + 5, 0.8, + 8, 0.18, + 12, 0.45, + 18, 0.15 + ] + } + }, + + // =============================== + // BORDES DE POLÍGONOS + // =============================== + { + id: "municipios-outline", + type: "line", + source: "municipios", + "source-layer": SOURCE_LAYER, + minzoom: 6, + maxzoom: 18, + paint: { + "line-color": "#0d47a1", + "line-width": [ + "interpolate", + ["linear"], + ["zoom"], + 6, 0.2, + 12, 1.2, + 18, 3 + ] + } + }, + + // =============================== + // PUNTOS (DETALLE FINO) + // =============================== + { + id: "municipios-points", + type: "circle", + source: "municipios", + "source-layer": SOURCE_LAYER, + minzoom: 14, + maxzoom: 18, + paint: { + "circle-radius": [ + "interpolate", + ["linear"], + ["zoom"], + 14, 3, + 18, 6 + ], + "circle-color": "#0d47a1", + "circle-opacity": 0.7 + } + } + ] + } +}); + +// =============================== +// CONTROLES +// =============================== +map.addControl(new maplibregl.NavigationControl(), "top-right"); + +// =============================== +// DEBUG (opcional) +// =============================== +// map.on("load", () => { +// console.log("✅ Mapa cargado correctamente"); +// }); \ No newline at end of file diff --git a/static/js/index/02_edos-poligonos.js b/static/js/index/02_edos-poligonos.js new file mode 100644 index 0000000..9e5fdb3 --- /dev/null +++ b/static/js/index/02_edos-poligonos.js @@ -0,0 +1,84 @@ +import {dic_edos} from './99_functions.js'; + +map.on("load", () => { + + if (map.getSource("edos")) return; // 🔐 protección + + map.addSource("edos", { + type: "geojson", + data: "/api/poligonos-edos", + generateId: true + }); + + map.addLayer({ + id: "edos-fill", + type: "fill", + source: "edos", + paint: { "fill-opacity": 0 } + }); + + map.addLayer({ + id: "edos-outline", + type: "line", + source: "edos", + paint: { + "line-color": [ + "case", + ["boolean", ["feature-state", "hover"], false], + "#9b2226", + "#ffb703" + ], + "line-width": [ + "case", + ["boolean", ["feature-state", "hover"], false], + 4, + 1.5 + ] + } + }); + + let hoveredId = null; + + +map.on("mousemove", "edos-fill", e => { + + let id_entidad = e.features[0].properties.cve_ent; + let nombreEstado = dic_edos[id_entidad] || "No identificado"; + + + // ACTUALIZACIÓN: Mostrar en el formulario + const labelEstado = document.getElementById("nombre-estado-activo"); + if (labelEstado) { + labelEstado.innerText = nombreEstado; + } + + if (e.features.length) { + if (hoveredId !== null) { + map.setFeatureState({ source: "edos", id: hoveredId }, { hover: false }); + } + hoveredId = e.features[0].id; + map.setFeatureState({ source: "edos", id: hoveredId }, { hover: true }); + map.getCanvas().style.cursor = "pointer"; + } +}); + +// También es buena idea limpiar el texto cuando el mouse sale del mapa +map.on("mouseleave", "edos-fill", () => { + if (hoveredId !== null) { + map.setFeatureState({ source: "edos", id: hoveredId }, { hover: false }); + } + + // ACTUALIZACIÓN: Limpiar el nombre al salir + const labelEstado = document.getElementById("nombre-estado-activo"); + if (labelEstado) { + labelEstado.innerText = "Ninguno"; + } + + hoveredId = null; + map.getCanvas().style.cursor = ""; +}); + + + + +}); diff --git a/static/js/index/03_carga_pin_unitarios.js b/static/js/index/03_carga_pin_unitarios.js new file mode 100644 index 0000000..7157e50 --- /dev/null +++ b/static/js/index/03_carga_pin_unitarios.js @@ -0,0 +1,67 @@ +import { showNotification } from './99_functions.js'; + +// =============================== +// 1. LÓGICA DE PINES UNITARIOS (FORMULARIO) +// =============================== +const allMarkers = []; + +// 💡 DESCOMENTADA: Necesaria para que el validador funcione +function isValidCoord(value, min, max) { + return !isNaN(value) && value >= min && value <= max; +} + +function hasFourDecimals(value) { + const s = value.toString(); + if (!s.includes('.')) return false; + return s.split(".")[1].length >= 4; +} + +document.getElementById("add-pin").addEventListener("click", () => { + const labelInput = document.getElementById("pin-label"); + const latInput = document.getElementById("pin-lat"); + const lngInput = document.getElementById("pin-lng"); + + const label = labelInput.value.trim(); + const lat = parseFloat(latInput.value); + const lng = parseFloat(lngInput.value); + + // Validación unificada mejorada + const isInvalid = + !label || + !isValidCoord(lat, -90, 90) || + !isValidCoord(lng, -180, 180) || + !hasFourDecimals(latInput.value) || + !hasFourDecimals(lngInput.value); + + if (isInvalid) { + showNotification("Todos los campos son obligatorios: Etiqueta, Lat/Lng válidas y mínimo 4 decimales.", "error"); + return; + } + + // Si pasa la validación, procedemos: + const newMarker = new maplibregl.Marker({ color: "#d32f2f" }) + .setLngLat([lng, lat]) + .setPopup( + new maplibregl.Popup({ offset: 25 }) + .setHTML(`${label}
Lat: ${lat}
Lng: ${lng}`) + ) + .addTo(map); + + allMarkers.push(newMarker); + + map.flyTo({ + center: [lng, lat], + zoom: 12, + essential: true + }); + + // Limpiar campos + labelInput.value = ""; + latInput.value = ""; + lngInput.value = ""; + + showNotification("Marcador agregado con éxito", "success"); + + +}); + diff --git a/static/js/index/04_carga_pines_masivo.js b/static/js/index/04_carga_pines_masivo.js new file mode 100644 index 0000000..85433d4 --- /dev/null +++ b/static/js/index/04_carga_pines_masivo.js @@ -0,0 +1,95 @@ +import { showNotification } from './99_functions.js'; + +const csvFileInputEl = document.getElementById('csv-file'); +const loadingIndicator = document.getElementById('loading-indicator'); + +document.getElementById('csv-file').addEventListener('change', function (e) { + const file = e.target.files[0]; + if (!file) return; + + // emular loading de carga de archivo csv + if (this.files.length > 0) { + loadingIndicator.style.display = 'block'; + // Simular carga + setTimeout(() => { + loadingIndicator.style.display = 'none'; + // showNotification('Archivo CSV cargado exitosamente', 'success'); + }, 500); + } + + // PapaParse convierte el texto del CSV a objetos JSON automáticamente + Papa.parse(file, { + header: true, // Importante: Usa tus encabezados (Etiqueta_pin, Latitud, etc.) + skipEmptyLines: true, + dynamicTyping: true, // Convierte lat/lng a números automáticamente + complete: function (results) { + const data = results.data; + if (data.length === 0) { + showNotification("El archivo CSV está vacío."); + return; + } + procesarYPintarPines(data); + }, + error: function (err) { + console.error("Error al procesar CSV:", err); + showNotification("Hubo un error al leer el archivo.", "error"); + } + }); +}); + + + + + +function procesarYPintarPines(puntos) { + // Usaremos esto para centrar el mapa en todos los puntos cargados + const bounds = new maplibregl.LngLatBounds(); + let puntosValidos = 0; + + puntos.forEach(punto => { + // Extraer datos usando tus encabezados exactos + const lat = parseFloat(punto.Latitud); + const lng = parseFloat(punto.Longitud); + const nombre = punto.Etiqueta_pin || "Sin nombre"; + + if (!isNaN(lat) && !isNaN(lng)) { + // Crear el HTML del Popup con toda tu información + const contenido = ` +
+

${nombre}

+

+ Estado: ${punto.Estado || 'N/A'}
+ Municipio: ${punto.Municipio || 'N/A'}
+ Localidad: ${punto.Localidad || 'N/A'}
+ Nota: ${punto.Comentario || '...'} +

+
+ `; + + + // Crear marcador y añadirlo al mapa + const marker = new maplibregl.Marker({ color: "#d32f2f" }) + .setLngLat([lng, lat]) + .setPopup(new maplibregl.Popup({ offset: 25 }).setHTML(contenido)) + .addTo(map); + + // Guardar en tu lista global (la que definimos en pasos anteriores) + if (typeof allMarkers !== 'undefined') { + allMarkers.push(marker); + } + + // Extender los límites para que el mapa sepa qué área cubrir + bounds.extend([lng, lat]); + puntosValidos++; + } + }); + + if (puntosValidos > 0) { + // Mover la cámara para encuadrar todos los pines nuevos + map.fitBounds(bounds, { padding: 50, maxZoom: 15 }); + showNotification(`Éxito: Se cargaron ${puntosValidos} pines.`, "success"); + } else { + showNotification("Error: No se cargaron pines. Verifica el archivo CSV en los valores de 'latitud' y 'longitud' .", "error"); + } +} + diff --git a/static/js/index/05_collapse.js b/static/js/index/05_collapse.js new file mode 100644 index 0000000..2446e86 --- /dev/null +++ b/static/js/index/05_collapse.js @@ -0,0 +1,97 @@ +import { showNotification } from './99_functions.js'; + + +// Script para el funcionamiento del collapse - VERSIÓN MEJORADA +document.addEventListener('DOMContentLoaded', function () { + const collapseHeader = document.getElementById('form-collapse-header'); + const collapseContent = document.getElementById('form-collapse-content'); + const collapseIcon = document.getElementById('collapse-icon'); + + // Función mejorada para detectar dispositivo + function isMobileOrTablet() { + return window.innerWidth <= 1024; // Tablets y móviles + } + + // Función para detectar tablet grande + function isLargeTablet() { + return window.innerWidth >= 769 && window.innerWidth <= 1024; + } + + // Función para detectar móvil o tablet pequeña + function isSmallDevice() { + return window.innerWidth <= 768; + } + + // Función para aplicar estado inicial + function applyInitialState() { + if (isMobileOrTablet()) { + collapseContent.classList.add('collapsed'); + collapseIcon.classList.remove('rotated'); + + // Si es tablet grande, mostrar el header azul + if (isLargeTablet()) { + collapseHeader.style.background = 'linear-gradient(135deg, #1976d2, #2196f3)'; + collapseHeader.style.color = 'white'; + } + } else { + collapseContent.classList.remove('collapsed'); + collapseIcon.classList.add('rotated'); + } + } + + // Aplicar estado inicial + applyInitialState(); + + // Alternar collapse al hacer clic en el header + collapseHeader.addEventListener('click', function () { + // Solo funciona en dispositivos móviles/tablets + if (!isMobileOrTablet()) return; + + collapseContent.classList.toggle('collapsed'); + collapseIcon.classList.toggle('rotated'); + + // Animar el icono + collapseIcon.style.transition = 'transform 0.3s ease'; + + // Mostrar/ocultar notificación + if (collapseContent.classList.contains('collapsed')) { + showNotification('Formulario colapsado. Toque para expandir.', 'info', 2000); + } else { + showNotification('Formulario expandido', 'info', 2000); + } + }); + + // Ajustar al cambiar el tamaño de la ventana + window.addEventListener('resize', function () { + applyInitialState(); + }); + + // Colapsar automáticamente al agregar un marcador (solo en móviles/tablets) + const addPinButton = document.getElementById('add-pin'); + if (addPinButton) { + addPinButton.addEventListener('click', function () { + if (isMobileOrTablet() && !collapseContent.classList.contains('collapsed')) { + setTimeout(() => { + collapseContent.classList.add('collapsed'); + collapseIcon.classList.remove('rotated'); + }, 500); + } + }); + } + + // Colapsar al subir archivo CSV (solo en móviles/tablets) + const csvFileInput = document.getElementById('csv-file'); + if (csvFileInput) { + csvFileInput.addEventListener('change', function () { + if (isMobileOrTablet() && !collapseContent.classList.contains('collapsed') && this.files.length > 0) { + setTimeout(() => { + collapseContent.classList.add('collapsed'); + collapseIcon.classList.remove('rotated'); + }, 1000); + } + }); + } + + +}); + diff --git a/static/js/index/99_functions.js b/static/js/index/99_functions.js new file mode 100644 index 0000000..e2b77fa --- /dev/null +++ b/static/js/index/99_functions.js @@ -0,0 +1,115 @@ +let dic_edos = { + '01': 'Aguascalientes', + '02': 'Baja California', + '03': 'Baja California Sur', + '04': 'Campeche', + '05': 'Coahuila', + '06': 'Colima', + '07': 'Chiapas', + '08': 'Chihuahua', + '09': 'Ciudad de México', + '10': 'Durango', + '11': 'Guanajuato', + '12': 'Guerrero', + '13': 'Hidalgo', + '14': 'Jalisco', + '15': 'Estado de México', + '16': 'Michoacán', + '17': 'Morelos', + '18': 'Nayarit', + '19': 'Nuevo León', + '20': 'Oaxaca', + '21': 'Puebla', + '22': 'Querétaro', + '23': 'Quintana Roo', + '24': 'San Luis Potosí', + '25': 'Sinaloa', + '26': 'Sonora', + '27': 'Tabasco', + '28': 'Tamaulipas', + '29': 'Tlaxcala', + '30': 'Veracruz', + '31': 'Yucatán', + '32': 'Zacatecas', +} + + +function showNotification(message, type = 'info', duration = 5000) { + const notificationArea = document.getElementById('notification-area'); + const notification = document.createElement('div'); + notification.className = `notification ${type}`; + + let icon = 'info-circle'; + // por default el tipo es info + if (type === 'success') icon = 'check-circle'; + if (type === 'error') icon = 'exclamation-circle'; + + notification.innerHTML = ` + + ${message} + `; + + notificationArea.appendChild(notification); + + // Eliminar notificación después de la duración + setTimeout(() => { + notification.style.animation = 'slideInRight 0.3s ease reverse'; + setTimeout(() => notification.remove(), 300); + }, duration); +} + + +// function crearPin({ lat, lng, label = "Sin etiqueta", popupHTML = null }) { +// const map = getMap(); +// if (!map) return null; + +// const popup = new maplibregl.Popup({ offset: 25 }).setHTML( +// popupHTML || +// `${label}
Lat: ${lat}
Lng: ${lng}` +// ); + +// const marker = new maplibregl.Marker({ color: "#d32f2f" }) +// .setLngLat([lng, lat]) +// .setPopup(popup) +// .addTo(map); + +// allMarkers.push(marker); +// return marker; +// } + +// function crearPin({ lat, lng, label = "Sin etiqueta", popupHTML = null }) { +// const map = getMap(); // Asegúrate de que esta función exista y devuelva el objeto map +// if (!map) return null; + +// const popup = new maplibregl.Popup({ offset: 25 }).setHTML( +// popupHTML || `${label}
Lat: ${lat}
Lng: ${lng}` +// ); + +// const marker = new maplibregl.Marker({ color: "#d32f2f" }) +// .setLngLat([lng, lat]) +// .setPopup(popup) +// .addTo(map); + +// return marker; // Importante devolverlo para poder guardarlo en el array del otro archivo +// } + +// En 99_functions.js (Sugerencia de limpieza) +function crearPin({ lat, lng, label = "Sin etiqueta", popupHTML = null }) { + const map = getMap(); + if (!map) return null; + + const popup = new maplibregl.Popup({ offset: 25 }).setHTML( + popupHTML || `${label}
Lat: ${lat}
Lng: ${lng}` + ); + + const marker = new maplibregl.Marker({ color: "#d32f2f" }) + .setLngLat([lng, lat]) + .setPopup(popup) + .addTo(map); + + return marker; // <-- Esto es lo que permite que tu allMarkers.push() funcione en el otro archivo +} + + + +export { dic_edos, showNotification, crearPin }; \ No newline at end of file diff --git a/templates/404.html b/templates/404.html new file mode 100644 index 0000000..2c90052 --- /dev/null +++ b/templates/404.html @@ -0,0 +1,45 @@ + + + + + 404 - Página no encontrada + + + +
+

404

+

La página que buscas no existe.

+ Volver al mapa +
+ + diff --git a/templates/index.html b/templates/index.html new file mode 100644 index 0000000..a12d5ad --- /dev/null +++ b/templates/index.html @@ -0,0 +1,183 @@ + + + + + + + Mapa Cobertura Red Móvil 4G/5G + + + + + + + + + + + + + + + + + +
+ + + +
+ + + + + + + +
+ + +
+ + +
+ +
+ + +
+ +
+ + +
+ +
+ + +
+ + +
+
+ + +
+ + +
+
+ +
+ + El archivo CSV debe contener columnas: etiqueta, latitud (eje. 19.3818), longitud (eje. -99.1766 ). Use la + plantilla como referencia. +
+ + Descargar Plantilla + + + + + + +
+
+
+ + +
+ + + +
+ + +
+ +
+
+ + + Ninguno + +
+
+ +
+ + + + + + + + + + + + + + +
+
+
Cargando datos...
+
+ + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file