Skip to content

Instantly share code, notes, and snippets.

@seasmith
Forked from john-guerra/.block
Last active December 10, 2017 17:30
Show Gist options
  • Save seasmith/5d4eaa8c752dc6223315a5dc7b2798f2 to your computer and use it in GitHub Desktop.
Save seasmith/5d4eaa8c752dc6223315a5dc7b2798f2 to your computer and use it in GitHub Desktop.
GeoJson Map of US Oil and Gas Basins
license: mit

Map of US Oil and Gas Basins

Fork and edit of John Alexis Guerra Gómez's GeoJson Map of Bogotá .

Simple map of US oil and gas basins made from EIA data and hand-drawn data (via the R package mapedit).

<!DOCTYPE html>
<meta charset="utf-8">
<style>
h1, h2 {
font-family: "Lato", "Open Sans", "sans-serif";
margin: 0px;
padding: 3px;
}
.text-things {
margin-bottom: 8px;
}
.tract { stroke: #fff; }
.tract:hover { opacity: 0.5; }
</style>
<div class="text-things">
<h1>US Weekly Oil and Gas Rig Count</h1>
<h2>Week of: December 8, 2017</h2>
</div>
<svg width="960" height="550"></svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script>
var svg = d3.select("svg"),
width = +svg.attr("width"),
height = +svg.attr("height"),
margin = { top: 20, bottom:20, right: 20, left: 20};
d3.json("us_basins.json", function(error, data) {
if (error) throw error;
var path = d3.geoPath()
.projection(d3.geoAlbers()
//.rotate([0,0,-40]) // Make it horizontal (kind of)
.fitExtent([[margin.left, margin.top], [width-margin.right, height-margin.bottom]], data)
);
var signs = [1, 0, -1];
var colScale = d3.scaleOrdinal()
.domain(signs)
.range(["#4fa8ff", "#7f7f7f", "#ce1141"]);
svg.selectAll("path")
.data(data.features)
.enter().append("path")
.attr("class", "tract")
.attr("fill", function(d) {
return colScale(Math.sign(d.properties.change_1wk)); })
.attr("d", path)
.append("title")
.text(function(d) { return "Basin: " + d.properties.display_name +
"\nCurrent total: " + d.properties.value +
"\nWeekly change: " + d.properties.change_1wk; });
});
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"thing":"Ardmore Woodford","value":1,"change_1wk":0,"display_name":"Ardmore Woodford"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-96.459309,34.051607],[-96.457593,33.970893],[-96.460431,33.970852],[-96.504535,33.974344],[-96.552682,33.988451],[-96.589714,34.003534],[-96.623309,34.016809],[-96.642425,34.025477],[-96.660418,34.029796],[-96.681039,34.027762],[-96.706519,34.020213],[-96.733795,34.021983],[-96.917328,33.96582],[-97.054447,33.940256],[-97.083919,33.97864],[-97.11176,34.023314],[-97.196662,34.100434],[-97.25466,34.161948],[-97.325363,34.200857],[-97.546508,34.258035],[-97.669916,34.349191],[-97.750498,34.465078],[-97.748274,34.511828],[-97.672996,34.540107],[-97.593554,34.540482],[-97.491089,34.546843],[-97.427155,34.53466],[-97.393294,34.468488],[-97.359657,34.393462],[-97.335641,34.374176],[-97.309808,34.37003],[-97.293223,34.360951],[-97.263007,34.347885],[-97.23863,34.347537],[-97.194394,34.349421],[-97.150017,34.357606],[-97.112247,34.329241],[-97.065218,34.333543],[-97.024034,34.335413],[-96.996588,34.336231],[-96.983181,34.321864],[-96.963721,34.309145],[-96.912359,34.291848],[-96.867459,34.26074],[-96.823592,34.249857],[-96.779415,34.24455],[-96.742391,34.223301],[-96.675928,34.195325],[-96.633855,34.176825],[-96.559063,34.133652],[-96.522614,34.083332],[-96.459309,34.051607]]]]}},{"type":"Feature","properties":{"thing":"Arkoma Woodford","value":8,"change_1wk":0,"display_name":"Arkoma Woodford"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-95.351677,35.468295],[-95.37798,35.359796],[-95.433874,35.228281],[-95.499631,35.109918],[-95.617995,34.96854],[-95.632903,34.95603],[-95.68704,34.869904],[-95.765949,34.797571],[-95.834994,34.728525],[-95.913903,34.679207],[-95.97966,34.636465],[-96.038841,34.570708],[-96.088159,34.488511],[-96.11775,34.393163],[-96.121038,34.307679],[-96.13862,34.257753],[-96.2645,34.256963],[-96.258004,34.320985],[-96.275505,34.39471],[-96.308516,34.468775],[-96.380779,34.550981],[-96.413658,34.65948],[-96.439961,34.761404],[-96.439961,34.843601],[-96.449825,34.925797],[-96.453113,35.024433],[-96.42681,35.090191],[-96.374204,35.178963],[-96.28005,35.269265],[-96.136249,35.353931],[-96.074501,35.390944],[-96.028898,35.413659],[-95.974389,35.434299],[-95.951462,35.448386],[-95.92433,35.455028],[-95.815904,35.477874],[-95.583528,35.515497],[-95.479747,35.530836],[-95.400995,35.534053],[-95.351677,35.468295]]]]}},{"type":"Feature","properties":{"thing":"Barnett","value":5,"change_1wk":1,"display_name":"Barnett"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-99.4718,33.55444],[-99.42029,33.603302],[-99.271727,33.660835],[-99.061726,33.708383],[-98.960507,33.746697],[-98.887207,33.765264],[-98.834633,33.805365],[-98.809467,33.851672],[-98.768795,33.897631],[-98.696739,33.918183],[-98.597163,33.932433],[-98.514007,33.961981],[-98.474222,33.945152],[-98.42532,33.894727],[-98.362862,33.83437],[-98.263602,33.766592],[-98.153759,33.783134],[-98.051093,33.809959],[-97.970043,33.793555],[-97.909641,33.749025],[-97.872664,33.732851],[-97.787634,33.73471],[-97.733731,33.775284],[-97.704904,33.812935],[-97.647016,33.81406],[-97.604489,33.813508],[-97.572785,33.798566],[-97.49739,33.735767],[-97.474833,33.697887],[-97.470696,33.617927],[-97.454659,33.536145],[-97.448723,33.518304],[-97.43179,33.493189],[-97.414043,33.464636],[-97.408483,33.458974],[-97.351867,33.401257],[-97.305869,33.352332],[-97.141667,33.23965],[-96.918313,33.109251],[-96.78738,33.035872],[-96.702287,32.98573],[-96.721236,32.95075],[-96.793416,32.87867],[-96.862751,32.80234],[-96.92665,32.691733],[-96.984346,32.587748],[-97.040539,32.5096],[-97.052597,32.450273],[-97.059477,32.364277],[-97.074688,32.288074],[-97.155928,32.147753],[-97.189806,32.084026],[-97.214731,32.020577],[-97.227051,31.939498],[-97.258162,31.817461],[-97.296143,31.702719],[-97.369919,31.62335],[-97.458092,31.522454],[-97.564768,31.289682],[-97.611668,31.19877],[-97.655809,31.155249],[-97.762242,31.058898],[-97.799214,30.999475],[-97.849989,30.86858],[-97.959436,30.719316],[-98.024493,30.582455],[-98.066844,30.513097],[-98.127767,30.491363],[-98.154058,30.495697],[-98.17836,30.555989],[-98.18235,30.677271],[-98.210315,30.757825],[-98.257171,30.932169],[-98.301287,31.003807],[-98.366924,31.038188],[-98.462255,31.052253],[-98.635724,31.028811],[-98.680758,31.039154],[-98.695834,31.056412],[-98.669824,31.101607],[-98.701056,31.122784],[-98.754496,31.133518],[-98.885946,31.134421],[-98.979071,31.175655],[-99.053695,31.209742],[-99.168636,31.194467],[-99.215519,31.191341],[-99.301775,31.220331],[-99.439441,31.297223],[-99.564575,31.388546],[-99.644536,31.492821],[-99.682061,31.59712],[-99.704177,31.747297],[-99.727136,31.821214],[-99.823972,31.959201],[-99.867399,32.018569],[-99.883111,32.07469],[-99.862592,32.142184],[-99.865672,32.218073],[-99.849896,32.269139],[-99.689926,32.342312],[-99.644646,32.365282],[-99.610989,32.435335],[-99.571749,32.626923],[-99.541712,32.719761],[-99.533662,32.773498],[-99.531354,32.848518],[-99.545203,32.925845],[-99.549086,32.977343],[-99.525659,33.179062],[-99.496321,33.231063],[-99.458944,33.266589],[-99.403057,33.295538],[-99.375736,33.32008],[-99.353944,33.361684],[-99.374746,33.415174],[-99.475543,33.518813],[-99.4718,33.55444]]]]}},{"type":"Feature","properties":{"thing":"Cana Woodford","value":73,"change_1wk":1,"display_name":"Cana Woodford"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-97.961269,34.903932],[-98.208708,35.320093],[-98.576924,35.791457],[-98.864554,36.082103],[-98.975076,36.234065],[-98.939262,36.319351],[-98.768708,36.294595],[-98.640415,36.240572],[-98.504082,36.176308],[-98.401245,36.088565],[-98.265403,36.020676],[-98.187176,35.993317],[-98.08057,35.925414],[-98.019376,35.867866],[-97.954414,35.790113],[-97.918021,35.73944],[-97.873588,35.678611],[-97.833185,35.627875],[-97.792832,35.577125],[-97.744319,35.526278],[-97.695921,35.472056],[-97.644218,35.374138],[-97.620374,35.33023],[-97.580944,35.242495],[-97.55806,35.148232],[-97.555573,35.057565],[-97.55693,34.980371],[-97.557695,34.936739],[-97.563291,34.849522],[-97.564863,34.758899],[-97.566139,34.685057],[-97.538698,34.627659],[-97.502516,34.607077],[-97.447795,34.581564],[-97.412372,34.566716],[-97.408841,34.562666],[-97.387743,34.549082],[-97.38147,34.546785],[-97.382303,34.545092],[-97.392125,34.54689],[-97.43541,34.557983],[-97.470637,34.568791],[-97.505172,34.571106],[-97.566252,34.570256],[-97.6066,34.571571],[-97.668784,34.581231],[-97.745025,34.593938],[-97.838374,34.702573],[-97.961269,34.903932]]]]}},{"type":"Feature","properties":{"thing":"DJ-Niobrara","value":23,"change_1wk":-2,"display_name":"DJ-Niobrara"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-104.5826443,39.4446263],[-104.6162448,39.4339437],[-104.649531,39.4258381],[-104.6907034,39.4176287],[-104.7281935,39.4100825],[-104.7596617,39.4033595],[-104.7942508,39.395424],[-104.8085027,39.3926591],[-104.8352865,39.387919],[-104.8682044,39.3847596],[-104.9044774,39.3868163],[-104.935983,39.3911792],[-104.9742944,39.3970758],[-105.0109042,39.4006384],[-105.0478976,39.3993207],[-105.071371,39.3967167],[-105.0937306,39.3943209],[-105.119184,39.4337084],[-105.134374,39.4577016],[-105.1374033,39.465149],[-105.1491574,39.4943195],[-105.1528868,39.5039065],[-105.1594589,39.5203891],[-105.1618792,39.5266128],[-105.1657758,39.5362722],[-105.169889,39.5466828],[-105.1710969,39.5499192],[-105.1787255,39.5690284],[-105.2097688,39.6456201],[-105.2576379,39.7673187],[-105.2921941,39.8561774],[-105.3017453,39.8789138],[-105.3109632,40.0168523],[-105.3142972,40.0819727],[-105.3222419,40.1892896],[-105.3242697,40.2393804],[-105.3087202,40.3640027],[-105.3013555,40.426669],[-105.2887282,40.5258929],[-105.2740615,40.6374476],[-105.2671881,40.6914331],[-105.2593578,40.7750282],[-105.2462607,40.9159353],[-105.2374598,41.0150918],[-105.2021534,41.1420526],[-105.1701699,41.2522678],[-105.1356173,41.3786871],[-105.113242,41.4558623],[-105.0716503,41.5366618],[-105.0242201,41.6320637],[-104.9530586,41.7733107],[-104.9234462,41.824053],[-104.8569101,41.9359845],[-104.8304385,41.9800899],[-104.7958881,42.0397201],[-104.7886594,42.0518873],[-104.7574177,42.0754041],[-104.7331365,42.0914823],[-104.6973999,42.1024256],[-104.6353365,42.1155632],[-104.5916202,42.1198587],[-104.5656749,42.123857],[-104.514944,42.1831285],[-104.4755517,42.1958878],[-104.4333202,42.1952268],[-104.3978841,42.1927102],[-104.3583338,42.2299135],[-104.3299977,42.2859948],[-104.2623783,42.3421633],[-104.1133345,42.4265406],[-104.0769221,42.3781848],[-104.0402426,42.3169109],[-104.0171406,42.2780957],[-103.9943592,42.2365246],[-103.9771313,42.2045493],[-103.9593675,42.1736023],[-103.9530785,42.1638144],[-103.9390195,42.1448173],[-103.9329734,42.1362735],[-103.9247553,42.1258299],[-103.9076941,42.1075101],[-103.888642,42.0860562],[-103.8765885,42.0714109],[-103.8476218,42.0354691],[-103.8217111,41.9994666],[-103.7956469,41.963977],[-103.7759705,41.9415461],[-103.754143,41.9243443],[-103.7453542,41.9176923],[-103.7171889,41.9007851],[-103.6884107,41.8820555],[-103.675768,41.8726496],[-103.6579716,41.8562219],[-103.6349272,41.8235483],[-103.6053264,41.7824857],[-103.5964959,41.7692146],[-103.5847236,41.7507614],[-103.5742803,41.7330118],[-103.5684587,41.7192994],[-103.5624135,41.7046836],[-103.5548709,41.6721378],[-103.5540609,41.6605823],[-103.5525114,41.6343236],[-103.5552991,41.5973095],[-103.5625211,41.5604952],[-103.5713519,41.5261207],[-103.580981,41.4871573],[-103.5858085,41.4556461],[-103.5858089,41.4456907],[-103.5850665,41.4261676],[-103.5849784,41.4200822],[-103.5830714,41.4097081],[-103.5778446,41.3833206],[-103.5709819,41.3532348],[-103.5648246,41.3130481],[-103.5673622,41.2781506],[-103.5775634,41.2426552],[-103.5837501,41.2262803],[-103.5885206,41.2140402],[-103.5949338,41.1957648],[-103.6005333,41.180436],[-103.6021748,41.174856],[-103.6032576,41.1678245],[-103.6091114,41.1394987],[-103.6110199,41.1126818],[-103.6137508,41.0675118],[-103.6158303,41.0555658],[-103.6200082,41.0332948],[-103.6256459,41.018781],[-103.633338,41.0001229],[-103.6476192,40.9734491],[-103.6535162,40.9616021],[-103.6661594,40.9364795],[-103.6794748,40.9013488],[-103.6870826,40.8669301],[-103.6890152,40.8486961],[-103.6948432,40.7927677],[-103.7019564,40.7581235],[-103.7155308,40.7268718],[-103.738497,40.6963138],[-103.7662865,40.6725066],[-103.7961598,40.6572547],[-103.8313194,40.6425737],[-103.8621226,40.6236314],[-103.8854665,40.5943442],[-103.9085449,40.5613173],[-103.9186384,40.5316321],[-103.9417234,40.4784519],[-103.9672557,40.4028356],[-103.9918366,40.3201191],[-104.0062449,40.2713185],[-104.0224257,40.2362466],[-104.0384668,40.20969],[-104.0515363,40.1906795],[-104.0615562,40.1767045],[-104.0731703,40.159599],[-104.0810905,40.1473307],[-104.0952873,40.1234093],[-104.1004697,40.1144818],[-104.1149545,40.0848367],[-104.1280269,40.0517601],[-104.1378275,40.0196701],[-104.1427683,40.0018527],[-104.1547513,39.9556785],[-104.1574448,39.9462698],[-104.1670335,39.9161209],[-104.1732474,39.8988376],[-104.1789795,39.8836868],[-104.1880641,39.8581503],[-104.1916452,39.8483006],[-104.1937436,39.8413638],[-104.1963207,39.8331978],[-104.2000675,39.8211232],[-104.2028071,39.8118192],[-104.2088401,39.7965757],[-104.2139207,39.7817263],[-104.2161601,39.7765552],[-104.2225081,39.7640394],[-104.2296005,39.7506794],[-104.2350796,39.7407735],[-104.2489812,39.7202227],[-104.2591174,39.7070256],[-104.2761966,39.6866625],[-104.2841263,39.678973],[-104.3007273,39.6618296],[-104.3179627,39.6469748],[-104.3497716,39.6185114],[-104.3623178,39.6067056],[-104.3952233,39.575001],[-104.435867,39.5367469],[-104.4598516,39.5154792],[-104.4898681,39.4922096],[-104.5197234,39.47354],[-104.5363843,39.4652034],[-104.5523746,39.4570296],[-104.5826443,39.4446263]]]]}},{"type":"Feature","properties":{"thing":"Eagle Ford","value":70,"change_1wk":3,"display_name":"Eagle Ford"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-100.561443,28.829174],[-100.580502,28.856008],[-100.569689,28.897611],[-100.538158,28.937675],[-100.514611,28.967595],[-100.459905,29.015996],[-100.39797,29.049132],[-100.321748,29.064268],[-100.261076,29.05284],[-100.187103,29.012807],[-100.135268,28.984755],[-100.057724,28.951964],[-100.006032,28.930105],[-99.937986,28.921031],[-99.798413,28.932812],[-99.702529,28.937451],[-99.567983,28.949823],[-99.487564,28.965288],[-99.366601,28.963481],[-99.28363,28.970207],[-99.218006,28.973505],[-99.152586,28.978014],[-99.102763,28.989846],[-98.883931,29.018559],[-98.82617,29.030055],[-98.743534,29.043098],[-98.635745,29.06078],[-98.577182,29.077587],[-98.532613,29.082562],[-98.495161,29.104884],[-98.431299,29.122507],[-98.397585,29.125244],[-98.354167,29.140659],[-98.322421,29.156654],[-98.287445,29.169707],[-98.205298,29.206977],[-98.137326,29.243422],[-98.088713,29.267831],[-98.024635,29.304947],[-97.951043,29.346892],[-97.88688,29.377237],[-97.846377,29.407147],[-97.807447,29.419332],[-97.72825,29.480623],[-97.699687,29.510799],[-97.636521,29.568538],[-97.585703,29.620684],[-97.557889,29.652839],[-97.512966,29.713744],[-97.48049,29.758133],[-97.446246,29.806774],[-97.405908,29.859781],[-97.367042,29.886107],[-97.311625,29.938817],[-97.243352,30.01072],[-97.179389,30.02834],[-97.143037,30.054787],[-97.063403,30.193096],[-96.996949,30.264889],[-96.944946,30.303478],[-96.883133,30.254393],[-96.766937,30.138745],[-96.619415,29.975671],[-96.512672,29.850031],[-96.645618,29.72216],[-96.772551,29.631429],[-96.861585,29.515267],[-96.886669,29.474538],[-96.945932,29.424658],[-97.033446,29.335536],[-97.152419,29.221322],[-97.380847,29.045242],[-97.580722,28.940546],[-97.704454,28.869162],[-97.794873,28.797778],[-97.85561,28.72326],[-98.037578,28.52652],[-98.132757,28.445618],[-98.21904,28.342818],[-98.711603,28.071019],[-98.904917,27.961217],[-99.070393,27.860694],[-99.255975,27.73388],[-99.389112,27.622325],[-99.475579,27.517368],[-99.508085,27.489075],[-99.52832,27.498896],[-99.525316,27.520106],[-99.522431,27.540477],[-99.518819,27.553194],[-99.514319,27.556994],[-99.522908,27.576083],[-99.530138,27.580207],[-99.536561,27.59567],[-99.539722,27.603281],[-99.559467,27.609076],[-99.562869,27.607264],[-99.584176,27.603675],[-99.578361,27.610255],[-99.584782,27.622007],[-99.592626,27.632691],[-99.603533,27.641992],[-99.625322,27.631137],[-99.654324,27.629616],[-99.660176,27.644679],[-99.661845,27.655753],[-99.685813,27.661015],[-99.704601,27.654954],[-99.721519,27.666155],[-99.732289,27.685204],[-99.749311,27.695217],[-99.757539,27.711853],[-99.77074,27.732134],[-99.774901,27.73354],[-99.788845,27.730718],[-99.801651,27.741771],[-99.80567,27.758688],[-99.813086,27.773952],[-99.822193,27.766855],[-99.835127,27.762881],[-99.841708,27.766464],[-99.849281,27.790032],[-99.870066,27.794627],[-99.877694,27.80196],[-99.876678,27.832975],[-99.882015,27.850392],[-99.89365,27.856193],[-99.901486,27.864162],[-99.904385,27.875284],[-99.894091,27.89295],[-99.895828,27.904178],[-99.905861,27.914081],[-99.917461,27.917973],[-99.925935,27.927688],[-99.937142,27.940537],[-99.938541,27.954059],[-99.932161,27.96771],[-99.931812,27.980967],[-99.962769,27.983536],[-99.984923,27.990729],[-100.000279,28.009672],[-100.008631,28.023964],[-100.014975,28.048815],[-100.017914,28.064787],[-100.028725,28.073118],[-100.046108,28.079068],[-100.053123,28.08473],[-100.055596,28.101141],[-100.067652,28.113602],[-100.075474,28.124882],[-100.083393,28.144035],[-100.090289,28.148313],[-100.119628,28.155588],[-100.126587,28.159659],[-100.141098,28.168149],[-100.168438,28.171542],[-100.17395,28.178835],[-100.185694,28.185781],[-100.195826,28.189941],[-100.208059,28.190383],[-100.212137,28.196838],[-100.21345,28.210416],[-100.217565,28.226934],[-100.227575,28.235857],[-100.251634,28.236177],[-100.267604,28.250269],[-100.289384,28.273491],[-100.294296,28.284381],[-100.287554,28.301093],[-100.286471,28.312296],[-100.288639,28.316978],[-100.314198,28.345859],[-100.317246,28.357382],[-100.320393,28.362117],[-100.341869,28.384953],[-100.3444,28.389662],[-100.345766,28.407693],[-100.337059,28.427151],[-100.337475,28.440403],[-100.341533,28.449571],[-100.358194,28.464516],[-100.365982,28.481116],[-100.356643,28.48215],[-100.344181,28.486249],[-100.33714,28.491729],[-100.338518,28.501833],[-100.362148,28.508399],[-100.38886,28.515748],[-100.405058,28.53578],[-100.411414,28.551899],[-100.39727,28.575637],[-100.403243,28.586668],[-100.425819,28.594958],[-100.431893,28.597944],[-100.44732,28.609325],[-100.448648,28.616774],[-100.447281,28.625703],[-100.445529,28.637144],[-100.462866,28.641364],[-100.481417,28.655592],[-100.496129,28.65877],[-100.505212,28.676364],[-100.510772,28.696121],[-100.509872,28.709924],[-100.507152,28.728543],[-100.507514,28.738002],[-100.514426,28.749728],[-100.519226,28.756161],[-100.533017,28.76328],[-100.537772,28.780776],[-100.534847,28.78641],[-100.53583,28.805888],[-100.546432,28.82427],[-100.561443,28.829174]]]]}},{"type":"Feature","properties":{"thing":"Fayetteville","value":0,"change_1wk":0,"display_name":"Fayetteville"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-94.277701,35.202423],[-94.382715,35.322647],[-94.393411,35.533806],[-94.363316,35.638342],[-94.241304,35.682679],[-94.023528,35.690577],[-93.875907,35.691057],[-93.491065,35.684045],[-92.952118,35.658092],[-92.664754,35.666656],[-92.303507,35.677098],[-91.918848,35.628261],[-91.475479,35.601242],[-91.181049,35.594285],[-91.274519,35.529656],[-91.388323,35.449603],[-91.544307,35.315956],[-91.736617,35.176988],[-91.867632,35.102377],[-92.012094,35.097852],[-92.293813,35.102714],[-92.709335,35.13337],[-93.396545,35.153332],[-94.014893,35.168451],[-94.277701,35.202423]]]]}},{"type":"Feature","properties":{"thing":"Granite Wash","value":10,"change_1wk":0,"display_name":"Granite Wash"},"geometry":{"type":"Polygon","coordinates":[[[-100.2063,35.8623],[-99.9976,35.7733],[-99.7339,35.5859],[-99.5581,35.4338],[-99.4592,35.3532],[-99.3823,35.2815],[-99.1516,35.1828],[-98.9978,35.084],[-99.0088,34.976],[-99.1296,34.976],[-99.2725,34.976],[-99.4263,35.021],[-99.7229,35.1379],[-100.1129,35.407],[-100.3079,35.5412],[-100.5029,35.6751],[-100.6787,35.8089],[-100.8215,35.9157],[-100.8545,35.9869],[-100.8435,36.0846],[-100.6787,36.0757],[-100.5469,36.0313],[-100.3436,35.9202],[-100.2063,35.8623]]]}},{"type":"Feature","properties":{"thing":"Haynesville","value":46,"change_1wk":3,"display_name":"Haynesville"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-93.681032,32.792981],[-93.364342,32.74084],[-93.276161,32.718153],[-93.222779,32.696855],[-93.166972,32.650845],[-93.148034,32.624486],[-93.107321,32.571917],[-93.060778,32.534219],[-93.043245,32.501075],[-93.029389,32.431764],[-93.026698,32.373064],[-93.017033,32.373381],[-92.973888,32.357267],[-92.944578,32.313315],[-92.954958,32.250334],[-92.98599,32.212258],[-93.018681,32.197755],[-93.017434,32.170433],[-93.022231,32.140467],[-93.003677,32.121334],[-92.979942,32.052923],[-92.990903,31.968966],[-93.020068,31.88345],[-93.034515,31.82132],[-93.102,31.722886],[-93.165791,31.647083],[-93.291594,31.541822],[-93.3984,31.488061],[-93.469695,31.484],[-93.521013,31.49526],[-93.556158,31.547785],[-93.556165,31.54778],[-93.605234,31.526488],[-93.652399,31.506807],[-93.703291,31.482227],[-93.740972,31.464187],[-93.780624,31.457468],[-93.843041,31.460314],[-93.907152,31.459876],[-93.919591,31.449451],[-93.969879,31.434214],[-93.986215,31.410671],[-93.99361,31.402535],[-94.002351,31.386637],[-94.005846,31.381277],[-94.016398,31.365089],[-94.035811,31.338124],[-94.189401,31.124143],[-94.214343,31.078078],[-94.340667,30.979589],[-94.464481,30.9735],[-94.610851,31.000225],[-94.713317,31.032117],[-94.795464,31.069386],[-94.826913,31.089948],[-94.845138,31.114511],[-94.845989,31.158415],[-94.81586,31.208489],[-94.785269,31.235649],[-94.75265,31.274286],[-94.796807,31.328346],[-94.82134,31.399777],[-94.813319,31.518046],[-94.814662,31.534181],[-94.843026,31.55029],[-94.856556,31.564678],[-94.851521,31.597158],[-94.865641,31.640702],[-94.892642,31.664609],[-94.940393,31.683336],[-94.984546,31.710201],[-95.043592,31.809723],[-95.075825,31.893451],[-95.077647,31.974431],[-95.049193,32.062383],[-95.009266,32.150512],[-94.949535,32.204725],[-94.943901,32.239499],[-94.920326,32.293314],[-94.91206,32.327803],[-94.914771,32.562572],[-94.885461,32.669919],[-94.868803,32.736983],[-94.81776,32.78164],[-94.732168,32.796217],[-94.678043,32.802681],[-94.619182,32.797729],[-94.505898,32.781961],[-94.372199,32.758678],[-94.336054,32.759069],[-94.266074,32.763614],[-94.216654,32.785105],[-94.173942,32.802695],[-94.121723,32.805988],[-94.00669,32.806061],[-93.859749,32.807156],[-93.681032,32.792981]]]]}},{"type":"Feature","properties":{"thing":"Marcellus","value":45,"change_1wk":3,"display_name":"Marcellus"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-75.2205487,42.3534266],[-75.2056753,42.2181921],[-75.2364899,42.0705815],[-75.2747204,41.9491382],[-75.3649578,41.7557891],[-75.4605849,41.6118812],[-75.5692275,41.5074463],[-75.6647567,41.4175434],[-75.8185333,41.322927],[-75.9120701,41.2735052],[-76.009322,41.2183665],[-76.1856509,41.1502931],[-76.3119194,41.1221445],[-76.5037318,41.1170953],[-76.5726806,41.1230225],[-76.6498676,41.1368028],[-76.709804,41.1819547],[-76.7410097,41.2248902],[-76.7677612,41.2429108],[-76.7960955,41.245256],[-76.854503,41.2464484],[-76.8971842,41.2503142],[-76.9473103,41.2555949],[-77.0098263,41.2418135],[-77.057018,41.2343218],[-77.1164473,41.2286809],[-77.1370023,41.2259519],[-77.1648307,41.2183711],[-77.2093833,41.2126766],[-77.2490136,41.2063497],[-77.2886964,41.2016087],[-77.3350864,41.179104],[-77.3881572,41.1557293],[-77.4444262,41.1379884],[-77.4936163,41.1270442],[-77.5340528,41.1078824],[-77.5745467,41.081621],[-77.6057358,41.069242],[-77.6420115,41.0441904],[-77.6951837,41.0106043],[-77.7434823,40.9812441],[-77.7953164,40.954594],[-77.8378219,40.9353395],[-77.8768059,40.9169065],[-77.9287889,40.8757029],[-78.019767,40.8381861],[-78.0892284,40.7818835],[-78.2276025,40.7062979],[-78.2677064,40.6747438],[-78.3091801,40.64659],[-78.3383685,40.6141747],[-78.3535234,40.5918593],[-78.3651557,40.5578767],[-78.3979616,40.5257164],[-78.4272033,40.4972182],[-78.4397298,40.4439822],[-78.4441366,40.4047035],[-78.4367907,40.3873397],[-78.4260305,40.3602736],[-78.4390125,40.3185139],[-78.4458103,40.3071194],[-78.4654026,40.2845821],[-78.4827853,40.2647939],[-78.4939921,40.2547078],[-78.5241942,40.2279112],[-78.5439476,40.1859582],[-78.5336665,40.1651257],[-78.5263444,40.1447351],[-78.5352151,40.1105636],[-78.5803756,40.0299501],[-78.6304278,39.9647535],[-78.6588115,39.9374172],[-78.6738922,39.9125963],[-78.7368473,39.8169747],[-78.7873252,39.7239708],[-78.8255923,39.6587883],[-78.8407154,39.6297436],[-78.8519001,39.6044712],[-78.860948,39.5789654],[-78.8794011,39.5538226],[-78.8963253,39.5314414],[-78.9143015,39.5189354],[-78.9214574,39.5121255],[-78.932441,39.5009546],[-78.9442954,39.4888982],[-78.9581027,39.4743238],[-78.9833665,39.4491139],[-79.0225673,39.4081796],[-79.0574478,39.3742479],[-79.0774567,39.3530682],[-79.1106408,39.3171346],[-79.1346258,39.2868781],[-79.1545556,39.2617373],[-79.1711603,39.2332155],[-79.1838715,39.2086417],[-79.1964132,39.1898387],[-79.207051,39.1773917],[-79.2184452,39.1598073],[-79.2260075,39.1325942],[-79.2344895,39.1151239],[-79.2462136,39.0953855],[-79.259756,39.0830721],[-79.2658897,39.0664704],[-79.2665119,39.04809],[-79.2746026,39.0290585],[-79.2834348,39.0082829],[-79.3149233,38.9476875],[-79.3436034,38.9048092],[-79.3728362,38.8611046],[-79.3926817,38.8319007],[-79.4130677,38.799],[-79.4347095,38.7683659],[-79.4884191,38.6928206],[-79.5269139,38.6363198],[-79.5641723,38.5866545],[-79.5891568,38.5413346],[-79.6274767,38.5008691],[-79.6517326,38.4723823],[-79.6707065,38.4364031],[-79.6976667,38.4013625],[-79.7096424,38.3857975],[-79.7204655,38.3596381],[-79.7345128,38.3239316],[-79.7593232,38.2707069],[-79.7907088,38.21826],[-79.8547589,38.1564503],[-79.8948231,38.1014423],[-79.9237682,38.0558],[-79.9630469,38.0077698],[-79.969286,37.9898739],[-79.9723682,37.9690685],[-79.9748388,37.9562326],[-79.9795971,37.9433708],[-79.9933599,37.9196796],[-80.008997,37.8921344],[-80.0340932,37.8534231],[-80.0543567,37.8305367],[-80.0627522,37.8175122],[-80.0703545,37.8023539],[-80.0852421,37.7874334],[-80.1018314,37.7708073],[-80.1723263,37.7114263],[-80.2166024,37.675498],[-80.2461959,37.6529309],[-80.3017686,37.60868],[-80.3572904,37.5730827],[-80.4301586,37.5425816],[-80.5275925,37.5059875],[-80.612536,37.4615919],[-80.7871056,37.3840694],[-80.9185829,37.3424397],[-81.0728434,37.293264],[-81.1619787,37.2622887],[-81.2331047,37.2438591],[-81.3110461,37.2247626],[-81.413826,37.2007254],[-81.5221366,37.1832768],[-81.6582609,37.1844848],[-81.7989669,37.2172185],[-81.9361182,37.2749642],[-82.0153758,37.3122521],[-82.0937783,37.3685799],[-82.1437302,37.4079588],[-82.2261114,37.4729032],[-82.3150207,37.5557443],[-82.3538673,37.6079298],[-82.3867396,37.6520897],[-82.4362735,37.7242388],[-82.474455,37.8089488],[-82.4932002,37.8652091],[-82.5071719,37.9071423],[-82.5172758,37.9924136],[-82.5189078,38.0839108],[-82.5224661,38.2834021],[-82.500971,38.4589398],[-82.4544462,38.592952],[-82.4104741,38.6908539],[-82.3252573,38.827534],[-82.2138073,38.9850066],[-82.0994404,39.1732981],[-81.9837623,39.3466138],[-81.8492163,39.5087626],[-81.713979,39.7279262],[-81.6051601,39.8955438],[-81.5022298,40.0540908],[-81.4010795,40.2018421],[-81.2862539,40.3695689],[-81.1737018,40.5163634],[-81.1018142,40.6101218],[-81.0205394,40.7037341],[-80.9525556,40.7721575],[-80.8528023,40.861944],[-80.6818554,41.0158109],[-80.5463182,41.1340567],[-80.483751,41.1886417],[-80.3962105,41.2480878],[-80.3014126,41.3023483],[-80.125042,41.3941042],[-79.9409334,41.5162718],[-79.7983525,41.6108832],[-79.6723321,41.6709474],[-79.4368366,41.7455048],[-79.2276045,41.792764],[-79.0924193,41.8657251],[-78.9401216,41.9690508],[-78.8366626,42.0523954],[-78.7446405,42.118129],[-78.6911104,42.1628072],[-78.6499959,42.1971228],[-78.5846429,42.2589002],[-78.5422595,42.3117501],[-78.4898707,42.3490546],[-78.4321238,42.3870866],[-78.3835183,42.4135119],[-78.3216646,42.4471398],[-78.2495729,42.4609816],[-78.1874118,42.4570746],[-78.1146918,42.4053411],[-78.0651246,42.3870927],[-78.0156318,42.3676049],[-77.9645651,42.370079],[-77.8753323,42.3828399],[-77.7966994,42.4130664],[-77.7159233,42.4572251],[-77.6113029,42.4846147],[-77.5182978,42.484859],[-77.3827782,42.4538893],[-77.2654772,42.4512666],[-77.1666226,42.5055525],[-77.0692924,42.5714364],[-76.9436812,42.6292993],[-76.81668,42.6759995],[-76.7098522,42.737067],[-76.5834893,42.7612524],[-76.4322465,42.7591313],[-76.2715589,42.7570127],[-76.1059252,42.7365386],[-75.9605479,42.7103266],[-75.8200294,42.6633391],[-75.6984929,42.6296032],[-75.5714268,42.6144191],[-75.4334061,42.5846817],[-75.3060238,42.5166535],[-75.2513544,42.4619623],[-75.2205487,42.3534266]]]]}},{"type":"Feature","properties":{"thing":"Mississippian","value":4,"change_1wk":-2,"display_name":"Mississippian"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-98.5474,36.3151],[-99.0747,36.4213],[-99.4263,36.6155],[-99.5142,37.0201],[-99.2285,37.2653],[-98.6572,37.3178],[-97.4268,37.4225],[-96.5918,37.3352],[-96.1523,37.1778],[-95.8887,37.1078],[-95.6909,36.9499],[-95.5151,36.6684],[-95.6909,36.3505],[-96.1084,36.2088],[-97.0752,36.2266],[-97.7563,36.2974],[-98.5474,36.3151]]]]}},{"type":"Feature","properties":{"thing":"Permian","value":400,"change_1wk":3,"display_name":"Permian"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-101.40781,33.018372],[-101.38362,33.011265],[-101.332917,33.02705],[-101.300416,33.030148],[-101.269572,33.020285],[-101.244357,33.003475],[-101.224062,32.978875],[-101.211762,32.950585],[-101.219347,32.922705],[-101.249892,32.905075],[-101.288637,32.896875],[-101.327855,32.889648],[-101.361909,32.88164],[-101.397816,32.872243],[-101.436056,32.858225],[-101.465714,32.843395],[-101.502007,32.818029],[-101.534788,32.777834],[-101.551959,32.732565],[-101.561634,32.671748],[-101.567959,32.618613],[-101.574984,32.585052],[-101.58513,32.557734],[-101.603862,32.524173],[-101.629618,32.491392],[-101.692531,32.427415],[-101.707361,32.406969],[-101.708259,32.379032],[-101.671395,32.319994],[-101.664734,32.282925],[-101.668499,32.236008],[-101.679794,32.193726],[-101.707596,32.122482],[-101.718601,32.092942],[-101.72671,32.055583],[-101.727289,32.01359],[-101.711361,31.970149],[-101.664155,31.903539],[-101.609709,31.836929],[-101.555063,31.78404],[-101.494427,31.735169],[-101.429519,31.695073],[-101.285442,31.61726],[-101.254438,31.598414],[-101.229513,31.573489],[-101.208236,31.537622],[-101.181488,31.488989],[-101.158753,31.455113],[-101.129877,31.421536],[-101.088241,31.383258],[-101.053321,31.352367],[-101.029146,31.319798],[-101.019745,31.282527],[-101.028139,31.243578],[-101.056343,31.194556],[-101.094285,31.164337],[-101.13122,31.147548],[-101.172787,31.134994],[-101.216515,31.124959],[-101.270278,31.116356],[-101.314006,31.108471],[-101.359884,31.098435],[-101.403612,31.086966],[-101.466303,31.068041],[-101.503562,31.06312],[-101.531772,31.06995],[-101.549441,31.087916],[-101.556568,31.115829],[-101.556539,31.183881],[-101.562333,31.210415],[-101.581419,31.219517],[-101.603917,31.210221],[-101.668434,31.168308],[-101.690112,31.159394],[-101.712194,31.155342],[-101.738937,31.15595],[-101.771757,31.164864],[-101.931135,31.228275],[-101.96279,31.241571],[-102.000459,31.264046],[-102.031798,31.291586],[-102.053957,31.31691],[-102.076749,31.349831],[-102.185352,31.522817],[-102.216411,31.574259],[-102.231941,31.6092],[-102.241647,31.645112],[-102.2465,31.681024],[-102.249286,31.725481],[-102.246875,31.771304],[-102.242051,31.810496],[-102.236022,31.844261],[-102.220646,31.883151],[-102.199242,31.914202],[-102.178993,31.936671],[-102.150083,31.966183],[-102.129605,31.995394],[-102.119367,32.02581],[-102.118463,32.063453],[-102.125389,32.101698],[-102.137134,32.131512],[-102.167851,32.173973],[-102.298849,32.285397],[-102.322541,32.307374],[-102.344853,32.334397],[-102.359728,32.35894],[-102.365925,32.381748],[-102.363446,32.406539],[-102.345597,32.426372],[-102.315103,32.443231],[-102.264529,32.465791],[-102.241721,32.482153],[-102.226846,32.507688],[-102.211972,32.547354],[-102.198832,32.573633],[-102.177264,32.590739],[-102.145909,32.599701],[-102.104618,32.608822],[-102.088336,32.616374],[-102.084018,32.63378],[-102.106892,32.660818],[-102.143048,32.699941],[-102.162867,32.7371],[-102.167546,32.775911],[-102.157912,32.815548],[-102.138919,32.849404],[-102.109467,32.875554],[-102.073409,32.887665],[-102.038393,32.890848],[-102.004595,32.89372],[-101.978996,32.902529],[-101.963032,32.924274],[-101.951746,32.951524],[-101.937158,32.977398],[-101.912109,32.996666],[-101.883208,32.998868],[-101.852795,32.98446],[-101.818248,32.956203],[-101.788245,32.938312],[-101.756866,32.935009],[-101.71833,32.940789],[-101.676491,32.956754],[-101.530245,33.051992],[-101.498426,33.070564],[-101.463707,33.083015],[-101.436442,33.08117],[-101.419154,33.060055],[-101.40781,33.018372]]],[[[-103.080218,30.951401],[-103.115636,30.952088],[-103.151201,30.952777],[-103.198576,30.947456],[-103.2617,30.947456],[-103.324825,30.951401],[-103.39595,30.952296],[-103.435292,30.951401],[-103.470739,30.955832],[-103.593103,30.971128],[-103.719352,31.00269],[-103.745659,31.010854],[-103.771719,31.018942],[-103.794427,31.025989],[-103.833765,31.038197],[-103.868143,31.063408],[-103.892944,31.081595],[-103.917144,31.101525],[-103.931941,31.113711],[-103.960013,31.136829],[-103.972367,31.154947],[-103.991481,31.182982],[-104.019192,31.223625],[-104.064664,31.309321],[-104.121769,31.416943],[-104.177003,31.527411],[-104.228292,31.657605],[-104.299307,31.81147],[-104.328148,31.883574],[-104.370321,31.989008],[-104.428142,32.11406],[-104.457117,32.190216],[-104.465008,32.229669],[-104.4724873,32.2670685],[-104.520386,32.249451],[-104.558008,32.242959],[-104.596186,32.242728],[-104.633884,32.248764],[-104.670082,32.260903],[-104.703797,32.278816],[-104.734116,32.302017],[-104.760218,32.329879],[-104.781396,32.361646],[-104.797074,32.396456],[-104.806829,32.433367],[-104.804301,32.494002],[-104.78852,32.541345],[-104.760903,32.584743],[-104.729341,32.647868],[-104.681998,32.695211],[-104.618873,32.762281],[-104.539968,32.809624],[-104.405829,32.884584],[-104.244073,32.955599],[-104.125715,33.002942],[-103.98763,33.066066],[-103.83771,33.129191],[-103.77064,33.160753],[-103.715407,33.204151],[-103.697355,33.262529],[-103.672009,33.334345],[-103.658508,33.439636],[-103.672009,33.543444],[-103.672009,33.606568],[-103.662169,33.647842],[-103.644392,33.669693],[-103.614116,33.678759],[-103.581302,33.688586],[-103.53939,33.697744],[-103.496569,33.700388],[-103.453849,33.696454],[-103.412231,33.686035],[-103.376235,33.683019],[-103.341264,33.673973],[-103.30832,33.659158],[-103.278348,33.638996],[-103.252207,33.614068],[-103.230646,33.585086],[-103.214284,33.552882],[-103.203589,33.51838],[-103.192654,33.482276],[-103.182769,33.437796],[-103.182769,33.408142],[-103.183493,33.364326],[-103.184895,33.322302],[-103.192825,33.281009],[-103.200067,33.237634],[-103.194631,33.192315],[-103.159241,33.131897],[-103.036011,33.029358],[-102.985531,32.967435],[-102.933411,32.851379],[-102.905595,32.751024],[-102.894107,32.647521],[-102.89924,32.543509],[-102.920863,32.441639],[-102.958424,32.34451],[-103.010965,32.254598],[-103.077148,32.174194],[-103.091317,32.159342],[-103.107825,32.147142],[-103.126182,32.137956],[-103.145843,32.132058],[-103.166224,32.129621],[-103.186722,32.130718],[-103.206727,32.135317],[-103.225645,32.143282],[-103.242916,32.154375],[-103.2458326,32.1570565],[-103.244403,32.153959],[-103.229579,32.107015],[-103.207342,32.042777],[-103.192518,32.003246],[-103.185106,31.956302],[-103.176121,31.909728],[-103.166952,31.870652],[-103.166931,31.843079],[-103.157696,31.810751],[-103.143257,31.760206],[-103.126734,31.702366],[-103.1251008,31.6966491],[-103.116408,31.67822],[-103.10337,31.643454],[-103.079779,31.567093],[-103.0724072,31.5442299],[-103.059574,31.520007],[-103.044739,31.492004],[-103.035641,31.481595],[-103.011704,31.45421],[-102.989477,31.428779],[-102.968814,31.397842],[-102.950012,31.36969],[-102.943298,31.355369],[-102.930551,31.328179],[-102.918515,31.302506],[-102.900602,31.264298],[-102.890808,31.243408],[-102.887836,31.219563],[-102.885414,31.200139],[-102.881904,31.171976],[-102.878514,31.144781],[-102.875064,31.117103],[-102.884648,31.096337],[-102.898736,31.065814],[-102.914905,31.046411],[-102.93075,31.027396],[-102.947566,31.007217],[-102.957915,30.994799],[-102.976822,30.988682],[-102.988797,30.984808],[-103.011723,30.971536],[-103.032875,30.959292],[-103.060385,30.954707],[-103.080218,30.951401]],[[-103.370816,32.448844],[-103.3659242,32.4144403],[-103.3659238,32.4144394],[-103.370816,32.448844]],[[-103.365894,32.4143819],[-103.349129,32.382041],[-103.335819,32.349145],[-103.318524,32.314555],[-103.3122453,32.3030439],[-103.324567,32.329227],[-103.334727,32.352373],[-103.347401,32.384633],[-103.365894,32.4143819]]]]}},{"type":"Feature","properties":{"thing":"Utica","value":27,"change_1wk":-3,"display_name":"Utica"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-82.6643937,39.7351013],[-82.645794,39.9478359],[-82.6039445,40.2175322],[-82.5388454,40.4035297],[-82.496996,40.5476777],[-82.5086208,40.7057756],[-82.5295455,40.826674],[-82.5109458,40.9661721],[-82.4551466,41.1707693],[-82.3853975,41.3660666],[-82.3156485,41.4451155],[-82.1808003,41.4962648],[-82.0157275,41.5195145],[-81.8692545,41.5148646],[-81.7065067,41.5381143],[-81.5437589,41.6218131],[-81.3507866,41.7543363],[-81.1182897,41.8333853],[-80.9415921,41.8938344],[-80.7509447,41.9403338],[-80.5951718,41.9519587],[-80.4533488,41.9519587],[-80.0627541,41.9589336],[-79.4489624,41.9775333],[-78.6817229,41.9589336],[-78.230679,41.9635835],[-77.933083,42.0147328],[-77.5099388,42.1263313],[-77.128644,42.2565295],[-76.8589476,42.3309285],[-76.6497005,42.4146274],[-76.5474019,42.4704266],[-76.319555,42.6145746],[-76.1335575,42.7215232],[-75.9010607,42.8145219],[-75.7104133,42.8889209],[-75.5290657,42.9028707],[-75.361668,42.879621],[-75.2407697,42.807547],[-75.0501222,42.6517741],[-74.9571235,42.5262258],[-74.9036492,42.3472033],[-74.8594748,42.149581],[-74.8269253,41.9217341],[-74.8269253,41.7008621],[-74.845525,41.5241645],[-74.9268989,41.3125923],[-75.0129227,41.2056438],[-75.1570708,41.1033452],[-75.3058688,41.0242963],[-75.505816,40.973147],[-75.7127382,40.9615221],[-75.9289603,40.9452473],[-76.0893831,40.9150228],[-76.2219063,40.8801482],[-76.4753279,40.822024],[-76.6473755,40.8080742],[-76.9240468,40.8173741],[-77.0147205,40.8545736],[-77.0286703,40.9336225],[-76.9961208,41.0568458],[-76.977521,41.1451946],[-76.9937958,41.1963439],[-77.0635449,41.2288935],[-77.1797933,41.2312185],[-77.5052889,41.1451946],[-77.6354871,41.0754456],[-77.8447342,40.968497],[-77.9888823,40.8754983],[-78.1190805,40.8057492],[-78.2585786,40.7174004],[-78.3515774,40.6197518],[-78.3887768,40.5081533],[-78.4817756,40.2477568],[-78.5701244,39.9734106],[-78.6166237,39.7827631],[-78.6863728,39.6246653],[-78.7700717,39.499117],[-78.89562,39.3596189],[-79.0676676,39.2108209],[-79.2769148,39.0759728],[-79.5233614,39.0062237],[-79.7326086,38.9643743],[-79.9372058,38.9364747],[-80.1929523,38.9225248],[-81.3740363,38.9178749],[-81.5228342,38.9457745],[-81.615833,38.9643743],[-81.7925306,39.0434232],[-81.9180789,39.0992224],[-82.1877752,39.2642952],[-82.2947237,39.3596189],[-82.3133235,39.3689188],[-82.5132708,39.4595925],[-82.5806948,39.499117],[-82.6388191,39.5479413],[-82.6643937,39.6037406],[-82.6643937,39.7351013]]]]}},{"type":"Feature","properties":{"thing":"Williston","value":47,"change_1wk":-1,"display_name":"Williston"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-101.208004,46.7297095],[-101.2130298,46.729049],[-101.2393951,46.7009295],[-101.2804079,46.6928927],[-101.341927,46.6808352],[-101.3829397,46.6466577],[-101.4356704,46.6084337],[-101.4825421,46.5661548],[-101.5645675,46.5439956],[-101.6817468,46.5319049],[-101.8106439,46.5298895],[-101.9014579,46.5681689],[-102.0039897,46.6064212],[-102.0889447,46.6124586],[-102.1680407,46.6144709],[-102.2295598,46.6124586],[-102.2471366,46.6044086],[-102.2295598,46.582265],[-102.2295598,46.5500399],[-102.2852199,46.4936],[-102.2969378,46.4734286],[-102.3379506,46.4532498],[-102.3438095,46.4209482],[-102.3994697,46.41085],[-102.4961425,46.3987297],[-102.5928154,46.4169091],[-102.6279692,46.4350825],[-102.6279692,46.4492132],[-102.6865588,46.4835152],[-102.7041357,46.4915832],[-102.7568664,46.4875493],[-102.7920201,46.4774635],[-102.8271739,46.4693935],[-102.8564687,46.4835152],[-102.888693,46.5177957],[-102.9121289,46.5560836],[-102.9326352,46.5641407],[-102.9384942,46.5339202],[-102.9707185,46.5278741],[-103.0000133,46.5298895],[-103.0498145,46.5701828],[-103.0732503,46.5862918],[-103.1552758,46.5943444],[-103.2167949,46.6124586],[-103.2402308,46.6325783],[-103.2402308,46.6506797],[-103.2314423,46.668775],[-103.210936,46.6828449],[-103.2080065,46.6989204],[-103.2226539,46.7049474],[-103.2248385,46.7023706],[-103.2274214,46.7070177],[-103.2273742,46.7032904],[-103.2248385,46.7023706],[-103.2213623,46.7011096],[-103.2248385,46.7023706],[-103.2232585,46.6995277],[-103.2273742,46.7032904],[-103.2480837,46.7222239],[-103.2894591,46.7222239],[-103.3142843,46.7165508],[-103.3928975,46.69669],[-103.4466854,46.710877],[-103.4715107,46.7477457],[-103.5252986,46.7874224],[-103.620462,46.8553714],[-103.6701124,46.9232346],[-103.7156253,46.9768988],[-103.7528631,47.0417887],[-103.7942385,47.0868829],[-103.8149262,47.1319391],[-103.8149262,47.1713319],[-103.7942385,47.205074],[-103.7942385,47.2303664],[-103.8066511,47.264071],[-103.8314763,47.2921417],[-103.8604391,47.2893353],[-103.9225021,47.297754],[-103.968015,47.297754],[-104.0631783,47.2809152],[-104.1086912,47.2472214],[-104.1335164,47.2078849],[-104.1583417,47.1431972],[-104.2121296,47.1206786],[-104.2083441,47.1252905],[-104.2286798,47.1206786],[-104.307293,47.1291242],[-104.423144,47.1797695],[-104.5265824,47.2416104],[-104.5969205,47.303377],[-104.6589835,47.3258093],[-104.7378333,47.3477783],[-104.8162099,47.3706629],[-104.886548,47.3958761],[-104.9196483,47.4602552],[-104.8812136,47.5475419],[-104.886548,47.5971523],[-104.9320609,47.6306185],[-104.994124,47.652925],[-105.0644621,47.6361938],[-105.1927257,47.6138849],[-105.2465137,47.6389818],[-105.2713389,47.6974943],[-105.3044392,47.7615041],[-105.3292644,47.7726282],[-105.395465,47.7976488],[-105.4285653,47.8198792],[-105.4139138,47.812481],[-105.4771564,47.8511069],[-105.5899445,47.9322257],[-105.6629457,47.9703751],[-105.6795249,47.9744958],[-105.7062558,47.9930084],[-105.7123471,47.9961916],[-105.9326618,48.0493631],[-105.9290848,48.2386797],[-106.066535,48.317765],[-106.0172097,48.3953544],[-105.9318972,48.4897183],[-105.8997941,48.5701561],[-105.9206502,48.9065471],[-105.8806174,48.9996894],[-105.8775556,48.9996944],[-105.8567362,48.9997122],[-105.8538966,48.9997122],[-105.8339966,48.9997122],[-105.8180966,48.9996122],[-105.7833966,48.9997122],[-105.7765966,48.9996122],[-105.7682966,48.9997122],[-105.7569966,48.9997122],[-105.7505966,48.9996122],[-105.7171966,48.9996122],[-105.7036966,48.9997122],[-105.6526966,48.9994122],[-105.6501966,48.9996122],[-105.6337966,48.9997122],[-105.6273966,48.9997122],[-105.6157966,48.9997122],[-105.6125966,48.9997122],[-105.6074966,48.9996122],[-105.5992966,48.9996122],[-105.5829141,48.9996921],[-105.5749006,48.9996829],[-105.5521966,48.9995122],[-105.5225966,48.9996122],[-105.5005966,48.9996122],[-105.4968966,48.9996122],[-105.4919966,48.9996122],[-105.4891219,48.9996122],[-105.4879722,48.9996111],[-105.4629444,48.9995833],[-105.4424296,48.9995638],[-105.4336966,48.9995122],[-105.4309966,48.9995122],[-105.4287966,48.9995122],[-105.4246966,48.9994122],[-105.4212966,48.9995122],[-105.4137966,48.9995122],[-105.4083966,48.9995122],[-105.4031966,48.9995122],[-105.3926994,48.9995122],[-105.3917269,48.9995106],[-105.3872966,48.9994122],[-105.3844966,48.9993122],[-105.3746966,48.9994122],[-105.3709107,48.9994774],[-105.3676389,48.9994722],[-105.3675359,48.9994721],[-105.3654966,48.9994122],[-105.3634534,48.9994689],[-105.3605767,48.9994666],[-105.3560966,48.9993122],[-105.3434966,48.9993122],[-105.3046966,48.9994122],[-105.2934966,48.9994122],[-105.2924661,48.9994122],[-105.2649167,48.9993889],[-105.2471947,48.9993598],[-105.2310966,48.9993122],[-105.2242966,48.9993122],[-105.1936997,48.9993122],[-105.1841667,48.9993056],[-105.1624722,48.9992778],[-105.1621111,48.9992778],[-105.1473611,48.9992778],[-105.1294862,48.99926],[-105.1194966,48.9992122],[-105.0797966,48.9992122],[-105.0662966,48.9992122],[-105.0574966,48.9992122],[-105.0333966,48.9991122],[-105.0090966,48.9991122],[-105.0036797,48.999204],[-104.9954444,48.9991944],[-104.9800698,48.999183],[-104.9556966,48.9991122],[-104.9481966,48.9991122],[-104.9257966,48.9991122],[-104.9205966,48.9990122],[-104.9056966,48.9990122],[-104.8754966,48.9990122],[-104.8695596,48.9991111],[-104.8383056,48.9991111],[-104.8051389,48.9990833],[-104.7886859,48.9990722],[-104.7639966,48.9990122],[-104.7566966,48.9990122],[-104.7502966,48.9990122],[-104.7315966,48.9990122],[-104.7222966,48.9990122],[-104.7013574,48.9990122],[-104.6850278,48.999],[-104.6779816,48.9990122],[-104.6527966,48.9990122],[-104.6302775,48.9991096],[-104.6296667,48.9991111],[-104.5976667,48.9991667],[-104.5747778,48.9991944],[-104.5743333,48.9991944],[-104.5696025,48.9992122],[-104.5668966,48.9992122],[-104.5440966,48.9992122],[-104.5019966,48.9993122],[-104.4794966,48.9993122],[-104.4624749,48.99938],[-104.4544444,48.9993889],[-104.4427152,48.9994122],[-104.4263966,48.9994122],[-104.4176966,48.9994122],[-104.4038081,48.9994841],[-104.39475,48.9995],[-104.3884516,48.9995122],[-104.3759966,48.9995122],[-104.3196966,48.9996122],[-104.3065966,48.9996122],[-104.2947966,48.9995122],[-104.2918966,48.9996122],[-104.2844898,48.9996877],[-104.2800826,48.9996994],[-104.2504966,48.9995122],[-104.2129966,48.9998122],[-104.2069966,48.9998122],[-104.1950966,48.9998122],[-104.1877564,48.99985],[-104.1727413,48.9998843],[-104.1650966,48.9998122],[-104.1600966,48.9998122],[-104.1449966,48.9999122],[-104.1372966,48.9999122],[-104.1186538,48.9999847],[-104.1115556,49],[-104.100566,48.9999849],[-104.0710966,48.9999122],[-104.0580616,48.9999122],[-104.0530943,48.9998998],[-104.0484966,48.9997122],[-104.0203966,48.9997122],[-104.0123966,48.9996122],[-104.0004966,48.9997122],[-103.9924966,48.9996122],[-103.9888966,48.9996122],[-103.9830966,48.9996122],[-103.9808966,48.9996122],[-103.9764966,48.9996122],[-103.9689966,48.9995122],[-103.9225966,48.9995122],[-103.9180966,48.9996122],[-103.8761966,48.9996122],[-103.8646966,48.9996122],[-103.8594966,48.9996122],[-103.8560966,48.9996122],[-103.8522966,48.9995122],[-103.8081966,48.9994122],[-103.7759822,48.999505],[-103.7726944,48.9995],[-103.7636838,48.9994867],[-103.7348966,48.9994122],[-103.7123966,48.9994122],[-103.7078387,48.9994122],[-103.6843611,48.9993889],[-103.6693278,48.9993598],[-103.6555966,48.9993122],[-103.6346258,48.9993122],[-103.6280833,48.9993056],[-103.6024786,48.9992562],[-103.5960966,48.9992122],[-103.5749966,48.9992122],[-103.5676176,48.9992775],[-103.56725,48.9992778],[-103.5581614,48.9992778],[-103.5314966,48.9991122],[-103.5015196,48.9993056],[-103.5001974,48.9993056],[-103.4868966,48.9990122],[-103.4681966,48.9991122],[-103.4648966,48.9991122],[-103.4439966,48.9991122],[-103.4396966,48.9991122],[-103.4217966,48.9991122],[-103.4065966,48.9991122],[-103.3995966,48.9991122],[-103.3765966,48.9990122],[-103.3624966,48.9993122],[-103.3505966,48.9993122],[-103.3145966,48.9993122],[-103.2937921,48.9993799],[-103.2838889,48.9993889],[-103.2685282,48.9993889],[-103.2504966,48.9993122],[-103.2023966,48.9993122],[-103.1806966,48.9993122],[-103.1585966,48.9993122],[-103.1254966,48.9993122],[-103.1141966,48.9993122],[-103.0924966,48.9993122],[-103.0701966,48.9993122],[-103.0631966,48.9993122],[-103.0493966,48.9993122],[-103.0040966,48.9993122],[-103.0004966,48.9993122],[-102.9810966,48.9992122],[-102.9492598,48.9993075],[-102.9468889,48.9993056],[-102.9387967,48.9993056],[-102.9099722,48.9993056],[-102.90217,48.9993056],[-102.8833966,48.9992122],[-102.8764796,48.9992997],[-102.8506389,48.9992778],[-102.8283889,48.9992778],[-102.8056904,48.9992347],[-102.7990966,48.9992122],[-102.7921578,48.9992122],[-102.7798611,48.9991944],[-102.7481944,48.9991667],[-102.7266006,48.9991492],[-102.7138966,48.9991122],[-102.6876411,48.9991122],[-102.6866111,48.9991111],[-102.6585278,48.9990833],[-102.6476739,48.9990722],[-102.6313966,48.9990122],[-102.6027038,48.9990122],[-102.5946667,48.999],[-102.5825252,48.9989838],[-102.5517966,48.9989122],[-102.5235966,48.9989122],[-102.4875966,48.9988122],[-102.4602486,48.9988122],[-102.4565556,48.9988056],[-102.4146389,48.9988056],[-102.4058188,48.9988122],[-102.3935966,48.9988122],[-102.3753966,48.9988122],[-102.3713966,48.9988122],[-102.3504966,48.9988122],[-102.3194966,48.9988122],[-102.2944966,48.9988122],[-102.2807966,48.9988122],[-102.2751966,48.9988122],[-102.2468966,48.9988122],[-102.2169966,48.9985122],[-102.2125966,48.9985122],[-102.1955966,48.9986122],[-102.1738966,48.9986122],[-102.1704966,48.9986122],[-102.1508966,48.9988122],[-102.1308966,48.9988122],[-102.1253966,48.9988122],[-102.1070966,48.9988122],[-102.0760966,48.9988122],[-102.0468966,48.9988122],[-102.0310285,48.9988739],[-102.0211966,48.9988818],[-102.0124167,48.9988889],[-101.9808056,48.9988889],[-101.9706821,48.9989122],[-101.9565966,48.9989122],[-101.9453206,48.9989569],[-101.9314167,48.9989722],[-101.9122367,48.9990047],[-101.8803362,48.9869122],[-101.8519077,48.9620761],[-101.8200506,48.9437767],[-101.7627475,48.890427],[-101.5723816,48.7790662],[-101.3241294,48.587849],[-101.158628,48.4398425],[-101.0096767,48.2528485],[-100.9103758,48.0098375],[-100.8259509,47.7679026],[-100.8159597,47.767521],[-100.8197737,47.750201],[-100.81935,47.7489866],[-100.7696996,47.5538825],[-100.7862497,47.3580493],[-100.8359001,47.1783633],[-100.9021007,47.0882915],[-100.9848514,46.9811331],[-101.1834532,46.7661707],[-101.208004,46.7297095]]]]}},{"type":"Feature","properties":{"thing":"Others","value":172,"change_1wk":-4,"display_name":"Other US Basins"},"geometry":{"type":"MultiPolygon","coordinates":[[[[-81.9706258,24.5234003],[-81.9720514,24.5232132],[-81.9754489,24.5232927],[-81.9770297,24.5236677],[-81.9766314,24.5241854],[-81.9749062,24.5264277],[-81.9743885,24.5265688],[-81.9730843,24.5269244],[-81.9707694,24.5260652],[-81.9687358,24.5246043],[-81.9676106,24.523796],[-81.9706258,24.5234003]]],[[[-82.0024169,24.5287582],[-82.0058526,24.5280294],[-82.0080499,24.530446],[-82.0085185,24.5314243],[-82.0091599,24.5327638],[-82.0094604,24.5349997],[-82.0068097,24.5373645],[-82.0031161,24.5361229],[-82.0001083,24.5338984],[-81.9994208,24.5324846],[-81.9988652,24.5313419],[-81.9995784,24.5289972],[-82.0024169,24.5287582]]],[[[-81.9240969,24.5304941],[-81.9208054,24.5301772],[-81.9196167,24.5312104],[-81.9191512,24.5310713],[-81.917602,24.5306084],[-81.9173746,24.5293147],[-81.9185421,24.5281472],[-81.9190818,24.5281226],[-81.9218923,24.5279949],[-81.9246507,24.5271025],[-81.9254019,24.5267074],[-81.9261535,24.5259617],[-81.9281366,24.5259066],[-81.9283469,24.5263137],[-81.9286107,24.5268243],[-81.9285042,24.5296983],[-81.92847,24.5297368],[-81.9269386,24.5314597],[-81.9253601,24.5332354],[-81.9251879,24.5334293],[-81.9244576,24.5326143],[-81.9244602,24.5320292],[-81.9244627,24.531486],[-81.9244976,24.5314059],[-81.9246967,24.5309496],[-81.9244447,24.5307582],[-81.9240969,24.5304941]]],[[[-81.9217908,24.5398729],[-81.9250102,24.5388776],[-81.926613,24.5429186],[-81.9266056,24.5429189],[-81.9265983,24.5429193],[-81.9266734,24.5430176],[-81.9251857,24.5448685],[-81.9251286,24.5465171],[-81.9216346,24.548886],[-81.9174761,24.5477916],[-81.9163086,24.5455581],[-81.9178065,24.542717],[-81.9201664,24.5416495],[-81.9217908,24.5398729]]],[[[-82.1307014,24.5519442],[-82.1306286,24.5516619],[-82.1305956,24.5517667],[-82.1293548,24.5496865],[-82.1290989,24.5487221],[-82.1288399,24.5477457],[-82.129562,24.5476231],[-82.1299705,24.5475537],[-82.1331176,24.549132],[-82.1331531,24.5505176],[-82.1336935,24.5514232],[-82.1336578,24.5513895],[-82.1339097,24.5517857],[-82.1327611,24.5525779],[-82.1307014,24.5519442]]],[[[-82.124681,24.5481418],[-82.1253457,24.5478537],[-82.1256511,24.5477214],[-82.1259167,24.5477116],[-82.1264452,24.5476921],[-82.1265423,24.5478671],[-82.1279685,24.5478645],[-82.1291543,24.5516242],[-82.1288795,24.5524987],[-82.127557,24.5530817],[-82.125396,24.5516053],[-82.1250606,24.551165],[-82.1242721,24.5500834],[-82.124681,24.5481418]]],[[[-82.1440949,24.5496707],[-82.1468203,24.5490632],[-82.1475343,24.5493263],[-82.1497666,24.5509881],[-82.1496616,24.5511281],[-82.1493856,24.5514961],[-82.1488455,24.5522162],[-82.1480957,24.5523828],[-82.1459557,24.5528583],[-82.1440311,24.5518325],[-82.1440813,24.5501311],[-82.1440881,24.5499007],[-82.1440915,24.5497861],[-82.1440949,24.5496707]]],[[[-81.6372712,24.5833639],[-81.6370893,24.580378],[-81.6386101,24.5789522],[-81.638969,24.5786157],[-81.641353,24.5765747],[-81.6428303,24.5758802],[-81.6451102,24.5748085],[-81.647523,24.5768517],[-81.6479155,24.5784692],[-81.6454503,24.5790849],[-81.6448885,24.5792252],[-81.644258,24.5794287],[-81.6419676,24.580168],[-81.6412544,24.5821952],[-81.6392628,24.5820108],[-81.6387462,24.581963],[-81.6372712,24.5833639]]],[[[-82.9246055,24.6288526],[-82.9263333,24.6287548],[-82.9236252,24.6312125],[-82.9233152,24.6314939],[-82.9204428,24.6339572],[-82.9201001,24.6344819],[-82.920049,24.6344887],[-82.9200394,24.6345748],[-82.917593,24.6364691],[-82.916478,24.6364417],[-82.9164735,24.635304],[-82.9222399,24.6303454],[-82.9230785,24.6296243],[-82.9246055,24.6288526]]],[[[-82.8663219,24.6288208],[-82.8661996,24.6287722],[-82.8660966,24.6287858],[-82.8654889,24.6286914],[-82.8647438,24.6285757],[-82.8642241,24.6285362],[-82.8634,24.6285584],[-82.8630713,24.6285672],[-82.8620339,24.6283136],[-82.8624047,24.62686],[-82.8626589,24.6257289],[-82.8627562,24.6254984],[-82.8633605,24.6240669],[-82.8640397,24.6242272],[-82.8636626,24.6258795],[-82.8636483,24.6259092],[-82.8636517,24.6259107],[-82.8636551,24.6259123],[-82.8636016,24.6261466],[-82.8638782,24.6272993],[-82.8651616,24.6277159],[-82.8667444,24.6276216],[-82.8670184,24.6275379],[-82.8671185,24.6275073],[-82.8683275,24.6271379],[-82.8700335,24.6278065],[-82.8700045,24.6282926],[-82.8686042,24.6285903],[-82.8663219,24.6288208]]],[[[-82.8723863,24.626833],[-82.8731621,24.6261554],[-82.8737001,24.6273702],[-82.8736842,24.627397],[-82.8738485,24.6278352],[-82.8738597,24.6278367],[-82.8738708,24.6278382],[-82.8741831,24.6288669],[-82.8736529,24.6295355],[-82.872408,24.6300657],[-82.8710479,24.6300888],[-82.8712969,24.6283719],[-82.8715327,24.6282489],[-82.8715177,24.6281926],[-82.8717582,24.6278083],[-82.8718547,24.6275529],[-82.8724612,24.6269464],[-82.8723863,24.626833]]],[[[-81.7428726,24.6312752],[-81.7452631,24.629923],[-81.7475864,24.6308054],[-81.748579,24.6333952],[-81.7489912,24.6347741],[-81.7493431,24.6359516],[-81.7479269,24.63526],[-81.7458141,24.6342282],[-81.7428726,24.6312752]]],[[[-82.1609017,24.5625519],[-82.1626111,24.5589777],[-82.1643911,24.5601331],[-82.1653471,24.5607537],[-82.1653408,24.5608414],[-82.1653367,24.5608979],[-82.1653367,24.5641766],[-82.1654896,24.5643213],[-82.1649324,24.564774],[-82.1641268,24.5654287],[-82.1612332,24.566828],[-82.1587859,24.5673322],[-82.1568285,24.5674962],[-82.1566222,24.5672669],[-82.1555007,24.5660208],[-82.1604184,24.563562],[-82.1604186,24.5635619],[-82.1604187,24.5635619],[-82.1609017,24.5625519]]],[[[-81.9189289,24.5805847],[-81.9170631,24.5796597],[-81.9165504,24.5786228],[-81.91656,24.5778985],[-81.9166462,24.5777972],[-81.9171471,24.5772082],[-81.9182425,24.5769141],[-81.9188975,24.5777625],[-81.9200553,24.578141],[-81.920067,24.5780749],[-81.9210157,24.5785625],[-81.9210489,24.5788059],[-81.9211396,24.5794715],[-81.9204721,24.5801815],[-81.9203561,24.5801769],[-81.9189289,24.5805847]]],[[[-81.7748455,24.5731698],[-81.7783008,24.573],[-81.780354,24.5752142],[-81.7811062,24.5774099],[-81.779563,24.5797207],[-81.777471,24.5818707],[-81.7754357,24.5835813],[-81.7728225,24.5840566],[-81.768913,24.5849717],[-81.76684,24.5844507],[-81.7679681,24.5808769],[-81.7748455,24.5731698]]],[[[-81.8622148,24.5608432],[-81.8624168,24.5607986],[-81.8627177,24.5608322],[-81.8636564,24.5609368],[-81.8635926,24.561575],[-81.8630714,24.5630215],[-81.8630684,24.5638655],[-81.8630363,24.5638798],[-81.8629522,24.5639173],[-81.862926,24.564079],[-81.8611468,24.5635096],[-81.8606629,24.5629695],[-81.8601464,24.5626909],[-81.8599443,24.5622451],[-81.8605418,24.5619439],[-81.860799,24.5619043],[-81.8610044,24.5618727],[-81.8615503,24.5609902],[-81.8615503,24.5609901],[-81.8615504,24.56099],[-81.8622148,24.5608432]]],[[[-81.8860014,24.5630758],[-81.8857397,24.562792],[-81.8849955,24.5619849],[-81.8824977,24.5614457],[-81.8825252,24.5611156],[-81.8825689,24.5605917],[-81.8829674,24.5599198],[-81.8834785,24.5590581],[-81.8843999,24.559012],[-81.8855562,24.5593873],[-81.8859201,24.559315],[-81.8871949,24.5590615],[-81.8870201,24.5586177],[-81.8879473,24.5572614],[-81.8901162,24.5582021],[-81.8922394,24.5595779],[-81.8936933,24.5616063],[-81.8928758,24.5626792],[-81.8905704,24.5627984],[-81.8881225,24.5629731],[-81.8881176,24.5629656],[-81.8881127,24.5629581],[-81.8864005,24.5630536],[-81.8860014,24.5630758]]],[[[-82.1247722,24.597344],[-82.1203179,24.5954252],[-82.1178839,24.5942567],[-82.1157639,24.5937987],[-82.1112442,24.5922064],[-82.1104319,24.5919202],[-82.1092342,24.5912543],[-82.1051126,24.5889627],[-82.1008969,24.5841702],[-82.1017076,24.5811655],[-82.1000929,24.5802783],[-82.1000496,24.5795164],[-82.0999674,24.5780687],[-82.0998264,24.5773914],[-82.0994772,24.5757139],[-82.0994479,24.5730945],[-82.0994389,24.5722882],[-82.1001736,24.5708127],[-82.1005193,24.5692388],[-82.1006909,24.5684577],[-82.1013174,24.5659572],[-82.1035109,24.5628832],[-82.1047848,24.5609613],[-82.1052696,24.56023],[-82.1075594,24.5586502],[-82.1094476,24.5595626],[-82.109468,24.5618454],[-82.1099609,24.5653887],[-82.1085811,24.5685195],[-82.1085339,24.57094],[-82.1085983,24.5732585],[-82.1087812,24.5740745],[-82.1090704,24.5753649],[-82.1077221,24.5773622],[-82.1091006,24.5804142],[-82.1081206,24.5825237],[-82.1075587,24.5861663],[-82.1085372,24.5860198],[-82.1108537,24.5856732],[-82.1134929,24.5847192],[-82.1150144,24.5841692],[-82.1157469,24.5862571],[-82.1168939,24.588706],[-82.1176922,24.5882844],[-82.1191972,24.5874895],[-82.1216939,24.5888762],[-82.1234441,24.5899767],[-82.1255647,24.5886729],[-82.1289936,24.5876365],[-82.1303053,24.5881205],[-82.1311506,24.5884323],[-82.1325583,24.5886802],[-82.133355,24.5888205],[-82.1323596,24.5907492],[-82.1321109,24.5912312],[-82.1292942,24.5920953],[-82.1313569,24.5946027],[-82.1339911,24.5944388],[-82.1368984,24.5930956],[-82.1398175,24.5923428],[-82.1419274,24.5904845],[-82.1422958,24.5897165],[-82.1429054,24.5884454],[-82.1443401,24.5877556],[-82.145005,24.5874359],[-82.1451499,24.5900785],[-82.1434816,24.592687],[-82.1418169,24.5943537],[-82.1393469,24.5943067],[-82.1376779,24.5961417],[-82.1347549,24.5970122],[-82.1311004,24.5963092],[-82.1298259,24.5977217],[-82.1289808,24.5976585],[-82.1247722,24.597344]]],[[[-82.1618531,24.5524964],[-82.1597175,24.5516421],[-82.1580765,24.5526004],[-82.1579059,24.5525217],[-82.1567452,24.5531008],[-82.154886,24.5500374],[-82.1583762,24.5472993],[-82.1584768,24.5472204],[-82.1585243,24.5471832],[-82.1585917,24.5471302],[-82.1589028,24.5474095],[-82.1644292,24.5498625],[-82.1657465,24.5504472],[-82.1661563,24.5570045],[-82.1655914,24.5573812],[-82.165589,24.5574147],[-82.1655843,24.5574786],[-82.1634924,24.558234],[-82.1624936,24.557326],[-82.162324,24.5558845],[-82.162058,24.5555701],[-82.1618531,24.5524964]]],[[[-82.1157811,24.5499887],[-82.1207326,24.5487709],[-82.1215599,24.5488911],[-82.1218527,24.5524049],[-82.1210826,24.5532916],[-82.1205221,24.5539369],[-82.1165967,24.5567779],[-82.1131646,24.5593599],[-82.1117376,24.5568928],[-82.1128649,24.5525207],[-82.1157811,24.5499887]]],[[[-81.7302262,24.6480483],[-81.7313715,24.6448098],[-81.7323078,24.6464642],[-81.7346278,24.6469659],[-81.7368487,24.6484634],[-81.7360122,24.6496213],[-81.735582,24.6502167],[-81.7338668,24.6511845],[-81.7334188,24.6503926],[-81.7324394,24.6486608],[-81.7302262,24.6480483]]],[[[-81.6914608,24.6699029],[-81.692623,24.6672719],[-81.6929858,24.6680542],[-81.6935059,24.6691755],[-81.694217,24.6692349],[-81.6953617,24.6693305],[-81.6976961,24.6714467],[-81.6983373,24.6766566],[-81.6968888,24.6793676],[-81.6932111,24.6813308],[-81.6898138,24.679771],[-81.689429,24.6765281],[-81.6905268,24.6750496],[-81.6919846,24.6729459],[-81.6914608,24.6699029]]],[[[-81.0285335,24.7318658],[-81.0285338,24.7318652],[-81.0285352,24.7318625],[-81.0292868,24.7303972],[-81.0292883,24.7303945],[-81.0292897,24.7303917],[-81.0299295,24.7291446],[-81.0314374,24.7274961],[-81.0338777,24.7272774],[-81.0365357,24.7265341],[-81.0403104,24.7253804],[-81.042988,24.7238446],[-81.0467776,24.7229793],[-81.0508789,24.7214478],[-81.0539339,24.7200543],[-81.0559679,24.7185983],[-81.05785,24.7171313],[-81.0610177,24.7157917],[-81.0632492,24.7154406],[-81.0652132,24.7158125],[-81.0677502,24.7139813],[-81.0698283,24.7123634],[-81.0736512,24.707328],[-81.0758982,24.7038642],[-81.0768812,24.7010726],[-81.0791586,24.6975963],[-81.0789454,24.6950804],[-81.0774489,24.6907924],[-81.0806123,24.6902972],[-81.0834332,24.6918956],[-81.0868422,24.6915933],[-81.0868427,24.6915956],[-81.0868432,24.6915978],[-81.0873427,24.6938107],[-81.0873435,24.6938101],[-81.0873443,24.6938095],[-81.0898362,24.6918716],[-81.0917312,24.6907126],[-81.0939532,24.689729],[-81.0967254,24.6910808],[-81.0979702,24.6899196],[-81.1004062,24.6899646],[-81.1041858,24.6892016],[-81.1079341,24.6888592],[-81.1110268,24.6912463],[-81.1110279,24.6912482],[-81.1110289,24.6912501],[-81.1122332,24.6934716],[-81.1136782,24.6961206],[-81.1152516,24.6991035],[-81.1128648,24.7012633],[-81.1089218,24.7013226],[-81.1048551,24.7010171],[-81.1048546,24.7010171],[-81.1048542,24.701017],[-81.1036996,24.6983869],[-81.1036989,24.6983853],[-81.1036982,24.6983836],[-81.1021219,24.6971564],[-81.1006498,24.6993338],[-81.0974458,24.6989322],[-81.0981697,24.7015336],[-81.0956392,24.7022396],[-81.0923722,24.7025668],[-81.0845162,24.7084926],[-81.0826335,24.7112053],[-81.0826359,24.711206],[-81.0826384,24.7112067],[-81.0855962,24.7120366],[-81.0870174,24.710569],[-81.0895054,24.7100216],[-81.0915008,24.7089203],[-81.0951047,24.7085903],[-81.0966842,24.7070694],[-81.1003113,24.7057827],[-81.1030987,24.706822],[-81.1043062,24.7051146],[-81.1073395,24.7061796],[-81.1081839,24.7037797],[-81.1109305,24.7038101],[-81.1142307,24.7064148],[-81.117812,24.7060252],[-81.1204105,24.7042042],[-81.1221178,24.7041876],[-81.1238527,24.7047196],[-81.123854,24.7047218],[-81.1238552,24.7047239],[-81.1249222,24.7065106],[-81.1248618,24.7071],[-81.1248616,24.7071023],[-81.1248613,24.7071046],[-81.1247262,24.7084243],[-81.1214312,24.7086776],[-81.1187692,24.7085646],[-81.1168357,24.7086624],[-81.1149346,24.7092429],[-81.1130945,24.7103578],[-81.1108844,24.7095934],[-81.1088136,24.7103948],[-81.1059714,24.711982],[-81.1026224,24.7113509],[-81.0998352,24.7119541],[-81.0970947,24.712879],[-81.0949548,24.7141443],[-81.0923572,24.714938],[-81.0905274,24.7165614],[-81.0865929,24.7168053],[-81.0835492,24.7174931],[-81.0816749,24.7182849],[-81.0796462,24.7198366],[-81.0782242,24.7211339],[-81.0772939,24.7236133],[-81.0745234,24.7218602],[-81.0745232,24.7218601],[-81.074523,24.72186],[-81.0732573,24.7197155],[-81.073256,24.7197133],[-81.0732547,24.7197111],[-81.0709715,24.7200032],[-81.0683963,24.7196289],[-81.0649906,24.7210843],[-81.0657947,24.7238152],[-81.0644022,24.7268116],[-81.0626837,24.7281111],[-81.0602702,24.7299316],[-81.0566202,24.731198],[-81.0533372,24.7308894],[-81.0496367,24.7324715],[-81.047047,24.7304692],[-81.0451595,24.7329328],[-81.0454122,24.7352536],[-81.0444936,24.7370579],[-81.0444936,24.7370579],[-81.0444936,24.737058],[-81.0424478,24.7337813],[-81.0424464,24.7337791],[-81.042445,24.733777],[-81.0403311,24.7342437],[-81.0386099,24.7354679],[-81.0365823,24.7341148],[-81.0333396,24.7347596],[-81.030403,24.7365879],[-81.0276044,24.7364017],[-81.0276019,24.7364016],[-81.0275994,24.7364014],[-81.0286447,24.7344532],[-81.0285337,24.7318712],[-81.0285335,24.7318665],[-81.0285335,24.7318658]]],[[[-81.589652,24.7116676],[-81.5915855,24.7108876],[-81.5932335,24.7111043],[-81.5933988,24.711126],[-81.592315,24.7138006],[-81.5905571,24.7166886],[-81.5893155,24.719894],[-81.588386,24.721555],[-81.5877932,24.7226143],[-81.584712,24.7228321],[-81.5827991,24.7233216],[-81.580745,24.7238063],[-81.578354,24.7238444],[-81.576094,24.7238161],[-81.5750305,24.7225136],[-81.5760584,24.7210397],[-81.577476,24.719007],[-81.5805897,24.7168866],[-81.5827644,24.7151255],[-81.5842957,24.7134736],[-81.5874344,24.712479],[-81.589652,24.7116676]]],[[[-81.5597714,24.7193792],[-81.5604417,24.7173685],[-81.5615114,24.7187456],[-81.5626441,24.7202036],[-81.5643189,24.7226123],[-81.5650178,24.7260279],[-81.56245,24.7266239],[-81.5613951,24.7238797],[-81.5595587,24.7200171],[-81.5597714,24.7193792]]],[[[-81.2431004,24.6734135],[-81.2450479,24.6692614],[-81.2481111,24.6708523],[-81.2482681,24.671311],[-81.2482689,24.6713135],[-81.2482698,24.6713159],[-81.2490231,24.673518],[-81.2477731,24.6745876],[-81.2458974,24.6756614],[-81.2435427,24.6737689],[-81.2435405,24.6737671],[-81.2435383,24.6737654],[-81.2431004,24.6734135]]],[[[-81.3102721,24.6482733],[-81.3139635,24.64788],[-81.3175387,24.6487424],[-81.3169643,24.6489032],[-81.316941,24.6489098],[-81.3133006,24.6499286],[-81.3111841,24.6513166],[-81.3087081,24.6522567],[-81.3061098,24.6531478],[-81.3034689,24.6529993],[-81.3034636,24.652999],[-81.3034584,24.6529987],[-81.3030801,24.6529774],[-81.3053525,24.651003],[-81.3083569,24.6495974],[-81.3102721,24.6482733]]],[[[-81.2786236,24.6542951],[-81.2815991,24.6541811],[-81.2796955,24.6564504],[-81.2784155,24.6590566],[-81.2782353,24.6595392],[-81.2782343,24.6595418],[-81.2782334,24.6595444],[-81.2778321,24.6606188],[-81.2738987,24.6623561],[-81.27014,24.6635971],[-81.2668775,24.664149],[-81.2659561,24.6664616],[-81.2647366,24.6680592],[-81.2641942,24.6704437],[-81.2617866,24.6723896],[-81.2594634,24.6748951],[-81.2562871,24.6750256],[-81.2534916,24.6739049],[-81.2517826,24.6722946],[-81.2507374,24.6703654],[-81.2507005,24.6701872],[-81.2507,24.6701846],[-81.2506994,24.670182],[-81.2500466,24.6670291],[-81.2535936,24.6648061],[-81.2560661,24.6643596],[-81.2591903,24.6630287],[-81.2647406,24.6606576],[-81.2678096,24.6605149],[-81.2704261,24.6602806],[-81.2724596,24.6594901],[-81.2745186,24.6577351],[-81.2786236,24.6542951]]],[[[-81.4031398,24.649975],[-81.4064802,24.6475207],[-81.4066446,24.6457142],[-81.4058203,24.6421564],[-81.4096411,24.6445927],[-81.4114234,24.6457327],[-81.4144726,24.6472202],[-81.4170826,24.6475536],[-81.4215641,24.6470266],[-81.4242831,24.6468698],[-81.424282,24.6468721],[-81.424281,24.6468745],[-81.4231071,24.6494697],[-81.4210361,24.6535416],[-81.4215123,24.65951],[-81.421607,24.6599164],[-81.4216075,24.6599185],[-81.421608,24.6599206],[-81.4223401,24.6630616],[-81.4219761,24.6653781],[-81.4197541,24.6673391],[-81.4179711,24.6686806],[-81.4169421,24.6704112],[-81.4145776,24.6705509],[-81.4106356,24.6686088],[-81.4080821,24.6667708],[-81.4046168,24.6632539],[-81.4042277,24.6626806],[-81.4042262,24.6626784],[-81.4042247,24.6626763],[-81.4033275,24.6613544],[-81.403326,24.6613523],[-81.4033246,24.6613501],[-81.4030199,24.658099],[-81.4040171,24.6527817],[-81.4031398,24.649975]]],[[[-81.609194,24.6611736],[-81.6082126,24.6576859],[-81.6108087,24.6593157],[-81.6112697,24.6594457],[-81.613729,24.6601397],[-81.615997,24.6617217],[-81.6178643,24.6631601],[-81.618527,24.6636706],[-81.6211219,24.6663329],[-81.6187942,24.667072],[-81.6182898,24.6672321],[-81.6169459,24.6670419],[-81.6156228,24.6668546],[-81.6133006,24.6660922],[-81.6131037,24.6660072],[-81.6109282,24.665068],[-81.609194,24.6611736]]],[[[-81.4496218,24.6750244],[-81.4496201,24.6750265],[-81.4496165,24.6750306],[-81.4469904,24.6781217],[-81.4469925,24.6781231],[-81.4469947,24.6781245],[-81.4487126,24.6792571],[-81.448712,24.679258],[-81.4487113,24.6792588],[-81.4472311,24.6812071],[-81.4450213,24.6841764],[-81.4437207,24.6868578],[-81.44372,24.6868593],[-81.4437192,24.6868608],[-81.4431261,24.6839146],[-81.4432256,24.6801981],[-81.4431626,24.6751051],[-81.4426481,24.6729946],[-81.4415936,24.6707811],[-81.4414181,24.6683376],[-81.44064,24.663019],[-81.4406398,24.6630176],[-81.4406396,24.6630161],[-81.4372769,24.6610195],[-81.4372755,24.6610187],[-81.4372741,24.6610179],[-81.4372636,24.6608452],[-81.4372635,24.6608431],[-81.4372633,24.660841],[-81.4371126,24.6583711],[-81.4357224,24.6539913],[-81.4361937,24.6507979],[-81.4404881,24.6462236],[-81.4417727,24.6449246],[-81.4438978,24.6428124],[-81.4455803,24.6444788],[-81.4455804,24.6444797],[-81.4455805,24.6444805],[-81.4459347,24.6472483],[-81.4439486,24.648095],[-81.4461963,24.651569],[-81.4456347,24.6542872],[-81.4458854,24.6569907],[-81.4458868,24.6569915],[-81.4458881,24.6569924],[-81.4504416,24.6599651],[-81.4525131,24.6600796],[-81.4552329,24.6607628],[-81.4592378,24.6609696],[-81.4629551,24.6610876],[-81.4629557,24.6610898],[-81.4629563,24.6610919],[-81.463321,24.6623557],[-81.4633216,24.6623578],[-81.4633223,24.66236],[-81.4636215,24.6633968],[-81.4606971,24.663549],[-81.4584131,24.6633356],[-81.4536184,24.6642568],[-81.4478729,24.6672004],[-81.4478784,24.6672005],[-81.4478838,24.6672007],[-81.4520412,24.6673161],[-81.4520386,24.6673182],[-81.452036,24.6673203],[-81.4500041,24.6689106],[-81.4483156,24.6701499],[-81.4452015,24.6702188],[-81.4462214,24.6730556],[-81.4472056,24.6755809],[-81.4472061,24.6755808],[-81.4472067,24.6755806],[-81.4496211,24.6750246],[-81.4496218,24.6750244]]],[[[-81.3996326,24.681531],[-81.3988428,24.6856996],[-81.3988444,24.6857015],[-81.3988459,24.6857033],[-81.4001546,24.6872938],[-81.4001545,24.6872941],[-81.4001545,24.6872945],[-81.3997727,24.6895174],[-81.3977078,24.6902124],[-81.3954221,24.6900802],[-81.3954213,24.6900802],[-81.3954206,24.6900801],[-81.3945236,24.6873541],[-81.3933506,24.6849391],[-81.3909695,24.6802869],[-81.3909686,24.680285],[-81.3909676,24.6802831],[-81.3891235,24.6791014],[-81.3891233,24.6791013],[-81.3891231,24.6791011],[-81.3873856,24.6762569],[-81.3870421,24.6723216],[-81.3867921,24.6695226],[-81.3862108,24.6665214],[-81.3862104,24.666519],[-81.3862099,24.6665166],[-81.3859721,24.6652888],[-81.3846421,24.6580097],[-81.3844287,24.6542031],[-81.3848658,24.6512083],[-81.3882556,24.6497664],[-81.3882566,24.6497688],[-81.3882576,24.6497711],[-81.3891961,24.6519976],[-81.3891972,24.6519991],[-81.3891984,24.6520005],[-81.3912744,24.6545983],[-81.3938011,24.6545456],[-81.3955077,24.6550619],[-81.3955076,24.6550636],[-81.3955075,24.6550653],[-81.3953171,24.6582771],[-81.3954891,24.6606713],[-81.3944511,24.6630796],[-81.3947919,24.6646931],[-81.3947924,24.6646954],[-81.3947929,24.6646978],[-81.3948042,24.6647516],[-81.3946001,24.6680796],[-81.3944231,24.6708403],[-81.3950751,24.6739296],[-81.3956181,24.6758183],[-81.3956194,24.67582],[-81.3956207,24.6758217],[-81.3972201,24.6778991],[-81.397222,24.677902],[-81.3972229,24.6779034],[-81.397223,24.6779035],[-81.3972498,24.6779439],[-81.3996326,24.681531]]],[[[-81.4496218,24.6750244],[-81.4520251,24.6704816],[-81.4537163,24.6704733],[-81.4545221,24.6677866],[-81.4557521,24.6666298],[-81.4579616,24.6670171],[-81.4616267,24.6672302],[-81.4646043,24.6705512],[-81.4620291,24.6706526],[-81.4593681,24.6714446],[-81.4570648,24.6708884],[-81.4550849,24.6723976],[-81.453557,24.6745377],[-81.4516741,24.6747031],[-81.4496218,24.6750244]]],[[[-81.5030093,24.6979591],[-81.4999631,24.6954446],[-81.4961941,24.6937086],[-81.4926656,24.6921386],[-81.4896517,24.690053],[-81.4867391,24.6889986],[-81.4840266,24.6874971],[-81.4814901,24.6851006],[-81.4795816,24.6828526],[-81.4782241,24.6807886],[-81.4776037,24.6781736],[-81.4771431,24.6762236],[-81.4763578,24.6733049],[-81.4754591,24.6703286],[-81.4742674,24.66796],[-81.4735649,24.6658804],[-81.4729558,24.6629491],[-81.4729554,24.662947],[-81.4729549,24.6629449],[-81.4728627,24.6625013],[-81.4725577,24.659289],[-81.4725934,24.6543302],[-81.4731507,24.6507288],[-81.4757094,24.6474559],[-81.4773571,24.6462136],[-81.4800682,24.6451156],[-81.4800691,24.6451179],[-81.4800701,24.6451203],[-81.4811922,24.6479557],[-81.4781747,24.6497347],[-81.4767036,24.6521227],[-81.4764839,24.6541873],[-81.4777757,24.6569719],[-81.4777765,24.6569726],[-81.4777773,24.6569734],[-81.4808776,24.6599361],[-81.4868517,24.6618676],[-81.4895141,24.6618377],[-81.4924119,24.6630738],[-81.4958671,24.6647278],[-81.4981611,24.6649544],[-81.5003782,24.6637975],[-81.5025894,24.6610623],[-81.5032911,24.6577526],[-81.5040671,24.6561591],[-81.5066185,24.6556861],[-81.5094667,24.6563323],[-81.5102249,24.6590364],[-81.51359,24.6624868],[-81.5138053,24.6629481],[-81.5138064,24.6629504],[-81.5138075,24.6629527],[-81.5153111,24.6661746],[-81.5177711,24.6681716],[-81.5210281,24.6705694],[-81.5205314,24.6739603],[-81.5208821,24.6758346],[-81.5213431,24.6795436],[-81.5194991,24.6828876],[-81.5187293,24.685434],[-81.5159877,24.6846725],[-81.5151671,24.6866946],[-81.51613,24.6898282],[-81.5154471,24.6924404],[-81.5137891,24.6957201],[-81.5162761,24.6951014],[-81.5160983,24.6978412],[-81.5132158,24.7000789],[-81.5136233,24.7028464],[-81.5109426,24.7025785],[-81.5087476,24.7010834],[-81.5058108,24.7008995],[-81.5030093,24.6979591]]],[[[-81.655349,24.6788761],[-81.6521983,24.6790879],[-81.6495063,24.6784504],[-81.647216,24.6758346],[-81.645321,24.6753182],[-81.6423409,24.6747402],[-81.6393718,24.6747144],[-81.6360456,24.6745378],[-81.6352798,24.6742752],[-81.6316031,24.6730142],[-81.6313257,24.671719],[-81.6311645,24.6709666],[-81.6301343,24.6675757],[-81.6327725,24.6679162],[-81.6356965,24.6681121],[-81.6382997,24.6673217],[-81.6388555,24.667678],[-81.64034,24.6686296],[-81.6441431,24.669505],[-81.6453475,24.6712234],[-81.648004,24.6723253],[-81.650882,24.6747116],[-81.6538184,24.676922],[-81.6549507,24.6783676],[-81.655349,24.6788761]]],[[[-81.655349,24.6788761],[-81.6585634,24.6779975],[-81.6612404,24.6796646],[-81.6611237,24.6823296],[-81.6625835,24.6839487],[-81.6606409,24.6857381],[-81.659983,24.6863442],[-81.6580854,24.6851126],[-81.6576994,24.6843035],[-81.65673,24.6822716],[-81.655349,24.6788761]]],[[[-81.671078,24.6925351],[-81.6715507,24.691527],[-81.6722221,24.6900953],[-81.6741426,24.6881484],[-81.6746117,24.6876728],[-81.675282,24.6857036],[-81.6768848,24.6852485],[-81.678294,24.6876735],[-81.6780359,24.6881928],[-81.6768928,24.690493],[-81.6750559,24.6915256],[-81.6743526,24.691921],[-81.671078,24.6925351]]],[[[-81.671078,24.6925351],[-81.671746,24.6942008],[-81.6722705,24.6948702],[-81.673373,24.6962776],[-81.6737235,24.6970188],[-81.6742394,24.6981097],[-81.673021,24.6993056],[-81.6705912,24.6991376],[-81.668276,24.6968046],[-81.6666229,24.695663],[-81.666017,24.6952446],[-81.6650554,24.6943771],[-81.6638294,24.6932712],[-81.6627121,24.6953315],[-81.6622782,24.6961315],[-81.6616478,24.6940747],[-81.6614384,24.6933914],[-81.6625073,24.6902788],[-81.663402,24.6876581],[-81.663968,24.6860003],[-81.6670436,24.686619],[-81.6692168,24.686726],[-81.6710596,24.6882849],[-81.6691343,24.6902256],[-81.6679343,24.6899978],[-81.6669817,24.689817],[-81.668382,24.6923057],[-81.671078,24.6925351]]],[[[-81.3389221,24.7054616],[-81.3355899,24.7032844],[-81.3328711,24.7039686],[-81.3308438,24.703871],[-81.3272641,24.7032746],[-81.3245021,24.7021046],[-81.3227941,24.7016006],[-81.3198791,24.701328],[-81.3182936,24.6997171],[-81.317362,24.6974521],[-81.3166335,24.69438],[-81.3147841,24.6917596],[-81.3144488,24.689252],[-81.3153486,24.6855086],[-81.3155491,24.6821826],[-81.3134187,24.6818664],[-81.3120471,24.6770546],[-81.3121617,24.6742536],[-81.3153457,24.6744992],[-81.3139989,24.6766424],[-81.3162997,24.6788854],[-81.3191115,24.6769908],[-81.3199676,24.6814941],[-81.3213611,24.6833176],[-81.3222214,24.6850496],[-81.3223911,24.6878366],[-81.3226364,24.6895576],[-81.3257934,24.6877506],[-81.3262321,24.6842346],[-81.3264786,24.6810153],[-81.3284286,24.6814931],[-81.3292455,24.6833926],[-81.3311906,24.6856681],[-81.3322831,24.6879966],[-81.3334728,24.6915216],[-81.3349798,24.693769],[-81.3367801,24.6957941],[-81.3391151,24.6971936],[-81.3415289,24.6981478],[-81.3422801,24.7003356],[-81.3424993,24.7042396],[-81.3410163,24.7060452],[-81.3389221,24.7054616]]],[[[-81.4531726,24.6833636],[-81.4515871,24.6817459],[-81.4497576,24.6850457],[-81.4478716,24.6831971],[-81.4494006,24.6814529],[-81.4511536,24.6782416],[-81.4546116,24.6766068],[-81.4577746,24.6761476],[-81.4595197,24.6768608],[-81.4617161,24.6762731],[-81.4642554,24.6745063],[-81.4672673,24.6747414],[-81.46523,24.6764178],[-81.4668166,24.6801635],[-81.4641067,24.682612],[-81.4632621,24.6851736],[-81.4632421,24.6897886],[-81.4622466,24.6927431],[-81.4592884,24.6936916],[-81.4566579,24.6924689],[-81.4556792,24.6882371],[-81.454129,24.6855422],[-81.4531726,24.6833636]]],[[[-81.4764513,24.7084196],[-81.4741903,24.7049446],[-81.4725126,24.7027374],[-81.4686611,24.6964171],[-81.4683182,24.6961602],[-81.4656435,24.6941561],[-81.4672335,24.6904261],[-81.470121,24.687948],[-81.4663285,24.686667],[-81.4691729,24.6855429],[-81.4702484,24.6859006],[-81.4713341,24.6862616],[-81.473849,24.6882659],[-81.4756034,24.6902106],[-81.4759926,24.6906419],[-81.4731627,24.6926288],[-81.4748136,24.6937271],[-81.4763546,24.6939215],[-81.4779427,24.6941219],[-81.4801091,24.6948725],[-81.4833024,24.697454],[-81.4817836,24.6984736],[-81.4802173,24.69929],[-81.4791746,24.7019813],[-81.4791984,24.7037539],[-81.4792143,24.7049436],[-81.4796217,24.7079799],[-81.4817574,24.7068238],[-81.483142,24.7093679],[-81.4815376,24.7125551],[-81.4800333,24.7140965],[-81.4776076,24.7119982],[-81.4764513,24.7084196]]],[[[-81.452895,24.7028682],[-81.4528949,24.6996223],[-81.4547117,24.7029603],[-81.4559492,24.704079],[-81.4565431,24.7046159],[-81.4567334,24.7066912],[-81.4567756,24.7071506],[-81.4563432,24.710927],[-81.4563171,24.7111551],[-81.4546031,24.7076096],[-81.4528951,24.7036186],[-81.452895,24.7028682]]],[[[-81.645679,24.6014862],[-81.6490157,24.5986552],[-81.6485369,24.5963149],[-81.6485369,24.5963145],[-81.6485368,24.5963141],[-81.6467411,24.5940233],[-81.6467396,24.5940213],[-81.646738,24.5940193],[-81.647864,24.5909399],[-81.649432,24.588489],[-81.6494321,24.5884889],[-81.6494322,24.5884888],[-81.6473558,24.5857037],[-81.6473546,24.5857021],[-81.6473534,24.5857005],[-81.6460567,24.5831857],[-81.6467695,24.5814967],[-81.6502657,24.5806377],[-81.6540015,24.5781302],[-81.656129,24.5768067],[-81.6579154,24.573968],[-81.660619,24.5730927],[-81.6641474,24.573093],[-81.666137,24.5720837],[-81.6691336,24.5697385],[-81.671556,24.5669467],[-81.674691,24.5643547],[-81.678922,24.5626268],[-81.6841101,24.5614497],[-81.6859524,24.5588037],[-81.6891138,24.5604703],[-81.6922881,24.5607881],[-81.695672,24.5600422],[-81.6989554,24.5598261],[-81.7024359,24.5594836],[-81.702908,24.5578857],[-81.7056948,24.5583164],[-81.7083973,24.5567881],[-81.710482,24.5565077],[-81.713817,24.556408],[-81.716701,24.5564377],[-81.7188013,24.5575622],[-81.7180891,24.5612007],[-81.716502,24.5631597],[-81.7149477,24.5659047],[-81.7122145,24.5679432],[-81.7104636,24.5704551],[-81.707647,24.5720622],[-81.706961,24.5736777],[-81.7087108,24.5749564],[-81.7086633,24.577849],[-81.7131608,24.5779864],[-81.7130364,24.5780593],[-81.7130296,24.5780633],[-81.7130228,24.5780673],[-81.7089106,24.5804778],[-81.7093237,24.5844847],[-81.712168,24.5848202],[-81.7139108,24.5864307],[-81.712269,24.5883587],[-81.7103013,24.5890826],[-81.7081319,24.5928143],[-81.7070352,24.5951297],[-81.7047945,24.5965837],[-81.7047338,24.5992318],[-81.704921,24.6016527],[-81.7045098,24.6035243],[-81.702688,24.6007117],[-81.7007723,24.5970273],[-81.698741,24.5938364],[-81.69708,24.5917672],[-81.6960383,24.5891335],[-81.6926823,24.5890783],[-81.6894836,24.5900077],[-81.6858343,24.5900427],[-81.684643,24.5945432],[-81.6807424,24.5961594],[-81.680475,24.5961602],[-81.6775806,24.5961685],[-81.6767398,24.5978428],[-81.675083,24.6003035],[-81.6754591,24.6032232],[-81.6724189,24.6033208],[-81.6673495,24.6022032],[-81.6635139,24.6018615],[-81.6610717,24.6012747],[-81.6571535,24.6011302],[-81.6535612,24.6015947],[-81.651092,24.6012623],[-81.645707,24.6039496],[-81.6438967,24.6031015],[-81.6438936,24.6031001],[-81.6438906,24.6030986],[-81.6435026,24.6029169],[-81.6434998,24.6029156],[-81.643497,24.6029143],[-81.645679,24.6014862]]],[[[-81.6127722,24.5987443],[-81.6155055,24.5960017],[-81.618101,24.5942462],[-81.621085,24.5909067],[-81.6222464,24.588498],[-81.6238084,24.5853237],[-81.624066,24.5828767],[-81.6244847,24.5812381],[-81.6270474,24.5840117],[-81.6254506,24.5870211],[-81.6265348,24.5892099],[-81.630511,24.5896707],[-81.6339977,24.5904862],[-81.6310428,24.5916377],[-81.628001,24.5919632],[-81.6248795,24.5916752],[-81.6221317,24.5930933],[-81.6210875,24.5949447],[-81.6183034,24.5973467],[-81.6159964,24.5999553],[-81.6145965,24.6022253],[-81.6127722,24.5987443]]],[[[-81.6040818,24.5961971],[-81.6076564,24.596425],[-81.609648,24.5972197],[-81.6127722,24.5987443],[-81.6071657,24.5997119],[-81.605382,24.5979937],[-81.6024068,24.5982635],[-81.6040818,24.5961971]]],[[[-81.6328292,24.6074527],[-81.6377214,24.6058747],[-81.6375323,24.6060081],[-81.6375097,24.606024],[-81.6329863,24.6092152],[-81.6304424,24.6112101],[-81.6257771,24.6114371],[-81.625931,24.6113223],[-81.6259507,24.6113076],[-81.6289668,24.6090579],[-81.6328292,24.6074527]]],[[[-81.3938193,24.625779],[-81.3917143,24.6254242],[-81.3894472,24.6255783],[-81.3904371,24.6223697],[-81.3913401,24.6221152],[-81.3950931,24.6210577],[-81.3967885,24.6231229],[-81.3938193,24.625779]]],[[[-81.5736663,24.6410821],[-81.5736951,24.6409948],[-81.5736964,24.6409909],[-81.5736977,24.640987],[-81.5749018,24.6373327],[-81.576538,24.633324],[-81.5783943,24.6355624],[-81.5831465,24.6350287],[-81.5831462,24.6350289],[-81.5831459,24.6350291],[-81.5831055,24.6350608],[-81.5774377,24.6395103],[-81.5736663,24.6410821]]],[[[-81.4680521,24.6103862],[-81.4698959,24.6086433],[-81.4724728,24.6108237],[-81.4737231,24.6118817],[-81.4754176,24.6141982],[-81.4748591,24.6141578],[-81.4717791,24.6139352],[-81.4694576,24.6128117],[-81.4685214,24.6111961],[-81.4680521,24.6103862]]],[[[-81.6617642,24.6102555],[-81.6622263,24.6101725],[-81.6613912,24.6144039],[-81.65708,24.6143074],[-81.6571708,24.61393],[-81.6576106,24.6121011],[-81.6599592,24.6105799],[-81.6617642,24.6102555]]],[[[-81.6089736,24.6084837],[-81.610681,24.6073577],[-81.6128552,24.6075178],[-81.6119973,24.6105461],[-81.610593,24.6136025],[-81.611953,24.6166818],[-81.6115948,24.6181055],[-81.6115941,24.6181081],[-81.6115935,24.6181107],[-81.611413,24.6188277],[-81.606313,24.6209566],[-81.6063065,24.6209594],[-81.6063,24.6209621],[-81.6052208,24.6179412],[-81.6082858,24.6163375],[-81.6056744,24.6141557],[-81.6073645,24.6121992],[-81.606312,24.6103167],[-81.6089736,24.6084837]]],[[[-81.576658,24.6152567],[-81.5775964,24.6131695],[-81.57969,24.615684],[-81.584377,24.6167287],[-81.582593,24.6180667],[-81.5801214,24.618667],[-81.577411,24.6171377],[-81.576658,24.6152567]]],[[[-81.5947928,24.6409392],[-81.5944095,24.6403946],[-81.5933657,24.6389113],[-81.5934508,24.6381205],[-81.5937048,24.6357607],[-81.5935432,24.6333641],[-81.5934665,24.6322279],[-81.5929193,24.6295176],[-81.5927291,24.6291357],[-81.592728,24.6291333],[-81.5927268,24.629131],[-81.591665,24.6269987],[-81.5906202,24.6246187],[-81.590658,24.6218543],[-81.591614,24.6200717],[-81.5932359,24.6176455],[-81.5936158,24.6207887],[-81.5940888,24.6244469],[-81.5946991,24.6272635],[-81.5983035,24.6258241],[-81.6005007,24.6244888],[-81.600109,24.6218597],[-81.6011963,24.6185724],[-81.6031577,24.6228186],[-81.6031589,24.6228211],[-81.6031601,24.6228237],[-81.6033327,24.6231974],[-81.6044137,24.6259155],[-81.6048763,24.6269688],[-81.605164,24.6276239],[-81.6053868,24.6281312],[-81.6080904,24.6275364],[-81.6090439,24.6249607],[-81.6112223,24.6235532],[-81.612769,24.6220667],[-81.6147765,24.6211437],[-81.6185495,24.6197101],[-81.6210365,24.6196157],[-81.6228628,24.618898],[-81.6231814,24.6187729],[-81.6238178,24.6189696],[-81.6253312,24.6194377],[-81.6231642,24.6215716],[-81.6220877,24.6226317],[-81.6214261,24.6232114],[-81.620725,24.6238257],[-81.6193588,24.6274035],[-81.6222805,24.6264282],[-81.6233774,24.628389],[-81.6237817,24.6294955],[-81.6241965,24.6306309],[-81.6244759,24.6322845],[-81.6245784,24.6328911],[-81.6219244,24.633527],[-81.6189967,24.634002],[-81.6168557,24.6355707],[-81.6150071,24.6355487],[-81.6142456,24.6352137],[-81.612,24.6342258],[-81.6093218,24.6330899],[-81.6091296,24.631472],[-81.6090268,24.6306064],[-81.6072015,24.6328556],[-81.6039265,24.6347492],[-81.5997673,24.6349652],[-81.597609,24.6366947],[-81.5957886,24.6384259],[-81.5950879,24.6401945],[-81.5947928,24.6409392]]],[[[-81.7942015,24.5763402],[-81.794252,24.5743097],[-81.794126,24.5694237],[-81.795367,24.5671739],[-81.7953677,24.5671726],[-81.7953684,24.5671714],[-81.792496,24.5659367],[-81.7904393,24.565654],[-81.785599,24.5650647],[-81.7833182,24.5632536],[-81.7802555,24.5626177],[-81.7769127,24.5643897],[-81.7748022,24.5659045],[-81.773584,24.5677457],[-81.7715648,24.569197],[-81.7685223,24.5693383],[-81.7617437,24.572383],[-81.757793,24.5726262],[-81.7557915,24.5734631],[-81.7537165,24.5722582],[-81.7508192,24.5727537],[-81.7509885,24.5760968],[-81.75099,24.5760983],[-81.7509914,24.5760998],[-81.7525831,24.5777451],[-81.7525829,24.5777456],[-81.7525828,24.577746],[-81.7516525,24.5802092],[-81.749816,24.5779275],[-81.7493578,24.5811468],[-81.7465157,24.5826654],[-81.745413,24.5843774],[-81.7423649,24.583663],[-81.7436131,24.5861905],[-81.739931,24.5896837],[-81.7379474,24.5878597],[-81.7357976,24.5863735],[-81.7357972,24.5863732],[-81.7357967,24.5863729],[-81.7348185,24.5846638],[-81.7348174,24.5846619],[-81.7348163,24.58466],[-81.731326,24.5822981],[-81.7290995,24.5802176],[-81.729098,24.5802162],[-81.7290965,24.5802148],[-81.729049,24.5780087],[-81.7305779,24.576366],[-81.7305799,24.5763639],[-81.7305819,24.5763617],[-81.7284306,24.5763452],[-81.7270404,24.5781304],[-81.7223173,24.5765674],[-81.7223123,24.5765657],[-81.7223072,24.576564],[-81.7217887,24.5763924],[-81.7217844,24.576391],[-81.72178,24.5763895],[-81.725411,24.5754747],[-81.72806,24.5746802],[-81.7312332,24.5739929],[-81.7339284,24.573558],[-81.7325608,24.571291],[-81.731255,24.5690542],[-81.731254,24.5690524],[-81.731253,24.5690507],[-81.7287905,24.5669296],[-81.7258819,24.5650477],[-81.7258807,24.5650469],[-81.7258795,24.5650461],[-81.7252404,24.5621548],[-81.7268633,24.5607294],[-81.728171,24.5624757],[-81.7310104,24.5617255],[-81.73101,24.5617281],[-81.7310097,24.5617308],[-81.7307094,24.5639769],[-81.7309614,24.5666111],[-81.7309627,24.5666112],[-81.730964,24.5666112],[-81.7335086,24.5667063],[-81.7334068,24.5572256],[-81.7363378,24.5583348],[-81.7363389,24.5583368],[-81.73634,24.5583389],[-81.7382788,24.5618985],[-81.7382789,24.5618982],[-81.7382791,24.561898],[-81.7397591,24.5594221],[-81.741582,24.5587592],[-81.7442465,24.5595188],[-81.7442445,24.55952],[-81.7442425,24.5595211],[-81.7406726,24.5615701],[-81.7408814,24.5641026],[-81.7408827,24.5641025],[-81.7408841,24.5641025],[-81.746325,24.5640293],[-81.746325,24.5640315],[-81.746325,24.5640337],[-81.7462977,24.5671352],[-81.7462992,24.5671368],[-81.7463007,24.5671383],[-81.7487989,24.5696721],[-81.7502552,24.5663702],[-81.7512988,24.5643553],[-81.7512995,24.5643539],[-81.7513002,24.5643526],[-81.7490199,24.5634798],[-81.7490187,24.5634794],[-81.7490175,24.5634789],[-81.7483706,24.5598131],[-81.748052,24.5580337],[-81.7480103,24.5556997],[-81.749415,24.5537282],[-81.752196,24.5520947],[-81.754854,24.5514067],[-81.7585834,24.5517166],[-81.7659147,24.5519303],[-81.770305,24.5510259],[-81.774141,24.5500137],[-81.7776145,24.5498197],[-81.784363,24.547263],[-81.786154,24.5465757],[-81.788634,24.5464514],[-81.7921937,24.5464444],[-81.794915,24.5461682],[-81.7978973,24.5460487],[-81.799897,24.5457517],[-81.802668,24.5452587],[-81.8053865,24.5445153],[-81.8110005,24.5448689],[-81.8110019,24.5448711],[-81.8110033,24.5448732],[-81.812628,24.5473353],[-81.8114142,24.5506154],[-81.8083822,24.5517334],[-81.808148,24.5545597],[-81.8090856,24.5570641],[-81.8074711,24.5586043],[-81.8071048,24.56132],[-81.803615,24.5616305],[-81.8013205,24.5615262],[-81.7995919,24.5641294],[-81.8000896,24.5666657],[-81.7976796,24.5675993],[-81.7983657,24.569501],[-81.7983671,24.5695029],[-81.7983685,24.5695049],[-81.7998364,24.5714924],[-81.7998363,24.5714925],[-81.7998363,24.5714925],[-81.7969042,24.5740752],[-81.797023,24.5761457],[-81.7970244,24.5761457],[-81.7970257,24.5761457],[-81.7995627,24.5761344],[-81.7995624,24.5761366],[-81.799562,24.5761388],[-81.799117,24.5788067],[-81.7978125,24.5841732],[-81.7982072,24.5866794],[-81.7970091,24.5893655],[-81.7966294,24.593071],[-81.7945284,24.5907713],[-81.7945269,24.5907698],[-81.7945255,24.5907682],[-81.794151,24.5870133],[-81.794075,24.5828197],[-81.794401,24.5791047],[-81.7942015,24.5763402]]],[[[-81.7223571,24.6365532],[-81.7250275,24.6364712],[-81.7268694,24.6371225],[-81.7293648,24.6396955],[-81.7305634,24.6433818],[-81.727276,24.6427401],[-81.7248872,24.6422663],[-81.723949,24.6405667],[-81.7223571,24.6365532]]],[[[-81.6040818,24.5961971],[-81.6007974,24.596116],[-81.5972483,24.6000794],[-81.5997845,24.6012869],[-81.5971317,24.6031069],[-81.599363,24.604187],[-81.601408,24.6036902],[-81.6029458,24.6049594],[-81.604194,24.6075437],[-81.603601,24.6095051],[-81.6016855,24.6086457],[-81.5988813,24.6081817],[-81.5954837,24.6069343],[-81.5912434,24.6089653],[-81.590282,24.6115387],[-81.589158,24.6141885],[-81.588125,24.6118147],[-81.586254,24.6069282],[-81.5848925,24.6046377],[-81.5830182,24.6026829],[-81.582515,24.6021582],[-81.5811298,24.6033135],[-81.5794254,24.604735],[-81.5772652,24.607468],[-81.5751152,24.6067303],[-81.5730386,24.60625],[-81.5701331,24.6072287],[-81.5694007,24.60807],[-81.5689098,24.6086339],[-81.566821,24.6070907],[-81.5661289,24.6073538],[-81.5651201,24.6077373],[-81.5673355,24.6104402],[-81.5681329,24.61229],[-81.567549,24.6152122],[-81.5676871,24.6183777],[-81.5639421,24.6204714],[-81.5618839,24.6215234],[-81.5632206,24.6225302],[-81.5637687,24.6245567],[-81.56563,24.6243652],[-81.5680167,24.6240151],[-81.570379,24.6271215],[-81.569035,24.6308101],[-81.564073,24.6282177],[-81.5605223,24.6265176],[-81.5579236,24.6242553],[-81.5560691,24.6235282],[-81.553379,24.6261079],[-81.5517961,24.6290937],[-81.55167,24.6324642],[-81.5536771,24.6341823],[-81.5559683,24.6356269],[-81.5593742,24.6378145],[-81.5614284,24.6399273],[-81.5652782,24.6420783],[-81.568153,24.6409027],[-81.5676692,24.6386702],[-81.5702335,24.6404771],[-81.5735717,24.6410654],[-81.5735756,24.6410661],[-81.5735795,24.6410668],[-81.5736663,24.6410821],[-81.5741902,24.6439643],[-81.5711935,24.6450012],[-81.5735194,24.6472072],[-81.578393,24.6478987],[-81.582572,24.6491596],[-81.5842454,24.6507653],[-81.5812587,24.6514656],[-81.578544,24.6517297],[-81.5750348,24.6497157],[-81.5758884,24.6528997],[-81.5771989,24.6547694],[-81.5772137,24.657377],[-81.5757138,24.6607563],[-81.5766005,24.6638866],[-81.578157,24.6666282],[-81.579626,24.6683826],[-81.5796417,24.6710411],[-81.577065,24.6694617],[-81.5742264,24.666944],[-81.571461,24.6692554],[-81.5699425,24.6728971],[-81.5688065,24.6705746],[-81.5670716,24.6688375],[-81.5631053,24.670905],[-81.566522,24.6736826],[-81.566596,24.6757805],[-81.5639867,24.6773728],[-81.5655435,24.6799575],[-81.5660061,24.6830346],[-81.566757,24.686048],[-81.563619,24.6884106],[-81.5616663,24.6889943],[-81.5603965,24.6878836],[-81.5584765,24.6884451],[-81.5547778,24.6873959],[-81.5541978,24.6900156],[-81.550781,24.6889036],[-81.549338,24.6869996],[-81.5463991,24.6845216],[-81.5433994,24.6816883],[-81.5430157,24.6789371],[-81.5401371,24.6774363],[-81.5377396,24.6754362],[-81.5359258,24.6751811],[-81.5339996,24.6737451],[-81.5323051,24.6722356],[-81.5302473,24.6711451],[-81.5279631,24.6705486],[-81.5264571,24.6690456],[-81.5250016,24.6667049],[-81.5227561,24.6646627],[-81.5214608,24.6629886],[-81.5190915,24.6611455],[-81.5190891,24.6611436],[-81.5190867,24.6611417],[-81.5187293,24.6608637],[-81.5164691,24.6583767],[-81.5154471,24.6559149],[-81.5146924,24.6536666],[-81.5148567,24.6514937],[-81.5139431,24.6507026],[-81.5124876,24.6494424],[-81.5109062,24.6476685],[-81.5103456,24.6470396],[-81.5096943,24.6458018],[-81.5085041,24.6435394],[-81.5083262,24.6386719],[-81.5082951,24.6378187],[-81.5089605,24.633094],[-81.5091511,24.6309763],[-81.5094833,24.6299287],[-81.5100306,24.6282029],[-81.5106243,24.626291],[-81.5108476,24.6255719],[-81.5133818,24.6248593],[-81.5136637,24.62478],[-81.5138703,24.6246161],[-81.5162571,24.6227223],[-81.5186171,24.6200817],[-81.5193388,24.6183037],[-81.5212017,24.6197037],[-81.5212331,24.6197064],[-81.5240559,24.6199509],[-81.5252796,24.6185347],[-81.5274334,24.6182827],[-81.5309339,24.6174882],[-81.5342222,24.6171395],[-81.5364514,24.616671],[-81.5403093,24.6154495],[-81.544728,24.6150047],[-81.5472247,24.61447],[-81.5485297,24.6122801],[-81.552745,24.6117707],[-81.556132,24.6103947],[-81.5584743,24.6088352],[-81.5626495,24.6061792],[-81.5631885,24.6035688],[-81.564371,24.6035758],[-81.565353,24.6035817],[-81.568464,24.6038567],[-81.5711415,24.6034075],[-81.574436,24.6007832],[-81.577058,24.5998427],[-81.5787047,24.5989937],[-81.57924,24.5987177],[-81.5801828,24.5980563],[-81.581398,24.5972037],[-81.583743,24.5962282],[-81.5855245,24.5953452],[-81.588146,24.5945877],[-81.590353,24.5934627],[-81.5908355,24.5933979],[-81.5931755,24.5930837],[-81.5964487,24.591091],[-81.599258,24.5883107],[-81.601515,24.5874037],[-81.6033585,24.5863252],[-81.607862,24.5861407],[-81.610219,24.5857727],[-81.6126316,24.5854927],[-81.6141785,24.5869872],[-81.6130956,24.5886083],[-81.6125358,24.5882768],[-81.6115083,24.5876683],[-81.6111519,24.5876894],[-81.609041,24.5878144],[-81.6089767,24.5897091],[-81.6062143,24.5920134],[-81.604118,24.5936275],[-81.6017538,24.5935759],[-81.6019397,24.5937852],[-81.6040818,24.5961971]]],[[[-81.5947928,24.6409392],[-81.597617,24.6421147],[-81.600797,24.6440633],[-81.6022703,24.6460452],[-81.6043825,24.6463677],[-81.6067904,24.6471803],[-81.609265,24.6483162],[-81.6114536,24.6487081],[-81.6104585,24.651822],[-81.6085255,24.6513217],[-81.605626,24.6501867],[-81.6021822,24.6499765],[-81.6021844,24.6500082],[-81.6022653,24.6511754],[-81.6023463,24.6523447],[-81.6015412,24.6535615],[-81.601041,24.6543174],[-81.5982567,24.65415],[-81.594282,24.6532407],[-81.5924865,24.6523241],[-81.5892169,24.6512709],[-81.5884675,24.6493547],[-81.5881935,24.6486542],[-81.5864332,24.6451589],[-81.5902033,24.6442924],[-81.5937267,24.6435182],[-81.5941588,24.6424729],[-81.5947928,24.6409392]]],[[[-81.4841881,24.7893798],[-81.4852794,24.7875759],[-81.4856271,24.7863466],[-81.4858981,24.7853886],[-81.4868371,24.783113],[-81.4878398,24.783535],[-81.4890261,24.7840341],[-81.4893997,24.786397],[-81.4895134,24.7878468],[-81.4896055,24.7890208],[-81.4916617,24.7884379],[-81.4918791,24.7859836],[-81.4912241,24.7835861],[-81.4925086,24.7822668],[-81.4944741,24.7835736],[-81.4946893,24.7849341],[-81.4947681,24.7854316],[-81.4960349,24.7876649],[-81.5001145,24.7871994],[-81.5003805,24.7887484],[-81.5004893,24.7893821],[-81.5000656,24.7895689],[-81.4974921,24.7907031],[-81.4959314,24.7927755],[-81.4954501,24.7934146],[-81.4914739,24.7947622],[-81.4895451,24.7936686],[-81.4888507,24.7911916],[-81.4885696,24.7911663],[-81.4863127,24.7909632],[-81.4839653,24.7897481],[-81.4841881,24.7893798]]],[[[-80.8915228,24.7912359],[-80.8887284,24.7907225],[-80.8843016,24.7909986],[-80.8844167,24.7908893],[-80.8844212,24.790885],[-80.8844258,24.7908807],[-80.8875106,24.7879528],[-80.8897169,24.7873142],[-80.8952379,24.7865091],[-80.8932661,24.7877787],[-80.893257,24.7877845],[-80.8932479,24.7877904],[-80.8910282,24.7892196],[-80.8915228,24.7912359]]],[[[-80.8043946,24.8175263],[-80.8018808,24.8165394],[-80.7971798,24.8189101],[-80.7959806,24.8204529],[-80.7939243,24.8225911],[-80.7927745,24.8249308],[-80.7895803,24.8256229],[-80.7881669,24.8232776],[-80.7894893,24.8198496],[-80.7912358,24.8169931],[-80.7944913,24.8127846],[-80.7964273,24.8118441],[-80.8016292,24.8124179],[-80.8045283,24.8124346],[-80.8057522,24.8124416],[-80.8085996,24.812635],[-80.8126633,24.8129111],[-80.8171803,24.8125845],[-80.8172623,24.8125786],[-80.8213213,24.8127276],[-80.8250533,24.8116606],[-80.8309843,24.8089086],[-80.8335143,24.8076156],[-80.8383853,24.8062576],[-80.8410623,24.8055116],[-80.8430728,24.8042951],[-80.847103,24.8028633],[-80.8497869,24.8034068],[-80.8497918,24.8034078],[-80.8497966,24.8034088],[-80.8504244,24.8035359],[-80.8488585,24.8052156],[-80.8464249,24.8071549],[-80.8438273,24.8078966],[-80.8420599,24.80757],[-80.8402333,24.8078056],[-80.8364128,24.8089076],[-80.8333658,24.8101406],[-80.8305073,24.8138166],[-80.8291003,24.8153996],[-80.8256828,24.8183706],[-80.8232529,24.8208219],[-80.8201538,24.8233836],[-80.8168761,24.8249506],[-80.8144893,24.827816],[-80.8127238,24.8297761],[-80.8106859,24.8311456],[-80.8081635,24.8338043],[-80.8039658,24.8350651],[-80.8012593,24.8376206],[-80.8000614,24.838132],[-80.7984814,24.8391368],[-80.7952469,24.8401234],[-80.7947379,24.8426687],[-80.7919502,24.8436943],[-80.7892232,24.8434322],[-80.7863386,24.8415657],[-80.7866941,24.841064],[-80.7866956,24.8410618],[-80.7866972,24.8410596],[-80.7871771,24.8403822],[-80.7940754,24.8382573],[-80.7947372,24.8377846],[-80.7962241,24.8367226],[-80.7973876,24.8366339],[-80.8007548,24.8342108],[-80.8026593,24.8323536],[-80.8051343,24.8306437],[-80.8059643,24.8284076],[-80.808694,24.827923],[-80.809613,24.8265916],[-80.809628,24.8265699],[-80.8100696,24.8259302],[-80.8107029,24.8250126],[-80.8076878,24.8227469],[-80.8074605,24.8201721],[-80.8085831,24.8175723],[-80.8043946,24.8175263]]],[[[-80.7124758,24.8630206],[-80.7148643,24.8620106],[-80.7174033,24.8608176],[-80.7250332,24.8580673],[-80.7276019,24.8579013],[-80.7292043,24.856402],[-80.7308856,24.8526253],[-80.7358613,24.848613],[-80.740714,24.8482026],[-80.7424773,24.8469101],[-80.7449581,24.8465301],[-80.7449552,24.8465329],[-80.7449524,24.8465358],[-80.7436183,24.8478638],[-80.7436108,24.8478713],[-80.7436032,24.8478788],[-80.7420293,24.8494456],[-80.7407069,24.8513991],[-80.7411876,24.8538556],[-80.740629,24.8565383],[-80.7375927,24.8596928],[-80.7349789,24.8621973],[-80.7327923,24.8644611],[-80.7306053,24.8653336],[-80.7285474,24.8654473],[-80.7255933,24.8661064],[-80.7216863,24.8622964],[-80.7175543,24.8633176],[-80.7156969,24.8654715],[-80.7131237,24.8668444],[-80.709797,24.8699787],[-80.7056883,24.8724726],[-80.704576,24.8744168],[-80.7051998,24.8767156],[-80.7041628,24.8797843],[-80.7008623,24.8823596],[-80.699027,24.8831856],[-80.6954645,24.8846073],[-80.6914752,24.8852738],[-80.6914748,24.8852739],[-80.6914743,24.885274],[-80.6904853,24.8827531],[-80.6904844,24.8827507],[-80.6904834,24.8827483],[-80.6903667,24.8824508],[-80.6954808,24.8780476],[-80.697886,24.8754232],[-80.6986483,24.8737126],[-80.7004583,24.8720376],[-80.7028558,24.8695132],[-80.7063038,24.8671391],[-80.7099743,24.8648566],[-80.7124758,24.8630206]]],[[[-80.9144533,24.7924123],[-80.9151258,24.7918383],[-80.9161405,24.7918431],[-80.9167526,24.7928396],[-80.9169024,24.7929419],[-80.9170572,24.7930476],[-80.9170284,24.7930794],[-80.9169015,24.7932196],[-80.9171384,24.7932394],[-80.9168985,24.7938752],[-80.9164506,24.7944116],[-80.9153708,24.7946227],[-80.9142179,24.7940079],[-80.9142766,24.7938787],[-80.9143919,24.7936251],[-80.9144088,24.7930492],[-80.9144269,24.7924348],[-80.9144533,24.7924123]]],[[[-81.4729433,24.7929753],[-81.4764488,24.7926965],[-81.4761664,24.7941548],[-81.4759075,24.795492],[-81.4757851,24.7971062],[-81.4756861,24.7984123],[-81.4744691,24.7997296],[-81.4726474,24.8006209],[-81.4702651,24.8023993],[-81.4673081,24.8036316],[-81.4670496,24.8035855],[-81.4655321,24.8033151],[-81.4657062,24.7994303],[-81.4683247,24.7983994],[-81.4695435,24.7970487],[-81.4703596,24.7961444],[-81.4717088,24.7959907],[-81.4738564,24.7957461],[-81.4732773,24.7939888],[-81.4729433,24.7929753]]],[[[-80.9133162,24.7790846],[-80.9108562,24.7782591],[-80.9085437,24.7772049],[-80.9071012,24.7733036],[-80.9065682,24.7695066],[-80.9121909,24.765395],[-80.9161097,24.7657576],[-80.9190724,24.7658679],[-80.9227448,24.7676593],[-80.9215026,24.7690309],[-80.9177836,24.7700706],[-80.9164852,24.7715846],[-80.9156267,24.7745245],[-80.915281,24.778478],[-80.9167829,24.7784117],[-80.9172921,24.7788673],[-80.9166045,24.7794578],[-80.9165993,24.7794623],[-80.916594,24.7794668],[-80.9153458,24.7805387],[-80.913793,24.7811009],[-80.9128258,24.781318],[-80.9126655,24.7808692],[-80.9126646,24.7808668],[-80.9126638,24.7808644],[-80.9123472,24.7799782],[-80.9133162,24.7790846]]],[[[-80.6628164,24.9199931],[-80.6672137,24.9181085],[-80.6700755,24.9197654],[-80.6711921,24.9204118],[-80.6672137,24.9281594],[-80.6617695,24.9273218],[-80.6607225,24.9237622],[-80.6628164,24.9199931]]],[[[-80.7824828,24.9373153],[-80.78295,24.936977],[-80.784007,24.9372102],[-80.7875437,24.9379904],[-80.7882133,24.9391808],[-80.787125,24.9406421],[-80.7842575,24.9414454],[-80.7824828,24.9373153]]],[[[-80.6973433,24.8972476],[-80.7001978,24.8970861],[-80.7042193,24.8991138],[-80.7044851,24.9008623],[-80.7046243,24.9017776],[-80.7026003,24.9055511],[-80.7021834,24.9061108],[-80.7022538,24.9064629],[-80.70234,24.9068936],[-80.6974289,24.908858],[-80.6962749,24.9049105],[-80.6955106,24.9047419],[-80.6954517,24.9046048],[-80.6953986,24.9044812],[-80.6941413,24.9025692],[-80.6934703,24.9002871],[-80.6939941,24.8990665],[-80.6942333,24.8985093],[-80.6973433,24.8972476]]],[[[-81.0285335,24.7318658],[-81.024263,24.7335745],[-81.0197692,24.7337106],[-81.0165402,24.7348916],[-81.013161,24.7365251],[-81.0104821,24.7395352],[-81.0074332,24.7392816],[-81.0053312,24.739969],[-81.0021365,24.7413671],[-80.9994494,24.7420038],[-80.9973482,24.7422606],[-80.9952326,24.7433115],[-80.9937919,24.7459863],[-80.9918165,24.7435939],[-80.9905976,24.745737],[-80.9895074,24.7500794],[-80.986514,24.7530256],[-80.9873062,24.7551644],[-80.9866881,24.7572946],[-80.9866881,24.7572947],[-80.986688,24.7572948],[-80.9850827,24.7545921],[-80.9845922,24.7524926],[-80.9837622,24.7505871],[-80.9833345,24.748737],[-80.9833344,24.7487363],[-80.9833342,24.7487356],[-80.9823671,24.7475674],[-80.9809445,24.7503098],[-80.9790798,24.7520375],[-80.9769299,24.7558376],[-80.9748044,24.7537425],[-80.9748031,24.7537412],[-80.9748017,24.7537399],[-80.9747039,24.7513714],[-80.9747038,24.7513688],[-80.9747037,24.7513662],[-80.9702612,24.7527146],[-80.9702628,24.7527167],[-80.9702645,24.7527189],[-80.9720075,24.7549893],[-80.9735592,24.7574023],[-80.9735592,24.7574023],[-80.9707272,24.7588896],[-80.967984,24.7589114],[-80.9655782,24.7620636],[-80.9633666,24.7630698],[-80.9596992,24.7647413],[-80.9572242,24.7668936],[-80.9554792,24.7683506],[-80.9533267,24.7693469],[-80.9533246,24.7693479],[-80.9533225,24.7693489],[-80.9544695,24.764423],[-80.9544701,24.7644202],[-80.9544708,24.7644174],[-80.9511067,24.7653801],[-80.94908,24.7661124],[-80.9466102,24.7682936],[-80.9441318,24.7708933],[-80.9417188,24.7728043],[-80.9403792,24.7737656],[-80.9382731,24.7737844],[-80.9368242,24.7754171],[-80.9322653,24.7747648],[-80.932263,24.7747644],[-80.9322606,24.7747641],[-80.9328685,24.7735885],[-80.9328703,24.7735851],[-80.932872,24.7735817],[-80.9337299,24.7719226],[-80.9366232,24.7698481],[-80.9387699,24.7671373],[-80.9427662,24.7653263],[-80.9452842,24.7640791],[-80.9476925,24.7624704],[-80.9508552,24.7605516],[-80.9541864,24.7585648],[-80.9564572,24.7572706],[-80.9586012,24.7552756],[-80.9611032,24.7535766],[-80.9649777,24.7508304],[-80.9676207,24.7477986],[-80.969276,24.7483605],[-80.9705961,24.7500554],[-80.9733835,24.7473873],[-80.9751691,24.7434635],[-80.977322,24.7419837],[-80.9794935,24.7426744],[-80.982553,24.7401298],[-80.9864587,24.7407176],[-80.98646,24.7407198],[-80.9864613,24.740722],[-80.987728,24.7428296],[-80.987728,24.7428296],[-80.987728,24.7428295],[-80.9900209,24.7397416],[-80.9924073,24.7404953],[-80.9947212,24.7372276],[-80.9946301,24.7351999],[-80.99463,24.7351984],[-80.99463,24.7351969],[-80.9919936,24.7337768],[-80.9919911,24.7337755],[-80.9919886,24.7337742],[-80.9944802,24.7318476],[-80.9964452,24.7317049],[-80.9991633,24.7316751],[-81.0022745,24.730292],[-81.0048974,24.7292919],[-81.0068732,24.7267101],[-81.0089449,24.7246483],[-81.0105917,24.7234076],[-81.012009,24.7246894],[-81.0154611,24.7257044],[-81.0154622,24.7257047],[-81.0154632,24.725705],[-81.0122827,24.7224584],[-81.0122809,24.7224565],[-81.0122791,24.7224546],[-81.0159302,24.7198766],[-81.0177695,24.7196021],[-81.0206265,24.7185243],[-81.0237744,24.7170169],[-81.0260512,24.7185486],[-81.0285545,24.720614],[-81.0285547,24.7206152],[-81.028555,24.7206164],[-81.0289641,24.7229775],[-81.0278213,24.7260607],[-81.0251438,24.7270937],[-81.0251455,24.7270958],[-81.0251472,24.7270979],[-81.0262169,24.7284443],[-81.028157,24.7291991],[-81.0281572,24.7292009],[-81.0281575,24.7292026],[-81.0283529,24.7305871],[-81.0283533,24.7305896],[-81.0283536,24.730592],[-81.0285335,24.7318658]]],[[[-81.3148351,24.7381896],[-81.3126001,24.7379376],[-81.3104758,24.7379835],[-81.3067476,24.7344386],[-81.3036456,24.7310901],[-81.3032821,24.7291626],[-81.3032405,24.7260616],[-81.3031946,24.7223736],[-81.3030691,24.7201821],[-81.3025671,24.7174066],[-81.3003915,24.7155726],[-81.3024934,24.7141266],[-81.3048901,24.7159386],[-81.3056431,24.7190126],[-81.3063961,24.7212606],[-81.3076771,24.7236461],[-81.3101636,24.7263411],[-81.3129511,24.7281646],[-81.3155131,24.7289446],[-81.3185021,24.7294726],[-81.3208126,24.7290476],[-81.3229731,24.7286916],[-81.3246758,24.7299663],[-81.3228929,24.7323365],[-81.3248241,24.7331576],[-81.3249331,24.7353906],[-81.3245603,24.7372323],[-81.3231431,24.7393988],[-81.3255074,24.7418751],[-81.3277976,24.7443371],[-81.3285706,24.7471644],[-81.3293601,24.7497095],[-81.3269191,24.7478016],[-81.3254741,24.7458056],[-81.3227337,24.744379],[-81.3186371,24.7405066],[-81.3165681,24.7387176],[-81.3148351,24.7381896]]],[[[-81.4906026,24.7398996],[-81.4925007,24.7386094],[-81.4952116,24.7401101],[-81.4974567,24.7426636],[-81.4973004,24.7430962],[-81.496465,24.7454087],[-81.4950955,24.748486],[-81.494514,24.7497926],[-81.4947651,24.7524906],[-81.4940917,24.7543522],[-81.493384,24.7563088],[-81.4924115,24.754772],[-81.4911721,24.7528131],[-81.4912221,24.7505587],[-81.4903291,24.7468046],[-81.4895741,24.7430506],[-81.4906026,24.7398996]]],[[[-81.3322171,24.7376146],[-81.3328195,24.7340448],[-81.3365121,24.7359396],[-81.3388106,24.7372754],[-81.3409831,24.7373156],[-81.3422884,24.7385589],[-81.3399791,24.7390931],[-81.3361174,24.7402727],[-81.335287,24.7439033],[-81.3320421,24.7418704],[-81.3321171,24.7394156],[-81.3322171,24.7376146]]],[[[-81.4201691,24.7526616],[-81.4175148,24.751904],[-81.4180306,24.7497034],[-81.4163651,24.7475131],[-81.4141171,24.7463546],[-81.4121331,24.7455436],[-81.4108516,24.7481012],[-81.4071851,24.7458946],[-81.4059341,24.7444354],[-81.4044466,24.7464966],[-81.4042278,24.742323],[-81.4033931,24.7388966],[-81.4042231,24.7358916],[-81.4043371,24.7335521],[-81.4070739,24.7309162],[-81.4097824,24.7341956],[-81.4127816,24.7347521],[-81.4155381,24.7356531],[-81.4176351,24.7363986],[-81.4212821,24.7377896],[-81.4213018,24.7400773],[-81.4237131,24.7434113],[-81.4284778,24.7457516],[-81.4299168,24.7485158],[-81.4326811,24.7492341],[-81.4320745,24.7509333],[-81.4322526,24.7527881],[-81.4303431,24.7531436],[-81.4288111,24.7520311],[-81.4264498,24.752754],[-81.425877,24.75466],[-81.4229918,24.7531816],[-81.4201691,24.7526616]]],[[[-81.3996326,24.681531],[-81.4004081,24.6775901],[-81.4005971,24.6745736],[-81.4007866,24.6719811],[-81.3993058,24.6699936],[-81.3995953,24.6673354],[-81.3978895,24.6648814],[-81.3979451,24.664028],[-81.3979452,24.6640255],[-81.3979454,24.664023],[-81.398075,24.6620315],[-81.4001441,24.6635558],[-81.4001467,24.6635577],[-81.4001493,24.6635597],[-81.4007172,24.663978],[-81.402903,24.6672015],[-81.4047721,24.6715344],[-81.4064096,24.6731066],[-81.4080341,24.6757803],[-81.4102746,24.6784866],[-81.4113568,24.6760163],[-81.4136104,24.6764646],[-81.4154596,24.6775931],[-81.4172665,24.6798588],[-81.4191189,24.6822847],[-81.4190071,24.6863913],[-81.4172781,24.6880081],[-81.4168268,24.6852379],[-81.4163631,24.6826746],[-81.4151701,24.6798251],[-81.4141031,24.683175],[-81.4111729,24.6815759],[-81.4121861,24.684746],[-81.4131648,24.6880113],[-81.4142011,24.6903946],[-81.4147791,24.6926521],[-81.4136571,24.6960703],[-81.4151551,24.6979171],[-81.4159258,24.694717],[-81.4193033,24.6907281],[-81.4233415,24.6898876],[-81.4260381,24.6885342],[-81.4265211,24.6908776],[-81.4255533,24.6941846],[-81.4290651,24.6971036],[-81.4302278,24.6991426],[-81.4317771,24.7032406],[-81.4339291,24.7060464],[-81.4345137,24.7086053],[-81.4368506,24.7109831],[-81.4388607,24.713397],[-81.4416471,24.7159606],[-81.4449991,24.7177961],[-81.4483521,24.7196991],[-81.4512151,24.7214766],[-81.4540281,24.7225431],[-81.4538021,24.7242406],[-81.4518946,24.7285996],[-81.4495587,24.7310313],[-81.4495612,24.7338721],[-81.4524044,24.7332563],[-81.4519809,24.7360046],[-81.4495429,24.7375616],[-81.4513334,24.7415171],[-81.4553976,24.7406019],[-81.4542821,24.7433266],[-81.4512479,24.7466688],[-81.4483166,24.7430176],[-81.4442851,24.7382346],[-81.4402747,24.735299],[-81.4399401,24.7327986],[-81.4396636,24.7307911],[-81.4402036,24.7289101],[-81.4391657,24.7266841],[-81.4358961,24.7226126],[-81.4345023,24.7203996],[-81.4334091,24.7167526],[-81.4315511,24.7151356],[-81.4297301,24.7129786],[-81.4284371,24.7096296],[-81.4277091,24.7081846],[-81.4257001,24.7043033],[-81.4237671,24.7021966],[-81.4225284,24.700384],[-81.4205199,24.6989998],[-81.4191632,24.7014564],[-81.4197925,24.7046163],[-81.4178411,24.7034116],[-81.4136479,24.7010202],[-81.4089531,24.6992121],[-81.4048858,24.6927503],[-81.4048413,24.6904172],[-81.4040086,24.6877536],[-81.4021641,24.6842546],[-81.3996326,24.681531]]],[[[-81.3750571,24.7183388],[-81.3724903,24.7162686],[-81.3694955,24.7176134],[-81.3673226,24.7157561],[-81.3688078,24.7142843],[-81.3699126,24.7118144],[-81.3714438,24.7100456],[-81.3714445,24.7100448],[-81.3714452,24.710044],[-81.369478,24.7088185],[-81.3694758,24.7088172],[-81.3694737,24.7088158],[-81.3713388,24.7066135],[-81.3713391,24.7066131],[-81.3713395,24.7066126],[-81.3694356,24.7047477],[-81.3694353,24.7047475],[-81.3694351,24.7047473],[-81.36774,24.702026],[-81.3677387,24.7020238],[-81.3677373,24.7020216],[-81.3643388,24.7015616],[-81.3643378,24.7015615],[-81.3643367,24.7015613],[-81.3633707,24.6965815],[-81.3633704,24.6965799],[-81.3633701,24.6965783],[-81.3594294,24.6945575],[-81.3579831,24.6974806],[-81.3569704,24.700176],[-81.3541574,24.7010269],[-81.3541596,24.7010288],[-81.3541619,24.7010307],[-81.3563387,24.7028674],[-81.3579878,24.7036916],[-81.3579875,24.7036929],[-81.3579872,24.7036943],[-81.3574231,24.7062046],[-81.3561896,24.7084915],[-81.3540211,24.7066761],[-81.3507134,24.704052],[-81.3484096,24.7021027],[-81.3484083,24.7021017],[-81.3484071,24.7021006],[-81.3477703,24.6987016],[-81.3466981,24.6951961],[-81.3476443,24.693266],[-81.3495851,24.6937621],[-81.3519646,24.6954241],[-81.3543988,24.6970373],[-81.3558436,24.6948151],[-81.3560588,24.6898791],[-81.3543795,24.6862747],[-81.3543788,24.6862732],[-81.3543781,24.6862716],[-81.3515106,24.6837023],[-81.3481496,24.6802281],[-81.3443608,24.6769828],[-81.3415299,24.6749744],[-81.3392358,24.6716855],[-81.3392344,24.6716835],[-81.339233,24.6716815],[-81.3385341,24.6690881],[-81.3379781,24.6669816],[-81.3367827,24.6636518],[-81.3370259,24.6611609],[-81.3351699,24.656302],[-81.3326155,24.6509795],[-81.3326148,24.6509781],[-81.3326141,24.6509766],[-81.3295677,24.6479709],[-81.3295668,24.64797],[-81.329566,24.6479691],[-81.3295234,24.647871],[-81.3295224,24.6478688],[-81.3295215,24.6478666],[-81.3283209,24.6451],[-81.3305504,24.6415999],[-81.3329701,24.6395847],[-81.3350111,24.6400047],[-81.3376589,24.6401821],[-81.3406289,24.6398892],[-81.3406265,24.6398917],[-81.340624,24.6398943],[-81.3386001,24.6419777],[-81.3362134,24.6433431],[-81.3362157,24.6433448],[-81.336218,24.6433465],[-81.3386514,24.6451374],[-81.3414041,24.6460146],[-81.3438471,24.6445687],[-81.3453778,24.645761],[-81.345377,24.6457615],[-81.3453763,24.6457619],[-81.3446799,24.6462003],[-81.3417141,24.6480671],[-81.3375653,24.6500569],[-81.3387689,24.6537138],[-81.3387697,24.6537139],[-81.3387704,24.653714],[-81.3424601,24.6540816],[-81.3424584,24.6540835],[-81.3424566,24.6540854],[-81.3402351,24.656471],[-81.3389974,24.659183],[-81.339011,24.6592201],[-81.3398221,24.6614421],[-81.3410526,24.6633921],[-81.3410527,24.6633921],[-81.3410527,24.6633921],[-81.3459653,24.662323],[-81.3501503,24.662603],[-81.3523868,24.6625523],[-81.352968,24.6598218],[-81.3551596,24.6590181],[-81.3570148,24.6607403],[-81.3612841,24.6582481],[-81.3648101,24.6568356],[-81.3667241,24.6561757],[-81.3721871,24.6520387],[-81.3743937,24.6516297],[-81.3743917,24.6516326],[-81.3743897,24.6516354],[-81.3729916,24.6536097],[-81.3718043,24.6553898],[-81.3707091,24.6578886],[-81.3702209,24.6606788],[-81.3696071,24.6630281],[-81.3706581,24.6649634],[-81.3706631,24.6675686],[-81.3716356,24.6695433],[-81.3716368,24.6695456],[-81.3716379,24.6695478],[-81.3718185,24.6699146],[-81.3733918,24.6728386],[-81.3742699,24.674839],[-81.3752201,24.676867],[-81.3760931,24.6790616],[-81.3777059,24.6816196],[-81.3784428,24.6839033],[-81.3787591,24.687788],[-81.3787604,24.6877885],[-81.3787617,24.6877891],[-81.3813085,24.6889058],[-81.3833518,24.6899844],[-81.3833524,24.6899861],[-81.3833529,24.6899878],[-81.3843721,24.6930806],[-81.3843732,24.6930818],[-81.3843743,24.693083],[-81.3859661,24.6947676],[-81.3877101,24.6967296],[-81.3897027,24.6985853],[-81.3924439,24.7021632],[-81.3940601,24.7037736],[-81.3941851,24.7054256],[-81.3932556,24.7083501],[-81.3936436,24.7116196],[-81.3958276,24.7153436],[-81.3969441,24.7174476],[-81.3979486,24.7197761],[-81.3998068,24.7213205],[-81.4015118,24.7249333],[-81.4012613,24.7278916],[-81.4018641,24.7302021],[-81.4010341,24.7326796],[-81.3997281,24.7343306],[-81.3979691,24.7369456],[-81.3969131,24.7392454],[-81.3962558,24.7425398],[-81.3953917,24.7452015],[-81.3916121,24.7419906],[-81.3898128,24.7378076],[-81.3903498,24.7343133],[-81.3896561,24.7311281],[-81.3881501,24.7293956],[-81.3853256,24.7265846],[-81.3838111,24.7242576],[-81.3814717,24.7238481],[-81.3804818,24.7220253],[-81.3775471,24.7200103],[-81.3750571,24.7183388]]],[[[-81.5695832,24.7524933],[-81.570218,24.7523876],[-81.5719366,24.7530206],[-81.5718236,24.7553119],[-81.5717755,24.7562871],[-81.5668524,24.7573506],[-81.5668525,24.7561011],[-81.5668525,24.7554296],[-81.5677154,24.7528042],[-81.5695832,24.7524933]]],[[[-81.4456164,24.753679],[-81.4460602,24.7508327],[-81.4480742,24.7519041],[-81.4485931,24.7521801],[-81.4520221,24.7537284],[-81.4528932,24.7558156],[-81.4527956,24.7594864],[-81.4530685,24.760123],[-81.4536561,24.7614931],[-81.4570094,24.7642854],[-81.4589586,24.7659316],[-81.4541268,24.767068],[-81.4554221,24.7700631],[-81.4528236,24.7682348],[-81.4525021,24.7680086],[-81.4521794,24.7670667],[-81.4516591,24.7655481],[-81.4516211,24.7635586],[-81.4494521,24.7590086],[-81.4475511,24.7560796],[-81.4456164,24.753679]]],[[[-81.3733891,24.7422356],[-81.3727414,24.7395078],[-81.3752939,24.7397949],[-81.3783683,24.7411721],[-81.3815891,24.7425996],[-81.3836481,24.7440986],[-81.3860086,24.7457856],[-81.3884451,24.7474956],[-81.3918245,24.7509556],[-81.3945461,24.7534246],[-81.3938296,24.7556439],[-81.390966,24.7590819],[-81.3883151,24.7572541],[-81.3861306,24.7552571],[-81.3835931,24.7528136],[-81.3810068,24.750873],[-81.3791751,24.7492136],[-81.3765006,24.7469986],[-81.3747404,24.744524],[-81.3733891,24.7422356]]],[[[-81.3007686,24.7486161],[-81.299431,24.7451383],[-81.3020501,24.7457376],[-81.3054786,24.7480886],[-81.3083301,24.7485016],[-81.3104651,24.7492936],[-81.3121898,24.750164],[-81.3141625,24.751553],[-81.3124401,24.7539843],[-81.3108863,24.7564512],[-81.3074431,24.7572551],[-81.3054651,24.7566076],[-81.3037405,24.7527533],[-81.3022758,24.750479],[-81.3007686,24.7486161]]],[[[-81.3186798,24.759964],[-81.3179217,24.7567336],[-81.3206141,24.7578226],[-81.3226824,24.758901],[-81.3247341,24.7602541],[-81.3273175,24.7619546],[-81.3270124,24.7645439],[-81.3243371,24.7667656],[-81.3221091,24.7648886],[-81.3208151,24.7632366],[-81.3186798,24.759964]]],[[[-81.2849636,24.7688504],[-81.2877521,24.7686716],[-81.2902521,24.7693951],[-81.2938515,24.7734994],[-81.2949992,24.7765846],[-81.2938007,24.7785052],[-81.2935875,24.7807616],[-81.2913811,24.7793281],[-81.2885923,24.7765378],[-81.2867586,24.7747856],[-81.2854955,24.7715622],[-81.2849636,24.7688504]]],[[[-81.4043331,24.7636565],[-81.407654,24.7634917],[-81.409516,24.7638896],[-81.4107471,24.7641526],[-81.4118766,24.7655545],[-81.4136487,24.7677539],[-81.4141755,24.7691724],[-81.4142881,24.7694757],[-81.4153308,24.7714393],[-81.4165116,24.7738801],[-81.4174529,24.7766014],[-81.415862,24.7754865],[-81.4123361,24.7730156],[-81.4103925,24.7715915],[-81.4066957,24.7688826],[-81.4053286,24.7677722],[-81.4042204,24.766872],[-81.4041322,24.7636665],[-81.4043331,24.7636565]]],[[[-81.3670111,24.7724156],[-81.3692303,24.7707487],[-81.3717181,24.7717931],[-81.3733628,24.7744538],[-81.3745407,24.7765681],[-81.3721714,24.7792331],[-81.3705651,24.7775406],[-81.3689311,24.7753731],[-81.3670111,24.7724156]]],[[[-80.9207098,25.0986037],[-80.9214116,25.0978465],[-80.9214185,25.0978481],[-80.9214254,25.0978497],[-80.9214869,25.0977747],[-80.9215526,25.0976944],[-80.922472,25.0976579],[-80.9233729,25.0982229],[-80.923324,25.0982879],[-80.9233313,25.0982895],[-80.9233385,25.0982912],[-80.9233647,25.0982973],[-80.9233011,25.0990251],[-80.9229619,25.0991036],[-80.9219408,25.0996772],[-80.9217166,25.0991257],[-80.9207098,25.0986037]]],[[[-80.9412751,25.1064358],[-80.9418887,25.106337],[-80.9433249,25.1075059],[-80.9438664,25.1079465],[-80.9414562,25.1090972],[-80.9388149,25.1097435],[-80.9356552,25.1108897],[-80.9331487,25.1093502],[-80.9344945,25.1083215],[-80.9353507,25.107667],[-80.9361124,25.1074833],[-80.9388129,25.106832],[-80.9412751,25.1064358]]],[[[-80.6985766,25.0964645],[-80.7015835,25.0962928],[-80.7011327,25.0992935],[-80.6989112,25.1020739],[-80.6974726,25.0996725],[-80.6985766,25.0964645]]],[[[-80.8372384,25.0979707],[-80.8373436,25.0979597],[-80.8380781,25.0985958],[-80.8381916,25.0994064],[-80.8380703,25.1000699],[-80.837916,25.1009139],[-80.8377825,25.1010605],[-80.8372636,25.1016308],[-80.8372616,25.1016324],[-80.8372596,25.1016341],[-80.8370211,25.1018326],[-80.8366125,25.1014793],[-80.8366612,25.1011287],[-80.8367183,25.1007177],[-80.8364503,25.0987268],[-80.8368992,25.0980064],[-80.8372384,25.0979707]]],[[[-80.6700021,25.1009903],[-80.6697888,25.099576],[-80.6696813,25.0988628],[-80.6689551,25.0969085],[-80.6718791,25.0981652],[-80.6742908,25.098526],[-80.6765158,25.1001937],[-80.6789089,25.1000753],[-80.6764948,25.1034055],[-80.6730833,25.1031676],[-80.6700021,25.1009903]]],[[[-80.4887804,25.102634],[-80.4915246,25.0999435],[-80.4946084,25.1005788],[-80.4948884,25.1006365],[-80.4960334,25.1016883],[-80.4966631,25.1022667],[-80.4936691,25.1029859],[-80.4895931,25.1047328],[-80.4878078,25.1077556],[-80.4874251,25.1084035],[-80.4870814,25.1057315],[-80.4887804,25.102634]]],[[[-80.9094576,25.1064627],[-80.9086735,25.1026413],[-80.9119599,25.1033067],[-80.9135142,25.106307],[-80.9143169,25.1080222],[-80.9130438,25.1084996],[-80.9115146,25.109073],[-80.9115142,25.1090723],[-80.9115138,25.1090716],[-80.9111647,25.108503],[-80.9094576,25.1064627]]],[[[-80.8501268,25.108004],[-80.8512761,25.1076635],[-80.8526051,25.1094616],[-80.8523914,25.1097773],[-80.8518158,25.1106277],[-80.850557,25.1107818],[-80.8503715,25.1108045],[-80.8495397,25.1096658],[-80.849368,25.109159],[-80.8493081,25.1089825],[-80.8496506,25.1081451],[-80.8501268,25.108004]]],[[[-80.6233673,24.9612254],[-80.623304,24.9603048],[-80.6303561,24.9574145],[-80.6353154,24.9571252],[-80.6346511,24.9592155],[-80.631846,24.9595675],[-80.6304033,24.9601877],[-80.6300243,24.9603601],[-80.6283515,24.9611211],[-80.6283513,24.9611209],[-80.6283511,24.9611206],[-80.6242775,24.9644933],[-80.6235132,24.9633468],[-80.6233673,24.9612254]]],[[[-80.657824,24.8993334],[-80.6604451,24.8986207],[-80.6604454,24.8986232],[-80.6604457,24.8986257],[-80.6608373,24.9017756],[-80.6606983,24.9043029],[-80.6588363,24.9054806],[-80.6565983,24.9060766],[-80.6521713,24.9075666],[-80.6498179,24.9087448],[-80.6482718,24.9101576],[-80.6478438,24.9120632],[-80.6433663,24.9130226],[-80.6413033,24.9143066],[-80.6392268,24.9160951],[-80.636982,24.9185893],[-80.6348289,24.9212046],[-80.6326803,24.9229202],[-80.6305196,24.9247646],[-80.6281743,24.9265941],[-80.6264953,24.9287286],[-80.624426,24.9297079],[-80.6224656,24.9321246],[-80.6219726,24.9327413],[-80.6221683,24.9348948],[-80.6238661,24.9403117],[-80.6232243,24.9465481],[-80.6215215,24.9521155],[-80.6190629,24.9517546],[-80.6190621,24.9517545],[-80.6190613,24.9517544],[-80.6178028,24.9467809],[-80.6178027,24.9467802],[-80.6178025,24.9467795],[-80.6140852,24.9418501],[-80.6140844,24.9418489],[-80.6140835,24.9418478],[-80.6126203,24.9385109],[-80.6126196,24.9385092],[-80.6126188,24.9385075],[-80.6122579,24.9382057],[-80.6122563,24.9382044],[-80.6122547,24.938203],[-80.6123813,24.9378071],[-80.6123827,24.9378025],[-80.6123842,24.9377979],[-80.6129937,24.9358921],[-80.6148083,24.9345151],[-80.6189243,24.9304166],[-80.6197613,24.9286866],[-80.6214257,24.9274556],[-80.6234538,24.9260061],[-80.6253313,24.9238929],[-80.6284083,24.9201799],[-80.6310153,24.9176188],[-80.6348417,24.9137006],[-80.6383863,24.9107276],[-80.6407283,24.9090906],[-80.6435161,24.9074876],[-80.6468086,24.9053743],[-80.6500976,24.9030811],[-80.6523993,24.9018546],[-80.654722,24.8998362],[-80.6569099,24.8994816],[-80.6569158,24.8994806],[-80.6569217,24.8994797],[-80.657824,24.8993334]]],[[[-80.6497,24.9833289],[-80.6505271,24.9829614],[-80.6508345,24.9880342],[-80.6504642,24.9881268],[-80.6493001,24.9897274],[-80.6456986,24.9867808],[-80.6493001,24.9835067],[-80.6497,24.9833289]]],[[[-80.8294171,24.9935958],[-80.8284338,24.992304],[-80.8284311,24.9923399],[-80.8277646,24.9918219],[-80.8267262,24.9896486],[-80.8289769,24.9866098],[-80.8300828,24.9876443],[-80.830614,24.9902281],[-80.8312459,24.9908426],[-80.8331304,24.9926754],[-80.8330217,24.9928274],[-80.8329534,24.9929231],[-80.8322561,24.9938986],[-80.8306865,24.9947921],[-80.8297369,24.9940159],[-80.8294171,24.9935958]]],[[[-80.6677121,24.9899867],[-80.6674375,24.9859597],[-80.6701296,24.9861667],[-80.6707735,24.9883743],[-80.671284,24.9901247],[-80.6687879,24.9907488],[-80.6677121,24.9899867]]],[[[-80.4994125,24.9982832],[-80.5024482,24.9948559],[-80.5049639,24.9945711],[-80.5062235,24.9956207],[-80.5063202,24.9955664],[-80.5042738,24.9974081],[-80.5033684,24.998223],[-80.4993465,24.9987169],[-80.4993938,24.9984066],[-80.4994125,24.9982832]]],[[[-80.7360628,25.0083896],[-80.7360628,25.0069945],[-80.7359334,25.0070452],[-80.7356959,25.0021776],[-80.7376577,25.002862],[-80.7387907,25.0047072],[-80.7390935,25.0052005],[-80.7385083,25.0056966],[-80.7393369,25.0083896],[-80.7383547,25.010354],[-80.7373725,25.0139555],[-80.7365985,25.0106663],[-80.7360628,25.0083896]]],[[[-80.619219,25.0025298],[-80.6197117,25.0023498],[-80.6189647,25.0036455],[-80.617651,25.0059242],[-80.6146682,25.0075149],[-80.6131283,25.0054325],[-80.6139777,25.0042691],[-80.614647,25.0033524],[-80.6174318,25.003183],[-80.619219,25.0025298]]],[[[-80.6239388,24.9983782],[-80.6240282,24.9979086],[-80.6246203,24.998068],[-80.6268802,24.9986764],[-80.6270272,25.0008319],[-80.6270786,25.0015858],[-80.6260543,25.0024963],[-80.6232137,25.0021175],[-80.6231046,25.0003181],[-80.6230249,24.9990043],[-80.623893,24.9986185],[-80.6239388,24.9983782]]],[[[-80.5580408,25.005674],[-80.5565324,25.0013163],[-80.5595893,25.0013163],[-80.5595924,25.0013163],[-80.5595955,25.0013163],[-80.559908,25.0013163],[-80.55998,25.0015862],[-80.5613294,25.0013163],[-80.56204,25.0045143],[-80.56204,25.0066521],[-80.5623779,25.0067218],[-80.5618624,25.008956],[-80.5615324,25.0086889],[-80.5581314,25.0059356],[-80.558057,25.0057208],[-80.5580408,25.005674]]],[[[-80.6608752,24.9880221],[-80.6618383,24.9878545],[-80.665043,24.9889329],[-80.6647637,24.9901296],[-80.6645303,24.99113],[-80.6633223,24.9929466],[-80.6611823,24.9955155],[-80.6591256,24.9952844],[-80.6584273,24.9952059],[-80.6559194,24.9935033],[-80.6567246,24.9920449],[-80.657943,24.9898381],[-80.6599926,24.9881755],[-80.6608752,24.9880221]]],[[[-80.7288383,24.9942276],[-80.731449,24.9940668],[-80.7308236,24.9950617],[-80.7296067,24.9969977],[-80.7296431,24.9982234],[-80.7297327,25.001242],[-80.7260459,25.001753],[-80.7258102,25.0017857],[-80.7259722,25.0003511],[-80.7261338,24.99892],[-80.7265733,24.9958893],[-80.7288383,24.9942276]]],[[[-80.6473981,25.0328248],[-80.6483112,25.0324334],[-80.6497448,25.0349988],[-80.6476307,25.0369955],[-80.6458297,25.036705],[-80.6454274,25.0366401],[-80.6450315,25.035403],[-80.6445914,25.0340277],[-80.6473981,25.0328248]]],[[[-81.013959,25.0346612],[-81.0143095,25.0345185],[-81.0146896,25.0347948],[-81.0165657,25.0361583],[-81.019119,25.0399829],[-81.018969,25.0414562],[-81.0189296,25.0414988],[-81.0188582,25.0421256],[-81.0188489,25.0422067],[-81.018603,25.0418516],[-81.018598,25.0418444],[-81.018593,25.0418372],[-81.0185091,25.0417161],[-81.0164575,25.0388206],[-81.0159992,25.0384519],[-81.0157582,25.0382579],[-81.0157499,25.0382513],[-81.0157417,25.0382447],[-81.0156864,25.0382002],[-81.0144061,25.0371701],[-81.0126687,25.0350774],[-81.0134611,25.0348349],[-81.0139681,25.0346798],[-81.0139636,25.0346705],[-81.013959,25.0346612]]],[[[-80.6768538,25.0347185],[-80.6769071,25.0340466],[-80.6765922,25.034344],[-80.6760534,25.0333799],[-80.6748818,25.0312834],[-80.6775618,25.0308023],[-80.6788462,25.0314653],[-80.6789646,25.0338925],[-80.6768538,25.0347185]]],[[[-80.6635814,25.034204],[-80.6683374,25.033015],[-80.6686124,25.033958],[-80.6687724,25.0345066],[-80.6688565,25.0345676],[-80.6682022,25.0362852],[-80.6650596,25.0368493],[-80.6635814,25.034204]]],[[[-80.8603462,25.0340907],[-80.8595265,25.0316316],[-80.8595472,25.0313552],[-80.8595605,25.0311784],[-80.859914,25.0306426],[-80.8600972,25.0303648],[-80.8603362,25.0303509],[-80.8613408,25.0291454],[-80.8627349,25.0298425],[-80.8639729,25.0294185],[-80.8642166,25.0295212],[-80.8654784,25.0300528],[-80.8656352,25.0300437],[-80.8658966,25.0302146],[-80.86572,25.0320165],[-80.8645194,25.0331604],[-80.8642161,25.0328921],[-80.8634511,25.0335253],[-80.8626561,25.0346083],[-80.8626139,25.0346407],[-80.8603052,25.034304],[-80.8603303,25.0341731],[-80.8603462,25.0340909],[-80.8603462,25.0340908],[-80.8603462,25.0340907]]],[[[-80.9076082,25.0318433],[-80.9097762,25.0313201],[-80.90991,25.0314075],[-80.9099778,25.0314013],[-80.9108314,25.0313237],[-80.9126904,25.0318157],[-80.9133375,25.0324802],[-80.9124536,25.0331025],[-80.9115838,25.0338238],[-80.9080278,25.0333496],[-80.9076842,25.0326194],[-80.9073485,25.031906],[-80.9076082,25.0318433]]],[[[-80.9015737,25.049419],[-80.9023769,25.0488912],[-80.9042814,25.0495678],[-80.9045749,25.0499231],[-80.9046288,25.0511629],[-80.904643,25.0514895],[-80.9033367,25.0521893],[-80.9033268,25.0521884],[-80.9033169,25.0521876],[-80.903262,25.0521827],[-80.9016562,25.0520401],[-80.9014835,25.0516076],[-80.9012469,25.0510154],[-80.9012469,25.0501441],[-80.901542,25.0498421],[-80.9015616,25.0495803],[-80.9015737,25.049419]]],[[[-80.455443,25.0484524],[-80.4561374,25.0482775],[-80.4567062,25.0482894],[-80.4588689,25.0483345],[-80.4606804,25.0501384],[-80.4595072,25.0515743],[-80.4591084,25.0520625],[-80.4574919,25.0524263],[-80.4560999,25.0527395],[-80.4543143,25.0529871],[-80.4510514,25.0534395],[-80.4484074,25.0538065],[-80.4466798,25.0528438],[-80.4472739,25.0506525],[-80.4497854,25.049873],[-80.4531077,25.0490405],[-80.455443,25.0484524]]],[[[-80.6428981,25.0492774],[-80.64418,25.0471922],[-80.6466673,25.0473556],[-80.6472761,25.0494338],[-80.6463513,25.0515415],[-80.6430129,25.0516652],[-80.6428981,25.0492774]]],[[[-80.7504668,25.045191],[-80.751174,25.0451525],[-80.7501154,25.0469192],[-80.7469606,25.0496909],[-80.7451614,25.051067],[-80.7449186,25.0512526],[-80.7445121,25.0519556],[-80.7436485,25.0534492],[-80.7422398,25.0523154],[-80.7438316,25.050317],[-80.7466083,25.047555],[-80.747684,25.046909],[-80.7504213,25.0452653],[-80.7504668,25.045191]]],[[[-80.7751841,25.0403658],[-80.7764404,25.0401374],[-80.7774091,25.0423936],[-80.7782133,25.0442429],[-80.7785962,25.0453413],[-80.7786866,25.0456005],[-80.7786287,25.0467169],[-80.778427,25.0467244],[-80.7769216,25.0467801],[-80.7767684,25.0462534],[-80.7765089,25.0453613],[-80.7762637,25.045096],[-80.7755415,25.0443148],[-80.7747409,25.0438104],[-80.7747366,25.043805],[-80.7747323,25.0437996],[-80.7739821,25.0428618],[-80.7740184,25.0427548],[-80.7737423,25.0426168],[-80.7739472,25.0418528],[-80.7742666,25.0406623],[-80.7747852,25.0404947],[-80.7747857,25.0404946],[-80.7747863,25.0404944],[-80.7751841,25.0403658]]],[[[-80.7020126,25.0417465],[-80.7040973,25.0400297],[-80.7065962,25.0414577],[-80.7043408,25.0448409],[-80.7033222,25.0463687],[-80.6984111,25.0466961],[-80.6983093,25.047022],[-80.6982064,25.047351],[-80.6976701,25.047351],[-80.6965556,25.0464303],[-80.6990659,25.0440769],[-80.7020126,25.0430947],[-80.7020126,25.0417465]]],[[[-80.9754269,25.0748417],[-80.9765745,25.0740888],[-80.9769162,25.0741162],[-80.9788768,25.0742733],[-80.9801837,25.0743258],[-80.9816481,25.0743616],[-80.9838881,25.0744971],[-80.9845227,25.0745355],[-80.9844909,25.0764568],[-80.9820695,25.077218],[-80.9820264,25.07728],[-80.9791232,25.0776949],[-80.9784541,25.0775074],[-80.9784534,25.0775072],[-80.9784527,25.0775069],[-80.9781134,25.0774118],[-80.9773492,25.0771976],[-80.9768377,25.0770543],[-80.9761867,25.0765789],[-80.9745738,25.0754013],[-80.9754269,25.0748417]]],[[[-80.4788514,25.08828],[-80.4829481,25.0844485],[-80.4819136,25.0912465],[-80.4788514,25.08828]]],[[[-80.7887119,25.0895383],[-80.7887125,25.0894209],[-80.7919672,25.091211],[-80.7917735,25.0936517],[-80.7910171,25.0939477],[-80.7892789,25.0946278],[-80.7886239,25.0943581],[-80.7883561,25.0942479],[-80.7862318,25.0933731],[-80.7841916,25.0925331],[-80.7868108,25.0895864],[-80.7887117,25.0895864],[-80.7887119,25.0895383]]],[[[-80.4980263,25.0770544],[-80.5014611,25.0758595],[-80.5006013,25.0778675],[-80.4992931,25.080228],[-80.4952702,25.081307],[-80.4930609,25.0789931],[-80.4957857,25.0788445],[-80.4980263,25.0770544]]],[[[-80.9266639,25.0804325],[-80.9259865,25.0803521],[-80.9253807,25.0805598],[-80.9248996,25.0807248],[-80.9248996,25.0803138],[-80.9251514,25.079992],[-80.9256736,25.0793248],[-80.9257796,25.0791893],[-80.9258885,25.0790501],[-80.9271896,25.0785522],[-80.9279529,25.0785522],[-80.9288203,25.0782297],[-80.9302011,25.0788974],[-80.9301997,25.0789016],[-80.9301983,25.0789057],[-80.9301938,25.0789191],[-80.9311642,25.0794564],[-80.9315917,25.0796931],[-80.9316309,25.0797148],[-80.9316522,25.0797266],[-80.931476,25.0805486],[-80.9302548,25.0809557],[-80.9302489,25.0809577],[-80.930243,25.0809597],[-80.9285401,25.0807835],[-80.9284108,25.0806398],[-80.9270899,25.0804831],[-80.9268539,25.0804551],[-80.9266639,25.0804325]]],[[[-80.5104644,25.0825344],[-80.5119814,25.0811157],[-80.5128641,25.0812195],[-80.5149579,25.0814658],[-80.5181949,25.0850625],[-80.5162624,25.0861495],[-80.5107433,25.0827668],[-80.5104644,25.0825344]]],[[[-80.6415452,25.0654578],[-80.6431644,25.0650769],[-80.6440216,25.0658388],[-80.6439682,25.0663195],[-80.6439263,25.066696],[-80.6424977,25.0668865],[-80.642512,25.0669785],[-80.6425472,25.067204],[-80.6413291,25.0669972],[-80.6413372,25.0669915],[-80.6413453,25.0669858],[-80.6415452,25.0654578]]],[[[-80.5553803,25.0640605],[-80.5577538,25.0640093],[-80.5583338,25.0669313],[-80.557984,25.0682421],[-80.5577473,25.0691291],[-80.5556821,25.0715151],[-80.5548263,25.0680745],[-80.5540034,25.0655425],[-80.5537346,25.0647154],[-80.5553803,25.0640605]]],[[[-80.6113823,25.0712389],[-80.6114476,25.0688867],[-80.6095427,25.0663151],[-80.6101142,25.0622196],[-80.6120191,25.0649817],[-80.6137842,25.0696886],[-80.6163871,25.0692397],[-80.619149,25.0715584],[-80.6157743,25.0726305],[-80.6132813,25.0732965],[-80.6111971,25.0744898],[-80.6109514,25.0732158],[-80.6106712,25.071762],[-80.6113823,25.0712389]]],[[[-80.7858286,25.0674865],[-80.7894301,25.0656857],[-80.7899568,25.0663002],[-80.7903153,25.0667184],[-80.7915572,25.066752],[-80.7933509,25.0686891],[-80.7930562,25.0707517],[-80.792797,25.0725661],[-80.7898744,25.07268],[-80.7888198,25.0727211],[-80.7880542,25.0713811],[-80.7858286,25.0674865]]],[[[-80.8571585,25.0749765],[-80.8553288,25.0741052],[-80.8549772,25.0719257],[-80.8548931,25.0714041],[-80.8554116,25.0700877],[-80.8553539,25.0699749],[-80.8552969,25.0691162],[-80.8552034,25.0677088],[-80.8547374,25.066041],[-80.8544818,25.0651263],[-80.8553366,25.0646825],[-80.855773,25.0644559],[-80.8559065,25.0647295],[-80.858166,25.0659011],[-80.8584502,25.0673651],[-80.8587268,25.0687902],[-80.8586151,25.0700191],[-80.8585952,25.070238],[-80.858781,25.0706186],[-80.8586964,25.0724583],[-80.8585966,25.0746292],[-80.8581123,25.0746994],[-80.8577946,25.0747454],[-80.8577083,25.0745766],[-80.8571585,25.0749765]]],[[[-80.6324969,25.0724108],[-80.6333297,25.0709374],[-80.6337351,25.0702201],[-80.6355447,25.0702201],[-80.6353933,25.0708118],[-80.6346178,25.0720305],[-80.6345607,25.0720031],[-80.6325921,25.0730775],[-80.6325393,25.072708],[-80.6324969,25.0724108]]],[[[-80.7284801,25.0672573],[-80.7334688,25.0656983],[-80.7337056,25.0658167],[-80.7346525,25.0662902],[-80.7353828,25.0714027],[-80.7331162,25.0732161],[-80.7288599,25.0758353],[-80.7252584,25.0800916],[-80.7242762,25.0784546],[-80.7262668,25.072587],[-80.727338,25.0704014],[-80.7282051,25.0686324],[-80.7283514,25.0679007],[-80.7284801,25.0672573]]],[[[-80.5086306,25.0554956],[-80.5111222,25.0534676],[-80.5134829,25.055491],[-80.5123587,25.0580203],[-80.5099745,25.0580758],[-80.5086306,25.0554956]]],[[[-80.6938274,25.0517067],[-80.6938274,25.0502976],[-80.6973027,25.0504907],[-80.6981522,25.0505379],[-80.6979616,25.0530795],[-80.7001248,25.0540104],[-80.7004373,25.0541449],[-80.6996584,25.0568575],[-80.6970287,25.0584941],[-80.6969283,25.0605056],[-80.695197,25.0622085],[-80.693277,25.0602762],[-80.6931614,25.0591454],[-80.6930374,25.0579315],[-80.695115,25.057701],[-80.6954896,25.0543728],[-80.6934305,25.0519862],[-80.6936095,25.0518601],[-80.6938274,25.0517067]]],[[[-80.8830365,25.0591186],[-80.8840818,25.0574871],[-80.8846728,25.0577078],[-80.8846855,25.0576682],[-80.8847131,25.0575818],[-80.885634,25.0576115],[-80.8859194,25.0576207],[-80.8861235,25.0580197],[-80.8862016,25.0581723],[-80.8875569,25.0590442],[-80.8876833,25.0596792],[-80.8866954,25.06047],[-80.886367,25.0608968],[-80.8855217,25.0610144],[-80.8843165,25.0617465],[-80.8840921,25.0615224],[-80.8831685,25.0605998],[-80.8831142,25.0599914],[-80.8830365,25.0591186]]],[[[-80.5448279,25.0618575],[-80.5458243,25.0609256],[-80.5481889,25.062896],[-80.5457429,25.0656577],[-80.5443669,25.0648871],[-80.5448279,25.0618575]]],[[[-80.5843338,25.0574061],[-80.5883222,25.056998],[-80.5887852,25.0583032],[-80.5893187,25.0598072],[-80.5876153,25.061329],[-80.586783,25.0620866],[-80.5862115,25.0626067],[-80.5834767,25.0614215],[-80.5843338,25.0574061]]],[[[-80.7855012,25.0267244],[-80.7866835,25.0224681],[-80.7871383,25.0224681],[-80.7886065,25.0226638],[-80.7920493,25.0231229],[-80.7909362,25.0267407],[-80.7911257,25.0270724],[-80.7912453,25.0272816],[-80.7890344,25.0280753],[-80.7855012,25.0267244]]],[[[-80.6313419,25.0248295],[-80.6344422,25.0240544],[-80.6361972,25.0271949],[-80.6324773,25.0287891],[-80.6315497,25.0258903],[-80.6312928,25.0250873],[-80.631297,25.0250649],[-80.6313418,25.0248297],[-80.6313418,25.0248296],[-80.6313419,25.0248295]]],[[[-80.6807628,25.0265127],[-80.685012,25.0248499],[-80.68639,25.0267073],[-80.6862836,25.0292297],[-80.6848006,25.0310217],[-80.6826585,25.0303866],[-80.6807628,25.0265127]]],[[[-80.7550742,25.0394082],[-80.7537381,25.0385352],[-80.753958,25.0357537],[-80.7545064,25.0341008],[-80.7537432,25.0313624],[-80.7536007,25.0310952],[-80.7535159,25.030936],[-80.7501364,25.0293525],[-80.7478933,25.0277133],[-80.7470731,25.027114],[-80.7469069,25.0270843],[-80.7466313,25.0267912],[-80.7465436,25.0266979],[-80.7453508,25.0254289],[-80.7426751,25.0232572],[-80.7437679,25.0229279],[-80.7451797,25.0225025],[-80.7503844,25.0258648],[-80.7505483,25.0259315],[-80.7510732,25.0261453],[-80.751937,25.026784],[-80.7540702,25.0283614],[-80.7567913,25.0289894],[-80.7580431,25.0322633],[-80.7580278,25.0327712],[-80.7580229,25.0329354],[-80.7580024,25.0336166],[-80.7579429,25.0355991],[-80.7569891,25.0379848],[-80.7551813,25.0393501],[-80.7551059,25.039305],[-80.7550742,25.0394082]]],[[[-80.4688951,25.092725],[-80.4678831,25.0914719],[-80.4707534,25.091227],[-80.4725606,25.0916075],[-80.4740873,25.0913195],[-80.474694,25.091205],[-80.4757385,25.0967354],[-80.4770629,25.0972335],[-80.4770685,25.0988706],[-80.4755416,25.0984901],[-80.4744944,25.0968003],[-80.4734183,25.0959227],[-80.470972,25.0948249],[-80.4690918,25.0929685],[-80.4688951,25.092725]]],[[[-80.7238393,25.0908193],[-80.7259207,25.0893868],[-80.7266784,25.0920291],[-80.7268743,25.092712],[-80.7284859,25.0945633],[-80.7270468,25.096961],[-80.725592,25.0987349],[-80.7253217,25.0990645],[-80.7232138,25.0973076],[-80.722472,25.0966893],[-80.7245929,25.0937066],[-80.7243501,25.0927763],[-80.7238393,25.0908193]]],[[[-80.3713574,27.6561982],[-80.3722134,27.6546899],[-80.372837,27.6555116],[-80.3741072,27.6571855],[-80.3764261,27.6593984],[-80.3762862,27.6622386],[-80.3774436,27.6635969],[-80.3789235,27.6653335],[-80.3794966,27.666193],[-80.3803594,27.6674869],[-80.3802864,27.6701827],[-80.3802374,27.6719929],[-80.3819311,27.6767466],[-80.3788149,27.6751469],[-80.3774165,27.6737629],[-80.3740171,27.6704403],[-80.3734297,27.6700257],[-80.3711,27.6683812],[-80.3730733,27.6650351],[-80.3732449,27.663405],[-80.3717864,27.65963],[-80.3716936,27.6588876],[-80.3713574,27.6561982]]],[[[-80.399421,27.7170491],[-80.4009458,27.7162867],[-80.4039318,27.7174939],[-80.4065366,27.7208611],[-80.4086967,27.7246095],[-80.4082519,27.7272778],[-80.4062189,27.7272778],[-80.4025341,27.7251177],[-80.4020258,27.7227035],[-80.4010093,27.7203528],[-80.4008241,27.7199675],[-80.399421,27.7170491]]],[[[-80.4115361,27.7569567],[-80.409587,27.7557274],[-80.4082519,27.7554466],[-80.4065969,27.7550466],[-80.4080402,27.756788],[-80.4047827,27.7566044],[-80.4045671,27.7563703],[-80.4031879,27.7548728],[-80.4031166,27.7508098],[-80.4040432,27.7503821],[-80.4036155,27.7472458],[-80.4020474,27.7461053],[-80.4024775,27.7453233],[-80.4028314,27.7446797],[-80.4017623,27.7430402],[-80.3992674,27.7409018],[-80.3978418,27.740189],[-80.3972003,27.7386921],[-80.3974515,27.7373793],[-80.3963996,27.7361269],[-80.3961174,27.735791],[-80.3956091,27.734711],[-80.3956091,27.731725],[-80.3964633,27.7303421],[-80.3969433,27.7295649],[-80.3969673,27.7261167],[-80.3964986,27.7250542],[-80.3972427,27.7245842],[-80.3977057,27.7242918],[-80.3979249,27.7243961],[-80.3990398,27.7249271],[-80.4021529,27.7279131],[-80.403037,27.7290239],[-80.403471,27.7295691],[-80.4049659,27.7296829],[-80.4094874,27.7327443],[-80.4096302,27.7332029],[-80.4100926,27.7346876],[-80.4110836,27.7373103],[-80.4115535,27.7397055],[-80.4116914,27.7404082],[-80.4142364,27.7416146],[-80.4140995,27.7441863],[-80.4135781,27.7455155],[-80.4135172,27.7456706],[-80.4124375,27.7455111],[-80.4121682,27.7445074],[-80.4109434,27.7452904],[-80.4098628,27.7450279],[-80.4096031,27.7449648],[-80.4084627,27.7441807],[-80.4077498,27.7428264],[-80.4063955,27.7427551],[-80.405255,27.7430402],[-80.4036869,27.7438956],[-80.4069658,27.7448222],[-80.4080485,27.7458108],[-80.4086052,27.7463191],[-80.4087206,27.7470993],[-80.4087859,27.7475402],[-80.4066094,27.7474596],[-80.4060931,27.7476403],[-80.4051837,27.7479586],[-80.4065381,27.749598],[-80.4082488,27.7492416],[-80.4120179,27.748342],[-80.4097411,27.7504129],[-80.4101152,27.7524825],[-80.410795,27.7542959],[-80.4110128,27.7548771],[-80.4125271,27.7558004],[-80.4145527,27.7544148],[-80.417039,27.7548045],[-80.4191541,27.7566523],[-80.4207017,27.7579777],[-80.4207027,27.7580018],[-80.4207029,27.7580051],[-80.420703,27.7580085],[-80.420811,27.7606248],[-80.4209784,27.7608257],[-80.4214614,27.7614053],[-80.4215237,27.7628118],[-80.4204034,27.7634218],[-80.4193577,27.7626127],[-80.41794,27.7609826],[-80.4172049,27.7601673],[-80.4172029,27.7601651],[-80.417201,27.7601629],[-80.4163346,27.7592022],[-80.4157152,27.7585152],[-80.4138849,27.7574823],[-80.4115361,27.7569567]]],[[[-80.4249005,27.7721068],[-80.4234682,27.7719526],[-80.4219832,27.7734106],[-80.4215584,27.7738276],[-80.4214889,27.7749735],[-80.4213798,27.7749921],[-80.4200653,27.7752165],[-80.4205053,27.7728698],[-80.4206009,27.7706387],[-80.4206903,27.7685497],[-80.4205862,27.7667094],[-80.4214808,27.7672461],[-80.4224839,27.7678478],[-80.4253912,27.7696741],[-80.4283349,27.7723079],[-80.4301391,27.7743658],[-80.4299933,27.7754039],[-80.4298314,27.7765568],[-80.4297185,27.7772681],[-80.4296142,27.7779249],[-80.4270794,27.7771958],[-80.4274266,27.7759457],[-80.427339,27.7756341],[-80.4268016,27.7737234],[-80.4249005,27.7721068]]],[[[-80.0447425,26.7708041],[-80.0467084,26.7697959],[-80.0492288,26.7705521],[-80.0486239,26.773627],[-80.0460531,26.7765003],[-80.0428269,26.776097],[-80.0427765,26.773879],[-80.0447425,26.7708041]]],[[[-80.2883408,27.462572],[-80.2830996,27.4506601],[-80.2778583,27.4368422],[-80.2772025,27.4350277],[-80.2768955,27.4341785],[-80.2707111,27.4170684],[-80.2653553,27.4049746],[-80.2633257,27.4003916],[-80.2569791,27.3865083],[-80.2557031,27.383717],[-80.2557026,27.383716],[-80.2557021,27.3837149],[-80.2495044,27.3727656],[-80.2485553,27.3710888],[-80.2485551,27.3710885],[-80.2485549,27.3710882],[-80.2448544,27.3638928],[-80.2399783,27.3544115],[-80.2399781,27.354411],[-80.2399779,27.3544106],[-80.2328312,27.3398789],[-80.2243427,27.3172167],[-80.2220748,27.312525],[-80.2209064,27.310121],[-80.2194187,27.3071696],[-80.2183094,27.3049034],[-80.2167133,27.3010421],[-80.2156536,27.2983535],[-80.2146429,27.2961018],[-80.2137407,27.2933963],[-80.2137405,27.2933959],[-80.2137404,27.2933955],[-80.212617,27.2913848],[-80.212616,27.2913831],[-80.212615,27.2913813],[-80.2112321,27.2881454],[-80.2099959,27.285571],[-80.2089529,27.283528],[-80.2089519,27.283526],[-80.2089509,27.283524],[-80.2074644,27.2808571],[-80.2074634,27.2808553],[-80.2074624,27.2808535],[-80.2058246,27.2769944],[-80.204268,27.2734346],[-80.2029755,27.2705216],[-80.2021481,27.268803],[-80.1999646,27.263036],[-80.1999644,27.2630355],[-80.1999642,27.263035],[-80.1992682,27.2617737],[-80.199268,27.2617732],[-80.1992677,27.2617728],[-80.1944627,27.2524077],[-80.1944617,27.2524058],[-80.1944607,27.2524038],[-80.1933347,27.2503232],[-80.1933335,27.2503211],[-80.1933324,27.250319],[-80.1927072,27.248769],[-80.1918457,27.247057],[-80.1918445,27.2470547],[-80.1918434,27.2470525],[-80.1902562,27.2446435],[-80.1902559,27.244643],[-80.1902556,27.2446426],[-80.1891304,27.2423291],[-80.1891294,27.242327],[-80.1891284,27.242325],[-80.1876498,27.2401165],[-80.1876496,27.2401162],[-80.1876494,27.240116],[-80.18668,27.2381802],[-80.1858151,27.236361],[-80.1843032,27.2332677],[-80.1843029,27.2332669],[-80.1843025,27.2332663],[-80.1823066,27.2295078],[-80.1800579,27.2257134],[-80.180057,27.2257119],[-80.1800561,27.2257105],[-80.1792159,27.2236865],[-80.1792154,27.2236855],[-80.179215,27.2236844],[-80.1772994,27.220476],[-80.1760814,27.2183396],[-80.1745757,27.2157474],[-80.1727929,27.2127365],[-80.1711993,27.2102288],[-80.1711981,27.2102269],[-80.1711969,27.210225],[-80.1708238,27.2078971],[-80.1708235,27.2078956],[-80.1708233,27.2078941],[-80.1673999,27.2046029],[-80.1673999,27.2046029],[-80.1673999,27.2046029],[-80.1670364,27.2038907],[-80.1604473,27.1909796],[-80.1599393,27.1899841],[-80.1595694,27.1892595],[-80.1590404,27.1841803],[-80.152903,27.1690485],[-80.1559717,27.1674613],[-80.1629556,27.169366],[-80.1695162,27.1721172],[-80.1695165,27.1721193],[-80.1695168,27.1721214],[-80.1702569,27.1769848],[-80.1699394,27.1806883],[-80.1634846,27.1855559],[-80.1614741,27.1853443],[-80.1620032,27.1897885],[-80.1624456,27.190806],[-80.1651777,27.1970899],[-80.1651782,27.1970905],[-80.1651787,27.1970911],[-80.1698336,27.2030156],[-80.1698338,27.2030166],[-80.1698339,27.2030176],[-80.1700453,27.2047087],[-80.1700464,27.2047099],[-80.1700475,27.2047111],[-80.171936,27.2067449],[-80.173813,27.2054933],[-80.1764804,27.2048715],[-80.1787414,27.205468],[-80.1813229,27.2069698],[-80.1829169,27.209424],[-80.1837117,27.2106848],[-80.1837132,27.2106872],[-80.1837147,27.2106896],[-80.1847852,27.2123877],[-80.1847851,27.212388],[-80.184785,27.2123882],[-80.1842345,27.2137234],[-80.1831986,27.217977],[-80.1833824,27.2223453],[-80.1838831,27.225181],[-80.1843144,27.2275625],[-80.1856824,27.2302863],[-80.1856825,27.2302864],[-80.1856826,27.2302865],[-80.1874506,27.232291],[-80.1886369,27.234154],[-80.1910094,27.23592],[-80.1929464,27.236665],[-80.1945754,27.237984],[-80.1971085,27.2403928],[-80.1971073,27.2403929],[-80.197106,27.240393],[-80.1929048,27.2407352],[-80.1921811,27.2436013],[-80.1921825,27.2436034],[-80.1921839,27.2436055],[-80.1937271,27.2459122],[-80.1937421,27.2459347],[-80.19421,27.2460867],[-80.1967434,27.2469095],[-80.1967439,27.2469117],[-80.1967444,27.246914],[-80.1972966,27.2493941],[-80.1973597,27.2496776],[-80.197361,27.2496801],[-80.1973623,27.2496827],[-80.1982616,27.2514098],[-80.1982629,27.2514123],[-80.1982642,27.2514148],[-80.1990852,27.2529916],[-80.1990873,27.2529957],[-80.1990894,27.2529998],[-80.2013561,27.2545403],[-80.2015491,27.2546715],[-80.2041582,27.254202],[-80.2071494,27.2531885],[-80.2102446,27.2548956],[-80.2102447,27.2548974],[-80.2102447,27.2548992],[-80.2102804,27.259447],[-80.2103074,27.261763],[-80.2099029,27.26309],[-80.2096279,27.2641849],[-80.2092991,27.2654938],[-80.2086144,27.2682199],[-80.2093668,27.2713095],[-80.2093679,27.2713112],[-80.209369,27.2713129],[-80.2119401,27.275235],[-80.21194,27.2752353],[-80.2119399,27.2752357],[-80.2115005,27.2770743],[-80.2115021,27.2770757],[-80.2115037,27.2770772],[-80.2138014,27.2791713],[-80.2138014,27.2791727],[-80.2138015,27.279174],[-80.2139062,27.2825108],[-80.2139075,27.2825132],[-80.2139088,27.2825155],[-80.215348,27.2851192],[-80.2165658,27.2854922],[-80.2256714,27.2822498],[-80.2256723,27.2822525],[-80.2256733,27.2822552],[-80.2260701,27.2834095],[-80.2274859,27.2875284],[-80.2221732,27.2895723],[-80.2221766,27.289574],[-80.22218,27.2895757],[-80.2268167,27.291917],[-80.2268167,27.2919188],[-80.2268167,27.2919207],[-80.2268067,27.2953592],[-80.2249814,27.3011347],[-80.2230734,27.304549],[-80.2225479,27.3067955],[-80.2240764,27.3114426],[-80.2255411,27.3162139],[-80.2257518,27.3169004],[-80.2257528,27.3169018],[-80.2257538,27.3169032],[-80.2302105,27.3234404],[-80.2337841,27.3262993],[-80.2367233,27.3286018],[-80.2367218,27.3286021],[-80.2367202,27.3286024],[-80.2337841,27.3291582],[-80.2337881,27.3291602],[-80.2337922,27.3291622],[-80.2361665,27.3303494],[-80.2361676,27.3303518],[-80.2361687,27.3303542],[-80.2373577,27.33297],[-80.2373577,27.338926],[-80.237359,27.3389282],[-80.2373603,27.3389304],[-80.2387871,27.3413084],[-80.241646,27.3415466],[-80.247602,27.3377348],[-80.2499844,27.3398789],[-80.252605,27.3424996],[-80.2568933,27.3458349],[-80.2580845,27.3479791],[-80.2580844,27.3479791],[-80.2580843,27.3479791],[-80.256655,27.3484555],[-80.2528432,27.3467879],[-80.2499844,27.3467879],[-80.247602,27.3494085],[-80.2452582,27.3540959],[-80.2449813,27.3546497],[-80.2449841,27.3546493],[-80.2449869,27.3546489],[-80.2455023,27.3545753],[-80.246649,27.3544115],[-80.2493332,27.3520099],[-80.2511755,27.3503614],[-80.2557021,27.3505997],[-80.2573698,27.3529821],[-80.2573696,27.3529824],[-80.2573694,27.3529828],[-80.2566859,27.354213],[-80.2561786,27.3551262],[-80.2561809,27.3551269],[-80.2561833,27.3551275],[-80.2570322,27.355359],[-80.2587992,27.355841],[-80.2587994,27.3558432],[-80.2587997,27.3558454],[-80.2589449,27.3572495],[-80.2595139,27.3627499],[-80.2595139,27.365847],[-80.2580845,27.3729942],[-80.2580845,27.376806],[-80.2580858,27.3768073],[-80.2580871,27.3768086],[-80.2599904,27.3787119],[-80.2599907,27.3787134],[-80.259991,27.3787149],[-80.2610504,27.3842767],[-80.2610819,27.3844422],[-80.2616027,27.3871762],[-80.2618963,27.3887179],[-80.2647552,27.3908621],[-80.2647552,27.3956269],[-80.2668993,27.3989622],[-80.2668993,27.4020593],[-80.2671487,27.4019034],[-80.2707111,27.3996769],[-80.27357,27.4003917],[-80.2742616,27.4021897],[-80.2747612,27.4034887],[-80.2748554,27.4038183],[-80.2750718,27.4045757],[-80.276873,27.4099167],[-80.279526,27.4177831],[-80.2823849,27.4258832],[-80.2806427,27.4265801],[-80.2800025,27.4268362],[-80.2800039,27.4268387],[-80.2800053,27.4268412],[-80.2811937,27.4289803],[-80.2852437,27.4301715],[-80.2871496,27.4285038],[-80.2911997,27.4280274],[-80.2966792,27.4318392],[-80.2976322,27.4397011],[-80.2952498,27.4468482],[-80.2947889,27.4468995],[-80.2937604,27.4470137],[-80.293668,27.447024],[-80.2931056,27.4470865],[-80.2917599,27.4478042],[-80.289532,27.4489924],[-80.289532,27.452566],[-80.2911997,27.4573308],[-80.2912009,27.457333],[-80.2912021,27.4573352],[-80.2926291,27.4599514],[-80.2971557,27.4589984],[-80.2988233,27.4599514],[-80.2988226,27.4599527],[-80.2988218,27.459954],[-80.2973939,27.4623338],[-80.2973969,27.4623336],[-80.2973998,27.4623335],[-80.3019205,27.4620955],[-80.3033499,27.4580455],[-80.3102588,27.456616],[-80.312403,27.4582837],[-80.3150236,27.456616],[-80.3167538,27.4585385],[-80.3167559,27.4585408],[-80.316758,27.4585431],[-80.3171678,27.4589984],[-80.3171673,27.458999],[-80.3171669,27.4589996],[-80.3157383,27.4609043],[-80.31145,27.4609043],[-80.3069235,27.4642397],[-80.3047793,27.4642397],[-80.3035881,27.4649544],[-80.3007293,27.4673368],[-80.2957262,27.4694809],[-80.2921065,27.4700842],[-80.2921062,27.4700843],[-80.2921059,27.4700843],[-80.2900112,27.4704335],[-80.2900098,27.4704337],[-80.2900085,27.4704339],[-80.2900085,27.4670986],[-80.2883408,27.462572]]],[[[-80.1737554,27.162955],[-80.1718441,27.1626995],[-80.1658126,27.1640752],[-80.162845,27.1642454],[-80.1576647,27.1629112],[-80.1513158,27.1495783],[-80.1500596,27.1442339],[-80.1492315,27.1407103],[-80.1476914,27.137887],[-80.1473237,27.1371371],[-80.1468294,27.1361293],[-80.1456861,27.132987],[-80.1451231,27.1310303],[-80.1444111,27.1289955],[-80.1439154,27.1275787],[-80.1431132,27.1251398],[-80.1430783,27.1229331],[-80.1413121,27.1182998],[-80.140735,27.1167859],[-80.1383711,27.1110551],[-80.1366418,27.1077743],[-80.1358615,27.1062938],[-80.1342759,27.103049],[-80.1329367,27.1004573],[-80.1311487,27.097554],[-80.1296304,27.0947355],[-80.1278961,27.09176],[-80.1266234,27.089403],[-80.1253417,27.087479],[-80.1237949,27.085494],[-80.1227139,27.083398],[-80.1215324,27.081272],[-80.1201024,27.078903],[-80.1182856,27.0754274],[-80.1164901,27.0714818],[-80.1161024,27.070031],[-80.1152044,27.06744],[-80.1146357,27.0655518],[-80.1127554,27.0622125],[-80.1108714,27.058445],[-80.1093334,27.0552545],[-80.1083147,27.053248],[-80.1072574,27.05052],[-80.1065801,27.0489568],[-80.10531,27.0458659],[-80.1041429,27.043069],[-80.1036429,27.041372],[-80.1028198,27.0391739],[-80.1000502,27.0340615],[-80.0988514,27.031742],[-80.0979212,27.0293013],[-80.096737,27.025922],[-80.0952704,27.02188],[-80.0942649,27.0194133],[-80.0935131,27.0169007],[-80.0927337,27.0147355],[-80.0917749,27.0114965],[-80.0909209,27.0086075],[-80.0901394,27.0061492],[-80.0896014,27.0036547],[-80.0891834,27.000328],[-80.0888389,26.998263],[-80.0885189,26.995685],[-80.0880859,26.9925665],[-80.0868329,26.9890075],[-80.0857999,26.9865855],[-80.0848854,26.984273],[-80.0839404,26.982356],[-80.0827639,26.979519],[-80.0814129,26.9759305],[-80.0803604,26.970529],[-80.0796069,26.9676521],[-80.0779305,26.9636289],[-80.0765415,26.9587435],[-80.0748077,26.9533843],[-80.0736604,26.95063],[-80.0726934,26.948777],[-80.0714749,26.9449883],[-80.0748539,26.9453723],[-80.076882,26.9460484],[-80.0781214,26.9474004],[-80.0780088,26.9496539],[-80.0778961,26.953372],[-80.0780742,26.9567319],[-80.07999,26.9634852],[-80.0811395,26.9669816],[-80.0820017,26.9694243],[-80.082063,26.970529],[-80.0821454,26.9720107],[-80.0838217,26.9753155],[-80.0860536,26.9805173],[-80.0896195,26.9866982],[-80.0903327,26.9886],[-80.0900158,26.9897094],[-80.090412,26.9930376],[-80.0905705,26.9956526],[-80.0914421,26.9971582],[-80.0914421,26.9993769],[-80.0912836,27.0011995],[-80.0931854,27.0065088],[-80.0949288,27.0101539],[-80.09794,27.0172065],[-80.102853,27.0286966],[-80.1059435,27.0351945],[-80.1064189,27.0380472],[-80.1081623,27.0427225],[-80.1091924,27.0457337],[-80.1109357,27.0470016],[-80.1104603,27.048111],[-80.111015,27.0497751],[-80.112996,27.050726],[-80.1160072,27.0511222],[-80.1172751,27.0527863],[-80.1174336,27.0550051],[-80.1169582,27.0573823],[-80.1177506,27.058254],[-80.1170374,27.0591257],[-80.1170374,27.0603143],[-80.118543,27.0603143],[-80.1191769,27.0591257],[-80.1203656,27.0610275],[-80.1218712,27.0654651],[-80.1238522,27.0691895],[-80.1278144,27.0786985],[-80.1287388,27.0805758],[-80.1296056,27.0846933],[-80.1305266,27.0856144],[-80.1356735,27.090382],[-80.1345254,27.0902816],[-80.132219,27.0890386],[-80.1323433,27.0913588],[-80.1335448,27.0919112],[-80.1348706,27.0915245],[-80.1358529,27.0921757],[-80.1365946,27.0995923],[-80.1372989,27.1012718],[-80.1384908,27.1028972],[-80.1399536,27.1067438],[-80.1412539,27.1090734],[-80.1401161,27.1091276],[-80.1404954,27.110753],[-80.1406579,27.1140578],[-80.1419474,27.117715],[-80.142,27.1178644],[-80.1450463,27.1206134],[-80.1476469,27.1225638],[-80.1493806,27.125977],[-80.1492883,27.1265858],[-80.1491097,27.1277649],[-80.1489648,27.1284894],[-80.148893,27.1288484],[-80.1489876,27.1295295],[-80.1491639,27.1307988],[-80.1482428,27.13237],[-80.1480261,27.1337244],[-80.1490555,27.133291],[-80.1495431,27.1319366],[-80.1498749,27.1315537],[-80.1502474,27.1311239],[-80.1502474,27.1287943],[-80.1574531,27.136921],[-80.1608122,27.1407134],[-80.1618607,27.1449626],[-80.1621131,27.1466021],[-80.1623412,27.1480833],[-80.1624259,27.150777],[-80.1656426,27.152119],[-80.1678895,27.1548303],[-80.1686379,27.1557008],[-80.1687498,27.1558309],[-80.1703627,27.1557157],[-80.1724433,27.1572956],[-80.1748566,27.1591281],[-80.1753655,27.1608718],[-80.1777544,27.162657],[-80.1768444,27.1643751],[-80.1737554,27.162955]]],[[[-80.4234619,27.8152122],[-80.4224488,27.8131468],[-80.4212919,27.8107248],[-80.4168529,27.8023428],[-80.4143662,27.7978532],[-80.4123474,27.7943753],[-80.4114079,27.7926898],[-80.4097482,27.7894198],[-80.4070746,27.7844593],[-80.4045784,27.7795728],[-80.4034529,27.7773922],[-80.4005724,27.7715808],[-80.3994885,27.7693932],[-80.3974968,27.7655226],[-80.3974959,27.7655209],[-80.3974951,27.7655192],[-80.3962282,27.7631462],[-80.3938999,27.7595638],[-80.3916844,27.7558953],[-80.3889321,27.7510059],[-80.3889312,27.7510044],[-80.3889304,27.751003],[-80.3875779,27.7481102],[-80.3858449,27.7445469],[-80.3839184,27.7405698],[-80.3809081,27.7327354],[-80.3795714,27.7293764],[-80.3789159,27.7264179],[-80.3782642,27.723945],[-80.3770639,27.7204328],[-80.3763185,27.7177415],[-80.3750339,27.7135469],[-80.3729229,27.7084179],[-80.3714521,27.7038039],[-80.3705229,27.7008749],[-80.3693754,27.6977809],[-80.3682712,27.694856],[-80.3670109,27.691166],[-80.3657635,27.6877579],[-80.3650164,27.6859734],[-80.3633139,27.6806369],[-80.3626559,27.6783839],[-80.3617474,27.6750414],[-80.3609539,27.6725379],[-80.3594324,27.6678959],[-80.3584404,27.6646734],[-80.3578619,27.6622129],[-80.3572144,27.6597449],[-80.3561789,27.6571069],[-80.3557319,27.6554344],[-80.3551066,27.6534294],[-80.3533891,27.6478814],[-80.3522346,27.6442132],[-80.3511039,27.6392939],[-80.3514899,27.6371609],[-80.3514544,27.6326584],[-80.3507789,27.6292849],[-80.3486287,27.6241457],[-80.3468618,27.6206344],[-80.3468609,27.6206325],[-80.3468599,27.6206305],[-80.3449859,27.6173902],[-80.3428829,27.6142149],[-80.3401545,27.6109215],[-80.3383129,27.6086904],[-80.3335504,27.6026379],[-80.3317992,27.5995449],[-80.3317983,27.5995433],[-80.3317974,27.5995416],[-80.3309109,27.5975359],[-80.3302154,27.5947959],[-80.3294179,27.5914139],[-80.3288769,27.5891434],[-80.3283874,27.5864609],[-80.3278084,27.5835834],[-80.3269749,27.5800979],[-80.3263709,27.5774146],[-80.3253179,27.5722744],[-80.3246539,27.5691729],[-80.3232636,27.5643712],[-80.3210481,27.5573828],[-80.3202823,27.5549674],[-80.3183268,27.5489034],[-80.3175548,27.5458769],[-80.316676,27.5424982],[-80.3149823,27.5363839],[-80.3132848,27.5303414],[-80.3066143,27.5135385],[-80.300969,27.5023308],[-80.3009681,27.5023291],[-80.3009672,27.5023273],[-80.3003976,27.5013122],[-80.3003965,27.5013102],[-80.3003954,27.5013083],[-80.2980861,27.49537],[-80.2957767,27.488112],[-80.294622,27.4836582],[-80.2918178,27.4777199],[-80.2900505,27.4732849],[-80.2931216,27.4725876],[-80.2931218,27.4725875],[-80.2931221,27.4725874],[-80.2944132,27.4722942],[-80.2970358,27.4728261],[-80.2992781,27.4714909],[-80.3030182,27.4706583],[-80.3030156,27.4706617],[-80.303013,27.4706651],[-80.3009508,27.4733944],[-80.3009533,27.4733954],[-80.3009558,27.4733963],[-80.3037435,27.474476],[-80.3078471,27.4778234],[-80.312377,27.4779057],[-80.3123767,27.4779082],[-80.3123763,27.4779107],[-80.3122567,27.4787275],[-80.312256,27.4787319],[-80.3122554,27.4787363],[-80.312083,27.4799139],[-80.3106286,27.4824159],[-80.3082562,27.4847022],[-80.3064633,27.4865624],[-80.3048488,27.4888484],[-80.3043486,27.4907703],[-80.3043503,27.4907713],[-80.304352,27.4907723],[-80.3058029,27.4916296],[-80.305803,27.4916314],[-80.3058031,27.4916333],[-80.305869,27.4929518],[-80.3022993,27.4953316],[-80.3024315,27.4969181],[-80.3024326,27.4969181],[-80.3024337,27.4969181],[-80.303357,27.4969181],[-80.3036171,27.496438],[-80.3040712,27.4955995],[-80.3042164,27.4953316],[-80.3043027,27.4954673],[-80.3044646,27.4957217],[-80.3046791,27.4960587],[-80.3046791,27.4960591],[-80.304679,27.4960595],[-80.3045469,27.4970503],[-80.3045485,27.4970512],[-80.30455,27.4970521],[-80.3054724,27.4975791],[-80.3066407,27.4951939],[-80.3070589,27.49434],[-80.3083149,27.491828],[-80.3081289,27.4909797],[-80.3077905,27.4894363],[-80.3107141,27.4864407],[-80.3107147,27.486444],[-80.3107153,27.4864473],[-80.3113792,27.4903166],[-80.3119827,27.4925991],[-80.3125457,27.4947366],[-80.3124879,27.4951123],[-80.3124135,27.495596],[-80.3106947,27.4959927],[-80.3097032,27.4971164],[-80.3097053,27.497118],[-80.3097075,27.4971197],[-80.3104964,27.4977114],[-80.3129423,27.4967859],[-80.3137944,27.4958657],[-80.314595,27.4950011],[-80.3149255,27.4929518],[-80.3147616,27.4915687],[-80.3145908,27.4901273],[-80.314566,27.4870153],[-80.313968,27.4849285],[-80.3136121,27.4830541],[-80.3159302,27.4811432],[-80.319125,27.4836421],[-80.3204244,27.4859273],[-80.3204243,27.4859273],[-80.3204242,27.4859274],[-80.3182128,27.4867487],[-80.3182156,27.4867507],[-80.3182185,27.4867527],[-80.3199988,27.4879923],[-80.3212347,27.4888528],[-80.3212354,27.4888549],[-80.3212361,27.488857],[-80.3215334,27.4897256],[-80.3219393,27.4909117],[-80.3218996,27.4920803],[-80.3218675,27.4930234],[-80.3210188,27.495306],[-80.3209869,27.4953918],[-80.3200439,27.4977942],[-80.3200453,27.4977965],[-80.3200467,27.4977988],[-80.3210005,27.4993515],[-80.3245089,27.4995953],[-80.324507,27.4995976],[-80.3245051,27.4995999],[-80.3229612,27.5014838],[-80.3225522,27.5019829],[-80.3225537,27.5019853],[-80.3225551,27.5019877],[-80.3241492,27.5045855],[-80.3259857,27.5057363],[-80.3259845,27.5057373],[-80.3259833,27.5057382],[-80.3240696,27.5072262],[-80.3220421,27.5085924],[-80.3230105,27.5112751],[-80.323011,27.5112754],[-80.3230116,27.5112758],[-80.3265873,27.5136009],[-80.3265868,27.5136022],[-80.3265863,27.5136036],[-80.3257873,27.5156722],[-80.3234624,27.5154431],[-80.322459,27.5178207],[-80.322461,27.5178216],[-80.3224631,27.5178225],[-80.3245243,27.5187044],[-80.3282362,27.5184661],[-80.3282351,27.5184688],[-80.328234,27.5184715],[-80.3270063,27.5215814],[-80.3265308,27.5227859],[-80.3271655,27.5250397],[-80.3255673,27.5289309],[-80.3237781,27.5314985],[-80.3216102,27.5301526],[-80.3195719,27.5288691],[-80.3173687,27.5271862],[-80.3180043,27.5320499],[-80.3180056,27.5320518],[-80.3180068,27.5320538],[-80.3189698,27.5335514],[-80.3225673,27.5351519],[-80.3247453,27.5359929],[-80.3248106,27.5360249],[-80.3277803,27.5374834],[-80.3300698,27.5385494],[-80.3308799,27.5392042],[-80.3318703,27.5400049],[-80.3342633,27.5415409],[-80.3357554,27.542711],[-80.336836,27.5442082],[-80.3368358,27.5442087],[-80.3368357,27.5442092],[-80.336562,27.5450862],[-80.3358723,27.5472964],[-80.334857,27.5480001],[-80.3343163,27.5483749],[-80.3316624,27.5487873],[-80.3316612,27.5487875],[-80.3316601,27.5487876],[-80.3316211,27.5482522],[-80.331512,27.5467558],[-80.3315118,27.5467527],[-80.3315116,27.5467497],[-80.3303768,27.5472581],[-80.3288045,27.5479625],[-80.3270098,27.5494644],[-80.3273323,27.5517686],[-80.3273334,27.5517693],[-80.3273345,27.5517699],[-80.3306345,27.5536873],[-80.3329234,27.5546633],[-80.3329234,27.5546653],[-80.3329234,27.5546673],[-80.3329143,27.5556203],[-80.3329067,27.5564266],[-80.3320914,27.5572637],[-80.3316361,27.5606361],[-80.3314785,27.5617124],[-80.3309157,27.5623096],[-80.330405,27.5628514],[-80.3293969,27.5629107],[-80.3293946,27.5629109],[-80.3293923,27.562911],[-80.3298093,27.5617791],[-80.3304044,27.5604104],[-80.3304047,27.5604096],[-80.330405,27.5604088],[-80.3296305,27.5595748],[-80.3285582,27.5604684],[-80.328439,27.5617791],[-80.3280316,27.562526],[-80.3277241,27.5630897],[-80.3276116,27.5631723],[-80.3270464,27.5635867],[-80.3268305,27.563745],[-80.3268326,27.563747],[-80.3268347,27.563749],[-80.3282007,27.5650557],[-80.3295114,27.5642217],[-80.3317079,27.5636481],[-80.3362834,27.5652429],[-80.3362842,27.5652453],[-80.3362851,27.5652477],[-80.337424,27.5684417],[-80.3348439,27.5728059],[-80.3347541,27.573992],[-80.3347556,27.5739922],[-80.3347571,27.5739923],[-80.3368988,27.5741708],[-80.3368966,27.574173],[-80.3368944,27.5741753],[-80.3344905,27.5766538],[-80.3310008,27.5768517],[-80.3308816,27.5784602],[-80.3308832,27.5784603],[-80.3308847,27.5784603],[-80.3330264,27.5785198],[-80.3359815,27.578562],[-80.3410603,27.5826631],[-80.3422176,27.5835688],[-80.3435259,27.5860344],[-80.3435259,27.5860345],[-80.3435259,27.5860345],[-80.3434595,27.5877947],[-80.3446832,27.5904122],[-80.3443813,27.5920224],[-80.34101,27.5931797],[-80.3399533,27.5928275],[-80.3388316,27.5928974],[-80.3376418,27.5936869],[-80.3359278,27.5938338],[-80.3359315,27.5938362],[-80.3359351,27.5938386],[-80.3372201,27.59466],[-80.3382326,27.59522],[-80.3444317,27.5963498],[-80.3458909,27.5959976],[-80.3460922,27.5942364],[-80.3477024,27.5945886],[-80.3477013,27.5945907],[-80.3477003,27.5945927],[-80.346545,27.596853],[-80.3436266,27.5977587],[-80.3416638,27.5974018],[-80.3403055,27.5971549],[-80.3402552,27.5992683],[-80.3402566,27.5992685],[-80.340258,27.5992686],[-80.3413679,27.5994097],[-80.3432569,27.6006752],[-80.3479835,27.609324],[-80.349194,27.611539],[-80.3501536,27.6132947],[-80.3540929,27.6205028],[-80.354093,27.6205032],[-80.3540932,27.6205036],[-80.3546967,27.6220627],[-80.3549483,27.623371],[-80.3549493,27.6233719],[-80.3549503,27.6233727],[-80.3565585,27.6247799],[-80.3576655,27.624327],[-80.357164,27.6230233],[-80.3571632,27.623021],[-80.3571623,27.6230187],[-80.3562088,27.6224165],[-80.3562075,27.6224157],[-80.3562062,27.6224149],[-80.3561559,27.6206034],[-80.3577574,27.6219501],[-80.3577579,27.621952],[-80.3577585,27.6219539],[-80.3586357,27.6249356],[-80.3590769,27.6262391],[-80.3590744,27.6291073],[-80.3590758,27.6291071],[-80.3590771,27.6291069],[-80.3603276,27.6289283],[-80.3617916,27.6292079],[-80.3617927,27.6292104],[-80.3617937,27.6292129],[-80.362602,27.631176],[-80.3624704,27.6341477],[-80.3629595,27.6371839],[-80.36154,27.638366],[-80.3600305,27.6372086],[-80.360584,27.6398252],[-80.3605847,27.6398249],[-80.3605854,27.6398246],[-80.3632527,27.6388146],[-80.3650623,27.640429],[-80.3650624,27.6404304],[-80.3650624,27.6404318],[-80.3651817,27.644354],[-80.3641505,27.6439294],[-80.363121,27.6420418],[-80.3619198,27.6420418],[-80.3616624,27.6437578],[-80.361664,27.643759],[-80.3616655,27.6437603],[-80.3671641,27.6483305],[-80.3685322,27.6496463],[-80.3697271,27.6503296],[-80.369728,27.650332],[-80.369729,27.6503343],[-80.3701921,27.6514663],[-80.3704053,27.6520131],[-80.3704064,27.6520158],[-80.3704074,27.6520184],[-80.3709261,27.6533483],[-80.3698131,27.6547396],[-80.3699846,27.6591152],[-80.370242,27.663405],[-80.3698131,27.6644346],[-80.3664051,27.6638023],[-80.3664071,27.663805],[-80.366409,27.6638077],[-80.3680971,27.6661505],[-80.3692983,27.6670084],[-80.3692983,27.66701],[-80.3692983,27.6670117],[-80.3692983,27.6685528],[-80.3655233,27.6678664],[-80.366038,27.6701829],[-80.3660388,27.6701829],[-80.3660396,27.670183],[-80.3709284,27.6706119],[-80.3730733,27.6720704],[-80.3756469,27.6745949],[-80.3769185,27.6763843],[-80.3769179,27.6763842],[-80.3769174,27.6763841],[-80.3747907,27.6760548],[-80.3733699,27.6769589],[-80.3694684,27.6764999],[-80.3681331,27.6795271],[-80.3681346,27.6795294],[-80.3681361,27.6795316],[-80.3691999,27.6811569],[-80.3701575,27.6824477],[-80.3702211,27.6823837],[-80.3708473,27.6817539],[-80.3713629,27.6812354],[-80.3722924,27.6799438],[-80.3730695,27.6788641],[-80.3751344,27.6787284],[-80.3779529,27.6784255],[-80.3792166,27.6784958],[-80.3803011,27.6785562],[-80.3802996,27.6785586],[-80.3802982,27.678561],[-80.3786121,27.6812864],[-80.379186,27.6833256],[-80.3791868,27.6833261],[-80.3791875,27.6833265],[-80.3811409,27.6844919],[-80.3831249,27.685173],[-80.3843885,27.6873025],[-80.3843884,27.6873026],[-80.3843883,27.6873027],[-80.3827736,27.6894212],[-80.3816352,27.6897333],[-80.3810293,27.6906927],[-80.3807836,27.6910817],[-80.3807869,27.6910811],[-80.3807902,27.6910806],[-80.3829363,27.6907032],[-80.3840009,27.6904904],[-80.3840013,27.6904931],[-80.3840017,27.6904959],[-80.3840344,27.690729],[-80.3841695,27.6916905],[-80.3841706,27.6916913],[-80.3841717,27.6916921],[-80.3861773,27.6931635],[-80.386557,27.6936253],[-80.3870526,27.6942281],[-80.3870523,27.6942286],[-80.3870519,27.6942291],[-80.386272,27.6952927],[-80.3857888,27.6961862],[-80.3856881,27.6963725],[-80.3855625,27.6966986],[-80.3850655,27.6979896],[-80.3850671,27.6979916],[-80.3850686,27.6979935],[-80.3856782,27.6987593],[-80.3859881,27.6991487],[-80.385989,27.6991507],[-80.3859899,27.6991527],[-80.387857,27.7033597],[-80.3878575,27.7033605],[-80.3878581,27.7033613],[-80.3890707,27.7051153],[-80.3891818,27.7052759],[-80.3908515,27.7068321],[-80.3909709,27.7069434],[-80.3909711,27.7069449],[-80.3909713,27.7069464],[-80.391178,27.708333],[-80.3913842,27.7100486],[-80.3909155,27.7109345],[-80.3903435,27.7120798],[-80.3903456,27.7120809],[-80.3903476,27.712082],[-80.3910545,27.7124749],[-80.3915166,27.7127316],[-80.3919136,27.7133136],[-80.3921319,27.7136336],[-80.3927771,27.7145795],[-80.3936239,27.7158209],[-80.3939287,27.7163286],[-80.3952819,27.7185824],[-80.3958593,27.7195586],[-80.3959201,27.7196614],[-80.3959201,27.7196617],[-80.3959201,27.719662],[-80.3960007,27.7210851],[-80.3958868,27.7223949],[-80.3941,27.7224581],[-80.3931582,27.7224914],[-80.3885989,27.7237926],[-80.3884691,27.7237953],[-80.3875951,27.7238131],[-80.3862857,27.7236629],[-80.3862843,27.7236627],[-80.3862829,27.7236625],[-80.386491,27.7188744],[-80.388703,27.719629],[-80.3903164,27.7200974],[-80.3915915,27.7208261],[-80.3911751,27.7174433],[-80.3911751,27.7174432],[-80.3911751,27.7174431],[-80.3901082,27.7154394],[-80.3891714,27.7159598],[-80.3890413,27.7172349],[-80.387662,27.716194],[-80.3866499,27.7142994],[-80.3866485,27.7142969],[-80.3866472,27.7142944],[-80.3867252,27.7117973],[-80.3867252,27.7117968],[-80.3867252,27.7117962],[-80.3849583,27.7091717],[-80.384957,27.7091698],[-80.3849557,27.7091679],[-80.3846174,27.7052906],[-80.3846174,27.7022784],[-80.3846174,27.7022752],[-80.3846174,27.702272],[-80.3838945,27.7026172],[-80.3828739,27.7031047],[-80.3827177,27.708153],[-80.3835505,27.7111977],[-80.3836025,27.7136959],[-80.3845914,27.7157256],[-80.3851899,27.7175993],[-80.3849037,27.7238707],[-80.3849051,27.7238719],[-80.3849065,27.7238731],[-80.3868293,27.7255362],[-80.3903448,27.7254157],[-80.3931835,27.7251242],[-80.3940004,27.7259004],[-80.3940007,27.725902],[-80.394001,27.7259035],[-80.3942114,27.7270872],[-80.393449,27.7300096],[-80.3933855,27.7353463],[-80.3930043,27.7372522],[-80.3930058,27.7372542],[-80.3930073,27.7372561],[-80.3947197,27.7394759],[-80.3977705,27.7426125],[-80.3994813,27.7447509],[-80.3994817,27.7447523],[-80.399482,27.7447537],[-80.4010494,27.7503821],[-80.4009069,27.753661],[-80.4009082,27.7536635],[-80.4009096,27.7536659],[-80.402974,27.7573676],[-80.4056114,27.7585794],[-80.4090978,27.7591215],[-80.4111745,27.7596811],[-80.4123865,27.760537],[-80.4136905,27.7613128],[-80.4141685,27.7620681],[-80.41417,27.7620706],[-80.4141716,27.762073],[-80.4149449,27.7632948],[-80.4175221,27.7652613],[-80.4185898,27.7665716],[-80.41859,27.7665728],[-80.4185903,27.766574],[-80.4189889,27.7685844],[-80.4189139,27.7711803],[-80.4179125,27.7725428],[-80.4171834,27.771834],[-80.4171817,27.7718323],[-80.4171799,27.7718306],[-80.4177353,27.7706061],[-80.4177371,27.7706022],[-80.4177388,27.7705984],[-80.4156555,27.7714664],[-80.4156569,27.771469],[-80.4156583,27.7714715],[-80.4169749,27.7738623],[-80.4179739,27.7743415],[-80.4179748,27.7743439],[-80.4179758,27.7743463],[-80.418706,27.7761424],[-80.4191315,27.777189],[-80.4197666,27.7808928],[-80.4213145,27.779611],[-80.4229126,27.7782722],[-80.4255516,27.7782722],[-80.4282975,27.7791601],[-80.4312852,27.7814466],[-80.4333981,27.7839784],[-80.4302188,27.7837071],[-80.4306965,27.7863065],[-80.4325608,27.7893884],[-80.4337223,27.7897433],[-80.4329762,27.790625],[-80.43127,27.7907918],[-80.4303185,27.7913425],[-80.4275413,27.7907799],[-80.427808,27.7889424],[-80.4279469,27.786963],[-80.4277386,27.7849489],[-80.4267662,27.7855046],[-80.4253772,27.7909565],[-80.4257156,27.7924497],[-80.4238482,27.7925249],[-80.423884,27.7896022],[-80.4244396,27.786963],[-80.4237798,27.7856087],[-80.4225991,27.783803],[-80.4218351,27.782657],[-80.420585,27.7835252],[-80.4213143,27.7854351],[-80.4225644,27.7904356],[-80.4225644,27.793561],[-80.4243007,27.7966516],[-80.4258612,27.7979473],[-80.4296343,27.7997658],[-80.4332319,27.8007288],[-80.4359557,27.8013104],[-80.4364286,27.8014114],[-80.4406228,27.8043672],[-80.4409954,27.8055663],[-80.4413216,27.8066163],[-80.4402349,27.808251],[-80.4399228,27.8087204],[-80.4378775,27.811364],[-80.4388076,27.8163606],[-80.4397706,27.8189254],[-80.4376879,27.8188277],[-80.4359687,27.8174119],[-80.4354161,27.8169568],[-80.4349941,27.8166709],[-80.4336308,27.8157473],[-80.4311573,27.8151786],[-80.4283635,27.8146671],[-80.4272693,27.8144668],[-80.4286466,27.817398],[-80.4280729,27.8194158],[-80.4301673,27.8211956],[-80.430684,27.825574],[-80.4330748,27.8298038],[-80.4355248,27.8343898],[-80.4419608,27.8460368],[-80.4467588,27.8469198],[-80.4493768,27.8485358],[-80.4513465,27.8503052],[-80.4527012,27.8518734],[-80.4536269,27.8524935],[-80.4487802,27.8582754],[-80.4480209,27.8591699],[-80.4477651,27.8594712],[-80.446972,27.8587405],[-80.4425668,27.8514938],[-80.4385378,27.8439562],[-80.4344162,27.8364145],[-80.4309343,27.8298953],[-80.4297912,27.8278312],[-80.4291132,27.8260834],[-80.4266539,27.8218008],[-80.4234619,27.8152122]]],[[[-80.9025755,25.1339785],[-80.9056749,25.1327229],[-80.909017,25.1332928],[-80.9072362,25.1355905],[-80.9048524,25.1368582],[-80.9039009,25.1373642],[-80.9006808,25.1372423],[-80.9011807,25.1345435],[-80.9025755,25.1339785]]],[[[-80.3561501,25.1597502],[-80.3570875,25.1575618],[-80.3578371,25.1558118],[-80.3580075,25.1547728],[-80.3582141,25.1535135],[-80.3590262,25.1534145],[-80.3606344,25.1532185],[-80.3620942,25.1531532],[-80.3625017,25.153135],[-80.3655337,25.1519949],[-80.3682619,25.1507242],[-80.3692592,25.1502596],[-80.3699462,25.1480641],[-80.3712529,25.1458758],[-80.3713016,25.1455578],[-80.371713,25.1428753],[-80.372436,25.1396409],[-80.3741698,25.1357004],[-80.3751519,25.1349369],[-80.3758954,25.134359],[-80.3766674,25.1319503],[-80.3788978,25.1289962],[-80.3811324,25.1279625],[-80.3831266,25.1261453],[-80.3855546,25.1217161],[-80.3886744,25.1207403],[-80.3909811,25.1187645],[-80.3923848,25.1168656],[-80.3929349,25.1161215],[-80.3963617,25.1132325],[-80.396732,25.1126898],[-80.3981767,25.1105722],[-80.3993799,25.1082765],[-80.3995819,25.1078912],[-80.4019564,25.1062375],[-80.4047026,25.105992],[-80.4072952,25.1043197],[-80.411603,25.1043197],[-80.409966,25.1072663],[-80.4030904,25.1128323],[-80.4020376,25.1155396],[-80.4012943,25.1174509],[-80.4007986,25.1187256],[-80.3984551,25.1213034],[-80.3983982,25.121256],[-80.3977943,25.1199385],[-80.3963121,25.1187856],[-80.3929633,25.1215305],[-80.3916492,25.1239641],[-80.3896668,25.1239641],[-80.3894481,25.1257133],[-80.3893394,25.1265833],[-80.3903811,25.1288752],[-80.3903215,25.12953],[-80.3902663,25.1295516],[-80.3897544,25.1297519],[-80.3896789,25.1297814],[-80.3895926,25.1297103],[-80.3878907,25.1298201],[-80.3879194,25.1296146],[-80.3825471,25.1325074],[-80.3823131,25.1334434],[-80.3828072,25.1348159],[-80.3814338,25.1365506],[-80.380721,25.137451],[-80.3789424,25.1376157],[-80.3778993,25.1388783],[-80.3773503,25.1403606],[-80.3777895,25.1419526],[-80.3795462,25.1416232],[-80.3801501,25.1432152],[-80.3827852,25.1426114],[-80.383444,25.1414585],[-80.3853501,25.1417462],[-80.3849514,25.1425436],[-80.3846615,25.1431234],[-80.3839326,25.1435139],[-80.3833761,25.1438121],[-80.3817233,25.1459698],[-80.3805863,25.146205],[-80.380392,25.1462452],[-80.3791065,25.1474389],[-80.3769488,25.1469339],[-80.3742861,25.1485866],[-80.3719447,25.1510657],[-80.3712102,25.1534529],[-80.3713314,25.1547484],[-80.371363,25.1550859],[-80.3698724,25.157551],[-80.3684937,25.1594102],[-80.3666381,25.1591236],[-80.363727,25.1586356],[-80.3611415,25.1608665],[-80.3610458,25.1609491],[-80.3585525,25.1614514],[-80.3576606,25.1616311],[-80.3561501,25.1597502]]],[[[-80.4830233,25.1300245],[-80.4818867,25.1278055],[-80.4836817,25.1270874],[-80.4865791,25.1259286],[-80.4865791,25.1292026],[-80.4857608,25.1292021],[-80.4853223,25.1299197],[-80.485103,25.1302786],[-80.4831609,25.1300719],[-80.4831585,25.1300657],[-80.4831561,25.1300594],[-80.4830733,25.1300377],[-80.4830233,25.1300245]]],[[[-80.5658814,25.1238791],[-80.5678823,25.1231516],[-80.5679462,25.1249518],[-80.5679849,25.1260427],[-80.5700179,25.1295805],[-80.5670194,25.1288592],[-80.5654744,25.1284875],[-80.5654132,25.127065],[-80.5653182,25.124855],[-80.5658658,25.1244075],[-80.5658724,25.1241826],[-80.5658814,25.1238791]]],[[[-80.7003764,25.1299638],[-80.6992795,25.1284222],[-80.6989046,25.1275745],[-80.6985977,25.1268807],[-80.6994129,25.1259993],[-80.6996946,25.1256948],[-80.7012954,25.125843],[-80.7018587,25.1268214],[-80.7017904,25.1279657],[-80.7017401,25.1288077],[-80.7028963,25.1292523],[-80.703587,25.1287593],[-80.7038413,25.1285777],[-80.7042911,25.1285907],[-80.7060735,25.1286422],[-80.7067503,25.1309125],[-80.707426,25.131952],[-80.7077476,25.1324468],[-80.7115233,25.1359819],[-80.711698,25.1366405],[-80.7119087,25.1374346],[-80.7134925,25.1393371],[-80.7145794,25.1411261],[-80.7132427,25.1419111],[-80.7122537,25.1433685],[-80.710041,25.1422373],[-80.7097742,25.14117],[-80.7099136,25.1395519],[-80.7100136,25.1383913],[-80.7067548,25.136224],[-80.7047541,25.1344186],[-80.7037857,25.1341143],[-80.7025702,25.1337585],[-80.7015326,25.1330174],[-80.7012911,25.132163],[-80.7011472,25.1316536],[-80.7003764,25.1299638]]],[[[-80.6454029,25.1376617],[-80.6430551,25.1358463],[-80.640767,25.1362351],[-80.6387178,25.1365145],[-80.6410065,25.1339015],[-80.6439289,25.1330332],[-80.6444025,25.1328925],[-80.6441899,25.1322507],[-80.6435032,25.130178],[-80.6411223,25.128996],[-80.6399891,25.1271315],[-80.6397032,25.1243093],[-80.6425664,25.1262018],[-80.6450203,25.1278808],[-80.6457287,25.1285615],[-80.6469325,25.1297181],[-80.6464429,25.1320931],[-80.6459404,25.1345302],[-80.6454029,25.1376617]]],[[[-80.5045275,25.1355265],[-80.5071617,25.1309166],[-80.5086664,25.1312678],[-80.5091779,25.1343794],[-80.509647,25.1372326],[-80.5082357,25.1380794],[-80.5078189,25.1383295],[-80.5052908,25.1370168],[-80.5049181,25.1362891],[-80.5045275,25.1355265]]],[[[-80.472808,25.1329676],[-80.4743757,25.1328088],[-80.4742763,25.1340175],[-80.4741474,25.1355827],[-80.4739643,25.1378074],[-80.4739273,25.1382577],[-80.4738102,25.1396796],[-80.4728905,25.1392951],[-80.4714792,25.1387052],[-80.4715023,25.1371595],[-80.4713283,25.1371137],[-80.471191,25.1370776],[-80.471191,25.1344411],[-80.4719853,25.133051],[-80.472808,25.1329676]]],[[[-80.5583469,25.1413465],[-80.5599373,25.1393715],[-80.5615529,25.1403892],[-80.5620646,25.1407115],[-80.5634006,25.1436426],[-80.5639952,25.1479728],[-80.5614146,25.145842],[-80.560511,25.1441858],[-80.5583469,25.1413465]]],[[[-80.5072606,25.1471888],[-80.5095758,25.1467168],[-80.5099113,25.1478757],[-80.5101833,25.1488156],[-80.5120781,25.1491211],[-80.514179,25.1494598],[-80.5129843,25.1504603],[-80.5114108,25.151778],[-80.5093935,25.1545452],[-80.5082273,25.1526521],[-80.5068979,25.1516769],[-80.5065723,25.151438],[-80.5063097,25.1508868],[-80.5053258,25.1488225],[-80.5063207,25.1479824],[-80.5072606,25.1471888]]],[[[-80.5751132,25.1543308],[-80.5751113,25.1536717],[-80.5769983,25.1544415],[-80.5772071,25.1572087],[-80.5787631,25.1595795],[-80.5781722,25.1595592],[-80.5751741,25.1594561],[-80.5731554,25.1571603],[-80.575117,25.1556176],[-80.5751132,25.1543308]]],[[[-80.4769866,25.1138035],[-80.4763679,25.1090076],[-80.4766952,25.1091555],[-80.4789034,25.1101532],[-80.4812069,25.1124548],[-80.4809377,25.1160698],[-80.478997,25.1173627],[-80.4789387,25.1151492],[-80.4769866,25.1138035]]],[[[-80.6987435,25.1173457],[-80.7003787,25.116297],[-80.7010419,25.118163],[-80.7012405,25.118722],[-80.7011763,25.1213463],[-80.6987936,25.1217606],[-80.6973356,25.1220142],[-80.6950618,25.1216933],[-80.6952633,25.1199728],[-80.6982423,25.1176672],[-80.6987435,25.1173457]]],[[[-80.5637557,25.1090947],[-80.5641744,25.1082486],[-80.5661389,25.1089034],[-80.5666183,25.1105335],[-80.5677759,25.1144693],[-80.5677759,25.1161063],[-80.56611,25.1161063],[-80.5661389,25.1151241],[-80.5658889,25.1147955],[-80.5628873,25.1108496],[-80.5637557,25.1090947]]],[[[-80.8785777,25.108516],[-80.8812352,25.1080695],[-80.8823713,25.1086073],[-80.8831556,25.1089785],[-80.8823422,25.1112125],[-80.8813467,25.11322],[-80.8810178,25.1145311],[-80.8807282,25.1156855],[-80.8798152,25.1179651],[-80.87744,25.1167275],[-80.8766108,25.1154814],[-80.875805,25.1142705],[-80.8760231,25.1111899],[-80.8785777,25.108516]]],[[[-80.8295142,25.1168925],[-80.8289049,25.1150441],[-80.8300593,25.1154114],[-80.8315201,25.1158762],[-80.8328671,25.1170308],[-80.8334673,25.1175452],[-80.8341059,25.1198469],[-80.8324984,25.1212273],[-80.8311076,25.1192662],[-80.8295142,25.1168925]]],[[[-80.7821107,25.1243911],[-80.7817359,25.1217327],[-80.7835641,25.1228603],[-80.7838193,25.1230177],[-80.7878789,25.1259207],[-80.7893635,25.127425],[-80.7905793,25.1286571],[-80.7907213,25.1296314],[-80.7911127,25.1323177],[-80.7884813,25.1307615],[-80.7866238,25.128748],[-80.7842596,25.1269968],[-80.7821107,25.1243911]]],[[[-80.6781623,25.1191585],[-80.6775417,25.1167871],[-80.6772349,25.1156148],[-80.6801908,25.1173579],[-80.682919,25.1163014],[-80.6847886,25.1191192],[-80.6839628,25.1216596],[-80.68362,25.1227141],[-80.6803849,25.1215331],[-80.6787839,25.1198226],[-80.6781623,25.1191585]]],[[[-81.0445125,25.2414856],[-81.0452685,25.2405819],[-81.0460565,25.2401194],[-81.0463724,25.239934],[-81.0475722,25.239982],[-81.049084,25.23967],[-81.0493719,25.2413498],[-81.0483761,25.2409298],[-81.0470443,25.2414698],[-81.0459164,25.2410618],[-81.0445125,25.2414856]]],[[[-81.0275249,25.2279125],[-81.028147,25.2278373],[-81.0282216,25.2279036],[-81.0284112,25.2280722],[-81.028039,25.2286556],[-81.028663,25.2301194],[-81.0284757,25.2305038],[-81.0283843,25.2306912],[-81.0271212,25.2300597],[-81.0270716,25.2298187],[-81.0269112,25.2290396],[-81.0266435,25.2286757],[-81.0261996,25.2280725],[-81.0275249,25.2279125]]],[[[-81.0522308,25.2625342],[-81.0513636,25.262021],[-81.0513636,25.2608258],[-81.0527336,25.2605344],[-81.0541036,25.2607676],[-81.0550072,25.2592518],[-81.0536664,25.2586688],[-81.0524421,25.2586397],[-81.0514219,25.2586397],[-81.0515146,25.2588964],[-81.0518008,25.259689],[-81.0505733,25.2594435],[-81.0501976,25.2593684],[-81.0498527,25.2583519],[-81.0496438,25.257736],[-81.0479531,25.2577652],[-81.0480697,25.256745],[-81.0477199,25.2556665],[-81.0466627,25.2554592],[-81.0462333,25.255375],[-81.0453589,25.2542966],[-81.0454171,25.2559871],[-81.0444552,25.256366],[-81.0441124,25.2554519],[-81.0439306,25.2549669],[-81.0438963,25.2544986],[-81.0438431,25.2537719],[-81.0436298,25.2543183],[-81.0433767,25.2549669],[-81.0423565,25.2551126],[-81.0419347,25.2549746],[-81.0407533,25.2545879],[-81.038772,25.2549879],[-81.0386429,25.2570263],[-81.0376625,25.2583422],[-81.0389268,25.2598129],[-81.0383792,25.2609801],[-81.0379463,25.2619029],[-81.0376261,25.2630217],[-81.0371971,25.2613797],[-81.0371971,25.2603595],[-81.0363215,25.2600045],[-81.0361186,25.2599222],[-81.0366141,25.2586397],[-81.0367832,25.2582532],[-81.0374303,25.2567742],[-81.0363518,25.2549377],[-81.035244,25.2539429],[-81.0349235,25.2536552],[-81.0348015,25.2524152],[-81.0347486,25.2518771],[-81.0359729,25.2515273],[-81.0364393,25.250303],[-81.0380716,25.2489039],[-81.0405201,25.246776],[-81.0413145,25.246262],[-81.0425023,25.2454934],[-81.0428406,25.2455901],[-81.0437265,25.2458432],[-81.0444261,25.2441526],[-81.0454365,25.2442294],[-81.0474762,25.2432455],[-81.0495399,25.2432455],[-81.0505895,25.2437475],[-81.0506438,25.2437734],[-81.0518916,25.2446133],[-81.0534922,25.2448701],[-81.0544357,25.2453782],[-81.0550149,25.2461745],[-81.0551994,25.2464282],[-81.0563449,25.2476214],[-81.05897,25.2476214],[-81.0593828,25.2482247],[-81.0595905,25.2485283],[-81.0587791,25.249817],[-81.0588563,25.2504862],[-81.0589223,25.2510579],[-81.0594497,25.2516556],[-81.0596383,25.2518693],[-81.0606406,25.2520603],[-81.0616429,25.2522989],[-81.0625497,25.2539694],[-81.0636952,25.2544945],[-81.0656999,25.2544467],[-81.0672275,25.2551126],[-81.0675613,25.2552581],[-81.0691841,25.25564],[-81.0700909,25.2575969],[-81.0687237,25.2586404],[-81.067531,25.2588417],[-81.0669991,25.2593213],[-81.0665863,25.2596936],[-81.06579,25.2602297],[-81.0650219,25.2607468],[-81.0631478,25.261227],[-81.0619397,25.2624506],[-81.0608395,25.2626687],[-81.0589778,25.262372],[-81.0570013,25.2625037],[-81.0546823,25.2625564],[-81.0538402,25.2627095],[-81.0535228,25.2627673],[-81.0532065,25.2644011],[-81.0521856,25.2644248],[-81.0520734,25.2644274],[-81.0522656,25.2640099],[-81.0527919,25.2628663],[-81.0522308,25.2625342]]],[[[-81.0086726,25.257066],[-81.0075022,25.256752],[-81.0082729,25.2558386],[-81.0086726,25.257066]]],[[[-81.0086726,25.257066],[-81.0091295,25.2570004],[-81.0101641,25.2568519],[-81.0111299,25.2566202],[-81.0118329,25.2564516],[-81.0105958,25.2572885],[-81.0097225,25.2579798],[-81.0090265,25.2573741],[-81.0086726,25.257066]]],[[[-80.9722021,25.2626368],[-80.9722021,25.2614786],[-80.9683912,25.2583775],[-80.968519,25.2576655],[-80.9686527,25.2569204],[-80.9695867,25.2563973],[-80.9684285,25.2565841],[-80.9675692,25.2574061],[-80.9666351,25.2579665],[-80.9656875,25.2583969],[-80.9650561,25.2586836],[-80.9653542,25.2565223],[-80.9656918,25.2553071],[-80.9672174,25.2553299],[-80.9694532,25.2548827],[-80.9708692,25.2555534],[-80.9730292,25.2533098],[-80.9754899,25.2534667],[-80.9763976,25.2523185],[-80.9773448,25.2511204],[-80.977949,25.2498449],[-80.9784457,25.2508052],[-80.9789424,25.2516993],[-80.9774523,25.2523285],[-80.977318,25.2533448],[-80.9772205,25.2540836],[-80.9762932,25.2554414],[-80.9748031,25.2560374],[-80.9737434,25.2574283],[-80.9757303,25.2598457],[-80.9772536,25.2607741],[-80.9774111,25.262341],[-80.9755244,25.262049],[-80.9747651,25.2628977],[-80.9735144,25.2625403],[-80.9722637,25.2638357],[-80.9716181,25.265281],[-80.9711418,25.2648479],[-80.9708463,25.2645793],[-80.9722021,25.2626368]]],[[[-81.0441192,25.31003],[-81.0441192,25.3086082],[-81.0428228,25.3095281],[-81.04161,25.3096118],[-81.0428228,25.3080645],[-81.04391,25.3060154],[-81.0442856,25.3055014],[-81.0454992,25.3038407],[-81.0479147,25.304497],[-81.0471374,25.3053948],[-81.0463622,25.3062902],[-81.0472617,25.3065501],[-81.0481445,25.3068051],[-81.0492139,25.3056961],[-81.0499664,25.304904],[-81.0515111,25.3045475],[-81.0527784,25.3041514],[-81.0516299,25.3032405],[-81.0506397,25.3025275],[-81.049053,25.3030424],[-81.0483678,25.3021991],[-81.0474607,25.3007973],[-81.0453991,25.2989006],[-81.0453991,25.2977461],[-81.042183,25.2961793],[-81.0416554,25.296504],[-81.041111,25.296839],[-81.0390494,25.2970039],[-81.0374843,25.2966709],[-81.0351736,25.2961793],[-81.0339367,25.2952722],[-81.033907,25.2951237],[-81.0335243,25.2932106],[-81.0322874,25.2925509],[-81.0329653,25.2919346],[-81.0331945,25.2917262],[-81.0361632,25.2914788],[-81.0378125,25.2909841],[-81.0389669,25.2909841],[-81.0386371,25.292221],[-81.0388524,25.2924031],[-81.0397091,25.2931281],[-81.0408636,25.2931281],[-81.042348,25.293458],[-81.0444096,25.2932106],[-81.0461413,25.292386],[-81.0466635,25.2920011],[-81.0477081,25.2912314],[-81.050399,25.2911052],[-81.0512543,25.2918751],[-81.0529651,25.2909342],[-81.0591238,25.289309],[-81.0608529,25.2902772],[-81.0612622,25.2905065],[-81.0643416,25.2905065],[-81.0647641,25.2900558],[-81.0656247,25.2891379],[-81.0658626,25.2877309],[-81.0673437,25.2877309],[-81.0679908,25.286976],[-81.068711,25.2861358],[-81.0707618,25.2867624],[-81.0725415,25.2870593],[-81.0732974,25.2862588],[-81.0737566,25.2850063],[-81.0744077,25.28756],[-81.0751019,25.2889484],[-81.0753762,25.2894969],[-81.0754877,25.2904722],[-81.075604,25.2914908],[-81.073895,25.2930289],[-81.0728696,25.2926871],[-81.0724139,25.2937695],[-81.0699073,25.2950797],[-81.0699245,25.2955453],[-81.0699643,25.2966178],[-81.0717872,25.2966178],[-81.0731542,25.2958205],[-81.0719012,25.2969597],[-81.0729836,25.2974724],[-81.0755471,25.2966179],[-81.075775,25.2978711],[-81.0739568,25.2982399],[-81.0716054,25.2975201],[-81.0704537,25.298],[-81.0684467,25.2967945],[-81.0668464,25.2961045],[-81.0649832,25.2954567],[-81.0625359,25.294257],[-81.0634956,25.2933453],[-81.062296,25.2929134],[-81.0617835,25.2925088],[-81.0613842,25.2921936],[-81.0602325,25.2919056],[-81.058457,25.2933453],[-81.0576469,25.2936153],[-81.0574493,25.2936811],[-81.0573053,25.2925295],[-81.0560097,25.2924335],[-81.0569694,25.294257],[-81.0571581,25.2949578],[-81.0573053,25.2955047],[-81.058553,25.2960325],[-81.0598966,25.2956006],[-81.0587929,25.2964644],[-81.0600983,25.2972706],[-81.0604245,25.2974721],[-81.0620081,25.2952647],[-81.0624554,25.2954991],[-81.0640234,25.2963205],[-81.062248,25.2971362],[-81.0618641,25.298096],[-81.0611443,25.2988158],[-81.0600886,25.299977],[-81.0610963,25.3004569],[-81.062296,25.300121],[-81.0633517,25.3006968],[-81.0649352,25.3003129],[-81.0662309,25.3004089],[-81.0683423,25.3011287],[-81.0711255,25.3010807],[-81.0722293,25.3017526],[-81.0723252,25.3033361],[-81.0712215,25.3041039],[-81.0693981,25.3050636],[-81.0706936,25.3052076],[-81.0696648,25.3058817],[-81.069302,25.3061194],[-81.068627,25.3052911],[-81.0676056,25.3044231],[-81.0657846,25.3052355],[-81.0639815,25.30604],[-81.061403,25.3060937],[-81.0598357,25.3078411],[-81.0583718,25.3067229],[-81.0576812,25.3059285],[-81.0561201,25.3050364],[-81.054782,25.3049806],[-81.0533323,25.3051479],[-81.0522173,25.3059842],[-81.0512137,25.3054824],[-81.0500986,25.305817],[-81.0495904,25.3068892],[-81.0491144,25.3079663],[-81.0489984,25.3096003],[-81.0478149,25.3107101],[-81.0467119,25.3117445],[-81.0461683,25.3127482],[-81.0444537,25.3129573],[-81.0430579,25.3121621],[-81.0441192,25.31003]]],[[[-81.0027255,25.3021973],[-81.0027256,25.3006453],[-81.0032968,25.3016688],[-81.004515,25.3011549],[-81.004001,25.2997082],[-81.0023069,25.2996701],[-81.0030449,25.2993699],[-81.00343,25.2992133],[-81.0040744,25.2990441],[-81.0049528,25.2988135],[-81.0069797,25.2998444],[-81.0069797,25.298729],[-81.0083739,25.2984966],[-81.0094449,25.2984058],[-81.0103343,25.300059],[-81.0081103,25.3012612],[-81.0062469,25.3018022],[-81.0057661,25.3030043],[-81.0041431,25.3037857],[-81.0026399,25.304306],[-81.0026881,25.3031192],[-81.0027255,25.3021973]]],[[[-81.0619393,25.309437],[-81.0616956,25.3088277],[-81.0623528,25.3074976],[-81.0638143,25.3073781],[-81.066602,25.3067648],[-81.0662675,25.3079914],[-81.0652639,25.3081029],[-81.0653752,25.3083891],[-81.0656542,25.3091065],[-81.0671038,25.3091065],[-81.0673105,25.3088671],[-81.0677872,25.3083152],[-81.0691581,25.3094785],[-81.0700746,25.3113116],[-81.0686302,25.3117338],[-81.0678648,25.3119744],[-81.0669507,25.3122617],[-81.0661551,25.3125872],[-81.065895,25.3126936],[-81.066003,25.313212],[-81.0660998,25.3136766],[-81.0651524,25.3141802],[-81.0631667,25.3142353],[-81.0631559,25.3142356],[-81.0631452,25.3142359],[-81.0618071,25.3126748],[-81.0616398,25.3113925],[-81.0619698,25.3104391],[-81.0621416,25.3099428],[-81.0619393,25.309437]]],[[[-81.0580365,25.327008],[-81.0583925,25.3250115],[-81.0571701,25.3249439],[-81.0564439,25.3245763],[-81.0558611,25.3242812],[-81.0547893,25.3234101],[-81.0535182,25.3237203],[-81.0533062,25.3234838],[-81.0525673,25.3226594],[-81.0515434,25.3214183],[-81.0503924,25.3215384],[-81.0497736,25.3210588],[-81.0495917,25.3209179],[-81.0487353,25.3214099],[-81.0482505,25.3216885],[-81.048794,25.3226794],[-81.0478374,25.3229369],[-81.0473348,25.3230722],[-81.0464636,25.3235492],[-81.0464411,25.3235615],[-81.0459517,25.3223168],[-81.0453772,25.3231998],[-81.0442765,25.3228285],[-81.0418415,25.3230894],[-81.0422928,25.3218788],[-81.0424791,25.3213791],[-81.0414646,25.321524],[-81.0409138,25.3227416],[-81.0407552,25.3226756],[-81.0383338,25.321669],[-81.0395546,25.3203835],[-81.0410664,25.3194811],[-81.0424045,25.3186865],[-81.0403136,25.3178919],[-81.0404391,25.3168047],[-81.0418191,25.3170974],[-81.0431125,25.3165745],[-81.0437846,25.3163028],[-81.0445403,25.3160583],[-81.0466283,25.3153828],[-81.049012,25.315341],[-81.0498409,25.3147298],[-81.0508806,25.3153751],[-81.0520202,25.3160824],[-81.052619,25.3171196],[-81.053423,25.3185123],[-81.0564791,25.3185123],[-81.0595101,25.3204411],[-81.0608127,25.3199652],[-81.0613404,25.3205834],[-81.0615282,25.3208034],[-81.0632077,25.3214752],[-81.0645034,25.3215232],[-81.0651752,25.3198436],[-81.0660415,25.3189644],[-81.0663177,25.3214503],[-81.0673305,25.3232918],[-81.0660415,25.3246729],[-81.0657155,25.3242166],[-81.0651207,25.3233839],[-81.0648001,25.3235072],[-81.0639238,25.3238443],[-81.0650286,25.3254096],[-81.0641079,25.3265144],[-81.0639309,25.3264415],[-81.0625427,25.3258699],[-81.0603329,25.3265144],[-81.0601178,25.3274825],[-81.0599646,25.3281717],[-81.0600566,25.3311181],[-81.0590858,25.3307303],[-81.0574323,25.3304785],[-81.057345,25.3303165],[-81.0567158,25.3291483],[-81.0573122,25.3284967],[-81.0578821,25.3278741],[-81.0580365,25.327008]]],[[[-81.0607612,25.3191934],[-81.0602366,25.3190884],[-81.0592095,25.3192888],[-81.0583578,25.3184371],[-81.0568047,25.3176606],[-81.0555088,25.3176386],[-81.053908,25.3176115],[-81.0538046,25.3171828],[-81.0536552,25.3165634],[-81.053857,25.3161276],[-81.0541133,25.3155742],[-81.0543798,25.3150908],[-81.0546755,25.3145544],[-81.0557025,25.3141286],[-81.0558631,25.3138762],[-81.0564039,25.3130264],[-81.0563158,25.3121833],[-81.0562286,25.311348],[-81.0587335,25.3114733],[-81.0592424,25.3127305],[-81.0610266,25.3132881],[-81.0627549,25.3148492],[-81.0642603,25.3150165],[-81.0659887,25.3146262],[-81.0651556,25.31542],[-81.0647433,25.3158127],[-81.0641674,25.3173483],[-81.0640235,25.3191238],[-81.0627758,25.3199876],[-81.061489,25.3193389],[-81.0607612,25.3191934]]],[[[-80.974947,25.3262],[-80.9752731,25.3248025],[-80.974351,25.3252635],[-80.9740619,25.325408],[-80.9737359,25.3236845],[-80.9729439,25.3248025],[-80.9724781,25.3261068],[-80.9716396,25.3248491],[-80.9718339,25.3241913],[-80.9722452,25.3227993],[-80.9724974,25.3219307],[-80.9726644,25.3213552],[-80.9722904,25.3208166],[-80.9714999,25.3196783],[-80.973105,25.3199811],[-80.9743139,25.3217251],[-80.9763948,25.32119],[-80.9768905,25.3205704],[-80.9771082,25.3202982],[-80.9781079,25.3202558],[-80.9787299,25.3209296],[-80.9789189,25.3211344],[-80.9784458,25.3230944],[-80.9787767,25.3235234],[-80.9792123,25.3240883],[-80.9783477,25.3247559],[-80.9781735,25.3247658],[-80.9767172,25.324849],[-80.9759719,25.3258273],[-80.974947,25.3262]]],[[[-81.0521683,25.3320622],[-81.0516003,25.331652],[-81.0484032,25.3318416],[-81.0459578,25.3304236],[-81.0466539,25.3295618],[-81.0468428,25.3298233],[-81.0474837,25.3307107],[-81.0475992,25.3301751],[-81.0477178,25.3296256],[-81.0488242,25.3292001],[-81.0488451,25.3288589],[-81.048888,25.3281575],[-81.049929,25.328234],[-81.0503349,25.3282639],[-81.0508448,25.3284183],[-81.0516816,25.3286716],[-81.0529508,25.3293327],[-81.0529821,25.329349],[-81.0535269,25.330758],[-81.0537678,25.331381],[-81.0530634,25.3327086],[-81.0521683,25.3320622]]],[[[-80.9867423,25.3295386],[-80.9911292,25.3280864],[-80.9917757,25.3287668],[-80.9921654,25.3291769],[-80.9940577,25.3282307],[-80.9950715,25.3269466],[-80.9956797,25.3253247],[-80.9978424,25.3243109],[-80.9989238,25.3230268],[-80.9999878,25.3229086],[-81.0001403,25.3228916],[-81.0017623,25.3212696],[-81.0029788,25.318769],[-81.0029214,25.3185684],[-81.0022122,25.3160884],[-81.0029496,25.3159009],[-81.0042634,25.315567],[-81.0043355,25.3158074],[-81.004624,25.3167691],[-81.0060666,25.3175505],[-81.0043836,25.321698],[-81.0046143,25.321983],[-81.0054053,25.3229602],[-81.0041052,25.3231623],[-81.0006729,25.3266538],[-81.0006137,25.3281332],[-81.0029512,25.3300269],[-81.0032175,25.33124],[-81.0024778,25.3335183],[-81.0009392,25.333755],[-81.0007025,25.3323644],[-80.9986905,25.3324235],[-80.9977415,25.3320467],[-80.9978606,25.3298184],[-80.9978606,25.3285123],[-80.998173,25.3263261],[-80.9992519,25.3249917],[-81.0004727,25.3251053],[-81.0010898,25.3244588],[-81.0016652,25.323856],[-81.0002172,25.3234301],[-80.9985137,25.3243387],[-80.9977471,25.3252472],[-80.9976819,25.32588],[-80.9975483,25.3271779],[-80.997204,25.3274153],[-80.9967249,25.3277458],[-80.996642,25.3281709],[-80.9964978,25.3289098],[-80.9960151,25.3303579],[-80.9954978,25.332253],[-80.9933335,25.3331668],[-80.9898888,25.3346214],[-80.9882248,25.335408],[-80.9865306,25.3351659],[-80.986559,25.3342284],[-80.9865911,25.3331691],[-80.9864136,25.332662],[-80.9859557,25.3313539],[-80.9867423,25.3295386]]],[[[-81.0042235,25.3331632],[-81.005052,25.3317134],[-81.0062059,25.3316246],[-81.0084251,25.3319501],[-81.0100229,25.3303819],[-81.0102621,25.3287459],[-81.0123178,25.32837],[-81.0130993,25.3275886],[-81.014061,25.3280093],[-81.0142413,25.3266869],[-81.0154098,25.3268463],[-81.0155637,25.3268673],[-81.0152304,25.3283995],[-81.0148062,25.3285352],[-81.013751,25.3288729],[-81.0141948,25.3298493],[-81.0090464,25.3344355],[-81.0077845,25.3345643],[-81.0042235,25.3331632]]],[[[-81.000884,25.2718791],[-81.0012387,25.270815],[-81.002519,25.2701167],[-81.0040903,25.2681962],[-81.0067752,25.2673675],[-81.011651,25.2656209],[-81.0126334,25.2659484],[-81.0135431,25.2650751],[-81.0136086,25.2635024],[-81.0144891,25.2626736],[-81.0142311,25.2616159],[-81.0141253,25.2611818],[-81.0130701,25.2623825],[-81.0122696,25.2630375],[-81.0129245,25.2621278],[-81.0145983,25.2601994],[-81.0147438,25.2589987],[-81.0135795,25.258562],[-81.0126698,25.2603085],[-81.0120149,25.2594717],[-81.0125243,25.2577979],[-81.0138706,25.2575432],[-81.0145619,25.2565244],[-81.014853,25.254414],[-81.014544,25.2543447],[-81.0127426,25.253941],[-81.0114607,25.2547296],[-81.0127789,25.2549598],[-81.010705,25.2557966],[-81.0093766,25.2562899],[-81.0097497,25.2554254],[-81.0099286,25.2550108],[-81.0111132,25.2543399],[-81.0115271,25.2532409],[-81.0107564,25.2525129],[-81.0102737,25.2527651],[-81.0098002,25.2530125],[-81.0104462,25.2498556],[-81.0092007,25.2511998],[-81.0075736,25.2516851],[-81.0078335,25.2520225],[-81.0082444,25.2525558],[-81.0074165,25.2535121],[-81.0073023,25.254554],[-81.0063461,25.25424],[-81.0050187,25.2549679],[-81.0054897,25.2562525],[-81.006145,25.2559537],[-81.0064602,25.25581],[-81.007131,25.2548966],[-81.0069455,25.256067],[-81.0061034,25.2567235],[-81.0056579,25.2567408],[-81.0050044,25.2567663],[-81.0039931,25.2568901],[-81.0036057,25.2569376],[-81.0036627,25.258579],[-81.004577,25.259177],[-81.0044296,25.2603865],[-81.0055381,25.2603813],[-81.0051209,25.2607389],[-81.004774,25.2610363],[-81.0039008,25.2618004],[-81.0056473,25.2627828],[-81.006848,25.263365],[-81.0050084,25.2633265],[-81.0038784,25.2633669],[-81.0029097,25.2625193],[-81.0012147,25.2621158],[-81.0021429,25.2617864],[-81.0024658,25.2616718],[-81.0031922,25.2602996],[-81.0029501,25.2587256],[-81.0029501,25.2574745],[-81.001547,25.2575554],[-81.0008514,25.2575955],[-80.9997617,25.2562233],[-80.9994388,25.255174],[-80.9978245,25.2547704],[-80.9962908,25.2542861],[-80.9966903,25.2529706],[-80.9966903,25.2519584],[-80.9949041,25.2499936],[-80.9955015,25.2493481],[-80.9959164,25.2488998],[-80.9967493,25.2497357],[-80.9971672,25.249273],[-80.9977132,25.2486685],[-80.9979142,25.2486571],[-80.9995378,25.2485652],[-80.9997026,25.248071],[-80.9999166,25.2474291],[-80.999733,25.2473556],[-80.9987116,25.2469471],[-80.9971969,25.2472913],[-80.9983673,25.2466028],[-80.9997444,25.2461897],[-80.9999399,25.2455678],[-81.0001231,25.2449848],[-81.0012248,25.2452602],[-81.0028773,25.2448471],[-81.0029291,25.2444737],[-81.0030494,25.2436077],[-81.0019478,25.2431601],[-81.0010527,25.2437454],[-81.0004237,25.2433028],[-81.0001231,25.2430913],[-80.9991936,25.2436077],[-80.9978509,25.2439864],[-80.9967837,25.2441241],[-80.9955717,25.2442507],[-80.9958567,25.2431462],[-80.9954399,25.2418959],[-80.993356,25.2410028],[-80.9942227,25.2404394],[-80.9945468,25.2402287],[-80.9929987,25.2397524],[-80.9921056,25.2417768],[-80.9910338,25.2449921],[-80.9900812,25.2454684],[-80.9904004,25.2442484],[-80.9910486,25.2435412],[-80.9911289,25.2434536],[-80.9905865,25.2429845],[-80.9899037,25.2423939],[-80.990864,25.2419634],[-80.9918574,25.2411686],[-80.9918017,25.2410976],[-80.9911289,25.2402414],[-80.9908668,25.2394114],[-80.9907315,25.238983],[-80.9895725,25.2406057],[-80.9889764,25.2419634],[-80.988579,25.2424602],[-80.9881816,25.2429569],[-80.9881816,25.2440827],[-80.9875193,25.2423939],[-80.9886121,25.2404732],[-80.9888952,25.2399637],[-80.9896056,25.238685],[-80.9901686,25.2371948],[-80.9897332,25.2367027],[-80.9894069,25.2363338],[-80.9901685,25.2351086],[-80.988844,25.234943],[-80.9885459,25.2367312],[-80.9871551,25.2365656],[-80.9875856,25.2377578],[-80.9871219,25.2386519],[-80.9863603,25.2393473],[-80.9864914,25.2396296],[-80.9867908,25.2402745],[-80.9863426,25.2411182],[-80.9856649,25.2423939],[-80.9853826,25.2416353],[-80.985135,25.2409699],[-80.9851762,25.2404342],[-80.9852344,25.2396785],[-80.9857973,25.238536],[-80.9854875,25.2378329],[-80.9853669,25.2375591],[-80.9866915,25.2376915],[-80.9866915,25.2360027],[-80.9854662,25.2348767],[-80.984868,25.2360204],[-80.9843403,25.2370292],[-80.9828169,25.2379234],[-80.9824371,25.2390207],[-80.9822209,25.2396453],[-80.9821608,25.2399199],[-80.9819891,25.240705],[-80.9817314,25.2413207],[-80.981393,25.242129],[-80.9814019,25.2423707],[-80.9814478,25.243625],[-80.9796894,25.2430201],[-80.9793636,25.2429081],[-80.9800186,25.2414791],[-80.9799072,25.2407737],[-80.97984,25.2403478],[-80.9785301,25.2386211],[-80.9790462,25.2385677],[-80.9802568,25.2384424],[-80.9810308,25.2373111],[-80.9824003,25.2364776],[-80.9836506,25.2353463],[-80.9836065,25.2350814],[-80.983472,25.2342745],[-80.9850797,25.234215],[-80.9852583,25.2330837],[-80.984901,25.2311783],[-80.9854369,25.2301662],[-80.9864491,25.2304043],[-80.987759,25.230047],[-80.9881524,25.2297061],[-80.9886522,25.229273],[-80.9878186,25.2283799],[-80.9870445,25.2274867],[-80.9857942,25.227844],[-80.9836507,25.228618],[-80.9827261,25.2295888],[-80.9824598,25.2298684],[-80.9816858,25.2317142],[-80.9797805,25.2307616],[-80.9809117,25.2301066],[-80.9810533,25.2299744],[-80.9818049,25.229273],[-80.9807926,25.2292135],[-80.9803241,25.2287896],[-80.9795423,25.2280822],[-80.9776369,25.2269509],[-80.9762675,25.2275463],[-80.9755708,25.2279561],[-80.9752553,25.2281417],[-80.9757911,25.2298684],[-80.9760636,25.2305155],[-80.9762675,25.2309997],[-80.9750171,25.2308806],[-80.972814,25.2307615],[-80.9716095,25.2308378],[-80.9714519,25.2308478],[-80.9695988,25.2290348],[-80.969519,25.228077],[-80.9694797,25.2276058],[-80.9687326,25.2274778],[-80.9673957,25.2272486],[-80.9665622,25.227844],[-80.9664783,25.2287385],[-80.9663835,25.2297493],[-80.9655414,25.2304363],[-80.9641209,25.2315951],[-80.9640029,25.2312149],[-80.9635851,25.2298684],[-80.9624538,25.2285585],[-80.9622862,25.2277021],[-80.9621424,25.2269673],[-80.9622807,25.2253233],[-80.9623942,25.2239738],[-80.9623347,25.2228425],[-80.9629673,25.2223097],[-80.963466,25.2218898],[-80.9648354,25.2219494],[-80.9663835,25.2213539],[-80.9665055,25.2211482],[-80.9673362,25.2197463],[-80.9674697,25.2192792],[-80.9676934,25.2184959],[-80.9683292,25.2184585],[-80.9697179,25.2183768],[-80.9710873,25.2177814],[-80.9720995,25.2179005],[-80.9726272,25.2187448],[-80.972695,25.2188532],[-80.9747194,25.2194486],[-80.9760293,25.2183769],[-80.9785301,25.2176028],[-80.9799591,25.2173051],[-80.980614,25.2181387],[-80.9822812,25.2185555],[-80.9843652,25.2182578],[-80.9860919,25.2187936],[-80.9891285,25.2196272],[-80.9909148,25.2194486],[-80.9918409,25.2185595],[-80.9924033,25.2180196],[-80.9926971,25.2185705],[-80.9928797,25.2189127],[-80.9938918,25.2188532],[-80.9946659,25.2179005],[-80.9947254,25.2167097],[-80.9966903,25.2167692],[-80.9976309,25.2166702],[-80.9978216,25.2166501],[-80.9992506,25.2168883],[-80.9995555,25.2168435],[-81.001275,25.2165906],[-81.001275,25.2179601],[-81.0010116,25.2183433],[-81.0006201,25.2189127],[-81.0003224,25.2207585],[-81.0003844,25.220955],[-81.0006796,25.2218898],[-81.0021086,25.2211158],[-81.0036786,25.2223591],[-81.0035819,25.2235895],[-81.0035376,25.2241524],[-81.0033327,25.2249378],[-81.0031804,25.2255219],[-81.004014,25.2261769],[-81.0039544,25.227189],[-81.0052643,25.2276654],[-81.0055253,25.2284854],[-81.0056811,25.2289753],[-81.0066138,25.2290019],[-81.0077651,25.2290348],[-81.0091345,25.2283203],[-81.0103254,25.2277249],[-81.0118735,25.2277845],[-81.0127666,25.2286776],[-81.0134689,25.2283686],[-81.0142551,25.2280226],[-81.0152674,25.2285585],[-81.015633,25.2291236],[-81.0159223,25.2295707],[-81.0161009,25.2306425],[-81.0177681,25.2311783],[-81.0179649,25.2314243],[-81.0184826,25.2320715],[-81.0192567,25.2302257],[-81.0197076,25.2294311],[-81.0197404,25.229433],[-81.0198482,25.2294389],[-81.0225905,25.229549],[-81.0259092,25.2299412],[-81.0259139,25.2299438],[-81.0259187,25.2299465],[-81.0259499,25.2299641],[-81.0283486,25.231312],[-81.0299237,25.2314266],[-81.030363,25.2314586],[-81.0309109,25.2314648],[-81.0318544,25.2314754],[-81.0327189,25.2314851],[-81.0335486,25.2314944],[-81.0341603,25.231652],[-81.036311,25.2322061],[-81.0389183,25.2334382],[-81.0415753,25.2346939],[-81.0416291,25.2347193],[-81.0418685,25.2347222],[-81.042245,25.2347267],[-81.0427729,25.2358786],[-81.0440687,25.2369584],[-81.0451006,25.2375103],[-81.0462764,25.2374383],[-81.0464861,25.2380512],[-81.0469003,25.2392621],[-81.0458648,25.2394455],[-81.0445966,25.23967],[-81.0439315,25.2401823],[-81.0437194,25.2403457],[-81.0427937,25.2412085],[-81.0411032,25.2423452],[-81.0416569,25.2406547],[-81.0406623,25.240779],[-81.0397914,25.2408879],[-81.040112,25.2421413],[-81.0402011,25.2428094],[-81.0402869,25.243453],[-81.0396173,25.2452697],[-81.0378093,25.2453768],[-81.0365947,25.2458829],[-81.0364101,25.2459598],[-81.0365558,25.2449687],[-81.0355357,25.2445024],[-81.0348652,25.2454351],[-81.034049,25.2447064],[-81.0327665,25.2456683],[-81.0316296,25.2441234],[-81.0310838,25.2445187],[-81.0307843,25.2447356],[-81.030753,25.2455802],[-81.030726,25.2463096],[-81.030922,25.2469332],[-81.0310467,25.2473298],[-81.0318628,25.2482043],[-81.0329413,25.247942],[-81.0322709,25.249312],[-81.0318337,25.2505071],[-81.0310175,25.252635],[-81.0296621,25.2538155],[-81.0305874,25.2540993],[-81.0307552,25.2541507],[-81.0305423,25.2545327],[-81.0297641,25.2559288],[-81.0282775,25.2571531],[-81.0275727,25.2567045],[-81.0266743,25.2561328],[-81.0264573,25.2559738],[-81.0254618,25.2552444],[-81.0242345,25.2551252],[-81.0229833,25.2553993],[-81.0226377,25.2564479],[-81.0232097,25.2580804],[-81.0227586,25.2584798],[-81.0222879,25.2588966],[-81.0216364,25.2599421],[-81.021697,25.2612453],[-81.0224849,25.2622908],[-81.0219641,25.2630584],[-81.0219091,25.2631394],[-81.020409,25.2637304],[-81.0189407,25.2656412],[-81.0185304,25.2646751],[-81.0196657,25.2640886],[-81.0204224,25.2630479],[-81.0200097,25.2631391],[-81.0189656,25.2633696],[-81.0177736,25.2631615],[-81.0163735,25.263975],[-81.0152761,25.2646751],[-81.0150342,25.2651702],[-81.0144625,25.2663401],[-81.0148409,25.2673429],[-81.0162032,25.2665293],[-81.0163941,25.265901],[-81.0166573,25.2650346],[-81.0174361,25.2667458],[-81.016478,25.2677807],[-81.0156721,25.268397],[-81.0164187,25.2691436],[-81.0153514,25.270027],[-81.0144159,25.2706962],[-81.0139928,25.2720656],[-81.0138368,25.2720428],[-81.0129448,25.2719127],[-81.0118095,25.2710176],[-81.0121631,25.271607],[-81.0127264,25.2725459],[-81.0117221,25.2729389],[-81.0110581,25.2732547],[-81.0104571,25.2735406],[-81.0096955,25.2736669],[-81.0086872,25.2738341],[-81.0079012,25.2727206],[-81.0089819,25.2726114],[-81.0089201,25.2719262],[-81.0088618,25.2712796],[-81.0077265,25.2718472],[-81.0067003,25.2708647],[-81.0070278,25.2725896],[-81.0069635,25.273457],[-81.0069405,25.2737686],[-81.0081195,25.2752533],[-81.0105867,25.2759738],[-81.0110311,25.2750994],[-81.0112636,25.274642],[-81.0119841,25.2737468],[-81.0122602,25.2737511],[-81.0133814,25.2737686],[-81.0133407,25.2745584],[-81.0133203,25.2749543],[-81.0120638,25.2754345],[-81.0107416,25.2767086],[-81.0094661,25.2776401],[-81.0082456,25.2779035],[-81.0063764,25.2770273],[-81.0046612,25.2769719],[-81.0045656,25.2769689],[-81.0042067,25.275878],[-81.0048468,25.2743067],[-81.0055585,25.2745101],[-81.0060689,25.2746559],[-81.0065345,25.2729682],[-81.0043813,25.2726773],[-81.0048408,25.272034],[-81.0049632,25.2718625],[-81.0037411,25.2720953],[-81.0021698,25.2720953],[-81.0003658,25.2738412],[-80.9986781,25.2759362],[-80.9979798,25.2772165],[-80.9972233,25.2791951],[-80.997747,25.2805336],[-80.9960594,25.282454],[-80.9937316,25.282454],[-80.9940225,25.2811155],[-80.9963503,25.2798352],[-80.9963652,25.2793452],[-80.9964667,25.2759944],[-80.9973009,25.2755141],[-80.9983872,25.2748887],[-81.0006568,25.2725609],[-81.000884,25.2718791]]],[[[-81.0641541,25.2617803],[-81.0660906,25.2612734],[-81.0673931,25.2618605],[-81.0675211,25.2627708],[-81.0676809,25.2639071],[-81.0677166,25.2643832],[-81.0677768,25.2651862],[-81.0673287,25.2656015],[-81.0664657,25.2664014],[-81.065954,25.2674087],[-81.0647069,25.2675207],[-81.0632359,25.2682561],[-81.0623624,25.2688488],[-81.0623405,25.2688637],[-81.0607506,25.2688937],[-81.0606457,25.2688957],[-81.0604165,25.2689384],[-81.0587857,25.269242],[-81.0586352,25.2681432],[-81.0603744,25.2664302],[-81.0595048,25.2648227],[-81.0604271,25.2638214],[-81.0614905,25.2635967],[-81.0615505,25.2635595],[-81.0626668,25.2628673],[-81.0631469,25.2624415],[-81.0637828,25.2618775],[-81.0641541,25.2617803]]],[[[-81.0230316,25.2668459],[-81.0247027,25.2645335],[-81.0250889,25.2658641],[-81.0262579,25.2665721],[-81.0259945,25.2679717],[-81.0256487,25.2690419],[-81.0265612,25.2709335],[-81.0260753,25.2718635],[-81.02527,25.2725161],[-81.0242411,25.2728325],[-81.024207,25.272843],[-81.0249144,25.2715993],[-81.0253013,25.2713483],[-81.0259122,25.2709519],[-81.024925,25.2698604],[-81.0243946,25.269274],[-81.0240897,25.2689903],[-81.0233754,25.2683259],[-81.0226643,25.2673541],[-81.0230316,25.2668459]]],[[[-81.0418157,25.2729722],[-81.0418425,25.2719143],[-81.042493,25.2715385],[-81.0433767,25.271028],[-81.0434909,25.2702859],[-81.0435516,25.2698912],[-81.0440404,25.2690113],[-81.0442804,25.2685795],[-81.0437848,25.2674427],[-81.0448925,25.2670346],[-81.0461167,25.268871],[-81.0481732,25.2671945],[-81.0491219,25.2675107],[-81.0499756,25.268463],[-81.0487737,25.2691221],[-81.0475762,25.2691221],[-81.0464391,25.2700442],[-81.0461413,25.2702856],[-81.0456465,25.2735842],[-81.044657,25.2729245],[-81.0441622,25.274079],[-81.0438924,25.2742997],[-81.0432551,25.2748211],[-81.0424762,25.2768427],[-81.0423876,25.2767246],[-81.0417692,25.2759005],[-81.0418157,25.2729722]]],[[[-80.9476031,25.2669042],[-80.9465211,25.2665978],[-80.9454774,25.2670382],[-80.9448036,25.2657797],[-80.9473619,25.2657348],[-80.9484235,25.2664697],[-80.9494858,25.2665139],[-80.9505923,25.2666688],[-80.9511677,25.2657172],[-80.9513226,25.2643673],[-80.9512072,25.2643483],[-80.9493087,25.2640354],[-80.9490705,25.2653286],[-80.9489989,25.2657172],[-80.9489233,25.2656944],[-80.947826,25.2653632],[-80.9466605,25.2646268],[-80.9472728,25.2637698],[-80.9480252,25.2630617],[-80.9494858,25.2626742],[-80.9524375,25.2625247],[-80.9531442,25.262696],[-80.9536704,25.2628236],[-80.9545671,25.2618522],[-80.9553795,25.2625563],[-80.955688,25.2628236],[-80.9551004,25.263006],[-80.953521,25.2634961],[-80.9519518,25.2648412],[-80.9506837,25.2677207],[-80.9487869,25.267911],[-80.9480095,25.2688042],[-80.9477325,25.2691627],[-80.9471659,25.2698958],[-80.9468242,25.2703906],[-80.9462116,25.2712776],[-80.9452029,25.2714217],[-80.9456359,25.2707568],[-80.9459562,25.270265],[-80.9476031,25.2669042]]],[[[-80.9671232,25.2782783],[-80.9682957,25.2771058],[-80.9693658,25.2754359],[-80.9697113,25.2743804],[-80.9699167,25.2737527],[-80.9702492,25.2728832],[-80.9707124,25.2716717],[-80.9711102,25.2701416],[-80.9711385,25.2693813],[-80.9711851,25.268129],[-80.9723264,25.26791],[-80.9729088,25.2668891],[-80.9737824,25.2676771],[-80.9742737,25.2691511],[-80.9746757,25.2704911],[-80.9738271,25.2714291],[-80.9742291,25.2724565],[-80.9757924,25.2733052],[-80.9769538,25.2734838],[-80.9761498,25.2752705],[-80.9759504,25.2750153],[-80.9750331,25.2738412],[-80.9740951,25.2733052],[-80.9725317,25.2713398],[-80.9717724,25.2722778],[-80.9724372,25.2730614],[-80.973023,25.2737518],[-80.9726588,25.274025],[-80.9721297,25.2744218],[-80.9710806,25.274247],[-80.9707897,25.2741985],[-80.9698517,25.2756725],[-80.969405,25.2776379],[-80.9700912,25.2772785],[-80.971281,25.2766552],[-80.9726657,25.2759852],[-80.974631,25.2759852],[-80.9731124,25.2766552],[-80.971549,25.2773699],[-80.970864,25.277946],[-80.9682957,25.2801059],[-80.9668801,25.2791407],[-80.9665119,25.2788896],[-80.9671232,25.2782783]]],[[[-80.9550656,25.2769822],[-80.954129,25.2755543],[-80.9538503,25.2752955],[-80.9530117,25.2745169],[-80.9527731,25.2734633],[-80.9526118,25.2727512],[-80.952429,25.2705244],[-80.9528163,25.2705664],[-80.9537581,25.2706687],[-80.9534856,25.2716135],[-80.9534223,25.2718328],[-80.9539596,25.2727059],[-80.9548103,25.2732432],[-80.9554426,25.2733654],[-80.9567804,25.2736238],[-80.9563326,25.2748998],[-80.9570035,25.2755037],[-80.9576758,25.2761088],[-80.9591909,25.2758942],[-80.9585713,25.2767132],[-80.9581336,25.2770168],[-80.9575683,25.2774089],[-80.957032,25.2778844],[-80.9567154,25.2781651],[-80.9556773,25.278545],[-80.9546509,25.2782388],[-80.9550656,25.2769822]]],[[[-81.0624598,25.2889668],[-81.060749,25.2878548],[-81.0590383,25.2878548],[-81.0572214,25.2881455],[-81.0568998,25.288197],[-81.0556688,25.288408],[-81.053906,25.2887102],[-81.0517676,25.288368],[-81.0488626,25.2880978],[-81.0496048,25.2866135],[-81.0510833,25.2866573],[-81.0512246,25.286198],[-81.0514254,25.2855453],[-81.0533072,25.2839201],[-81.0533072,25.2828936],[-81.05323,25.2828996],[-81.0521953,25.2829792],[-81.0521339,25.2822126],[-81.0520242,25.2808407],[-81.0537349,25.2806697],[-81.0538742,25.2805187],[-81.0547614,25.2795577],[-81.0531363,25.2781891],[-81.0559589,25.2786168],[-81.0569617,25.2781898],[-81.0571601,25.2781054],[-81.0583752,25.2769862],[-81.059637,25.2755374],[-81.0606777,25.2750995],[-81.0611965,25.2745183],[-81.0614771,25.2742042],[-81.0609974,25.2755791],[-81.0612568,25.2762491],[-81.0613812,25.2765705],[-81.0609209,25.2770512],[-81.0599422,25.2780734],[-81.0594625,25.2789688],[-81.0604807,25.2798673],[-81.0605497,25.2799282],[-81.0620847,25.2790648],[-81.062069,25.2787741],[-81.0620207,25.2778816],[-81.0626603,25.2766664],[-81.0623085,25.2754832],[-81.0621487,25.274396],[-81.0636836,25.2746198],[-81.0638115,25.2734686],[-81.0621806,25.2727651],[-81.0609335,25.2737244],[-81.0609335,25.2727011],[-81.0603259,25.27139],[-81.0615138,25.2713215],[-81.0619888,25.2712941],[-81.062146,25.2707963],[-81.0623725,25.2700789],[-81.0638115,25.2692795],[-81.0647709,25.2682881],[-81.0663386,25.269219],[-81.0678408,25.2701109],[-81.0676175,25.2716223],[-81.067425,25.272925],[-81.0673825,25.2740727],[-81.0673611,25.2746518],[-81.0664977,25.2764426],[-81.0658581,25.2776897],[-81.0658056,25.2793566],[-81.0665859,25.2795209],[-81.066888,25.2795845],[-81.0683692,25.2802111],[-81.0697934,25.2800972],[-81.0716733,25.2800972],[-81.0729266,25.2812366],[-81.0708758,25.2831735],[-81.0681983,25.2832304],[-81.0672298,25.2835153],[-81.0668427,25.2839333],[-81.0658056,25.2850534],[-81.0647679,25.2860046],[-81.0644384,25.2863067],[-81.0636379,25.2873828],[-81.0624598,25.2889668]]],[[[-80.3524849,25.164427],[-80.3550356,25.1634594],[-80.3577859,25.1642417],[-80.3603241,25.163867],[-80.3613914,25.1637095],[-80.3632059,25.163309],[-80.3647282,25.1629729],[-80.3647886,25.1651265],[-80.3648285,25.1665469],[-80.3609928,25.1676438],[-80.3559306,25.1687535],[-80.3540364,25.169621],[-80.3531879,25.1694879],[-80.3505467,25.1690737],[-80.3514284,25.1663749],[-80.3524848,25.1644272],[-80.3524848,25.1644271],[-80.3524849,25.164427]]],[[[-80.5507143,25.1592713],[-80.5542717,25.1578919],[-80.5556197,25.1582112],[-80.5559408,25.1582872],[-80.5559862,25.1584916],[-80.5560547,25.1588001],[-80.5524376,25.1628695],[-80.552084,25.1632673],[-80.5495866,25.1625294],[-80.5490812,25.1608943],[-80.5489108,25.1603431],[-80.5491812,25.1600886],[-80.5495839,25.1597096],[-80.5507143,25.1592713]]],[[[-80.5959272,25.1705988],[-80.5939878,25.170197],[-80.5918463,25.1710345],[-80.5905261,25.1699284],[-80.5898398,25.1693534],[-80.5860909,25.1707145],[-80.586023,25.1685775],[-80.5882557,25.1669259],[-80.5878403,25.163525],[-80.5902189,25.1620197],[-80.5911205,25.1623785],[-80.5926862,25.1630016],[-80.5956092,25.1631814],[-80.5986061,25.1636078],[-80.6002407,25.1648633],[-80.6019166,25.1667378],[-80.6030753,25.1698165],[-80.6037777,25.1720372],[-80.6051533,25.1745249],[-80.601964,25.1735073],[-80.5996548,25.1733555],[-80.5981042,25.1717378],[-80.5959272,25.1705988]]],[[[-80.5309348,25.1870426],[-80.5327035,25.1853912],[-80.5332648,25.184867],[-80.5348882,25.1842707],[-80.5372577,25.183594],[-80.5407527,25.1820502],[-80.5433238,25.1820125],[-80.5449871,25.1837522],[-80.5427183,25.185533],[-80.5390248,25.1865525],[-80.536209,25.1861877],[-80.53554,25.1861011],[-80.5348117,25.1895937],[-80.5329873,25.188501],[-80.5309348,25.1870426]]],[[[-80.4023674,25.237677],[-80.4056973,25.2372637],[-80.4048739,25.2405212],[-80.4036628,25.2406873],[-80.4020092,25.2409141],[-80.4018044,25.2409996],[-80.4012874,25.2412154],[-80.3991055,25.2439428],[-80.3980645,25.2484538],[-80.3997995,25.2508829],[-80.3995254,25.2519796],[-80.3991632,25.2534282],[-80.3987586,25.255047],[-80.4015345,25.260599],[-80.4001453,25.2596728],[-80.3994525,25.259211],[-80.3987508,25.2585092],[-80.3977175,25.257476],[-80.397105,25.2534946],[-80.3970235,25.2529649],[-80.3963295,25.2484538],[-80.3963295,25.2449838],[-80.3984115,25.2422077],[-80.3988605,25.2417026],[-80.3998193,25.240624],[-80.3998708,25.2390121],[-80.40043,25.238713],[-80.4023674,25.237677]]],[[[-80.9467554,25.2374965],[-80.9457454,25.2371329],[-80.9447758,25.2374965],[-80.9441588,25.237275],[-80.9432002,25.2369309],[-80.9421275,25.236134],[-80.9417862,25.2358805],[-80.9413822,25.2372945],[-80.9407394,25.2377328],[-80.9404934,25.2379005],[-80.939443,25.2382641],[-80.9382405,25.2389374],[-80.9397784,25.2366426],[-80.9404378,25.2361444],[-80.940877,25.2358126],[-80.941707,25.234885],[-80.941707,25.2328832],[-80.9404131,25.2319067],[-80.9381672,25.2323949],[-80.9369542,25.2313878],[-80.9384617,25.2315452],[-80.9400241,25.2311341],[-80.9405967,25.2302751],[-80.9406819,25.2301473],[-80.9422443,25.2301473],[-80.9444645,25.2287494],[-80.9459446,25.230394],[-80.9472603,25.2304763],[-80.9485759,25.2300651],[-80.9489062,25.2296923],[-80.9511251,25.2271871],[-80.9519474,25.225378],[-80.9524106,25.2234326],[-80.9527697,25.2219244],[-80.9500561,25.2196219],[-80.9489049,25.2197864],[-80.9492355,25.2185555],[-80.9505454,25.2187341],[-80.9512473,25.2193122],[-80.9515576,25.2195677],[-80.9530462,25.2195677],[-80.9545347,25.2204608],[-80.9551043,25.2212582],[-80.9557255,25.222128],[-80.9553921,25.2238434],[-80.9541368,25.2262446],[-80.9545448,25.2274289],[-80.9548966,25.2284498],[-80.9544275,25.2285177],[-80.9516767,25.2289157],[-80.94995,25.2301066],[-80.9491759,25.2308211],[-80.9483424,25.2345127],[-80.9472706,25.2347508],[-80.9466681,25.2353157],[-80.9463179,25.235644],[-80.9471515,25.2362989],[-80.9476279,25.237847],[-80.9479803,25.2381166],[-80.9486401,25.2386211],[-80.9491464,25.2388632],[-80.9500095,25.239276],[-80.9510214,25.2392761],[-80.9484022,25.2397423],[-80.9476317,25.2398795],[-80.9467554,25.2374965]]],[[[-80.2944558,25.3254336],[-80.2959095,25.3252326],[-80.2960727,25.3254815],[-80.2961748,25.3256373],[-80.296428,25.3260236],[-80.2961402,25.3262735],[-80.2956054,25.3267381],[-80.2953987,25.3265036],[-80.2947712,25.3257915],[-80.2944559,25.3254338],[-80.2944559,25.3254337],[-80.2944558,25.3254336]]],[[[-80.3489928,25.3284649],[-80.3472436,25.3279402],[-80.3470768,25.3281456],[-80.3468635,25.3284083],[-80.3434816,25.3281145],[-80.3432809,25.3248625],[-80.3427362,25.3230719],[-80.3440742,25.3229244],[-80.3443914,25.3228895],[-80.3448055,25.3230308],[-80.3453973,25.3232329],[-80.3459831,25.3225739],[-80.3474017,25.3209781],[-80.3501777,25.3261831],[-80.3494837,25.3286122],[-80.3489928,25.3284649]]],[[[-80.9380967,25.2665988],[-80.9376485,25.2644916],[-80.9376485,25.2629588],[-80.9386355,25.2649536],[-80.9397064,25.2649536],[-80.9409874,25.2647856],[-80.9414839,25.2638067],[-80.9417224,25.2633366],[-80.9413234,25.2622657],[-80.9424363,25.2614047],[-80.9428102,25.2609175],[-80.9431293,25.2605017],[-80.9425983,25.2594669],[-80.9429041,25.2581758],[-80.941579,25.2570715],[-80.9429041,25.2566807],[-80.9437875,25.2561031],[-80.9451466,25.2572244],[-80.9472193,25.2570206],[-80.9473189,25.2575185],[-80.9474911,25.2583796],[-80.9480635,25.2589911],[-80.9482386,25.2591781],[-80.9489037,25.2582774],[-80.9490541,25.2580739],[-80.9493828,25.2594986],[-80.9479146,25.2606716],[-80.9470072,25.261933],[-80.9470736,25.2608929],[-80.9460114,25.2617118],[-80.9460654,25.2620311],[-80.9462548,25.2631502],[-80.9448828,25.2630395],[-80.9449098,25.2626613],[-80.9449934,25.2614905],[-80.9429132,25.2617782],[-80.9439754,25.2626412],[-80.9439018,25.2635546],[-80.9438648,25.2640132],[-80.9434105,25.2643127],[-80.9428911,25.264655],[-80.9431196,25.264625],[-80.944241,25.264478],[-80.9457014,25.2636815],[-80.9449681,25.2646576],[-80.9441602,25.2654655],[-80.9429185,25.2659143],[-80.9417665,25.2653608],[-80.9425177,25.2673213],[-80.9418861,25.2684428],[-80.9414336,25.2684605],[-80.9403601,25.2685026],[-80.9380967,25.2665988]]],[[[-81.1132673,25.3410718],[-81.1127522,25.3402363],[-81.1124762,25.3397886],[-81.112179,25.3392917],[-81.1117,25.3384909],[-81.1125165,25.3379041],[-81.1137226,25.3371176],[-81.1156622,25.3381682],[-81.1180653,25.3400907],[-81.1190266,25.3403791],[-81.1182072,25.3411481],[-81.1166157,25.3405308],[-81.1154923,25.3404996],[-81.1150906,25.3412566],[-81.1148931,25.3416288],[-81.1137396,25.3423016],[-81.1132673,25.3410718]]],[[[-80.2490371,25.3714633],[-80.2524793,25.3695308],[-80.2537525,25.3719541],[-80.2558068,25.3733144],[-80.2558712,25.3755253],[-80.2548914,25.3780894],[-80.2549585,25.3789362],[-80.2550446,25.3800228],[-80.2548336,25.3806869],[-80.2544289,25.3819604],[-80.2511631,25.3839316],[-80.2498329,25.3859724],[-80.2474902,25.3873067],[-80.2446514,25.3873602],[-80.2444871,25.3872968],[-80.2415553,25.3861661],[-80.241932,25.3821635],[-80.2450202,25.3812143],[-80.2466913,25.3784514],[-80.2485417,25.3751613],[-80.2490371,25.3714633]]],[[[-80.2929904,25.3808443],[-80.2931435,25.3795839],[-80.2938733,25.3785765],[-80.2949505,25.3770894],[-80.2979903,25.3769556],[-80.3010544,25.3773633],[-80.3033248,25.3781378],[-80.301627,25.3797702],[-80.2990011,25.3796299],[-80.2984205,25.3814428],[-80.2969377,25.382579],[-80.2960345,25.3833381],[-80.2951634,25.3859514],[-80.2929326,25.3857897],[-80.291971,25.3835571],[-80.2927996,25.3824522],[-80.2927986,25.3824402],[-80.2927981,25.3824357],[-80.2927977,25.3824312],[-80.2929904,25.3808443]]],[[[-80.2419248,25.3502588],[-80.2426677,25.3488036],[-80.2429084,25.348332],[-80.245427,25.3475598],[-80.2472906,25.3459848],[-80.2499675,25.3461973],[-80.2521204,25.3476111],[-80.2522954,25.3486247],[-80.2526056,25.3504207],[-80.2500189,25.3494339],[-80.2482731,25.3488354],[-80.2453031,25.3505436],[-80.2419248,25.3502588]]],[[[-81.1019723,25.3556912],[-81.1004741,25.3519144],[-81.1015315,25.3519143],[-81.1017237,25.3506647],[-81.0998012,25.3502802],[-81.0982632,25.3497034],[-81.0980426,25.348821],[-81.0977825,25.3477809],[-81.1001857,25.3473003],[-81.1031656,25.3498957],[-81.1051562,25.3500825],[-81.1072585,25.3510513],[-81.1096203,25.3509991],[-81.1096589,25.350991],[-81.1121392,25.3504753],[-81.1146492,25.3512955],[-81.1154948,25.3526595],[-81.1144906,25.3534235],[-81.1116138,25.3532492],[-81.1103107,25.3538815],[-81.1091201,25.3544593],[-81.1086583,25.3546517],[-81.1073599,25.3551927],[-81.1061905,25.3552126],[-81.1051963,25.3552294],[-81.1048627,25.3553428],[-81.1041582,25.3555823],[-81.103298,25.3560124],[-81.1022981,25.3565124],[-81.1019723,25.3556912]]],[[[-80.2419248,25.3502588],[-80.2449246,25.3526012],[-80.2473847,25.3535406],[-80.2497252,25.3539848],[-80.2515664,25.3540324],[-80.253103,25.3560948],[-80.2550349,25.3568684],[-80.2574413,25.3586007],[-80.2583869,25.3620204],[-80.2581557,25.364108],[-80.2557041,25.3637496],[-80.2520812,25.3640624],[-80.2504916,25.3613098],[-80.2520454,25.3592021],[-80.249803,25.358466],[-80.2480554,25.359764],[-80.2478279,25.3620195],[-80.2469191,25.3624866],[-80.2443326,25.3638159],[-80.2431524,25.3657174],[-80.2413427,25.3685374],[-80.2377958,25.3722691],[-80.2379402,25.3748682],[-80.237996,25.3758721],[-80.2399434,25.3761104],[-80.2405251,25.3764005],[-80.2413117,25.3767928],[-80.23918,25.3799887],[-80.2386177,25.3824313],[-80.2390805,25.3845725],[-80.2391705,25.3849888],[-80.2372032,25.3863832],[-80.2364225,25.386169],[-80.2353434,25.3858729],[-80.2324522,25.386988],[-80.2324506,25.3869508],[-80.2323119,25.3837059],[-80.2294607,25.3824573],[-80.2309727,25.3802768],[-80.2321406,25.3778733],[-80.2325602,25.3770852],[-80.2332645,25.3757622],[-80.2335317,25.3733163],[-80.2344488,25.3706979],[-80.2352173,25.3687547],[-80.2372461,25.3673537],[-80.2373178,25.3667154],[-80.2376159,25.3640587],[-80.2383449,25.3624698],[-80.2392494,25.3604983],[-80.2405319,25.3579094],[-80.2415552,25.3561544],[-80.2404816,25.3534216],[-80.2395164,25.3519125],[-80.2395858,25.3502971],[-80.2419248,25.3502588]]],[[[-80.2994668,25.406938],[-80.2994797,25.4064588],[-80.2995115,25.405271],[-80.3017249,25.4026342],[-80.3033121,25.4029591],[-80.3036961,25.4030377],[-80.3044506,25.4055455],[-80.3039693,25.4059747],[-80.3034229,25.4067943],[-80.3027256,25.4068205],[-80.302733,25.4068143],[-80.3027393,25.406809],[-80.3026955,25.4068216],[-80.3010513,25.4068834],[-80.3010421,25.4068837],[-80.301033,25.4068841],[-80.3000814,25.4069198],[-80.3000813,25.4069181],[-80.3000812,25.4069164],[-80.2994668,25.406938]]],[[[-80.2390254,25.3944374],[-80.2373899,25.3938874],[-80.2376155,25.3913622],[-80.2425078,25.3918541],[-80.2427624,25.3932298],[-80.2429271,25.3941194],[-80.2478356,25.3937761],[-80.2466692,25.396099],[-80.2463241,25.3967863],[-80.2432282,25.3983464],[-80.2403656,25.3976287],[-80.2409501,25.3948454],[-80.2390254,25.3944374]]],[[[-80.2304303,25.3990241],[-80.2328704,25.3977503],[-80.2357562,25.398091],[-80.2347683,25.4009799],[-80.2318984,25.4020564],[-80.2298963,25.4017669],[-80.2304303,25.3990241]]],[[[-80.2041273,25.4232028],[-80.2042832,25.4201639],[-80.2038716,25.4182351],[-80.2037114,25.4147574],[-80.2048724,25.4128994],[-80.2066304,25.4107498],[-80.2097939,25.4089174],[-80.2116814,25.4074019],[-80.2141598,25.4044381],[-80.2161164,25.4030584],[-80.2185014,25.4012854],[-80.2214763,25.3992429],[-80.2247326,25.3978958],[-80.2279934,25.394111],[-80.230333,25.3949556],[-80.2290184,25.3967504],[-80.2261584,25.4007368],[-80.2246839,25.4028517],[-80.2228818,25.4054491],[-80.2201558,25.4059406],[-80.2163207,25.4062984],[-80.2135076,25.4102929],[-80.2100708,25.4134354],[-80.2083902,25.4158008],[-80.2071754,25.4193574],[-80.20659,25.4221817],[-80.2096128,25.4201408],[-80.2100684,25.4226094],[-80.2094647,25.4253964],[-80.2085189,25.4277594],[-80.2070304,25.4301214],[-80.2050684,25.4325079],[-80.2038906,25.4354544],[-80.2027404,25.4379459],[-80.2013384,25.4422262],[-80.1995203,25.4462006],[-80.197811,25.4493432],[-80.1971904,25.4514114],[-80.1965646,25.4537136],[-80.1955229,25.4564587],[-80.1938987,25.4606629],[-80.1930291,25.4645554],[-80.1923104,25.4674009],[-80.1923578,25.4693274],[-80.1911379,25.4726378],[-80.1887481,25.4767291],[-80.1884458,25.4788432],[-80.1872838,25.4810424],[-80.181412,25.490875],[-80.1859764,25.4946116],[-80.1887242,25.4966969],[-80.1896943,25.4994717],[-80.1896871,25.5040101],[-80.1877386,25.5055872],[-80.1826442,25.5057223],[-80.1787308,25.5070369],[-80.1781454,25.5044064],[-80.1783349,25.5006202],[-80.178144,25.4964167],[-80.1797079,25.4939067],[-80.1773246,25.4931162],[-80.1776528,25.4907391],[-80.1778201,25.4886287],[-80.1769932,25.4855686],[-80.177907,25.4834516],[-80.1791644,25.4806849],[-80.1801744,25.4786894],[-80.1816899,25.4764979],[-80.1829709,25.4735512],[-80.1853458,25.4704032],[-80.1858804,25.4676088],[-80.1874841,25.4659884],[-80.1885882,25.4639844],[-80.1896419,25.4617024],[-80.1902301,25.4588768],[-80.1897904,25.4551129],[-80.1907489,25.4515864],[-80.1919848,25.4479314],[-80.1936002,25.4455102],[-80.1948144,25.4431612],[-80.1960099,25.4402008],[-80.197659,25.4369653],[-80.198962,25.4344223],[-80.2004799,25.4315369],[-80.2029654,25.4298958],[-80.2057808,25.4253229],[-80.2041273,25.4232028]]],[[[-80.1767182,25.5094341],[-80.1767209,25.509432],[-80.1790039,25.5119226],[-80.1787375,25.512934],[-80.1785911,25.5134897],[-80.178449,25.5155166],[-80.1783724,25.5166094],[-80.1769974,25.517608],[-80.1764402,25.5180126],[-80.1756044,25.5160699],[-80.1757384,25.5153031],[-80.1760679,25.5134171],[-80.1761734,25.5103484],[-80.1767155,25.5094361],[-80.1767182,25.5094341]]],[[[-81.2013651,25.5400509],[-81.2035956,25.5393494],[-81.2055751,25.5399817],[-81.2064096,25.5422179],[-81.2069087,25.5433595],[-81.2075981,25.5449364],[-81.2074126,25.5464537],[-81.2072826,25.5475169],[-81.2046026,25.5468859],[-81.2027185,25.5441111],[-81.1999952,25.5420314],[-81.2013651,25.5400509]]],[[[-81.0591467,25.5511838],[-81.0581845,25.5508442],[-81.0559744,25.5510494],[-81.0542195,25.5500482],[-81.0532053,25.5499791],[-81.0529568,25.550116],[-81.052076,25.5506013],[-81.0512232,25.549449],[-81.050441,25.547783],[-81.050354,25.5475993],[-81.0499942,25.5468398],[-81.0495475,25.5458967],[-81.0495508,25.5456457],[-81.0495687,25.5443144],[-81.0492668,25.5433333],[-81.0491254,25.5428736],[-81.0485712,25.541211],[-81.0498642,25.5409893],[-81.050122,25.5403351],[-81.0503446,25.5397701],[-81.0518963,25.5392529],[-81.053448,25.5389573],[-81.0533139,25.5386443],[-81.0530047,25.5379229],[-81.0549628,25.5376642],[-81.0550643,25.5373595],[-81.0553692,25.536445],[-81.0562363,25.5366928],[-81.0569209,25.5368884],[-81.0574381,25.5355214],[-81.0576885,25.5355121],[-81.0594332,25.5354475],[-81.0605785,25.5348194],[-81.0615391,25.5354475],[-81.0592485,25.5365928],[-81.0566253,25.5379228],[-81.0554065,25.5385139],[-81.0601352,25.5378859],[-81.0619825,25.5367775],[-81.0630199,25.5368767],[-81.0645703,25.5368422],[-81.0648745,25.5367087],[-81.0663419,25.5360645],[-81.0675517,25.5371879],[-81.0689344,25.5372743],[-81.0704899,25.5372743],[-81.0713508,25.53737],[-81.0716565,25.5374039],[-81.0738168,25.5373175],[-81.0720022,25.5383545],[-81.071959,25.5393915],[-81.0719951,25.5404045],[-81.0720022,25.5406014],[-81.0733416,25.5398236],[-81.0751996,25.5391755],[-81.0756749,25.5378792],[-81.0777377,25.5403232],[-81.0778151,25.5418967],[-81.0778516,25.5426388],[-81.0783451,25.5447646],[-81.078744,25.5451635],[-81.0795977,25.5460173],[-81.0788761,25.5471064],[-81.0782086,25.5461051],[-81.0781724,25.5460907],[-81.0772074,25.5457047],[-81.0745376,25.5467059],[-81.0728689,25.5479741],[-81.0702657,25.5475068],[-81.0676626,25.5475068],[-81.0667282,25.5484413],[-81.0649927,25.5493758],[-81.064392,25.5506439],[-81.0641325,25.5517858],[-81.0640583,25.5521124],[-81.0637245,25.5533806],[-81.0617889,25.5525129],[-81.0593192,25.5512447],[-81.0591467,25.5511838]]],[[[-81.1482336,25.5731805],[-81.1494224,25.5729824],[-81.1489851,25.5744137],[-81.1482694,25.5753678],[-81.147355,25.5773955],[-81.1464406,25.5782304],[-81.1453274,25.5774352],[-81.1442937,25.5760835],[-81.1445291,25.5755454],[-81.1448503,25.5748112],[-81.1455262,25.573698],[-81.1477409,25.5732694],[-81.1479911,25.5732209],[-81.1482336,25.5731805]]],[[[-81.1409709,25.5824848],[-81.1424308,25.5822724],[-81.1436519,25.5830157],[-81.1437807,25.5835049],[-81.1439174,25.5840244],[-81.1431233,25.5841236],[-81.1426432,25.5841836],[-81.1420327,25.5854048],[-81.1429352,25.5867851],[-81.1432056,25.5872833],[-81.1434395,25.5877142],[-81.1427728,25.5895663],[-81.1409095,25.5920001],[-81.1396926,25.5924183],[-81.1389701,25.5914297],[-81.1393494,25.5898318],[-81.1394047,25.5895989],[-81.1405992,25.5892538],[-81.140293,25.58845],[-81.1401745,25.5881389],[-81.1391923,25.5876611],[-81.1396967,25.5865727],[-81.1400152,25.584396],[-81.1409709,25.5824848]]],[[[-81.1166069,25.5904994],[-81.1154897,25.5897436],[-81.1141425,25.5898094],[-81.1139786,25.5888952],[-81.1139283,25.5886144],[-81.1141491,25.5886368],[-81.1159523,25.5888197],[-81.1173066,25.5877931],[-81.117771,25.587441],[-81.1194431,25.5872944],[-81.1205255,25.5870976],[-81.1207337,25.5870597],[-81.1212055,25.5867231],[-81.1223793,25.5858858],[-81.1234041,25.5858516],[-81.1261367,25.5852026],[-81.1243947,25.5860566],[-81.1235749,25.5870813],[-81.1232107,25.5878656],[-81.1231308,25.5880377],[-81.1230152,25.5883141],[-81.1225545,25.589415],[-81.1214044,25.5896779],[-81.1202872,25.5893822],[-81.1185785,25.5900722],[-81.1166069,25.5904994]]],[[[-81.1347413,25.5927338],[-81.1344824,25.5920767],[-81.1333323,25.5927338],[-81.1332567,25.5932329],[-81.133168,25.5938182],[-81.132018,25.5932267],[-81.1319875,25.5932018],[-81.1307365,25.5921752],[-81.1299807,25.5913866],[-81.128042,25.5911894],[-81.1248546,25.5903351],[-81.1238689,25.590138],[-81.1254194,25.5888917],[-81.1264442,25.5879353],[-81.1264076,25.5886859],[-81.1263759,25.5893358],[-81.1277422,25.58896],[-81.1291769,25.5876278],[-81.1297021,25.5876417],[-81.1304749,25.587662],[-81.1316363,25.5872179],[-81.1314682,25.5869718],[-81.1306799,25.5858174],[-81.1318754,25.5856467],[-81.1328318,25.5851001],[-81.1341298,25.5855442],[-81.1355645,25.5851685],[-81.135257,25.5866373],[-81.1357462,25.5866563],[-81.1371179,25.5867097],[-81.1370953,25.5879265],[-81.1378569,25.588635],[-81.1382367,25.5889883],[-81.138131,25.5899723],[-81.1380194,25.5910114],[-81.1375631,25.5921522],[-81.1385898,25.5927606],[-81.1380955,25.5937873],[-81.137411,25.594776],[-81.136042,25.5943958],[-81.1349096,25.593161],[-81.1347413,25.5927338]]],[[[-81.1216138,25.5774088],[-81.1204697,25.5757368],[-81.1188271,25.5762061],[-81.117859,25.5749154],[-81.1172722,25.5745791],[-81.1161482,25.5739347],[-81.1160535,25.5730196],[-81.1160311,25.5728028],[-81.1175143,25.5723149],[-81.1186072,25.5733102],[-81.1187633,25.5723149],[-81.1199087,25.5720659],[-81.1201099,25.5720221],[-81.1202439,25.5728167],[-81.1204027,25.5737591],[-81.1206342,25.5742749],[-81.120856,25.5747688],[-81.1217018,25.5759128],[-81.1225231,25.5767048],[-81.1216138,25.5774088]]],[[[-81.1095981,25.5792075],[-81.1092823,25.5782601],[-81.1092823,25.5762992],[-81.1097112,25.5750327],[-81.1095489,25.5748261],[-81.1090372,25.5741748],[-81.1097078,25.5728418],[-81.110508,25.5736029],[-81.1120107,25.5728808],[-81.1131817,25.5722758],[-81.1139746,25.5722449],[-81.114356,25.57223],[-81.1152895,25.574325],[-81.1158937,25.5753554],[-81.117067,25.5755314],[-81.1174083,25.5761761],[-81.117595,25.5765288],[-81.1168323,25.5781422],[-81.115571,25.5777608],[-81.1150184,25.5780742],[-81.1136056,25.5788755],[-81.1126669,25.5782888],[-81.1109949,25.5785528],[-81.1096704,25.5794244],[-81.1095981,25.5792075]]],[[[-81.2620972,25.6297357],[-81.2649163,25.6275744],[-81.2658429,25.6279821],[-81.2690081,25.6274024],[-81.2707232,25.6277614],[-81.2707623,25.6277696],[-81.2690071,25.6296156],[-81.2673796,25.6304323],[-81.266789,25.6309985],[-81.2659499,25.631803],[-81.2628489,25.6315211],[-81.2620972,25.6297357]]],[[[-81.2706484,25.6402602],[-81.2720579,25.6385688],[-81.2730102,25.6391784],[-81.2743132,25.6403542],[-81.2736842,25.6408841],[-81.2734144,25.6411114],[-81.2725278,25.6434552],[-81.2728097,25.6467441],[-81.2716671,25.6468257],[-81.2714941,25.6468381],[-81.2704605,25.6457105],[-81.2704841,25.6448842],[-81.2705544,25.6424215],[-81.2706484,25.6402602]]],[[[-81.2765684,25.6484355],[-81.2776961,25.6478717],[-81.2777918,25.6489275],[-81.2779814,25.6510177],[-81.2787297,25.6521943],[-81.2771084,25.65259],[-81.2766132,25.6533085],[-81.2764745,25.6535099],[-81.2758302,25.6538151],[-81.274689,25.6543556],[-81.2737494,25.6534159],[-81.2750478,25.650819],[-81.2755348,25.6498451],[-81.2765684,25.6484355]]],[[[-81.3504138,25.6899179],[-81.3523487,25.6893738],[-81.3552218,25.6918014],[-81.3553802,25.6926901],[-81.3552404,25.6929843],[-81.3548727,25.6937584],[-81.3541051,25.6937584],[-81.3518639,25.6928629],[-81.3488987,25.6918731],[-81.3504138,25.6899179]]],[[[-81.2858924,25.6903125],[-81.2902937,25.6878456],[-81.2934433,25.688503],[-81.2941477,25.6912813],[-81.2942989,25.6918776],[-81.2914891,25.6922839],[-81.2900619,25.6923945],[-81.2895651,25.692433],[-81.2896113,25.690447],[-81.2858924,25.6903125]]],[[[-81.2827746,25.66478],[-81.2843679,25.6642224],[-81.2861533,25.6660078],[-81.2842739,25.6690148],[-81.2807971,25.6696726],[-81.2783539,25.6710821],[-81.2759674,25.6701872],[-81.2753468,25.6699545],[-81.2751849,25.6689015],[-81.274971,25.6675113],[-81.275514,25.6666063],[-81.2760986,25.6656319],[-81.2797634,25.6651621],[-81.2824885,25.6648802],[-81.2827746,25.66478]]],[[[-81.0742437,25.5628105],[-81.0748678,25.5616142],[-81.0748709,25.5616128],[-81.074874,25.5616114],[-81.0760727,25.5610565],[-81.0777414,25.5623247],[-81.0791431,25.561724],[-81.0792766,25.560656],[-81.0794485,25.560551],[-81.080478,25.5599218],[-81.0819465,25.5593878],[-81.0829147,25.5587587],[-81.0840614,25.5597074],[-81.0848989,25.5602657],[-81.0830609,25.5609173],[-81.0833168,25.5624295],[-81.0838362,25.5637548],[-81.0839915,25.5641512],[-81.0824616,25.5642149],[-81.081748,25.5644646],[-81.0814214,25.5645789],[-81.0806556,25.56463],[-81.079861,25.564683],[-81.07544,25.564787],[-81.0751799,25.5632266],[-81.0742437,25.5628105]]],[[[-81.0690836,25.5643581],[-81.0667931,25.5636446],[-81.065066,25.5636446],[-81.0645027,25.561204],[-81.0636767,25.5602278],[-81.065193,25.5587871],[-81.0661942,25.5587871],[-81.0677294,25.5594546],[-81.0693313,25.5595213],[-81.070466,25.5597216],[-81.0697318,25.5607227],[-81.0691768,25.5612294],[-81.0681966,25.5621244],[-81.0685265,25.5622172],[-81.0703325,25.5627252],[-81.0712002,25.5632591],[-81.0710932,25.562938],[-81.0708665,25.5622579],[-81.072727,25.5617591],[-81.0725273,25.5629666],[-81.0717471,25.5636947],[-81.0716951,25.5653071],[-81.0709575,25.5656895],[-81.0702907,25.5660353],[-81.0695411,25.5662162],[-81.068952,25.5663584],[-81.0689838,25.5658749],[-81.0690836,25.5643581]]],[[[-81.1049206,25.5668798],[-81.1033165,25.5663534],[-81.1022637,25.5671555],[-81.1021201,25.5672151],[-81.1012361,25.5675816],[-81.1004016,25.5666757],[-81.1009403,25.5657779],[-81.1017782,25.5645011],[-81.1008006,25.5640821],[-81.0991048,25.5654986],[-81.0991827,25.5648466],[-81.0992644,25.5641619],[-81.0990051,25.5629848],[-81.0977092,25.5631553],[-81.0974888,25.5631843],[-81.0962718,25.5628651],[-81.0950349,25.5623264],[-81.0933989,25.5623863],[-81.0920417,25.5626389],[-81.0905992,25.5631741],[-81.0893428,25.5635463],[-81.0879236,25.5633602],[-81.0866206,25.5632206],[-81.0868266,25.5624263],[-81.0871092,25.561336],[-81.087417,25.5611895],[-81.088575,25.560638],[-81.0894126,25.5597772],[-81.090331,25.5610367],[-81.0915175,25.5612396],[-81.0923913,25.5603972],[-81.0934614,25.5608067],[-81.0946632,25.560639],[-81.0956693,25.5609743],[-81.0964322,25.5610784],[-81.0968991,25.561142],[-81.0982406,25.5607228],[-81.0999175,25.5595769],[-81.0998057,25.5582913],[-81.1019298,25.5575367],[-81.1031748,25.5583742],[-81.1052641,25.559732],[-81.105344,25.559784],[-81.1067879,25.5589116],[-81.1084122,25.559423],[-81.1067879,25.5599344],[-81.108292,25.5611677],[-81.1096457,25.5611377],[-81.1106985,25.5600547],[-81.1107822,25.5596701],[-81.1109994,25.558671],[-81.1115409,25.5595132],[-81.1121726,25.5604759],[-81.1123816,25.560537],[-81.1134059,25.5608368],[-81.1136975,25.5617156],[-81.1139121,25.5623623],[-81.1140084,25.5632647],[-81.1141053,25.5641727],[-81.1139811,25.5643107],[-81.1132922,25.5650762],[-81.1134277,25.5662958],[-81.112705,25.5673348],[-81.1117564,25.5678768],[-81.111529,25.5676968],[-81.1106722,25.5670186],[-81.1095429,25.5674703],[-81.107803,25.5660276],[-81.1070761,25.5651002],[-81.1076001,25.5638752],[-81.1074561,25.5630592],[-81.1073294,25.5623409],[-81.1066676,25.5615287],[-81.1065393,25.5619411],[-81.1062464,25.5628824],[-81.1056147,25.564206],[-81.1060614,25.5651744],[-81.1064495,25.566178],[-81.1062239,25.5673811],[-81.1053717,25.5680829],[-81.1040934,25.5689601],[-81.104082,25.5695551],[-81.1040684,25.5702635],[-81.1031159,25.5705893],[-81.1013363,25.5716922],[-81.1008202,25.5712975],[-81.1004842,25.5710405],[-81.1021634,25.5701131],[-81.1012361,25.5694615],[-81.1023139,25.5692358],[-81.1029906,25.5680077],[-81.1040433,25.5679576],[-81.1046766,25.5671795],[-81.1049206,25.5668798]]],[[[-80.1430182,25.7453692],[-80.1445881,25.7422454],[-80.14744,25.739396],[-80.150826,25.7377509],[-80.1540069,25.7360087],[-80.15717,25.7341463],[-80.1600715,25.7329504],[-80.1624237,25.7317023],[-80.1644266,25.7316656],[-80.1661497,25.7323062],[-80.1671063,25.7336872],[-80.1662938,25.7350159],[-80.1676785,25.7375846],[-80.1692771,25.7391141],[-80.1710766,25.7406902],[-80.1732721,25.7428943],[-80.1747322,25.7457565],[-80.1710331,25.7439368],[-80.1688085,25.7420894],[-80.1666303,25.7401797],[-80.162961,25.7396678],[-80.1638818,25.7437069],[-80.1657552,25.7455979],[-80.1673702,25.7476273],[-80.1641962,25.7469057],[-80.1619258,25.7458029],[-80.1598963,25.7440908],[-80.1581398,25.7477124],[-80.1554253,25.7483681],[-80.1554766,25.7514915],[-80.1539877,25.752909],[-80.1518636,25.7547607],[-80.1500243,25.7570924],[-80.1471321,25.7557027],[-80.1464489,25.7532283],[-80.1462279,25.7516457],[-80.1451058,25.7504812],[-80.1431822,25.7486888],[-80.1430182,25.7453692]]],[[[-81.356634,25.75207],[-81.3569491,25.7506519],[-81.3588399,25.7510458],[-81.3589974,25.7516513],[-81.3591081,25.752077],[-81.3617548,25.7524639],[-81.3620699,25.7540395],[-81.36119,25.7549195],[-81.360967,25.7551425],[-81.3588398,25.7556152],[-81.3571854,25.754591],[-81.3571854,25.7530154],[-81.3567532,25.7522744],[-81.356634,25.75207]]],[[[-81.3710414,25.7578937],[-81.3696176,25.7553616],[-81.3692711,25.7547455],[-81.3700435,25.7550696],[-81.3720111,25.755895],[-81.3736481,25.7543072],[-81.3723969,25.7532266],[-81.3725547,25.750964],[-81.3739228,25.7506483],[-81.3756051,25.7513149],[-81.3764871,25.7525427],[-81.3758627,25.754572],[-81.3763714,25.7548241],[-81.3767664,25.7550199],[-81.3788574,25.7563888],[-81.3794021,25.7596331],[-81.3770386,25.7609724],[-81.3751615,25.7610465],[-81.3710512,25.7612087],[-81.3706572,25.7590816],[-81.3708816,25.758388],[-81.3710414,25.7578937]]],[[[-81.4886904,25.8243875],[-81.4890753,25.8236987],[-81.4912833,25.8257059],[-81.4915677,25.8281534],[-81.4918837,25.8289732],[-81.493018,25.8319161],[-81.4885534,25.8319163],[-81.4883728,25.8300651],[-81.488129,25.827566],[-81.4875437,25.8264394],[-81.4886904,25.8243875]]],[[[-81.467455,25.8179994],[-81.4678644,25.8160232],[-81.4708162,25.817028],[-81.4749065,25.8193226],[-81.4731825,25.8211294],[-81.4716435,25.8225229],[-81.4680514,25.8207827],[-81.467455,25.8179994]]],[[[-81.477822,25.8234274],[-81.4797819,25.8209641],[-81.4823977,25.8222877],[-81.4844277,25.8238747],[-81.4868288,25.8250633],[-81.486533,25.828308],[-81.48642,25.8311143],[-81.4833171,25.8309213],[-81.4831624,25.8273333],[-81.4823697,25.8266849],[-81.4804305,25.8250984],[-81.477822,25.8234274]]],[[[-81.4768429,25.8288478],[-81.4769557,25.8284318],[-81.4818623,25.8310579],[-81.4808966,25.8357486],[-81.4807744,25.8357303],[-81.4787105,25.8337503],[-81.4771618,25.8316026],[-81.4763874,25.8305287],[-81.4768429,25.8288478]]],[[[-81.4336327,25.8319826],[-81.4309961,25.8304839],[-81.4286665,25.8322822],[-81.4284614,25.8317196],[-81.4280961,25.830717],[-81.4300792,25.8286257],[-81.4346324,25.8286257],[-81.4369451,25.8292865],[-81.4393633,25.8318319],[-81.4389375,25.8353451],[-81.438152,25.83553],[-81.4344638,25.8363978],[-81.4344607,25.8324532],[-81.4336327,25.8319826]]],[[[-81.3725972,25.8101884],[-81.3738178,25.8064827],[-81.3750551,25.8065295],[-81.3754861,25.8065459],[-81.3762265,25.8060335],[-81.3787306,25.804301],[-81.3802281,25.807427],[-81.380057,25.8085375],[-81.3798624,25.8098012],[-81.3829057,25.81058],[-81.3836673,25.8120149],[-81.3843676,25.8133342],[-81.3837805,25.8144107],[-81.3829421,25.8159481],[-81.3824922,25.8166308],[-81.3816251,25.8179469],[-81.3804318,25.8174891],[-81.3790327,25.8169524],[-81.3795231,25.8153199],[-81.3768701,25.8144505],[-81.3767989,25.8131837],[-81.3767127,25.8116484],[-81.3725972,25.8101884]]],[[[-81.4427901,25.811016],[-81.4454487,25.8086778],[-81.4489935,25.8087394],[-81.4474493,25.8124824],[-81.4495578,25.8147741],[-81.4481161,25.8170219],[-81.4437948,25.8149982],[-81.4430536,25.8149735],[-81.4406956,25.8148949],[-81.4407921,25.8141472],[-81.4409931,25.8125904],[-81.4427901,25.811016]]],[[[-81.4024243,25.8086533],[-81.4017758,25.8059679],[-81.4032962,25.8034509],[-81.4058371,25.8032954],[-81.4068525,25.8041298],[-81.4076457,25.8047817],[-81.4085208,25.806691],[-81.4057635,25.8061471],[-81.4063101,25.8090782],[-81.4024243,25.8086533]]],[[[-81.4292042,25.8032629],[-81.4296787,25.8024596],[-81.4303061,25.8013973],[-81.4316091,25.7996314],[-81.4339131,25.7992194],[-81.4355981,25.7999525],[-81.4376241,25.7998062],[-81.439514,25.8024503],[-81.4400081,25.8031415],[-81.4389826,25.8031514],[-81.4385387,25.8031556],[-81.4376436,25.8030541],[-81.4367049,25.8029477],[-81.4339738,25.8032058],[-81.4328008,25.8041781],[-81.4324449,25.807205],[-81.432376,25.807791],[-81.4349974,25.8087432],[-81.4369525,25.8117682],[-81.4362585,25.811879],[-81.4336688,25.8122925],[-81.4338359,25.8150939],[-81.432986,25.8170718],[-81.4311892,25.8182019],[-81.4296718,25.8161164],[-81.4304788,25.8121772],[-81.4297296,25.8112404],[-81.4290576,25.8104001],[-81.4287143,25.807416],[-81.4292042,25.8032629]]],[[[-81.3920081,25.80206],[-81.3927572,25.7991359],[-81.3944529,25.7999011],[-81.3950707,25.7972499],[-81.3941106,25.79591],[-81.3938607,25.7955613],[-81.3943765,25.7948074],[-81.3955149,25.7931433],[-81.398539,25.7943644],[-81.3980833,25.7974169],[-81.4002261,25.7972645],[-81.4004792,25.7985631],[-81.4008455,25.8004424],[-81.4008504,25.8009427],[-81.4008739,25.8033375],[-81.3995127,25.8033793],[-81.399217,25.8033884],[-81.3977881,25.8032974],[-81.3957021,25.8032524],[-81.3941711,25.8032394],[-81.3920081,25.80206]]],[[[-81.3751858,25.797473],[-81.3755201,25.7970441],[-81.3779279,25.7987024],[-81.3797751,25.8010542],[-81.3790641,25.8032643],[-81.3770883,25.8032748],[-81.3764071,25.8032784],[-81.3761486,25.8014338],[-81.3742122,25.798722],[-81.3751858,25.797473]]],[[[-81.3584967,25.8100314],[-81.3603001,25.8088884],[-81.3627606,25.8097484],[-81.3648361,25.8125139],[-81.3639328,25.8146739],[-81.3612651,25.8171025],[-81.359278,25.820011],[-81.3592753,25.8200149],[-81.3592741,25.8200166],[-81.3592738,25.8200172],[-81.3578856,25.8183916],[-81.3568958,25.816574],[-81.3568409,25.8124505],[-81.3584967,25.8100314]]],[[[-81.4141049,25.8260151],[-81.4136026,25.8229822],[-81.4113449,25.8219691],[-81.4104373,25.8215619],[-81.4071513,25.8232731],[-81.4058555,25.8220821],[-81.4055567,25.8218073],[-81.4035951,25.8229993],[-81.4022493,25.8240778],[-81.4005636,25.8254287],[-81.3999508,25.823982],[-81.3993737,25.8226196],[-81.3979861,25.8241955],[-81.3969142,25.8254129],[-81.3943589,25.8244058],[-81.3922416,25.8210813],[-81.3917216,25.8201294],[-81.3905396,25.8179654],[-81.3937318,25.8158243],[-81.3941147,25.8133681],[-81.3942432,25.8125434],[-81.3943236,25.8107034],[-81.3941534,25.81003],[-81.3937067,25.8082619],[-81.3966372,25.8089056],[-81.3997769,25.8113896],[-81.3973219,25.8154577],[-81.4010058,25.8175882],[-81.4011132,25.8176503],[-81.4037088,25.8176161],[-81.4066338,25.8181541],[-81.4075948,25.8154026],[-81.4094891,25.8153174],[-81.4110807,25.8161735],[-81.4135547,25.8160319],[-81.4138027,25.8160177],[-81.4132358,25.8126947],[-81.413295,25.8091663],[-81.4119611,25.8067974],[-81.4122647,25.8043796],[-81.4124043,25.8032687],[-81.4145652,25.8035093],[-81.4154799,25.8036111],[-81.4154438,25.8042187],[-81.4153566,25.8056854],[-81.4157674,25.8072197],[-81.4161159,25.8085211],[-81.4158241,25.8112579],[-81.4174327,25.8133077],[-81.4173072,25.8144234],[-81.4171539,25.8157862],[-81.417477,25.8159969],[-81.419718,25.8174587],[-81.4199088,25.816933],[-81.4208199,25.8144242],[-81.4215106,25.8121128],[-81.4217981,25.8111509],[-81.4236501,25.8080451],[-81.4262347,25.8106484],[-81.4249262,25.8127696],[-81.4261368,25.8165576],[-81.4270033,25.8176561],[-81.4274642,25.8182403],[-81.4278589,25.8190163],[-81.4286167,25.8205058],[-81.4319521,25.8205628],[-81.4327312,25.8213173],[-81.434992,25.8235066],[-81.4308808,25.8246255],[-81.4290842,25.8259848],[-81.429044,25.8259581],[-81.4271498,25.8247004],[-81.425153,25.8242967],[-81.4228438,25.8252648],[-81.4228184,25.8252754],[-81.4238903,25.8275141],[-81.4242272,25.8282177],[-81.4231729,25.8303192],[-81.422979,25.8307056],[-81.4209106,25.8323877],[-81.420508,25.8316385],[-81.4191624,25.8291344],[-81.4175956,25.8276243],[-81.4159335,25.8270563],[-81.415682,25.8269703],[-81.4141049,25.8260151]]],[[[-80.1492119,25.7737052],[-80.1505855,25.7737052],[-80.1514901,25.7747518],[-80.1523085,25.7786138],[-80.1520965,25.7805277],[-80.1504939,25.7813061],[-80.1490745,25.7798409],[-80.1484792,25.7758115],[-80.1492119,25.7737052]]],[[[-80.1614488,25.7925348],[-80.1616743,25.7887792],[-80.161919,25.7885802],[-80.1616024,25.7881374],[-80.1632892,25.7881966],[-80.1638529,25.7905538],[-80.1636155,25.7905311],[-80.1637327,25.7926281],[-80.162647,25.7932572],[-80.1614488,25.7925348]]],[[[-80.1577479,25.786282],[-80.1599004,25.7862136],[-80.1609091,25.7903444],[-80.1608409,25.7922668],[-80.1603446,25.7954046],[-80.1579187,25.7953705],[-80.1579187,25.7928133],[-80.1574264,25.790363],[-80.1576994,25.7888692],[-80.1576795,25.787717],[-80.1577479,25.786282]]],[[[-80.1671564,25.7756833],[-80.1620916,25.7735042],[-80.1620442,25.7735105],[-80.1536314,25.7707169],[-80.1451446,25.7674535],[-80.1451421,25.7674526],[-80.1451397,25.7674516],[-80.1458921,25.7665927],[-80.161635,25.7660348],[-80.1644926,25.7684528],[-80.166523,25.7693698],[-80.1691034,25.7704263],[-80.1711939,25.7711755],[-80.1736716,25.7725373],[-80.1793994,25.7753292],[-80.1809403,25.7770019],[-80.1809406,25.7770032],[-80.1809409,25.7770044],[-80.1813572,25.7787678],[-80.1813577,25.7787698],[-80.1813582,25.7787718],[-80.1813955,25.7789299],[-80.1800901,25.7809917],[-80.1782214,25.7804433],[-80.1762707,25.7796111],[-80.1721234,25.7778213],[-80.1693104,25.7766123],[-80.1671564,25.7756833]]],[[[-80.1559428,25.777643],[-80.1575912,25.7766814],[-80.1618558,25.7786009],[-80.1640932,25.7792914],[-80.1683058,25.7816724],[-80.1672984,25.7830461],[-80.163008,25.7813023],[-80.1576828,25.7792456],[-80.1559428,25.777643]]],[[[-80.155256,25.7813977],[-80.1562175,25.7802072],[-80.1596032,25.781649],[-80.1622368,25.7827858],[-80.1649174,25.7836871],[-80.1658332,25.7850608],[-80.1645969,25.7861139],[-80.1584154,25.7835498],[-80.155256,25.7813977]]],[[[-80.1733161,25.7861334],[-80.1718797,25.7819709],[-80.1731936,25.7819905],[-80.1731946,25.7819905],[-80.1731957,25.7819905],[-80.1748234,25.7820148],[-80.1777246,25.783523],[-80.1780842,25.7873641],[-80.1780844,25.7873662],[-80.1780846,25.7873683],[-80.1781008,25.787542],[-80.1733161,25.7861334]]],[[[-80.1379961,25.7641831],[-80.1345772,25.7620038],[-80.1361501,25.7595607],[-80.1369634,25.7574609],[-80.1400295,25.75563],[-80.1416746,25.7572389],[-80.1441731,25.7598339],[-80.1488184,25.7623693],[-80.1488514,25.7640698],[-80.1456681,25.7635127],[-80.1414364,25.7637109],[-80.1396726,25.7643405],[-80.1379961,25.7641831]]],[[[-81.3660642,25.761999],[-81.3650637,25.7610512],[-81.3636456,25.7614451],[-81.3622275,25.7630207],[-81.3607306,25.7634934],[-81.3597853,25.7623905],[-81.3604727,25.7613937],[-81.3613609,25.7601058],[-81.3635712,25.7597963],[-81.3644311,25.7588557],[-81.3662491,25.7574864],[-81.3680441,25.7578304],[-81.3681289,25.7581947],[-81.3684544,25.7595924],[-81.3690798,25.7609178],[-81.3695101,25.7618296],[-81.3689048,25.7622871],[-81.3684856,25.7626038],[-81.3686089,25.7641237],[-81.3672696,25.76436],[-81.3659303,25.7639661],[-81.3659952,25.763131],[-81.3660818,25.7620156],[-81.3660642,25.761999]]],[[[-80.1242099,25.9001071],[-80.1209189,25.8990773],[-80.120917,25.8990767],[-80.1209151,25.8990761],[-80.1216812,25.8969371],[-80.1216398,25.8948507],[-80.1213382,25.8923159],[-80.1211092,25.8895814],[-80.1205129,25.8868881],[-80.120077,25.8841803],[-80.1198694,25.8814833],[-80.1202679,25.8787439],[-80.1200859,25.8763045],[-80.119635,25.8725161],[-80.1191804,25.8683454],[-80.1189948,25.86489],[-80.118927,25.8615495],[-80.1187837,25.8584515],[-80.1188582,25.8545499],[-80.1188779,25.8513409],[-80.1187713,25.8492082],[-80.1187609,25.8468148],[-80.1188524,25.8442688],[-80.1189644,25.8419475],[-80.1189949,25.8393377],[-80.1191374,25.8366693],[-80.119272,25.8343073],[-80.1193304,25.8311925],[-80.1194652,25.8276764],[-80.1196031,25.8258187],[-80.1199066,25.8233366],[-80.1200264,25.8211818],[-80.1201691,25.8191933],[-80.1206398,25.816282],[-80.1210672,25.8131627],[-80.1215631,25.8108282],[-80.1221364,25.8079261],[-80.1228032,25.8056259],[-80.123438,25.8033397],[-80.1249089,25.7990613],[-80.1252584,25.7969481],[-80.1258314,25.7939639],[-80.1266786,25.7910966],[-80.1271777,25.7889006],[-80.1273898,25.7870335],[-80.1277696,25.7845509],[-80.1281398,25.7820497],[-80.1283966,25.7802037],[-80.1288624,25.7779443],[-80.1294975,25.7757203],[-80.1301594,25.7733695],[-80.1305924,25.771246],[-80.1308684,25.7683935],[-80.1303936,25.7641474],[-80.1334338,25.7652779],[-80.136566,25.7667361],[-80.1380898,25.7685847],[-80.1407434,25.7723792],[-80.1407445,25.7723814],[-80.1407457,25.7723835],[-80.1417538,25.7742673],[-80.1417551,25.7742696],[-80.1417563,25.774272],[-80.1421136,25.7749396],[-80.142938,25.7784083],[-80.1432812,25.7820206],[-80.1442153,25.7847466],[-80.1455286,25.7875773],[-80.1462648,25.7892106],[-80.146265,25.7892106],[-80.1462653,25.7892106],[-80.1483133,25.7890042],[-80.1503649,25.790231],[-80.1503649,25.7902325],[-80.1503648,25.790234],[-80.1502803,25.7923038],[-80.1487786,25.7931921],[-80.146031,25.7916069],[-80.14603,25.7916064],[-80.146029,25.7916058],[-80.1458164,25.7902695],[-80.1458159,25.7902664],[-80.1458154,25.7902633],[-80.1442346,25.7917956],[-80.1451054,25.7939083],[-80.1450754,25.7963372],[-80.1450767,25.7963392],[-80.145078,25.7963411],[-80.1462614,25.7981341],[-80.1462621,25.7981354],[-80.1462628,25.7981368],[-80.147369,25.8004719],[-80.1470559,25.8037567],[-80.1447951,25.8061621],[-80.1417658,25.8059183],[-80.1386734,25.8082953],[-80.1369815,25.8094721],[-80.1369854,25.8094727],[-80.1369892,25.8094732],[-80.1406184,25.8099843],[-80.1428274,25.8100283],[-80.1446848,25.8103779],[-80.1446849,25.8103779],[-80.1446851,25.8103779],[-80.1447096,25.8103825],[-80.1458956,25.8106057],[-80.1458938,25.8106075],[-80.1458919,25.8106092],[-80.1439079,25.8124593],[-80.142291,25.8139757],[-80.1402384,25.8155966],[-80.1389032,25.8168172],[-80.1375714,25.8194289],[-80.1367076,25.8235158],[-80.1337298,25.826747],[-80.1316087,25.8294019],[-80.1305239,25.8326871],[-80.1322289,25.8362303],[-80.1331429,25.8382402],[-80.132724,25.8412425],[-80.1312724,25.8426683],[-80.1296936,25.8438857],[-80.1281186,25.8461936],[-80.1281215,25.8461936],[-80.1281243,25.8461936],[-80.1303102,25.8462081],[-80.1324678,25.8469744],[-80.1324669,25.8469759],[-80.1324659,25.8469775],[-80.1308222,25.8496167],[-80.1256363,25.849782],[-80.1227202,25.8495379],[-80.1233622,25.8522009],[-80.1233632,25.8522018],[-80.1233641,25.8522026],[-80.1252852,25.8540044],[-80.1278521,25.852545],[-80.1298872,25.8524386],[-80.1323784,25.8515358],[-80.1345606,25.8501193],[-80.1370437,25.8492407],[-80.1401409,25.8490963],[-80.1428597,25.850116],[-80.1434594,25.8508685],[-80.143461,25.8508705],[-80.1434626,25.8508725],[-80.1452538,25.8531206],[-80.145254,25.8531215],[-80.1452541,25.8531225],[-80.1457563,25.855869],[-80.1451207,25.8578653],[-80.1437707,25.8594818],[-80.141469,25.8608352],[-80.1394746,25.8612298],[-80.1361668,25.8613548],[-80.1335656,25.8617097],[-80.1326775,25.8633281],[-80.1312799,25.865875],[-80.1297565,25.8686513],[-80.1285852,25.8707858],[-80.1285871,25.870787],[-80.128589,25.8707882],[-80.134075,25.8741685],[-80.1360015,25.8729879],[-80.1386961,25.8723365],[-80.1408624,25.8726668],[-80.1423831,25.8749134],[-80.1423831,25.8749138],[-80.1423831,25.8749143],[-80.1423519,25.8766618],[-80.142108,25.879279],[-80.1416236,25.8819793],[-80.1403793,25.8840227],[-80.1380018,25.8835559],[-80.1384842,25.8853381],[-80.139212,25.8876143],[-80.137394,25.8919553],[-80.1343827,25.8936052],[-80.1312931,25.8933448],[-80.1298356,25.8907192],[-80.129005,25.8947694],[-80.1289764,25.8975649],[-80.1272654,25.8990531],[-80.124723,25.8999301],[-80.124722,25.8999305],[-80.1247209,25.8999308],[-80.1242099,25.9001071]]],[[[-80.1537503,25.7877853],[-80.1560395,25.7875803],[-80.1559784,25.7893926],[-80.1562198,25.7920277],[-80.1561762,25.7934229],[-80.155732,25.7945504],[-80.1538528,25.7943113],[-80.1537503,25.7877853]]],[[[-81.3767029,25.7915659],[-81.3783045,25.7879535],[-81.3805496,25.7884732],[-81.382694,25.7890476],[-81.3808781,25.7902856],[-81.3811278,25.7934977],[-81.3811652,25.7939786],[-81.3808571,25.7974885],[-81.3792277,25.7957661],[-81.3779219,25.7943858],[-81.3767029,25.7915659]]],[[[-80.1563637,25.6871899],[-80.1555612,25.6839618],[-80.1548606,25.6807542],[-80.1542961,25.6775992],[-80.1533321,25.6739867],[-80.1532891,25.6707461],[-80.1555052,25.6670963],[-80.1580779,25.6655575],[-80.1598219,25.6671299],[-80.1598226,25.6671317],[-80.1598233,25.6671335],[-80.1606171,25.6691815],[-80.1617069,25.6716419],[-80.1621183,25.6755577],[-80.1621194,25.6755584],[-80.1621205,25.6755591],[-80.1647181,25.6771894],[-80.1720277,25.6834921],[-80.1732216,25.6833532],[-80.1761007,25.6869371],[-80.1761001,25.6869371],[-80.1760995,25.6869371],[-80.1728001,25.6868022],[-80.1736192,25.6886826],[-80.1736201,25.6886842],[-80.1736211,25.6886857],[-80.1746816,25.6904161],[-80.1746815,25.6904162],[-80.1746815,25.6904163],[-80.1728091,25.6946283],[-80.1705704,25.6971859],[-80.1689224,25.6984618],[-80.1675742,25.7005332],[-80.1670163,25.7051751],[-80.1670178,25.7051756],[-80.1670193,25.705176],[-80.1735598,25.7071382],[-80.1735598,25.7071401],[-80.1735598,25.707142],[-80.1735598,25.7097556],[-80.1657076,25.7097556],[-80.1640717,25.7140089],[-80.1524869,25.7229508],[-80.1524898,25.7229518],[-80.1524928,25.7229529],[-80.1555785,25.7240515],[-80.1579301,25.7265364],[-80.1579297,25.7265369],[-80.1579292,25.7265374],[-80.1564738,25.7281176],[-80.1527554,25.7285943],[-80.1497044,25.7271727],[-80.1477199,25.7243161],[-80.1477186,25.7243142],[-80.1477173,25.7243123],[-80.1478022,25.7204046],[-80.1487662,25.7177194],[-80.1501252,25.7150649],[-80.1512045,25.7122559],[-80.1515579,25.7104746],[-80.1514684,25.7085783],[-80.1520198,25.7059459],[-80.1537233,25.7030633],[-80.1554972,25.6996495],[-80.1561861,25.697159],[-80.1564879,25.6950636],[-80.156487,25.6929262],[-80.1566568,25.690191],[-80.1563637,25.6871899]]],[[[-81.2833727,25.696886],[-81.2847474,25.6963888],[-81.2866333,25.6977302],[-81.2874236,25.6982924],[-81.2908296,25.6993996],[-81.2888599,25.7020371],[-81.2867188,25.7007124],[-81.2833467,25.6993915],[-81.2827581,25.699161],[-81.2826266,25.6971559],[-81.2833727,25.696886]]],[[[-81.355006,25.6957101],[-81.3555016,25.6951652],[-81.3559187,25.6953779],[-81.3567306,25.6987854],[-81.3555503,25.7017341],[-81.3557468,25.7036436],[-81.352438,25.7048162],[-81.3535128,25.7023941],[-81.3538561,25.6998832],[-81.3542129,25.698298],[-81.3546306,25.6964426],[-81.355006,25.6957101]]],[[[-81.1878538,25.7070151],[-81.1877199,25.706276],[-81.1876686,25.7059932],[-81.189242,25.705146],[-81.191428,25.7036249],[-81.1929246,25.7018631],[-81.1950342,25.7015791],[-81.1970625,25.7010112],[-81.1979956,25.7036886],[-81.1976096,25.7042032],[-81.1956833,25.7067717],[-81.1944257,25.7077453],[-81.1938577,25.7063661],[-81.1930058,25.7071977],[-81.1911803,25.7065283],[-81.1910111,25.7069682],[-81.1907746,25.7075831],[-81.1895684,25.7083411],[-81.1885434,25.7085161],[-81.1878538,25.7070151]]],[[[-81.213421,25.730008],[-81.2139451,25.7288229],[-81.2136972,25.72811],[-81.2135461,25.7276757],[-81.2141197,25.7266282],[-81.2159652,25.7265784],[-81.2181348,25.7265784],[-81.2187084,25.7257305],[-81.2191823,25.7245584],[-81.2214268,25.7250571],[-81.2215506,25.7249117],[-81.2225739,25.7237104],[-81.2231725,25.7228126],[-81.2238472,25.7229406],[-81.2246189,25.7230869],[-81.2253671,25.722264],[-81.2263148,25.7231867],[-81.2267197,25.7263455],[-81.225894,25.7288227],[-81.225716,25.7293312],[-81.225316,25.7304741],[-81.2244077,25.7312173],[-81.2231691,25.7307218],[-81.2221783,25.7312173],[-81.2218357,25.73014],[-81.2203617,25.7299787],[-81.2201425,25.7303349],[-81.2197011,25.7310521],[-81.2182148,25.7315476],[-81.2175543,25.732621],[-81.2163983,25.7322907],[-81.2154332,25.7316783],[-81.2162978,25.7314042],[-81.2166372,25.7312965],[-81.2163567,25.7311273],[-81.2149722,25.7302921],[-81.2137272,25.7300641],[-81.213421,25.730008]]],[[[-81.2589455,25.7458149],[-81.2581151,25.7449614],[-81.2571479,25.7444524],[-81.2564117,25.7446411],[-81.2561552,25.7447069],[-81.2547044,25.745165],[-81.2532281,25.7457759],[-81.2535081,25.7443251],[-81.2535335,25.7422125],[-81.2527445,25.7412962],[-81.2510951,25.7390079],[-81.2508683,25.7384951],[-81.2498679,25.7362334],[-81.251682,25.7342059],[-81.2510951,25.7332454],[-81.2510052,25.7330083],[-81.2505082,25.7316981],[-81.2490676,25.7308977],[-81.250028,25.7299373],[-81.250775,25.7290302],[-81.2485874,25.7288702],[-81.2477337,25.729884],[-81.2472535,25.7313246],[-81.2488008,25.732285],[-81.2500506,25.7331651],[-81.2486706,25.7343379],[-81.2476509,25.7352046],[-81.2465598,25.7349528],[-81.2463552,25.7354901],[-81.246133,25.7360733],[-81.2469867,25.7367136],[-81.2471468,25.7381008],[-81.2451726,25.7395415],[-81.2432518,25.7419425],[-81.2450124,25.7435431],[-81.2409041,25.7420492],[-81.2403407,25.7423027],[-81.2398369,25.7425294],[-81.2390988,25.7429216],[-81.2381295,25.7434365],[-81.2375426,25.7413022],[-81.2376064,25.7402492],[-81.2376493,25.7395415],[-81.2371691,25.7379941],[-81.2365289,25.7371938],[-81.2360486,25.7351662],[-81.2350349,25.7328186],[-81.23566,25.7324316],[-81.2361553,25.7321249],[-81.2359272,25.7320565],[-81.2350882,25.7318048],[-81.2330073,25.7304709],[-81.2319936,25.7298306],[-81.2293257,25.72839],[-81.2291434,25.7278077],[-81.2288666,25.7269236],[-81.2288666,25.725685],[-81.2274628,25.7249418],[-81.2278944,25.7228774],[-81.2283746,25.7223833],[-81.2287089,25.7220395],[-81.2300057,25.7216654],[-81.2311778,25.7210918],[-81.231541,25.7199173],[-81.2317064,25.7193825],[-81.2336478,25.7177023],[-81.2336478,25.7153686],[-81.2371235,25.7163461],[-81.2384658,25.7167236],[-81.2387176,25.7166517],[-81.2400467,25.7162719],[-81.2414771,25.7162719],[-81.2414951,25.7158398],[-81.2415523,25.7144652],[-81.2444883,25.7124326],[-81.2445469,25.7098534],[-81.2445636,25.7091202],[-81.2465158,25.7091925],[-81.2465962,25.7091955],[-81.2467682,25.7092632],[-81.2490805,25.7101741],[-81.2499086,25.7089696],[-81.2523929,25.7090449],[-81.2535974,25.7072382],[-81.2532963,25.704528],[-81.255103,25.7040763],[-81.2563474,25.7034487],[-81.2595163,25.7011571],[-81.2634996,25.7013489],[-81.2662211,25.7019914],[-81.2692298,25.7016449],[-81.2702891,25.699508],[-81.2727349,25.6985529],[-81.2752284,25.6987947],[-81.2756939,25.6997567],[-81.2767019,25.7018399],[-81.2802961,25.7031424],[-81.2836001,25.7033264],[-81.2857731,25.7043971],[-81.2849666,25.7071919],[-81.2847812,25.7112555],[-81.2841846,25.7129443],[-81.2836507,25.7144558],[-81.2844006,25.7185456],[-81.2863621,25.7221474],[-81.2875395,25.7234903],[-81.2881151,25.7241467],[-81.2873347,25.7276541],[-81.2858894,25.7302234],[-81.2839625,25.7305445],[-81.2813129,25.7336759],[-81.2803041,25.73382],[-81.2801888,25.7338365],[-81.2792983,25.7346952],[-81.2756925,25.7381721],[-81.2736853,25.7380919],[-81.2731485,25.7386286],[-81.2692693,25.7425078],[-81.2691936,25.7450071],[-81.2681944,25.7451905],[-81.2681589,25.7453989],[-81.2679908,25.7463868],[-81.2663363,25.7455977],[-81.2650383,25.7455723],[-81.2618057,25.7472267],[-81.2600495,25.747354],[-81.2590314,25.7459032],[-81.2589455,25.7458149]]],[[[-81.0834601,25.3297459],[-81.0835755,25.328852],[-81.0836153,25.3285434],[-81.0842269,25.3275989],[-81.0861512,25.3281013],[-81.0863527,25.328791],[-81.0866026,25.3296463],[-81.087633,25.3295565],[-81.0878052,25.3295414],[-81.0881981,25.3306194],[-81.089215,25.3314423],[-81.0896455,25.3317907],[-81.0906168,25.3331709],[-81.0909576,25.3350922],[-81.0914726,25.3353731],[-81.0930723,25.3362457],[-81.0952212,25.337253],[-81.0961484,25.3376876],[-81.09586,25.3386488],[-81.0936491,25.3399946],[-81.0923959,25.3403802],[-81.0899001,25.3411481],[-81.0888583,25.3427562],[-81.0882108,25.3436517],[-81.0879895,25.3418102],[-81.0888946,25.3391311],[-81.0878809,25.3363795],[-81.0877288,25.3363113],[-81.086831,25.3359089],[-81.0884263,25.3356134],[-81.088786,25.3355468],[-81.0885686,25.3348706],[-81.0884601,25.3345331],[-81.0875912,25.333809],[-81.0865775,25.3333745],[-81.0850569,25.3331211],[-81.0857614,25.3322793],[-81.0856002,25.3311108],[-81.0850094,25.330734],[-81.0834601,25.3297459]]],[[[-81.0577596,25.3382875],[-81.0581823,25.336981],[-81.056895,25.3360972],[-81.057939,25.335998],[-81.0615299,25.3363663],[-81.0615552,25.3363181],[-81.0621128,25.3352555],[-81.0624283,25.3343814],[-81.0625427,25.3340645],[-81.0630998,25.3341817],[-81.0642921,25.3344328],[-81.0658573,25.3336962],[-81.0668701,25.3339724],[-81.067383,25.3347843],[-81.067975,25.3357218],[-81.069174,25.3359574],[-81.0689892,25.3384527],[-81.0684044,25.3392882],[-81.0663309,25.3386284],[-81.0655713,25.3393881],[-81.0652431,25.3397163],[-81.0645568,25.3399314],[-81.0619302,25.3407547],[-81.060694,25.338134],[-81.0588645,25.339024],[-81.0603972,25.3409525],[-81.0590128,25.3414964],[-81.0586612,25.3405671],[-81.0583205,25.3396668],[-81.0580545,25.3390128],[-81.0577596,25.3382875]]],[[[-81.1054727,25.348646],[-81.1023005,25.3467235],[-81.0983593,25.3447048],[-81.0948026,25.3441281],[-81.0909643,25.3455674],[-81.0901885,25.3458584],[-81.0898007,25.3459924],[-81.0890522,25.3462512],[-81.0895779,25.3452241],[-81.0901035,25.3442375],[-81.0909972,25.3427881],[-81.0915343,25.3419172],[-81.09586,25.3414365],[-81.0966154,25.340789],[-81.0978787,25.3397062],[-81.0990265,25.3397472],[-81.1005702,25.3398024],[-81.1002754,25.3406867],[-81.1000896,25.3412443],[-81.0997051,25.3426862],[-81.1043192,25.3442242],[-81.1048558,25.3444306],[-81.1068185,25.3451855],[-81.1120449,25.3444169],[-81.1133551,25.3442242],[-81.1178731,25.3449932],[-81.1184498,25.3470119],[-81.1159505,25.3468196],[-81.1125861,25.3477809],[-81.1054727,25.348646]]],[[[-81.0818352,25.3488958],[-81.0812807,25.3474172],[-81.0810958,25.3457537],[-81.0849258,25.3454577],[-81.0857448,25.3453945],[-81.086143,25.346372],[-81.0871029,25.3476944],[-81.0869181,25.348711],[-81.0855318,25.3485262],[-81.0845153,25.3488958],[-81.0834987,25.3488958],[-81.0818352,25.3488958]]],[[[-80.641474,25.0973904],[-80.6422507,25.0946196],[-80.6420023,25.0921619],[-80.6432789,25.0918998],[-80.6442582,25.0895061],[-80.6456986,25.0859849],[-80.6420972,25.0866397],[-80.6412774,25.0852735],[-80.6450438,25.0817286],[-80.644523,25.0791246],[-80.6440079,25.0765492],[-80.6395673,25.0744123],[-80.641069,25.0730775],[-80.6425929,25.0726013],[-80.6436919,25.0731664],[-80.6454503,25.0745062],[-80.6463984,25.075299],[-80.6469587,25.0757674],[-80.647297,25.076121],[-80.6482124,25.0770778],[-80.6489744,25.077935],[-80.6486194,25.0785613],[-80.6486156,25.078568],[-80.6486119,25.0785747],[-80.6482084,25.081898],[-80.6479905,25.0836931],[-80.6496275,25.0889316],[-80.6496275,25.0912234],[-80.6469453,25.0933309],[-80.6468764,25.0944235],[-80.6469096,25.0968872],[-80.650217,25.0950773],[-80.6506887,25.0965865],[-80.6510333,25.0976893],[-80.6513314,25.0999252],[-80.6511357,25.1030515],[-80.6522217,25.1049015],[-80.653083,25.1063689],[-80.6514807,25.1068892],[-80.6492793,25.107604],[-80.6462223,25.1093087],[-80.6419019,25.1117142],[-80.6423743,25.114014],[-80.6415136,25.1146485],[-80.6397243,25.1159674],[-80.637367,25.119208],[-80.6371799,25.1226905],[-80.6363154,25.121901],[-80.6354746,25.1211333],[-80.6342001,25.1193178],[-80.631997,25.1186582],[-80.6323514,25.118407],[-80.6350971,25.1164614],[-80.6352955,25.1161341],[-80.6369405,25.1134203],[-80.6374752,25.1119827],[-80.6383436,25.1096475],[-80.6397354,25.1075035],[-80.6434301,25.1073412],[-80.6444458,25.1047109],[-80.6446504,25.1041812],[-80.6475706,25.1040828],[-80.6468063,25.1016623],[-80.645279,25.0995973],[-80.6446237,25.0986169],[-80.6439535,25.0976142],[-80.6428258,25.0975124],[-80.641474,25.0973904]]],[[[-80.266308,25.348422],[-80.2637546,25.3470585],[-80.2615658,25.3462462],[-80.2599807,25.3447055],[-80.2580024,25.343158],[-80.2558878,25.3411969],[-80.2527517,25.3396562],[-80.2543339,25.336939],[-80.2565201,25.3361331],[-80.2580616,25.3363598],[-80.2584045,25.3364102],[-80.2596839,25.3359369],[-80.2599874,25.3358246],[-80.2599975,25.3358209],[-80.2600075,25.3358172],[-80.2612438,25.3353598],[-80.2577574,25.3343595],[-80.2569272,25.3328465],[-80.2578777,25.3304385],[-80.2588384,25.3271201],[-80.2602244,25.3247378],[-80.2602283,25.3247353],[-80.2602322,25.3247329],[-80.2626586,25.3231967],[-80.2630462,25.3229992],[-80.2646024,25.3222065],[-80.2667109,25.3215209],[-80.2682123,25.3210328],[-80.2682132,25.3210325],[-80.268214,25.3210322],[-80.27175,25.31988],[-80.2734264,25.316812],[-80.275586,25.3128383],[-80.2771265,25.310096],[-80.2784837,25.306858],[-80.2785074,25.3045015],[-80.2782854,25.3020035],[-80.2787627,25.300192],[-80.2802492,25.296717],[-80.2811224,25.2948015],[-80.2825094,25.2929015],[-80.2833479,25.2913045],[-80.2840924,25.2897565],[-80.2853134,25.2884698],[-80.2863217,25.2865221],[-80.288171,25.2830783],[-80.2901368,25.2804246],[-80.2917644,25.2783815],[-80.2937376,25.2758141],[-80.2959844,25.2728845],[-80.2993077,25.2684691],[-80.3023119,25.2639227],[-80.3039239,25.261856],[-80.3045544,25.2602615],[-80.3058724,25.2592017],[-80.3079075,25.2563163],[-80.3096055,25.2526322],[-80.3115284,25.2503915],[-80.3132044,25.2460985],[-80.3149662,25.2419803],[-80.3162096,25.2384873],[-80.3186374,25.2361579],[-80.3227127,25.2336558],[-80.3236863,25.2313311],[-80.325632,25.2281617],[-80.3274161,25.2241456],[-80.3296204,25.2221975],[-80.3296083,25.2198187],[-80.3309814,25.217461],[-80.3336398,25.2169052],[-80.3347954,25.2136583],[-80.3371206,25.2109238],[-80.3390506,25.2083726],[-80.3406881,25.2060375],[-80.3419974,25.2043285],[-80.3426262,25.2020641],[-80.3425982,25.1984718],[-80.3441122,25.1951113],[-80.3468152,25.1928041],[-80.3503076,25.1911609],[-80.3521079,25.1883447],[-80.3536632,25.1850909],[-80.3535336,25.1826438],[-80.3545694,25.1813655],[-80.3555687,25.1798202],[-80.3573768,25.1780107],[-80.3607444,25.1775555],[-80.3627729,25.1753185],[-80.3654054,25.172527],[-80.3672617,25.1704125],[-80.3673641,25.1683432],[-80.3673736,25.1681522],[-80.3670173,25.1661487],[-80.3667354,25.1645635],[-80.3677486,25.1627905],[-80.3692481,25.1601663],[-80.3694702,25.1599033],[-80.3735007,25.1551284],[-80.3735019,25.1551271],[-80.373503,25.1551257],[-80.3721446,25.1546466],[-80.3721431,25.1546461],[-80.3721417,25.1546456],[-80.372312,25.151892],[-80.3736433,25.1505607],[-80.3748197,25.149623],[-80.3768111,25.1480357],[-80.3787393,25.1484029],[-80.3797034,25.1477602],[-80.381402,25.1470716],[-80.3826874,25.1462911],[-80.3833302,25.1449139],[-80.3848911,25.1437662],[-80.3859929,25.1420216],[-80.3869794,25.1431604],[-80.3889009,25.1446426],[-80.389635,25.144328],[-80.390438,25.1439838],[-80.3915909,25.141733],[-80.3929633,25.141184],[-80.3939515,25.1403057],[-80.3938966,25.139043],[-80.3976845,25.1337728],[-80.3985629,25.1323454],[-80.402845,25.130424],[-80.4030646,25.1287771],[-80.4052605,25.127185],[-80.4054252,25.1259224],[-80.4050973,25.1249387],[-80.4050965,25.1249365],[-80.4050958,25.1249342],[-80.4029548,25.1249891],[-80.4015857,25.1253724],[-80.401584,25.1253729],[-80.4015823,25.1253734],[-80.4017464,25.1242244],[-80.4017467,25.1242225],[-80.401747,25.1242205],[-80.4005999,25.124002],[-80.400597,25.1240015],[-80.4005941,25.1240009],[-80.4031194,25.121256],[-80.4035822,25.1198265],[-80.4031772,25.1187571],[-80.408391,25.1109266],[-80.4091119,25.11],[-80.4108931,25.1083529],[-80.4115435,25.106922],[-80.4126623,25.1067398],[-80.4136509,25.1059593],[-80.4145876,25.1041901],[-80.41457,25.1022882],[-80.4146826,25.101796],[-80.4174963,25.1010456],[-80.4174969,25.101048],[-80.4174975,25.1010505],[-80.4178422,25.102429],[-80.4164304,25.1058943],[-80.415325,25.1060275],[-80.4132683,25.1084805],[-80.4103334,25.1112046],[-80.4103364,25.1112052],[-80.4103395,25.1112059],[-80.4127261,25.1116866],[-80.4127242,25.1116881],[-80.4127222,25.1116897],[-80.4118982,25.1123611],[-80.4113774,25.1133262],[-80.4113801,25.1133258],[-80.4113829,25.1133254],[-80.413951,25.1129433],[-80.4150846,25.1115339],[-80.4154079,25.110481],[-80.417001,25.1093239],[-80.419457,25.1077705],[-80.4223728,25.1064901],[-80.4248654,25.1034978],[-80.4269832,25.1011049],[-80.4287544,25.0991795],[-80.4302934,25.0972329],[-80.4296594,25.0951015],[-80.4312542,25.0899391],[-80.4335674,25.0880395],[-80.434841,25.0855989],[-80.4365714,25.0836155],[-80.4384652,25.0810991],[-80.440349,25.0793069],[-80.4429504,25.0767118],[-80.4464574,25.0748065],[-80.4490889,25.07339],[-80.4514142,25.0729635],[-80.4533562,25.0725559],[-80.4533556,25.0725585],[-80.453355,25.0725612],[-80.4525896,25.0757417],[-80.4525911,25.0757434],[-80.4525925,25.0757451],[-80.4538986,25.077318],[-80.4569416,25.0755445],[-80.458556,25.074256],[-80.4606734,25.0723395],[-80.4621591,25.069729],[-80.4648697,25.0676362],[-80.4673469,25.0656295],[-80.4705699,25.063358],[-80.4737416,25.0597728],[-80.4754554,25.0577255],[-80.4778096,25.055494],[-80.4811145,25.050361],[-80.4833598,25.0476549],[-80.4851114,25.0451582],[-80.4877762,25.0437579],[-80.4902311,25.0414165],[-80.4929895,25.039293],[-80.4927312,25.036207],[-80.4925926,25.0344406],[-80.4925925,25.0344391],[-80.4925924,25.0344375],[-80.4896435,25.0327804],[-80.4896418,25.0327795],[-80.4896401,25.0327785],[-80.4907626,25.0290061],[-80.4926081,25.0268105],[-80.4945412,25.0230097],[-80.4969665,25.0215279],[-80.4993724,25.0194936],[-80.5007179,25.0183435],[-80.5033238,25.0170945],[-80.5053041,25.0157922],[-80.5071421,25.014355],[-80.5098448,25.0141605],[-80.5113833,25.0110485],[-80.5141941,25.0100715],[-80.5164508,25.007224],[-80.5167739,25.0045485],[-80.5179648,25.0022321],[-80.5211802,25.002053],[-80.5241538,25.00156],[-80.5242242,25.0015356],[-80.5255797,25.0010656],[-80.5270757,25.0005469],[-80.5279218,25.0001432],[-80.5299557,24.999173],[-80.5304057,24.9989583],[-80.5334849,24.9968522],[-80.5338973,24.9941183],[-80.5355125,24.9919927],[-80.5382117,24.9899359],[-80.5395227,24.9878892],[-80.5411751,24.9857373],[-80.5431783,24.9830606],[-80.5460978,24.9807555],[-80.5478603,24.9788635],[-80.5491513,24.9774909],[-80.5500723,24.9758721],[-80.551779,24.9723642],[-80.5534186,24.970658],[-80.5554307,24.9689724],[-80.5571163,24.9674853],[-80.5592283,24.9657702],[-80.5618801,24.963772],[-80.5634556,24.9619918],[-80.5649466,24.9602246],[-80.5665256,24.9569548],[-80.5692658,24.9556253],[-80.5713531,24.9539388],[-80.5752063,24.9528686],[-80.581343,24.9517039],[-80.5830623,24.9506941],[-80.5860827,24.9507779],[-80.588087,24.9524781],[-80.5903942,24.9498863],[-80.5948085,24.9481711],[-80.5990345,24.9464278],[-80.600815,24.9440046],[-80.6038427,24.9423262],[-80.6074851,24.9419785],[-80.6074895,24.9419781],[-80.6074895,24.9419781],[-80.6074939,24.9419776],[-80.6077043,24.9419576],[-80.607705,24.9419598],[-80.6077057,24.9419621],[-80.608967,24.9459796],[-80.6089678,24.9459803],[-80.6089687,24.945981],[-80.6109658,24.9476181],[-80.6109662,24.9476195],[-80.6109666,24.9476209],[-80.6114369,24.9493731],[-80.6108249,24.9510627],[-80.6098635,24.9515524],[-80.6082483,24.9505171],[-80.6055882,24.9494196],[-80.6055872,24.9494192],[-80.6055861,24.9494188],[-80.6052137,24.9471019],[-80.6052133,24.9470995],[-80.6052129,24.9470972],[-80.6025915,24.9475706],[-80.5985939,24.950134],[-80.5958453,24.9539262],[-80.5973908,24.9575564],[-80.597392,24.9575584],[-80.5973933,24.9575605],[-80.6008363,24.9631279],[-80.6008362,24.9631279],[-80.6008362,24.963128],[-80.5991611,24.9652218],[-80.5945545,24.9673158],[-80.5903292,24.9637897],[-80.5892103,24.9636174],[-80.5863116,24.9621054],[-80.5821303,24.9644734],[-80.5797568,24.964837],[-80.5771595,24.9629102],[-80.5745468,24.9633921],[-80.5724393,24.9619755],[-80.5706128,24.9624593],[-80.5694013,24.9646886],[-80.5674647,24.9657446],[-80.5661303,24.9670976],[-80.5640909,24.9700954],[-80.5615587,24.9701326],[-80.5592603,24.9711336],[-80.5568947,24.9739016],[-80.555557,24.9756239],[-80.5555585,24.9756259],[-80.55556,24.9756279],[-80.5567169,24.9772042],[-80.5567168,24.9772044],[-80.5567168,24.9772047],[-80.5559548,24.979686],[-80.5536563,24.9821445],[-80.5524873,24.9843709],[-80.5515963,24.9870015],[-80.5522943,24.9901661],[-80.5499173,24.9914067],[-80.549259,24.9948675],[-80.5464983,24.9975585],[-80.5437107,24.999977],[-80.543034,25.0029314],[-80.5401933,25.0030025],[-80.5414578,25.0054745],[-80.5414583,25.005475],[-80.5414587,25.0054755],[-80.5434148,25.0076425],[-80.5434151,25.0076436],[-80.5434155,25.0076447],[-80.5436015,25.0082998],[-80.5437109,25.008685],[-80.543533,25.0089798],[-80.5434283,25.0091532],[-80.544908,25.0128524],[-80.5456947,25.014819],[-80.544984,25.0149967],[-80.5401658,25.0131899],[-80.5400052,25.0132528],[-80.5397763,25.0133425],[-80.5367697,25.0135924],[-80.5360793,25.0143852],[-80.5349803,25.015647],[-80.5330858,25.0164898],[-80.5286113,25.017607],[-80.5266091,25.0175577],[-80.5257913,25.0175375],[-80.5229454,25.0159229],[-80.5229439,25.015922],[-80.5229423,25.0159211],[-80.5233196,25.0134308],[-80.5232048,25.012167],[-80.5231635,25.0117126],[-80.5231634,25.0117116],[-80.5231633,25.0117105],[-80.5211726,25.0097869],[-80.52068,25.0100976],[-80.5192022,25.0110299],[-80.5176578,25.0131448],[-80.515669,25.0145755],[-80.5139927,25.0159905],[-80.5130368,25.0183624],[-80.5139503,25.0212968],[-80.5130949,25.0235987],[-80.5129736,25.0271902],[-80.5101397,25.0272798],[-80.5076863,25.0299055],[-80.5049846,25.0331875],[-80.5046678,25.035669],[-80.5021263,25.0373643],[-80.5003995,25.0398581],[-80.5008884,25.0421309],[-80.4980447,25.0454232],[-80.4950762,25.0476267],[-80.4919574,25.0497658],[-80.489712,25.0501819],[-80.4874599,25.051691],[-80.4851966,25.0529625],[-80.4833057,25.0546779],[-80.4805567,25.0576015],[-80.4798734,25.059892],[-80.478342,25.061624],[-80.4767307,25.0629015],[-80.4745292,25.0651897],[-80.4720819,25.067543],[-80.4703949,25.0692295],[-80.4683679,25.070675],[-80.4668749,25.0728342],[-80.4655624,25.0744305],[-80.4630466,25.0766685],[-80.4609824,25.078437],[-80.4603308,25.0807226],[-80.4590568,25.0838547],[-80.4596275,25.0881131],[-80.4596287,25.0881141],[-80.4596298,25.0881151],[-80.4622388,25.0903572],[-80.4622383,25.0903579],[-80.4622378,25.0903585],[-80.4609851,25.0919724],[-80.4596442,25.0917838],[-80.4596431,25.0917837],[-80.459642,25.0917835],[-80.4594694,25.0900569],[-80.4581133,25.0876084],[-80.4573867,25.0863555],[-80.4573854,25.0863533],[-80.4573841,25.086351],[-80.4557394,25.085702],[-80.453792,25.0864452],[-80.4516424,25.0879759],[-80.4487217,25.0897349],[-80.4453461,25.092522],[-80.4436499,25.0946655],[-80.442325,25.0979031],[-80.4394939,25.0987522],[-80.4386994,25.1012028],[-80.4375587,25.1033185],[-80.4365384,25.1049155],[-80.4332065,25.1067599],[-80.4332065,25.1067601],[-80.4332065,25.1067603],[-80.4332481,25.1104117],[-80.43348,25.1139002],[-80.4334813,25.1139013],[-80.4334825,25.1139024],[-80.4353549,25.1155443],[-80.4380287,25.1165459],[-80.4381704,25.116599],[-80.4381706,25.1166008],[-80.4381708,25.1166027],[-80.4384347,25.1188665],[-80.4384359,25.1188677],[-80.4384371,25.1188689],[-80.4409856,25.121428],[-80.4461921,25.1224502],[-80.4468372,25.122736],[-80.4468372,25.122736],[-80.4468372,25.1227361],[-80.4486647,25.1235458],[-80.4486658,25.123548],[-80.4486669,25.1235501],[-80.4498594,25.1258953],[-80.4468479,25.1267258],[-80.4438897,25.1280789],[-80.4426248,25.1279934],[-80.442624,25.1279934],[-80.4426232,25.1279933],[-80.441555,25.1279211],[-80.4397796,25.1276896],[-80.4397794,25.1276896],[-80.4397793,25.1276895],[-80.4385441,25.1253735],[-80.4376948,25.122903],[-80.4367705,25.1210543],[-80.4367695,25.1210523],[-80.4367684,25.1210502],[-80.4345295,25.1196605],[-80.4303606,25.116418],[-80.4298074,25.1162087],[-80.4275041,25.1153372],[-80.4223316,25.1172672],[-80.4187031,25.1205097],[-80.4182168,25.122455],[-80.4182018,25.1225147],[-80.4178539,25.1239066],[-80.4179487,25.1260414],[-80.4180083,25.1273807],[-80.416773,25.1290792],[-80.4171591,25.1314725],[-80.4171603,25.1314741],[-80.4171615,25.1314757],[-80.4181738,25.1328254],[-80.4187803,25.1336341],[-80.420008,25.1330885],[-80.4201699,25.1330165],[-80.4201699,25.131318],[-80.4202876,25.1313601],[-80.4211564,25.1316704],[-80.4211571,25.1316724],[-80.4211578,25.1316744],[-80.4227348,25.1364055],[-80.4223942,25.1387902],[-80.42208,25.1409892],[-80.4207307,25.1418478],[-80.4204062,25.1417551],[-80.4189653,25.1413434],[-80.4167018,25.1410919],[-80.4150542,25.1393833],[-80.4138,25.1389652],[-80.4127629,25.1386195],[-80.4112355,25.1386195],[-80.408726,25.1380194],[-80.4074168,25.1386195],[-80.4058348,25.1387832],[-80.4045255,25.1384559],[-80.4035436,25.1397106],[-80.4017433,25.1411835],[-80.4013069,25.1422745],[-80.399834,25.1425473],[-80.3989611,25.1445657],[-80.3976519,25.1447294],[-80.3962881,25.1465842],[-80.3949242,25.1494209],[-80.3937241,25.1517121],[-80.3928512,25.1547125],[-80.3925785,25.1570037],[-80.3925799,25.1570048],[-80.3925814,25.1570059],[-80.3934751,25.1576646],[-80.3949473,25.1599542],[-80.3949482,25.1599558],[-80.3949491,25.1599573],[-80.3955761,25.1610859],[-80.3954457,25.1623027],[-80.3915206,25.161566],[-80.3884302,25.1611024],[-80.386885,25.1623901],[-80.3858033,25.1637808],[-80.3859063,25.165429],[-80.3850307,25.1665106],[-80.3840521,25.1675923],[-80.3842581,25.1700646],[-80.3842594,25.1700666],[-80.3842607,25.1700686],[-80.3851852,25.1715068],[-80.3867304,25.1728974],[-80.3872796,25.1729803],[-80.3894603,25.1733095],[-80.3910055,25.1733095],[-80.3919841,25.1723824],[-80.3919831,25.1723869],[-80.391982,25.1723913],[-80.3913145,25.1753183],[-80.3891513,25.1778421],[-80.3881726,25.1792843],[-80.3878883,25.180421],[-80.3878285,25.1822137],[-80.3878074,25.1828464],[-80.387835,25.1833289],[-80.3878628,25.1838159],[-80.3878629,25.1838172],[-80.387863,25.1838186],[-80.3878883,25.1842612],[-80.3870798,25.1849484],[-80.3864735,25.1893141],[-80.3863824,25.1906457],[-80.3861501,25.1940436],[-80.3851395,25.1956605],[-80.3842899,25.1980848],[-80.3827319,25.199102],[-80.3797444,25.1994264],[-80.3757026,25.1974915],[-80.3726079,25.1987623],[-80.3719936,25.2016777],[-80.3731231,25.2048564],[-80.3727425,25.2050811],[-80.3710671,25.2060705],[-80.3688994,25.2060185],[-80.3664914,25.2070285],[-80.3625589,25.2068465],[-80.3605674,25.2075235],[-80.3582469,25.2077385],[-80.356768,25.2078755],[-80.3577955,25.205469],[-80.3561664,25.2037285],[-80.3544194,25.2034482],[-80.3525324,25.2040116],[-80.3524232,25.2053687],[-80.352324,25.2066013],[-80.3516919,25.2084545],[-80.3498262,25.2089714],[-80.3509418,25.2113715],[-80.3476974,25.214099],[-80.3476476,25.2167278],[-80.3456092,25.2193014],[-80.3448084,25.2220191],[-80.3421355,25.2235051],[-80.3403127,25.2266465],[-80.3366237,25.2346295],[-80.3345654,25.2394915],[-80.3343899,25.2445471],[-80.3343896,25.2445538],[-80.3343894,25.2445605],[-80.3346109,25.247279],[-80.3342084,25.2482018],[-80.3332397,25.2504228],[-80.3325366,25.2544123],[-80.3322749,25.258484],[-80.3327643,25.2629355],[-80.3329485,25.2646111],[-80.3362951,25.2651765],[-80.340201,25.2646957],[-80.3414529,25.2660217],[-80.3419984,25.2665995],[-80.3417694,25.2686238],[-80.3411108,25.2710585],[-80.3433194,25.271266],[-80.3434014,25.2732185],[-80.3436989,25.2744611],[-80.3441411,25.2763085],[-80.3483171,25.2762566],[-80.3507736,25.2773457],[-80.3526866,25.2792631],[-80.3531518,25.2788509],[-80.3543254,25.2778111],[-80.3561679,25.277264],[-80.3574194,25.2788775],[-80.3601894,25.2793702],[-80.3594478,25.2840851],[-80.3592924,25.2840854],[-80.3592859,25.2840854],[-80.3592794,25.2840855],[-80.3560798,25.2840921],[-80.3548292,25.2840948],[-80.3507162,25.2864247],[-80.3482484,25.2865675],[-80.3465834,25.286946],[-80.3444904,25.2876235],[-80.343139,25.289447],[-80.3427196,25.2900129],[-80.3390955,25.2902948],[-80.3374363,25.2884421],[-80.3368584,25.2877967],[-80.3340117,25.2865891],[-80.3334218,25.2863953],[-80.3313714,25.2857215],[-80.3297676,25.285773],[-80.3254684,25.2886345],[-80.3233744,25.2899425],[-80.3210364,25.2913871],[-80.3179994,25.2938265],[-80.3157794,25.2960325],[-80.3112949,25.2986357],[-80.3073132,25.3006689],[-80.3061996,25.3021109],[-80.3052964,25.3032805],[-80.3043202,25.3054863],[-80.3033428,25.306076],[-80.2981692,25.3091971],[-80.2958344,25.3123087],[-80.2929774,25.3135965],[-80.2909631,25.3149341],[-80.2902939,25.316467],[-80.2896103,25.3190652],[-80.2893118,25.321844],[-80.2884993,25.3239667],[-80.2864304,25.325274],[-80.2839218,25.3268865],[-80.2809149,25.3289832],[-80.2785848,25.3312164],[-80.2784367,25.3336931],[-80.2765444,25.3352582],[-80.2765338,25.3352916],[-80.2755093,25.3385043],[-80.2741428,25.3422233],[-80.2741759,25.3428169],[-80.2743098,25.3452215],[-80.2733737,25.346103],[-80.272063,25.3473371],[-80.2690594,25.3471855],[-80.266308,25.348422]]],[[[-80.1562438,25.8494533],[-80.1518564,25.8493867],[-80.147762,25.8494661],[-80.146239,25.848397],[-80.1462364,25.8483952],[-80.1462338,25.8483934],[-80.1454443,25.8478392],[-80.1457732,25.8443379],[-80.1498008,25.8441706],[-80.1551231,25.8440899],[-80.1560607,25.8485767],[-80.1560612,25.848579],[-80.1560617,25.8485814],[-80.1562438,25.8494533]]],[[[-80.1562438,25.8494533],[-80.1563542,25.8485721],[-80.1563545,25.8485697],[-80.1563548,25.8485673],[-80.1569209,25.8440458],[-80.1594582,25.8439373],[-80.1595452,25.8484656],[-80.1595452,25.848468],[-80.1595453,25.8484704],[-80.1595804,25.8503003],[-80.1562438,25.8494533]]],[[[-97.3771627,26.781651],[-97.3785463,26.780181],[-97.3818797,26.7803137],[-97.3829872,26.7827765],[-97.3824079,26.7855415],[-97.3832361,26.788858],[-97.3812856,26.7932006],[-97.3778776,26.795708],[-97.3750332,26.794291],[-97.3756163,26.7925516],[-97.3752174,26.790172],[-97.3755372,26.787551],[-97.3751695,26.7835531],[-97.3771627,26.781651]]],[[[-97.3861812,26.7935305],[-97.3867798,26.7899136],[-97.3910269,26.7908471],[-97.3917562,26.7940485],[-97.3925184,26.7966307],[-97.3920052,26.7995573],[-97.3912729,26.8021192],[-97.3890757,26.8028793],[-97.3866562,26.802759],[-97.3848622,26.8002877],[-97.385279,26.7969768],[-97.3861812,26.7935305]]],[[[-97.3688971,26.7415827],[-97.3725663,26.7410822],[-97.3754043,26.7425805],[-97.3763058,26.7456047],[-97.3776702,26.7491252],[-97.3749947,26.7501357],[-97.3726537,26.748478],[-97.3709513,26.7458347],[-97.3682917,26.743791],[-97.3688971,26.7415827]]],[[[-97.3674385,26.7300048],[-97.3695398,26.730167],[-97.3709342,26.7328698],[-97.3714709,26.736656],[-97.3682011,26.7345702],[-97.3659923,26.7311713],[-97.3674385,26.7300048]]],[[[-97.3478897,26.6754715],[-97.3484629,26.6726797],[-97.3507985,26.674551],[-97.3513352,26.6775128],[-97.3512545,26.6797697],[-97.3526406,26.682329],[-97.3489887,26.6810396],[-97.34735,26.6778082],[-97.3478897,26.6754715]]],[[[-97.3569121,26.7245311],[-97.3534291,26.7239371],[-97.3508716,26.7237644],[-97.3485681,26.7207006],[-97.3488455,26.7179241],[-97.3519343,26.7170579],[-97.3484877,26.7156825],[-97.3472181,26.711848],[-97.344972,26.7093362],[-97.3414285,26.708074],[-97.3397062,26.7040185],[-97.341399,26.7012228],[-97.3453251,26.7011577],[-97.3489011,26.7032294],[-97.3515926,26.7057949],[-97.3508814,26.7082561],[-97.3518814,26.7103217],[-97.3544824,26.7120075],[-97.3586471,26.7131664],[-97.3579824,26.710448],[-97.3597895,26.7079167],[-97.3604591,26.7051715],[-97.3627135,26.7063755],[-97.3630329,26.7089766],[-97.3638862,26.7121312],[-97.3621337,26.7140786],[-97.3651057,26.7147785],[-97.3665882,26.7160905],[-97.3648604,26.7172548],[-97.3653018,26.7188567],[-97.3686324,26.7205875],[-97.3656267,26.7209115],[-97.3671402,26.7225045],[-97.3703695,26.7250108],[-97.3691607,26.7274977],[-97.3674385,26.7300048],[-97.364585,26.7286498],[-97.3625749,26.7265867],[-97.361604,26.7245772],[-97.3607097,26.7223078],[-97.357697,26.7192922],[-97.3579929,26.7222665],[-97.3569121,26.7245311]]],[[[-97.5367721,26.8558537],[-97.5400341,26.8545797],[-97.5428777,26.8557323],[-97.5461099,26.8567541],[-97.5483004,26.8573508],[-97.5508855,26.8577467],[-97.5521462,26.8589528],[-97.5496296,26.860029],[-97.5469215,26.8589834],[-97.5440119,26.858303],[-97.5413596,26.8576895],[-97.5395198,26.8568907],[-97.5367721,26.8558537]]],[[[-97.4853912,26.8975355],[-97.4850474,26.8936623],[-97.4891517,26.8958848],[-97.4910571,26.897562],[-97.4917177,26.899304],[-97.4941984,26.9008309],[-97.4951277,26.9031403],[-97.4928882,26.90359],[-97.4907779,26.9014438],[-97.489033,26.8984298],[-97.4853912,26.8975355]]],[[[-97.5072515,26.8886742],[-97.5041684,26.8880599],[-97.5018026,26.8881281],[-97.5006969,26.8855101],[-97.4985984,26.8858919],[-97.4968091,26.8844355],[-97.4940206,26.8828146],[-97.4932265,26.879834],[-97.4913208,26.8784079],[-97.4912677,26.8748516],[-97.4910707,26.8726769],[-97.4936824,26.872766],[-97.4915054,26.8698786],[-97.4914472,26.8676086],[-97.4923351,26.8657599],[-97.4902103,26.8641818],[-97.4874232,26.8632754],[-97.4866437,26.8607442],[-97.4906654,26.8608381],[-97.4946102,26.8607528],[-97.4968143,26.8626659],[-97.5010355,26.8625157],[-97.5029012,26.8641278],[-97.5046119,26.8626279],[-97.505671,26.8650908],[-97.5080075,26.8668819],[-97.5094009,26.8693471],[-97.5115026,26.8712242],[-97.5134958,26.8712587],[-97.515186,26.8726525],[-97.516948,26.8732293],[-97.5192137,26.8740459],[-97.5191886,26.8710065],[-97.5210966,26.8715655],[-97.5226936,26.8732745],[-97.5244981,26.8756645],[-97.5259332,26.8778683],[-97.5243074,26.8800004],[-97.5274784,26.8811019],[-97.5305479,26.8817209],[-97.5318367,26.8853305],[-97.5293235,26.8847417],[-97.5292959,26.8873037],[-97.5257422,26.8851809],[-97.5232535,26.8824057],[-97.5214989,26.881445],[-97.5191958,26.8810039],[-97.5172442,26.8808333],[-97.515063,26.8797953],[-97.5130849,26.8778997],[-97.5091583,26.8762809],[-97.5108833,26.8741304],[-97.5063852,26.8736433],[-97.5017102,26.8747592],[-97.4986102,26.8744735],[-97.4967714,26.875529],[-97.4987437,26.878368],[-97.5006472,26.8801655],[-97.502623,26.8813271],[-97.5060826,26.8814685],[-97.5080042,26.8829159],[-97.5089588,26.8860675],[-97.5116269,26.8867492],[-97.510714,26.8886059],[-97.5072515,26.8886742]]],[[[-97.5563587,26.9740818],[-97.5527722,26.972611],[-97.5512015,26.9699114],[-97.549217,26.9672185],[-97.5523925,26.9647729],[-97.5546658,26.9646289],[-97.5568148,26.96585],[-97.5586399,26.9687187],[-97.5554053,26.9693045],[-97.5563587,26.9740818]]],[[[-97.4966474,26.9801527],[-97.4994272,26.9799049],[-97.5022182,26.9827085],[-97.499497,26.984486],[-97.4970457,26.9833854],[-97.4956872,26.9826194],[-97.4966474,26.9801527]]],[[[-97.5172369,26.909376],[-97.5200366,26.9091919],[-97.5235844,26.9110397],[-97.5275348,26.9114237],[-97.5295453,26.9148654],[-97.5312692,26.9169915],[-97.5289556,26.9169648],[-97.5248655,26.9148535],[-97.5216286,26.9140311],[-97.519518,26.9131927],[-97.5172369,26.909376]]],[[[-97.4596327,27.0372454],[-97.4580192,27.0320924],[-97.457348,27.0258338],[-97.456546,27.0225248],[-97.4560717,27.0195979],[-97.4556747,27.0165714],[-97.4554302,27.0091787],[-97.4553296,27.0046956],[-97.4635716,27.0042049],[-97.4656399,27.0079824],[-97.4658732,27.0107349],[-97.4672436,27.0127484],[-97.4686069,27.0153314],[-97.468115,27.0185104],[-97.4676313,27.0208799],[-97.4681815,27.0243665],[-97.4687097,27.0269249],[-97.4686212,27.0287191],[-97.4687337,27.0302114],[-97.4692245,27.0322628],[-97.4710615,27.0322276],[-97.4703373,27.0353873],[-97.4733617,27.0371763],[-97.4705843,27.0389567],[-97.4616505,27.0401121],[-97.4596327,27.0372454]]],[[[-97.4632724,27.0435709],[-97.4656599,27.0425946],[-97.4704541,27.0432507],[-97.473396,27.0416661],[-97.4752971,27.0407148],[-97.4751686,27.0450619],[-97.4742939,27.047993],[-97.4720984,27.0480862],[-97.472626,27.0503314],[-97.4745926,27.0545435],[-97.4735344,27.0591266],[-97.4737753,27.0620023],[-97.4735477,27.0645076],[-97.4732747,27.0665484],[-97.4721851,27.0691804],[-97.4686403,27.0675581],[-97.4661047,27.0640274],[-97.4650922,27.0617579],[-97.4643877,27.0582734],[-97.4631577,27.0537684],[-97.4630032,27.0500084],[-97.4628747,27.0478874],[-97.46278,27.0454124],[-97.4632724,27.0435709]]],[[[-97.4525815,27.0553172],[-97.4551932,27.0547784],[-97.4565704,27.0566869],[-97.4565267,27.0602384],[-97.4563092,27.0626764],[-97.4555927,27.0652899],[-97.4552217,27.0677894],[-97.4549917,27.0699214],[-97.4544623,27.0719468],[-97.4543517,27.0740244],[-97.4537757,27.0777729],[-97.4535717,27.0816934],[-97.4534567,27.0836534],[-97.4530082,27.0852661],[-97.4503573,27.08441],[-97.4502032,27.0806619],[-97.4508177,27.0758124],[-97.4509457,27.0721684],[-97.4507652,27.0693369],[-97.4510457,27.0650154],[-97.4512572,27.0621669],[-97.4514427,27.0580344],[-97.4525815,27.0553172]]],[[[-97.4737908,27.0901262],[-97.4765981,27.0896052],[-97.4790956,27.0897934],[-97.4815726,27.0928118],[-97.4791289,27.0931294],[-97.4755236,27.0930099],[-97.4704621,27.0913616],[-97.4737908,27.0901262]]],[[[-97.4488182,27.1158715],[-97.4463094,27.1132639],[-97.4460297,27.1078979],[-97.4461067,27.1034164],[-97.4467207,27.0994654],[-97.4475743,27.0950487],[-97.4485902,27.0913799],[-97.4504667,27.0897407],[-97.4528722,27.0908489],[-97.4524787,27.0939522],[-97.4519873,27.0977674],[-97.4514347,27.1008714],[-97.4510694,27.1030672],[-97.4505293,27.1050744],[-97.4500642,27.1098579],[-97.450057,27.1132657],[-97.4488182,27.1158715]]],[[[-97.3719392,27.2439372],[-97.3744039,27.2426874],[-97.3731852,27.2400718],[-97.3765425,27.2379569],[-97.380888,27.238944],[-97.3798529,27.2418129],[-97.3782797,27.2448678],[-97.3769008,27.2465697],[-97.3750742,27.2466869],[-97.3719392,27.2439372]]],[[[-97.4674753,26.9403146],[-97.4647667,26.9370375],[-97.4627349,26.9350384],[-97.4625313,26.9319325],[-97.4649884,26.9290415],[-97.4682777,26.9281941],[-97.4711683,26.9290268],[-97.4753546,26.930753],[-97.4776637,26.9337629],[-97.4798832,26.9341909],[-97.4809782,26.9368754],[-97.4814387,26.9391405],[-97.4792045,26.9393771],[-97.4768581,26.9375172],[-97.4739295,26.9380857],[-97.4701033,26.9372178],[-97.4708665,26.9400489],[-97.4691209,26.9390309],[-97.4674753,26.9403146]]],[[[-97.4809086,26.9833618],[-97.4787852,26.9795049],[-97.4783107,26.9766964],[-97.4779348,26.9737248],[-97.4815079,26.9724207],[-97.4842977,26.9742139],[-97.485355,26.9778722],[-97.484326,26.981323],[-97.4809086,26.9833618]]],[[[-97.4809086,26.9833618],[-97.478992,26.9864485],[-97.4740545,26.9880954],[-97.475185,26.9845126],[-97.4778517,26.9821074],[-97.4809086,26.9833618]]],[[[-97.4740545,26.9880954],[-97.4719802,26.9910656],[-97.4683395,26.9927244],[-97.4663725,26.9963804],[-97.4634772,26.9969932],[-97.4624542,26.9996443],[-97.4576045,27.0013271],[-97.453736,27.0014255],[-97.4516706,27.0002863],[-97.4507287,26.9970597],[-97.4515987,26.9932084],[-97.4534537,26.9886339],[-97.4554617,26.9861349],[-97.4574707,26.9833374],[-97.4592227,26.9814454],[-97.4613657,26.9794454],[-97.4644677,26.9755081],[-97.4657272,26.9722582],[-97.4685987,26.9700509],[-97.4719569,26.9695344],[-97.4744303,26.9718334],[-97.4748435,26.9759526],[-97.4720797,26.9791073],[-97.4717703,26.983087],[-97.4718947,26.9856586],[-97.4703557,26.9878524],[-97.4740545,26.9880954]]],[[[-97.4698677,26.8477365],[-97.4723472,26.8464865],[-97.4747009,26.8468093],[-97.4741402,26.8503974],[-97.4761693,26.8516372],[-97.4746035,26.8543035],[-97.4727751,26.8567258],[-97.4735815,26.8600706],[-97.4739997,26.8620808],[-97.4750848,26.8648623],[-97.4726999,26.8642176],[-97.4709577,26.8622725],[-97.4698707,26.8598765],[-97.4698758,26.856909],[-97.4680482,26.8545465],[-97.4677347,26.8520015],[-97.4681557,26.85003],[-97.4698677,26.8477365]]],[[[-97.4735869,26.8684897],[-97.4765107,26.8676038],[-97.4781491,26.8692285],[-97.4788099,26.8714669],[-97.4763287,26.8729547],[-97.4780461,26.8749377],[-97.4779957,26.8771415],[-97.4763847,26.8774245],[-97.4738169,26.8756907],[-97.4740901,26.8728502],[-97.4732862,26.871052],[-97.4735869,26.8684897]]],[[[-97.3804072,26.8870815],[-97.3830397,26.8880878],[-97.3852327,26.8893465],[-97.3838369,26.891548],[-97.3811623,26.8924811],[-97.3788446,26.8923884],[-97.3787799,26.8887985],[-97.3804072,26.8870815]]],[[[-97.4671737,26.8813551],[-97.4692825,26.8785686],[-97.472883,26.8790688],[-97.474753,26.8819137],[-97.4736078,26.8851216],[-97.473509,26.8882756],[-97.4745353,26.8910096],[-97.4724947,26.8907768],[-97.4697792,26.888168],[-97.4677072,26.8845686],[-97.4671737,26.8813551]]],[[[-97.33069,27.7174207],[-97.3274927,27.7171363],[-97.3243647,27.7160563],[-97.3218287,27.7151923],[-97.3171727,27.713307],[-97.3150135,27.711633],[-97.3176175,27.7109283],[-97.320162,27.709579],[-97.3234744,27.7075923],[-97.3255727,27.7086883],[-97.3267983,27.7101619],[-97.3295589,27.7123203],[-97.3296767,27.7147883],[-97.33069,27.7174207]]],[[[-97.2416677,27.6736246],[-97.2437986,27.6727291],[-97.2443877,27.6759073],[-97.2459037,27.6781913],[-97.2459045,27.6813644],[-97.2431397,27.6829463],[-97.2402727,27.6819293],[-97.2396084,27.6794755],[-97.2401077,27.6756833],[-97.2416677,27.6736246]]],[[[-97.2287595,27.6538852],[-97.2322664,27.6519332],[-97.2313884,27.6545863],[-97.2303245,27.656974],[-97.2290713,27.6596801],[-97.2279336,27.6564852],[-97.2287595,27.6538852]]],[[[-97.1153557,27.8859792],[-97.1174592,27.8858602],[-97.1156863,27.8891341],[-97.118506,27.8917472],[-97.1177487,27.8917937],[-97.1177484,27.8917938],[-97.1177452,27.891794],[-97.1177386,27.8917944],[-97.1146627,27.8919832],[-97.1123854,27.890313],[-97.112383,27.8903112],[-97.1123805,27.8903094],[-97.1112186,27.8894572],[-97.1153557,27.8859792]]],[[[-97.1028372,27.8987947],[-97.105391,27.898124],[-97.1054853,27.9001866],[-97.1047597,27.9015912],[-97.1027397,27.9030739],[-97.0981806,27.9030405],[-97.1007612,27.9007322],[-97.1028372,27.8987947]]],[[[-97.0837702,27.8651528],[-97.085019,27.8647267],[-97.0887401,27.8666479],[-97.092521,27.8693196],[-97.0968334,27.8751389],[-97.1014127,27.8809386],[-97.1006948,27.8808483],[-97.1006936,27.8808482],[-97.1006924,27.880848],[-97.0990681,27.8806439],[-97.0963315,27.8781552],[-97.0939491,27.8758124],[-97.0909457,27.8733437],[-97.0889852,27.8716247],[-97.0860702,27.8686961],[-97.0840587,27.8670652],[-97.0828627,27.8654624],[-97.0837673,27.8651538],[-97.0837687,27.8651533],[-97.0837702,27.8651528]]],[[[-97.0688545,27.9726433],[-97.0686014,27.9705219],[-97.0695138,27.9688645],[-97.0708854,27.9710195],[-97.0733459,27.9695159],[-97.0758533,27.966403],[-97.0792868,27.9645735],[-97.078602,27.9680723],[-97.0764472,27.9704389],[-97.0738097,27.9746532],[-97.0708711,27.9746991],[-97.0688545,27.9726433]]],[[[-96.9388136,28.0260511],[-96.9354498,28.0256472],[-96.9312371,28.0259177],[-96.9321351,28.0222743],[-96.9357046,28.0228576],[-96.938722,28.0231951],[-96.9407808,28.0231332],[-96.941523,28.0246685],[-96.9388136,28.0260511]]],[[[-82.8174268,28.015776],[-82.8163402,28.0125825],[-82.8164244,28.0095676],[-82.8187263,28.0129268],[-82.8226041,28.0106123],[-82.8231117,28.0130617],[-82.8239352,28.01469],[-82.825696,28.0138588],[-82.8266235,28.0107669],[-82.8259633,28.0055739],[-82.8259633,28.0055735],[-82.8259632,28.0055731],[-82.8234523,28.0022694],[-82.8234507,28.0022673],[-82.8234492,28.0022653],[-82.8228839,27.9999948],[-82.8227253,27.9993577],[-82.8229623,27.9971486],[-82.8237168,27.9930168],[-82.8232283,27.9907344],[-82.8236862,27.985877],[-82.8245098,27.9778878],[-82.82451,27.9778854],[-82.8245103,27.977883],[-82.8245406,27.9775893],[-82.8267781,27.9753646],[-82.8264691,27.96903],[-82.826469,27.9690281],[-82.8264689,27.9690262],[-82.8225193,27.9674199],[-82.8205301,27.9675164],[-82.8183003,27.9671306],[-82.8182971,27.96713],[-82.818294,27.9671295],[-82.8198096,27.9649881],[-82.8224486,27.9644422],[-82.8226652,27.9645259],[-82.8226673,27.9645268],[-82.8226694,27.9645276],[-82.8253266,27.9655549],[-82.8272825,27.966511],[-82.8290713,27.9676943],[-82.8304629,27.9691096],[-82.8304634,27.969111],[-82.8304639,27.9691124],[-82.831297,27.9713367],[-82.8307946,27.9731949],[-82.8304008,27.9752495],[-82.8299858,27.9776681],[-82.8293541,27.9808589],[-82.8289123,27.9846513],[-82.8285906,27.9878702],[-82.8284881,27.9936803],[-82.8284671,27.9967388],[-82.8284829,27.9996168],[-82.8284712,27.9999948],[-82.8283803,28.0029268],[-82.827984,28.0109826],[-82.8277057,28.0166415],[-82.8266386,28.0223631],[-82.8252788,28.0254831],[-82.8240922,28.0281171],[-82.8232094,28.03007],[-82.8221217,28.0327556],[-82.8210403,28.0366836],[-82.8204545,28.0403495],[-82.8193496,28.0429856],[-82.8181513,28.0397048],[-82.8159349,28.0366894],[-82.8186965,28.0353512],[-82.8194315,28.0327919],[-82.8177065,28.0323634],[-82.8161247,28.0312441],[-82.8141523,28.0301876],[-82.8142342,28.0280212],[-82.816036,28.0272657],[-82.8149958,28.0249506],[-82.8165019,28.0226454],[-82.8169746,28.018753],[-82.8174268,28.015776]]],[[[-96.9102178,28.0636932],[-96.9123591,28.0621711],[-96.9153581,28.0626318],[-96.9169916,28.0650192],[-96.9140543,28.0666047],[-96.910122,28.0661637],[-96.9102178,28.0636932]]],[[[-96.8971188,28.0667832],[-96.8990828,28.0650877],[-96.9026748,28.0635302],[-96.9052588,28.0623852],[-96.9085133,28.0621532],[-96.9074264,28.0657166],[-96.9044596,28.0656268],[-96.9002874,28.0679149],[-96.8978414,28.0685482],[-96.8954307,28.068116],[-96.8971188,28.0667832]]],[[[-82.8353714,28.0808785],[-82.8335815,28.0789818],[-82.8326638,28.080908],[-82.8311659,28.0830293],[-82.8279914,28.0831553],[-82.8271624,28.0808925],[-82.8273338,28.0787748],[-82.8287765,28.0757688],[-82.8292531,28.0728298],[-82.8290711,28.0695851],[-82.8281882,28.0658603],[-82.827454,28.0631207],[-82.8254287,28.063282],[-82.8229228,28.0610773],[-82.8181763,28.061391],[-82.8152059,28.0618932],[-82.8129531,28.061834],[-82.8136517,28.0596106],[-82.8159828,28.05957],[-82.8184469,28.0584243],[-82.8163294,28.0554655],[-82.8200691,28.0556628],[-82.8216924,28.0564902],[-82.8230957,28.0554344],[-82.8263168,28.0582298],[-82.8284766,28.0600598],[-82.8300658,28.061221],[-82.8331088,28.0639239],[-82.8339223,28.0655948],[-82.8345154,28.0715869],[-82.835207,28.0731679],[-82.8367166,28.0744503],[-82.8372366,28.0759888],[-82.8379029,28.0798965],[-82.8366703,28.0839119],[-82.8353714,28.0808785]]],[[[-96.9135078,28.1258702],[-96.9151501,28.1255927],[-96.9137264,28.1289558],[-96.9107138,28.1320987],[-96.8994576,28.1442909],[-96.8998838,28.1417052],[-96.9017983,28.1379252],[-96.9049026,28.1319282],[-96.908322,28.1290057],[-96.9103618,28.1273464],[-96.9135078,28.1258702]]],[[[-96.8884078,28.0763362],[-96.8848911,28.0756043],[-96.8886671,28.0739535],[-96.8925272,28.0737028],[-96.8960828,28.0730277],[-96.8987245,28.0732637],[-96.9033116,28.0738954],[-96.9049061,28.0751205],[-96.9024885,28.0765472],[-96.9007838,28.0767752],[-96.8986518,28.0769697],[-96.8967538,28.0760785],[-96.892753,28.0781448],[-96.8912753,28.0767377],[-96.8884078,28.0763362]]],[[[-96.9128268,28.1218221],[-96.9144523,28.1207227],[-96.9163364,28.1212798],[-96.9182778,28.1201387],[-96.919865,28.1170873],[-96.9230767,28.1175978],[-96.9215651,28.1200629],[-96.9199103,28.1217894],[-96.9182221,28.1239376],[-96.9156504,28.123899],[-96.9128268,28.1218221]]],[[[-96.8846173,28.148725],[-96.8867218,28.1477512],[-96.8887903,28.1479122],[-96.8910398,28.1475692],[-96.893758,28.1491406],[-96.8911744,28.1539149],[-96.886532,28.1558899],[-96.8876034,28.1508373],[-96.8846173,28.148725]]],[[[-96.8753415,28.1656856],[-96.8786331,28.163025],[-96.8787156,28.1655503],[-96.8775809,28.167554],[-96.8753907,28.1689862],[-96.8724107,28.1706958],[-96.8701539,28.1712094],[-96.8679461,28.1725155],[-96.8634645,28.17449],[-96.8607598,28.1751453],[-96.8612323,28.1732267],[-96.8633455,28.1717194],[-96.8670006,28.1699638],[-96.8701253,28.1686464],[-96.8730931,28.1671585],[-96.8753415,28.1656856]]],[[[-96.846674,28.1777449],[-96.8451512,28.175911],[-96.8493628,28.1745712],[-96.8555975,28.1731061],[-96.8502148,28.1769011],[-96.846674,28.1777449]]],[[[-96.846674,28.1777449],[-96.8485424,28.1789773],[-96.8496168,28.1810048],[-96.851508,28.1789978],[-96.8541025,28.1773024],[-96.8571143,28.1771056],[-96.8549374,28.1799092],[-96.8521188,28.1821332],[-96.8499644,28.1836688],[-96.8476978,28.1850102],[-96.8451378,28.1871685],[-96.8414506,28.1880729],[-96.8426195,28.1853825],[-96.8404948,28.1840947],[-96.8430007,28.1820606],[-96.8452778,28.1797627],[-96.846674,28.1777449]]],[[[-97.025631,27.9389464],[-97.0288472,27.9371036],[-97.0291725,27.9395223],[-97.0314425,27.9395575],[-97.0337812,27.9409278],[-97.0324649,27.9421429],[-97.0285197,27.9434979],[-97.0250609,27.9438325],[-97.0209364,27.9431219],[-97.0232206,27.9408758],[-97.025631,27.9389464]]],[[[-97.0418632,27.9313864],[-97.0445995,27.9296275],[-97.0447987,27.9313432],[-97.0437727,27.9337445],[-97.0425777,27.9354282],[-97.0393072,27.9384652],[-97.0362516,27.9390419],[-97.0379854,27.9363159],[-97.0406754,27.93439],[-97.0418632,27.9313864]]],[[[-97.0761662,27.9357912],[-97.0781258,27.9329485],[-97.0782283,27.9371252],[-97.0790005,27.9401655],[-97.0779503,27.9429905],[-97.0767897,27.9472211],[-97.0755813,27.9507065],[-97.0721554,27.952045],[-97.0731092,27.9490397],[-97.0740267,27.9453737],[-97.0746702,27.9414987],[-97.0760186,27.9385673],[-97.0761662,27.9357912]]],[[[-97.0541297,27.8991823],[-97.0534356,27.8943522],[-97.0552866,27.8960428],[-97.0590828,27.8973013],[-97.0570329,27.8997127],[-97.0566889,27.9035499],[-97.0546977,27.9018637],[-97.0541297,27.8991823]]],[[[-82.4291107,27.86414],[-82.4333901,27.86414],[-82.4366819,27.8646338],[-82.4371757,27.8694069],[-82.4352006,27.8845492],[-82.4243376,27.8838909],[-82.4240084,27.8787886],[-82.4246668,27.8736863],[-82.428617,27.8692423],[-82.4291107,27.86414]]],[[[-82.6869059,27.6646826],[-82.6865121,27.6621202],[-82.6886472,27.6617559],[-82.6917334,27.6622725],[-82.6943041,27.6621014],[-82.6965525,27.6608079],[-82.6973129,27.6639272],[-82.6972551,27.6681339],[-82.6953831,27.6699831],[-82.6917318,27.67076],[-82.6916671,27.6707738],[-82.6907093,27.6694987],[-82.6897895,27.6682742],[-82.6884749,27.6665003],[-82.6869059,27.6646826]]],[[[-97.2241642,27.6711299],[-97.2247226,27.6655454],[-97.227701,27.6664762],[-97.227701,27.6744806],[-97.2246633,27.6813163],[-97.2223461,27.6850439],[-97.2193243,27.6841604],[-97.2186345,27.6812366],[-97.2241642,27.6711299]]],[[[-82.7148392,27.6434088],[-82.7168739,27.6412963],[-82.7170669,27.6419697],[-82.7170683,27.6419744],[-82.7170696,27.6419791],[-82.7178813,27.6448119],[-82.7162629,27.6469803],[-82.7162603,27.6469839],[-82.7162576,27.6469874],[-82.7157083,27.6477234],[-82.7135628,27.6463537],[-82.7148392,27.6434088]]],[[[-82.7200648,27.6815096],[-82.7193807,27.6789262],[-82.7216736,27.6780352],[-82.7194147,27.6760618],[-82.7217639,27.6744444],[-82.7238547,27.6744767],[-82.7242432,27.6722493],[-82.7237351,27.6693807],[-82.7220352,27.6661609],[-82.7213003,27.6642848],[-82.7255029,27.6641135],[-82.7255967,27.6641437],[-82.7255982,27.6641442],[-82.7255998,27.6641447],[-82.7284175,27.6650532],[-82.7296185,27.6674877],[-82.7297138,27.6703397],[-82.7288646,27.6744534],[-82.7266606,27.6777623],[-82.7271718,27.6804823],[-82.7286898,27.6778482],[-82.7306339,27.680215],[-82.7307149,27.6845101],[-82.7303599,27.6874127],[-82.729601,27.6906334],[-82.7284859,27.6935464],[-82.7260044,27.6942996],[-82.7235816,27.6939654],[-82.7212846,27.6930719],[-82.719093,27.6921833],[-82.7190906,27.6921823],[-82.7190881,27.6921813],[-82.7189076,27.6921082],[-82.7176942,27.688626],[-82.7199206,27.6882925],[-82.7189441,27.684877],[-82.7200648,27.6815096]]],[[[-82.7070749,27.7153274],[-82.7073431,27.7150297],[-82.707347,27.7150254],[-82.7073509,27.715021],[-82.7092131,27.7129539],[-82.7112416,27.712807],[-82.7115616,27.7112179],[-82.7115299,27.7073599],[-82.7123166,27.7054184],[-82.7143591,27.7045186],[-82.7143603,27.704518],[-82.7143615,27.7045175],[-82.7146476,27.7043914],[-82.7192155,27.7040054],[-82.7219487,27.7040794],[-82.7223716,27.7069032],[-82.7226988,27.7096667],[-82.722619,27.7101816],[-82.7226185,27.7101844],[-82.7226181,27.7101873],[-82.7221745,27.7130494],[-82.7185264,27.7127903],[-82.7164747,27.7135514],[-82.7154825,27.7148291],[-82.7140365,27.7142798],[-82.7123166,27.7155579],[-82.7070749,27.7153274]]],[[[-82.7070749,27.7153274],[-82.704057,27.7166205],[-82.701765,27.7172861],[-82.6994768,27.7181084],[-82.6985779,27.7167294],[-82.6985762,27.7167269],[-82.6985746,27.7167243],[-82.6974029,27.7149268],[-82.6947825,27.711966],[-82.6988134,27.709723],[-82.7005813,27.7143062],[-82.7034766,27.7144259],[-82.7066929,27.7152317],[-82.7066983,27.7152331],[-82.7067037,27.7152344],[-82.7070749,27.7153274]]],[[[-97.1679012,27.7242447],[-97.1683936,27.7261077],[-97.167496,27.7286536],[-97.1666427,27.7309043],[-97.1658263,27.7327947],[-97.162706,27.7338691],[-97.1591294,27.7332043],[-97.1615561,27.7310913],[-97.1644843,27.7296211],[-97.1652284,27.7272295],[-97.166568,27.7262189],[-97.1679012,27.7242447]]],[[[-82.7484469,27.7450209],[-82.7459922,27.7450205],[-82.7459907,27.7450205],[-82.7459893,27.7450205],[-82.7457073,27.7424562],[-82.7462115,27.7394253],[-82.7462115,27.7394252],[-82.7462115,27.7394251],[-82.7439162,27.7361209],[-82.7418514,27.7338611],[-82.7418499,27.7338594],[-82.7418484,27.7338578],[-82.7409833,27.7297672],[-82.7398173,27.7262904],[-82.7390443,27.7236318],[-82.7390438,27.7236302],[-82.7390434,27.7236285],[-82.7371107,27.7221888],[-82.7332783,27.7220118],[-82.7332768,27.7220117],[-82.7332754,27.7220117],[-82.7329386,27.7183042],[-82.7329385,27.7183032],[-82.7329384,27.7183023],[-82.7307853,27.716137],[-82.7299388,27.7182222],[-82.7281383,27.7159951],[-82.7281368,27.7159933],[-82.7281353,27.7159914],[-82.7272988,27.7126585],[-82.7298662,27.7112369],[-82.7331583,27.7121828],[-82.7361009,27.7137585],[-82.7349212,27.7106304],[-82.7349204,27.7106283],[-82.7349196,27.7106262],[-82.7332856,27.709823],[-82.7332809,27.7098207],[-82.7332762,27.7098184],[-82.7324166,27.7093959],[-82.730809,27.7078575],[-82.7284366,27.7072122],[-82.726187,27.7080517],[-82.7261858,27.7080521],[-82.7261846,27.7080525],[-82.7256323,27.7048844],[-82.7265559,27.7019179],[-82.7286368,27.6988736],[-82.730975,27.6970221],[-82.7331666,27.6948993],[-82.7348582,27.6961363],[-82.7354883,27.6930481],[-82.7357262,27.690542],[-82.7362078,27.6871961],[-82.7360848,27.6847426],[-82.7372332,27.6827196],[-82.7389189,27.6834634],[-82.7389187,27.6834651],[-82.7389184,27.6834668],[-82.738599,27.6858462],[-82.7383602,27.6886925],[-82.7382047,27.6909587],[-82.7379922,27.6936848],[-82.7378028,27.6975066],[-82.7378084,27.7000119],[-82.737965,27.7029667],[-82.7381665,27.7057066],[-82.7384813,27.7088822],[-82.7388486,27.7109869],[-82.739289,27.7133199],[-82.7398006,27.7154779],[-82.7406716,27.7184912],[-82.7418159,27.7216657],[-82.74288,27.7242362],[-82.7445011,27.7275331],[-82.7445024,27.7275348],[-82.7445037,27.7275365],[-82.7464513,27.7301577],[-82.7498169,27.733809],[-82.7527084,27.7362704],[-82.75271,27.7362729],[-82.7527115,27.7362753],[-82.7539088,27.7381517],[-82.7545212,27.7401732],[-82.7547866,27.7415665],[-82.7553179,27.7431343],[-82.7555624,27.7441739],[-82.7569725,27.7471351],[-82.7569735,27.7471362],[-82.7569745,27.7471373],[-82.7584112,27.748713],[-82.7584113,27.7487137],[-82.7584113,27.7487145],[-82.7586012,27.7507803],[-82.7593416,27.7538979],[-82.7598642,27.7556823],[-82.759865,27.7556849],[-82.7598657,27.7556874],[-82.7600009,27.7561491],[-82.759769,27.7581144],[-82.7576818,27.7577931],[-82.757681,27.757793],[-82.7576802,27.7577929],[-82.7567249,27.7552114],[-82.7567246,27.7552107],[-82.7567243,27.75521],[-82.7545287,27.7523777],[-82.7545286,27.7523776],[-82.7545285,27.7523775],[-82.752891,27.7498852],[-82.7528895,27.7498829],[-82.752888,27.7498806],[-82.7504209,27.7464227],[-82.7485093,27.7450653],[-82.7485066,27.7450633],[-82.7485039,27.7450614],[-82.7484469,27.7450209]]],[[[-97.1703172,27.754621],[-97.1724264,27.7535091],[-97.1746491,27.7546521],[-97.173281,27.7561819],[-97.1747267,27.7584393],[-97.1728857,27.7594906],[-97.1714387,27.7618473],[-97.1679391,27.7645967],[-97.1663158,27.7643617],[-97.1674473,27.7631284],[-97.1662107,27.7616153],[-97.1664953,27.7600884],[-97.1681307,27.7589913],[-97.1689654,27.7575539],[-97.1703172,27.754621]]],[[[-97.1502139,27.7520832],[-97.1468307,27.7514913],[-97.1442928,27.7515374],[-97.1456859,27.7488497],[-97.1461254,27.7471193],[-97.1479042,27.7466247],[-97.1483637,27.7490863],[-97.1502139,27.7520832]]],[[[-82.7444226,27.7652549],[-82.7432946,27.7643383],[-82.7451277,27.7644088],[-82.7463263,27.7641268],[-82.7456212,27.7631397],[-82.7444931,27.7627167],[-82.7457622,27.7613771],[-82.7466788,27.7620116],[-82.7456917,27.759685],[-82.7464673,27.7585569],[-82.7479479,27.7607425],[-82.749076,27.760531],[-82.7474544,27.7578518],[-82.7474544,27.7567238],[-82.7486529,27.7567238],[-82.7488645,27.7580634],[-82.7503451,27.759826],[-82.7514026,27.7588389],[-82.749499,27.7567943],[-82.74964,27.7548201],[-82.7485824,27.7523524],[-82.745868,27.7533748],[-82.7452687,27.7545381],[-82.7444226,27.7515064],[-82.7431535,27.7515064],[-82.743083,27.7541856],[-82.7415161,27.7512839],[-82.7415147,27.7512813],[-82.7415133,27.7512786],[-82.7411794,27.7506603],[-82.7444508,27.7496578],[-82.7444542,27.7496568],[-82.7444576,27.7496557],[-82.7455507,27.7493207],[-82.7458327,27.7476286],[-82.7490055,27.7491092],[-82.7505566,27.7548201],[-82.7518257,27.7578518],[-82.7537998,27.7566533],[-82.7557739,27.7584159],[-82.7549279,27.7615181],[-82.7525307,27.7611656],[-82.750204,27.7629282],[-82.7474544,27.7623642],[-82.7472428,27.7639153],[-82.7475249,27.7651139],[-82.7491465,27.7649023],[-82.7506271,27.766665],[-82.7511911,27.7689211],[-82.7511911,27.7711773],[-82.743432,27.7710061],[-82.7437881,27.7699787],[-82.7442111,27.766947],[-82.743224,27.7661009],[-82.7444226,27.7652549]]],[[[-97.1472627,27.7584513],[-97.1495668,27.7575371],[-97.1487248,27.7603306],[-97.1485729,27.763005],[-97.1459354,27.7641386],[-97.1452544,27.7610052],[-97.1466791,27.7598364],[-97.1472627,27.7584513]]],[[[-82.7644467,27.7848688],[-82.7629215,27.7809731],[-82.7629209,27.7809716],[-82.7629203,27.7809701],[-82.7608574,27.7789833],[-82.760855,27.778981],[-82.7608526,27.7789787],[-82.7633421,27.7780347],[-82.762172,27.7757042],[-82.764804,27.7754962],[-82.7664754,27.7740903],[-82.7689503,27.7771583],[-82.7712789,27.7765177],[-82.7712792,27.7765176],[-82.7712796,27.7765175],[-82.7686824,27.7734219],[-82.7686805,27.7734197],[-82.7686787,27.7734175],[-82.7698842,27.7714835],[-82.7698858,27.7714809],[-82.7698874,27.7714784],[-82.7665792,27.7714523],[-82.7644956,27.7705248],[-82.7644931,27.7705237],[-82.7644906,27.7705226],[-82.7655036,27.7687801],[-82.7659972,27.767088],[-82.7661382,27.7632807],[-82.7647999,27.7594773],[-82.7647993,27.7594754],[-82.7647986,27.7594735],[-82.7631165,27.7584182],[-82.7631157,27.7584177],[-82.7631148,27.7584171],[-82.7619672,27.7556874],[-82.7619661,27.7556849],[-82.761965,27.7556823],[-82.7617742,27.7552284],[-82.7610704,27.7524308],[-82.7604645,27.7500935],[-82.7585953,27.7462915],[-82.7585947,27.7462902],[-82.7585941,27.746289],[-82.7557063,27.7427673],[-82.7557049,27.7427655],[-82.7557034,27.7427638],[-82.7548534,27.7399664],[-82.7576166,27.741263],[-82.7598821,27.7438746],[-82.7598834,27.7438767],[-82.7598848,27.7438788],[-82.7615343,27.7465341],[-82.7634575,27.7506849],[-82.7649205,27.7548039],[-82.7669956,27.7583319],[-82.7679252,27.7609556],[-82.7691937,27.7643042],[-82.7691951,27.764306],[-82.7691965,27.7643077],[-82.7714022,27.7670812],[-82.774485,27.7695606],[-82.777521,27.7722818],[-82.7797147,27.7744572],[-82.7820144,27.7773373],[-82.7820149,27.7773383],[-82.7820154,27.7773394],[-82.7832514,27.779962],[-82.7820388,27.7822611],[-82.7820387,27.7822612],[-82.7820387,27.7822612],[-82.7819553,27.7824194],[-82.7798996,27.7823866],[-82.7778167,27.7833118],[-82.7744777,27.7835881],[-82.7723997,27.781856],[-82.7714106,27.7844633],[-82.7684942,27.7857482],[-82.7644482,27.7848691],[-82.7644474,27.784869],[-82.7644467,27.7848688]]],[[[-82.76092,27.7601697],[-82.7625463,27.7588711],[-82.763882,27.759826],[-82.7643051,27.7653254],[-82.763882,27.7684276],[-82.7626834,27.7696262],[-82.7594126,27.7713189],[-82.7550567,27.7702142],[-82.7573816,27.7686039],[-82.7549625,27.7668932],[-82.7576385,27.7643456],[-82.7596733,27.762596],[-82.758665,27.7606883],[-82.76092,27.7601697]]],[[[-97.1101582,27.8000188],[-97.1121677,27.7989294],[-97.11351,27.8004106],[-97.1128256,27.8039749],[-97.1083785,27.8039776],[-97.108699,27.8015609],[-97.1101582,27.8000188]]],[[[-97.2149137,27.8104923],[-97.2175037,27.8097075],[-97.2218514,27.8100897],[-97.2200485,27.8119131],[-97.2173957,27.8126883],[-97.2148037,27.8128549],[-97.212229,27.8126563],[-97.2149137,27.8104923]]],[[[-97.1792662,27.8183711],[-97.178768,27.8165843],[-97.1800087,27.8150493],[-97.1823857,27.8132665],[-97.1857847,27.8121953],[-97.1894102,27.8120163],[-97.1926284,27.8127456],[-97.1945317,27.8132903],[-97.1959452,27.8132633],[-97.1964477,27.8132538],[-97.1989637,27.8131323],[-97.2012784,27.8129509],[-97.2038593,27.8135144],[-97.2001509,27.8153227],[-97.1957271,27.8157563],[-97.1942749,27.8160122],[-97.1925797,27.8163109],[-97.1891797,27.8168043],[-97.1863144,27.8169578],[-97.1837683,27.8173415],[-97.1815182,27.8172818],[-97.1792662,27.8183711]]],[[[-97.0945357,27.8396628],[-97.0985447,27.8391463],[-97.1014548,27.8394545],[-97.0988292,27.841719],[-97.0949547,27.8438473],[-97.0924962,27.8451241],[-97.0896567,27.8466481],[-97.0858167,27.8450236],[-97.0836645,27.8424159],[-97.0856017,27.8411193],[-97.0882267,27.8409742],[-97.0914162,27.8405688],[-97.0945357,27.8396628]]],[[[-97.1530931,27.820945],[-97.1505824,27.8221589],[-97.1451067,27.8226283],[-97.1434709,27.8212573],[-97.1437414,27.8171513],[-97.1450817,27.8148398],[-97.1475057,27.8142283],[-97.1508147,27.8149009],[-97.1515597,27.817735],[-97.1530931,27.820945]]],[[[-97.1530931,27.820945],[-97.1551504,27.8178989],[-97.1578462,27.8169668],[-97.161271,27.8177683],[-97.1636807,27.8193443],[-97.1648643,27.8208307],[-97.1624977,27.8213573],[-97.1598528,27.821018],[-97.1575257,27.8205013],[-97.1530931,27.820945]]],[[[-80.6317293,28.3102596],[-80.6338573,28.3110023],[-80.6426415,28.3110876],[-80.6426427,28.3110902],[-80.6426439,28.3110929],[-80.6434415,28.3128876],[-80.6430665,28.3174366],[-80.6417578,28.3208293],[-80.6399415,28.3217866],[-80.6350415,28.3225866],[-80.6327201,28.3217418],[-80.6295548,28.3227476],[-80.6295567,28.32275],[-80.6295586,28.3227525],[-80.6309876,28.3245733],[-80.6309871,28.3245735],[-80.6309866,28.3245737],[-80.6289065,28.3255516],[-80.6274087,28.3263391],[-80.6246309,28.3257755],[-80.6228855,28.3275501],[-80.6228881,28.3275515],[-80.6228907,28.3275529],[-80.626509,28.3294765],[-80.6265079,28.3294778],[-80.6265069,28.3294792],[-80.6252817,28.3310858],[-80.6235446,28.3327333],[-80.6208696,28.3329099],[-80.6209284,28.3356833],[-80.6209297,28.3356833],[-80.620931,28.3356834],[-80.624152,28.3358312],[-80.6271925,28.3337893],[-80.6289672,28.3364467],[-80.628967,28.3364469],[-80.6289667,28.336447],[-80.6266548,28.337773],[-80.6274876,28.3407905],[-80.6274883,28.3407908],[-80.6274891,28.3407911],[-80.6305168,28.3421224],[-80.6305144,28.3421234],[-80.630512,28.3421244],[-80.626556,28.343718],[-80.6255801,28.3455493],[-80.6238205,28.3458051],[-80.62382,28.3458052],[-80.6238195,28.3458053],[-80.6231495,28.3437576],[-80.622044,28.3412931],[-80.6220428,28.3412905],[-80.6220417,28.3412879],[-80.6186695,28.3406245],[-80.6203287,28.3445713],[-80.6177405,28.3449256],[-80.6144523,28.3447556],[-80.6120649,28.3460796],[-80.6121905,28.3492106],[-80.6121919,28.349213],[-80.6121933,28.3492155],[-80.6141526,28.3527441],[-80.6141526,28.3527442],[-80.6141525,28.3527443],[-80.6131941,28.3563415],[-80.6131964,28.3563411],[-80.6131986,28.3563406],[-80.6148405,28.3559856],[-80.6148414,28.3559883],[-80.6148424,28.3559911],[-80.6154407,28.3577905],[-80.6154415,28.3577931],[-80.6154424,28.3577958],[-80.6154715,28.3578833],[-80.6147452,28.3609979],[-80.6135445,28.3680518],[-80.6102427,28.3725543],[-80.6081416,28.3755559],[-80.608892,28.3787076],[-80.6081416,28.3838104],[-80.6090421,28.388463],[-80.609043,28.3884633],[-80.609044,28.3884637],[-80.6130943,28.3901139],[-80.6130952,28.3901163],[-80.6130961,28.3901188],[-80.6136946,28.3917648],[-80.6136951,28.3917648],[-80.6136955,28.3917648],[-80.6189475,28.3919149],[-80.6189476,28.3919175],[-80.6189477,28.3919201],[-80.6192477,28.4019704],[-80.619249,28.4019706],[-80.6192503,28.4019709],[-80.6229997,28.4027208],[-80.6229997,28.4027231],[-80.6229997,28.4027255],[-80.6229997,28.4052722],[-80.6230011,28.4052722],[-80.6230025,28.4052722],[-80.6261514,28.4052722],[-80.6296033,28.4027208],[-80.6318546,28.4045217],[-80.6343649,28.404451],[-80.6385687,28.4050794],[-80.6385685,28.4050819],[-80.6385684,28.4050843],[-80.6385509,28.405382],[-80.6385507,28.4053847],[-80.6385506,28.4053874],[-80.6384005,28.4079388],[-80.6387369,28.4099572],[-80.6324742,28.4113967],[-80.6327638,28.4125541],[-80.6325636,28.4164579],[-80.6286736,28.4191737],[-80.6253498,28.4185439],[-80.6253483,28.4185436],[-80.6253469,28.4185433],[-80.6253751,28.4177233],[-80.6253752,28.4177205],[-80.6253753,28.4177177],[-80.6254457,28.415676],[-80.6276323,28.415676],[-80.6291461,28.414835],[-80.6281387,28.4119806],[-80.6281378,28.4119781],[-80.6281369,28.4119756],[-80.6254485,28.4113035],[-80.6254471,28.4113031],[-80.6254457,28.4113028],[-80.6254457,28.4086169],[-80.6254457,28.4086143],[-80.6254457,28.4086116],[-80.618886,28.4086116],[-80.6072803,28.4086116],[-80.5992067,28.4086116],[-80.5923106,28.4086116],[-80.5877745,28.4082756],[-80.5877718,28.4082754],[-80.5877692,28.4082752],[-80.5911332,28.4017155],[-80.5951699,28.3902779],[-80.5980293,28.3796814],[-80.6013933,28.3657209],[-80.6037481,28.3515922],[-80.6049255,28.3428459],[-80.6057665,28.3290536],[-80.6066075,28.3177842],[-80.6061481,28.3088847],[-80.6069439,28.2986096],[-80.6062711,28.2908724],[-80.6051491,28.2804368],[-80.6050937,28.2748935],[-80.6034117,28.2594192],[-80.5989557,28.230982],[-80.5974823,28.2201775],[-80.5937206,28.1968007],[-80.5904962,28.1822909],[-80.5832413,28.1548836],[-80.5746429,28.1221023],[-80.5703437,28.1070552],[-80.5590584,28.0761548],[-80.5464295,28.0465979],[-80.5329946,28.0183845],[-80.5237372,27.9999948],[-80.5230129,27.998556],[-80.5145731,27.9817904],[-80.5131124,27.9788889],[-80.5131116,27.9788873],[-80.5131109,27.9788858],[-80.4956454,27.947448],[-80.4768365,27.9135919],[-80.4639389,27.892096],[-80.4487845,27.8650641],[-80.4482675,27.8641593],[-80.4469598,27.8622622],[-80.4469582,27.8622598],[-80.4469565,27.8622574],[-80.4489009,27.8609197],[-80.448901,27.8609197],[-80.4489011,27.8609196],[-80.4492646,27.8606695],[-80.450327,27.8587411],[-80.4516991,27.8578867],[-80.4541069,27.8566487],[-80.4570659,27.856343],[-80.4570631,27.856346],[-80.4570603,27.8563491],[-80.4550656,27.8584937],[-80.4535869,27.8593347],[-80.4549514,27.8627556],[-80.4526136,27.8638869],[-80.4526154,27.8638893],[-80.4526171,27.8638917],[-80.454143,27.8659705],[-80.4576986,27.8659217],[-80.4602401,27.8668502],[-80.460239,27.8668519],[-80.460238,27.8668536],[-80.4583536,27.8699487],[-80.4586738,27.8735165],[-80.4586749,27.8735166],[-80.458676,27.8735166],[-80.4615761,27.8737234],[-80.4638501,27.870488],[-80.4670094,27.8713187],[-80.4698526,27.8710787],[-80.4722778,27.8732777],[-80.4722769,27.8732782],[-80.472276,27.8732787],[-80.4689412,27.8751471],[-80.4700439,27.8782546],[-80.4700446,27.8782555],[-80.4700454,27.8782564],[-80.471687,27.8802487],[-80.4716869,27.8802496],[-80.4716869,27.8802504],[-80.471336,27.8834513],[-80.4696881,27.8862022],[-80.4678962,27.888316],[-80.4692021,27.8922932],[-80.4692033,27.8922953],[-80.4692045,27.8922974],[-80.4712701,27.8959472],[-80.4712707,27.8959484],[-80.4712713,27.8959497],[-80.4722106,27.8979143],[-80.4722109,27.8979147],[-80.4722113,27.8979152],[-80.474671,27.9013028],[-80.4746709,27.9013033],[-80.4746707,27.9013038],[-80.4740058,27.9035202],[-80.4740076,27.9035213],[-80.4740094,27.9035224],[-80.4771372,27.9054857],[-80.4771374,27.9054875],[-80.4771376,27.9054894],[-80.4775176,27.9090107],[-80.4779706,27.9112337],[-80.4779718,27.9112358],[-80.4779731,27.9112379],[-80.4793133,27.9135037],[-80.4839202,27.9159013],[-80.4855356,27.9170557],[-80.4886318,27.9174401],[-80.4914527,27.9192432],[-80.493333,27.9202183],[-80.4934699,27.9202893],[-80.493471,27.9202899],[-80.4934722,27.9202905],[-80.493431,27.919699],[-80.4932853,27.9176058],[-80.4946466,27.9159283],[-80.4967383,27.9175398],[-80.4970536,27.9179069],[-80.4984989,27.9195894],[-80.4992846,27.920792],[-80.499814,27.9216024],[-80.4998139,27.9216027],[-80.4998137,27.921603],[-80.4993509,27.9223252],[-80.4988696,27.9230761],[-80.4986391,27.9234358],[-80.498641,27.9234375],[-80.498643,27.9234392],[-80.4990176,27.9237728],[-80.5008585,27.925412],[-80.5013616,27.92586],[-80.5038282,27.9275542],[-80.5040947,27.9277372],[-80.5056512,27.9305471],[-80.5056511,27.9305471],[-80.505651,27.9305471],[-80.5023184,27.9307057],[-80.5023183,27.9307057],[-80.5023182,27.9307057],[-80.5017374,27.9295144],[-80.5010999,27.928207],[-80.5010987,27.9282044],[-80.5010974,27.9282017],[-80.5005138,27.9284872],[-80.4992389,27.9291108],[-80.4992657,27.9291737],[-80.4996818,27.9301487],[-80.5011328,27.9335485],[-80.5011331,27.9335485],[-80.5011334,27.9335486],[-80.5029146,27.9340527],[-80.5029156,27.9340527],[-80.5029166,27.9340527],[-80.5072838,27.934049],[-80.5105748,27.9355007],[-80.5105755,27.935503],[-80.5105762,27.9355052],[-80.5115136,27.9387242],[-80.5117059,27.9408873],[-80.5112548,27.9430119],[-80.5109574,27.9460216],[-80.5085182,27.9445145],[-80.5072133,27.9435244],[-80.5072071,27.9435197],[-80.5072009,27.943515],[-80.5061552,27.9427216],[-80.5049783,27.9456858],[-80.5049801,27.9456872],[-80.504982,27.9456885],[-80.5065606,27.946842],[-80.5075266,27.9475479],[-80.5075261,27.9475491],[-80.5075256,27.9475503],[-80.5073014,27.9480688],[-80.5065623,27.9497787],[-80.5065643,27.9497799],[-80.5065662,27.9497811],[-80.5078444,27.9505831],[-80.5095202,27.9516345],[-80.50952,27.9516361],[-80.5095199,27.9516378],[-80.5093,27.9540647],[-80.5098745,27.9563432],[-80.5098752,27.9563434],[-80.509876,27.9563436],[-80.5136336,27.9572461],[-80.5155657,27.9588409],[-80.515565,27.9588418],[-80.5155643,27.9588427],[-80.5143216,27.9603846],[-80.5131876,27.9637376],[-80.5147924,27.9682574],[-80.5147933,27.9682586],[-80.5147941,27.9682598],[-80.5170414,27.9713541],[-80.5198004,27.974534],[-80.5198008,27.9745355],[-80.5198012,27.9745369],[-80.520509,27.9773812],[-80.5205098,27.9773816],[-80.5205106,27.977382],[-80.523637,27.979019],[-80.5261993,27.97811],[-80.5278375,27.9811026],[-80.5278375,27.9811026],[-80.5278375,27.9811027],[-80.5273015,27.9832399],[-80.5254234,27.9854533],[-80.5242631,27.9875545],[-80.523535,27.9895014],[-80.5228902,27.9914253],[-80.523145,27.9933925],[-80.5231463,27.9933948],[-80.5231476,27.993397],[-80.5242496,27.9952753],[-80.5258866,27.9972865],[-80.5287171,27.9994723],[-80.5287177,27.9994743],[-80.5287184,27.9994763],[-80.5288749,27.9999948],[-80.5296252,28.00248],[-80.5312001,28.0068606],[-80.5312007,28.0068611],[-80.5312013,28.0068616],[-80.5346282,28.009604],[-80.5369372,28.0113234],[-80.5369375,28.0113253],[-80.5369378,28.0113271],[-80.5375199,28.0147305],[-80.5377571,28.0172014],[-80.5382561,28.0198446],[-80.5394776,28.0222941],[-80.5394779,28.0222947],[-80.5394783,28.0222953],[-80.5407937,28.0244236],[-80.5423526,28.0263566],[-80.5438576,28.028345],[-80.5454407,28.0300892],[-80.5474966,28.0321458],[-80.5492811,28.0337794],[-80.5492816,28.0337812],[-80.5492822,28.0337831],[-80.5500961,28.0365484],[-80.5500969,28.036549],[-80.5500977,28.0365497],[-80.5519016,28.0380606],[-80.5537814,28.0397387],[-80.5537812,28.0397399],[-80.553781,28.0397411],[-80.5531412,28.0427725],[-80.5539262,28.0456713],[-80.5550382,28.048352],[-80.5550389,28.048353],[-80.5550396,28.048354],[-80.5591416,28.0541966],[-80.5623101,28.0573555],[-80.5642323,28.058462],[-80.5642322,28.0584638],[-80.5642321,28.0584656],[-80.5639547,28.0637128],[-80.5651626,28.0661326],[-80.5696416,28.0747956],[-80.5696416,28.0747957],[-80.5696416,28.0747957],[-80.5722415,28.0764956],[-80.5761082,28.0780623],[-80.5761077,28.0780642],[-80.5761072,28.078066],[-80.5746916,28.0834456],[-80.5763915,28.0884456],[-80.5765436,28.0887787],[-80.5765448,28.0887814],[-80.576546,28.088784],[-80.5797165,28.095729],[-80.5797168,28.0957291],[-80.579717,28.0957292],[-80.5856045,28.0989946],[-80.585604,28.0989962],[-80.5856034,28.0989977],[-80.583503,28.1046596],[-80.5835044,28.1046622],[-80.5835058,28.1046648],[-80.5852137,28.1078613],[-80.5852137,28.1078613],[-80.5852137,28.1078614],[-80.5861855,28.1133826],[-80.5879262,28.117705],[-80.5879266,28.1177052],[-80.587927,28.1177054],[-80.5905556,28.1188905],[-80.5905556,28.1188925],[-80.5905555,28.1188945],[-80.5905082,28.120928],[-80.5908415,28.1254936],[-80.5924165,28.1299436],[-80.5924173,28.1299444],[-80.592418,28.1299453],[-80.5946415,28.1323936],[-80.5998415,28.1342936],[-80.5998426,28.1342961],[-80.5998436,28.1342986],[-80.6008915,28.1368436],[-80.6013037,28.1376896],[-80.601305,28.1376923],[-80.6013063,28.1376949],[-80.6018415,28.1387936],[-80.5996809,28.1390339],[-80.5994365,28.1420016],[-80.5994379,28.1420039],[-80.5994394,28.1420062],[-80.6005325,28.1438096],[-80.6029204,28.1451224],[-80.6029211,28.1451247],[-80.6029218,28.1451269],[-80.6042785,28.1494174],[-80.6042795,28.1494187],[-80.6042804,28.14942],[-80.6049811,28.1503715],[-80.6049817,28.150373],[-80.6049823,28.1503746],[-80.6082525,28.1589571],[-80.6094915,28.1613426],[-80.6101415,28.1641426],[-80.6106415,28.1658926],[-80.6117915,28.1681426],[-80.6125415,28.1713926],[-80.6134385,28.1797536],[-80.614069,28.1860051],[-80.6147415,28.1889416],[-80.6153415,28.1935916],[-80.6161771,28.2005348],[-80.6167889,28.2051989],[-80.6169996,28.2074661],[-80.6174637,28.2124591],[-80.617475,28.2125811],[-80.6174752,28.2125838],[-80.6174755,28.2125865],[-80.6176906,28.2149013],[-80.6178415,28.2181906],[-80.6166415,28.2219406],[-80.6168415,28.2258906],[-80.6156828,28.230648],[-80.6156938,28.2333703],[-80.6157415,28.2375896],[-80.6171415,28.2426896],[-80.6160405,28.2473896],[-80.6138405,28.2499896],[-80.6124042,28.2524823],[-80.6080405,28.2644886],[-80.6080905,28.2726386],[-80.60807,28.2760301],[-80.6085522,28.2803919],[-80.6094947,28.2831618],[-80.6116072,28.2872876],[-80.6116073,28.2872876],[-80.6116073,28.2872877],[-80.6163664,28.2918816],[-80.6163663,28.2918828],[-80.6163662,28.291884],[-80.6161982,28.2940682],[-80.6151405,28.2975876],[-80.6114969,28.297839],[-80.6120009,28.3035594],[-80.6120023,28.3035616],[-80.6120036,28.3035637],[-80.6147787,28.3080114],[-80.6179796,28.3008775],[-80.6223013,28.2999121],[-80.6247524,28.2980058],[-80.6271746,28.2976296],[-80.6285873,28.3000523],[-80.6285872,28.3000523],[-80.628587,28.3000523],[-80.6259178,28.3006704],[-80.6249987,28.3033199],[-80.6232148,28.3046957],[-80.6233032,28.3065486],[-80.6197337,28.3079459],[-80.6175343,28.3103642],[-80.6175375,28.3103649],[-80.6175406,28.3103656],[-80.6214182,28.3112716],[-80.6233735,28.3095697],[-80.6251126,28.3126757],[-80.6277555,28.3135866],[-80.6328649,28.3142391],[-80.6317293,28.3102596]]],[[[-82.4319088,27.8226632],[-82.4353652,27.8226632],[-82.4391508,27.8233215],[-82.4412905,27.8252966],[-82.4401383,27.8378055],[-82.4381632,27.8397806],[-82.4310858,27.838793],[-82.4319088,27.8226632]]],[[[-97.0524611,27.870282],[-97.0535158,27.8667217],[-97.0556,27.8632026],[-97.0569593,27.8602118],[-97.0584507,27.8576922],[-97.0601577,27.8541153],[-97.0618157,27.8518578],[-97.0632639,27.8500722],[-97.0632621,27.8500686],[-97.0616874,27.8469364],[-97.0632735,27.8449542],[-97.0656067,27.8444673],[-97.0700469,27.8442026],[-97.0705883,27.843999],[-97.0705907,27.8439982],[-97.070593,27.8439973],[-97.0734279,27.8429314],[-97.0766165,27.8436614],[-97.0785117,27.8427247],[-97.0812083,27.8450804],[-97.0827096,27.8478405],[-97.083719,27.851503],[-97.0826139,27.8542537],[-97.0827937,27.8581262],[-97.0824855,27.8611744],[-97.0816816,27.8614048],[-97.081679,27.8614055],[-97.0816763,27.8614063],[-97.0793217,27.8620809],[-97.0777837,27.8611512],[-97.075395,27.8609145],[-97.0743452,27.8584037],[-97.0721777,27.8564383],[-97.0707707,27.8553017],[-97.0694361,27.8535352],[-97.0676351,27.8519382],[-97.065147,27.8513107],[-97.0662122,27.8531412],[-97.0695775,27.8567384],[-97.0672566,27.8586424],[-97.0641747,27.8589407],[-97.0625887,27.8598629],[-97.064986,27.8614147],[-97.0647037,27.8639022],[-97.0647386,27.8671593],[-97.0619947,27.8689782],[-97.059961,27.8686867],[-97.0588309,27.8693216],[-97.05882,27.8693277],[-97.0568112,27.8704562],[-97.0563201,27.8720484],[-97.056674,27.8748769],[-97.0558117,27.8775218],[-97.0539007,27.8788837],[-97.0508694,27.8798021],[-97.051116,27.876201],[-97.0513037,27.8745352],[-97.0515877,27.8728162],[-97.0524611,27.870282]]],[[[-96.8735208,28.0701712],[-96.8702994,28.0682319],[-96.8669351,28.0649175],[-96.8638208,28.0622985],[-96.8613962,28.0614471],[-96.8609572,28.0618815],[-96.8574083,28.0620012],[-96.8568706,28.0595097],[-96.8586022,28.0568164],[-96.8590706,28.0559186],[-96.8610878,28.0544542],[-96.8629128,28.0530095],[-96.8655038,28.0505342],[-96.8677498,28.0481272],[-96.8716998,28.0444822],[-96.8747228,28.0420469],[-96.8775248,28.0394582],[-96.8799278,28.0375342],[-96.8837788,28.0339152],[-96.8863368,28.0306612],[-96.8894388,28.0276382],[-96.8929518,28.0245002],[-96.8978088,28.0197122],[-96.9028718,28.0151982],[-96.9053106,28.0133242],[-96.9076118,28.0112232],[-96.9097298,28.0093672],[-96.9127648,28.0068822],[-96.9149598,28.0047282],[-96.9184203,28.0010547],[-96.9194999,27.9999952],[-96.9213623,27.9981677],[-96.9233478,27.9960092],[-96.9263843,27.9927437],[-96.9298643,27.9896267],[-96.9337368,27.9855577],[-96.9373208,27.9822472],[-96.9397673,27.9793072],[-96.9420318,27.9768102],[-96.9446048,27.9743422],[-96.9473998,27.9712532],[-96.9495128,27.9689882],[-96.9520428,27.9663902],[-96.9547928,27.9637382],[-96.9564728,27.9619517],[-96.9584908,27.9596522],[-96.9610648,27.9568922],[-96.9640128,27.9536122],[-96.9669888,27.9505262],[-96.9691588,27.9481482],[-96.9712397,27.9456472],[-96.9741648,27.9423342],[-96.9771068,27.9391102],[-96.9803488,27.9354612],[-96.9832848,27.9320662],[-96.9864382,27.9284607],[-96.9883167,27.9262772],[-96.9904027,27.9238892],[-96.9922942,27.9214772],[-96.99534,27.9178045],[-96.9977657,27.9148312],[-97.0012561,27.9121547],[-97.0012561,27.9092715],[-97.0252092,27.876459],[-97.0436456,27.8496045],[-97.0457311,27.8404389],[-97.0547187,27.8485165],[-97.0481779,27.8623497],[-97.0422226,27.8752148],[-97.0467607,27.8892875],[-97.0433101,27.892725],[-97.0389904,27.8918809],[-97.0389904,27.8951621],[-97.0386623,27.9004121],[-97.0366936,27.9073027],[-97.0337404,27.9115683],[-97.0275061,27.913209],[-97.0212717,27.9138652],[-97.0169413,27.9188024],[-97.0154394,27.9205147],[-97.0141874,27.9217515],[-97.0112919,27.9232683],[-97.0071876,27.9259397],[-97.0043307,27.9289479],[-97.0030477,27.9311702],[-97.0020917,27.9331872],[-97.0005422,27.9355017],[-96.9987627,27.9377742],[-96.9976217,27.9395852],[-96.9969505,27.9415397],[-96.9948305,27.9440868],[-96.9963159,27.9474931],[-96.9977343,27.9456862],[-96.9983787,27.9440542],[-96.9994444,27.9426749],[-97.0003574,27.9452002],[-97.0025596,27.9445162],[-97.0044536,27.9437189],[-97.0064983,27.9430696],[-97.0069001,27.9454297],[-97.0095301,27.9449209],[-97.0113473,27.9449945],[-97.0134023,27.9452339],[-97.0114907,27.9467252],[-97.0087071,27.9468806],[-97.0069347,27.9471932],[-97.0052285,27.9465716],[-97.0031709,27.9471912],[-97.0008807,27.9485499],[-96.9985877,27.9490492],[-96.9964077,27.9497152],[-96.9942267,27.9498956],[-96.9939523,27.9470319],[-96.9907032,27.9487777],[-96.9891562,27.9504724],[-96.9876103,27.9530476],[-96.9855952,27.9544977],[-96.9856867,27.9565492],[-96.9853262,27.9587895],[-96.9845016,27.9623324],[-96.9830147,27.9660762],[-96.9804357,27.968248],[-96.9793168,27.9710462],[-96.9781901,27.9736096],[-96.9763837,27.9762149],[-96.9755372,27.9794472],[-96.9754132,27.9818801],[-96.9718337,27.9828857],[-96.9692653,27.9845535],[-96.9705035,27.9869017],[-96.9742251,27.9866072],[-96.9776558,27.9851192],[-96.9800901,27.9832181],[-96.9808167,27.986948],[-96.9841005,27.9835101],[-96.9852074,27.9855255],[-96.9834657,27.9887612],[-96.9829887,27.9908122],[-96.9811057,27.9930747],[-96.9792065,27.9954755],[-96.9790789,27.9973582],[-96.9788624,27.9997859],[-96.9786525,27.9999952],[-96.9765587,28.0020833],[-96.9735672,28.0012905],[-96.9705259,28.0020054],[-96.9682192,28.0044789],[-96.9689182,28.0067055],[-96.9668868,28.0075002],[-96.9640048,28.007526],[-96.9657849,28.0046477],[-96.964155,28.0016105],[-96.9610493,28.0024933],[-96.9613578,28.005357],[-96.9605488,28.0082242],[-96.958619,28.0093201],[-96.9546142,28.0054855],[-96.9521128,28.0038501],[-96.9493169,28.0062183],[-96.9460478,28.006292],[-96.9440617,28.0048771],[-96.9412063,28.0060525],[-96.9437433,28.0080817],[-96.9463623,28.0095992],[-96.9445506,28.0114335],[-96.9471466,28.0128586],[-96.9467404,28.0154962],[-96.9440459,28.0147901],[-96.9409258,28.0137448],[-96.9393858,28.0135072],[-96.935838,28.0101106],[-96.9344538,28.0081222],[-96.9338294,28.0065042],[-96.9326873,28.0031495],[-96.9308594,28.0046408],[-96.9317324,28.0066872],[-96.9301073,28.0093336],[-96.9282698,28.011396],[-96.9252208,28.01419],[-96.9221332,28.0162601],[-96.9244791,28.0172314],[-96.9217705,28.0197137],[-96.9241884,28.0200837],[-96.9276379,28.0195218],[-96.9289298,28.0227567],[-96.9272453,28.0256432],[-96.9298543,28.0281826],[-96.9320638,28.0296302],[-96.9316838,28.031461],[-96.9293221,28.0314739],[-96.9269891,28.0316342],[-96.9259786,28.0300358],[-96.9231458,28.0303475],[-96.920265,28.0314126],[-96.9193704,28.0294844],[-96.9164155,28.0290761],[-96.9175435,28.0314013],[-96.9197765,28.0335467],[-96.9214755,28.0360497],[-96.9199801,28.0375159],[-96.9177613,28.0357412],[-96.9163218,28.0345432],[-96.9146688,28.0329382],[-96.9114933,28.0295697],[-96.9086898,28.0280338],[-96.9076173,28.0300073],[-96.9080343,28.032978],[-96.9045126,28.0330026],[-96.906337,28.0368788],[-96.9072764,28.0402551],[-96.9082225,28.0439819],[-96.9093962,28.0474819],[-96.9081298,28.0491214],[-96.9058115,28.0504462],[-96.9013543,28.0494073],[-96.8994874,28.052136],[-96.9022337,28.0527033],[-96.9042971,28.0527292],[-96.9077268,28.052463],[-96.9069098,28.0545805],[-96.9037623,28.0557924],[-96.9017065,28.055701],[-96.9001579,28.057384],[-96.8984278,28.0567342],[-96.8976457,28.0584639],[-96.89583,28.0594446],[-96.8936924,28.0601083],[-96.8962608,28.06191],[-96.8943118,28.0650175],[-96.8925978,28.0667132],[-96.8906723,28.0679612],[-96.8880944,28.0699338],[-96.8864728,28.0695292],[-96.8816782,28.0712823],[-96.8792767,28.0714241],[-96.875608,28.0709388],[-96.8735208,28.0701712]]],[[[-82.0582755,26.5881102],[-82.0612481,26.5868195],[-82.0603849,26.589184],[-82.0592701,26.591682],[-82.0574649,26.5937272],[-82.0549331,26.5955974],[-82.0547861,26.5939823],[-82.0546524,26.5925119],[-82.056,26.5911557],[-82.0570564,26.5900927],[-82.0582755,26.5881102]]],[[[-82.224858,26.6198621],[-82.2213414,26.6196709],[-82.2216938,26.6167362],[-82.2223527,26.6137187],[-82.2238298,26.6146142],[-82.2244451,26.6169837],[-82.224858,26.6198621]]],[[[-82.1073065,26.6401548],[-82.1067842,26.6394535],[-82.1032552,26.6406037],[-82.1019477,26.6401374],[-82.0989129,26.639055],[-82.0963506,26.636391],[-82.0937506,26.6367712],[-82.0937314,26.6367116],[-82.0926761,26.6334309],[-82.090549,26.6321351],[-82.0880592,26.6309418],[-82.087958,26.631869],[-82.0878576,26.6327878],[-82.0857318,26.6332122],[-82.084204,26.6326053],[-82.082097,26.6341825],[-82.0804627,26.6323983],[-82.0799908,26.6318832],[-82.0787718,26.6297593],[-82.0774452,26.6270196],[-82.0764843,26.6254233],[-82.0763111,26.6251356],[-82.0756063,26.6240637],[-82.0756048,26.6240613],[-82.0756032,26.6240589],[-82.0747135,26.6227058],[-82.0742019,26.6221063],[-82.0721153,26.6196615],[-82.0696437,26.6173532],[-82.0700355,26.6138776],[-82.0679715,26.6117126],[-82.0668654,26.6117351],[-82.0656699,26.6117595],[-82.0657843,26.6109969],[-82.0660359,26.6093212],[-82.0661914,26.6088962],[-82.0672048,26.6061275],[-82.0669961,26.6042103],[-82.0668002,26.6024108],[-82.0668638,26.6023495],[-82.0684535,26.6008183],[-82.0703187,26.5972128],[-82.0725343,26.5948581],[-82.0732098,26.5930473],[-82.0735636,26.5920987],[-82.0734865,26.591235],[-82.0733996,26.5902609],[-82.0724711,26.5878222],[-82.0726001,26.5862574],[-82.072735,26.5846213],[-82.0715079,26.5853523],[-82.0709344,26.5856939],[-82.0709144,26.5856789],[-82.0702062,26.5851478],[-82.0703246,26.5841273],[-82.07041,26.583391],[-82.0720947,26.5808313],[-82.076791,26.5819543],[-82.0775478,26.5821353],[-82.0792294,26.581731],[-82.0799863,26.5815491],[-82.0807277,26.5813709],[-82.0819863,26.5821112],[-82.0830208,26.5827198],[-82.0830862,26.5826631],[-82.084497,26.5814404],[-82.0848636,26.5811227],[-82.0848869,26.5811024],[-82.0850441,26.5809662],[-82.0882815,26.5839338],[-82.0885955,26.584083],[-82.0899654,26.5847343],[-82.0904398,26.586092],[-82.0905351,26.5861335],[-82.0915634,26.5865809],[-82.0916552,26.5866209],[-82.0928171,26.5871152],[-82.0929087,26.5871542],[-82.0943424,26.5888591],[-82.0945197,26.5890699],[-82.0947386,26.5893303],[-82.0954659,26.5901952],[-82.0967796,26.5917574],[-82.0972213,26.592559],[-82.0984302,26.5947529],[-82.1004216,26.598367],[-82.1010412,26.5994892],[-82.101819,26.6008981],[-82.1018211,26.6011087],[-82.1018215,26.6011512],[-82.1018676,26.6057636],[-82.1041216,26.6142617],[-82.1042904,26.6144764],[-82.1042923,26.6144787],[-82.1042941,26.6144811],[-82.1054125,26.6159027],[-82.1058172,26.6179261],[-82.1040636,26.6176563],[-82.1040698,26.6176835],[-82.1046059,26.6200422],[-82.1047833,26.6203614],[-82.105203,26.6211171],[-82.106495,26.6229115],[-82.1073803,26.6247059],[-82.1081459,26.6254715],[-82.1079306,26.6242752],[-82.1078747,26.6241548],[-82.1077194,26.6238195],[-82.1087259,26.6253249],[-82.1088123,26.6254542],[-82.1089197,26.6256148],[-82.1086499,26.627773],[-82.1088356,26.6283765],[-82.1090242,26.6289895],[-82.1091895,26.6295266],[-82.108663,26.6305795],[-82.1082453,26.6314151],[-82.1093613,26.6317002],[-82.1100566,26.6318779],[-82.110151,26.631902],[-82.1099331,26.6362795],[-82.1096817,26.6368548],[-82.1092856,26.6377611],[-82.1078945,26.6409443],[-82.1073065,26.6401548]]],[[[-82.224858,26.6198621],[-82.2258378,26.6217182],[-82.2266881,26.6233618],[-82.2277213,26.6254477],[-82.2275816,26.6285419],[-82.2248788,26.6267117],[-82.2227808,26.624329],[-82.224858,26.6198621]]],[[[-82.0719856,26.6316238],[-82.0702062,26.6306057],[-82.0693468,26.6307166],[-82.0693424,26.6307172],[-82.069338,26.6307178],[-82.068256,26.6308574],[-82.0695281,26.6283566],[-82.0702232,26.626875],[-82.0724951,26.6273533],[-82.0724983,26.6273539],[-82.0725015,26.6273546],[-82.073071,26.6274745],[-82.0725399,26.6295727],[-82.0725574,26.6297751],[-82.0719856,26.6316238]]],[[[-82.1730065,26.6379398],[-82.1744546,26.6355114],[-82.1767368,26.6363963],[-82.1758136,26.6381073],[-82.1749236,26.6397569],[-82.1723585,26.6425098],[-82.1705867,26.6424231],[-82.1693696,26.6423635],[-82.1723813,26.6389883],[-82.1730065,26.6379398]]],[[[-82.1861182,26.7918985],[-82.1908146,26.7918679],[-82.1930226,26.7930408],[-82.1931357,26.7937226],[-82.193407,26.7953588],[-82.1898597,26.7990229],[-82.1890349,26.7998749],[-82.1886274,26.8014105],[-82.1885508,26.8016993],[-82.1867971,26.8021378],[-82.1867182,26.8021934],[-82.186648,26.802243],[-82.1864846,26.8022159],[-82.1864828,26.8022156],[-82.1864811,26.8022153],[-82.1864582,26.8022115],[-82.1839042,26.8017877],[-82.1828372,26.7987449],[-82.1829614,26.7983227],[-82.1832652,26.7972897],[-82.1832679,26.7972807],[-82.1832705,26.7972716],[-82.1834276,26.7967375],[-82.1838391,26.7962628],[-82.1845013,26.7932934],[-82.1848105,26.791907],[-82.1861182,26.7918985]]],[[[-82.2134683,26.792729],[-82.2130153,26.7920041],[-82.2108407,26.7919135],[-82.2099346,26.7915511],[-82.2097804,26.7896759],[-82.2100252,26.7891953],[-82.2105718,26.7891198],[-82.2118598,26.7896047],[-82.212962,26.7904148],[-82.2135579,26.790459],[-82.2136753,26.7906943],[-82.2137832,26.7909104],[-82.2139064,26.7908605],[-82.2153711,26.7925478],[-82.2168041,26.7921005],[-82.2172604,26.7919581],[-82.2176362,26.7912646],[-82.2176894,26.7911139],[-82.217727,26.7910074],[-82.2184551,26.790969],[-82.2190975,26.7914491],[-82.2189699,26.7917373],[-82.2187389,26.7922594],[-82.2186049,26.7923159],[-82.2182104,26.7924821],[-82.2178707,26.7929673],[-82.2173138,26.7933466],[-82.2158047,26.7943746],[-82.2148062,26.7940251],[-82.213861,26.7932374],[-82.2138509,26.7930857],[-82.2137651,26.7930057],[-82.2134683,26.792729]]],[[[-82.2648141,26.7812106],[-82.2655397,26.7782637],[-82.2667985,26.7782902],[-82.2667998,26.7782902],[-82.2668011,26.7782903],[-82.2671789,26.7782982],[-82.2683609,26.7811881],[-82.2690527,26.7837117],[-82.2708348,26.7867116],[-82.2722035,26.7895131],[-82.2722052,26.7895168],[-82.2731252,26.7915589],[-82.2745501,26.7939078],[-82.2755461,26.7962897],[-82.2777246,26.7979076],[-82.279587,26.7999717],[-82.28156,26.8027105],[-82.2834918,26.8060931],[-82.2842132,26.8089482],[-82.2816707,26.8110797],[-82.2794883,26.8103333],[-82.276957,26.8074104],[-82.2769553,26.8074084],[-82.2769535,26.8074064],[-82.2765707,26.8069644],[-82.2749122,26.803833],[-82.2724397,26.80161],[-82.2728197,26.7990682],[-82.2723402,26.7965946],[-82.2700031,26.7949039],[-82.2706365,26.7929875],[-82.2681637,26.7895316],[-82.2650443,26.7866474],[-82.2649741,26.7863271],[-82.2648141,26.7812106]]],[[[-82.2088436,26.8043207],[-82.2060482,26.8035849],[-82.2016891,26.8036927],[-82.2014898,26.8035864],[-82.1976268,26.8015261],[-82.1976283,26.8015233],[-82.1976298,26.8015205],[-82.1976572,26.8014687],[-82.1981821,26.800477],[-82.1983276,26.8002022],[-82.1981713,26.7976209],[-82.1989062,26.7970282],[-82.1999676,26.7961722],[-82.2013267,26.7978031],[-82.2033202,26.7975317],[-82.2037526,26.797636],[-82.2058384,26.7981389],[-82.2059712,26.7971137],[-82.207542,26.7960722],[-82.2097597,26.7968549],[-82.2120186,26.7967158],[-82.2126528,26.7982562],[-82.2126005,26.7983327],[-82.2134139,26.7999596],[-82.2139214,26.8009744],[-82.2088436,26.8043207]]],[[[-82.2619517,26.7639474],[-82.258134,26.7628849],[-82.2566251,26.7653365],[-82.2540712,26.7661296],[-82.2554895,26.7634465],[-82.2570329,26.7611136],[-82.2570169,26.7577168],[-82.2540675,26.7549061],[-82.2538518,26.7525621],[-82.2542375,26.7504441],[-82.2570375,26.7495487],[-82.2559954,26.7474902],[-82.2581117,26.7464384],[-82.258989,26.7443063],[-82.2561773,26.7443838],[-82.2566168,26.7384122],[-82.2581825,26.7348905],[-82.2591373,26.7321381],[-82.2603941,26.728155],[-82.2602026,26.7262086],[-82.2601369,26.7239124],[-82.2588733,26.7226906],[-82.258605,26.7199726],[-82.2604255,26.717571],[-82.2619144,26.7181637],[-82.2619156,26.7181642],[-82.2619168,26.7181647],[-82.2641135,26.7190391],[-82.2645813,26.7216031],[-82.2638008,26.7256391],[-82.2640148,26.7352001],[-82.2641888,26.7443371],[-82.2643201,26.7466245],[-82.2645184,26.7503877],[-82.2646708,26.7548249],[-82.2650881,26.7590056],[-82.265751,26.7631449],[-82.2662713,26.7669681],[-82.2667189,26.7712568],[-82.2666516,26.7744966],[-82.2662389,26.7740994],[-82.2662375,26.774098],[-82.266236,26.7740966],[-82.2641162,26.7720563],[-82.2619203,26.7716254],[-82.2631296,26.7685737],[-82.2619517,26.7639474]]],[[[-82.176023,26.6478498],[-82.1766877,26.6462761],[-82.178004,26.6480426],[-82.1787462,26.6490385],[-82.1784075,26.649958],[-82.1781253,26.6507243],[-82.1778206,26.6514111],[-82.1773146,26.6525517],[-82.1783657,26.6544625],[-82.1773261,26.6567258],[-82.1765933,26.6548617],[-82.1747815,26.6525685],[-82.1752388,26.6506543],[-82.1757602,26.6484722],[-82.176023,26.6478498]]],[[[-82.2267086,26.6585061],[-82.2257068,26.6569215],[-82.2229749,26.6575153],[-82.2230536,26.6574721],[-82.2224217,26.6576653],[-82.2218368,26.656522],[-82.2216245,26.6565216],[-82.2192261,26.6561318],[-82.2194143,26.6553927],[-82.2201441,26.6525276],[-82.2217503,26.6517245],[-82.2254285,26.6537447],[-82.2298299,26.6581937],[-82.2288481,26.6591755],[-82.22717,26.659236],[-82.2267086,26.6585061]]],[[[-82.1864334,26.6504879],[-82.1872971,26.6493234],[-82.1909258,26.6511567],[-82.1913025,26.6512918],[-82.1939375,26.6522371],[-82.1943192,26.6534885],[-82.1948825,26.6553355],[-82.1943372,26.657633],[-82.19447,26.65854],[-82.1947712,26.6605976],[-82.194383,26.6632488],[-82.1943128,26.6637282],[-82.1916976,26.664103],[-82.191868,26.6622259],[-82.1919751,26.6610472],[-82.1910436,26.6588963],[-82.1903948,26.6573982],[-82.1878468,26.6569712],[-82.1856676,26.6555944],[-82.1849955,26.6538788],[-82.1846233,26.6529287],[-82.1846232,26.6529286],[-82.1846232,26.6529285],[-82.1864334,26.6504879]]],[[[-82.2099504,26.6680126],[-82.2097022,26.6616301],[-82.2120586,26.6589792],[-82.2120991,26.6540652],[-82.2136455,26.6537573],[-82.2141384,26.6541454],[-82.2142484,26.6558373],[-82.2139818,26.6565529],[-82.2137277,26.6575064],[-82.2145627,26.6593851],[-82.2149522,26.6598184],[-82.215795,26.6605781],[-82.2164554,26.6629665],[-82.2156751,26.6639643],[-82.2152987,26.6635938],[-82.2149703,26.6628943],[-82.2145132,26.6628138],[-82.2145132,26.6631029],[-82.2124758,26.6637578],[-82.2117641,26.664772],[-82.2116659,26.6662448],[-82.2107822,26.6682085],[-82.2099504,26.6680126]]],[[[-82.2391004,26.6531684],[-82.2373448,26.6502376],[-82.2350881,26.6534518],[-82.2337798,26.6500392],[-82.2308813,26.6463712],[-82.229204,26.6441484],[-82.2324867,26.6424696],[-82.2300254,26.6409746],[-82.2327743,26.6403798],[-82.2312098,26.637875],[-82.2299688,26.6347684],[-82.2323658,26.6362022],[-82.2336678,26.6379645],[-82.2347428,26.6394332],[-82.2371722,26.6417058],[-82.2406585,26.6441259],[-82.2430996,26.64751],[-82.2433122,26.6511312],[-82.2439607,26.6533043],[-82.2454998,26.6553614],[-82.2476768,26.6585475],[-82.2482435,26.6620067],[-82.2493778,26.6658955],[-82.2506308,26.6693082],[-82.2527201,26.6722325],[-82.2544038,26.6736552],[-82.2553923,26.6750309],[-82.2567702,26.678393],[-82.2576803,26.6810167],[-82.2589608,26.6850754],[-82.2575711,26.6877845],[-82.2566678,26.6905771],[-82.2565786,26.6954064],[-82.2564718,26.6997946],[-82.255666,26.7034219],[-82.2552138,26.7054125],[-82.2528325,26.7074939],[-82.24862,26.7079297],[-82.2458903,26.7053641],[-82.2454497,26.7024159],[-82.2445918,26.6990071],[-82.2442707,26.6966949],[-82.2455209,26.6912922],[-82.2456814,26.6868397],[-82.244378,26.6841172],[-82.2426835,26.6816868],[-82.2404958,26.6800215],[-82.2370516,26.6784084],[-82.2350197,26.6763749],[-82.2382818,26.6752605],[-82.2417617,26.6726738],[-82.2408323,26.6706217],[-82.2390342,26.6688344],[-82.2417906,26.6670592],[-82.2409956,26.6642929],[-82.2391736,26.66215],[-82.2382753,26.6590952],[-82.2389628,26.6565962],[-82.2391004,26.6531684]]],[[[-82.1990764,26.6890473],[-82.1986074,26.6874525],[-82.1992172,26.6841018],[-82.2001322,26.6844805],[-82.2007986,26.6856582],[-82.2012584,26.6864707],[-82.2016511,26.6877471],[-82.2039093,26.6877471],[-82.2052564,26.6870212],[-82.2057552,26.686013],[-82.2036915,26.6840602],[-82.2022402,26.6830342],[-82.2009194,26.6829757],[-82.2007001,26.682966],[-82.2000971,26.681771],[-82.1989648,26.679527],[-82.2019306,26.6772553],[-82.2034924,26.6801381],[-82.2039654,26.6810111],[-82.2037647,26.6810854],[-82.2067567,26.6849979],[-82.2086509,26.6861211],[-82.2082475,26.688523],[-82.2082294,26.6886307],[-82.2066585,26.6886308],[-82.2062497,26.6890546],[-82.2056403,26.6896865],[-82.2027299,26.6901933],[-82.1990983,26.6891217],[-82.1990764,26.6890473]]],[[[-82.236178,26.6890509],[-82.2345066,26.687016],[-82.2344328,26.6869782],[-82.2340639,26.6865641],[-82.2253135,26.6782232],[-82.2250789,26.6770846],[-82.2275717,26.6754741],[-82.2285989,26.6762854],[-82.2296336,26.6791069],[-82.2340304,26.680074],[-82.2342682,26.6809686],[-82.2338321,26.6817148],[-82.2335451,26.682983],[-82.2357508,26.6850288],[-82.2365234,26.6873184],[-82.2380874,26.6863354],[-82.2388629,26.6863725],[-82.2390592,26.6899071],[-82.2406257,26.6915708],[-82.2395137,26.6923532],[-82.2381756,26.6917726],[-82.236178,26.6890509]]],[[[-97.3336722,26.6750011],[-97.3364331,26.6752362],[-97.3386936,26.6740301],[-97.3403681,26.6766856],[-97.3409455,26.6805017],[-97.3428353,26.6826083],[-97.3417585,26.6858971],[-97.3439182,26.688362],[-97.3420649,26.6895686],[-97.3437088,26.692744],[-97.3441921,26.6951213],[-97.3400456,26.6952471],[-97.337676,26.6933345],[-97.3365301,26.6900207],[-97.3353384,26.6882014],[-97.3361944,26.6858985],[-97.3337782,26.6851573],[-97.3315958,26.6829964],[-97.3339838,26.6826137],[-97.3320122,26.6792588],[-97.3293043,26.6774277],[-97.3307119,26.6755069],[-97.3336722,26.6750011]]],[[[-82.558002,27.3126418],[-82.5601226,27.3106037],[-82.5615992,27.312584],[-82.5627297,27.314306],[-82.5629471,27.3162841],[-82.5628278,27.3186716],[-82.5618539,27.3205189],[-82.5632723,27.3221087],[-82.5637523,27.3251765],[-82.5614117,27.3275482],[-82.5588316,27.3285172],[-82.5596769,27.3259792],[-82.5596217,27.323611],[-82.5588993,27.3217914],[-82.5564583,27.320708],[-82.5563352,27.3185229],[-82.5567669,27.3155967],[-82.558002,27.3126418]]],[[[-82.5057973,27.2161746],[-82.5053492,27.2147707],[-82.5060662,27.2138745],[-82.5053194,27.2127991],[-82.5061558,27.2122017],[-82.5051999,27.2109172],[-82.5058421,27.2097821],[-82.5068129,27.208886],[-82.5075597,27.208169],[-82.5090664,27.2084269],[-82.510187,27.2086277],[-82.5108676,27.2094399],[-82.5096022,27.2107069],[-82.5096999,27.2122335],[-82.5093946,27.2134792],[-82.5109945,27.2150302],[-82.5116904,27.2163805],[-82.5100786,27.2157942],[-82.5085242,27.2156791],[-82.5081788,27.217291],[-82.5072002,27.216888],[-82.5057973,27.2161746]]],[[[-82.5546075,27.2958434],[-82.5537372,27.2939373],[-82.5563766,27.294155],[-82.5552539,27.2914542],[-82.5549006,27.2890451],[-82.5549004,27.2890436],[-82.5549002,27.289042],[-82.553275,27.2879503],[-82.5520381,27.2862785],[-82.5520366,27.2862765],[-82.5520352,27.2862745],[-82.5511285,27.2836028],[-82.5511282,27.283602],[-82.5511279,27.2836013],[-82.5492497,27.281274],[-82.5492484,27.2812725],[-82.5492472,27.281271],[-82.5481968,27.2788317],[-82.5481963,27.2788304],[-82.5481957,27.2788291],[-82.5460164,27.2764046],[-82.5447169,27.2769491],[-82.5447161,27.2769494],[-82.5447153,27.2769497],[-82.543854,27.2742061],[-82.5427499,27.2701841],[-82.5413698,27.2673845],[-82.541094,27.2661235],[-82.5410939,27.2661231],[-82.5410938,27.2661226],[-82.5403476,27.2651409],[-82.5403461,27.2651389],[-82.5403446,27.2651369],[-82.5399117,27.2635235],[-82.5399113,27.2635218],[-82.5399108,27.2635202],[-82.5390433,27.2629287],[-82.5365986,27.2599319],[-82.5340355,27.2569745],[-82.5324583,27.2548847],[-82.5315543,27.2535483],[-82.5315528,27.2535462],[-82.5315513,27.253544],[-82.5308433,27.2522852],[-82.5308424,27.2522837],[-82.5308416,27.2522822],[-82.5301734,27.2514567],[-82.5301723,27.2514554],[-82.5301712,27.2514541],[-82.5296192,27.2503501],[-82.5280814,27.2479842],[-82.5277659,27.2467618],[-82.5272143,27.2450674],[-82.5272141,27.2450668],[-82.5272139,27.2450662],[-82.5259126,27.2433707],[-82.5243748,27.2412414],[-82.5214643,27.2424283],[-82.5214602,27.24243],[-82.521456,27.2424317],[-82.5221667,27.2412414],[-82.5233102,27.2402162],[-82.522837,27.2378897],[-82.5218527,27.2353305],[-82.5218519,27.2353286],[-82.5218512,27.2353267],[-82.520213,27.2342749],[-82.5202117,27.2342741],[-82.5202104,27.2342733],[-82.5199801,27.2331795],[-82.519059,27.2315101],[-82.5187712,27.2294376],[-82.517565,27.2274273],[-82.5175636,27.227425],[-82.5175623,27.2274228],[-82.516758,27.2267909],[-82.5167572,27.2267902],[-82.5167563,27.2267895],[-82.5149718,27.2227598],[-82.5145688,27.2208026],[-82.513878,27.2196224],[-82.5138204,27.2184999],[-82.5133023,27.2152761],[-82.5107258,27.2112076],[-82.5116543,27.2103785],[-82.5116559,27.210381],[-82.5116575,27.2103835],[-82.5132611,27.2128682],[-82.5132612,27.2128683],[-82.5132613,27.2128683],[-82.5151114,27.2137305],[-82.5151124,27.2137327],[-82.5151134,27.2137349],[-82.5163297,27.2164183],[-82.5173906,27.2187753],[-82.5185172,27.2210485],[-82.519621,27.2233774],[-82.5196398,27.2258777],[-82.5212752,27.22856],[-82.5217719,27.2306637],[-82.5217731,27.2306643],[-82.5217743,27.2306648],[-82.5236877,27.231603],[-82.5236892,27.2316055],[-82.5236908,27.2316079],[-82.5253717,27.2342654],[-82.525372,27.2342658],[-82.5253723,27.2342661],[-82.527214,27.2364466],[-82.5292651,27.2382295],[-82.529265,27.2382305],[-82.529265,27.2382316],[-82.529171,27.2407983],[-82.5291728,27.2407985],[-82.5291745,27.2407986],[-82.5322285,27.2410662],[-82.5348111,27.2434204],[-82.534812,27.2434222],[-82.5348129,27.243424],[-82.536099,27.2460472],[-82.5363007,27.2483549],[-82.5377195,27.2515335],[-82.5391135,27.2536924],[-82.5391138,27.2536927],[-82.5391141,27.253693],[-82.5408145,27.2559074],[-82.542625,27.2578019],[-82.5445516,27.2597005],[-82.5473413,27.2618587],[-82.5509784,27.2640827],[-82.5536041,27.2655814],[-82.5566399,27.2669551],[-82.5609331,27.2681876],[-82.5641764,27.2695861],[-82.564177,27.2695881],[-82.5641776,27.2695902],[-82.5647604,27.2715284],[-82.5647617,27.2715295],[-82.5647629,27.2715306],[-82.5669598,27.2734416],[-82.5690211,27.2758611],[-82.5690213,27.2758619],[-82.5690215,27.2758627],[-82.5697071,27.2783939],[-82.5695412,27.2800375],[-82.5676603,27.2813769],[-82.5661074,27.282616],[-82.5645509,27.2844345],[-82.562913,27.287391],[-82.5616352,27.2893034],[-82.5604237,27.2919967],[-82.559793,27.2963689],[-82.5597352,27.2994417],[-82.5592266,27.3013805],[-82.5565133,27.3041055],[-82.5526618,27.3042571],[-82.5510272,27.304122],[-82.5490479,27.303577],[-82.5470214,27.3025163],[-82.547018,27.3025146],[-82.5470146,27.3025128],[-82.5488147,27.301757],[-82.5493891,27.3002206],[-82.553613,27.2995629],[-82.5536799,27.2971868],[-82.5546075,27.2958434]]],[[[-82.5722064,27.3164141],[-82.5722051,27.3164112],[-82.570908,27.3177843],[-82.5692381,27.3161968],[-82.5692366,27.3161953],[-82.569235,27.3161939],[-82.5689829,27.313741],[-82.5694424,27.3110541],[-82.5676148,27.3078601],[-82.5676136,27.307858],[-82.5676124,27.3078558],[-82.5649526,27.3056747],[-82.5649506,27.3056731],[-82.5649487,27.3056715],[-82.5660442,27.3023175],[-82.5654842,27.299556],[-82.5663353,27.2977197],[-82.5689869,27.2988285],[-82.5706432,27.300744],[-82.5706439,27.3007454],[-82.5706446,27.3007468],[-82.5723077,27.304038],[-82.5740967,27.307241],[-82.5740978,27.3072425],[-82.5740989,27.307244],[-82.5759207,27.3097355],[-82.577983,27.3122553],[-82.5803367,27.314961],[-82.5819837,27.3165933],[-82.5836117,27.317629],[-82.5856147,27.3185995],[-82.5875914,27.3210287],[-82.5875916,27.3210294],[-82.5875918,27.3210301],[-82.5885397,27.3246341],[-82.5873517,27.327121],[-82.5857873,27.328965],[-82.5834617,27.330672],[-82.5807781,27.3314983],[-82.5807744,27.3314994],[-82.5807707,27.3315006],[-82.5820625,27.3291655],[-82.5832744,27.3262801],[-82.5832747,27.3262795],[-82.5832749,27.326279],[-82.5806922,27.3235905],[-82.5785903,27.3228154],[-82.5760449,27.3220594],[-82.5736164,27.3196536],[-82.5736154,27.3196526],[-82.5736144,27.3196516],[-82.5722076,27.316417],[-82.5722064,27.3164141]]],[[[-82.5035127,27.2045508],[-82.5029342,27.2032781],[-82.5038598,27.2028153],[-82.5042648,27.2042616],[-82.5053061,27.2039145],[-82.5062317,27.202179],[-82.5055375,27.2010219],[-82.5055271,27.2009315],[-82.5055209,27.2009291],[-82.5055147,27.2009267],[-82.5052162,27.2000677],[-82.5050111,27.1994773],[-82.5041896,27.196741],[-82.5033195,27.1947869],[-82.503321,27.1947275],[-82.5027028,27.1934435],[-82.5018929,27.1915922],[-82.5008516,27.1889889],[-82.5005045,27.1878319],[-82.4996946,27.1862121],[-82.4996367,27.1849394],[-82.4984797,27.1840137],[-82.4974962,27.1835509],[-82.498769,27.1824518],[-82.4982021,27.1812535],[-82.4974011,27.180039],[-82.4969101,27.177946],[-82.4960833,27.1767833],[-82.4951531,27.1762665],[-82.4945846,27.177145],[-82.4940161,27.1758789],[-82.4930601,27.1748195],[-82.4933702,27.1737342],[-82.4935189,27.1736595],[-82.4934432,27.1719279],[-82.4912263,27.1684118],[-82.4905125,27.167647],[-82.4902167,27.1666216],[-82.4891124,27.1650834],[-82.4884419,27.1639988],[-82.4879292,27.162993],[-82.4872192,27.1621845],[-82.4867065,27.1608435],[-82.4857205,27.1602716],[-82.48505,27.1586743],[-82.4847739,27.1576488],[-82.4835513,27.1570967],[-82.4833343,27.1561107],[-82.4829991,27.15475],[-82.4824272,27.1538428],[-82.4816101,27.152373],[-82.480937,27.1511305],[-82.4796427,27.1505092],[-82.4785555,27.1504575],[-82.4797463,27.1490078],[-82.4788144,27.1473511],[-82.4765882,27.1435717],[-82.4756563,27.1430022],[-82.4756563,27.1415008],[-82.4746208,27.1411384],[-82.4732747,27.1399994],[-82.4716526,27.1398009],[-82.4716818,27.1387629],[-82.4715229,27.1377644],[-82.471591,27.1364937],[-82.4723625,27.1355406],[-82.4736106,27.1359264],[-82.4728164,27.1348144],[-82.4715229,27.1331806],[-82.4713765,27.1316407],[-82.4707514,27.1304575],[-82.4711145,27.128506],[-82.4706606,27.1273941],[-82.4697529,27.1259418],[-82.4694353,27.1239676],[-82.468641,27.120473],[-82.4682432,27.1192857],[-82.4674887,27.1179821],[-82.4665094,27.1153818],[-82.4659353,27.1143349],[-82.4667458,27.113592],[-82.4686067,27.1131116],[-82.4698598,27.1128181],[-82.4688531,27.1137837],[-82.4689538,27.1151043],[-82.4696181,27.1178907],[-82.4705312,27.1218902],[-82.4711155,27.1245245],[-82.4717456,27.1268856],[-82.4723649,27.1288874],[-82.4732687,27.132122],[-82.473896,27.1347704],[-82.4744031,27.1362411],[-82.4749314,27.1377732],[-82.4778966,27.1442706],[-82.4824385,27.1523213],[-82.484886,27.1571416],[-82.4874663,27.1611665],[-82.4895265,27.1643734],[-82.4906096,27.1659002],[-82.4916248,27.1674751],[-82.4923662,27.1687513],[-82.4937839,27.1710562],[-82.4965802,27.1745649],[-82.497091,27.1762406],[-82.4983763,27.1805251],[-82.5004594,27.1837274],[-82.5001497,27.1857075],[-82.5014806,27.1884344],[-82.5021556,27.1909547],[-82.5033653,27.193289],[-82.5047723,27.1958446],[-82.5048514,27.196137],[-82.5060042,27.1989795],[-82.5070128,27.2006717],[-82.5085222,27.2025785],[-82.509829,27.20482],[-82.5100547,27.2072207],[-82.5073888,27.2061128],[-82.5062317,27.2053029],[-82.5046119,27.2051294],[-82.5035127,27.2045508]]],[[[-81.9992651,26.9640184],[-82.0019619,26.9629657],[-82.0055496,26.9645897],[-82.003135,26.9683557],[-82.002732,26.9716906],[-82.0016404,26.9739699],[-81.9996068,26.9755013],[-81.9983606,26.9738297],[-81.9980227,26.9708999],[-81.9981194,26.9688792],[-81.997993,26.9671265],[-81.9980968,26.9668729],[-81.9992651,26.9640184]]],[[[-82.3677729,26.9406842],[-82.3652391,26.9363585],[-82.3626962,26.9367327],[-82.3601322,26.9352327],[-82.3593696,26.932617],[-82.3613765,26.9306837],[-82.3590262,26.92854],[-82.3563629,26.9304016],[-82.3576091,26.9263929],[-82.3583641,26.9233803],[-82.3614268,26.9249261],[-82.3632669,26.9277399],[-82.3660098,26.9322061],[-82.368087,26.9354929],[-82.3697998,26.9379461],[-82.3719738,26.9418931],[-82.373342,26.946019],[-82.3755372,26.9478637],[-82.3778838,26.9518456],[-82.3799013,26.9550251],[-82.3806413,26.9576999],[-82.3784339,26.9561822],[-82.3758334,26.9537949],[-82.3736791,26.9512878],[-82.3722095,26.9489768],[-82.3706591,26.9460624],[-82.3706567,26.9460579],[-82.36948,26.9439604],[-82.3677729,26.9406842]]],[[[-82.3823268,26.9655656],[-82.3803375,26.9629512],[-82.3833604,26.9633751],[-82.3851887,26.9651142],[-82.3878918,26.9665471],[-82.3894163,26.9687016],[-82.3910262,26.9708906],[-82.3928618,26.9732731],[-82.3941127,26.9751651],[-82.3957437,26.9774841],[-82.3972402,26.9797581],[-82.3983238,26.9816906],[-82.3996221,26.9839421],[-82.4012042,26.9871286],[-82.4023637,26.9896046],[-82.4042767,26.9935351],[-82.4052637,26.9954861],[-82.40624,26.9991464],[-82.4037804,26.9966248],[-82.4029672,26.9947783],[-82.4017561,26.9933905],[-82.4006094,26.9915138],[-82.3994712,26.9896341],[-82.397996,26.9868124],[-82.3965487,26.9838861],[-82.3949558,26.9814944],[-82.393364,26.9782731],[-82.3913904,26.9765562],[-82.3896083,26.9743572],[-82.3890426,26.9707412],[-82.3875965,26.9688139],[-82.3847898,26.9670324],[-82.3823268,26.9655656]]],[[[-82.3533683,26.917158],[-82.3526769,26.9126757],[-82.3554168,26.9142931],[-82.3572039,26.9174078],[-82.3584809,26.9196638],[-82.3570035,26.9215299],[-82.3544475,26.920458],[-82.3533683,26.917158]]],[[[-97.306312,26.6497528],[-97.3088811,26.6503787],[-97.3099677,26.652382],[-97.3116687,26.6541587],[-97.3141848,26.6536628],[-97.3148537,26.6568755],[-97.3153712,26.6592255],[-97.3147065,26.6619332],[-97.3182672,26.661111],[-97.3212655,26.6642923],[-97.322301,26.6666732],[-97.3226349,26.6688065],[-97.3231947,26.6715028],[-97.3244444,26.6748452],[-97.3249474,26.6776829],[-97.3257999,26.6799489],[-97.3228283,26.6801628],[-97.3254373,26.6818752],[-97.3272257,26.6847379],[-97.3290413,26.6900463],[-97.3301297,26.6930905],[-97.3304211,26.6968947],[-97.3280306,26.6951695],[-97.3290072,26.6987613],[-97.3335622,26.699038],[-97.3363811,26.7034965],[-97.3374835,26.7060625],[-97.3373901,26.7080559],[-97.3382247,26.7101032],[-97.3406757,26.7127675],[-97.3426803,26.7160252],[-97.3450678,26.7193043],[-97.3456151,26.7236013],[-97.3458076,26.7256678],[-97.3469233,26.7275445],[-97.3495058,26.728135],[-97.3524092,26.7264415],[-97.3569121,26.7245311],[-97.3584058,26.7262757],[-97.359247,26.7281571],[-97.3566613,26.7290088],[-97.360191,26.7309846],[-97.3617005,26.7337422],[-97.3635238,26.7353532],[-97.3613131,26.7376351],[-97.3627215,26.7397125],[-97.3606798,26.7410232],[-97.3639193,26.7425861],[-97.3645139,26.7467882],[-97.3657345,26.7502809],[-97.3664888,26.7531254],[-97.3633223,26.7554967],[-97.3599904,26.7548388],[-97.3579704,26.753512],[-97.3561906,26.7570967],[-97.356503,26.7603974],[-97.3616197,26.7624695],[-97.3631427,26.7654992],[-97.362854,26.7707581],[-97.365738,26.772922],[-97.3684036,26.7723896],[-97.3682825,26.7765429],[-97.3691674,26.7794773],[-97.3699056,26.7818135],[-97.367743,26.7850454],[-97.3691906,26.7888085],[-97.368286,26.7916248],[-97.3692046,26.7952738],[-97.3703589,26.7990218],[-97.3712352,26.801578],[-97.3717494,26.8047123],[-97.3727054,26.8066595],[-97.3724887,26.8087235],[-97.3761819,26.8107556],[-97.3775034,26.8139458],[-97.3800629,26.8150051],[-97.3826596,26.8174408],[-97.3856324,26.8192192],[-97.38634,26.8219515],[-97.3870851,26.8243253],[-97.3870422,26.8274406],[-97.3874604,26.830276],[-97.3874191,26.8329282],[-97.3868033,26.8359307],[-97.3866864,26.8388276],[-97.3863557,26.8421416],[-97.3827445,26.8406388],[-97.3797547,26.840123],[-97.3808499,26.8439332],[-97.381123,26.8461435],[-97.3804235,26.8481991],[-97.3792927,26.8516375],[-97.3814399,26.8538265],[-97.3836855,26.8562327],[-97.3870907,26.8569445],[-97.3904664,26.8589591],[-97.3929578,26.8623232],[-97.3906978,26.8647843],[-97.3868787,26.8646549],[-97.3853622,26.8626185],[-97.3845797,26.8605823],[-97.3826325,26.8590471],[-97.3824768,26.8618742],[-97.3819227,26.8641798],[-97.3842411,26.8669897],[-97.3840875,26.8700168],[-97.3838533,26.8724955],[-97.3829376,26.8753537],[-97.3836735,26.8783959],[-97.3837345,26.8802122],[-97.3824129,26.882434],[-97.3818778,26.8852443],[-97.3804072,26.8870815],[-97.3780807,26.8863125],[-97.376214,26.8867336],[-97.3752748,26.8903883],[-97.3762305,26.8936362],[-97.3738533,26.8928492],[-97.3721256,26.8938852],[-97.3708117,26.8952005],[-97.3691471,26.8965631],[-97.3674407,26.8893665],[-97.367004,26.8862261],[-97.3665937,26.8833835],[-97.3652977,26.8753295],[-97.3644882,26.8707255],[-97.3638737,26.8676535],[-97.3632417,26.8645048],[-97.3623684,26.8596582],[-97.3613887,26.8542421],[-97.3607484,26.8513615],[-97.3599297,26.848293],[-97.3589952,26.843503],[-97.3584707,26.8407405],[-97.3569802,26.8340726],[-97.3557817,26.8289335],[-97.3547324,26.8237295],[-97.3537857,26.8190295],[-97.3529667,26.8155685],[-97.3521482,26.812049],[-97.3515339,26.8093381],[-97.3498289,26.8024518],[-97.3489757,26.7984445],[-97.3476667,26.7933681],[-97.3467257,26.789784],[-97.3461372,26.787337],[-97.3457704,26.7848875],[-97.3449792,26.7818402],[-97.3441879,26.7790215],[-97.3431707,26.7754275],[-97.3426885,26.7734296],[-97.342122,26.7709192],[-97.3411122,26.7669455],[-97.3395907,26.7603885],[-97.3383387,26.7557575],[-97.3377894,26.7537862],[-97.3370444,26.7509],[-97.3357797,26.7468358],[-97.3350769,26.74444],[-97.3338549,26.7397528],[-97.3328482,26.7360672],[-97.3319732,26.733345],[-97.3310474,26.730353],[-97.3301722,26.7276135],[-97.3296227,26.7257905],[-97.3283207,26.7221455],[-97.3271967,26.7186605],[-97.32649,26.7161998],[-97.3252687,26.712002],[-97.3246347,26.7097742],[-97.3238267,26.7071295],[-97.3222607,26.7023688],[-97.3190189,26.6925408],[-97.3179042,26.6886165],[-97.3173045,26.6864958],[-97.315956,26.6818728],[-97.3146757,26.677521],[-97.313957,26.6752245],[-97.31286,26.6718318],[-97.3121492,26.6696],[-97.3114217,26.6675365],[-97.3095972,26.6619998],[-97.3085384,26.6586102],[-97.3077477,26.6562795],[-97.3069567,26.6538108],[-97.306312,26.6497528]]],[[[-82.3413818,26.9008267],[-82.3421964,26.8961017],[-82.3441645,26.8969073],[-82.3452341,26.8986788],[-82.3467628,26.9011581],[-82.3470772,26.9036342],[-82.348117,26.9055619],[-82.3494554,26.9076718],[-82.3516166,26.9096457],[-82.3497969,26.9123637],[-82.3495617,26.9157576],[-82.347097,26.9127461],[-82.3444307,26.9111871],[-82.343601,26.9086073],[-82.3407655,26.9069546],[-82.3389379,26.9047455],[-82.3393048,26.9029],[-82.3413818,26.9008267]]],[[[-97.3691471,26.8965631],[-97.3709097,26.897699],[-97.3733522,26.8991695],[-97.376765,26.8998423],[-97.3786214,26.9029272],[-97.3805425,26.9049661],[-97.3813904,26.9013367],[-97.3825364,26.8977853],[-97.386077,26.8967802],[-97.3849146,26.8999899],[-97.3877718,26.9024282],[-97.3884031,26.9065335],[-97.3894844,26.9092109],[-97.3898538,26.9126133],[-97.3869082,26.9132195],[-97.3876743,26.915094],[-97.3891637,26.9156855],[-97.3906973,26.91741],[-97.3884767,26.919376],[-97.3900195,26.9215773],[-97.3871243,26.9228038],[-97.3911135,26.9246821],[-97.3893089,26.9269849],[-97.3870644,26.9288598],[-97.3884214,26.9308625],[-97.3899201,26.9334382],[-97.3913593,26.9363884],[-97.3898515,26.9387762],[-97.3869365,26.9404929],[-97.3896671,26.9440836],[-97.3870668,26.9462456],[-97.3867719,26.9438149],[-97.3848537,26.9439744],[-97.3820282,26.9443273],[-97.3835831,26.9470647],[-97.3827568,26.9494032],[-97.3852499,26.9510837],[-97.3829232,26.9531727],[-97.3849119,26.9560864],[-97.3865457,26.9598986],[-97.3870707,26.9624362],[-97.3882333,26.9660962],[-97.3893707,26.9685184],[-97.3881352,26.9703119],[-97.3863494,26.9724119],[-97.3866953,26.9756949],[-97.3875757,26.9775854],[-97.388453,26.9792054],[-97.3872833,26.9813259],[-97.3857391,26.9849964],[-97.3868287,26.9869604],[-97.3889116,26.9916928],[-97.3889269,26.9954139],[-97.389072,26.9987343],[-97.3891279,27.0008428],[-97.3897552,27.0045298],[-97.3896514,27.0077634],[-97.3889586,27.0104061],[-97.3879847,27.0117729],[-97.3879985,27.0136625],[-97.3892523,27.0180084],[-97.3877893,27.0201091],[-97.3876347,27.0219054],[-97.3895097,27.0269191],[-97.3888857,27.0290584],[-97.389157,27.0325054],[-97.3885482,27.0363579],[-97.3889188,27.0397508],[-97.3894028,27.0429073],[-97.390399,27.0459621],[-97.3894286,27.0490313],[-97.3893374,27.0519873],[-97.3868477,27.0526971],[-97.3882987,27.0559614],[-97.3883867,27.0588614],[-97.3891544,27.0607129],[-97.3887648,27.0640051],[-97.3891401,27.0681078],[-97.3877022,27.0713559],[-97.3878087,27.0758094],[-97.3881342,27.0782459],[-97.3876213,27.0810354],[-97.3859369,27.0836838],[-97.386734,27.0876858],[-97.3875263,27.0907354],[-97.389438,27.0926924],[-97.3892722,27.0956917],[-97.3893253,27.0996144],[-97.3894517,27.1031036],[-97.3887099,27.1062517],[-97.390472,27.1093883],[-97.3887197,27.1124087],[-97.3877692,27.1137966],[-97.3858327,27.1140044],[-97.3866937,27.1162659],[-97.3868465,27.1183246],[-97.3872682,27.1211149],[-97.3878615,27.1229222],[-97.3898617,27.1257934],[-97.3894721,27.127768],[-97.3860015,27.1259604],[-97.3838905,27.1289087],[-97.3847105,27.1319499],[-97.3884727,27.1321951],[-97.3888448,27.1369763],[-97.388159,27.1407807],[-97.3858857,27.1445652],[-97.3864594,27.1480082],[-97.3874149,27.1516062],[-97.3880428,27.154353],[-97.3900463,27.1543844],[-97.3897417,27.1576549],[-97.3874209,27.1608822],[-97.3872019,27.1631952],[-97.3861877,27.1661474],[-97.3860907,27.1684056],[-97.3835161,27.1713576],[-97.3829445,27.1748782],[-97.381854,27.1782457],[-97.3824693,27.181183],[-97.3817704,27.1840557],[-97.3816493,27.1867004],[-97.382255,27.1893497],[-97.3821827,27.1923549],[-97.3787777,27.1951904],[-97.3769269,27.1995913],[-97.377237,27.2027472],[-97.3794527,27.2040974],[-97.384214,27.2048532],[-97.3818264,27.20717],[-97.3838937,27.2096092],[-97.3834805,27.2134694],[-97.3810878,27.2139446],[-97.3825081,27.2174079],[-97.3792447,27.2163462],[-97.3760431,27.2175794],[-97.3765417,27.2206689],[-97.3802804,27.2202058],[-97.3797025,27.2230397],[-97.3800567,27.2250389],[-97.3801433,27.2274413],[-97.3813593,27.2297512],[-97.3783049,27.2310083],[-97.3783113,27.2285348],[-97.3752567,27.2297384],[-97.3739557,27.2308004],[-97.3730592,27.2335234],[-97.3729304,27.2359718],[-97.3719197,27.2372494],[-97.371133,27.2396031],[-97.3719392,27.2439372],[-97.3695015,27.2453534],[-97.3693529,27.2491982],[-97.3716162,27.2504832],[-97.3735348,27.2484659],[-97.3745103,27.2507062],[-97.3719166,27.2538251],[-97.3730215,27.2566335],[-97.3714563,27.2596415],[-97.3737049,27.2595644],[-97.3749378,27.2621452],[-97.3737067,27.2628884],[-97.3728362,27.2661931],[-97.3742547,27.2681381],[-97.3732863,27.2705385],[-97.3725207,27.2729956],[-97.3696179,27.2732238],[-97.36768,27.2716587],[-97.366642,27.2684624],[-97.3633351,27.267991],[-97.3611275,27.2705849],[-97.3617057,27.2726134],[-97.3600613,27.2734183],[-97.3593875,27.275746],[-97.3608157,27.2780249],[-97.3618702,27.2780304],[-97.3639867,27.2780414],[-97.3659924,27.2810434],[-97.3676607,27.2797529],[-97.3680586,27.2780812],[-97.3693614,27.2780892],[-97.3708102,27.2783775],[-97.368191,27.2822196],[-97.3670092,27.2852434],[-97.3677677,27.2878794],[-97.3675377,27.2903554],[-97.3670433,27.293105],[-97.3682342,27.2951493],[-97.3672224,27.2988677],[-97.3664277,27.3016684],[-97.3639517,27.3020474],[-97.3611968,27.3025156],[-97.3575492,27.3049386],[-97.3540717,27.3051004],[-97.352833,27.3065839],[-97.3524567,27.3093007],[-97.3556412,27.3098289],[-97.3575896,27.3124972],[-97.3579262,27.3155869],[-97.3593387,27.3179134],[-97.3608927,27.3204809],[-97.3612665,27.326024],[-97.3636491,27.3272792],[-97.3661499,27.3294332],[-97.3660657,27.3327142],[-97.3622405,27.3347396],[-97.3634277,27.3378344],[-97.364096,27.340027],[-97.3635067,27.3429694],[-97.3614287,27.3471424],[-97.3603257,27.3497104],[-97.3602551,27.3518002],[-97.3623737,27.355883],[-97.3616199,27.3589589],[-97.3615507,27.3616414],[-97.3599217,27.3647484],[-97.3581637,27.3671904],[-97.3576772,27.3700214],[-97.3577744,27.3729501],[-97.3550687,27.3753901],[-97.35221,27.3770207],[-97.3504817,27.379291],[-97.3487814,27.3829729],[-97.3480697,27.3857754],[-97.3469917,27.3878964],[-97.3459912,27.3907049],[-97.3440657,27.3935057],[-97.3414212,27.3953364],[-97.3395022,27.3987356],[-97.3375447,27.4010803],[-97.3358905,27.4026621],[-97.3351182,27.4059633],[-97.3338217,27.4095623],[-97.3315277,27.4130094],[-97.3307147,27.4161193],[-97.3298032,27.4195233],[-97.3299707,27.4213223],[-97.3308572,27.4247893],[-97.3303699,27.4308876],[-97.3303512,27.4353181],[-97.3284822,27.4379716],[-97.3269407,27.4407853],[-97.3249632,27.4436743],[-97.3236527,27.4478387],[-97.3211227,27.4536578],[-97.3206217,27.4557553],[-97.3193237,27.4581858],[-97.3167667,27.4627857],[-97.3141842,27.4676188],[-97.3133147,27.470068],[-97.3126292,27.4723411],[-97.308847,27.4728948],[-97.3095705,27.4754243],[-97.3077025,27.4798257],[-97.3023602,27.4837798],[-97.300565,27.4859763],[-97.2999307,27.4884323],[-97.298497,27.4904887],[-97.2945822,27.4965008],[-97.2933913,27.5009513],[-97.2907162,27.5041753],[-97.2895714,27.5073267],[-97.2882857,27.5107883],[-97.2871797,27.5127248],[-97.2850277,27.5151203],[-97.2840417,27.5183753],[-97.2825617,27.5220768],[-97.2806117,27.52435],[-97.2793507,27.5273067],[-97.2766327,27.5308033],[-97.2739957,27.5346243],[-97.2718092,27.5363883],[-97.2676049,27.5381321],[-97.2661412,27.5397961],[-97.2660327,27.5442033],[-97.2650458,27.5456164],[-97.262764,27.546359],[-97.2623402,27.5488392],[-97.2650951,27.5485994],[-97.2650935,27.5515571],[-97.2633554,27.5534153],[-97.2619745,27.5560851],[-97.2606437,27.5581916],[-97.257908,27.5615967],[-97.260871,27.5631736],[-97.2604472,27.5673773],[-97.2583744,27.5721576],[-97.2543057,27.576558],[-97.2513837,27.5785633],[-97.2495009,27.5788721],[-97.2490907,27.5789393],[-97.2476976,27.5814036],[-97.2476831,27.5814161],[-97.2450609,27.5836533],[-97.2466403,27.5879609],[-97.2474256,27.5906244],[-97.2476849,27.5952013],[-97.2476884,27.5952015],[-97.2476919,27.5952017],[-97.2514905,27.5954163],[-97.2514914,27.5954185],[-97.2514923,27.5954207],[-97.25257,27.5981454],[-97.2497642,27.5976888],[-97.2466962,27.5979971],[-97.2441823,27.5978368],[-97.2441813,27.5978367],[-97.2441803,27.5978366],[-97.2424493,27.5963515],[-97.242447,27.5963496],[-97.2424448,27.5963476],[-97.2394187,27.5954648],[-97.2381778,27.5975905],[-97.2357627,27.5982623],[-97.2339448,27.5977051],[-97.2300355,27.5994393],[-97.23004,27.5994413],[-97.2300445,27.5994433],[-97.2330502,27.6007744],[-97.2359067,27.6010101],[-97.2382191,27.6020251],[-97.2381312,27.5996942],[-97.2407596,27.6001706],[-97.2438289,27.6007746],[-97.2438299,27.6007764],[-97.2438308,27.6007782],[-97.2451614,27.603333],[-97.2418274,27.6039732],[-97.2435781,27.6072655],[-97.2396762,27.6070681],[-97.2408414,27.610059],[-97.2397099,27.6120149],[-97.2396838,27.6145211],[-97.238822,27.6167226],[-97.2367716,27.6170593],[-97.2358634,27.620846],[-97.2347748,27.6231139],[-97.2341599,27.6253213],[-97.2345864,27.6273375],[-97.2345897,27.6273382],[-97.234593,27.6273389],[-97.237885,27.6280107],[-97.2392839,27.6265945],[-97.241442,27.6253746],[-97.2414416,27.6253793],[-97.2414411,27.625384],[-97.2411008,27.6288817],[-97.2386216,27.6304482],[-97.2390251,27.6329441],[-97.2402498,27.6349392],[-97.2402504,27.6349402],[-97.2402511,27.6349413],[-97.240311,27.6350388],[-97.2378476,27.6359926],[-97.2356073,27.6377091],[-97.2356061,27.63771],[-97.2356048,27.637711],[-97.2343334,27.6359563],[-97.2358987,27.6345563],[-97.2326592,27.6321433],[-97.232656,27.6321409],[-97.2326528,27.6321385],[-97.2288565,27.6322919],[-97.2248926,27.6330631],[-97.2216063,27.6337508],[-97.2216059,27.6337509],[-97.2216054,27.633751],[-97.2192458,27.6319182],[-97.2168777,27.6283257],[-97.2156106,27.6251694],[-97.2142583,27.621406],[-97.2150427,27.6201013],[-97.215072,27.6189222],[-97.215072,27.6189187],[-97.2150721,27.6189152],[-97.2150827,27.6184893],[-97.214392,27.6165493],[-97.2132264,27.6140343],[-97.2132254,27.6140323],[-97.2132245,27.6140302],[-97.2029023,27.6127977],[-97.2028977,27.6127972],[-97.2028931,27.6127966],[-97.2047057,27.6093353],[-97.2069627,27.6048223],[-97.2097627,27.5997183],[-97.2115547,27.5960383],[-97.2129147,27.5935903],[-97.2150521,27.5902803],[-97.2164556,27.587371],[-97.2174734,27.584952],[-97.218615,27.5823336],[-97.2201307,27.5799553],[-97.2222587,27.5763656],[-97.2222618,27.5763604],[-97.2290027,27.5628113],[-97.2304527,27.5601853],[-97.2317252,27.5577893],[-97.2328864,27.5556787],[-97.2365952,27.5489853],[-97.2377257,27.5466353],[-97.239927,27.5424623],[-97.2426587,27.5375223],[-97.2447397,27.5337278],[-97.2461017,27.5312748],[-97.2473607,27.5289813],[-97.2482977,27.5268148],[-97.2499652,27.5238963],[-97.2519672,27.5200838],[-97.2545022,27.5152948],[-97.2558917,27.5124303],[-97.2575127,27.5098403],[-97.258959,27.5067687],[-97.2599577,27.5047063],[-97.2619182,27.5010093],[-97.2648937,27.4951743],[-97.2661102,27.4926193],[-97.2760837,27.4721403],[-97.2863177,27.4498383],[-97.2889917,27.4441543],[-97.2943377,27.4320053],[-97.3044627,27.4077293],[-97.3065687,27.4024803],[-97.3110637,27.3908114],[-97.3167247,27.3753164],[-97.3185327,27.3702804],[-97.3265157,27.3476074],[-97.3301337,27.3361674],[-97.3340587,27.3242924],[-97.3385217,27.3094604],[-97.3401377,27.3039574],[-97.3426507,27.2954524],[-97.3450347,27.2867864],[-97.3475647,27.2779594],[-97.3505317,27.2673669],[-97.3547037,27.2503184],[-97.3582362,27.2350299],[-97.3600667,27.2263864],[-97.3633937,27.2103614],[-97.3655422,27.1990584],[-97.3663097,27.1946564],[-97.3685587,27.1794344],[-97.3711312,27.1595337],[-97.372523,27.1481094],[-97.3728967,27.1446554],[-97.3738147,27.1362414],[-97.3748837,27.1253214],[-97.3752547,27.1212834],[-97.3757167,27.1158724],[-97.3760647,27.1121584],[-97.3766327,27.1048914],[-97.3769937,27.1010164],[-97.3775367,27.0911364],[-97.3776917,27.0891414],[-97.3785227,27.0691054],[-97.3791152,27.0482579],[-97.3791827,27.0311644],[-97.3787127,27.0003254],[-97.3783547,26.9928724],[-97.3777707,26.9857184],[-97.3771117,26.9739124],[-97.3768077,26.9685014],[-97.3764857,26.9645198],[-97.3761977,26.9602244],[-97.3759187,26.9572674],[-97.3752527,26.9501264],[-97.3748577,26.9470914],[-97.375378,26.9453279],[-97.3739017,26.9389684],[-97.3735247,26.9363175],[-97.3728957,26.9309294],[-97.3724717,26.9269405],[-97.3720347,26.9224475],[-97.3726622,26.9195231],[-97.3713157,26.9165325],[-97.3707237,26.9097015],[-97.3697882,26.9040045],[-97.3693123,26.9010131],[-97.3691471,26.8965631]]],[[[-97.2676234,27.5718553],[-97.271134,27.569258],[-97.2710667,27.5716673],[-97.2701802,27.5737523],[-97.2685366,27.575945],[-97.2671547,27.5761993],[-97.2652757,27.5767297],[-97.2666452,27.5741578],[-97.2676234,27.5718553]]],[[[-82.5741155,27.3338229],[-82.5760973,27.3321009],[-82.5788022,27.3329896],[-82.5775366,27.3349913],[-82.5758117,27.336546],[-82.5736135,27.3376469],[-82.5725989,27.3358569],[-82.5741155,27.3338229]]],[[[-82.6888814,27.4385581],[-82.6888801,27.4385554],[-82.6869721,27.4394618],[-82.6853641,27.4398934],[-82.6828573,27.4406322],[-82.6809287,27.439209],[-82.6809271,27.4392077],[-82.6809254,27.4392065],[-82.6808825,27.4367392],[-82.6808825,27.4367389],[-82.6808825,27.4367386],[-82.6791304,27.4344184],[-82.676559,27.4323437],[-82.6765568,27.4323419],[-82.6765546,27.4323402],[-82.6778131,27.4306293],[-82.6778149,27.4306269],[-82.6778166,27.4306245],[-82.6758013,27.4305472],[-82.6744123,27.4296625],[-82.671508,27.4299459],[-82.6683468,27.4260592],[-82.6656101,27.4238438],[-82.6621261,27.4238264],[-82.6591318,27.4217248],[-82.6557923,27.4183994],[-82.6557911,27.4183982],[-82.6557899,27.418397],[-82.6547444,27.415292],[-82.6545053,27.412852],[-82.6550878,27.4110576],[-82.6550879,27.4110576],[-82.6550879,27.4110575],[-82.6536736,27.4090288],[-82.6517365,27.4068128],[-82.6495474,27.4044782],[-82.6495472,27.4044781],[-82.6495471,27.404478],[-82.6476507,27.4015663],[-82.645979,27.3989665],[-82.6459779,27.3989648],[-82.6459768,27.3989631],[-82.6446647,27.3971276],[-82.6433552,27.3954021],[-82.6379765,27.3896996],[-82.6379761,27.3896992],[-82.6379757,27.3896988],[-82.6349967,27.38482],[-82.6342809,27.3825139],[-82.6344261,27.3800778],[-82.6333427,27.3778901],[-82.6333416,27.3778879],[-82.6333406,27.3778858],[-82.6311041,27.3765105],[-82.6291891,27.380404],[-82.6281257,27.3822535],[-82.6266562,27.3835088],[-82.6230661,27.3825814],[-82.6198851,27.3806966],[-82.6163809,27.3780801],[-82.6163792,27.3780788],[-82.6163774,27.3780775],[-82.6167167,27.3740355],[-82.6184677,27.3725497],[-82.6172491,27.3697354],[-82.6175831,27.3680616],[-82.6164987,27.365957],[-82.6156378,27.3640322],[-82.6145016,27.3621729],[-82.6145002,27.3621707],[-82.6144988,27.3621684],[-82.6123466,27.3602318],[-82.6123461,27.3602314],[-82.6123456,27.3602309],[-82.6112722,27.3582967],[-82.6108402,27.3559757],[-82.6108401,27.3559749],[-82.6108399,27.3559741],[-82.6094837,27.3544637],[-82.6076609,27.353321],[-82.6076605,27.3533207],[-82.6076602,27.3533205],[-82.6065191,27.3513079],[-82.6065176,27.3513053],[-82.6065162,27.3513028],[-82.6037328,27.3515533],[-82.6008205,27.3490467],[-82.5977421,27.3477019],[-82.5977404,27.3477011],[-82.5977387,27.3477004],[-82.5978616,27.3449519],[-82.5978616,27.3449509],[-82.5978617,27.3449499],[-82.5956694,27.343026],[-82.5932564,27.3416934],[-82.5908942,27.3400402],[-82.5880827,27.3391122],[-82.5852392,27.3384432],[-82.5823156,27.3378813],[-82.5823133,27.3378808],[-82.582311,27.3378804],[-82.5833169,27.3347016],[-82.5860041,27.334631],[-82.5873138,27.3327464],[-82.5869083,27.3307007],[-82.5885142,27.3293164],[-82.5904682,27.329509],[-82.5929957,27.3312607],[-82.5965407,27.33506],[-82.5987217,27.337563],[-82.6009927,27.340048],[-82.6047717,27.343781],[-82.611267,27.3496997],[-82.6137333,27.351862],[-82.6167957,27.3554778],[-82.6201022,27.3588765],[-82.6222127,27.360754],[-82.6245122,27.3638006],[-82.6272767,27.367406],[-82.6297282,27.370591],[-82.6315547,27.372992],[-82.6332208,27.3751312],[-82.6356821,27.3785172],[-82.6371807,27.380705],[-82.6371809,27.3807054],[-82.6371811,27.3807058],[-82.6381427,27.382403],[-82.6395357,27.384966],[-82.6418462,27.389726],[-82.6418468,27.3897263],[-82.6418474,27.3897266],[-82.6430206,27.3902704],[-82.6455807,27.3935622],[-82.6475687,27.3961373],[-82.6488233,27.3975864],[-82.6503707,27.399723],[-82.6516362,27.401508],[-82.6541659,27.4049302],[-82.6561422,27.4073532],[-82.6577127,27.4091302],[-82.6593557,27.410838],[-82.660489,27.4119708],[-82.6623432,27.413749],[-82.6646122,27.415838],[-82.6680135,27.4187344],[-82.6706822,27.4209321],[-82.6729575,27.4227774],[-82.6757413,27.4245857],[-82.6789756,27.4267155],[-82.6812412,27.428574],[-82.683745,27.4310104],[-82.6867011,27.4336512],[-82.6890508,27.4353954],[-82.6914653,27.4372971],[-82.6914659,27.4372988],[-82.6914665,27.4373004],[-82.6921067,27.439121],[-82.6917754,27.4410693],[-82.6897148,27.4420205],[-82.6897132,27.4420212],[-82.6897117,27.442022],[-82.6896673,27.4402177],[-82.6888827,27.4385608],[-82.6888814,27.4385581]]],[[[-82.7193481,27.5223319],[-82.7176999,27.5209261],[-82.717899,27.523955],[-82.7173665,27.5261857],[-82.7155651,27.52628],[-82.7125894,27.5253265],[-82.710887,27.5233383],[-82.7083617,27.5228016],[-82.7083601,27.5228013],[-82.7083584,27.5228009],[-82.7083096,27.5209323],[-82.7099878,27.519174],[-82.7097285,27.5169653],[-82.7133209,27.5180826],[-82.7142035,27.5143973],[-82.714204,27.5143951],[-82.7142046,27.5143928],[-82.7095628,27.5138618],[-82.7095605,27.5138616],[-82.7095581,27.5138613],[-82.7101076,27.512],[-82.7117176,27.5105524],[-82.71306,27.5077237],[-82.7130603,27.5077231],[-82.7130606,27.5077225],[-82.7112698,27.5059591],[-82.7112682,27.5059575],[-82.7112666,27.505956],[-82.7111211,27.5042106],[-82.710021,27.5018487],[-82.7100202,27.5018472],[-82.7100195,27.5018456],[-82.7079339,27.4997147],[-82.7063595,27.4981015],[-82.7052505,27.4969803],[-82.705248,27.4969778],[-82.7052455,27.4969752],[-82.7045997,27.4963224],[-82.7045983,27.496321],[-82.7045969,27.4963195],[-82.7037921,27.492823],[-82.7031924,27.4903755],[-82.7032456,27.488658],[-82.7026458,27.4857926],[-82.7020878,27.4818673],[-82.7003533,27.4773863],[-82.6993186,27.4742694],[-82.6989009,27.4712182],[-82.6971623,27.4685403],[-82.6955954,27.4659767],[-82.6929457,27.4551527],[-82.6921548,27.4538978],[-82.6921533,27.4538954],[-82.6921518,27.453893],[-82.6896554,27.4522535],[-82.6896539,27.4522526],[-82.6896525,27.4522516],[-82.6891148,27.4485412],[-82.6881483,27.4455612],[-82.6909196,27.4444675],[-82.6909209,27.4444702],[-82.6909221,27.4444728],[-82.6918121,27.446402],[-82.6924565,27.4483678],[-82.6935626,27.4511335],[-82.6952071,27.4550475],[-82.6987664,27.4643407],[-82.6996727,27.4668055],[-82.7004955,27.4695987],[-82.7017321,27.4722028],[-82.7022946,27.473983],[-82.7032871,27.4761561],[-82.7046306,27.4788372],[-82.7057854,27.4824458],[-82.7069786,27.4854916],[-82.7082886,27.488216],[-82.7100918,27.4917188],[-82.7114036,27.4946166],[-82.7124798,27.4965192],[-82.7135376,27.4983695],[-82.713879,27.4999236],[-82.7138804,27.4999252],[-82.7138819,27.4999267],[-82.7152861,27.501396],[-82.7152877,27.5013983],[-82.7152893,27.5014007],[-82.7164338,27.5031596],[-82.7164344,27.5031604],[-82.716435,27.5031612],[-82.7179294,27.5052975],[-82.720112,27.5080973],[-82.7224934,27.5111487],[-82.7241076,27.5130878],[-82.7260603,27.5152433],[-82.7278079,27.5169661],[-82.7307681,27.5195737],[-82.7328704,27.521401],[-82.7354405,27.5236165],[-82.7375313,27.5256172],[-82.7395752,27.5280611],[-82.7417006,27.5302185],[-82.741702,27.5302207],[-82.7417034,27.5302229],[-82.7431421,27.532527],[-82.744827,27.5358453],[-82.7455227,27.538372],[-82.7421515,27.5390587],[-82.739652,27.5377623],[-82.7367889,27.5349312],[-82.7345956,27.5347324],[-82.7328851,27.5337168],[-82.7309534,27.5326337],[-82.7289452,27.5311444],[-82.7260325,27.5295122],[-82.7234053,27.5291566],[-82.7219572,27.527806],[-82.7219547,27.5278037],[-82.7219522,27.5278013],[-82.7257071,27.5270338],[-82.7247292,27.5253782],[-82.7247279,27.5253759],[-82.7247265,27.5253737],[-82.7213057,27.5228646],[-82.7193481,27.5223319]]],[[[-82.7604516,27.5820739],[-82.7594488,27.5781506],[-82.7637274,27.5799466],[-82.7655556,27.5816846],[-82.7662388,27.5842739],[-82.7666612,27.5877747],[-82.7665983,27.5913673],[-82.7660794,27.5942155],[-82.765385,27.5969673],[-82.764722,27.5995411],[-82.7629011,27.6025588],[-82.7597328,27.6014419],[-82.7588623,27.5991939],[-82.7590631,27.5963059],[-82.7595236,27.5928739],[-82.7600796,27.5893579],[-82.7606356,27.5853711],[-82.7604516,27.5820739]]],[[[-82.5700839,27.6323077],[-82.5729303,27.6319876],[-82.5750481,27.6337511],[-82.5760736,27.6365818],[-82.5740583,27.637009],[-82.5716971,27.6350721],[-82.5700839,27.6323077]]],[[[-82.7397343,27.6453506],[-82.7368126,27.6436247],[-82.7349671,27.6436442],[-82.7325751,27.6435534],[-82.7299079,27.6428877],[-82.7312625,27.6413945],[-82.7333796,27.6402429],[-82.7348026,27.6379065],[-82.7346662,27.6352329],[-82.7338721,27.6325149],[-82.7333855,27.6305324],[-82.7328805,27.6278202],[-82.7336122,27.6255906],[-82.7336847,27.623308],[-82.7317136,27.6234721],[-82.7321606,27.6208315],[-82.7299308,27.6208788],[-82.7273123,27.6206024],[-82.7253716,27.6202136],[-82.7230367,27.6208093],[-82.7210272,27.6224363],[-82.718506,27.6234718],[-82.7157931,27.6248074],[-82.7157923,27.6248078],[-82.7157916,27.6248082],[-82.715566,27.6249192],[-82.7126501,27.626276],[-82.7094969,27.6268266],[-82.7075085,27.6283684],[-82.7041312,27.6300257],[-82.7015399,27.6331277],[-82.7020946,27.6293298],[-82.7040739,27.6264162],[-82.7063279,27.6248544],[-82.7084889,27.6238539],[-82.7113872,27.6225426],[-82.7144996,27.6208676],[-82.718257,27.6192027],[-82.7215035,27.618032],[-82.7238364,27.6172514],[-82.7266336,27.6162529],[-82.7287922,27.6153969],[-82.7309831,27.6162033],[-82.7326056,27.6132799],[-82.7345865,27.611783],[-82.7367303,27.6119298],[-82.7373752,27.6140045],[-82.7367682,27.6165483],[-82.735233,27.6204299],[-82.7360106,27.622579],[-82.7360964,27.6247306],[-82.7373232,27.6285923],[-82.7383934,27.6304163],[-82.7378281,27.6327619],[-82.7388763,27.6357891],[-82.7404971,27.6382777],[-82.7404381,27.6399845],[-82.7416388,27.6416388],[-82.7420131,27.6431319],[-82.7397343,27.6453506]]],[[[-82.7167018,27.6345941],[-82.7165689,27.6316962],[-82.7152823,27.6290837],[-82.7145194,27.6271658],[-82.7151891,27.6257283],[-82.7161351,27.6258448],[-82.7161359,27.625845],[-82.7161368,27.6258451],[-82.7177135,27.6260393],[-82.7182627,27.6288901],[-82.7201159,27.6334275],[-82.7230734,27.630683],[-82.7242733,27.6319692],[-82.7215901,27.6349842],[-82.7191845,27.6366094],[-82.7176404,27.6377001],[-82.7176384,27.6377016],[-82.7176364,27.637703],[-82.7164227,27.6385603],[-82.7167018,27.6345941]]],[[[-97.2080627,27.6362883],[-97.2106911,27.6356833],[-97.2111854,27.6397526],[-97.2139154,27.6421105],[-97.2114251,27.6429851],[-97.2088524,27.6418376],[-97.2080627,27.6362883]]],[[[-97.1679012,27.7242447],[-97.1669601,27.7223156],[-97.1635734,27.7218318],[-97.1615771,27.7246515],[-97.158232,27.7249754],[-97.158251,27.727452],[-97.1551404,27.7266463],[-97.1536037,27.7236738],[-97.151858,27.7279958],[-97.1511291,27.7296483],[-97.1493111,27.7310446],[-97.1479494,27.7339149],[-97.1461659,27.7344859],[-97.1456964,27.7368003],[-97.1446222,27.7395241],[-97.1470934,27.7418155],[-97.1451882,27.7437537],[-97.1426438,27.7443036],[-97.1408587,27.7450563],[-97.1389884,27.7445103],[-97.136596,27.7446163],[-97.1344987,27.7475856],[-97.1306907,27.7513715],[-97.1282118,27.7550617],[-97.1284312,27.7598904],[-97.1253918,27.7627031],[-97.1238957,27.7646899],[-97.1221514,27.7665589],[-97.1200197,27.767726],[-97.1184079,27.7693101],[-97.1202725,27.770677],[-97.1180654,27.7716636],[-97.1166147,27.7735898],[-97.114515,27.7747272],[-97.1129514,27.7770164],[-97.1117663,27.7792903],[-97.1087392,27.7805203],[-97.1067971,27.7835635],[-97.1081225,27.7847495],[-97.1070857,27.7860853],[-97.1050502,27.7877405],[-97.1023607,27.7882334],[-97.1018407,27.7911323],[-97.1047685,27.7902428],[-97.1027293,27.793494],[-97.0992039,27.7940106],[-97.101245,27.7954948],[-97.1018542,27.797575],[-97.1002315,27.8004216],[-97.1026753,27.800738],[-97.1051438,27.7992668],[-97.1041757,27.8024054],[-97.1051677,27.8045513],[-97.1034782,27.8054981],[-97.0993367,27.8069777],[-97.0975174,27.8078029],[-97.0940706,27.8085657],[-97.0933013,27.8111942],[-97.0900458,27.8112873],[-97.0869177,27.81284],[-97.0854257,27.8111228],[-97.0838692,27.8093864],[-97.0814557,27.8104686],[-97.0820777,27.812652],[-97.0806866,27.8144513],[-97.0819637,27.8166193],[-97.0847172,27.8181888],[-97.0805327,27.8201028],[-97.0777488,27.8193944],[-97.0774779,27.8220094],[-97.079657,27.8244772],[-97.0785118,27.8284975],[-97.0820077,27.8290179],[-97.0847706,27.8279101],[-97.0878167,27.8254998],[-97.0895791,27.8242735],[-97.0932782,27.8252877],[-97.0954633,27.8276085],[-97.0981677,27.8261053],[-97.1005904,27.8246266],[-97.1040759,27.8243478],[-97.1049207,27.8263784],[-97.1068342,27.8280316],[-97.1077129,27.825835],[-97.1097297,27.8250943],[-97.1114159,27.8256249],[-97.1129892,27.8247185],[-97.1146884,27.8230943],[-97.1182877,27.8220423],[-97.1214067,27.8215373],[-97.1244667,27.8208418],[-97.1277847,27.8206498],[-97.1318377,27.8221538],[-97.1341926,27.82498],[-97.1321467,27.8272683],[-97.1295323,27.8279798],[-97.1259531,27.8288719],[-97.1228667,27.8290768],[-97.1188064,27.8299719],[-97.1159925,27.8309905],[-97.1129331,27.8310361],[-97.1105675,27.8314967],[-97.1088821,27.8308906],[-97.1052668,27.8321262],[-97.103117,27.8299124],[-97.1016408,27.8322411],[-97.1004601,27.8338206],[-97.0970051,27.8341879],[-97.0898367,27.834901],[-97.0875151,27.8343626],[-97.0852655,27.8363473],[-97.0826102,27.8363868],[-97.0799187,27.8372873],[-97.0743767,27.8389235],[-97.0707421,27.8392029],[-97.0690366,27.8390854],[-97.0690348,27.8390853],[-97.0690331,27.8390852],[-97.0682694,27.8390325],[-97.0660064,27.8409602],[-97.0633613,27.8406486],[-97.0656437,27.8384451],[-97.0615297,27.8386176],[-97.0598785,27.8400165],[-97.0578048,27.8412879],[-97.0541754,27.8389886],[-97.0507937,27.8376133],[-97.0480357,27.8360993],[-97.0460011,27.8346458],[-97.0477109,27.8325833],[-97.0500214,27.8306833],[-97.0525851,27.828467],[-97.0544892,27.8266448],[-97.0571065,27.8239997],[-97.0592072,27.8217133],[-97.0613657,27.8196683],[-97.0628264,27.8179719],[-97.0650004,27.8155003],[-97.0680937,27.8125929],[-97.0709547,27.8092926],[-97.0730531,27.8066361],[-97.0750624,27.8045413],[-97.0766427,27.8025733],[-97.0787954,27.7998779],[-97.0809297,27.7973893],[-97.0826302,27.7959108],[-97.0850695,27.7935601],[-97.0874827,27.7905473],[-97.0893577,27.7882543],[-97.0915497,27.7854863],[-97.0936117,27.7828823],[-97.0967622,27.7788333],[-97.0986037,27.7763233],[-97.1000977,27.7747983],[-97.1024802,27.7713478],[-97.1050323,27.7677811],[-97.1081202,27.7637948],[-97.1095492,27.7617658],[-97.1122532,27.7580863],[-97.1138622,27.7557133],[-97.1159222,27.7531678],[-97.1184967,27.7495826],[-97.1197407,27.7474033],[-97.1216202,27.7446418],[-97.1238597,27.7416493],[-97.1249582,27.7397843],[-97.1294801,27.7331416],[-97.1328347,27.7278523],[-97.1391713,27.7186917],[-97.1412187,27.7157453],[-97.1426075,27.7133805],[-97.1442517,27.7112203],[-97.1535707,27.6972503],[-97.1593627,27.6878583],[-97.1605574,27.685597],[-97.1619483,27.6834359],[-97.1665391,27.676744],[-97.1762107,27.6592033],[-97.1826206,27.6455563],[-97.1848047,27.6436382],[-97.1869947,27.6415883],[-97.1925577,27.6318583],[-97.1939227,27.6296203],[-97.1974207,27.6232663],[-97.1989147,27.6204543],[-97.201731,27.6150962],[-97.2043059,27.6163371],[-97.207519,27.617188],[-97.2090589,27.6190021],[-97.2107494,27.6173786],[-97.2124118,27.6196419],[-97.2123606,27.6197503],[-97.2123587,27.6197544],[-97.2123568,27.6197585],[-97.2109176,27.6228074],[-97.2076739,27.6249739],[-97.2069029,27.628222],[-97.2092473,27.6305673],[-97.209178,27.6332584],[-97.2058571,27.6316428],[-97.2034956,27.6324609],[-97.2009273,27.6361158],[-97.2011252,27.6389692],[-97.2016422,27.6418528],[-97.1992467,27.6441263],[-97.1983507,27.6461003],[-97.197544,27.6484026],[-97.2008021,27.6505716],[-97.2021094,27.652607],[-97.2028795,27.6552097],[-97.2003387,27.6553046],[-97.1987376,27.6525285],[-97.1965456,27.6565795],[-97.1965954,27.6609172],[-97.1960556,27.6641156],[-97.1965117,27.6687633],[-97.1965907,27.6716753],[-97.1964484,27.6739301],[-97.196904,27.6770746],[-97.1961347,27.6790463],[-97.1968288,27.6822221],[-97.1887396,27.6919708],[-97.1850728,27.6943986],[-97.1840719,27.6967773],[-97.1839248,27.6971269],[-97.1781303,27.7081445],[-97.1759677,27.711454],[-97.1748827,27.7130413],[-97.1740171,27.7145965],[-97.1719832,27.7177002],[-97.1707174,27.716396],[-97.1687974,27.7171675],[-97.1688929,27.7203295],[-97.1679012,27.7242447]]],[[[-81.6127837,25.927069],[-81.611534,25.9257982],[-81.6118889,25.9247193],[-81.6120635,25.9241885],[-81.6120161,25.9237379],[-81.6118941,25.9225788],[-81.6111316,25.921901],[-81.6100725,25.9223246],[-81.6087594,25.9239343],[-81.6083738,25.9237216],[-81.6075309,25.9232565],[-81.6067684,25.9223669],[-81.6052434,25.922494],[-81.6040996,25.9232142],[-81.6030406,25.9222822],[-81.6030188,25.9222473],[-81.6024052,25.9212656],[-81.6024564,25.9201444],[-81.6019788,25.9198714],[-81.6012441,25.9194516],[-81.599772,25.9184702],[-81.5989638,25.91746],[-81.6001729,25.9174375],[-81.601159,25.9183514],[-81.6018322,25.9189754],[-81.6028605,25.9181527],[-81.6039863,25.9188743],[-81.6049677,25.9194516],[-81.6063243,25.9191052],[-81.6073346,25.9184125],[-81.6072667,25.9177847],[-81.6072192,25.9173445],[-81.6077634,25.9177386],[-81.6080562,25.9179506],[-81.6083196,25.9172922],[-81.6084603,25.9169404],[-81.6109437,25.9170273],[-81.6103756,25.9187657],[-81.6100254,25.9198373],[-81.613018,25.918942],[-81.6143527,25.917149],[-81.615501,25.9146944],[-81.616919,25.9123111],[-81.6194247,25.9134233],[-81.6192038,25.913858],[-81.6188837,25.9144878],[-81.6177399,25.9163516],[-81.6171045,25.9177072],[-81.6180863,25.9185838],[-81.6182906,25.9187662],[-81.6170198,25.9197829],[-81.6166385,25.9207572],[-81.6165538,25.9219857],[-81.6167656,25.9241461],[-81.6160031,25.9250357],[-81.6140969,25.9270267],[-81.6138819,25.9264893],[-81.6136733,25.9259676],[-81.6127837,25.927069]]],[[[-81.7191924,25.9756753],[-81.7182985,25.9750311],[-81.7179001,25.974744],[-81.7171913,25.9756821],[-81.7161907,25.9759114],[-81.7144813,25.9763909],[-81.7151067,25.977329],[-81.7140644,25.9777042],[-81.7127928,25.9768078],[-81.7136942,25.9748188],[-81.7143346,25.9730479],[-81.7154675,25.9725316],[-81.7166835,25.9731394],[-81.7171065,25.9733508],[-81.7190988,25.9748174],[-81.7198135,25.9753435],[-81.7236785,25.9753103],[-81.7258123,25.9765994],[-81.7267501,25.9779775],[-81.7248055,25.978309],[-81.7240764,25.9784386],[-81.7228167,25.9786626],[-81.7224148,25.9782825],[-81.721999,25.9778892],[-81.7202312,25.9778671],[-81.7208057,25.9764749],[-81.7205583,25.9763523],[-81.7191924,25.9756753]]],[[[-81.7257008,25.9619128],[-81.7235431,25.9618536],[-81.7217081,25.9642575],[-81.7205261,25.9662043],[-81.7135037,25.9633536],[-81.7119511,25.9615656],[-81.7107928,25.9616227],[-81.710791,25.9616228],[-81.7107892,25.9616229],[-81.7108403,25.9611923],[-81.710841,25.9611858],[-81.7108418,25.9611794],[-81.7111556,25.9585345],[-81.7111557,25.9585339],[-81.7111557,25.9585333],[-81.7076633,25.954732],[-81.7041869,25.9521595],[-81.7011971,25.9515337],[-81.698416,25.9500736],[-81.6950091,25.9470144],[-81.6927842,25.9471534],[-81.6911155,25.9452066],[-81.6890329,25.9424299],[-81.6890312,25.9424277],[-81.6890296,25.9424255],[-81.6904202,25.9411739],[-81.6898095,25.9391972],[-81.6898084,25.9391938],[-81.6898074,25.9391904],[-81.6889936,25.9411553],[-81.68866,25.9411902],[-81.6869563,25.9413686],[-81.685516,25.9415193],[-81.6855179,25.9415216],[-81.6855199,25.9415239],[-81.6865751,25.9427661],[-81.6872268,25.9435334],[-81.6881891,25.9438241],[-81.6881896,25.9438261],[-81.6881901,25.9438281],[-81.6884147,25.9447645],[-81.6884273,25.9448172],[-81.6876958,25.9453321],[-81.6874007,25.9455398],[-81.6872671,25.9456339],[-81.6870081,25.9458411],[-81.6864134,25.9463168],[-81.6862849,25.9447744],[-81.6862427,25.944268],[-81.6837159,25.9453265],[-81.6847779,25.9457191],[-81.6852866,25.945907],[-81.686072,25.947068],[-81.688333,25.9459377],[-81.6890384,25.9470753],[-81.6895208,25.9478534],[-81.6906477,25.9495266],[-81.6908792,25.9506072],[-81.690955,25.9509608],[-81.690955,25.9524633],[-81.6898281,25.9531463],[-81.6874378,25.9515413],[-81.6887695,25.950517],[-81.6878025,25.9497831],[-81.6875282,25.9495749],[-81.6874678,25.9489721],[-81.6874037,25.9483315],[-81.6858671,25.9487413],[-81.6855939,25.9499706],[-81.6834085,25.9503462],[-81.6826231,25.9496632],[-81.6825883,25.9495963],[-81.681227,25.9469769],[-81.6800453,25.9462988],[-81.679184,25.9458047],[-81.6785931,25.9453813],[-81.6769473,25.9442023],[-81.6768806,25.9421659],[-81.6759458,25.9416651],[-81.6752782,25.9425998],[-81.674894,25.9425067],[-81.6741765,25.9423328],[-81.6729747,25.9407638],[-81.671873,25.9399626],[-81.6701037,25.9402964],[-81.670281,25.9405244],[-81.6712721,25.9417986],[-81.6715367,25.9423101],[-81.6717729,25.9427668],[-81.6722453,25.9435127],[-81.6724072,25.9437683],[-81.6731416,25.9448365],[-81.6742767,25.9459382],[-81.6742433,25.9480414],[-81.6742099,25.9490763],[-81.6752448,25.9489427],[-81.6753783,25.9478745],[-81.6752782,25.9465391],[-81.6753783,25.9454708],[-81.6764132,25.9457379],[-81.6781491,25.9462053],[-81.6790171,25.946873],[-81.6787502,25.9477692],[-81.6785498,25.948442],[-81.6803818,25.9495299],[-81.6807913,25.9505277],[-81.6808532,25.9506787],[-81.6790255,25.9506035],[-81.6776284,25.9509256],[-81.6769331,25.951342],[-81.67648,25.9516134],[-81.6750778,25.9514131],[-81.6732418,25.951313],[-81.6736462,25.9508636],[-81.6741431,25.9503115],[-81.6716158,25.9503573],[-81.6692018,25.9505862],[-81.6682811,25.9498373],[-81.6656586,25.9477044],[-81.6624461,25.9443502],[-81.6599896,25.9434526],[-81.6561629,25.9434526],[-81.6546984,25.9417046],[-81.6546237,25.9388907],[-81.6545567,25.9363662],[-81.6555061,25.9328611],[-81.6552095,25.932362],[-81.6552081,25.9323596],[-81.6552067,25.9323573],[-81.6529634,25.9285832],[-81.6527108,25.9282035],[-81.6514064,25.9262425],[-81.6513538,25.9261635],[-81.6473107,25.927146],[-81.6448074,25.9269947],[-81.6428187,25.924614],[-81.6443792,25.9217232],[-81.6463408,25.9205973],[-81.6487304,25.9210535],[-81.6508467,25.9196988],[-81.6532795,25.919652],[-81.653507,25.9196477],[-81.655981,25.9188087],[-81.6582273,25.9172595],[-81.659854,25.9141611],[-81.6611709,25.9126893],[-81.6631848,25.9125344],[-81.6637371,25.9131328],[-81.6641143,25.9135414],[-81.66272,25.9150906],[-81.6610159,25.9165623],[-81.661016,25.9184988],[-81.66272,25.9198931],[-81.6640969,25.9198487],[-81.6651213,25.9198156],[-81.6651213,25.9211325],[-81.6648943,25.9223807],[-81.6648115,25.9228366],[-81.6636496,25.9245407],[-81.6626427,25.9257026],[-81.6652762,25.9253928],[-81.6662057,25.926942],[-81.6681422,25.923921],[-81.6682972,25.9228366],[-81.6684548,25.9224196],[-81.6690536,25.9208356],[-81.6691638,25.9192078],[-81.6693902,25.9190031],[-81.6700465,25.9184099],[-81.671116,25.9185967],[-81.6717418,25.9193307],[-81.672491,25.9202094],[-81.6724678,25.9206722],[-81.67244,25.9212279],[-81.6713706,25.9227048],[-81.6724401,25.9237912],[-81.6728473,25.924436],[-81.6732549,25.9250813],[-81.6739169,25.9243174],[-81.6735524,25.9234003],[-81.6733907,25.9229934],[-81.6734416,25.9193267],[-81.6722363,25.9181044],[-81.6716422,25.917018],[-81.6715038,25.9161453],[-81.6713513,25.9151846],[-81.6707989,25.9133202],[-81.6719498,25.9140107],[-81.6721261,25.9138605],[-81.6731927,25.9129519],[-81.6732221,25.9123454],[-81.6733078,25.9105812],[-81.6729855,25.9096145],[-81.6716045,25.908855],[-81.670968,25.9088903],[-81.669533,25.9089701],[-81.6669552,25.9106733],[-81.6647409,25.9104654],[-81.6645016,25.910443],[-81.6630538,25.9096157],[-81.6623327,25.9092036],[-81.6602414,25.9095909],[-81.6583048,25.9112951],[-81.6582274,25.9124569],[-81.6582274,25.914316],[-81.6569106,25.9163299],[-81.6566979,25.9164474],[-81.6559123,25.9168816],[-81.6534165,25.9166153],[-81.6532319,25.9158143],[-81.6530764,25.9151398],[-81.6536702,25.9138983],[-81.6537398,25.9128546],[-81.6530234,25.9127288],[-81.6524996,25.9126369],[-81.6519654,25.9117064],[-81.6530787,25.9114977],[-81.6516523,25.9106279],[-81.6507153,25.9104625],[-81.6504694,25.9104192],[-81.6492517,25.9104539],[-81.6489385,25.9087492],[-81.6502954,25.9081925],[-81.6486254,25.9079837],[-81.6475121,25.9069052],[-81.6469902,25.9084012],[-81.6471566,25.9086815],[-81.6476512,25.9095146],[-81.6469554,25.9103844],[-81.6474425,25.9118108],[-81.6493133,25.9121394],[-81.648283,25.9127619],[-81.6476523,25.913143],[-81.646364,25.9134113],[-81.6464335,25.9147333],[-81.6474296,25.9145618],[-81.647825,25.9161378],[-81.6468144,25.9171416],[-81.6458978,25.918052],[-81.6445426,25.917981],[-81.643252,25.9179133],[-81.6427223,25.9172452],[-81.6413383,25.9154996],[-81.6436502,25.9150116],[-81.6447287,25.9147333],[-81.6449027,25.9132721],[-81.6447662,25.9127088],[-81.6446244,25.9121239],[-81.6427456,25.911115],[-81.6414542,25.9106601],[-81.640238,25.9084978],[-81.6398316,25.9073508],[-81.639541,25.9065308],[-81.6423915,25.9053486],[-81.6429971,25.9074317],[-81.6444177,25.9094032],[-81.6454905,25.9100411],[-81.6458384,25.9090553],[-81.6449976,25.9074027],[-81.6446119,25.9066935],[-81.6440988,25.9057501],[-81.6467853,25.9049295],[-81.6480243,25.9051133],[-81.6491542,25.9066819],[-81.6496299,25.9054127],[-81.6500357,25.9043296],[-81.6520329,25.9050426],[-81.652362,25.906297],[-81.6534719,25.9064383],[-81.6537609,25.9067333],[-81.6544405,25.9074271],[-81.6556109,25.9075683],[-81.6575077,25.9081333],[-81.6585979,25.9080141],[-81.6587992,25.9079921],[-81.6586718,25.9071007],[-81.6585167,25.9060145],[-81.6566804,25.9056311],[-81.6560705,25.9058707],[-81.6555503,25.9060751],[-81.6540167,25.9058935],[-81.6530916,25.9053271],[-81.6532095,25.9039765],[-81.6568418,25.9044002],[-81.6589065,25.9055203],[-81.6626359,25.9052194],[-81.6655225,25.9032058],[-81.6671945,25.9025709],[-81.6678175,25.9023343],[-81.6688347,25.9019521],[-81.6702948,25.9014035],[-81.6718017,25.9025481],[-81.671989,25.9026903],[-81.674106,25.9015992],[-81.6749473,25.9011657],[-81.6753305,25.9011086],[-81.677415,25.9007983],[-81.678542,25.9012625],[-81.6797792,25.9011864],[-81.6836091,25.9013348],[-81.6849282,25.9013486],[-81.6864592,25.9013645],[-81.687669,25.9019992],[-81.690196,25.9019683],[-81.6917682,25.9031728],[-81.690767,25.9051853],[-81.6881463,25.9038954],[-81.685632,25.9043313],[-81.6812273,25.904981],[-81.679862,25.9069113],[-81.677554,25.9081033],[-81.6757073,25.9107527],[-81.6753853,25.9135967],[-81.6753891,25.9136034],[-81.6753928,25.9136101],[-81.6767717,25.9160737],[-81.6780654,25.9169816],[-81.6792782,25.9178327],[-81.6795239,25.9192614],[-81.679541,25.9193608],[-81.6800457,25.9203109],[-81.6808015,25.9204041],[-81.6813334,25.9204698],[-81.6817067,25.9212286],[-81.6818337,25.9214868],[-81.6815742,25.9230184],[-81.6805264,25.9234348],[-81.680451,25.9234648],[-81.679813,25.9240481],[-81.6781044,25.9256106],[-81.6760837,25.9269577],[-81.676134,25.9272096],[-81.6762878,25.9279783],[-81.6778186,25.9287947],[-81.6804692,25.9292041],[-81.681763,25.9315088],[-81.6838459,25.9337825],[-81.685618,25.9361078],[-81.6877087,25.9362488],[-81.69045,25.9357523],[-81.6920235,25.9350753],[-81.6934597,25.9331901],[-81.693634,25.9304481],[-81.6960685,25.9296393],[-81.6979642,25.9273631],[-81.6976776,25.9238801],[-81.69674,25.9215553],[-81.696537,25.9194223],[-81.6965283,25.9174901],[-81.6965283,25.9174892],[-81.6965283,25.9174883],[-81.6944472,25.9154915],[-81.6926005,25.9129518],[-81.6925989,25.9129496],[-81.6925973,25.9129473],[-81.6949134,25.910464],[-81.6998583,25.9092083],[-81.7014642,25.9112477],[-81.7024068,25.9089242],[-81.7024081,25.908927],[-81.7024094,25.9089298],[-81.703252,25.9107628],[-81.7032523,25.9107625],[-81.7032526,25.9107622],[-81.705565,25.9084776],[-81.7055655,25.9084808],[-81.7055661,25.9084841],[-81.7059249,25.9106516],[-81.7059261,25.9106521],[-81.7059273,25.9106526],[-81.7073857,25.911249],[-81.7073866,25.9112511],[-81.7073874,25.9112531],[-81.7079061,25.912498],[-81.707907,25.9124989],[-81.7079079,25.9124998],[-81.7096212,25.9141642],[-81.7096211,25.914165],[-81.709621,25.9141657],[-81.7093762,25.9158794],[-81.7080531,25.9177416],[-81.7067789,25.9175456],[-81.7056518,25.9165655],[-81.7034466,25.9166635],[-81.7015354,25.9172026],[-81.7009963,25.9181336],[-81.7014864,25.9196528],[-81.7001142,25.92127],[-81.6996242,25.9224951],[-81.6996261,25.9224965],[-81.6996279,25.9224979],[-81.7024665,25.9246023],[-81.7049657,25.9246023],[-81.7050638,25.9233282],[-81.707514,25.9220541],[-81.7084451,25.921417],[-81.7098173,25.9192608],[-81.7101603,25.9181827],[-81.7101603,25.9163205],[-81.7109444,25.9152913],[-81.7121205,25.9152913],[-81.7124632,25.9132844],[-81.7124634,25.9132833],[-81.7124636,25.9132821],[-81.7114835,25.9125961],[-81.7104053,25.912155],[-81.7085217,25.912155],[-81.7084941,25.912155],[-81.7110597,25.9116675],[-81.7138039,25.9119028],[-81.7163618,25.9146236],[-81.7173755,25.9121623],[-81.7178125,25.9104858],[-81.7175554,25.9087142],[-81.719917,25.9088688],[-81.7280531,25.9085516],[-81.7280537,25.908554],[-81.7280543,25.9085564],[-81.729061,25.9125628],[-81.728872,25.9161593],[-81.728899,25.9195543],[-81.7292925,25.9220136],[-81.729915,25.9245423],[-81.73055,25.9272373],[-81.7310326,25.928873],[-81.731947,25.9315013],[-81.734257,25.9363863],[-81.7342576,25.9363869],[-81.7342583,25.9363874],[-81.7358719,25.9377046],[-81.7386138,25.9402408],[-81.7471822,25.9457931],[-81.750404,25.9490149],[-81.7504024,25.9490141],[-81.7504009,25.9490134],[-81.7477992,25.947781],[-81.7405332,25.9430513],[-81.738942,25.9429899],[-81.7389439,25.9429923],[-81.7389459,25.9429946],[-81.7418116,25.9464523],[-81.7447765,25.9491113],[-81.7480796,25.9512687],[-81.7504937,25.9525916],[-81.7504937,25.952593],[-81.7504936,25.9525945],[-81.750383,25.9556478],[-81.751244,25.9578493],[-81.7506458,25.959724],[-81.7477522,25.9615616],[-81.746521,25.9627563],[-81.74429,25.9643617],[-81.7416086,25.9665558],[-81.7405859,25.9681134],[-81.740088,25.9701673],[-81.737442,25.9724503],[-81.7343473,25.9735023],[-81.7325335,25.9735547],[-81.732532,25.9735547],[-81.7325305,25.9735547],[-81.732484,25.9699259],[-81.7396431,25.9677471],[-81.7413239,25.965506],[-81.7411995,25.9627707],[-81.7411995,25.9627688],[-81.7411994,25.9627668],[-81.739833,25.9623942],[-81.7398314,25.9623938],[-81.7398298,25.9623933],[-81.7400165,25.9571043],[-81.7400165,25.9571031],[-81.7400166,25.9571019],[-81.739145,25.9564793],[-81.7352231,25.9599032],[-81.7347251,25.9617708],[-81.7347274,25.96177],[-81.7347298,25.9617693],[-81.7370284,25.9610238],[-81.7370271,25.961027],[-81.7370258,25.9610303],[-81.7366549,25.9619576],[-81.7346006,25.9637629],[-81.7308032,25.966253],[-81.7314257,25.9709219],[-81.7316693,25.9736018],[-81.729114,25.9738383],[-81.727064,25.9721338],[-81.7270629,25.9721329],[-81.7270618,25.9721319],[-81.7262603,25.969193],[-81.7268069,25.9650808],[-81.7257025,25.9619174],[-81.7257016,25.9619151],[-81.7257008,25.9619128]]],[[[-97.2185414,25.9981641],[-97.2198622,25.9968814],[-97.2225318,25.9971654],[-97.2253394,25.997687],[-97.2269887,25.9964932],[-97.2269887,25.9984426],[-97.224983,25.9996993],[-97.2220689,26.0002992],[-97.221299,26.0012056],[-97.2203051,26.002527],[-97.2182629,26.0013203],[-97.2185414,25.9981641]]],[[[-97.2141914,26.0114533],[-97.2160636,26.0075668],[-97.2212017,26.0089945],[-97.2198282,26.0126119],[-97.2158327,26.0138681],[-97.2141914,26.0114533]]],[[[-97.225782,26.0147803],[-97.2259676,26.0109744],[-97.2313982,26.0110058],[-97.2322997,26.0131306],[-97.2316056,26.0159208],[-97.225782,26.0147803]]],[[[-81.7597237,26.0329058],[-81.7582224,26.0316115],[-81.7577326,26.0318411],[-81.7565658,26.0323881],[-81.7570015,26.030764],[-81.7571352,26.0302655],[-81.7564622,26.0292818],[-81.7552197,26.0300584],[-81.7548492,26.0297619],[-81.7541843,26.0292301],[-81.7532969,26.0289477],[-81.7530453,26.0288677],[-81.7526593,26.0285725],[-81.7521652,26.0281946],[-81.7519383,26.0274381],[-81.7518546,26.0271593],[-81.7511298,26.0264344],[-81.7500244,26.0251046],[-81.7494657,26.0237018],[-81.7474527,26.0248233],[-81.7483802,26.0253228],[-81.748948,26.0256286],[-81.7477977,26.0260312],[-81.74705,26.0251684],[-81.7454396,26.0249959],[-81.7465324,26.0246508],[-81.746594,26.0244703],[-81.746935,26.0234717],[-81.7471903,26.023104],[-81.7476539,26.0224364],[-81.7465611,26.0222351],[-81.745382,26.0214299],[-81.7449861,26.019728],[-81.7447343,26.0200401],[-81.7440304,26.0209122],[-81.7439033,26.0214629],[-81.7437715,26.0220338],[-81.742118,26.0231122],[-81.742504,26.0224479],[-81.7429951,26.0216024],[-81.7433092,26.0211567],[-81.7438866,26.0203371],[-81.7443409,26.0198525],[-81.74491,26.0192455],[-81.744433,26.0180364],[-81.7447781,26.0165698],[-81.7435703,26.016541],[-81.7434048,26.0157289],[-81.7432539,26.0149881],[-81.7443813,26.0149881],[-81.7454826,26.0160807],[-81.7466186,26.016656],[-81.7472505,26.0156231],[-81.7498906,26.0140823],[-81.7544418,26.0150423],[-81.7582784,26.0154867],[-81.7589012,26.0155588],[-81.758085,26.0132333],[-81.759135,26.010467],[-81.7580971,26.0096956],[-81.7553603,26.0067201],[-81.753336,26.00325],[-81.7526131,26.0018041],[-81.7527495,25.9991757],[-81.7560109,26.0027439],[-81.7596257,26.0075877],[-81.7599871,26.0114916],[-81.7612884,26.0143111],[-81.7625897,26.0178535],[-81.760927,26.0179981],[-81.7609316,26.0180307],[-81.7609317,26.018031],[-81.7609317,26.0180313],[-81.7610715,26.0190102],[-81.7622949,26.0202799],[-81.7625979,26.0205943],[-81.7629512,26.0217574],[-81.7628403,26.0223486],[-81.7627343,26.0229141],[-81.7650477,26.0256613],[-81.7657871,26.0286859],[-81.7649064,26.0294563],[-81.7631525,26.0300827],[-81.762025,26.0299261],[-81.7614299,26.028548],[-81.7613211,26.0283712],[-81.7606782,26.0273265],[-81.759582,26.0269193],[-81.7584544,26.0262616],[-81.7570764,26.0264495],[-81.7582944,26.0277477],[-81.7594567,26.0289865],[-81.7601782,26.0291282],[-81.7612106,26.029331],[-81.7612106,26.0303332],[-81.7615729,26.0309521],[-81.7619623,26.0316174],[-81.7621776,26.0316592],[-81.7630899,26.0318366],[-81.7643113,26.032557],[-81.7643113,26.0308657],[-81.7656894,26.030991],[-81.7655642,26.0295816],[-81.76595,26.0298205],[-81.7672889,26.0306496],[-81.7672889,26.0316618],[-81.7693854,26.0336137],[-81.7696049,26.0358084],[-81.7696746,26.0365055],[-81.7730001,26.0394696],[-81.7742291,26.0409878],[-81.7736819,26.0418086],[-81.7735062,26.0420722],[-81.7728077,26.0419468],[-81.7706867,26.0415661],[-81.7688354,26.0413962],[-81.7684913,26.0413432],[-81.7668163,26.0410855],[-81.7656256,26.0397913],[-81.7656256,26.0387559],[-81.7630888,26.0361156],[-81.7613804,26.0340965],[-81.7613277,26.0340586],[-81.7597237,26.0329058]]],[[[-97.3002512,26.2532596],[-97.3047851,26.2508449],[-97.3086913,26.2498819],[-97.3117621,26.250117],[-97.3138117,26.2471766],[-97.3155837,26.2464393],[-97.3186241,26.2476013],[-97.3160687,26.2483688],[-97.314322,26.2514323],[-97.3126291,26.2531566],[-97.3084764,26.2527903],[-97.3053183,26.2542244],[-97.3031497,26.2559991],[-97.3005937,26.2569046],[-97.2986867,26.2578326],[-97.2952258,26.2585158],[-97.2968887,26.2557286],[-97.3002512,26.2532596]]],[[[-97.3023957,26.2887626],[-97.3049184,26.2870816],[-97.3036981,26.2914363],[-97.3018107,26.2947803],[-97.3038336,26.298212],[-97.3003097,26.2966946],[-97.2992619,26.2952822],[-97.2997557,26.292862],[-97.3006157,26.2904711],[-97.3023957,26.2887626]]],[[[-97.1660885,26.0293553],[-97.1695049,26.0285656],[-97.1691418,26.0312706],[-97.1677455,26.0359701],[-97.1675985,26.0427221],[-97.1650509,26.0455914],[-97.165429,26.0473872],[-97.1624388,26.0488466],[-97.1610531,26.0473253],[-97.1605855,26.0445407],[-97.1598976,26.0419256],[-97.160644,26.0396863],[-97.161577,26.0376804],[-97.1633498,26.0352079],[-97.1647026,26.0323622],[-97.1660885,26.0293553]]],[[[-97.1751793,26.0475836],[-97.1770918,26.0456313],[-97.1791656,26.046232],[-97.1796843,26.0483751],[-97.1812448,26.0497966],[-97.1824981,26.052976],[-97.1808898,26.0544966],[-97.1792012,26.0556426],[-97.1762823,26.0573851],[-97.1741628,26.0584396],[-97.1718593,26.0589091],[-97.1728642,26.0548315],[-97.1691797,26.0534366],[-97.1704671,26.0508196],[-97.1733778,26.0487646],[-97.1751793,26.0475836]]],[[[-97.1586976,26.0603459],[-97.1558098,26.0622421],[-97.1520474,26.0640384],[-97.1520018,26.0621036],[-97.1524848,26.0601546],[-97.1528158,26.0572656],[-97.1529688,26.0547666],[-97.1537898,26.0519441],[-97.1580166,26.0520996],[-97.1598423,26.0541269],[-97.1588944,26.0564866],[-97.1608228,26.0584929],[-97.1586976,26.0603459]]],[[[-97.1586976,26.0603459],[-97.1622073,26.0608041],[-97.1654206,26.0583401],[-97.1690529,26.0596082],[-97.1653338,26.0633078],[-97.1612251,26.0637873],[-97.1586976,26.0603459]]],[[[-97.2091852,26.0634418],[-97.2059968,26.0659339],[-97.2025518,26.0683527],[-97.1992478,26.0712032],[-97.1981085,26.0698054],[-97.1955608,26.0701106],[-97.1911528,26.0708482],[-97.1960308,26.0678176],[-97.1982822,26.0661352],[-97.1980436,26.0614486],[-97.1979087,26.0545311],[-97.197672,26.05142],[-97.1978546,26.0494531],[-97.2000535,26.0482732],[-97.2043239,26.0482691],[-97.2068031,26.0508346],[-97.2090753,26.0562586],[-97.209191,26.0600774],[-97.2091852,26.0634418]]],[[[-97.1888761,26.2745218],[-97.1864217,26.2698726],[-97.1858368,26.2670986],[-97.1852778,26.2632016],[-97.1837395,26.2553441],[-97.1828997,26.2512611],[-97.1823402,26.2464392],[-97.1813088,26.2410056],[-97.1807498,26.2368326],[-97.1804958,26.2347466],[-97.1799118,26.2300466],[-97.1778288,26.2197976],[-97.1772958,26.2169546],[-97.1770584,26.2132716],[-97.1755683,26.2051596],[-97.1743748,26.1993016],[-97.1740448,26.1967796],[-97.1731943,26.1914496],[-97.1730548,26.1866916],[-97.1725988,26.1825656],[-97.1720398,26.1791266],[-97.1711518,26.1721566],[-97.1708478,26.1682816],[-97.1700228,26.1640066],[-97.1696048,26.1599826],[-97.1693633,26.1571741],[-97.1691478,26.1550996],[-97.1689958,26.1509496],[-97.1685004,26.1465849],[-97.1680243,26.1413411],[-97.1675885,26.1381209],[-97.1666628,26.1315306],[-97.1661048,26.1269676],[-97.1660518,26.1246671],[-97.1658988,26.1224256],[-97.1649608,26.1162596],[-97.1646313,26.1135766],[-97.1642768,26.1105956],[-97.1640228,26.1079366],[-97.1633893,26.1029266],[-97.1628648,26.0985451],[-97.1623568,26.095899],[-97.1618338,26.0918013],[-97.1614638,26.0887006],[-97.1607788,26.0858796],[-97.1597898,26.0829226],[-97.1594048,26.0805713],[-97.1581788,26.077217],[-97.1567845,26.0730696],[-97.1556308,26.0703126],[-97.1550759,26.0681073],[-97.1573058,26.0686846],[-97.1597238,26.0695684],[-97.1617328,26.0675638],[-97.1617354,26.0675669],[-97.1617381,26.06757],[-97.1635848,26.069743],[-97.1650728,26.0718736],[-97.1661416,26.0733804],[-97.1654153,26.0759115],[-97.165419,26.0759134],[-97.1654227,26.0759153],[-97.1678898,26.0771476],[-97.1678929,26.0771496],[-97.167896,26.0771515],[-97.1695648,26.0781884],[-97.1670284,26.080185],[-97.1657528,26.0816136],[-97.165538,26.0836863],[-97.165476,26.0862232],[-97.1657678,26.0879331],[-97.1657855,26.0922606],[-97.1672901,26.0953612],[-97.1691621,26.0978653],[-97.1691251,26.1000773],[-97.1694294,26.1024281],[-97.1707101,26.1051356],[-97.1718024,26.1080757],[-97.1725536,26.1113268],[-97.1733992,26.1142363],[-97.1727955,26.1167334],[-97.1719821,26.1188209],[-97.1721788,26.1207061],[-97.1727944,26.1231358],[-97.1746376,26.1256536],[-97.1733319,26.1290949],[-97.1764661,26.1318293],[-97.1768341,26.1348497],[-97.1769618,26.137458],[-97.1787564,26.1455217],[-97.1789103,26.1462131],[-97.1791728,26.1486706],[-97.1797292,26.1545041],[-97.179284,26.1623471],[-97.1772089,26.1638056],[-97.172772,26.1639345],[-97.1732508,26.1658706],[-97.1737748,26.1705366],[-97.1741938,26.1748506],[-97.174414,26.1779796],[-97.1764355,26.1790349],[-97.1762553,26.1812164],[-97.1754794,26.1852119],[-97.1782205,26.1846234],[-97.1797599,26.1868456],[-97.1788238,26.189208],[-97.1807904,26.1912642],[-97.1799415,26.194606],[-97.1804748,26.1978844],[-97.1815298,26.2028021],[-97.1825172,26.2053188],[-97.1815918,26.2081468],[-97.1815306,26.2116968],[-97.1822018,26.2136996],[-97.1834551,26.2146858],[-97.1859583,26.2171582],[-97.1837197,26.2204346],[-97.183005,26.2244933],[-97.1865806,26.2248004],[-97.187417,26.2276911],[-97.1852702,26.229084],[-97.1830349,26.228422],[-97.1835162,26.2307758],[-97.1827608,26.2325828],[-97.1847664,26.2336386],[-97.1871126,26.2331913],[-97.1885096,26.2364438],[-97.1894418,26.2404653],[-97.189497,26.242838],[-97.1901679,26.2457317],[-97.1921806,26.2435053],[-97.1933457,26.2450071],[-97.1920165,26.2477417],[-97.19036,26.2499009],[-97.1898371,26.2538252],[-97.1882715,26.2568463],[-97.1916213,26.2556337],[-97.1910237,26.2578376],[-97.1895747,26.2593688],[-97.1919141,26.2599609],[-97.1940751,26.2624909],[-97.1934613,26.2657462],[-97.1929312,26.2688526],[-97.192321,26.2711568],[-97.1888761,26.2745218]]],[[[-97.3295137,26.3253316],[-97.3335125,26.3235913],[-97.331625,26.3261266],[-97.3293097,26.3281976],[-97.3264169,26.3304756],[-97.3262657,26.3271436],[-97.3295137,26.3253316]]],[[[-97.4466006,26.4106202],[-97.444245,26.4112592],[-97.4416097,26.4110588],[-97.4387024,26.4114674],[-97.4389906,26.4097532],[-97.4366497,26.409219],[-97.4410117,26.4073002],[-97.4466006,26.4106202]]],[[[-81.9093537,26.4394638],[-81.9085823,26.4374253],[-81.9106462,26.4381479],[-81.9117545,26.438536],[-81.9153961,26.4399971],[-81.9154016,26.4399993],[-81.9154071,26.4400015],[-81.9155428,26.4435508],[-81.9130879,26.4418789],[-81.9102417,26.4418108],[-81.9093537,26.4394638]]],[[[-81.8657659,26.3939747],[-81.865443,26.3921444],[-81.8635575,26.3928776],[-81.8640152,26.390844],[-81.8630426,26.3871235],[-81.8633049,26.3842088],[-81.8611763,26.3830658],[-81.8613679,26.3807442],[-81.8614256,26.3788658],[-81.8615507,26.3788934],[-81.8615513,26.3788935],[-81.8615518,26.3788937],[-81.8651535,26.3796888],[-81.8685211,26.3786162],[-81.8708446,26.3822477],[-81.8735034,26.3838035],[-81.875509,26.3860831],[-81.8777093,26.3877574],[-81.8799153,26.3903733],[-81.8814477,26.3919483],[-81.8834113,26.3924876],[-81.8851516,26.3952434],[-81.8837136,26.3976868],[-81.8808725,26.3982724],[-81.8800743,26.3955898],[-81.8790777,26.3935976],[-81.8768944,26.3906412],[-81.8768923,26.3921389],[-81.87689,26.3938091],[-81.8768514,26.3950743],[-81.8767898,26.3970948],[-81.8771562,26.3995996],[-81.8777753,26.4016991],[-81.8781349,26.402919],[-81.8779805,26.4041893],[-81.8779802,26.404191],[-81.87798,26.4041928],[-81.8779249,26.4046463],[-81.8777793,26.4058433],[-81.8752475,26.4056445],[-81.8729899,26.4039592],[-81.8728673,26.4038946],[-81.8696177,26.4021808],[-81.8702859,26.4002955],[-81.8702966,26.4002652],[-81.8703842,26.4000179],[-81.8685233,26.3998635],[-81.8657659,26.3939747]]],[[[-97.2226468,26.4059267],[-97.2188767,26.3955556],[-97.2176075,26.3877472],[-97.2145967,26.3799896],[-97.2135507,26.3753446],[-97.2118167,26.3697386],[-97.2106967,26.3663111],[-97.2097037,26.3621046],[-97.2087617,26.3588026],[-97.2080911,26.355951],[-97.2055407,26.3455286],[-97.2041664,26.3404502],[-97.2026777,26.3347771],[-97.2019651,26.3326756],[-97.2008707,26.3287246],[-97.2004127,26.3265466],[-97.1993937,26.3232686],[-97.2000442,26.3210446],[-97.2027536,26.3207425],[-97.2018797,26.3250719],[-97.2031772,26.3281131],[-97.2046697,26.3243529],[-97.2071097,26.3236116],[-97.2089797,26.3256173],[-97.2096275,26.3277564],[-97.2081847,26.3294461],[-97.2064088,26.3320809],[-97.2093727,26.3313796],[-97.2113938,26.3346827],[-97.2081174,26.3384428],[-97.2071127,26.3408979],[-97.2067237,26.3429376],[-97.2081859,26.3458618],[-97.2083275,26.3488457],[-97.2104905,26.3498382],[-97.2119109,26.3529378],[-97.2146072,26.3530418],[-97.2129722,26.3554661],[-97.2101886,26.355962],[-97.2107884,26.3576639],[-97.2130919,26.3596201],[-97.2117849,26.3622552],[-97.213063,26.3645453],[-97.2148024,26.3651372],[-97.2157357,26.3666886],[-97.2171652,26.3684194],[-97.2146924,26.3688341],[-97.2172782,26.3706988],[-97.219344,26.3714856],[-97.218228,26.374124],[-97.2179125,26.3768933],[-97.2191404,26.3789609],[-97.220449,26.3834845],[-97.2223046,26.380642],[-97.225161,26.3835521],[-97.2258842,26.3870567],[-97.2283327,26.3891106],[-97.2274676,26.391429],[-97.2250475,26.3904366],[-97.2223308,26.394352],[-97.2223809,26.3972111],[-97.2249403,26.3971587],[-97.2269725,26.3946021],[-97.2280872,26.3970836],[-97.2304691,26.3961792],[-97.2307667,26.3984416],[-97.2292567,26.4010138],[-97.2279427,26.4026376],[-97.2251319,26.404147],[-97.2226468,26.4059267]]],[[[-81.8697267,26.4149341],[-81.8683396,26.4108306],[-81.8712359,26.4097962],[-81.8750589,26.4109604],[-81.8741993,26.4127377],[-81.8737646,26.4136367],[-81.8758511,26.4136108],[-81.8759059,26.4143118],[-81.876006,26.4155916],[-81.875419,26.4174753],[-81.8724896,26.4158989],[-81.8697267,26.4149341]]],[[[-81.8809028,26.4150964],[-81.8825053,26.4121647],[-81.8866223,26.4126377],[-81.8866259,26.4126381],[-81.8866294,26.4126385],[-81.8894455,26.4146291],[-81.887238,26.4157385],[-81.8833677,26.4166996],[-81.880903,26.4150966],[-81.8809029,26.4150965],[-81.8809028,26.4150964]]],[[[-81.8602945,26.4209298],[-81.864134,26.4185484],[-81.8663072,26.420969],[-81.8662157,26.4227782],[-81.8661318,26.4244373],[-81.8607996,26.4265059],[-81.8605402,26.42515],[-81.8602396,26.4235785],[-81.8602945,26.4209298]]],[[[-81.8824149,26.4044822],[-81.8853154,26.4033552],[-81.8949174,26.4043347],[-81.9009069,26.4100042],[-81.9009073,26.4100055],[-81.9009077,26.4100068],[-81.9026429,26.4157287],[-81.9026443,26.4157307],[-81.9026458,26.4157327],[-81.9086149,26.4241259],[-81.9110514,26.4264475],[-81.9236079,26.4366532],[-81.9266294,26.4383995],[-81.9384079,26.4450532],[-81.9413079,26.4462532],[-81.9442699,26.4474107],[-81.9476756,26.4487829],[-81.9511446,26.4501975],[-81.9566079,26.4523532],[-81.9611089,26.4551532],[-81.9639462,26.4577212],[-81.9658654,26.4597747],[-81.9658655,26.4597756],[-81.9658656,26.4597764],[-81.9662589,26.4628022],[-81.9621089,26.4596522],[-81.9563136,26.4573862],[-81.9544686,26.4567858],[-81.9544665,26.4567851],[-81.9544644,26.4567844],[-81.9533176,26.4564112],[-81.9484106,26.4545532],[-81.9465079,26.4541275],[-81.9444833,26.4540841],[-81.9410079,26.4527835],[-81.9374079,26.4515032],[-81.9334579,26.4492532],[-81.9281846,26.4474132],[-81.9257322,26.4440982],[-81.9224973,26.441199],[-81.9190759,26.4384277],[-81.9157226,26.4375289],[-81.9118569,26.4354532],[-81.9082249,26.4329527],[-81.9042756,26.4315799],[-81.902785,26.4294576],[-81.9027834,26.4294554],[-81.9027819,26.4294532],[-81.9025301,26.4267426],[-81.90253,26.4267415],[-81.9025299,26.4267404],[-81.9002327,26.4246457],[-81.8979949,26.4238625],[-81.8939798,26.4196308],[-81.8939784,26.4196293],[-81.893977,26.4196279],[-81.8935256,26.4172544],[-81.8926712,26.4144379],[-81.8912093,26.4118584],[-81.8912081,26.4118563],[-81.8912069,26.4118542],[-81.8891069,26.4100542],[-81.884252,26.4093074],[-81.8842513,26.4093073],[-81.8842506,26.4093072],[-81.8833769,26.4068822],[-81.8830419,26.4060465],[-81.8830411,26.4060443],[-81.8830402,26.4060422],[-81.8824149,26.4044822]]],[[[-97.1888761,26.2745218],[-97.1905156,26.2776529],[-97.1930164,26.2770186],[-97.1953218,26.2774161],[-97.1972195,26.2804765],[-97.1980663,26.2840646],[-97.1996353,26.2872054],[-97.1988067,26.2893721],[-97.199398,26.2913953],[-97.1986401,26.294413],[-97.2001568,26.2976769],[-97.19622,26.2996058],[-97.1956368,26.3017249],[-97.196385,26.3046003],[-97.1972817,26.3068526],[-97.1967475,26.3092657],[-97.1943567,26.3053281],[-97.1925247,26.2965021],[-97.1913807,26.2910973],[-97.1901851,26.2855016],[-97.1895747,26.2831706],[-97.1887524,26.2787533],[-97.1888761,26.2745218]]],[[[-97.1967475,26.3092657],[-97.1992367,26.3110023],[-97.2011234,26.3125232],[-97.2035203,26.3147438],[-97.201633,26.3162868],[-97.1995164,26.3187441],[-97.1977652,26.3173531],[-97.1963918,26.3123781],[-97.1967475,26.3092657]]],[[[-97.2259185,25.9743378],[-97.2309087,25.9736656],[-97.2350841,25.9738036],[-97.2347863,25.9747715],[-97.231723,25.9767209],[-97.2285021,25.9785102],[-97.2258748,25.9784846],[-97.2235541,25.9758854],[-97.2259185,25.9743378]]],[[[-97.2221617,25.9827547],[-97.2236469,25.9822905],[-97.2247609,25.983683],[-97.2238812,25.9855316],[-97.221972,25.990518],[-97.2200267,25.9918518],[-97.2184486,25.9907379],[-97.2179443,25.9881232],[-97.2214885,25.9836116],[-97.2221617,25.9827547]]],[[[-81.7350873,25.9839673],[-81.7366155,25.9819911],[-81.7374837,25.9829396],[-81.7381576,25.983676],[-81.7394022,25.9868463],[-81.739835,25.9897763],[-81.7398847,25.9910832],[-81.74072,25.9928161],[-81.7413472,25.9952109],[-81.7419744,25.9971781],[-81.7402639,25.9974062],[-81.739932,25.996556],[-81.7398077,25.9962373],[-81.7392945,25.993928],[-81.7389809,25.9927591],[-81.7387876,25.9922758],[-81.7384816,25.9915108],[-81.7376283,25.9908013],[-81.7328952,25.9905123],[-81.7305976,25.9873905],[-81.7330603,25.9862011],[-81.7343964,25.9847287],[-81.7350873,25.9839673]]],[[[-81.7500115,26.0051423],[-81.7481038,26.0039859],[-81.745551,26.005246],[-81.743127,26.0044903],[-81.7426216,26.0043845],[-81.7402406,26.0038862],[-81.7405613,26.0034329],[-81.741362,26.0023008],[-81.7442824,26.001975],[-81.7443033,26.0001283],[-81.744343,25.9966318],[-81.7434785,25.9937193],[-81.742272,25.990998],[-81.741795,25.9882041],[-81.7420731,25.9865182],[-81.7411673,25.9834116],[-81.7398753,25.9813535],[-81.739476,25.9807173],[-81.7396915,25.9785242],[-81.741603,25.97751],[-81.7426648,25.97784],[-81.7430716,25.9779664],[-81.7437485,25.9788363],[-81.7442947,25.9797336],[-81.7435145,25.9818791],[-81.7438266,25.9847268],[-81.7450359,25.9865213],[-81.7453397,25.98842],[-81.745504,25.989447],[-81.7467523,25.9910074],[-81.7477276,25.9901492],[-81.7477125,25.9898858],[-81.7476495,25.9887839],[-81.7463622,25.9879257],[-81.7469474,25.9865993],[-81.7443337,25.9821912],[-81.7449969,25.9799676],[-81.7451521,25.9787117],[-81.7462452,25.9799286],[-81.7469474,25.9833615],[-81.7483244,25.9860401],[-81.7491429,25.989514],[-81.749143,25.9922613],[-81.749649,25.9937071],[-81.750878,25.9961651],[-81.7511054,25.9980299],[-81.751601,26.0020933],[-81.7517263,26.0030018],[-81.7518901,26.0041898],[-81.7524948,26.0053527],[-81.7537698,26.0078046],[-81.7543377,26.0084145],[-81.7546814,26.0087836],[-81.754718,26.0118288],[-81.7533813,26.0116623],[-81.7517667,26.0114613],[-81.7489995,26.0107086],[-81.7512418,26.0085467],[-81.7505305,26.0065785],[-81.7500115,26.0051423]]],[[[-81.7883642,26.092121],[-81.788566,26.0906375],[-81.7887968,26.0902624],[-81.7891117,26.0897506],[-81.7886683,26.0883181],[-81.7878548,26.0876009],[-81.787594,26.087371],[-81.7880358,26.0872614],[-81.7893232,26.0869423],[-81.790338,26.0858309],[-81.7900722,26.0846953],[-81.7908696,26.0839221],[-81.791691,26.0832456],[-81.7916669,26.0821101],[-81.791287,26.0811244],[-81.7908315,26.0805288],[-81.7905071,26.0801046],[-81.789485,26.0791056],[-81.7896282,26.0778223],[-81.7892891,26.077955],[-81.7881643,26.0783954],[-81.7867917,26.0790604],[-81.7866805,26.0791142],[-81.7856024,26.0791623],[-81.7809634,26.0703193],[-81.7800936,26.069377],[-81.7796999,26.0684463],[-81.7795621,26.0681206],[-81.7793676,26.0678792],[-81.7788614,26.0672508],[-81.7787239,26.0660917],[-81.7786923,26.0658253],[-81.7798762,26.0639649],[-81.7804077,26.0629501],[-81.7802569,26.062347],[-81.7799728,26.0612105],[-81.7796587,26.0602199],[-81.779852,26.0585286],[-81.7792635,26.057671],[-81.7791761,26.0564081],[-81.779397,26.0540093],[-81.7797126,26.052368],[-81.7795966,26.0519702],[-81.7792707,26.050853],[-81.778387,26.0500954],[-81.7780398,26.0482017],[-81.7794917,26.0479492],[-81.7779135,26.0471285],[-81.7769667,26.0459923],[-81.774898,26.0423338],[-81.775675,26.0412769],[-81.7747352,26.0384574],[-81.7732893,26.0373007],[-81.7714097,26.0362163],[-81.7704698,26.0336137],[-81.7683733,26.0302882],[-81.7669274,26.0277579],[-81.7669274,26.0249384],[-81.7654815,26.021902],[-81.7643248,26.0204561],[-81.7643248,26.018215],[-81.763385,26.0143111],[-81.7620837,26.0120699],[-81.7611438,26.0094673],[-81.760927,26.0072985],[-81.7591919,26.0049851],[-81.7574308,26.0021615],[-81.7544204,25.9987677],[-81.7524685,25.9964543],[-81.7513841,25.9938517],[-81.750372,25.9915383],[-81.7509503,25.9905985],[-81.754059,25.9930565],[-81.756517,25.996382],[-81.7591919,25.9999245],[-81.7633127,26.0078769],[-81.7639562,26.0101626],[-81.7648096,26.0112379],[-81.7661216,26.014605],[-81.766772,26.0172808],[-81.767887,26.0223493],[-81.7678735,26.0248378],[-81.770512,26.0281303],[-81.7728455,26.0327178],[-81.778525,26.0424963],[-81.7800136,26.044874],[-81.7808262,26.0475102],[-81.787043,26.0583613],[-81.7888245,26.0619505],[-81.7891988,26.0635498],[-81.7912217,26.0682249],[-81.7926834,26.0721276],[-81.7934088,26.0749756],[-81.7961309,26.079796],[-81.7974689,26.0827956],[-81.7988608,26.0846128],[-81.8000019,26.0878414],[-81.8015681,26.0920389],[-81.800255,26.0924849],[-81.7986234,26.0923806],[-81.7979795,26.093712],[-81.7979795,26.0945121],[-81.7979795,26.0953708],[-81.7975211,26.096473],[-81.7967292,26.0965235],[-81.7964953,26.0965385],[-81.7961458,26.096291],[-81.7955969,26.0959024],[-81.7942381,26.0956626],[-81.7943446,26.0936377],[-81.7923198,26.0923322],[-81.7924529,26.0911332],[-81.7908277,26.0910799],[-81.7905613,26.0925986],[-81.7916536,26.0932913],[-81.792383,26.094819],[-81.7937052,26.0968082],[-81.7920533,26.0972079],[-81.7903771,26.0975002],[-81.789762,26.0976075],[-81.7895283,26.0980473],[-81.7890826,26.0988864],[-81.7884298,26.0980605],[-81.7886696,26.0970747],[-81.78858,26.0963734],[-81.7885097,26.0958224],[-81.7885617,26.0950357],[-81.7885823,26.0947241],[-81.7883642,26.092121]]],[[[-82.0283171,26.4979692],[-82.0304321,26.4962285],[-82.0332122,26.4963352],[-82.03336,26.4979648],[-82.0335078,26.499594],[-82.0300172,26.5002024],[-82.0297003,26.4997861],[-82.0283171,26.4979692]]],[[[-97.4025108,26.4662613],[-97.4026642,26.4646626],[-97.4061249,26.4654412],[-97.4056923,26.4664794],[-97.4047181,26.4685916],[-97.4031833,26.4708917],[-97.4016261,26.4705456],[-97.4022152,26.4682565],[-97.4025108,26.4662613]]],[[[-97.418064,26.4708917],[-97.4184101,26.4688153],[-97.4199665,26.4681874],[-97.4211917,26.4671565],[-97.4253179,26.4665654],[-97.4274193,26.4637704],[-97.4331647,26.4646243],[-97.4295254,26.46589],[-97.4318524,26.4677768],[-97.4299167,26.4688425],[-97.4290045,26.4704823],[-97.4253372,26.4695122],[-97.4223252,26.470768],[-97.4210696,26.4714466],[-97.4198808,26.4723625],[-97.418064,26.4708917]]],[[[-97.4256627,26.5150112],[-97.4232522,26.5162319],[-97.420727,26.5176369],[-97.4176376,26.5181471],[-97.4162797,26.5149117],[-97.4175426,26.5112124],[-97.4174721,26.5073464],[-97.4208579,26.5081452],[-97.4235577,26.5088115],[-97.4256656,26.509668],[-97.4248419,26.5116961],[-97.4231329,26.5133524],[-97.4256627,26.5150112]]],[[[-97.2638655,26.513893],[-97.2651207,26.5113525],[-97.2661671,26.5081504],[-97.270053,26.5080638],[-97.2710045,26.5112802],[-97.2705347,26.5142195],[-97.2664699,26.5156673],[-97.2638655,26.513893]]],[[[-82.1908683,26.5131387],[-82.1926781,26.5152027],[-82.1936654,26.5187304],[-82.1949676,26.5243298],[-82.1954798,26.5264102],[-82.1958398,26.5281519],[-82.1961842,26.5313105],[-82.1968302,26.5350485],[-82.1973448,26.5387977],[-82.1971282,26.5411365],[-82.196438,26.5431499],[-82.1973128,26.5449317],[-82.1987858,26.5468232],[-82.1999463,26.5492772],[-82.2018468,26.5519278],[-82.1994363,26.5530137],[-82.1971008,26.5529006],[-82.196302,26.5485998],[-82.1937473,26.5467262],[-82.1938329,26.5446893],[-82.1918248,26.5441522],[-82.1909268,26.5418932],[-82.1902698,26.5403462],[-82.1906435,26.5378995],[-82.1934606,26.5384572],[-82.1941452,26.5340946],[-82.19177,26.530138],[-82.1905146,26.5321262],[-82.1890708,26.5303592],[-82.1892717,26.5279892],[-82.1884276,26.525945],[-82.1878627,26.5232309],[-82.1888916,26.5208],[-82.1898932,26.5180602],[-82.1904863,26.5157762],[-82.1908683,26.5131387]]],[[[-97.3730369,26.5580781],[-97.3755563,26.5549783],[-97.3781252,26.55564],[-97.3791634,26.5585637],[-97.3756534,26.5590231],[-97.3730369,26.5580781]]],[[[-97.3440897,26.556667],[-97.3459789,26.5556821],[-97.3484493,26.5584779],[-97.3462089,26.5597894],[-97.3427864,26.5600455],[-97.3420541,26.5577104],[-97.3440897,26.556667]]],[[[-97.3312108,26.5601149],[-97.3327625,26.5576471],[-97.3358696,26.5582479],[-97.3387955,26.5577378],[-97.3398262,26.5599555],[-97.3366253,26.5605895],[-97.3329907,26.5608945],[-97.3312108,26.5601149]]],[[[-82.0749736,26.5743872],[-82.0751118,26.5734099],[-82.0780145,26.5741132],[-82.0792984,26.5714745],[-82.0812842,26.5741432],[-82.0816618,26.5751629],[-82.0821154,26.5763879],[-82.0790558,26.577427],[-82.076529,26.5764107],[-82.0748145,26.5755122],[-82.0749736,26.5743872]]],[[[-97.2550291,26.5069964],[-97.2529337,26.5043731],[-97.2522817,26.4996599],[-97.2505237,26.496854],[-97.2463909,26.4834615],[-97.2485569,26.484787],[-97.2507827,26.4816468],[-97.2533254,26.4822812],[-97.2554716,26.4823118],[-97.2547317,26.4799083],[-97.2593512,26.4806108],[-97.2614917,26.4830617],[-97.2583668,26.4833384],[-97.2584068,26.4870141],[-97.2607282,26.4912472],[-97.2621529,26.4902074],[-97.2651207,26.4909806],[-97.2626542,26.4921019],[-97.2609457,26.494526],[-97.2584487,26.4958705],[-97.2562991,26.4971229],[-97.2546887,26.4998475],[-97.2575549,26.4989791],[-97.2615237,26.4988186],[-97.2640087,26.5004435],[-97.2616313,26.5022489],[-97.2606585,26.504805],[-97.2576773,26.5059692],[-97.2550291,26.5069964]]],[[[-82.1829674,26.482232],[-82.1846522,26.4848354],[-82.1859038,26.4880542],[-82.1871331,26.4919507],[-82.1879418,26.4951568],[-82.1883281,26.4978288],[-82.1888198,26.5008347],[-82.189637,26.5028726],[-82.1903328,26.5053767],[-82.1906855,26.5076012],[-82.1916372,26.5104905],[-82.1908683,26.5131387],[-82.1893012,26.5108725],[-82.187461,26.5078925],[-82.1858781,26.5047624],[-82.1848543,26.5000911],[-82.1841105,26.5030762],[-82.1846074,26.5067903],[-82.1848164,26.5088182],[-82.1851501,26.5117237],[-82.1848778,26.5150654],[-82.1833573,26.5166797],[-82.1814243,26.5166704],[-82.1813459,26.5137085],[-82.1815953,26.5109055],[-82.1802522,26.5078532],[-82.1798828,26.5061792],[-82.1786375,26.5034622],[-82.1772073,26.5013177],[-82.1761666,26.4989495],[-82.1769584,26.4964567],[-82.1790552,26.4948061],[-82.1788538,26.4929922],[-82.1797569,26.491458],[-82.1806275,26.4896985],[-82.1820936,26.4885423],[-82.1821444,26.4861552],[-82.1821444,26.4861551],[-82.1821444,26.4861551],[-82.1821535,26.4857257],[-82.1829674,26.482232]]],[[[-97.3912632,26.4295936],[-97.3917419,26.4267966],[-97.3958755,26.4275316],[-97.3970335,26.4303726],[-97.3931412,26.4341086],[-97.3919627,26.4315886],[-97.3912632,26.4295936]]],[[[-97.4261784,26.4412287],[-97.4225977,26.4397126],[-97.4195162,26.4392306],[-97.4160225,26.4403232],[-97.4194251,26.4432809],[-97.4208262,26.4455353],[-97.4175183,26.4457179],[-97.4175617,26.4487906],[-97.4147442,26.4486695],[-97.4117843,26.4468123],[-97.4126887,26.4436426],[-97.4131987,26.4406166],[-97.414318,26.4377236],[-97.4177424,26.4370519],[-97.4214007,26.4367776],[-97.4237187,26.4365716],[-97.4263677,26.4358386],[-97.428613,26.4361959],[-97.4263905,26.4388399],[-97.4261784,26.4412287]]],[[[-97.4169393,26.4526369],[-97.417891,26.4512527],[-97.4210567,26.4514162],[-97.4228944,26.4486667],[-97.4226291,26.4466853],[-97.4243537,26.4477366],[-97.4247981,26.4506782],[-97.4265599,26.4528474],[-97.4223209,26.4538959],[-97.4190157,26.4539346],[-97.4169393,26.4526369]]],[[[-97.2368433,26.452857],[-97.2345997,26.4459378],[-97.2356015,26.4412143],[-97.2381331,26.441032],[-97.2393377,26.4392936],[-97.2427367,26.4378188],[-97.2463485,26.4420991],[-97.2464049,26.4458844],[-97.2453347,26.4485532],[-97.2452949,26.4513866],[-97.2422971,26.4520089],[-97.2393386,26.4516542],[-97.2368433,26.452857]]],[[[-97.2516632,26.4189046],[-97.2533089,26.4160271],[-97.2555695,26.4178472],[-97.2561177,26.4203506],[-97.2555263,26.4221457],[-97.2561727,26.4251823],[-97.2537894,26.4258749],[-97.2516774,26.4239636],[-97.2511017,26.4214946],[-97.2516632,26.4189046]]],[[[-97.2259882,26.4204856],[-97.2245087,26.4149956],[-97.2242092,26.4115239],[-97.2257502,26.4130986],[-97.2266696,26.4153274],[-97.2287492,26.4114815],[-97.2326011,26.410861],[-97.2357966,26.408852],[-97.2387694,26.4079911],[-97.241113,26.4083883],[-97.2421925,26.4115015],[-97.2421932,26.411506],[-97.2427262,26.4148871],[-97.2421807,26.4179131],[-97.2436582,26.420526],[-97.2439343,26.4231602],[-97.2432111,26.4264602],[-97.2411467,26.4296585],[-97.2406424,26.4330262],[-97.238412,26.4336366],[-97.2373882,26.4360381],[-97.2344857,26.4373345],[-97.2317468,26.4375539],[-97.2298367,26.4335645],[-97.2288177,26.4301486],[-97.2279247,26.4266636],[-97.2259882,26.4204856]]],[[[-97.4393249,26.4620263],[-97.437384,26.4601645],[-97.4355436,26.4612571],[-97.4330464,26.4590642],[-97.4309877,26.4579233],[-97.4322487,26.4561525],[-97.4346301,26.4551663],[-97.4392532,26.4579066],[-97.4439483,26.4593434],[-97.4407177,26.4604176],[-97.4393249,26.4620263]]],[[[-97.4042813,26.4534958],[-97.4049136,26.4498684],[-97.4083743,26.4515122],[-97.4097585,26.4522043],[-97.4082188,26.4546746],[-97.4060383,26.4567897],[-97.4060383,26.4583469],[-97.4072496,26.4596447],[-97.4073361,26.461548],[-97.4052597,26.4609424],[-97.403962,26.4581739],[-97.4042813,26.4534958]]],[[[-97.2486479,26.4766486],[-97.2466483,26.474934],[-97.2446616,26.4770872],[-97.2429007,26.4741932],[-97.2419302,26.47082],[-97.2409537,26.4686375],[-97.2405029,26.4653232],[-97.2425151,26.4654859],[-97.2438042,26.4616505],[-97.2433777,26.4579299],[-97.242528,26.4554718],[-97.2452017,26.4556605],[-97.2478557,26.4563774],[-97.2475597,26.4591325],[-97.2485542,26.4614188],[-97.2513852,26.4626653],[-97.2522629,26.4653241],[-97.2528244,26.4673025],[-97.2526172,26.4700785],[-97.2520505,26.4726669],[-97.2513943,26.4762137],[-97.2502447,26.4773675],[-97.2486479,26.4766486]]],[[[-82.1829674,26.482232],[-82.1819853,26.4822851],[-82.1816302,26.4823043],[-82.1802251,26.4823803],[-82.1800641,26.4828921],[-82.180064,26.4828921],[-82.180064,26.4828922],[-82.1795329,26.4845803],[-82.1792378,26.4855181],[-82.1785399,26.4863251],[-82.1775281,26.4874951],[-82.1757795,26.4910522],[-82.1741128,26.4934522],[-82.1718128,26.4936522],[-82.1699664,26.4932721],[-82.1684128,26.4929522],[-82.1675128,26.4878022],[-82.1639128,26.4863272],[-82.1597129,26.4863522],[-82.1607462,26.4830522],[-82.1555379,26.4808522],[-82.1555281,26.479143],[-82.1555139,26.476635],[-82.1526128,26.4791522],[-82.1492462,26.4779522],[-82.146281,26.476749],[-82.144801,26.4763961],[-82.1439878,26.4762022],[-82.1434969,26.4758686],[-82.1411314,26.4742612],[-82.1379198,26.4759703],[-82.1371304,26.4763904],[-82.1337907,26.4773875],[-82.1314252,26.4776465],[-82.1305651,26.4777407],[-82.129943,26.4777125],[-82.1286118,26.4776522],[-82.1269118,26.4740022],[-82.1252627,26.471171],[-82.1215839,26.4720082],[-82.1208373,26.4721781],[-82.1173088,26.4703295],[-82.1146271,26.4690793],[-82.1122118,26.4683522],[-82.1052932,26.4656065],[-82.1043405,26.4647394],[-82.1016438,26.4639966],[-82.0999439,26.4626967],[-82.0996954,26.4621251],[-82.0993005,26.4612167],[-82.0972784,26.4587133],[-82.0960452,26.4571865],[-82.0926119,26.4544532],[-82.0895247,26.454581],[-82.0877785,26.4546532],[-82.0855367,26.456294],[-82.0823119,26.4601532],[-82.0805113,26.4624032],[-82.0791109,26.4639532],[-82.076814,26.4649288],[-82.0734457,26.4659964],[-82.0700459,26.4658964],[-82.0675461,26.4653965],[-82.0663462,26.4653965],[-82.069146,26.4642966],[-82.0719253,26.4643612],[-82.0732991,26.463388],[-82.0755456,26.4617967],[-82.084545,26.4556971],[-82.0912445,26.4469978],[-82.0909872,26.4448533],[-82.0909445,26.4444979],[-82.0866448,26.442798],[-82.0809452,26.442798],[-82.0736457,26.4448979],[-82.068246,26.4509975],[-82.0667462,26.4546972],[-82.0676461,26.4558971],[-82.0679533,26.456316],[-82.068746,26.457397],[-82.0694487,26.4577045],[-82.0703459,26.458097],[-82.0691455,26.4583637],[-82.068546,26.458497],[-82.0678053,26.4587698],[-82.0666462,26.4591969],[-82.0650978,26.4587257],[-82.0643463,26.458497],[-82.0628464,26.4608968],[-82.0634915,26.4614702],[-82.0637464,26.4616967],[-82.0639148,26.4622021],[-82.0641463,26.4628966],[-82.0645804,26.4627519],[-82.0656461,26.4623967],[-82.0642385,26.4639984],[-82.0627809,26.4639757],[-82.0626625,26.4674289],[-82.0614962,26.4683692],[-82.0605466,26.4693962],[-82.0591171,26.4685028],[-82.0565789,26.4687522],[-82.056313,26.4679634],[-82.05562,26.4659075],[-82.0534216,26.464716],[-82.0510909,26.4643902],[-82.0456551,26.4608415],[-82.0447479,26.4602492],[-82.0426109,26.4588532],[-82.0392109,26.4560532],[-82.037308,26.45509],[-82.0373059,26.4550889],[-82.0373038,26.4550879],[-82.0360639,26.4544602],[-82.0314099,26.4524532],[-82.0250174,26.4529232],[-82.0220599,26.4531532],[-82.0188599,26.4534032],[-82.0159599,26.4543532],[-82.0136821,26.4531894],[-82.0136793,26.453188],[-82.0136765,26.4531865],[-82.0186099,26.4492532],[-82.0365109,26.4390532],[-82.0399109,26.4371532],[-82.0469109,26.4334542],[-82.0558109,26.4286542],[-82.0622151,26.4258606],[-82.0632844,26.4253942],[-82.0680889,26.4237312],[-82.0750119,26.4220542],[-82.0803119,26.4217542],[-82.0829119,26.4220542],[-82.0902599,26.4229622],[-82.0981118,26.4249542],[-82.1025119,26.4266542],[-82.1070227,26.4283099],[-82.10805,26.4286869],[-82.1104129,26.4295542],[-82.1125308,26.4303922],[-82.1195128,26.4331542],[-82.1257403,26.4358432],[-82.1293358,26.4378542],[-82.1322128,26.4400542],[-82.1428628,26.4508032],[-82.1447378,26.4522935],[-82.1487128,26.4554532],[-82.1512859,26.4576074],[-82.1524752,26.4583484],[-82.1537478,26.4591413],[-82.155923,26.4601384],[-82.1589794,26.4619584],[-82.160026,26.4625816],[-82.1628128,26.4625532],[-82.1678138,26.4649532],[-82.1729138,26.4676532],[-82.1762158,26.4725625],[-82.1782654,26.4745981],[-82.1808286,26.4777911],[-82.1825313,26.4813265],[-82.1829674,26.482232]]],[[[-97.3040782,26.579262],[-97.3048869,26.57435],[-97.3080511,26.5744581],[-97.3098917,26.5768605],[-97.3107667,26.5788555],[-97.3116,26.5809342],[-97.3129382,26.5833417],[-97.3141622,26.5857565],[-97.3143277,26.587877],[-97.3157242,26.5906735],[-97.3159753,26.5934867],[-97.3177707,26.5955455],[-97.3178311,26.5979414],[-97.3170672,26.6002704],[-97.3170622,26.6002857],[-97.320177,26.6026586],[-97.319103,26.6044296],[-97.3173617,26.604911],[-97.3155146,26.6025613],[-97.3129649,26.6014973],[-97.312792,26.6002717],[-97.3127916,26.6002685],[-97.312466,26.5979605],[-97.3119611,26.5951923],[-97.3115487,26.5924735],[-97.3106687,26.590043],[-97.3083697,26.5875142],[-97.305565,26.5854122],[-97.3056587,26.5824472],[-97.3040782,26.579262]]],[[[-82.2069871,26.5749119],[-82.2077167,26.5712975],[-82.2098568,26.5738912],[-82.2115398,26.5759925],[-82.2132748,26.5786832],[-82.2156843,26.582378],[-82.2177481,26.5851552],[-82.2198568,26.5877379],[-82.2219493,26.5901567],[-82.2228968,26.5922922],[-82.2238796,26.5950074],[-82.2254973,26.5988577],[-82.2253118,26.6027025],[-82.2234968,26.6058668],[-82.2198458,26.6064558],[-82.2173618,26.6042827],[-82.216545,26.6023272],[-82.2184926,26.6020318],[-82.2184328,26.6001672],[-82.2178088,26.5979929],[-82.2149837,26.596755],[-82.2142983,26.5934947],[-82.2139918,26.5904386],[-82.2122756,26.5867077],[-82.2069284,26.5833053],[-82.2104891,26.5811302],[-82.2109733,26.5787514],[-82.2083906,26.5764077],[-82.2069871,26.5749119]]],[[[-97.306312,26.6497528],[-97.3048402,26.6478318],[-97.3033774,26.6435328],[-97.301907,26.6392225],[-97.3011677,26.6368835],[-97.3005214,26.6349655],[-97.299514,26.6320233],[-97.297715,26.6270155],[-97.2964462,26.6235595],[-97.2953447,26.6201987],[-97.2940117,26.6164755],[-97.2925577,26.6126465],[-97.2909777,26.6082388],[-97.2899837,26.605768],[-97.289047,26.6033348],[-97.2879237,26.6003554],[-97.2879146,26.6003281],[-97.2873457,26.5986145],[-97.2855242,26.5939713],[-97.28443,26.5910347],[-97.2837277,26.5891915],[-97.2828872,26.586704],[-97.2812375,26.5821125],[-97.2796767,26.5782775],[-97.2783527,26.5746085],[-97.2772088,26.5716538],[-97.2759452,26.568212],[-97.2753066,26.5657911],[-97.278872,26.5647278],[-97.2836151,26.5637323],[-97.2803832,26.562928],[-97.2759219,26.5627063],[-97.2736977,26.5624325],[-97.2697127,26.5625925],[-97.2697667,26.5572975],[-97.2694527,26.5547525],[-97.2683417,26.5499035],[-97.2670302,26.546395],[-97.2654012,26.541236],[-97.2645807,26.5385735],[-97.2647302,26.535953],[-97.2630535,26.5343288],[-97.2614942,26.530035],[-97.2598137,26.5254505],[-97.2592695,26.5215665],[-97.2562417,26.5141503],[-97.2550969,26.5109526],[-97.2541803,26.5083528],[-97.2550291,26.5069964],[-97.2562628,26.5093772],[-97.2597872,26.5097715],[-97.2638655,26.513893],[-97.2645514,26.5186267],[-97.2685706,26.5197845],[-97.2708174,26.5190879],[-97.2734707,26.5207683],[-97.2747937,26.5228987],[-97.2766684,26.5257264],[-97.2759624,26.5280299],[-97.2738992,26.5301938],[-97.2751537,26.5317135],[-97.2771672,26.532218],[-97.2800901,26.5337242],[-97.2814009,26.5368118],[-97.2834752,26.5348675],[-97.2840747,26.5325025],[-97.2861147,26.5310855],[-97.2858855,26.5285609],[-97.2842765,26.5250635],[-97.2860397,26.5242655],[-97.2880267,26.5249075],[-97.2902947,26.5259615],[-97.2923167,26.5277812],[-97.2931232,26.5302495],[-97.2942567,26.5336428],[-97.2969962,26.537438],[-97.3002327,26.5410339],[-97.3016855,26.543021],[-97.3035457,26.5457495],[-97.3043575,26.5479728],[-97.3056437,26.5505569],[-97.3083617,26.5536121],[-97.3103041,26.5566587],[-97.3142777,26.5575412],[-97.3168017,26.5571205],[-97.3199877,26.5572815],[-97.3239499,26.5584886],[-97.3260013,26.5572402],[-97.3294464,26.5580422],[-97.3312108,26.5601149],[-97.3291487,26.5612505],[-97.3260107,26.5606874],[-97.3208977,26.561507],[-97.3180127,26.5616145],[-97.3147067,26.561781],[-97.3112697,26.5620045],[-97.3085417,26.5620045],[-97.3045252,26.5622445],[-97.2987252,26.562347],[-97.2943272,26.5631875],[-97.2974507,26.5640435],[-97.3011727,26.5640325],[-97.3037321,26.5647413],[-97.3065017,26.5647325],[-97.3087197,26.5650993],[-97.3089563,26.568201],[-97.3046823,26.568212],[-97.302166,26.571226],[-97.3000945,26.570836],[-97.2963641,26.5707282],[-97.2975329,26.5734927],[-97.2983282,26.5759467],[-97.2955037,26.5775804],[-97.2979438,26.5807427],[-97.3009324,26.5836641],[-97.2984638,26.5854515],[-97.3026412,26.5880224],[-97.3024408,26.5898301],[-97.3032865,26.5914295],[-97.3048343,26.5929345],[-97.3055872,26.594926],[-97.3064352,26.5963135],[-97.3070392,26.5977126],[-97.3075614,26.6002694],[-97.3075702,26.6002778],[-97.3098027,26.6024168],[-97.312253,26.6058242],[-97.310525,26.6068728],[-97.3135872,26.6082355],[-97.3159372,26.6099753],[-97.3177794,26.6123207],[-97.3208511,26.6125803],[-97.3192741,26.615089],[-97.3178846,26.6171744],[-97.3152947,26.6194396],[-97.319275,26.6216059],[-97.3222158,26.62379],[-97.3244285,26.6213155],[-97.3279564,26.6200305],[-97.3297336,26.6209991],[-97.3290132,26.622942],[-97.3315707,26.6241565],[-97.3331692,26.6250795],[-97.3318095,26.6274602],[-97.3295503,26.627615],[-97.3267645,26.6294854],[-97.3295347,26.6302889],[-97.3312281,26.6325816],[-97.3343734,26.6344068],[-97.3316967,26.6356009],[-97.3325265,26.6379163],[-97.3349401,26.6396713],[-97.3372369,26.6420975],[-97.3347871,26.6450725],[-97.3323203,26.6480509],[-97.3338172,26.6493148],[-97.3361582,26.6502135],[-97.3376801,26.6496137],[-97.3403801,26.6487833],[-97.3445022,26.6507421],[-97.344152,26.6534701],[-97.3449317,26.655428],[-97.3433802,26.6576454],[-97.3418829,26.6601674],[-97.3389748,26.6593752],[-97.3369638,26.6612248],[-97.3362094,26.6635669],[-97.3367741,26.6660785],[-97.3391786,26.6674543],[-97.3366393,26.6684774],[-97.3370301,26.6706754],[-97.3355642,26.6723329],[-97.3336722,26.6750011],[-97.3329743,26.6725174],[-97.3309106,26.6725054],[-97.3285267,26.6717609],[-97.3296282,26.6690093],[-97.3267955,26.6660258],[-97.3249359,26.6627033],[-97.3225037,26.6597936],[-97.3208717,26.6562258],[-97.3181289,26.654984],[-97.3164643,26.6519263],[-97.3203964,26.6526208],[-97.3204759,26.6481568],[-97.3199954,26.6448858],[-97.3191277,26.6423405],[-97.3171365,26.6385313],[-97.3152107,26.636953],[-97.3125192,26.636701],[-97.3105777,26.6351343],[-97.3108867,26.6326655],[-97.3114021,26.6299973],[-97.3105927,26.6263234],[-97.3085532,26.6239848],[-97.3078071,26.6213139],[-97.3062925,26.6183345],[-97.3041077,26.6163398],[-97.3024667,26.6139015],[-97.3005293,26.6106761],[-97.2997382,26.6130605],[-97.2999417,26.6157735],[-97.2996422,26.6204389],[-97.2982877,26.6228397],[-97.3003654,26.6244182],[-97.3020903,26.6259729],[-97.3014743,26.6287221],[-97.3032554,26.6318937],[-97.305351,26.6347597],[-97.3086247,26.6376372],[-97.3098404,26.6408815],[-97.309968,26.6445765],[-97.309649,26.6471268],[-97.306312,26.6497528]]],[[[-82.1567095,26.7054958],[-82.1549789,26.7029354],[-82.1511797,26.7032256],[-82.1510141,26.7032122],[-82.1484751,26.7030072],[-82.1477298,26.7032331],[-82.1455188,26.7039031],[-82.1432725,26.7041248],[-82.1398236,26.702834],[-82.1358568,26.7026966],[-82.1328792,26.6997302],[-82.1301572,26.6982815],[-82.1253952,26.6984706],[-82.1247616,26.6948145],[-82.1220583,26.6924769],[-82.1213199,26.6908432],[-82.1201608,26.6882791],[-82.1194141,26.687253],[-82.1186854,26.6862516],[-82.1183839,26.6860554],[-82.1170365,26.6851783],[-82.1168494,26.6848549],[-82.1157327,26.6829246],[-82.1190169,26.6836162],[-82.1184011,26.6792644],[-82.1176427,26.6769734],[-82.1165456,26.674407],[-82.1145567,26.6737966],[-82.1137913,26.6735617],[-82.1135392,26.6713261],[-82.114138,26.6691933],[-82.1129394,26.6672902],[-82.1114533,26.6681177],[-82.1111105,26.6682548],[-82.1097333,26.668806],[-82.1092999,26.6718024],[-82.1074678,26.6705222],[-82.1060796,26.6670389],[-82.1057307,26.6653811],[-82.1053573,26.6636069],[-82.1050529,26.6617018],[-82.1048468,26.6604126],[-82.1049648,26.6581956],[-82.1051029,26.6556023],[-82.1061224,26.6564761],[-82.1061233,26.6564769],[-82.1061242,26.6564776],[-82.1075273,26.6576802],[-82.1093996,26.6556686],[-82.1094604,26.655333],[-82.1099538,26.6526098],[-82.1104628,26.6488992],[-82.1106799,26.6473163],[-82.1093733,26.643016],[-82.1104605,26.6431235],[-82.1120418,26.6391129],[-82.1121956,26.6347944],[-82.1121957,26.6347914],[-82.1121958,26.6347885],[-82.1122919,26.6320895],[-82.1122919,26.6309119],[-82.1122919,26.6296275],[-82.1122919,26.6285824],[-82.1101471,26.6231441],[-82.1100474,26.6228915],[-82.1094645,26.6216085],[-82.1087817,26.6201055],[-82.1083971,26.6198251],[-82.1078588,26.6187724],[-82.1071889,26.6174804],[-82.1067821,26.6161884],[-82.1064472,26.6150878],[-82.1060607,26.614932],[-82.105813,26.6141597],[-82.1058122,26.6141572],[-82.1058113,26.6141546],[-82.105054,26.6117937],[-82.1053018,26.6113095],[-82.1041956,26.6071798],[-82.1042078,26.6068984],[-82.1040636,26.6067302],[-82.1035898,26.6041502],[-82.1028496,26.6001206],[-82.1021877,26.5989071],[-82.1021682,26.5988712],[-82.1020403,26.5986368],[-82.101444,26.5975576],[-82.1009289,26.5966255],[-82.1008091,26.5962757],[-82.1007479,26.5960972],[-82.1004207,26.5951419],[-82.1000142,26.5939553],[-82.0998651,26.5935202],[-82.0997016,26.5930429],[-82.0996433,26.5929129],[-82.0990694,26.5916341],[-82.0988924,26.5912398],[-82.0987673,26.5909609],[-82.0983983,26.5901388],[-82.0972277,26.5888858],[-82.0965958,26.5882095],[-82.0959341,26.5868898],[-82.095046,26.5863199],[-82.0929327,26.5836929],[-82.0911763,26.5811353],[-82.0896936,26.5790916],[-82.0881794,26.5753058],[-82.0869297,26.5735322],[-82.0867459,26.5714866],[-82.0862813,26.5704719],[-82.0854197,26.5685904],[-82.0853269,26.5676932],[-82.0851599,26.5660794],[-82.083072,26.5637837],[-82.0814423,26.5642507],[-82.0812091,26.5639757],[-82.0801514,26.5627277],[-82.0789949,26.5603142],[-82.0790157,26.5602511],[-82.0799234,26.5575074],[-82.0808728,26.5549157],[-82.0811103,26.553644],[-82.0813438,26.5523932],[-82.0809905,26.5494083],[-82.0798548,26.5461827],[-82.0796917,26.5459957],[-82.0783209,26.5444252],[-82.0765369,26.5429572],[-82.0759321,26.5425689],[-82.0743943,26.5415817],[-82.0726532,26.5402163],[-82.0747259,26.5396332],[-82.0762554,26.5392672],[-82.0763372,26.5368507],[-82.0744849,26.5350748],[-82.0718407,26.5370935],[-82.0691234,26.5355119],[-82.0704014,26.5322726],[-82.0724803,26.5312616],[-82.0724849,26.5299775],[-82.0724919,26.5279791],[-82.0725289,26.5261329],[-82.0725529,26.5249346],[-82.073351,26.5205811],[-82.0722029,26.5177839],[-82.0720334,26.517371],[-82.071307,26.5150351],[-82.0711761,26.514717],[-82.0701859,26.5123102],[-82.0694483,26.5089893],[-82.066165,26.506682],[-82.0656641,26.5039896],[-82.0653894,26.503304],[-82.0647655,26.5017468],[-82.0621731,26.5004517],[-82.061811,26.5002708],[-82.0613948,26.5000941],[-82.0592872,26.4991992],[-82.0572917,26.4971584],[-82.0576353,26.4946636],[-82.0598429,26.4933544],[-82.0612214,26.4948888],[-82.0640723,26.49385],[-82.0645956,26.4936593],[-82.0649522,26.4936131],[-82.0698633,26.4929773],[-82.0700157,26.4929576],[-82.0741667,26.4922778],[-82.0768295,26.4915352],[-82.0793801,26.4908334],[-82.082141,26.4902242],[-82.0849008,26.4903571],[-82.087017,26.4920254],[-82.0877189,26.4918088],[-82.0889206,26.491438],[-82.0900844,26.4880232],[-82.0930642,26.4862591],[-82.0947809,26.4854987],[-82.096301,26.4848253],[-82.0990465,26.4844055],[-82.1013759,26.4843642],[-82.1038532,26.4846626],[-82.1041591,26.4846994],[-82.1046984,26.4851348],[-82.1063043,26.4864315],[-82.1058852,26.4890574],[-82.1056822,26.490329],[-82.1011988,26.489727],[-82.0975894,26.488884],[-82.0936139,26.4889298],[-82.0948364,26.4916182],[-82.0954742,26.4937869],[-82.0977972,26.4957092],[-82.0988508,26.4982036],[-82.1015389,26.4997278],[-82.1009948,26.5018404],[-82.1002739,26.5022451],[-82.0985626,26.5032057],[-82.0971163,26.5074497],[-82.0970507,26.5101402],[-82.0970463,26.5103232],[-82.0996018,26.5104702],[-82.1005894,26.5134972],[-82.1035428,26.5156349],[-82.104009,26.5155571],[-82.1063933,26.5151597],[-82.1090822,26.5155602],[-82.1073886,26.5180087],[-82.1049508,26.5181588],[-82.1014552,26.5180028],[-82.1000893,26.5205476],[-82.1025538,26.52379],[-82.1019268,26.5276902],[-82.1055585,26.5269171],[-82.1077165,26.5303157],[-82.1091736,26.5319065],[-82.1095019,26.5322649],[-82.1096107,26.532108],[-82.111041,26.5300449],[-82.1133378,26.5321105],[-82.1121876,26.533615],[-82.1118594,26.5340443],[-82.1115776,26.5355575],[-82.1112757,26.5371787],[-82.1088626,26.5394026],[-82.1090832,26.5431168],[-82.1110395,26.5420485],[-82.1133483,26.5421654],[-82.1147212,26.5446275],[-82.1133565,26.5469518],[-82.1121667,26.5481257],[-82.1108756,26.5493995],[-82.1130992,26.5501866],[-82.1140628,26.5521324],[-82.1130442,26.5566441],[-82.1131115,26.5566263],[-82.1153081,26.5560484],[-82.1162764,26.5573261],[-82.1165194,26.5576467],[-82.1181419,26.5589485],[-82.1160187,26.5596302],[-82.1156216,26.5610383],[-82.1149153,26.5635432],[-82.1166821,26.565252],[-82.1175944,26.5661342],[-82.1204254,26.5669682],[-82.1206264,26.5690144],[-82.1201835,26.5707372],[-82.1199637,26.5715918],[-82.1201076,26.5748016],[-82.1230294,26.5759542],[-82.1194852,26.5778856],[-82.1193087,26.5819482],[-82.1205995,26.5808748],[-82.1229283,26.5789383],[-82.1231827,26.581784],[-82.1221687,26.5829742],[-82.1208677,26.5845012],[-82.1214713,26.5870575],[-82.1222512,26.5884739],[-82.1228573,26.5895749],[-82.1248268,26.5911888],[-82.1261339,26.5923623],[-82.1263277,26.5925363],[-82.126359,26.5939582],[-82.1263978,26.595728],[-82.124898,26.5976749],[-82.1281312,26.5982658],[-82.1283421,26.6003236],[-82.1284347,26.6012273],[-82.1285178,26.6029342],[-82.1277354,26.6036012],[-82.1264398,26.6047058],[-82.1266062,26.6062479],[-82.1267204,26.6073063],[-82.1287512,26.6051128],[-82.1295172,26.6076386],[-82.1307278,26.6096946],[-82.1313128,26.6125764],[-82.1321559,26.6150362],[-82.1323935,26.6169641],[-82.1324274,26.6172388],[-82.130893,26.6210019],[-82.1328935,26.6210262],[-82.1330317,26.6208898],[-82.134471,26.6194699],[-82.1349394,26.6223361],[-82.1369927,26.623938],[-82.1374702,26.6238016],[-82.140053,26.6230637],[-82.1434932,26.6232172],[-82.1436982,26.6256922],[-82.1415615,26.6256367],[-82.1408348,26.6256178],[-82.1391038,26.6278197],[-82.1375851,26.6307395],[-82.1374823,26.6309372],[-82.1364592,26.6332351],[-82.138629,26.6343775],[-82.1406639,26.6333088],[-82.1392412,26.6369222],[-82.1388732,26.637857],[-82.1429952,26.63856],[-82.1429558,26.6406545],[-82.1410756,26.6418725],[-82.1410064,26.6419173],[-82.1388538,26.6424358],[-82.1406929,26.6457718],[-82.1434437,26.6477062],[-82.1459815,26.6482148],[-82.1454718,26.6508537],[-82.1475032,26.6526244],[-82.1487803,26.6537377],[-82.1499291,26.6543878],[-82.151808,26.655451],[-82.1526536,26.6580696],[-82.1529565,26.6590077],[-82.154799,26.6613267],[-82.1559627,26.6622224],[-82.1581793,26.6639287],[-82.1614713,26.6663252],[-82.1657563,26.6703424],[-82.1673109,26.674094],[-82.1680158,26.6773009],[-82.1701232,26.6775936],[-82.1727925,26.6788882],[-82.174905,26.6786963],[-82.1750218,26.6786857],[-82.1776734,26.680103],[-82.1787019,26.6804542],[-82.1782833,26.6820524],[-82.1780552,26.6832387],[-82.1779395,26.6838399],[-82.1777482,26.6839448],[-82.1769486,26.6857429],[-82.1747226,26.6871607],[-82.1730201,26.6884923],[-82.1733228,26.6903112],[-82.1734378,26.6927531],[-82.1736801,26.695008],[-82.1756711,26.6936902],[-82.1797484,26.692183],[-82.1818295,26.6952435],[-82.181125,26.6959557],[-82.1807359,26.6964923],[-82.1796326,26.6980136],[-82.179084,26.6980322],[-82.1771316,26.6980983],[-82.1778169,26.7006654],[-82.1779888,26.7013091],[-82.1768567,26.702124],[-82.1762578,26.7025551],[-82.1755339,26.7030402],[-82.1742495,26.7039008],[-82.1715651,26.7049871],[-82.1713985,26.7050545],[-82.1677899,26.7049777],[-82.166984,26.7050212],[-82.1656233,26.7050947],[-82.1650128,26.7053282],[-82.1628452,26.7061569],[-82.1590108,26.7063026],[-82.1567095,26.7054958]]],[[[-81.4205161,25.8360579],[-81.4210833,25.8341439],[-81.4232517,25.8361951],[-81.4234687,25.8364003],[-81.4240069,25.8383391],[-81.4236956,25.8389222],[-81.422601,25.8409719],[-81.4202063,25.8416905],[-81.4202293,25.8413006],[-81.4203939,25.838512],[-81.4205161,25.8360579]]],[[[-81.4312947,25.838504],[-81.4321938,25.8376621],[-81.4336018,25.8376692],[-81.4344647,25.8376735],[-81.4333505,25.8408245],[-81.4321371,25.8432327],[-81.4295435,25.8438792],[-81.4304366,25.8420568],[-81.4307413,25.841435],[-81.4305154,25.8392337],[-81.4312947,25.838504]]],[[[-81.569812,25.8645442],[-81.5679737,25.862774],[-81.5678124,25.8633109],[-81.5675003,25.8643499],[-81.5661903,25.8642975],[-81.5651946,25.8630398],[-81.5654166,25.8620129],[-81.5646885,25.8600689],[-81.5636749,25.8607341],[-81.5640417,25.8626206],[-81.5620504,25.8619393],[-81.5620504,25.8607865],[-81.5632557,25.8592668],[-81.5643317,25.8590157],[-81.5647856,25.8568852],[-81.5692058,25.8591666],[-81.5690724,25.8613105],[-81.5706776,25.8625932],[-81.5726882,25.8644023],[-81.5732646,25.8666556],[-81.5718497,25.8668128],[-81.5701729,25.8657123],[-81.5698726,25.8647404],[-81.569812,25.8645442]]],[[[-81.4932532,25.8410959],[-81.4935808,25.8404127],[-81.4942928,25.8389277],[-81.494577,25.8382018],[-81.495162,25.8367074],[-81.4980063,25.8355309],[-81.5005281,25.8352862],[-81.5015863,25.8375389],[-81.5018134,25.8380223],[-81.5016738,25.8385415],[-81.501347,25.8397573],[-81.5009071,25.8403363],[-81.4999894,25.8415442],[-81.4980957,25.841087],[-81.4962953,25.8416786],[-81.4932532,25.8410959]]],[[[-81.5337655,25.860902],[-81.5329923,25.8599923],[-81.5319461,25.8600833],[-81.5313999,25.859326],[-81.5309454,25.8586959],[-81.5316959,25.8578317],[-81.5343114,25.8576725],[-81.534844,25.8578812],[-81.5359944,25.8583321],[-81.5361671,25.8596706],[-81.5363582,25.8611522],[-81.5359261,25.8626078],[-81.5343796,25.8632218],[-81.5340209,25.8629229],[-81.533015,25.8620847],[-81.5337655,25.860902]]],[[[-81.4597206,25.8522627],[-81.4586663,25.8512559],[-81.4559182,25.8530625],[-81.4561573,25.8523105],[-81.4568556,25.850115],[-81.4554569,25.8477059],[-81.4528182,25.84824],[-81.4487779,25.8475777],[-81.449746,25.850072],[-81.4478219,25.85044],[-81.4452988,25.8487225],[-81.4438288,25.8461062],[-81.4416807,25.8473518],[-81.4410318,25.8477281],[-81.4411601,25.8484881],[-81.4415201,25.8506211],[-81.4410279,25.8514715],[-81.4399864,25.8532713],[-81.4376159,25.8527392],[-81.4359376,25.8523625],[-81.4359943,25.8527733],[-81.4334965,25.8536817],[-81.4298681,25.8518837],[-81.4302929,25.8472764],[-81.4304403,25.8456777],[-81.4322567,25.8452633],[-81.433541,25.8449703],[-81.433903,25.8439204],[-81.4360935,25.8417401],[-81.4392767,25.8391063],[-81.4412036,25.8376368],[-81.4430603,25.8350429],[-81.4449336,25.8380412],[-81.4447482,25.8393082],[-81.4446419,25.8400354],[-81.4437638,25.8425173],[-81.444677,25.8420921],[-81.4458081,25.8415653],[-81.4466762,25.8413475],[-81.4477223,25.841085],[-81.449221,25.840135],[-81.449998,25.8396424],[-81.4504115,25.8403518],[-81.4539954,25.8403518],[-81.4557502,25.8394117],[-81.4567544,25.8388738],[-81.4567829,25.8382955],[-81.4568275,25.8373874],[-81.4566231,25.8363498],[-81.4565574,25.8360161],[-81.4549047,25.8348226],[-81.4542744,25.8349285],[-81.4524928,25.8352278],[-81.4537378,25.833058],[-81.4524732,25.8302112],[-81.4509856,25.8324926],[-81.4501888,25.8325653],[-81.4478132,25.8327819],[-81.4452263,25.8323268],[-81.4453886,25.8312603],[-81.4455537,25.8301747],[-81.4474496,25.8285999],[-81.4496046,25.8267474],[-81.4507213,25.8236313],[-81.4526067,25.8218382],[-81.4534084,25.8210757],[-81.4547534,25.8203535],[-81.4558154,25.8197834],[-81.4582314,25.8193354],[-81.4607909,25.8195809],[-81.4626056,25.822056],[-81.4620951,25.8241576],[-81.4631833,25.8270627],[-81.4635805,25.8291766],[-81.4634081,25.8304897],[-81.4633147,25.8312005],[-81.4648571,25.8332154],[-81.4657261,25.8343531],[-81.4659147,25.8346],[-81.4651771,25.8397458],[-81.4640006,25.8393238],[-81.4640518,25.8380067],[-81.4625684,25.8378532],[-81.4625356,25.8378054],[-81.4611021,25.8378574],[-81.4605127,25.8393399],[-81.4624421,25.8420771],[-81.4624378,25.8420818],[-81.4624335,25.8420866],[-81.4627558,25.8423513],[-81.4629776,25.8425335],[-81.462773,25.84371],[-81.4627346,25.8452062],[-81.4636046,25.8450436],[-81.4638983,25.8449888],[-81.4650492,25.8441192],[-81.4640773,25.8424435],[-81.4635658,25.8415617],[-81.4644866,25.840999],[-81.4649853,25.8418941],[-81.4662257,25.8421755],[-81.4665175,25.843176],[-81.4665837,25.8434031],[-81.4686554,25.844068],[-81.4687084,25.8440117],[-81.4694738,25.8431985],[-81.4689878,25.8415361],[-81.4692436,25.8401039],[-81.4684507,25.8392087],[-81.4669674,25.8385438],[-81.4670301,25.8375818],[-81.4670441,25.8373673],[-81.4666093,25.8356793],[-81.467654,25.8350706],[-81.4687648,25.8352105],[-81.4697872,25.8353393],[-81.4711161,25.8379939],[-81.473568,25.8379533],[-81.4758245,25.8398106],[-81.4775195,25.8426179],[-81.476883,25.8426602],[-81.4742983,25.8428318],[-81.4723216,25.8429756],[-81.4733274,25.8458609],[-81.4756373,25.8490726],[-81.4788049,25.8495861],[-81.481034,25.8505424],[-81.4783005,25.8533186],[-81.4746716,25.855599],[-81.4744647,25.8564677],[-81.4741372,25.8578427],[-81.4741029,25.8589326],[-81.47294,25.860981],[-81.4722982,25.8619182],[-81.4707762,25.8611772],[-81.4705134,25.8611321],[-81.4694679,25.8609527],[-81.4667337,25.8605852],[-81.4663319,25.8605565],[-81.4663109,25.8605291],[-81.4662957,25.8605092],[-81.4651777,25.8601595],[-81.465071,25.8601261],[-81.4648332,25.8600517],[-81.4617025,25.8590723],[-81.4613703,25.8565991],[-81.461966,25.8556735],[-81.4613559,25.8545955],[-81.4604064,25.8529176],[-81.4597206,25.8522627]]],[[[-81.5006836,25.8429548],[-81.5018026,25.8425216],[-81.5024728,25.8439118],[-81.5028795,25.8443184],[-81.5032218,25.8446608],[-81.5052607,25.8459091],[-81.5068003,25.8472406],[-81.5069131,25.847784],[-81.5071373,25.8488641],[-81.5054251,25.8494686],[-81.5053345,25.8495006],[-81.502835,25.847507],[-81.5010154,25.8469191],[-81.499893,25.8457427],[-81.4999346,25.8442863],[-81.4999747,25.8442151],[-81.5006836,25.8429548]]],[[[-81.4741006,25.8676859],[-81.4727102,25.8674541],[-81.4714743,25.8685356],[-81.4706646,25.8680318],[-81.4703156,25.8678146],[-81.4691054,25.8677116],[-81.4688994,25.8666302],[-81.4687582,25.866183],[-81.4685904,25.8656517],[-81.4690797,25.8641841],[-81.4690647,25.8635689],[-81.4690539,25.8631284],[-81.4688033,25.8629891],[-81.4700885,25.8625055],[-81.4702064,25.8626817],[-81.4702641,25.8627679],[-81.4711653,25.8633601],[-81.4723755,25.8627422],[-81.4733282,25.8634632],[-81.4722725,25.8655487],[-81.4728278,25.8659109],[-81.4740491,25.8667074],[-81.4755941,25.8676859],[-81.4768557,25.8686128],[-81.4773965,25.8695913],[-81.4785294,25.8704925],[-81.4784594,25.8712626],[-81.4784006,25.8719086],[-81.4773707,25.8706727],[-81.4760833,25.869102],[-81.4741006,25.8676859]]],[[[-81.710311,25.8951977],[-81.7099028,25.893927],[-81.7084898,25.894398],[-81.705929,25.8932735],[-81.703076,25.8909253],[-81.7015456,25.8897556],[-81.7025454,25.8889891],[-81.7041255,25.885582],[-81.702891,25.8854832],[-81.700832,25.8854553],[-81.6984357,25.8845249],[-81.69533,25.8842056],[-81.6929312,25.8857462],[-81.6950606,25.8877262],[-81.6979208,25.8923209],[-81.693492,25.8909603],[-81.6880535,25.8877148],[-81.685962,25.8858683],[-81.68401,25.8837813],[-81.682556,25.882222],[-81.6811913,25.8787586],[-81.6832394,25.8759195],[-81.6801565,25.8754958],[-81.6788747,25.8733923],[-81.6768008,25.8756846],[-81.6745106,25.8750396],[-81.6733677,25.8747177],[-81.6729094,25.8741193],[-81.671272,25.8719813],[-81.6697438,25.8688734],[-81.6696292,25.8673494],[-81.669524,25.8659498],[-81.670957,25.8621538],[-81.6725898,25.8574339],[-81.6735546,25.8559442],[-81.674405,25.8546313],[-81.6751359,25.8531654],[-81.6753589,25.8527182],[-81.6754555,25.8525631],[-81.6761456,25.8514556],[-81.6781948,25.8481669],[-81.678097,25.8452314],[-81.6802008,25.8441061],[-81.6823362,25.8459344],[-81.6853869,25.8496836],[-81.6870993,25.851396],[-81.6875511,25.8525387],[-81.6872549,25.8535824],[-81.6871445,25.8539714],[-81.6862356,25.8549338],[-81.6844445,25.8543457],[-81.6846024,25.8538299],[-81.6848455,25.8530358],[-81.6859148,25.8521804],[-81.6839366,25.8523675],[-81.6824395,25.8531695],[-81.6806752,25.8546397],[-81.6787237,25.8556289],[-81.6778148,25.8568051],[-81.6784029,25.8582487],[-81.6798465,25.858115],[-81.6806262,25.8575],[-81.6817445,25.856618],[-81.6818111,25.8574733],[-81.6819049,25.8586764],[-81.6805415,25.8596922],[-81.6793386,25.8590774],[-81.6799267,25.8604942],[-81.68037,25.8606218],[-81.681691,25.8610021],[-81.6804881,25.8621516],[-81.6803811,25.8631942],[-81.6810227,25.8641031],[-81.680996,25.8653328],[-81.6817729,25.8657528],[-81.6819851,25.8658674],[-81.6831613,25.8640229],[-81.6843375,25.8646645],[-81.6836158,25.8630338],[-81.6825465,25.8621249],[-81.6844712,25.8609486],[-81.6846026,25.8605647],[-81.6848187,25.8599328],[-81.685453,25.8587237],[-81.6856742,25.8583021],[-81.6851663,25.8569923],[-81.6852443,25.8565068],[-81.6854069,25.8554952],[-81.6862739,25.8554113],[-81.6870643,25.8553348],[-81.6883577,25.8540212],[-81.6896924,25.8556526],[-81.6900606,25.8568798],[-81.6905731,25.8585881],[-81.6914705,25.8594856],[-81.6920408,25.8600559],[-81.6931479,25.862503],[-81.6939,25.8641656],[-81.6977162,25.8691561],[-81.6976673,25.8704281],[-81.6990861,25.8721405],[-81.6999668,25.8730212],[-81.7004561,25.87444],[-81.704144,25.88071],[-81.7050637,25.8822736],[-81.706072,25.8846165],[-81.7067426,25.8861745],[-81.7087333,25.8897787],[-81.7102868,25.8925913],[-81.7111827,25.8937371],[-81.7120261,25.8948158],[-81.7152357,25.8988155],[-81.7158964,25.9007586],[-81.7160751,25.9012844],[-81.7124705,25.899013],[-81.7103111,25.8951979],[-81.7103111,25.8951978],[-81.710311,25.8951977]]],[[[-81.5778619,25.8655547],[-81.5780544,25.8644972],[-81.5801449,25.8654651],[-81.58041,25.8655878],[-81.5808034,25.866615],[-81.581431,25.8682538],[-81.58152,25.8686922],[-81.581799,25.8700663],[-81.5813346,25.8718435],[-81.5807582,25.8729439],[-81.5793434,25.874254],[-81.5798149,25.8724723],[-81.5795552,25.8715184],[-81.5791148,25.8699009],[-81.5784115,25.8683666],[-81.5777713,25.86697],[-81.5778237,25.8657647],[-81.5778619,25.8655547]]],[[[-81.5442289,25.8707322],[-81.5442975,25.8682623],[-81.5458069,25.8665471],[-81.5462529,25.8660374],[-81.5467674,25.8654493],[-81.5469905,25.8671886],[-81.5474535,25.8687425],[-81.5482017,25.8682534],[-81.5486443,25.867964],[-81.5500903,25.8688863],[-81.548404,25.8712716],[-81.5481971,25.8718487],[-81.5480451,25.8722728],[-81.5488257,25.8732021],[-81.5480024,25.8742998],[-81.5470419,25.8747801],[-81.5458755,25.873751],[-81.54547,25.8724869],[-81.5444215,25.8710044],[-81.5442289,25.8707322]]],[[[-81.5532934,25.8640263],[-81.5511746,25.8604114],[-81.5526928,25.8593097],[-81.5530391,25.8590585],[-81.5551462,25.8597377],[-81.557033,25.8613672],[-81.557033,25.8626536],[-81.5571975,25.8628885],[-81.5576333,25.8635111],[-81.5578452,25.8634862],[-81.5590912,25.8633396],[-81.5598648,25.8621106],[-81.5627768,25.8654728],[-81.5642714,25.8672607],[-81.5640605,25.8690484],[-81.563998,25.8695783],[-81.566094,25.8711056],[-81.5658023,25.873401],[-81.5628047,25.8754453],[-81.560664,25.8753873],[-81.5598114,25.8746768],[-81.5610091,25.8729818],[-81.559932,25.8728332],[-81.5596984,25.872801],[-81.5590204,25.8719422],[-81.5587266,25.8707219],[-81.5575617,25.8695421],[-81.5570425,25.8685653],[-81.5566926,25.8670376],[-81.556375,25.865651],[-81.5532934,25.8640263]]],[[[-81.5249998,25.8945836],[-81.5233556,25.8933622],[-81.5222752,25.8946775],[-81.5213357,25.8951003],[-81.5195976,25.8942078],[-81.5179065,25.8940457],[-81.5177656,25.8928925],[-81.5182823,25.8911544],[-81.5156047,25.889886],[-81.5143834,25.8903558],[-81.5130211,25.8904028],[-81.5123244,25.8898222],[-81.5121755,25.8896981],[-81.5121755,25.8884298],[-81.5107663,25.8884768],[-81.51133,25.8897451],[-81.5109072,25.8911544],[-81.5109792,25.8920186],[-81.5110012,25.8922818],[-81.5116118,25.8934562],[-81.5100147,25.8930334],[-81.5095919,25.8920469],[-81.5094811,25.8912716],[-81.50931,25.8900739],[-81.5085584,25.8891344],[-81.5081356,25.8881949],[-81.5087737,25.8872882],[-81.5088596,25.8867552],[-81.5089715,25.8860617],[-81.5099606,25.886576],[-81.5095254,25.8875256],[-81.510198,25.8882773],[-81.5109893,25.8870904],[-81.512295,25.8861012],[-81.5122256,25.8853378],[-81.5121763,25.8847955],[-81.5108707,25.8838459],[-81.5099211,25.8823424],[-81.5102583,25.8814431],[-81.5103959,25.8810763],[-81.5112663,25.8819072],[-81.5127303,25.8837668],[-81.5136403,25.8828172],[-81.514115,25.8832488],[-81.5145107,25.8836085],[-81.5155395,25.8836085],[-81.5169638,25.8819072],[-81.5164099,25.8800871],[-81.5154999,25.8794541],[-81.5148668,25.8784254],[-81.5139568,25.8779506],[-81.5114641,25.8780297],[-81.5095254,25.8773175],[-81.5076658,25.8773571],[-81.5066371,25.8761701],[-81.5054105,25.8758931],[-81.5041444,25.8758931],[-81.5031157,25.8747853],[-81.5017705,25.874627],[-81.5028586,25.8733037],[-81.5027587,25.873004],[-81.5025286,25.8723137],[-81.5021068,25.8720249],[-81.5017021,25.8717478],[-81.5021883,25.8718855],[-81.5038155,25.8723467],[-81.5038815,25.8711917],[-81.5069834,25.8708287],[-81.5061063,25.8703991],[-81.5053665,25.8700368],[-81.5047587,25.8694036],[-81.5045745,25.8692118],[-81.5037825,25.8685188],[-81.5033866,25.8675288],[-81.5021986,25.8680568],[-81.5008456,25.8678258],[-81.5019346,25.8667039],[-81.5021306,25.8664295],[-81.5029246,25.8653179],[-81.5029206,25.865245],[-81.5029167,25.8651739],[-81.5028871,25.8646285],[-81.502869,25.8642964],[-81.5035314,25.8631836],[-81.5022132,25.8621833],[-81.5014912,25.8631372],[-81.5009505,25.862265],[-81.5002556,25.8607488],[-81.4990237,25.8603698],[-81.4977603,25.8606225],[-81.4983604,25.8592643],[-81.4967495,25.8585378],[-81.4958335,25.8580324],[-81.4952965,25.859359],[-81.4939383,25.8597381],[-81.4935933,25.8600433],[-81.4931171,25.8604646],[-81.4934393,25.8606901],[-81.4940647,25.8611279],[-81.492896,25.862265],[-81.492738,25.8634653],[-81.4911903,25.8635284],[-81.4918852,25.8626757],[-81.4902427,25.8624229],[-81.4894531,25.8641602],[-81.4903375,25.864634],[-81.4920431,25.8651077],[-81.4933927,25.8652194],[-81.4925029,25.8667814],[-81.4940247,25.867093],[-81.4949115,25.8665298],[-81.4962656,25.8665178],[-81.4965202,25.8667503],[-81.4970837,25.8672649],[-81.4966217,25.8685188],[-81.4948728,25.8691788],[-81.4937838,25.8691458],[-81.4931568,25.8699708],[-81.4921999,25.8714557],[-81.4911025,25.871709],[-81.4876405,25.869978],[-81.4865372,25.8695398],[-81.4864857,25.8678146],[-81.4873869,25.866038],[-81.4859965,25.866038],[-81.4855904,25.8664909],[-81.485327,25.8667847],[-81.4848784,25.8663091],[-81.4827521,25.8640553],[-81.4817652,25.8648101],[-81.481439,25.8650595],[-81.4813212,25.8651047],[-81.4804033,25.8654567],[-81.4791216,25.8651625],[-81.4791305,25.8645925],[-81.4791474,25.8635146],[-81.477345,25.8628452],[-81.4770407,25.863177],[-81.4764953,25.8637721],[-81.4754653,25.8647248],[-81.4755864,25.8648149],[-81.4759633,25.8650954],[-81.4759791,25.8656961],[-81.4759854,25.865935],[-81.4741402,25.8651013],[-81.4746156,25.8643128],[-81.4745783,25.8642466],[-81.4746839,25.8639408],[-81.4748668,25.8634111],[-81.4754369,25.8600488],[-81.4770991,25.8581791],[-81.4784771,25.856629],[-81.479858,25.8555392],[-81.4804675,25.8537539],[-81.4832935,25.8533425],[-81.483471,25.8500139],[-81.4854575,25.847237],[-81.4872666,25.8460073],[-81.488258,25.8453333],[-81.4893223,25.8486503],[-81.4923385,25.847964],[-81.4948533,25.8481337],[-81.4960572,25.848215],[-81.4971072,25.8492407],[-81.4988944,25.8488218],[-81.5007252,25.8490715],[-81.5014903,25.8502191],[-81.5015574,25.8503198],[-81.5003507,25.8505278],[-81.500139,25.8503565],[-81.4994769,25.8498205],[-81.4982286,25.849654],[-81.4975036,25.8503833],[-81.497832,25.8516256],[-81.4978381,25.8516485],[-81.4965874,25.8527683],[-81.4951042,25.8526083],[-81.4958548,25.8521883],[-81.4963257,25.8519248],[-81.4958021,25.8508778],[-81.4942752,25.8504415],[-81.4935917,25.8519975],[-81.4923556,25.851125],[-81.4929227,25.8502961],[-81.4927587,25.8496772],[-81.4921967,25.8494474],[-81.4915775,25.8495624],[-81.4915777,25.8495504],[-81.4915778,25.849545],[-81.4915779,25.8495397],[-81.4897805,25.8498078],[-81.4887586,25.8502418],[-81.488753,25.8502753],[-81.4887379,25.850366],[-81.4876846,25.8510577],[-81.4875403,25.8532455],[-81.4882146,25.8559842],[-81.4889927,25.8563248],[-81.4893551,25.8564834],[-81.4894013,25.8565036],[-81.4892641,25.8572564],[-81.4892397,25.8573905],[-81.4892661,25.8574141],[-81.4892684,25.8574161],[-81.4892707,25.8574181],[-81.4890178,25.8585857],[-81.4870752,25.8573749],[-81.4866973,25.8592855],[-81.4879941,25.8603032],[-81.4889109,25.8604203],[-81.4901727,25.8605816],[-81.4906124,25.8602639],[-81.4918675,25.8593568],[-81.4920088,25.8589939],[-81.4921799,25.8585543],[-81.4923773,25.8578411],[-81.4926564,25.8568324],[-81.4934026,25.8552406],[-81.4939473,25.8561062],[-81.4940959,25.8564537],[-81.4944108,25.8571898],[-81.4955695,25.8563668],[-81.4945152,25.8547025],[-81.4954967,25.8541498],[-81.4958825,25.8549455],[-81.4959621,25.8551096],[-81.4969365,25.8548042],[-81.4970341,25.854096],[-81.497111,25.853539],[-81.4981144,25.852332],[-81.4986535,25.8522065],[-81.499376,25.8520383],[-81.5004203,25.8523562],[-81.5026335,25.8530301],[-81.502405,25.8537902],[-81.5019039,25.855457],[-81.5034044,25.8575485],[-81.506057,25.8589565],[-81.5083939,25.8594348],[-81.5088983,25.8588589],[-81.5113857,25.8560187],[-81.5111624,25.8555441],[-81.5106285,25.8544092],[-81.5102311,25.8525102],[-81.5086313,25.8524835],[-81.5096751,25.8518329],[-81.5113774,25.8516513],[-81.510462,25.8507359],[-81.5105036,25.8491131],[-81.5091809,25.8487986],[-81.5084232,25.849862],[-81.5083325,25.8492281],[-81.5082472,25.8486313],[-81.5083367,25.8478877],[-81.5084647,25.8468246],[-81.5070084,25.8455346],[-81.5040956,25.8435373],[-81.5038044,25.8408743],[-81.5039946,25.8401557],[-81.5049415,25.8365785],[-81.5052051,25.8355825],[-81.5053023,25.8352152],[-81.5078406,25.8334261],[-81.5081319,25.8359226],[-81.5079998,25.837243],[-81.5079654,25.8375871],[-81.5069668,25.8393763],[-81.506377,25.8402809],[-81.5061821,25.8405799],[-81.5063149,25.840657],[-81.5072395,25.8411933],[-81.5092521,25.841695],[-81.5095978,25.8438709],[-81.5096888,25.8456516],[-81.5100664,25.8467346],[-81.51027,25.8473184],[-81.5129035,25.8496281],[-81.513066,25.8485819],[-81.5132568,25.8473531],[-81.5120033,25.8437869],[-81.5121717,25.8428708],[-81.512448,25.8413677],[-81.514298,25.8403583],[-81.5165628,25.8411446],[-81.5189408,25.8401393],[-81.521971,25.8419076],[-81.5236379,25.8446948],[-81.5236558,25.8447247],[-81.5220016,25.8467712],[-81.519892,25.8479292],[-81.519871,25.8479407],[-81.519497,25.8498229],[-81.5194582,25.8526938],[-81.519447,25.8535167],[-81.5158531,25.8551616],[-81.5198695,25.8568793],[-81.520274,25.8594654],[-81.5197295,25.8604344],[-81.5193461,25.8611168],[-81.5182879,25.8627342],[-81.5171916,25.8626807],[-81.5169597,25.8621725],[-81.5167359,25.8616819],[-81.5172718,25.8606486],[-81.5163092,25.8594186],[-81.515106,25.8592314],[-81.5139562,25.8598197],[-81.5135283,25.8611031],[-81.513245,25.8621734],[-81.515507,25.8617717],[-81.5146351,25.8627183],[-81.5145712,25.8627877],[-81.5142151,25.8627446],[-81.5133975,25.8626455],[-81.5145979,25.8641514],[-81.5158526,25.8640005],[-81.5167338,25.8639746],[-81.5170846,25.8639643],[-81.5181008,25.8642851],[-81.516951,25.8663708],[-81.5168081,25.8665359],[-81.5157477,25.8677612],[-81.5156408,25.8688576],[-81.5166836,25.8692052],[-81.516951,25.8701945],[-81.5179403,25.8709432],[-81.5188227,25.8700341],[-81.5199725,25.8704352],[-81.5212827,25.8698201],[-81.5210688,25.8685367],[-81.5202666,25.867788],[-81.5192506,25.8678147],[-81.5184751,25.8669591],[-81.518689,25.8654884],[-81.5196227,25.8650758],[-81.5200604,25.8655186],[-81.5204271,25.8658895],[-81.5210153,25.8649536],[-81.5211895,25.8640917],[-81.5215285,25.8624133],[-81.5219854,25.8613781],[-81.522505,25.8602003],[-81.523215,25.8575173],[-81.52461,25.8575041],[-81.524507,25.8597423],[-81.5250401,25.8606832],[-81.5254405,25.8613898],[-81.5247094,25.8626946],[-81.5240417,25.863886],[-81.523294,25.8661823],[-81.5243904,25.8675674],[-81.524615,25.8678512],[-81.5262613,25.8658149],[-81.5269377,25.8666289],[-81.5279819,25.8678853],[-81.5287991,25.8682813],[-81.5301133,25.8689181],[-81.5307663,25.8705618],[-81.5313404,25.8720067],[-81.5307541,25.8738906],[-81.5299737,25.8747394],[-81.5288053,25.8750322],[-81.5276843,25.8750407],[-81.5272271,25.8754729],[-81.5267506,25.8759234],[-81.5275923,25.8772355],[-81.5278163,25.8776833],[-81.5282779,25.8786062],[-81.528632,25.8807508],[-81.5286815,25.8823599],[-81.5283597,25.8836224],[-81.5289457,25.8837839],[-81.5307858,25.8842909],[-81.5327662,25.8844394],[-81.5345981,25.8848107],[-81.5356131,25.8857019],[-81.5359919,25.8868796],[-81.5350525,25.8862689],[-81.533972,25.8857522],[-81.5327037,25.8869735],[-81.5318402,25.8866218],[-81.5314354,25.8864569],[-81.530261,25.8870675],[-81.5301123,25.8883314],[-81.5299791,25.8894633],[-81.5292275,25.8902149],[-81.5279592,25.8913423],[-81.5279092,25.8915823],[-81.5277244,25.8924697],[-81.5292276,25.8928925],[-81.5293258,25.8932528],[-81.5295094,25.8939259],[-81.5285229,25.8936441],[-81.5280532,25.8945836],[-81.5266909,25.8954761],[-81.5249998,25.8945836]]],[[[-81.535019,25.8743638],[-81.5339792,25.8737202],[-81.5328919,25.8740423],[-81.5333739,25.8732813],[-81.5347205,25.8711548],[-81.5346741,25.8684122],[-81.5372313,25.8664619],[-81.5372968,25.8659302],[-81.5376375,25.8631623],[-81.5372258,25.861137],[-81.5390263,25.8584606],[-81.5397318,25.8553323],[-81.5411323,25.8550378],[-81.5426495,25.8528905],[-81.5439799,25.8520268],[-81.5455905,25.8513499],[-81.5467809,25.8505096],[-81.5471195,25.8513765],[-81.5473644,25.8520035],[-81.5470843,25.8547577],[-81.5466071,25.856976],[-81.545243,25.8588053],[-81.5451936,25.8609126],[-81.5451795,25.8615118],[-81.5456668,25.8632376],[-81.543341,25.8647913],[-81.5416674,25.8669667],[-81.5413478,25.8693343],[-81.5411815,25.8705664],[-81.5406744,25.870947],[-81.5390989,25.8721293],[-81.539241,25.874826],[-81.537369,25.8750208],[-81.5360553,25.8751893],[-81.535019,25.8743638]]],[[[-81.5820827,25.8906979],[-81.5815991,25.8901512],[-81.5812955,25.889808],[-81.5796526,25.8899791],[-81.5791943,25.8889193],[-81.579105,25.8887127],[-81.5800291,25.8881309],[-81.5813297,25.8888497],[-81.5818468,25.8892147],[-81.5824934,25.8896711],[-81.5861907,25.8869617],[-81.586125,25.8858792],[-81.5860257,25.884244],[-81.5859955,25.8822418],[-81.58645,25.8817655],[-81.5877709,25.8803814],[-81.5903715,25.8806868],[-81.591924,25.8824777],[-81.5926495,25.8841363],[-81.5912385,25.8869419],[-81.5909995,25.8887714],[-81.59083,25.8900689],[-81.5885623,25.890826],[-81.5866134,25.8905575],[-81.5852276,25.8910347],[-81.5848207,25.8922038],[-81.5831095,25.89193],[-81.5838905,25.8909465],[-81.5820827,25.8906979]]],[[[-81.569282,25.8737824],[-81.5694852,25.8729019],[-81.5695964,25.8724199],[-81.5708541,25.8721579],[-81.5719545,25.8729963],[-81.5730026,25.8725771],[-81.5751214,25.8706728],[-81.5746062,25.8732458],[-81.5743308,25.8746214],[-81.5734015,25.8753913],[-81.5723653,25.8759091],[-81.5716925,25.8762453],[-81.5712733,25.8797039],[-81.5704349,25.8806995],[-81.5699632,25.8791274],[-81.5706969,25.8772933],[-81.5704349,25.8761405],[-81.5695808,25.8743935],[-81.569282,25.8737824]]],[[[-81.5554157,25.876078],[-81.55667,25.8743604],[-81.5581842,25.8742926],[-81.5598253,25.8755027],[-81.5588619,25.8786282],[-81.5579356,25.8797166],[-81.5576192,25.878112],[-81.556868,25.8782438],[-81.5566133,25.8782884],[-81.555653,25.877886],[-81.5554157,25.876078]]],[[[-81.5554157,25.876078],[-81.5541614,25.8760102],[-81.5537971,25.8760546],[-81.5527033,25.876188],[-81.5534704,25.8771183],[-81.55455,25.8785905],[-81.5554902,25.8798727],[-81.5558805,25.8822773],[-81.5560055,25.8843021],[-81.5537985,25.8862591],[-81.557073,25.8869192],[-81.5604852,25.8873534],[-81.5606495,25.8880143],[-81.5610167,25.8894907],[-81.5609857,25.8905206],[-81.5609493,25.891731],[-81.5594771,25.8931178],[-81.5583254,25.8942026],[-81.5574127,25.8948184],[-81.5579443,25.8953984],[-81.5581313,25.8956024],[-81.5578769,25.897438],[-81.556802,25.8981067],[-81.5566897,25.8981034],[-81.5552049,25.8980597],[-81.5533068,25.8973995],[-81.553044,25.8973081],[-81.5525273,25.8964156],[-81.5536547,25.8957579],[-81.5543535,25.8946914],[-81.5545472,25.8943957],[-81.5537486,25.893785],[-81.5527621,25.8932683],[-81.5517011,25.8936502],[-81.5515878,25.893691],[-81.5509771,25.8950533],[-81.5507644,25.8954645],[-81.5502725,25.8964156],[-81.5486283,25.8964626],[-81.5498497,25.8954761],[-81.5501059,25.8950918],[-81.5504134,25.8946305],[-81.5503347,25.894461],[-81.5498027,25.8933152],[-81.5486283,25.8928925],[-81.5484874,25.8914362],[-81.5485063,25.8908687],[-81.5485344,25.890027],[-81.547266,25.8901679],[-81.5461856,25.8901209],[-81.5451052,25.8902149],[-81.5443066,25.8909195],[-81.5443029,25.8908792],[-81.5442126,25.889886],[-81.5430852,25.8901209],[-81.5425215,25.8911074],[-81.5410184,25.8911074],[-81.5419108,25.8901679],[-81.5434141,25.8888526],[-81.543602,25.8871145],[-81.5443066,25.8858462],[-81.5437429,25.8847658],[-81.5428238,25.88471],[-81.5421927,25.8846718],[-81.5409052,25.8853477],[-81.5403137,25.8856583],[-81.5401258,25.8846718],[-81.5398386,25.8844006],[-81.5392802,25.8838732],[-81.5383407,25.8833095],[-81.5382783,25.8826436],[-81.5381998,25.8818063],[-81.5378949,25.8817571],[-81.5367436,25.8815715],[-81.5369531,25.8825891],[-81.5370724,25.8831686],[-81.5365087,25.8848127],[-81.534821,25.8842661],[-81.5337317,25.883573],[-81.5321721,25.8834492],[-81.530761,25.882756],[-81.5300679,25.8818896],[-81.5299441,25.8801319],[-81.5296965,25.8782505],[-81.5304887,25.8764186],[-81.5316275,25.8755769],[-81.5342441,25.875515],[-81.5353408,25.8755521],[-81.5361825,25.8763691],[-81.5350933,25.8766661],[-81.5338453,25.8769781],[-81.5321226,25.8778544],[-81.5334099,25.8790674],[-81.5350438,25.8789932],[-81.5361578,25.8781762],[-81.5391946,25.8793463],[-81.5384703,25.8772066],[-81.5414672,25.8769799],[-81.5425931,25.8798102],[-81.5427195,25.8808863],[-81.5437005,25.8827175],[-81.5437487,25.8828073],[-81.5455325,25.8834934],[-81.5469046,25.8841795],[-81.5475461,25.8840367],[-81.5484883,25.8838269],[-81.549992,25.8842481],[-81.5507571,25.883993],[-81.5518444,25.8836306],[-81.5516134,25.8829167],[-81.5514736,25.8824844],[-81.5512137,25.8801247],[-81.5507683,25.8792788],[-81.5502037,25.8782066],[-81.5503004,25.8764579],[-81.5499488,25.8740735],[-81.5508222,25.8729325],[-81.551909,25.8715123],[-81.5554785,25.8702128],[-81.5566474,25.871219],[-81.5566581,25.8712176],[-81.5566687,25.8712161],[-81.5579808,25.8710382],[-81.5582068,25.8731174],[-81.5570542,25.8737954],[-81.5554044,25.8725976],[-81.5542293,25.8739537],[-81.5549298,25.874948],[-81.5554157,25.876078]]],[[[-81.7019034,25.8975316],[-81.7031873,25.8968403],[-81.7041849,25.8975707],[-81.707553,25.8983903],[-81.7105447,25.9001981],[-81.7113771,25.9008224],[-81.7117298,25.9010869],[-81.7116839,25.9015],[-81.7115817,25.9024201],[-81.7106554,25.9025855],[-81.7101991,25.902667],[-81.706552,25.9019213],[-81.704015,25.9005799],[-81.7030885,25.9001981],[-81.7019034,25.8975316]]],[[[-81.602716,25.8957368],[-81.6008663,25.8953927],[-81.6004851,25.8957136],[-81.6000489,25.896081],[-81.6009953,25.8967262],[-81.6004361,25.8978447],[-81.6005137,25.8982911],[-81.6006081,25.8988341],[-81.5979411,25.8983609],[-81.5967537,25.898467],[-81.5971337,25.895289],[-81.5972013,25.8947234],[-81.5988214,25.8930316],[-81.6033283,25.8918676],[-81.6034285,25.8933188],[-81.6035798,25.8955095],[-81.6066617,25.8967004],[-81.6074444,25.8967204],[-81.6093712,25.8967697],[-81.6076537,25.8993417],[-81.608494,25.9016497],[-81.6081868,25.901412],[-81.6071898,25.9006408],[-81.6070655,25.9002402],[-81.6068026,25.8993933],[-81.6073049,25.8983889],[-81.6076308,25.8977373],[-81.6062677,25.8977276],[-81.6034043,25.8965541],[-81.602716,25.8957368]]],[[[-81.661949,25.892755],[-81.6632033,25.8905586],[-81.6612289,25.8892258],[-81.660963,25.8890463],[-81.6639767,25.8855711],[-81.6664852,25.8841456],[-81.667047,25.8838263],[-81.6697878,25.8826212],[-81.672993,25.8812118],[-81.6764547,25.8812963],[-81.6781983,25.8821558],[-81.6791925,25.8826458],[-81.679655,25.882994],[-81.6809985,25.8840051],[-81.6842574,25.8879217],[-81.6806308,25.8869248],[-81.679971,25.8867435],[-81.6778316,25.88778],[-81.6765168,25.8895727],[-81.676898,25.8906577],[-81.677093,25.8912126],[-81.6809762,25.8900401],[-81.6831474,25.8906165],[-81.6813855,25.8927723],[-81.678279,25.8941253],[-81.674828,25.8951183],[-81.672902,25.8959363],[-81.6708927,25.8975011],[-81.6688195,25.8985963],[-81.6664896,25.8993409],[-81.665878,25.8995363],[-81.6646979,25.8995461],[-81.6632155,25.8995583],[-81.6613516,25.8986883],[-81.6603615,25.8982261],[-81.6606803,25.8967957],[-81.661087,25.8949713],[-81.661949,25.892755]]],[[[-81.616323,25.8996262],[-81.6164681,25.8984346],[-81.6160574,25.8985222],[-81.6151897,25.8987073],[-81.6153674,25.8982136],[-81.6158151,25.8969699],[-81.6175902,25.8946683],[-81.6172811,25.893876],[-81.6168055,25.8926568],[-81.6173783,25.8908755],[-81.6189176,25.8929377],[-81.6206003,25.8929987],[-81.6199031,25.8937285],[-81.6195195,25.8941298],[-81.620487,25.8971213],[-81.6224229,25.8977588],[-81.6231022,25.8979825],[-81.6242539,25.8987569],[-81.6242539,25.900127],[-81.6225733,25.9007615],[-81.622308,25.9008616],[-81.6183945,25.9001027],[-81.616323,25.8996262]]],[[[-81.6839585,25.8941718],[-81.6875847,25.8939708],[-81.689184,25.8948329],[-81.691489,25.8960753],[-81.6921851,25.8966681],[-81.6934446,25.8977406],[-81.6921665,25.8978822],[-81.6910055,25.8980108],[-81.688459,25.8989298],[-81.684656,25.8982188],[-81.6795537,25.8965955],[-81.682082,25.8951343],[-81.6835963,25.8943576],[-81.6839585,25.8941718]]],[[[-81.6527817,25.8966951],[-81.6538604,25.8948516],[-81.6557867,25.8968566],[-81.656605,25.8978485],[-81.6582284,25.8998164],[-81.6552681,25.9012446],[-81.6550879,25.9010643],[-81.653466,25.8994423],[-81.6527817,25.8966951]]],[[[-81.6435479,25.9002994],[-81.6440118,25.8967913],[-81.6446054,25.8977452],[-81.6448236,25.8980959],[-81.6452888,25.898171],[-81.6466212,25.8983859],[-81.6468289,25.8986708],[-81.6476359,25.8997776],[-81.6471398,25.9004522],[-81.6469111,25.9007633],[-81.6466502,25.9019811],[-81.6463023,25.9031987],[-81.6440408,25.9022709],[-81.6435479,25.9002994]]],[[[-80.6317293,28.3102596],[-80.6297107,28.3108222],[-80.6293936,28.3109106],[-80.6276915,28.3094256],[-80.6273964,28.3085535],[-80.6268901,28.3070573],[-80.6293685,28.3031485],[-80.6319794,28.304318],[-80.6322775,28.3044515],[-80.6327962,28.3064532],[-80.6330504,28.3074341],[-80.633461,28.3085095],[-80.6337586,28.309289],[-80.6317293,28.3102596]]],[[[-80.6780669,28.3624913],[-80.6769689,28.3613933],[-80.675761,28.3627658],[-80.6741689,28.3610639],[-80.6770787,28.3593619],[-80.678012,28.3583188],[-80.6781218,28.3604051],[-80.6782865,28.3615031],[-80.6797688,28.3626011],[-80.6797688,28.3652913],[-80.6779022,28.3659501],[-80.6762551,28.3651815],[-80.6780669,28.3635344],[-80.6780669,28.3624913]]],[[[-80.5992862,28.5677356],[-80.5991828,28.5663915],[-80.6018433,28.5617801],[-80.6024924,28.5601356],[-80.6039716,28.5606272],[-80.6051244,28.5623122],[-80.6031735,28.5644405],[-80.6024641,28.567633],[-80.6037942,28.5670122],[-80.6053418,28.5688692],[-80.6035087,28.5696302],[-80.6030196,28.5704645],[-80.6029207,28.5706332],[-80.5994489,28.56985],[-80.5992862,28.5677356]]],[[[-80.7420382,28.7671425],[-80.7426538,28.7668716],[-80.7429474,28.7678501],[-80.7424255,28.7709813],[-80.7418166,28.7716403],[-80.7400445,28.773558],[-80.7363262,28.775515],[-80.7352619,28.7739417],[-80.7348258,28.7732971],[-80.7364042,28.7710927],[-80.7384463,28.7690569],[-80.7404655,28.7678344],[-80.7420382,28.7671425]]],[[[-80.8067551,28.8821855],[-80.8097885,28.8812285],[-80.8093597,28.8829195],[-80.8097127,28.8855525],[-80.8097926,28.8886038],[-80.8094979,28.8911504],[-80.808153,28.8893622],[-80.8075705,28.8881826],[-80.8067319,28.8864846],[-80.8062356,28.8856377],[-80.8052338,28.8839283],[-80.8055086,28.8836136],[-80.8067551,28.8821855]]],[[[-80.8166526,28.8902777],[-80.8169858,28.8888139],[-80.8199103,28.8890433],[-80.8187404,28.8907277],[-80.8167281,28.8936251],[-80.8161239,28.8936987],[-80.8150242,28.8938325],[-80.81455,28.8929466],[-80.8137169,28.8913901],[-80.8138646,28.8913341],[-80.8166526,28.8902777]]],[[[-80.8086912,28.8720144],[-80.8068815,28.8686237],[-80.8047846,28.8661168],[-80.8068799,28.8644735],[-80.8076746,28.8640999],[-80.8097321,28.8631325],[-80.8117678,28.8642183],[-80.8099236,28.8666131],[-80.8103576,28.8678804],[-80.8109674,28.8696609],[-80.8144252,28.8693029],[-80.8140616,28.8723495],[-80.8121719,28.8735451],[-80.8115849,28.8754621],[-80.8104679,28.877314],[-80.8094706,28.8755437],[-80.8091176,28.8749171],[-80.8089385,28.8736979],[-80.8086912,28.8720144]]],[[[-89.4204123,30.1389791],[-89.4211095,30.1350708],[-89.4230436,30.1336532],[-89.4251077,30.131273],[-89.4287398,30.1292182],[-89.4309014,30.1308079],[-89.4321854,30.1283625],[-89.4342832,30.1277512],[-89.4374817,30.1275488],[-89.4402048,30.1276418],[-89.4440041,30.1287725],[-89.4458974,30.1299628],[-89.4450157,30.1331915],[-89.4400314,30.1336305],[-89.4410537,30.1355279],[-89.4410671,30.1385025],[-89.4419087,30.1415604],[-89.4429428,30.1445035],[-89.4405231,30.1437557],[-89.4380593,30.1443209],[-89.436335,30.1439545],[-89.4348034,30.1419976],[-89.4330502,30.139843],[-89.4319359,30.1383895],[-89.4303407,30.1380237],[-89.4268626,30.1376981],[-89.4290105,30.1399071],[-89.4299787,30.1424672],[-89.4283275,30.1444273],[-89.4281917,30.1469668],[-89.4268984,30.1493196],[-89.4240771,30.1473951],[-89.4201891,30.1449184],[-89.4176715,30.1434166],[-89.4177103,30.1410446],[-89.4204123,30.1389791]]],[[[-89.1893146,30.1518841],[-89.1914514,30.1492482],[-89.193193,30.1510083],[-89.195537,30.151882],[-89.1979177,30.1492914],[-89.1990765,30.1457777],[-89.201616,30.1436368],[-89.2034172,30.1426858],[-89.2057791,30.1413212],[-89.2083574,30.1414582],[-89.2062173,30.1432179],[-89.2051817,30.1447575],[-89.2030238,30.1453898],[-89.2016195,30.1482469],[-89.1998945,30.1504807],[-89.1989292,30.152132],[-89.1980485,30.1546038],[-89.194793,30.1556803],[-89.1926125,30.1555591],[-89.1898496,30.1545443],[-89.1893146,30.1518841]]],[[[-84.215499,30.0869985],[-84.2172881,30.0844699],[-84.2193718,30.0851761],[-84.2212519,30.0877078],[-84.2203926,30.0904986],[-84.2182487,30.0900418],[-84.215499,30.0869985]]],[[[-84.2056233,30.0919183],[-84.2039533,30.0912307],[-84.2031183,30.0937848],[-84.2010063,30.093441],[-84.2004169,30.0907886],[-84.198796,30.0885784],[-84.2013992,30.087989],[-84.2030692,30.0853366],[-84.2057216,30.0843543],[-84.2085212,30.0852875],[-84.2096499,30.0868573],[-84.210593,30.0881461],[-84.2094299,30.0905352],[-84.2087383,30.0938044],[-84.2077953,30.0954076],[-84.2094928,30.0973252],[-84.2090527,30.0982682],[-84.2070968,30.0978124],[-84.2053777,30.0958968],[-84.2056233,30.0919183]]],[[[-89.2142471,30.1292698],[-89.2157538,30.1264683],[-89.2190038,30.1244165],[-89.2224801,30.1244216],[-89.2258554,30.1210683],[-89.2283363,30.1194313],[-89.2298915,30.1208871],[-89.231426,30.122881],[-89.2320172,30.1277789],[-89.2300023,30.1292228],[-89.2278437,30.1278819],[-89.2267522,30.1291402],[-89.2238289,30.1287054],[-89.2248128,30.1314906],[-89.2235714,30.1334067],[-89.2207297,30.1351853],[-89.2197511,30.1337028],[-89.2180227,30.1322741],[-89.2138339,30.1316505],[-89.2142471,30.1292698]]],[[[-89.3092071,30.055769],[-89.3108059,30.0540951],[-89.3123794,30.0570996],[-89.3108888,30.0593112],[-89.3095688,30.0617292],[-89.3079672,30.0603599],[-89.3076165,30.0581722],[-89.3072799,30.0562644],[-89.3092071,30.055769]]],[[[-89.1821651,30.0633647],[-89.1802591,30.0626647],[-89.1783885,30.0631664],[-89.1774548,30.0617391],[-89.1798733,30.059978],[-89.1823524,30.0588836],[-89.1844536,30.0586003],[-89.1881142,30.058642],[-89.1849323,30.060742],[-89.1879896,30.0629531],[-89.1858584,30.0633596],[-89.1841989,30.0630586],[-89.1821651,30.0633647]]],[[[-89.2273185,30.0636263],[-89.2288412,30.0670583],[-89.230345,30.0701802],[-89.2282004,30.073032],[-89.2271991,30.0757315],[-89.2270588,30.0777489],[-89.2282898,30.080411],[-89.2278977,30.0825151],[-89.225406,30.083264],[-89.2241044,30.0810403],[-89.2237262,30.0778986],[-89.2224485,30.0747323],[-89.2218469,30.072607],[-89.2211453,30.0707072],[-89.2236332,30.071037],[-89.225782,30.0687139],[-89.226625,30.065906],[-89.2255222,30.0641194],[-89.2273185,30.0636263]]],[[[-85.5276707,30.071363],[-85.527799,30.0713478],[-85.5304263,30.0731541],[-85.5299076,30.0733569],[-85.5303441,30.0753227],[-85.5263823,30.0759634],[-85.5263337,30.0734378],[-85.5276707,30.071363]]],[[[-89.2819792,30.0779936],[-89.2841818,30.0800448],[-89.2862074,30.0812102],[-89.2883532,30.0824345],[-89.2912103,30.0817106],[-89.2914196,30.0849895],[-89.2900434,30.0871363],[-89.2879732,30.0862637],[-89.2859569,30.0841413],[-89.2840152,30.0819161],[-89.2817434,30.0810124],[-89.2819792,30.0779936]]],[[[-88.8662078,30.0445682],[-88.8653473,30.0420149],[-88.8682199,30.0429888],[-88.8714139,30.0443072],[-88.8726235,30.0470428],[-88.8752695,30.0479206],[-88.8741128,30.0500757],[-88.8710191,30.0494585],[-88.8691348,30.0476151],[-88.8678148,30.0463545],[-88.8662078,30.0445682]]],[[[-89.3918511,30.0484238],[-89.3945455,30.045188],[-89.3968741,30.0445249],[-89.3997712,30.0440759],[-89.4021954,30.0436679],[-89.4054928,30.0441776],[-89.4053359,30.046942],[-89.4022156,30.0488877],[-89.3988437,30.0477934],[-89.3962274,30.0484332],[-89.3940627,30.0489207],[-89.3918511,30.0484238]]],[[[-89.2821849,30.0411734],[-89.283562,30.0393603],[-89.2851027,30.0397232],[-89.2867395,30.0419062],[-89.2872197,30.0451121],[-89.2874024,30.0486407],[-89.2857209,30.0467527],[-89.2844999,30.0449655],[-89.2831434,30.0430253],[-89.2821849,30.0411734]]],[[[-89.2990387,30.0448902],[-89.3000462,30.0422833],[-89.3023609,30.0423218],[-89.3056819,30.0421654],[-89.3058373,30.0452145],[-89.3037403,30.0470389],[-89.301488,30.0470004],[-89.300977,30.045241],[-89.2990387,30.0448902]]],[[[-95.0658583,29.7662955],[-95.0704664,29.764687],[-95.0710381,29.7655383],[-95.0729878,29.7645566],[-95.075031,29.7635567],[-95.077335,29.7642958],[-95.077335,29.7654653],[-95.077335,29.7654698],[-95.077335,29.7654743],[-95.077335,29.7664694],[-95.0754222,29.7671215],[-95.073466,29.7671649],[-95.0722862,29.767628],[-95.0729166,29.7686835],[-95.0705258,29.76895],[-95.0690342,29.769019],[-95.0690316,29.7690191],[-95.0690291,29.7690193],[-95.0649454,29.7692081],[-95.06325,29.7684256],[-95.0658583,29.7662955]]],[[[-95.0879397,29.7816002],[-95.0800738,29.7813369],[-95.0763786,29.7813804],[-95.078161,29.777294],[-95.0783784,29.7712079],[-95.0807693,29.7668171],[-95.0875076,29.7657738],[-95.093072,29.7690777],[-95.0959847,29.7680778],[-95.0980279,29.7665128],[-95.0997233,29.7742074],[-95.0974627,29.7786416],[-95.0908831,29.7808046],[-95.0879397,29.7816002]]],[[[-84.579254,29.8266965],[-84.5763225,29.8265221],[-84.5732452,29.8270943],[-84.572314,29.824575],[-84.572708,29.817656],[-84.574192,29.8141165],[-84.575526,29.8111485],[-84.578578,29.8074195],[-84.5805117,29.8063135],[-84.5854985,29.804563],[-84.587586,29.8035775],[-84.590423,29.8027185],[-84.592261,29.8014705],[-84.596017,29.7999575],[-84.6022645,29.7977145],[-84.6048727,29.7966255],[-84.6120485,29.793504],[-84.6169824,29.7912274],[-84.6224851,29.7892727],[-84.624561,29.7885353],[-84.6406896,29.78399],[-84.6541625,29.7804984],[-84.6697942,29.7768593],[-84.6743052,29.7799823],[-84.6745365,29.7864597],[-84.6729172,29.7868067],[-84.6697486,29.7851622],[-84.6654398,29.7829258],[-84.6642305,29.7823693],[-84.659752,29.7822193],[-84.6543974,29.7828123],[-84.6509127,29.7835996],[-84.6467872,29.785883],[-84.6451569,29.7887731],[-84.6421495,29.7898141],[-84.637719,29.7886326],[-84.6338046,29.7883399],[-84.6275302,29.789748],[-84.6230544,29.790963],[-84.6181689,29.7943455],[-84.6179664,29.7943087],[-84.615215,29.7964235],[-84.6118464,29.7995301],[-84.6097717,29.8015258],[-84.608258,29.8035495],[-84.60663,29.8065285],[-84.605147,29.808476],[-84.6027552,29.8113825],[-84.5974153,29.813475],[-84.595292,29.8144195],[-84.5907304,29.8153082],[-84.5888744,29.8128619],[-84.5878093,29.810572],[-84.5850935,29.8090477],[-84.5832651,29.8096371],[-84.5842675,29.8133312],[-84.5856655,29.8182623],[-84.583781,29.8211485],[-84.581648,29.8235181],[-84.5811902,29.8273822],[-84.579254,29.8266965]]],[[[-89.4686969,29.8153159],[-89.4678273,29.8127473],[-89.4716267,29.8144287],[-89.4732151,29.8164065],[-89.4761459,29.8173364],[-89.4744502,29.8182663],[-89.4724336,29.8201474],[-89.4711591,29.8171044],[-89.4686969,29.8153159]]],[[[-88.8551016,29.7888444],[-88.8550128,29.7858156],[-88.8570284,29.7823939],[-88.8595927,29.7810852],[-88.8617021,29.7827029],[-88.8597074,29.7829647],[-88.8599747,29.7859486],[-88.8620161,29.7885424],[-88.858248,29.7880768],[-88.8551016,29.7888444]]],[[[-88.8551016,29.7888444],[-88.8567124,29.7905145],[-88.8586392,29.7918756],[-88.8569535,29.7924002],[-88.8553422,29.7915842],[-88.8545506,29.7934781],[-88.8542578,29.7957599],[-88.8515848,29.7959893],[-88.8524962,29.7985834],[-88.8505378,29.7988358],[-88.8502652,29.8009516],[-88.8476992,29.802472],[-88.8478308,29.8002641],[-88.84891,29.7982428],[-88.8500598,29.7951656],[-88.8516066,29.7919394],[-88.8530591,29.7890009],[-88.8551016,29.7888444]]],[[[-89.4485456,29.7948455],[-89.451906,29.7948442],[-89.4550916,29.795261],[-89.4569716,29.7958409],[-89.4598173,29.7961634],[-89.4621819,29.7966664],[-89.4623773,29.7998423],[-89.4624377,29.8023966],[-89.4588818,29.8013082],[-89.4557238,29.7987386],[-89.4531717,29.7982881],[-89.4505686,29.7977012],[-89.4485456,29.7948455]]],[[[-95.0337748,29.7087563],[-95.0367985,29.7083285],[-95.0400807,29.7091977],[-95.0416539,29.7116865],[-95.0432614,29.7137088],[-95.0439324,29.7160081],[-95.0431604,29.7183192],[-95.0418209,29.7203884],[-95.0432847,29.7226001],[-95.0434812,29.7255556],[-95.0410698,29.7268408],[-95.0383376,29.7272268],[-95.0362897,29.7271503],[-95.0333755,29.727074],[-95.0293333,29.7264458],[-95.0258042,29.7248887],[-95.0247066,29.7223439],[-95.0248094,29.719907],[-95.024856,29.7169231],[-95.024852,29.7143024],[-95.0253064,29.7107314],[-95.0275005,29.709154],[-95.0301553,29.7088796],[-95.0337748,29.7087563]]],[[[-89.3235825,29.91391],[-89.3251234,29.9117274],[-89.3274942,29.9129748],[-89.3276065,29.9154872],[-89.3256671,29.9165257],[-89.3240878,29.9176545],[-89.3227136,29.9156892],[-89.3235825,29.91391]]],[[[-89.4292662,29.9325826],[-89.4264977,29.9294614],[-89.4226801,29.9299479],[-89.4222344,29.927947],[-89.4204446,29.9260082],[-89.4222777,29.9232654],[-89.4249334,29.924558],[-89.427033,29.9249649],[-89.4302164,29.9249375],[-89.4283523,29.926597],[-89.4302858,29.9275479],[-89.4318963,29.9283771],[-89.430877,29.9304184],[-89.4292662,29.9325826]]],[[[-89.2585815,29.9209536],[-89.2604584,29.918082],[-89.2618295,29.9203441],[-89.2636767,29.9232576],[-89.2629298,29.9252413],[-89.2608023,29.925786],[-89.2585777,29.9231476],[-89.2585815,29.9209536]]],[[[-89.3556819,29.9225281],[-89.3564028,29.920022],[-89.3582181,29.9200926],[-89.3602745,29.9200041],[-89.3612998,29.9227903],[-89.3601457,29.9250178],[-89.3600925,29.927523],[-89.3585188,29.9304666],[-89.3572689,29.9333752],[-89.3549037,29.9333404],[-89.3543096,29.9308481],[-89.3530039,29.9274634],[-89.352848,29.9244862],[-89.3556819,29.9225281]]],[[[-89.3809738,29.926305],[-89.3794113,29.9245444],[-89.3798316,29.9210769],[-89.3818948,29.9188887],[-89.3827249,29.9206832],[-89.3845464,29.9224211],[-89.3872259,29.9249574],[-89.3901562,29.9253781],[-89.3922615,29.9238026],[-89.3931117,29.9208754],[-89.3959241,29.9227009],[-89.3979118,29.9198302],[-89.3941082,29.9178342],[-89.3935078,29.9141023],[-89.3965483,29.911395],[-89.3981678,29.9129014],[-89.4017224,29.9153055],[-89.4044169,29.9158572],[-89.4079393,29.9167904],[-89.4099829,29.9147692],[-89.4116614,29.9139748],[-89.4122557,29.9158268],[-89.4145938,29.9182847],[-89.4160141,29.9202064],[-89.4168208,29.9226043],[-89.4137775,29.9232089],[-89.4120474,29.9251386],[-89.4089142,29.92333],[-89.405994,29.9240116],[-89.4026234,29.9234426],[-89.3993384,29.9264272],[-89.3972528,29.9255477],[-89.3942595,29.9268664],[-89.3927517,29.9272772],[-89.391331,29.928673],[-89.3927158,29.9323557],[-89.3914154,29.9337836],[-89.3894847,29.9353601],[-89.3868221,29.9370485],[-89.3861157,29.9390657],[-89.3860652,29.9406191],[-89.3881018,29.9424846],[-89.3864912,29.9438507],[-89.3848576,29.9426879],[-89.3828882,29.9422948],[-89.3807174,29.9410792],[-89.3806226,29.9379632],[-89.380895,29.9353341],[-89.3809192,29.9333194],[-89.3818347,29.9311462],[-89.3809738,29.926305]]],[[[-89.199449,29.9323304],[-89.2026659,29.9288241],[-89.2048401,29.9289312],[-89.2083426,29.9303499],[-89.2061339,29.931124],[-89.2035866,29.9316342],[-89.199449,29.9323304]]],[[[-89.4233099,29.93815],[-89.4203103,29.9387344],[-89.4184497,29.9381374],[-89.4165723,29.937758],[-89.4144671,29.9362074],[-89.4116774,29.9342259],[-89.4139156,29.9319086],[-89.416453,29.9329497],[-89.4191233,29.9345468],[-89.4204804,29.9361344],[-89.4218401,29.9341504],[-89.423337,29.9319264],[-89.4261896,29.932267],[-89.4251899,29.934514],[-89.4233099,29.93815]]],[[[-89.3616549,29.9663242],[-89.3589367,29.963955],[-89.3569349,29.9629187],[-89.3537696,29.9616521],[-89.3542474,29.9585116],[-89.3557129,29.9567631],[-89.3581407,29.9555196],[-89.3593471,29.9542846],[-89.3610214,29.9536202],[-89.3617759,29.951495],[-89.3630908,29.9489507],[-89.3654436,29.9512299],[-89.3674105,29.9530328],[-89.3648803,29.9546737],[-89.3633398,29.9561832],[-89.3625321,29.9582151],[-89.3612557,29.9622357],[-89.3616549,29.9663242]]],[[[-89.3228032,29.9534305],[-89.3222865,29.9514133],[-89.3198352,29.9519973],[-89.3192241,29.9491796],[-89.3205727,29.9486446],[-89.3220884,29.9480234],[-89.3241223,29.9465522],[-89.3262286,29.948048],[-89.3269281,29.9503941],[-89.3261614,29.9540629],[-89.3228032,29.9534305]]],[[[-89.2516788,29.9504761],[-89.2517272,29.9469785],[-89.2540801,29.949359],[-89.2562558,29.9470978],[-89.2582975,29.9492431],[-89.2564997,29.9504081],[-89.2559202,29.9519972],[-89.2537465,29.9524514],[-89.2504789,29.9543332],[-89.2477537,29.9554034],[-89.2464775,29.9571643],[-89.244849,29.9588122],[-89.2423328,29.9592866],[-89.244121,29.9567023],[-89.2457269,29.954715],[-89.247549,29.9529196],[-89.2496981,29.9516516],[-89.2516788,29.9504761]]],[[[-89.3095286,29.9259327],[-89.3124852,29.9255367],[-89.3103861,29.9281908],[-89.3092801,29.9304421],[-89.3078935,29.9323591],[-89.3062784,29.9289248],[-89.307769,29.9268937],[-89.3095286,29.9259327]]],[[[-89.2905692,29.922556],[-89.2882896,29.926132],[-89.2868634,29.9285341],[-89.2853666,29.9302258],[-89.2838205,29.9321043],[-89.2831551,29.9338982],[-89.280683,29.9337693],[-89.2799154,29.9304132],[-89.2773698,29.9326321],[-89.2751558,29.934994],[-89.2755141,29.9370368],[-89.2744291,29.9390584],[-89.2714615,29.9395916],[-89.269123,29.9375587],[-89.2659875,29.9375073],[-89.2643084,29.9366192],[-89.262552,29.9354318],[-89.2598526,29.9343823],[-89.2559056,29.9329385],[-89.2529466,29.9322685],[-89.2545416,29.9307802],[-89.2565772,29.9301781],[-89.2580887,29.9308507],[-89.2603237,29.9311115],[-89.2624307,29.930636],[-89.2642114,29.9306914],[-89.2664313,29.9311089],[-89.2695846,29.9311379],[-89.2725758,29.929815],[-89.2751744,29.9278735],[-89.2778915,29.9285825],[-89.2812781,29.9267462],[-89.2835711,29.9253684],[-89.2855884,29.923866],[-89.2882584,29.9229528],[-89.2905692,29.922556]]],[[[-89.2392825,29.9397293],[-89.2391834,29.9381251],[-89.2381458,29.9352876],[-89.2359891,29.9345545],[-89.2349776,29.9325557],[-89.2388294,29.9315577],[-89.2423013,29.931128],[-89.2442459,29.9321405],[-89.2464014,29.932187],[-89.2483897,29.9323199],[-89.2507856,29.9326576],[-89.2489871,29.9344826],[-89.2476999,29.936524],[-89.2472471,29.9401179],[-89.2449829,29.9386348],[-89.2429667,29.9411921],[-89.241716,29.9428868],[-89.2415129,29.9448814],[-89.243146,29.9467414],[-89.239078,29.9462005],[-89.2388307,29.9441132],[-89.2394027,29.9422244],[-89.2392825,29.9397293]]],[[[-89.3661602,29.8136692],[-89.3691279,29.812499],[-89.3717774,29.8124693],[-89.3732804,29.8105225],[-89.3754905,29.8110338],[-89.3778202,29.8103561],[-89.3796298,29.8108767],[-89.3806318,29.814135],[-89.3764199,29.8148934],[-89.3733009,29.8145519],[-89.3696476,29.8148552],[-89.3661602,29.8136692]]],[[[-89.3661602,29.8136692],[-89.3646259,29.8165296],[-89.3621264,29.8187296],[-89.3658708,29.81908],[-89.3672734,29.8171347],[-89.3719548,29.8179283],[-89.375146,29.8185977],[-89.3768339,29.8206066],[-89.3743145,29.8228981],[-89.3720308,29.822866],[-89.3682717,29.8258046],[-89.3659029,29.8267031],[-89.3627665,29.825893],[-89.3621302,29.8224656],[-89.3602277,29.8216716],[-89.3582624,29.8205384],[-89.3552127,29.8201924],[-89.3538377,29.8197946],[-89.3514957,29.8194486],[-89.3489647,29.8194873],[-89.3469455,29.8174618],[-89.3487234,29.8166998],[-89.3522868,29.8153978],[-89.3541545,29.8142636],[-89.3561768,29.811871],[-89.3587192,29.8103097],[-89.3602812,29.8114056],[-89.3627384,29.8126331],[-89.3661602,29.8136692]]],[[[-89.3822074,29.8181078],[-89.3836333,29.8152209],[-89.3873367,29.8155326],[-89.3894794,29.8157896],[-89.3905137,29.818043],[-89.3926604,29.8200385],[-89.3958413,29.8204989],[-89.393851,29.8219187],[-89.3901304,29.8216826],[-89.38779,29.8216518],[-89.3848729,29.8196356],[-89.3822074,29.8181078]]],[[[-89.4026669,29.9007315],[-89.4041087,29.9017376],[-89.4039028,29.9036441],[-89.4055859,29.9063192],[-89.4060909,29.9083563],[-89.4059369,29.9106305],[-89.4039279,29.912011],[-89.4020588,29.9111534],[-89.4009823,29.9086138],[-89.398771,29.9065146],[-89.4005075,29.9042069],[-89.4017808,29.9024914],[-89.4026669,29.9007315]]],[[[-89.2905692,29.922556],[-89.2926745,29.9205619],[-89.2959933,29.9186444],[-89.2991752,29.9160493],[-89.3010409,29.9144093],[-89.2987133,29.9139477],[-89.2990158,29.9119252],[-89.2992622,29.9092992],[-89.3012563,29.9096538],[-89.304049,29.9100672],[-89.3067291,29.9095177],[-89.3082712,29.9086392],[-89.3105505,29.9081732],[-89.3132047,29.905928],[-89.3148846,29.9041169],[-89.3163797,29.9025364],[-89.3194097,29.9016558],[-89.3185317,29.9043411],[-89.3184114,29.9062413],[-89.315748,29.9061742],[-89.3128995,29.9087389],[-89.3101426,29.9105636],[-89.3074204,29.9126306],[-89.3038555,29.9140196],[-89.3018656,29.9175983],[-89.2991092,29.9181639],[-89.2964194,29.9210631],[-89.2942019,29.9226931],[-89.2905692,29.922556]]],[[[-89.2452437,29.8250963],[-89.2478699,29.8232922],[-89.2519063,29.8238428],[-89.2542493,29.8235599],[-89.2556471,29.8254373],[-89.25406,29.8277994],[-89.2506056,29.8283501],[-89.2466274,29.827762],[-89.2452437,29.8250963]]],[[[-89.3205955,29.8334263],[-89.3189811,29.8321241],[-89.317347,29.8294196],[-89.3136827,29.8270888],[-89.313537,29.8245705],[-89.3168059,29.8240958],[-89.3188238,29.8249565],[-89.3204889,29.8252899],[-89.3195806,29.826613],[-89.3201829,29.8294408],[-89.3215832,29.8306818],[-89.3205955,29.8334263]]],[[[-89.3205955,29.8334263],[-89.3226631,29.8341022],[-89.3249766,29.8352985],[-89.3249104,29.8324693],[-89.3244954,29.8302148],[-89.3241902,29.8278259],[-89.3274423,29.8261588],[-89.3288657,29.8281906],[-89.3306715,29.8291931],[-89.3331373,29.8312028],[-89.3344243,29.8333037],[-89.3351204,29.8354198],[-89.3362669,29.8372057],[-89.3388364,29.8370049],[-89.3410799,29.8381527],[-89.3402951,29.8404193],[-89.3370933,29.8400982],[-89.333648,29.8393713],[-89.3306142,29.8405571],[-89.3284643,29.8415419],[-89.329276,29.8431163],[-89.3294151,29.8447277],[-89.3261279,29.8466822],[-89.3235851,29.84655],[-89.3245322,29.8441251],[-89.3239546,29.841925],[-89.3242832,29.8391633],[-89.3221912,29.8374764],[-89.3204249,29.8370145],[-89.320245,29.8354449],[-89.3205955,29.8334263]]],[[[-88.8621055,29.8495144],[-88.8630452,29.8468834],[-88.8656721,29.8484735],[-88.8655823,29.8537429],[-88.8644261,29.8562615],[-88.8662401,29.8570317],[-88.8668759,29.8606348],[-88.8697168,29.861824],[-88.8672468,29.8649006],[-88.865176,29.863102],[-88.8648137,29.8603906],[-88.8635636,29.8555434],[-88.8621055,29.8495144]]],[[[-89.3230206,29.8524034],[-89.3258855,29.8496191],[-89.3303531,29.8504396],[-89.3307265,29.8532837],[-89.3274934,29.8531641],[-89.3259037,29.8527866],[-89.3230206,29.8524034]]],[[[-89.333786,29.8536813],[-89.3354415,29.8529302],[-89.3371556,29.8535743],[-89.339796,29.8533316],[-89.3415822,29.8504005],[-89.3427702,29.8524297],[-89.3406953,29.8548499],[-89.3372295,29.8561584],[-89.33525,29.8552607],[-89.333786,29.8536813]]],[[[-88.83724,29.8672269],[-88.837966,29.8668946],[-88.8393497,29.8669615],[-88.840984,29.8665619],[-88.8418804,29.8659896],[-88.8430441,29.8666322],[-88.8393647,29.869999],[-88.8373696,29.8702048],[-88.8372045,29.8704689],[-88.8338218,29.8708447],[-88.8347614,29.8687775],[-88.83724,29.8672269]]],[[[-89.329586,29.8890329],[-89.3343658,29.8872949],[-89.3331007,29.8899475],[-89.3307111,29.8911193],[-89.3293037,29.8939731],[-89.326553,29.8948676],[-89.3235664,29.8940261],[-89.3229695,29.891943],[-89.3245793,29.8899171],[-89.3266769,29.889608],[-89.329586,29.8890329]]],[[[-88.8767902,29.8910523],[-88.8790956,29.8899616],[-88.8800878,29.890289],[-88.8812464,29.8904884],[-88.8812126,29.8925133],[-88.8797657,29.8935532],[-88.8777737,29.8929661],[-88.8767902,29.8910523]]],[[[-89.3045971,29.8790521],[-89.3017215,29.8784569],[-89.2996601,29.8787416],[-89.2982646,29.8776657],[-89.3010055,29.8750546],[-89.3028822,29.8741343],[-89.3047118,29.8743377],[-89.305672,29.875837],[-89.3076426,29.8756785],[-89.3114847,29.8758538],[-89.3080848,29.877482],[-89.3108287,29.8793966],[-89.3079564,29.8797807],[-89.3045971,29.8790521]]],[[[-88.8809024,29.8740428],[-88.8827293,29.8723038],[-88.8827181,29.8761337],[-88.8816512,29.8786005],[-88.8806726,29.8812154],[-88.8790599,29.8836363],[-88.8772197,29.8855948],[-88.8772006,29.8820311],[-88.8769758,29.8804016],[-88.8772954,29.8779856],[-88.8797459,29.8762656],[-88.8809024,29.8740428]]],[[[-89.2600577,29.8839576],[-89.2573462,29.882721],[-89.2531702,29.8842733],[-89.2500241,29.8846263],[-89.2477851,29.8844546],[-89.2447988,29.8849697],[-89.2418441,29.8851294],[-89.2421891,29.88109],[-89.2414892,29.8784075],[-89.2430882,29.876591],[-89.2448122,29.8766565],[-89.2479937,29.8763092],[-89.2505092,29.8765114],[-89.2528568,29.877393],[-89.2546401,29.8787168],[-89.2571711,29.8790304],[-89.2599547,29.8790646],[-89.2619532,29.8815141],[-89.2629087,29.8856226],[-89.2600577,29.8839576]]],[[[-89.2923272,29.8697089],[-89.28998,29.8677629],[-89.2876827,29.8671706],[-89.2864886,29.8655053],[-89.2831289,29.8663202],[-89.2805457,29.8665499],[-89.2805502,29.8684323],[-89.2799487,29.8699436],[-89.27758,29.8705016],[-89.2757771,29.8684028],[-89.2725157,29.8691694],[-89.2729186,29.8656221],[-89.2733192,29.8626726],[-89.271988,29.860387],[-89.2711868,29.8573279],[-89.2711141,29.8534609],[-89.2726888,29.8505489],[-89.2761089,29.8490309],[-89.2790071,29.8493839],[-89.2809582,29.8510289],[-89.2837312,29.8495376],[-89.2859251,29.8484244],[-89.2883876,29.849762],[-89.2859997,29.8515205],[-89.2830915,29.8523446],[-89.2816827,29.8542336],[-89.2785893,29.8532933],[-89.2765175,29.8521643],[-89.2753432,29.8537421],[-89.2740527,29.856509],[-89.2771356,29.8565172],[-89.2779683,29.8584126],[-89.2811617,29.8582516],[-89.2846616,29.856673],[-89.286699,29.8596575],[-89.2898123,29.8598488],[-89.2916872,29.8599711],[-89.2941254,29.8619379],[-89.2947334,29.8659059],[-89.2925462,29.8660961],[-89.2932304,29.8676588],[-89.2957298,29.8677838],[-89.2979292,29.8666176],[-89.3002219,29.8670951],[-89.2984221,29.870556],[-89.2991893,29.8722208],[-89.2972085,29.8721578],[-89.2943482,29.8718018],[-89.2923272,29.8697089]]],[[[-89.3062381,29.8671257],[-89.3036032,29.8670421],[-89.3057295,29.8656426],[-89.3080492,29.8651527],[-89.309819,29.8648403],[-89.3119175,29.8648237],[-89.3106988,29.8630235],[-89.3068997,29.8628347],[-89.3044734,29.8610944],[-89.3031497,29.8597486],[-89.3058771,29.85931],[-89.3067807,29.8573371],[-89.3100889,29.856877],[-89.3124914,29.8551131],[-89.3141974,29.8526923],[-89.3160979,29.8541162],[-89.3179758,29.8550751],[-89.3181689,29.8570541],[-89.3193247,29.8582474],[-89.3214504,29.8597666],[-89.3237504,29.8604516],[-89.3265543,29.8601641],[-89.3224309,29.864166],[-89.318508,29.864377],[-89.3171407,29.8660726],[-89.3155145,29.8661701],[-89.3138002,29.8671741],[-89.3121487,29.8671206],[-89.3091893,29.8674547],[-89.3062495,29.8699074],[-89.3062381,29.8671257]]],[[[-89.2640826,29.8739519],[-89.2613881,29.8732866],[-89.2596459,29.8735936],[-89.2576773,29.8734109],[-89.2586292,29.8713206],[-89.2593651,29.8686742],[-89.260583,29.866451],[-89.2630801,29.8668523],[-89.2652806,29.8693189],[-89.2663359,29.8719108],[-89.2639847,29.8722064],[-89.2640826,29.8739519]]],[[[-89.2831672,29.8785795],[-89.2838769,29.8754733],[-89.2833446,29.8725765],[-89.284951,29.8696657],[-89.2872941,29.8694491],[-89.2899982,29.8698598],[-89.2910684,29.8710166],[-89.2912767,29.8732297],[-89.2906185,29.876787],[-89.2909746,29.878863],[-89.2882672,29.8778656],[-89.2858486,29.8790124],[-89.2831672,29.8785795]]],[[[-88.857649,30.0343427],[-88.8555498,30.0319815],[-88.8537518,30.0296885],[-88.8522608,30.027284],[-88.8505268,30.024572],[-88.8485478,30.0211645],[-88.8464903,30.017986],[-88.8447588,30.0148015],[-88.8447018,30.0107057],[-88.8434522,30.0092767],[-88.8418131,30.0082599],[-88.8406103,30.0066955],[-88.8396672,30.0046062],[-88.8379403,30.000713],[-88.8366258,29.9975065],[-88.8344773,29.992031],[-88.8334145,29.9889992],[-88.8326028,29.986689],[-88.8319078,29.9844285],[-88.8301978,29.9795925],[-88.8294278,29.9769185],[-88.8282288,29.9731985],[-88.8271658,29.9694866],[-88.8266138,29.9673926],[-88.8257728,29.9645246],[-88.824752,29.9609858],[-88.8235818,29.9556331],[-88.8225998,29.9501826],[-88.8222258,29.9472466],[-88.8217088,29.9432596],[-88.8210152,29.9377474],[-88.8207349,29.9343404],[-88.8205658,29.9248211],[-88.8205198,29.9203271],[-88.8206639,29.9164431],[-88.8207658,29.9141696],[-88.8212868,29.9061866],[-88.8215125,29.903111],[-88.8218718,29.8982146],[-88.8236164,29.89304],[-88.8233708,29.8864656],[-88.8242457,29.8802198],[-88.8246018,29.8776776],[-88.8251438,29.8745656],[-88.8256982,29.8717614],[-88.8262779,29.8684257],[-88.8262244,29.864277],[-88.8274505,29.8623069],[-88.8279856,29.8596101],[-88.8284298,29.8574942],[-88.8291173,29.8544936],[-88.8311618,29.8457278],[-88.8324593,29.8411606],[-88.8331308,29.8385706],[-88.8339052,29.8357756],[-88.834824,29.8330117],[-88.8361846,29.8288048],[-88.8376572,29.8247781],[-88.8394324,29.819541],[-88.8405013,29.8171371],[-88.8433415,29.8102093],[-88.8441726,29.8083088],[-88.8451568,29.8060641],[-88.8473028,29.804824],[-88.8501159,29.8063686],[-88.8525088,29.8076348],[-88.8527529,29.8096045],[-88.8487603,29.8099935],[-88.845541,29.8110827],[-88.8497401,29.8122599],[-88.8464139,29.8133228],[-88.8444876,29.8140895],[-88.8443049,29.8167787],[-88.8409782,29.8199327],[-88.8426244,29.8224406],[-88.8406287,29.8232058],[-88.8405124,29.8252692],[-88.8414245,29.8276507],[-88.8398202,29.8293831],[-88.8397539,29.8335731],[-88.8381803,29.8355665],[-88.8371991,29.8379182],[-88.8390797,29.8384504],[-88.8364321,29.839927],[-88.8357263,29.8424768],[-88.8343684,29.8448106],[-88.8362664,29.8463173],[-88.8349658,29.8485973],[-88.8367315,29.8495027],[-88.8352589,29.8507451],[-88.8328867,29.8507706],[-88.8329165,29.8535014],[-88.8353015,29.8531219],[-88.834272,29.8550805],[-88.8319247,29.855773],[-88.8331409,29.8576093],[-88.8315157,29.8598113],[-88.8297894,29.8624856],[-88.8293953,29.8651176],[-88.8289705,29.8670928],[-88.8312498,29.8684189],[-88.8309735,29.87056],[-88.8297116,29.8730347],[-88.8315926,29.8748647],[-88.8333951,29.8767049],[-88.8311248,29.8784417],[-88.8288062,29.8788997],[-88.8286152,29.8808706],[-88.8285508,29.8815356],[-88.8273353,29.884444],[-88.8295009,29.8865308],[-88.8299365,29.8886914],[-88.8282048,29.8908266],[-88.8282123,29.8934535],[-88.8275983,29.8949549],[-88.8281709,29.8976469],[-88.8264587,29.9005574],[-88.8281109,29.9026627],[-88.8256747,29.9039242],[-88.8259982,29.9057095],[-88.8274429,29.9087608],[-88.8262029,29.9102799],[-88.8242996,29.9124168],[-88.8259044,29.9150435],[-88.8252771,29.9169231],[-88.8231842,29.917928],[-88.8257445,29.9191114],[-88.8261404,29.9217917],[-88.8270308,29.9233972],[-88.8259793,29.9247496],[-88.824419,29.9262636],[-88.8253392,29.9285471],[-88.8270991,29.9307504],[-88.8297936,29.9342658],[-88.8300127,29.9371852],[-88.8285572,29.9414283],[-88.8261056,29.9435132],[-88.8291067,29.9448733],[-88.8318042,29.9465909],[-88.8344473,29.9461006],[-88.8358094,29.9479867],[-88.8381458,29.9491382],[-88.8376355,29.9513511],[-88.8345174,29.9526244],[-88.8313353,29.9516353],[-88.8316469,29.954584],[-88.8287837,29.9536818],[-88.827752,29.9557672],[-88.8304102,29.9568086],[-88.8322081,29.957997],[-88.8333139,29.9600434],[-88.831427,29.9613577],[-88.8308956,29.9630735],[-88.8326654,29.9639888],[-88.8358874,29.9645521],[-88.8379023,29.9633638],[-88.8407684,29.9631683],[-88.8397831,29.9660471],[-88.8389153,29.9674916],[-88.8360485,29.9695602],[-88.8363402,29.9724948],[-88.8343273,29.9754041],[-88.8372719,29.975433],[-88.8365803,29.9797537],[-88.8353704,29.981928],[-88.8354276,29.9842089],[-88.8374909,29.9857259],[-88.8398276,29.9860684],[-88.8381481,29.98851],[-88.8402639,29.9891286],[-88.8429277,29.9906192],[-88.8399801,29.9927503],[-88.8402122,29.9950828],[-88.8419968,29.9972481],[-88.8413403,29.9989954],[-88.8416051,30.0016887],[-88.8441205,30.0027057],[-88.8459897,30.0038353],[-88.8460666,30.0070559],[-88.8478004,30.0076086],[-88.8495103,30.0066804],[-88.8506277,30.0089973],[-88.8484507,30.0095277],[-88.8473383,30.0110756],[-88.8501421,30.0124232],[-88.8527421,30.0124137],[-88.8519628,30.0142699],[-88.8518522,30.0167891],[-88.852175,30.0199018],[-88.8542368,30.0198673],[-88.8534172,30.0224433],[-88.854451,30.0245435],[-88.8561293,30.0265728],[-88.8579928,30.0254553],[-88.8583776,30.027498],[-88.8579741,30.0292142],[-88.8598014,30.0297986],[-88.8610892,30.0332275],[-88.8629048,30.0335125],[-88.8653693,30.0332485],[-88.8648413,30.0350972],[-88.8639728,30.0369163],[-88.8656736,30.0378004],[-88.8631046,30.0390458],[-88.8614928,30.0391163],[-88.8597582,30.0351731],[-88.857649,30.0343427]]],[[[-81.2344072,29.708263],[-81.2347267,29.7059599],[-81.2371617,29.7073769],[-81.2393773,29.7090003],[-81.2408568,29.7114621],[-81.2435894,29.7141926],[-81.2446399,29.7171839],[-81.2425134,29.7174133],[-81.2383571,29.7152253],[-81.23577,29.7122658],[-81.2337639,29.7105147],[-81.2344072,29.708263]]],[[[-89.639978,29.7157526],[-89.6395648,29.7155766],[-89.6379813,29.7158492],[-89.6339813,29.7161475],[-89.6311608,29.7140013],[-89.6329371,29.7126885],[-89.6365266,29.7139286],[-89.6374678,29.7131966],[-89.637323,29.7128505],[-89.6393824,29.7131494],[-89.6397982,29.7132098],[-89.6407035,29.7140013],[-89.6422648,29.7140013],[-89.6435099,29.7152351],[-89.6423351,29.7151686],[-89.6410273,29.7162092],[-89.639978,29.7157526]]],[[[-89.6009335,29.7104542],[-89.6001624,29.7087578],[-89.6015503,29.7081409],[-89.6016921,29.7070069],[-89.6018588,29.7062902],[-89.6023961,29.7064883],[-89.6025348,29.7060619],[-89.603525,29.7061411],[-89.6036639,29.7064948],[-89.6046303,29.7063191],[-89.6051885,29.7077254],[-89.6031572,29.7080947],[-89.6026191,29.709394],[-89.602517,29.7088706],[-89.6009335,29.7104542]]],[[[-81.2699919,29.8747214],[-81.2687866,29.8686621],[-81.2684192,29.8671132],[-81.2674615,29.8637925],[-81.2656321,29.85954],[-81.2652119,29.8558098],[-81.2652788,29.8517557],[-81.2650258,29.8472861],[-81.2646486,29.8437736],[-81.2644407,29.8410406],[-81.2641735,29.8391424],[-81.263854,29.8365188],[-81.263461,29.8337003],[-81.2630262,29.8308956],[-81.2628924,29.8288303],[-81.2626875,29.8268806],[-81.262466,29.8250546],[-81.2622645,29.8225762],[-81.2620449,29.8203598],[-81.2618816,29.8184051],[-81.2616816,29.8160912],[-81.2613209,29.8131543],[-81.260732,29.8096295],[-81.260297,29.8068542],[-81.2597698,29.8040004],[-81.2591195,29.8003402],[-81.2584957,29.7971042],[-81.2581152,29.7949807],[-81.257706,29.7927957],[-81.2570713,29.7901383],[-81.2562415,29.787444],[-81.2555367,29.7843486],[-81.2547167,29.78137],[-81.2540557,29.7787789],[-81.2532444,29.7762923],[-81.2525102,29.7741705],[-81.2518114,29.7718013],[-81.2508569,29.7689461],[-81.2497112,29.7656827],[-81.2488449,29.7633318],[-81.2480896,29.761231],[-81.2470782,29.7579179],[-81.245945,29.7548492],[-81.2450974,29.7525077],[-81.244477,29.750865],[-81.2433956,29.7480339],[-81.2424814,29.7455321],[-81.2415756,29.743213],[-81.2406212,29.7407922],[-81.2394843,29.7381783],[-81.2381817,29.7349206],[-81.2369498,29.7321876],[-81.2359154,29.7298564],[-81.2343485,29.7264632],[-81.2327691,29.7232462],[-81.2311468,29.7198125],[-81.2311464,29.7198116],[-81.231146,29.7198108],[-81.2296984,29.7172309],[-81.2284418,29.7150094],[-81.2266374,29.7118481],[-81.2266359,29.7118455],[-81.2266345,29.7118429],[-81.2264977,29.7084285],[-81.2282368,29.7063137],[-81.2282372,29.7063132],[-81.2282376,29.7063127],[-81.2286394,29.7058242],[-81.231372,29.7072452],[-81.2313716,29.707247],[-81.2313712,29.7072488],[-81.2310131,29.7088034],[-81.2300884,29.7107594],[-81.2300903,29.7107613],[-81.2300923,29.7107631],[-81.2314127,29.7120268],[-81.2371652,29.7164269],[-81.2423026,29.7188316],[-81.2435507,29.7207395],[-81.2435514,29.7207411],[-81.2435521,29.7207426],[-81.2461283,29.7265923],[-81.2450239,29.7273112],[-81.2428686,29.7306581],[-81.2421872,29.7343608],[-81.2421888,29.7343633],[-81.2421904,29.7343657],[-81.2440547,29.7373211],[-81.2440549,29.7373217],[-81.244055,29.7373224],[-81.2444557,29.7393317],[-81.2441404,29.7411159],[-81.2442644,29.7437068],[-81.2442659,29.7437094],[-81.2442673,29.7437121],[-81.2455104,29.7458909],[-81.246566,29.7478164],[-81.2485761,29.7504363],[-81.2485765,29.7504377],[-81.2485769,29.7504391],[-81.2493067,29.7529157],[-81.249336,29.7555049],[-81.2501796,29.7590445],[-81.2501807,29.7590456],[-81.2501818,29.7590467],[-81.2517793,29.7606562],[-81.2533562,29.7622985],[-81.2533572,29.7623008],[-81.2533582,29.7623031],[-81.2547511,29.7654709],[-81.2547525,29.7654733],[-81.2547538,29.7654757],[-81.2564728,29.7685923],[-81.2571175,29.76927],[-81.2571197,29.7692723],[-81.257122,29.7692747],[-81.2586049,29.7708336],[-81.2611045,29.7734818],[-81.2611058,29.7734844],[-81.2611071,29.773487],[-81.2620198,29.7752914],[-81.26202,29.7752918],[-81.2620203,29.7752921],[-81.2638056,29.7776866],[-81.2663499,29.7805894],[-81.2663499,29.7805905],[-81.2663499,29.7805916],[-81.2663499,29.7833221],[-81.2669774,29.7860338],[-81.2676363,29.7877844],[-81.268021,29.7892244],[-81.2680223,29.7892267],[-81.2680237,29.7892291],[-81.269127,29.7910919],[-81.2704597,29.7934783],[-81.2704598,29.7934785],[-81.2704598,29.7934787],[-81.2710422,29.795765],[-81.2710436,29.7957672],[-81.2710449,29.7957695],[-81.2727399,29.7986026],[-81.2727402,29.7986034],[-81.2727405,29.7986042],[-81.2742452,29.8025526],[-81.2748588,29.8045134],[-81.2751328,29.8061048],[-81.2751694,29.8063169],[-81.2751706,29.8063179],[-81.2751718,29.806319],[-81.2784364,29.8091516],[-81.2794812,29.8100582],[-81.2816287,29.8115419],[-81.2851359,29.813965],[-81.2875087,29.8138548],[-81.2882182,29.8138219],[-81.2905279,29.8152804],[-81.290529,29.8152829],[-81.29053,29.8152854],[-81.2912189,29.8169118],[-81.2912314,29.8169596],[-81.2922227,29.8207694],[-81.2926267,29.8219754],[-81.2935142,29.8246248],[-81.2949029,29.8272746],[-81.2981767,29.8296128],[-81.2999312,29.8311745],[-81.3012184,29.832947],[-81.3000944,29.8344358],[-81.2983751,29.8403034],[-81.2983765,29.8449706],[-81.2997565,29.8493078],[-81.2999068,29.8497801],[-81.2999078,29.8497815],[-81.2999089,29.8497829],[-81.3026197,29.8534178],[-81.3060013,29.8550557],[-81.3060024,29.8550583],[-81.3060034,29.8550609],[-81.3063568,29.8559189],[-81.3073985,29.8584483],[-81.3066603,29.8602087],[-81.3064949,29.8606031],[-81.3058002,29.8628413],[-81.3051441,29.8656092],[-81.3043029,29.8680881],[-81.3032695,29.8704594],[-81.3019071,29.8712298],[-81.3017289,29.8713305],[-81.3009038,29.8734601],[-81.3004516,29.8748966],[-81.300356,29.8752003],[-81.2996361,29.8768358],[-81.2988503,29.8800749],[-81.2982945,29.8832325],[-81.3006601,29.8881802],[-81.3006604,29.8881805],[-81.3006607,29.8881808],[-81.3018491,29.8893138],[-81.3037302,29.891234],[-81.3037311,29.8912362],[-81.3037319,29.8912383],[-81.3044131,29.8929706],[-81.3044141,29.8929733],[-81.3044152,29.892976],[-81.3048079,29.8939748],[-81.3046202,29.8977618],[-81.3026485,29.9001331],[-81.3004345,29.9007188],[-81.2977108,29.8991376],[-81.2977107,29.8991375],[-81.2977106,29.8991375],[-81.296292,29.8963901],[-81.2948194,29.8934129],[-81.2948181,29.8934102],[-81.2948168,29.8934076],[-81.2929303,29.8917036],[-81.2903971,29.8901403],[-81.2878255,29.888653],[-81.2860907,29.8868764],[-81.2847876,29.8849232],[-81.2831891,29.8833834],[-81.2815632,29.8811273],[-81.2798263,29.8792011],[-81.2775565,29.8769186],[-81.2765524,29.8755661],[-81.2759034,29.8746919],[-81.2750898,29.8723725],[-81.2736054,29.8702903],[-81.2726594,29.8728642],[-81.2733277,29.8756964],[-81.2747796,29.8777659],[-81.2763187,29.8793869],[-81.2755321,29.8810476],[-81.2787333,29.8828177],[-81.2804265,29.8845723],[-81.2825511,29.8854685],[-81.2834235,29.888389],[-81.2854319,29.890411],[-81.2857932,29.8933059],[-81.2881117,29.8958578],[-81.2903376,29.8958718],[-81.2896226,29.8989091],[-81.2910972,29.9017196],[-81.293113,29.9049364],[-81.291002,29.9070017],[-81.2883506,29.9076326],[-81.2857605,29.9081701],[-81.2834575,29.908637],[-81.2794438,29.9089636],[-81.2780389,29.9071925],[-81.2773163,29.9046494],[-81.275669,29.9009342],[-81.2750913,29.8979258],[-81.2749008,29.8955481],[-81.2747783,29.8933613],[-81.27452,29.8914413],[-81.2740325,29.8891621],[-81.2735403,29.8868466],[-81.2726491,29.8835198],[-81.2719847,29.8813638],[-81.2715779,29.8797946],[-81.2706344,29.8773776],[-81.2699919,29.8747214]]],[[[-88.8727076,29.7581646],[-88.8743539,29.7571905],[-88.8741158,29.7597661],[-88.8727696,29.7615098],[-88.8719865,29.7637871],[-88.8720323,29.7661261],[-88.8718386,29.7679206],[-88.8698035,29.7682108],[-88.8666754,29.7685928],[-88.8679665,29.7642794],[-88.8692672,29.7624817],[-88.8708816,29.760254],[-88.8727076,29.7581646]]],[[[-89.3485704,29.788467],[-89.3487532,29.7916887],[-89.3518554,29.7914656],[-89.3549944,29.7932362],[-89.3527622,29.7974841],[-89.3495082,29.7977061],[-89.347378,29.7968946],[-89.3462607,29.7945825],[-89.3418265,29.7915631],[-89.3430432,29.7892687],[-89.3406921,29.7871178],[-89.3375977,29.7846721],[-89.3345682,29.7829466],[-89.3299362,29.7824446],[-89.3282462,29.7830506],[-89.3261104,29.7842323],[-89.3244048,29.785694],[-89.3218277,29.7839252],[-89.3188107,29.7842676],[-89.3140687,29.7851866],[-89.311333,29.7880134],[-89.30978,29.7903999],[-89.3087407,29.7925797],[-89.3081747,29.7947246],[-89.3072959,29.7963011],[-89.30515,29.7978186],[-89.300776,29.7968238],[-89.2988272,29.7990302],[-89.2959171,29.7984484],[-89.2960413,29.7959182],[-89.2984014,29.7945565],[-89.2986739,29.7927621],[-89.2978742,29.7888035],[-89.2995039,29.7877138],[-89.2989972,29.7857259],[-89.2962938,29.7836556],[-89.2928239,29.7851334],[-89.2939544,29.7830204],[-89.2956263,29.7799995],[-89.294229,29.7789176],[-89.2925234,29.7777766],[-89.2935863,29.7758743],[-89.2931056,29.7720949],[-89.2927866,29.7687741],[-89.2908555,29.766161],[-89.2882223,29.7651573],[-89.2869589,29.7631386],[-89.2903429,29.7618209],[-89.2930111,29.7623092],[-89.2955699,29.7620478],[-89.2970657,29.7604316],[-89.2990014,29.7603829],[-89.3027938,29.7599504],[-89.3055504,29.7592004],[-89.3059307,29.7609076],[-89.3070939,29.7632203],[-89.3094377,29.7632299],[-89.3115074,29.7636083],[-89.3139955,29.7633969],[-89.3146578,29.7650009],[-89.3156867,29.7663596],[-89.3176052,29.7693097],[-89.3207832,29.7712896],[-89.3244913,29.7745956],[-89.3266963,29.7769231],[-89.3293237,29.7783533],[-89.3322558,29.7796924],[-89.3346201,29.7801817],[-89.3364054,29.7810938],[-89.3382545,29.7818918],[-89.3398287,29.7828736],[-89.3420232,29.7842096],[-89.3434117,29.7859779],[-89.3455087,29.7877486],[-89.3485704,29.788467]]],[[[-89.6220078,29.7214186],[-89.624051,29.7176738],[-89.6253012,29.7169511],[-89.6256946,29.7168263],[-89.6258196,29.7175076],[-89.6264747,29.7180043],[-89.627768,29.7190906],[-89.6274595,29.7204786],[-89.6263193,29.719507],[-89.6254949,29.7194143],[-89.6243076,29.7221085],[-89.6220078,29.7214186]]],[[[-84.9747237,29.7339762],[-84.9771312,29.7333517],[-84.9783579,29.7334055],[-84.9802897,29.7335741],[-84.9841731,29.7365165],[-84.9816144,29.737219],[-84.9749685,29.7367486],[-84.9728136,29.7353883],[-84.9747237,29.7339762]]],[[[-84.9713724,29.7295027],[-84.9743309,29.7280849],[-84.9780796,29.7313913],[-84.9758092,29.7327977],[-84.9745581,29.7330201],[-84.9728471,29.7326043],[-84.9713724,29.7295027]]],[[[-88.9159318,29.7181416],[-88.9177783,29.717636],[-88.9201557,29.718082],[-88.9186629,29.7196191],[-88.9167111,29.7210958],[-88.9135759,29.7233426],[-88.9121071,29.7249555],[-88.9093276,29.7249773],[-88.9072488,29.7268349],[-88.9044245,29.7286707],[-88.9019931,29.7314112],[-88.8995277,29.7332313],[-88.897478,29.7344879],[-88.895406,29.736387],[-88.893041,29.737516],[-88.8904232,29.7397506],[-88.8881154,29.7414512],[-88.8878244,29.7434148],[-88.8859025,29.7441962],[-88.8842715,29.7466486],[-88.8813191,29.7482901],[-88.8828218,29.7452726],[-88.8845103,29.7433521],[-88.8860688,29.7415647],[-88.8875493,29.7398481],[-88.8890318,29.7383021],[-88.8903789,29.7367126],[-88.8915468,29.7357076],[-88.8937178,29.7338056],[-88.8969208,29.7308297],[-88.8999675,29.7285529],[-88.9015383,29.7272042],[-88.9030922,29.7259991],[-88.9064327,29.7235209],[-88.9080038,29.7227286],[-88.9100458,29.7214055],[-88.9135908,29.7192791],[-88.9159318,29.7181416]]],[[[-89.4304764,29.7188441],[-89.4302081,29.7168562],[-89.4321814,29.7172324],[-89.4346859,29.7174186],[-89.4368568,29.7183884],[-89.4371833,29.72033],[-89.4371414,29.7222112],[-89.4385857,29.7238424],[-89.4366423,29.7249457],[-89.4331335,29.7253036],[-89.4309006,29.7272142],[-89.4300358,29.725328],[-89.4303334,29.7225524],[-89.432005,29.7223291],[-89.432454,29.7205686],[-89.4304764,29.7188441]]],[[[-89.5241665,29.7210211],[-89.523622,29.7204363],[-89.5221379,29.7205038],[-89.5231134,29.7183938],[-89.5232548,29.7177876],[-89.5230754,29.7163358],[-89.5227611,29.7157219],[-89.5224752,29.7131506],[-89.524333,29.7152871],[-89.5257259,29.7165738],[-89.5257299,29.7168741],[-89.526311,29.7174537],[-89.5244315,29.7186149],[-89.5250387,29.720099],[-89.526675,29.7203708],[-89.5280685,29.7199992],[-89.5304355,29.721853],[-89.5294911,29.7219878],[-89.5278046,29.7213133],[-89.5241665,29.7210211]]],[[[-89.567359,29.7136713],[-89.5690228,29.7129482],[-89.5693181,29.7142391],[-89.5680581,29.714882],[-89.5675516,29.7151848],[-89.5675484,29.7155492],[-89.5662106,29.716683],[-89.5661748,29.7141372],[-89.5658986,29.7139271],[-89.567359,29.7136713]]],[[[-89.5889142,29.7152275],[-89.5904074,29.7142391],[-89.5914293,29.714332],[-89.5908155,29.7156211],[-89.5918939,29.7163759],[-89.591263,29.7174162],[-89.5902167,29.7175482],[-89.5892661,29.7183404],[-89.5891895,29.7170417],[-89.5877421,29.7160805],[-89.5889142,29.7152275]]],[[[-89.5813028,29.719256],[-89.5814886,29.7158185],[-89.58248,29.7161655],[-89.582941,29.7161722],[-89.583565,29.7161812],[-89.5841828,29.7161901],[-89.5848761,29.7170709],[-89.5858336,29.719855],[-89.5834483,29.7188755],[-89.582097,29.7209545],[-89.5813028,29.719256]]],[[[-89.6000044,29.7232424],[-89.5993912,29.7227919],[-89.5983633,29.7237683],[-89.5970419,29.7250234],[-89.5951493,29.7213687],[-89.5991729,29.7214085],[-89.6024279,29.7210982],[-89.6041326,29.7207636],[-89.6058283,29.7190786],[-89.6070337,29.7162387],[-89.6084225,29.7151623],[-89.6109432,29.7109917],[-89.6132927,29.7110569],[-89.6129833,29.71347],[-89.612666,29.7159455],[-89.6125001,29.7172399],[-89.6156185,29.7171777],[-89.6181875,29.7171265],[-89.6172085,29.7192149],[-89.6150461,29.7192589],[-89.6127147,29.7194625],[-89.6119264,29.7195449],[-89.6093592,29.7232875],[-89.6059178,29.7242403],[-89.6089129,29.7248672],[-89.6105413,29.7252084],[-89.6073359,29.7282681],[-89.6019367,29.7275035],[-89.6012419,29.7240257],[-89.6000044,29.7232424]]],[[[-89.5355938,29.7287322],[-89.5357649,29.7273173],[-89.5375833,29.7267452],[-89.5392688,29.7262906],[-89.5404195,29.7263807],[-89.5417688,29.726103],[-89.5428535,29.7251151],[-89.5437252,29.7257657],[-89.5420584,29.7279383],[-89.540451,29.7278001],[-89.5396816,29.7278032],[-89.5388073,29.7280186],[-89.5355938,29.7287322]]],[[[-89.5871416,29.7276923],[-89.5859471,29.7246971],[-89.5910633,29.7271101],[-89.5919767,29.7258705],[-89.5891141,29.723484],[-89.588209,29.7220189],[-89.5852292,29.721695],[-89.586665,29.7205202],[-89.5897324,29.7210955],[-89.5914945,29.7210423],[-89.5920367,29.7217078],[-89.5927708,29.7218675],[-89.5936809,29.7233217],[-89.5940155,29.7260744],[-89.5963947,29.7261718],[-89.5967186,29.7271357],[-89.5932224,29.7275728],[-89.5893669,29.7295776],[-89.5864367,29.7340501],[-89.5852029,29.7334332],[-89.5861429,29.7311582],[-89.5871416,29.7276923]]],[[[-89.5578244,29.7225276],[-89.5582966,29.7212458],[-89.5605798,29.7221005],[-89.561872,29.7217855],[-89.5620715,29.7212999],[-89.5618605,29.7208978],[-89.5616696,29.7205038],[-89.5622477,29.7198867],[-89.5629365,29.7202877],[-89.563558,29.7206495],[-89.5644355,29.7206495],[-89.5657909,29.7195442],[-89.5668097,29.7226005],[-89.5649489,29.7237163],[-89.5628635,29.7245721],[-89.5605902,29.7254284],[-89.5601524,29.7240205],[-89.5578244,29.7225276]]],[[[-89.5443323,29.732849],[-89.5441974,29.7305554],[-89.546869,29.7300476],[-89.5476474,29.7288341],[-89.5468352,29.7272457],[-89.5460906,29.7267042],[-89.5458433,29.7265244],[-89.5448792,29.7258232],[-89.5455399,29.7252829],[-89.5464236,29.7244165],[-89.5486184,29.7224562],[-89.54865,29.719877],[-89.5473462,29.7186129],[-89.5449395,29.7172657],[-89.5476377,29.7158501],[-89.5501357,29.7161724],[-89.5495294,29.7173979],[-89.5509434,29.7203014],[-89.5511088,29.7213928],[-89.5504585,29.7226005],[-89.5492447,29.7236313],[-89.5488311,29.7260953],[-89.5487172,29.7267101],[-89.5494031,29.7273272],[-89.5506443,29.726967],[-89.5516662,29.7288251],[-89.5510109,29.7292736],[-89.5508301,29.7305903],[-89.5493064,29.7305565],[-89.5485811,29.7307364],[-89.5469058,29.7313834],[-89.5464236,29.7324442],[-89.5443323,29.732849]]],[[[-89.5294617,29.7293513],[-89.5289047,29.7293272],[-89.527872,29.7300157],[-89.5270434,29.7297205],[-89.5261855,29.729476],[-89.523964,29.7307424],[-89.5228659,29.7304045],[-89.5237955,29.7297073],[-89.5245716,29.7276528],[-89.5244536,29.7260892],[-89.5257133,29.7254284],[-89.5269337,29.7272698],[-89.5303006,29.7288688],[-89.5339434,29.7289363],[-89.5342618,29.7296494],[-89.5324593,29.7309601],[-89.5305652,29.7325523],[-89.5289716,29.732591],[-89.5279395,29.7322419],[-89.5284792,29.7308927],[-89.5308557,29.730869],[-89.5307627,29.7302187],[-89.5294617,29.7293513]]],[[[-89.5269713,29.7460365],[-89.5269327,29.7434887],[-89.5303667,29.7455094],[-89.5330802,29.7460069],[-89.5356264,29.7453219],[-89.5380365,29.7461143],[-89.5367482,29.748552],[-89.5369318,29.7505023],[-89.5358475,29.7523955],[-89.533576,29.7542384],[-89.5323293,29.7571223],[-89.5303013,29.7554617],[-89.5310834,29.7525801],[-89.5308066,29.7505002],[-89.5302688,29.748893],[-89.5286385,29.7470836],[-89.5269713,29.7460365]]],[[[-89.3539727,29.7396453],[-89.354175,29.7381365],[-89.356443,29.7394589],[-89.3582432,29.7404726],[-89.3617102,29.741103],[-89.3635587,29.7434803],[-89.3581662,29.7436659],[-89.3550484,29.7439275],[-89.3546455,29.7432436],[-89.3545567,29.7429409],[-89.3524362,29.7421209],[-89.3539727,29.7396453]]],[[[-89.4442776,29.7505285],[-89.441314,29.7515274],[-89.4391639,29.7526014],[-89.4364987,29.7503124],[-89.4365045,29.7481845],[-89.4343663,29.7446645],[-89.4325827,29.7421116],[-89.4317579,29.7406309],[-89.4305976,29.7381655],[-89.4290766,29.7356934],[-89.4289949,29.7330143],[-89.4317862,29.7355208],[-89.4334007,29.737793],[-89.4358322,29.7388091],[-89.4368662,29.7406633],[-89.4386379,29.7435108],[-89.4396271,29.7418968],[-89.4415831,29.7417896],[-89.442408,29.7448676],[-89.4435448,29.7477814],[-89.4442776,29.7505285]]],[[[-89.1732582,29.9610633],[-89.1731412,29.9583915],[-89.1751672,29.9585103],[-89.1793927,29.9591522],[-89.1786136,29.9611566],[-89.1757515,29.9615418],[-89.1732582,29.9610633]]],[[[-89.3616549,29.9663242],[-89.3643634,29.9680546],[-89.3652395,29.9705559],[-89.3655117,29.9734116],[-89.3669041,29.9766364],[-89.3647476,29.979445],[-89.3628616,29.9792926],[-89.3604456,29.9789968],[-89.3589858,29.9768107],[-89.3560432,29.9752782],[-89.3527654,29.9729956],[-89.3560212,29.9730291],[-89.3585491,29.973265],[-89.3607682,29.9736216],[-89.3633138,29.972682],[-89.3632349,29.9697136],[-89.3616549,29.9663242]]],[[[-89.2819666,29.9540774],[-89.2795941,29.9532658],[-89.2796357,29.9550035],[-89.2776595,29.9556613],[-89.2772487,29.9536594],[-89.2778671,29.9514523],[-89.28015,29.9493457],[-89.2827793,29.9488228],[-89.2844043,29.9481267],[-89.2870536,29.9481209],[-89.2894698,29.9491086],[-89.2901003,29.946391],[-89.2929404,29.943839],[-89.2964219,29.9439836],[-89.2970356,29.9465809],[-89.296843,29.9499278],[-89.2995746,29.9493277],[-89.2977083,29.9532918],[-89.2954692,29.9549441],[-89.2931097,29.9565371],[-89.2908915,29.9583299],[-89.290376,29.9604509],[-89.2881018,29.9615255],[-89.2864273,29.9631853],[-89.2861601,29.9673538],[-89.2849874,29.9696823],[-89.2835539,29.9697176],[-89.2840322,29.9721232],[-89.2824833,29.972381],[-89.280913,29.9736118],[-89.2789489,29.9738067],[-89.2772407,29.9752676],[-89.274727,29.9753832],[-89.2720307,29.9726881],[-89.2717332,29.9700343],[-89.2783677,29.9626352],[-89.2801048,29.9617815],[-89.2816933,29.9606242],[-89.2835095,29.9571496],[-89.2819666,29.9540774]]],[[[-89.2522717,29.9785823],[-89.2537232,29.9763676],[-89.2534599,29.9741072],[-89.2505395,29.9740852],[-89.2524002,29.9716404],[-89.2528099,29.9695609],[-89.2555591,29.9690557],[-89.2543633,29.9717615],[-89.2571721,29.9718797],[-89.2581547,29.9736647],[-89.2568453,29.9756098],[-89.2560842,29.9784424],[-89.2593199,29.9780989],[-89.2623479,29.9804126],[-89.2605994,29.9832795],[-89.2577432,29.9844088],[-89.2557698,29.9849361],[-89.2557379,29.9879005],[-89.2551182,29.9898647],[-89.2529342,29.9924415],[-89.2507019,29.9948244],[-89.2483257,29.9954961],[-89.2471897,29.9931039],[-89.2478742,29.9911426],[-89.2495692,29.9885513],[-89.2505314,29.9856761],[-89.2502957,29.9829823],[-89.2508367,29.9808753],[-89.2522717,29.9785823]]],[[[-89.3339668,29.9790191],[-89.3335561,29.9758824],[-89.3375302,29.9747606],[-89.3406274,29.9737921],[-89.3431894,29.9717429],[-89.3463997,29.9716916],[-89.3485658,29.9714773],[-89.3493917,29.9745601],[-89.3481002,29.9775241],[-89.3454329,29.9795178],[-89.3447713,29.9826596],[-89.3426465,29.985377],[-89.3413489,29.9825162],[-89.3396407,29.9785572],[-89.337126,29.9773928],[-89.336348,29.9793182],[-89.3372458,29.9818882],[-89.3374866,29.9847177],[-89.3378716,29.987562],[-89.3406923,29.9885061],[-89.3394999,29.9914397],[-89.3395671,29.9936165],[-89.3373392,29.9940537],[-89.3356647,29.9940466],[-89.3340975,29.9936142],[-89.3347591,29.9892792],[-89.3345225,29.9867202],[-89.3355481,29.9826329],[-89.335499,29.9810567],[-89.3339668,29.9790191]]],[[[-89.2673611,29.9894485],[-89.2720242,29.9871903],[-89.2743484,29.9895582],[-89.2730374,29.991844],[-89.2694072,29.9911506],[-89.2662493,29.9908627],[-89.2673611,29.9894485]]],[[[-89.2895974,29.9942696],[-89.2930995,29.9937],[-89.2943318,29.9964769],[-89.2930252,29.9994202],[-89.2891812,29.9984553],[-89.2884323,29.9962304],[-89.2895974,29.9942696]]],[[[-84.3423734,30.0468495],[-84.340086,30.0462467],[-84.3396123,30.0479963],[-84.3364899,30.0458349],[-84.3361701,30.0431624],[-84.335807,30.0409382],[-84.3323585,30.0408676],[-84.3301003,30.0406706],[-84.3325215,30.0386],[-84.3345849,30.0370552],[-84.3366288,30.0365831],[-84.3381699,30.0337921],[-84.3403849,30.0324014],[-84.3377461,30.0314515],[-84.3360859,30.0289174],[-84.3412303,30.0309007],[-84.3435591,30.0286297],[-84.346381,30.0286292],[-84.3489618,30.0268176],[-84.3465832,30.0250308],[-84.3444411,30.0233664],[-84.3465185,30.0206307],[-84.3477139,30.0177536],[-84.3495397,30.0164934],[-84.3512133,30.0157919],[-84.3531952,30.0159994],[-84.3548461,30.0177699],[-84.3564261,30.0191894],[-84.3573715,30.0208583],[-84.356583,30.0227952],[-84.3542634,30.0226908],[-84.3543265,30.0256953],[-84.3555008,30.0284419],[-84.3548923,30.0340326],[-84.3531515,30.0332857],[-84.3522501,30.0352242],[-84.3506884,30.0336637],[-84.3484204,30.0354167],[-84.3486268,30.0376785],[-84.3471552,30.0400902],[-84.3454385,30.0428801],[-84.3485734,30.0430512],[-84.3516712,30.0434135],[-84.3498272,30.0456074],[-84.3470611,30.0463168],[-84.3488055,30.0484291],[-84.3483808,30.0506449],[-84.3462582,30.0509426],[-84.3413595,30.0510763],[-84.3436386,30.048709],[-84.3423734,30.0468495]]],[[[-89.1821587,30.0311485],[-89.1848422,30.0302703],[-89.187668,30.0315419],[-89.1865241,30.0333789],[-89.1845789,30.0357281],[-89.182554,30.0372663],[-89.1800188,30.0391955],[-89.177325,30.0414896],[-89.1751628,30.0429189],[-89.1734569,30.0438944],[-89.1699001,30.0420852],[-89.1681077,30.0391443],[-89.1699572,30.037399],[-89.1726772,30.0373185],[-89.1752777,30.0366395],[-89.1784704,30.0343101],[-89.1804787,30.0321935],[-89.1821587,30.0311485]]],[[[-89.2766566,30.0335068],[-89.2775504,30.0302666],[-89.2795855,30.0338619],[-89.2799904,30.0369617],[-89.2803277,30.0389834],[-89.278205,30.0390523],[-89.2756598,30.0391067],[-89.2756922,30.0408872],[-89.2771368,30.0431874],[-89.2751537,30.0440823],[-89.2731693,30.0459437],[-89.2706039,30.0480014],[-89.2677025,30.0492635],[-89.2659737,30.05049],[-89.2644141,30.0523672],[-89.2615086,30.0517695],[-89.2607613,30.0499046],[-89.2627936,30.0496788],[-89.26497,30.0487367],[-89.2675076,30.0467209],[-89.2688101,30.0443289],[-89.2704926,30.0419791],[-89.2726265,30.0396841],[-89.27406,30.0384802],[-89.2756573,30.0360873],[-89.2766566,30.0335068]]],[[[-89.3986213,30.0037859],[-89.3995855,30.0026217],[-89.4017704,30.0044826],[-89.4036808,30.0049294],[-89.4052925,30.006357],[-89.4077984,30.0082712],[-89.4089323,30.0108065],[-89.4072943,30.0132115],[-89.4078465,30.0172301],[-89.4086607,30.0195652],[-89.4094221,30.0220115],[-89.406196,30.0217226],[-89.4035452,30.0197328],[-89.4037127,30.0181986],[-89.404595,30.0168487],[-89.4054222,30.0146896],[-89.4043517,30.0135656],[-89.4039569,30.0120581],[-89.4029617,30.0098829],[-89.4002756,30.0069653],[-89.3979752,30.005457],[-89.3986213,30.0037859]]],[[[-85.5552282,30.0171974],[-85.5521674,30.0166864],[-85.5511777,30.013016],[-85.5501127,30.0104598],[-85.5488936,30.0075249],[-85.5518327,30.0087344],[-85.5587677,30.0140844],[-85.5604773,30.0168588],[-85.5577667,30.0168446],[-85.5552282,30.0171974]]],[[[-89.2262549,30.0269961],[-89.2275299,30.0229718],[-89.230433,30.0239229],[-89.230874,30.0277193],[-89.228912,30.0276489],[-89.2262549,30.0269961]]],[[[-89.3918511,30.0484238],[-89.3920183,30.0514202],[-89.3899191,30.0517417],[-89.3879302,30.0506576],[-89.3864694,30.0481654],[-89.3850092,30.0508608],[-89.3807708,30.051767],[-89.3771774,30.0521508],[-89.3665208,30.0523152],[-89.3733843,30.0501473],[-89.3754958,30.0497799],[-89.3780221,30.0482505],[-89.3795174,30.045235],[-89.3810445,30.0426266],[-89.380575,30.0401897],[-89.3792729,30.038041],[-89.3752781,30.0377486],[-89.3737931,30.0361086],[-89.3750753,30.0331625],[-89.3772572,30.0337633],[-89.3798939,30.0347316],[-89.3817924,30.0355846],[-89.3836087,30.0353659],[-89.3859702,30.0344483],[-89.3863894,30.0342855],[-89.3883361,30.0324558],[-89.390112,30.0305898],[-89.393596,30.0309596],[-89.3964789,30.0307129],[-89.3992227,30.0303266],[-89.4010642,30.0300958],[-89.4030027,30.0294676],[-89.4052441,30.0283452],[-89.4070573,30.0267786],[-89.4085788,30.0247536],[-89.4111807,30.0257908],[-89.4100643,30.0288902],[-89.4107144,30.0315188],[-89.413514,30.0314032],[-89.4149847,30.0327241],[-89.4172323,30.0346213],[-89.4177809,30.0369238],[-89.4192044,30.0388292],[-89.4170168,30.0396073],[-89.4159175,30.0429348],[-89.4142814,30.0404892],[-89.4116879,30.0388139],[-89.4102636,30.0380258],[-89.4089764,30.0370133],[-89.405907,30.0363428],[-89.4032114,30.0359106],[-89.3995649,30.0360383],[-89.3967267,30.0353619],[-89.3941639,30.0353415],[-89.3922219,30.0338211],[-89.3897008,30.0343009],[-89.3895045,30.0343383],[-89.3896801,30.0367082],[-89.3902315,30.0389325],[-89.3890546,30.0410367],[-89.3884877,30.0427808],[-89.3898696,30.0451237],[-89.3918511,30.0484238]]],[[[-89.209584,30.008162],[-89.2091312,30.0051219],[-89.2113249,30.0024522],[-89.2110867,29.9981887],[-89.213607,29.9956717],[-89.2161119,29.9957101],[-89.2147614,29.9983778],[-89.2170967,30.0005216],[-89.2175272,30.0034066],[-89.2185793,30.0051484],[-89.221166,30.0047292],[-89.2226576,30.0026084],[-89.2245252,30.0016548],[-89.2238834,30.0042602],[-89.2239878,30.0063234],[-89.221992,30.0076098],[-89.2199268,30.009902],[-89.2165928,30.0111563],[-89.212479,30.0101488],[-89.209584,30.008162]]],[[[-89.3658205,30.0082303],[-89.3668068,30.0056112],[-89.3686613,30.0057257],[-89.3710861,30.0073997],[-89.3737854,30.0076116],[-89.3760874,30.0057699],[-89.3795432,30.0033805],[-89.3807178,30.0056691],[-89.381246,30.007934],[-89.3798687,30.0097422],[-89.3779293,30.010065],[-89.3771004,30.0119261],[-89.3749631,30.0102521],[-89.372557,30.0094634],[-89.369447,30.0093821],[-89.3658205,30.0082303]]],[[[-89.2273185,30.0636263],[-89.2274243,30.061036],[-89.2246516,30.0605923],[-89.2265025,30.0577073],[-89.2264011,30.0539284],[-89.2258602,30.0526047],[-89.225248,30.0511065],[-89.2228882,30.04989],[-89.2226364,30.0497602],[-89.2208787,30.0513276],[-89.220317,30.0532886],[-89.2178415,30.05402],[-89.2159197,30.056301],[-89.2154456,30.0598177],[-89.2128761,30.0592515],[-89.2103681,30.0592393],[-89.2082013,30.0605802],[-89.2068927,30.0582158],[-89.2052999,30.0566945],[-89.2032119,30.0573825],[-89.2024522,30.0596572],[-89.2008087,30.0601432],[-89.1989401,30.0595479],[-89.1989151,30.0566745],[-89.1990166,30.0543188],[-89.197941,30.0511791],[-89.195117,30.0531268],[-89.191525,30.052947],[-89.1948272,30.0492437],[-89.1965965,30.0468029],[-89.1958451,30.0445341],[-89.1968853,30.0428114],[-89.1985965,30.041472],[-89.2008859,30.0413384],[-89.2019498,30.0392364],[-89.2021174,30.0364148],[-89.2039834,30.0346222],[-89.2070426,30.0337083],[-89.2061791,30.0365994],[-89.2048045,30.0382371],[-89.2082464,30.0376569],[-89.2074488,30.0394903],[-89.2109795,30.0385444],[-89.2100642,30.0413549],[-89.2107305,30.0431493],[-89.2123437,30.0443655],[-89.2141129,30.0453159],[-89.2135063,30.047986],[-89.2151517,30.0484732],[-89.2163893,30.0469057],[-89.2163688,30.0446315],[-89.2177242,30.0430062],[-89.2185804,30.0412135],[-89.2218654,30.0407915],[-89.2242001,30.0418533],[-89.2246234,30.0414932],[-89.2264577,30.0399325],[-89.2291224,30.0406432],[-89.2298694,30.037706],[-89.2316533,30.0344374],[-89.2326227,30.0323096],[-89.2326024,30.0296548],[-89.2354065,30.0306073],[-89.2367774,30.0331654],[-89.2350883,30.0368294],[-89.2349059,30.0393907],[-89.2352352,30.0423067],[-89.236982,30.0441067],[-89.2381438,30.0469612],[-89.2370292,30.0489383],[-89.2373262,30.0514377],[-89.2349835,30.0503121],[-89.2356144,30.0486052],[-89.2351474,30.0462049],[-89.2327212,30.0469382],[-89.230978,30.0481912],[-89.2311467,30.0502409],[-89.23156,30.0522522],[-89.2316538,30.0527086],[-89.2338197,30.0520015],[-89.2335348,30.054642],[-89.2376225,30.0539258],[-89.2407807,30.0546535],[-89.2431907,30.0547335],[-89.2454051,30.053994],[-89.2484737,30.0552145],[-89.2552387,30.0562575],[-89.2627112,30.0593323],[-89.264499,30.0629192],[-89.2662589,30.0618581],[-89.2681948,30.0642009],[-89.2699919,30.0653141],[-89.2718533,30.0659109],[-89.2747109,30.0653023],[-89.2777655,30.0637085],[-89.2805469,30.0634334],[-89.2815761,30.0618682],[-89.2833851,30.0606461],[-89.2853228,30.0585865],[-89.2860043,30.0611831],[-89.2865127,30.0636174],[-89.2896739,30.0635735],[-89.2936891,30.0636445],[-89.2968424,30.0631303],[-89.2995011,30.0617557],[-89.3013577,30.0590942],[-89.3037501,30.057209],[-89.3045446,30.0601288],[-89.3051323,30.0630757],[-89.307012,30.0649792],[-89.3095267,30.0655316],[-89.3115929,30.0644987],[-89.3136858,30.0626143],[-89.3146331,30.0596017],[-89.3168915,30.0594935],[-89.3148751,30.0573165],[-89.3178437,30.057089],[-89.3207142,30.0560776],[-89.3240642,30.0555948],[-89.3271261,30.0540437],[-89.3291896,30.052725],[-89.3299929,30.0501372],[-89.3312399,30.0475918],[-89.3314674,30.0446605],[-89.3306725,30.0421719],[-89.3298238,30.0390636],[-89.3321247,30.0367351],[-89.3336839,30.038755],[-89.3366392,30.0417557],[-89.3381987,30.0443538],[-89.3353546,30.0437645],[-89.3344241,30.0457038],[-89.3356365,30.0477952],[-89.335819,30.0502345],[-89.3338427,30.051843],[-89.3336442,30.0553197],[-89.3365218,30.0545585],[-89.3379506,30.0523996],[-89.3396202,30.0536039],[-89.3379773,30.0571349],[-89.3409968,30.0589093],[-89.3392016,30.0597345],[-89.3370228,30.0586861],[-89.3347782,30.0586332],[-89.3324301,30.0602889],[-89.3303787,30.0606687],[-89.3282831,30.0610882],[-89.3258313,30.0623392],[-89.323495,30.0639037],[-89.3217208,30.0620239],[-89.3191977,30.0605097],[-89.320222,30.0641126],[-89.3180179,30.0657084],[-89.3160674,30.0677018],[-89.3144522,30.0696885],[-89.3134499,30.0716035],[-89.3132186,30.0738567],[-89.3107151,30.0724634],[-89.3082048,30.0719759],[-89.3060171,30.0724607],[-89.3047925,30.0735949],[-89.3045444,30.0753862],[-89.3049618,30.0772795],[-89.3048679,30.0796238],[-89.3044688,30.0820935],[-89.3025332,30.0844989],[-89.3015677,30.0824354],[-89.3014648,30.0801214],[-89.3026859,30.0782468],[-89.302921,30.0759881],[-89.3011083,30.0752319],[-89.2998097,30.0770066],[-89.2981241,30.0757409],[-89.296537,30.0746317],[-89.2940606,30.0742144],[-89.2921495,30.0723832],[-89.2893592,30.0740239],[-89.2871097,30.0714388],[-89.2842631,30.070647],[-89.2840882,30.0727025],[-89.2847398,30.0754602],[-89.2819792,30.0779936],[-89.2792447,30.0775031],[-89.2766232,30.079287],[-89.2747306,30.0825845],[-89.2736505,30.084918],[-89.276073,30.0876001],[-89.2786565,30.0902083],[-89.2826872,30.09058],[-89.2854654,30.0904186],[-89.2859261,30.0941255],[-89.2879717,30.0954978],[-89.2873916,30.0981542],[-89.2858741,30.0988821],[-89.2841582,30.0986711],[-89.2840522,30.098658],[-89.2832171,30.1011141],[-89.2806458,30.1013267],[-89.2800189,30.0986037],[-89.277524,30.0962732],[-89.2749483,30.0959839],[-89.2736808,30.0993697],[-89.2750759,30.1031614],[-89.2720492,30.1056159],[-89.2676995,30.1068797],[-89.2651669,30.1084454],[-89.2630885,30.1074055],[-89.2625833,30.1104077],[-89.2621321,30.1126209],[-89.2587805,30.1134387],[-89.2547557,30.1142297],[-89.2502935,30.1176723],[-89.2476022,30.1200724],[-89.2456025,30.1213304],[-89.2443104,30.1187165],[-89.2449712,30.1159127],[-89.2461716,30.1132902],[-89.2473949,30.1102699],[-89.2487067,30.1073499],[-89.2483851,30.1043966],[-89.2482083,30.1027735],[-89.2450729,30.1002018],[-89.2464036,30.0984384],[-89.244662,30.0982203],[-89.2431572,30.0995688],[-89.2406979,30.0976123],[-89.2401179,30.0957733],[-89.2383507,30.0937091],[-89.2347269,30.0944749],[-89.2326325,30.0966949],[-89.2295286,30.097913],[-89.2277282,30.0958844],[-89.2287875,30.0939411],[-89.2279611,30.0913393],[-89.2282278,30.0895101],[-89.2277574,30.0873685],[-89.2302066,30.0875257],[-89.2323491,30.0892645],[-89.2330378,30.0875354],[-89.2361061,30.0888183],[-89.2400185,30.0883278],[-89.2407133,30.0857189],[-89.2386581,30.0822993],[-89.23539,30.0816189],[-89.2331667,30.0803452],[-89.2337737,30.0782065],[-89.2334837,30.0756951],[-89.2348404,30.0756931],[-89.2362545,30.0756909],[-89.2354659,30.0718934],[-89.2377365,30.0721108],[-89.2388849,30.0691874],[-89.2392411,30.0670929],[-89.2368134,30.066468],[-89.2366076,30.0646034],[-89.2364857,30.0631848],[-89.2362475,30.0604131],[-89.2340654,30.0583139],[-89.2322426,30.0581626],[-89.2316091,30.0620041],[-89.2289077,30.0628596],[-89.2273185,30.0636263]]],[[[-82.8414647,28.212823],[-82.837909,28.211277],[-82.8437836,28.2098857],[-82.8461026,28.2114316],[-82.8493491,28.2098857],[-82.8473393,28.2077213],[-82.8491945,28.2038565],[-82.8490399,28.1989094],[-82.8496582,28.1962813],[-82.8491945,28.1887061],[-82.8479577,28.1837591],[-82.8468755,28.1812855],[-82.8481123,28.1794304],[-82.8467209,28.1766477],[-82.8439382,28.1747925],[-82.844519,28.1717097],[-82.8440297,28.1698148],[-82.8420203,28.1663928],[-82.8432883,28.1642906],[-82.8452146,28.1649866],[-82.8468711,28.1684913],[-82.8477319,28.1716772],[-82.8477346,28.1716823],[-82.8493491,28.1747925],[-82.8505858,28.1887061],[-82.8513588,28.1996824],[-82.8522864,28.2095765],[-82.850895,28.2122046],[-82.8457934,28.2143689],[-82.8414647,28.212823]]],[[[-82.8433119,28.1889135],[-82.8456229,28.1886952],[-82.8463491,28.1897944],[-82.8474261,28.1914248],[-82.846853,28.195113],[-82.8453056,28.1938208],[-82.8435286,28.1915528],[-82.8434247,28.1902876],[-82.8433119,28.1889137],[-82.8433119,28.1889136],[-82.8433119,28.1889135]]],[[[-96.7792329,28.2440451],[-96.7789921,28.2428894],[-96.7793481,28.2424031],[-96.7809665,28.2401927],[-96.7842268,28.2376088],[-96.7855339,28.2365729],[-96.7860164,28.2355919],[-96.7888649,28.2346577],[-96.7899814,28.2394508],[-96.7900721,28.23984],[-96.7887165,28.2418684],[-96.7880244,28.2428923],[-96.7863689,28.2431059],[-96.7847707,28.2431783],[-96.7827,28.2430338],[-96.7810146,28.243708],[-96.7792329,28.2440451]]],[[[-96.6131226,28.2765205],[-96.6162596,28.2743631],[-96.619327,28.2746619],[-96.6174709,28.2764255],[-96.6162332,28.2772918],[-96.61572,28.277651],[-96.6130124,28.2802721],[-96.6108194,28.2788328],[-96.6118498,28.2773851],[-96.6131226,28.2765205]]],[[[-96.598114,28.2850095],[-96.6011228,28.2844998],[-96.6034788,28.2828296],[-96.6058728,28.2824961],[-96.6085543,28.2810551],[-96.6114138,28.2815473],[-96.6096908,28.2828851],[-96.607142,28.2846821],[-96.6048599,28.2869903],[-96.6025757,28.2863345],[-96.6007148,28.2865995],[-96.598114,28.2850095]]],[[[-96.6980463,28.2127222],[-96.7013491,28.2118923],[-96.7030612,28.2154368],[-96.7006438,28.2166622],[-96.6964108,28.2159435],[-96.6980463,28.2127222]]],[[[-96.7971287,28.2250154],[-96.7932587,28.2276223],[-96.7871346,28.2314746],[-96.7833151,28.2341622],[-96.7854751,28.2297442],[-96.7893444,28.2276812],[-96.7922891,28.2260255],[-96.7971287,28.2250154]]],[[[-96.598114,28.2850095],[-96.5953008,28.2868756],[-96.5936381,28.2873332],[-96.5932175,28.287449],[-96.5923619,28.2877331],[-96.5902977,28.2884184],[-96.5882295,28.2895961],[-96.5863507,28.2901423],[-96.5860598,28.290515],[-96.5846838,28.2922775],[-96.5805438,28.2937804],[-96.5789317,28.2951522],[-96.5786578,28.2967886],[-96.575484,28.2976487],[-96.5754722,28.2976519],[-96.5754603,28.2976552],[-96.5751248,28.2998022],[-96.5748671,28.3001919],[-96.5737701,28.3018503],[-96.5729917,28.3020859],[-96.5715268,28.3025291],[-96.5686356,28.302292],[-96.5693496,28.2994459],[-96.5696512,28.2982437],[-96.5688618,28.2985292],[-96.5662137,28.2994869],[-96.56461,28.3007024],[-96.5638211,28.3013003],[-96.5615899,28.3010063],[-96.5600005,28.3016829],[-96.5593595,28.3019558],[-96.5560329,28.3017539],[-96.5538961,28.3017771],[-96.5514092,28.3028923],[-96.5514004,28.3028962],[-96.5513916,28.3029002],[-96.5481967,28.3046815],[-96.5449542,28.3064056],[-96.5449176,28.3121149],[-96.5419095,28.3149501],[-96.5413675,28.3156269],[-96.5400428,28.3172811],[-96.5373602,28.3187516],[-96.5344451,28.3203495],[-96.5334576,28.3208908],[-96.5307881,28.3205249],[-96.5269808,28.3228957],[-96.5232879,28.3237151],[-96.5213789,28.3231811],[-96.5166774,28.3244014],[-96.5123549,28.3248602],[-96.5069265,28.32433],[-96.5034255,28.3256754],[-96.4999229,28.3268799],[-96.4961088,28.3265852],[-96.4940935,28.326622],[-96.4927072,28.3279591],[-96.4888174,28.3277933],[-96.4858701,28.3280034],[-96.4825378,28.3281553],[-96.4811432,28.3300458],[-96.4775313,28.3297775],[-96.4751262,28.3290571],[-96.4711217,28.3314574],[-96.4686516,28.3315046],[-96.4673731,28.3330381],[-96.4644006,28.3331367],[-96.4620205,28.3349166],[-96.4544895,28.3361155],[-96.4522844,28.3368371],[-96.4492591,28.3378169],[-96.4458582,28.3396745],[-96.4441149,28.3403541],[-96.4408066,28.3422101],[-96.4378284,28.3438996],[-96.4342172,28.3456588],[-96.4315885,28.3469169],[-96.4316413,28.3493608],[-96.4399188,28.3493608],[-96.438472,28.355389],[-96.4374355,28.3597077],[-96.4303997,28.3688129],[-96.4436437,28.3708823],[-96.4317209,28.380656],[-96.4312707,28.3815565],[-96.4296311,28.3848356],[-96.4277649,28.3885681],[-96.425847,28.3924038],[-96.4244037,28.3934079],[-96.4232466,28.3942128],[-96.4163279,28.3990259],[-96.41562,28.3989643],[-96.4122466,28.398671],[-96.4068087,28.3981981],[-96.4034977,28.3861957],[-96.4045702,28.3786883],[-96.4048344,28.3768388],[-96.4046043,28.374906],[-96.4035998,28.3664674],[-96.4053705,28.3647647],[-96.4062082,28.3639593],[-96.4072849,28.362924],[-96.4060297,28.3623593],[-96.4003443,28.3598014],[-96.3979947,28.3660839],[-96.398329,28.3739085],[-96.4000553,28.3804901],[-96.399359,28.3878512],[-96.3931508,28.3832986],[-96.3881843,28.3783321],[-96.3898398,28.3696407],[-96.3943813,28.3616057],[-96.3991799,28.3560096],[-96.402292,28.3516414],[-96.4047394,28.3481191],[-96.4133155,28.339543],[-96.4226751,28.3311134],[-96.4278692,28.3269968],[-96.4424544,28.3175292],[-96.4441669,28.3167561],[-96.4499149,28.3140071],[-96.4552344,28.3111651],[-96.4615889,28.3080261],[-96.4659899,28.3062611],[-96.4687339,28.3052981],[-96.4716069,28.3039461],[-96.4773529,28.3018591],[-96.4803029,28.3005081],[-96.4837329,28.2988346],[-96.4961939,28.2937661],[-96.5009163,28.2916306],[-96.5056499,28.2897991],[-96.5129769,28.2863651],[-96.5148283,28.2854951],[-96.5180574,28.2843331],[-96.5236169,28.2818091],[-96.5277714,28.2798626],[-96.5323058,28.2776948],[-96.5368308,28.2754312],[-96.5413219,28.2737021],[-96.5442208,28.2720981],[-96.5477668,28.2707932],[-96.5502518,28.2694642],[-96.5528918,28.2683201],[-96.5577308,28.2658571],[-96.5603708,28.2643791],[-96.5639678,28.2623171],[-96.5667108,28.2608282],[-96.5733868,28.2568976],[-96.5771908,28.2545722],[-96.5796488,28.2532191],[-96.5822888,28.2518902],[-96.5851708,28.2502802],[-96.5885438,28.2485602],[-96.5915323,28.2468417],[-96.5961498,28.2438852],[-96.5993188,28.2417646],[-96.6025395,28.2399665],[-96.6040918,28.2389582],[-96.6079463,28.2369517],[-96.6118388,28.2349002],[-96.6157718,28.2331232],[-96.6203625,28.2301538],[-96.6234143,28.2283882],[-96.6258058,28.2268842],[-96.6299183,28.2241122],[-96.6321568,28.2228872],[-96.6349778,28.2211012],[-96.6376688,28.2195212],[-96.6414988,28.2168432],[-96.6450428,28.2147822],[-96.6474238,28.2131332],[-96.6512008,28.2108882],[-96.6553548,28.2081057],[-96.6578383,28.2065137],[-96.6631293,28.2031582],[-96.6694668,28.1991832],[-96.6720798,28.1972362],[-96.6751578,28.1951512],[-96.6788818,28.1928612],[-96.6809643,28.1912922],[-96.6843908,28.1892182],[-96.6869253,28.1874537],[-96.6898993,28.1852087],[-96.6918648,28.1837652],[-96.6946588,28.1821152],[-96.6973998,28.1803732],[-96.7001408,28.1781732],[-96.7032958,28.1760192],[-96.7055193,28.1746322],[-96.7078073,28.1729937],[-96.7117508,28.1701982],[-96.7142068,28.1683192],[-96.7194028,28.1648807],[-96.7222593,28.1628632],[-96.7242108,28.1612132],[-96.7260593,28.1600212],[-96.7303898,28.1565822],[-96.7331168,28.1546907],[-96.7393838,28.1500942],[-96.7417488,28.1486967],[-96.7453798,28.1460142],[-96.7494323,28.1430322],[-96.7538418,28.1397992],[-96.7588193,28.1363412],[-96.7620388,28.1340052],[-96.7643918,28.1321262],[-96.7669258,28.1302022],[-96.7698093,28.1281292],[-96.7729303,28.1258657],[-96.7773935,28.1225612],[-96.7807801,28.1198355],[-96.7834438,28.1177502],[-96.7865323,28.1151617],[-96.7887948,28.1133522],[-96.7908888,28.1116107],[-96.7949213,28.1084377],[-96.8012408,28.1035917],[-96.8028048,28.1022632],[-96.8071468,28.0990859],[-96.8108938,28.0961232],[-96.8135818,28.0941522],[-96.8187883,28.0895232],[-96.8238658,28.0856042],[-96.8268503,28.0830027],[-96.8300803,28.0804132],[-96.8330898,28.0780862],[-96.8387863,28.0731022],[-96.8417563,28.0705237],[-96.8457991,28.0674369],[-96.8491714,28.0650688],[-96.8509242,28.0658778],[-96.8493513,28.0670042],[-96.8477888,28.0688492],[-96.8458044,28.0718674],[-96.8454054,28.0766485],[-96.8446395,28.0798607],[-96.8435423,28.0834822],[-96.8418768,28.0867252],[-96.8408082,28.0897431],[-96.8430073,28.0884782],[-96.8450548,28.0851432],[-96.8476607,28.08152],[-96.8490891,28.0764353],[-96.8498952,28.0723324],[-96.8504604,28.0697612],[-96.8527228,28.0673132],[-96.8549098,28.0657842],[-96.8557613,28.0632995],[-96.8586634,28.0636905],[-96.8623929,28.0657117],[-96.863803,28.0680861],[-96.8647483,28.0708507],[-96.8617384,28.0722412],[-96.859715,28.0722845],[-96.8611218,28.0740597],[-96.8643672,28.0743586],[-96.8679823,28.0755457],[-96.8700368,28.0764502],[-96.8720528,28.0774582],[-96.8742228,28.0790957],[-96.8804083,28.0810302],[-96.882643,28.0843634],[-96.8772547,28.0839828],[-96.8799524,28.0873172],[-96.8820377,28.0900298],[-96.8820008,28.0926726],[-96.8844851,28.0909214],[-96.8850739,28.0930099],[-96.8860599,28.0949421],[-96.8874072,28.0967036],[-96.8850086,28.0967344],[-96.8822966,28.0960169],[-96.883899,28.0992542],[-96.8870393,28.0990112],[-96.8883393,28.1006626],[-96.8905231,28.1010273],[-96.8887591,28.1037447],[-96.8860423,28.104198],[-96.8828944,28.1021965],[-96.8829321,28.1047972],[-96.8813758,28.1057697],[-96.880169,28.1064305],[-96.879553,28.1067677],[-96.8781472,28.1083528],[-96.880131,28.1098457],[-96.8801873,28.109888],[-96.8816348,28.1097129],[-96.8823684,28.1096242],[-96.8829215,28.110207],[-96.8841692,28.1115216],[-96.886282,28.1114192],[-96.8866467,28.1113037],[-96.8882993,28.1107802],[-96.889265,28.1124654],[-96.8914648,28.1126612],[-96.8919899,28.1143818],[-96.8889942,28.1158112],[-96.8874817,28.1160828],[-96.8862231,28.1163089],[-96.8852193,28.1178073],[-96.884814,28.1184121],[-96.8838733,28.1211822],[-96.8824792,28.1223029],[-96.8818752,28.1227884],[-96.8818895,28.1228163],[-96.8822574,28.1235346],[-96.8827647,28.1245252],[-96.8802183,28.1247529],[-96.8782956,28.1270773],[-96.8798712,28.1286465],[-96.879948,28.128723],[-96.8796084,28.131316],[-96.8773587,28.1315562],[-96.8749481,28.1328408],[-96.8729388,28.1321682],[-96.8707394,28.1306511],[-96.8681533,28.1278235],[-96.8655155,28.1268777],[-96.8645199,28.1256339],[-96.8629019,28.1214878],[-96.8672035,28.1193937],[-96.8678147,28.1194183],[-96.8698978,28.119502],[-96.8708519,28.1190743],[-96.872447,28.1183592],[-96.8728747,28.1181223],[-96.8756718,28.116573],[-96.8755226,28.1137612],[-96.8723176,28.1140526],[-96.8686433,28.1136779],[-96.869517,28.1113412],[-96.8696868,28.110841],[-96.8701688,28.1094212],[-96.8730066,28.1079927],[-96.873835,28.1051679],[-96.8721823,28.1056342],[-96.8707676,28.1043466],[-96.8705722,28.1027105],[-96.8704249,28.1014781],[-96.8719754,28.099669],[-96.87538,28.0993241],[-96.8739808,28.0971657],[-96.8707975,28.0959034],[-96.8683138,28.0943952],[-96.8672083,28.0930672],[-96.8649427,28.0914337],[-96.8655255,28.0945341],[-96.8661709,28.0993074],[-96.8655307,28.1006863],[-96.8649864,28.1018584],[-96.8630458,28.1043422],[-96.8623334,28.106025],[-96.8612898,28.1075972],[-96.8593364,28.1085054],[-96.8588974,28.1114941],[-96.8589223,28.1115266],[-96.8605597,28.1136701],[-96.8572323,28.1148501],[-96.8559057,28.1143846],[-96.8548469,28.1140131],[-96.8519251,28.1141085],[-96.8498678,28.1133072],[-96.8483105,28.1110669],[-96.8460678,28.1095032],[-96.84335,28.1090302],[-96.8393313,28.1108539],[-96.8364513,28.111903],[-96.8357636,28.1121535],[-96.8339492,28.1135146],[-96.8336118,28.1137677],[-96.8330085,28.1140669],[-96.8318746,28.1146294],[-96.8313332,28.1118952],[-96.8304756,28.1094259],[-96.829424,28.1107772],[-96.8269943,28.1116707],[-96.8252668,28.1130348],[-96.8223823,28.1158929],[-96.8195503,28.1177557],[-96.8159673,28.1201089],[-96.8133725,28.1222069],[-96.8115633,28.1236097],[-96.8103579,28.1267197],[-96.810172,28.1271992],[-96.8101697,28.1272051],[-96.8101674,28.1272111],[-96.8106378,28.1304277],[-96.811264,28.1328042],[-96.8088928,28.1334297],[-96.8086863,28.1335214],[-96.8038303,28.1356792],[-96.8023045,28.1399879],[-96.8031335,28.1432522],[-96.8033407,28.1433601],[-96.8053992,28.1444325],[-96.8058967,28.1444712],[-96.8093029,28.1447363],[-96.8121193,28.1434402],[-96.8138222,28.1419208],[-96.8161934,28.1415822],[-96.8192273,28.1434132],[-96.8182524,28.1445491],[-96.8174341,28.1455025],[-96.8173002,28.1482242],[-96.8171482,28.1495225],[-96.8169736,28.1510139],[-96.8169114,28.1515451],[-96.8164455,28.1528491],[-96.8159247,28.1543065],[-96.8160236,28.1562591],[-96.8160793,28.1573577],[-96.8174414,28.1594884],[-96.8182526,28.160783],[-96.819342,28.1625217],[-96.8200098,28.1634125],[-96.820259,28.1637448],[-96.8200228,28.1649742],[-96.8195318,28.1676552],[-96.8183713,28.1694106],[-96.8177043,28.1704195],[-96.8173983,28.1726387],[-96.8161385,28.1750273],[-96.8142681,28.1748776],[-96.8125844,28.1747428],[-96.8100151,28.1761715],[-96.8087629,28.176762],[-96.8075016,28.1773568],[-96.8062167,28.1782183],[-96.8049638,28.1790585],[-96.8029548,28.1809222],[-96.8004414,28.1815985],[-96.799576,28.1842276],[-96.7994498,28.1846112],[-96.7962558,28.1866962],[-96.7932943,28.1881512],[-96.7901764,28.1887871],[-96.7898155,28.1888607],[-96.7897007,28.1888666],[-96.7854058,28.1890892],[-96.7828553,28.1889444],[-96.7792718,28.189007],[-96.7753451,28.1886088],[-96.7731044,28.1883888],[-96.7714353,28.1882249],[-96.7694264,28.1885596],[-96.768245,28.1887564],[-96.765542,28.1890178],[-96.7624258,28.1889322],[-96.7598881,28.188572],[-96.7593166,28.1884908],[-96.7558954,28.1867921],[-96.7538024,28.1876422],[-96.751191,28.1862708],[-96.7490149,28.188975],[-96.7471621,28.1882943],[-96.7464269,28.1880242],[-96.7444385,28.1894322],[-96.7407987,28.1902609],[-96.7381238,28.1904988],[-96.7372842,28.1905735],[-96.7334849,28.1907248],[-96.7313868,28.1912677],[-96.7298495,28.1916655],[-96.7276058,28.1900497],[-96.7249188,28.1924462],[-96.7225395,28.1931415],[-96.7224197,28.1931623],[-96.7185223,28.1938375],[-96.7158668,28.1947052],[-96.714699,28.1947744],[-96.7131848,28.1948641],[-96.7097819,28.1954193],[-96.7091842,28.1955169],[-96.7060209,28.1977056],[-96.7023461,28.1986583],[-96.6985234,28.2017888],[-96.6972181,28.2050753],[-96.6945839,28.2052919],[-96.6930898,28.2066482],[-96.6903648,28.2070868],[-96.6911384,28.2085652],[-96.691729,28.2096941],[-96.6918168,28.210386],[-96.6921169,28.2127514],[-96.6907915,28.2155043],[-96.6923437,28.2165212],[-96.6892948,28.2174718],[-96.6862937,28.2176121],[-96.6831535,28.2192078],[-96.6808772,28.2201683],[-96.6775433,28.2220683],[-96.6754723,28.2235697],[-96.6744281,28.2243267],[-96.6741033,28.2243808],[-96.6713925,28.2248325],[-96.6712544,28.2248239],[-96.6695061,28.2247153],[-96.6681225,28.2262735],[-96.6654248,28.2267712],[-96.6627338,28.2269312],[-96.6598298,28.2275087],[-96.6566018,28.2279372],[-96.6543978,28.2281982],[-96.6553551,28.2287792],[-96.6578948,28.2303207],[-96.6601414,28.2320146],[-96.6603116,28.2319924],[-96.6637972,28.2315384],[-96.6624988,28.2343872],[-96.6620899,28.235125],[-96.6607898,28.2374712],[-96.6600126,28.2383605],[-96.65809,28.2405606],[-96.6559297,28.2444657],[-96.653665,28.2466782],[-96.6521175,28.24819],[-96.650983,28.2516472],[-96.6482549,28.2519906],[-96.6467963,28.2521741],[-96.6446824,28.2540585],[-96.6440324,28.2545773],[-96.6424082,28.2558738],[-96.6416648,28.2564672],[-96.6410686,28.2568704],[-96.6392649,28.2580904],[-96.6371098,28.2596691],[-96.6354615,28.2604322],[-96.6332119,28.2608794],[-96.6327103,28.2609792],[-96.6304526,28.26113],[-96.6271058,28.2622656],[-96.6245602,28.2626695],[-96.6215312,28.2629235],[-96.6196895,28.2630808],[-96.6187018,28.2631651],[-96.6180295,28.2632905],[-96.6159308,28.2636821],[-96.6184217,28.266169],[-96.6188927,28.2663322],[-96.6206968,28.2669572],[-96.6226233,28.268262],[-96.6199812,28.2695336],[-96.6186532,28.2700578],[-96.6162593,28.2710029],[-96.6136954,28.2714769],[-96.6113456,28.2719697],[-96.6110193,28.2720381],[-96.6111841,28.2722801],[-96.6121248,28.2736606],[-96.6093514,28.2740382],[-96.6083893,28.2741692],[-96.6063072,28.274935],[-96.6063524,28.275298],[-96.606599,28.2772788],[-96.6045944,28.2772685],[-96.6035869,28.2767725],[-96.6021075,28.2760441],[-96.6012769,28.2763594],[-96.5984428,28.2774351],[-96.5941519,28.2778318],[-96.5918018,28.2803905],[-96.5896428,28.282898],[-96.5931733,28.2839855],[-96.598114,28.2850095]]],[[[-96.5923941,28.293732],[-96.5929207,28.293655],[-96.5944245,28.2939349],[-96.5965749,28.2943353],[-96.5932513,28.2968781],[-96.5897332,28.2987311],[-96.5854949,28.3003185],[-96.5867367,28.297264],[-96.5870906,28.2957828],[-96.5872491,28.2951194],[-96.5893538,28.2941766],[-96.5923941,28.293732]]],[[[-96.6160243,28.3074631],[-96.6171945,28.3050757],[-96.6191436,28.3066836],[-96.6212352,28.3084971],[-96.6238176,28.3090234],[-96.6254115,28.310209],[-96.6239212,28.3132165],[-96.6215058,28.3135624],[-96.6189968,28.3116146],[-96.6176368,28.3098961],[-96.6160243,28.3074631]]],[[[-96.6323144,28.3183237],[-96.6358853,28.3174384],[-96.6386211,28.3182891],[-96.6419107,28.3179183],[-96.6469243,28.3185692],[-96.6453128,28.3214461],[-96.6412802,28.3228958],[-96.6379618,28.3237851],[-96.6346031,28.3244439],[-96.6337448,28.3209539],[-96.6323144,28.3183237]]],[[[-96.4418152,28.3795893],[-96.4429757,28.3777841],[-96.4462638,28.3780659],[-96.4486754,28.3778028],[-96.4490207,28.3777651],[-96.4505519,28.3770517],[-96.4558584,28.3745793],[-96.4615542,28.3717728],[-96.4618802,28.3711482],[-96.4624789,28.3700011],[-96.4638769,28.3683741],[-96.4653971,28.3673273],[-96.4711137,28.3667681],[-96.4717211,28.3667087],[-96.4716427,28.3668485],[-96.4713919,28.3672956],[-96.4698532,28.3700384],[-96.4695055,28.3706583],[-96.468306,28.371117],[-96.4681063,28.3713982],[-96.4667941,28.3732459],[-96.4619068,28.3751824],[-96.4590362,28.3763357],[-96.4586874,28.3764996],[-96.4576524,28.3769857],[-96.4513202,28.3799602],[-96.4443708,28.3828998],[-96.4423556,28.3822798],[-96.4420861,28.3814716],[-96.4415804,28.3799544],[-96.4418152,28.3795893]]],[[[-96.0460535,28.5842941],[-96.048165,28.5855808],[-96.0472305,28.5873786],[-96.0468228,28.5893121],[-96.0421074,28.5855152],[-96.0460535,28.5842941]]],[[[-96.2126302,28.6022575],[-96.2149109,28.5989631],[-96.2144569,28.5963903],[-96.2123909,28.596956],[-96.2102513,28.5980589],[-96.2079917,28.5977913],[-96.2040819,28.5977711],[-96.2017197,28.6011285],[-96.1999992,28.6049193],[-96.1969323,28.6055494],[-96.1952193,28.6032894],[-96.1924156,28.6039586],[-96.1900709,28.6037851],[-96.1873719,28.6044041],[-96.1805714,28.6063956],[-96.1768079,28.6073571],[-96.1731576,28.6079735],[-96.1779334,28.6015143],[-96.1822541,28.594171],[-96.1848559,28.5931101],[-96.1911619,28.5899501],[-96.1947949,28.5883471],[-96.1976109,28.5868006],[-96.2004529,28.5858961],[-96.2082639,28.5825511],[-96.2127279,28.5810391],[-96.2167499,28.5798471],[-96.2211089,28.5788151],[-96.2250784,28.5783676],[-96.2282073,28.5792403],[-96.2267967,28.5812154],[-96.2262049,28.5836401],[-96.2271119,28.5866028],[-96.2287149,28.5889841],[-96.2311261,28.5913091],[-96.2315099,28.5916139],[-96.2315099,28.593768],[-96.2355646,28.6003569],[-96.2355646,28.6023842],[-96.2341708,28.6018774],[-96.2310031,28.6026377],[-96.2262688,28.6044261],[-96.2216902,28.6067361],[-96.2169383,28.6099868],[-96.2135171,28.6130278],[-96.209209,28.6112539],[-96.2071817,28.6075793],[-96.2088289,28.6051719],[-96.2126302,28.6022575]]],[[[-96.5493718,28.6413392],[-96.5515933,28.6398846],[-96.554697,28.6386823],[-96.5579173,28.6366431],[-96.5601165,28.6346504],[-96.5626384,28.6349449],[-96.5617353,28.6375136],[-96.5589168,28.6398621],[-96.5561248,28.6414091],[-96.5536318,28.6413631],[-96.5493718,28.6413392]]],[[[-96.5696558,28.6368491],[-96.5710559,28.6351998],[-96.5740275,28.6370324],[-96.5759585,28.6395604],[-96.5771965,28.6428367],[-96.5748629,28.6448454],[-96.5759158,28.6478126],[-96.5757608,28.6502144],[-96.574188,28.6533186],[-96.5738781,28.6570061],[-96.571598,28.6571298],[-96.5697743,28.6563706],[-96.5689268,28.6535956],[-96.5667676,28.6520461],[-96.5660237,28.6501638],[-96.5668908,28.6478816],[-96.5682218,28.6457108],[-96.5706866,28.6439077],[-96.5706477,28.6394402],[-96.5696558,28.6368491]]],[[[-82.6671642,28.6981783],[-82.6696288,28.6967987],[-82.6726755,28.6978929],[-82.671583,28.6997446],[-82.6714598,28.6999535],[-82.6709368,28.7001996],[-82.6692978,28.7009708],[-82.6721967,28.7023612],[-82.6733375,28.7036701],[-82.6727298,28.7045028],[-82.6687456,28.7042432],[-82.665349,28.702811],[-82.66495,28.7026428],[-82.6660291,28.7007222],[-82.6662619,28.7003078],[-82.6671642,28.6981783]]],[[[-82.6724476,28.7446762],[-82.6730208,28.7438083],[-82.6738528,28.7425487],[-82.6742662,28.7425491],[-82.6769277,28.7425517],[-82.6771307,28.7420347],[-82.6776366,28.7407463],[-82.6790751,28.7424728],[-82.6812626,28.7412447],[-82.6821167,28.7417423],[-82.6831387,28.7423378],[-82.6833306,28.7443959],[-82.6812949,28.7452969],[-82.6782891,28.7445529],[-82.6758902,28.7439491],[-82.6754814,28.7453379],[-82.6753741,28.7457023],[-82.6724476,28.7446762]]],[[[-82.6701245,28.7698119],[-82.6690977,28.7694416],[-82.6678641,28.7702815],[-82.6667835,28.769812],[-82.6672135,28.7683992],[-82.667687,28.7668433],[-82.6690036,28.7666626],[-82.6694827,28.7651844],[-82.6697712,28.7642945],[-82.6701621,28.7629772],[-82.670408,28.7621486],[-82.6693639,28.7583196],[-82.6728352,28.7600081],[-82.6740713,28.7598245],[-82.6768074,28.7594181],[-82.6805114,28.7602721],[-82.680545,28.7594996],[-82.6805655,28.7590284],[-82.681132,28.7577881],[-82.6839474,28.7571954],[-82.6853819,28.7568935],[-82.6881445,28.7579338],[-82.6878508,28.7586056],[-82.6869877,28.7605802],[-82.6854803,28.7621022],[-82.6841614,28.7635555],[-82.6811686,28.7638478],[-82.6812737,28.7663707],[-82.6829773,28.7664259],[-82.6833441,28.7664379],[-82.6843726,28.7686805],[-82.6825003,28.7698839],[-82.683213,28.770142],[-82.6835137,28.7702509],[-82.6831337,28.7708622],[-82.6827999,28.7713991],[-82.6824784,28.7715481],[-82.6808456,28.7723047],[-82.6798447,28.7731151],[-82.6764207,28.7738249],[-82.6753445,28.7739824],[-82.6740847,28.7739824],[-82.6726936,28.7734049],[-82.6721686,28.7720663],[-82.6721195,28.772024],[-82.6714075,28.7714101],[-82.6709679,28.7705472],[-82.6706988,28.7700191],[-82.6701245,28.7698119]]],[[[-82.7295899,28.7906556],[-82.7293262,28.7901157],[-82.7293613,28.7896209],[-82.7294173,28.7888331],[-82.7294342,28.788595],[-82.729442,28.7884843],[-82.7299176,28.7881996],[-82.7299191,28.7881922],[-82.7299205,28.7881848],[-82.7299253,28.7881602],[-82.7300129,28.7881014],[-82.7302256,28.7879588],[-82.7309653,28.7877296],[-82.7312149,28.7876522],[-82.7313035,28.7862916],[-82.7313902,28.7849589],[-82.7323065,28.784252],[-82.7333384,28.7847549],[-82.7329117,28.7862021],[-82.7332895,28.7870421],[-82.7335912,28.7877131],[-82.7336967,28.7883655],[-82.7338208,28.7891337],[-82.7337532,28.7891649],[-82.7330532,28.7901561],[-82.7328013,28.7905128],[-82.7327627,28.7905031],[-82.7322134,28.791134],[-82.7309078,28.7914901],[-82.7296807,28.7908415],[-82.7295899,28.7906556]]],[[[-82.7397902,28.7881359],[-82.7412385,28.7874263],[-82.7428988,28.787949],[-82.7437727,28.7886659],[-82.7429646,28.7891761],[-82.741433,28.7916066],[-82.7405537,28.7934587],[-82.740209,28.7936085],[-82.738884,28.7934618],[-82.738383,28.7930628],[-82.738379,28.7930596],[-82.738375,28.7930564],[-82.7376121,28.7924489],[-82.7374759,28.7918032],[-82.7375617,28.7916378],[-82.7376647,28.7914391],[-82.7378378,28.7911053],[-82.7382182,28.7903719],[-82.7397902,28.7881359]]],[[[-82.6969292,28.7993856],[-82.696723,28.7982505],[-82.6982999,28.7985345],[-82.6993755,28.7987283],[-82.6999834,28.7985041],[-82.7023012,28.7976492],[-82.7049894,28.7983489],[-82.7045853,28.7990096],[-82.7034238,28.8009087],[-82.7045829,28.8015541],[-82.70595,28.8023153],[-82.7041679,28.804214],[-82.702442,28.8063401],[-82.7006258,28.804756],[-82.6981102,28.8040424],[-82.6977622,28.8028331],[-82.6972017,28.8008856],[-82.6969292,28.7993856]]],[[[-82.7044233,28.7172308],[-82.7076251,28.7171482],[-82.7102169,28.7189614],[-82.7119529,28.7206925],[-82.7101977,28.7223397],[-82.7094804,28.7224888],[-82.7069618,28.7230122],[-82.7035237,28.7240703],[-82.7027967,28.7252344],[-82.7019195,28.7257461],[-82.7005785,28.7252838],[-82.6997996,28.7250152],[-82.6993666,28.7247416],[-82.6988446,28.7244117],[-82.6989466,28.7217488],[-82.7019629,28.7211543],[-82.7048437,28.7196469],[-82.7045935,28.7182092],[-82.7044233,28.7172308]]],[[[-82.6864224,28.7266964],[-82.6864224,28.7253806],[-82.6867414,28.7239224],[-82.6872295,28.7216911],[-82.6885104,28.7217144],[-82.6885111,28.7217144],[-82.6885118,28.7217144],[-82.6920158,28.7217781],[-82.6950967,28.7225274],[-82.692109,28.7249143],[-82.6919882,28.7252766],[-82.6916855,28.7261847],[-82.6904428,28.7260385],[-82.6894194,28.7255269],[-82.6880305,28.7270619],[-82.6864224,28.7266964]]],[[[-96.4312713,28.3932833],[-96.4322524,28.391359],[-96.4340505,28.3914645],[-96.4362245,28.3917547],[-96.4370085,28.3918594],[-96.436479,28.3929745],[-96.4357519,28.3945059],[-96.4351977,28.3960297],[-96.4348676,28.3969374],[-96.4309223,28.3985943],[-96.4292753,28.3987381],[-96.4277559,28.4004225],[-96.4255756,28.4016994],[-96.4234013,28.4032695],[-96.4232168,28.4034028],[-96.4211616,28.4043718],[-96.4193205,28.4029123],[-96.4212911,28.4018588],[-96.42236,28.3994274],[-96.4245793,28.398073],[-96.4264317,28.3971675],[-96.4281795,28.3959151],[-96.4298314,28.3946256],[-96.4312713,28.3932833]]],[[[-96.3786467,28.38937],[-96.3811251,28.3877436],[-96.3877896,28.3881601],[-96.3900806,28.3912841],[-96.3873731,28.392742],[-96.3852904,28.3954495],[-96.3784176,28.4004479],[-96.3756615,28.402824],[-96.3740676,28.4041981],[-96.3696169,28.4084091],[-96.3671132,28.4098998],[-96.3643589,28.4127416],[-96.3612889,28.4154346],[-96.3596439,28.4168036],[-96.355918,28.4178387],[-96.3536965,28.4200954],[-96.3508731,28.4217831],[-96.3475716,28.4254156],[-96.3454699,28.4277207],[-96.3436339,28.4298901],[-96.3416287,28.4322839],[-96.3390989,28.4329761],[-96.3371576,28.4327594],[-96.3295874,28.4263451],[-96.3288619,28.4238604],[-96.3304939,28.4229901],[-96.3347439,28.4211341],[-96.3372829,28.4198041],[-96.3424649,28.4167791],[-96.3478529,28.4129521],[-96.3525419,28.4089651],[-96.3555979,28.4068101],[-96.3582919,28.4049081],[-96.3625149,28.4027071],[-96.364214,28.4016981],[-96.3705035,28.395866],[-96.3744606,28.3921172],[-96.3786467,28.38937]]],[[[-96.4052317,28.4025256],[-96.4063902,28.4018127],[-96.4161139,28.4019677],[-96.418947,28.4069285],[-96.4189448,28.4069328],[-96.4189425,28.4069371],[-96.4164667,28.4116825],[-96.4164667,28.4156097],[-96.4153815,28.4196403],[-96.4113509,28.4232059],[-96.4074753,28.4232059],[-96.4035589,28.4181848],[-96.4029465,28.4173997],[-96.4014294,28.4154547],[-96.402404,28.4113512],[-96.4029769,28.4089389],[-96.4043749,28.4030529],[-96.4052317,28.4025256]]],[[[-80.8753091,28.9657482],[-80.874701,28.9638492],[-80.8762465,28.9617329],[-80.8770966,28.9598519],[-80.8752907,28.9597412],[-80.874858,28.9597147],[-80.8737595,28.956032],[-80.872942,28.9541818],[-80.8726553,28.9535328],[-80.8723205,28.9530167],[-80.8711298,28.9511806],[-80.8707072,28.9494874],[-80.8704153,28.9483175],[-80.86859,28.9461382],[-80.8689169,28.9439068],[-80.8696114,28.9445311],[-80.8713339,28.9460792],[-80.8734972,28.9500787],[-80.8792871,28.9560496],[-80.8831772,28.961749],[-80.884622,28.9645605],[-80.8857988,28.9668505],[-80.8849818,28.9670661],[-80.8844266,28.9672126],[-80.884353,28.9670102],[-80.8839769,28.965976],[-80.8822063,28.9642897],[-80.8817928,28.9647415],[-80.8806887,28.9659479],[-80.8790539,28.9677107],[-80.8788513,28.9679292],[-80.8769286,28.9666865],[-80.8753091,28.9657482]]],[[[-82.7464639,29.0254583],[-82.7456834,29.0229936],[-82.7497913,29.0215147],[-82.749948,29.0219324],[-82.7502843,29.0228292],[-82.7515577,29.0230757],[-82.7525436,29.0236097],[-82.7510648,29.0256226],[-82.749093,29.0250886],[-82.7474498,29.0260745],[-82.7464639,29.0254583]]],[[[-80.9015642,29.0003305],[-80.9027453,28.9984988],[-80.9037286,29.0001825],[-80.9050737,29.0042544],[-80.9025446,29.0050935],[-80.9012387,29.0032032],[-80.9015642,29.0003305]]],[[[-82.683248,28.9172587],[-82.6834775,28.9148332],[-82.6853458,28.9156198],[-82.6867432,28.9165008],[-82.6868535,28.9165704],[-82.6867703,28.9163462],[-82.6864274,28.9154231],[-82.6866162,28.9145424],[-82.686757,28.9138851],[-82.6883886,28.9135616],[-82.6901647,28.9158872],[-82.6908546,28.9180843],[-82.6902127,28.918682],[-82.688889,28.9199146],[-82.6864632,28.921856],[-82.6831228,28.9223894],[-82.6804896,28.9200131],[-82.683248,28.9172587]]],[[[-80.8282792,28.9127674],[-80.8250722,28.9104933],[-80.8249695,28.9096498],[-80.8247768,28.9080674],[-80.8256036,28.9065165],[-80.8262918,28.9050312],[-80.8290306,28.9039412],[-80.8274858,28.9075713],[-80.8272706,28.9097498],[-80.8289179,28.9113703],[-80.8303959,28.9116169],[-80.831117,28.9117372],[-80.8319916,28.911687],[-80.8346404,28.9115347],[-80.834855,28.9107248],[-80.8350103,28.910139],[-80.8351869,28.9093807],[-80.8355375,28.9078745],[-80.8377699,28.9102379],[-80.840297,28.9106383],[-80.8419136,28.910638],[-80.842629,28.911194],[-80.8432747,28.9116958],[-80.8433805,28.9117781],[-80.8427478,28.9153614],[-80.8418521,28.9162755],[-80.8414623,28.9166732],[-80.8383623,28.9169573],[-80.8353424,28.9164648],[-80.8333945,28.9158919],[-80.8313264,28.9152835],[-80.8309201,28.914808],[-80.8302229,28.9139919],[-80.8282792,28.9127674]]],[[[-80.8204565,28.8967554],[-80.8211651,28.8950899],[-80.8257662,28.892044],[-80.8238982,28.8899194],[-80.8234013,28.8893542],[-80.823205,28.8881658],[-80.8230744,28.8873755],[-80.8231991,28.885642],[-80.8252295,28.8858532],[-80.8260102,28.8859344],[-80.8274845,28.8874855],[-80.8286871,28.887657],[-80.8298018,28.887816],[-80.8301407,28.8870743],[-80.8303563,28.8866022],[-80.8324206,28.88587],[-80.833001,28.8854595],[-80.834331,28.8845187],[-80.8343655,28.8830316],[-80.8343789,28.882456],[-80.8349909,28.8814069],[-80.8362668,28.8812972],[-80.8367693,28.8831348],[-80.8372904,28.8837955],[-80.8374931,28.8840525],[-80.8372218,28.8858055],[-80.8365945,28.8886587],[-80.8343795,28.8903951],[-80.8356303,28.8909075],[-80.8342944,28.8940233],[-80.8364471,28.8959403],[-80.8354353,28.8975985],[-80.8307166,28.8952562],[-80.828176,28.8960556],[-80.8268061,28.8975939],[-80.8243064,28.8976556],[-80.8229877,28.8976882],[-80.8225944,28.8975432],[-80.8204565,28.8967554]]],[[[-82.6719036,28.8945616],[-82.6704758,28.8920113],[-82.6735799,28.8911955],[-82.6755597,28.8910628],[-82.6768714,28.8909749],[-82.6773257,28.8910303],[-82.6790326,28.8912384],[-82.6807162,28.8937391],[-82.6844076,28.8942348],[-82.6875613,28.893642],[-82.687664,28.8949069],[-82.6877789,28.8963239],[-82.6835574,28.8962124],[-82.6806713,28.8963981],[-82.6804764,28.8964106],[-82.6775531,28.8944086],[-82.6751409,28.8970753],[-82.673556,28.8950993],[-82.6722304,28.894668],[-82.6719036,28.8945616]]],[[[-82.6558051,28.8925187],[-82.6568342,28.8921692],[-82.6579762,28.8924435],[-82.659042,28.8934712],[-82.6603362,28.8935093],[-82.6614183,28.8940919],[-82.658998,28.8955594],[-82.6558028,28.896935],[-82.6542528,28.8948596],[-82.6539902,28.8935072],[-82.6538441,28.892754],[-82.6555781,28.8925958],[-82.6558051,28.8925187]]],[[[-82.6640636,28.8960046],[-82.6665164,28.8952482],[-82.6681179,28.8967763],[-82.6661351,28.89908],[-82.6619546,28.899438],[-82.6616606,28.8963934],[-82.6627445,28.896218],[-82.6640636,28.8960046]]],[[[-82.6414079,28.8847153],[-82.6403436,28.8832231],[-82.6380104,28.8834625],[-82.6377487,28.8830091],[-82.6371423,28.8819583],[-82.6375764,28.8813857],[-82.6379871,28.8808442],[-82.6393709,28.8803336],[-82.6402202,28.8811599],[-82.6421712,28.8821698],[-82.6428141,28.8828825],[-82.6432784,28.8833971],[-82.6448567,28.8840291],[-82.6455224,28.8868523],[-82.6477488,28.8871048],[-82.6483915,28.8883902],[-82.6496999,28.8889181],[-82.6510748,28.8900398],[-82.6526852,28.8920629],[-82.6528954,28.8928793],[-82.6529783,28.8932014],[-82.6517061,28.8938586],[-82.6498838,28.8928402],[-82.6485974,28.8920333],[-82.647328,28.891237],[-82.6445622,28.8900715],[-82.6439256,28.8898033],[-82.6445523,28.8869536],[-82.6435077,28.8866474],[-82.6421391,28.8862461],[-82.642135,28.8862374],[-82.6421308,28.8862287],[-82.6414079,28.8847153]]],[[[-80.8397375,28.9004366],[-80.8385396,28.8959902],[-80.8384644,28.8948776],[-80.8383502,28.89319],[-80.8425036,28.8963841],[-80.8421721,28.8984567],[-80.8435814,28.9006951],[-80.8417575,28.9005293],[-80.8397375,28.9004366]]],[[[-80.8397375,28.9004366],[-80.8402203,28.902685],[-80.8406082,28.9044912],[-80.8409741,28.9055338],[-80.8417489,28.9077423],[-80.8392096,28.9059072],[-80.8361331,28.9056484],[-80.8361308,28.9028905],[-80.8397375,28.9004366]]],[[[-80.8312828,28.9315586],[-80.8317171,28.9290735],[-80.8318402,28.9269605],[-80.8323381,28.9252046],[-80.8337471,28.9241537],[-80.8370668,28.9244165],[-80.8386708,28.9238392],[-80.8395832,28.9235108],[-80.8431822,28.9231264],[-80.8433754,28.9230491],[-80.8450239,28.9223898],[-80.844789,28.9222859],[-80.8427338,28.921377],[-80.8431715,28.920883],[-80.8439124,28.9200469],[-80.8485231,28.919443],[-80.8485231,28.9183849],[-80.8485231,28.9168647],[-80.8451858,28.9154464],[-80.8454621,28.9135631],[-80.8455288,28.9104682],[-80.8455659,28.9087479],[-80.8444105,28.9030165],[-80.8468032,28.9003422],[-80.8472292,28.8998661],[-80.8473667,28.8997438],[-80.8487215,28.8985396],[-80.8506178,28.9020838],[-80.8550695,28.9104041],[-80.8582811,28.9164068],[-80.859665,28.9218359],[-80.8603175,28.9235513],[-80.8642793,28.9339673],[-80.8652704,28.9355384],[-80.8658484,28.9364545],[-80.8655754,28.9393214],[-80.8626977,28.9386597],[-80.8596636,28.939731],[-80.8585073,28.942513],[-80.8556581,28.9435252],[-80.8553271,28.9420803],[-80.8550577,28.9409049],[-80.8560122,28.9397965],[-80.8572942,28.9383079],[-80.8591868,28.9344335],[-80.8549936,28.9311885],[-80.8548758,28.931217],[-80.8532688,28.9316058],[-80.8519485,28.9330962],[-80.8513996,28.9337158],[-80.8454983,28.9367104],[-80.8452401,28.9369419],[-80.8446756,28.9374481],[-80.8440716,28.9398535],[-80.8439777,28.9406992],[-80.8438694,28.9416747],[-80.8434975,28.9423906],[-80.8428743,28.9435906],[-80.840302,28.9424315],[-80.8398426,28.9420938],[-80.8384015,28.9410346],[-80.8358886,28.9385734],[-80.8337242,28.9350399],[-80.8312828,28.9315586]]],[[[-95.1382537,29.0772235],[-95.1385851,29.0729147],[-95.1415681,29.0709261],[-95.1472027,29.0709261],[-95.1528373,29.0729147],[-95.1544945,29.0752349],[-95.1556014,29.0757093],[-95.1568146,29.0762292],[-95.1601291,29.0762292],[-95.1634435,29.0762292],[-95.1634435,29.0782179],[-95.163112,29.0812009],[-95.1591347,29.0812009],[-95.1591347,29.0845153],[-95.1600596,29.0848622],[-95.1617863,29.0855097],[-95.1617863,29.0884927],[-95.161573,29.0894169],[-95.160792,29.0928015],[-95.1599975,29.096774],[-95.1594662,29.0994304],[-95.1574974,29.1004148],[-95.1574875,29.1004197],[-95.1574775,29.1004247],[-95.155329,29.0995295],[-95.1535002,29.0987675],[-95.1485285,29.095453],[-95.1482914,29.0942675],[-95.1470211,29.0929245],[-95.1432108,29.0888961],[-95.1395794,29.0861726],[-95.139248,29.0825267],[-95.1385125,29.0786038],[-95.1382537,29.0772235]]],[[[-90.9446899,29.0612041],[-90.9363899,29.0556708],[-90.9335728,29.0567473],[-90.9304804,29.0550997],[-90.9281037,29.0532125],[-90.9241343,29.051916],[-90.9198436,29.0509497],[-90.9191308,29.0509712],[-90.9162344,29.0510585],[-90.9169507,29.0490957],[-90.9176111,29.0473345],[-90.9253165,29.0493159],[-90.9290591,29.0504166],[-90.9403924,29.0552545],[-90.9444698,29.0579018],[-90.9539364,29.063846],[-90.9543766,29.0660475],[-90.9532759,29.0660475],[-90.9446899,29.0612041]]],[[[-90.8151303,29.0569616],[-90.8122667,29.0557113],[-90.809606,29.0561118],[-90.8071181,29.0560346],[-90.8050075,29.0551653],[-90.8028844,29.0555088],[-90.802498,29.0555713],[-90.8020504,29.0556911],[-90.7994942,29.0563753],[-90.7988448,29.0546643],[-90.7991828,29.0545693],[-90.801587,29.0538933],[-90.8042544,29.0493159],[-90.8080424,29.046437],[-90.8200893,29.0433532],[-90.8216685,29.0429489],[-90.8213998,29.0433872],[-90.8206454,29.0446178],[-90.8231876,29.0442523],[-90.8304162,29.043036],[-90.830581,29.0432621],[-90.8337329,29.0433717],[-90.8372553,29.0433717],[-90.8391192,29.0444156],[-90.8430941,29.0466419],[-90.8451808,29.0468942],[-90.8464751,29.0488355],[-90.8465018,29.0488756],[-90.8492527,29.0495995],[-90.8506847,29.0499763],[-90.853987,29.0508569],[-90.8586102,29.0508569],[-90.8592007,29.0509036],[-90.866976,29.0515174],[-90.8700578,29.0521662],[-90.8711589,29.052398],[-90.8720395,29.0539391],[-90.8715992,29.0554801],[-90.8671961,29.0541592],[-90.8645543,29.0530585],[-90.8614721,29.0530585],[-90.8572893,29.0532786],[-90.8542517,29.0529141],[-90.8517854,29.0526182],[-90.8424914,29.0520546],[-90.8414157,29.0538629],[-90.8379225,29.0523167],[-90.8373043,29.0521737],[-90.8354111,29.0517358],[-90.8350778,29.0501488],[-90.8348433,29.0490323],[-90.8344718,29.0474226],[-90.8331428,29.047539],[-90.8304526,29.0477748],[-90.8269302,29.0477748],[-90.8225271,29.0484352],[-90.8165039,29.0505634],[-90.8190231,29.0520185],[-90.818072,29.0542014],[-90.8179018,29.054592],[-90.8210506,29.0547272],[-90.8236603,29.056312],[-90.8209826,29.0576872],[-90.8182207,29.0572731],[-90.8157465,29.0570237],[-90.8151303,29.0569616]]],[[[-90.7337875,29.0555784],[-90.7311366,29.0552351],[-90.7288169,29.056908],[-90.7268142,29.0565388],[-90.7244348,29.0563708],[-90.7229767,29.0562678],[-90.7227414,29.0562074],[-90.7208667,29.0557263],[-90.7186937,29.0566206],[-90.7146485,29.0572871],[-90.7140953,29.0573783],[-90.7133493,29.0573459],[-90.7110129,29.0572446],[-90.7077064,29.0572446],[-90.7058299,29.0572446],[-90.7040518,29.0572446],[-90.7010933,29.0574187],[-90.6994581,29.0564785],[-90.7016154,29.0542861],[-90.7117091,29.0511536],[-90.7209326,29.0492393],[-90.7334626,29.047325],[-90.7453062,29.0446685],[-90.7504372,29.0435176],[-90.7509789,29.0437009],[-90.7509795,29.0437011],[-90.7509801,29.0437013],[-90.7524317,29.0441925],[-90.7614812,29.0441925],[-90.7658319,29.0441925],[-90.7662401,29.045281],[-90.766354,29.0455847],[-90.7649618,29.047151],[-90.7639783,29.0471072],[-90.7626449,29.0470479],[-90.7615918,29.047001],[-90.759978,29.0469291],[-90.7526057,29.0462808],[-90.7482761,29.048106],[-90.749143,29.0475796],[-90.749399,29.0474242],[-90.7384352,29.0490865],[-90.7382303,29.0495567],[-90.7378756,29.0503704],[-90.7353137,29.0525118],[-90.7365479,29.0549715],[-90.736195,29.0562027],[-90.7358226,29.0575016],[-90.7337875,29.0555784]]],[[[-90.6501627,29.0632678],[-90.6525543,29.0625503],[-90.6529734,29.0624246],[-90.6541056,29.0624655],[-90.6584564,29.0617694],[-90.6635131,29.0610692],[-90.6697682,29.0602031],[-90.6795451,29.0586177],[-90.682403,29.059156],[-90.6833424,29.059333],[-90.6850992,29.0598735],[-90.6856048,29.0600291],[-90.687171,29.0614213],[-90.6868955,29.0626614],[-90.686823,29.0629876],[-90.6831684,29.0629876],[-90.6781216,29.0629876],[-90.6724063,29.0626002],[-90.6652435,29.0626395],[-90.660657,29.0634694],[-90.6559999,29.064454],[-90.6478224,29.0664086],[-90.6425261,29.0682562],[-90.6425226,29.0682583],[-90.6425191,29.0682604],[-90.6418027,29.0686902],[-90.6403707,29.0695494],[-90.6403707,29.0709043],[-90.6401859,29.072136],[-90.6387695,29.0724439],[-90.6369219,29.0722592],[-90.6361336,29.0719143],[-90.6359366,29.0718281],[-90.6362445,29.0707195],[-90.6370627,29.0695294],[-90.637063,29.0695291],[-90.6370632,29.0695287],[-90.6375994,29.0687488],[-90.6378758,29.0685672],[-90.6397548,29.0673324],[-90.64514,29.0650919],[-90.6473913,29.0643763],[-90.6485651,29.0638546],[-90.6501627,29.0632678]]],[[[-90.8083482,29.0654451],[-90.805536,29.0685943],[-90.8029049,29.0696828],[-90.8020627,29.0700313],[-90.7998008,29.0680853],[-90.8012507,29.0663728],[-90.8025203,29.0647578],[-90.8037771,29.0637446],[-90.8057283,29.0632228],[-90.8083482,29.0654451]]],[[[-90.8083482,29.0654451],[-90.8129131,29.0638873],[-90.8155083,29.0640939],[-90.8163832,29.0657039],[-90.8164263,29.0694296],[-90.8130903,29.0686765],[-90.8103815,29.0674092],[-90.8083482,29.0654451]]],[[[-80.9171845,29.0583945],[-80.9256762,29.0583428],[-80.9294427,29.0603344],[-80.9298128,29.0605301],[-80.9279678,29.0642669],[-80.9263453,29.0648999],[-80.9239365,29.0653014],[-80.9208587,29.0669741],[-80.9186229,29.0644589],[-80.9181823,29.0639632],[-80.9174214,29.0607187],[-80.9170468,29.0603207],[-80.915702,29.0588921],[-80.9171845,29.0583945]]],[[[-80.8667436,28.9935425],[-80.8655436,28.9912425],[-80.8618263,28.9857691],[-80.8607596,28.9840945],[-80.859373,28.9820091],[-80.8577036,28.9793265],[-80.8562956,28.9774145],[-80.8545676,28.9745505],[-80.8528876,28.9720065],[-80.8512876,28.9695185],[-80.8498796,28.9676145],[-80.8496381,28.9660033],[-80.8468085,28.9623846],[-80.8420493,28.9562982],[-80.841134,28.9548913],[-80.8393336,28.9523185],[-80.8374103,28.9496785],[-80.8359356,28.9474778],[-80.834349,28.9453062],[-80.8321042,28.9419731],[-80.8290558,28.9377199],[-80.8251,28.9318363],[-80.823953,28.9305187],[-80.8222591,28.928039],[-80.8162771,28.9192292],[-80.8148956,28.917149],[-80.8085999,28.9076962],[-80.8052796,28.902817],[-80.8027811,28.899152],[-80.8002936,28.895644],[-80.7979236,28.8922735],[-80.7958657,28.8894985],[-80.7930989,28.8852999],[-80.7905604,28.8814493],[-80.7880975,28.8775182],[-80.7867907,28.8755445],[-80.7803343,28.8663936],[-80.7781754,28.8624925],[-80.775962,28.8589115],[-80.7772344,28.8582019],[-80.779804,28.8613563],[-80.7824074,28.8653315],[-80.7854448,28.866802],[-80.789503,28.8688009],[-80.7933547,28.872818],[-80.7943613,28.8748428],[-80.7962457,28.8772325],[-80.7980166,28.8799155],[-80.7972511,28.8819959],[-80.7998217,28.8841188],[-80.8018355,28.8870072],[-80.80338,28.8884227],[-80.8055036,28.8921365],[-80.8075616,28.8940395],[-80.8124254,28.8973055],[-80.8141495,28.8981648],[-80.8204448,28.905307],[-80.821138,28.9072526],[-80.8211662,28.9090715],[-80.8209366,28.9101122],[-80.8185978,28.9162119],[-80.8205016,28.919712],[-80.8244509,28.9260907],[-80.8246076,28.9271208],[-80.8267284,28.9304342],[-80.8304977,28.9370994],[-80.83139,28.9389904],[-80.8333354,28.9411664],[-80.8349616,28.9430703],[-80.8388224,28.9463177],[-80.8389992,28.9479731],[-80.8416701,28.9506584],[-80.8427055,28.9523551],[-80.8450928,28.9545916],[-80.846098,28.9556721],[-80.8475555,28.9592154],[-80.8491573,28.9590799],[-80.8508223,28.958939],[-80.8522295,28.9594667],[-80.8522731,28.9589443],[-80.8523803,28.9576574],[-80.8521736,28.9566998],[-80.8519029,28.955446],[-80.8507721,28.9536618],[-80.8487868,28.952933],[-80.8476502,28.9521007],[-80.8459258,28.950843],[-80.8453957,28.9504843],[-80.8440194,28.9495531],[-80.8446813,28.9475092],[-80.8459928,28.9455513],[-80.8509766,28.9457425],[-80.8537183,28.9455315],[-80.8559911,28.946656],[-80.8558592,28.9479726],[-80.8556906,28.9496538],[-80.8553836,28.9513991],[-80.8550185,28.9534742],[-80.8542627,28.9547943],[-80.8559011,28.9569824],[-80.8573661,28.9559717],[-80.8579068,28.9553987],[-80.8584683,28.9548037],[-80.8582841,28.9514886],[-80.8584069,28.9503836],[-80.8586525,28.9481735],[-80.8619675,28.9481735],[-80.8660193,28.9496469],[-80.8664086,28.9505553],[-80.8671243,28.9522253],[-80.8669785,28.9539301],[-80.866621,28.9581115],[-80.8676932,28.9594476],[-80.8681656,28.9594759],[-80.8697451,28.9595703],[-80.8722823,28.959598],[-80.8724492,28.9622409],[-80.8708703,28.9643615],[-80.8737065,28.9668811],[-80.8726182,28.9677597],[-80.8718054,28.9684159],[-80.8709271,28.9713183],[-80.8705636,28.9725195],[-80.8683835,28.9737653],[-80.8671622,28.9724811],[-80.8643977,28.9726774],[-80.8646136,28.9740737],[-80.8649091,28.9759852],[-80.8641553,28.9766651],[-80.8639402,28.9768592],[-80.8638583,28.9769331],[-80.862108,28.978512],[-80.8625316,28.9821775],[-80.8664001,28.982332],[-80.8706976,28.9889545],[-80.8735446,28.9933425],[-80.873949,28.9932206],[-80.8774438,28.9921675],[-80.8794937,28.991981],[-80.8817892,28.989901],[-80.8821003,28.9883187],[-80.8822873,28.9873679],[-80.8857929,28.9879242],[-80.8868134,28.9880861],[-80.8865972,28.9870429],[-80.8861275,28.9847771],[-80.8892166,28.9838764],[-80.8912366,28.9863575],[-80.8924194,28.9876442],[-80.8931276,28.9884147],[-80.8937765,28.9894957],[-80.8950035,28.99154],[-80.8936741,28.9954554],[-80.8931756,28.9979885],[-80.8905916,28.9987105],[-80.8903231,28.9987855],[-80.8876573,28.9988936],[-80.8857899,29.0004165],[-80.8862532,29.003239],[-80.8923248,29.0039027],[-80.8947222,29.0041198],[-80.8984894,29.0052417],[-80.9008047,29.0066481],[-80.9014327,29.0070295],[-80.903479,29.0074643],[-80.9058866,29.0085075],[-80.9079221,29.0100518],[-80.9093627,29.0120902],[-80.9094402,29.0129396],[-80.9095461,29.014101],[-80.9114233,29.0171558],[-80.9114661,29.0172254],[-80.9121547,29.0180222],[-80.9130536,29.0190625],[-80.9151273,29.0240494],[-80.9153887,29.0246779],[-80.9153899,29.0246807],[-80.915391,29.0246836],[-80.9157276,29.025493],[-80.9116446,29.0276415],[-80.9049403,29.0339175],[-80.9046561,29.0361685],[-80.9043005,29.0382837],[-80.9043,29.0382863],[-80.9042996,29.038289],[-80.9041984,29.038891],[-80.9039473,29.0407748],[-80.9038446,29.0438405],[-80.9038446,29.0461405],[-80.9046335,29.048549],[-80.9065096,29.051849],[-80.9082446,29.0545405],[-80.9117446,29.0582405],[-80.9133364,29.0603465],[-80.9143296,29.0633678],[-80.916561,29.0650725],[-80.9173125,29.0667734],[-80.9183877,29.0685797],[-80.9189852,29.0695836],[-80.9181823,29.0745349],[-80.9127626,29.0739327],[-80.9093503,29.0709887],[-80.9092932,29.0692385],[-80.9082526,29.068267],[-80.9072446,29.0659405],[-80.9068026,29.0639795],[-80.9039446,29.0569405],[-80.9027446,29.0543405],[-80.8985446,29.0462405],[-80.8972196,29.0436905],[-80.8960063,29.0412918],[-80.8944446,29.038358],[-80.8934446,29.0364415],[-80.8906926,29.0318635],[-80.8888446,29.0287415],[-80.8876036,29.0266325],[-80.8863333,29.0244721],[-80.8827446,29.0186415],[-80.8801126,29.0142745],[-80.87806,29.0108898],[-80.8760591,29.007807],[-80.8735821,29.0040232],[-80.8708896,29.0003175],[-80.8667436,28.9935425]]],[[[-94.8213468,29.3491426],[-94.822921,29.3484914],[-94.826439,29.3502329],[-94.8262291,29.35196],[-94.8261862,29.3523129],[-94.824756,29.3542623],[-94.8208691,29.3531765],[-94.8207461,29.3529249],[-94.8193095,29.3499853],[-94.8213468,29.3491426]]],[[[-90.007559,29.3968105],[-90.0081674,29.3950717],[-90.0084162,29.3943607],[-90.0106625,29.3954127],[-90.0108814,29.3955],[-90.0124252,29.3961157],[-90.0155099,29.3959775],[-90.0160864,29.3961073],[-90.0177748,29.3964873],[-90.0188525,29.3967299],[-90.0181013,29.3973602],[-90.01744,29.397915],[-90.0166538,29.3985745],[-90.0164209,29.3987699],[-90.0144869,29.399658],[-90.0134492,29.3992193],[-90.0130594,29.3990545],[-90.0127097,29.3989067],[-90.0124441,29.3991359],[-90.0111795,29.4002267],[-90.0106941,29.4007593],[-90.00883,29.4028046],[-90.0084914,29.4008673],[-90.0083918,29.4002975],[-90.0100174,29.3987713],[-90.0107995,29.3980369],[-90.0095922,29.39758],[-90.007559,29.3968105]]],[[[-90.0469501,29.4300127],[-90.038952,29.4277514],[-90.0371386,29.4260462],[-90.0348864,29.4256883],[-90.0328237,29.4254179],[-90.0296828,29.4262697],[-90.030706,29.4234756],[-90.0342297,29.4228176],[-90.0334338,29.419188],[-90.0332977,29.417588],[-90.0332196,29.4166688],[-90.0338088,29.4165795],[-90.0362757,29.4162057],[-90.0396209,29.4157264],[-90.0432225,29.415626],[-90.0444657,29.4144459],[-90.0457333,29.4132427],[-90.0470783,29.4155314],[-90.045592,29.4168985],[-90.0443004,29.4180865],[-90.0440527,29.4192267],[-90.0439008,29.4199254],[-90.0430233,29.4227534],[-90.0456007,29.4251835],[-90.0500738,29.4242682],[-90.0529001,29.4223316],[-90.0532676,29.4230086],[-90.0553158,29.426782],[-90.058219,29.4296105],[-90.0557507,29.4310189],[-90.0527143,29.4316548],[-90.0506265,29.4297412],[-90.0469501,29.4300127]]],[[[-90.007559,29.3968105],[-90.005643,29.401036],[-90.0041029,29.4041416],[-90.00236,29.4034748],[-90.0025105,29.4024311],[-90.0028245,29.4002542],[-90.0033781,29.3994461],[-90.0044972,29.3978124],[-90.0045083,29.3965054],[-90.0045195,29.3951835],[-90.007559,29.3968105]]],[[[-89.4779092,29.4067653],[-89.4815351,29.4062359],[-89.4792161,29.4092551],[-89.4768257,29.4116063],[-89.4749693,29.4132134],[-89.475043,29.4104477],[-89.4758947,29.4085149],[-89.4779092,29.4067653]]],[[[-89.5406309,29.4107354],[-89.5403593,29.4089062],[-89.5403584,29.405682],[-89.5420079,29.4034007],[-89.5433288,29.4046295],[-89.5449178,29.4074771],[-89.5439919,29.4105767],[-89.5406309,29.4107354]]],[[[-89.8710993,29.4089182],[-89.8731671,29.4080752],[-89.8749286,29.4083454],[-89.8759832,29.4108217],[-89.8790892,29.4128192],[-89.8767686,29.4146281],[-89.8736078,29.415096],[-89.8707277,29.4156881],[-89.8662301,29.4150425],[-89.8669924,29.4125525],[-89.8681373,29.4100022],[-89.8710993,29.4089182]]],[[[-89.9886038,29.421301],[-89.9855047,29.419607],[-89.9823632,29.4199836],[-89.9806601,29.4189045],[-89.9822484,29.417039],[-89.9839139,29.415045],[-89.9855175,29.4127642],[-89.9865922,29.4103382],[-89.9872842,29.4081454],[-89.9881972,29.4062894],[-89.9890783,29.4077355],[-89.9894203,29.4098037],[-89.989658,29.4132543],[-89.9902405,29.4167013],[-89.9907104,29.419394],[-89.9910466,29.4223014],[-89.9886038,29.421301]]],[[[-89.5406309,29.4107354],[-89.5364597,29.4127192],[-89.5339458,29.4135121],[-89.5340795,29.4151495],[-89.5335298,29.4183494],[-89.5367429,29.4200399],[-89.5344452,29.422226],[-89.5353772,29.4248832],[-89.5325047,29.4263641],[-89.5308857,29.4239492],[-89.5294187,29.4220872],[-89.5279756,29.4188015],[-89.5259497,29.4195557],[-89.5230047,29.4175852],[-89.5205692,29.4157753],[-89.5189282,29.4156459],[-89.520034,29.4117129],[-89.523144,29.4141954],[-89.5261441,29.4117079],[-89.5288161,29.4112157],[-89.5279303,29.4085047],[-89.5315768,29.4091367],[-89.5326508,29.4056841],[-89.5344129,29.4069393],[-89.5360778,29.4079742],[-89.5382148,29.4093645],[-89.5406309,29.4107354]]],[[[-89.8135551,29.4171267],[-89.8139666,29.414566],[-89.8159081,29.4141722],[-89.8172284,29.414708],[-89.8191088,29.4144515],[-89.8225388,29.413884],[-89.8214499,29.4164734],[-89.8213046,29.4184144],[-89.8198272,29.4196336],[-89.8187848,29.4168109],[-89.815465,29.4172453],[-89.8135551,29.4171267]]],[[[-89.9377017,29.4338244],[-89.9380088,29.4303435],[-89.937225,29.4279793],[-89.9403205,29.4280297],[-89.9424555,29.428972],[-89.9409824,29.430286],[-89.9398785,29.4321297],[-89.9377017,29.4338244]]],[[[-90.0015783,29.4355778],[-89.9999945,29.433965],[-89.9998155,29.4337827],[-89.9999945,29.4335756],[-90.0012782,29.4320906],[-90.0029469,29.430332],[-90.0045432,29.4323398],[-90.0064347,29.4340245],[-90.0042552,29.4344012],[-90.0015783,29.4355778]]],[[[-89.9782808,29.4354542],[-89.9788402,29.430926],[-89.9808952,29.433452],[-89.98191,29.4371787],[-89.9795571,29.4386056],[-89.9782808,29.4354542]]],[[[-81.6433149,29.3417326],[-81.6458771,29.3408358],[-81.6477987,29.3428855],[-81.6462614,29.3463445],[-81.6465176,29.3489067],[-81.6488236,29.3494191],[-81.6506171,29.3501877],[-81.6507452,29.3526218],[-81.6529231,29.3601802],[-81.6518982,29.3635111],[-81.6480286,29.3666551],[-81.6477987,29.3668419],[-81.6464054,29.3725025],[-81.645749,29.375169],[-81.645749,29.3790122],[-81.6467739,29.3822149],[-81.6463895,29.3840085],[-81.6443398,29.3842647],[-81.6371657,29.3817025],[-81.6346035,29.3797809],[-81.6314008,29.3774749],[-81.628414,29.3747179],[-81.6287096,29.3722439],[-81.6266952,29.3695866],[-81.6263094,29.3681894],[-81.6269523,29.3650606],[-81.6302097,29.3590174],[-81.6348814,29.3546456],[-81.638053,29.3525026],[-81.639887,29.3499729],[-81.6415214,29.3487785],[-81.6424182,29.3460883],[-81.6433149,29.3417326]]],[[[-90.0261566,29.3515829],[-90.0272995,29.3494812],[-90.0298611,29.3507259],[-90.0334276,29.3533313],[-90.0324465,29.354728],[-90.0319344,29.355457],[-90.0315054,29.3561855],[-90.0307409,29.3574836],[-90.0298151,29.3581541],[-90.0278811,29.3595548],[-90.0270267,29.3568839],[-90.0240793,29.3547785],[-90.0230853,29.3526267],[-90.0261566,29.3515829]]],[[[-89.9907165,29.3702807],[-89.9886307,29.3689465],[-89.9861359,29.36724],[-89.9883262,29.3660277],[-89.9915287,29.3657684],[-89.9943973,29.364043],[-89.9970985,29.3651827],[-89.9990055,29.3662006],[-89.999151,29.3699526],[-89.9994322,29.3698612],[-89.9999945,29.3696783],[-90.0020398,29.3690132],[-90.0044494,29.3692317],[-90.0045733,29.3691192],[-90.0070569,29.366864],[-90.006825,29.3638414],[-90.0085684,29.3613701],[-90.0090723,29.3606558],[-90.0103795,29.3565824],[-90.0120917,29.3563976],[-90.012374,29.3563671],[-90.0131112,29.3587857],[-90.0134233,29.3596344],[-90.0138717,29.3608537],[-90.0121079,29.3628433],[-90.0105955,29.3640422],[-90.0093705,29.3659701],[-90.0089127,29.3677619],[-90.0086203,29.3689065],[-90.005463,29.3711354],[-90.0027331,29.3711948],[-90.0032725,29.3736696],[-90.0018475,29.3748357],[-90.0000728,29.375084],[-89.9999945,29.3750949],[-89.9998773,29.3751113],[-89.9989424,29.3777424],[-89.9969422,29.3757724],[-89.9953705,29.3739187],[-89.9934135,29.3721582],[-89.9907165,29.3702807]]],[[[-89.9794723,29.3538362],[-89.9767854,29.3537774],[-89.9740962,29.3549264],[-89.9740592,29.3522107],[-89.9760301,29.3510901],[-89.978295,29.3488694],[-89.977904,29.3454843],[-89.9807115,29.3453277],[-89.9834685,29.3467969],[-89.9830625,29.3434545],[-89.9803264,29.3429633],[-89.9811249,29.3401485],[-89.9841047,29.3404942],[-89.9851271,29.338863],[-89.9870943,29.3411803],[-89.9888095,29.3419892],[-89.9896239,29.3438015],[-89.9923118,29.3454271],[-89.9942112,29.3422757],[-89.9951837,29.3396614],[-89.9988162,29.3410964],[-89.9999945,29.3417088],[-90.0028549,29.3431953],[-90.0053875,29.3425847],[-90.0082312,29.3423321],[-90.0090772,29.3438509],[-90.0095112,29.3446303],[-90.0113733,29.3461575],[-90.0114548,29.3482172],[-90.0115071,29.3495382],[-90.009241,29.353444],[-90.0069925,29.3516044],[-90.0049182,29.3502805],[-90.0022459,29.3492179],[-90.0022396,29.349217],[-90.0022333,29.3492161],[-90.0000705,29.3489042],[-89.9999945,29.3488913],[-89.9975992,29.3484854],[-89.9946613,29.3497177],[-89.9932955,29.3506357],[-89.9911709,29.3509718],[-89.9894623,29.3528999],[-89.9867657,29.3536265],[-89.9873629,29.3564633],[-89.9862016,29.3588933],[-89.9848953,29.3636375],[-89.9829826,29.3618949],[-89.9831005,29.3571872],[-89.9838844,29.3544143],[-89.9794723,29.3538362]]],[[[-90.0101038,29.3833009],[-90.0092754,29.3819397],[-90.008596,29.3808232],[-90.0079331,29.3792645],[-90.0088026,29.3788413],[-90.009645,29.3784312],[-90.0107166,29.3781044],[-90.0123225,29.3776146],[-90.0158845,29.3754917],[-90.017562,29.3775362],[-90.0197755,29.3795447],[-90.02246,29.3807708],[-90.0205923,29.3827274],[-90.0202281,29.3831089],[-90.0185985,29.3820482],[-90.0169321,29.3817257],[-90.0160882,29.3815623],[-90.0152096,29.3809253],[-90.0141588,29.3801635],[-90.0117419,29.3818419],[-90.0114455,29.3820477],[-90.0101038,29.3833009]]],[[[-90.0101038,29.3833009],[-90.0118898,29.3876093],[-90.0156888,29.3916696],[-90.0133657,29.3929085],[-90.0116219,29.3920821],[-90.0095037,29.3899741],[-90.0068642,29.3894729],[-90.0045484,29.3871502],[-90.0087252,29.3853623],[-90.0101038,29.3833009]]],[[[-89.8874894,29.3778033],[-89.8873029,29.3756098],[-89.8900002,29.3768706],[-89.891832,29.3750813],[-89.8918726,29.3717402],[-89.8916052,29.3686215],[-89.8925266,29.3665667],[-89.8934746,29.3644925],[-89.8947388,29.366085],[-89.8953186,29.3677407],[-89.8957631,29.3694862],[-89.8981471,29.3721782],[-89.9015571,29.3745517],[-89.8986122,29.3760174],[-89.8952883,29.37706],[-89.8938693,29.3784452],[-89.8941064,29.3803523],[-89.8897768,29.3823021],[-89.8860497,29.384254],[-89.8885074,29.3802775],[-89.8874894,29.3778033]]],[[[-81.6547166,29.3791403],[-81.6549728,29.3747846],[-81.6574069,29.3733754],[-81.6594882,29.3737917],[-81.6599691,29.3738879],[-81.6607377,29.3773468],[-81.6626832,29.3779027],[-81.663428,29.3781155],[-81.6671432,29.378756],[-81.6681414,29.3781945],[-81.6691929,29.377603],[-81.6722675,29.3790122],[-81.6728187,29.380716],[-81.6736767,29.3833679],[-81.6725237,29.3845209],[-81.6661183,29.3832398],[-81.661488,29.3830973],[-81.6577912,29.3829836],[-81.6564501,29.3813072],[-81.6547166,29.3791403]]],[[[-89.8644618,29.364069],[-89.8665438,29.3632465],[-89.8672656,29.3655889],[-89.8684406,29.367511],[-89.8682737,29.3701549],[-89.8671126,29.3721527],[-89.8647606,29.3737722],[-89.8655791,29.3710307],[-89.8667912,29.3691512],[-89.8656878,29.3677047],[-89.8637597,29.3669704],[-89.8633136,29.3653067],[-89.8644618,29.364069]]],[[[-89.8387949,29.3695977],[-89.8364996,29.3686429],[-89.8343694,29.3695816],[-89.8310061,29.3707987],[-89.8293815,29.369123],[-89.8324401,29.3666004],[-89.8344529,29.3650384],[-89.8374295,29.3646404],[-89.8390812,29.3669729],[-89.8409232,29.3685643],[-89.8439523,29.3697208],[-89.844983,29.3711493],[-89.8428641,29.372643],[-89.8408006,29.3713401],[-89.8387949,29.3695977]]],[[[-89.822597,29.3683696],[-89.8243656,29.3662695],[-89.823903,29.3703923],[-89.8206861,29.3737502],[-89.818674,29.3713169],[-89.8208352,29.3700356],[-89.822597,29.3683696]]],[[[-89.3051877,29.3680383],[-89.3062462,29.3660763],[-89.3085805,29.3674145],[-89.3083597,29.3706889],[-89.3107154,29.3714673],[-89.3101097,29.3743536],[-89.3064867,29.3753273],[-89.3062602,29.3728637],[-89.3057379,29.3707585],[-89.3051877,29.3680383]]],[[[-89.3475558,29.3800737],[-89.3464517,29.3775073],[-89.3443427,29.3743158],[-89.3475503,29.3724257],[-89.3511453,29.372266],[-89.3538135,29.3723779],[-89.3528879,29.3738857],[-89.3539711,29.3762615],[-89.3546647,29.3794893],[-89.351515,29.3803722],[-89.3475558,29.3800737]]],[[[-89.8295211,29.3776512],[-89.8320532,29.3732903],[-89.8341259,29.375286],[-89.8356436,29.37702],[-89.8393746,29.3783388],[-89.83967,29.3824135],[-89.8369906,29.3812735],[-89.8335589,29.3801847],[-89.8307954,29.3800701],[-89.8295211,29.3776512]]],[[[-89.3475558,29.3800737],[-89.3443392,29.3814972],[-89.3419437,29.3814987],[-89.339665,29.380819],[-89.3376881,29.3815857],[-89.334079,29.383278],[-89.3321715,29.38056],[-89.3314533,29.378441],[-89.3345995,29.3784797],[-89.3370229,29.3776569],[-89.3389873,29.3794442],[-89.3425869,29.3782042],[-89.3446135,29.3793023],[-89.3475558,29.3800737]]],[[[-89.8515376,29.3827762],[-89.8540416,29.3815142],[-89.8554883,29.3831592],[-89.8585453,29.383904],[-89.8541614,29.3849953],[-89.8509662,29.3848973],[-89.8488048,29.3828077],[-89.8515376,29.3827762]]],[[[-89.368897,29.3856562],[-89.3666115,29.3842324],[-89.3636332,29.3844137],[-89.3621209,29.3832473],[-89.3606089,29.3820603],[-89.3568643,29.3808008],[-89.3591517,29.3796719],[-89.360749,29.379152],[-89.3602812,29.3766018],[-89.3628171,29.3764813],[-89.3646281,29.3755875],[-89.3677556,29.3749164],[-89.3691514,29.3765429],[-89.3692577,29.3792424],[-89.3712299,29.3827691],[-89.374106,29.3833211],[-89.3765429,29.3850309],[-89.378312,29.3871263],[-89.3806887,29.3886887],[-89.3827901,29.3916295],[-89.3806936,29.3927473],[-89.3768841,29.3893275],[-89.3741878,29.3873249],[-89.371378,29.3872857],[-89.368897,29.3856562]]],[[[-90.0344647,29.4459021],[-90.0344641,29.4459002],[-90.0334407,29.4423934],[-90.0328741,29.4426271],[-90.0308632,29.4434564],[-90.0274645,29.4419633],[-90.0303638,29.4398875],[-90.0319333,29.4378866],[-90.0303539,29.434883],[-90.03334,29.4360011],[-90.0335882,29.4365269],[-90.0344477,29.4383477],[-90.0377372,29.4404446],[-90.0375845,29.4424057],[-90.0370812,29.4432444],[-90.0364922,29.444226],[-90.0344647,29.4459021]]],[[[-90.0344647,29.4459021],[-90.0344645,29.4459023],[-90.0335975,29.4472004],[-90.032814,29.4483733],[-90.0328628,29.4497389],[-90.0329076,29.4509923],[-90.0307617,29.45139],[-90.0279107,29.4512647],[-90.0296151,29.4498557],[-90.0305617,29.4490732],[-90.0322548,29.4456737],[-90.0344545,29.4459011],[-90.0344621,29.4459018],[-90.0344622,29.4459019],[-90.0344647,29.4459021]]],[[[-89.9072451,29.4348042],[-89.9112696,29.4344618],[-89.9129732,29.4357107],[-89.9125656,29.4371965],[-89.9120288,29.4401011],[-89.9091793,29.4372754],[-89.9072451,29.4348042]]],[[[-89.8709612,29.4477947],[-89.8710031,29.4442505],[-89.8730488,29.4409702],[-89.8737327,29.4373679],[-89.8750626,29.4357677],[-89.8769706,29.4344867],[-89.8818667,29.4330348],[-89.8855786,29.433699],[-89.8863395,29.4366381],[-89.8874623,29.4397247],[-89.8876256,29.4421027],[-89.8897876,29.4436022],[-89.8925116,29.4438607],[-89.8940756,29.4436317],[-89.8957454,29.4443675],[-89.8938132,29.445755],[-89.8912242,29.4461427],[-89.8886836,29.4464981],[-89.8859396,29.4445914],[-89.8832986,29.4446477],[-89.8818296,29.4452307],[-89.879729,29.4462088],[-89.8771226,29.4467407],[-89.8748188,29.4462507],[-89.8727253,29.4452119],[-89.8709612,29.4477947]]],[[[-89.9377017,29.4338244],[-89.9361515,29.4379347],[-89.9367331,29.4404106],[-89.9384723,29.4411177],[-89.9374719,29.4433416],[-89.9389085,29.4468661],[-89.9405175,29.4491694],[-89.9419539,29.4516375],[-89.9401035,29.4516297],[-89.9374023,29.4520012],[-89.9348904,29.4535616],[-89.9320986,29.4520308],[-89.9340487,29.4491105],[-89.9340455,29.4461737],[-89.9331368,29.4434433],[-89.931429,29.4443817],[-89.9298645,29.446145],[-89.9308731,29.4494611],[-89.9281199,29.4485457],[-89.9248171,29.4487996],[-89.9228575,29.4514135],[-89.9192123,29.4500723],[-89.9187256,29.4476594],[-89.9234105,29.4463157],[-89.9255535,29.4455607],[-89.9287603,29.4438092],[-89.9310475,29.4412557],[-89.9329405,29.4383314],[-89.9343865,29.435316],[-89.9377017,29.4338244]]],[[[-90.0015783,29.4355778],[-90.000887,29.4374963],[-90.0026734,29.4386107],[-90.0043828,29.4406082],[-90.0062266,29.4424923],[-90.0081683,29.4441247],[-90.0101353,29.4447923],[-90.0123823,29.4426785],[-90.0149054,29.4432533],[-90.0175902,29.4438212],[-90.0150322,29.4455196],[-90.0156766,29.4460694],[-90.0168142,29.4470402],[-90.016988,29.4487627],[-90.0171751,29.4506179],[-90.0190977,29.4514632],[-90.019548,29.4516612],[-90.0204708,29.4545446],[-90.0214452,29.4590755],[-90.023179,29.459806],[-90.0243967,29.460319],[-90.0273685,29.4628142],[-90.0287283,29.4643138],[-90.0288651,29.4644646],[-90.029896,29.464689],[-90.0313468,29.4650048],[-90.0333575,29.4652387],[-90.0342722,29.4665075],[-90.0344075,29.4682061],[-90.0345806,29.4700657],[-90.0368669,29.4697718],[-90.0380772,29.4681118],[-90.037912,29.4674783],[-90.0374819,29.4658283],[-90.0409285,29.4663374],[-90.0411104,29.4663642],[-90.0440243,29.4660062],[-90.0464214,29.4650507],[-90.046748,29.4648548],[-90.0496418,29.4631185],[-90.0516109,29.4638174],[-90.0551142,29.4633054],[-90.0569186,29.4663555],[-90.0587857,29.4667742],[-90.0587972,29.4667767],[-90.0588088,29.4667793],[-90.0590852,29.4671206],[-90.0604459,29.4688],[-90.0627698,29.4698357],[-90.0626165,29.4723199],[-90.0609832,29.4746852],[-90.0587716,29.4746661],[-90.0565393,29.4726796],[-90.052727,29.4717785],[-90.0490653,29.4726872],[-90.047963,29.4733056],[-90.0473153,29.4736689],[-90.0466248,29.4737549],[-90.0451735,29.4739357],[-90.0427464,29.4740375],[-90.0402563,29.4737157],[-90.0379375,29.4731435],[-90.0347595,29.473566],[-90.0324363,29.4740624],[-90.0312631,29.4717912],[-90.029741,29.4711277],[-90.0288986,29.4711149],[-90.0288923,29.4711148],[-90.028886,29.4711147],[-90.0272875,29.4710904],[-90.0256745,29.472611],[-90.0230808,29.4726562],[-90.0228836,29.4715228],[-90.0227086,29.4705165],[-90.0223253,29.467923],[-90.0229149,29.4666738],[-90.0232554,29.4659523],[-90.0205985,29.4644324],[-90.0175588,29.4637205],[-90.017153,29.463379],[-90.0156955,29.4621527],[-90.0154668,29.4616048],[-90.0147996,29.4600068],[-90.0146179,29.4587312],[-90.0144305,29.4574163],[-90.012915,29.4536732],[-90.0111177,29.4565521],[-90.0107282,29.4565296],[-90.008432,29.4563972],[-90.0051193,29.4577179],[-90.0026856,29.4593403],[-90.0023955,29.4595337],[-89.9999945,29.4620936],[-89.9996324,29.4624797],[-89.9996159,29.4629123],[-89.9995499,29.4646411],[-89.9999945,29.4663857],[-90.00004,29.4665642],[-89.9999945,29.466727],[-89.9999945,29.4667271],[-89.9999944,29.4667273],[-89.9995822,29.4682022],[-89.9974089,29.4696247],[-89.9952295,29.4693887],[-89.9947099,29.4673595],[-89.9932729,29.4645947],[-89.9926929,29.4623742],[-89.9908235,29.4601129],[-89.9895915,29.4587977],[-89.9875091,29.4565707],[-89.9867534,29.453116],[-89.9898722,29.450833],[-89.9910865,29.4487977],[-89.990789,29.4458252],[-89.9936064,29.4426035],[-89.9936175,29.4392069],[-89.9918012,29.4412123],[-89.9900577,29.4433265],[-89.987207,29.4411091],[-89.9848601,29.4380715],[-89.98641,29.4360502],[-89.9881838,29.4331043],[-89.9889698,29.4294852],[-89.9870791,29.4273479],[-89.9903407,29.4273754],[-89.9931989,29.4274125],[-89.9948579,29.425759],[-89.9973954,29.4259694],[-89.9996036,29.4263016],[-89.9999945,29.4265784],[-90.0013437,29.427534],[-89.9999945,29.4280416],[-89.9985022,29.4286031],[-89.9954762,29.429562],[-89.9942742,29.4317712],[-89.9948092,29.4349014],[-89.9975455,29.4360027],[-89.9999945,29.4357447],[-90.0015783,29.4355778]]],[[[-91.2966544,29.455663],[-91.2998752,29.4539503],[-91.3006054,29.4548639],[-91.3045799,29.4598367],[-91.3011702,29.4608717],[-91.2980669,29.4623095],[-91.2979203,29.4623083],[-91.2938931,29.4622748],[-91.2943326,29.4607836],[-91.2945502,29.4600454],[-91.2966544,29.455663]]],[[[-89.2073544,29.4632417],[-89.209158,29.462842],[-89.2088779,29.4654],[-89.20723,29.4655823],[-89.203904,29.466968],[-89.2011158,29.4666085],[-89.198966,29.4659447],[-89.201802,29.4643227],[-89.2038287,29.4636067],[-89.2073544,29.4632417]]],[[[-89.8977476,29.4484577],[-89.900046,29.4462582],[-89.8986564,29.4439994],[-89.9001216,29.4406557],[-89.9020121,29.4387372],[-89.9044701,29.4393747],[-89.9061632,29.4392465],[-89.9069297,29.4418291],[-89.9048046,29.4433444],[-89.9045764,29.4452287],[-89.9070301,29.4452607],[-89.9093646,29.4454812],[-89.9079474,29.4479035],[-89.9057425,29.4477706],[-89.9045846,29.4503917],[-89.9034704,29.4530703],[-89.9012561,29.4542219],[-89.8989523,29.4559539],[-89.8977833,29.4588909],[-89.8950492,29.4612127],[-89.8920814,29.4616469],[-89.888283,29.4632477],[-89.8856879,29.4619734],[-89.8824381,29.4611057],[-89.882,29.45725],[-89.8851846,29.4557897],[-89.8875981,29.4553212],[-89.8909984,29.4545796],[-89.8933673,29.451162],[-89.89538,29.449335],[-89.8977476,29.4484577]]],[[[-83.3713362,29.4945085],[-83.3713318,29.4939727],[-83.3699429,29.4941532],[-83.3692913,29.4934007],[-83.3702779,29.4925321],[-83.3713236,29.4916113],[-83.3714716,29.4914481],[-83.3714773,29.4914419],[-83.3714776,29.4914415],[-83.3714838,29.4914346],[-83.3716109,29.4911053],[-83.3716471,29.4910114],[-83.3715679,29.490365],[-83.3714961,29.4902647],[-83.3713688,29.4900871],[-83.3710449,29.489635],[-83.3715897,29.4891188],[-83.3719625,29.4893051],[-83.3725463,29.489597],[-83.3725466,29.4895972],[-83.3725466,29.4895972],[-83.3725469,29.4895973],[-83.3725647,29.4896063],[-83.3725476,29.4896271],[-83.3725618,29.4902652],[-83.3725785,29.4910098],[-83.3725716,29.4910178],[-83.3725647,29.4910257],[-83.3723618,29.4914713],[-83.3723595,29.4915035],[-83.3723554,29.4915598],[-83.3723279,29.4916301],[-83.3722738,29.4918235],[-83.372223,29.4920272],[-83.3722226,29.4920288],[-83.3722225,29.4920288],[-83.3722222,29.4920303],[-83.372162,29.4922711],[-83.3721632,29.4927794],[-83.3721635,29.4929327],[-83.3721759,29.492992],[-83.3722729,29.4930502],[-83.3726562,29.49328],[-83.3734361,29.4932879],[-83.3734598,29.4934777],[-83.373509,29.4938708],[-83.3725906,29.4953796],[-83.3717782,29.4956122],[-83.3715359,29.4952299],[-83.3713395,29.49492],[-83.3713362,29.4945085]]],[[[-89.9078685,29.4682332],[-89.9094484,29.4640408],[-89.9129485,29.4650997],[-89.9130564,29.4680284],[-89.9103411,29.471098],[-89.9078685,29.4682332]]],[[[-89.5162741,29.5176108],[-89.5186027,29.5165787],[-89.5202369,29.5184813],[-89.5176887,29.5215075],[-89.5145167,29.5216922],[-89.5162741,29.5176108]]],[[[-89.6575518,29.5318471],[-89.6583385,29.5297247],[-89.6602293,29.5286693],[-89.6616509,29.5275239],[-89.6595326,29.5261417],[-89.6574366,29.525789],[-89.6562907,29.5232655],[-89.6582564,29.5223387],[-89.6603831,29.5224987],[-89.6626666,29.5222758],[-89.6666744,29.5211012],[-89.6647339,29.5186347],[-89.6646419,29.5163077],[-89.6663811,29.5155637],[-89.6680116,29.5171597],[-89.6705035,29.5186661],[-89.6732173,29.5187861],[-89.676622,29.5207238],[-89.6790992,29.521983],[-89.6810828,29.5234125],[-89.681639,29.5249189],[-89.6803756,29.5256347],[-89.677904,29.526981],[-89.6755648,29.5289308],[-89.6754687,29.5290109],[-89.6743814,29.5315897],[-89.6714154,29.530661],[-89.6690945,29.5317175],[-89.6673159,29.5314021],[-89.6645922,29.5302151],[-89.6631523,29.5317379],[-89.6596158,29.5314643],[-89.6575518,29.5318471]]],[[[-89.6417006,29.5141508],[-89.6429495,29.5133304],[-89.6431887,29.515003],[-89.6428769,29.5153755],[-89.6422241,29.5158881],[-89.641867,29.5158325],[-89.6403066,29.5155898],[-89.6396636,29.5154898],[-89.6402968,29.5150735],[-89.6417006,29.5141508]]],[[[-89.6115529,29.5211309],[-89.60883,29.5198707],[-89.6062416,29.5202293],[-89.6076462,29.5170053],[-89.6091811,29.5148144],[-89.6115975,29.515982],[-89.6140886,29.5159494],[-89.6164989,29.5192745],[-89.618293,29.520294],[-89.6194593,29.5236383],[-89.6167986,29.5221791],[-89.6115529,29.5211309]]],[[[-89.5777099,29.4904215],[-89.5752793,29.4926018],[-89.5726224,29.4936088],[-89.5696213,29.4942477],[-89.5691852,29.4919643],[-89.5697154,29.4889644],[-89.5681407,29.486257],[-89.5672458,29.4841577],[-89.5672898,29.4822019],[-89.5699376,29.4820423],[-89.571937,29.4816147],[-89.5700962,29.4795906],[-89.5708556,29.4782697],[-89.5722976,29.4791397],[-89.575088,29.4809696],[-89.5782796,29.4819413],[-89.5806421,29.4841022],[-89.5793034,29.4859983],[-89.5764742,29.4850685],[-89.5749376,29.4840127],[-89.5731596,29.4836767],[-89.5711706,29.4844716],[-89.5717851,29.4879862],[-89.5737111,29.4865611],[-89.5757357,29.4882315],[-89.5777099,29.4904215]]],[[[-89.5777099,29.4904215],[-89.5799326,29.4890604],[-89.5825428,29.4876996],[-89.5824185,29.489818],[-89.5832451,29.4919537],[-89.5844696,29.4938256],[-89.5825256,29.4945479],[-89.579988,29.4928635],[-89.5777099,29.4904215]]],[[[-90.0764191,29.5118162],[-90.0723118,29.5017533],[-90.0663562,29.4994942],[-90.0664672,29.4993864],[-90.0615357,29.5017817],[-90.0615357,29.504177],[-90.0592813,29.5045997],[-90.0577314,29.5024862],[-90.0533635,29.501359],[-90.0505455,29.4964275],[-90.0480093,29.4945958],[-90.0411052,29.4895234],[-90.0380054,29.4867054],[-90.0320876,29.4879735],[-90.0291287,29.4898052],[-90.0215201,29.4879735],[-90.0172931,29.4852964],[-90.0161659,29.4821966],[-90.0163068,29.4779696],[-90.0187021,29.4757152],[-90.0306786,29.4761379],[-90.0426551,29.477406],[-90.0429369,29.4799422],[-90.0404007,29.4827602],[-90.0488547,29.4882553],[-90.0513909,29.4927641],[-90.0571678,29.4913551],[-90.0580132,29.487269],[-90.054068,29.481633],[-90.0495592,29.4795195],[-90.0477275,29.4779696],[-90.0494183,29.4751516],[-90.0535044,29.4758561],[-90.0544907,29.4790968],[-90.0578723,29.4806467],[-90.0594222,29.4820557],[-90.0608312,29.48586],[-90.0636492,29.4892416],[-90.0685807,29.4899461],[-90.0711169,29.4889598],[-90.0728077,29.4903688],[-90.075203,29.4926232],[-90.0806981,29.4937504],[-90.0870386,29.4936095],[-90.0899975,29.4906506],[-90.0880249,29.4874099],[-90.0856296,29.4865645],[-90.0828116,29.4827602],[-90.0806981,29.4785332],[-90.073794,29.4786741],[-90.0656218,29.4865645],[-90.0632265,29.4854373],[-90.0632265,29.4827602],[-90.0612539,29.4803649],[-90.0630856,29.4793786],[-90.0646355,29.4812103],[-90.0699897,29.4793786],[-90.0726668,29.4748698],[-90.0764711,29.4761379],[-90.0777392,29.4765606],[-90.0814026,29.4769833],[-90.0828116,29.4767015],[-90.0895748,29.4720518],[-90.0895748,29.4696565],[-90.0905611,29.4696565],[-90.0946472,29.467543],[-90.0971834,29.4682475],[-90.0967607,29.4744471],[-90.0966198,29.4831829],[-90.0998605,29.4851555],[-90.1001423,29.4902279],[-90.1040875,29.4922005],[-90.1116961,29.4933277],[-90.1149368,29.4919187],[-90.1178957,29.4934686],[-90.1164867,29.4975547],[-90.1128233,29.5017817],[-90.1126824,29.5054451],[-90.1083145,29.5051633],[-90.1071873,29.5031907],[-90.1014104,29.5074177],[-90.1002832,29.5060087],[-90.0971834,29.5060087],[-90.09352,29.5078404],[-90.0912656,29.5043179],[-90.0835161,29.5045997],[-90.0819662,29.5089676],[-90.0790073,29.5127719],[-90.0764191,29.5118162]]],[[[-91.2717842,29.5018428],[-91.2749428,29.4952098],[-91.2762681,29.4936951],[-91.2771538,29.4926829],[-91.2801122,29.4929104],[-91.2796918,29.4909299],[-91.2793505,29.4893221],[-91.2794758,29.4861763],[-91.2798231,29.4844404],[-91.2800636,29.4832381],[-91.2827277,29.4807022],[-91.2848232,29.4805959],[-91.291227,29.478556],[-91.2938212,29.4769805],[-91.3006723,29.4782397],[-91.3037645,29.4788081],[-91.3062871,29.4796867],[-91.3083177,29.4801567],[-91.3088899,29.4801848],[-91.3088923,29.4801849],[-91.3088946,29.480185],[-91.3111197,29.4802942],[-91.3138949,29.481704],[-91.3143961,29.4828816],[-91.3130812,29.4859948],[-91.3110177,29.4891589],[-91.3108843,29.4919592],[-91.3108801,29.4920479],[-91.3108801,29.4946231],[-91.3103191,29.4955256],[-91.3093591,29.4957102],[-91.3092153,29.4957379],[-91.3074408,29.4955559],[-91.3051022,29.4955559],[-91.3031074,29.4960374],[-91.3025708,29.4966762],[-91.3022307,29.4970811],[-91.3005863,29.4981608],[-91.299393,29.4997518],[-91.2989265,29.5000877],[-91.2989262,29.5000879],[-91.2989258,29.5000882],[-91.2976734,29.5009899],[-91.2956811,29.5016066],[-91.2955787,29.5016382],[-91.2931336,29.5025719],[-91.2897632,29.5040164],[-91.2856361,29.5058048],[-91.2797345,29.5076134],[-91.2771068,29.5084186],[-91.2731875,29.509081],[-91.2732145,29.50865],[-91.2733202,29.5069576],[-91.2731801,29.5056315],[-91.2717842,29.5018428]]],[[[-89.1741165,29.4975849],[-89.1746069,29.4952907],[-89.1759057,29.4967591],[-89.1794941,29.4968616],[-89.1809027,29.496073],[-89.1846173,29.4958152],[-89.1827502,29.4975847],[-89.1802898,29.4985845],[-89.1783,29.4990048],[-89.1776261,29.4995805],[-89.176525,29.4995805],[-89.1754287,29.4995386],[-89.1730155,29.4994464],[-89.1711074,29.4979154],[-89.1741165,29.4975849]]],[[[-83.3820979,29.4996616],[-83.3815125,29.4994469],[-83.379804,29.4994912],[-83.3790236,29.4993301],[-83.379032,29.499442],[-83.3783017,29.499361],[-83.3775479,29.4992775],[-83.3746344,29.498065],[-83.3746463,29.4976837],[-83.3746987,29.496004],[-83.3776378,29.4968375],[-83.3787408,29.4969525],[-83.3787645,29.4969362],[-83.3795457,29.4970047],[-83.3804474,29.4971464],[-83.3810611,29.4974049],[-83.3818644,29.4978731],[-83.3830322,29.4983021],[-83.3838812,29.498352],[-83.3849416,29.4980936],[-83.385398,29.4977595],[-83.3861833,29.4971845],[-83.386592,29.4977282],[-83.3883167,29.5000231],[-83.3890567,29.5028583],[-83.3877486,29.5029853],[-83.3875446,29.5025512],[-83.3872933,29.5020164],[-83.3872199,29.5012182],[-83.3863015,29.5006934],[-83.3857045,29.5004658],[-83.3837989,29.5002111],[-83.3834806,29.5001686],[-83.3820979,29.4996616]]],[[[-83.3945687,29.5034091],[-83.3937145,29.5016774],[-83.3941191,29.5010481],[-83.3943049,29.500759],[-83.3954209,29.5009451],[-83.3954211,29.5009473],[-83.3954212,29.5009495],[-83.3966635,29.5010795],[-83.3966694,29.5010801],[-83.3966753,29.5010808],[-83.3968316,29.5012776],[-83.397141,29.5016674],[-83.3977326,29.5019375],[-83.3983923,29.5020058],[-83.3987415,29.5018749],[-83.399103,29.5017393],[-83.399206,29.5017816],[-83.3992649,29.5018058],[-83.3994574,29.5020628],[-83.3997147,29.5024062],[-83.3998174,29.5027661],[-83.3998812,29.5029895],[-83.4003464,29.5032847],[-83.3997873,29.503838],[-83.3994753,29.504028],[-83.3988416,29.5040544],[-83.3986264,29.504011],[-83.3986292,29.5032411],[-83.3978467,29.5030412],[-83.3976866,29.5030502],[-83.3970714,29.5030844],[-83.3963691,29.503434],[-83.3962143,29.5034563],[-83.3958138,29.5037767],[-83.3949673,29.5041154],[-83.3945344,29.5038144],[-83.3945687,29.5034091]]],[[[-80.9414668,29.0807575],[-80.9440763,29.0800215],[-80.9450225,29.0822479],[-80.9481085,29.0866259],[-80.948931,29.0903273],[-80.9446014,29.0908823],[-80.9441381,29.0882488],[-80.9430619,29.0880725],[-80.9404805,29.0876497],[-80.9397365,29.086485],[-80.9390342,29.0855715],[-80.9378537,29.0840361],[-80.9414668,29.0807575]]],[[[-90.2827492,29.0762898],[-90.2829303,29.0793917],[-90.279611,29.0817813],[-90.2774325,29.0809521],[-90.2767891,29.0785832],[-90.2770995,29.0767293],[-90.2787673,29.0766655],[-90.2806097,29.0762906],[-90.282147,29.07629],[-90.2827489,29.0762898],[-90.2827492,29.0762898],[-90.2827492,29.0762898]]],[[[-90.3253659,29.0756989],[-90.3249424,29.0723185],[-90.3216866,29.0709481],[-90.3218768,29.0708428],[-90.3246293,29.0693183],[-90.3256265,29.0677511],[-90.3264862,29.0664],[-90.3266146,29.0652784],[-90.3267177,29.0643773],[-90.3234998,29.0653598],[-90.3201967,29.0656699],[-90.320519,29.0681583],[-90.31925,29.0698178],[-90.31706,29.0706313],[-90.314012,29.0704739],[-90.3107882,29.0696031],[-90.309672,29.071305],[-90.3093266,29.0718314],[-90.3084133,29.070128],[-90.3062884,29.0682528],[-90.3088547,29.0671347],[-90.311598,29.0654208],[-90.315118,29.0647563],[-90.3173394,29.0641574],[-90.319732,29.0635123],[-90.3211272,29.0630812],[-90.3251949,29.0618243],[-90.3280715,29.0612438],[-90.332443,29.0609204],[-90.3326579,29.0622716],[-90.3328714,29.0636142],[-90.3331676,29.0637018],[-90.3348046,29.0641861],[-90.3347775,29.0648153],[-90.3346918,29.0668093],[-90.3337195,29.0690043],[-90.3311773,29.0706248],[-90.3310131,29.0731073],[-90.329185,29.0725382],[-90.327209,29.0729625],[-90.327043,29.0729981],[-90.3260743,29.0745581],[-90.3253659,29.0756989]]],[[[-90.8218655,29.0756815],[-90.8211425,29.0727642],[-90.8210661,29.0712852],[-90.8210243,29.0704753],[-90.8208963,29.0700571],[-90.8201246,29.0675372],[-90.8202671,29.0674104],[-90.822011,29.0658578],[-90.8238145,29.0662473],[-90.8249391,29.0655657],[-90.8265013,29.0646188],[-90.8290172,29.0631568],[-90.8288834,29.0635745],[-90.8281231,29.0659493],[-90.8275208,29.067931],[-90.8272152,29.0689367],[-90.825845,29.0725475],[-90.8255227,29.0734885],[-90.8252196,29.0743731],[-90.8234531,29.0742692],[-90.8230121,29.0742433],[-90.8219882,29.0761765],[-90.8218655,29.0756815]]],[[[-90.2827492,29.0762898],[-90.2827493,29.0762898],[-90.2827494,29.0762896],[-90.2832349,29.0757297],[-90.2843883,29.0743996],[-90.2856994,29.0739494],[-90.2871005,29.0734683],[-90.290034,29.0719913],[-90.29281,29.072853],[-90.2930172,29.0729173],[-90.2901651,29.0745343],[-90.2891358,29.075896],[-90.2885985,29.0766068],[-90.288381,29.0765878],[-90.2863384,29.0764094],[-90.2848603,29.0769571],[-90.2827492,29.0762898]]],[[[-80.9312297,29.0620897],[-80.93317,29.0612868],[-80.9421359,29.0762746],[-80.9428719,29.0788171],[-80.9426246,29.0789417],[-80.9418918,29.0793109],[-80.9394276,29.0805522],[-80.9388412,29.0808476],[-80.9374496,29.0814525],[-80.9358916,29.079267],[-80.9335029,29.0784231],[-80.9332735,29.0782246],[-80.9319376,29.0770685],[-80.9317102,29.0758569],[-80.9285533,29.0732636],[-80.923602,29.072996],[-80.9235199,29.0711482],[-80.9234682,29.0699851],[-80.9239501,29.0685715],[-80.9261429,29.0671086],[-80.9283114,29.0662046],[-80.9285304,29.0659488],[-80.9291617,29.0652114],[-80.9291773,29.0651931],[-80.9292757,29.0650781],[-80.9309024,29.0625903],[-80.9312297,29.0620897]]],[[[-83.0249735,29.1192826],[-83.02652,29.1180803],[-83.028003,29.1191334],[-83.0283737,29.1193966],[-83.0298512,29.1214136],[-83.0328493,29.122648],[-83.0333541,29.1259964],[-83.029713,29.125689],[-83.0286982,29.1244725],[-83.027903,29.1235191],[-83.0249579,29.122699],[-83.0249735,29.1192826]]],[[[-83.0181773,29.1460615],[-83.0191648,29.1452903],[-83.0198758,29.1453214],[-83.0218968,29.14541],[-83.021792,29.1467173],[-83.0216781,29.1481385],[-83.0201116,29.1497445],[-83.0190221,29.1523501],[-83.0169585,29.1503606],[-83.0165109,29.1473632],[-83.0165109,29.147363],[-83.0165108,29.1473629],[-83.0181773,29.1460615]]],[[[-83.0088654,29.1638336],[-83.00879,29.1599593],[-83.0106517,29.16011],[-83.0107265,29.160116],[-83.0115485,29.1618079],[-83.011815,29.1623566],[-83.0141645,29.1649057],[-83.0144807,29.1652488],[-83.011352,29.1662276],[-83.0115126,29.1687362],[-83.009562,29.1696186],[-83.0089502,29.1688099],[-83.0078626,29.1673722],[-83.0083258,29.1657375],[-83.0088654,29.1638336]]],[[[-83.0318055,29.1419735],[-83.0331683,29.1416893],[-83.0339417,29.1419286],[-83.0339454,29.1419298],[-83.0339491,29.1419309],[-83.0342505,29.1420242],[-83.0334183,29.1435028],[-83.0334354,29.1446753],[-83.0334482,29.1455536],[-83.0322808,29.1488188],[-83.0317961,29.1482168],[-83.0317943,29.1482145],[-83.0317924,29.1482122],[-83.0303768,29.146454],[-83.0310499,29.1446779],[-83.0314605,29.1435946],[-83.0314779,29.1435127],[-83.0318055,29.1419735]]],[[[-83.0639177,29.1562438],[-83.066575,29.1558776],[-83.0668721,29.1600388],[-83.0641987,29.1601765],[-83.0629785,29.1595369],[-83.0626439,29.1593616],[-83.0625135,29.1592932],[-83.061488,29.1567866],[-83.0639177,29.1562438]]],[[[-83.0547272,29.1599777],[-83.0561033,29.1594833],[-83.0563746,29.1623569],[-83.0553033,29.1641799],[-83.0556904,29.1655753],[-83.0560423,29.1668436],[-83.0566623,29.1688475],[-83.0592492,29.1691982],[-83.0601031,29.1717816],[-83.0572157,29.1723395],[-83.054965,29.172139],[-83.0541105,29.1720629],[-83.0516371,29.1711499],[-83.0500221,29.1693434],[-83.0508309,29.1658096],[-83.050879,29.1633571],[-83.0509053,29.1620119],[-83.0515072,29.1615713],[-83.0526788,29.1607138],[-83.0547272,29.1599777]]],[[[-83.0393733,29.1418983],[-83.0373079,29.141296],[-83.0346196,29.1413886],[-83.0346122,29.1413889],[-83.0346089,29.141389],[-83.034608,29.141389],[-83.0350057,29.1390504],[-83.0321924,29.1376388],[-83.0307137,29.1398333],[-83.0281889,29.1387553],[-83.030667,29.1353541],[-83.0332144,29.1347343],[-83.0332145,29.1347342],[-83.0332145,29.1347342],[-83.0349563,29.1343104],[-83.0379058,29.1366386],[-83.0388675,29.1376265],[-83.0403826,29.1391829],[-83.0438432,29.1383594],[-83.0464679,29.1353379],[-83.0484798,29.1339876],[-83.050541,29.1323133],[-83.0505443,29.1309067],[-83.0505462,29.1301342],[-83.050625,29.1298556],[-83.050726,29.1294982],[-83.0533565,29.1317111],[-83.053033,29.1339548],[-83.0527441,29.1344166],[-83.0512111,29.1368665],[-83.0538689,29.1373786],[-83.0540989,29.1380564],[-83.0547265,29.1399063],[-83.0544313,29.1414074],[-83.0539844,29.1436798],[-83.054894,29.1467228],[-83.0568838,29.1485153],[-83.0554982,29.1507052],[-83.0532101,29.1519204],[-83.0497478,29.1544848],[-83.0468648,29.1558171],[-83.0447595,29.1554176],[-83.0447061,29.1536792],[-83.0446871,29.1530624],[-83.0437944,29.1513275],[-83.0399918,29.1482719],[-83.0378507,29.1464383],[-83.0387606,29.1454826],[-83.0399582,29.1442249],[-83.0398562,29.1438193],[-83.0393733,29.1418983]]],[[[-90.8949486,29.2119969],[-90.8929945,29.2110356],[-90.8907713,29.2112867],[-90.8886952,29.2115213],[-90.8882536,29.2103026],[-90.8880264,29.2096758],[-90.8871735,29.2074772],[-90.8899378,29.2073383],[-90.8916787,29.2081306],[-90.8935413,29.2089783],[-90.8949157,29.2094993],[-90.8963134,29.2100293],[-90.8949486,29.2119969]]],[[[-83.0776527,29.2015161],[-83.0800069,29.2003343],[-83.0807642,29.2042273],[-83.0789729,29.2044571],[-83.078119,29.2051564],[-83.0762895,29.2066546],[-83.0749196,29.2072518],[-83.074396,29.2074801],[-83.0725309,29.2102295],[-83.0720487,29.2074774],[-83.0720844,29.2066561],[-83.0721495,29.2051546],[-83.0741417,29.2049316],[-83.0751768,29.2036952],[-83.0756292,29.2031548],[-83.0762606,29.2026435],[-83.0776527,29.2015161]]],[[[-90.3481344,29.2080748],[-90.3481334,29.2057843],[-90.3487856,29.2035302],[-90.3518474,29.2000804],[-90.3546372,29.2018924],[-90.3542649,29.2044545],[-90.3553017,29.2081577],[-90.3528442,29.2081062],[-90.3509612,29.2062101],[-90.3507234,29.2077899],[-90.35038,29.2100708],[-90.3508884,29.2124866],[-90.3512119,29.2140239],[-90.3497901,29.2171001],[-90.3469174,29.2167778],[-90.347624,29.2146954],[-90.3483504,29.2116258],[-90.3481344,29.2080748]]],[[[-90.4074656,29.2077704],[-90.4067288,29.2073338],[-90.4067964,29.2087898],[-90.4068419,29.20977],[-90.4028252,29.209851],[-90.4002664,29.21096],[-90.3999751,29.2110862],[-90.3994144,29.20987],[-90.3988866,29.2087252],[-90.3974288,29.2071653],[-90.3983635,29.2052822],[-90.3992289,29.2035389],[-90.3999222,29.2015911],[-90.4001359,29.2009906],[-90.4032973,29.2011224],[-90.4066766,29.2026941],[-90.409406,29.2028813],[-90.4113291,29.2040484],[-90.4139814,29.2056653],[-90.4149188,29.2072919],[-90.4137075,29.2085898],[-90.4129916,29.2093569],[-90.4136281,29.2099735],[-90.4144136,29.2107345],[-90.4098696,29.211164],[-90.4095749,29.2104973],[-90.4094034,29.2101093],[-90.4091036,29.2094312],[-90.4086902,29.208496],[-90.4074656,29.2077704]]],[[[-90.6098147,29.2103085],[-90.6071669,29.2069038],[-90.6067833,29.2060039],[-90.6060821,29.2043588],[-90.6072021,29.202724],[-90.6092877,29.2044692],[-90.6096719,29.2061968],[-90.6099891,29.2076232],[-90.6098147,29.2103085]]],[[[-83.0783193,29.2148582],[-83.0800647,29.2123888],[-83.0821149,29.2131389],[-83.0839733,29.2150076],[-83.0824098,29.2171259],[-83.082409,29.2174221],[-83.082404,29.2192341],[-83.0804569,29.2193834],[-83.0777316,29.2188194],[-83.077163,29.2183295],[-83.0751797,29.2166204],[-83.0783193,29.2148582]]],[[[-90.4217724,29.2038649],[-90.4213835,29.20336],[-90.4204883,29.2021978],[-90.4210159,29.2020025],[-90.4234946,29.2010853],[-90.4243022,29.2034341],[-90.4243786,29.2036562],[-90.4276363,29.2021605],[-90.4304426,29.2030876],[-90.4290673,29.2046124],[-90.4267668,29.2051443],[-90.4260712,29.2068207],[-90.4257499,29.2075948],[-90.4261514,29.2101548],[-90.4279051,29.2128896],[-90.4275819,29.2160113],[-90.4306869,29.2161],[-90.4341932,29.2179872],[-90.4314708,29.2182046],[-90.4292992,29.2183708],[-90.4283113,29.2190529],[-90.4276327,29.2195215],[-90.4269458,29.2199069],[-90.4253156,29.2208217],[-90.4243839,29.22092],[-90.4216537,29.221208],[-90.4191789,29.2218453],[-90.4165982,29.2210144],[-90.415314,29.2202534],[-90.4141004,29.2195341],[-90.4142318,29.2169832],[-90.4145043,29.2158223],[-90.4147414,29.2148118],[-90.4168569,29.2134603],[-90.4174931,29.212121],[-90.4179076,29.2112486],[-90.4188219,29.2087975],[-90.4188833,29.2085843],[-90.4193114,29.2070978],[-90.4199947,29.2052506],[-90.4217724,29.2038649]]],[[[-90.8657737,29.2130331],[-90.8667109,29.2119688],[-90.8668407,29.2118214],[-90.8668461,29.2118152],[-90.8668516,29.211809],[-90.8676205,29.2109358],[-90.8698333,29.2096058],[-90.8706301,29.2092435],[-90.8720421,29.2086016],[-90.8728342,29.2085034],[-90.8752674,29.208202],[-90.8753203,29.2092856],[-90.8753204,29.2092865],[-90.8753204,29.2092874],[-90.8754353,29.2116398],[-90.8749791,29.2130521],[-90.8746153,29.2141781],[-90.8724078,29.2138633],[-90.8695738,29.2134103],[-90.8657737,29.2130331]]],[[[-90.8800397,29.20724],[-90.8813065,29.2058871],[-90.8840885,29.2069337],[-90.8840046,29.2096788],[-90.8851683,29.2117284],[-90.8847869,29.2135492],[-90.8843789,29.2154965],[-90.8861265,29.2182404],[-90.8840928,29.2199464],[-90.881682,29.2186672],[-90.8789286,29.217799],[-90.8790351,29.2170148],[-90.8793055,29.215024],[-90.8817506,29.2149668],[-90.8817282,29.2140163],[-90.8817281,29.2140112],[-90.8817279,29.2140062],[-90.8817033,29.212963],[-90.8792344,29.2121145],[-90.8793394,29.2100894],[-90.8793762,29.2093809],[-90.8796083,29.2077008],[-90.8800397,29.20724]]],[[[-90.5911002,29.2102852],[-90.5913776,29.2090791],[-90.5933594,29.2114982],[-90.5936596,29.2118647],[-90.5941759,29.214011],[-90.5942801,29.2156939],[-90.5943547,29.2168982],[-90.5923709,29.2151539],[-90.590526,29.2127817],[-90.5911002,29.2102852]]],[[[-90.8657737,29.2130331],[-90.8635903,29.2155072],[-90.8616278,29.2163707],[-90.8600163,29.2170798],[-90.8576584,29.2163906],[-90.858442,29.2147465],[-90.8588087,29.2139772],[-90.8614871,29.214107],[-90.8657737,29.2130331]]],[[[-90.6384615,29.2231302],[-90.6382937,29.2225439],[-90.6378744,29.2210788],[-90.6358887,29.2183038],[-90.6336266,29.2163766],[-90.6305454,29.2159488],[-90.6275893,29.2149835],[-90.6256697,29.2130721],[-90.6246316,29.2106214],[-90.627511,29.2116646],[-90.6290963,29.2134189],[-90.6308543,29.2135912],[-90.6313414,29.2136389],[-90.6340634,29.2121516],[-90.6359645,29.2128357],[-90.6382342,29.21532],[-90.6394497,29.2176062],[-90.6395149,29.2177288],[-90.6397073,29.2190781],[-90.6398817,29.2203018],[-90.6384615,29.2231302]]],[[[-83.0780856,29.2307389],[-83.0801121,29.2299852],[-83.0816125,29.2300775],[-83.0810779,29.2340203],[-83.0800803,29.2344931],[-83.0794115,29.2348101],[-83.0778516,29.2331821],[-83.0777373,29.2320731],[-83.0776178,29.2309129],[-83.0780856,29.2307389]]],[[[-83.078906,29.2353902],[-83.0807437,29.2348223],[-83.0801089,29.2368604],[-83.0819466,29.2395001],[-83.0814454,29.2410037],[-83.0792736,29.2419393],[-83.0771855,29.2406586],[-83.0771857,29.2406581],[-83.0771859,29.2406576],[-83.0778119,29.2391564],[-83.0778233,29.2379962],[-83.0778314,29.2371713],[-83.0786212,29.2363788],[-83.078906,29.2353902]]],[[[-90.4396664,29.2126393],[-90.4401381,29.2103028],[-90.4433428,29.2104494],[-90.4444943,29.2118187],[-90.4451133,29.2125548],[-90.4459825,29.2143979],[-90.4455869,29.2163555],[-90.4455968,29.2188251],[-90.4472351,29.2206827],[-90.4439983,29.2221124],[-90.4436382,29.2195528],[-90.4435855,29.218934],[-90.4434445,29.2172777],[-90.4427715,29.2167092],[-90.4409627,29.2151814],[-90.4385711,29.2140501],[-90.4396664,29.2126393]]],[[[-90.572096,29.217222],[-90.5744098,29.2167335],[-90.5762896,29.2168218],[-90.5774793,29.2177918],[-90.5785884,29.2186961],[-90.5797078,29.2206366],[-90.5785342,29.2206565],[-90.5777267,29.2206701],[-90.5771768,29.2208823],[-90.575129,29.2216723],[-90.5747007,29.2196294],[-90.574524,29.2187866],[-90.572096,29.217222]]],[[[-90.8799216,29.2388092],[-90.8794614,29.2375446],[-90.8790572,29.2380759],[-90.8790564,29.238077],[-90.8790555,29.2380782],[-90.8781309,29.2392935],[-90.8767943,29.2368678],[-90.8749546,29.2356873],[-90.874546,29.233823],[-90.8743829,29.233079],[-90.8722996,29.2312731],[-90.8715688,29.2313565],[-90.869548,29.2315871],[-90.8667585,29.2320584],[-90.8653876,29.2349498],[-90.8631417,29.2352381],[-90.8588269,29.2324747],[-90.8586852,29.2321319],[-90.8586846,29.2321306],[-90.8586841,29.2321293],[-90.857844,29.2300976],[-90.8538908,29.2277861],[-90.8545247,29.2256128],[-90.8546273,29.2254286],[-90.8546318,29.2254206],[-90.8546362,29.2254126],[-90.8554733,29.2239091],[-90.8577336,29.2233928],[-90.860602,29.2230444],[-90.8629944,29.2247166],[-90.8632048,29.2269123],[-90.8651133,29.2248914],[-90.8655114,29.2217519],[-90.8660132,29.2196516],[-90.8660189,29.219628],[-90.8662819,29.2185273],[-90.8695371,29.2174554],[-90.8734938,29.2173163],[-90.8748592,29.2197531],[-90.8748619,29.2197579],[-90.8748646,29.2197628],[-90.8751278,29.2202324],[-90.8725108,29.2250362],[-90.8742618,29.2284513],[-90.8774008,29.2310265],[-90.87901,29.2305828],[-90.8823633,29.2291227],[-90.8816693,29.2321613],[-90.8815203,29.2329878],[-90.8815199,29.2329902],[-90.8815195,29.2329925],[-90.8812935,29.2342464],[-90.8810984,29.2367723],[-90.8817625,29.2382303],[-90.8821136,29.2390011],[-90.8804221,29.2401844],[-90.8799216,29.2388092]]],[[[-89.9647815,29.2610749],[-89.9623188,29.2617532],[-89.9605739,29.2639944],[-89.9580324,29.2651297],[-89.9558695,29.2669392],[-89.9527915,29.2667627],[-89.9490862,29.2673584],[-89.9471582,29.2659717],[-89.9479995,29.2628357],[-89.9495165,29.2602427],[-89.9514675,29.2577577],[-89.95373,29.2547937],[-89.9552565,29.2525755],[-89.9571189,29.2514083],[-89.9615336,29.2502285],[-89.9625835,29.2480697],[-89.9641208,29.2470375],[-89.965707,29.2463622],[-89.9682255,29.2450117],[-89.9706224,29.2439507],[-89.9728662,29.2429244],[-89.9745187,29.2420511],[-89.9771945,29.2408247],[-89.9806383,29.2391127],[-89.9846154,29.2370665],[-89.9882319,29.2351296],[-89.990732,29.2336137],[-89.9926785,29.2323837],[-89.9955352,29.2304157],[-89.9998002,29.2281704],[-89.9999945,29.2280696],[-90.0072205,29.2243208],[-90.0123655,29.2210398],[-90.0163429,29.2187571],[-90.0189709,29.2169301],[-90.0220422,29.2148808],[-90.02584,29.2117773],[-90.0287375,29.2096605],[-90.0306185,29.2080978],[-90.0326509,29.2061525],[-90.034681,29.2042731],[-90.0364878,29.2024465],[-90.0381455,29.200798],[-90.0406684,29.1993338],[-90.042673,29.1995593],[-90.0448803,29.2015894],[-90.0428831,29.203214],[-90.0407214,29.2041331],[-90.0400363,29.2047624],[-90.0400357,29.204763],[-90.040035,29.2047636],[-90.0380165,29.2066176],[-90.035687,29.2085006],[-90.0341742,29.2103975],[-90.0309979,29.2125588],[-90.0294257,29.2149138],[-90.0270839,29.2158985],[-90.0260411,29.2184],[-90.0242241,29.2200948],[-90.0224989,29.2222988],[-90.0213647,29.2238801],[-90.0198247,29.2253775],[-90.0180668,29.2262305],[-90.0163444,29.2289078],[-90.0130224,29.2308378],[-90.0104097,29.2315411],[-90.0080485,29.2324799],[-90.0057338,29.2348095],[-90.0028174,29.2388581],[-90.0006445,29.2400745],[-89.9999945,29.2400928],[-89.9972063,29.2401714],[-89.9946485,29.2412545],[-89.9918135,29.242999],[-89.9888081,29.2446636],[-89.9853879,29.246902],[-89.9821169,29.2488717],[-89.9793525,29.2504671],[-89.9769984,29.2518877],[-89.9754681,29.2528303],[-89.9722335,29.2542613],[-89.9683352,29.2541926],[-89.966417,29.256977],[-89.9647399,29.2587104],[-89.9647815,29.2610749]]],[[[-90.5797094,29.2415846],[-90.5776454,29.2436051],[-90.5751816,29.2434708],[-90.5740612,29.2422007],[-90.5701792,29.2429595],[-90.5678197,29.2430451],[-90.5653385,29.2415828],[-90.5635614,29.240116],[-90.5629845,29.2396398],[-90.5622186,29.2391526],[-90.5601744,29.2378523],[-90.5578764,29.2367418],[-90.5553684,29.2355038],[-90.5533666,29.2341023],[-90.555669,29.2336238],[-90.5550962,29.2314126],[-90.5577037,29.2319228],[-90.5586894,29.2341268],[-90.5607065,29.232731],[-90.5627964,29.2332808],[-90.5653251,29.2344459],[-90.568058,29.2351024],[-90.5710219,29.2382979],[-90.5726537,29.2399116],[-90.5750639,29.2395828],[-90.5770239,29.2410415],[-90.5783016,29.2412999],[-90.5797094,29.2415846]]],[[[-90.3098203,29.239379],[-90.3104631,29.2393292],[-90.3112385,29.2420938],[-90.3111325,29.2439743],[-90.3110528,29.2453893],[-90.3095782,29.2457613],[-90.3087022,29.2459822],[-90.3087093,29.2457765],[-90.3088184,29.2425781],[-90.308142,29.2405881],[-90.3077846,29.2395368],[-90.3098203,29.239379]]],[[[-90.0110167,29.2445296],[-90.0107162,29.2422955],[-90.0106096,29.2415026],[-90.0141655,29.2414397],[-90.0158098,29.2409195],[-90.0152329,29.2434415],[-90.0171965,29.2421099],[-90.020524,29.2399861],[-90.0229265,29.2407384],[-90.0205669,29.2428463],[-90.0203121,29.243074],[-90.0160076,29.2461478],[-90.0157251,29.2473556],[-90.0156347,29.247742],[-90.0122711,29.2479336],[-90.0110167,29.2445296]]],[[[-90.8644293,29.2446543],[-90.8642622,29.2425087],[-90.8661557,29.2433205],[-90.8661608,29.2433226],[-90.8661658,29.2433248],[-90.8680085,29.2443033],[-90.8686207,29.2475983],[-90.8681701,29.2479627],[-90.8664415,29.2493611],[-90.8661665,29.2489603],[-90.8646346,29.2467274],[-90.8644293,29.2446543]]],[[[-90.4437834,29.2698589],[-90.4416795,29.2683667],[-90.4404638,29.2674925],[-90.4384308,29.2660305],[-90.4357252,29.2675028],[-90.4337307,29.2676214],[-90.4317828,29.2665981],[-90.4327922,29.264609],[-90.4330184,29.2641633],[-90.4299358,29.2635703],[-90.4299479,29.263513],[-90.4306049,29.2603925],[-90.430004,29.257754],[-90.4335755,29.2558461],[-90.4317553,29.2531308],[-90.4319726,29.2530475],[-90.4340844,29.2522385],[-90.4344712,29.2527281],[-90.4360873,29.2547745],[-90.4364909,29.2521404],[-90.4366734,29.2516309],[-90.4374636,29.249424],[-90.4381017,29.2459245],[-90.4404314,29.2458246],[-90.4407716,29.24581],[-90.4413223,29.2460907],[-90.4425611,29.2467223],[-90.4427591,29.246636],[-90.4446995,29.2457898],[-90.446471,29.2442776],[-90.4471959,29.2422626],[-90.4478437,29.2395645],[-90.4463347,29.2349688],[-90.4497618,29.236914],[-90.4504421,29.2376139],[-90.4509604,29.2381473],[-90.4507644,29.2406098],[-90.4523435,29.2418095],[-90.4523589,29.2452495],[-90.452708,29.2469153],[-90.4529489,29.2480646],[-90.4531249,29.2489044],[-90.4507324,29.2490208],[-90.4514452,29.251949],[-90.4518572,29.2536415],[-90.4526775,29.253674],[-90.4543096,29.2537386],[-90.4541994,29.2567922],[-90.4516156,29.2572198],[-90.4509116,29.2594668],[-90.4508905,29.2595344],[-90.4521726,29.2595736],[-90.4528372,29.2595939],[-90.4511948,29.2613551],[-90.450153,29.2624721],[-90.4521363,29.2654876],[-90.4520301,29.2658802],[-90.4513743,29.2683045],[-90.4522427,29.2697683],[-90.4509221,29.2696938],[-90.4504604,29.2696678],[-90.4468352,29.269227],[-90.4439663,29.2699886],[-90.4437834,29.2698589]]],[[[-89.9854973,29.2577983],[-89.9889782,29.2544044],[-89.9903585,29.2523927],[-89.9921352,29.2512313],[-89.9913061,29.2539627],[-89.9899546,29.2570417],[-89.988395,29.2592032],[-89.9868207,29.2592897],[-89.9848878,29.2606687],[-89.9854973,29.2577983]]],[[[-89.9743682,29.2569082],[-89.975492,29.2557247],[-89.978811,29.2543677],[-89.9819919,29.2534006],[-89.9820707,29.2566683],[-89.9854973,29.2577983],[-89.9827674,29.2592976],[-89.9812661,29.2592281],[-89.9790256,29.2592229],[-89.9761569,29.2572023],[-89.9743682,29.2569082]]],[[[-89.9647815,29.2610749],[-89.9662795,29.2597027],[-89.970152,29.2569932],[-89.9726125,29.2561107],[-89.9743682,29.2569082],[-89.9726298,29.2582937],[-89.9710563,29.260847],[-89.9692665,29.2633243],[-89.965707,29.2632716],[-89.9647815,29.2610749]]],[[[-90.3078921,29.2562941],[-90.3093608,29.2545178],[-90.3114107,29.2563125],[-90.3130847,29.2581813],[-90.3132194,29.2583318],[-90.3106892,29.2605458],[-90.3084359,29.2607378],[-90.3062296,29.2599337],[-90.3078921,29.2562941]]],[[[-90.3458213,29.1074644],[-90.3449989,29.1071548],[-90.3424904,29.1072928],[-90.3408054,29.1070462],[-90.3413861,29.1053458],[-90.3436794,29.103951],[-90.34615,29.1037376],[-90.3463763,29.1037181],[-90.3472907,29.1031859],[-90.3491841,29.1020841],[-90.3517169,29.1017148],[-90.3525133,29.1015986],[-90.3530876,29.1016858],[-90.3558455,29.1021046],[-90.3594818,29.1018295],[-90.361847,29.1024513],[-90.3618822,29.1024606],[-90.3642576,29.1032559],[-90.3618046,29.1044991],[-90.3612959,29.1047568],[-90.3605331,29.105044],[-90.3584048,29.1058454],[-90.3533483,29.1071458],[-90.3507499,29.1074018],[-90.3490278,29.1086715],[-90.3458213,29.1074644]]],[[[-90.7875717,29.1161296],[-90.7912764,29.1144539],[-90.791596,29.1162192],[-90.7910133,29.1182031],[-90.7899635,29.1189403],[-90.789491,29.1192721],[-90.78634,29.1195759],[-90.7865804,29.1189032],[-90.7875717,29.1161296]]],[[[-90.2943585,29.1730528],[-90.2951655,29.1697335],[-90.2959461,29.1706013],[-90.2985313,29.1734757],[-90.3005038,29.1736733],[-90.3010153,29.1737246],[-90.3025646,29.174842],[-90.3002139,29.1756189],[-90.2977886,29.1756477],[-90.2971246,29.1756556],[-90.2970897,29.175648],[-90.2941419,29.1750062],[-90.2942156,29.1743415],[-90.2943585,29.1730528]]],[[[-89.0637283,29.1851668],[-89.0630362,29.1847904],[-89.0603309,29.1851288],[-89.0571745,29.1849694],[-89.0549471,29.1855543],[-89.055401,29.1799867],[-89.0557454,29.1750022],[-89.0610521,29.1753812],[-89.0604189,29.1732281],[-89.0615477,29.1735601],[-89.0743915,29.1773377],[-89.0773354,29.1812629],[-89.0645931,29.1858965],[-89.0637283,29.1851668]]],[[[-91.0342343,29.1848873],[-91.0388461,29.1835454],[-91.0388503,29.1835472],[-91.0388546,29.1835491],[-91.0416243,29.1847518],[-91.0434957,29.1875065],[-91.0438787,29.1905998],[-91.0399344,29.1925123],[-91.0370236,29.1918637],[-91.0355473,29.1902798],[-91.0343411,29.1883039],[-91.0319429,29.1876638],[-91.0318873,29.1853174],[-91.0342343,29.1848873]]],[[[-90.4341855,29.1884501],[-90.4345637,29.1884446],[-90.434916,29.1901267],[-90.4336212,29.1928966],[-90.4314035,29.1928737],[-90.4296683,29.1916566],[-90.4305824,29.1898678],[-90.4318767,29.1884835],[-90.4341855,29.1884501]]],[[[-91.0257095,29.1882586],[-91.027723,29.1869623],[-91.0274567,29.1888161],[-91.0271293,29.1910948],[-91.0270505,29.1930365],[-91.0268288,29.1947789],[-91.0267773,29.1951835],[-91.0262664,29.1944585],[-91.0239621,29.1911885],[-91.0239963,29.1911229],[-91.0253808,29.1884703],[-91.0257095,29.1882586]]],[[[-90.644771,29.1719138],[-90.6449736,29.1664646],[-90.648863,29.1695236],[-90.6500069,29.1725418],[-90.6495917,29.1752524],[-90.6465545,29.1760839],[-90.6464352,29.1759774],[-90.6455324,29.1751711],[-90.6449036,29.1724813],[-90.644771,29.1719138]]],[[[-90.3341298,29.1932908],[-90.3339896,29.1887032],[-90.3362338,29.1881323],[-90.3372327,29.1878783],[-90.3348675,29.1863624],[-90.3356399,29.1859769],[-90.3373474,29.1851248],[-90.3383281,29.1850646],[-90.3401529,29.1849528],[-90.3425934,29.1844138],[-90.3454954,29.1848092],[-90.344996,29.1839052],[-90.344039,29.1821732],[-90.3453849,29.1783888],[-90.3456889,29.1775796],[-90.3462111,29.1761893],[-90.3465454,29.1751658],[-90.3471644,29.1732706],[-90.3475157,29.1688555],[-90.3493359,29.1710803],[-90.349359,29.1748278],[-90.3488314,29.1778378],[-90.3504788,29.178451],[-90.3521514,29.1812275],[-90.3510949,29.1835608],[-90.3497048,29.1849522],[-90.3490444,29.1856133],[-90.3480512,29.186712],[-90.3465676,29.1883532],[-90.3411057,29.1895064],[-90.3392718,29.1916361],[-90.3385254,29.1925029],[-90.3367558,29.1907578],[-90.3364913,29.190497],[-90.3341298,29.1932908]]],[[[-83.0851719,29.1242819],[-83.0866977,29.1221201],[-83.0885442,29.1222346],[-83.088566,29.1238517],[-83.0870963,29.124961],[-83.0869432,29.126349],[-83.0868892,29.126382],[-83.0869185,29.1265722],[-83.0868508,29.1271862],[-83.0872095,29.1284859],[-83.0872083,29.1284942],[-83.0872082,29.1284945],[-83.0872071,29.1285022],[-83.087414,29.1292175],[-83.0892486,29.1301699],[-83.0904991,29.1313905],[-83.0890963,29.1320465],[-83.0873844,29.1320201],[-83.0870416,29.1320149],[-83.0861598,29.1305579],[-83.085728,29.1298444],[-83.085492,29.1293712],[-83.084913,29.1282104],[-83.084914,29.1282025],[-83.0849141,29.1282021],[-83.0849152,29.1281934],[-83.0848973,29.1281783],[-83.0846083,29.1275904],[-83.0844817,29.1273328],[-83.0843273,29.1270186],[-83.0846612,29.1259365],[-83.0851719,29.1242819]]],[[[-90.8371228,29.1365119],[-90.8371228,29.1365118],[-90.8358134,29.1338896],[-90.8342479,29.1321646],[-90.8317997,29.1304674],[-90.8302249,29.1294947],[-90.8323944,29.128725],[-90.834282,29.1282643],[-90.8342832,29.128264],[-90.8342843,29.1282637],[-90.834632,29.1281789],[-90.8349661,29.1280906],[-90.8349681,29.12809],[-90.8349702,29.1280895],[-90.8368305,29.1275978],[-90.8390406,29.1282774],[-90.8379535,29.1303546],[-90.8377663,29.1307123],[-90.8378022,29.1332232],[-90.8371228,29.1365119]]],[[[-90.6744422,29.1315814],[-90.6753148,29.1293698],[-90.6760107,29.1297344],[-90.6777061,29.1306225],[-90.6803752,29.1318533],[-90.6802117,29.1325627],[-90.6798952,29.1339359],[-90.6797082,29.1352052],[-90.6795737,29.1361185],[-90.6793364,29.1393192],[-90.6772356,29.1374391],[-90.6768521,29.1359724],[-90.6765527,29.1348271],[-90.6766424,29.1335965],[-90.6767066,29.1327167],[-90.6744422,29.1315814]]],[[[-90.3454934,29.1326708],[-90.3434774,29.1298904],[-90.3433226,29.1298268],[-90.3411904,29.1289508],[-90.3387188,29.1283384],[-90.3385026,29.1261821],[-90.3392328,29.1240374],[-90.3364092,29.1242039],[-90.3370934,29.1222743],[-90.3395014,29.1200278],[-90.3411889,29.1193758],[-90.3433708,29.1176998],[-90.3454074,29.116364],[-90.3476602,29.1168204],[-90.3504034,29.1157033],[-90.3519171,29.1152419],[-90.3534346,29.1147793],[-90.3567238,29.1136492],[-90.3579318,29.1129885],[-90.3593684,29.1122028],[-90.3632378,29.1110221],[-90.3664333,29.1101755],[-90.3676533,29.1098523],[-90.3714032,29.1096696],[-90.3719866,29.1093112],[-90.3749862,29.1074685],[-90.3782864,29.106685],[-90.3803864,29.1059418],[-90.3826694,29.1052591],[-90.3845999,29.1041798],[-90.3869218,29.1032148],[-90.3891649,29.1029218],[-90.3910382,29.1027324],[-90.3931574,29.1025228],[-90.3944064,29.1025858],[-90.3969257,29.102713],[-90.3988764,29.1032128],[-90.4008424,29.1037165],[-90.4030626,29.1054238],[-90.4026144,29.1065112],[-90.4022144,29.1074815],[-90.4000946,29.1078627],[-90.3979368,29.1066861],[-90.3957634,29.1055018],[-90.3928538,29.1053988],[-90.3903421,29.1069328],[-90.3887584,29.1073888],[-90.3854579,29.1080858],[-90.3832607,29.1083799],[-90.3812968,29.1088404],[-90.3807629,29.1089655],[-90.3789194,29.1090793],[-90.3765359,29.1105783],[-90.3743948,29.1119479],[-90.372399,29.1133324],[-90.3703251,29.1126385],[-90.3687225,29.1143896],[-90.3672,29.1146423],[-90.3649987,29.1150076],[-90.3638193,29.1154564],[-90.3621682,29.1160848],[-90.3600298,29.115646],[-90.3575305,29.1157428],[-90.3567525,29.1161137],[-90.3558481,29.1165448],[-90.3554691,29.1171611],[-90.3548054,29.1182403],[-90.3538722,29.119799],[-90.354963,29.1220602],[-90.3548474,29.122874],[-90.3546864,29.1240064],[-90.3563144,29.1251554],[-90.3557723,29.1254127],[-90.3544432,29.1260435],[-90.3544263,29.127992],[-90.3544144,29.1293654],[-90.3534337,29.1317772],[-90.3501597,29.1320923],[-90.3490523,29.1306758],[-90.3478793,29.1317906],[-90.3472114,29.1324253],[-90.3454934,29.1326708]]],[[[-90.7100519,29.1310785],[-90.7110802,29.1293976],[-90.7135883,29.128627],[-90.7132271,29.1254795],[-90.7130228,29.1252256],[-90.7119508,29.1238928],[-90.711593,29.1207011],[-90.7087144,29.1214788],[-90.7082253,29.1216109],[-90.7071543,29.1263921],[-90.7051079,29.128094],[-90.7045433,29.1262182],[-90.7053095,29.1237591],[-90.7045002,29.1229955],[-90.7029152,29.1215],[-90.702964,29.1214709],[-90.7052516,29.1201073],[-90.7080262,29.1179925],[-90.7085109,29.1153606],[-90.709027,29.1130158],[-90.709186,29.1122933],[-90.712103,29.11384],[-90.7135365,29.1101347],[-90.7143632,29.1129304],[-90.7138543,29.1147713],[-90.7135381,29.1159152],[-90.7170844,29.1159583],[-90.714429,29.1177647],[-90.7154464,29.1196078],[-90.7158643,29.1216008],[-90.716803,29.1229201],[-90.7170217,29.1232275],[-90.7192497,29.1253345],[-90.7210724,29.126421],[-90.7221646,29.1291458],[-90.7221215,29.1294654],[-90.7218913,29.1311735],[-90.7196715,29.1305858],[-90.7191943,29.1328192],[-90.7188517,29.13281],[-90.7169016,29.1327575],[-90.7162554,29.1328892],[-90.7145893,29.1332287],[-90.7125456,29.1321758],[-90.7107989,29.1314072],[-90.7100519,29.1310785]]],[[[-90.645075,29.1389733],[-90.6462261,29.1366022],[-90.6485076,29.1371173],[-90.6487343,29.1371685],[-90.6493732,29.1381285],[-90.6500066,29.1390803],[-90.6513961,29.1405275],[-90.6518478,29.1436977],[-90.6513034,29.144099],[-90.6494263,29.1454829],[-90.6464901,29.1436711],[-90.6461486,29.1431339],[-90.6452334,29.1416938],[-90.6451136,29.139637],[-90.645075,29.1389733]]],[[[-90.2646541,29.1396039],[-90.2646542,29.1396039],[-90.2646544,29.1396039],[-90.2671241,29.1393993],[-90.2686002,29.139277],[-90.2708042,29.1399247],[-90.2708043,29.1399247],[-90.2708045,29.1399248],[-90.2734092,29.1415112],[-90.2715081,29.1422764],[-90.2693275,29.1426175],[-90.2664045,29.1428004],[-90.2646542,29.139604],[-90.2646541,29.1396039]]],[[[-90.3449961,29.1432203],[-90.3456297,29.1421213],[-90.3486399,29.1422552],[-90.3488177,29.1409654],[-90.349042,29.1393384],[-90.3509181,29.1367768],[-90.3521934,29.1393001],[-90.3517839,29.1413412],[-90.3506291,29.1437064],[-90.3503802,29.1442553],[-90.3492113,29.1468332],[-90.3468541,29.1469668],[-90.3462173,29.1470029],[-90.3453171,29.1507139],[-90.3439628,29.1470526],[-90.3441562,29.1457519],[-90.3443714,29.1443038],[-90.3449961,29.1432203]]],[[[-90.2984002,29.1922824],[-90.3005817,29.190348],[-90.3010561,29.1934462],[-90.3002583,29.1946276],[-90.2998833,29.1951831],[-90.2981577,29.1970583],[-90.2950653,29.1969466],[-90.2963895,29.1955813],[-90.2965793,29.1951591],[-90.2970839,29.1940367],[-90.2984002,29.1922824]]],[[[-90.9124603,29.2173695],[-90.9139162,29.2152666],[-90.910968,29.2154059],[-90.9084618,29.2128592],[-90.9109736,29.2115371],[-90.91329,29.2098593],[-90.9159775,29.2071799],[-90.9168018,29.2062133],[-90.9183926,29.2043479],[-90.9160981,29.2044132],[-90.9133522,29.2047624],[-90.9133755,29.2029467],[-90.9133893,29.201869],[-90.9183843,29.2017175],[-90.9222725,29.2025964],[-90.9219218,29.2016048],[-90.9216188,29.2007478],[-90.9235469,29.2003058],[-90.9247284,29.1986397],[-90.9249301,29.1965914],[-90.9250998,29.1948686],[-90.9253104,29.1937043],[-90.9257211,29.1914336],[-90.9269356,29.1885728],[-90.9290773,29.1867405],[-90.9308114,29.186064],[-90.9325243,29.1853958],[-90.9333626,29.1855891],[-90.9363172,29.1862705],[-90.9390169,29.1828988],[-90.9407082,29.1800866],[-90.9409914,29.1794482],[-90.9417059,29.1778372],[-90.9419991,29.1762422],[-90.9422286,29.1749931],[-90.9438249,29.1726512],[-90.9462276,29.1733658],[-90.947134,29.1754678],[-90.9483858,29.1741103],[-90.9497724,29.1743957],[-90.9500573,29.1744543],[-90.9521053,29.1759374],[-90.9531423,29.1766882],[-90.9541433,29.1783838],[-90.9536392,29.1804767],[-90.9539937,29.1820502],[-90.9552728,29.1824904],[-90.9577648,29.1833481],[-90.9589319,29.1843418],[-90.9606924,29.1858405],[-90.9614708,29.1873478],[-90.9630912,29.1896259],[-90.9647993,29.1874328],[-90.9665479,29.1875677],[-90.9692177,29.1881469],[-90.9715797,29.1878708],[-90.970064,29.1904445],[-90.9689525,29.192446],[-90.9681328,29.1955876],[-90.9681268,29.1956108],[-90.9679251,29.1963835],[-90.9651018,29.1969883],[-90.9620034,29.1969235],[-90.9584093,29.1967651],[-90.956173,29.1983461],[-90.9547452,29.1988195],[-90.9542853,29.198972],[-90.9536748,29.199302],[-90.9524789,29.1999485],[-90.9527709,29.2020695],[-90.9513663,29.2047561],[-90.9511694,29.20796],[-90.9482052,29.2082072],[-90.9501684,29.2103455],[-90.9473129,29.212538],[-90.9487815,29.214865],[-90.9464033,29.2148288],[-90.9447347,29.2149772],[-90.9443009,29.2150158],[-90.9432802,29.2144994],[-90.9426554,29.2141834],[-90.941396,29.2137343],[-90.9413874,29.2137313],[-90.9413788,29.2137282],[-90.939274,29.2129778],[-90.9384696,29.212546],[-90.9371529,29.2118391],[-90.9350707,29.2125858],[-90.9356751,29.2147579],[-90.9365924,29.2155773],[-90.938435,29.2172234],[-90.9366895,29.2194138],[-90.9343492,29.219909],[-90.9319952,29.2187073],[-90.9311521,29.2175734],[-90.9295462,29.2154134],[-90.9255488,29.2154615],[-90.9236279,29.2168799],[-90.9228743,29.2174364],[-90.9228563,29.2199596],[-90.9214499,29.220973],[-90.9191595,29.2220795],[-90.91684,29.2238668],[-90.9149535,29.2226176],[-90.9145642,29.2223058],[-90.9121315,29.2203571],[-90.9124603,29.2173695]]],[[[-90.9890379,29.2222239],[-90.9874109,29.2185038],[-90.9855478,29.2168228],[-90.9847027,29.2160604],[-90.9819821,29.2154733],[-90.983929,29.2138802],[-90.9833987,29.2112573],[-90.9850229,29.2097719],[-90.986789,29.2069226],[-90.9865165,29.204425],[-90.9836809,29.204545],[-90.9819928,29.2022237],[-90.9818349,29.1996265],[-90.9800807,29.2005801],[-90.9792814,29.2014498],[-90.9789442,29.2018167],[-90.9793648,29.2051736],[-90.9814489,29.2067535],[-90.9820199,29.2088115],[-90.9810497,29.2092447],[-90.9787932,29.2102524],[-90.9779531,29.2134554],[-90.9757809,29.2137038],[-90.9757506,29.2137073],[-90.9741561,29.215513],[-90.9724843,29.2152498],[-90.9712134,29.216595],[-90.9709777,29.2171765],[-90.9702088,29.2190728],[-90.9683587,29.2204152],[-90.9677388,29.2222908],[-90.9663223,29.2232018],[-90.9633991,29.2240334],[-90.9614574,29.2258411],[-90.9610108,29.2254928],[-90.959951,29.2246663],[-90.9584003,29.223457],[-90.9554272,29.2229408],[-90.9545497,29.2227885],[-90.9518935,29.2212704],[-90.9537478,29.2187323],[-90.9543733,29.2164848],[-90.9552007,29.2151769],[-90.9538729,29.2132124],[-90.9551979,29.2092304],[-90.9559382,29.2066471],[-90.9566919,29.2054925],[-90.9572593,29.2046234],[-90.9572293,29.2029133],[-90.9584263,29.2018544],[-90.9596864,29.2007397],[-90.961088,29.2006236],[-90.9658338,29.2002308],[-90.9693919,29.201478],[-90.9712034,29.1987522],[-90.9717483,29.1979323],[-90.973807,29.1951198],[-90.9750658,29.1927695],[-90.9780815,29.1881956],[-90.978638,29.1856938],[-90.9779531,29.1840286],[-90.9765656,29.1825951],[-90.9742792,29.182331],[-90.972213,29.181889],[-90.9722117,29.1818887],[-90.9722104,29.1818884],[-90.9710937,29.1816495],[-90.9698207,29.1817559],[-90.9698194,29.181756],[-90.9698182,29.1817561],[-90.9682169,29.1818899],[-90.9674813,29.1841095],[-90.9648546,29.1849578],[-90.9631226,29.1834925],[-90.9618648,29.1812209],[-90.9623395,29.1808586],[-90.9637523,29.1797803],[-90.965566,29.1781468],[-90.9677213,29.1775568],[-90.97167,29.1761808],[-90.9745093,29.1749888],[-90.9783203,29.1727248],[-90.9806019,29.1717744],[-90.9834419,29.1710406],[-90.9862057,29.1711729],[-90.9866155,29.1711925],[-90.991177,29.172754],[-90.9921844,29.1719298],[-90.9930188,29.1712473],[-90.9938273,29.1710258],[-90.9950283,29.1706968],[-90.9974303,29.1703968],[-91.0003648,29.1697976],[-91.0034396,29.1710418],[-91.0042051,29.1711789],[-91.0068259,29.1716481],[-91.0101626,29.1710715],[-91.0113482,29.173751],[-91.0126048,29.1767612],[-91.0124973,29.1801504],[-91.0136765,29.1800608],[-91.0155263,29.1799203],[-91.0173855,29.1803514],[-91.017812,29.1783198],[-91.0178991,29.1779046],[-91.0186408,29.1769038],[-91.018656,29.1768833],[-91.0193493,29.1759478],[-91.0197308,29.1757742],[-91.0214423,29.1749958],[-91.0238491,29.1753981],[-91.0241476,29.175448],[-91.0240216,29.176111],[-91.0236086,29.1782848],[-91.0220529,29.1797257],[-91.0214087,29.1812262],[-91.0235833,29.1829313],[-91.022807,29.1844005],[-91.0222311,29.1854906],[-91.0216333,29.1872783],[-91.0212078,29.1909732],[-91.0204156,29.1926894],[-91.0199778,29.1936377],[-91.0168701,29.192668],[-91.0164037,29.1927359],[-91.014655,29.1929905],[-91.0130243,29.1924293],[-91.0090165,29.1927418],[-91.0093867,29.1959016],[-91.008041,29.1993619],[-91.0066307,29.1977253],[-91.0038219,29.1979985],[-91.0001186,29.1986742],[-90.9976348,29.2008323],[-90.9926838,29.2004293],[-90.9927309,29.2031901],[-90.9931489,29.2055088],[-90.9949109,29.2041946],[-90.9953319,29.2043207],[-90.9967606,29.2047487],[-90.9975959,29.2055765],[-90.9983125,29.2062868],[-90.9989559,29.2084726],[-91.0007853,29.2090728],[-91.0016602,29.21116],[-91.0017063,29.2128308],[-91.0019263,29.2138186],[-91.0022304,29.2151844],[-91.004948,29.216093],[-91.0065717,29.216855],[-91.0087698,29.2146323],[-91.0107605,29.2133065],[-91.011397,29.2128827],[-91.0137712,29.2102884],[-91.0137781,29.2102808],[-91.0137851,29.2102732],[-91.0150663,29.2100966],[-91.0159329,29.2099772],[-91.0159842,29.2094808],[-91.0161906,29.2074856],[-91.0168369,29.2068682],[-91.0178402,29.2059096],[-91.0187482,29.2058631],[-91.0205683,29.20577],[-91.0211533,29.2056081],[-91.0234887,29.2049618],[-91.0252795,29.2034104],[-91.0262463,29.2019108],[-91.0268127,29.2014381],[-91.0279027,29.2005286],[-91.0274144,29.20421],[-91.0286094,29.2073319],[-91.0293681,29.2105153],[-91.0297333,29.2126578],[-91.0297369,29.2137993],[-91.0297388,29.2143998],[-91.0288755,29.2179513],[-91.0289399,29.2194938],[-91.028964,29.2200721],[-91.026577,29.2183403],[-91.0264535,29.2167154],[-91.0258711,29.2160495],[-91.0251587,29.2152348],[-91.0229499,29.2147948],[-91.021493,29.2146525],[-91.0204611,29.2145517],[-91.0196004,29.2152159],[-91.0177084,29.216676],[-91.0190176,29.2194992],[-91.0191658,29.221646],[-91.0160784,29.2204561],[-91.0157534,29.2203309],[-91.0125338,29.2236615],[-91.0124582,29.2269629],[-91.0135294,29.2292476],[-91.012463,29.2303959],[-91.0124609,29.2312735],[-91.0130193,29.23237],[-91.0111633,29.2345463],[-91.0099029,29.2360468],[-91.0082538,29.2377086],[-91.007749,29.2405452],[-91.0073397,29.2427594],[-91.0055221,29.2426638],[-91.0028477,29.2410161],[-91.0000149,29.2392441],[-90.997585,29.2376581],[-90.9955201,29.2362419],[-90.9924368,29.2343758],[-90.9895913,29.233782],[-90.9905874,29.2322059],[-90.9911159,29.2313697],[-90.9896129,29.2293708],[-90.9922903,29.2291598],[-90.9931695,29.2282721],[-90.9943123,29.2271185],[-90.9934243,29.2233828],[-90.9890379,29.2222239]]],[[[-90.0617055,29.1811268],[-90.064966,29.1805851],[-90.0628641,29.1826077],[-90.060949,29.1839968],[-90.0596564,29.1858538],[-90.0574389,29.1874567],[-90.0554767,29.1891577],[-90.0536918,29.1894079],[-90.0512062,29.1904552],[-90.0493834,29.1920617],[-90.0492026,29.1928392],[-90.0488671,29.1942826],[-90.0504803,29.1964854],[-90.0549806,29.1996452],[-90.0553636,29.20089],[-90.0542146,29.201656],[-90.0536401,29.2015602],[-90.0524911,29.20089],[-90.0503845,29.1984004],[-90.0483738,29.1962939],[-90.0474162,29.1944746],[-90.0462672,29.1923681],[-90.0463796,29.1909825],[-90.0467897,29.1904391],[-90.0487405,29.1878548],[-90.0518933,29.1859925],[-90.0557305,29.1842308],[-90.0587935,29.1827408],[-90.0617055,29.1811268]]],[[[-90.5214687,29.0826485],[-90.5205535,29.082299],[-90.5187638,29.0824726],[-90.5179787,29.0825488],[-90.5172845,29.0821047],[-90.5158825,29.0812078],[-90.512827,29.0805233],[-90.5103777,29.0795729],[-90.5097607,29.0782578],[-90.5092925,29.0772595],[-90.5064187,29.0776407],[-90.5036474,29.0767308],[-90.5026385,29.0769331],[-90.5014778,29.0771658],[-90.5016065,29.0747504],[-90.4991859,29.0736983],[-90.4990914,29.0743319],[-90.4988902,29.0756813],[-90.4961399,29.0755708],[-90.4937157,29.0740198],[-90.4907013,29.0727474],[-90.4901049,29.0723012],[-90.4884759,29.0710826],[-90.4872333,29.0707137],[-90.4852849,29.0701353],[-90.4834767,29.0686517],[-90.4821414,29.0675561],[-90.4807219,29.0701249],[-90.4757735,29.0667582],[-90.4696764,29.0670485],[-90.4673676,29.0650475],[-90.4653214,29.0632741],[-90.4560306,29.0635645],[-90.4512025,29.0675406],[-90.4491444,29.0672653],[-90.4469985,29.0652436],[-90.4462192,29.0641964],[-90.4458461,29.063695],[-90.4461295,29.0630758],[-90.4465079,29.0622492],[-90.4437413,29.060966],[-90.441641,29.0612042],[-90.4438323,29.0633902],[-90.4438342,29.0641102],[-90.4438373,29.0652597],[-90.4416272,29.0643588],[-90.4402186,29.065325],[-90.4396342,29.063112],[-90.4381155,29.0615335],[-90.4371438,29.0607629],[-90.430481,29.0629838],[-90.4243839,29.0629838],[-90.4261259,29.0597902],[-90.4287116,29.0587254],[-90.4310616,29.0577577],[-90.4391911,29.0565964],[-90.4481915,29.0565964],[-90.4511149,29.0554827],[-90.4546174,29.0563527],[-90.4576805,29.0551849],[-90.4602656,29.05626],[-90.4633878,29.0579233],[-90.4658918,29.059232],[-90.4673072,29.0599717],[-90.4683232,29.0581791],[-90.4722584,29.0580878],[-90.4811706,29.0620303],[-90.4846794,29.0624071],[-90.4905474,29.0648686],[-90.4939544,29.0661228],[-90.4963284,29.0668548],[-90.4987534,29.0679988],[-90.5001562,29.0685276],[-90.5007939,29.068768],[-90.5019565,29.0693676],[-90.5025891,29.0696939],[-90.5062594,29.0702838],[-90.513227,29.0714036],[-90.5204698,29.07476],[-90.5251308,29.07692],[-90.528035,29.0784485],[-90.5361636,29.0827267],[-90.5422607,29.0867914],[-90.544293,29.0894045],[-90.538196,29.0888238],[-90.5341312,29.0870818],[-90.5294575,29.0851573],[-90.5274375,29.0843255],[-90.5268423,29.0842291],[-90.5246985,29.0838821],[-90.5214687,29.0826485]]],[[[-90.8256533,29.0865751],[-90.8239373,29.0859781],[-90.8221186,29.0870369],[-90.8191013,29.0853087],[-90.8200067,29.0842373],[-90.8214625,29.0825144],[-90.821885,29.0817058],[-90.8228886,29.0797846],[-90.8248987,29.0788873],[-90.8255192,29.0786103],[-90.8279441,29.0779506],[-90.8283944,29.0776857],[-90.8303707,29.0765228],[-90.8311505,29.0771488],[-90.833101,29.0787146],[-90.8360616,29.0801235],[-90.836857,29.078577],[-90.8374095,29.0775026],[-90.8364541,29.0761392],[-90.8355511,29.0748506],[-90.8341111,29.0720199],[-90.8297007,29.0721388],[-90.831878,29.0694995],[-90.8340849,29.0679185],[-90.834699,29.0646622],[-90.8380216,29.0654582],[-90.8402732,29.0680643],[-90.8414316,29.0668113],[-90.8444849,29.0678682],[-90.8453573,29.0681702],[-90.8480692,29.071232],[-90.8493117,29.0713951],[-90.8508297,29.0715942],[-90.8514932,29.072293],[-90.8524268,29.0732763],[-90.8541748,29.0748687],[-90.8535164,29.0762519],[-90.8530687,29.0771923],[-90.8509709,29.0784662],[-90.8500502,29.0790253],[-90.8493663,29.079552],[-90.8474381,29.0810371],[-90.8449811,29.0811203],[-90.8444575,29.0804424],[-90.8435083,29.0792133],[-90.8413511,29.0788953],[-90.8379936,29.0809832],[-90.8362813,29.0831376],[-90.8376054,29.0856647],[-90.8385832,29.0877857],[-90.8362509,29.0882925],[-90.8343513,29.0887899],[-90.8322627,29.0888337],[-90.8320203,29.0888388],[-90.8287903,29.0871482],[-90.8272504,29.086965],[-90.8265265,29.0868789],[-90.8256533,29.0865751]]],[[[-83.0275998,29.0962017],[-83.0293854,29.0960393],[-83.0302094,29.0960558],[-83.030654,29.0960647],[-83.030908,29.0960698],[-83.0310782,29.0960732],[-83.031826,29.0960881],[-83.0318269,29.0960002],[-83.0318282,29.0958694],[-83.0333737,29.0958482],[-83.0333801,29.0958481],[-83.0333864,29.095848],[-83.0338097,29.0958422],[-83.0340229,29.0958393],[-83.0346912,29.096406],[-83.0349436,29.0966199],[-83.0334976,29.0978249],[-83.0334976,29.0986907],[-83.0330591,29.0989319],[-83.0324154,29.0992858],[-83.0321298,29.0991865],[-83.031171,29.098853],[-83.0298029,29.0981364],[-83.0297772,29.0981229],[-83.029692,29.0980783],[-83.0290854,29.0977605],[-83.0288984,29.0976626],[-83.0288804,29.0976424],[-83.0288615,29.097621],[-83.0276,29.0962019],[-83.0275999,29.0962018],[-83.0275998,29.0962017]]],[[[-94.7340519,29.3371319],[-94.7315356,29.3364902],[-94.7293568,29.3369384],[-94.7267933,29.3341899],[-94.7240051,29.3320198],[-94.7267973,29.3315744],[-94.7293303,29.3299089],[-94.7349853,29.3265799],[-94.7387373,29.3242539],[-94.7438168,29.3212029],[-94.7493899,29.3174445],[-94.7533083,29.3147569],[-94.7569836,29.3124022],[-94.7598613,29.3105409],[-94.7629443,29.3085269],[-94.7651693,29.3070784],[-94.7696678,29.3040059],[-94.7733936,29.3012354],[-94.7754181,29.2994069],[-94.7782808,29.2974259],[-94.7809671,29.2951881],[-94.7828066,29.2936899],[-94.7847279,29.2921505],[-94.7866249,29.2906879],[-94.7887676,29.2888919],[-94.7901531,29.2874552],[-94.7927804,29.2859267],[-94.7941832,29.2841042],[-94.7962929,29.2837267],[-94.7981946,29.2824249],[-94.8003336,29.2813382],[-94.8025143,29.2797654],[-94.8059048,29.2778136],[-94.809295,29.2759079],[-94.8119105,29.2742851],[-94.8134743,29.2734589],[-94.8155847,29.2721364],[-94.8190632,29.2702962],[-94.8213263,29.2692229],[-94.8227353,29.2683044],[-94.8265499,29.2659378],[-94.8289442,29.2647619],[-94.8318522,29.2632104],[-94.8334007,29.2623539],[-94.8352947,29.2613406],[-94.8376832,29.2600284],[-94.8393377,29.2591209],[-94.8442697,29.2562119],[-94.8503417,29.2525914],[-94.8534636,29.2507287],[-94.8560251,29.2492099],[-94.8596845,29.2470401],[-94.863649,29.2455793],[-94.8664927,29.2429844],[-94.868909,29.2419374],[-94.8725158,29.2405362],[-94.8758069,29.2391194],[-94.877952,29.2373434],[-94.8805032,29.2376959],[-94.8809952,29.2355274],[-94.8836745,29.2338445],[-94.8860836,29.2323829],[-94.8894059,29.2303852],[-94.8920429,29.2288572],[-94.8940063,29.2276647],[-94.8967977,29.2259146],[-94.8991027,29.2245569],[-94.9033197,29.2220154],[-94.9064662,29.2200924],[-94.9090627,29.2185424],[-94.9171016,29.2137696],[-94.9192782,29.2124919],[-94.9255587,29.2087079],[-94.9285921,29.2069348],[-94.9329287,29.2043479],[-94.9375596,29.2015972],[-94.9411116,29.1995029],[-94.9451836,29.1971273],[-94.9481584,29.1953429],[-94.9524026,29.1928742],[-94.9549669,29.1913762],[-94.9569812,29.1902069],[-94.9627894,29.1867636],[-94.9690502,29.1830419],[-94.971204,29.1817307],[-94.9737642,29.1802171],[-94.9764848,29.1798287],[-94.9777492,29.1778579],[-94.9794059,29.1768726],[-94.9817249,29.1754867],[-94.9853032,29.1732869],[-94.9876942,29.1718642],[-94.9892602,29.1709389],[-94.9926047,29.1689112],[-94.9999772,29.1644079],[-95.0067559,29.1602682],[-95.0092632,29.1587351],[-95.0133442,29.1562579],[-95.0162452,29.1545139],[-95.0184532,29.1531279],[-95.023216,29.1502604],[-95.0265592,29.1482076],[-95.0288282,29.1468939],[-95.0313512,29.1452584],[-95.034297,29.1433989],[-95.0369555,29.1417171],[-95.0393287,29.1402944],[-95.0417632,29.1387589],[-95.0458192,29.1361939],[-95.0480002,29.1348089],[-95.0495079,29.1338632],[-95.0522444,29.1321197],[-95.0554939,29.1300219],[-95.0580124,29.1283805],[-95.0633192,29.1249819],[-95.0672872,29.1223032],[-95.0693756,29.1210037],[-95.0715061,29.1195003],[-95.0751892,29.1169669],[-95.0773828,29.1154445],[-95.0793085,29.1140875],[-95.0813844,29.1125957],[-95.0836277,29.1110249],[-95.0855644,29.1096934],[-95.0896662,29.1065979],[-95.0922574,29.1045379],[-95.0947062,29.1024779],[-95.0968762,29.1005279],[-95.0985412,29.0989279],[-95.1011272,29.0962183],[-95.1034939,29.0933894],[-95.1049402,29.0914559],[-95.1065327,29.0893736],[-95.1088708,29.0879995],[-95.1143917,29.0860404],[-95.1203558,29.0860404],[-95.1240834,29.08778],[-95.1225924,29.0902651],[-95.1163797,29.0917561],[-95.1118195,29.0944923],[-95.1112809,29.0965957],[-95.1088106,29.0994234],[-95.1070422,29.1018736],[-95.1048573,29.1046119],[-95.1035324,29.1080584],[-95.1029264,29.1099162],[-95.1014079,29.1110097],[-95.1002607,29.112446],[-95.0995225,29.1150866],[-95.0975298,29.1167139],[-95.0965109,29.1189006],[-95.0941883,29.1210973],[-95.0922143,29.1229885],[-95.0901812,29.1241719],[-95.0885217,29.1249929],[-95.0870567,29.1258899],[-95.0823648,29.1268567],[-95.0778823,29.1274139],[-95.0756958,29.1294422],[-95.0727613,29.1308981],[-95.0704982,29.1329231],[-95.0671491,29.1326058],[-95.0680592,29.1359661],[-95.0648767,29.1365589],[-95.0629461,29.1367167],[-95.0595396,29.1390131],[-95.0566321,29.140117],[-95.0545188,29.1410833],[-95.055271,29.1430208],[-95.0529068,29.1438998],[-95.0504263,29.1461136],[-95.0482096,29.1478695],[-95.0454059,29.1477739],[-95.0426779,29.14677],[-95.0409882,29.1462329],[-95.0390425,29.1464206],[-95.0400425,29.1477019],[-95.0409847,29.1489501],[-95.0387097,29.1499883],[-95.035574,29.1493493],[-95.0362973,29.1515407],[-95.0330549,29.1520164],[-95.0335888,29.1536983],[-95.0305916,29.1545195],[-95.0284223,29.1559505],[-95.0256482,29.1566669],[-95.0233141,29.1582602],[-95.0249262,29.1606788],[-95.0268292,29.1615502],[-95.0283943,29.1629348],[-95.027394,29.1656176],[-95.0250375,29.1645311],[-95.0229317,29.1631105],[-95.0204778,29.1636014],[-95.0216524,29.1657789],[-95.0193028,29.1668825],[-95.0173404,29.1681938],[-95.0149704,29.1697989],[-95.0115509,29.1696192],[-95.0113708,29.1721806],[-95.0091676,29.1723167],[-95.0101418,29.1741003],[-95.0083277,29.1744334],[-95.0072859,29.1753684],[-95.0043347,29.1745694],[-95.005597,29.177477],[-95.0061077,29.181518],[-95.0051091,29.1838592],[-95.0022097,29.1820085],[-94.9989984,29.1802095],[-94.9960326,29.1806145],[-94.9947057,29.1822032],[-94.9937255,29.1836222],[-94.9909638,29.1839441],[-94.9889778,29.1858687],[-94.9862015,29.1866139],[-94.9838423,29.1860649],[-94.9851581,29.188339],[-94.9851986,29.1909368],[-94.9877065,29.1930777],[-94.9883937,29.1965313],[-94.9895485,29.198918],[-94.9875378,29.1998043],[-94.9850814,29.2001509],[-94.9831773,29.1981711],[-94.9814022,29.1957291],[-94.97897,29.1924789],[-94.9769792,29.1951852],[-94.9738457,29.1973596],[-94.9710084,29.1985427],[-94.9685813,29.1988611],[-94.9667103,29.2022185],[-94.9666237,29.2066199],[-94.9627667,29.208698],[-94.9589731,29.2079524],[-94.9575044,29.209982],[-94.9558756,29.212285],[-94.953993,29.2136033],[-94.9532117,29.2102714],[-94.9522037,29.2087784],[-94.9509977,29.2071334],[-94.9493831,29.2082848],[-94.9505762,29.210253],[-94.9503477,29.2127041],[-94.9480365,29.2145041],[-94.9475954,29.2165702],[-94.9507571,29.2152815],[-94.9516673,29.2172266],[-94.9478259,29.2197224],[-94.9442687,29.2206739],[-94.9421695,29.2187577],[-94.9412492,29.2201789],[-94.9404633,29.2221804],[-94.9392407,29.2241035],[-94.9413264,29.225567],[-94.9439896,29.2292477],[-94.9469967,29.2301014],[-94.9493649,29.2310145],[-94.9469402,29.2335809],[-94.9444513,29.2341102],[-94.9415944,29.2351378],[-94.938554,29.2329136],[-94.9350489,29.2316807],[-94.9332856,29.2345686],[-94.9361342,29.2372829],[-94.9385193,29.2393712],[-94.9355037,29.2397599],[-94.9328355,29.2395852],[-94.9303615,29.2384391],[-94.9279192,29.2381779],[-94.9250847,29.2381503],[-94.9226456,29.2395812],[-94.9244618,29.2404039],[-94.9255416,29.242333],[-94.9238038,29.2426206],[-94.9223122,29.2421479],[-94.9206311,29.2420421],[-94.9210807,29.2446724],[-94.9208155,29.2473253],[-94.9192319,29.2467909],[-94.9183315,29.2451809],[-94.916607,29.242152],[-94.9126655,29.2412256],[-94.9144219,29.243615],[-94.9136246,29.2469033],[-94.9173689,29.2492888],[-94.9146663,29.2493048],[-94.9130102,29.2524356],[-94.9134846,29.2545007],[-94.9156716,29.2548281],[-94.918147,29.2550648],[-94.9151662,29.2577111],[-94.9121057,29.2582519],[-94.9082975,29.259049],[-94.9065632,29.2605166],[-94.9024614,29.2631898],[-94.8986862,29.2648097],[-94.8957435,29.2671313],[-94.8928577,29.2686713],[-94.8903529,29.2689459],[-94.8881634,29.2704523],[-94.8862075,29.2713003],[-94.8836079,29.2717571],[-94.8816227,29.2725247],[-94.879931,29.2725004],[-94.8781201,29.2708758],[-94.8757521,29.2726327],[-94.8725567,29.2725872],[-94.8717158,29.2729703],[-94.8699716,29.2737649],[-94.8676887,29.2747983],[-94.8636893,29.2755277],[-94.8611492,29.2769279],[-94.8594099,29.2779614],[-94.8573508,29.2785554],[-94.8549612,29.2770457],[-94.8520497,29.2764009],[-94.8485027,29.2760112],[-94.8457701,29.2782659],[-94.8426215,29.279126],[-94.8408537,29.2809209],[-94.8383254,29.2814095],[-94.8383249,29.2814096],[-94.8383245,29.2814096],[-94.836199,29.2795012],[-94.8361961,29.2794986],[-94.8361932,29.279496],[-94.833889,29.2796609],[-94.8356159,29.2839292],[-94.8359174,29.2871625],[-94.8359203,29.2871609],[-94.8359233,29.2871593],[-94.8387599,29.2856084],[-94.8409159,29.2862082],[-94.8427588,29.2873711],[-94.8467431,29.2878669],[-94.8495352,29.2872697],[-94.8512572,29.2868449],[-94.8536827,29.2863677],[-94.8556762,29.2858121],[-94.8577914,29.2847605],[-94.8605306,29.2836217],[-94.8628031,29.2829683],[-94.8662184,29.2817682],[-94.869738,29.2811441],[-94.8721269,29.2821452],[-94.8742368,29.2809206],[-94.8769092,29.2802509],[-94.8799201,29.279485],[-94.8799179,29.279489],[-94.8799158,29.279493],[-94.8785077,29.2820558],[-94.8758722,29.2841444],[-94.8733612,29.2872405],[-94.8746508,29.2898074],[-94.8746514,29.2898086],[-94.874652,29.2898098],[-94.8747036,29.2899123],[-94.8767825,29.2919165],[-94.8744772,29.2918098],[-94.8744771,29.2918098],[-94.874477,29.2918098],[-94.8723491,29.2901551],[-94.8723458,29.2901526],[-94.8723425,29.29015],[-94.8693852,29.2900559],[-94.866814,29.2905287],[-94.8665741,29.2908719],[-94.8665736,29.2908726],[-94.8665731,29.2908733],[-94.8645419,29.2937784],[-94.8617715,29.2949958],[-94.8573869,29.2949643],[-94.8541417,29.296645],[-94.851395,29.2983953],[-94.847776,29.2972331],[-94.8448297,29.2979782],[-94.8406941,29.2987272],[-94.8372099,29.3006141],[-94.8347649,29.3015429],[-94.8321108,29.3007327],[-94.8276634,29.3005596],[-94.8275602,29.3033303],[-94.8260722,29.3060556],[-94.8217084,29.3070075],[-94.8201942,29.3091169],[-94.8178563,29.3085751],[-94.8157537,29.3081189],[-94.8122817,29.3068883],[-94.8065583,29.3081639],[-94.8046888,29.3081774],[-94.802946,29.3081786],[-94.8000869,29.3083214],[-94.7973357,29.3086224],[-94.7936127,29.3094498],[-94.7914358,29.3102838],[-94.7887859,29.3119089],[-94.7855221,29.3129977],[-94.784399,29.3147831],[-94.7811158,29.3172793],[-94.7782512,29.3158804],[-94.7749313,29.3186444],[-94.7749513,29.3206441],[-94.7739063,29.3232409],[-94.7732896,29.3268692],[-94.7732126,29.3273785],[-94.7732124,29.3273796],[-94.7732123,29.3273808],[-94.7729735,29.3289607],[-94.7736432,29.3308104],[-94.7720347,29.3331811],[-94.7716003,29.3337933],[-94.770254,29.3356904],[-94.7674384,29.3369106],[-94.7636186,29.3371212],[-94.7607979,29.3368703],[-94.7571289,29.3365291],[-94.753339,29.3357651],[-94.750489,29.3330339],[-94.7453639,29.3348841],[-94.7413881,29.3345043],[-94.7399213,29.3356559],[-94.7371258,29.3366214],[-94.7340519,29.3371319]]],[[[-90.863753,29.0959855],[-90.8640925,29.0944626],[-90.866082,29.0953148],[-90.8679561,29.0954131],[-90.8712441,29.0953009],[-90.8718267,29.099047],[-90.8718453,29.1017653],[-90.8702302,29.1039483],[-90.8691713,29.1023138],[-90.8687793,29.1009019],[-90.8682672,29.0990576],[-90.8657316,29.098485],[-90.8636174,29.0965936],[-90.863753,29.0959855]]],[[[-90.8437562,29.0887433],[-90.8440497,29.08671],[-90.8445368,29.0867497],[-90.8459493,29.0868648],[-90.8475351,29.0865808],[-90.8483634,29.0855286],[-90.8493226,29.0843099],[-90.8492619,29.0855393],[-90.8491837,29.0871242],[-90.8502776,29.088602],[-90.8506973,29.0904388],[-90.8502481,29.0925312],[-90.8501614,29.0929352],[-90.848989,29.0912927],[-90.8483716,29.0904278],[-90.8467564,29.0894969],[-90.8437562,29.0887433]]],[[[-90.4846387,29.0917835],[-90.4835601,29.0903819],[-90.4811822,29.0918166],[-90.4772015,29.0917521],[-90.4754044,29.0896858],[-90.4784886,29.0877967],[-90.479783,29.0864569],[-90.4804052,29.0858129],[-90.481652,29.086227],[-90.4840709,29.0870305],[-90.4890354,29.0868108],[-90.4917432,29.087662],[-90.4915842,29.0883702],[-90.4913086,29.0895975],[-90.4887484,29.0912663],[-90.4873969,29.0919552],[-90.4867386,29.0922908],[-90.4863502,29.092197],[-90.4846387,29.0917835]]],[[[-90.4235017,29.0908821],[-90.4264944,29.0887964],[-90.4300152,29.087373],[-90.4326928,29.0863215],[-90.4359744,29.0867148],[-90.4391689,29.0878028],[-90.4414314,29.0885648],[-90.4440329,29.0897848],[-90.4462104,29.0907818],[-90.4473194,29.0922518],[-90.4430811,29.0920148],[-90.4398862,29.0915603],[-90.4370645,29.0908141],[-90.4347036,29.0908302],[-90.4329097,29.0915493],[-90.4327062,29.0916309],[-90.4311246,29.0918645],[-90.4290999,29.0901125],[-90.4283938,29.0904339],[-90.4268657,29.0911295],[-90.4250004,29.0921484],[-90.423595,29.0929155],[-90.422401,29.0935673],[-90.4227053,29.0928247],[-90.4235017,29.0908821]]],[[[-83.0700057,29.0990684],[-83.0683895,29.0977887],[-83.067988,29.0980201],[-83.0664748,29.0986393],[-83.0643977,29.0986157],[-83.0630281,29.1000298],[-83.0628024,29.0992983],[-83.0628029,29.0992944],[-83.0628035,29.0992904],[-83.0628059,29.0992728],[-83.0625015,29.098323],[-83.0627215,29.0980951],[-83.0641256,29.0969774],[-83.0674496,29.0966971],[-83.0676285,29.096764],[-83.0676453,29.0967835],[-83.0712218,29.0979735],[-83.0731527,29.0991431],[-83.0719724,29.1003083],[-83.0703867,29.1005165],[-83.0700057,29.0990684]]],[[[-90.7963293,29.1116585],[-90.7952523,29.1103294],[-90.7950092,29.110801],[-90.7944941,29.1118001],[-90.7942011,29.1123685],[-90.7915986,29.1120235],[-90.7911563,29.1119649],[-90.7926574,29.1100725],[-90.7938196,29.1074591],[-90.7944067,29.1048831],[-90.7914352,29.105455],[-90.7891652,29.1072759],[-90.7885816,29.1093293],[-90.7884746,29.1092322],[-90.7867051,29.1076271],[-90.7891666,29.1033221],[-90.7864177,29.1025416],[-90.7879208,29.1002517],[-90.7889324,29.0970242],[-90.7902942,29.0937382],[-90.7918733,29.0919528],[-90.7935993,29.0906435],[-90.7941272,29.0910573],[-90.7956553,29.0922551],[-90.7982893,29.094448],[-90.800254,29.0916518],[-90.8001884,29.0904428],[-90.8000459,29.0878211],[-90.8021913,29.0889282],[-90.805017,29.0897182],[-90.8062406,29.091392],[-90.8048739,29.0946132],[-90.8023694,29.0963654],[-90.8016208,29.0970053],[-90.8016204,29.0970056],[-90.80162,29.0970059],[-90.8005061,29.0979581],[-90.8002372,29.0988252],[-90.7997493,29.1003983],[-90.7982663,29.1036996],[-90.7962256,29.1078033],[-90.7967686,29.1086653],[-90.797418,29.1096963],[-90.8008433,29.1096292],[-90.8062534,29.1080217],[-90.8047879,29.1106069],[-90.8025872,29.1124363],[-90.8025798,29.1124425],[-90.8025723,29.1124487],[-90.8018289,29.1130666],[-90.8000334,29.1151211],[-90.7970486,29.1129395],[-90.7963294,29.1116587],[-90.7963294,29.1116586],[-90.7963293,29.1116585]]],[[[-90.8220171,29.1279685],[-90.8198913,29.1265452],[-90.8187196,29.1272027],[-90.8174965,29.127889],[-90.8167346,29.1251115],[-90.817428,29.1228185],[-90.8182354,29.1216456],[-90.8187583,29.1208861],[-90.8194247,29.118832],[-90.8195747,29.1176565],[-90.8196848,29.1167933],[-90.817497,29.1168574],[-90.8174929,29.1168575],[-90.8174888,29.1168576],[-90.8185978,29.1153153],[-90.8202463,29.1146998],[-90.8204502,29.113289],[-90.8205763,29.1124168],[-90.8235812,29.1110536],[-90.8262229,29.1086102],[-90.8291853,29.1117773],[-90.8307434,29.1140152],[-90.8309466,29.1130333],[-90.8314705,29.110501],[-90.8313367,29.1093532],[-90.8312177,29.108333],[-90.8327455,29.1052231],[-90.8352203,29.1044098],[-90.8385336,29.1027671],[-90.8393118,29.1026969],[-90.8418181,29.1024706],[-90.8443451,29.1038619],[-90.8462991,29.1007066],[-90.8472425,29.103603],[-90.8496391,29.1045601],[-90.8519745,29.1051255],[-90.853633,29.1055148],[-90.8569897,29.1041629],[-90.8575014,29.1011785],[-90.8577317,29.0998352],[-90.8577058,29.0992413],[-90.8576264,29.0974237],[-90.8575749,29.0942638],[-90.8552248,29.0935996],[-90.855354,29.0912862],[-90.8563168,29.0892104],[-90.8552528,29.0863972],[-90.8578639,29.0872404],[-90.859408,29.0894148],[-90.8591466,29.0909193],[-90.8590285,29.0915995],[-90.8597276,29.0915721],[-90.8597334,29.0915719],[-90.8597392,29.0915717],[-90.86095,29.0915243],[-90.8618118,29.0934032],[-90.8613451,29.0953314],[-90.8606847,29.0959677],[-90.8596601,29.0969549],[-90.8607221,29.1000764],[-90.8620937,29.103095],[-90.8633367,29.1016767],[-90.8648043,29.1031157],[-90.8663286,29.1020543],[-90.8668895,29.1035772],[-90.8684169,29.1061065],[-90.8716425,29.1053462],[-90.8757458,29.1051458],[-90.8779777,29.1056368],[-90.8776752,29.106531],[-90.8772445,29.1078044],[-90.8771013,29.1084961],[-90.8768628,29.1096477],[-90.8770939,29.1104114],[-90.8774295,29.1115209],[-90.8756528,29.1127722],[-90.8743067,29.1125633],[-90.873234,29.1123969],[-90.8696332,29.1144816],[-90.8695481,29.1169123],[-90.8682281,29.1192525],[-90.8671892,29.1180369],[-90.8658897,29.1165164],[-90.8667318,29.1132924],[-90.8677968,29.1102921],[-90.8665798,29.1091423],[-90.8647223,29.1096022],[-90.8652809,29.1126734],[-90.8646787,29.1143007],[-90.8643359,29.115227],[-90.8630187,29.1174664],[-90.8611168,29.1170919],[-90.8604966,29.1169698],[-90.858514,29.1163776],[-90.8559958,29.1169538],[-90.8531279,29.1174071],[-90.8499358,29.1172588],[-90.8485922,29.1161577],[-90.8483138,29.1153829],[-90.8474905,29.1130912],[-90.849211,29.1127525],[-90.8514801,29.1120424],[-90.8514014,29.1095454],[-90.8482847,29.1103336],[-90.8479318,29.1104228],[-90.8455672,29.1090909],[-90.8444728,29.1119925],[-90.8454915,29.1138706],[-90.8468056,29.1157815],[-90.8448865,29.1172935],[-90.8435566,29.1183414],[-90.8423768,29.1188333],[-90.8410185,29.1193995],[-90.838354,29.1216633],[-90.8375982,29.1205371],[-90.8368053,29.1193556],[-90.8364788,29.1214958],[-90.836139,29.1237223],[-90.8327343,29.1241397],[-90.8292111,29.1260065],[-90.8278315,29.1290372],[-90.8245604,29.1281934],[-90.8220171,29.1279685]]],[[[-90.4057431,29.2633564],[-90.4068061,29.2606333],[-90.4084993,29.2574036],[-90.4111829,29.2564643],[-90.4107178,29.2589666],[-90.4127732,29.2600975],[-90.4159216,29.2596534],[-90.4171964,29.2609187],[-90.4177272,29.2614455],[-90.418461,29.2617001],[-90.4215558,29.2627739],[-90.4180883,29.2644928],[-90.4153103,29.2641843],[-90.4150867,29.2622993],[-90.4136752,29.2629985],[-90.4126834,29.2634897],[-90.4125002,29.2637577],[-90.4114593,29.2652802],[-90.4090944,29.2674808],[-90.4069249,29.2691889],[-90.4065223,29.2655865],[-90.4057431,29.2633564]]],[[[-94.9208585,29.2849666],[-94.9235685,29.2843825],[-94.9274947,29.2844096],[-94.9304205,29.2855951],[-94.9280946,29.2873985],[-94.9254745,29.2876843],[-94.9229812,29.2884883],[-94.9202544,29.2872745],[-94.9208585,29.2849666]]],[[[-94.912415,29.2689824],[-94.9128642,29.2689199],[-94.914585,29.270577],[-94.9145886,29.2705804],[-94.9145922,29.2705839],[-94.9147078,29.273727],[-94.9113522,29.2756239],[-94.9080802,29.2743679],[-94.9077098,29.2719887],[-94.9092265,29.2699945],[-94.9097099,29.2693587],[-94.912415,29.2689824]]],[[[-90.3660304,29.2795275],[-90.3676004,29.2786953],[-90.369034,29.282388],[-90.3659851,29.2852267],[-90.3620716,29.2841487],[-90.362041,29.2820775],[-90.3646086,29.2802812],[-90.3660304,29.2795275]]],[[[-94.9047343,29.300223],[-94.9067085,29.298118],[-94.9091172,29.2974891],[-94.9096896,29.2955311],[-94.9115973,29.2955492],[-94.912541,29.2935433],[-94.9142995,29.2943478],[-94.9162372,29.2932251],[-94.9196043,29.2939859],[-94.920476,29.2963234],[-94.924005,29.2966183],[-94.9259543,29.2961627],[-94.9279834,29.29795],[-94.925886,29.2990515],[-94.9221172,29.3000861],[-94.9191853,29.3012767],[-94.9163731,29.300176],[-94.9155295,29.2980606],[-94.913277,29.299072],[-94.9098124,29.3010364],[-94.9072482,29.3011244],[-94.9047362,29.3002237],[-94.9047343,29.300223]]],[[[-90.0825373,29.2994429],[-90.0832983,29.2990445],[-90.0840824,29.298634],[-90.0861544,29.2998619],[-90.086681,29.3016535],[-90.087463,29.3039612],[-90.085951,29.3044793],[-90.0859022,29.3044961],[-90.0843085,29.3035497],[-90.0827433,29.301649],[-90.0802344,29.3016593],[-90.081384,29.3005529],[-90.0825373,29.2994429]]],[[[-90.5021586,29.2872988],[-90.502413,29.2865659],[-90.5051251,29.2875238],[-90.5077466,29.2887496],[-90.5060988,29.2900526],[-90.5053351,29.2906565],[-90.5017221,29.2908203],[-90.5018849,29.2880876],[-90.5021586,29.2872988]]],[[[-91.2361108,29.3689504],[-91.2361577,29.3677053],[-91.2362389,29.3655524],[-91.236433,29.3632666],[-91.2364451,29.3632358],[-91.2372877,29.3610983],[-91.2372387,29.3590933],[-91.2368993,29.3576846],[-91.2363654,29.3554688],[-91.2366119,29.353583],[-91.2367651,29.3524114],[-91.2335469,29.3505808],[-91.2331542,29.3482051],[-91.2317544,29.3455898],[-91.2306474,29.3444456],[-91.2303757,29.3441648],[-91.2294195,29.3433064],[-91.2279731,29.3420079],[-91.2256821,29.3396806],[-91.2242652,29.33748],[-91.223105,29.3354083],[-91.2209424,29.3327799],[-91.2200877,29.3302989],[-91.2172683,29.3269283],[-91.2151926,29.3245702],[-91.215168,29.3245122],[-91.2145332,29.3230168],[-91.2141575,29.320155],[-91.2107967,29.3175668],[-91.2080591,29.315994],[-91.2058112,29.3166693],[-91.2055332,29.3164846],[-91.2034658,29.3151116],[-91.2004898,29.3127788],[-91.1981962,29.31223],[-91.19814,29.3122165],[-91.1980122,29.3086208],[-91.1976997,29.3083106],[-91.1962709,29.3068924],[-91.1955818,29.3064394],[-91.1945789,29.3057799],[-91.1940774,29.3054502],[-91.1935128,29.3038743],[-91.1933623,29.303454],[-91.1929844,29.3023993],[-91.191109,29.3020264],[-91.1890719,29.3016215],[-91.1889304,29.3023665],[-91.1886487,29.3038491],[-91.1894015,29.3045752],[-91.1913002,29.3064069],[-91.1936907,29.3101163],[-91.192987,29.3117791],[-91.1921276,29.3121908],[-91.1906225,29.3129118],[-91.1882126,29.314062],[-91.1851315,29.3169834],[-91.1825972,29.3188933],[-91.181484,29.3200896],[-91.1807891,29.3208364],[-91.1782237,29.3223523],[-91.1759136,29.3236912],[-91.1746975,29.3253694],[-91.1728338,29.3257708],[-91.1699462,29.3254563],[-91.1672782,29.3253068],[-91.1646899,29.3246801],[-91.1637996,29.3239169],[-91.1627257,29.3229963],[-91.1620685,29.321968],[-91.1617362,29.3214481],[-91.1604687,29.3188286],[-91.1618682,29.3155521],[-91.1632959,29.3141763],[-91.1638599,29.3136328],[-91.1656675,29.3111448],[-91.1666419,29.308319],[-91.1670929,29.3067481],[-91.1674139,29.3056301],[-91.1676133,29.3026685],[-91.1679341,29.3008802],[-91.1683734,29.2984312],[-91.1685638,29.2974988],[-91.1688549,29.2960738],[-91.1687637,29.2943248],[-91.1680373,29.2920618],[-91.1678973,29.2916255],[-91.1678088,29.2909379],[-91.1675319,29.2887861],[-91.1671204,29.2866373],[-91.1683932,29.2842534],[-91.1694642,29.2822476],[-91.17028,29.2795892],[-91.1693256,29.2769313],[-91.1694169,29.2746094],[-91.1693045,29.2744102],[-91.1695112,29.2742861],[-91.1717271,29.2724923],[-91.1717318,29.2724547],[-91.1742002,29.2727384],[-91.176151,29.2713035],[-91.1770336,29.2710604],[-91.177847,29.2711206],[-91.1793243,29.2723868],[-91.1803794,29.273653],[-91.1816456,29.273653],[-91.1824898,29.2727034],[-91.1831229,29.2712261],[-91.1843891,29.2713316],[-91.1883987,29.2743916],[-91.1890318,29.2771351],[-91.1893484,29.2787178],[-91.193569,29.2811447],[-91.1944132,29.2825164],[-91.1954458,29.2844342],[-91.1958904,29.2852599],[-91.1951518,29.2877923],[-91.1941663,29.2899908],[-91.1928304,29.2927515],[-91.1936745,29.2944398],[-91.1975787,29.2972888],[-91.199478,29.3000322],[-91.2012717,29.3000322],[-91.2014828,29.2999267],[-91.2000055,29.2949674],[-91.1993724,29.2937012],[-91.1977897,29.2928571],[-91.1975787,29.2901136],[-91.1989504,29.2883198],[-91.2017993,29.2856819],[-91.2019048,29.2834661],[-91.2021159,29.2821999],[-91.2044372,29.2811447],[-91.2066531,29.2781902],[-91.2059145,29.2762909],[-91.2043317,29.2753413],[-91.2023269,29.2753413],[-91.2011662,29.2753413],[-91.2005331,29.2748137],[-91.1990559,29.2730199],[-91.1954683,29.2711206],[-91.1957904,29.2703844],[-91.1983173,29.2696434],[-91.2005331,29.2680606],[-91.2005331,29.2677575],[-91.2005331,29.2672165],[-91.1992669,29.2643675],[-91.1961014,29.2605689],[-91.1926194,29.2587752],[-91.1913532,29.2574034],[-91.1899815,29.25772],[-91.1887153,29.2591972],[-91.188639,29.2598457],[-91.1885042,29.260991],[-91.1888208,29.2632069],[-91.1885042,29.2657393],[-91.1873435,29.2667944],[-91.1849167,29.267533],[-91.1808015,29.2681661],[-91.1784801,29.2678496],[-91.1723602,29.2677441],[-91.1717286,29.2679435],[-91.1716177,29.2678343],[-91.1698322,29.2675632],[-91.1671969,29.2661984],[-91.164817,29.2639255],[-91.162462,29.2611435],[-91.1587827,29.2594174],[-91.1564222,29.2585153],[-91.1543667,29.2578262],[-91.1514408,29.255367],[-91.1527961,29.2545339],[-91.1535858,29.2540484],[-91.1566426,29.2554562],[-91.1596376,29.2552354],[-91.1629108,29.255013],[-91.163114,29.2549992],[-91.1638552,29.2542182],[-91.1654952,29.2524902],[-91.1655497,29.2514436],[-91.1655776,29.2509078],[-91.1656527,29.2494639],[-91.1679459,29.2464492],[-91.1681897,29.2458983],[-91.1692402,29.2435253],[-91.1708251,29.2412626],[-91.1710607,29.2371072],[-91.1687132,29.2349153],[-91.1669848,29.2356709],[-91.1676432,29.2380164],[-91.1649261,29.2410898],[-91.1610747,29.2418908],[-91.1591672,29.2425668],[-91.1573177,29.243729],[-91.153972,29.2435],[-91.1517722,29.2433898],[-91.1494382,29.2427391],[-91.146843,29.245066],[-91.1461006,29.2494828],[-91.1459739,29.2498992],[-91.1451556,29.2525896],[-91.1401587,29.2519775],[-91.1382331,29.2514278],[-91.1365651,29.2509516],[-91.1349425,29.2479303],[-91.1345535,29.2462523],[-91.1343292,29.2452848],[-91.134707,29.2403155],[-91.1385641,29.2340487],[-91.1342006,29.2261943],[-91.1309234,29.2190938],[-91.1320966,29.2164968],[-91.13472,29.2149854],[-91.1357357,29.2148185],[-91.1371942,29.2145788],[-91.1426402,29.2155888],[-91.1467759,29.2164955],[-91.1474745,29.2167286],[-91.1474857,29.2167324],[-91.147497,29.2167361],[-91.151123,29.2179463],[-91.1528507,29.2185311],[-91.1537152,29.2188238],[-91.1555134,29.2191423],[-91.1572152,29.2194438],[-91.1608029,29.2190778],[-91.1648627,29.2193198],[-91.1679652,29.2195378],[-91.1703157,29.2192858],[-91.1727332,29.2195618],[-91.1753972,29.2195618],[-91.1768869,29.2196464],[-91.1778272,29.2196998],[-91.1797252,29.2196921],[-91.1825552,29.2197573],[-91.1856902,29.2199978],[-91.1879102,29.2202968],[-91.1894692,29.2203964],[-91.1918552,29.2205488],[-91.1986872,29.2210868],[-91.2018872,29.2218088],[-91.2044087,29.2223463],[-91.2046832,29.2224048],[-91.2071652,29.2230458],[-91.2111622,29.2240538],[-91.2160992,29.2251988],[-91.2193045,29.2261681],[-91.2233642,29.2276498],[-91.2272442,29.2290233],[-91.2297922,29.2302378],[-91.2329375,29.2319279],[-91.2330322,29.2319788],[-91.2364552,29.2335128],[-91.2399312,29.2350018],[-91.242542,29.2367668],[-91.2442247,29.2373048],[-91.2471782,29.2367178],[-91.2504558,29.2377836],[-91.2509362,29.2379398],[-91.2551479,29.2394885],[-91.2590003,29.2410614],[-91.2602612,29.2415763],[-91.2610613,29.2418319],[-91.2639972,29.2427698],[-91.2682947,29.2438603],[-91.2714432,29.2449268],[-91.2736127,29.2460623],[-91.2746899,29.2465147],[-91.2760162,29.2470718],[-91.2763221,29.2472531],[-91.2775794,29.2479983],[-91.2788735,29.2480262],[-91.2792692,29.2480348],[-91.2817252,29.2497848],[-91.2843022,29.2518788],[-91.2862798,29.253176],[-91.2877618,29.2541482],[-91.2903463,29.2557949],[-91.2925499,29.2574644],[-91.2940491,29.2586258],[-91.2950848,29.2594281],[-91.2977862,29.2616065],[-91.3022927,29.2656093],[-91.3033838,29.2671567],[-91.3035208,29.2673511],[-91.3053057,29.2688413],[-91.3070675,29.2711512],[-91.3071412,29.2712478],[-91.3086379,29.2729435],[-91.3109707,29.2758428],[-91.312343,29.2776464],[-91.3143602,29.2792486],[-91.3143613,29.2792495],[-91.3143624,29.2792503],[-91.3146168,29.2794524],[-91.3153224,29.2801962],[-91.3168454,29.2818015],[-91.3195312,29.2849068],[-91.3208755,29.2864316],[-91.3213395,29.2869579],[-91.3230594,29.2886689],[-91.3255442,29.2911408],[-91.3279325,29.2930271],[-91.3324472,29.2964328],[-91.3342907,29.2981743],[-91.3368109,29.3011912],[-91.3380172,29.3026353],[-91.339938,29.305823],[-91.3419873,29.309189],[-91.342707,29.3101151],[-91.3433705,29.3109688],[-91.3440208,29.3117392],[-91.3464398,29.3146048],[-91.3469856,29.3157541],[-91.3473176,29.3164532],[-91.3464323,29.3161476],[-91.3448192,29.3155908],[-91.3424409,29.3142296],[-91.3419898,29.3139714],[-91.3419049,29.3136328],[-91.3417062,29.3128408],[-91.3414972,29.3117868],[-91.3407382,29.3105488],[-91.3386462,29.3090828],[-91.3367632,29.3086248],[-91.3345545,29.3085121],[-91.3332862,29.3079608],[-91.3322662,29.3079838],[-91.3313252,29.3084878],[-91.3301657,29.3083225],[-91.3298151,29.3082726],[-91.3293305,29.308127],[-91.3284742,29.3078698],[-91.3272501,29.3075623],[-91.3257552,29.3069528],[-91.3257503,29.3069517],[-91.3257453,29.3069506],[-91.3247092,29.3067238],[-91.3236112,29.3068388],[-91.321894,29.3074638],[-91.3210425,29.3073964],[-91.3208067,29.3073778],[-91.3178328,29.3069573],[-91.3166042,29.3061288],[-91.3156102,29.3058078],[-91.3145221,29.3058354],[-91.3097133,29.30545],[-91.3084833,29.3053514],[-91.3078968,29.3070556],[-91.3076088,29.3078925],[-91.3075703,29.3080042],[-91.3063285,29.3084821],[-91.3053602,29.3088548],[-91.3043515,29.3085989],[-91.3036231,29.3084142],[-91.3033846,29.3083537],[-91.3033789,29.3083522],[-91.3033732,29.3083508],[-91.3033321,29.308357],[-91.3026586,29.3084599],[-91.2999212,29.3088778],[-91.2969402,29.3093358],[-91.295989,29.3094805],[-91.2957372,29.3095188],[-91.295548,29.3095913],[-91.2955461,29.309592],[-91.2955442,29.3095928],[-91.2944822,29.3099998],[-91.2918152,29.3113518],[-91.2906584,29.3126806],[-91.2906382,29.3127038],[-91.2904632,29.3130265],[-91.2896442,29.3145368],[-91.2893562,29.3155218],[-91.2892772,29.3171268],[-91.2896952,29.3182268],[-91.2907181,29.320441],[-91.288024,29.3216594],[-91.2869752,29.3220078],[-91.2863069,29.3224693],[-91.2856245,29.3229407],[-91.2834172,29.3243788],[-91.2823215,29.3247588],[-91.2812722,29.3251228],[-91.2794412,29.3262458],[-91.2786042,29.3269788],[-91.2774002,29.3284448],[-91.2766412,29.3298198],[-91.2763603,29.3308928],[-91.2762752,29.3312178],[-91.276179,29.3328206],[-91.2760254,29.3340415],[-91.2755662,29.3368998],[-91.2756442,29.3388248],[-91.2757742,29.3400168],[-91.276222,29.3417586],[-91.2755986,29.3434325],[-91.2754197,29.3439128],[-91.2737336,29.3449791],[-91.2730569,29.3472808],[-91.2727145,29.3484327],[-91.2723962,29.3495038],[-91.2720796,29.3506993],[-91.2712454,29.3531641],[-91.2711309,29.3535023],[-91.2702941,29.3562464],[-91.268851,29.3587948],[-91.2661124,29.3613728],[-91.2651707,29.36155],[-91.260648,29.3624013],[-91.2586812,29.3630987],[-91.2573732,29.3636018],[-91.2561162,29.3645408],[-91.254961,29.3656153],[-91.2544412,29.3660988],[-91.254012,29.366521],[-91.2536649,29.3668624],[-91.2506658,29.3682376],[-91.2501609,29.368024],[-91.2497302,29.3678418],[-91.2496845,29.3685779],[-91.2496391,29.3693078],[-91.2459122,29.3705248],[-91.2422492,29.3710298],[-91.240338,29.3714254],[-91.2394762,29.3716038],[-91.2385092,29.3719938],[-91.2370196,29.3729999],[-91.2369132,29.3730718],[-91.2346394,29.374192],[-91.2325345,29.3739918],[-91.2322102,29.373961],[-91.2323513,29.3738158],[-91.2323567,29.3738102],[-91.2323621,29.3738046],[-91.2335809,29.3725503],[-91.2361108,29.3689504]]],[[[-90.5764863,29.2897003],[-90.5785158,29.2891059],[-90.5786904,29.28998],[-90.5790878,29.29197],[-90.5763581,29.2944685],[-90.572354,29.2952826],[-90.575471,29.2983874],[-90.5771504,29.3012293],[-90.5777591,29.3043322],[-90.5751264,29.3040968],[-90.5725496,29.3023047],[-90.5725252,29.3021357],[-90.5722209,29.3000226],[-90.571222,29.2990272],[-90.570379,29.2981871],[-90.5701807,29.2974123],[-90.5698197,29.2960018],[-90.5704113,29.2929646],[-90.5706543,29.2917171],[-90.571881,29.2912379],[-90.573814,29.290483],[-90.5764863,29.2897003]]],[[[-94.7859013,29.3357569],[-94.7833256,29.3345919],[-94.7794729,29.3346349],[-94.7807903,29.3328382],[-94.7816953,29.3309939],[-94.7814143,29.3284029],[-94.78181,29.3263846],[-94.7819542,29.3239012],[-94.7838639,29.3223504],[-94.7857733,29.3199676],[-94.7880898,29.3176021],[-94.7904193,29.3158549],[-94.7928985,29.3146859],[-94.7949395,29.3162172],[-94.7968298,29.3156994],[-94.7991822,29.3134783],[-94.8015728,29.3124144],[-94.8037481,29.312475],[-94.8064992,29.312544],[-94.8095894,29.313451],[-94.813366,29.3126012],[-94.8165193,29.3128039],[-94.8199723,29.3131635],[-94.8216204,29.3141541],[-94.8231456,29.3174652],[-94.8235693,29.3202809],[-94.8233852,29.3228164],[-94.822671,29.3258965],[-94.8222269,29.3282965],[-94.822465,29.3302267],[-94.8222877,29.3324514],[-94.8219619,29.3345715],[-94.8206267,29.3379683],[-94.8201984,29.3411956],[-94.8219568,29.3431946],[-94.821386,29.3451543],[-94.8213568,29.3452545],[-94.8185787,29.3475713],[-94.8177897,29.3482292],[-94.8163671,29.349117],[-94.8150554,29.3499357],[-94.8140444,29.3505666],[-94.8114541,29.3520069],[-94.8074923,29.3513149],[-94.8046751,29.3499189],[-94.8018767,29.3478679],[-94.7986133,29.3451349],[-94.7961099,29.3433265],[-94.7941888,29.3420579],[-94.7915403,29.3407224],[-94.7886192,29.3384289],[-94.7859013,29.3357569]]],[[[-90.0828842,29.3174053],[-90.0834199,29.3147122],[-90.085342,29.3146462],[-90.0879028,29.3137412],[-90.0900585,29.3138777],[-90.0914074,29.315011],[-90.0906668,29.3153789],[-90.0890488,29.3161827],[-90.0866322,29.3170481],[-90.0848325,29.3169237],[-90.084459,29.317016],[-90.0828842,29.3174053]]],[[[-91.3438598,29.3312314],[-91.3433702,29.3303908],[-91.3432532,29.3301898],[-91.3414003,29.3297023],[-91.3461637,29.3279654],[-91.3483528,29.3288784],[-91.3482339,29.3281795],[-91.3479337,29.3264166],[-91.3483313,29.3259226],[-91.34857,29.3256259],[-91.3487084,29.3255822],[-91.3495812,29.3253068],[-91.3497372,29.3241148],[-91.3500842,29.3231259],[-91.3505917,29.3216801],[-91.3521445,29.3241564],[-91.3523396,29.3249771],[-91.3525846,29.3260072],[-91.3528054,29.329013],[-91.3528557,29.3309805],[-91.3527021,29.3309192],[-91.3513872,29.3303938],[-91.3494184,29.3308668],[-91.3476992,29.332424],[-91.3467381,29.3325341],[-91.3463555,29.3325779],[-91.3438598,29.3312314]]],[[[-91.1634248,29.3295782],[-91.162459,29.3278413],[-91.1659258,29.3280148],[-91.1660752,29.3280223],[-91.1662688,29.328033],[-91.1698077,29.3282293],[-91.1717402,29.3298834],[-91.1700876,29.3301342],[-91.1688238,29.330326],[-91.1682909,29.3303424],[-91.1658522,29.3304173],[-91.1637732,29.3302048],[-91.1634248,29.3295782]]],[[[-80.9234682,29.0756724],[-80.92581,29.0755386],[-80.9290584,29.0791635],[-80.9301446,29.0796405],[-80.9332203,29.0806155],[-80.9354796,29.0822795],[-80.9354648,29.0838439],[-80.9350926,29.0853791],[-80.9359425,29.0877049],[-80.9367319,29.0884424],[-80.9383498,29.090565],[-80.9406456,29.0918395],[-80.9465789,29.0944221],[-80.9471789,29.0967061],[-80.9472456,29.0988395],[-80.9488226,29.1036564],[-80.9508931,29.104213],[-80.9520013,29.1065139],[-80.9504756,29.1082615],[-80.9545456,29.1133395],[-80.9554478,29.114587],[-80.9587376,29.1188195],[-80.9611936,29.1218088],[-80.9615584,29.1248563],[-80.9641776,29.1277875],[-80.9655343,29.1313623],[-80.9662527,29.1353092],[-80.9638094,29.1377524],[-80.9670671,29.143942],[-80.9701619,29.1468739],[-80.9728983,29.1496103],[-80.9729006,29.1496126],[-80.9729029,29.149615],[-80.9732567,29.1499687],[-80.9734195,29.1530635],[-80.9822152,29.1667457],[-80.9866131,29.174727],[-80.9929656,29.185966],[-81.0012726,29.2016028],[-81.0038788,29.2043718],[-81.0074622,29.2117016],[-81.0100683,29.2178912],[-81.013038,29.2193166],[-81.0130922,29.2196565],[-81.0130927,29.2196597],[-81.0130932,29.2196629],[-81.013532,29.2224168],[-81.0153994,29.2261518],[-81.0183874,29.2317542],[-81.0191278,29.2329883],[-81.0191294,29.232991],[-81.0191311,29.2329936],[-81.0217568,29.2373698],[-81.0225573,29.2389394],[-81.0248613,29.2434571],[-81.0253081,29.2445059],[-81.026522,29.2473559],[-81.0274055,29.2485287],[-81.0314598,29.255658],[-81.0330783,29.2597664],[-81.0382129,29.2696776],[-81.0414321,29.2756869],[-81.0426135,29.2782748],[-81.0452015,29.2833382],[-81.0479569,29.2889419],[-81.0479582,29.2889447],[-81.0479596,29.2889475],[-81.0502086,29.2935212],[-81.0554408,29.3040418],[-81.0623044,29.3205822],[-81.0649486,29.3251955],[-81.0673116,29.3333531],[-81.0714748,29.3428048],[-81.072439,29.3450838],[-81.0729375,29.3464616],[-81.0741435,29.3495007],[-81.0745128,29.3510187],[-81.0765382,29.3556882],[-81.0813202,29.3673903],[-81.0837957,29.3739164],[-81.0882402,29.3844932],[-81.0886327,29.3856713],[-81.0897493,29.3881016],[-81.0899463,29.390729],[-81.0936247,29.3971003],[-81.0969089,29.4030119],[-81.0976314,29.4057706],[-81.1001274,29.4086607],[-81.1018352,29.4112224],[-81.1036743,29.4139811],[-81.1043311,29.4170683],[-81.1054478,29.4226514],[-81.1066802,29.4269605],[-81.1084036,29.431256],[-81.1110309,29.4361823],[-81.1122789,29.4394665],[-81.1152347,29.4441301],[-81.1181525,29.4465873],[-81.1215791,29.449418],[-81.1250058,29.4518018],[-81.1258997,29.4531426],[-81.1287304,29.4601449],[-81.132604,29.4696799],[-81.1352857,29.4766822],[-81.1357802,29.4782482],[-81.1357811,29.4782511],[-81.1357821,29.4782541],[-81.1379674,29.4851743],[-81.1403511,29.4933684],[-81.1431818,29.5012646],[-81.1455656,29.5075219],[-81.1486943,29.515716],[-81.151227,29.5230163],[-81.1536107,29.5297206],[-81.1553985,29.5321043],[-81.1576333,29.5334452],[-81.160464,29.5364249],[-81.1622518,29.5402984],[-81.1644866,29.5452149],[-81.1677642,29.5522172],[-81.1695521,29.5559418],[-81.1707439,29.5580276],[-81.1725317,29.5589215],[-81.1759584,29.5604113],[-81.1804279,29.5619012],[-81.1831096,29.563242],[-81.1847484,29.5650298],[-81.18892,29.5753097],[-81.1971141,29.5934858],[-81.2008387,29.6024249],[-81.2026266,29.6098741],[-81.2050103,29.6164294],[-81.2070961,29.619856],[-81.2105227,29.6334136],[-81.2127575,29.6408628],[-81.2142473,29.6463752],[-81.2154392,29.6509938],[-81.2158861,29.657996],[-81.2167801,29.6636574],[-81.2161464,29.6659204],[-81.2157933,29.667441],[-81.2160306,29.6687458],[-81.2170443,29.6706331],[-81.217046,29.6706364],[-81.2178493,29.6715925],[-81.2191541,29.6745974],[-81.2204193,29.6765348],[-81.2208147,29.678235],[-81.2216054,29.6795792],[-81.2220799,29.6817538],[-81.2229893,29.6864589],[-81.2230814,29.6876699],[-81.2235317,29.6894563],[-81.2242033,29.6902398],[-81.2256024,29.6917509],[-81.2274059,29.694895],[-81.2283052,29.6977768],[-81.2307278,29.6996484],[-81.2317025,29.7028319],[-81.2283675,29.7035525],[-81.2273992,29.7037543],[-81.2273986,29.7037544],[-81.2273981,29.7037545],[-81.2267214,29.7038955],[-81.2256024,29.7035594],[-81.2240914,29.7023282],[-81.223456,29.700031],[-81.223108,29.6990928],[-81.2201695,29.6898825],[-81.2166262,29.6805331],[-81.2149132,29.6765845],[-81.2126828,29.6706579],[-81.2126727,29.6706338],[-81.2116508,29.6681983],[-81.2101681,29.6650051],[-81.2084201,29.6613345],[-81.2070881,29.658086],[-81.2057701,29.655053],[-81.2039049,29.6506012],[-81.2031761,29.648859],[-81.2019598,29.6456653],[-81.1990225,29.6385151],[-81.1967557,29.6332076],[-81.1951344,29.629374],[-81.1937785,29.6264178],[-81.1908676,29.620409],[-81.1890903,29.616237],[-81.1878394,29.6133475],[-81.1863959,29.609604],[-81.1850749,29.606278],[-81.1823991,29.5995812],[-81.1807661,29.5956152],[-81.1798746,29.5934715],[-81.1783188,29.58967],[-81.1764186,29.5854682],[-81.1751811,29.582639],[-81.1750985,29.5802227],[-81.174071,29.5778576],[-81.1727779,29.5754697],[-81.1711292,29.5712419],[-81.1693601,29.568998],[-81.1682591,29.567027],[-81.1673681,29.5649405],[-81.1662279,29.5622067],[-81.1650221,29.5593235],[-81.1635744,29.5562112],[-81.1619171,29.553087],[-81.1596371,29.5481355],[-81.1581831,29.545236],[-81.1567681,29.542576],[-81.1555231,29.540249],[-81.1531911,29.535068],[-81.1522918,29.5332487],[-81.1505191,29.5296565],[-81.1477559,29.524572],[-81.1463546,29.5216315],[-81.1453529,29.519545],[-81.1431471,29.515177],[-81.1404051,29.509729],[-81.1381581,29.505329],[-81.1355926,29.5003655],[-81.1341921,29.497509],[-81.1329751,29.4949295],[-81.1319801,29.492774],[-81.1305671,29.4897935],[-81.1283821,29.48538],[-81.1265371,29.481723],[-81.1256653,29.4795738],[-81.1245581,29.477539],[-81.1236731,29.474784],[-81.1134291,29.452604],[-81.1086291,29.441884],[-81.1064505,29.4375944],[-81.1054452,29.4352797],[-81.1038852,29.431945],[-81.1015313,29.4270519],[-81.0995495,29.4229324],[-81.0981495,29.4197324],[-81.0969495,29.4173324],[-81.0942985,29.4114324],[-81.0920485,29.4062324],[-81.0910485,29.4043324],[-81.0886485,29.3991324],[-81.0872485,29.3959324],[-81.0837485,29.3884334],[-81.0811485,29.3828334],[-81.0790485,29.3780834],[-81.0776486,29.3740334],[-81.0706476,29.3594334],[-81.0639476,29.3453344],[-81.0589746,29.3347724],[-80.9977683,29.2120446],[-80.9955156,29.207449],[-80.9870453,29.1906887],[-80.9780343,29.1727569],[-80.9634629,29.1463409],[-80.9577175,29.1361559],[-80.9536261,29.1286695],[-80.9490124,29.1210961],[-80.9445728,29.114219],[-80.9392627,29.1061233],[-80.9322116,29.0965477],[-80.9245387,29.0869801],[-80.9197881,29.081895],[-80.916911,29.0787502],[-80.9185442,29.0787492],[-80.9207249,29.0779473],[-80.9234682,29.0756724]]],[[[-90.0246281,29.2612303],[-90.0266182,29.2608111],[-90.0273657,29.2631854],[-90.0282533,29.2651445],[-90.0247497,29.2659639],[-90.0216255,29.2672561],[-90.0203646,29.2649299],[-90.0218409,29.2627045],[-90.024172,29.2613263],[-90.0246281,29.2612303]]],[[[-83.1620514,29.287341],[-83.1620128,29.2866001],[-83.1623814,29.2868384],[-83.1626347,29.2870022],[-83.1629428,29.2872014],[-83.1639025,29.2878218],[-83.1632014,29.2884769],[-83.1632008,29.2884775],[-83.1632007,29.2884776],[-83.1632002,29.288478],[-83.1621888,29.2884367],[-83.1620136,29.2884296],[-83.1619801,29.2874458],[-83.1620514,29.287341]]],[[[-89.8645139,29.3147763],[-89.860422,29.3135832],[-89.858836,29.3123616],[-89.8598047,29.3093684],[-89.8605126,29.310086],[-89.8617828,29.3113735],[-89.8645139,29.3147763]]],[[[-90.0342325,29.3172121],[-90.0340643,29.3147404],[-90.0369571,29.3133551],[-90.0385684,29.3112731],[-90.040684,29.3124112],[-90.0418442,29.3143111],[-90.0422761,29.3150185],[-90.0391677,29.3149744],[-90.0362063,29.3179779],[-90.0342325,29.3172121]]],[[[-89.9653335,29.2891792],[-89.9654859,29.2874428],[-89.9618987,29.2877087],[-89.963676,29.285497],[-89.9646584,29.2838504],[-89.9674474,29.285302],[-89.9692442,29.281796],[-89.9682889,29.2793727],[-89.9665038,29.2785748],[-89.9651141,29.2774182],[-89.9650217,29.2752269],[-89.9660565,29.2731396],[-89.967966,29.2718416],[-89.9703251,29.2731626],[-89.969328,29.2756187],[-89.9711855,29.2768277],[-89.9746663,29.2773963],[-89.9782375,29.2777681],[-89.9788862,29.2803989],[-89.9825295,29.2793969],[-89.9835606,29.28248],[-89.9857768,29.2832615],[-89.9883864,29.2841569],[-89.9905645,29.2837657],[-89.9922786,29.2848334],[-89.9891801,29.286326],[-89.9848805,29.2856537],[-89.9816305,29.2856577],[-89.9786469,29.2862604],[-89.9762775,29.2883444],[-89.9751554,29.2920485],[-89.9732149,29.2944949],[-89.9705149,29.2924555],[-89.9679465,29.2895362],[-89.9653335,29.2891792]]],[[[-89.9147536,29.2870937],[-89.9157198,29.2855323],[-89.9175917,29.2845702],[-89.9206066,29.2838222],[-89.9244786,29.2816887],[-89.9263153,29.2808157],[-89.9286596,29.2795277],[-89.9331226,29.2774287],[-89.9361374,29.2759381],[-89.9389181,29.2749801],[-89.9429248,29.273347],[-89.9459979,29.2726983],[-89.9473964,29.2757615],[-89.9446747,29.2756545],[-89.9417676,29.2760691],[-89.9423309,29.2788683],[-89.9393105,29.2800502],[-89.9373288,29.2819898],[-89.9356601,29.2832083],[-89.9346067,29.2854636],[-89.9315346,29.2862968],[-89.9282273,29.2858918],[-89.925293,29.2867342],[-89.9219719,29.2867296],[-89.9186759,29.2876215],[-89.9157854,29.28852],[-89.9134621,29.2897067],[-89.9119929,29.2914019],[-89.9115007,29.2936284],[-89.910743,29.2958297],[-89.9087683,29.2965656],[-89.9068652,29.2966617],[-89.9046588,29.2945188],[-89.9065216,29.2916527],[-89.9089216,29.2905697],[-89.9107381,29.2894982],[-89.9128896,29.2882012],[-89.9147536,29.2870937]]],[[[-90.0457628,29.2864333],[-90.0479181,29.2846506],[-90.0483052,29.2888887],[-90.0454579,29.2892587],[-90.0416103,29.2912105],[-90.0404679,29.2883611],[-90.0430755,29.2873393],[-90.045628,29.2865447],[-90.0457628,29.2864333]]],[[[-89.7127884,29.3774678],[-89.702083,29.3660933],[-89.6826795,29.3674315],[-89.6699668,29.3774678],[-89.6498942,29.3774678],[-89.6318289,29.3600715],[-89.6244689,29.3460207],[-89.6318289,29.3393298],[-89.6254347,29.3271273],[-89.6268866,29.3272187],[-89.6291733,29.3261744],[-89.627194,29.3241229],[-89.6300593,29.3226866],[-89.6318958,29.3234066],[-89.6348452,29.3231659],[-89.6356899,29.325598],[-89.6381228,29.3277329],[-89.6409184,29.3275745],[-89.6442439,29.3282025],[-89.6426286,29.3308981],[-89.6453186,29.3300667],[-89.646509,29.3286959],[-89.6485624,29.3272529],[-89.6509317,29.3267282],[-89.6530338,29.3263541],[-89.6559561,29.3244202],[-89.6578068,29.3234874],[-89.6602573,29.323751],[-89.6589371,29.3212262],[-89.660087,29.3189974],[-89.662008,29.3165386],[-89.6644988,29.3159533],[-89.6664676,29.3125477],[-89.6694173,29.3101661],[-89.6708795,29.3083162],[-89.6726265,29.3073897],[-89.671305,29.294501],[-89.6619378,29.2884793],[-89.6639451,29.286472],[-89.677197,29.2903372],[-89.6804423,29.2917203],[-89.6821285,29.2938882],[-89.6824858,29.2943476],[-89.684157,29.2964964],[-89.6813413,29.3025301],[-89.6853558,29.3118973],[-89.6947833,29.3124518],[-89.7054819,29.3107239],[-89.7094429,29.30989],[-89.7153486,29.3021076],[-89.7177411,29.3029597],[-89.7188352,29.3045879],[-89.7219465,29.3049657],[-89.7247486,29.3047167],[-89.7300062,29.3063159],[-89.7314083,29.3066747],[-89.7335624,29.3073157],[-89.7374817,29.3076918],[-89.7388747,29.3066568],[-89.7553144,29.3092631],[-89.7789822,29.3122796],[-89.7816601,29.3137077],[-89.7831981,29.3155021],[-89.7843517,29.315374],[-89.7864024,29.3133232],[-89.789863,29.3133232],[-89.8005012,29.3134514],[-89.8104986,29.3142204],[-89.81601,29.3146049],[-89.8197269,29.3160148],[-89.8190861,29.316912],[-89.8162663,29.3171684],[-89.8142156,29.3179374],[-89.812981,29.3193928],[-89.8105932,29.3203101],[-89.8066252,29.318923],[-89.8046632,29.3206414],[-89.8020272,29.3211465],[-89.8004096,29.3230892],[-89.7971018,29.3248825],[-89.7948016,29.3259127],[-89.7930251,29.3270497],[-89.7897086,29.3275646],[-89.7882529,29.3288097],[-89.7842102,29.3283161],[-89.7820311,29.3299114],[-89.7795274,29.3334704],[-89.7817611,29.3339488],[-89.777583,29.3360378],[-89.7649771,29.3386608],[-89.7569481,29.3473589],[-89.7455736,29.3339771],[-89.7362064,29.3339771],[-89.7362064,29.3446825],[-89.74418,29.3526562],[-89.735382,29.3658646],[-89.7127884,29.3774678]]],[[[-89.8321551,29.3268737],[-89.8298524,29.3261403],[-89.8276735,29.3261403],[-89.8263918,29.3261403],[-89.8254946,29.3246023],[-89.8254946,29.3231924],[-89.8283144,29.3220389],[-89.8321595,29.3217825],[-89.8351075,29.3216544],[-89.8358765,29.3203726],[-89.8358765,29.3192191],[-89.8374875,29.3183175],[-89.8374798,29.3172883],[-89.8406188,29.3174247],[-89.8430541,29.3188346],[-89.8432456,29.3206291],[-89.8388244,29.3248586],[-89.8338258,29.3260122],[-89.8321551,29.3268737]]],[[[-89.8645139,29.3147763],[-89.8666093,29.313498],[-89.8716396,29.3152601],[-89.8737477,29.3157542],[-89.8737476,29.3176471],[-89.876648,29.317783],[-89.8762132,29.3151197],[-89.8771656,29.3125757],[-89.8767875,29.3093827],[-89.8767606,29.3091551],[-89.8760666,29.3078143],[-89.8747764,29.3076196],[-89.8724694,29.3090295],[-89.8710595,29.3096704],[-89.8701623,29.3106957],[-89.8673425,29.3113366],[-89.8652918,29.3112084],[-89.8631129,29.3113366],[-89.8627284,29.3104394],[-89.8636256,29.309414],[-89.8658045,29.308645],[-89.8684961,29.3085168],[-89.8700341,29.3068506],[-89.8711997,29.3062255],[-89.8772067,29.3046826],[-89.8816636,29.304753],[-89.8836203,29.3045435],[-89.8858396,29.3061155],[-89.8859273,29.3060816],[-89.890926,29.3083886],[-89.8988726,29.3122338],[-89.903615,29.3142845],[-89.9025896,29.3147972],[-89.8983599,29.3156944],[-89.8972064,29.3154381],[-89.8931049,29.3141563],[-89.8881063,29.3114647],[-89.8831076,29.3077478],[-89.8814413,29.3074914],[-89.8789878,29.3093796],[-89.8787554,29.3095584],[-89.8797405,29.3120157],[-89.8835262,29.3135863],[-89.8843174,29.3164841],[-89.8879182,29.3165155],[-89.8900596,29.3175934],[-89.8923956,29.3187637],[-89.8952548,29.3176423],[-89.8979946,29.3168803],[-89.9005819,29.3162954],[-89.9032079,29.3158461],[-89.9049814,29.3155914],[-89.9061411,29.3140712],[-89.9088513,29.3137275],[-89.9071782,29.3174543],[-89.9041916,29.3191657],[-89.9006914,29.3197795],[-89.8986376,29.3218476],[-89.8964226,29.3224972],[-89.8942332,29.3236668],[-89.8914459,29.3238304],[-89.8900784,29.3270927],[-89.8871381,29.3254595],[-89.8838617,29.3229202],[-89.882152,29.3215905],[-89.8802163,29.3210856],[-89.8774163,29.3212773],[-89.8743575,29.321115],[-89.8725272,29.3238857],[-89.8721228,29.326311],[-89.8695906,29.3241262],[-89.8685276,29.3207327],[-89.8664197,29.3186028],[-89.8696846,29.3172302],[-89.8671616,29.3159711],[-89.8645139,29.3147763]]],[[[-89.9740018,29.3282346],[-89.9729809,29.3256741],[-89.9707105,29.3238617],[-89.9693715,29.3221625],[-89.9690963,29.3203713],[-89.9698274,29.3158241],[-89.9694316,29.3119451],[-89.9696749,29.3094375],[-89.9710205,29.3062765],[-89.9703095,29.3040129],[-89.9728831,29.3012732],[-89.9760253,29.3024352],[-89.9786981,29.3054894],[-89.9788075,29.3086295],[-89.980967,29.3098816],[-89.9801819,29.3125882],[-89.9789507,29.3143873],[-89.981418,29.3151981],[-89.9833975,29.3153353],[-89.9835835,29.3174598],[-89.9846134,29.3192064],[-89.9832362,29.3208],[-89.9820575,29.3187818],[-89.9811132,29.3171451],[-89.9786527,29.3181214],[-89.9790143,29.320863],[-89.9792254,29.3235036],[-89.9777026,29.3248109],[-89.9764282,29.3274419],[-89.9792417,29.3273976],[-89.9768709,29.3309468],[-89.9740018,29.3282346]]],[[[-89.8975962,29.3263289],[-89.9003125,29.3250021],[-89.8990812,29.3283596],[-89.8978016,29.3315837],[-89.8961962,29.3338767],[-89.8955217,29.3368461],[-89.8933706,29.3359664],[-89.893758,29.3334907],[-89.8947217,29.3306383],[-89.8942581,29.3290232],[-89.896072,29.3289083],[-89.8975962,29.3263289]]],[[[-90.0515488,29.3243557],[-90.0520023,29.3269667],[-90.049454,29.3293225],[-90.0451091,29.3288871],[-90.0425309,29.3290227],[-90.0427252,29.3314489],[-90.0429125,29.3332517],[-90.0421805,29.3349732],[-90.043539,29.33724],[-90.042127,29.3388745],[-90.0396828,29.3404084],[-90.0377269,29.3399994],[-90.0370193,29.3397013],[-90.0355073,29.3390643],[-90.0348813,29.3374182],[-90.0363845,29.3353862],[-90.0375018,29.3341129],[-90.0381241,29.3334036],[-90.0363187,29.3312999],[-90.0368035,29.3300594],[-90.0376846,29.3278051],[-90.0359893,29.3256585],[-90.0363087,29.3252431],[-90.0375105,29.3236802],[-90.0417804,29.3233832],[-90.0447118,29.322952],[-90.0475405,29.3245361],[-90.0515488,29.3243557]]],[[[-89.8321551,29.3268737],[-89.8348038,29.3273998],[-89.8332858,29.330794],[-89.8340277,29.3332829],[-89.8359767,29.3358302],[-89.8383989,29.3362229],[-89.8393114,29.3388967],[-89.8406066,29.3411517],[-89.8406456,29.3436655],[-89.8409286,29.3455027],[-89.8397414,29.3471698],[-89.8389484,29.348657],[-89.8383687,29.347924],[-89.8318858,29.3446825],[-89.8288442,29.3462033],[-89.8251949,29.348028],[-89.8251949,29.3553879],[-89.8234304,29.3588769],[-89.8216094,29.3625589],[-89.8212112,29.362656],[-89.8188502,29.3618084],[-89.8180324,29.3615149],[-89.8045394,29.3566422],[-89.7991005,29.3547188],[-89.7989796,29.3512128],[-89.798589,29.3398913],[-89.8002407,29.3408642],[-89.8018129,29.3400536],[-89.8044422,29.3403119],[-89.8066806,29.3382014],[-89.8085401,29.3376315],[-89.8091371,29.340219],[-89.8122949,29.338111],[-89.8160999,29.3362231],[-89.8177891,29.3339177],[-89.8185816,29.3363253],[-89.8182357,29.3405654],[-89.8199369,29.3383029],[-89.8204922,29.3362234],[-89.8212766,29.3341656],[-89.8231142,29.3319072],[-89.8246251,29.3309517],[-89.827245,29.3304918],[-89.8287537,29.3275991],[-89.8321551,29.3268737]]],[[[-94.4906176,29.5260368],[-94.4931143,29.5256635],[-94.4953668,29.5264893],[-94.4917893,29.5280758],[-94.4885363,29.5297206],[-94.4877339,29.532469],[-94.4864082,29.5362768],[-94.4842703,29.5383798],[-94.481871,29.5406272],[-94.4789278,29.5424478],[-94.4770653,29.5440163],[-94.4757879,29.5456826],[-94.4737581,29.5476279],[-94.4734221,29.5459073],[-94.4879177,29.527009],[-94.4906176,29.5260368]]],[[[-89.0517272,29.5603985],[-89.0507732,29.5574001],[-89.0515909,29.554947],[-89.0540441,29.5531752],[-89.0555547,29.5539586],[-89.056058,29.5550256],[-89.0528175,29.5565824],[-89.0543166,29.5580816],[-89.0555071,29.5580278],[-89.0581327,29.557809],[-89.0583111,29.5590953],[-89.0560086,29.5601691],[-89.0551172,29.5605849],[-89.0532263,29.5608073],[-89.052121,29.5604997],[-89.0517272,29.5603985]]],[[[-89.6644839,29.5660361],[-89.6646643,29.5645215],[-89.668369,29.5651681],[-89.66656,29.5676969],[-89.6662646,29.5696619],[-89.6639287,29.5686626],[-89.6626155,29.5680083],[-89.6637161,29.567077],[-89.6644839,29.5660361]]],[[[-89.6747604,29.5664513],[-89.6752794,29.5658285],[-89.6779267,29.5669086],[-89.6795328,29.568347],[-89.6791945,29.5688824],[-89.6781832,29.5691756],[-89.676954,29.5684017],[-89.6766289,29.5682754],[-89.6747604,29.5664513]]],[[[-89.0785757,29.532187],[-89.0798023,29.5301427],[-89.0827098,29.529961],[-89.0831943,29.5294765],[-89.0841635,29.529325],[-89.0866167,29.5304153],[-89.0863554,29.5319182],[-89.0842998,29.5313693],[-89.0828006,29.5319145],[-89.0840272,29.5339588],[-89.0870229,29.5339982],[-89.0879795,29.5360031],[-89.0853901,29.5385925],[-89.0821192,29.5387288],[-89.0804952,29.5369719],[-89.0791209,29.5364119],[-89.0785757,29.532187]]],[[[-89.6241707,29.5323938],[-89.6252977,29.5311201],[-89.6272265,29.5318958],[-89.6271534,29.5335148],[-89.6262338,29.5354801],[-89.6247455,29.536228],[-89.6224935,29.5373596],[-89.6210521,29.5359182],[-89.6215994,29.5352997],[-89.6241707,29.5323938]]],[[[-89.6483591,29.5343267],[-89.6507816,29.5343167],[-89.6527906,29.5345837],[-89.6548479,29.536156],[-89.6524762,29.5380518],[-89.649379,29.537522],[-89.6474821,29.5366862],[-89.6454276,29.5345773],[-89.6483591,29.5343267]]],[[[-89.5693146,29.5491681],[-89.5676078,29.547497],[-89.5648661,29.5479216],[-89.5629662,29.5458525],[-89.5637215,29.5415773],[-89.5636971,29.5385788],[-89.5654792,29.5395073],[-89.5677481,29.53907],[-89.5682823,29.540776],[-89.5696219,29.5431169],[-89.5718876,29.5436585],[-89.5737188,29.5418691],[-89.5769597,29.5414156],[-89.5745448,29.5392418],[-89.5727133,29.5385414],[-89.5752426,29.5357017],[-89.5768936,29.534747],[-89.5741529,29.5319968],[-89.576433,29.5309257],[-89.5783656,29.530338],[-89.5803181,29.5322137],[-89.5820237,29.5337373],[-89.5846919,29.5326475],[-89.5839896,29.5303627],[-89.5844968,29.5278797],[-89.5852806,29.5258802],[-89.5873431,29.5265607],[-89.5888489,29.5269967],[-89.5908795,29.5256426],[-89.5913258,29.525345],[-89.5882005,29.524623],[-89.5898301,29.5234107],[-89.5910031,29.521457],[-89.5896462,29.5191322],[-89.592917,29.5190115],[-89.5941587,29.5172679],[-89.5933038,29.5141092],[-89.5955574,29.5143007],[-89.5967093,29.5112153],[-89.5970286,29.5094242],[-89.599968,29.5068315],[-89.6034446,29.5086817],[-89.6057112,29.510775],[-89.6031664,29.5118527],[-89.5998831,29.5128902],[-89.5968951,29.5157372],[-89.5977889,29.5207767],[-89.5985662,29.5234581],[-89.6011242,29.5229509],[-89.6004088,29.5262569],[-89.60032,29.5266675],[-89.6033881,29.5267973],[-89.6040923,29.5287442],[-89.6063949,29.5296628],[-89.6086188,29.5293255],[-89.6086708,29.5320869],[-89.6016209,29.5310798],[-89.5999424,29.5341012],[-89.6043868,29.5372384],[-89.604157,29.539983],[-89.601108,29.5417689],[-89.5969502,29.5436197],[-89.5964464,29.5461593],[-89.5948046,29.5473227],[-89.592882,29.5480159],[-89.5919436,29.5497297],[-89.5907178,29.551234],[-89.5889421,29.5492961],[-89.5852961,29.546544],[-89.5811006,29.5470202],[-89.5791757,29.5476126],[-89.5770615,29.5482135],[-89.5762471,29.5512443],[-89.5768043,29.5541153],[-89.5742842,29.5570744],[-89.5736686,29.5538863],[-89.5723103,29.5506915],[-89.5693146,29.5491681]]],[[[-89.6137716,29.5367482],[-89.6138412,29.5312016],[-89.6151853,29.5314277],[-89.6174115,29.533915],[-89.6170696,29.536199],[-89.6137716,29.5367482]]],[[[-89.5512063,29.5308247],[-89.5529766,29.5306052],[-89.5546249,29.5307891],[-89.5565176,29.5329113],[-89.5567638,29.5358797],[-89.5545101,29.5377014],[-89.5538896,29.5348803],[-89.5512063,29.5308247]]],[[[-89.5301569,29.5474507],[-89.5264507,29.5455637],[-89.5287302,29.5447577],[-89.5302105,29.545788],[-89.5324495,29.544534],[-89.5337977,29.5424313],[-89.535186,29.539039],[-89.5377948,29.5393711],[-89.5367419,29.5420833],[-89.5363994,29.5447042],[-89.533183,29.5462682],[-89.5301569,29.5474507]]],[[[-89.680781,29.5566938],[-89.6800211,29.5540561],[-89.681819,29.5540561],[-89.6825884,29.555323],[-89.68332,29.5542836],[-89.686075,29.5539949],[-89.6858674,29.5564862],[-89.6868016,29.558147],[-89.6849187,29.5585955],[-89.6843438,29.5589476],[-89.6825882,29.5570729],[-89.680781,29.5566938]]],[[[-89.661266,29.5534759],[-89.6587497,29.5526434],[-89.6578928,29.5526953],[-89.6578457,29.5523545],[-89.6565949,29.5524379],[-89.6575825,29.5497384],[-89.657717,29.5475481],[-89.6595263,29.5468229],[-89.6623582,29.5482465],[-89.6634116,29.5490569],[-89.6650117,29.5498837],[-89.666041,29.5499466],[-89.6659372,29.5527493],[-89.6643413,29.5527493],[-89.6640397,29.5535546],[-89.6637265,29.5534528],[-89.6638611,29.5540987],[-89.6657295,29.5543063],[-89.6632287,29.5559761],[-89.6613698,29.5543063],[-89.661266,29.5534759]]],[[[-89.6407824,29.5544287],[-89.6423065,29.5531146],[-89.6439647,29.5545159],[-89.6442295,29.556795],[-89.6448608,29.5573137],[-89.6444499,29.5582508],[-89.6404619,29.5591747],[-89.6406775,29.55796],[-89.6386143,29.5551839],[-89.6407824,29.5544287]]],[[[-89.630002,29.5681309],[-89.634461,29.566142],[-89.6370599,29.5668772],[-89.6379656,29.567148],[-89.639704,29.5657479],[-89.6431005,29.5636486],[-89.6447613,29.5652056],[-89.6397788,29.5676969],[-89.6385331,29.5690464],[-89.6375621,29.5693112],[-89.6306441,29.5694616],[-89.627011,29.570811],[-89.6264857,29.571674],[-89.6235387,29.5709086],[-89.6268023,29.570048],[-89.630002,29.5681309]]],[[[-89.5662144,29.5757069],[-89.5676608,29.5731299],[-89.5695614,29.5704577],[-89.5705846,29.5743642],[-89.5728433,29.574518],[-89.5750504,29.5744585],[-89.5776257,29.5766243],[-89.5796486,29.5776858],[-89.581904,29.5794777],[-89.57831,29.5803813],[-89.5746116,29.5797077],[-89.5714728,29.5794059],[-89.5725987,29.5772065],[-89.5691912,29.5767403],[-89.5662144,29.5757069]]],[[[-89.6944209,29.5793611],[-89.6943836,29.5786421],[-89.6949431,29.5787119],[-89.6972549,29.5790003],[-89.6987831,29.5792336],[-89.7001892,29.5794488],[-89.7013008,29.5814555],[-89.7017641,29.582292],[-89.7034418,29.5830693],[-89.7046866,29.5836077],[-89.7023137,29.5843374],[-89.7016826,29.5840885],[-89.6980687,29.5824586],[-89.6962673,29.5819763],[-89.694477,29.5804441],[-89.6944209,29.5793611]]],[[[-89.6803752,29.5745236],[-89.6805033,29.5742457],[-89.6854278,29.5761125],[-89.6862237,29.5765231],[-89.6893203,29.57747],[-89.6904776,29.5778385],[-89.6887875,29.5798905],[-89.6876357,29.5800699],[-89.6852768,29.5820486],[-89.6855675,29.5830852],[-89.6856957,29.5835425],[-89.6831446,29.5847118],[-89.681463,29.5841163],[-89.6811142,29.5839193],[-89.6779396,29.5836819],[-89.6738337,29.5826718],[-89.6706672,29.5816839],[-89.6714083,29.5801532],[-89.671718,29.5781215],[-89.67359,29.5776844],[-89.6750724,29.5773383],[-89.6803752,29.5745236]]],[[[-89.5486004,29.7037409],[-89.5473264,29.7028916],[-89.5458164,29.7028292],[-89.5459514,29.7021546],[-89.5475704,29.7020197],[-89.5486062,29.7007733],[-89.5487172,29.6994562],[-89.5494469,29.6992449],[-89.5499549,29.6997359],[-89.5510109,29.6996586],[-89.5509499,29.7008921],[-89.5505636,29.7018873],[-89.5501893,29.7020937],[-89.5497328,29.7021838],[-89.549864,29.703234],[-89.5492569,29.7028967],[-89.5486004,29.7037409]]],[[[-89.0072003,29.6185736],[-89.0107913,29.6185322],[-89.0086649,29.6203514],[-89.0061014,29.6226991],[-89.0009634,29.625676],[-88.9978348,29.6267986],[-88.9925383,29.6283788],[-88.9963478,29.6249046],[-88.9985495,29.6234823],[-89.0009408,29.6219426],[-89.0032098,29.6206256],[-89.0072003,29.6185736]]],[[[-85.1141586,29.6885608],[-85.1122034,29.68792],[-85.1078079,29.6875162],[-85.1049297,29.6868527],[-85.1022304,29.6856545],[-85.1000046,29.6851668],[-85.0972049,29.6858165],[-85.0943569,29.684993],[-85.0925394,29.6837273],[-85.0907829,29.6820678],[-85.0886224,29.6812015],[-85.0864704,29.681099],[-85.0841609,29.6792655],[-85.0814449,29.6768888],[-85.0805122,29.6738531],[-85.0761369,29.6740915],[-85.0737898,29.6737055],[-85.0766164,29.671544],[-85.0786759,29.6685885],[-85.0819484,29.66495],[-85.0841969,29.660968],[-85.0865725,29.6586432],[-85.0913845,29.6486502],[-85.0933349,29.6448695],[-85.0949016,29.641186],[-85.0963316,29.6356268],[-85.0970956,29.6333998],[-85.1043729,29.6316445],[-85.1080449,29.6309105],[-85.1104329,29.6307495],[-85.1140519,29.6298315],[-85.1165879,29.6293545],[-85.1195589,29.6289005],[-85.1216569,29.6284535],[-85.1242664,29.628394],[-85.1269029,29.6287705],[-85.1292369,29.6292755],[-85.1373919,29.6325785],[-85.1405909,29.6341375],[-85.1427419,29.6353985],[-85.1442586,29.6378595],[-85.1492589,29.639915],[-85.1516059,29.6419325],[-85.1565099,29.6460355],[-85.1585549,29.647434],[-85.1625159,29.6502765],[-85.1648894,29.651857],[-85.1706079,29.655364],[-85.1732969,29.6568535],[-85.1764439,29.6589625],[-85.1815219,29.6621595],[-85.1845259,29.6639815],[-85.1883559,29.6657005],[-85.1916754,29.6674995],[-85.1951779,29.6692525],[-85.2047559,29.672804],[-85.2109229,29.6748195],[-85.2151219,29.6759185],[-85.2202659,29.6770175],[-85.222361,29.6787042],[-85.2184374,29.6806705],[-85.2146779,29.6812575],[-85.2126434,29.681028],[-85.2075462,29.6807386],[-85.2074209,29.6807315],[-85.2052559,29.6813655],[-85.2024919,29.6822472],[-85.1981574,29.682542],[-85.1943524,29.682657],[-85.1919839,29.6830813],[-85.1887759,29.6828865],[-85.1856989,29.6829378],[-85.1797749,29.6827715],[-85.1768619,29.6826565],[-85.1732139,29.682404],[-85.1677465,29.6822428],[-85.1625729,29.681371],[-85.1597259,29.6809015],[-85.1571499,29.6798435],[-85.1547669,29.6790785],[-85.1521565,29.6763888],[-85.151397,29.6742615],[-85.1490312,29.6735238],[-85.1463466,29.672654],[-85.1434235,29.6721225],[-85.1410469,29.6714665],[-85.1389125,29.6711755],[-85.1348734,29.6709681],[-85.1317319,29.6705225],[-85.1286359,29.670264],[-85.1254829,29.6697262],[-85.1231889,29.669367],[-85.1206304,29.6691845],[-85.1165899,29.6688195],[-85.1131787,29.6686145],[-85.1099291,29.6685443],[-85.1057481,29.669941],[-85.1075124,29.6709078],[-85.1118159,29.671445],[-85.1138619,29.6713295],[-85.1163625,29.6719442],[-85.1195561,29.6718598],[-85.1229149,29.6725175],[-85.1253154,29.6725605],[-85.1273224,29.672927],[-85.1299255,29.6735558],[-85.1324409,29.6747781],[-85.1349891,29.6750788],[-85.1373179,29.6753605],[-85.1397627,29.6754435],[-85.1422943,29.6752212],[-85.1448529,29.6755006],[-85.1484896,29.6775566],[-85.1450849,29.6777005],[-85.1425868,29.6788562],[-85.1384799,29.6792012],[-85.13768,29.6811286],[-85.1398056,29.6818548],[-85.1426579,29.682338],[-85.1380799,29.6848423],[-85.1356505,29.6865715],[-85.1326929,29.6866085],[-85.1293339,29.6873865],[-85.1270239,29.6877525],[-85.1239141,29.6883873],[-85.120737,29.688371],[-85.1183579,29.6883295],[-85.1162584,29.6885715],[-85.1141586,29.6885608]]],[[[-94.9424721,29.6202302],[-94.9428047,29.613911],[-94.9449665,29.6130795],[-94.946962,29.6130795],[-94.9495387,29.6164077],[-94.9501172,29.6155348],[-94.9517846,29.6180683],[-94.9539464,29.6213942],[-94.9539464,29.6245538],[-94.9541586,29.6271457],[-94.9489575,29.6293764],[-94.9459642,29.6288775],[-94.9424721,29.6202302]]],[[[-94.9561082,29.6358618],[-94.9572723,29.6345315],[-94.9577711,29.6371922],[-94.9587689,29.6400192],[-94.9597667,29.6413495],[-94.9600835,29.6418472],[-94.9597667,29.6451743],[-94.9630113,29.6494435],[-94.9654207,29.6529902],[-94.9669173,29.6586442],[-94.9673536,29.6654648],[-94.9700769,29.6687881],[-94.9729039,29.6732781],[-94.974068,29.6756062],[-94.9760629,29.6782675],[-94.9755717,29.6785322],[-94.9772276,29.6800961],[-94.9783916,29.6817591],[-94.9789067,29.6840822],[-94.9766793,29.6852378],[-94.9744385,29.6861768],[-94.9722782,29.6845283],[-94.9698606,29.6825141],[-94.9701712,29.6814428],[-94.9712252,29.6808748],[-94.9703596,29.6792796],[-94.9679151,29.6747747],[-94.9634252,29.6657948],[-94.96276,29.6613049],[-94.9541127,29.6498306],[-94.951452,29.645008],[-94.9529486,29.6426799],[-94.9561082,29.641017],[-94.9561082,29.6358618]]],[[[-89.4415024,29.6606848],[-89.4416965,29.6589139],[-89.4431615,29.6571255],[-89.4406352,29.6561484],[-89.4419627,29.6536875],[-89.4449016,29.6548087],[-89.4457518,29.6524606],[-89.4475537,29.6530949],[-89.4483806,29.6546853],[-89.4504168,29.6558256],[-89.4521733,29.65633],[-89.4533184,29.6577284],[-89.4525244,29.6601058],[-89.4495208,29.6599304],[-89.4463638,29.6595638],[-89.4440382,29.6595343],[-89.4415024,29.6606848]]],[[[-89.5957422,29.6426849],[-89.5997771,29.6419452],[-89.6045144,29.6421922],[-89.6045144,29.643832],[-89.6005333,29.6439526],[-89.5975144,29.6446239],[-89.5963456,29.6447788],[-89.5949889,29.6433435],[-89.5946705,29.6427441],[-89.5957422,29.6426849]]],[[[-89.650823,29.6675594],[-89.6503411,29.6644621],[-89.6509219,29.6622199],[-89.6533209,29.6607102],[-89.6568746,29.6634702],[-89.6584618,29.6617311],[-89.6599185,29.6634082],[-89.660141,29.6656052],[-89.6578582,29.6662547],[-89.6549374,29.6657825],[-89.6555985,29.6696933],[-89.6534528,29.6699183],[-89.651419,29.6700692],[-89.650823,29.6675594]]],[[[-89.5553861,29.6730186],[-89.5565036,29.6696916],[-89.5582904,29.6719537],[-89.5587697,29.6738748],[-89.5573244,29.676315],[-89.5537521,29.6774199],[-89.5520783,29.6748162],[-89.5553861,29.6730186]]],[[[-89.4591905,29.6821269],[-89.4565858,29.6815594],[-89.4541926,29.6823402],[-89.451351,29.6829073],[-89.4523198,29.6811843],[-89.4528964,29.6791726],[-89.4503892,29.6773945],[-89.4475819,29.6761655],[-89.4459573,29.6737116],[-89.443676,29.6724752],[-89.4438411,29.6708038],[-89.4454187,29.6713273],[-89.4476018,29.6710744],[-89.4498919,29.6694702],[-89.4504372,29.6650914],[-89.4535043,29.6674135],[-89.4556382,29.6650826],[-89.456574,29.663381],[-89.4582846,29.6642995],[-89.4602724,29.6661444],[-89.4629521,29.6642699],[-89.4613565,29.668673],[-89.4619947,29.6717158],[-89.4610526,29.6752784],[-89.4601237,29.677812],[-89.4588475,29.6796353],[-89.4609137,29.6799124],[-89.4622052,29.6816499],[-89.4626963,29.6841002],[-89.4606987,29.6839543],[-89.4591905,29.6821269]]],[[[-89.5371616,29.6600688],[-89.5400081,29.658008],[-89.543061,29.6590378],[-89.5440855,29.6614849],[-89.5456428,29.6622184],[-89.5432375,29.6648666],[-89.5417731,29.6610416],[-89.5394795,29.6608632],[-89.5371616,29.6600688]]],[[[-89.5449208,29.6743616],[-89.5420718,29.6747691],[-89.5396949,29.6753017],[-89.5370744,29.677384],[-89.5342365,29.6767326],[-89.5313368,29.6761813],[-89.5311515,29.6738855],[-89.5335392,29.6725916],[-89.5354426,29.6704013],[-89.5353821,29.6673924],[-89.5332871,29.6658199],[-89.53628,29.6649353],[-89.5380585,29.6654703],[-89.5395676,29.6663762],[-89.5395224,29.6684719],[-89.5398363,29.6704295],[-89.5418034,29.6714728],[-89.5449208,29.6743616]]],[[[-89.5449208,29.6743616],[-89.5476946,29.6748349],[-89.5490733,29.6769395],[-89.54798,29.6787368],[-89.5459664,29.6798355],[-89.5477723,29.6813929],[-89.5435361,29.6811861],[-89.5412288,29.6782766],[-89.5441918,29.677954],[-89.5449208,29.6743616]]],[[[-94.9757481,29.6885035],[-94.9793001,29.6877841],[-94.9821747,29.6897094],[-94.9851927,29.6922959],[-94.9881714,29.6950158],[-94.9912101,29.6968836],[-94.9883688,29.6981164],[-94.9851667,29.6982957],[-94.9825078,29.6975812],[-94.9799087,29.6961878],[-94.9765494,29.6945142],[-94.9739472,29.6909908],[-94.9757481,29.6885035]]],[[[-89.3921469,29.6886588],[-89.3946574,29.6885361],[-89.3973623,29.6900074],[-89.3994055,29.6917995],[-89.3969811,29.6940339],[-89.3951991,29.6932956],[-89.3933779,29.6911014],[-89.3921469,29.6886588]]],[[[-91.8943793,29.6340181],[-91.891485,29.6331147],[-91.889075,29.63335],[-91.889185,29.6315437],[-91.8896221,29.6294097],[-91.887245,29.6294227],[-91.8851982,29.6300949],[-91.8807486,29.6299929],[-91.8780163,29.6291601],[-91.8765182,29.6277176],[-91.8755042,29.6301507],[-91.8729914,29.6319603],[-91.8688191,29.6315768],[-91.8657465,29.631876],[-91.862596,29.6331247],[-91.862827,29.6298325],[-91.8624359,29.6273127],[-91.8600045,29.6257682],[-91.8573465,29.6250567],[-91.8523846,29.6252206],[-91.8498086,29.6259734],[-91.850456,29.6289702],[-91.8501832,29.6312901],[-91.8477266,29.6307294],[-91.844609,29.6303195],[-91.8410046,29.628976],[-91.8392205,29.626079],[-91.8400528,29.6228853],[-91.8407264,29.6195685],[-91.8378407,29.6159744],[-91.835173,29.6143527],[-91.8325284,29.6127967],[-91.8299495,29.6125297],[-91.8285694,29.6122683],[-91.8283295,29.6103637],[-91.8264812,29.6082713],[-91.8240603,29.607052],[-91.8228551,29.6051584],[-91.8190727,29.6047831],[-91.8156532,29.6039167],[-91.8113718,29.6027772],[-91.8087768,29.6019865],[-91.806749,29.6018372],[-91.803777,29.6025284],[-91.8037247,29.5998202],[-91.8047228,29.5958523],[-91.8047485,29.5925234],[-91.8028147,29.5903058],[-91.799683,29.5896307],[-91.796733,29.5901177],[-91.7950285,29.5914872],[-91.793402,29.5920367],[-91.790382,29.5924107],[-91.7885637,29.5927637],[-91.7855923,29.5944456],[-91.7835404,29.5967641],[-91.78118,29.5956442],[-91.781141,29.5939977],[-91.7821621,29.5919751],[-91.7795953,29.5897135],[-91.776562,29.5890151],[-91.7749472,29.5901558],[-91.7727713,29.5908606],[-91.77207,29.5879919],[-91.7717126,29.5854047],[-91.7745844,29.5819749],[-91.7748265,29.5793687],[-91.7748232,29.5766686],[-91.7747734,29.5739176],[-91.7746358,29.5712993],[-91.7747918,29.5682702],[-91.7718378,29.5663245],[-91.768135,29.5680274],[-91.7681053,29.5705487],[-91.769848,29.5724807],[-91.7712161,29.5752758],[-91.768549,29.5750012],[-91.76601,29.5752864],[-91.7626187,29.5757467],[-91.7591442,29.5745249],[-91.755122,29.5752103],[-91.752044,29.5754057],[-91.749755,29.5741627],[-91.7476251,29.5740213],[-91.7470283,29.5739817],[-91.7453996,29.5734784],[-91.743949,29.5730302],[-91.7410573,29.575159],[-91.7378987,29.5769941],[-91.7359466,29.5788392],[-91.7341074,29.5811437],[-91.733453,29.5837032],[-91.7316251,29.5810907],[-91.7323869,29.5788865],[-91.7342017,29.5765751],[-91.7358782,29.5734704],[-91.7370566,29.570033],[-91.7368586,29.5675062],[-91.7362041,29.5656697],[-91.7358803,29.563564],[-91.7338077,29.5631387],[-91.7306041,29.5630385],[-91.7273273,29.5633317],[-91.7256815,29.5648691],[-91.7238944,29.5673518],[-91.7208041,29.5662369],[-91.7173574,29.5658151],[-91.7155233,29.5664673],[-91.7139061,29.5690631],[-91.7105638,29.5695635],[-91.7074666,29.5695897],[-91.7046881,29.5711105],[-91.7046149,29.5673254],[-91.7075512,29.5664413],[-91.7079215,29.5634646],[-91.7077479,29.5601057],[-91.7097393,29.5584297],[-91.7113516,29.5568159],[-91.7126246,29.5536222],[-91.7152741,29.5518417],[-91.7183186,29.5499887],[-91.7200611,29.5489682],[-91.7229701,29.5470877],[-91.7250709,29.5454214],[-91.7291808,29.5427942],[-91.7333011,29.5400085],[-91.7364651,29.5384667],[-91.7394791,29.5376177],[-91.7418246,29.537204],[-91.7439341,29.5362407],[-91.7465676,29.5353567],[-91.7481786,29.5343592],[-91.7503831,29.5326092],[-91.7522676,29.5310562],[-91.754064,29.5290397],[-91.755519,29.5276422],[-91.7584368,29.5251762],[-91.7608792,29.5265789],[-91.763696,29.5276687],[-91.7655047,29.5263382],[-91.7635792,29.5251741],[-91.7643293,29.5217605],[-91.7659275,29.5195672],[-91.767451,29.5167093],[-91.7687676,29.5139685],[-91.769394,29.5119547],[-91.7706875,29.5092667],[-91.771942,29.5042197],[-91.772157,29.5007162],[-91.7719789,29.4975846],[-91.7702679,29.4943452],[-91.7686095,29.4926712],[-91.7661177,29.4899836],[-91.7709753,29.4886725],[-91.7748209,29.4866032],[-91.779263,29.4846407],[-91.7821364,29.4830831],[-91.7848694,29.4826941],[-91.7881598,29.4818053],[-91.790082,29.4824427],[-91.7923177,29.4830317],[-91.7952898,29.4848462],[-91.8017455,29.4869372],[-91.806612,29.4859747],[-91.808525,29.4851727],[-91.8111447,29.4837214],[-91.8115973,29.4833897],[-91.8165569,29.479916],[-91.8216836,29.4755398],[-91.826441,29.477001],[-91.8330635,29.478525],[-91.83438,29.4787897],[-91.836503,29.4787318],[-91.839057,29.4787543],[-91.841375,29.4782842],[-91.843785,29.4786618],[-91.8464221,29.4795373],[-91.8486295,29.4826948],[-91.849367,29.4857783],[-91.8497605,29.4883265],[-91.8513292,29.4907312],[-91.8526628,29.4945011],[-91.855207,29.4978205],[-91.8589035,29.5004677],[-91.8633008,29.5025937],[-91.865568,29.5029367],[-91.8674194,29.5029127],[-91.8691484,29.5028737],[-91.8716005,29.502676],[-91.875628,29.5029945],[-91.8798369,29.5022904],[-91.8832217,29.5013754],[-91.8854576,29.5036052],[-91.8876343,29.5063682],[-91.890188,29.5080257],[-91.8931485,29.5092982],[-91.8969778,29.5112441],[-91.8991735,29.5130942],[-91.9010865,29.5142292],[-91.9036015,29.5163502],[-91.9066405,29.51807],[-91.91128,29.5182087],[-91.913324,29.5183927],[-91.9165734,29.5191171],[-91.91956,29.5210297],[-91.921578,29.5222217],[-91.9236223,29.5231541],[-91.9267995,29.5232477],[-91.929466,29.5245257],[-91.931805,29.526257],[-91.9340628,29.5282831],[-91.937125,29.5292025],[-91.9397788,29.5297182],[-91.941679,29.5307037],[-91.943816,29.5318382],[-91.9458735,29.5326282],[-91.9475564,29.5341727],[-91.949412,29.5358597],[-91.9513915,29.5367767],[-91.956131,29.5373491],[-91.9576372,29.5356707],[-91.9582315,29.5330592],[-91.9595945,29.5311952],[-91.961557,29.5304127],[-91.964945,29.5309684],[-91.9672179,29.5323428],[-91.9695023,29.5351771],[-91.9687155,29.5378636],[-91.9707887,29.5415122],[-91.974787,29.5435797],[-91.9783275,29.5448397],[-91.981473,29.5459387],[-91.984222,29.546318],[-91.9859387,29.5478021],[-91.988919,29.5491917],[-91.9912357,29.5500691],[-91.9946355,29.5515617],[-91.9982533,29.5522821],[-92.0003182,29.5539537],[-92.002662,29.5549167],[-92.005231,29.5560407],[-92.006742,29.5570201],[-92.010132,29.5588487],[-92.012779,29.5601937],[-92.0154353,29.5613024],[-92.017,29.5623037],[-92.018848,29.5631522],[-92.0219803,29.5642767],[-92.023737,29.5652627],[-92.0274153,29.5673727],[-92.0298047,29.5703592],[-92.0312364,29.5727083],[-92.032779,29.5755959],[-92.0349969,29.5783436],[-92.0323322,29.5783825],[-92.0295948,29.5767755],[-92.0264196,29.5756959],[-92.0218869,29.5759497],[-92.0206501,29.5785358],[-92.0182777,29.579308],[-92.0187743,29.5823577],[-92.019086,29.5851797],[-92.0189145,29.5877227],[-92.0186203,29.5913384],[-92.0141002,29.5921292],[-92.0099926,29.5933275],[-92.0080965,29.5943131],[-92.006832,29.5987217],[-92.0062886,29.6004947],[-92.0056876,29.6046049],[-92.0031113,29.6063454],[-91.9996206,29.6074067],[-91.997997,29.6082567],[-91.996397,29.6090137],[-91.9946316,29.6097704],[-91.9915558,29.6114324],[-91.9879106,29.6122192],[-91.9853595,29.6132149],[-91.9828866,29.6151539],[-91.9801728,29.6150293],[-91.978168,29.6132681],[-91.9755533,29.6117254],[-91.9733935,29.6110152],[-91.9701893,29.6099747],[-91.9681797,29.6085465],[-91.96523,29.6081285],[-91.961681,29.6088397],[-91.9579096,29.6086179],[-91.954979,29.6085427],[-91.9523558,29.6086029],[-91.9493743,29.6096051],[-91.946887,29.6100677],[-91.944277,29.6105607],[-91.9415885,29.6099417],[-91.9400279,29.6101513],[-91.938533,29.6110652],[-91.93633,29.6116607],[-91.9345283,29.6126234],[-91.9315617,29.6162107],[-91.9293905,29.6192017],[-91.9282564,29.6210319],[-91.9252694,29.6218281],[-91.9273686,29.6234832],[-91.927897,29.6283366],[-91.9288453,29.6305934],[-91.929866,29.6330306],[-91.9285313,29.6363429],[-91.9255615,29.6351661],[-91.9240257,29.6337407],[-91.922465,29.6331677],[-91.9198015,29.6341757],[-91.9158052,29.6332828],[-91.9135445,29.6350687],[-91.91115,29.6358362],[-91.9084145,29.6368442],[-91.906053,29.6385057],[-91.9037338,29.6395303],[-91.9012495,29.6405598],[-91.8993968,29.6376334],[-91.9010857,29.6359043],[-91.897676,29.6346482],[-91.8943793,29.6340181]]],[[[-89.7003978,29.5941621],[-89.6990888,29.5936936],[-89.6990357,29.5920461],[-89.7022417,29.5916092],[-89.7034772,29.5910944],[-89.7053997,29.5933426],[-89.7071025,29.5937907],[-89.7076861,29.593597],[-89.7076861,29.595417],[-89.7031975,29.5949641],[-89.7016571,29.5947345],[-89.7003978,29.5941621]]],[[[-89.7084823,29.5933695],[-89.7095061,29.5930282],[-89.7118949,29.5932557],[-89.7126912,29.5923457],[-89.7130497,29.5920768],[-89.7140972,29.5912912],[-89.7145113,29.5909806],[-89.7158763,29.5918907],[-89.7153635,29.5924695],[-89.7160971,29.5929479],[-89.7165589,29.5932557],[-89.7151938,29.5946208],[-89.7129649,29.5946208],[-89.712444,29.5946303],[-89.7108712,29.5958721],[-89.7085961,29.5958721],[-89.7084823,29.5933695]]],[[[-89.6296282,29.5994439],[-89.6288319,29.5964863],[-89.6308455,29.5965558],[-89.6343654,29.5962174],[-89.6362259,29.5960313],[-89.6362259,29.5969294],[-89.6353932,29.5974339],[-89.6342111,29.598264],[-89.6346677,29.5990403],[-89.632919,29.5998335],[-89.6316305,29.599514],[-89.6296282,29.5994439]]],[[[-89.6880976,29.5959176],[-89.6888939,29.594325],[-89.6939001,29.5954097],[-89.6947359,29.595645],[-89.6954976,29.5957558],[-89.6956878,29.5993803],[-89.6938372,29.5984599],[-89.6918327,29.5974811],[-89.6880976,29.5959176]]],[[[-89.6830513,29.6011902],[-89.683383,29.6011442],[-89.6863866,29.6011502],[-89.6862459,29.600612],[-89.6814999,29.5973964],[-89.6816137,29.5960313],[-89.6825237,29.5942113],[-89.6844575,29.5933012],[-89.6856697,29.5941514],[-89.6838887,29.59478],[-89.682865,29.5973964],[-89.6839581,29.5973809],[-89.6849125,29.5971689],[-89.685827,29.5984753],[-89.6881283,29.6000772],[-89.6881877,29.6016124],[-89.6877829,29.6016574],[-89.686865,29.6029944],[-89.6849531,29.6031186],[-89.6840025,29.6031978],[-89.6819549,29.6030841],[-89.6818412,29.6019465],[-89.6830513,29.6011902]]],[[[-89.717008,29.5866169],[-89.7154213,29.586203],[-89.7133215,29.586503],[-89.7127339,29.5865869],[-89.7123103,29.5866474],[-89.7085961,29.5865442],[-89.7084823,29.5847242],[-89.7096199,29.5852929],[-89.7124637,29.5854067],[-89.7132913,29.5852412],[-89.7139804,29.5855623],[-89.714297,29.5855704],[-89.7167864,29.5856342],[-89.7199715,29.5849517],[-89.7209953,29.5872268],[-89.717008,29.5866169]]],[[[-89.6504442,29.5869855],[-89.6481374,29.5848787],[-89.649828,29.5829757],[-89.6468872,29.581493],[-89.6459914,29.5786217],[-89.6448586,29.5776082],[-89.6433294,29.5744017],[-89.6449023,29.5731893],[-89.6464113,29.5755637],[-89.6487836,29.5751185],[-89.6510706,29.575167],[-89.6537257,29.5744317],[-89.656198,29.5733647],[-89.6593201,29.5732492],[-89.6618432,29.5737564],[-89.6651857,29.5752805],[-89.662489,29.576091],[-89.6607148,29.575524],[-89.6587459,29.5756725],[-89.6559002,29.577175],[-89.6590213,29.577877],[-89.6605439,29.5801777],[-89.6619192,29.581642],[-89.6611234,29.5855289],[-89.6581014,29.5869038],[-89.6574322,29.5864342],[-89.6532536,29.5870227],[-89.6504442,29.5869855]]],[[[-89.6016518,29.5824892],[-89.6040525,29.5820827],[-89.604474,29.5834626],[-89.6052916,29.5856819],[-89.6069911,29.5885236],[-89.6054382,29.5887663],[-89.6028726,29.5842572],[-89.6017585,29.5836321],[-89.6016518,29.5824892]]],[[[-89.6921959,29.5855832],[-89.6933836,29.585392],[-89.6937409,29.5868485],[-89.6930576,29.5876381],[-89.691988,29.5880913],[-89.6919918,29.5892259],[-89.6921018,29.5897293],[-89.6913055,29.5904119],[-89.6898713,29.590157],[-89.6895745,29.5900082],[-89.6897915,29.5895902],[-89.6904086,29.5882644],[-89.6902503,29.5878846],[-89.6889459,29.5856035],[-89.6893275,29.5856013],[-89.6921959,29.5855832]]],[[[-89.6955961,29.5908724],[-89.6947181,29.5879093],[-89.6947181,29.5865442],[-89.6975306,29.5863689],[-89.7001269,29.5881431],[-89.6994604,29.5887727],[-89.6981307,29.5881368],[-89.6974701,29.5891939],[-89.696818,29.5891562],[-89.6955961,29.5908724]]],[[[-89.7068898,29.5914357],[-89.7068843,29.5911359],[-89.7067861,29.5901911],[-89.7057522,29.5888193],[-89.7048287,29.5888193],[-89.7036063,29.5888572],[-89.7046147,29.5873405],[-89.7057322,29.5873405],[-89.7081411,29.5892743],[-89.7083417,29.5904046],[-89.708549,29.5912489],[-89.7097169,29.5913062],[-89.7100371,29.5913219],[-89.7106437,29.5913219],[-89.7106437,29.5923457],[-89.7078927,29.5919827],[-89.7068898,29.5914357]]],[[[-89.6231095,29.602454],[-89.6207981,29.6020942],[-89.6185612,29.6023127],[-89.6166266,29.6010899],[-89.6145316,29.600026],[-89.6102808,29.598938],[-89.6068171,29.5971464],[-89.6067136,29.5954922],[-89.6072704,29.5934264],[-89.6100428,29.5892557],[-89.6094615,29.5862413],[-89.611972,29.586472],[-89.6142978,29.5880075],[-89.6131176,29.590022],[-89.6123221,29.5927327],[-89.6093703,29.5936733],[-89.6131722,29.5958255],[-89.6167121,29.597602],[-89.6196374,29.5983925],[-89.6225358,29.5997251],[-89.6253333,29.6011777],[-89.6231095,29.602454]]],[[[-89.6775495,29.5910553],[-89.6757937,29.5898239],[-89.6754674,29.5897424],[-89.6737907,29.5894419],[-89.6747232,29.5890105],[-89.6757676,29.58855],[-89.6761084,29.5885629],[-89.6773565,29.587324],[-89.6765544,29.586253],[-89.6775185,29.5857935],[-89.678934,29.5866645],[-89.6788554,29.5885494],[-89.6787698,29.5898886],[-89.6799537,29.588574],[-89.6807036,29.5871585],[-89.6820683,29.5878371],[-89.6820817,29.5883789],[-89.6824648,29.5889429],[-89.683384,29.5899358],[-89.6847922,29.5902391],[-89.6854813,29.5910261],[-89.6842601,29.5916073],[-89.6801978,29.5935002],[-89.6793737,29.5928906],[-89.6775495,29.5910553]]],[[[-89.6735371,29.6014915],[-89.672531,29.601452],[-89.6706933,29.6019465],[-89.6710346,29.6010365],[-89.6726477,29.6001976],[-89.6723534,29.6000001],[-89.673368,29.5994963],[-89.6738784,29.5979651],[-89.6764947,29.5987614],[-89.6771536,29.5999512],[-89.6782011,29.6014915],[-89.6792248,29.6014915],[-89.6805686,29.6009796],[-89.6805917,29.6013247],[-89.6807036,29.6029916],[-89.6812724,29.6033116],[-89.6792248,29.6043353],[-89.6771773,29.6043353],[-89.6747884,29.6037666],[-89.6743334,29.6031978],[-89.6744056,29.6023655],[-89.6735371,29.6014915]]],[[[-89.587234,29.6045848],[-89.5879649,29.604522],[-89.5884549,29.6048784],[-89.5895785,29.6051702],[-89.5892342,29.6053534],[-89.5885692,29.6057091],[-89.5865418,29.607152],[-89.5856941,29.6073579],[-89.5856205,29.606492],[-89.5863952,29.6061892],[-89.5866088,29.6059869],[-89.5871876,29.6054385],[-89.587234,29.6045848]]],[[[-89.6121515,29.6134964],[-89.6113611,29.613039],[-89.6111328,29.6132722],[-89.6086749,29.6120359],[-89.608461,29.6133295],[-89.6068247,29.6132226],[-89.6045657,29.6123518],[-89.6028746,29.6106173],[-89.6049492,29.6102392],[-89.6067886,29.6107989],[-89.6091469,29.6112065],[-89.611599,29.6111478],[-89.6116666,29.6098321],[-89.612824,29.6095382],[-89.6139376,29.6103894],[-89.6138352,29.6110099],[-89.6148806,29.6110571],[-89.6152136,29.6124921],[-89.6144533,29.6130244],[-89.6132549,29.6129005],[-89.6121515,29.6134964]]],[[[-89.6742279,29.6063395],[-89.6751846,29.6057017],[-89.6751177,29.6053898],[-89.6756509,29.6050656],[-89.6775475,29.6048549],[-89.6794523,29.6053591],[-89.6814999,29.6053591],[-89.683775,29.6045629],[-89.6849119,29.6057872],[-89.6852538,29.6061554],[-89.6881811,29.6055305],[-89.6889234,29.6053721],[-89.6910552,29.6047904],[-89.6926478,29.6064967],[-89.6904865,29.6069517],[-89.6883318,29.6082984],[-89.688072,29.6084607],[-89.687386,29.6108354],[-89.6851736,29.6129874],[-89.6827598,29.6142363],[-89.6794709,29.613487],[-89.6784473,29.6120658],[-89.6792248,29.6115018],[-89.6783148,29.6094543],[-89.6761429,29.6087536],[-89.6758247,29.6082851],[-89.6749169,29.6082203],[-89.6745026,29.6081907],[-89.6730821,29.6080892],[-89.6733096,29.6069517],[-89.6742279,29.6063395]]],[[[-90.139261,29.5968376],[-90.1411093,29.5880069],[-90.1446006,29.5882123],[-90.143163,29.5980698],[-90.1487216,29.6121103],[-90.1491186,29.626205],[-90.1485376,29.6326933],[-90.1478864,29.6399645],[-90.1452167,29.6539293],[-90.137002,29.6580367],[-90.1306357,29.6549562],[-90.130841,29.6407859],[-90.1326771,29.6332747],[-90.1370984,29.6303637],[-90.1396718,29.6286693],[-90.1413147,29.6169635],[-90.1318679,29.6097757],[-90.1318679,29.6040254],[-90.139261,29.5968376]]],[[[-89.6469958,29.6249601],[-89.6441601,29.6254119],[-89.6439477,29.6277188],[-89.6453255,29.6291969],[-89.6424886,29.6290582],[-89.639602,29.6285166],[-89.6360321,29.6280764],[-89.6316748,29.6288311],[-89.6283518,29.6310313],[-89.6284568,29.6278191],[-89.6290986,29.6254087],[-89.6309851,29.6238879],[-89.6323299,29.6208814],[-89.6323204,29.6177787],[-89.6312823,29.6153407],[-89.6281804,29.6146041],[-89.6272709,29.6135746],[-89.6263916,29.6125792],[-89.6250598,29.6108405],[-89.6224651,29.6106147],[-89.6206469,29.6087912],[-89.6176262,29.6086949],[-89.6157128,29.6095739],[-89.6145718,29.6087762],[-89.6155893,29.606188],[-89.6196974,29.6058492],[-89.62297,29.6050144],[-89.6267198,29.6038167],[-89.6290631,29.6060077],[-89.6313688,29.6091416],[-89.6335205,29.6104919],[-89.6370815,29.6112083],[-89.6390883,29.613398],[-89.6392728,29.615761],[-89.6398498,29.6177054],[-89.6400403,29.6178242],[-89.6439597,29.620269],[-89.6460014,29.622668],[-89.6469958,29.6249601]]],[[[-89.5371616,29.6600688],[-89.5346362,29.6602745],[-89.5356017,29.6620923],[-89.5332399,29.6625748],[-89.5311206,29.6626347],[-89.5289016,29.6613298],[-89.5264932,29.6601739],[-89.5233912,29.6586624],[-89.525561,29.6567589],[-89.522972,29.655214],[-89.5189538,29.6525172],[-89.5164972,29.6515845],[-89.5145088,29.651068],[-89.5128692,29.6499293],[-89.5103809,29.6485743],[-89.5081571,29.6466381],[-89.5076715,29.6446724],[-89.5080158,29.6429192],[-89.5060284,29.6423617],[-89.5043822,29.6411664],[-89.502879,29.6393931],[-89.5014795,29.6369961],[-89.4993628,29.6349639],[-89.4978051,29.6328398],[-89.501955,29.6336662],[-89.5029237,29.632208],[-89.5045172,29.6336746],[-89.5058258,29.6359082],[-89.5062458,29.6362486],[-89.5072999,29.6371029],[-89.51022,29.638572],[-89.5133227,29.6394366],[-89.5155604,29.6396561],[-89.518401,29.6393593],[-89.5220063,29.6407816],[-89.5224907,29.6430505],[-89.5243289,29.6455237],[-89.5209082,29.645549],[-89.5190504,29.6440927],[-89.5194912,29.6473528],[-89.5206264,29.6499201],[-89.5206388,29.649948],[-89.5235295,29.6510288],[-89.5266766,29.6518772],[-89.5259197,29.6541794],[-89.5278042,29.6563164],[-89.5313272,29.655117],[-89.5352863,29.6559214],[-89.5371616,29.6600688]]],[[[-89.5957801,29.6295385],[-89.59689,29.6294472],[-89.5977263,29.6302075],[-89.5964771,29.6305653],[-89.5944477,29.6313752],[-89.5944078,29.6300271],[-89.5957801,29.6295385]]],[[[-89.6168703,29.6325],[-89.6176286,29.6325],[-89.6184866,29.6330497],[-89.619038,29.6333345],[-89.6185468,29.6337707],[-89.6177904,29.6344953],[-89.6172639,29.6336757],[-89.616892,29.6330075],[-89.6168703,29.6325]]],[[[-89.6411249,29.6506686],[-89.6382033,29.6509716],[-89.6344349,29.6513192],[-89.6315406,29.6523876],[-89.6294404,29.6512292],[-89.6267301,29.6500951],[-89.625152,29.6505516],[-89.6230444,29.650951],[-89.6219919,29.6483506],[-89.6185956,29.648627],[-89.6166631,29.6482276],[-89.6161978,29.6483487],[-89.6148605,29.6481659],[-89.6138962,29.6476885],[-89.6134892,29.647487],[-89.6101785,29.6470652],[-89.6087686,29.6457866],[-89.6068443,29.6438741],[-89.6086802,29.6428865],[-89.6140494,29.6432842],[-89.6141633,29.6424613],[-89.616918,29.6417957],[-89.6191546,29.6395009],[-89.6199233,29.6381895],[-89.6227213,29.6382817],[-89.6230301,29.6403021],[-89.6222872,29.641461],[-89.6239899,29.6432155],[-89.6260182,29.6452612],[-89.6292439,29.6457351],[-89.6314929,29.6432922],[-89.6334341,29.6431759],[-89.6361966,29.6444333],[-89.6383048,29.6468215],[-89.6405416,29.6482888],[-89.6411249,29.6506686]]],[[[-89.5263033,29.7112662],[-89.5243641,29.7112662],[-89.5233304,29.7112662],[-89.5225082,29.7109921],[-89.5222155,29.7108946],[-89.5223174,29.7103303],[-89.5219965,29.7091129],[-89.5206404,29.7068181],[-89.5195069,29.7060673],[-89.5208137,29.7050621],[-89.5206313,29.7044539],[-89.5192313,29.7017577],[-89.5201745,29.6998927],[-89.5196299,29.6979671],[-89.5167729,29.6964879],[-89.5137882,29.6963874],[-89.5120405,29.6982474],[-89.5102231,29.6964071],[-89.5097882,29.6941706],[-89.5080024,29.6925122],[-89.5106581,29.6923153],[-89.5138089,29.6927127],[-89.5162001,29.6927395],[-89.5187974,29.6919528],[-89.5195507,29.6951098],[-89.5223868,29.6937812],[-89.5242843,29.6924782],[-89.5246428,29.6913639],[-89.5273282,29.690332],[-89.5280276,29.6929072],[-89.5305302,29.6954542],[-89.5313505,29.6948015],[-89.5290644,29.6981469],[-89.5329324,29.7012225],[-89.5333677,29.7014734],[-89.5333363,29.7026943],[-89.5355625,29.7026943],[-89.5355938,29.7043913],[-89.5321895,29.7058649],[-89.5300195,29.7074571],[-89.5288385,29.7065281],[-89.5266376,29.7079664],[-89.5266577,29.7088332],[-89.5283472,29.7108946],[-89.5263033,29.7112662]]],[[[-89.5823913,29.7062636],[-89.5799594,29.7044396],[-89.5821621,29.7042375],[-89.5832214,29.7034536],[-89.5834717,29.7033071],[-89.584366,29.7029153],[-89.5847402,29.7027431],[-89.5854285,29.7032937],[-89.5853301,29.7035715],[-89.5868005,29.7054019],[-89.5856655,29.7058276],[-89.5841102,29.7051471],[-89.583045,29.7051777],[-89.5823913,29.7062636]]],[[[-89.5635069,29.7051143],[-89.5617371,29.7037736],[-89.5617371,29.7028967],[-89.5630668,29.7034293],[-89.5641751,29.7040968],[-89.5671813,29.7040196],[-89.5679293,29.7046035],[-89.5648188,29.7063714],[-89.5635069,29.7051143]]],[[[-84.7128424,29.745799],[-84.719054,29.7385915],[-84.722807,29.7355785],[-84.7250115,29.733516],[-84.7277057,29.7313091],[-84.738105,29.7223095],[-84.743248,29.7182305],[-84.7449005,29.7168487],[-84.746448,29.7156625],[-84.749557,29.7132965],[-84.7523265,29.7109115],[-84.765113,29.6997185],[-84.769995,29.696135],[-84.772725,29.6947505],[-84.775444,29.6930995],[-84.777717,29.6919588],[-84.780152,29.6910175],[-84.78348,29.6891885],[-84.787833,29.6869435],[-84.790885,29.6854075],[-84.7923495,29.684553],[-84.799125,29.6815595],[-84.803218,29.6800705],[-84.8129785,29.676714],[-84.815288,29.6759015],[-84.819197,29.6744805],[-84.822948,29.6733805],[-84.825887,29.6726245],[-84.828514,29.6721935],[-84.8321856,29.6712845],[-84.8366893,29.6700662],[-84.8405093,29.6689825],[-84.844385,29.6677915],[-84.847735,29.6666998],[-84.850322,29.6658565],[-84.85322,29.664912],[-84.855341,29.6641755],[-84.858033,29.6632175],[-84.8612956,29.6619438],[-84.870218,29.6583895],[-84.8739092,29.6568955],[-84.8769939,29.6555425],[-84.8813747,29.653574],[-84.8838439,29.6524373],[-84.8871459,29.6508475],[-84.8899019,29.6493205],[-84.8983499,29.6446415],[-84.9000679,29.6440065],[-84.9045989,29.6411345],[-84.9068753,29.6399848],[-84.9104169,29.6379085],[-84.9208559,29.6323645],[-84.9256829,29.6294785],[-84.9291454,29.6274895],[-84.9328929,29.6252095],[-84.9362469,29.6231705],[-84.9407839,29.6207415],[-84.9455559,29.6183815],[-84.9558089,29.6138215],[-84.9575654,29.612664],[-84.9598133,29.6119755],[-84.9627159,29.6110445],[-84.9739249,29.6074425],[-84.9820539,29.6047665],[-84.9890399,29.6025935],[-84.9996434,29.5991675],[-85.0045939,29.5976555],[-85.0086059,29.5964655],[-85.0120139,29.5957345],[-85.0162619,29.5944755],[-85.0212179,29.5933545],[-85.0279829,29.5912715],[-85.0320074,29.5902415],[-85.0340649,29.5894635],[-85.0372899,29.5887305],[-85.0421929,29.5877235],[-85.0450049,29.5873283],[-85.0491939,29.5867395],[-85.0510286,29.5871215],[-85.0527909,29.5896553],[-85.0546064,29.5920215],[-85.0590229,29.5971435],[-85.0634869,29.6018978],[-85.0663379,29.6043605],[-85.0726049,29.6089665],[-85.0766179,29.6117625],[-85.0802899,29.6141455],[-85.0857439,29.6168255],[-85.0889959,29.6187045],[-85.0910944,29.619575],[-85.0936129,29.6212245],[-85.0957109,29.623034],[-85.0968376,29.6256722],[-85.0944056,29.6277292],[-85.0920314,29.6266755],[-85.0900939,29.624718],[-85.0885076,29.6232645],[-85.0866147,29.6203964],[-85.0819949,29.6192555],[-85.0801194,29.6183615],[-85.0777854,29.617044],[-85.0774637,29.6152622],[-85.0756729,29.6146495],[-85.0734314,29.612885],[-85.0706384,29.610754],[-85.0670809,29.6081345],[-85.0636897,29.6075748],[-85.0595427,29.6063352],[-85.0577899,29.6058725],[-85.0555349,29.6048645],[-85.0531232,29.6038405],[-85.0497014,29.6033745],[-85.0461752,29.6022969],[-85.0420984,29.600818],[-85.0384929,29.5995465],[-85.0312704,29.597895],[-85.0269842,29.5963854],[-85.0238528,29.5973858],[-85.0195812,29.5976071],[-85.0142937,29.5984124],[-85.0142155,29.6006945],[-85.0132528,29.6031015],[-85.0109609,29.6042952],[-85.0083315,29.6044733],[-85.0064919,29.60217],[-85.0038991,29.6015675],[-84.9992601,29.6033383],[-84.9947009,29.6053764],[-84.9908383,29.606703],[-84.9873076,29.6075135],[-84.9843629,29.6078585],[-84.9819719,29.6083238],[-84.9768649,29.6104035],[-84.9735869,29.6113895],[-84.9696019,29.6127655],[-84.9677879,29.6137455],[-84.9660959,29.6146205],[-84.9644968,29.6153628],[-84.9626759,29.6162558],[-84.9606129,29.6172365],[-84.9587079,29.6181905],[-84.9569369,29.6193205],[-84.9520069,29.6209705],[-84.9482031,29.6229701],[-84.9444942,29.625742],[-84.9412953,29.6271645],[-84.9391124,29.6300392],[-84.9373708,29.6322848],[-84.9360149,29.6315555],[-84.9340831,29.6320149],[-84.9319766,29.6330608],[-84.9326158,29.635709],[-84.9303061,29.6343318],[-84.9280791,29.6365968],[-84.9253214,29.6358598],[-84.9249364,29.6381013],[-84.9243428,29.6415452],[-84.9214136,29.6428745],[-84.9200181,29.6419146],[-84.9174712,29.640871],[-84.9152361,29.6418913],[-84.9167229,29.6435575],[-84.9194437,29.645917],[-84.9221772,29.6472365],[-84.9200549,29.6486271],[-84.9168528,29.6494908],[-84.9140278,29.6495341],[-84.9118169,29.649467],[-84.9092181,29.6480798],[-84.9051284,29.6487785],[-84.9028199,29.649167],[-84.9009552,29.6513608],[-84.8988739,29.653419],[-84.8966538,29.6525985],[-84.8953024,29.6555005],[-84.8920819,29.6557044],[-84.8903259,29.6567988],[-84.8870962,29.6563915],[-84.88496,29.6581103],[-84.8830923,29.6598985],[-84.8806456,29.6609282],[-84.8792522,29.6635894],[-84.8752989,29.6632346],[-84.871783,29.6645135],[-84.8664344,29.6666096],[-84.8633051,29.6664296],[-84.861123,29.6677142],[-84.8586924,29.6692971],[-84.855532,29.6701445],[-84.853598,29.6709898],[-84.8488575,29.6724578],[-84.845746,29.6733765],[-84.8425363,29.6739715],[-84.839398,29.6745475],[-84.837201,29.6751202],[-84.8341766,29.6756193],[-84.829828,29.6767562],[-84.8269425,29.6775705],[-84.824129,29.6784445],[-84.8172438,29.6798335],[-84.8142017,29.6808782],[-84.8102101,29.682254],[-84.8084066,29.6842135],[-84.806157,29.6833125],[-84.8037055,29.683508],[-84.8007142,29.6846111],[-84.7974856,29.6869162],[-84.7948335,29.6866907],[-84.7916715,29.689004],[-84.791006,29.692143],[-84.7942129,29.6950342],[-84.791932,29.6956015],[-84.789125,29.6943565],[-84.787303,29.6928435],[-84.78517,29.6921935],[-84.783353,29.6928515],[-84.781122,29.6937675],[-84.7787492,29.6950173],[-84.775945,29.6960585],[-84.7737775,29.6973767],[-84.771726,29.6984547],[-84.7691408,29.6995323],[-84.7667458,29.7020033],[-84.7655035,29.7051482],[-84.7637797,29.7078369],[-84.7657515,29.707737],[-84.767523,29.7064775],[-84.7692035,29.704703],[-84.7705242,29.7016335],[-84.773011,29.6999505],[-84.775491,29.700054],[-84.7780917,29.7008609],[-84.7782714,29.7044895],[-84.7761901,29.7082465],[-84.771104,29.7100305],[-84.7685356,29.7109228],[-84.7646947,29.7130182],[-84.7610096,29.7165102],[-84.7572495,29.7188465],[-84.7530775,29.720745],[-84.7493812,29.7231935],[-84.7458916,29.7258529],[-84.742438,29.7263405],[-84.7394023,29.7267315],[-84.7369265,29.7285765],[-84.7339316,29.7300877],[-84.731547,29.7322085],[-84.7290294,29.7338085],[-84.725642,29.7361735],[-84.723829,29.738628],[-84.7216795,29.739909],[-84.7202206,29.7422413],[-84.7232655,29.7427459],[-84.72182,29.7447517],[-84.7189748,29.7439187],[-84.7184778,29.7440875],[-84.7184397,29.7442914],[-84.7150899,29.7463523],[-84.7124315,29.7487528],[-84.709216,29.7523355],[-84.7072604,29.7552991],[-84.7051773,29.7594979],[-84.7026301,29.7628212],[-84.6997196,29.7645817],[-84.6972188,29.7672706],[-84.6957774,29.7649335],[-84.6982017,29.7611792],[-84.7037119,29.7556382],[-84.7088201,29.7501812],[-84.7128424,29.745799]]],[[[-120.359834,34.0519702],[-120.3578751,34.0498506],[-120.3518088,34.0473657],[-120.347621,34.0466397],[-120.3447615,34.0466292],[-120.3408838,34.0468987],[-120.3385185,34.0478782],[-120.3354797,34.0488018],[-120.3314129,34.048923],[-120.3289525,34.0475664],[-120.3137794,34.0385288],[-120.3123196,34.0380634],[-120.3071946,34.0290306],[-120.3067261,34.0285003],[-120.3066008,34.0259114],[-120.306355,34.020831],[-120.3067985,34.0208117],[-120.3099144,34.0200678],[-120.3132585,34.0194157],[-120.3162422,34.0192592],[-120.3212588,34.0190205],[-120.326778,34.0194325],[-120.3326545,34.0199977],[-120.336586,34.0202722],[-120.3394509,34.0198458],[-120.3445035,34.0201447],[-120.3479818,34.0200007],[-120.3505029,34.0194303],[-120.3623,34.0126221],[-120.3720602,34.0176864],[-120.3764947,34.0199874],[-120.378896,34.021663],[-120.3811225,34.0233122],[-120.3837975,34.0246299],[-120.3869775,34.0248487],[-120.3901575,34.0254336],[-120.3936909,34.0265522],[-120.396984,34.0276797],[-120.402387,34.0294212],[-120.405273,34.0305437],[-120.4091722,34.0321169],[-120.4120119,34.0323712],[-120.4160324,34.0295641],[-120.4219537,34.0247417],[-120.4223931,34.0246549],[-120.4270674,34.0237316],[-120.4379398,34.0289722],[-120.4470604,34.0296738],[-120.4501231,34.0280401],[-120.45279,34.02944],[-120.4531408,34.0311939],[-120.4519651,34.0319322],[-120.4502176,34.031077],[-120.4486975,34.0311939],[-120.4492181,34.0331184],[-120.4520555,34.0343769],[-120.4523223,34.0359881],[-120.4511649,34.0366194],[-120.449336,34.0360556],[-120.4479853,34.0374903],[-120.4475305,34.0387923],[-120.4466285,34.0392884],[-120.4434279,34.0387333],[-120.4410969,34.0383267],[-120.4394317,34.0398069],[-120.435194,34.0409454],[-120.4342415,34.0415832],[-120.4318964,34.0443464],[-120.4307892,34.0456643],[-120.4274679,34.0484116],[-120.4272507,34.0481909],[-120.4260718,34.0486715],[-120.4238958,34.0499688],[-120.4194979,34.0582721],[-120.4160696,34.0582721],[-120.4044091,34.050835],[-120.4030347,34.0506395],[-120.3955,34.0521373],[-120.3877413,34.0562873],[-120.3709365,34.0694709],[-120.3681479,34.0711069],[-120.3686903,34.072605],[-120.3703709,34.0746869],[-120.3691381,34.0766241],[-120.3644713,34.0757435],[-120.3612174,34.0737895],[-120.3610923,34.0682839],[-120.358302,34.0662197],[-120.357687,34.061362],[-120.3556186,34.0586923],[-120.3576272,34.0570529],[-120.3601447,34.0554996],[-120.359834,34.0519702]]],[[[-120.4354234,34.0564954],[-120.4354493,34.0547371],[-120.4367066,34.0535915],[-120.442734,34.0549309],[-120.4467901,34.0527127],[-120.4496164,34.0525916],[-120.4519761,34.0540616],[-120.4522372,34.056325],[-120.4516935,34.0573348],[-120.4488634,34.0579738],[-120.4365721,34.0576627],[-120.4354234,34.0564954]]],[[[-120.3311049,34.0564088],[-120.3327757,34.0551712],[-120.3383022,34.0584525],[-120.3379792,34.0596759],[-120.3350998,34.0611913],[-120.334624,34.0613347],[-120.3311688,34.0603649],[-120.3301019,34.0585337],[-120.3300929,34.0584213],[-120.3311049,34.0564088]]],[[[-120.0539023,34.0374095],[-120.0507817,34.0362202],[-120.0479119,34.0363012],[-120.0437887,34.0353368],[-120.0449051,34.0313415],[-120.0438533,34.028443],[-120.0437911,34.0257079],[-120.0461018,34.0224807],[-120.0486236,34.01823],[-120.0499769,34.0139184],[-120.0487574,34.0093109],[-120.0473896,34.0050256],[-120.0468871,34.0008137],[-120.0456116,33.9983472],[-120.0421046,33.9951889],[-120.0390046,33.9928192],[-120.0347326,33.9903122],[-120.0315461,33.9890517],[-120.0266318,33.9868529],[-120.0226328,33.9848715],[-120.018158,33.9840348],[-120.0137972,33.9825077],[-120.0117566,33.9801412],[-120.0046956,33.9795427],[-120.0009476,33.9803192],[-119.9999876,33.980569],[-119.9973791,33.9812477],[-119.9921741,33.9819602],[-119.9879301,33.9832212],[-119.9849906,33.9837602],[-119.9809893,33.9838535],[-119.9785198,33.9820616],[-119.9798083,33.977457],[-119.9795316,33.9737607],[-119.9799006,33.9699957],[-119.9781748,33.9669092],[-119.9782486,33.9636222],[-119.9773409,33.9612199],[-119.9772296,33.9579012],[-119.9735891,33.9551562],[-119.9705249,33.9510796],[-119.9704213,33.9446672],[-119.9682929,33.9427497],[-119.9708931,33.9421088],[-119.9742884,33.942055],[-119.9829146,33.9424959],[-119.9865031,33.9423687],[-119.9890836,33.9424252],[-119.9916511,33.9422857],[-119.9950793,33.9422542],[-119.9980626,33.9419852],[-119.9999876,33.9416477],[-120.0011683,33.9414407],[-120.0044373,33.9405382],[-120.0079536,33.9384632],[-120.0127871,33.9377097],[-120.0155786,33.9369482],[-120.0183141,33.9359842],[-120.0209086,33.9338071],[-120.0235936,33.9308847],[-120.0279149,33.9282689],[-120.0324859,33.9258132],[-120.0379442,33.924225],[-120.0408756,33.9229442],[-120.0440676,33.9204162],[-120.0469986,33.9193462],[-120.0493536,33.9165447],[-120.0527311,33.9142142],[-120.0578376,33.9130702],[-120.0607336,33.9128757],[-120.0638812,33.9123539],[-120.0689551,33.9124752],[-120.0718236,33.9118802],[-120.0745086,33.9108684],[-120.0774921,33.9087442],[-120.0820086,33.9085152],[-120.08544,33.908798],[-120.0903126,33.9090627],[-120.0943242,33.9085699],[-120.0980738,33.9078937],[-120.1006188,33.9068405],[-120.1045048,33.9047514],[-120.1069299,33.9020236],[-120.1086585,33.9001427],[-120.1086982,33.8972356],[-120.1118566,33.894751],[-120.1154812,33.8940629],[-120.1208704,33.8949529],[-120.124318,33.8969497],[-120.1263409,33.8985279],[-120.1290384,33.8996804],[-120.1317233,33.9012854],[-120.134208,33.9024614],[-120.137005,33.9027655],[-120.1391058,33.9044732],[-120.141536,33.9054312],[-120.1447661,33.9076457],[-120.1472081,33.9088712],[-120.1511327,33.9113437],[-120.1546921,33.9120886],[-120.1547927,33.9121497],[-120.1586645,33.9145026],[-120.1620156,33.9166227],[-120.1649262,33.91618],[-120.1682443,33.9177242],[-120.1701416,33.9208242],[-120.1722831,33.9224162],[-120.1761748,33.9234407],[-120.1796254,33.9250465],[-120.1795856,33.9290537],[-120.181963,33.9332268],[-120.1841293,33.9368482],[-120.1855429,33.9400379],[-120.1870671,33.9434522],[-120.1887141,33.9461192],[-120.1903722,33.9483844],[-120.1931892,33.9503298],[-120.1968316,33.9508562],[-120.1987536,33.9539232],[-120.1998736,33.956573],[-120.2021878,33.9599775],[-120.2048526,33.9628272],[-120.2058969,33.9652002],[-120.2068036,33.9676342],[-120.2093596,33.9723712],[-120.2117221,33.9738927],[-120.2143779,33.975761],[-120.2187025,33.9779322],[-120.2205564,33.9811718],[-120.2217815,33.9849132],[-120.2252031,33.9890155],[-120.2278929,33.9902742],[-120.2306776,33.9911436],[-120.2339365,33.9919017],[-120.2369115,33.9925187],[-120.2400745,33.9970047],[-120.243584,33.9987159],[-120.2466877,33.9983414],[-120.2486972,34.000022],[-120.2451555,34.0026402],[-120.2420783,34.0044265],[-120.2394135,34.0065227],[-120.2362763,34.0088654],[-120.23329,34.0089135],[-120.2302975,34.0098107],[-120.2269455,34.0102086],[-120.2239625,34.0101056],[-120.2207385,34.010111],[-120.2171445,34.0092477],[-120.2136804,34.0081997],[-120.2097819,34.0064256],[-120.2066245,34.0055812],[-120.2035177,34.0058666],[-120.1993953,34.0050282],[-120.1956573,34.004405],[-120.1926341,34.0053722],[-120.1891026,34.0066022],[-120.1859739,34.0073082],[-120.1820598,34.00718],[-120.177911,34.0061458],[-120.1773286,34.0063565],[-120.1726903,34.0080347],[-120.1696889,34.0082872],[-120.1629091,34.0102047],[-120.1594861,34.0129277],[-120.1570531,34.0149187],[-120.1538229,34.0167411],[-120.1505186,34.0195382],[-120.1485387,34.0227931],[-120.1468868,34.0248492],[-120.1423701,34.0251577],[-120.1392956,34.0260149],[-120.1362902,34.0260097],[-120.1320183,34.0246703],[-120.1266251,34.0231359],[-120.1219491,34.0226371],[-120.1178384,34.0217444],[-120.1145478,34.0200416],[-120.1107173,34.0202405],[-120.1076634,34.0201248],[-120.1019513,34.020436],[-120.0976186,34.0198222],[-120.0950622,34.0198381],[-120.0894073,34.0202591],[-120.0839584,34.021862],[-120.0801272,34.022746],[-120.0766476,34.0234422],[-120.0738026,34.0242892],[-120.0715418,34.0277614],[-120.0679611,34.0286272],[-120.0655526,34.02976],[-120.0627656,34.0311562],[-120.061607,34.0334362],[-120.0597136,34.035993],[-120.0539023,34.0374095]]],[[[-76.285644,34.8827026],[-76.2837014,34.8801125],[-76.2836938,34.8801452],[-76.2836,34.8798637],[-76.281636,34.878159],[-76.2827973,34.8774084],[-76.2937634,34.8703206],[-76.3156153,34.852363],[-76.3176631,34.8519791],[-76.3191433,34.8517015],[-76.3210738,34.8532914],[-76.3197111,34.8565845],[-76.3165782,34.8588105],[-76.315396,34.8596505],[-76.3139748,34.8601242],[-76.3115634,34.8609281],[-76.310513,34.8613539],[-76.2992708,34.8712334],[-76.296659,34.8769112],[-76.2937066,34.8822484],[-76.2899592,34.8892889],[-76.2857576,34.8888347],[-76.285644,34.8827026]]],[[[-76.5009946,34.7404525],[-76.5013949,34.7387011],[-76.5028344,34.7373608],[-76.5028406,34.7373551],[-76.5028413,34.7373544],[-76.5028461,34.73735],[-76.5042973,34.7373],[-76.5042812,34.7374252],[-76.5059987,34.7387011],[-76.5068288,34.7399463],[-76.5068304,34.7399486],[-76.5068319,34.739951],[-76.5070996,34.7403525],[-76.5080003,34.7403525],[-76.5080223,34.7405504],[-76.5080503,34.7408028],[-76.5073998,34.7416535],[-76.505867,34.7421645],[-76.505148,34.7430547],[-76.5042472,34.7451564],[-76.502746,34.7452064],[-76.5029462,34.7433549],[-76.5022518,34.7412309],[-76.5022008,34.7411529],[-76.5009946,34.7404525]]],[[[-76.4983924,34.732446],[-76.5000938,34.7291433],[-76.502796,34.7292434],[-76.5033965,34.7305945],[-76.5026306,34.7316667],[-76.5027327,34.7332488],[-76.5027857,34.7354204],[-76.5036467,34.7358988],[-76.5046976,34.7359989],[-76.5046976,34.7365994],[-76.5016451,34.7370998],[-76.5014112,34.7361642],[-76.4998327,34.7348488],[-76.4997544,34.7343527],[-76.4983924,34.732446]]],[[[-76.2601021,34.9797354],[-76.2594897,34.97969],[-76.2584595,34.9798961],[-76.257898,34.9793907],[-76.2558612,34.9775576],[-76.2570892,34.9773343],[-76.2600075,34.9765838],[-76.2605328,34.9764487],[-76.2628328,34.9750488],[-76.2642708,34.9764867],[-76.2650328,34.9772488],[-76.2668328,34.9795488],[-76.2670505,34.9799435],[-76.268853,34.9808055],[-76.268853,34.9828842],[-76.267164,34.9828842],[-76.2642617,34.981247],[-76.2635328,34.9809488],[-76.2616328,34.9798488],[-76.2601021,34.9797354]]],[[[-76.2499676,34.9827306],[-76.2510542,34.9802858],[-76.2537825,34.9808055],[-76.2538438,34.9820925],[-76.2539124,34.9835338],[-76.2526538,34.9846036],[-76.2524591,34.9847691],[-76.2522153,34.9848736],[-76.251444,34.9862621],[-76.2487157,34.9867817],[-76.2471567,34.9844432],[-76.2489755,34.9830141],[-76.2497667,34.9827881],[-76.2499676,34.9827306]]],[[[-76.2444284,34.9906793],[-76.2470267,34.9882108],[-76.2494081,34.9890391],[-76.2500149,34.9892502],[-76.2501974,34.9885807],[-76.2504046,34.9878211],[-76.2508651,34.987525],[-76.2522235,34.9866518],[-76.2543022,34.9861321],[-76.2543279,34.9861063],[-76.2554714,34.9849629],[-76.25768,34.9849629],[-76.25768,34.9862621],[-76.2535226,34.9893801],[-76.252719,34.9929516],[-76.2528328,34.9935488],[-76.2549328,34.9964488],[-76.2529328,34.9977488],[-76.2494328,34.9984488],[-76.2465328,34.9982488],[-76.2443328,34.9971488],[-76.2460138,34.9947037],[-76.2444284,34.9906793]]],[[[-77.2399726,34.5943048],[-77.2371222,34.5942184],[-77.2351321,34.5950404],[-77.2333325,34.5953489],[-77.2332325,34.5924489],[-77.2353325,34.5903489],[-77.2409325,34.5875489],[-77.2466325,34.5841489],[-77.2493325,34.5827489],[-77.2513325,34.5816489],[-77.2586325,34.5773489],[-77.2665325,34.5719489],[-77.2689325,34.5702489],[-77.2812325,34.5613489],[-77.2846325,34.5590489],[-77.2939892,34.5529632],[-77.3107496,34.5435041],[-77.324817,34.5367309],[-77.332007,34.532667],[-77.3358445,34.5310961],[-77.337113,34.5299577],[-77.3383325,34.5307489],[-77.3402391,34.5323544],[-77.3405517,34.5333964],[-77.3398222,34.5348553],[-77.3377325,34.5353489],[-77.3364877,34.5358973],[-77.3355499,34.5358973],[-77.3354457,34.5363141],[-77.3364697,34.5373887],[-77.3370511,34.5379988],[-77.3373325,34.5382489],[-77.3383325,34.5424489],[-77.3408325,34.5442489],[-77.3473325,34.5505489],[-77.3483325,34.5522489],[-77.3458325,34.5521489],[-77.3444091,34.5520029],[-77.3444674,34.5514786],[-77.3176158,34.5439051],[-77.3121077,34.5476918],[-77.3079767,34.5514786],[-77.2856003,34.5618062],[-77.2814693,34.5635274],[-77.2808573,34.5641394],[-77.2800923,34.5642159],[-77.2487654,34.5910676],[-77.2424203,34.5963816],[-77.2399726,34.5943048]]],[[[-77.8369323,34.174249],[-77.8398323,34.172949],[-77.8340323,34.180649],[-77.8330323,34.181649],[-77.8303324,34.184449],[-77.8295386,34.185719],[-77.8278323,34.188449],[-77.8244323,34.188749],[-77.8213522,34.1889859],[-77.8205323,34.189049],[-77.8196186,34.1871199],[-77.8187323,34.185249],[-77.8189735,34.1841037],[-77.8191323,34.183349],[-77.8214323,34.181749],[-77.826239,34.1770174],[-77.8278323,34.175449],[-77.8317209,34.1749728],[-77.8327323,34.174849],[-77.8347455,34.1745614],[-77.8369323,34.174249]]],[[[-77.1949609,34.6337278],[-77.1960758,34.6336959],[-77.196653,34.6344175],[-77.196653,34.6344914],[-77.1968489,34.6346382],[-77.1959677,34.6355194],[-77.1942269,34.6359802],[-77.1942053,34.636009],[-77.1887224,34.6386525],[-77.1853935,34.6400233],[-77.1829457,34.641394],[-77.180498,34.6417856],[-77.180498,34.6414746],[-77.180498,34.6407576],[-77.1807444,34.6401064],[-77.1870112,34.6371345],[-77.1897015,34.6365964],[-77.193422,34.6350299],[-77.1949609,34.6337278]]],[[[-77.1565652,34.6509621],[-77.1590986,34.6491317],[-77.1616915,34.6493873],[-77.1618394,34.6494366],[-77.1617146,34.6495205],[-77.1621889,34.6495205],[-77.1626785,34.6502058],[-77.1615035,34.6507933],[-77.1584139,34.6517374],[-77.158003,34.6520133],[-77.1563143,34.6520661],[-77.1565652,34.6509621]]],[[[-76.5981327,34.6719488],[-76.5960327,34.6707488],[-76.5939354,34.6709586],[-76.5930327,34.6710489],[-76.5921327,34.6744488],[-76.5899327,34.6724488],[-76.5875327,34.6717489],[-76.5879327,34.6749488],[-76.5858327,34.6739488],[-76.5849373,34.6729255],[-76.5837327,34.6715488],[-76.5853327,34.6696489],[-76.5817327,34.6658488],[-76.5772277,34.6643472],[-76.5769327,34.6642488],[-76.5743327,34.6642488],[-76.5716327,34.6652488],[-76.5693327,34.6629488],[-76.5672327,34.6607488],[-76.5669831,34.6605912],[-76.5653327,34.6595488],[-76.5639327,34.6577488],[-76.5610327,34.6562488],[-76.5589327,34.6546488],[-76.5569327,34.6537488],[-76.5543327,34.6528488],[-76.5514327,34.6523488],[-76.5469327,34.6516488],[-76.5436327,34.6512488],[-76.5405327,34.6507488],[-76.5392327,34.6473488],[-76.5358327,34.6461488],[-76.5326327,34.6454488],[-76.5299327,34.6439488],[-76.5266327,34.6417488],[-76.5240327,34.6386489],[-76.5246327,34.6353489],[-76.5289327,34.6354489],[-76.5277327,34.6322489],[-76.5296327,34.6289489],[-76.5324327,34.6308489],[-76.5347327,34.6303489],[-76.5368327,34.6324489],[-76.5382327,34.6347489],[-76.5400327,34.6371489],[-76.5430327,34.6405489],[-76.5452327,34.6424489],[-76.5472327,34.6439489],[-76.5492327,34.6455488],[-76.5511327,34.6466488],[-76.5546327,34.6489488],[-76.5566327,34.6500488],[-76.5626327,34.6530488],[-76.5654327,34.6543488],[-76.5687327,34.6558488],[-76.5716327,34.6571488],[-76.5737327,34.6580488],[-76.5788327,34.6599488],[-76.5819327,34.6611488],[-76.5837327,34.6617488],[-76.5862327,34.6625488],[-76.5901327,34.6641488],[-76.5935327,34.6653488],[-76.5968327,34.6663488],[-76.6024327,34.6679488],[-76.6089327,34.6695488],[-76.6130327,34.6708488],[-76.6187327,34.6725488],[-76.6214327,34.6732488],[-76.6246327,34.6740488],[-76.6305327,34.6754488],[-76.6345327,34.6763488],[-76.6429327,34.6776488],[-76.6449327,34.6780488],[-76.6475327,34.6782488],[-76.6511327,34.6792488],[-76.6529327,34.6802488],[-76.6555327,34.6816488],[-76.6573327,34.6826488],[-76.6621327,34.6853488],[-76.6651327,34.6885488],[-76.6623327,34.6917488],[-76.6588327,34.6915488],[-76.6508327,34.6897488],[-76.6451327,34.6866488],[-76.6411327,34.6858488],[-76.6362327,34.6849488],[-76.6331327,34.6844488],[-76.6287327,34.6837488],[-76.6256327,34.6823488],[-76.6215327,34.6797488],[-76.6154327,34.6777488],[-76.6116327,34.6756488],[-76.6088327,34.6745488],[-76.6066327,34.6731488],[-76.6020327,34.6729488],[-76.5998327,34.6725488],[-76.5981327,34.6719488]]],[[[-77.1139097,34.6654328],[-77.1156099,34.6647789],[-77.117432,34.6662869],[-77.1173205,34.6686278],[-77.1144694,34.6696257],[-77.1172605,34.6712359],[-77.118008,34.6722134],[-77.1179735,34.6722672],[-77.1186035,34.6736172],[-77.1186035,34.6751233],[-77.1164526,34.6747492],[-77.1163918,34.6747387],[-77.1161067,34.6746891],[-77.1145485,34.6735086],[-77.1132454,34.6725214],[-77.1131325,34.6724489],[-77.1121325,34.6719489],[-77.1109325,34.6715489],[-77.1094325,34.6713489],[-77.10943,34.6713486],[-77.1094274,34.6713484],[-77.106629,34.6682002],[-77.113329,34.6660619],[-77.1139097,34.6654328]]],[[[-77.1686325,34.6221489],[-77.1734325,34.6215489],[-77.1746325,34.6227489],[-77.1716325,34.6245489],[-77.1704325,34.6259489],[-77.1682083,34.6274317],[-77.1641953,34.6285464],[-77.1621893,34.6307753],[-77.1591983,34.6322144],[-77.1562164,34.6330717],[-77.149069,34.6361069],[-77.1424112,34.6383588],[-77.1375157,34.6408065],[-77.1347743,34.6408065],[-77.1294871,34.6437438],[-77.1265388,34.6446149],[-77.1243389,34.6443758],[-77.1212385,34.6421133],[-77.1204567,34.6396896],[-77.1220247,34.6378364],[-77.1272775,34.6353294],[-77.1293325,34.6349489],[-77.1331325,34.6338489],[-77.1368325,34.6329489],[-77.1470325,34.6299489],[-77.1505325,34.6290489],[-77.1551325,34.6271489],[-77.1581325,34.6259489],[-77.1601325,34.6251489],[-77.1627325,34.6241489],[-77.1648325,34.6231489],[-77.1672325,34.6222489],[-77.1686325,34.6221489]]],[[[-77.166399,34.6496184],[-77.1672674,34.6489671],[-77.1669127,34.6489782],[-77.1707943,34.6463711],[-77.171163,34.6464075],[-77.1731548,34.6452125],[-77.1734485,34.6445271],[-77.1753088,34.6432543],[-77.1758962,34.6425689],[-77.1768753,34.6427647],[-77.1778544,34.6425689],[-77.1780502,34.6432543],[-77.173938,34.6458978],[-77.1725524,34.6465445],[-77.1725531,34.6465445],[-77.1725538,34.6465446],[-77.1724729,34.6467277],[-77.1713924,34.6474644],[-77.1685469,34.6488412],[-77.1677697,34.6496184],[-77.1645387,34.6518703],[-77.1606224,34.654318],[-77.1557269,34.6568637],[-77.1531812,34.6578428],[-77.1529854,34.6557867],[-77.1566081,34.6552971],[-77.1597412,34.6534369],[-77.1617973,34.6520661],[-77.1623847,34.6512828],[-77.1644408,34.6509891],[-77.166399,34.6496184]]],[[[-77.236134,34.5959907],[-77.2387633,34.5949958],[-77.2409466,34.5976158],[-77.2290526,34.607577],[-77.2286559,34.6074117],[-77.22788,34.6070884],[-77.2275223,34.6062455],[-77.2266707,34.604238],[-77.2269321,34.6035726],[-77.2276208,34.6018195],[-77.2300618,34.6004692],[-77.2316805,34.5995737],[-77.2316796,34.5995706],[-77.2316791,34.5995692],[-77.2316774,34.5995633],[-77.2324068,34.5993151],[-77.232456,34.599294],[-77.2325747,34.5992432],[-77.2325748,34.599243],[-77.2325749,34.5992429],[-77.232591,34.5992184],[-77.2350325,34.5979489],[-77.236134,34.5959907]]],[[[-77.1820769,34.6203124],[-77.1802325,34.6200489],[-77.1778761,34.6202213],[-77.1791869,34.6172719],[-77.1803325,34.6167489],[-77.1853325,34.6149489],[-77.1885325,34.6136489],[-77.1916325,34.6123489],[-77.1949325,34.6110489],[-77.2007325,34.6089489],[-77.2084325,34.6053489],[-77.2182325,34.6003489],[-77.2220325,34.5978489],[-77.2264325,34.5964489],[-77.2286325,34.5965489],[-77.2308325,34.5972489],[-77.2303713,34.5981098],[-77.228571,34.5987099],[-77.2259797,34.6006102],[-77.2258624,34.6012748],[-77.2143468,34.6073713],[-77.2019489,34.6128005],[-77.1991987,34.6126086],[-77.1968489,34.6130002],[-77.1941074,34.6145668],[-77.1897994,34.6159375],[-77.1871558,34.6177978],[-77.1842185,34.6201476],[-77.1820769,34.6203124]]],[[[-77.2103347,34.6196306],[-77.226196,34.607576],[-77.226897,34.6093824],[-77.2212253,34.6141324],[-77.2199016,34.615407],[-77.2180952,34.6166229],[-77.2140809,34.619756],[-77.2110457,34.6223995],[-77.2097729,34.6228891],[-77.2089896,34.6243577],[-77.2074881,34.6273608],[-77.2027874,34.6318874],[-77.2022421,34.6322014],[-77.1981548,34.6345547],[-77.1971182,34.6327776],[-77.2006723,34.6286311],[-77.2020686,34.6274675],[-77.2037424,34.625332],[-77.2103347,34.6196306]]],[[[-77.9377323,34.086249],[-77.9379323,34.082949],[-77.9397323,34.084349],[-77.9398323,34.086849],[-77.9403323,34.089949],[-77.9407323,34.092649],[-77.9410323,34.095749],[-77.9403323,34.099049],[-77.9377323,34.096049],[-77.9373323,34.092749],[-77.9374323,34.089849],[-77.9377323,34.086249]]],[[[-77.9302642,34.0980089],[-77.9309323,34.0959491],[-77.9321323,34.098749],[-77.9329323,34.101549],[-77.9328942,34.1026167],[-77.9328323,34.104349],[-77.9318323,34.106749],[-77.9305323,34.1101489],[-77.9302927,34.1083519],[-77.9301323,34.107149],[-77.9300152,34.1060367],[-77.9299323,34.105249],[-77.9295487,34.1038791],[-77.9292323,34.102749],[-77.9297323,34.099649],[-77.9302642,34.0980089]]],[[[-77.9345323,33.994049],[-77.9368323,33.9918491],[-77.9392323,33.991949],[-77.9390372,33.9933149],[-77.9389323,33.994049],[-77.9374323,33.996549],[-77.9374323,33.999349],[-77.9371572,34.0002293],[-77.9369323,34.000949],[-77.9367569,34.0016068],[-77.9365323,34.002449],[-77.9362323,34.004249],[-77.9334323,34.005149],[-77.9312323,34.004049],[-77.9320323,34.001749],[-77.931853,34.0004939],[-77.9317323,33.999649],[-77.9318117,33.9994789],[-77.9331323,33.996649],[-77.9345323,33.994049]]],[[[-77.9330323,34.039849],[-77.9343323,34.038349],[-77.9364323,34.040049],[-77.9368323,34.043749],[-77.9360323,34.047949],[-77.9345323,34.052049],[-77.9333323,34.050249],[-77.9334323,34.047449],[-77.9325323,34.044049],[-77.9330323,34.039849]]],[[[-77.8776323,34.080849],[-77.8807323,34.080449],[-77.8805664,34.0823853],[-77.8804323,34.083949],[-77.8803066,34.0843621],[-77.8797323,34.086249],[-77.8783323,34.087849],[-77.8638323,34.131949],[-77.8623323,34.134649],[-77.8618323,34.137349],[-77.8606323,34.139649],[-77.8600323,34.141249],[-77.8582365,34.146008],[-77.8580323,34.1465491],[-77.8542323,34.154049],[-77.8505323,34.158149],[-77.8483784,34.1610345],[-77.8452323,34.165249],[-77.8429578,34.1679941],[-77.8423323,34.168749],[-77.8359323,34.171749],[-77.8323323,34.172449],[-77.8280323,34.173149],[-77.8263323,34.174049],[-77.8225324,34.176249],[-77.8192323,34.179649],[-77.8165324,34.182149],[-77.8136323,34.182149],[-77.8111324,34.180249],[-77.8137323,34.178749],[-77.8154323,34.177749],[-77.8161836,34.177123],[-77.8172323,34.176249],[-77.8188588,34.1747774],[-77.8193323,34.174349],[-77.8206323,34.172849],[-77.8221323,34.171149],[-77.8248323,34.168349],[-77.826023,34.1669883],[-77.8269323,34.165949],[-77.8274671,34.1651469],[-77.8285323,34.163549],[-77.8303323,34.161049],[-77.8325323,34.157449],[-77.8341244,34.1548159],[-77.8351323,34.153149],[-77.8373323,34.149449],[-77.8390323,34.146349],[-77.8405323,34.143449],[-77.8409979,34.1426214],[-77.8414323,34.141849],[-77.8423349,34.1401223],[-77.8437323,34.137449],[-77.8450323,34.134749],[-77.8456226,34.1332733],[-77.8460323,34.132249],[-77.8478323,34.128449],[-77.8492323,34.125149],[-77.8507323,34.1217491],[-77.8527323,34.117749],[-77.8539998,34.1153632],[-77.8544323,34.114549],[-77.8546508,34.1141558],[-77.8554323,34.112749],[-77.8569323,34.109749],[-77.8572681,34.1090564],[-77.8585323,34.106449],[-77.8595749,34.1046705],[-77.8602323,34.103549],[-77.8633323,34.101149],[-77.8643323,34.098549],[-77.8652323,34.094149],[-77.8680323,34.091349],[-77.8689323,34.086749],[-77.8700323,34.084449],[-77.8713323,34.082249],[-77.8726511,34.0819664],[-77.8741323,34.081649],[-77.8776323,34.080849]]],[[[-76.7417326,34.9285488],[-76.7437326,34.9277488],[-76.7441297,34.9280982],[-76.7462326,34.9299488],[-76.7442326,34.9309488],[-76.7407326,34.9315488],[-76.7380326,34.9299488],[-76.7417326,34.9285488]]],[[[-77.1032078,34.6964257],[-77.1042056,34.694715],[-77.105486,34.6951806],[-77.1075011,34.6973397],[-77.1076115,34.6986641],[-77.1068998,34.6989014],[-77.1053446,34.6979492],[-77.1042056,34.6974235],[-77.1032078,34.6964257]]],[[[-76.5784327,34.7143488],[-76.5777327,34.7125488],[-76.5749327,34.7127488],[-76.5722327,34.7125488],[-76.5700327,34.7124488],[-76.5680327,34.7118488],[-76.5655327,34.7112488],[-76.5636327,34.7096488],[-76.5626327,34.7072488],[-76.5656327,34.7053488],[-76.5641327,34.7026488],[-76.5626327,34.7018488],[-76.5611327,34.7010488],[-76.5585327,34.7008488],[-76.5565327,34.6996488],[-76.5520327,34.7004488],[-76.5501327,34.6972488],[-76.5469327,34.6972488],[-76.5448327,34.6963488],[-76.5420327,34.6962488],[-76.5380327,34.6951488],[-76.5342327,34.6944488],[-76.5301327,34.6934488],[-76.5278327,34.6923488],[-76.5257327,34.6912488],[-76.5255327,34.6876488],[-76.5268327,34.6845488],[-76.5299327,34.6851488],[-76.5321327,34.6861488],[-76.5341327,34.6871488],[-76.5362327,34.6879488],[-76.5391327,34.6886488],[-76.5433327,34.6894488],[-76.5474327,34.6903488],[-76.5517327,34.6915488],[-76.5555327,34.6926488],[-76.5589327,34.6934488],[-76.5623327,34.6942488],[-76.5647327,34.6947488],[-76.5671327,34.6954488],[-76.5706327,34.6961488],[-76.5740327,34.6970488],[-76.5770327,34.6978488],[-76.5795327,34.6986488],[-76.5827327,34.7000488],[-76.5836327,34.7026488],[-76.5838327,34.7046488],[-76.5850327,34.7068488],[-76.5841327,34.7092488],[-76.5867327,34.7121488],[-76.5843327,34.7127488],[-76.5823327,34.7137488],[-76.5803327,34.7135488],[-76.5784327,34.7143488]]],[[[-76.7285327,34.7039488],[-76.7181327,34.7027488],[-76.7107327,34.7039488],[-76.7077052,34.7042011],[-76.7071327,34.7042488],[-76.7044327,34.7047488],[-76.7032327,34.7063488],[-76.7015327,34.7095488],[-76.6996327,34.7121488],[-76.6981327,34.7120488],[-76.6966327,34.7107488],[-76.6954327,34.7097488],[-76.6932327,34.7075488],[-76.6918327,34.7059488],[-76.6897327,34.7033488],[-76.6869327,34.7010488],[-76.6827327,34.6979488],[-76.6808327,34.6994488],[-76.6778327,34.6988488],[-76.6763327,34.6964488],[-76.6765327,34.6938488],[-76.6788327,34.6934488],[-76.6813327,34.6934488],[-76.6842327,34.6935488],[-76.6871327,34.6934488],[-76.6900327,34.6933488],[-76.6919327,34.6933488],[-76.6942327,34.6935488],[-76.6968327,34.6939488],[-76.6996327,34.6943488],[-76.7017327,34.6946488],[-76.7041327,34.6950488],[-76.7063327,34.6952488],[-76.7099327,34.6949488],[-76.7134327,34.6948488],[-76.7174327,34.6954488],[-76.7208327,34.6959488],[-76.7236327,34.6965488],[-76.7268327,34.6971488],[-76.7296327,34.6972488],[-76.7332327,34.6974488],[-76.7379327,34.6975488],[-76.7412326,34.6976488],[-76.7450326,34.6977488],[-76.7485326,34.6977488],[-76.7513326,34.6977488],[-76.7549326,34.6976488],[-76.7572326,34.6976488],[-76.7607326,34.6975488],[-76.7633326,34.6974488],[-76.7706326,34.6972488],[-76.7740326,34.6970488],[-76.7778326,34.6968488],[-76.7804326,34.6966488],[-76.7825326,34.6965488],[-76.7849326,34.6963488],[-76.7872326,34.6962488],[-76.7896326,34.6961488],[-76.7934326,34.6959488],[-76.7962326,34.6957488],[-76.7992326,34.6955488],[-76.8024326,34.6952488],[-76.8058326,34.6949488],[-76.8102326,34.6945488],[-76.8128326,34.6944488],[-76.8160326,34.6940488],[-76.8207326,34.6936488],[-76.8243326,34.6932488],[-76.8269326,34.6929488],[-76.8295326,34.6926488],[-76.8327326,34.6923488],[-76.8350326,34.6921488],[-76.8385326,34.6917488],[-76.8424326,34.6913488],[-76.8465326,34.6909488],[-76.8488326,34.6906488],[-76.8511326,34.6903488],[-76.8549326,34.6898488],[-76.8577326,34.6895488],[-76.8602326,34.6892488],[-76.8634326,34.6887488],[-76.8668326,34.6883488],[-76.8706326,34.6879489],[-76.8735326,34.6875489],[-76.8767326,34.6872489],[-76.8801326,34.6867489],[-76.8837326,34.6863489],[-76.8868326,34.6859489],[-76.8894326,34.6855489],[-76.8925326,34.6851489],[-76.8962326,34.6845489],[-76.8990326,34.6841489],[-76.9011326,34.6838489],[-76.9042326,34.6832489],[-76.9075326,34.6826489],[-76.9100326,34.6823489],[-76.9130326,34.6819489],[-76.9157326,34.6815489],[-76.9183326,34.6811489],[-76.9203326,34.6808489],[-76.9224326,34.6805489],[-76.9258326,34.6801489],[-76.9301326,34.6794489],[-76.9337326,34.6788489],[-76.9363326,34.6784489],[-76.9390326,34.6780489],[-76.9420326,34.6775489],[-76.9452326,34.6770489],[-76.9481326,34.6765489],[-76.9515326,34.6760489],[-76.9545326,34.6754489],[-76.9576326,34.6749489],[-76.9614326,34.6744489],[-76.9650326,34.6738489],[-76.9693326,34.6731489],[-76.9724326,34.6727489],[-76.9753326,34.6722489],[-76.9778326,34.6717489],[-76.9801326,34.6713489],[-76.9826326,34.6708489],[-76.9851326,34.6704489],[-76.9872326,34.6700489],[-76.9893326,34.6696489],[-76.9919326,34.6691489],[-76.9951326,34.6686489],[-76.9982326,34.6680489],[-77.0006326,34.6676489],[-77.0030326,34.6672489],[-77.0064326,34.6665489],[-77.0103326,34.6657489],[-77.0141326,34.6648489],[-77.0191326,34.6638489],[-77.0229326,34.6629489],[-77.0271326,34.6620489],[-77.0317326,34.6609489],[-77.0353326,34.6601489],[-77.0391326,34.6592489],[-77.0421326,34.6585489],[-77.0451326,34.6578489],[-77.0487326,34.6569489],[-77.0508326,34.6564489],[-77.0534326,34.6558489],[-77.0567326,34.6549489],[-77.0594326,34.6542489],[-77.0621326,34.6535489],[-77.0654326,34.6527489],[-77.0694326,34.6516489],[-77.0735325,34.6506489],[-77.0763161,34.6498757],[-77.0926459,34.6419201],[-77.0959051,34.6436634],[-77.100355,34.6460436],[-77.1022304,34.6470467],[-77.1022309,34.6470499],[-77.1022315,34.6470531],[-77.1022519,34.6471758],[-77.1022524,34.647176],[-77.1022528,34.6471763],[-77.1047758,34.6485279],[-77.1073418,34.6506662],[-77.1073418,34.6506688],[-77.1073418,34.6506714],[-77.1073418,34.6528045],[-77.1043482,34.6538023],[-77.1029506,34.6538023],[-77.088779,34.6562741],[-77.0883325,34.6565489],[-77.0863325,34.6580489],[-77.0835325,34.6583489],[-77.0810325,34.6595489],[-77.0785325,34.6604489],[-77.0758325,34.6615489],[-77.0730325,34.6611489],[-77.0702326,34.6625489],[-77.0662326,34.6641489],[-77.0635326,34.6649489],[-77.0635342,34.6649521],[-77.0635359,34.6649553],[-77.0645326,34.6668489],[-77.0645319,34.6668493],[-77.0645313,34.6668497],[-77.0637108,34.6673718],[-77.0637107,34.6673718],[-77.0634326,34.6675489],[-77.0620327,34.6671489],[-77.0620326,34.6671489],[-77.0620326,34.6671489],[-77.0614344,34.6648558],[-77.0614335,34.6648523],[-77.0614326,34.6648489],[-77.0586326,34.6653489],[-77.0556326,34.6662489],[-77.0518326,34.6671489],[-77.0485326,34.6679489],[-77.0455326,34.6689489],[-77.0435326,34.6695489],[-77.0409326,34.6700489],[-77.0371326,34.6707489],[-77.0351326,34.6709489],[-77.0322326,34.6715489],[-77.0287326,34.6721489],[-77.0256326,34.6728489],[-77.0229326,34.6734489],[-77.0203326,34.6741489],[-77.0172326,34.6753489],[-77.0142326,34.6758489],[-77.0133326,34.6728489],[-77.0106326,34.6723489],[-77.0083326,34.6731489],[-77.0061326,34.6730489],[-77.0020326,34.6722489],[-77.0000326,34.6731489],[-76.9975326,34.6734489],[-76.9959326,34.6726489],[-76.9935326,34.6731489],[-76.9901326,34.6737489],[-76.9855326,34.6749489],[-76.9824326,34.6760489],[-76.9791326,34.6758489],[-76.9755326,34.6767489],[-76.9721326,34.6768489],[-76.9689326,34.6768489],[-76.9655326,34.6774489],[-76.9629326,34.6780489],[-76.9600326,34.6782489],[-76.9570326,34.6782489],[-76.9535326,34.6783489],[-76.9510326,34.6786489],[-76.9469326,34.6795489],[-76.9461999,34.6795907],[-76.9434326,34.6797489],[-76.9400326,34.6801489],[-76.9368326,34.6806489],[-76.9352326,34.6810489],[-76.9332326,34.6815489],[-76.9306326,34.6823489],[-76.9282326,34.6824489],[-76.9252326,34.6825489],[-76.9207326,34.6829489],[-76.9172326,34.6833489],[-76.9140326,34.6839489],[-76.9106326,34.6843489],[-76.9084326,34.6850489],[-76.9051326,34.6863489],[-76.9016326,34.6881489],[-76.8990326,34.6894489],[-76.8958326,34.6904489],[-76.8924326,34.6901489],[-76.8897326,34.6907489],[-76.8870326,34.6902489],[-76.8849326,34.6896489],[-76.8814326,34.6898488],[-76.8792326,34.6903488],[-76.8789625,34.6904453],[-76.8764326,34.6913488],[-76.8740326,34.6922488],[-76.8712326,34.6922488],[-76.8689326,34.6930488],[-76.8663326,34.6931488],[-76.8635326,34.6935488],[-76.8608326,34.6934488],[-76.8581326,34.6929488],[-76.8554326,34.6938488],[-76.8524326,34.6937488],[-76.8494326,34.6945488],[-76.8453326,34.6949488],[-76.8405326,34.6963488],[-76.8371326,34.6978488],[-76.8346326,34.6991488],[-76.8319326,34.7009488],[-76.8293326,34.7021488],[-76.8261326,34.7034488],[-76.8234326,34.7031488],[-76.8214326,34.7044488],[-76.8185326,34.7036488],[-76.8158326,34.7032488],[-76.8126326,34.7029488],[-76.8089326,34.7031488],[-76.8056326,34.7035488],[-76.8018326,34.7030488],[-76.7980326,34.7034488],[-76.7947326,34.7037488],[-76.7913326,34.7043488],[-76.7874326,34.7037488],[-76.7834326,34.7037488],[-76.7802326,34.7038488],[-76.7766326,34.7030488],[-76.7728326,34.7018488],[-76.7713326,34.7017488],[-76.7689326,34.7032488],[-76.7686326,34.7061488],[-76.7686337,34.7061515],[-76.7686347,34.7061541],[-76.7698326,34.7092488],[-76.7698324,34.7092492],[-76.7698321,34.7092495],[-76.7667326,34.7131488],[-76.7597326,34.7162488],[-76.7503326,34.7155488],[-76.7443326,34.7116488],[-76.7415326,34.7106488],[-76.7383326,34.7102488],[-76.7338327,34.7090488],[-76.7313327,34.7071488],[-76.7285327,34.7039488]]],[[[-76.6037327,34.6924488],[-76.6055433,34.6906835],[-76.6077327,34.6885488],[-76.6082691,34.6883395],[-76.6118327,34.6869488],[-76.6138327,34.6878488],[-76.6144591,34.6896653],[-76.6148327,34.6907488],[-76.6178959,34.6901039],[-76.6205327,34.6895488],[-76.624266,34.6903941],[-76.6258327,34.6907489],[-76.6253327,34.6938488],[-76.6169327,34.6960488],[-76.6121327,34.6984488],[-76.6053327,34.6996488],[-76.6001327,34.7010488],[-76.5974327,34.7010488],[-76.5971985,34.7002058],[-76.5964327,34.6974489],[-76.6005327,34.6941488],[-76.6037327,34.6924488]]],[[[-76.6722327,34.7217488],[-76.6715345,34.7191556],[-76.6715336,34.7191522],[-76.6715327,34.7191488],[-76.6712327,34.7167488],[-76.6727327,34.7155488],[-76.6734327,34.7174488],[-76.6746327,34.7200488],[-76.6765327,34.7200488],[-76.6789327,34.7214488],[-76.6801327,34.7211488],[-76.6812299,34.7195528],[-76.6812313,34.7195508],[-76.6812327,34.7195488],[-76.6790336,34.7181494],[-76.6790331,34.7181491],[-76.6790327,34.7181488],[-76.6787327,34.7160488],[-76.6803327,34.7127488],[-76.6808327,34.7094488],[-76.6803327,34.7069488],[-76.6832327,34.7076488],[-76.6863327,34.7095488],[-76.6877327,34.7120488],[-76.6898327,34.7142488],[-76.6898324,34.714251],[-76.6898321,34.7142532],[-76.6893327,34.7179488],[-76.6859327,34.7200488],[-76.6859346,34.7200517],[-76.6859365,34.7200545],[-76.6872269,34.7219404],[-76.6872315,34.7219471],[-76.6872327,34.7219488],[-76.6872314,34.7219512],[-76.6865327,34.7232488],[-76.6850327,34.7245488],[-76.6845084,34.7249982],[-76.6845039,34.7250021],[-76.6844993,34.725006],[-76.6822327,34.7269488],[-76.6809327,34.7280488],[-76.6798327,34.7287488],[-76.6785327,34.7289488],[-76.6751327,34.7294488],[-76.6712327,34.7289488],[-76.6697693,34.7258131],[-76.6697677,34.7258096],[-76.669766,34.725806],[-76.6691355,34.7244549],[-76.6691341,34.7244519],[-76.6691327,34.7244488],[-76.6707505,34.7230397],[-76.6707542,34.7230365],[-76.6707579,34.7230333],[-76.6722326,34.7217489],[-76.6722327,34.7217488]]],[[[-76.5205327,34.7029488],[-76.5229327,34.7020488],[-76.5252327,34.7020488],[-76.5277327,34.7021488],[-76.5299327,34.7017488],[-76.5299742,34.7008777],[-76.5300327,34.6996488],[-76.5336327,34.7012488],[-76.5380327,34.7017488],[-76.5419327,34.7010488],[-76.5452327,34.7013488],[-76.5464693,34.7043521],[-76.5466327,34.7047488],[-76.5448327,34.7068488],[-76.5471327,34.7086488],[-76.5467327,34.7108488],[-76.5434327,34.7112488],[-76.5409327,34.7113488],[-76.5382327,34.7113488],[-76.5349327,34.7104488],[-76.5322327,34.7098488],[-76.5294327,34.7094488],[-76.5269327,34.7088488],[-76.5246277,34.7087635],[-76.5242327,34.7087488],[-76.5226912,34.7086991],[-76.5211327,34.7086488],[-76.5198327,34.7057488],[-76.5201015,34.7046738],[-76.5205327,34.7029488]]],[[[-76.6036201,34.7082297],[-76.6063327,34.7080488],[-76.6082327,34.7095488],[-76.6065327,34.7128488],[-76.6041327,34.7155488],[-76.5991327,34.7176488],[-76.5969327,34.7162489],[-76.5969327,34.7123488],[-76.5984327,34.7104488],[-76.6000946,34.7092716],[-76.6008327,34.7087488],[-76.600983,34.7086987],[-76.6020327,34.7083488],[-76.6032561,34.7082547],[-76.6033327,34.7082488],[-76.6036201,34.7082297]]],[[[-76.3454328,34.8235488],[-76.3525328,34.8169488],[-76.3552328,34.8148488],[-76.3606328,34.8097488],[-76.3634328,34.8072488],[-76.3670328,34.8037488],[-76.3724328,34.7989488],[-76.3749328,34.7967488],[-76.3781328,34.7936488],[-76.3810328,34.7907488],[-76.3839328,34.7877488],[-76.3871328,34.7846488],[-76.3885328,34.7831488],[-76.3898328,34.7815488],[-76.3911328,34.7802488],[-76.3931328,34.7779488],[-76.3956328,34.7750488],[-76.3991328,34.7711488],[-76.4047327,34.7648488],[-76.4068327,34.7622488],[-76.4086327,34.7604488],[-76.4121327,34.7567488],[-76.4133327,34.7552488],[-76.4159327,34.7524488],[-76.4178327,34.7504488],[-76.4202327,34.7478488],[-76.4229327,34.7449488],[-76.4243327,34.7434488],[-76.4264327,34.7409488],[-76.4313327,34.7353488],[-76.4345327,34.7317488],[-76.4362327,34.7300488],[-76.4393327,34.7265488],[-76.4426327,34.7227488],[-76.4449327,34.7200488],[-76.4465327,34.7184488],[-76.4495327,34.7154488],[-76.4527327,34.7114488],[-76.4548327,34.7091488],[-76.4567327,34.7069488],[-76.4589327,34.7043488],[-76.4614327,34.7011488],[-76.4638327,34.6982488],[-76.4665327,34.6952488],[-76.4701327,34.6909488],[-76.4721327,34.6886488],[-76.4755327,34.6863488],[-76.4762327,34.6833488],[-76.4783327,34.6806488],[-76.4827327,34.6760488],[-76.4845327,34.6742488],[-76.4861327,34.6716488],[-76.4877327,34.6697488],[-76.4905327,34.6662488],[-76.4944327,34.6614488],[-76.4964327,34.6585488],[-76.4996327,34.6537488],[-76.5015327,34.6512488],[-76.5035327,34.6485488],[-76.5066327,34.6430488],[-76.5076327,34.6409488],[-76.5091327,34.6387489],[-76.5111327,34.6348489],[-76.5136327,34.6310489],[-76.5155327,34.6277489],[-76.5178327,34.6244489],[-76.5195327,34.6217489],[-76.5216327,34.6193489],[-76.5232327,34.6167489],[-76.5244327,34.6147489],[-76.5255327,34.6120489],[-76.5289327,34.6102489],[-76.5293327,34.6075489],[-76.5290327,34.6055489],[-76.5309327,34.6031489],[-76.5308327,34.5988489],[-76.5326327,34.5945489],[-76.5354327,34.5851489],[-76.5375327,34.5863489],[-76.5373327,34.5914489],[-76.5385327,34.5933489],[-76.5395327,34.5960489],[-76.5408327,34.5973489],[-76.5421327,34.5997489],[-76.5442327,34.6019489],[-76.5458327,34.6043489],[-76.5481327,34.6050489],[-76.5501327,34.6078489],[-76.5524327,34.6112489],[-76.5539327,34.6134489],[-76.5551327,34.6156489],[-76.5554327,34.6189489],[-76.5542327,34.6225489],[-76.5542327,34.6250489],[-76.5563327,34.6284489],[-76.5539327,34.6320489],[-76.5503327,34.6332489],[-76.5486327,34.6325489],[-76.5497327,34.6304489],[-76.5494327,34.6283489],[-76.5500327,34.6253489],[-76.5507327,34.6215489],[-76.5503327,34.6179489],[-76.5486327,34.6142489],[-76.5445327,34.6137489],[-76.5411327,34.6141489],[-76.5382327,34.6135489],[-76.5382327,34.6107489],[-76.5363327,34.6099489],[-76.5340327,34.6102489],[-76.5324327,34.6116489],[-76.5300327,34.6139489],[-76.5285327,34.6150489],[-76.5275327,34.6191489],[-76.5277327,34.6217489],[-76.5243327,34.6242489],[-76.5220327,34.6280489],[-76.5209327,34.6312489],[-76.5194327,34.6336489],[-76.5170327,34.6363489],[-76.5148327,34.6390489],[-76.5131327,34.6413488],[-76.5118327,34.6435488],[-76.5106327,34.6457488],[-76.5089327,34.6479488],[-76.5087327,34.6504488],[-76.5073327,34.6533488],[-76.5040327,34.6585488],[-76.5007327,34.6617488],[-76.5000327,34.6637488],[-76.4980327,34.6652488],[-76.4946327,34.6675488],[-76.4951327,34.6695488],[-76.4980327,34.6705488],[-76.5018326,34.6727488],[-76.4988327,34.6727489],[-76.4983327,34.6742489],[-76.4960327,34.6749488],[-76.4935327,34.6735488],[-76.4905328,34.6746488],[-76.4938327,34.6755489],[-76.4926107,34.6778402],[-76.4922327,34.6785488],[-76.4888327,34.6794488],[-76.4868327,34.6794488],[-76.4851381,34.6796371],[-76.4841327,34.6797489],[-76.4845477,34.6809939],[-76.4847327,34.6815488],[-76.4850725,34.6821048],[-76.4858327,34.6833488],[-76.4884327,34.6860488],[-76.4865327,34.6885488],[-76.4847744,34.6896938],[-76.4822327,34.6913488],[-76.4803327,34.6896488],[-76.4789327,34.6921488],[-76.4812327,34.6930488],[-76.4820268,34.6943567],[-76.4829327,34.6958488],[-76.4810327,34.6977488],[-76.4780327,34.6990488],[-76.4769327,34.7004488],[-76.4748327,34.7006489],[-76.4748944,34.7012043],[-76.4750327,34.7024488],[-76.4724327,34.7016488],[-76.4703805,34.7034079],[-76.4689327,34.7046488],[-76.4709327,34.7062488],[-76.4689759,34.7081078],[-76.4689327,34.7081488],[-76.4661327,34.7063488],[-76.4648474,34.7062354],[-76.4627328,34.7060488],[-76.4632327,34.7093488],[-76.4651327,34.7097488],[-76.4681327,34.7098488],[-76.4697327,34.7118488],[-76.4672327,34.7129488],[-76.4647327,34.7126489],[-76.4648278,34.7134093],[-76.4650327,34.7150488],[-76.4643504,34.7163225],[-76.4635327,34.7178488],[-76.4622721,34.7189451],[-76.4612327,34.7198489],[-76.4616327,34.7214488],[-76.4593327,34.7225488],[-76.4578997,34.7230948],[-76.4572327,34.7233488],[-76.4544327,34.7244488],[-76.4505327,34.7251488],[-76.4463327,34.7278488],[-76.4437327,34.7308488],[-76.4416025,34.7307636],[-76.4412328,34.7307488],[-76.4404327,34.7324488],[-76.4405054,34.7328851],[-76.4407327,34.7342488],[-76.4408327,34.7358488],[-76.4394327,34.7365488],[-76.4393327,34.7385488],[-76.4410104,34.7388684],[-76.4414327,34.7389488],[-76.4409317,34.7393663],[-76.4396327,34.7404488],[-76.4376327,34.7417488],[-76.4349327,34.7430488],[-76.4396327,34.7466488],[-76.4378327,34.7502488],[-76.4354327,34.7502488],[-76.4337418,34.7483969],[-76.4333328,34.7479489],[-76.4317327,34.7485488],[-76.4284328,34.7490488],[-76.4284931,34.7483552],[-76.4286327,34.7467488],[-76.4288719,34.7444371],[-76.4289327,34.7438489],[-76.4272327,34.7450488],[-76.4266463,34.7461379],[-76.4258327,34.7476488],[-76.4249327,34.7497488],[-76.4265541,34.7509229],[-76.4278327,34.7518488],[-76.4284946,34.7520293],[-76.4300327,34.7524488],[-76.4321327,34.7515488],[-76.4328835,34.7543016],[-76.4330327,34.7548488],[-76.4365328,34.7548489],[-76.4370984,34.7554774],[-76.4383327,34.7568488],[-76.4392327,34.7586488],[-76.4381167,34.7602113],[-76.4377327,34.7607488],[-76.4356327,34.7618488],[-76.4347165,34.7617371],[-76.4315327,34.7613488],[-76.4320327,34.7643488],[-76.4305327,34.7652488],[-76.4289327,34.7641488],[-76.4263327,34.7629488],[-76.4249327,34.7608489],[-76.4241327,34.7641488],[-76.422661,34.7621048],[-76.4223327,34.7616488],[-76.4225509,34.759394],[-76.4226327,34.7585488],[-76.4222327,34.7562488],[-76.4207327,34.7549488],[-76.4180327,34.7563488],[-76.4170327,34.7580488],[-76.4161327,34.7611488],[-76.4137327,34.7598488],[-76.4136327,34.7617488],[-76.4121327,34.7618488],[-76.4100327,34.7639488],[-76.4080327,34.7667488],[-76.4116327,34.7685488],[-76.4127327,34.7723488],[-76.4110327,34.7748488],[-76.4079327,34.7763488],[-76.4055327,34.7782488],[-76.4036327,34.7793488],[-76.4013327,34.7748488],[-76.3992328,34.7763488],[-76.4004089,34.7792891],[-76.4006327,34.7798488],[-76.4019327,34.7838488],[-76.4019327,34.7874488],[-76.4010327,34.7908488],[-76.3986328,34.7930488],[-76.3973328,34.7912488],[-76.3978327,34.7889488],[-76.3961328,34.7863488],[-76.3946327,34.7824488],[-76.3920328,34.7855488],[-76.3916142,34.7864181],[-76.3907328,34.7882488],[-76.3899328,34.7906488],[-76.3873328,34.7927488],[-76.3830328,34.7950488],[-76.3809328,34.7978488],[-76.3792328,34.8004488],[-76.3777217,34.8019599],[-76.3774328,34.8022488],[-76.3755488,34.8046465],[-76.3752328,34.8050488],[-76.3734328,34.8064488],[-76.3715328,34.8066488],[-76.37142,34.8081711],[-76.3713327,34.8093488],[-76.3700736,34.8104935],[-76.3680328,34.8123488],[-76.3665163,34.8132587],[-76.3650328,34.8141488],[-76.3641328,34.8172488],[-76.3636597,34.8196141],[-76.3635328,34.8202488],[-76.3634328,34.8231488],[-76.3602328,34.8243488],[-76.3586328,34.8249488],[-76.3582713,34.8247681],[-76.3572328,34.8242488],[-76.3560328,34.8218488],[-76.3537328,34.8254488],[-76.3532647,34.8264276],[-76.3526327,34.8277488],[-76.351392,34.8278481],[-76.3501328,34.8279488],[-76.3481577,34.8285131],[-76.3473328,34.8287488],[-76.3443327,34.8313488],[-76.3417328,34.8342488],[-76.3394328,34.8361488],[-76.3365327,34.8387488],[-76.334616,34.8403233],[-76.3337328,34.8410488],[-76.3311394,34.8426817],[-76.3303855,34.8490897],[-76.3270923,34.8509067],[-76.3240263,34.8498846],[-76.3236906,34.8488777],[-76.3218328,34.8479488],[-76.3239328,34.8458488],[-76.3248328,34.8442488],[-76.3268328,34.8418488],[-76.3305328,34.8392488],[-76.3316328,34.8377488],[-76.3342328,34.8354488],[-76.3364328,34.8338488],[-76.3380328,34.8314488],[-76.3405328,34.8294488],[-76.3419328,34.8271488],[-76.3434328,34.8254488],[-76.3454328,34.8235488]]],[[[-76.6109327,34.7152488],[-76.6138327,34.7152488],[-76.6142327,34.7188488],[-76.6133327,34.7229488],[-76.6125047,34.7231051],[-76.6080327,34.7239489],[-76.6104327,34.7273488],[-76.6121326,34.7285488],[-76.6077327,34.7294488],[-76.6051327,34.7287488],[-76.6027327,34.7258488],[-76.6005327,34.7239488],[-76.5962327,34.7236488],[-76.5962327,34.7220488],[-76.5968885,34.7216639],[-76.6008327,34.7193488],[-76.6058327,34.7169488],[-76.6109327,34.7152488]]],[[[-76.6883327,34.7337488],[-76.6943327,34.7323488],[-76.6979405,34.7328978],[-76.6989327,34.7330488],[-76.7008843,34.7335368],[-76.7037327,34.7342488],[-76.7037327,34.7371488],[-76.7010327,34.7410488],[-76.6960327,34.7434488],[-76.6872327,34.7456488],[-76.6850327,34.7479488],[-76.6813327,34.7480488],[-76.68099,34.7466293],[-76.6806327,34.7451488],[-76.6812327,34.7421488],[-76.6825306,34.7410036],[-76.6829327,34.7406488],[-76.6857327,34.7377488],[-76.6861327,34.7364489],[-76.6883327,34.7337488]]],[[[-119.534318,33.284602],[-119.5316087,33.2839309],[-119.5283126,33.2845533],[-119.5248843,33.283252],[-119.5226518,33.2818935],[-119.5182486,33.2789943],[-119.5148817,33.2772066],[-119.5114501,33.2753386],[-119.5082679,33.2730809],[-119.5048944,33.2726909],[-119.5023377,33.2701394],[-119.4996412,33.2682053],[-119.4954687,33.2658719],[-119.4921987,33.2660013],[-119.4864525,33.266529],[-119.4832861,33.2642979],[-119.4782346,33.2623332],[-119.4749305,33.2611259],[-119.4723537,33.2600343],[-119.4677622,33.2592793],[-119.4652021,33.2589042],[-119.4615306,33.2567934],[-119.4592283,33.2554529],[-119.4563194,33.2528019],[-119.4540039,33.2502919],[-119.4514307,33.2483511],[-119.4488277,33.2464063],[-119.4461687,33.2435473],[-119.4435226,33.2409512],[-119.4406222,33.2379488],[-119.4376242,33.2346178],[-119.4355402,33.2326718],[-119.4331697,33.2316873],[-119.4307862,33.2309203],[-119.4282117,33.2302443],[-119.4250461,33.2289539],[-119.4284297,33.2284063],[-119.4344832,33.2263393],[-119.4372467,33.2231238],[-119.4386275,33.2198358],[-119.4429972,33.2191188],[-119.4468847,33.2193688],[-119.4494047,33.2188873],[-119.4523737,33.2180623],[-119.4546847,33.2166754],[-119.4586601,33.2157235],[-119.464175,33.2153983],[-119.467682,33.214785],[-119.4710956,33.2146771],[-119.4739012,33.2150915],[-119.4765507,33.2154829],[-119.478975,33.2164887],[-119.4838087,33.2184663],[-119.4896659,33.2194021],[-119.4932887,33.2195143],[-119.4977755,33.2184535],[-119.5002356,33.2202029],[-119.5034207,33.2206993],[-119.5075542,33.2224143],[-119.5105735,33.2230129],[-119.5138415,33.2236384],[-119.5167623,33.2260006],[-119.5211832,33.2286644],[-119.5244378,33.2292614],[-119.5298227,33.2307963],[-119.535825,33.2312401],[-119.5400245,33.231958],[-119.5435008,33.2318071],[-119.5463685,33.2337646],[-119.5492467,33.2362556],[-119.5517896,33.2375464],[-119.5554415,33.2403413],[-119.5581465,33.2429083],[-119.5623597,33.2460038],[-119.5647794,33.2471925],[-119.5651273,33.2503214],[-119.5650506,33.2528671],[-119.5686547,33.256368],[-119.5723906,33.2586417],[-119.5726172,33.2638243],[-119.573461,33.2673951],[-119.5755964,33.2708576],[-119.5773979,33.2756914],[-119.5783667,33.2780159],[-119.5755839,33.2777108],[-119.5727336,33.2762156],[-119.5681853,33.2746344],[-119.5642297,33.2718012],[-119.5609797,33.2713843],[-119.5576388,33.2726606],[-119.5550654,33.2738386],[-119.5527223,33.277002],[-119.5507897,33.2802033],[-119.5482682,33.2802544],[-119.5441857,33.2803003],[-119.54091,33.2810493],[-119.537712,33.2815743],[-119.534318,33.284602]]],[[[-77.9585323,33.9147491],[-77.9583754,33.9180436],[-77.9583323,33.9189491],[-77.9569323,33.9213491],[-77.9542323,33.9223491],[-77.9513323,33.9209491],[-77.950813,33.9197373],[-77.9501323,33.9181491],[-77.9502323,33.9152491],[-77.9479323,33.9132491],[-77.9497323,33.9102491],[-77.9492323,33.9080491],[-77.9495736,33.9063914],[-77.9499323,33.9046491],[-77.9507323,33.9014491],[-77.9513205,33.8993483],[-77.9514323,33.8989491],[-77.9520323,33.8962491],[-77.9528323,33.8936491],[-77.9535323,33.8913491],[-77.9539366,33.8898835],[-77.9543323,33.8884491],[-77.9547076,33.8866979],[-77.9549323,33.8856491],[-77.9552852,33.884036],[-77.9556323,33.8824491],[-77.9565323,33.8790491],[-77.9574323,33.8750491],[-77.9580323,33.8713491],[-77.9584323,33.8678491],[-77.9588323,33.8649491],[-77.9592323,33.8623491],[-77.9593069,33.8619884],[-77.9598323,33.8594491],[-77.9601323,33.8566491],[-77.9602323,33.8530491],[-77.9598122,33.8510684],[-77.9595323,33.8497491],[-77.9595637,33.8494873],[-77.9598323,33.8472491],[-77.9594323,33.8446491],[-77.9600323,33.8417491],[-77.9626323,33.8422491],[-77.9649323,33.8435491],[-77.9675323,33.8450491],[-77.9701323,33.8461491],[-77.9739323,33.8473491],[-77.9778323,33.8488491],[-77.9813323,33.8501491],[-77.9853323,33.8515491],[-77.9890323,33.8526491],[-77.9919323,33.8535491],[-77.9955323,33.8546491],[-77.9987323,33.8557491],[-77.9999978,33.8562093],[-78.0009323,33.8565491],[-78.0033323,33.8576491],[-78.0049323,33.8586491],[-78.0067323,33.8601491],[-78.0085323,33.8616491],[-78.0092323,33.8642491],[-78.0088323,33.8678491],[-78.0064323,33.8699491],[-78.0038323,33.8728491],[-78.0017323,33.8767491],[-77.9999978,33.8780894],[-77.9999095,33.8781576],[-77.9995323,33.8784491],[-77.9979314,33.8803167],[-77.9977323,33.8805491],[-77.9968943,33.8803726],[-77.9958323,33.8801491],[-77.9944323,33.8827491],[-77.9930323,33.8853491],[-77.9918486,33.8880864],[-77.9914323,33.8890491],[-77.9890323,33.8885491],[-77.9876323,33.8874491],[-77.9871323,33.8860491],[-77.9845323,33.8842491],[-77.9839798,33.8844859],[-77.9810324,33.8857491],[-77.9821096,33.8865922],[-77.9833323,33.8875491],[-77.9845362,33.8882899],[-77.9859323,33.8891491],[-77.9884323,33.8914491],[-77.9885076,33.891951],[-77.9887323,33.8934491],[-77.9879251,33.8940256],[-77.9866323,33.8949491],[-77.9844323,33.8949491],[-77.9832355,33.8945003],[-77.9828323,33.8943491],[-77.9816235,33.8954428],[-77.9807323,33.8962491],[-77.9799348,33.8964769],[-77.9786323,33.8968491],[-77.9764323,33.8968491],[-77.9742323,33.898949],[-77.9736128,33.8989628],[-77.9697323,33.8990491],[-77.9685835,33.8973833],[-77.9677323,33.8961491],[-77.9683323,33.8936491],[-77.9682198,33.8929514],[-77.9678323,33.8905491],[-77.9695323,33.8876491],[-77.9682323,33.8851491],[-77.9677356,33.8848899],[-77.9659323,33.8839491],[-77.9646323,33.8850491],[-77.9637323,33.8881491],[-77.9610323,33.8896491],[-77.9582323,33.8918491],[-77.9572323,33.8932491],[-77.9563323,33.8949491],[-77.9576323,33.8984491],[-77.956749,33.9012595],[-77.9565323,33.9019491],[-77.9557169,33.9028227],[-77.9551323,33.9034491],[-77.955022,33.9037012],[-77.9544323,33.9050491],[-77.9549859,33.9072635],[-77.9550323,33.9074491],[-77.9586323,33.9088491],[-77.9581097,33.9104917],[-77.9579323,33.9110491],[-77.9582262,33.9128613],[-77.9585323,33.9147491]]],[[[-78.0092323,33.9077491],[-78.0115323,33.9053491],[-78.0133323,33.9062491],[-78.0142323,33.9087491],[-78.0121323,33.9103491],[-78.0112323,33.9119491],[-78.0071323,33.9134491],[-78.0063323,33.9104491],[-78.0092323,33.9077491]]],[[[-78.5670562,33.8638941],[-78.5662839,33.8636514],[-78.5644132,33.8637636],[-78.5618691,33.8640255],[-78.5601481,33.8645867],[-78.557949,33.8657032],[-78.5573321,33.8665491],[-78.5557322,33.8673491],[-78.5534321,33.8684491],[-78.5516321,33.8694491],[-78.5497296,33.8704332],[-78.5487321,33.8709491],[-78.5484594,33.8710979],[-78.5476321,33.8715491],[-78.5452321,33.8727491],[-78.5441428,33.8732938],[-78.5422321,33.8742491],[-78.5404635,33.8748922],[-78.5378321,33.8758491],[-78.5343994,33.8759892],[-78.5329321,33.8760491],[-78.5271321,33.8769491],[-78.5256017,33.8772344],[-78.5212321,33.8780491],[-78.5131321,33.8804491],[-78.5067321,33.8816491],[-78.5024719,33.882788],[-78.4966322,33.8843491],[-78.4895284,33.8862096],[-78.4882322,33.8865491],[-78.4872273,33.8867616],[-78.4830322,33.8876491],[-78.4789322,33.8881491],[-78.4743661,33.8886628],[-78.4734228,33.8887689],[-78.4734226,33.8887689],[-78.4734224,33.8887689],[-78.4709322,33.8890491],[-78.4680322,33.8894491],[-78.4597322,33.8909491],[-78.4529322,33.8926491],[-78.4449322,33.8938491],[-78.4404508,33.8949269],[-78.4370322,33.8957491],[-78.4271322,33.8971491],[-78.4206322,33.8985491],[-78.4144322,33.8998491],[-78.4081322,33.9018491],[-78.4015322,33.9031491],[-78.3964322,33.9034491],[-78.3920322,33.9034491],[-78.3887322,33.9045491],[-78.3874322,33.9046491],[-78.3837334,33.9044491],[-78.3837328,33.9044491],[-78.3837322,33.9044491],[-78.3835322,33.9032491],[-78.3853322,33.9016491],[-78.3881322,33.9001491],[-78.3922322,33.8980491],[-78.4013322,33.8954491],[-78.4029322,33.8952491],[-78.4051322,33.8948491],[-78.4076322,33.8942491],[-78.4105322,33.8935491],[-78.4116322,33.8932491],[-78.4348322,33.8871491],[-78.4361322,33.8868491],[-78.4387322,33.8861491],[-78.4416322,33.8854491],[-78.4443322,33.8848491],[-78.4486322,33.8836491],[-78.4508322,33.8831491],[-78.4536322,33.8824491],[-78.4564322,33.8815491],[-78.4604322,33.8803491],[-78.4633322,33.8793491],[-78.4651322,33.8789491],[-78.4671322,33.8785491],[-78.4745322,33.8762491],[-78.4763322,33.8756491],[-78.4780322,33.8751491],[-78.4791322,33.8747491],[-78.4801322,33.8763491],[-78.4806636,33.8769986],[-78.4810322,33.8774491],[-78.4813705,33.8777452],[-78.4818322,33.8781491],[-78.4828322,33.8784491],[-78.4843322,33.8775491],[-78.4854024,33.8764789],[-78.4858322,33.8760491],[-78.4864591,33.8758053],[-78.4876322,33.8753491],[-78.4890322,33.8756491],[-78.4911322,33.8767491],[-78.4932322,33.8784491],[-78.4944322,33.8800491],[-78.4957322,33.8814491],[-78.4971295,33.8814491],[-78.4971308,33.8814491],[-78.4971322,33.8814491],[-78.4968886,33.8811243],[-78.4965133,33.880624],[-78.4962322,33.8802491],[-78.4960277,33.8798743],[-78.4956322,33.8791491],[-78.4943322,33.8776491],[-78.4931321,33.8765491],[-78.4928387,33.8754926],[-78.4926322,33.8747491],[-78.4930322,33.8736491],[-78.4899322,33.8735491],[-78.4877322,33.8735491],[-78.4852322,33.8741491],[-78.4835322,33.8753491],[-78.4826322,33.8762491],[-78.4811322,33.8761491],[-78.4809322,33.8741491],[-78.4826322,33.8736491],[-78.4942322,33.8704491],[-78.4960322,33.8699491],[-78.5140321,33.8645491],[-78.5271321,33.8584491],[-78.5282321,33.8579491],[-78.5302321,33.8571491],[-78.5322321,33.8562491],[-78.5345321,33.8550491],[-78.5380321,33.8535491],[-78.5410321,33.8511491],[-78.5422321,33.8521491],[-78.5441321,33.8537491],[-78.5430321,33.8543491],[-78.5414321,33.8559491],[-78.5411321,33.8571491],[-78.5408396,33.8617322],[-78.5408321,33.8618491],[-78.5416321,33.8626491],[-78.5430321,33.8607491],[-78.5434321,33.8579491],[-78.5444321,33.8560491],[-78.5449667,33.8555145],[-78.5455321,33.8549491],[-78.5471321,33.8564491],[-78.5490321,33.8580491],[-78.550516,33.8593768],[-78.5515246,33.8602352],[-78.5524542,33.8601551],[-78.5547676,33.8599558],[-78.5567156,33.8594688],[-78.5586636,33.8586821],[-78.5617066,33.8574414],[-78.563857,33.8586106],[-78.5650727,33.8592716],[-78.567634,33.858113],[-78.5691644,33.8593487],[-78.5697655,33.859834],[-78.572412,33.8634023],[-78.5730194,33.8643531],[-78.5732736,33.8647509],[-78.573168,33.8661955],[-78.5724571,33.8673927],[-78.5709606,33.8669064],[-78.5696885,33.8652976],[-78.5685661,33.8644745],[-78.567772,33.8641385],[-78.5675934,33.8640629],[-78.5670562,33.8638941]]],[[[-79.1978355,33.4247595],[-79.2014875,33.4232928],[-79.202204,33.4232973],[-79.2064944,33.4233243],[-79.20252,33.4254154],[-79.2015925,33.4259035],[-79.2011526,33.4260391],[-79.1995845,33.4265225],[-79.196648,33.427198],[-79.195171,33.4268125],[-79.1947292,33.4266972],[-79.1978355,33.4247595]]],[[[-117.1045679,32.6128696],[-117.1059063,32.6118461],[-117.1064657,32.6118523],[-117.1067216,32.6120485],[-117.113438,32.6144701],[-117.1120445,32.6171609],[-117.1109514,32.6166924],[-117.1101705,32.6166324],[-117.1055096,32.6149506],[-117.1055391,32.6149218],[-117.1051888,32.614796],[-117.1044283,32.6133856],[-117.1045327,32.6128809],[-117.1045679,32.6128696]]],[[[-117.2326405,32.7774324],[-117.2332793,32.7754729],[-117.2330387,32.7738988],[-117.2331028,32.7733302],[-117.2344495,32.7715998],[-117.2356975,32.7712168],[-117.2368815,32.7719509],[-117.2377795,32.7717166],[-117.238592,32.7709896],[-117.239813,32.7713501],[-117.2405253,32.7718334],[-117.2400579,32.7731771],[-117.2420972,32.7747309],[-117.2422659,32.7756784],[-117.2416937,32.7771498],[-117.24035,32.777734],[-117.2384805,32.7773251],[-117.2385974,32.7759814],[-117.2369616,32.7759814],[-117.2369616,32.7775587],[-117.2350485,32.7780548],[-117.2341198,32.7785284],[-117.233025,32.779079],[-117.232277,32.779079],[-117.2319955,32.7784649],[-117.2326405,32.7774324]]],[[[-117.2156016,32.7806903],[-117.2139822,32.7782298],[-117.213982,32.7769237],[-117.2142578,32.7765789],[-117.2146433,32.7765024],[-117.2151306,32.7764803],[-117.2181527,32.7780136],[-117.2189634,32.7785198],[-117.2194471,32.7781329],[-117.2192382,32.7774113],[-117.2190051,32.7764791],[-117.2135481,32.7727009],[-117.2113786,32.7719436],[-117.2111763,32.7691992],[-117.2126027,32.7672124],[-117.2140677,32.7669255],[-117.216316,32.7668895],[-117.2176291,32.7675665],[-117.2181145,32.7685738],[-117.2184274,32.7707014],[-117.2218362,32.7732725],[-117.2229918,32.772088],[-117.2202473,32.7696903],[-117.2202762,32.7682747],[-117.2211429,32.7678414],[-117.2245228,32.7698347],[-117.2295206,32.7700658],[-117.2298383,32.7708458],[-117.2294996,32.7711093],[-117.2261695,32.7734747],[-117.2239162,32.7770857],[-117.2223851,32.7813035],[-117.2210766,32.7834731],[-117.2168674,32.7897678],[-117.2147296,32.7901145],[-117.2125929,32.7886419],[-117.2122741,32.787139],[-117.212823,32.7857523],[-117.2168385,32.7838168],[-117.2168385,32.7821412],[-117.2156016,32.7806903]]],[[[-79.8144091,32.7775228],[-79.8159313,32.7760666],[-79.8174781,32.7759305],[-79.8189439,32.7745774],[-79.8201842,32.7742392],[-79.821199,32.7742392],[-79.8221492,32.7748726],[-79.8228904,32.7753667],[-79.8245817,32.7759305],[-79.8271646,32.775369],[-79.8271698,32.7753678],[-79.827175,32.7753667],[-79.8270974,32.7753425],[-79.8253709,32.7748029],[-79.8244283,32.7747244],[-79.8240179,32.7746902],[-79.8228217,32.7740569],[-79.8221011,32.7736754],[-79.8210005,32.7730751],[-79.8196205,32.7723223],[-79.8173654,32.7748029],[-79.8147868,32.7753432],[-79.8145901,32.7752189],[-79.8145872,32.775217],[-79.8145842,32.7752151],[-79.8134269,32.7744836],[-79.813425,32.7744824],[-79.813423,32.7744812],[-79.8145866,32.7706796],[-79.8173443,32.7673593],[-79.8202667,32.7658042],[-79.8229466,32.7653013],[-79.8258936,32.7643208],[-79.827966,32.7632016],[-79.8311761,32.7612832],[-79.8337748,32.7599061],[-79.8367793,32.7583876],[-79.8399995,32.7569296],[-79.8430215,32.7562447],[-79.8464489,32.7555525],[-79.8485776,32.7552736],[-79.8504603,32.7557788],[-79.8527388,32.7565456],[-79.8561563,32.7569008],[-79.8589711,32.7584325],[-79.861027,32.7604913],[-79.8634294,32.7626234],[-79.8654396,32.7640862],[-79.8654396,32.7640885],[-79.8654396,32.7640907],[-79.8654722,32.7669194],[-79.8634828,32.7665071],[-79.8612933,32.7652396],[-79.8585344,32.7634646],[-79.8576035,32.7630526],[-79.8567168,32.764204],[-79.8541234,32.7657825],[-79.8525449,32.7640912],[-79.848882,32.7613466],[-79.8479269,32.7623881],[-79.8473653,32.7630004],[-79.8473676,32.7630025],[-79.8473699,32.7630046],[-79.8502438,32.7656398],[-79.850245,32.7656428],[-79.8502462,32.7656458],[-79.8511506,32.7679658],[-79.8430777,32.7715312],[-79.8430756,32.7715321],[-79.8430735,32.771533],[-79.8434106,32.769735],[-79.8434112,32.769732],[-79.8434117,32.769729],[-79.8410439,32.7695035],[-79.841029,32.7698152],[-79.841029,32.769816],[-79.8410289,32.7698168],[-79.8409311,32.7718713],[-79.8332638,32.7755922],[-79.8290919,32.7768325],[-79.8246944,32.7795386],[-79.8227776,32.7779601],[-79.8212507,32.7775583],[-79.8206352,32.7773963],[-79.8173654,32.7781856],[-79.8164646,32.779887],[-79.8163506,32.7801024],[-79.8130152,32.7788652],[-79.8130119,32.7788639],[-79.8130085,32.7788627],[-79.8144091,32.7775228]]],[[[-79.8062056,32.7825089],[-79.8097701,32.7809371],[-79.8113082,32.7799518],[-79.81387,32.7822447],[-79.8169143,32.7822447],[-79.8171193,32.781681],[-79.8178164,32.7797641],[-79.8189439,32.7792004],[-79.8217628,32.7792004],[-79.82165,32.7802152],[-79.8201842,32.7812299],[-79.8169143,32.783034],[-79.8133062,32.7842743],[-79.808796,32.7861912],[-79.8054133,32.7874315],[-79.7966185,32.7912651],[-79.7914142,32.7934833],[-79.7914136,32.7934836],[-79.791413,32.7934838],[-79.7897404,32.7941968],[-79.7894022,32.7925054],[-79.790029,32.7913964],[-79.7900293,32.7913958],[-79.7900297,32.7913952],[-79.7905335,32.7905039],[-79.790868,32.7899121],[-79.7941379,32.7874315],[-79.797295,32.7864167],[-79.7997285,32.785638],[-79.8001139,32.7855146],[-79.8031583,32.7839361],[-79.8038858,32.7835896],[-79.8055261,32.7828085],[-79.8062056,32.7825089]]],[[[-79.4744283,33.0068021],[-79.4783744,33.0047757],[-79.4829604,33.0034248],[-79.4862666,33.0034959],[-79.4888618,33.0040291],[-79.4885633,33.0044022],[-79.4878664,33.0052734],[-79.4870487,33.0070865],[-79.4864444,33.0079397],[-79.4845957,33.0064466],[-79.4824983,33.0062333],[-79.4799386,33.0065177],[-79.4781255,33.0073353],[-79.4773079,33.0080819],[-79.4769108,33.0084937],[-79.4763475,33.0090778],[-79.4756015,33.0082952],[-79.4744283,33.0068021]]],[[[-79.3558354,33.0243506],[-79.3540949,33.0240191],[-79.3522738,33.0243643],[-79.3523057,33.0240589],[-79.3525174,33.0220271],[-79.3544044,33.0169296],[-79.3545252,33.0166408],[-79.3561381,33.0127832],[-79.3572694,33.0102406],[-79.3590214,33.0074278],[-79.3599206,33.0073269],[-79.362007,33.0070927],[-79.3612749,33.0080066],[-79.3597293,33.0099358],[-79.3600143,33.0135327],[-79.3601152,33.0148064],[-79.3612829,33.0174196],[-79.3632446,33.0199728],[-79.3633884,33.021586],[-79.3635291,33.0231642],[-79.3610427,33.0254253],[-79.3579784,33.0254126],[-79.3558354,33.0243506]]],[[[-79.3935509,33.0236897],[-79.3922139,33.0235691],[-79.3847683,33.0240133],[-79.3838244,33.0240696],[-79.3812688,33.0243202],[-79.3767899,33.0231958],[-79.3731299,33.0209606],[-79.3705582,33.0170981],[-79.3670661,33.0140128],[-79.3670794,33.01341],[-79.3671388,33.0107218],[-79.3702567,33.0084138],[-79.3735267,33.0064409],[-79.3789964,33.0065326],[-79.3811318,33.0075166],[-79.3841172,33.0080329],[-79.3854406,33.0082432],[-79.3940601,33.0067004],[-79.3989928,33.0057907],[-79.4035773,33.0053862],[-79.4052669,33.0070758],[-79.4060044,33.0078133],[-79.405542,33.0088536],[-79.405465,33.0090268],[-79.3995203,33.0103612],[-79.3990362,33.0104287],[-79.3984534,33.01051],[-79.3964468,33.0130029],[-79.398163,33.0150212],[-79.4009168,33.0175109],[-79.4038674,33.0191976],[-79.4035403,33.0204459],[-79.402223,33.0254729],[-79.3994324,33.0247396],[-79.3962919,33.0239371],[-79.3935509,33.0236897]]],[[[-79.2694915,33.1355499],[-79.2687102,33.1344448],[-79.2691841,33.1314433],[-79.2711591,33.1330259],[-79.2726123,33.1346405],[-79.2732554,33.1328741],[-79.2740913,33.1342415],[-79.2743621,33.1346845],[-79.2742446,33.1359932],[-79.2741712,33.1368103],[-79.2776994,33.1388385],[-79.281512,33.1401804],[-79.2819707,33.140252],[-79.2860137,33.1408825],[-79.288171,33.1413225],[-79.2967249,33.1456265],[-79.2918782,33.1466232],[-79.2895985,33.1460285],[-79.2890285,33.1458798],[-79.2864095,33.1451165],[-79.2864073,33.145116],[-79.2864052,33.1451154],[-79.284193,33.1444973],[-79.2797394,33.1431905],[-79.278778,33.1427691],[-79.2779602,33.1424106],[-79.2774877,33.1421744],[-79.2755648,33.1412129],[-79.2723434,33.1395609],[-79.2706183,33.1371438],[-79.2694915,33.1355499]]],[[[-79.2580138,33.1697215],[-79.255717,33.1670518],[-79.2531955,33.1665205],[-79.2500335,33.165157],[-79.2485135,33.1640255],[-79.2474418,33.1626862],[-79.246989,33.1598628],[-79.2476491,33.1561241],[-79.2478017,33.1524133],[-79.2478793,33.1523353],[-79.2496447,33.1505611],[-79.252116,33.1522807],[-79.2541288,33.1552975],[-79.2559075,33.1574285],[-79.2575475,33.1596774],[-79.2590635,33.1615075],[-79.2607652,33.1639584],[-79.2646435,33.1653345],[-79.267652,33.1659655],[-79.2703885,33.1666195],[-79.2744914,33.1677202],[-79.2801953,33.1681269],[-79.2804027,33.1679631],[-79.2839675,33.1651488],[-79.2879383,33.1639576],[-79.2912787,33.1686646],[-79.2923061,33.1701122],[-79.2887324,33.171502],[-79.2864252,33.1738092],[-79.2857543,33.1744801],[-79.282811,33.1786007],[-79.2827763,33.1786494],[-79.2797982,33.1824215],[-79.2752319,33.1840098],[-79.2716299,33.1840495],[-79.2705187,33.1832581],[-79.266983,33.1823925],[-79.2634362,33.1809995],[-79.2629787,33.1802148],[-79.2616448,33.1779264],[-79.2617447,33.1771328],[-79.2619415,33.1755715],[-79.2612166,33.1734719],[-79.259525,33.1714911],[-79.2580138,33.1697215]]],[[[-79.2266149,33.2734434],[-79.2271987,33.2727145],[-79.2281001,33.2728593],[-79.2281008,33.2728594],[-79.2281015,33.2728595],[-79.2303596,33.2732222],[-79.2302105,33.2728114],[-79.2293045,33.2703152],[-79.225732,33.2696],[-79.223615,33.2678355],[-79.2227172,33.265249],[-79.2219808,33.2647591],[-79.2192447,33.2629387],[-79.2229415,33.2625925],[-79.2260365,33.264962],[-79.2291995,33.2668845],[-79.2316815,33.2687845],[-79.2354995,33.2713485],[-79.2363979,33.2721796],[-79.237232,33.272951],[-79.2387535,33.2750983],[-79.2390957,33.2778523],[-79.2391325,33.2790429],[-79.2391808,33.2806035],[-79.2377699,33.2835832],[-79.2317241,33.2813208],[-79.2275835,33.2796885],[-79.2245913,33.2775731],[-79.2254647,33.2748795],[-79.2266149,33.2734434]]],[[[-79.2518802,33.2616841],[-79.2536035,33.2615845],[-79.2574291,33.2632125],[-79.2608714,33.2658708],[-79.2606511,33.2659079],[-79.2589724,33.2661905],[-79.2557245,33.265064],[-79.2550052,33.2648145],[-79.2543733,33.2646033],[-79.2524201,33.2639505],[-79.2499641,33.2617949],[-79.2518802,33.2616841]]],[[[-79.2631779,33.2686736],[-79.2631194,33.2673878],[-79.265873,33.269187],[-79.2679474,33.2721648],[-79.2703919,33.2735245],[-79.2737174,33.2740295],[-79.276971,33.2775573],[-79.2777308,33.2803627],[-79.2765619,33.2811225],[-79.2754514,33.2835187],[-79.2732889,33.2836356],[-79.2716525,33.2814731],[-79.2683211,33.2808302],[-79.2682626,33.2784924],[-79.2668599,33.2755117],[-79.2653404,33.2742844],[-79.2617167,33.2702516],[-79.2631779,33.2686736]]],[[[-118.5898721,33.0298422],[-118.5843567,33.0298167],[-118.5810032,33.0307259],[-118.5782479,33.0313066],[-118.5754746,33.033693],[-118.5735741,33.0320125],[-118.5694409,33.0291464],[-118.5667879,33.0267826],[-118.5639889,33.0243897],[-118.5645779,33.0209312],[-118.5641134,33.0180197],[-118.5622036,33.0149829],[-118.5609711,33.0114021],[-118.5593709,33.0068772],[-118.5554437,33.0055184],[-118.5514119,33.0041782],[-118.5495199,33.002411],[-118.5471479,32.9976052],[-118.5464139,32.9948447],[-118.5462514,32.9913052],[-118.5450922,32.9884346],[-118.5407359,32.9816152],[-118.5360626,32.9776909],[-118.5327635,32.9763464],[-118.5298569,32.9723005],[-118.5266446,32.9688849],[-118.5219089,32.9650158],[-118.5192905,32.9624978],[-118.5151191,32.9569025],[-118.5138979,32.9529303],[-118.5117534,32.9505238],[-118.5089704,32.9473498],[-118.5059844,32.9442452],[-118.5033582,32.9405445],[-118.5000454,32.9376838],[-118.4967989,32.9338423],[-118.4942039,32.9314623],[-118.4917536,32.9292182],[-118.4885374,32.9263107],[-118.4848274,32.9232312],[-118.4800864,32.9206442],[-118.4750793,32.9180229],[-118.4716182,32.9164257],[-118.4682159,32.9148517],[-118.4657979,32.9127343],[-118.4598229,32.9087723],[-118.4574769,32.9055579],[-118.4549329,32.9031603],[-118.4531669,32.9010083],[-118.4509129,32.8989243],[-118.4470844,32.8956943],[-118.4405679,32.8914798],[-118.4378623,32.8894643],[-118.4347034,32.8871503],[-118.4326129,32.8855463],[-118.4305229,32.8835533],[-118.4269322,32.8808155],[-118.4232947,32.8780378],[-118.4191001,32.8754745],[-118.4167089,32.8732293],[-118.4133529,32.8701976],[-118.4082009,32.867473],[-118.4059889,32.8654623],[-118.4029851,32.8631938],[-118.4006441,32.8606323],[-118.3981919,32.8587256],[-118.3952344,32.8565408],[-118.3920959,32.8554856],[-118.3905092,32.8533395],[-118.3873761,32.8512035],[-118.3841695,32.8488107],[-118.3806074,32.846927],[-118.3791479,32.8442406],[-118.3756378,32.8421991],[-118.3725104,32.8405848],[-118.3699176,32.8390779],[-118.3670732,32.8367625],[-118.3634628,32.8324327],[-118.3605559,32.8298997],[-118.3596809,32.8274763],[-118.3564689,32.8251103],[-118.3534653,32.8220719],[-118.3501738,32.8201389],[-118.3521609,32.8179833],[-118.355037,32.8165867],[-118.3576684,32.8183999],[-118.3611824,32.8200878],[-118.3658629,32.8203723],[-118.3687225,32.8193218],[-118.3720356,32.8205636],[-118.3754649,32.8222808],[-118.3793596,32.8241736],[-118.3859249,32.8253223],[-118.3917849,32.8246143],[-118.3954881,32.8226868],[-118.4000533,32.8207224],[-118.4020169,32.8185923],[-118.4025423,32.8158739],[-118.4032719,32.8129345],[-118.4056819,32.8109653],[-118.4113014,32.8102404],[-118.4157094,32.8105013],[-118.4176287,32.8074347],[-118.4213885,32.805918],[-118.4237711,32.8048096],[-118.4250874,32.8020654],[-118.4284628,32.8048024],[-118.4278796,32.8078953],[-118.4297029,32.8106133],[-118.4313709,32.8130873],[-118.4331342,32.8149315],[-118.4370264,32.8162603],[-118.4407116,32.8171609],[-118.4431514,32.8189403],[-118.44637,32.8198192],[-118.4494924,32.8192483],[-118.4511206,32.8212219],[-118.4536509,32.823835],[-118.4550699,32.8264978],[-118.4576926,32.8275396],[-118.4602011,32.8300749],[-118.4627834,32.8317423],[-118.4679344,32.8337403],[-118.4695479,32.8371013],[-118.4734654,32.8397686],[-118.4787488,32.8418934],[-118.4815079,32.8430606],[-118.4839787,32.8438486],[-118.4864813,32.8447434],[-118.489639,32.8458722],[-118.4909239,32.8490053],[-118.4962039,32.8513567],[-118.4997188,32.8520051],[-118.4994629,32.8549333],[-118.5005682,32.8580564],[-118.5021971,32.8626847],[-118.5052634,32.8652223],[-118.5068899,32.8684983],[-118.5079649,32.8718739],[-118.5070432,32.8756811],[-118.5077595,32.8788427],[-118.5100734,32.8804714],[-118.5162868,32.883508],[-118.5197019,32.8854084],[-118.5186145,32.8880057],[-118.5210627,32.8899857],[-118.5230379,32.8919605],[-118.5246078,32.8942895],[-118.5273843,32.898158],[-118.5288429,32.9010741],[-118.5297885,32.9037957],[-118.5316014,32.9062233],[-118.5347647,32.9072546],[-118.5382294,32.9071863],[-118.54041,32.9102262],[-118.5403975,32.9143333],[-118.5420669,32.9173408],[-118.5456382,32.9187281],[-118.5443995,32.9242261],[-118.5460437,32.9281809],[-118.5487814,32.9328443],[-118.5494182,32.9354438],[-118.5498084,32.9389165],[-118.5508022,32.9437601],[-118.5528402,32.9473148],[-118.5554332,32.9503628],[-118.5569785,32.9531995],[-118.5593214,32.9564089],[-118.5639516,32.959862],[-118.5660234,32.962439],[-118.5695149,32.9644142],[-118.5715604,32.9672315],[-118.5737414,32.971011],[-118.5751549,32.9733473],[-118.5763099,32.9759813],[-118.5768003,32.9799123],[-118.5771069,32.9850862],[-118.5780793,32.9875386],[-118.5800034,32.9894832],[-118.5818054,32.9942444],[-118.5827195,32.9967186],[-118.5834636,32.9994392],[-118.5840804,33.0022927],[-118.5862857,33.0056624],[-118.5878715,33.0092582],[-118.5901336,33.0114599],[-118.5933767,33.0127375],[-118.5970496,33.0155509],[-118.6000629,33.0154892],[-118.6042361,33.0144737],[-118.6059133,33.019239],[-118.6058204,33.0222271],[-118.6053566,33.0252832],[-118.6052764,33.0287382],[-118.6060955,33.031949],[-118.6028849,33.0324612],[-118.6004437,33.0333786],[-118.597711,33.0343511],[-118.5951424,33.0359055],[-118.5923664,33.0352974],[-118.591488,33.0329379],[-118.5898721,33.0298422]]],[[[-79.3902824,33.0495436],[-79.3884609,33.0485466],[-79.3858494,33.0476866],[-79.3830894,33.0473301],[-79.3804384,33.0464245],[-79.3783044,33.0453351],[-79.3768504,33.0438336],[-79.3759493,33.0425471],[-79.3752238,33.0400514],[-79.3760976,33.0377373],[-79.3766317,33.0363229],[-79.3732921,33.0377356],[-79.3713898,33.0397832],[-79.3679539,33.0396872],[-79.3647786,33.0364452],[-79.3645701,33.0358668],[-79.3639517,33.0341513],[-79.363658,33.029593],[-79.3658524,33.0270269],[-79.3677195,33.0262492],[-79.3684124,33.0259606],[-79.3687927,33.0259023],[-79.3714119,33.0255011],[-79.3747061,33.0263339],[-79.3762904,33.0275936],[-79.3775344,33.0289299],[-79.3783061,33.0297589],[-79.3789603,33.0322917],[-79.3792676,33.0334811],[-79.3797673,33.0329548],[-79.3817139,33.0309043],[-79.3844651,33.0294449],[-79.3874023,33.0282327],[-79.3881054,33.0279426],[-79.3884754,33.0278745],[-79.3908384,33.0274396],[-79.3936124,33.0273639],[-79.3970564,33.0269682],[-79.4003004,33.0279006],[-79.402584,33.0300864],[-79.403719,33.0339354],[-79.4034958,33.0376771],[-79.405106,33.0402819],[-79.4097798,33.0438151],[-79.413016,33.0450287],[-79.4137505,33.0459264],[-79.4142295,33.0465119],[-79.4128811,33.0494784],[-79.4100495,33.0502874],[-79.4066086,33.0501799],[-79.4057347,33.0501525],[-79.4026334,33.049748],[-79.4021158,33.0495216],[-79.400476,33.0488042],[-79.3970705,33.0486419],[-79.3953954,33.0498886],[-79.393114,33.0507442],[-79.3902824,33.0495436]]],[[[-79.40837,33.0177972],[-79.4093739,33.0173691],[-79.4122584,33.0161392],[-79.4149817,33.0173971],[-79.4182544,33.0173353],[-79.4194692,33.0169042],[-79.4216698,33.0187752],[-79.4244772,33.0211623],[-79.4247296,33.0219895],[-79.4252458,33.0236815],[-79.4237684,33.0256611],[-79.4219734,33.0268746],[-79.4200149,33.0283521],[-79.4183564,33.0296686],[-79.4166289,33.0307681],[-79.4139994,33.0319768],[-79.4111629,33.0325196],[-79.4081109,33.0320831],[-79.4079916,33.0319769],[-79.4063099,33.0304796],[-79.4051658,33.0286467],[-79.4046298,33.0272052],[-79.4064621,33.0204352],[-79.40837,33.0177972]]],[[[-79.3384757,33.0534733],[-79.3391294,33.0509706],[-79.3402595,33.0483145],[-79.3412406,33.0460086],[-79.3419536,33.0446658],[-79.3425044,33.0436286],[-79.3447788,33.0387012],[-79.3469204,33.0347976],[-79.3475394,33.0334039],[-79.3483677,33.0315388],[-79.3491064,33.0300476],[-79.3494342,33.0293861],[-79.3511394,33.0268601],[-79.3512551,33.0278862],[-79.3515815,33.0307805],[-79.35146,33.0323502],[-79.3514072,33.0330324],[-79.3511908,33.035378],[-79.3513988,33.0389878],[-79.3521282,33.0410886],[-79.3528053,33.0430388],[-79.3545259,33.0446932],[-79.3557435,33.045864],[-79.3565541,33.0489806],[-79.3569285,33.0494369],[-79.3586588,33.0515456],[-79.3595754,33.0540407],[-79.3573185,33.0541036],[-79.356377,33.0535301],[-79.3549514,33.0526616],[-79.3517684,33.0511161],[-79.3486943,33.0514321],[-79.3452229,33.0539356],[-79.345027,33.0546832],[-79.3444414,33.0569177],[-79.3451553,33.0581803],[-79.3455389,33.0588587],[-79.3443406,33.0617672],[-79.3435854,33.0634076],[-79.3426199,33.0649307],[-79.3413586,33.0672683],[-79.3412894,33.0673966],[-79.3404258,33.0694368],[-79.3376226,33.0718958],[-79.3356097,33.0695306],[-79.3355092,33.0684976],[-79.3354119,33.0674976],[-79.3354387,33.0645083],[-79.3358999,33.0611641],[-79.3369194,33.0578884],[-79.3378945,33.055122],[-79.3384757,33.0534733]]],[[[-79.3963204,33.0541744],[-79.3953221,33.0520882],[-79.3979375,33.0499894],[-79.4000715,33.0506919],[-79.4023546,33.0517791],[-79.4029031,33.0520403],[-79.4057347,33.05231],[-79.4082966,33.0521751],[-79.4085663,33.0560854],[-79.4045211,33.05649],[-79.4023637,33.0582429],[-79.400476,33.058108],[-79.3963204,33.0541744]]],[[[-79.7624738,32.8348796],[-79.7599675,32.8345567],[-79.7590922,32.8344439],[-79.7605571,32.8330472],[-79.7611065,32.8320079],[-79.7613993,32.831454],[-79.7631104,32.8304104],[-79.7639279,32.8297667],[-79.7683171,32.8293703],[-79.7679943,32.8313928],[-79.7678531,32.8322774],[-79.7681115,32.8334213],[-79.7684366,32.834861],[-79.7648899,32.8346865],[-79.7624738,32.8348796]]],[[[-79.6510223,32.9088443],[-79.6488158,32.9087145],[-79.6484657,32.9105814],[-79.648037,32.9128679],[-79.6460915,32.9150079],[-79.6454411,32.9157233],[-79.6441534,32.9149602],[-79.6419367,32.9136466],[-79.6401196,32.9113104],[-79.6364854,32.9107912],[-79.6299753,32.9101276],[-79.6274148,32.9144968],[-79.6238149,32.9156671],[-79.6207644,32.9163646],[-79.6190519,32.9164443],[-79.6182934,32.9164796],[-79.6156309,32.9164241],[-79.6143657,32.9151054],[-79.6141196,32.9152196],[-79.6114197,32.9164721],[-79.6090874,32.9195306],[-79.6076894,32.9211456],[-79.6050964,32.9226936],[-79.6022049,32.9250536],[-79.600129,32.9262324],[-79.5967312,32.9262738],[-79.5942414,32.9256896],[-79.5901449,32.9264694],[-79.5861884,32.9267946],[-79.5851068,32.9287066],[-79.5840344,32.9311056],[-79.5802552,32.9313992],[-79.5768556,32.9311981],[-79.5759801,32.9337751],[-79.5724796,32.9335002],[-79.5710364,32.9307406],[-79.5702564,32.9291063],[-79.5704451,32.9249048],[-79.5716507,32.9213099],[-79.5723929,32.9187941],[-79.5733704,32.9163466],[-79.5739404,32.9140866],[-79.5741609,32.9111821],[-79.5752887,32.9070839],[-79.5784479,32.9050716],[-79.5818019,32.9038566],[-79.5855214,32.9031691],[-79.5903684,32.9020566],[-79.593708,32.9010866],[-79.6013924,32.8988466],[-79.6033366,32.8981291],[-79.6054374,32.8976776],[-79.6091026,32.8965834],[-79.6144649,32.8948341],[-79.6167774,32.8940163],[-79.6194194,32.8932596],[-79.6233554,32.8917376],[-79.62538,32.8908726],[-79.6286889,32.8895606],[-79.631844,32.8882486],[-79.6353231,32.8864079],[-79.638906,32.8841206],[-79.6420384,32.8809071],[-79.6442799,32.8776891],[-79.6490682,32.8757475],[-79.6499533,32.8779771],[-79.6522203,32.8797113],[-79.6546537,32.8830489],[-79.6562444,32.8843302],[-79.656708,32.8847036],[-79.6594331,32.8878225],[-79.6621668,32.8899917],[-79.6633527,32.8909327],[-79.66354,32.8921191],[-79.6637421,32.8933988],[-79.6646506,32.8972927],[-79.6649102,32.8996289],[-79.666399,32.9007868],[-79.6672465,32.901446],[-79.6681335,32.9017728],[-79.6697126,32.9023546],[-79.6711403,32.9033929],[-79.6711403,32.9061186],[-79.6711403,32.9087145],[-79.6684146,32.9122189],[-79.6640017,32.9150744],[-79.6611462,32.9175405],[-79.659978,32.9194874],[-79.6587484,32.9226492],[-79.6581609,32.9241599],[-79.6564996,32.9283888],[-79.6553055,32.9314284],[-79.6529692,32.9375287],[-79.6519308,32.939865],[-79.6502435,32.9402544],[-79.6501137,32.9371393],[-79.6516788,32.9342439],[-79.6527096,32.932337],[-79.6544647,32.9280369],[-79.6553055,32.9259771],[-79.6567332,32.9223428],[-79.6567332,32.9189682],[-79.6590695,32.9170213],[-79.6595173,32.9156778],[-79.6598483,32.914685],[-79.6596659,32.9140162],[-79.6594589,32.9132573],[-79.6572524,32.9101422],[-79.6510223,32.9088443]]],[[[-79.7083863,32.8647996],[-79.7099711,32.863943],[-79.710703,32.8680526],[-79.7097125,32.8689881],[-79.7048797,32.8735522],[-79.7061536,32.8677154],[-79.7083863,32.8647996]]],[[[-79.6660784,32.8936584],[-79.6660063,32.8922167],[-79.6659486,32.8910625],[-79.6649102,32.8904135],[-79.6631337,32.8869171],[-79.6610693,32.8855856],[-79.6592364,32.8844056],[-79.6584639,32.881425],[-79.6582756,32.8809704],[-79.6573401,32.8787119],[-79.6545017,32.8768559],[-79.6538078,32.8751761],[-79.6536304,32.8747466],[-79.6556948,32.8724236],[-79.6584508,32.8705001],[-79.6611302,32.8692335],[-79.6611343,32.8692315],[-79.6611383,32.8692296],[-79.6645463,32.8675006],[-79.6673158,32.8662411],[-79.6709263,32.8644211],[-79.6736953,32.8624866],[-79.6756863,32.8614501],[-79.6835623,32.8569546],[-79.6880553,32.8541486],[-79.6920713,32.8516516],[-79.6957083,32.8502196],[-79.6975037,32.8507721],[-79.6992496,32.853022],[-79.6993792,32.853189],[-79.7027383,32.8562326],[-79.7056163,32.8576296],[-79.707316,32.8595633],[-79.707091,32.8609451],[-79.7069333,32.8619136],[-79.7059214,32.863445],[-79.7056163,32.8639066],[-79.704241,32.8655719],[-79.701535,32.8693193],[-79.7010218,32.8708423],[-79.7007051,32.8717822],[-79.7016273,32.8731616],[-79.7015933,32.8753783],[-79.7000908,32.877936],[-79.6998483,32.8783486],[-79.6994923,32.8786433],[-79.6965601,32.8810704],[-79.693138,32.8834615],[-79.688663,32.8833928],[-79.688346,32.8815107],[-79.6902732,32.8801446],[-79.6877033,32.878258],[-79.6849044,32.8797108],[-79.6820621,32.880365],[-79.6777643,32.8805175],[-79.6763348,32.8837151],[-79.6767886,32.8855875],[-79.6773513,32.8879098],[-79.6803245,32.8891441],[-79.6845269,32.8888394],[-79.6839431,32.8915331],[-79.6858298,32.8922661],[-79.6860813,32.8921812],[-79.6877055,32.8916328],[-79.6891749,32.8911905],[-79.6898047,32.8910009],[-79.6894582,32.8937324],[-79.6861709,32.8953982],[-79.6824324,32.8972926],[-79.6786684,32.8989799],[-79.6760725,32.8992395],[-79.673866,32.901446],[-79.6736082,32.9018585],[-79.673217,32.9024844],[-79.670102,32.9010566],[-79.6669869,32.8988501],[-79.6663833,32.8968381],[-79.6662082,32.8962543],[-79.6660784,32.8936584]]],[[[-79.758054,32.848215],[-79.7569608,32.8481219],[-79.7544747,32.8479101],[-79.7538464,32.8489949],[-79.7532945,32.8499476],[-79.752237,32.8506555],[-79.7511378,32.8513913],[-79.7509707,32.8497553],[-79.7508297,32.8483756],[-79.7510524,32.8472343],[-79.7513081,32.8459241],[-79.7476323,32.8455616],[-79.7455996,32.8443001],[-79.7434191,32.8455314],[-79.7435504,32.8438846],[-79.7436758,32.8423118],[-79.7431261,32.8422964],[-79.7402583,32.8422162],[-79.7407942,32.8401351],[-79.7410543,32.8391253],[-79.7416551,32.8377896],[-79.7424183,32.836093],[-79.7428837,32.8351544],[-79.7436291,32.8336509],[-79.7442051,32.8339059],[-79.7469677,32.835129],[-79.7463049,32.8387042],[-79.7456139,32.8405396],[-79.7486737,32.8424336],[-79.7530378,32.8440076],[-79.7572526,32.8447368],[-79.758054,32.848215]]],[[[-79.8043783,32.7765536],[-79.8076814,32.7755581],[-79.8107763,32.7764586],[-79.8107744,32.7764609],[-79.8107725,32.7764631],[-79.8100644,32.7772918],[-79.8100577,32.7772996],[-79.810051,32.7773075],[-79.8088709,32.7786885],[-79.804173,32.7814555],[-79.8009032,32.783034],[-79.796393,32.7850636],[-79.7918828,32.7867549],[-79.7894022,32.7886718],[-79.7889002,32.789776],[-79.7888998,32.7897769],[-79.7888994,32.7897778],[-79.7882746,32.7911524],[-79.7872598,32.7935202],[-79.7871471,32.7947605],[-79.7845225,32.7960029],[-79.7808433,32.7976025],[-79.7715654,32.8016017],[-79.7600479,32.8060007],[-79.754929,32.8079203],[-79.7532493,32.8090401],[-79.7519696,32.8115195],[-79.7509298,32.814079],[-79.7482946,32.8156046],[-79.7482861,32.8156096],[-79.7482776,32.8156145],[-79.7478905,32.8158386],[-79.7469307,32.8175182],[-79.7466278,32.818124],[-79.7463717,32.8186362],[-79.7460509,32.8192778],[-79.745466,32.8201692],[-79.7443713,32.8218373],[-79.7430116,32.8238368],[-79.7376625,32.8267925],[-79.7369158,32.8272051],[-79.7348063,32.8273386],[-79.734074,32.8271204],[-79.7324051,32.8266231],[-79.7302743,32.8257816],[-79.7293335,32.8244573],[-79.7268494,32.8230336],[-79.7258926,32.8225848],[-79.724999,32.8221657],[-79.7235151,32.8214696],[-79.7215908,32.8198851],[-79.7193593,32.8174666],[-79.7171515,32.8140874],[-79.7171498,32.8140847],[-79.717148,32.814082],[-79.7196068,32.8112491],[-79.7226987,32.8087473],[-79.7255998,32.8065281],[-79.7288813,32.8047516],[-79.7312928,32.8037866],[-79.73516,32.802366],[-79.7388353,32.8009226],[-79.7427403,32.7998436],[-79.7467003,32.7989946],[-79.750586,32.7981838],[-79.7538753,32.7973366],[-79.7559943,32.7967711],[-79.7581889,32.7961366],[-79.7606883,32.795478],[-79.7628483,32.7947926],[-79.7651603,32.7940118],[-79.7680223,32.7928626],[-79.7716136,32.791374],[-79.7738163,32.7905206],[-79.7759843,32.7896886],[-79.7789975,32.7883904],[-79.7821453,32.7871296],[-79.7854125,32.784903],[-79.7877693,32.784831],[-79.7905586,32.7837696],[-79.7928053,32.7827176],[-79.7954013,32.7813936],[-79.7984029,32.7798688],[-79.8019821,32.7777896],[-79.8043783,32.7765536]]],[[[-79.755535,32.8284597],[-79.7542091,32.8255965],[-79.7525295,32.8236769],[-79.7516497,32.8225571],[-79.7542542,32.820857],[-79.7562052,32.821195],[-79.7551446,32.8247876],[-79.7577473,32.8256397],[-79.7586873,32.8238886],[-79.7591742,32.8236653],[-79.7601011,32.8232401],[-79.761628,32.8231121],[-79.7629577,32.8230006],[-79.7651509,32.8239321],[-79.7689602,32.8209514],[-79.7654911,32.8196544],[-79.7690423,32.8173406],[-79.7719427,32.8184615],[-79.7724126,32.8186431],[-79.7735521,32.8202557],[-79.7739785,32.8208593],[-79.7743427,32.8208554],[-79.7774396,32.8208224],[-79.7805256,32.8200726],[-79.7832153,32.8195046],[-79.785235,32.818969],[-79.7850723,32.8206886],[-79.78449,32.8212757],[-79.7833279,32.8224474],[-79.78178,32.8228853],[-79.7809343,32.8231246],[-79.778483,32.824062],[-79.7760614,32.8250402],[-79.7736083,32.8271393],[-79.7712123,32.8272486],[-79.768445,32.8272132],[-79.761853,32.8287873],[-79.7602898,32.8300641],[-79.7595273,32.830687],[-79.7565744,32.8319908],[-79.755535,32.8284597]]],[[[-79.7052262,32.835434],[-79.7081382,32.8340817],[-79.7113503,32.8309286],[-79.7143457,32.8289416],[-79.7172643,32.8273766],[-79.7198447,32.8258016],[-79.72237,32.8260516],[-79.7248881,32.8278179],[-79.7262787,32.8300736],[-79.7266747,32.8316082],[-79.726868,32.832357],[-79.7279613,32.8338563],[-79.7286301,32.8347734],[-79.7287302,32.8335477],[-79.7289546,32.8307992],[-79.729342,32.8307431],[-79.7305483,32.8305686],[-79.7331977,32.8301786],[-79.7343713,32.8302739],[-79.7365713,32.8304526],[-79.7384181,32.8310268],[-79.7403229,32.831619],[-79.7399388,32.8340821],[-79.7391868,32.8354042],[-79.7382576,32.8370379],[-79.737701,32.8372078],[-79.7358153,32.8377836],[-79.7340247,32.837914],[-79.7302637,32.8393714],[-79.728148,32.844086],[-79.725797,32.8471716],[-79.7240698,32.8487716],[-79.7215633,32.8503741],[-79.7193297,32.8512931],[-79.7160848,32.8532981],[-79.7175892,32.8538207],[-79.7193526,32.8544332],[-79.7178407,32.8576736],[-79.7184483,32.8607031],[-79.7175318,32.8614234],[-79.712664,32.8569723],[-79.7111373,32.8552354],[-79.7121374,32.854902],[-79.7127533,32.8546966],[-79.7142256,32.8537278],[-79.7119258,32.8525891],[-79.7101096,32.8522761],[-79.709623,32.8521923],[-79.7090484,32.8521135],[-79.707264,32.851869],[-79.7051161,32.8512843],[-79.7037045,32.8501673],[-79.7028708,32.8495076],[-79.7011863,32.8486321],[-79.6998933,32.8459036],[-79.6992263,32.8407616],[-79.7001583,32.8390966],[-79.7015418,32.8373786],[-79.7052262,32.835434]]],[[[-79.6355768,32.9229918],[-79.6314085,32.9200748],[-79.6321427,32.9171097],[-79.6311811,32.9165453],[-79.6307664,32.9163019],[-79.6301196,32.9155161],[-79.6296227,32.9149123],[-79.629863,32.9116519],[-79.6303593,32.9117302],[-79.6342789,32.9123487],[-79.6362257,32.9124785],[-79.6379131,32.9127381],[-79.6397302,32.9137764],[-79.6406167,32.9151403],[-79.6414175,32.9163723],[-79.6431992,32.9180268],[-79.6432346,32.9180596],[-79.6422265,32.9194999],[-79.6414175,32.9206555],[-79.641538,32.9211374],[-79.6421963,32.9237705],[-79.6399898,32.9229918],[-79.6383025,32.9246791],[-79.6355768,32.9229918]]],[[[-79.6245704,32.9178341],[-79.6285705,32.9170955],[-79.6287715,32.917864],[-79.6295234,32.9207376],[-79.6309622,32.9218773],[-79.6337597,32.923511],[-79.6362258,32.9253281],[-79.637913,32.9259771],[-79.6346682,32.9267558],[-79.631034,32.927275],[-79.6292169,32.9287028],[-79.6322021,32.9320774],[-79.6286977,32.9328561],[-79.6268806,32.9350626],[-79.6263582,32.9365253],[-79.6262316,32.9368797],[-79.6255827,32.9386969],[-79.6243311,32.9396641],[-79.6238175,32.940061],[-79.6222874,32.9393636],[-79.6181632,32.938014],[-79.6136687,32.9366029],[-79.6131362,32.9354818],[-79.6125719,32.9342936],[-79.6103742,32.9310986],[-79.610247,32.9309358],[-79.6080119,32.9280756],[-79.6064026,32.9256206],[-79.6108139,32.9234931],[-79.614213,32.9229266],[-79.6179153,32.9215123],[-79.6193596,32.9203693],[-79.6214249,32.9187349],[-79.6245704,32.9178341]]],[[[-79.9565324,32.6584029],[-79.9578007,32.6569973],[-79.9635518,32.6590017],[-79.9644434,32.660339],[-79.9647445,32.6621045],[-79.9648758,32.6628745],[-79.9648758,32.6649225],[-79.9635105,32.6649225],[-79.9606092,32.6647518],[-79.9558306,32.6630452],[-79.9546333,32.6613199],[-79.9556573,32.6593727],[-79.9565324,32.6584029]]],[[[-79.9680253,32.6399577],[-79.9714236,32.6389635],[-79.9749628,32.6396055],[-79.9749618,32.6396083],[-79.9749607,32.639611],[-79.9738394,32.642569],[-79.9705121,32.64437],[-79.9671591,32.6458973],[-79.9642662,32.6465381],[-79.9618999,32.647375],[-79.9600333,32.6490137],[-79.9584574,32.6505943],[-79.9565698,32.6537833],[-79.9547757,32.6566783],[-79.9528058,32.657983],[-79.9501581,32.6588223],[-79.9467474,32.6593753],[-79.9436915,32.6600159],[-79.9436696,32.6600225],[-79.9436695,32.6600226],[-79.9436694,32.6600226],[-79.9416515,32.6606367],[-79.9394586,32.6613704],[-79.9293775,32.6638985],[-79.922551,32.6662878],[-79.9219632,32.6665879],[-79.9145297,32.6703837],[-79.9090684,32.6739677],[-79.9041782,32.67808],[-79.9015592,32.6802823],[-79.8991413,32.6823672],[-79.8905481,32.689777],[-79.8903279,32.6899669],[-79.888207,32.6887482],[-79.8859567,32.6859733],[-79.885733,32.6836503],[-79.8897452,32.6818197],[-79.8920602,32.6802715],[-79.8941103,32.6784863],[-79.8958403,32.6771067],[-79.8976409,32.6758793],[-79.8995983,32.6746527],[-79.9030486,32.6731807],[-79.9060599,32.6703852],[-79.9091922,32.6684376],[-79.9118601,32.6670447],[-79.9148873,32.6653567],[-79.9177427,32.6639985],[-79.9202736,32.6629704],[-79.9230106,32.6618377],[-79.9260981,32.6605993],[-79.9287176,32.6595353],[-79.9312163,32.658482],[-79.9336938,32.6573653],[-79.9358403,32.6564073],[-79.9379504,32.6553598],[-79.9401992,32.6543515],[-79.9403839,32.6542687],[-79.9430243,32.653258],[-79.9465878,32.6519388],[-79.9497933,32.6502971],[-79.9521805,32.6491153],[-79.9550049,32.6476093],[-79.9576413,32.6463137],[-79.9597549,32.6449929],[-79.9627853,32.6430937],[-79.9656373,32.6412857],[-79.9680253,32.6399577]]],[[[-79.9305722,32.6876209],[-79.9403001,32.6857436],[-79.9423481,32.6884742],[-79.939276,32.6932529],[-79.9363748,32.6971781],[-79.9354424,32.6996644],[-79.9348388,32.7012741],[-79.9343265,32.7020425],[-79.9321082,32.70537],[-79.9281829,32.7096366],[-79.9240869,32.7137326],[-79.9219826,32.7145743],[-79.921527,32.7147566],[-79.919854,32.7153939],[-79.917943,32.7161219],[-79.9176017,32.7041754],[-79.9192568,32.6987372],[-79.919991,32.6963248],[-79.9207233,32.6954166],[-79.9242576,32.6910342],[-79.9305722,32.6876209]]],[[[-79.9044605,32.6835249],[-79.9078738,32.6814769],[-79.9110168,32.6814769],[-79.9114577,32.6814769],[-79.9132802,32.6817647],[-79.9147004,32.6819889],[-79.9151016,32.6820291],[-79.9151149,32.6820304],[-79.9151282,32.6820317],[-79.9181137,32.6823303],[-79.921015,32.6797703],[-79.9211856,32.675333],[-79.9247696,32.6746504],[-79.9273296,32.6777223],[-79.9293902,32.677816],[-79.9310842,32.677893],[-79.9311614,32.6776613],[-79.9317676,32.6758428],[-79.9324495,32.673797],[-79.9351801,32.6681651],[-79.9415321,32.6640431],[-79.94273,32.663174],[-79.9431299,32.6628839],[-79.9434179,32.6627928],[-79.9445877,32.6624231],[-79.9445879,32.6624231],[-79.944588,32.662423],[-79.9453533,32.6621811],[-79.9493871,32.6617001],[-79.9521474,32.6625152],[-79.9561719,32.6650931],[-79.9582396,32.6659202],[-79.9595852,32.6664585],[-79.9636812,32.6683358],[-79.9670944,32.6688478],[-79.9689899,32.6695585],[-79.9711904,32.6703838],[-79.97119,32.6703863],[-79.9711897,32.6703888],[-79.9708491,32.672773],[-79.968817,32.6736098],[-79.9685728,32.6737103],[-79.9679477,32.6739677],[-79.9643638,32.6736264],[-79.9632988,32.6729781],[-79.9604385,32.6712371],[-79.9561719,32.6693597],[-79.951564,32.6712371],[-79.9513852,32.6713413],[-79.9511093,32.6715023],[-79.9491872,32.6726235],[-79.9491864,32.6726239],[-79.9491857,32.6726244],[-79.947468,32.6736264],[-79.9472937,32.6740404],[-79.945689,32.6778516],[-79.9447374,32.6801116],[-79.9430453,32.6809209],[-79.9408713,32.6819606],[-79.9408121,32.6819889],[-79.9245989,32.6852316],[-79.918455,32.6881329],[-79.9135057,32.6917169],[-79.9134584,32.691794],[-79.9118171,32.6944719],[-79.9102631,32.6970074],[-79.9099218,32.6983728],[-79.9026415,32.6986965],[-79.9006415,32.6971717],[-79.8999236,32.6955317],[-79.9025832,32.6906928],[-79.9025832,32.6854022],[-79.9044605,32.6835249]]],[[[-79.8698225,32.7294593],[-79.8711613,32.7260907],[-79.8730549,32.7228603],[-79.8749093,32.7200453],[-79.8761552,32.7178593],[-79.8780333,32.7146219],[-79.8795769,32.7118851],[-79.8809033,32.7093517],[-79.8821169,32.7063823],[-79.8835067,32.7038685],[-79.8857164,32.7013756],[-79.8860993,32.6993419],[-79.8867098,32.6968757],[-79.8894474,32.694892],[-79.8927823,32.6965864],[-79.8958958,32.698955],[-79.8976983,32.6988877],[-79.8999332,32.69998],[-79.9001546,32.7000882],[-79.9028852,32.7013678],[-79.9037779,32.701786],[-79.9111164,32.7019567],[-79.9114577,32.7077593],[-79.9098422,32.7102981],[-79.9098408,32.7103002],[-79.9098395,32.7103023],[-79.9090684,32.7115139],[-79.9121404,32.7173165],[-79.9077031,32.7171459],[-79.9053138,32.7186819],[-79.9035271,32.7203569],[-79.903523,32.7203608],[-79.9035189,32.7203646],[-79.9025832,32.7212418],[-79.9000232,32.7222658],[-79.8977913,32.7229582],[-79.8937458,32.7242133],[-79.8912914,32.7253837],[-79.8902735,32.7271339],[-79.8895604,32.7291373],[-79.8891161,32.7292464],[-79.8868556,32.7298013],[-79.8836855,32.7280171],[-79.8832438,32.7281071],[-79.8816462,32.7284323],[-79.8800301,32.7272328],[-79.8763135,32.7283517],[-79.8763895,32.7324669],[-79.8744486,32.7359188],[-79.8732524,32.7387804],[-79.8709093,32.7407196],[-79.8687725,32.7365997],[-79.8687897,32.7326872],[-79.8698225,32.7294593]]],[[[-79.9219748,32.8040051],[-79.9248169,32.799293],[-79.9281236,32.8027616],[-79.9292163,32.804707],[-79.9292181,32.8047102],[-79.9292199,32.8047135],[-79.9302063,32.8064696],[-79.9283063,32.8103696],[-79.9272561,32.8129713],[-79.9255968,32.8159039],[-79.9216023,32.8146246],[-79.9200299,32.8128665],[-79.9196063,32.8097696],[-79.9215053,32.8047836],[-79.9219713,32.8040109],[-79.9219731,32.804008],[-79.9219748,32.8040051]]],[[[-119.0313451,33.4682189],[-119.0346973,33.4655161],[-119.0382443,33.4657812],[-119.0416925,33.469851],[-119.0434253,33.4732055],[-119.0427873,33.4759449],[-119.0473054,33.4816537],[-119.0412359,33.4828558],[-119.0371086,33.4830551],[-119.0341198,33.4854316],[-119.0317882,33.4868624],[-119.0288704,33.4873726],[-119.0297386,33.4845046],[-119.0282195,33.4789345],[-119.0290512,33.4750586],[-119.0308846,33.4730098],[-119.0313451,33.4682189]]],[[[-118.6051858,33.4782352],[-118.6016409,33.477517],[-118.5979692,33.4775985],[-118.5935362,33.4756719],[-118.5906111,33.4751652],[-118.5870225,33.4743413],[-118.5830269,33.4743472],[-118.5787089,33.4752589],[-118.5743244,33.4747426],[-118.5689275,33.4749465],[-118.5648789,33.4737335],[-118.5616902,33.4740772],[-118.5587091,33.4735942],[-118.5561649,33.4743404],[-118.552131,33.4734943],[-118.5469704,33.4742007],[-118.5431203,33.4747066],[-118.5388229,33.476501],[-118.5357441,33.4751264],[-118.5328787,33.472964],[-118.5307951,33.469365],[-118.5275889,33.4665877],[-118.5247972,33.4653845],[-118.5230589,33.4629332],[-118.5184274,33.4599313],[-118.5158154,33.4576972],[-118.5116136,33.4558186],[-118.5086976,33.4550087],[-118.5058099,33.4537943],[-118.5025067,33.4522058],[-118.5002765,33.4480545],[-118.4991265,33.4439163],[-118.4958561,33.4412154],[-118.4929584,33.4415552],[-118.4886927,33.4442832],[-118.4847025,33.4453504],[-118.4829619,33.4475094],[-118.4798087,33.4478918],[-118.4769622,33.4474388],[-118.4756516,33.4450324],[-118.4730074,33.4424849],[-118.4704049,33.4423767],[-118.4677409,33.4421602],[-118.4651249,33.4408264],[-118.4626315,33.4401225],[-118.4608551,33.4374659],[-118.4584369,33.4364017],[-118.4559841,33.4348327],[-118.4531899,33.4332297],[-118.4499255,33.4325965],[-118.4480539,33.4306762],[-118.4457999,33.4289022],[-118.4432324,33.4280782],[-118.4380332,33.4288795],[-118.4351851,33.4273452],[-118.4309806,33.4273507],[-118.4272239,33.4273679],[-118.4212102,33.4266912],[-118.4183469,33.4257402],[-118.4141135,33.4229864],[-118.4113414,33.4221772],[-118.4083229,33.4213172],[-118.4056293,33.4213513],[-118.4033249,33.4194209],[-118.4007805,33.4187698],[-118.3982174,33.4180732],[-118.3939661,33.416549],[-118.3890401,33.4173212],[-118.3868974,33.4149772],[-118.3846179,33.4124682],[-118.3825119,33.4104515],[-118.3791309,33.4097172],[-118.3764806,33.4101775],[-118.3729972,33.4101265],[-118.3697231,33.4085877],[-118.3670365,33.4064625],[-118.3672193,33.4006036],[-118.3691185,33.3976274],[-118.3695139,33.3949149],[-118.3686482,33.3910584],[-118.3654701,33.3881986],[-118.3627597,33.3859992],[-118.3585252,33.3816317],[-118.3560707,33.3780957],[-118.354206,33.3756168],[-118.3515969,33.3739227],[-118.3484828,33.3707713],[-118.3462909,33.3691257],[-118.3437919,33.3666642],[-118.3405834,33.3642822],[-118.3355599,33.3610652],[-118.3321339,33.3588207],[-118.3301562,33.3551161],[-118.3281663,33.3515256],[-118.3259249,33.3482655],[-118.3248794,33.3438619],[-118.3248749,33.3438429],[-118.324873,33.343835],[-118.3248723,33.3438319],[-118.324872,33.3438306],[-118.3248716,33.3438291],[-118.3248699,33.3438219],[-118.3215454,33.3446027],[-118.3183358,33.3435242],[-118.3183351,33.343524],[-118.3183343,33.3435237],[-118.3157209,33.3424612],[-118.3141849,33.3404402],[-118.3126159,33.3381152],[-118.3100313,33.3354968],[-118.3082726,33.3319949],[-118.3070703,33.32951],[-118.3067079,33.3268572],[-118.3057806,33.3241465],[-118.3033524,33.3199102],[-118.3035849,33.3155067],[-118.3045124,33.3128035],[-118.3050285,33.3090628],[-118.3075069,33.307346],[-118.3116683,33.305558],[-118.3149469,33.3023807],[-118.3177202,33.3010559],[-118.3215902,33.3002787],[-118.3246319,33.2993069],[-118.3280319,33.2995279],[-118.3306737,33.3007817],[-118.3347794,33.3017372],[-118.3382757,33.3030232],[-118.3435234,33.3054237],[-118.3465849,33.3078465],[-118.3493496,33.3088922],[-118.3515599,33.3111592],[-118.3549442,33.3138305],[-118.3596379,33.3151307],[-118.3626119,33.3154392],[-118.3679599,33.3171772],[-118.3706894,33.3182182],[-118.3728729,33.3195342],[-118.3753516,33.3201025],[-118.3796717,33.3207188],[-118.3829183,33.3209356],[-118.3862143,33.3206208],[-118.3893729,33.3205564],[-118.3930052,33.3200265],[-118.3974907,33.3200667],[-118.4000099,33.3205062],[-118.4033244,33.3209192],[-118.4072534,33.3209897],[-118.4105104,33.3204635],[-118.4133516,33.3199142],[-118.4168506,33.3190554],[-118.4209304,33.3173667],[-118.4247022,33.3179762],[-118.4271914,33.3185757],[-118.4298859,33.3190222],[-118.4347829,33.3195152],[-118.4409624,33.3188545],[-118.4441999,33.3206259],[-118.4479479,33.3203889],[-118.4510169,33.3209002],[-118.4562969,33.3218152],[-118.4602442,33.3241129],[-118.4627637,33.3250534],[-118.4650472,33.3264559],[-118.4673102,33.3295818],[-118.4698146,33.3316545],[-118.4723141,33.3335053],[-118.4735946,33.3368262],[-118.4765346,33.3391122],[-118.4779834,33.3416237],[-118.482004,33.3442656],[-118.4841225,33.3478739],[-118.4852119,33.350535],[-118.4865547,33.353197],[-118.4883901,33.3569367],[-118.4869349,33.3602749],[-118.4850981,33.3633233],[-118.4839259,33.3661139],[-118.4824941,33.3694212],[-118.4839234,33.3735607],[-118.480995,33.3745951],[-118.4800931,33.3770058],[-118.4800393,33.3803972],[-118.4763292,33.3812839],[-118.4739499,33.3831324],[-118.4750306,33.3854898],[-118.4777091,33.386272],[-118.4801666,33.3895266],[-118.4807961,33.3923829],[-118.4817104,33.3961753],[-118.4835376,33.3989495],[-118.4850989,33.4016956],[-118.4839135,33.4061742],[-118.4858375,33.4081765],[-118.4850775,33.4107785],[-118.4861772,33.4139644],[-118.4879179,33.4182029],[-118.4921969,33.4212398],[-118.4953219,33.4216735],[-118.4982714,33.4215859],[-118.5010735,33.4230257],[-118.5047903,33.4252142],[-118.5064893,33.428337],[-118.5029126,33.4329892],[-118.502196,33.4354516],[-118.5053229,33.4339057],[-118.5091222,33.4317249],[-118.5102345,33.4294119],[-118.5119586,33.4275647],[-118.5121217,33.4248655],[-118.5127133,33.4223069],[-118.5157609,33.4230703],[-118.5169306,33.4264358],[-118.5201329,33.4281632],[-118.5230815,33.4304612],[-118.5261414,33.4305007],[-118.5297161,33.4303382],[-118.5338325,33.4293214],[-118.5360662,33.4336104],[-118.5411239,33.4342832],[-118.5441496,33.4338367],[-118.5479889,33.434646],[-118.5508674,33.4353494],[-118.5542426,33.4335843],[-118.5569344,33.4333857],[-118.5615649,33.4341819],[-118.5646319,33.4371822],[-118.5686409,33.4383732],[-118.572158,33.4391437],[-118.5739645,33.441735],[-118.5720921,33.4446817],[-118.5733587,33.4470396],[-118.5778262,33.4486541],[-118.5813367,33.4519589],[-118.5837591,33.4544754],[-118.5862059,33.4581827],[-118.5906979,33.4615368],[-118.592794,33.4643265],[-118.5937929,33.4670332],[-118.5975176,33.4685175],[-118.6010797,33.4699764],[-118.6021821,33.4732195],[-118.6036895,33.4760542],[-118.6051858,33.4782352]]],[[[-118.2195667,33.7602074],[-118.2174785,33.7561029],[-118.2184866,33.7535827],[-118.222999,33.7521518],[-118.224736,33.7563054],[-118.2249409,33.7567955],[-118.2267984,33.7562467],[-118.2323884,33.7544184],[-118.2445654,33.750749],[-118.2414906,33.7435286],[-118.2338259,33.7423821],[-118.2333988,33.7423916],[-118.2328919,33.7424029],[-118.2300182,33.7424666],[-118.2297197,33.7424788],[-118.2292761,33.7425934],[-118.2245352,33.7438178],[-118.2241895,33.7439071],[-118.2207188,33.7450858],[-118.2194951,33.7454816],[-118.2181787,33.7447971],[-118.2178472,33.7446248],[-118.2175429,33.7444665],[-118.2175116,33.7443507],[-118.2224458,33.7430598],[-118.2313039,33.7400453],[-118.2412488,33.7417321],[-118.2412296,33.7415918],[-118.2413362,33.7416677],[-118.2427544,33.7424055],[-118.2367223,33.727476],[-118.2507395,33.7235045],[-118.2454441,33.7159508],[-118.246768,33.7148605],[-118.2501165,33.7155614],[-118.2579038,33.7165738],[-118.2605515,33.7240496],[-118.2580596,33.7284883],[-118.2522191,33.7309803],[-118.2441203,33.7328492],[-118.2410832,33.7337058],[-118.2454441,33.7433621],[-118.2452807,33.7441093],[-118.2465474,33.7496373],[-118.249103,33.7503468],[-118.2524647,33.7474574],[-118.253533,33.7451772],[-118.2522473,33.7447914],[-118.2521295,33.7441474],[-118.2531822,33.7419491],[-118.2517234,33.7383461],[-118.2503946,33.7350643],[-118.2479064,33.7358142],[-118.2476198,33.7353442],[-118.2475346,33.7352044],[-118.2529895,33.7324164],[-118.261662,33.7308255],[-118.2641394,33.7300439],[-118.2647084,33.7312549],[-118.2638616,33.7327492],[-118.2644943,33.734335],[-118.2649617,33.7339567],[-118.265806,33.7357298],[-118.2653545,33.7368495],[-118.2659075,33.7387983],[-118.2705219,33.7367283],[-118.2677188,33.733882],[-118.267805,33.7307771],[-118.2676499,33.7303912],[-118.2647164,33.7225662],[-118.2672937,33.721744],[-118.2679168,33.7215452],[-118.2709762,33.7288399],[-118.2711289,33.7291341],[-118.2712098,33.7301157],[-118.2745032,33.7354902],[-118.2747449,33.7397465],[-118.2709502,33.7468258],[-118.2687211,33.7490518],[-118.2687198,33.7490531],[-118.2687184,33.7490545],[-118.2681693,33.7496028],[-118.2618174,33.7549871],[-118.2595502,33.757668],[-118.2579368,33.7596136],[-118.2484937,33.7628404],[-118.2439803,33.7646055],[-118.2409773,33.764848],[-118.2409713,33.7648485],[-118.2409653,33.7648489],[-118.2406494,33.7648744],[-118.2385108,33.7650471],[-118.2385051,33.7650476],[-118.2384994,33.765048],[-118.2371835,33.7651543],[-118.2356283,33.7657007],[-118.2346374,33.7657825],[-118.2276619,33.7675857],[-118.2249929,33.7683772],[-118.2226793,33.7659248],[-118.2216204,33.7639797],[-118.2216182,33.7639758],[-118.2216161,33.7639719],[-118.2195667,33.7602074]]],[[[-118.1133416,33.7529445],[-118.1154276,33.7515538],[-118.1183944,33.75262],[-118.1198765,33.7508339],[-118.1208651,33.750768],[-118.1234936,33.7520637],[-118.1274339,33.7525737],[-118.1279551,33.7534266],[-118.1277597,33.7544314],[-118.1286987,33.7546433],[-118.1289571,33.7550943],[-118.1296172,33.7562467],[-118.1289418,33.7579354],[-118.1271265,33.7597929],[-118.1210474,33.7590752],[-118.118858,33.7580437],[-118.1133416,33.7529445]]],[[[-79.223638,33.2845617],[-79.226169,33.2835009],[-79.2273871,33.2835719],[-79.2302985,33.2837415],[-79.2348668,33.2859198],[-79.2332646,33.2899132],[-79.2325698,33.2919273],[-79.2320517,33.2934294],[-79.230332,33.2970357],[-79.2276667,33.2979071],[-79.2271216,33.2971296],[-79.2257036,33.2951072],[-79.225327,33.2937774],[-79.2249916,33.2925928],[-79.2239295,33.2904086],[-79.223828,33.289476],[-79.2235281,33.2867212],[-79.223638,33.2845617]]],[[[-79.2665726,33.3266635],[-79.2692739,33.3252415],[-79.2698634,33.3252598],[-79.2717571,33.3253185],[-79.2745867,33.326606],[-79.2750134,33.3288359],[-79.2755459,33.3316795],[-79.2750484,33.333616],[-79.2748219,33.3344975],[-79.2733023,33.3358178],[-79.2701749,33.3378544],[-79.2674946,33.3366387],[-79.2659714,33.3338878],[-79.2651514,33.3312405],[-79.2655344,33.3292255],[-79.2665726,33.3266635]]],[[[-79.2739091,33.3029153],[-79.2725124,33.2997982],[-79.2751234,33.3014235],[-79.2777339,33.3036688],[-79.2783547,33.3067608],[-79.2755252,33.3055733],[-79.2739092,33.3029155],[-79.2739092,33.3029154],[-79.2739091,33.3029153]]],[[[-117.8880435,33.608564],[-117.8864735,33.606531],[-117.8855274,33.6044376],[-117.8855362,33.6043547],[-117.8859546,33.6040478],[-117.8866024,33.6040357],[-117.8869162,33.6040298],[-117.8971333,33.6039906],[-117.9002005,33.6069367],[-117.9007046,33.608101],[-117.9005637,33.6089062],[-117.8996579,33.6088458],[-117.8981482,33.6088458],[-117.8957529,33.6084231],[-117.8947263,33.6085438],[-117.8896337,33.6089263],[-117.8886988,33.6085913],[-117.8880435,33.608564]]],[[[-117.9093801,33.608725],[-117.910306,33.6084231],[-117.9109702,33.6084835],[-117.9212838,33.6113719],[-117.9241403,33.6153369],[-117.9248618,33.6153636],[-117.9253059,33.6158078],[-117.924957,33.6165692],[-117.9243542,33.6172037],[-117.9208838,33.6156593],[-117.9090428,33.6103897],[-117.9084736,33.6101249],[-117.9093801,33.608725]]],[[[-119.3833394,34.0072338],[-119.3880195,34.0041835],[-119.3919032,34.0028011],[-119.3947937,34.003051],[-119.3950794,34.003073],[-119.3988241,34.0026409],[-119.4062749,34.005392],[-119.4064232,34.0061606],[-119.4051139,34.0072954],[-119.3998304,34.0065406],[-119.3972068,34.0055567],[-119.3970083,34.0058755],[-119.3931987,34.0060215],[-119.3918097,34.0062398],[-119.3854897,34.0086791],[-119.3841017,34.0098379],[-119.3808977,34.0112822],[-119.3799259,34.0096161],[-119.3814229,34.0084829],[-119.3832355,34.0073016],[-119.3833394,34.0072338]]],[[[-119.4303691,34.0153682],[-119.4269755,34.0150998],[-119.4244424,34.0152252],[-119.4227919,34.0147959],[-119.4198463,34.0138102],[-119.4164412,34.0126706],[-119.4124707,34.0080311],[-119.4126885,34.0067241],[-119.4159289,34.0061532],[-119.4184147,34.0058122],[-119.4219069,34.0054269],[-119.4239767,34.0071092],[-119.4281204,34.0078307],[-119.4310067,34.0086552],[-119.4344501,34.0101063],[-119.4383215,34.0105948],[-119.4443483,34.0133648],[-119.4429599,34.0146144],[-119.43902,34.014106],[-119.438927,34.0141195],[-119.4360177,34.0142532],[-119.4335972,34.0159474],[-119.4303691,34.0153682]]],[[[-119.3566824,34.0171075],[-119.3564308,34.0153463],[-119.3605757,34.0150393],[-119.3636897,34.0138742],[-119.3638584,34.0138332],[-119.3656139,34.0127046],[-119.3776717,34.0117303],[-119.377848,34.0120278],[-119.376055,34.0147173],[-119.3674696,34.0159128],[-119.3670914,34.0163452],[-119.3631917,34.0169194],[-119.3626445,34.0167568],[-119.3566824,34.0171075]]],[[[-119.9047754,34.0750252],[-119.9006241,34.0740369],[-119.8881811,34.0758329],[-119.8564913,34.070657],[-119.8539903,34.0696092],[-119.8384514,34.0643391],[-119.8330859,34.0625194],[-119.8304016,34.060773],[-119.8275306,34.0594797],[-119.8234675,34.0569811],[-119.8212397,34.0551238],[-119.8191364,34.05334],[-119.8148449,34.0533915],[-119.8027362,34.0535368],[-119.7995446,34.0538235],[-119.7970536,34.0564321],[-119.7938561,34.056501],[-119.7894141,34.0565004],[-119.7868723,34.0564358],[-119.784017,34.0566062],[-119.7801216,34.0560677],[-119.7774539,34.0562214],[-119.7737248,34.0556194],[-119.7707166,34.0550462],[-119.7682569,34.0557878],[-119.7667965,34.0578973],[-119.7606776,34.0581782],[-119.757955,34.057783],[-119.7557636,34.0564402],[-119.7553041,34.0534221],[-119.7509123,34.0528623],[-119.7476048,34.0518334],[-119.7423023,34.0508415],[-119.7375655,34.0468307],[-119.7335736,34.0459312],[-119.7308822,34.0474823],[-119.7269776,34.0476891],[-119.7236015,34.0455323],[-119.7209465,34.0446768],[-119.7169518,34.0437015],[-119.713817,34.0431316],[-119.7110046,34.0417419],[-119.7086632,34.040033],[-119.7064475,34.0382479],[-119.7040034,34.0368805],[-119.7036796,34.0337454],[-119.7005515,34.0323516],[-119.6978975,34.0303871],[-119.6931515,34.0286391],[-119.6903436,34.0267132],[-119.6885294,34.0234402],[-119.6871468,34.0207358],[-119.6839636,34.0196032],[-119.6824219,34.0197505],[-119.6792651,34.0200522],[-119.6763686,34.0194182],[-119.6736151,34.0193762],[-119.6713032,34.0183618],[-119.6652726,34.0165649],[-119.6624136,34.0172872],[-119.6574762,34.0188072],[-119.6541108,34.0193371],[-119.6518026,34.0175202],[-119.648522,34.0153605],[-119.6437976,34.0163396],[-119.640373,34.0155682],[-119.638334,34.0135247],[-119.63531,34.0136842],[-119.6321766,34.0135607],[-119.6294176,34.0144215],[-119.626599,34.0151862],[-119.6227581,34.0164124],[-119.6188464,34.0166966],[-119.6156766,34.0185712],[-119.6129764,34.0208332],[-119.6101076,34.0233045],[-119.6081113,34.0255412],[-119.6067909,34.027206],[-119.6067151,34.0335352],[-119.6087856,34.0352402],[-119.6071094,34.0395403],[-119.6037563,34.0410029],[-119.6006898,34.0438176],[-119.5982846,34.0445832],[-119.5958444,34.0460951],[-119.5941613,34.0485751],[-119.5904524,34.0482331],[-119.5883246,34.0508805],[-119.5843894,34.0533632],[-119.5805906,34.0508477],[-119.5779026,34.0504532],[-119.574196,34.050162],[-119.5727707,34.0522244],[-119.5667979,34.0526694],[-119.5648796,34.0550102],[-119.5622987,34.054922],[-119.5565385,34.0528078],[-119.5516815,34.0471254],[-119.5476669,34.046987],[-119.5444396,34.0437859],[-119.5412033,34.0441825],[-119.5383527,34.0435638],[-119.535869,34.0425175],[-119.5330687,34.0420842],[-119.5298793,34.0409789],[-119.52724,34.038994],[-119.5247998,34.0363839],[-119.520183,34.0338222],[-119.5213949,34.0313985],[-119.5248292,34.0301136],[-119.5261801,34.0292862],[-119.5277467,34.0271766],[-119.531483,34.0255727],[-119.5342977,34.0243722],[-119.5389353,34.0238769],[-119.5433374,34.0197204],[-119.5432355,34.0157627],[-119.5452707,34.0135224],[-119.5482682,34.0095507],[-119.5473168,34.0062227],[-119.5505782,34.0027747],[-119.5532022,34.0002227],[-119.5548379,33.9977177],[-119.5584862,33.9965557],[-119.5639201,33.9950904],[-119.5686416,33.9961317],[-119.5722697,33.9957647],[-119.5824221,33.9929778],[-119.5850559,33.9924497],[-119.5906498,33.9891879],[-119.6047773,33.9885253],[-119.6073906,33.9886822],[-119.6129138,33.98731],[-119.6162208,33.9874609],[-119.6196928,33.9879974],[-119.6233026,33.9888922],[-119.6259324,33.988362],[-119.6285976,33.9884382],[-119.6337273,33.9874127],[-119.6395148,33.9875569],[-119.643318,33.9876517],[-119.6483149,33.9877762],[-119.6531566,33.9878969],[-119.65716,33.9865849],[-119.6602286,33.9863072],[-119.6750977,33.9778752],[-119.6804553,33.9774077],[-119.6821404,33.9768817],[-119.6853723,33.9752115],[-119.6879276,33.9735108],[-119.6912861,33.9718707],[-119.6930001,33.9710875],[-119.6993346,33.971412],[-119.699721,33.968016],[-119.7014596,33.9672215],[-119.7055353,33.9688476],[-119.7085876,33.9667462],[-119.7127303,33.9646849],[-119.7154736,33.961216],[-119.720461,33.9598682],[-119.723236,33.9604702],[-119.727351,33.9616104],[-119.736044,33.962502],[-119.7400001,33.963176],[-119.7432831,33.9638377],[-119.7473486,33.9637562],[-119.7516458,33.9631014],[-119.7550711,33.9619327],[-119.7576246,33.9595425],[-119.7657844,33.9588895],[-119.7719031,33.9621027],[-119.7740693,33.9608062],[-119.779323,33.9612774],[-119.783482,33.9608908],[-119.7866271,33.9604617],[-119.7895144,33.9596906],[-119.7926286,33.9622592],[-119.7965366,33.9628895],[-119.804166,33.9634802],[-119.8078196,33.9631872],[-119.8162781,33.9596974],[-119.8174201,33.9594898],[-119.8187237,33.9597405],[-119.8205651,33.9634157],[-119.8244386,33.9658982],[-119.8296316,33.9682442],[-119.8359366,33.9697537],[-119.8411426,33.9703352],[-119.8458054,33.9687686],[-119.8492385,33.9669591],[-119.8499337,33.9671866],[-119.8511679,33.9687587],[-119.8546031,33.9714527],[-119.8571039,33.9731915],[-119.8605029,33.9757532],[-119.8647909,33.9788795],[-119.8676306,33.9801452],[-119.873673,33.9806386],[-119.8761351,33.9841487],[-119.8771926,33.9868738],[-119.878997,33.9900202],[-119.8810639,33.9936709],[-119.8815321,33.9967982],[-119.8840195,34.001736],[-119.8857976,34.0055782],[-119.8869228,34.008436],[-119.8820052,34.0153586],[-119.8768092,34.0241316],[-119.8763166,34.0320822],[-119.8793977,34.0343298],[-119.881464,34.0358198],[-119.8838356,34.0369377],[-119.886338,34.037988],[-119.887618,34.0391768],[-119.8881811,34.0423051],[-119.8945617,34.0456257],[-119.8999136,34.0505962],[-119.9029904,34.0518444],[-119.9060819,34.0538398],[-119.9090386,34.0554438],[-119.9116579,34.0562635],[-119.9149756,34.057755],[-119.9223148,34.0538177],[-119.9316057,34.059069],[-119.9295859,34.0608868],[-119.9256067,34.0620698],[-119.9221128,34.0631085],[-119.9225168,34.0669461],[-119.9244161,34.0682518],[-119.9247385,34.0703796],[-119.9198911,34.0782566],[-119.9122875,34.07706],[-119.9084074,34.0758928],[-119.9047754,34.0750252]]],[[[-119.2237678,34.1665961],[-119.2254224,34.1663893],[-119.2271804,34.169957],[-119.2274297,34.1790992],[-119.2234059,34.1792124],[-119.2237678,34.1665961]]],[[[-77.9395323,34.126549],[-77.9390323,34.122949],[-77.9386323,34.120049],[-77.9379323,34.117649],[-77.9393323,34.114449],[-77.9412323,34.110649],[-77.9428323,34.114649],[-77.9452323,34.116449],[-77.9475323,34.117349],[-77.9481323,34.120149],[-77.9482323,34.122649],[-77.9470323,34.124949],[-77.9447323,34.124149],[-77.9429323,34.124749],[-77.9434323,34.127749],[-77.9443323,34.130549],[-77.9422323,34.129949],[-77.9404323,34.128749],[-77.9395323,34.126549]]],[[[-77.9440718,33.9428816],[-77.9446323,33.941149],[-77.9468323,33.943849],[-77.9482323,33.946649],[-77.9487323,33.949449],[-77.9464323,33.948449],[-77.9449323,33.946749],[-77.9435323,33.944549],[-77.9440718,33.9428816]]],[[[-77.9585323,33.9147491],[-77.9597323,33.9124491],[-77.9607323,33.9095491],[-77.9607323,33.9072491],[-77.9611599,33.9073773],[-77.9627323,33.9078491],[-77.9623323,33.9051491],[-77.9631323,33.9024491],[-77.9660323,33.9037491],[-77.9669609,33.9042797],[-77.9681323,33.9049491],[-77.9693015,33.9057935],[-77.9699323,33.906249],[-77.9693323,33.9030491],[-77.9712323,33.9025491],[-77.9736323,33.9021491],[-77.9758323,33.9008491],[-77.9788323,33.9009491],[-77.9826322,33.8999491],[-77.9816258,33.9011843],[-77.9804323,33.9026491],[-77.9797645,33.9038633],[-77.9793323,33.9046491],[-77.9776362,33.9058826],[-77.9771323,33.9062491],[-77.9763323,33.9083491],[-77.9758323,33.9099491],[-77.9752152,33.9106222],[-77.9736323,33.9123491],[-77.9729323,33.9148491],[-77.9758323,33.9151491],[-77.9783323,33.9152491],[-77.9784581,33.9142844],[-77.9786323,33.9129491],[-77.9804323,33.9099491],[-77.982584,33.9079511],[-77.9832323,33.9073491],[-77.9862323,33.9091491],[-77.9846323,33.9104491],[-77.9825323,33.9121491],[-77.9837323,33.9156491],[-77.9801323,33.9179491],[-77.9791635,33.9206793],[-77.9790323,33.9210491],[-77.9766323,33.9205491],[-77.9735323,33.9215491],[-77.9712323,33.9197491],[-77.9687775,33.9199945],[-77.9682323,33.9200491],[-77.9652323,33.919549],[-77.9630323,33.9186491],[-77.9607323,33.9171491],[-77.9585323,33.9147491]]],[[[-77.9588317,33.9698176],[-77.9586374,33.9688183],[-77.9576861,33.9694525],[-77.9568588,33.9700041],[-77.9553802,33.9691416],[-77.9551276,33.9670364],[-77.9550106,33.9660612],[-77.9569834,33.9629687],[-77.9574029,33.9623111],[-77.9584614,33.9602066],[-77.9594148,33.9578912],[-77.9598062,33.9569406],[-77.9614712,33.9552116],[-77.9637125,33.954251],[-77.964481,33.954251],[-77.9648656,33.9540862],[-77.9662846,33.9525694],[-77.968677,33.9525259],[-77.969673,33.9525077],[-77.9704122,33.9528774],[-77.9704615,33.9531237],[-77.9705354,33.9534935],[-77.9676179,33.953806],[-77.9612944,33.9593461],[-77.9608632,33.9603934],[-77.9602471,33.9627961],[-77.9601219,33.9636481],[-77.9620323,33.962349],[-77.9633308,33.9615022],[-77.9643323,33.960849],[-77.9665323,33.9593491],[-77.9687323,33.957449],[-77.9712323,33.955549],[-77.9732184,33.9539241],[-77.9745323,33.952849],[-77.9749949,33.9522231],[-77.9766547,33.949486],[-77.9772506,33.9485033],[-77.9780221,33.948747],[-77.9784211,33.948873],[-77.9780515,33.9551568],[-77.9769425,33.9584836],[-77.9725481,33.961988],[-77.9703506,33.967355],[-77.9683987,33.9697178],[-77.9676399,33.971113],[-77.9642516,33.9719755],[-77.9626322,33.9721839],[-77.9613826,33.9723447],[-77.9590323,33.970849],[-77.9588317,33.9698176]]],[[[-77.8892323,34.037649],[-77.8906323,34.034349],[-77.8917323,34.032049],[-77.8927323,34.029749],[-77.8936323,34.027449],[-77.8945323,34.025049],[-77.8955323,34.022149],[-77.8965323,34.019649],[-77.8980323,34.015949],[-77.8994323,34.012249],[-77.9009323,34.008249],[-77.9018323,34.005849],[-77.9033323,34.002049],[-77.9046323,33.998649],[-77.9055323,33.996449],[-77.9065323,33.994149],[-77.9076323,33.990449],[-77.9086323,33.986949],[-77.9093323,33.984849],[-77.9103323,33.982349],[-77.9110323,33.980149],[-77.9121323,33.976849],[-77.9146323,33.972549],[-77.9174323,33.969349],[-77.9200323,33.966849],[-77.9213323,33.963749],[-77.9222323,33.961049],[-77.9233323,33.958149],[-77.9248323,33.954149],[-77.9262323,33.950249],[-77.9275323,33.947049],[-77.9284323,33.945049],[-77.9296323,33.942849],[-77.9314323,33.939349],[-77.9336323,33.9352491],[-77.9349323,33.9327491],[-77.9362323,33.9298491],[-77.9371323,33.9283491],[-77.9386323,33.9253491],[-77.9413323,33.9229491],[-77.9447323,33.9237491],[-77.9448323,33.9213491],[-77.9475323,33.9215491],[-77.9484323,33.9246491],[-77.9477323,33.9278491],[-77.9470323,33.9309491],[-77.9451323,33.9319491],[-77.9440323,33.9348491],[-77.9420323,33.9381491],[-77.9396323,33.9380491],[-77.9395323,33.9370491],[-77.9397323,33.9340491],[-77.9408323,33.9312491],[-77.9395323,33.9281491],[-77.9382323,33.9300491],[-77.9382323,33.9300767],[-77.9384769,33.9310894],[-77.9387281,33.9321295],[-77.9387294,33.9321352],[-77.9387308,33.9321408],[-77.9385471,33.9323662],[-77.9384333,33.9325059],[-77.9383087,33.9326588],[-77.9382323,33.9327491],[-77.9372323,33.9333491],[-77.9367323,33.9348491],[-77.9356323,33.9365491],[-77.9343323,33.9382491],[-77.9344323,33.940049],[-77.9365323,33.941949],[-77.9405323,33.941249],[-77.9408323,33.942449],[-77.9412323,33.943549],[-77.9413323,33.944649],[-77.9417323,33.946249],[-77.9416323,33.947449],[-77.9388323,33.947349],[-77.9380323,33.949549],[-77.9362323,33.949649],[-77.9342323,33.948449],[-77.9340323,33.951049],[-77.9321323,33.952249],[-77.9306323,33.953949],[-77.9280323,33.954649],[-77.9280323,33.957749],[-77.9315323,33.956049],[-77.9348323,33.955149],[-77.9370323,33.956249],[-77.9409323,33.958349],[-77.9435323,33.959449],[-77.9424105,33.9602385],[-77.9424096,33.9602391],[-77.9424087,33.9602397],[-77.9408323,33.961349],[-77.9390323,33.963149],[-77.9381323,33.964749],[-77.9355323,33.966949],[-77.9327323,33.969649],[-77.9309323,33.971049],[-77.9291703,33.9704807],[-77.9278323,33.970049],[-77.9243323,33.970449],[-77.9219323,33.972449],[-77.9217323,33.975149],[-77.9219323,33.979449],[-77.9202323,33.982049],[-77.9207323,33.986049],[-77.9207331,33.9860503],[-77.920734,33.9860515],[-77.9230323,33.989449],[-77.9230329,33.9894517],[-77.9230336,33.9894543],[-77.9237323,33.992449],[-77.9220323,33.995349],[-77.9199323,33.997249],[-77.9192323,33.999849],[-77.9191323,34.002249],[-77.9192323,34.005349],[-77.9164323,34.009249],[-77.9161323,34.011849],[-77.9168323,34.014449],[-77.9168327,34.0144498],[-77.9168331,34.0144505],[-77.9182323,34.017149],[-77.9182325,34.0171506],[-77.9182327,34.0171522],[-77.9185323,34.019749],[-77.9177323,34.023049],[-77.9168323,34.024749],[-77.9140323,34.024649],[-77.9123323,34.026149],[-77.9113323,34.029849],[-77.9113343,34.0298489],[-77.9113364,34.0298488],[-77.9150323,34.029649],[-77.9177323,34.028549],[-77.9183323,34.030349],[-77.9183331,34.0303516],[-77.918334,34.0303541],[-77.9193323,34.033449],[-77.9186323,34.037049],[-77.9186335,34.0370518],[-77.9186347,34.0370547],[-77.9197323,34.039649],[-77.9208323,34.041049],[-77.9208334,34.0410524],[-77.9208345,34.0410557],[-77.9217323,34.043849],[-77.9208323,34.048049],[-77.918688,34.0510706],[-77.9135866,34.0516437],[-77.9089628,34.0519572],[-77.9001855,34.055092],[-77.8998955,34.055155],[-77.8998945,34.0551552],[-77.8998934,34.0551555],[-77.8923337,34.0567989],[-77.8913032,34.0539452],[-77.891302,34.0539421],[-77.8913009,34.053939],[-77.8927405,34.0391831],[-77.8924281,34.0366838],[-77.8924276,34.0366796],[-77.8924271,34.0366753],[-77.8910164,34.038948],[-77.8871795,34.0476683],[-77.884982,34.0526625],[-77.8849841,34.0526638],[-77.8849861,34.052665],[-77.887105,34.0539822],[-77.8878817,34.054465],[-77.888734,34.0569688],[-77.8888106,34.0571937],[-77.8888105,34.0571937],[-77.8888105,34.0571938],[-77.8871715,34.060558],[-77.8869323,34.061049],[-77.886977,34.062076],[-77.8870323,34.063349],[-77.8871323,34.065249],[-77.8863323,34.066949],[-77.8853323,34.069649],[-77.884519,34.0718856],[-77.8841323,34.072949],[-77.8832323,34.075849],[-77.8801323,34.076249],[-77.8782323,34.077649],[-77.8772386,34.0778019],[-77.8756324,34.078049],[-77.8743345,34.0752537],[-77.8743334,34.0752514],[-77.8743323,34.075249],[-77.8743323,34.072649],[-77.8748636,34.0715156],[-77.8758323,34.069449],[-77.8769951,34.0672527],[-77.8776323,34.066049],[-77.8789323,34.063049],[-77.8793174,34.0619708],[-77.8799323,34.060249],[-77.8805477,34.0585397],[-77.8808323,34.057749],[-77.8822323,34.054349],[-77.8832323,34.051749],[-77.8843323,34.049249],[-77.8858323,34.045949],[-77.8868323,34.043649],[-77.8877323,34.041349],[-77.8892323,34.037649]]],[[[-74.1975909,39.6621415],[-74.1961454,39.6610402],[-74.1929495,39.661671],[-74.192431,39.6615968],[-74.1904277,39.66131],[-74.188625,39.6604501],[-74.1876443,39.6583828],[-74.1879073,39.657567],[-74.1884943,39.6557456],[-74.1895172,39.6557348],[-74.1895247,39.6557347],[-74.1895323,39.6557346],[-74.1902054,39.6557275],[-74.1905833,39.6548362],[-74.1913219,39.653094],[-74.1906486,39.6507192],[-74.1913079,39.647779],[-74.1950594,39.6458096],[-74.1983135,39.646444],[-74.2008849,39.6464708],[-74.2014958,39.6464771],[-74.2013051,39.6489427],[-74.2002337,39.6511825],[-74.1987651,39.6500127],[-74.1968783,39.6510793],[-74.1965496,39.6512652],[-74.1977987,39.65259],[-74.200618,39.6535183],[-74.2004166,39.6546605],[-74.2001904,39.6559427],[-74.1982735,39.6580826],[-74.200404,39.6606722],[-74.2004002,39.6606742],[-74.2003964,39.6606762],[-74.1975909,39.6621415]]],[[[-74.1472327,39.7076429],[-74.1472902,39.7066097],[-74.1508203,39.7066731],[-74.1538599,39.706572],[-74.1531547,39.7089973],[-74.150883,39.7098436],[-74.1471223,39.709627],[-74.1472327,39.7076429]]],[[[-74.1959389,39.6333092],[-74.1990627,39.6325274],[-74.1988301,39.6333316],[-74.198349,39.6349948],[-74.1979303,39.6382702],[-74.1954722,39.6387323],[-74.1951035,39.6388016],[-74.1925236,39.6388826],[-74.192404,39.6363968],[-74.1959389,39.6333092]]],[[[-74.2734499,39.5538836],[-74.2746093,39.549694],[-74.2782454,39.549728],[-74.2792886,39.549153],[-74.279698,39.5489274],[-74.2802352,39.548999],[-74.2816863,39.5504843],[-74.2815883,39.5524409],[-74.2815186,39.5538301],[-74.2812458,39.5539684],[-74.2796482,39.5521288],[-74.2776876,39.5535327],[-74.2766527,39.556625],[-74.2765146,39.5578913],[-74.2763407,39.5594855],[-74.2762238,39.5597106],[-74.2761706,39.5598131],[-74.276353,39.5629135],[-74.2741717,39.5629135],[-74.2734801,39.5618495],[-74.2739086,39.560942],[-74.2739826,39.5607851],[-74.273128,39.5590577],[-74.2734499,39.5538836]]],[[[-74.2894409,39.5508897],[-74.290771,39.5497724],[-74.2930055,39.5509961],[-74.296038,39.5526454],[-74.2965274,39.5534832],[-74.298132,39.5555689],[-74.3003892,39.5590819],[-74.3002854,39.5630128],[-74.2978014,39.5645066],[-74.2977604,39.5645313],[-74.2955045,39.5647758],[-74.2955982,39.5636748],[-74.2957504,39.5618878],[-74.295273,39.5585443],[-74.2938539,39.5573042],[-74.2928103,39.5563923],[-74.2908154,39.5537968],[-74.2908148,39.5537939],[-74.2908148,39.5537937],[-74.2908141,39.5537904],[-74.2902921,39.5533902],[-74.2900329,39.5526289],[-74.2894409,39.5508897]]],[[[-74.2845266,39.55512],[-74.2853579,39.5541971],[-74.2868063,39.5550917],[-74.2881147,39.5558998],[-74.2904543,39.5580477],[-74.2916468,39.5595623],[-74.2924247,39.5605504],[-74.2919217,39.56306],[-74.2916092,39.5637943],[-74.2911816,39.564799],[-74.2894566,39.5657141],[-74.2874857,39.564615],[-74.2855792,39.5636135],[-74.2832515,39.5632228],[-74.2820657,39.5612953],[-74.2822248,39.5576755],[-74.2845266,39.55512]]],[[[-74.1182855,39.7577146],[-74.1175257,39.7562323],[-74.1174965,39.7561752],[-74.1172023,39.7556015],[-74.1170339,39.7552097],[-74.1164164,39.7537739],[-74.1154917,39.7514919],[-74.1152304,39.7508471],[-74.1151188,39.7509204],[-74.112387,39.7527157],[-74.1123982,39.7577757],[-74.1123989,39.757776],[-74.1123995,39.7577763],[-74.1125118,39.7578294],[-74.1125098,39.7578321],[-74.1125078,39.7578349],[-74.1106895,39.7603143],[-74.106662,39.7635964],[-74.1046266,39.7652552],[-74.0952355,39.758006],[-74.0952329,39.758004],[-74.0952303,39.758002],[-74.1163177,39.7361845],[-74.1171767,39.734233],[-74.1186267,39.73215],[-74.1205247,39.728817],[-74.1213647,39.727171],[-74.1227997,39.724664],[-74.1245787,39.721276],[-74.127837,39.714029],[-74.1291282,39.7113243],[-74.1304993,39.7085373],[-74.1320397,39.7055308],[-74.1337162,39.7022537],[-74.1347167,39.7004085],[-74.1362561,39.6981863],[-74.13752,39.6959393],[-74.1394868,39.6927569],[-74.1420089,39.6889976],[-74.1437627,39.686464],[-74.145267,39.6844315],[-74.14685,39.6824336],[-74.1487194,39.679554],[-74.1508912,39.6765225],[-74.1536667,39.6730486],[-74.1563262,39.669405],[-74.157511,39.6679423],[-74.159245,39.6655366],[-74.1628799,39.6608848],[-74.1655052,39.657906],[-74.167974,39.6546186],[-74.1697589,39.6526136],[-74.1711837,39.650644],[-74.1740444,39.6474483],[-74.1758077,39.645275],[-74.1778927,39.6424656],[-74.1793227,39.6405385],[-74.181179,39.6379086],[-74.1828737,39.6357462],[-74.1845937,39.6334584],[-74.185652,39.6317445],[-74.1875827,39.6293374],[-74.1890714,39.6275367],[-74.1905897,39.6255898],[-74.1923324,39.6230017],[-74.1944103,39.6201995],[-74.1965673,39.6168169],[-74.1985717,39.6136528],[-74.2007191,39.610402],[-74.2035738,39.6063268],[-74.2055093,39.6036106],[-74.2076177,39.6008671],[-74.2099559,39.5974613],[-74.2124979,39.5943336],[-74.2141912,39.5923992],[-74.2157387,39.590038],[-74.2178717,39.5864686],[-74.2196567,39.5841782],[-74.2224367,39.5802815],[-74.2241395,39.5777758],[-74.225721,39.5751438],[-74.2274574,39.5728792],[-74.2289161,39.5710384],[-74.2304403,39.5682329],[-74.2326257,39.5649512],[-74.2341487,39.5628832],[-74.2363184,39.56031],[-74.2383839,39.557691],[-74.2399769,39.555808],[-74.2420094,39.5536137],[-74.2439773,39.5522304],[-74.2471741,39.549791],[-74.2494262,39.5475015],[-74.2508437,39.5457655],[-74.2532975,39.5427514],[-74.2557934,39.539912],[-74.2572357,39.5377183],[-74.2585297,39.535974],[-74.2600266,39.5332649],[-74.2625373,39.5310299],[-74.2657467,39.529249],[-74.2675217,39.527189],[-74.2689634,39.5251303],[-74.2703607,39.52346],[-74.2720467,39.521206],[-74.2743382,39.518095],[-74.2751338,39.517],[-74.2829716,39.5108122],[-74.2853384,39.5081278],[-74.2910266,39.5028994],[-74.2940117,39.5019518],[-74.3011664,39.5018096],[-74.302114,39.5052211],[-74.3021137,39.5052214],[-74.3021133,39.5052217],[-74.2925719,39.5119595],[-74.2847722,39.5182039],[-74.2817774,39.5189717],[-74.2800205,39.5199026],[-74.2780739,39.5221123],[-74.2776887,39.524424],[-74.2757863,39.526773],[-74.2735207,39.527581],[-74.271165,39.52922],[-74.2695727,39.531699],[-74.266881,39.5337087],[-74.2643655,39.5352197],[-74.2621053,39.5386299],[-74.2602941,39.5417516],[-74.2605627,39.544488],[-74.2590758,39.546885],[-74.2565988,39.5455642],[-74.2558441,39.5487806],[-74.2551158,39.553522],[-74.2550117,39.5539354],[-74.2544879,39.5560166],[-74.2538293,39.5574184],[-74.2532496,39.558652],[-74.2511956,39.5604909],[-74.2484882,39.5604823],[-74.2484843,39.5604823],[-74.2484804,39.5604823],[-74.2489524,39.5598999],[-74.2505065,39.5579821],[-74.2505087,39.5579794],[-74.2505109,39.5579767],[-74.2484569,39.5570536],[-74.2474859,39.5576791],[-74.2464354,39.558356],[-74.2446348,39.5606441],[-74.2446362,39.5606472],[-74.2446376,39.5606502],[-74.2459765,39.5635444],[-74.245976,39.5635457],[-74.2459754,39.563547],[-74.2446579,39.5664652],[-74.2416599,39.5677985],[-74.2396757,39.5689927],[-74.2382427,39.5708017],[-74.236107,39.572601],[-74.2348617,39.5757266],[-74.2307284,39.5782764],[-74.2287679,39.5815898],[-74.2289263,39.5848851],[-74.2287857,39.587565],[-74.2267892,39.5889815],[-74.2240847,39.590542],[-74.2215707,39.592191],[-74.2193759,39.594228],[-74.2177197,39.595479],[-74.2168702,39.5977959],[-74.2145803,39.6005653],[-74.2145811,39.6005691],[-74.2145819,39.600573],[-74.2150181,39.6027038],[-74.215018,39.6027039],[-74.2150179,39.602704],[-74.2113984,39.6058887],[-74.209279,39.6080766],[-74.2077491,39.610168],[-74.2077499,39.6101718],[-74.2077507,39.6101756],[-74.208213,39.612385],[-74.2082129,39.6123852],[-74.2082127,39.6123853],[-74.2064032,39.6143551],[-74.2038712,39.615089],[-74.2019047,39.615149],[-74.2007391,39.617607],[-74.2001547,39.6199968],[-74.199378,39.6227784],[-74.1976887,39.6254191],[-74.1942175,39.6271343],[-74.1934128,39.6295204],[-74.1911529,39.6318959],[-74.189186,39.6338507],[-74.1873588,39.6372988],[-74.1873602,39.6373015],[-74.1873615,39.6373042],[-74.1880153,39.6386053],[-74.1895912,39.6396023],[-74.1895894,39.6396047],[-74.1895876,39.6396071],[-74.1889562,39.6404489],[-74.1861256,39.6397262],[-74.1856356,39.6412649],[-74.1859298,39.6440107],[-74.18593,39.6440108],[-74.1859302,39.6440108],[-74.1885329,39.6443295],[-74.1885326,39.6443334],[-74.1885322,39.6443373],[-74.1883918,39.6458817],[-74.1865735,39.6467909],[-74.1864007,39.647098],[-74.1853347,39.649707],[-74.1850307,39.6520983],[-74.1842005,39.6531796],[-74.1841985,39.6531823],[-74.1841965,39.6531849],[-74.1833122,39.6543367],[-74.1801003,39.6561624],[-74.1773573,39.6568777],[-74.1773593,39.6568813],[-74.1773613,39.656885],[-74.1780979,39.6582044],[-74.1799957,39.6600634],[-74.1799957,39.6600668],[-74.1799957,39.6600702],[-74.1799957,39.6611217],[-74.1795018,39.6618273],[-74.1778084,39.6618979],[-74.1758557,39.6614973],[-74.1741292,39.6633885],[-74.1713763,39.6650002],[-74.1685747,39.666503],[-74.1662584,39.6676328],[-74.1640492,39.6687725],[-74.1627006,39.6702853],[-74.1613417,39.671802],[-74.1597599,39.6728217],[-74.1575267,39.6752636],[-74.1543294,39.6791966],[-74.1522612,39.6829192],[-74.1498384,39.6852064],[-74.1498406,39.6852089],[-74.1498429,39.6852114],[-74.1514475,39.6870226],[-74.1514448,39.6870228],[-74.1514421,39.687023],[-74.1489864,39.687225],[-74.1469787,39.6877228],[-74.1451802,39.6902786],[-74.1438055,39.6931081],[-74.1407486,39.6963238],[-74.1407529,39.696324],[-74.1407572,39.6963242],[-74.1445876,39.6964779],[-74.1445877,39.6964819],[-74.1445878,39.6964859],[-74.1446585,39.70018],[-74.1444646,39.700334],[-74.1422375,39.7021043],[-74.1389777,39.702081],[-74.1369923,39.7042418],[-74.1351667,39.7063871],[-74.1374017,39.708139],[-74.1366207,39.709701],[-74.1341134,39.7112872],[-74.132001,39.7142499],[-74.1307414,39.7171473],[-74.1298474,39.7192633],[-74.1299575,39.7212658],[-74.1326829,39.7211366],[-74.1346987,39.723728],[-74.134094,39.7258705],[-74.1341,39.7259695],[-74.1343092,39.729416],[-74.1321882,39.7317144],[-74.1312249,39.7317564],[-74.12958,39.731828],[-74.1276237,39.732239],[-74.1247202,39.7322991],[-74.1238442,39.7329681],[-74.1237882,39.7336741],[-74.1232476,39.7404972],[-74.1206436,39.7414635],[-74.1189517,39.7431346],[-74.1176007,39.745813],[-74.1161369,39.7482894],[-74.1161391,39.7482907],[-74.1161413,39.7482921],[-74.118542,39.7497753],[-74.1216417,39.748591],[-74.1237204,39.749731],[-74.1257993,39.7501427],[-74.1261205,39.7496467],[-74.1263142,39.7495667],[-74.1295164,39.7482436],[-74.131241,39.7479286],[-74.1318887,39.7478103],[-74.1325336,39.7482331],[-74.1337452,39.7490275],[-74.1361362,39.7507966],[-74.1385874,39.7510716],[-74.1388757,39.751104],[-74.1409154,39.7521296],[-74.1394307,39.7538425],[-74.1388582,39.754503],[-74.1367024,39.7548904],[-74.1338896,39.7567941],[-74.1322792,39.757654],[-74.1310449,39.758313],[-74.1274073,39.757444],[-74.1265789,39.7576118],[-74.1234831,39.7582386],[-74.1221981,39.7585904],[-74.1235839,39.773003],[-74.1201222,39.7734976],[-74.1178143,39.7685522],[-74.1179466,39.7655106],[-74.1182855,39.7577146]]],[[[-74.1394336,39.7600554],[-74.1418787,39.759665],[-74.1437509,39.7604196],[-74.144038,39.7605353],[-74.1440176,39.7614402],[-74.1439712,39.763493],[-74.1423376,39.7659085],[-74.1400444,39.7664549],[-74.1376187,39.7668023],[-74.1351287,39.765977],[-74.1346722,39.7657549],[-74.1331249,39.7650022],[-74.133181,39.7644388],[-74.1333579,39.7626636],[-74.1352272,39.7622009],[-74.1394336,39.7600554]]],[[[-74.1082486,39.7867906],[-74.1076371,39.7856758],[-74.1091204,39.7852417],[-74.1131113,39.7856901],[-74.1146107,39.7858586],[-74.1178217,39.785719],[-74.1209376,39.7899102],[-74.1211113,39.7970707],[-74.1174846,39.7972355],[-74.1143573,39.7943195],[-74.1103065,39.7905425],[-74.1082486,39.7867906]]],[[[-74.582078,39.2851345],[-74.5821714,39.2850351],[-74.5833601,39.2855581],[-74.5849609,39.2862625],[-74.5855632,39.2863259],[-74.5879048,39.2865723],[-74.5898984,39.2884584],[-74.5873284,39.2888466],[-74.5849398,39.288928],[-74.5838094,39.2891838],[-74.5838074,39.2891842],[-74.5838054,39.2891847],[-74.5808921,39.2898438],[-74.5797577,39.287604],[-74.5820759,39.2851367],[-74.5820769,39.2851356],[-74.582078,39.2851345]]],[[[-74.5766633,39.2954126],[-74.5847145,39.2943737],[-74.5878536,39.2944802],[-74.587856,39.2944802],[-74.5878584,39.2944803],[-74.5898223,39.2945469],[-74.5913598,39.2947177],[-74.5916923,39.2947547],[-74.5920045,39.2947351],[-74.5950166,39.2945469],[-74.5951403,39.2950414],[-74.5953629,39.2959321],[-74.5936315,39.2972306],[-74.5939415,39.2992972],[-74.5941509,39.3006935],[-74.5926095,39.3009234],[-74.5926075,39.3009237],[-74.5926055,39.300924],[-74.5872031,39.3017296],[-74.5856429,39.3019623],[-74.5837622,39.3023384],[-74.5826306,39.3020084],[-74.577529,39.3005204],[-74.5766633,39.2954126]]],[[[-74.6117251,39.301819],[-74.6117251,39.3002607],[-74.6151014,39.2970575],[-74.6177852,39.2966246],[-74.6201737,39.2970869],[-74.6208759,39.2972228],[-74.6208781,39.2972232],[-74.6208802,39.2972237],[-74.620978,39.2972426],[-74.6212481,39.2978366],[-74.6225467,39.2985292],[-74.6233555,39.2990145],[-74.6233615,39.2990181],[-74.6233625,39.2990187],[-74.6233666,39.2990212],[-74.6234124,39.2990487],[-74.6223735,39.3017324],[-74.622054,39.3017324],[-74.6220513,39.3017324],[-74.6220487,39.3017324],[-74.6208498,39.3017324],[-74.6190751,39.3016631],[-74.6190728,39.301663],[-74.6190705,39.3016629],[-74.6173842,39.301597],[-74.6173782,39.3015928],[-74.6173721,39.3015885],[-74.6173101,39.3015447],[-74.6143236,39.3014551],[-74.6142413,39.3013996],[-74.6117251,39.301819]]],[[[-74.5858996,39.3071151],[-74.5841349,39.3052257],[-74.5873469,39.3045048],[-74.5895506,39.3030084],[-74.5905558,39.3023235],[-74.5912372,39.3018593],[-74.5925282,39.3019043],[-74.594006,39.3030708],[-74.5931666,39.3048511],[-74.5928696,39.3051713],[-74.592053,39.3060517],[-74.5913985,39.3067574],[-74.5890573,39.3065591],[-74.5890571,39.3065591],[-74.5890569,39.3065591],[-74.5858996,39.3071151]]],[[[-74.4539175,39.3984966],[-74.4560712,39.3974021],[-74.4584614,39.3981988],[-74.4587829,39.398306],[-74.459178,39.3984377],[-74.4602749,39.3990495],[-74.4626475,39.4003731],[-74.4616816,39.4011458],[-74.4615116,39.4012818],[-74.4601811,39.4013791],[-74.4600742,39.4012431],[-74.4558917,39.4004592],[-74.4547143,39.3992887],[-74.4539175,39.3984966]]],[[[-74.3867452,39.4588151],[-74.3885311,39.4573604],[-74.3902781,39.4577265],[-74.3914169,39.4591559],[-74.3919301,39.4616608],[-74.3920964,39.4624721],[-74.3926591,39.4658517],[-74.3888185,39.4645481],[-74.3886122,39.4639773],[-74.387817,39.4617781],[-74.3867452,39.4588151]]],[[[-74.4098701,39.4010399],[-74.4130281,39.4033301],[-74.4153149,39.4034376],[-74.4166476,39.4058991],[-74.4148196,39.406481],[-74.411823,39.4058883],[-74.410832,39.4062121],[-74.4079599,39.4071505],[-74.4096594,39.4040146],[-74.4098696,39.4010477],[-74.4098698,39.401044],[-74.4098699,39.4010425],[-74.4098701,39.4010399]]],[[[-74.4098701,39.4010399],[-74.4098685,39.4010397],[-74.409868,39.4010397],[-74.4063448,39.4006563],[-74.4063458,39.4006603],[-74.4063468,39.4006644],[-74.4065814,39.4016249],[-74.4070472,39.4035321],[-74.4070469,39.4035323],[-74.4070467,39.4035325],[-74.4052472,39.404987],[-74.4034027,39.4043161],[-74.4024221,39.4039594],[-74.4020084,39.4039795],[-74.3996883,39.4040918],[-74.3995579,39.404731],[-74.3994705,39.4051592],[-74.3992209,39.4063828],[-74.3974782,39.4048101],[-74.397232,39.4047619],[-74.3965205,39.4046225],[-74.3955428,39.4044309],[-74.3948102,39.4023195],[-74.392944,39.4039377],[-74.3924679,39.4043505],[-74.3924023,39.4044074],[-74.3924494,39.4044916],[-74.3925357,39.4046461],[-74.3933849,39.4061652],[-74.3938603,39.4070157],[-74.3945123,39.4073305],[-74.3947302,39.4074357],[-74.3957242,39.4079158],[-74.3969686,39.4101595],[-74.3988736,39.410092],[-74.3989127,39.4105978],[-74.399004,39.4117794],[-74.401156,39.4138077],[-74.4011013,39.4152536],[-74.4010612,39.4163117],[-74.3991052,39.4161851],[-74.3961469,39.4145468],[-74.3927739,39.4129159],[-74.3923905,39.4127621],[-74.3893441,39.4115406],[-74.3863691,39.4120526],[-74.3837891,39.4111913],[-74.3817742,39.4104646],[-74.3800243,39.4097381],[-74.3801241,39.4082491],[-74.3801615,39.407691],[-74.3804251,39.4060712],[-74.380588,39.4050707],[-74.38238,39.4037568],[-74.3825097,39.4036617],[-74.3832904,39.4037919],[-74.3845224,39.4039974],[-74.3845228,39.4039975],[-74.3845233,39.4039976],[-74.3837289,39.401112],[-74.3836831,39.4009454],[-74.3797003,39.4024126],[-74.3772379,39.403454],[-74.3754487,39.4039386],[-74.3749987,39.4079634],[-74.3749995,39.407966],[-74.3750003,39.4079685],[-74.3762674,39.4118273],[-74.3798808,39.4134247],[-74.3828839,39.4157637],[-74.3828845,39.4157676],[-74.3828851,39.4157716],[-74.3834024,39.4190032],[-74.3834025,39.4190032],[-74.3834025,39.4190032],[-74.3838356,39.4191297],[-74.385213,39.4195321],[-74.3855264,39.4196236],[-74.3861007,39.4165147],[-74.3879071,39.4167879],[-74.3891746,39.4169796],[-74.3920029,39.4181253],[-74.3920036,39.4181293],[-74.3920042,39.4181332],[-74.3925336,39.4214595],[-74.3904132,39.4232747],[-74.3896183,39.4267541],[-74.3883711,39.4290168],[-74.3883735,39.4290179],[-74.3883758,39.4290189],[-74.3918363,39.4305159],[-74.3941205,39.4316478],[-74.3941174,39.4316499],[-74.3941142,39.4316519],[-74.3914888,39.4334068],[-74.3885326,39.434542],[-74.3853793,39.4343097],[-74.3838482,39.4328386],[-74.3815975,39.4309682],[-74.3777323,39.4286268],[-74.3751209,39.4257243],[-74.3731959,39.4240899],[-74.3731934,39.4240878],[-74.373191,39.4240857],[-74.3747322,39.4224367],[-74.3772427,39.4237992],[-74.3781128,39.4235795],[-74.3797776,39.423159],[-74.3799437,39.4225793],[-74.380566,39.4204085],[-74.3806458,39.4201302],[-74.3806468,39.4201267],[-74.3806478,39.4201231],[-74.3778003,39.4193469],[-74.3753667,39.4200711],[-74.3726866,39.4211244],[-74.3702279,39.4221085],[-74.368041,39.4229818],[-74.3652324,39.4233077],[-74.3643658,39.421316],[-74.362326,39.4194976],[-74.3602384,39.4173397],[-74.3581463,39.4157226],[-74.3565844,39.4166737],[-74.3553277,39.4194519],[-74.3553297,39.4194528],[-74.3553318,39.4194537],[-74.355464,39.4195132],[-74.3567345,39.4200851],[-74.3591196,39.4220256],[-74.3588344,39.4234744],[-74.3584618,39.4253672],[-74.360149,39.4265712],[-74.3632415,39.427638],[-74.3645201,39.4305143],[-74.3654135,39.4330601],[-74.3638359,39.4336847],[-74.3630117,39.434011],[-74.3624769,39.4339715],[-74.3604058,39.4338185],[-74.3566737,39.4337721],[-74.356363,39.4336949],[-74.3544119,39.4332097],[-74.3544002,39.4332068],[-74.3543885,39.4332039],[-74.3563555,39.4359431],[-74.3558999,39.436399],[-74.3544155,39.4378844],[-74.3516665,39.4389329],[-74.3511404,39.439015],[-74.3494895,39.4392729],[-74.3487232,39.4393926],[-74.3448932,39.4398005],[-74.3433822,39.4398588],[-74.3429504,39.4398755],[-74.3424188,39.4398372],[-74.3412565,39.4397534],[-74.3408184,39.4397218],[-74.3396982,39.4409389],[-74.3385755,39.4407773],[-74.3378716,39.440676],[-74.3289888,39.4393979],[-74.3311865,39.437096],[-74.3342254,39.4339611],[-74.3359507,39.4319903],[-74.3377091,39.4301136],[-74.3403822,39.4274271],[-74.342287,39.425647],[-74.3444825,39.4235895],[-74.3472635,39.4205587],[-74.3495257,39.4182567],[-74.3521407,39.4158765],[-74.3547059,39.4133457],[-74.3575434,39.4108982],[-74.3592648,39.4090972],[-74.3612292,39.4071452],[-74.3643799,39.4043064],[-74.3674415,39.401787],[-74.3690483,39.4003493],[-74.3711084,39.398775],[-74.3726704,39.3973869],[-74.3758079,39.3953594],[-74.3792068,39.3930644],[-74.3821929,39.3911067],[-74.3847755,39.3892269],[-74.3865213,39.387889],[-74.3882165,39.3865844],[-74.3906195,39.3846564],[-74.3927814,39.3827889],[-74.3954942,39.3805207],[-74.3982236,39.3785416],[-74.4000668,39.3772924],[-74.4022927,39.3760166],[-74.4041884,39.37458],[-74.4071286,39.3757372],[-74.4088716,39.3778938],[-74.4113846,39.377824],[-74.4133614,39.3790922],[-74.4145735,39.3813943],[-74.4157704,39.3837811],[-74.4181322,39.385791],[-74.4193209,39.3869532],[-74.4193237,39.3869559],[-74.4193265,39.3869587],[-74.4198677,39.3874878],[-74.4198678,39.3874911],[-74.4198678,39.3874945],[-74.4199176,39.3901278],[-74.4199182,39.3901277],[-74.4199188,39.3901277],[-74.4201184,39.3901023],[-74.4233198,39.3896951],[-74.4265646,39.3920825],[-74.4283115,39.394005],[-74.4293619,39.3959161],[-74.429361,39.3959173],[-74.4293601,39.3959184],[-74.427821,39.3978514],[-74.4278236,39.397853],[-74.4278262,39.3978545],[-74.4289882,39.3985575],[-74.4307547,39.3996261],[-74.4326769,39.4015676],[-74.4326742,39.4015682],[-74.4326715,39.4015687],[-74.4299936,39.4021023],[-74.4277193,39.401671],[-74.425683,39.400669],[-74.4234404,39.4000292],[-74.4230175,39.3999086],[-74.4220137,39.399685],[-74.420311,39.3993057],[-74.4177904,39.3982073],[-74.4160566,39.3969382],[-74.4160553,39.3969373],[-74.4160541,39.3969364],[-74.4162203,39.396061],[-74.4164726,39.3947321],[-74.4178912,39.3932055],[-74.4186065,39.3924358],[-74.418609,39.3924332],[-74.4186115,39.3924305],[-74.4152174,39.3910413],[-74.4111638,39.3906504],[-74.4083509,39.3918632],[-74.4070729,39.3944148],[-74.4070741,39.3944177],[-74.4070753,39.3944205],[-74.4083922,39.397549],[-74.4098701,39.4010399]]],[[[-74.4051173,39.4133404],[-74.4079211,39.4121755],[-74.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment