diff --git a/app/__init__.py b/app/__init__.py new file mode 100644 index 0000000..e69de29 diff --git a/market_analysis.py b/app/market_analysis.py similarity index 79% rename from market_analysis.py rename to app/market_analysis.py index cf08ba3..22ccd85 100644 --- a/market_analysis.py +++ b/app/market_analysis.py @@ -9,7 +9,17 @@ import pandas_gbq from google.oauth2 import service_account -from bigquery_utils import load_henry_hub_from_bigquery +import json +import plotly.express as px + +import os +import sys + +PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +if PROJECT_ROOT not in sys.path: + sys.path.append(PROJECT_ROOT) + +from src.bigquery_utils import load_henry_hub_from_bigquery # noqa: E402 # ------ Page config ------ st.set_page_config(page_title="Energy Market Analysis", layout="wide") @@ -30,6 +40,19 @@ "LONGIL": "K - Long Island", } +MAP_ZONE_MAP = { + "WEST": "A", + "GENESE": "B", + "CENTRL": "C", + "NORTH": "D", + "MHK VL": "E", + "CAPITL": "F", + "HUD VL": "G", + "MILLWD": "H", + "DUNWOD": "I", + "N.Y.C.": "J", + "LONGIL": "K", +} # ------ Credentials ------ creds = st.secrets["gcp_service_account"] @@ -189,6 +212,126 @@ def create_demand_chart(LBMP_load: pd.DataFrame, selected_zone: str) -> alt.Char ) +@st.cache_data +def load_nyiso_geojson(): + geojson_path = os.path.join(PROJECT_ROOT, "data", "geo", "nyiso_zones.geojson") + if not os.path.exists(geojson_path): + return None + + with open(geojson_path, "r", encoding="utf-8") as f: + return json.load(f) + + +@st.cache_data +def prepare_map_data(lbpm_load: pd.DataFrame) -> pd.DataFrame: + df = lbpm_load.copy() + + df["Time_Stamp"] = pd.to_datetime(df["Time_Stamp"], errors="coerce") + df = df.dropna(subset=["Time_Stamp", "Name", "Load", "LBMP____MWHr_"]) + + df["zone_code"] = df["Name"].map(MAP_ZONE_MAP) + df = df.dropna(subset=["zone_code"]) + + df["map_date"] = df["Time_Stamp"].dt.date + df["map_hour"] = df["Time_Stamp"].dt.hour + + grouped = df.groupby(["map_date", "map_hour", "zone_code"], as_index=False).agg( + avg_load=("Load", "mean"), + avg_lbmp=("LBMP____MWHr_", "mean"), + ) + return grouped + + +def render_zone_map(lbpm_load: pd.DataFrame) -> None: + st.subheader("NYISO Zone Map") + st.write( + "This map shows the average load or average LBMP across NYISO zones " + "for a selected day and hour in the chosen month." + ) + + geojson_data = load_nyiso_geojson() + if geojson_data is None: + st.warning("Map file not found: data/geo/nyiso_zones.geojson") + return + + map_df = prepare_map_data(lbpm_load) + if map_df.empty: + st.warning("No map data available.") + return + + col1, col2, col3 = st.columns(3) + + available_dates = sorted(map_df["map_date"].unique()) + selected_date = col1.selectbox( + "Select date for map", available_dates, key="map_date_select" + ) + + selected_hour = col2.slider( + "Select hour", + min_value=0, + max_value=23, + value=18, + step=1, + key="map_hour_slider", + ) + + selected_metric = col3.selectbox( + "Map metric", ["Average Load", "Average LBMP"], key="map_metric_select" + ) + + filtered = map_df[ + (map_df["map_date"] == selected_date) & (map_df["map_hour"] == selected_hour) + ].copy() + + if filtered.empty: + st.info("No zone data available for this date and hour.") + return + + if selected_metric == "Average Load": + color_col = "avg_load" + color_scale = "Blues" + legend_title = "Load (MW)" + else: + color_col = "avg_lbmp" + color_scale = "Reds" + legend_title = "LBMP ($/MWh)" + + fig = px.choropleth_mapbox( + filtered, + geojson=geojson_data, + locations="zone_code", + featureidkey="properties.Zone", + color=color_col, + color_continuous_scale=color_scale, + mapbox_style="carto-darkmatter", + center={"lat": 42.9, "lon": -75.5}, + zoom=5.5, + opacity=0.72, + hover_name="zone_code", + hover_data={ + "avg_load": ":.1f", + "avg_lbmp": ":.2f", + "zone_code": False, + }, + title=f"{selected_metric} by NYISO Zone | {selected_date} {selected_hour:02d}:00", + ) + + fig.update_layout( + height=620, + margin={"r": 0, "t": 60, "l": 0, "b": 0}, + coloraxis_colorbar=dict(title=legend_title), + paper_bgcolor="rgba(0,0,0,0)", + plot_bgcolor="rgba(0,0,0,0)", + ) + + st.plotly_chart(fig, use_container_width=True) + + st.dataframe( + filtered.sort_values(color_col, ascending=False).reset_index(drop=True), + use_container_width=True, + ) + + def compute_gas_metrics(df: pd.DataFrame) -> dict[str, str]: avg_price = df["price"].mean() max_price = df["price"].max() @@ -296,6 +439,10 @@ def render_demand_section(year: int, month: int) -> None: st.write("**Interpretation**") st.write(demand_interpretation(LBMP_load, selected_zone)) + st.divider() + render_zone_map(LBMP_load) + st.divider() + def render_electricity_section(year: int, month: int) -> None: st.header("The Comparison of Electricity and Gas Markets") diff --git a/proposal.py b/app/proposal.py similarity index 100% rename from proposal.py rename to app/proposal.py diff --git a/streamlit_app.py b/app/streamlit_app.py similarity index 100% rename from streamlit_app.py rename to app/streamlit_app.py diff --git a/data/geo/nyiso_zones.geojson b/data/geo/nyiso_zones.geojson new file mode 100644 index 0000000..b8b1954 --- /dev/null +++ b/data/geo/nyiso_zones.geojson @@ -0,0 +1 @@ +{"type":"FeatureCollection","crs":{"type":"name","properties":{"name":"EPSG:4326"}},"features":[{"type":"Feature","id":1,"geometry":{"type":"MultiPolygon","coordinates":[[[[-78.9077416614519,42.9346352482969],[-78.9030352655075,42.9312756387117],[-78.9016349653544,42.9295497234789],[-78.9010980126647,42.9241208017109],[-78.9019512783356,42.9208908450226],[-78.9025377955711,42.9197948715898],[-78.9030245827421,42.918369162888],[-78.9034455620303,42.9162209000207],[-78.9039798314523,42.9127227068643],[-78.9044531591654,42.9132917788943],[-78.9045841290422,42.9153626648174],[-78.9045630860067,42.916515861727],[-78.9049641101192,42.9203197400591],[-78.9052311630835,42.9228856801017],[-78.9077417997924,42.9311823192708],[-78.9089641571625,42.9337921065119],[-78.9084652858543,42.9336966237799],[-78.9078986429461,42.9341301739646],[-78.9077416614519,42.9346352482969]]],[[[-78.9211919906739,42.9544553233589],[-78.9222163440839,42.9533847435312],[-78.9233059996253,42.9529556755823],[-78.9237193333521,42.9530765383827],[-78.9246815323277,42.9530975161826],[-78.9254732050112,42.9535565209627],[-78.9262811246249,42.9548297951705],[-78.9261770089851,42.9552700512734],[-78.9253542042872,42.9551587628491],[-78.9255223006364,42.9550404419597],[-78.9255544261876,42.9549042830756],[-78.9249093028629,42.9538865191426],[-78.9244287176606,42.9536059038035],[-78.9234829461767,42.9535843594272],[-78.9221723850255,42.9548763617096],[-78.9239959857136,42.9563578840519],[-78.923476576223,42.9567043547176],[-78.9213917750948,42.9550066961547],[-78.9214140739751,42.9548393626587],[-78.9211919906739,42.9544553233589]]],[[[-78.9565270723561,42.9586709911567],[-78.956642844535,42.9585499348832],[-78.9597395097959,42.9588253182318],[-78.9609891049836,42.9592186840619],[-78.9637300490701,42.9608658396757],[-78.963780537084,42.9615168520813],[-78.9612895546152,42.9622334934126],[-78.9596924506514,42.9621177828218],[-78.9587181531656,42.9618094038143],[-78.9580168680677,42.9612124466794],[-78.9579878569756,42.9601015009486],[-78.9572876956701,42.959873649183],[-78.9565270723561,42.9586709911567]]],[[[-78.9331546873276,42.9634755290164],[-78.9338881635537,42.963400758954],[-78.9353478917544,42.9647640690205],[-78.9355417284298,42.9654326678302],[-78.9353659002809,42.9660689802637],[-78.9329382229885,42.9639736797725],[-78.9331546873276,42.9634755290164]]],[[[-78.8844759172273,43.0240248544548],[-78.8851609535984,43.0239115245522],[-78.8861275471323,43.0233564383438],[-78.8865950825085,43.0237276922835],[-78.8866255093454,43.0239967667947],[-78.8859398486453,43.0239120459962],[-78.8859404756693,43.0241101057342],[-78.8865619939633,43.0250973752508],[-78.88690233598,43.0282370804189],[-78.8883963834179,43.0316616546946],[-78.8887994134684,43.0336737598994],[-78.8887981037247,43.0345201482982],[-78.8884566738482,43.0345857915752],[-78.8835025872271,43.0313599178336],[-78.8826630415255,43.0299388624594],[-78.8823199955797,43.0286179770849],[-78.8825095311216,43.0261895496001],[-78.8844759172273,43.0240248544548]]],[[[-78.9720698168267,43.0608404001163],[-78.9676661863708,43.0603992001041],[-78.9653114190418,43.0606025122428],[-78.9621803599836,43.0612783809338],[-78.9615842792835,43.0611955132328],[-78.9615487922366,43.061403825929],[-78.9604435248739,43.0618923298475],[-78.959002036965,43.0617757304918],[-78.9570905109737,43.0624812163767],[-78.9563134368119,43.0624361030489],[-78.9552014814919,43.0628842715784],[-78.9533126846738,43.0630081762049],[-78.9512189974108,43.0635082839703],[-78.9494226884395,43.0635163801696],[-78.9461749454124,43.0629398435782],[-78.9452236034754,43.0627296065348],[-78.943662523751,43.0618291284365],[-78.9410280515853,43.0607045608769],[-78.9406888495306,43.0607972946249],[-78.9396313258287,43.0597713459743],[-78.9378261989945,43.0586946292443],[-78.9377003674811,43.0583568295989],[-78.9323470515815,43.0573482536819],[-78.9307565879642,43.0559714164748],[-78.9303190913529,43.0559459532329],[-78.9297233654874,43.0555612852166],[-78.9292695024698,43.0554598496264],[-78.9291358996309,43.0556985392132],[-78.9288898160403,43.0553873746199],[-78.9276244302665,43.055426384739],[-78.9272865702948,43.0551858988504],[-78.9271611915323,43.0553972927273],[-78.9247238420793,43.0549588452103],[-78.9229157984153,43.054755340412],[-78.9218477985605,43.0544363677044],[-78.921192498222,43.0542022588598],[-78.919646996183,43.0533324263281],[-78.9193354604425,43.0533926347115],[-78.918904622144,43.0530922886631],[-78.9180296810236,43.0529872452469],[-78.9169995748025,43.0524463375648],[-78.9162650538357,43.0506527885068],[-78.9157895665727,43.0503044407367],[-78.9155213278322,43.0497013884774],[-78.9142765655806,43.0495234562226],[-78.9139331207829,43.0489409842699],[-78.9123276499105,43.0480956140653],[-78.910808535883,43.0479945659189],[-78.910558806929,43.0474673982834],[-78.9102207592094,43.0476050202967],[-78.9098702231108,43.0472298616087],[-78.9096275818644,43.047386725566],[-78.9083598478944,43.0464847216428],[-78.9060071323175,43.0456198051498],[-78.9049610046433,43.0450253136077],[-78.9006430923301,43.0420260504131],[-78.899409386543,43.0400693574555],[-78.899273794834,43.0398669010212],[-78.8980947587186,43.0380298764272],[-78.8975299753231,43.0362033976255],[-78.8975721503273,43.0352835861951],[-78.8977623254696,43.0340120855287],[-78.8976646202077,43.0338533527654],[-78.8978568138645,43.0335181623151],[-78.8940876697819,43.025336318925],[-78.8943013044278,43.0227719966372],[-78.8956497906536,43.0207677278338],[-78.8976192768454,43.0189583469433],[-78.8994858268855,43.017922259674],[-78.9036128507941,43.0164442814399],[-78.9085481689139,43.0150150369548],[-78.9122681446078,43.0142934736317],[-78.9172400322445,43.0126285072563],[-78.9178366115095,43.0123964649501],[-78.918488495555,43.0120184648792],[-78.9191930316559,43.0118592443409],[-78.9211996676763,43.0108675172582],[-78.9217378465664,43.0108355395049],[-78.929010853245,43.0067410980549],[-78.9314078027648,43.0049029322125],[-78.9329764193544,43.0042592059981],[-78.937311767069,43.0011836987459],[-78.9397768502098,42.9989378481447],[-78.9400854143234,42.998886691008],[-78.944489610718,42.9943454540858],[-78.9460170063141,42.9917671935589],[-78.9471319691936,42.988577408318],[-78.947581575095,42.9866260934907],[-78.9475657404915,42.9863880440363],[-78.9473843643474,42.9836482009926],[-78.9476568161866,42.9828914859272],[-78.9475041376226,42.9805423092096],[-78.9478252386242,42.9805627275736],[-78.9484126487852,42.9809025754572],[-78.9482354803499,42.9804044941114],[-78.9475383463669,42.9801044506826],[-78.9474208404395,42.9788389965649],[-78.9458627431219,42.9749627241852],[-78.9453247942005,42.9749542896458],[-78.9452014312575,42.9741887371656],[-78.9446976434698,42.9733552863241],[-78.944428110257,42.9733916025103],[-78.943811008081,42.9716346830969],[-78.9442485199637,42.9713674785878],[-78.9442303982495,42.9710574783881],[-78.9439021772008,42.9710237893502],[-78.9441600044672,42.9702630848578],[-78.9432612517035,42.9688490188609],[-78.9424183615741,42.9687385483822],[-78.9424569801482,42.9681474764821],[-78.9420417752306,42.9679187027021],[-78.94186370848,42.9678213041939],[-78.9417159383107,42.9677183576558],[-78.9414727958044,42.9669749397469],[-78.940487510126,42.9658564550502],[-78.9403374124218,42.9653934407732],[-78.939796647282,42.9650789522522],[-78.9396089478967,42.9641085268566],[-78.9394044024048,42.9637824435907],[-78.9391498180566,42.9628053193818],[-78.9385162641345,42.9621924006141],[-78.9381902035342,42.9609746387106],[-78.938457480179,42.9595608548813],[-78.9390966171306,42.9587690096427],[-78.9395477339983,42.9585688819913],[-78.9412304204592,42.9584793420619],[-78.9428276995946,42.9585908046164],[-78.9435942194501,42.9582582275733],[-78.9452628293106,42.958110590439],[-78.9457518496934,42.9578776164455],[-78.9461269762745,42.9572299040311],[-78.947067959738,42.9583093554099],[-78.9482634170569,42.958830782759],[-78.9514565083787,42.9591525789188],[-78.9536405472947,42.9589689854354],[-78.95383082215,42.9587283070143],[-78.9555737514305,42.9591181654547],[-78.9557133325577,42.9587621908103],[-78.9558529657871,42.9588248843304],[-78.9570665178707,42.9607456600979],[-78.9568601793415,42.9609418822654],[-78.9565613233213,42.9611052928847],[-78.9570453876986,42.9612190831402],[-78.9583137702522,42.9623816393337],[-78.9593260044908,42.9626661977518],[-78.9622371667472,42.9628624052483],[-78.9626986573598,42.9624817535754],[-78.963558494207,42.962195326001],[-78.9654304341388,42.9626615907957],[-78.9690714191731,42.9651597324772],[-78.9732254617105,42.9694541478845],[-78.9772400488849,42.9719975537745],[-78.9788429155413,42.9733193020385],[-78.9813030579481,42.9743185403849],[-78.9886044998987,42.9764588458162],[-78.9921244989322,42.9780736054881],[-78.9993588133749,42.9819262454388],[-79.0028393826556,42.9823535781663],[-79.0037848603904,42.9833243505282],[-79.0105214839112,42.9870091427615],[-79.0140995895706,42.9896971067782],[-79.0177726076295,42.9948621034779],[-79.0187705667399,42.9988696090546],[-79.0197062600247,43.0002547541162],[-79.0204549995258,43.0027764224412],[-79.0210117816271,43.0101442643237],[-79.021800945316,43.0141050698915],[-79.0213246333995,43.016458263617],[-79.0207468217374,43.0177255953705],[-79.0154548140593,43.0232148267654],[-79.0139439609392,43.025154169492],[-79.012576680161,43.0263096400139],[-79.0120048162444,43.0263702407045],[-79.010963155892,43.0259926530342],[-79.0104134129893,43.0257103335265],[-79.0102991032677,43.0249895585137],[-79.0107894980729,43.0238829107989],[-79.0106755225246,43.022982052791],[-79.0099649677113,43.0217915133897],[-79.0088751621513,43.0212445281818],[-79.0099143027292,43.0234139349328],[-79.0101365243709,43.025886619522],[-79.0109046836519,43.0262603116118],[-79.0118033501773,43.0266474230874],[-79.0096167977751,43.0299429633384],[-79.0087921021235,43.0323083315921],[-79.0082099704632,43.0358446506013],[-79.006570497459,43.0402553848896],[-79.0025534560872,43.0467932312806],[-79.0006186888828,43.0488147765688],[-78.9975944862243,43.0533639047327],[-78.997522847377,43.0543973188841],[-78.9967033071567,43.0563077392702],[-78.9966361086819,43.0574715492255],[-78.9970506955586,43.0591136974628],[-78.9977170613448,43.060611979259],[-78.9971502765028,43.0603932195337],[-78.9959194857489,43.0598825618579],[-78.9950802544576,43.0597813644499],[-78.9940260527256,43.0596786736839],[-78.9931972661462,43.0594960650049],[-78.9903787767894,43.0591893960091],[-78.9878287399721,43.0590308478394],[-78.9881034411928,43.0593228770527],[-78.9890218796376,43.0595834244284],[-78.9900126800735,43.0597468990227],[-78.9914667794306,43.0599481990022],[-78.9966911098318,43.0611205666947],[-78.9977941484742,43.0617932484672],[-78.9980502312123,43.0623199976233],[-78.9987250240942,43.0625529787707],[-78.9997650351396,43.0637860684445],[-79.0006059040596,43.0640087223697],[-79.0035960363143,43.0643721481756],[-79.0053534464373,43.0671151451215],[-79.0047187920789,43.0673309729481],[-79.0031186922336,43.0648345526334],[-79.0002549592276,43.0645297125281],[-78.9911187900558,43.0638634000106],[-78.9909587444082,43.0636799171273],[-78.9799063465645,43.0636603658016],[-78.9791748816663,43.0635823074487],[-78.9768756562731,43.0625054174316],[-78.9720698168267,43.0608404001163]]],[[[-78.9541779338707,43.0740166173874],[-78.9518456657463,43.0713557373427],[-78.9520160779523,43.0709266731529],[-78.9543118798661,43.0703700343458],[-78.9545432751035,43.06998837511],[-78.9572305771911,43.0698502953974],[-78.959932793109,43.0702203368558],[-78.9617597912254,43.0706431809896],[-78.9625880343241,43.0710691333727],[-78.9645517398571,43.071127047239],[-78.9669999607218,43.0716272836671],[-78.9686606797808,43.0714030319514],[-78.9700312412064,43.0714724530027],[-78.9721717693233,43.0708938401235],[-78.9742375117944,43.0707049427331],[-78.9768565670733,43.0707488451391],[-78.9770295394779,43.0711884994132],[-78.9757002861823,43.0717569774992],[-78.96699515204,43.0727258855151],[-78.9652656714376,43.0731280695094],[-78.962767677618,43.0741376201381],[-78.9611475480368,43.0748555749833],[-78.9604230109461,43.0750472634516],[-78.9580988483205,43.0750467877188],[-78.956781752824,43.0748403173623],[-78.9552898101389,43.0745588545194],[-78.9541779338707,43.0740166173874]]],[[[-79.070279083884,43.0825524928048],[-79.0695673450912,43.0821546898165],[-79.0673772497335,43.0822462042189],[-79.0657378548827,43.0816698241144],[-79.0646620217187,43.0818476676788],[-79.0639582051683,43.081589101257],[-79.0633198659207,43.0808150022854],[-79.0607440923705,43.0797991735591],[-79.0605254738714,43.0793027503807],[-79.060746840317,43.0786196187372],[-79.0627789408808,43.0783087653513],[-79.0670725456807,43.0790067961703],[-79.0707109516518,43.078436016644],[-79.0722446255735,43.0787820038939],[-79.0744172118679,43.079928999695],[-79.0744862132615,43.0803497015154],[-79.0730847749429,43.08125951703],[-79.0713367926389,43.0834061409156],[-79.0709634222641,43.083500480552],[-79.070279083884,43.0825524928048]]],[[[-78.366638420045,43.3756760580664],[-78.3660279213847,43.3747756824481],[-78.36465308308,43.374145422531],[-78.3613783510685,43.3740527703631],[-78.3587095785303,43.3739917271905],[-78.3525623387691,43.3736996437212],[-78.3490574970094,43.3739870434132],[-78.3430987624224,43.373783459712],[-78.3407899942258,43.3731982511194],[-78.3382611872937,43.373209165056],[-78.3343015419804,43.3728071183407],[-78.3216629879412,43.3729998044069],[-78.3125190977496,43.373895617942],[-78.3074841402951,43.3734562926468],[-78.3064307659115,43.3726899673161],[-78.3040134965,43.3720846431497],[-78.3010901072742,43.3715299113009],[-78.2979688820735,43.3714580107622],[-78.2925451104078,43.37149293975],[-78.2913000723735,43.3718484535358],[-78.2861897256054,43.3720991396097],[-78.2767509930662,43.3713213813503],[-78.272870858537,43.3716487173054],[-78.2694487273604,43.3724895279757],[-78.2594223286405,43.3727940906157],[-78.2523933996144,43.3719905414499],[-78.2508731007091,43.3707012744287],[-78.24763200791,43.3696365004921],[-78.2443869400659,43.3692830399082],[-78.2351825357635,43.3689273654594],[-78.2260746805912,43.3697206956254],[-78.2229978348604,43.3702757509384],[-78.2152881553255,43.3710332605151],[-78.2111272101335,43.371812087507],[-78.2083403091354,43.3720884847119],[-78.2001764728339,43.3707913758448],[-78.1978651803714,43.3707975846417],[-78.1937870814081,43.3713843816438],[-78.1923740961449,43.371707498893],[-78.191932626285,43.3718278815363],[-78.1906617176688,43.371845382494],[-78.1888764983996,43.371318998546],[-78.1883325280709,43.3708344769496],[-78.1871144637496,43.3705353329449],[-78.1828447864755,43.3705733551198],[-78.1747805248301,43.3715901113177],[-78.1638977585564,43.3741610154904],[-78.1602378532057,43.374856580162],[-78.158574282894,43.375001635272],[-78.1575163405771,43.3744906613377],[-78.1545279591389,43.3746452610778],[-78.1456209645691,43.3753140750003],[-78.1359419147251,43.3755487029574],[-78.1337889934506,43.3756753176153],[-78.1328837557489,43.3757136552096],[-78.1279843028668,43.3758479286653],[-78.1269758262811,43.3758440279224],[-78.1233832191181,43.3758252724891],[-78.1209973404359,43.3757914455707],[-78.1143953240705,43.3754674320223],[-78.1056087881905,43.3758327128937],[-78.1010502540436,43.3758350093308],[-78.0971935179326,43.3752463578903],[-78.096078076251,43.3752360803033],[-78.0907216674519,43.3738640028784],[-78.0762026188245,43.372896358606],[-78.0746470376881,43.3726096021623],[-78.0716586957757,43.3715690285851],[-78.0695217043261,43.3712663215034],[-78.0659826124996,43.3707085926964],[-78.0637901635559,43.3705288178593],[-78.0557337082702,43.3703754620616],[-78.0541858822896,43.3705969326959],[-78.0530267025352,43.3703397984441],[-78.0505151881722,43.3707220283466],[-78.0440058024857,43.3711477811754],[-78.0423391859869,43.3710661269056],[-78.0387931861158,43.3714801481288],[-78.0366832716855,43.3697084854707],[-78.0331625108807,43.3678752123619],[-78.0300968374971,43.3672722831844],[-78.0242066093319,43.3668476277037],[-78.0144576579824,43.3676590390572],[-78.0103862685359,43.3685812493068],[-78.0049495781982,43.3686478597886],[-78.0014037786514,43.3673454862852],[-77.9997363240244,43.3657190760031],[-77.9961637061731,43.3653581437184],[-77.9956590856471,43.3651822982072],[-77.995407931965,43.3650943435866],[-77.9924340556237,43.3651947953168],[-77.9856991092576,43.3661138404347],[-77.9825121381578,43.3672415371373],[-77.9807835693454,43.3681780343238],[-77.9782345530143,43.3683930825612],[-77.976490367889,43.3687761860777],[-77.9733152195166,43.3672651963333],[-77.9701788388387,43.366635485295],[-77.9679680615683,43.3667829848464],[-77.9619934393772,43.367878958194],[-77.9619000936393,43.3673996733062],[-77.9601028809628,43.3672931930474],[-77.9599820548622,43.3669541779678],[-77.9584137176486,43.366819229811],[-77.9582892839138,43.3662552110131],[-77.9566911792267,43.3662650715129],[-77.9566345691942,43.3657353104768],[-77.954862006289,43.3655515757389],[-77.9547542255229,43.3650636545588],[-77.952502891114,43.3649552932747],[-77.9520089308955,43.3645673877315],[-77.9500610994919,43.364275559944],[-77.9495795090748,43.3636532245026],[-77.9482932859797,43.3630111390723],[-77.9473155479463,43.3630363692963],[-77.9471574669142,43.362702803361],[-77.9447509117091,43.3622021238161],[-77.9437057748766,43.3620895005059],[-77.9433596117768,43.3619768678433],[-77.9407353759137,43.3614592021505],[-77.9394944045527,43.3613515815852],[-77.939080766297,43.3611551357788],[-77.9382384115635,43.3608211526094],[-77.933914603607,43.3601354399935],[-77.9333505631182,43.3598663033236],[-77.9333767175677,43.3596090216951],[-77.9356544229201,43.3595054929681],[-77.9358146194847,43.3589296307936],[-77.9366378643571,43.3584492745866],[-77.9370647123391,43.3588479764045],[-77.9369660279136,43.3593997492994],[-77.9382143654599,43.3592776098849],[-77.9386876563421,43.3586936903979],[-77.9381234146307,43.3574026450299],[-77.9376147579741,43.3572581585281],[-77.9369566863329,43.3577207696342],[-77.9366530908012,43.3568236865233],[-77.9363165989637,43.3569944054725],[-77.9356829102943,43.3581541823481],[-77.9348498755819,43.3584276941652],[-77.9349733786621,43.3590412854932],[-77.9332577150471,43.3592204092411],[-77.9327186324518,43.3592207442979],[-77.9313724216586,43.3584764622097],[-77.9295374518924,43.3579517884398],[-77.9251837848342,43.3573565481686],[-77.9244019433132,43.3575206269966],[-77.9215110695075,43.3568472733628],[-77.9153919883372,43.3567289785299],[-77.908505195247,43.3569495414609],[-77.9035468595946,43.356202296191],[-77.9030043849609,43.35534720802],[-77.9023295902823,43.3549996969247],[-77.8987968477482,43.3539008807532],[-77.8931899877496,43.3526924321741],[-77.8924655431854,43.352620737275],[-77.8911936994229,43.3529005388781],[-77.8911484018747,43.3526045574271],[-77.8919394987381,43.3521073277578],[-77.8922391165298,43.3511588369567],[-77.8925479339683,43.3510609794401],[-77.8935760710823,43.3515841796963],[-77.8938870265112,43.3515312836726],[-77.893936753652,43.3512554055164],[-77.8930196671717,43.3504322681762],[-77.8953021201203,43.3483395662949],[-77.8958837648938,43.3473884199052],[-77.895840534369,43.3458318423283],[-77.8966052962216,43.344119722582],[-77.8978908536651,43.342164789403],[-77.898770500161,43.3417823168576],[-77.8994909292559,43.340566516768],[-77.8982347386373,43.341039582919],[-77.8966074836193,43.3421973362824],[-77.8947722677146,43.3444633128605],[-77.8942254218787,43.3476375340697],[-77.8933748502553,43.3492662731636],[-77.8922087651513,43.3505203289718],[-77.891737870076,43.3505097401789],[-77.8918933163494,43.3498215097489],[-77.8908483412136,43.3502576342567],[-77.8894272917741,43.3500414752566],[-77.8896293147967,43.3503334943158],[-77.8893583092451,43.3505699479917],[-77.8883626686865,43.3507301833118],[-77.8885659700117,43.3510491829374],[-77.8889450384004,43.3511071268092],[-77.8908094962641,43.3507628346872],[-77.8915840883808,43.3512249394213],[-77.8912680062666,43.3518271958918],[-77.8732883273646,43.3492329977923],[-77.8640314165338,43.3489297076101],[-77.861914608432,43.3485505680911],[-77.8503857235004,43.3473981698042],[-77.8438165531351,43.3477239507553],[-77.839171213884,43.3461242435539],[-77.8380723452211,43.3459489583364],[-77.8361876752634,43.3455320595951],[-77.8328797729601,43.3451594336499],[-77.8317296131894,43.3440219399517],[-77.8308201561009,43.3440219686967],[-77.8302645480976,43.3435315140052],[-77.8283502445154,43.342822592564],[-77.8253096224501,43.3428302976869],[-77.8172178373226,43.3434443002024],[-77.8155200959958,43.3433465909606],[-77.8141374827724,43.3426018156158],[-77.8116760117573,43.3422527413298],[-77.8104021701417,43.3418248832506],[-77.8049958078262,43.3415255583088],[-77.8024492933032,43.3406921591131],[-77.7997517090989,43.33998395847],[-77.7971097306106,43.3397965615229],[-77.7868369473644,43.3400250933516],[-77.7849968679808,43.3395432318193],[-77.7799663949162,43.3392290541904],[-77.7749119422234,43.3397661105832],[-77.7669372480016,43.3415847355977],[-77.7642230979651,43.341191233211],[-77.7614087184008,43.3413493307851],[-77.7602106335097,43.3411982022423],[-77.759080036351,43.3404691785618],[-77.7586273474316,43.3394716664308],[-77.7563976678109,43.3373105064155],[-77.7539170824433,43.3365014431893],[-77.7533972956603,43.3360547683569],[-77.7533862652469,43.3360516948499],[-77.910025293828,43.123645166385],[-77.8500499673832,43.1066192627006],[-77.7500910902746,43.0396859266214],[-77.4885320291208,43.0530784415191],[-77.4618763286783,43.026290487215],[-77.5002166594648,42.6630097629756],[-77.7812116000372,42.6668779157743],[-77.7767467907171,42.7284037482794],[-77.9200211812694,42.7332987303284],[-78.0266439830395,42.5997723263494],[-78.1399307103694,42.5997723263494],[-78.1349327661996,42.6328743968769],[-78.3181907074157,42.6341000609784],[-78.3181907074157,42.5089579432608],[-78.2315596805283,42.5114141230143],[-78.241555568868,42.2554545662772],[-78.3181907074157,42.2566876372032],[-78.3131927641441,42.1888329406806],[-78.2465535121395,42.1888329406806],[-78.2482194935294,42.099894771725],[-78.3098608013642,42.0986586396825],[-78.3110781488299,41.9992220511685],[-78.331574379847,41.9992784208138],[-78.3557184751967,41.9995332311754],[-78.3747182575792,41.9996058187961],[-78.3822542415657,41.9996358559956],[-78.3859922778883,41.9996515728808],[-78.4588002870001,41.9998325995019],[-78.4632271083635,41.9998430157535],[-78.4662058562686,41.9998475305969],[-78.4997430506395,41.9998640378443],[-78.5750509903386,41.999890028055],[-78.57987059467,41.9998881688461],[-78.6213921311688,41.9997723336788],[-78.6247421797303,41.9997654816297],[-78.6825504220619,41.9990256108625],[-78.6971408427369,41.9988079739438],[-78.8182923733798,41.9981442977133],[-78.822052381596,41.9980729635107],[-78.8275233067292,41.9979758812525],[-78.8330447270629,41.9978813504156],[-78.8377501195891,41.997804883399],[-78.8572951065855,41.9975492656595],[-78.874759439077,41.9978334306954],[-78.9057955036096,41.9981483186548],[-78.9440913695862,41.9984707121556],[-78.9698618360118,41.9987287221806],[-78.9721359427131,41.9987489488705],[-78.9775600602301,41.9988038822793],[-78.9885733220701,41.9989072306079],[-78.9928975351668,41.9989456957865],[-78.9997672153508,41.9990122143611],[-79.0342658118916,41.9993064106827],[-79.050688869408,41.9993797656172],[-79.0613034328738,41.9995622610264],[-79.0774387474283,41.9995744344003],[-79.0887037621267,41.9997132207117],[-79.1088676542178,41.9997797044374],[-79.1174512067763,41.9997236550076],[-79.1247750679814,41.9995817591186],[-79.1454650368592,41.99948777141],[-79.158693154321,41.9994495515625],[-79.1628378292266,41.9995196238245],[-79.1783061743271,41.9996093035766],[-79.179728430204,41.9994583750213],[-79.1975077452718,41.9993890790929],[-79.2173331692319,41.9991561670211],[-79.2346281944452,41.9990854107488],[-79.24976560289,41.9988985098815],[-79.255022362473,41.9988699356917],[-79.3095172703887,41.998881049065],[-79.3748483839984,41.9987318625318],[-79.3816927379797,41.9986638122073],[-79.4110483699244,41.9984328869134],[-79.4459633257179,41.9983478900225],[-79.5280828192123,41.9984934991512],[-79.546916723186,41.998481127295],[-79.5743626060069,41.9986216937905],[-79.5900564300403,41.9987680867125],[-79.6450141652618,41.9989786379777],[-79.6597476642053,41.9990283306183],[-79.7617410790071,41.9989337312478],[-79.7619039372799,42.0863433076723],[-79.7619980897048,42.1553430200137],[-79.7618044973712,42.1733627414232],[-79.761855888192,42.1940373096258],[-79.7617926683555,42.2270019721337],[-79.7620084481784,42.2500780829032],[-79.7619949195502,42.2694404891986],[-79.7517424705687,42.2724281853549],[-79.7472686098238,42.2737258189572],[-79.7439472256047,42.2752321014858],[-79.7419244594351,42.2757706261804],[-79.7409229528777,42.2763523353055],[-79.7394284203496,42.2766033253564],[-79.7348118882729,42.2780594468638],[-79.7303558941207,42.2798328686737],[-79.727795464694,42.2808570490946],[-79.7253926096495,42.2813659708077],[-79.7240855438431,42.2819421452299],[-79.7207893052655,42.2828750016207],[-79.7178473496594,42.2846439813964],[-79.7152317439113,42.285386548543],[-79.7143490700929,42.2861567031281],[-79.7112642257628,42.2874452154721],[-79.7095487085732,42.2878804824655],[-79.7090462287324,42.2882072819496],[-79.7084376291106,42.2881062807934],[-79.7073484936938,42.2883266635989],[-79.706660078759,42.2886475975172],[-79.7058759088048,42.2894766589934],[-79.7033549872842,42.2901025176653],[-79.7023898023087,42.2908894780724],[-79.7007868934314,42.2914865500192],[-79.6993133491416,42.2914300372572],[-79.6981247414768,42.2919110167613],[-79.6978339693958,42.2922920985635],[-79.696723416346,42.2926258032346],[-79.6920921447122,42.2946120154128],[-79.6909004270799,42.2956512635912],[-79.6902651439008,42.2954927366568],[-79.6890020928484,42.2959721714857],[-79.687697765107,42.2968944546318],[-79.6862533513853,42.2972327329193],[-79.6826822238391,42.2987384707812],[-79.6815732608074,42.2990719638924],[-79.6806232870045,42.2988722387259],[-79.6778659944782,42.3013214084269],[-79.6764678206374,42.3018827595706],[-79.6759851441571,42.3018799783836],[-79.6758622079138,42.3016239020201],[-79.6751562228304,42.3021119293596],[-79.6733370310738,42.3022132608523],[-79.6724614027422,42.3028072396671],[-79.6714031909307,42.3042504924728],[-79.6698750730891,42.3054653201256],[-79.6675150766669,42.3058722412461],[-79.6667075505153,42.306593948597],[-79.6664270946869,42.3072176248633],[-79.6656022651863,42.3069046288778],[-79.6645792538593,42.3069238325487],[-79.6642853116236,42.3071158862082],[-79.6625395867859,42.3078487973325],[-79.6622578858926,42.3082564304933],[-79.6610031352734,42.3087532267249],[-79.6608581804242,42.3090022262471],[-79.660078552352,42.309200548114],[-79.659976891808,42.3097313932287],[-79.6581683073582,42.3100706441982],[-79.6579959718592,42.3098480714917],[-79.6572409746938,42.3102299429019],[-79.6564566906535,42.3111171970329],[-79.6561068229015,42.3111044251114],[-79.6557403264353,42.3115695144295],[-79.6547952978581,42.3117385167278],[-79.6542383989757,42.3124409369057],[-79.6536667416717,42.3125407192573],[-79.6534374188476,42.3130542428956],[-79.652586792427,42.3134984959695],[-79.6518925007136,42.3137473133081],[-79.6499398157125,42.3138311921529],[-79.6487198352847,42.3141148586023],[-79.6470674247437,42.3151633681989],[-79.6459211977974,42.3154260021892],[-79.6453945326143,42.315834538157],[-79.6451026466223,42.3156032940272],[-79.6444710384511,42.3157955005541],[-79.6426085002871,42.3172171175403],[-79.6403415046496,42.3182904674338],[-79.6403277002386,42.3185071112897],[-79.6386981572115,42.319162920712],[-79.6378252256224,42.3189822248036],[-79.6371803331647,42.3191209081393],[-79.6364378064121,42.3199253027875],[-79.6340242587209,42.3207253578765],[-79.6311191232617,42.3230173358536],[-79.63039065155,42.3233079227882],[-79.629286881679,42.3232445457616],[-79.6286382657045,42.3236894515111],[-79.6268363314828,42.3250588428201],[-79.6261442262688,42.3252398892201],[-79.6258285295318,42.3257928653364],[-79.6245744787003,42.3266538783739],[-79.6236614624865,42.3272309906607],[-79.6227667772945,42.3274562175279],[-79.6213095994108,42.3285910058723],[-79.6201963424321,42.3283658614345],[-79.6198170557528,42.3285477424146],[-79.619625215134,42.328370916735],[-79.6190787151494,42.3284830165233],[-79.6170372640219,42.3303346098905],[-79.6162543606922,42.3305687803606],[-79.6150727616832,42.3304228729341],[-79.6143590618681,42.3305912142938],[-79.6125806778799,42.3321350024514],[-79.6113373089154,42.3333195674576],[-79.6089623456622,42.334774799417],[-79.6069197967933,42.3378867524167],[-79.6064862392945,42.338773050858],[-79.6050603614103,42.3397353067045],[-79.6044107644755,42.3399730350775],[-79.6034976386673,42.3398522181757],[-79.601268441442,42.3401759836835],[-79.6003538549731,42.3406359286448],[-79.5973390406077,42.343372640922],[-79.5969351517677,42.3432223040069],[-79.596048545125,42.3416507925343],[-79.5947979797567,42.341714528158],[-79.5948761592376,42.3429403716075],[-79.5942529682806,42.3430329247825],[-79.5937951688455,42.3430558090874],[-79.5932946491288,42.3418784337881],[-79.591012138688,42.3423166841891],[-79.5876915413931,42.3435573195995],[-79.5858212157338,42.3447847557873],[-79.5839283899717,42.3456664269377],[-79.5831886740476,42.3461777514868],[-79.5804660744576,42.3472546664981],[-79.5797206182988,42.3472980140201],[-79.5780045055261,42.347951926586],[-79.5736396373747,42.3500892739041],[-79.5707980783831,42.3511662135215],[-79.5694309664882,42.3513243638976],[-79.5678361765845,42.3524234562283],[-79.5652375139609,42.3536841371191],[-79.5650210702831,42.35416996237],[-79.5617975063103,42.3567204980931],[-79.5610036426358,42.3569142133195],[-79.5603822483094,42.3577448032835],[-79.5556471781411,42.3597026472283],[-79.5523417048823,42.3622561809798],[-79.551515631215,42.362518638267],[-79.5494277731199,42.3624576232584],[-79.5488359764854,42.362881813177],[-79.5457649545326,42.3634720605218],[-79.5405965631225,42.3670041195469],[-79.5386485071401,42.3689946778042],[-79.5364904654684,42.369206318658],[-79.5336243186892,42.3703643462148],[-79.5326778249597,42.3702983074707],[-79.5270102451361,42.3739440713348],[-79.5233527328972,42.3757814118706],[-79.5190955422056,42.377907931034],[-79.51584216764,42.3801927545154],[-79.5141984950119,42.3809193855982],[-79.5133608312808,42.3811595169113],[-79.5073178895173,42.3842608960488],[-79.5067750411844,42.3848585120066],[-79.5045567342353,42.3858777483271],[-79.5028060641719,42.3871081292923],[-79.5009130812046,42.3880109493031],[-79.4999494871454,42.3890482547872],[-79.4984186878327,42.3896396714394],[-79.4965825367819,42.3907607786638],[-79.4952616405133,42.3914024274137],[-79.4927682739158,42.3941249288942],[-79.4895145400241,42.3952700758148],[-79.4814588977138,42.4001102518576],[-79.4806669321795,42.4003618628748],[-79.4795914637315,42.4014213908026],[-79.4772696196576,42.4030293972823],[-79.476845080346,42.4030144994692],[-79.4764677672654,42.4035559765532],[-79.4725055168377,42.4050840085707],[-79.4667543685398,42.4065377095532],[-79.4660870388613,42.4063521792509],[-79.4637313049451,42.4071779194991],[-79.4618747199165,42.4073989080452],[-79.4598399064405,42.4088693169329],[-79.4577296299892,42.4091811614215],[-79.4512035661811,42.412298437312],[-79.4494250438523,42.4136056280604],[-79.448285173385,42.4151040458797],[-79.4462011798422,42.4163060176675],[-79.4421700465985,42.4199020179081],[-79.4395003344225,42.4215407798354],[-79.4385174149066,42.422452275541],[-79.4360802199638,42.4237082843275],[-79.4337913269929,42.4255842477649],[-79.4331913979102,42.4257740664282],[-79.4318872435436,42.4268150019943],[-79.428592096419,42.4285542715361],[-79.4261639924269,42.4314753958375],[-79.4257775641411,42.4327553604075],[-79.4251539078568,42.4331756489331],[-79.4242291910865,42.4345034421545],[-79.4235730984339,42.43640157549],[-79.4228323171079,42.4413192046273],[-79.4204531021284,42.4467593420017],[-79.4204184020056,42.4475259935384],[-79.4192699382542,42.4508296913839],[-79.4176153133661,42.4540178716427],[-79.4164437296742,42.4543737388329],[-79.4157513765252,42.4542564102096],[-79.4137873988027,42.4522388612908],[-79.4125571524278,42.4516605713638],[-79.4094824105514,42.4518016496394],[-79.4075727557508,42.4523029228137],[-79.4059366783783,42.4530592343598],[-79.403690659301,42.4545097791021],[-79.3986532494458,42.4586517083712],[-79.3962440028881,42.4602209304033],[-79.3942664507233,42.4611792777993],[-79.3911341457018,42.4637620699976],[-79.3882257421716,42.4638376697653],[-79.3860382752845,42.4645473230105],[-79.3830651319685,42.4660298470455],[-79.3795064559704,42.4682775175271],[-79.3758975524699,42.470977184533],[-79.3721712059241,42.4727628517014],[-79.369642527451,42.4749123190521],[-79.368796997173,42.4759260186429],[-79.3680354611707,42.4760181280056],[-79.3679556449594,42.4763318030312],[-79.3670841928955,42.4769413138019],[-79.3657061601817,42.4771919996703],[-79.3635039986532,42.4782169142209],[-79.3612767552636,42.4801115996491],[-79.3602161844762,42.4813810370864],[-79.3596081903189,42.4841818500795],[-79.3581292507475,42.4889426371151],[-79.3548562426031,42.4931189589965],[-79.3541528006502,42.4935689130334],[-79.3528698959317,42.4936762668068],[-79.351657093043,42.4921107549393],[-79.3498285192816,42.4914960291695],[-79.3481045085209,42.4914535350262],[-79.3449504930156,42.4926313245815],[-79.3432166340245,42.4915311958466],[-79.342356146797,42.490681504045],[-79.3435457003878,42.4900781080445],[-79.344248880931,42.4885297776267],[-79.3459172707042,42.4874534835654],[-79.3450606246728,42.4867027062293],[-79.3441967777461,42.4866319759186],[-79.3436494602947,42.4861890708324],[-79.3359343315793,42.487391165118],[-79.3366392063451,42.4896198718611],[-79.3359411884199,42.4896688437008],[-79.3354380662837,42.4880042208246],[-79.3344169000963,42.4881104494011],[-79.3334986188567,42.4884648747886],[-79.3312147250104,42.4885378738333],[-79.3280048307012,42.4907752476996],[-79.3265514598777,42.4921357701327],[-79.3229722591721,42.4942384109028],[-79.3196184089403,42.4983942829275],[-79.3191042006952,42.4994041096916],[-79.3191816246929,42.5009183135954],[-79.3177698835964,42.5024662326848],[-79.3172500590842,42.502697441971],[-79.3163524867068,42.5026367785163],[-79.3160984233815,42.503096551834],[-79.3144966823142,42.5037017077103],[-79.3125549576579,42.503522830114],[-79.3103561576251,42.5045421006531],[-79.3090671946684,42.5039829154654],[-79.3085513631676,42.5040158525596],[-79.3071346930151,42.5047174772889],[-79.3061147485364,42.5049539623828],[-79.3054991591234,42.5048330762206],[-79.3042642118646,42.5055818465292],[-79.3032288828384,42.5058549002084],[-79.3012265443583,42.5060922823123],[-79.29988689486,42.5066603663162],[-79.2989054521744,42.5067467782445],[-79.2984282706887,42.5064900976805],[-79.2977692279688,42.5066724282987],[-79.2964544411425,42.5081354108541],[-79.2942678025021,42.509914732499],[-79.2931939339536,42.5100045654972],[-79.2924301063489,42.5097271050938],[-79.2903446889764,42.5099088905486],[-79.2863217330968,42.511194191921],[-79.285885420465,42.5110259652494],[-79.2834624817858,42.511400346883],[-79.2821396110203,42.5108556316906],[-79.2788552481706,42.5113882149587],[-79.2776030963776,42.5125290061642],[-79.2767970102254,42.5126761981727],[-79.2758172384062,42.5135906957322],[-79.2732566427911,42.5172878922885],[-79.271998490252,42.5188565259687],[-79.2707721138193,42.5196181233248],[-79.2687526812977,42.5208009717115],[-79.2670661455557,42.5218633205383],[-79.2655607586841,42.5225902517795],[-79.2637066637854,42.5235507556785],[-79.2614221878308,42.524333683998],[-79.2599337144393,42.5243666216235],[-79.2589843218464,42.5243029357546],[-79.2566889583106,42.5260090610331],[-79.2538362476331,42.5269300340148],[-79.2523239679882,42.5281612593315],[-79.2497555929628,42.5319347595709],[-79.2461560364328,42.5325772026085],[-79.2448407968556,42.5331617622542],[-79.2434153546544,42.5323773207783],[-79.2423792431956,42.5313758320361],[-79.2416283594159,42.531079553142],[-79.2402684834505,42.531269549864],[-79.2370520781522,42.5325232586133],[-79.2341058744132,42.5354550817253],[-79.2330326077359,42.5370794856421],[-79.2324567310449,42.5375735023298],[-79.2310449665922,42.5381884879008],[-79.2302208458623,42.5382189804339],[-79.2295750550894,42.5378962253372],[-79.2294892399286,42.5373726780425],[-79.2283025941844,42.5355887977679],[-79.2275089479022,42.5353210192054],[-79.2263277432537,42.5355447608463],[-79.224727545492,42.5359415381611],[-79.2222169123764,42.5368176038747],[-79.2180611738196,42.53934798531],[-79.2156864072975,42.5400163098401],[-79.2089430967177,42.5410975824451],[-79.2077428819211,42.5419971169515],[-79.2055326391483,42.5419748882963],[-79.2037844080109,42.542457851621],[-79.2017032396697,42.5435697836549],[-79.2007548837327,42.5445050091168],[-79.1987732325553,42.5452845933201],[-79.1937262538457,42.546109082805],[-79.1911241650476,42.5453806416423],[-79.1893458816707,42.5458554825584],[-79.1873979478592,42.5461384245384],[-79.1849866585325,42.5476628116957],[-79.1815016282181,42.5508921247349],[-79.1787752709752,42.5519777128973],[-79.1781378282462,42.5518749539142],[-79.1774446306808,42.5512880223196],[-79.1765769668125,42.5493253742102],[-79.1737497754756,42.549162994513],[-79.1716316199009,42.5494923985401],[-79.1715723912792,42.5493775102557],[-79.171700745262,42.5489856632719],[-79.1711154443453,42.5485658286007],[-79.1705597330359,42.5480503719129],[-79.1702417617646,42.54729664395],[-79.1701389082579,42.5478541305386],[-79.1701102627801,42.5480037382779],[-79.170994952418,42.5497002033554],[-79.1698082860125,42.5496894613284],[-79.168095695534,42.5500580318476],[-79.1662250662443,42.5508735224287],[-79.1638892093503,42.5526153115258],[-79.161875829677,42.553566485062],[-79.1597374970427,42.5535272465253],[-79.158343651285,42.5534924085391],[-79.1565645234917,42.5535210810912],[-79.1552417722021,42.5533620699882],[-79.15241359721,42.5531181626648],[-79.1496390974544,42.5536510692501],[-79.1468752463282,42.5549533492602],[-79.1462563924374,42.5559482053365],[-79.1438227386534,42.5578506990131],[-79.1423816612746,42.5595596198224],[-79.141897408251,42.5605225637634],[-79.1412189367681,42.560929801352],[-79.1398830709737,42.5621576773077],[-79.139021859704,42.5641336824111],[-79.1367622949305,42.5680240726173],[-79.1369119892912,42.5694772767557],[-79.1367890180136,42.5697788518852],[-79.1365655162726,42.5703271675292],[-79.1345623872751,42.5777062224184],[-79.1321600038461,42.5845414322185],[-79.1315145185004,42.5854606383215],[-79.1310778303728,42.5881865656748],[-79.1305939708113,42.5891494479888],[-79.1306012920809,42.5900630704642],[-79.1299887874825,42.5908775322471],[-79.1292160890144,42.5913601329849],[-79.1276522712251,42.5912725379185],[-79.1263997484279,42.5907324999858],[-79.1238590531913,42.5923142969158],[-79.1218175643344,42.5949269869951],[-79.1209522271027,42.5972586546756],[-79.1197065216201,42.6026248009216],[-79.1180038620171,42.6033434166417],[-79.1158533365494,42.6036099320267],[-79.1150977105634,42.603997283557],[-79.1138059448629,42.6061461595855],[-79.1112090627002,42.6136181924087],[-79.1071523068098,42.6156547944669],[-79.1062854298656,42.6167798947606],[-79.1039177133218,42.6183100190314],[-79.1028975810953,42.6198142532149],[-79.0982111663778,42.6219901829022],[-79.0978572714783,42.6226286324109],[-79.0966955521866,42.6236336723245],[-79.0956024354365,42.6255591343063],[-79.0947104200375,42.6277745091402],[-79.0932882306358,42.6298287828146],[-79.0924817600047,42.6299882089895],[-79.0916663744926,42.6296257267523],[-79.0901781643075,42.629426870269],[-79.0884234814698,42.6297372352645],[-79.085794436925,42.6310962537402],[-79.0844222243959,42.6321041898502],[-79.0820672010471,42.6352766060449],[-79.0805315418486,42.638604311491],[-79.0791350721119,42.6399732026619],[-79.0781394153836,42.6404093918196],[-79.0770720389596,42.6405329957694],[-79.0759502219345,42.6405234740572],[-79.0737106662357,42.6398379697363],[-79.0721960653441,42.6400810065715],[-79.0667052560021,42.6424238557356],[-79.0649109323075,42.6437436982251],[-79.0643053240756,42.6444945379358],[-79.0638741417223,42.6456848635772],[-79.0627247850455,42.6524740713988],[-79.0632401754735,42.6615451012204],[-79.0631184160233,42.6619636037814],[-79.0626398277759,42.6620841552651],[-79.0623177691701,42.661875006143],[-79.0624062864633,42.6622004998986],[-79.0628976244995,42.6624711615289],[-79.0631389730702,42.6635205311537],[-79.0623070962862,42.6682545800138],[-79.0611528644524,42.6701233594947],[-79.0596134260416,42.6716816690021],[-79.0545855464132,42.6753355638267],[-79.0537179247657,42.67594257458],[-79.0529741340835,42.6771574474219],[-79.0521918128621,42.6796612241983],[-79.052189612888,42.6825650263813],[-79.0509324224445,42.6842752834926],[-79.050425469892,42.6865441943287],[-79.0484087844185,42.6896904240228],[-79.0481481283573,42.690582025334],[-79.0472180297801,42.6917044160773],[-79.0470099826553,42.6917838112389],[-79.0470251686752,42.6913781029176],[-79.0467576988926,42.6913560582562],[-79.0457093317184,42.6915957488776],[-79.0439928389583,42.6912152949822],[-79.0429372807702,42.6914237016083],[-79.0353643580593,42.6953558097463],[-79.0304459821657,42.6966818010968],[-79.0288715337133,42.6959539673394],[-79.0279688768714,42.6958011969873],[-79.0270942196186,42.6959895780485],[-79.0245239141136,42.6968364099722],[-79.0225060069314,42.6978798398088],[-79.0202571617541,42.7003089381885],[-79.0188740239145,42.7008797900837],[-79.0178484200496,42.7009563565492],[-79.0163425148501,42.7005185646787],[-79.0140389595771,42.7007750438846],[-79.008305025695,42.7035333100997],[-79.0058353602479,42.7041330907641],[-79.0013502723586,42.7037319237224],[-79.0006351226626,42.7038379865418],[-78.9955485605883,42.7043174837335],[-78.9909319252054,42.7051269951582],[-78.9811706381903,42.709645070162],[-78.9787990624841,42.7110466839766],[-78.976348954259,42.7129461906938],[-78.9727574133963,42.7146422080163],[-78.9704472995235,42.7169373943881],[-78.9699771213038,42.7170437593661],[-78.9700233782527,42.7163758702416],[-78.9698714803247,42.7164261637095],[-78.9685275243028,42.7197637184897],[-78.9665778136236,42.721510590529],[-78.9637309716399,42.7222395877835],[-78.9626883536835,42.7218525485595],[-78.9612767302662,42.722333648852],[-78.9557720329699,42.7255720329614],[-78.9522496219599,42.7270219142822],[-78.9487485091069,42.7297044780511],[-78.9454364637735,42.7313359657617],[-78.9442150074137,42.7316797383239],[-78.9399307136517,42.7317419190762],[-78.9359645187216,42.7324907872624],[-78.9322310521289,42.7337312274884],[-78.9248921504309,42.7356265995727],[-78.9209260489256,42.7367981243532],[-78.9190942484157,42.7368069062056],[-78.9164213840513,42.7378574060429],[-78.9147198742919,42.739567885342],[-78.9090991982042,42.7442891388056],[-78.9079048467114,42.7456625397577],[-78.9052538886636,42.7469641391875],[-78.9022175201212,42.7477295965062],[-78.9014578615978,42.7481742015771],[-78.8942108916894,42.7532608520155],[-78.8880931319409,42.7579259887025],[-78.8843883467585,42.7599022191483],[-78.883050261227,42.7604744012107],[-78.8803744072694,42.7623030022504],[-78.8796494201227,42.7630479175248],[-78.8790340993059,42.764185277665],[-78.877291339807,42.7660451717593],[-78.8767165383994,42.7657720379706],[-78.8748236587384,42.7661468420906],[-78.8729583636447,42.7673220258942],[-78.8697188168463,42.7698672750228],[-78.8666677446794,42.7712490589274],[-78.8653950636871,42.7727642313976],[-78.8642901322944,42.774048623072],[-78.8632592427423,42.7749433341186],[-78.8612358019379,42.7776723414867],[-78.860304741265,42.7791263979355],[-78.8590446142289,42.7803079327358],[-78.8578310666368,42.7811367300044],[-78.8560141413297,42.7819408479842],[-78.8550792673084,42.7835300490627],[-78.854259604019,42.783814296703],[-78.8532403503448,42.7869640001306],[-78.8532291312853,42.7923937213894],[-78.8536438717738,42.7933746704553],[-78.8534449533289,42.7938900952793],[-78.8539722033152,42.795429992898],[-78.855323347656,42.7978379915174],[-78.8561700628119,42.8001909582534],[-78.856796166107,42.8004894743778],[-78.8592371357707,42.8006727108624],[-78.8597821373653,42.8012485664946],[-78.8620950755414,42.80472697683],[-78.8634422798714,42.807783284922],[-78.8649801480271,42.810364928718],[-78.8649925142352,42.8109767732855],[-78.8665699954,42.8135660583936],[-78.8682707721342,42.8156334266337],[-78.8692174230688,42.8174381736852],[-78.8704324492878,42.8204358386346],[-78.8717706884312,42.8223848707028],[-78.8725190802843,42.825551380304],[-78.8722077763091,42.8266739003674],[-78.8726700268964,42.8284635096878],[-78.8713049946014,42.828158597675],[-78.8701482124505,42.8290846469136],[-78.8678577357497,42.8299860240119],[-78.8690315328904,42.8313689061102],[-78.8686526657244,42.8338802928025],[-78.8671556727108,42.8333862157665],[-78.8663911659798,42.8325612151503],[-78.865826629621,42.832449753161],[-78.8638682573858,42.8303595480285],[-78.863247446066,42.8304210480387],[-78.8623466765845,42.8309647063372],[-78.8620360364643,42.8308446468678],[-78.8577693883094,42.82155718849],[-78.8575668900781,42.8216045390192],[-78.8571391294078,42.8210697383007],[-78.8567573759547,42.8211141327379],[-78.8616102988,42.8315118085929],[-78.8612078553494,42.8317955182995],[-78.8600531492051,42.8317219692044],[-78.8604495784349,42.8329421077543],[-78.8558047000195,42.8330808741466],[-78.8464889378595,42.8357132204078],[-78.8466953123213,42.8361519661617],[-78.8560011597755,42.8336234813792],[-78.8605033219434,42.8338316730222],[-78.8604149950931,42.8350546763143],[-78.8611042652241,42.8374939453483],[-78.8601987526379,42.8379297017189],[-78.8590332810832,42.8379735557581],[-78.8578494937782,42.8383646645624],[-78.8584374779626,42.8398484592374],[-78.862185001393,42.8388620328752],[-78.862358764315,42.839094763365],[-78.8630110535007,42.8389511689902],[-78.8631557334654,42.8391803790343],[-78.8603154321152,42.8399786358932],[-78.8596560076112,42.8407347159689],[-78.8609047988068,42.8443030794735],[-78.8638505722528,42.8435957823226],[-78.8682185000661,42.8499398051624],[-78.8669854284897,42.8506433086948],[-78.8675725233419,42.849907641667],[-78.8652467814781,42.8465378476135],[-78.8624246593344,42.8474300834557],[-78.863698729122,42.8500476542054],[-78.8647834654889,42.8507402919166],[-78.8651876525695,42.8512848620521],[-78.8654407160699,42.8526178735663],[-78.8663948427842,42.8531348356977],[-78.871767593735,42.8516879331532],[-78.8722898922075,42.85253910777],[-78.8698865323099,42.8531742383144],[-78.8692262445249,42.8536017635194],[-78.8695176247654,42.8540691013768],[-78.8727509767816,42.8531177383049],[-78.875075711634,42.8564513914435],[-78.8761238021272,42.8589144097762],[-78.8734558479541,42.8599997748362],[-78.873780439809,42.8601688508555],[-78.8738165664565,42.8605502877152],[-78.8745993548018,42.8612260516007],[-78.874857173085,42.8604114710757],[-78.8759886074735,42.8599094127074],[-78.8766592779865,42.859967701524],[-78.8783192406641,42.8627655935069],[-78.8808624206408,42.8657990857971],[-78.8826476578763,42.8673726439498],[-78.8827188745154,42.867541296837],[-78.8795264129126,42.8686446218679],[-78.8800795478538,42.8694586961015],[-78.8836618827815,42.8684141391895],[-78.8840091678771,42.8688885426709],[-78.8804304989741,42.8700680431984],[-78.8808677135144,42.8705889240042],[-78.8814898435611,42.8706398283612],[-78.8846239685693,42.8697455181751],[-78.8846331816909,42.8703214474804],[-78.8834910259094,42.870639378696],[-78.8838136145212,42.8715242943254],[-78.8854775279894,42.8709410196791],[-78.889272799572,42.8753678482344],[-78.8903901124443,42.8759825957045],[-78.8881219004878,42.8769286455227],[-78.8880802465064,42.8772091797126],[-78.8892434552049,42.8772821499913],[-78.8893150796792,42.8769915915417],[-78.8901106941701,42.8766763934092],[-78.8905809774927,42.8775382539409],[-78.889752916752,42.8779581033115],[-78.8839419694023,42.8774984455637],[-78.8836026326003,42.8772488671498],[-78.8833207044332,42.8771549030458],[-78.8827013897067,42.876671731963],[-78.8813128898232,42.8747740747603],[-78.8792003163796,42.8746567166086],[-78.8795989428886,42.8757236407257],[-78.8808662959729,42.877431851131],[-78.881767733801,42.8779999902697],[-78.8824279146864,42.8782656877399],[-78.8869251963074,42.8784189583467],[-78.8882559030771,42.8787428500576],[-78.8901856729536,42.8827829028614],[-78.8910962403599,42.8842105168081],[-78.8914917676812,42.88421505723],[-78.8910728033141,42.8847650461083],[-78.890190184293,42.8844259376722],[-78.8897340970468,42.8830548803644],[-78.8885443835559,42.880965971467],[-78.8868989663994,42.8796263566489],[-78.8857761558376,42.8793629097545],[-78.8845584086216,42.8799355277461],[-78.8846442902577,42.8801667072902],[-78.8851961055738,42.8801929694697],[-78.8855639198685,42.8805361145976],[-78.8843929371496,42.8809765865279],[-78.8845461205668,42.8811919726065],[-78.8854056555801,42.8811042310782],[-78.8859441300159,42.8819953052891],[-78.8857618268105,42.8823301412655],[-78.8860880661756,42.882647687421],[-78.8865288021118,42.8827902665718],[-78.8872821562586,42.882327962481],[-78.8874790912234,42.8826273925728],[-78.8867603320965,42.883259593179],[-78.8873814569284,42.883639136469],[-78.8882205373027,42.882930808809],[-78.8887408756512,42.8830796747668],[-78.8879437609738,42.8839441452434],[-78.8884940015431,42.8840694857925],[-78.8906660057293,42.8859763964828],[-78.8899182768329,42.8865465763416],[-78.8903819278937,42.8869674780775],[-78.890587944826,42.8871675514815],[-78.891103617325,42.8876001844522],[-78.8927050448803,42.8878112619672],[-78.8958583498182,42.8904724731021],[-78.9009391078774,42.8940132153951],[-78.9023572728266,42.8964633407703],[-78.9015289398964,42.8969147982824],[-78.9022868961123,42.8976362315973],[-78.9024456347112,42.8984951709942],[-78.9025631882493,42.8990989102513],[-78.9026031363299,42.9020057563127],[-78.9028571475529,42.9037573141398],[-78.9030475751218,42.906379902979],[-78.9028140347075,42.9147028306687],[-78.9021605480676,42.9172822067605],[-78.9017808751127,42.9185827040123],[-78.900170559626,42.9239183610658],[-78.8997343251476,42.926575842574],[-78.8999294904313,42.9287886009428],[-78.9006642629264,42.9298304636112],[-78.9023342759553,42.9314076233607],[-78.9038361378378,42.932846442237],[-78.9037608006265,42.9331596439427],[-78.9045059082389,42.9338364778023],[-78.9047310538969,42.9345986027517],[-78.9051863066081,42.9344344844506],[-78.9059841354463,42.9349969600136],[-78.9077775949615,42.9369254644625],[-78.9080432528422,42.9373620631675],[-78.9064431673699,42.9377499103828],[-78.9075100703817,42.9397752830563],[-78.9088202057314,42.9390777068296],[-78.9090578397685,42.9391866259322],[-78.9097273909807,42.9408564169771],[-78.9097584349603,42.9422554306756],[-78.9093033169963,42.9422259831918],[-78.9091834790424,42.9432204901834],[-78.9090818966518,42.9435120839906],[-78.9097128059337,42.943792123931],[-78.9097235363098,42.944417514181],[-78.9103820328541,42.9488923303174],[-78.9102184155049,42.9494831696836],[-78.9102827465573,42.950138238427],[-78.9105316805023,42.9517773959825],[-78.911949801434,42.9547676025167],[-78.9204994066578,42.9606195997787],[-78.9208265928472,42.9607254211998],[-78.9210905654884,42.9610630048325],[-78.922364988314,42.96219874706],[-78.9231156798542,42.9631858888524],[-78.9236104503532,42.9636550990671],[-78.923978313157,42.9635119134869],[-78.9251180470804,42.9642515854908],[-78.9249449857426,42.9648427691082],[-78.9260452315228,42.9652326446806],[-78.9289861819141,42.9669683058791],[-78.9327517201591,42.9700440674588],[-78.9348532335449,42.9719840347238],[-78.9354850492269,42.9727185819403],[-78.9355850433961,42.9730842876181],[-78.9360392522651,42.9731586784947],[-78.9361824482129,42.9734238554301],[-78.9354589882022,42.9734802886331],[-78.9332139527801,42.9741878478899],[-78.9334395350193,42.9746122583382],[-78.9355867079744,42.9739620871306],[-78.9363410817089,42.9744943271497],[-78.9361799428116,42.9747789918796],[-78.9377954397809,42.9762359418732],[-78.9381355096081,42.9769940336013],[-78.9385634418566,42.9768487299164],[-78.94006733483,42.9777602708189],[-78.9396690954948,42.9784357710984],[-78.9402854906967,42.9786846257145],[-78.9410848718236,42.97976000257],[-78.9414669621449,42.9817366285072],[-78.9412980007181,42.9846236226243],[-78.9409783720551,42.9850037975284],[-78.9406802697214,42.9875170917933],[-78.9369639259162,42.9947625859745],[-78.9356154540635,42.9959885198921],[-78.9343288976933,42.9955241240559],[-78.9340579253795,42.9956414984804],[-78.9338245520518,42.9962662829157],[-78.9348630925551,42.9968292630322],[-78.9342257297762,42.9974544552228],[-78.9339806505021,42.9973413450012],[-78.9319175841121,42.9988529442906],[-78.9308263439427,42.9993316709332],[-78.929377149387,43.0005564966918],[-78.9281450965001,43.0010670529812],[-78.9265090397889,43.0024198168668],[-78.9185821521099,43.0067796260561],[-78.9143466988515,43.0084599377634],[-78.9104842260991,43.0100462948737],[-78.907949729238,43.0108848205252],[-78.9071150964227,43.0110394166104],[-78.906685377425,43.0110316018495],[-78.9061891318924,43.011165617275],[-78.8964571065994,43.0149643451019],[-78.8920856663734,43.0166439698513],[-78.8919115252606,43.0168884990613],[-78.8864007490647,43.0203489223871],[-78.8866251599008,43.0206294059339],[-78.8856414893933,43.0215902431761],[-78.8819558068855,43.0240609896582],[-78.8819296587242,43.0241023944294],[-78.8811381639071,43.0254123080539],[-78.8809103547443,43.0277790079918],[-78.8811438125136,43.0294817746053],[-78.8823190514504,43.031269588885],[-78.8833104843002,43.0325144146274],[-78.8854326014454,43.0340314099231],[-78.8855262669834,43.0344513965229],[-78.8866172960488,43.0346123661432],[-78.8877701031546,43.0354104829382],[-78.8886095716011,43.0375607978824],[-78.8886079276841,43.0386322890269],[-78.8883587538889,43.0389378901564],[-78.888764176153,43.0390951607222],[-78.888015881318,43.0397148704805],[-78.8890116790818,43.0399150721354],[-78.889884308837,43.0412359113364],[-78.8902554181523,43.0452929246347],[-78.8909411309547,43.0457017472307],[-78.8914701155879,43.046737156221],[-78.8909342579445,43.0469624920834],[-78.8911054813292,43.0472582826327],[-78.891486348145,43.047290327415],[-78.8914381822761,43.0478321871609],[-78.8920923282795,43.0477783903631],[-78.8925907333621,43.0484636933621],[-78.8984181746788,43.0526047399666],[-78.8992904927186,43.0537994629743],[-78.9008489161246,43.0549707542424],[-78.9025006178948,43.0556706485254],[-78.90452617513,43.0570060022953],[-78.9064292955853,43.0577782780097],[-78.9069831132462,43.0580519566276],[-78.909468021307,43.0582820719052],[-78.9133179140522,43.0595863340223],[-78.9138169219043,43.0599023729885],[-78.9146282596076,43.0597485228251],[-78.915657374987,43.060001368818],[-78.918088410182,43.0615566736644],[-78.9187436287738,43.0622454843185],[-78.919772968732,43.0627233754792],[-78.9199907832389,43.0632201036035],[-78.9211750439561,43.0635215971508],[-78.9227647502936,43.0647995531992],[-78.9253221335332,43.0660802540743],[-78.9288455120288,43.0670485660291],[-78.9294877526597,43.0670219740106],[-78.9314624975892,43.0676743171285],[-78.9345401437189,43.0680050303468],[-78.9349690479446,43.0682423579294],[-78.9365972875162,43.0680647104735],[-78.9370466490758,43.0686209521844],[-78.9375447406463,43.0686533047428],[-78.9381936422851,43.0679106478207],[-78.9397092214419,43.0683040663105],[-78.9421007891549,43.0695585939191],[-78.9448150730404,43.0705003056974],[-78.9457794737867,43.071335843948],[-78.9461044788666,43.0718693338005],[-78.9477684363522,43.0723655612777],[-78.9497334363575,43.0726757859795],[-78.9511153111658,43.0729566275137],[-78.952011663631,43.0733352832052],[-78.9539944314143,43.0746892337688],[-78.9561352990944,43.0753624064263],[-78.9587609246512,43.0756450913168],[-78.9613062165671,43.0755568531929],[-78.9629021122969,43.0751053421977],[-78.9656485244285,43.074010633552],[-78.9679290010835,43.0733507111571],[-78.9742645277283,43.0725362273179],[-78.9767988835539,43.0724030066858],[-78.9794036098057,43.0724023307879],[-78.9801622047238,43.0731547087503],[-78.9813369298242,43.0727986464756],[-78.9818922279086,43.0731529383134],[-78.9846465748592,43.0727192584698],[-78.9853384501045,43.0735099434572],[-78.9872834643913,43.073095429927],[-78.9879625287624,43.0735849266885],[-78.9895894684717,43.0734200729129],[-78.9974659112559,43.0734058064538],[-78.9997342435866,43.0732543741613],[-79.0035848504924,43.0736551917639],[-79.0050277730108,43.0738972253577],[-79.0075877856193,43.0745367258736],[-79.0118636433025,43.0761423210356],[-79.0180091627899,43.0774614175049],[-79.0198784464034,43.0774541722152],[-79.020760066498,43.077738266062],[-79.0260347860984,43.0775614794479],[-79.0368530290801,43.0772201827553],[-79.040294273711,43.0772605772587],[-79.0462067549423,43.0779246319914],[-79.0469144090956,43.0784352712611],[-79.0467818204546,43.0789216559392],[-79.0475708664642,43.0791908138576],[-79.0482270516433,43.078708381959],[-79.0502607422251,43.079275536411],[-79.0536616560929,43.0803073400118],[-79.0585269738925,43.0804677017987],[-79.0607100947303,43.080831281968],[-79.0625194849688,43.0816312775067],[-79.0653960728666,43.08405440724],[-79.068540045207,43.085180441824],[-79.0699451684148,43.0859587028324],[-79.0701307828104,43.0863032246019],[-79.0656713597888,43.0902074910166],[-79.0654839721188,43.0913305923131],[-79.0635184546839,43.0930121572543],[-79.0635169086833,43.0941826645412],[-79.0616136220397,43.096771333526],[-79.0618636627091,43.0979148866496],[-79.0615830020649,43.0984830826683],[-79.0596492257023,43.1006316334845],[-79.0586503952261,43.1024858324163],[-79.0575257565926,43.103426137614],[-79.0569020185616,43.1056001235264],[-79.0573696850918,43.1068530008278],[-79.0572133988936,43.1080019933361],[-79.0591072128025,43.1134493277759],[-79.0624723638406,43.1163233338087],[-79.0633789032012,43.1174930472639],[-79.0646548441796,43.1182759637283],[-79.0662868935063,43.1187265650628],[-79.0671394468132,43.1193849731065],[-79.0675218713077,43.120789398117],[-79.0664656312984,43.1214752578611],[-79.0641991836332,43.1222582007416],[-79.0598694530841,43.1252842923331],[-79.0569974906117,43.1264397495272],[-79.0555606910103,43.1273190960354],[-79.0535940219352,43.1291896049951],[-79.0524078819425,43.1310143816069],[-79.0510342231257,43.1319274453888],[-79.0496705014727,43.1334388691544],[-79.0453879513406,43.1359045276006],[-79.0427281862097,43.1378038996613],[-79.0422690366068,43.1392877149289],[-79.0421974857944,43.141329529749],[-79.0416401548225,43.1413582571579],[-79.0412741982437,43.1445314190996],[-79.0419048056917,43.1447071793173],[-79.0420182099114,43.1480344425018],[-79.0418768393402,43.1495745331546],[-79.0437142156931,43.1524716255761],[-79.0443871769101,43.1567244304559],[-79.0448672446828,43.1577023091769],[-79.0448321367249,43.1589505286353],[-79.0457332942786,43.1628035901438],[-79.0468778341888,43.16451420645],[-79.047018443887,43.1653645494383],[-79.049464919325,43.1686541126289],[-79.0497147183476,43.1721025695588],[-79.0494645393376,43.1732998925776],[-79.0498387765867,43.1740519125053],[-79.0489639863832,43.1758836162133],[-79.0490567958268,43.1796257480062],[-79.0484615721195,43.1826269816469],[-79.0476496801556,43.1847895703796],[-79.0475558601074,43.1864855378096],[-79.0468979537562,43.1889307725118],[-79.0465530554843,43.1936247674876],[-79.0456768486377,43.1972121584214],[-79.0457392896348,43.1991546816207],[-79.0467060080345,43.2028118230202],[-79.0487070529406,43.2059280963823],[-79.0522062326191,43.2099275325959],[-79.0528110691982,43.2118462985309],[-79.0521236828343,43.2140180009885],[-79.0506113286293,43.2157552910383],[-79.0491727611434,43.2187054024579],[-79.0487009821259,43.2229627250017],[-79.0507942795201,43.2306403938033],[-79.051951625813,43.2338855615183],[-79.052200610962,43.2355783632573],[-79.0521991997087,43.2431322382056],[-79.0514737544212,43.2460885753363],[-79.0509042548704,43.2507770218913],[-79.0505533513609,43.2512891554747],[-79.0507991088631,43.2533061867733],[-79.0519396863046,43.2546657348371],[-79.0521489048326,43.2557116997001],[-79.054962053705,43.2582768137024],[-79.0581397119702,43.2597034864958],[-79.0599325570378,43.2611703158378],[-79.0621479669202,43.2615326825454],[-79.062650638102,43.2614472723701],[-79.0629087429478,43.2609789194615],[-79.0632945217516,43.2612307894863],[-79.063540100489,43.2609789600212],[-79.0641195803226,43.2610843818039],[-79.0645967043161,43.2614590417895],[-79.064324648634,43.2620269320518],[-79.0646700068433,43.2627349030941],[-79.0632812347702,43.2636081371788],[-79.0607910410222,43.2640433571534],[-79.0553475279799,43.2659519598414],[-79.0497070152941,43.2669894672804],[-79.0461650371805,43.2683169835457],[-79.0435039236784,43.2684787800476],[-79.0416531920722,43.2688369150234],[-79.0388642357287,43.2698359354893],[-79.0342816617664,43.2702410333038],[-79.0306615230367,43.2719579738522],[-79.0285790090192,43.2719054238161],[-79.024266120085,43.2727012521447],[-79.021501608697,43.273572940972],[-79.0175885589975,43.2738367417536],[-79.0142358478295,43.2745758929826],[-79.0132609691337,43.2749838016986],[-79.0090283024493,43.2757177126385],[-79.008794448523,43.2759149934041],[-79.0080841901537,43.2758183828813],[-79.0068526726627,43.2762127364482],[-79.0052204059437,43.2762339916066],[-79.0001735026926,43.2771762000272],[-78.9987833247561,43.2770493301885],[-78.9982782649539,43.2772425831427],[-78.991803205691,43.2774286282709],[-78.9845981996828,43.2785986393345],[-78.9832016347246,43.2786068529132],[-78.9760672551624,43.2804716211623],[-78.956997339509,43.2848975092586],[-78.9453047572781,43.288498325005],[-78.9436102076655,43.2892321180537],[-78.9348183411826,43.2920338755948],[-78.9273297756667,43.2940923732397],[-78.9226396113812,43.2951494366419],[-78.9184094806409,43.2964741267777],[-78.9087931107458,43.2987979842019],[-78.9024026898507,43.2996333037076],[-78.894077874552,43.3018577522828],[-78.8828702109963,43.3044542679151],[-78.8707431738496,43.3080217097008],[-78.8594987278763,43.3109773151403],[-78.8577336146998,43.3110279613327],[-78.8537374528702,43.3118246557735],[-78.8521904075256,43.3120704325993],[-78.849010180977,43.3132265773445],[-78.8474557362093,43.314377382286],[-78.8404030718969,43.3169737036732],[-78.8367139856724,43.3187363436745],[-78.8363627300233,43.3186536104195],[-78.8363893084776,43.3181215161771],[-78.8366788759178,43.3181793117431],[-78.8368782399272,43.3175243670538],[-78.8358850984816,43.3169139912956],[-78.8366255393462,43.3170151619802],[-78.8371573015702,43.3161959898205],[-78.8399129214334,43.3159412910743],[-78.842949398672,43.3147767317587],[-78.8452739520647,43.3149460663117],[-78.8465490567116,43.3144349402295],[-78.8475744036584,43.3133559986512],[-78.849012867838,43.3129338765177],[-78.8490219291443,43.3127084854165],[-78.8484638238245,43.3124526935546],[-78.8469374594944,43.3124501084262],[-78.8464499833156,43.3126015823829],[-78.8459213795681,43.3133981829896],[-78.8446690948244,43.3138860247381],[-78.8436908806839,43.3137839076293],[-78.8431840287427,43.3132472587577],[-78.8424803855672,43.3140002159771],[-78.8399431488444,43.3148688685439],[-78.8393493283056,43.3148438196086],[-78.8386916177872,43.313524424704],[-78.838377361948,43.3134719654768],[-78.8382210784448,43.3141344678298],[-78.8387548798445,43.3148638063382],[-78.8371883033289,43.3146643675162],[-78.8367186227759,43.315013276853],[-78.8354211680447,43.315317965233],[-78.8337482292029,43.3164185431591],[-78.8339690566593,43.316951333352],[-78.835674236935,43.3172857134701],[-78.8357396792034,43.3184404531626],[-78.8339515071719,43.3175506494979],[-78.8262840125228,43.3188747515499],[-78.8257061065376,43.31878157317],[-78.8240005615459,43.3190637907628],[-78.820541719817,43.3198413267429],[-78.8184528241677,43.3203928849877],[-78.8161072403158,43.3210520212988],[-78.8127316212098,43.3220111096225],[-78.8078648319697,43.3234159873221],[-78.806334229388,43.3238091507056],[-78.8042397075901,43.3241670625609],[-78.7986299720842,43.3246284286947],[-78.7763358573491,43.3273126646524],[-78.7723407636164,43.3281830030097],[-78.7567566526252,43.3320550769614],[-78.7466503802017,43.3346650006899],[-78.7364148384122,43.3375123432364],[-78.7273454266425,43.3390422200607],[-78.72474530246,43.3393431461836],[-78.7233763723749,43.3390141475892],[-78.7226488043684,43.3390648795215],[-78.7193873746097,43.3396843546216],[-78.7188142647298,43.3394779339673],[-78.7180711666487,43.3393535748947],[-78.7177219151409,43.3390633297773],[-78.7168331202022,43.3390652532373],[-78.7102979295108,43.3399755519526],[-78.7007214744588,43.3404528739543],[-78.6938697318343,43.3419622173851],[-78.6837260625456,43.3444147151697],[-78.6742914694432,43.3476448080853],[-78.6593886129157,43.3508604163715],[-78.6527801286803,43.3528006696968],[-78.6470603423656,43.3547886901151],[-78.6440650546795,43.3554335275099],[-78.6402481992755,43.3569282981883],[-78.6388220608799,43.3570052641938],[-78.6378701889369,43.3573237037416],[-78.6313898296138,43.3577460510444],[-78.6286447865147,43.3584185390899],[-78.6159967085369,43.3598011311792],[-78.6070885263944,43.3605330406774],[-78.5943124869976,43.3620208098761],[-78.5899741999954,43.3626479675393],[-78.5886193797485,43.3631362255507],[-78.5876277771171,43.3631763860077],[-78.58204829687,43.3646075289551],[-78.5813552241704,43.3645572389498],[-78.5804265063038,43.3649420006757],[-78.5727195693255,43.3660837324916],[-78.5713885517387,43.3660848511806],[-78.5580047625264,43.3681457782632],[-78.5528201915597,43.3686628357415],[-78.5477027202531,43.3694521800555],[-78.5428748810654,43.3698631653156],[-78.5403122211218,43.3698661110783],[-78.5362536802789,43.3706176069824],[-78.5297321969804,43.3716341861288],[-78.5237748880197,43.3720342502932],[-78.5192667825979,43.3724748859923],[-78.5118637627482,43.3717844246011],[-78.5095850872154,43.3719445118299],[-78.5009395598855,43.372804115258],[-78.4920128401088,43.3745314920577],[-78.4857617658805,43.3752041499057],[-78.4819910039321,43.3742972754538],[-78.4788939946165,43.3722217997658],[-78.4751693809208,43.3711692349604],[-78.4732353251821,43.3709219485116],[-78.4706460562414,43.3709151298195],[-78.4656216584831,43.3714098428126],[-78.4620134835163,43.371766874651],[-78.457819885462,43.3721730316695],[-78.4559282005603,43.3726939746988],[-78.4549805480041,43.3725920948953],[-78.4540825354522,43.3728308419702],[-78.4511499349016,43.3729330034621],[-78.4479057572879,43.3720541019702],[-78.4385164653269,43.3724137067154],[-78.4299999666146,43.3736872038668],[-78.4275626890268,43.3737513724883],[-78.4221661991963,43.3744984349196],[-78.4184162143821,43.3746737630459],[-78.4165166243059,43.3750547334954],[-78.4146527117195,43.3751374872049],[-78.4014504001609,43.3748741847198],[-78.3874836806859,43.3757484746619],[-78.3760218271425,43.3760158255676],[-78.3703743893441,43.376596786986],[-78.3680759796212,43.3763269528683],[-78.366638420045,43.3756760580664]]]]},"properties":{"OBJECTID":1,"STATE":"NY","Zone":"A","Title":"West"}},{"type":"Feature","id":2,"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.3991411735214,43.561134733319],[-73.3997385998977,43.5610170418921],[-73.4008147627435,43.5621980962291],[-73.4009960813954,43.562394214691],[-73.402785045741,43.5666240136954],[-73.4029729301793,43.5679502030508],[-73.4024065181381,43.5683564679822],[-73.4017472409578,43.568176182029],[-73.399359420118,43.5647033130873],[-73.3991754927585,43.5632015975823],[-73.398951947,43.5613841923222],[-73.3991411735214,43.561134733319]]],[[[-73.4273737137316,43.640759883922],[-73.4292454183047,43.6369635231506],[-73.430455954744,43.6378174926226],[-73.4309783223867,43.6390941885962],[-73.4310440637942,43.6407382722005],[-73.4302228841485,43.6415058255],[-73.4296648983048,43.6416872426949],[-73.4287688629448,43.6426203260039],[-73.4277807897942,43.6429804000697],[-73.4276757048722,43.6431770373976],[-73.4281371559589,43.6434895084912],[-73.4281548348037,43.6442685742343],[-73.427681126205,43.6449913636962],[-73.4266855916475,43.6455764189924],[-73.4266493518123,43.6461341514996],[-73.4259477415243,43.6464126150662],[-73.4259947593463,43.6468679501357],[-73.4254595493882,43.6473918019137],[-73.4245765081588,43.6474651750542],[-73.4230257824165,43.6493345823009],[-73.4223922527489,43.6494969139796],[-73.4204178446876,43.6510858258451],[-73.4191099569227,43.6515764621345],[-73.4193592870248,43.6506975441684],[-73.4187237532158,43.6503736272007],[-73.4185868041524,43.6499215472295],[-73.4192174888555,43.648714764806],[-73.4193524885747,43.6483834933179],[-73.4194800089209,43.6481601626753],[-73.4205052247136,43.6474225173963],[-73.4230562757288,43.6467149184729],[-73.4246243461427,43.6458406616471],[-73.4264698315876,43.6441328534777],[-73.427092969544,43.6427908667334],[-73.4273737137316,43.640759883922]]],[[[-73.3339640904401,44.426769497739],[-73.3349526576642,44.4266308627313],[-73.3356867986436,44.4270466801621],[-73.3357197784926,44.4274342767119],[-73.3352085598409,44.4277959386661],[-73.3330714848479,44.4280078517895],[-73.3329438252629,44.4276368788648],[-73.3339640904401,44.426769497739]]],[[[-73.3387182848424,44.42918842654],[-73.3399317461962,44.4288729647816],[-73.3401547871015,44.4293713536016],[-73.3392307027451,44.4307263335586],[-73.3384644847235,44.4308862438981],[-73.3380177300748,44.430357590382],[-73.3380496579967,44.4296738506007],[-73.3387182848424,44.42918842654]]],[[[-73.3749889052992,44.4033410742497],[-73.3770950477036,44.4023356913185],[-73.3793907427178,44.402593342365],[-73.3799325166657,44.4023579507286],[-73.381433953645,44.4008487611305],[-73.3817848751209,44.3992782494556],[-73.3808945251984,44.3979242267594],[-73.3778962155796,44.3971974938131],[-73.3771331012373,44.3964124214604],[-73.3758920184852,44.3937839887991],[-73.3754464657824,44.3923012023914],[-73.3764054757387,44.3904242521156],[-73.3767575982621,44.3881875664282],[-73.376663434159,44.3868808272445],[-73.3770798374292,44.3855543314832],[-73.3767941093885,44.3844789431863],[-73.3762526543426,44.3839130791025],[-73.3726814854738,44.3827639405306],[-73.3724573010132,44.3815093622789],[-73.3729643999911,44.3786086858674],[-73.3725807762457,44.378126076452],[-73.3707312178392,44.3772624625168],[-73.3685004305958,44.3770775887664],[-73.3664276830621,44.377417091012],[-73.3646749630432,44.377193961195],[-73.3636233340862,44.3767557769773],[-73.3628180842655,44.3731611366015],[-73.3605861552634,44.3709414623732],[-73.3604888578367,44.3702108407324],[-73.3611890775327,44.3679971957846],[-73.3615384000073,44.3676781044433],[-73.3610268858098,44.3652040042127],[-73.3601025139926,44.3645425419843],[-73.3591146779971,44.364357309541],[-73.3579341821193,44.3636561408456],[-73.3576470104859,44.362760737643],[-73.35630674115,44.3612109928024],[-73.3562427478641,44.3605258601576],[-73.3554770948828,44.3593534833114],[-73.3579623299304,44.358714008807],[-73.3588220760478,44.358033143187],[-73.3585981592852,44.3559952930158],[-73.35840646599,44.3549392113348],[-73.3566851582601,44.3550765235258],[-73.3557923487503,44.3544154800792],[-73.355793310846,44.3541003960919],[-73.3572577004047,44.3529961037115],[-73.3588836061532,44.3540277779909],[-73.3593619150246,44.3541426790485],[-73.3594888469742,44.3538654138559],[-73.3581498451612,44.3526127999793],[-73.3592616792085,44.3490186390683],[-73.3588773098614,44.3469424721201],[-73.3580474632699,44.3448148895485],[-73.3578237450349,44.3424349300604],[-73.3569626882755,44.3408110481778],[-73.3558564094099,44.3396877911663],[-73.3545066583561,44.33706654786],[-73.3529124676287,44.3358732167221],[-73.3513197914609,44.3350760089647],[-73.3486106881597,44.3328852204722],[-73.3477179181758,44.331287818078],[-73.3465351396789,44.3232131690348],[-73.3462764832676,44.3184109067793],[-73.3465951794792,44.3166059426471],[-73.3477396017101,44.3151460226165],[-73.3481219363732,44.3138641396818],[-73.350126077772,44.3123716022407],[-73.3505407868196,44.3116663611174],[-73.3505407526836,44.3109956464577],[-73.3504747292052,44.3098828393542],[-73.3486277507602,44.3086227771607],[-73.3486277884894,44.3083977056522],[-73.3495830084535,44.3077542926816],[-73.3498689574798,44.3067771079726],[-73.3496458725571,44.3064047692613],[-73.3480842439621,44.3055359408217],[-73.3473528069118,44.3048501522911],[-73.3497051739423,44.3002566586671],[-73.3499906235053,44.2980640753638],[-73.3486191089672,44.2952263650128],[-73.3478319619961,44.2920594768861],[-73.3456561992588,44.2893046324014],[-73.3456231439513,44.2883048327016],[-73.3469248495104,44.2822196949814],[-73.3480709246414,44.2784100244998],[-73.347742214011,44.2758844571866],[-73.3492430598989,44.273439339382],[-73.3483506420546,44.2721390307827],[-73.3472996095789,44.2713585925314],[-73.3415394278225,44.2682771979146],[-73.3391205396469,44.2677469193831],[-73.3354292094308,44.2675221749327],[-73.3326308396415,44.2681206012763],[-73.3282389699292,44.2682995385036],[-73.3257901328203,44.2693260456348],[-73.3252492895271,44.2693991494214],[-73.3241026125248,44.2690762459643],[-73.3235302347719,44.2692118995448],[-73.3229574680484,44.2695816212787],[-73.3229905565936,44.2704013717021],[-73.3224811031313,44.2706369758864],[-73.3220983812944,44.2702712424666],[-73.3222266166995,44.2695618940624],[-73.3216536757029,44.2691663583764],[-73.3214945086076,44.2682097123023],[-73.3226075284311,44.2644808347498],[-73.3240069940493,44.2631779302939],[-73.3242604177741,44.2624704146919],[-73.3239107979571,44.2619881337554],[-73.3240054794898,44.2610802264015],[-73.3255333736509,44.2596621471456],[-73.3270907307566,44.2591357681809],[-73.3278852196585,44.2561854260951],[-73.3284271023025,44.2559052561392],[-73.3295722692368,44.2558859830778],[-73.3303995125106,44.2555919669337],[-73.3307481989781,44.2551109003069],[-73.3308120889577,44.2536263476904],[-73.3311301033481,44.2529557698707],[-73.3322745713931,44.2520721757864],[-73.3362811114592,44.2507440971442],[-73.3366275476468,44.2498398415783],[-73.3376771652759,44.2489278092073],[-73.3404433304623,44.2481037169633],[-73.3412378561951,44.2475750730433],[-73.3434631313759,44.2441502207794],[-73.3439400622316,44.2437790082825],[-73.3474382250172,44.241903002336],[-73.3496319378905,44.2412684750529],[-73.3505210894603,44.2403720122553],[-73.3530753519527,44.2405303741008],[-73.3536705298459,44.2399852670609],[-73.3537648260012,44.2391853647601],[-73.3533184010343,44.2385217230304],[-73.3533185160186,44.237450377006],[-73.3536676660167,44.2367171652903],[-73.3541770188677,44.2363013619708],[-73.355543362703,44.2364200547242],[-73.3575343482746,44.23571943796],[-73.3579916141104,44.234951754412],[-73.3580226347338,44.2342859834113],[-73.3575460335598,44.2336939471434],[-73.3584350512807,44.2322302350423],[-73.3577979328435,44.2315008511833],[-73.3577656276293,44.2310862520049],[-73.358464034525,44.2294397420732],[-73.3595912647981,44.229032783189],[-73.3616235576013,44.2288638595311],[-73.3629695689685,44.2284960143393],[-73.3635844567973,44.2281356962564],[-73.3637734838927,44.2277242661677],[-73.3637723969312,44.2270850426377],[-73.3631034511835,44.2261481643732],[-73.3600816119925,44.2234309862419],[-73.3598579961655,44.2228605934954],[-73.3595711362475,44.221524041865],[-73.3610957282016,44.2198173406749],[-73.364384429914,44.2178612796845],[-73.3657646760768,44.215310673306],[-73.366527029546,44.2146193368388],[-73.3697997026188,44.213000499552],[-73.3697669410604,44.2123158071753],[-73.3700518884652,44.2119687544518],[-73.3718319612861,44.2108507412096],[-73.3724032215348,44.2100486084436],[-73.3730393652999,44.2099586295221],[-73.3732306570481,44.210114402304],[-73.3732639998165,44.2113482824203],[-73.3735817375257,44.2115148559329],[-73.3739308542862,44.2113937801515],[-73.3753478262726,44.2070294797738],[-73.378688805443,44.2051772781195],[-73.3794193828057,44.2051786323571],[-73.3799282397866,44.205563968706],[-73.3811359806686,44.2056801083625],[-73.3843140629387,44.2050858512263],[-73.3850781223087,44.2043764081776],[-73.3851095732251,44.2038546798243],[-73.3840930513277,44.2036692613596],[-73.3840612868992,44.203056609951],[-73.3866376668121,44.2012293774226],[-73.3887996511896,44.2005396254262],[-73.3897846332374,44.2004454658985],[-73.3910868283783,44.2011120118322],[-73.3919449063242,44.2010250505699],[-73.3925184357174,44.2002408529631],[-73.3923907482846,44.2001040131016],[-73.3915547895559,44.2003848532272],[-73.3911833811017,44.2001500514708],[-73.3911516822502,44.1997624771801],[-73.3934117599618,44.1985383406589],[-73.3942740707693,44.1982938691565],[-73.3949670410609,44.1984386437935],[-73.3948395620373,44.1989860361246],[-73.3942349437488,44.1994186922996],[-73.3941397555663,44.1998134869588],[-73.3944573459519,44.2000430214004],[-73.3970638823089,44.2000885961294],[-73.3980167810263,44.2005430972617],[-73.4002730624575,44.2001785566396],[-73.4005914442588,44.1998589034381],[-73.4004648518723,44.1992179205997],[-73.4017057890974,44.1968854950083],[-73.4023730235544,44.1967957870888],[-73.40326155888,44.1972583486866],[-73.4050110260993,44.1970036740736],[-73.4070443645415,44.197941321994],[-73.4083145607937,44.1980580440713],[-73.4111121544386,44.1971606436119],[-73.4135585005192,44.1970505650033],[-73.4216006231845,44.1959284551453],[-73.4225221554272,44.1950408738865],[-73.4243092863113,44.195128536351],[-73.4235383817789,44.1935333834467],[-73.4240164427152,44.1931438417463],[-73.4250013663725,44.1929863558985],[-73.4259226587649,44.191927686603],[-73.4264632837675,44.1918901123743],[-73.4271622691783,44.192367885432],[-73.4284019254058,44.1922768953248],[-73.4294521727539,44.1926334394769],[-73.4331941239345,44.1905465641812],[-73.4343120377797,44.1887882860748],[-73.433956366911,44.1875410008612],[-73.4328988027849,44.1877290788722],[-73.4324616394485,44.1874935097481],[-73.4336985252716,44.1871188293086],[-73.4333258286333,44.1859838460875],[-73.4327625094917,44.1854629546222],[-73.4329216029251,44.184947462549],[-73.4331226288177,44.1845315776636],[-73.4328539148684,44.1840777440935],[-73.4310841259609,44.1829641103084],[-73.4301379780828,44.1813710955075],[-73.4292178274491,44.1808632931509],[-73.4289010374625,44.1809264628411],[-73.4274153614248,44.1782186394217],[-73.4254153055638,44.177277308229],[-73.4243669276098,44.1759799364875],[-73.421944280883,44.1748526596708],[-73.4214529338636,44.174103127994],[-73.4211248888848,44.1725365740686],[-73.4216396639668,44.1724356451047],[-73.4196521333158,44.1708011518512],[-73.4188311863339,44.1703351493341],[-73.4167477928657,44.1697481325467],[-73.4130557080648,44.1671130801644],[-73.4116021997991,44.1678806635825],[-73.4106809047117,44.1680119098162],[-73.4083623314038,44.1674844919324],[-73.4042345421306,44.1643569238561],[-73.4034727240573,44.1633289460814],[-73.4034404727419,44.162437194937],[-73.4039817130905,44.1606261371214],[-73.4035378465255,44.1603318435787],[-73.4035703664371,44.1600532035067],[-73.404045990244,44.1596907183029],[-73.4048400937687,44.1602149726821],[-73.4058243805204,44.1601206636655],[-73.4063963710995,44.1595749500851],[-73.4066489611877,44.1583495548554],[-73.4063017147197,44.1575434444153],[-73.4044607343259,44.1572926938735],[-73.4033814139019,44.1563323075604],[-73.4037952039729,44.152808889293],[-73.4042089940439,44.1524185306495],[-73.4061233757796,44.1520265903112],[-73.4071730248497,44.1526939383704],[-73.407680190303,44.1526379810139],[-73.4087280616071,44.1515677008764],[-73.4112708606981,44.1473221054011],[-73.4117337050719,44.1463517035009],[-73.4120880329593,44.1443264337563],[-73.4126273122856,44.1436226792195],[-73.4130731668223,44.1435478404771],[-73.4131442855451,44.1439854758518],[-73.4142263790683,44.1447522436934],[-73.4167895851877,44.1441935606658],[-73.4174640591676,44.1430775137849],[-73.4182230735989,44.1428629393549],[-73.4181537766596,44.1422677781249],[-73.4185974545784,44.1422739151209],[-73.4200268547568,44.1434100554876],[-73.4211659014691,44.1437724073453],[-73.4222691961314,44.1433644917323],[-73.423106100786,44.1423361817427],[-73.4239343672409,44.142131526979],[-73.4242807297667,44.1409478952952],[-73.4262818887588,44.1407413745881],[-73.4260270977982,44.1398015475565],[-73.4262178981679,44.1389128698993],[-73.4249797457202,44.1375183512817],[-73.4261874812124,44.1366436757546],[-73.4265668909608,44.1355955365383],[-73.4257429067749,44.1300202890808],[-73.4252653749462,44.1203443887328],[-73.4254884859201,44.1190600171916],[-73.4276734599823,44.1148946339486],[-73.4276764235244,44.114399503994],[-73.428868327108,44.1138081764967],[-73.4285010553957,44.112605715544],[-73.4289545465107,44.1110228968054],[-73.4301775605492,44.1112602696237],[-73.4314328950733,44.1124028862022],[-73.4334799615697,44.1123724282025],[-73.4338256404776,44.1113778172861],[-73.4337976193289,44.1083253760264],[-73.4357268600977,44.1051736805134],[-73.4367735016083,44.1043056874247],[-73.4377614705544,44.1043011829925],[-73.4393226598732,44.1038498362484],[-73.4415207295756,44.1018631137272],[-73.4432371729283,44.1011752462224],[-73.4452330974373,44.1000409969851],[-73.4455777837067,44.0994019586373],[-73.4453991752721,44.0982606338656],[-73.4443461152988,44.0952392640009],[-73.4436739688537,44.0935960474866],[-73.4435697651791,44.0930139263297],[-73.4435809671707,44.0925864291294],[-73.4436311290962,44.0916552860605],[-73.4440025438386,44.0906204773429],[-73.44462219723,44.0896160525127],[-73.4446575423432,44.0882660609467],[-73.4441446770795,44.0851935097021],[-73.4443002904395,44.0840207147343],[-73.4446565497048,44.0829361780586],[-73.4449029324344,44.0822913014188],[-73.4451710921231,44.0808139277227],[-73.4455018634888,44.0800756636],[-73.4458679611031,44.0786131237972],[-73.4462178558046,44.0765156383256],[-73.4470789520898,44.073641818492],[-73.4491065664671,44.070027549471],[-73.4490784222492,44.0669480791539],[-73.4496370701514,44.0649479443408],[-73.4491473562692,44.0629290906354],[-73.4491989959233,44.0609490890202],[-73.4499718480032,44.0590508893056],[-73.4503091815621,44.0575744350307],[-73.4505702876792,44.0561779754756],[-73.4528689516255,44.0530894872277],[-73.4529096704607,44.0526038649168],[-73.4520800439564,44.0521334747506],[-73.4519473897384,44.0515644767718],[-73.4522916268502,44.0510784616754],[-73.4534148506371,44.0506389959916],[-73.4547134623983,44.0501748794692],[-73.4553469363704,44.0495757203356],[-73.4555861155097,44.0479358649391],[-73.4552582313293,44.0449693776154],[-73.4552539140261,44.0441140138537],[-73.4557038549991,44.0433998332166],[-73.4558677651991,44.0422541353803],[-73.4576140299243,44.0413953855281],[-73.4577393853306,44.0408928953142],[-73.4573587170425,44.0402305255242],[-73.458468702357,44.0396602837618],[-73.4584047530885,44.0386960760089],[-73.4589724380424,44.0384021190641],[-73.4576756157252,44.0380560191702],[-73.4553296240382,44.0361786928114],[-73.4549175946652,44.0357049586788],[-73.4549489135292,44.0348590779766],[-73.4561220836459,44.0348569157907],[-73.4575155476197,44.0341194475915],[-73.4590693842279,44.0343564729135],[-73.459944922728,44.0346428654599],[-73.4599920231949,44.0343598976949],[-73.4597387818281,44.0341088987304],[-73.4597425080399,44.0339648969663],[-73.4598861522471,44.0338092745133],[-73.4599685439284,44.0329460738759],[-73.4592491146583,44.0314508488068],[-73.4587836382209,44.0301796215583],[-73.457512941607,44.0276280763479],[-73.4558071271208,44.0255298074948],[-73.4550619350667,44.0242232752654],[-73.4546630193002,44.0229169157747],[-73.4548470679322,44.0216544455549],[-73.4554186551677,44.0187991324194],[-73.4538926456721,44.0137817013073],[-73.4537511268789,44.0133161202493],[-73.4520589703782,44.012302869187],[-73.4514831790271,44.0116873537158],[-73.4512833946063,44.0106447706733],[-73.4519942225074,44.0087637080318],[-73.4520255575412,44.0077377587335],[-73.4509802760799,44.007579553404],[-73.4506314449838,44.0071426706628],[-73.4506321618394,44.0065754742518],[-73.4511388287276,44.0059791178001],[-73.4525951801612,44.0050174751999],[-73.4523964791085,44.0022822916166],[-73.4525932892075,44.002118393834],[-73.4533103217723,44.0024252020751],[-73.4531199831367,44.0003878855425],[-73.4519232996174,43.9997009476533],[-73.4493360572761,43.9984414487816],[-73.447565466173,43.9983634071309],[-73.4469664488803,43.9985263369248],[-73.4461885096409,43.9991234920452],[-73.4436087951816,43.9991334293616],[-73.4429453911409,43.9993134678108],[-73.4415745054234,44.0007623306212],[-73.4411705635829,44.0007973396562],[-73.4403702697676,44.0006963957411],[-73.439258016207,44.0001545291775],[-73.4389896957199,43.9997142076183],[-73.4379059654662,43.9997804395479],[-73.437311517005,44.000213479329],[-73.4378256749444,44.0007021797548],[-73.4394256086014,44.0011966956608],[-73.4410963555539,44.0021738300989],[-73.4414609907109,44.0038804200444],[-73.4411792844277,44.0042187046806],[-73.4397428207962,44.0047123028292],[-73.4375550619566,44.0051956200572],[-73.4353628384901,44.006322568515],[-73.4347609079609,44.0091143491642],[-73.4350467393079,44.0103427051844],[-73.4343125983285,44.0114580648704],[-73.4340894244725,44.0130665936772],[-73.4340856740062,44.0134761902748],[-73.4354423609523,44.0155249945636],[-73.4355869376107,44.0166703868117],[-73.4367063085234,44.0178426124362],[-73.4367588635607,44.0183655196565],[-73.4362277193776,44.0200328632661],[-73.4350656030306,44.0218806389608],[-73.4341603554474,44.0224984754614],[-73.4344588368702,44.0239295765999],[-73.4340354590802,44.0252607616293],[-73.434599363025,44.0263263636197],[-73.4370384031075,44.0289571599529],[-73.4355544760896,44.0294815650975],[-73.4353307165321,44.0309325263289],[-73.434750850423,44.0316583546538],[-73.4339400831498,44.0320884129896],[-73.4330054364024,44.0320981180919],[-73.4322415773567,44.0316644966779],[-73.4306716231757,44.0314538946414],[-73.4293053323409,44.0309444604724],[-73.4264330069492,44.0312020799264],[-73.4256539313409,44.0308447323453],[-73.4250384694886,44.0301700181885],[-73.425029278825,44.0294856457215],[-73.424524157039,44.0292986226474],[-73.4233594427642,44.0293095805575],[-73.421774977198,44.0301205235755],[-73.4212621209175,44.0299018685356],[-73.4210728602602,44.0295391258958],[-73.4213699349213,44.0284538357001],[-73.4211450937922,44.0279330455495],[-73.4187320994631,44.0270804101986],[-73.4188629723219,44.0266455623191],[-73.4184088029789,44.0263916932157],[-73.4172055249271,44.026388549589],[-73.4168874386716,44.0262085836272],[-73.4170186852295,44.0258187591711],[-73.4178769149907,44.0253354575646],[-73.4179801080607,44.0244455645728],[-73.417978051817,44.0242294581076],[-73.41724594642,44.0237826705252],[-73.4165882924954,44.0237330517264],[-73.4163875082496,44.0234241607381],[-73.4167873313146,44.0229345184],[-73.4172867892227,44.022158149873],[-73.4172895695085,44.0216134918005],[-73.4179934642123,44.0205968613342],[-73.4182797635816,44.0189487245856],[-73.4176776929152,44.0144612760746],[-73.4166493860196,44.012812951335],[-73.4167478557478,44.0122471096665],[-73.4162760479841,44.0108135589544],[-73.4166023385532,44.0084232086318],[-73.4160580654922,44.0077224200882],[-73.4154242070412,44.0076055994403],[-73.414752652586,44.0077628529811],[-73.414506949881,44.0068591193328],[-73.414884224334,44.0056309018072],[-73.4161584836663,44.0047077152165],[-73.416800216749,44.0038522865938],[-73.4168958639706,44.0018368771978],[-73.4165479051386,44.0012018302141],[-73.4156925940037,44.0005327449445],[-73.4137282632433,44.0003524588272],[-73.4131448972978,44.0000697654942],[-73.4128388296024,43.9996198550196],[-73.412839543763,43.9987735550258],[-73.4134734713843,43.998269164179],[-73.4134728677164,43.9979990569583],[-73.4129350804918,43.9977034894256],[-73.4146766901472,43.9975205704081],[-73.4157223623756,43.9968328044609],[-73.4167051534324,43.9955769509052],[-73.4189528487661,43.9947077185307],[-73.420094763799,43.9919144701261],[-73.420159216124,43.9898355972451],[-73.4189242293394,43.9885580667422],[-73.4186708819714,43.9878252959878],[-73.4190823993048,43.9871197242779],[-73.4204136594367,43.9861747658102],[-73.4206036800687,43.9848268934354],[-73.4188305332587,43.9835689371862],[-73.4174376046808,43.9834326260416],[-73.4174054449936,43.9830000222727],[-73.4182295208077,43.9828403606129],[-73.4182612546934,43.9820259992516],[-73.4193723206812,43.9816227069671],[-73.4193784364117,43.9806864462751],[-73.4199937275841,43.9784936370902],[-73.4203310593463,43.9758198086061],[-73.4201313539772,43.9749752385496],[-73.4199894039926,43.9736272799846],[-73.418872836722,43.9723333746951],[-73.4167131125058,43.9717993071463],[-73.4159536075943,43.9712936054466],[-73.4149402747162,43.9699020543634],[-73.4147519995108,43.9693052245995],[-73.4151632114169,43.9689597939497],[-73.4153222904773,43.9682507349405],[-73.4135816887317,43.9657326767426],[-73.4124102379904,43.9648430953523],[-73.4120311345675,43.9635143407668],[-73.4113355133475,43.9624873006835],[-73.4113998506881,43.9603634048094],[-73.4110841692226,43.9594046635889],[-73.4102296315372,43.9585554751998],[-73.409950629183,43.9579168598902],[-73.4101320718024,43.9576267736364],[-73.4113485119696,43.9570539597685],[-73.4127468169645,43.9555293012372],[-73.41338152612,43.9548313452429],[-73.4137035640645,43.954174066451],[-73.4122878560077,43.9541003990381],[-73.4120675441843,43.9531880010879],[-73.4102637576365,43.9521275529935],[-73.4106440908531,43.9513585507315],[-73.4105175990779,43.9510776884124],[-73.4094412161449,43.9505495303807],[-73.4108341959267,43.9505959068872],[-73.4120053196812,43.9496128017948],[-73.4135885770133,43.9487704538614],[-73.4136205094267,43.9476274691097],[-73.4125450014527,43.9472434057827],[-73.4133678600496,43.9467596405677],[-73.4133363327764,43.9446344076548],[-73.4141631798932,43.944497321537],[-73.4152067213177,43.9447638819706],[-73.4155502496588,43.9442329415679],[-73.4157053096566,43.940737278449],[-73.4153481296181,43.9394358428232],[-73.4151297267147,43.9368083304826],[-73.413586798349,43.9349142324062],[-73.4136350288966,43.9343296814222],[-73.4143919511516,43.9337999759516],[-73.4146419424137,43.9330651638664],[-73.4147476202237,43.9321933000228],[-73.4158282683577,43.9286159212209],[-73.4165917950267,43.926276608963],[-73.416236303821,43.9257359841274],[-73.4151160777123,43.9252027684438],[-73.4131869492329,43.9233213144191],[-73.4122718372496,43.9194371481038],[-73.4121143293426,43.9172201214853],[-73.4111970290633,43.9161179677021],[-73.4112618991049,43.9153175649482],[-73.413634944455,43.9124874220148],[-73.414521435215,43.9099967652236],[-73.4144910586837,43.9072683057636],[-73.4140170886751,43.906064277152],[-73.4126887857971,43.9052625489339],[-73.4125057531597,43.904827843946],[-73.411421256643,43.9042545705225],[-73.4097471239402,43.9038756658168],[-73.4052919535431,43.9033904623597],[-73.401036861316,43.9033130375421],[-73.4008948223982,43.9022801578539],[-73.4003588551604,43.9015433835612],[-73.3984285759391,43.9007960903728],[-73.3977646742317,43.900246583771],[-73.3982730128847,43.8990787560102],[-73.3980443790685,43.8971263085139],[-73.3975241197717,43.8969389504999],[-73.3972220594608,43.8954626537989],[-73.3958934664269,43.8940214798692],[-73.3953260482727,43.8935048241062],[-73.3941815766344,43.8928315061828],[-73.3926728650979,43.892364639323],[-73.3904355048816,43.8919685295559],[-73.3894881379897,43.8911448803239],[-73.3892670437336,43.8899353031183],[-73.3898997164084,43.889151909599],[-73.3897861010846,43.8887766663131],[-73.3887318328772,43.8880820553049],[-73.3880371144641,43.88700985625],[-73.3884794529948,43.8860707277092],[-73.3898885728073,43.8847670685605],[-73.3908023436059,43.8834519201588],[-73.3911059310528,43.8805525745512],[-73.3901291452337,43.8788911925888],[-73.3904449848028,43.8785445029057],[-73.3891190516805,43.8769952422252],[-73.3883914675043,43.876858941738],[-73.38605197962,43.877474195852],[-73.3860851526068,43.8767633903079],[-73.3845684307929,43.8766969558068],[-73.3844095502601,43.8764156036175],[-73.3855491431481,43.8756393929622],[-73.3864626687066,43.8737255426787],[-73.3863383858887,43.8721031628802],[-73.3857702032682,43.8713658617538],[-73.3857072277735,43.8699514260974],[-73.3869102210593,43.8677985624659],[-73.3876083440874,43.8656745816279],[-73.3876088327709,43.8649633128053],[-73.387041210699,43.8638028612989],[-73.3856203948215,43.8621531786211],[-73.3856846261609,43.8605784740001],[-73.3860640727403,43.8597735153361],[-73.3879293714272,43.8584312944742],[-73.3882147203789,43.8577690581007],[-73.3868564317367,43.8568045373693],[-73.3862267217057,43.8559313159715],[-73.3855330147955,43.8542018539336],[-73.385155314541,43.8521167109327],[-73.3841759900829,43.8512925606402],[-73.3844927198824,43.8502166146386],[-73.3839251508112,43.8496953940141],[-73.3814303154681,43.8486157005955],[-73.3792817734806,43.8484772264836],[-73.378687742736,43.8482752303183],[-73.3769771357377,43.8483319950427],[-73.3769791470656,43.8476837703034],[-73.3787999369251,43.8476060592818],[-73.3799188577818,43.8437233931187],[-73.3810565704958,43.8426500803711],[-73.3826589412822,43.8418444313366],[-73.3842508718484,43.839665573448],[-73.3854843611414,43.8392733353296],[-73.3881377078096,43.8402291275127],[-73.3897724493872,43.8403827097643],[-73.3925885932427,43.8401432214495],[-73.3934531327705,43.8397367065921],[-73.3929812243956,43.8385191009148],[-73.3929290951596,43.8375639940947],[-73.392800106068,43.8363151920879],[-73.3929735168504,43.8358494453298],[-73.3932848549616,43.835777290871],[-73.3937508730832,43.8360539432911],[-73.3940790923352,43.8374405957277],[-73.3944144747533,43.8373417646232],[-73.3946543258324,43.8375297046649],[-73.3951561040889,43.8381264787981],[-73.3951869405577,43.8384555402163],[-73.3959516664776,43.839249577239],[-73.3959903730865,43.8400109180303],[-73.3962462339407,43.8412569933437],[-73.3965740354761,43.8418198093043],[-73.3978166112282,43.8408828518526],[-73.3991252410015,43.8397127141328],[-73.3993795405837,43.8393606344224],[-73.3995071004557,43.8381649504278],[-73.3966536046507,43.8354464256004],[-73.3955606073765,43.8356201698013],[-73.3951617482038,43.8360287350418],[-73.3944282252653,43.8357258237517],[-73.3949334126283,43.8351206756489],[-73.3961051984411,43.8345879009513],[-73.3991744129835,43.8336810359341],[-73.3994217479273,43.8333558692714],[-73.3985666793376,43.8313181013413],[-73.398564999488,43.8305662820497],[-73.3998504060146,43.8253937329472],[-73.3984784539969,43.8242040647942],[-73.3982545965231,43.8236517130059],[-73.4004653342676,43.8198246350183],[-73.4004465693596,43.8177310450934],[-73.3997680125367,43.8166861415608],[-73.3990299108852,43.8164462197936],[-73.3980711865932,43.8154469024852],[-73.3957983662794,43.8143031000982],[-73.3957663215766,43.8137579349115],[-73.3948146787039,43.8124975863109],[-73.3938216495478,43.8110430714047],[-73.3907725590644,43.8100818390047],[-73.3898163006478,43.8092310450939],[-73.3885435945027,43.8092851456322],[-73.38651185596,43.8097381869356],[-73.3849728954529,43.8086270292931],[-73.3843409558034,43.8083750055209],[-73.3843355793864,43.8080553027988],[-73.3843119590843,43.8066819235343],[-73.3839326948629,43.8057041779559],[-73.3840290481603,43.8040308739106],[-73.38331776122,43.8034670999346],[-73.3810028422587,43.8023269069495],[-73.3801937763947,43.8023649692094],[-73.3793908630921,43.8009670406717],[-73.3779832722121,43.7967334037415],[-73.3774431367914,43.7959649373292],[-73.3768086081972,43.7958433871831],[-73.3756388417971,43.7962949625794],[-73.3737141752497,43.7959344729789],[-73.3734915269083,43.7949769255949],[-73.3739017030569,43.793830298917],[-73.3726051035219,43.7919120943788],[-73.3706468678306,43.7910198628336],[-73.3684357635735,43.7896017805974],[-73.3663207871365,43.7876808275245],[-73.3647065361305,43.7837501878527],[-73.3650203428121,43.7811256202295],[-73.3635260914567,43.7780160046148],[-73.3629609631081,43.7713677432846],[-73.3622658215884,43.7708310771672],[-73.3617602371701,43.7697794138054],[-73.3619494214706,43.7689357824671],[-73.3617278520058,43.7683473721227],[-73.3630112463061,43.766844138526],[-73.3635793929941,43.7642592229684],[-73.3640326676151,43.7628971559807],[-73.365815096717,43.7590825893977],[-73.3666534737104,43.7572308127103],[-73.366872500943,43.7551991159465],[-73.3671409256347,43.7537488592372],[-73.3678340225888,43.7523541846441],[-73.3697239791319,43.750049198638],[-73.3706315156224,43.7477842286813],[-73.3708823728605,43.7460321048979],[-73.3713233270874,43.7449984731713],[-73.3724660667738,43.743817267036],[-73.3739284692591,43.7417492401293],[-73.3739337899805,43.7406913944744],[-73.3749357007798,43.7406381106063],[-73.3749876287931,43.7415887266294],[-73.3770152261024,43.7417525766384],[-73.3784664921731,43.7422773667706],[-73.3791600876922,43.7421161317051],[-73.3797605288146,43.7412062751517],[-73.3814958556529,43.7409247285821],[-73.3809277107616,43.7399442977454],[-73.3815594393071,43.7394850542576],[-73.3812128548974,43.7384627429015],[-73.3822565355608,43.7368838766391],[-73.3817519500691,43.7364265575],[-73.3808048329088,43.7364941827869],[-73.3795440869334,43.7373136577236],[-73.3794793965549,43.7381590784659],[-73.3781853194892,43.7394642595064],[-73.3765451987997,43.7399001689394],[-73.3747790642387,43.7396274825321],[-73.3748462537304,43.7401281368083],[-73.3738522310376,43.7401770298808],[-73.3726410010989,43.7371525994622],[-73.3735986923284,43.7353745094034],[-73.3735876610167,43.7337447012383],[-73.3731411866424,43.732576885984],[-73.3713095505242,43.7303179188493],[-73.3712613972317,43.7293448442971],[-73.3714022485766,43.7282123957587],[-73.371992788468,43.7273519572321],[-73.3725673392456,43.7266803631965],[-73.3776037097501,43.7218359583943],[-73.3782353754135,43.7208545209989],[-73.3786147177883,43.7191582168222],[-73.3790568532998,43.7184712059755],[-73.3795585291483,43.7180506448151],[-73.3822119360036,43.7161479348577],[-73.383705640285,43.715475778247],[-73.3853510017459,43.7150488421168],[-73.3877306739678,43.7143171105657],[-73.3899071391876,43.7124210005492],[-73.3908858536897,43.7101118401422],[-73.391108943104,43.7079180924264],[-73.3921809736994,43.7060604145869],[-73.3937445552318,43.7012429308675],[-73.3953688035886,43.6978938682344],[-73.3959716324331,43.6970424774244],[-73.3974957716363,43.6958438522429],[-73.3982909854786,43.6951347007486],[-73.4021797294615,43.693496417277],[-73.4044196130454,43.69150187017],[-73.4052079386062,43.690432427866],[-73.4055225205338,43.6893293643486],[-73.4052091360604,43.6868129714833],[-73.4040744892964,43.6850324226322],[-73.4041397006978,43.6836827819147],[-73.4046116989043,43.6836623569208],[-73.4052745190401,43.6841668050066],[-73.4054620989495,43.6840523729947],[-73.405684100504,43.6829300090092],[-73.4054736584706,43.6822968178229],[-73.4050236465307,43.681516225649],[-73.4046766201499,43.6809171422459],[-73.4059385617829,43.6775313508768],[-73.4081999357634,43.6740199023868],[-73.4095633996,43.6727378417791],[-73.4097215444125,43.6720917753522],[-73.4107021884957,43.6710654829855],[-73.4112979583787,43.6701688911372],[-73.4121019173203,43.6691671421124],[-73.4119738687648,43.6687601977511],[-73.4113092088793,43.6688004860625],[-73.409660581144,43.670200153127],[-73.4088714488962,43.6709905038669],[-73.4084616733962,43.6710658345088],[-73.4083052093316,43.6706494865506],[-73.4112372870627,43.66523402297],[-73.4130474983614,43.6613695597458],[-73.4135938447341,43.6608144096521],[-73.41426196493,43.660639100595],[-73.414671674853,43.6612120146259],[-73.4157743829154,43.660840137617],[-73.4176017709006,43.6591997542205],[-73.4183890633988,43.6576710119762],[-73.4185464087107,43.6563406389929],[-73.4193342069604,43.6555592048311],[-73.4178226594425,43.6550340925615],[-73.4172563498093,43.6554674373826],[-73.4168461503045,43.656272093296],[-73.4159944126678,43.6591324816821],[-73.415584828509,43.6596760331613],[-73.4150817908145,43.6597050773465],[-73.4164320925355,43.6543890854271],[-73.4179081727693,43.6531625027105],[-73.4187532781442,43.6528545601781],[-73.4199615786767,43.6528532550526],[-73.4221185872858,43.6516045105738],[-73.4225934969321,43.6512554163198],[-73.4231514127073,43.6509029622193],[-73.4236805419692,43.6510588184353],[-73.4239998184925,43.6511487544734],[-73.4250053063833,43.6496229714491],[-73.4278180842515,43.6479734803999],[-73.4294445092262,43.6458979618902],[-73.4315614251258,43.6420599150485],[-73.4312732312097,43.6416102766304],[-73.4315946061975,43.6414391123672],[-73.4317790060708,43.6414101282567],[-73.4323354737618,43.6407199688007],[-73.4323797849598,43.6404459625664],[-73.4320418728859,43.640418820353],[-73.4319944912462,43.6402741104318],[-73.4318579590011,43.6401011675865],[-73.4324611840026,43.6397582923372],[-73.4326092515143,43.6389499858236],[-73.432682826231,43.6382351968802],[-73.4322978253682,43.6382614325115],[-73.4318666708628,43.6379764045676],[-73.4315927260236,43.6378736068889],[-73.4312689345677,43.6375720417451],[-73.4288843692224,43.6356530203254],[-73.427120247786,43.6331212255305],[-73.4262992028876,43.6318944237145],[-73.4262976964129,43.6314172040359],[-73.4266140049025,43.6310524026482],[-73.4271486228708,43.631050753744],[-73.4283755885983,43.6315358189678],[-73.4291629978774,43.631168480579],[-73.4293525810299,43.6304327775437],[-73.4272750742218,43.6275050148199],[-73.4270571698833,43.6270968484986],[-73.4258899331391,43.6263154675952],[-73.4247564811345,43.6264079044708],[-73.4242537524604,43.625248496626],[-73.4235607839654,43.6253830056876],[-73.4243155808065,43.6286977870246],[-73.4244353073692,43.628978553214],[-73.4251103993901,43.6299467528094],[-73.4256002040021,43.6308313632552],[-73.4248910739168,43.6309296423868],[-73.4244649463837,43.630158453261],[-73.4235601210087,43.6289394801062],[-73.4234549893744,43.6288119780041],[-73.4196542632214,43.6245187452247],[-73.4185846104665,43.6228562692719],[-73.4183422602742,43.6216689223625],[-73.4191579997224,43.6198614420429],[-73.4232352425913,43.6142633678712],[-73.424772198957,43.6115789154868],[-73.4226518667643,43.606111402596],[-73.4223730665311,43.6043022974101],[-73.4225407370788,43.6027739658874],[-73.4256581947453,43.5991253730331],[-73.4271409853943,43.5961520150461],[-73.4317617126033,43.5893275665681],[-73.4321621393361,43.5876493443146],[-73.43170314604,43.5867201595655],[-73.4312125239611,43.5857275118269],[-73.4307005417413,43.5848426145514],[-73.4297529475757,43.5838301822679],[-73.4279875352602,43.5826534368941],[-73.4279925658257,43.5824599241714],[-73.4281580148398,43.582259612688],[-73.4284217682921,43.5821191766497],[-73.4287044977564,43.5820825445592],[-73.4303035438779,43.5829283559745],[-73.4318875872358,43.5840260454959],[-73.4321943142947,43.5839897340633],[-73.432353447254,43.5837938316745],[-73.4317987977532,43.5822555775332],[-73.4320570328546,43.5819394824128],[-73.4336525863263,43.5822044525351],[-73.4353967193493,43.5831602256517],[-73.4358657073013,43.5827164501938],[-73.4355575905487,43.5817893438723],[-73.4363775700451,43.5808236440494],[-73.4362865895715,43.5804802550005],[-73.4367363401016,43.5796715581692],[-73.4344322718906,43.580972602603],[-73.4327177913568,43.5802198064993],[-73.4322925630373,43.5791245146104],[-73.4324568020207,43.5788206361065],[-73.4330944756167,43.578617786242],[-73.4337158115526,43.5777304175902],[-73.4346667447562,43.5778649899804],[-73.4349901643096,43.5772121378419],[-73.4376295655313,43.5773067548154],[-73.437976380808,43.577095401286],[-73.437478928838,43.5768455016851],[-73.4359096079692,43.5766484723144],[-73.4338870008014,43.576679313757],[-73.4327343553923,43.576951644617],[-73.4320206942047,43.5767122630809],[-73.4318709064193,43.5763095388462],[-73.4333992838741,43.5749483998306],[-73.4331769194002,43.5748373072373],[-73.4338682170288,43.5737573131973],[-73.4359991511384,43.5721072630822],[-73.4364776558425,43.5721003010874],[-73.4387103897351,43.5729186433388],[-73.4401829907938,43.5739516713159],[-73.441358538751,43.5726666463515],[-73.4411753938242,43.5724750689966],[-73.4401291305043,43.5725283304756],[-73.438041599396,43.5709421711332],[-73.4383432716347,43.5706491648226],[-73.440297667028,43.5704642483979],[-73.4406937477115,43.569690818107],[-73.4370447047892,43.56965450649],[-73.4363536838417,43.5690508062152],[-73.4364810290164,43.5683457460895],[-73.4376311312949,43.5669658695037],[-73.4390184489955,43.5659583776844],[-73.4397518569496,43.5657883102631],[-73.4415208185088,43.5660060152743],[-73.4411931975348,43.5651146711712],[-73.4401988532451,43.5648400001195],[-73.4420868550542,43.5633485896535],[-73.4437564934856,43.5629121279038],[-73.444805849705,43.5630029372457],[-73.4457353284446,43.5633622227467],[-73.446536497219,43.5632335498921],[-73.446479891678,43.5627555764064],[-73.4447227384732,43.5613586040435],[-73.4492775266454,43.5575262947098],[-73.4498645864634,43.5576873197415],[-73.4517808375932,43.5602163522366],[-73.4519420564406,43.559691809152],[-73.4524122840676,43.5592479818171],[-73.4524461280959,43.5588927872693],[-73.4519412048377,43.558575319625],[-73.4513149757784,43.5573738291864],[-73.4518033314079,43.5571283337807],[-73.4515709111927,43.5562923300104],[-73.4520469284618,43.5537146658884],[-73.4532912559287,43.5534974027852],[-73.4540864616862,43.5529904340521],[-73.4549093822668,43.5520336404168],[-73.4553978663554,43.5509012506092],[-73.4582141737044,43.5498993101089],[-73.4604889496506,43.5485568673844],[-73.4614984601972,43.5484714110309],[-73.4622094659648,43.5480758006605],[-73.4626639182771,43.5476677327989],[-73.4632856988791,43.5478606697596],[-73.4657106443947,43.5479427529932],[-73.4660345355637,43.5477400094365],[-73.4660069033855,43.5464790959772],[-73.4686797084611,43.5456910649816],[-73.4701508641305,43.5446933177638],[-73.4721300979415,43.543823893552],[-73.4724921468488,43.5438242282388],[-73.4727421875183,43.5441246961878],[-73.4728914300263,43.5438205577528],[-73.4735245797065,43.543684948863],[-73.4743411851307,43.5425928715005],[-73.4751023618069,43.5408742789443],[-73.4765050559703,43.5392677738843],[-73.4789955928747,43.5380493872378],[-73.4787154460668,43.5378385712649],[-73.4777965539728,43.5380199267573],[-73.4776734236934,43.5375635915837],[-73.4788844775622,43.536836886419],[-73.4816940753943,43.5363384935164],[-73.4836281661673,43.5354007400462],[-73.4852062096775,43.5341295959604],[-73.4852723041228,43.5338063313458],[-73.4846835590654,43.5337490102544],[-73.4841179977288,43.5337235066267],[-73.4828784618756,43.5346659829267],[-73.4822848820853,43.535202841826],[-73.4808622048985,43.5357962160877],[-73.4801011476982,43.5358851458228],[-73.4802049588091,43.5353237825264],[-73.4812396653028,43.5349638674725],[-73.4818594453566,43.5346164436825],[-73.481896158604,43.5343243046519],[-73.4818546770991,43.5340041156218],[-73.4813796515701,43.5336376521708],[-73.4801357211585,43.5336436358715],[-73.4789388418066,43.5340554072242],[-73.4772189803642,43.5339469803243],[-73.4749813228055,43.5344663981814],[-73.4750581503219,43.5347330372302],[-73.475798843613,43.5350535467059],[-73.4758833696914,43.5353833156616],[-73.4756885412759,43.5356868512909],[-73.4752441968071,43.5357619621138],[-73.4744282246952,43.5355124758445],[-73.4739351367408,43.5349431535604],[-73.4720809582988,43.5351299855357],[-73.4720988922652,43.5354003414918],[-73.4725066717086,43.5358244702777],[-73.4732950179306,43.5365868230577],[-73.4727374551933,43.5367954709451],[-73.4712657892808,43.5364741762382],[-73.4711775163294,43.5369682100835],[-73.4720725024571,43.5381641833402],[-73.4716689657567,43.538951132762],[-73.4618312554672,43.5431365893545],[-73.4608145862461,43.5438117067822],[-73.4580401116433,43.5444901367845],[-73.4550304248615,43.5465924357701],[-73.454662229681,43.5471051834998],[-73.454029932502,43.547083131177],[-73.4528435122349,43.5479764765653],[-73.4508948714493,43.5485713619617],[-73.4491726869635,43.5493853790423],[-73.446894331231,43.5494084807171],[-73.4460479673163,43.5497076154201],[-73.4457373065349,43.550657803788],[-73.4452514437303,43.5511689211813],[-73.4441853644736,43.55167664614],[-73.4438737389016,43.5526628310736],[-73.4431895047261,43.5534548613931],[-73.4399169026202,43.5550624694635],[-73.4377207876518,43.5551585411075],[-73.4375108082508,43.5556193705103],[-73.4369489722277,43.5556522096162],[-73.4360123464916,43.556175133005],[-73.4355396287346,43.5571906049629],[-73.4338123121737,43.5580358318411],[-73.4331437284471,43.558963074076],[-73.4322103240697,43.5596570831307],[-73.4317232081152,43.5606273217405],[-73.429926030473,43.561534558798],[-73.4283767608997,43.5641874194613],[-73.4265551400986,43.5661477171431],[-73.426771918848,43.5675733072298],[-73.4285639203976,43.5708078169271],[-73.4274966562631,43.5726524380777],[-73.4266459804351,43.573577135176],[-73.4263426876356,43.5750901079956],[-73.4246895737138,43.5764494339633],[-73.4239298918342,43.5781857087416],[-73.4238632000092,43.5790221460206],[-73.424197433482,43.5793553915645],[-73.4263607240099,43.5805556796296],[-73.4268750723921,43.5809589253408],[-73.4271574604966,43.5812329242076],[-73.4272673585918,43.5815315625374],[-73.4271411929051,43.5818584664865],[-73.4268879003343,43.582102586989],[-73.4265414147394,43.5822688926969],[-73.4251717624088,43.5822185245055],[-73.4236320805546,43.5820982681063],[-73.4227004323835,43.5819053444621],[-73.4218107211632,43.5816184517725],[-73.4210710519515,43.5812480883423],[-73.4204808372503,43.5808167572469],[-73.4198825808306,43.5801602167807],[-73.418548885366,43.5783815311132],[-73.4170983586087,43.5771954654815],[-73.4120516449021,43.57474398084],[-73.4098752254963,43.5735612453969],[-73.4069986340053,43.5714008042759],[-73.4062908406132,43.5710037765391],[-73.4043944287764,43.5704235940962],[-73.4041870697611,43.5702451256634],[-73.4039995329708,43.5701074505278],[-73.4034357458069,43.569856476646],[-73.403044547467,43.569517871387],[-73.4027522743011,43.5694192491175],[-73.4027834934522,43.5689109681099],[-73.4038270285885,43.5686959415263],[-73.4036974798464,43.5670059123488],[-73.4027555360839,43.5643996514695],[-73.4011331670027,43.5617748657731],[-73.4001477447804,43.560176404476],[-73.4010922622162,43.5584608755128],[-73.4009408116492,43.5577204415527],[-73.4005954669146,43.5577291173173],[-73.39991126957,43.5589350657331],[-73.3989226861763,43.559916153935],[-73.3977572245031,43.560854238229],[-73.3975690427224,43.5617069673221],[-73.3975676943512,43.5628684449072],[-73.3981648593178,43.5645155124156],[-73.3990746011723,43.5659328531843],[-73.399986525933,43.566800982134],[-73.4005828339068,43.5678987892815],[-73.4007671574233,43.5689773262936],[-73.3998290045513,43.5685725352241],[-73.3982463589719,43.567956122814],[-73.397236699305,43.567739388809],[-73.3962604731363,43.5678382494484],[-73.3959256395888,43.5682072126601],[-73.3957823717757,43.5685608546318],[-73.3956941850626,43.5692889281891],[-73.3955985926383,43.5695081813209],[-73.3952833441607,43.5696343134725],[-73.3943987515408,43.5695453632311],[-73.3932390768147,43.5696146105481],[-73.3919587179217,43.5700603101829],[-73.391596240518,43.5703613424487],[-73.3915227556329,43.5711166308874],[-73.3919553968501,43.572689383748],[-73.3914871257538,43.5735336597152],[-73.3905660282957,43.5744075767688],[-73.3895963580319,43.57480810098],[-73.3867749222011,43.5747548252471],[-73.3853737084613,43.5749376342058],[-73.3845048381556,43.5752720093694],[-73.3839105262384,43.5760199336661],[-73.3829783857905,43.5792121185993],[-73.3835915767018,43.5805398483068],[-73.3852726839245,43.5822878320839],[-73.3855875910423,43.5831926606168],[-73.3853445195028,43.583540377702],[-73.3838606059597,43.584550351303],[-73.3824675444311,43.5863584288884],[-73.3826610828659,43.5867348245494],[-73.3831140817041,43.5870203492132],[-73.385108148497,43.5875212282653],[-73.3862975915951,43.5881772909028],[-73.3869461114498,43.5887671870639],[-73.3873284029937,43.5894118504131],[-73.3874739103068,43.5901972334337],[-73.3871849195849,43.5908144208155],[-73.3864463418263,43.5913352256722],[-73.3852179837102,43.5915249733179],[-73.3833363356851,43.5913318150784],[-73.3824533016423,43.5916074492509],[-73.3818084873381,43.5925572312023],[-73.3818603327064,43.5931657217716],[-73.3829130126923,43.595521602702],[-73.3841375862062,43.596866974586],[-73.3838764414615,43.5973089718212],[-73.3820538343102,43.5985482316026],[-73.3814020104519,43.5986290448642],[-73.3803724899323,43.597894162776],[-73.3797396995781,43.5978716925185],[-73.3774480074568,43.5985820101188],[-73.3772214640203,43.5988579135889],[-73.3783145717872,43.6000214049981],[-73.3770845742457,43.6008413076237],[-73.3745448563761,43.6030516793455],[-73.3732925330048,43.604006279698],[-73.3726714189528,43.6052444667999],[-73.3727058037669,43.6059517533298],[-73.3734130087625,43.6072403530572],[-73.3745641108659,43.6081796099141],[-73.37681004101,43.6089858390862],[-73.3768000050317,43.6093593529538],[-73.3750430180152,43.6098386105718],[-73.3747400054901,43.6106806588648],[-73.3749713827612,43.6110621063773],[-73.3764029640491,43.6120008274588],[-73.376510194148,43.6125065613064],[-73.3749792933256,43.6146547252063],[-73.3745622567432,43.6150989864284],[-73.3726153218582,43.6167279885688],[-73.3715469779487,43.6180003180924],[-73.3699013137555,43.619394962542],[-73.3696695529038,43.619859854612],[-73.3700828938172,43.6202439049949],[-73.371647898281,43.6210945490186],[-73.3720792270596,43.6216454179033],[-73.372364623622,43.6225813700191],[-73.3722076466194,43.6239792207111],[-73.3717867212301,43.6247655584044],[-73.3711447456021,43.6250445352279],[-73.3687330852713,43.6250776843669],[-73.3679539126449,43.6248144610503],[-73.3674624434547,43.6242537136545],[-73.3665159667932,43.6234748774084],[-73.3659200406034,43.6234258455672],[-73.3624224033323,43.6242581771237],[-73.3596809822404,43.6245115057741],[-73.3589860536215,43.6247986589272],[-73.3580309216923,43.6255097497087],[-73.3561172666936,43.6258874233674],[-73.3538245738491,43.6260165072369],[-73.3533879836379,43.6256635766771],[-73.3531414383132,43.6249892458725],[-73.3517995394334,43.6231511518076],[-73.3506740240442,43.621986943087],[-73.3499260328397,43.6216925328114],[-73.3492111059259,43.6216056819241],[-73.3484757710855,43.6216986066136],[-73.3478497037229,43.6219596754825],[-73.3469525077397,43.6239185324351],[-73.3459053712574,43.6252404476874],[-73.3446209295214,43.6261177333814],[-73.3433591037711,43.6264235943281],[-73.3421593228608,43.6260775679403],[-73.3418712124879,43.6249749322508],[-73.3414092781075,43.6247296331026],[-73.3388655627349,43.6249448126394],[-73.3376846087163,43.6253238157291],[-73.3376541279804,43.6262057403995],[-73.3341225766124,43.6269556782803],[-73.3342139694128,43.6272091145569],[-73.334565037314,43.627344783159],[-73.3346945016145,43.6275942721619],[-73.3344905112814,43.6278839230896],[-73.3336736282778,43.6282051601342],[-73.3316944789084,43.6273839710952],[-73.331415390316,43.6262139121063],[-73.3306537285495,43.625883161598],[-73.3295250933114,43.6257406262424],[-73.327634207012,43.625821031027],[-73.32558600774,43.6264618354529],[-73.3243574304349,43.6275197869064],[-73.3239759330017,43.6276717614125],[-73.3205965939721,43.6272575255844],[-73.3197624525352,43.6273893310109],[-73.3184608736386,43.6283381007318],[-73.3179435644092,43.6284700500897],[-73.3176696528077,43.6282634356344],[-73.3177247878066,43.6273413622519],[-73.317416574036,43.6270036883122],[-73.3158714034753,43.6266027824958],[-73.3146699669699,43.626071866525],[-73.3134470517461,43.6257837219614],[-73.3120829123765,43.624534579935],[-73.3108252458259,43.6241333474706],[-73.3099378432758,43.6242868040547],[-73.3093190702334,43.6256912464111],[-73.3069545328274,43.628019745574],[-73.3053501992221,43.6278789299495],[-73.3045318025572,43.6274211120563],[-73.3040407861179,43.6268646012573],[-73.3030810530178,43.6263371475783],[-73.3022722279023,43.6251546527501],[-73.3019335783115,43.6235064381275],[-73.3021920487716,43.6227719678958],[-73.3031884528982,43.6209725006661],[-73.3031914146437,43.6202882591125],[-73.3028465819488,43.6197969380814],[-73.3009274993293,43.6184899024533],[-73.3004588132113,43.6177491295975],[-73.3011129008241,43.6165253334442],[-73.3016318225295,43.6142956052684],[-73.301540600409,43.6140691561619],[-73.3006843298734,43.6138088295916],[-73.3025174392288,43.611224963577],[-73.3024063661371,43.6105750424083],[-73.3023390427965,43.6099392766196],[-73.3021434912372,43.6095672181157],[-73.3017255653227,43.6095294982978],[-73.3013402060321,43.6098208987571],[-73.3009558950754,43.6106255286613],[-73.3002840414812,43.6108316339704],[-73.299347438203,43.6103179977076],[-73.2984284526842,43.6101692685301],[-73.2981301572126,43.609926229049],[-73.2979036074879,43.6091710411187],[-73.2969730022609,43.6086934894908],[-73.2965666340707,43.6079716358849],[-73.2961399055647,43.6075601074485],[-73.2956320403239,43.6071698773701],[-73.2953370731104,43.6068098307121],[-73.2951901796969,43.6063619534608],[-73.2949125149341,43.6060201710576],[-73.2942354573994,43.6057534649389],[-73.2939798687348,43.6054255153547],[-73.2937556160022,43.6044542623041],[-73.2931833379622,43.6038784820835],[-73.292209164444,43.6031931541821],[-73.2927542486836,43.6019902841612],[-73.2923606554352,43.6004087430041],[-73.2909885039915,43.5995328822405],[-73.2909927179885,43.599082755223],[-73.2920006996025,43.5983775132875],[-73.2929515169234,43.5970636521895],[-73.2924534783535,43.5958362010823],[-73.2929244659553,43.5934437203035],[-73.2957692579835,43.5889347327261],[-73.296645122572,43.5880744145721],[-73.2971696380867,43.5874834731524],[-73.29694102583,43.5870793992395],[-73.2955552864694,43.5867211076037],[-73.2946009315829,43.5859730663695],[-73.2924252910165,43.5853238347619],[-73.2923575957733,43.5847330739118],[-73.293059604015,43.5835865652639],[-73.2945384851959,43.5824786539651],[-73.2974520360727,43.5796003343588],[-73.2973025393414,43.5792739706428],[-73.2955984577053,43.5786543293334],[-73.2957664318836,43.577445818524],[-73.2954322199704,43.5769726375973],[-73.2949980992279,43.5768311076219],[-73.2945278482446,43.577202255081],[-73.2942264706533,43.5786113599294],[-73.2933792695089,43.578706764082],[-73.2914045272743,43.5786277514178],[-73.2906413033376,43.5778059998976],[-73.290216208867,43.5776465787895],[-73.2897052363536,43.5778415230678],[-73.2891712840369,43.578328745317],[-73.2874444929905,43.5788701357689],[-73.2859861481953,43.5789518279537],[-73.2851681656538,43.5793537392904],[-73.2846873891103,43.5792744971066],[-73.2841170316685,43.5788877786038],[-73.2835475024733,43.5781994412984],[-73.2825846360495,43.5783605574964],[-73.2821330304983,43.5783447698487],[-73.2812163949722,43.5776962245401],[-73.2810247609659,43.5759691111987],[-73.2811642064475,43.5745215909906],[-73.2810708175905,43.5738313938492],[-73.2805276072366,43.573418053665],[-73.2798618864407,43.5741283468357],[-73.2794122455051,43.574099071899],[-73.2791286842008,43.5740542873751],[-73.2788597106384,43.5740952581251],[-73.2782075005045,43.5747922395104],[-73.2777191322986,43.5745462827194],[-73.2765319295989,43.5746229337471],[-73.2764046149669,43.5743373945392],[-73.2765889016525,43.5736558811234],[-73.2760579856415,43.5733282414648],[-73.2752058877804,43.5730812913919],[-73.2733995886448,43.5725588180237],[-73.2728245258275,43.5727752287971],[-73.2722214409632,43.5725635306928],[-73.271854742376,43.5727470700256],[-73.2714604376618,43.5727861288792],[-73.2715389495193,43.5725847295638],[-73.2718985469242,43.5722975399389],[-73.2718247673916,43.5719812910088],[-73.2715038334765,43.5719989495298],[-73.2710917582894,43.5723078530552],[-73.2706098947845,43.5721880181276],[-73.2703580395182,43.5716034610714],[-73.2699576747691,43.5715028636552],[-73.2698202298357,43.5716268379955],[-73.2699411978701,43.5720788599347],[-73.2696481189154,43.5722049808453],[-73.2689279763831,43.5721085432769],[-73.2681594874204,43.5722409674597],[-73.2675346345802,43.5720064055218],[-73.2676448767301,43.5718054897759],[-73.268225109352,43.5717602564193],[-73.267715790637,43.5714914296498],[-73.2673912463928,43.5711758800516],[-73.2672259456008,43.5708672447279],[-73.2673891802677,43.5706806380604],[-73.2679545808058,43.570990832471],[-73.2684103653197,43.5703449578221],[-73.2690323696022,43.5706244910214],[-73.269581781925,43.5707633631912],[-73.2695429612299,43.5705241737895],[-73.2688207606573,43.5699054825151],[-73.2682378330896,43.5696940685131],[-73.2678194400511,43.5701154131212],[-73.2675418381704,43.5700526827743],[-73.2674514514832,43.5697766960681],[-73.2679798279569,43.5694875743045],[-73.2678125948887,43.5692464396016],[-73.2672504363704,43.5691208715916],[-73.266780854632,43.5691947887211],[-73.2667742762692,43.5699915287426],[-73.2665041510666,43.5702350393427],[-73.2662106903279,43.5702125821897],[-73.2661134782411,43.5697158971268],[-73.2654369543057,43.5695300607694],[-73.2648720909601,43.5694179460854],[-73.2641830804422,43.568939288789],[-73.2647128924238,43.5684116024196],[-73.2639305819822,43.5672472350159],[-73.2635009707824,43.5674928187181],[-73.2631846838523,43.5677806398294],[-73.2629312116185,43.5676597395089],[-73.2622089670284,43.5672615994764],[-73.262282746561,43.5668485442049],[-73.2617906620248,43.5663593583893],[-73.2619396404281,43.5655647834054],[-73.2613675923568,43.5655425803176],[-73.261095924747,43.5657320317371],[-73.2608452085444,43.5665385640853],[-73.2605041918929,43.5665288748417],[-73.2600619216341,43.5657613211554],[-73.2585939379159,43.5649241249259],[-73.2581083778436,43.5642099263782],[-73.2587974826846,43.5632029879739],[-73.2587552223404,43.5630042599447],[-73.2582563159979,43.5628616035696],[-73.2573619515044,43.5630955814325],[-73.2570125895039,43.5630002182921],[-73.256907684245,43.5627735227426],[-73.2571673548543,43.5626244156706],[-73.2575056558987,43.5625395332138],[-73.2570004514677,43.5623202423483],[-73.2564217109476,43.5624239665982],[-73.2560477216336,43.5623777458786],[-73.2559270195004,43.5618401759821],[-73.2554659942152,43.5598207818561],[-73.2536866121987,43.5584925621317],[-73.2523641546582,43.556644573917],[-73.252687640687,43.5564019119727],[-73.2533614023029,43.5565697742499],[-73.2544655243136,43.5564380714311],[-73.2541814833089,43.5560915884002],[-73.2545396173582,43.5559349866295],[-73.2542758001256,43.5556653451233],[-73.2528954713179,43.5556892815945],[-73.2512203962823,43.5554700907909],[-73.2488165620742,43.5537495802283],[-73.2490225188194,43.5533970811191],[-73.2485801964583,43.5527465321256],[-73.2495450813965,43.5524776830013],[-73.2496010087095,43.5520688636785],[-73.2489587285527,43.551563818524],[-73.248945292451,43.5512259678918],[-73.2503756484369,43.5507526499844],[-73.2504448241037,43.550420565894],[-73.2501750932615,43.5497681598002],[-73.2497751713818,43.5491767870939],[-73.2493463614793,43.5486750102632],[-73.2500526753462,43.5482221231956],[-73.2500889430291,43.5475563919559],[-73.2491875285573,43.5469978596019],[-73.2498716935625,43.5464005716925],[-73.2492091644809,43.5456881277722],[-73.2499753492648,43.5443672832003],[-73.2509220774545,43.543999104467],[-73.2502658473597,43.543390306483],[-73.2495429631691,43.5429200441059],[-73.247698694043,43.5429998472264],[-73.2470928989615,43.5419866307526],[-73.2466865155,43.5417012813088],[-73.2466669322268,43.5404809551404],[-73.2469649384409,43.5403144500406],[-73.24646097638,43.5397394791256],[-73.2458733263689,43.539730467364],[-73.2446723524958,43.5387036048133],[-73.2438008213802,43.5358675066729],[-73.2428034883956,43.5350238294768],[-73.2420901218554,43.5350038619029],[-73.2417551463742,43.5348456462744],[-73.241792365373,43.5345761018834],[-73.2421672997148,43.5343702740176],[-73.2427859631627,43.5343482684846],[-73.2427206619298,43.533933085938],[-73.2421728387268,43.5330602932477],[-73.2413036064,43.5326552595737],[-73.2415812136706,43.5322048324767],[-73.2432502628072,43.5308483858748],[-73.2432103632356,43.5303840728742],[-73.2421578871672,43.5294450004185],[-73.2428352618072,43.528383946835],[-73.2433445275216,43.5282116924319],[-73.244207407861,43.5275001303933],[-73.2458935034284,43.5270172842703],[-73.2468603754401,43.5261047090408],[-73.247047697533,43.5244688703339],[-73.2479701963629,43.523537597021],[-73.2474091050432,43.5222684533956],[-73.2468509054004,43.5217286666994],[-73.2469226655202,43.5213065831436],[-73.2476891000358,43.5208231148733],[-73.2478026524776,43.5188755084352],[-73.247011534953,43.5188498786586],[-73.2469181389095,43.5184162592305],[-73.247171926452,43.517128087741],[-73.2483263532203,43.5165155020065],[-73.2482632321985,43.516050833737],[-73.2480072204274,43.5157587865354],[-73.2467184515067,43.5155094357573],[-73.2470160723435,43.5153519279296],[-73.2471467170302,43.5144175230378],[-73.2473181191797,43.5000678896358],[-73.2476267246157,43.4917754976052],[-73.2503150211384,43.4195146354246],[-73.2512492016602,43.397941695397],[-73.2531877795181,43.3531128573425],[-73.2531888116823,43.3530768569769],[-73.253193192766,43.3529778777434],[-73.256772160808,43.2564352862476],[-73.2573806202926,43.2500830232245],[-73.2583916301274,43.2370013825971],[-73.2586062062078,43.2306564732641],[-73.2587226952422,43.2272140203236],[-73.2601064654958,43.1958497573141],[-73.2621386711625,43.1642700503518],[-73.26314672554,43.1449434330204],[-73.2639285850273,43.125082039939],[-73.2649568901263,43.1063138821347],[-73.266471152353,43.0841987612402],[-73.2664737026701,43.0841627808621],[-73.2701324168548,43.0306578267374],[-73.270156527637,43.0300998938222],[-73.2711727297342,43.0070944360363],[-73.2714816603604,43.0000978399805],[-73.2730936979175,42.9697667354475],[-73.2731785096601,42.9637752519259],[-73.274503367499,42.9436737305549],[-73.2745375151579,42.9423685291368],[-73.2744014518334,42.9405474802932],[-73.2751109286684,42.9247319664134],[-73.2757128259599,42.9060557023637],[-73.2769306028203,42.8751012844454],[-73.2778611065377,42.8469654681528],[-73.2784446359766,42.8375459157943],[-73.2786971730642,42.8334613979338],[-73.2842647838714,42.8349047090379],[-73.2852936081967,42.8340646326016],[-73.2869798888171,42.8201859722234],[-73.2856398081274,42.8165548663827],[-73.2835479076135,42.8139930959141],[-73.2865600162533,42.8092519655895],[-73.2862636359899,42.8080813656976],[-73.2909368975751,42.8019511460021],[-73.2901003243987,42.7984131432077],[-73.2849682563671,42.7791193910964],[-73.2812538385499,42.7651552051529],[-73.2809494848401,42.7640069777061],[-73.2793353542083,42.7576070599967],[-73.2770264934853,42.7492245352097],[-73.2761437693613,42.7460234456774],[-73.2647849660557,42.7458564758737],[-73.2730204313229,42.7238102717283],[-73.2735884405687,42.7222924588751],[-73.2782519105172,42.7097959245621],[-73.3098202556017,42.6250897589709],[-73.3116922817718,42.6200023271968],[-73.3117859302418,42.6197515577951],[-73.312528595335,42.6177317933609],[-73.3134636571041,42.6151880423542],[-73.3135335011175,42.6149999577978],[-73.3199974113894,42.5974218865625],[-73.3304266775648,42.5693423763103],[-73.33395057349,42.5595282087186],[-73.3355033186451,42.5553587359684],[-73.3518277483299,42.5114587623205],[-73.3523540721532,42.5100434565804],[-73.3573061600227,42.4967458302111],[-73.3586444719296,42.4930367224309],[-73.363662815043,42.4794921295489],[-73.3675393625992,42.468988413909],[-73.3720333959121,42.4569263531337],[-73.3754805676272,42.4474563763088],[-73.3797917668303,42.4357606070691],[-73.3820374095135,42.4296370028665],[-73.3846500364482,42.4224288419088],[-73.3894112457946,42.409541256232],[-73.3943276849204,42.3962638746488],[-73.3981601764002,42.3859384771716],[-73.4021905263129,42.3750933637947],[-73.4037243197105,42.3709135826038],[-73.4061787308657,42.3644771478787],[-73.4073228773139,42.3613995942178],[-73.4095627653894,42.3552843017662],[-73.4122187001039,42.3482381287072],[-73.4132745753973,42.3453574106503],[-73.4143864193261,42.3423288614934],[-73.4184291111925,42.331123041142],[-73.4215399240208,42.322637476796],[-73.4251293026386,42.3128390463476],[-73.4285300575046,42.3035962616973],[-73.4311765320609,42.2961712174673],[-73.4368949601229,42.2807728624615],[-73.440664507549,42.2707511897638],[-73.4430967949955,42.2641514534602],[-73.4437662779357,42.2621657508466],[-73.4471840424017,42.2528325084806],[-73.447623581782,42.2516857122357],[-73.4523274453756,42.2387897495569],[-73.4574311068813,42.2247911816361],[-73.4626008691206,42.2108112405299],[-73.4633832316645,42.208462149506],[-73.4676985442533,42.1968030410302],[-73.4701130091245,42.190202320294],[-73.4728563499161,42.1828404025743],[-73.4761012776231,42.1740395958446],[-73.480032742786,42.1632934560144],[-73.4821647943998,42.1574767236143],[-73.4831329276461,42.1549227872544],[-73.4885940431765,42.1399636376542],[-73.4896306972177,42.1371133359853],[-73.4905491518322,42.1344911247657],[-73.4940516552772,42.1251031989285],[-73.494781594836,42.1230818860124],[-73.4957508994855,42.1204332735823],[-73.4969322289998,42.1172394129696],[-73.6843082226498,42.1279300999737],[-73.7085058701669,42.0098884365639],[-73.9366551162605,42.0843315777128],[-73.8917166282711,42.1971131784653],[-73.8536917543713,42.2355155323856],[-73.7914692320561,42.2892395930638],[-73.7741851986286,42.5367993442191],[-73.8640621746074,42.4985807846206],[-74.0472729327116,42.483286816069],[-74.0576433529477,42.5215147253652],[-74.2270268837708,42.5036779435328],[-74.2581381444793,42.4322799140814],[-74.410237641875,42.4067608832561],[-74.5381394917535,42.4195216965423],[-74.6349300809237,42.483286816069],[-74.5934483999791,42.5087746862485],[-74.6349300809237,42.5546266725828],[-74.7213502498577,42.5240624217891],[-74.9322154625237,42.534252167915],[-74.9045610079618,42.6080781094821],[-74.7628319308022,42.6538571532826],[-74.780115965128,42.7783072688666],[-74.7386342832851,43.0138219567752],[-74.7559183176109,43.0618271916223],[-74.7662887378471,43.0971754364138],[-74.7006094093854,43.1980580442482],[-74.7109798296215,43.293742285246],[-74.8596225199724,43.3364997313422],[-74.7628319308022,43.4896758270865],[-74.8070667351919,43.7927185269841],[-74.6867821821044,43.8522275103071],[-74.7351774771386,43.9170051859582],[-74.5796211726981,43.9841997517369],[-74.3652991538856,43.8023505986944],[-74.2892494051877,43.8621978914698],[-74.3514719266046,43.9219851661836],[-74.251224531288,43.9916611251056],[-74.1371499077921,43.8547202620538],[-73.9193710819347,44.0115535350752],[-73.9366551162605,44.0935392231407],[-73.5252951120628,44.3140862630833],[-73.5322087252542,44.3956522874024],[-73.4088707464136,44.4295379180546],[-73.4091508303394,44.4291014921226],[-73.4101049651387,44.4266345220156],[-73.4104284439809,44.4252436002571],[-73.4130026724287,44.420435912564],[-73.4131567469747,44.4194702579897],[-73.4144869174502,44.4178052111965],[-73.4153740936248,44.4146620557405],[-73.4152591748454,44.4141788150938],[-73.4146261814721,44.4135488450289],[-73.4146896348705,44.4131175929264],[-73.4159023209782,44.4115229190382],[-73.4164753032973,44.4112922881547],[-73.4169617446169,44.4108939047348],[-73.4167012673205,44.4096659208622],[-73.417182821805,44.4081376222603],[-73.416981683623,44.406892455526],[-73.4146349607073,44.404645241435],[-73.4142985856509,44.404050893223],[-73.4134293182898,44.4003747017968],[-73.4125299735364,44.3988902589394],[-73.4122094088289,44.3973643367063],[-73.4114123076262,44.39642597243],[-73.4088252287782,44.3952241191373],[-73.406406199567,44.3950058526465],[-73.405608661783,44.3943195195958],[-73.4057395526081,44.3905941968439],[-73.4050376090451,44.3896841232109],[-73.4045268871617,44.3904602359512],[-73.4044303515063,44.391530218569],[-73.4040165847915,44.391740506857],[-73.4026769829039,44.3918298224699],[-73.4017842389711,44.3926275902308],[-73.4016555364421,44.3937241280409],[-73.4013039205685,44.3941873535974],[-73.3988166759896,44.395899065776],[-73.3982739633023,44.3958284404971],[-73.3971909741587,44.3948499592489],[-73.3951505893314,44.3939300474569],[-73.3939706773585,44.3938594538217],[-73.3912280974399,44.3951442814966],[-73.3891540141113,44.3970596590421],[-73.3878130449878,44.3991383901159],[-73.3882268117026,44.3995043373625],[-73.3891835480229,44.3997609027165],[-73.3902044240545,44.3997392783665],[-73.3906504870004,44.4000156441724],[-73.3916057518803,44.4007853262823],[-73.3926565642687,44.4023665918674],[-73.3950797149504,44.4047413670654],[-73.3982688060742,44.4053442860686],[-73.3987141171303,44.405593601517],[-73.3987145932373,44.4064398668195],[-73.3974684583601,44.4091322246673],[-73.397722839689,44.4103961765622],[-73.3967659416719,44.4110579601675],[-73.3939898276437,44.4115321305737],[-73.39076796508,44.4126301486845],[-73.3903843071986,44.4134529969586],[-73.3903829543357,44.4145333063455],[-73.3910199784498,44.4156946284687],[-73.3906355120846,44.4180929433469],[-73.3920997058106,44.421732654011],[-73.3923214971593,44.4248147061299],[-73.3933404409147,44.4274038166592],[-73.3933705605279,44.4286556180206],[-73.3928276879405,44.4294402223758],[-73.3922858017032,44.4297296883216],[-73.3899237068164,44.4301915754562],[-73.3893813929811,44.4305530426581],[-73.3894119186327,44.4325880858755],[-73.3889642288379,44.4333920177338],[-73.3872398515646,44.4349881766719],[-73.3869814799192,44.4355496802841],[-73.386441380431,44.4367234274518],[-73.3837896561202,44.4393057319029],[-73.3832782865515,44.4401357474057],[-73.3832437094979,44.4432141791361],[-73.3823165744628,44.4448215393222],[-73.3810401663604,44.4454786601503],[-73.3792197052844,44.4456419053932],[-73.3785820460614,44.4460919941727],[-73.3782619817155,44.4466456177649],[-73.3781320314265,44.4485613442594],[-73.3778451167113,44.448881367012],[-73.3768229057832,44.4487498136015],[-73.3764063821388,44.4484738146864],[-73.3752303499896,44.4457292833691],[-73.3758065339045,44.4441530042801],[-73.3750414073359,44.4436469767827],[-73.3756801858597,44.4428728260635],[-73.3757127578736,44.4422070906981],[-73.3750432372042,44.4419364919183],[-73.3763860119414,44.4404701382826],[-73.376386976732,44.4387326326552],[-73.3762811291404,44.4384882458923],[-73.3752472634698,44.4361011478886],[-73.3736929786023,44.434661109189],[-73.3732450830932,44.4339345170708],[-73.3726046669406,44.4314856648247],[-73.3719950171882,44.4287221525543],[-73.3721512279279,44.425015261845],[-73.3715101578018,44.4223683319116],[-73.3715095810834,44.4215400734899],[-73.372147190899,44.4206308821739],[-73.3720180365174,44.4195127054836],[-73.3711872970005,44.4175922890198],[-73.3701323442769,44.416397888817],[-73.3689514342758,44.4156698222923],[-73.3677071849623,44.4153009475607],[-73.3647720897901,44.4148718624266],[-73.3641987858741,44.4144855416274],[-73.3642297831413,44.414161887296],[-73.3663656822395,44.4130671050524],[-73.3715619959836,44.4096302151487],[-73.3748580926275,44.4057429466644],[-73.3747332618373,44.4036165239053],[-73.3749889052992,44.4033410742497]]]]},"properties":{"OBJECTID":2,"STATE":"NY","Zone":"F","Title":"Capital"}},{"type":"Feature","id":3,"geometry":{"type":"Polygon","coordinates":[[[-73.572828453819,41.1717175179495],[-73.6877650296946,41.3463595604768],[-73.9781367972051,41.3229992191434],[-73.9643095699241,41.2138735422971],[-73.8917166282711,41.1358149860846],[-73.9043692265714,40.9981712575803],[-74.0027903603901,41.0421902451648],[-74.013664736399,41.0469409201504],[-74.0193148394987,41.0494663155669],[-74.0257948341058,41.0523812887735],[-74.0358643124336,41.0568077847705],[-74.037300530825,41.0574728653413],[-74.0467203843702,41.0616632817101],[-74.0507702968948,41.0634937899513],[-74.0508146637884,41.0635121708861],[-74.0508619412235,41.063535080332],[-74.0523941472979,41.0642187784049],[-74.0688563902254,41.0715683025133],[-74.0814809628855,41.0770923761335],[-74.0815386140655,41.0771198592167],[-74.0815859121618,41.0771427557956],[-74.0854024271043,41.0788801069518],[-74.0924728573981,41.0820257145882],[-74.0925246264096,41.08204864196],[-74.0966282815444,41.0837788730133],[-74.0982970396269,41.0845035660226],[-74.103448762797,41.086777720138],[-74.1245700361988,41.0961326665419],[-74.127290225609,41.0973108132343],[-74.1273376144352,41.0973291874219],[-74.1295309320497,41.0983411489393],[-74.1351030137722,41.1009053142678],[-74.151635214799,41.1082930722715],[-74.1583151142012,41.1111525155823],[-74.162276840911,41.1128478428209],[-74.1682330745883,41.11543121179],[-74.1843720740321,41.122397065471],[-74.1911841650199,41.1251519459431],[-74.1946996077983,41.1265817947388],[-74.2013849464995,41.1292991540047],[-74.2177701984172,41.1359872895233],[-74.2343024326817,41.1430028578622],[-74.2354937954795,41.1435377277745],[-74.2371149724964,41.1442600938687],[-74.2386421776496,41.1449322718451],[-74.2404526548497,41.1457143924466],[-74.2417539759298,41.1462814499071],[-74.2423467616094,41.1465465771558],[-74.243542030282,41.1470768859355],[-74.2452438176209,41.1477996655848],[-74.2471486260106,41.1486183296055],[-74.2495338147867,41.1497058236428],[-74.2671209451809,41.1578045726678],[-74.281602978727,41.163827511018],[-74.3195229913853,41.1805197190239],[-74.3227578687409,41.1819665374392],[-74.3313810432915,41.1858137470068],[-74.3339578508025,41.1870177195031],[-74.343757107808,41.1915959326243],[-74.3439106604328,41.1916688701569],[-74.346369220008,41.1928178440868],[-74.3660617804426,41.2025393366116],[-74.374606198794,41.2067521977309],[-74.3778198247049,41.2086612581115],[-74.393797342095,41.2170967696731],[-74.410081629663,41.2251262806101],[-74.4211424078899,41.2306456816748],[-74.4392361934943,41.2395403991021],[-74.4613856857568,41.2501357826479],[-74.4769597230404,41.2571346782829],[-74.4995828125106,41.2672745403564],[-74.4996425046629,41.2672748003125],[-74.5185715474118,41.2762822618389],[-74.5257096531858,41.2796808089866],[-74.5367276922665,41.2849186674433],[-74.5422346811651,41.2875484496344],[-74.5422822927735,41.2875711586852],[-74.5445557392131,41.2886566047011],[-74.5453473040987,41.2890335561789],[-74.5532388215117,41.2928026771455],[-74.5610826500612,41.2963593877316],[-74.562418548195,41.2969679935103],[-74.5790336277899,41.3044973693508],[-74.579136365414,41.3045427830675],[-74.5929623548165,41.3108078304004],[-74.5951171589599,41.3117837584673],[-74.5954827651957,41.3119471827372],[-74.5986428596005,41.3133814621126],[-74.6077352915977,41.3174977986291],[-74.6077829472235,41.3175204797111],[-74.6246240564187,41.3252151490875],[-74.6393270791179,41.332076459328],[-74.6452324789299,41.3347610766796],[-74.6743229515589,41.347885606964],[-74.6940775047313,41.3567897736118],[-74.6950439742977,41.3571931756171],[-74.6957148639997,41.3575327360153],[-74.6955197355469,41.3577168786091],[-74.6950467572785,41.3581975401288],[-74.6947046482756,41.3584938889838],[-74.6941227358042,41.3589382270113],[-74.6933367647278,41.3593955320157],[-74.6926378413008,41.3597719942727],[-74.6915888749503,41.3603772125693],[-74.690764291588,41.3609334807431],[-74.6900234267187,41.3616385949361],[-74.6896464271502,41.3625068223029],[-74.6895826279004,41.3630381032394],[-74.6896253400972,41.3637993672539],[-74.6897540543043,41.3643897169293],[-74.6898857823593,41.3648179356877],[-74.6902027070932,41.3655889438911],[-74.6906480657599,41.366382814678],[-74.6910621109525,41.3670054542855],[-74.6916007713396,41.36766896026],[-74.6921837887387,41.3682785350519],[-74.6927325839189,41.3686988553696],[-74.6933221706977,41.3691868386813],[-74.6942282609006,41.369914361791],[-74.6950626161365,41.3704840542042],[-74.6959225419169,41.3710222803551],[-74.6970772247051,41.3716603596575],[-74.6976121085747,41.3720310775154],[-74.698611332513,41.3726777405985],[-74.6997922281411,41.3733158602888],[-74.7008217801017,41.3738770102922],[-74.7017843949972,41.374370420382],[-74.7030586722957,41.375031266765],[-74.7042645141393,41.3757910079074],[-74.7053164997275,41.3765323283709],[-74.7062759929774,41.3772373726149],[-74.7079022302042,41.378606160898],[-74.7085082651359,41.3793057868857],[-74.7090909007511,41.38005939621],[-74.7096651281352,41.3808580196374],[-74.7100413641358,41.3814714860314],[-74.7103102128323,41.3820306352746],[-74.710674017946,41.3828377324656],[-74.7111386463739,41.3839198140939],[-74.7113662031101,41.3845238958573],[-74.7116226128349,41.3852811786117],[-74.7119127336373,41.3862772476123],[-74.712151133039,41.3871380721945],[-74.7122818163533,41.3875077111076],[-74.7122943649195,41.3875437729829],[-74.712312854943,41.387588857207],[-74.7129097288554,41.3890405735401],[-74.7140876393818,41.3907144142972],[-74.7151240409965,41.3917663665798],[-74.7155519921096,41.3922042921658],[-74.7159258664393,41.3925294880087],[-74.7165459609035,41.3930534551391],[-74.7170815041366,41.3934240820595],[-74.7176303891482,41.393736190032],[-74.7182300783807,41.3940574264747],[-74.7187468028069,41.39428838164],[-74.71905622032,41.3943972264472],[-74.7191372384771,41.3944199427471],[-74.7197029318661,41.3945654403621],[-74.7204513416855,41.3947293935036],[-74.721094746533,41.394798507042],[-74.7217012414021,41.3948450094903],[-74.7260666018303,41.3950220960021],[-74.7276807001227,41.3951159920978],[-74.728375347569,41.3951806825101],[-74.7290946097524,41.3953490143489],[-74.7296392699872,41.3955259397775],[-74.7328597464505,41.3966954222284],[-74.7335742026471,41.3969492869447],[-74.7343411887283,41.3972483063634],[-74.7348671217844,41.3975332555209],[-74.7354679060632,41.3978904349941],[-74.7358622988123,41.3981660706791],[-74.7360486830641,41.3982971070918],[-74.736273617618,41.3985093006415],[-74.7365747337995,41.3988342621133],[-74.7385623479938,41.4016446515545],[-74.7399754123088,41.403634020366],[-74.74093550204,41.4049467856813],[-74.7412910696025,41.4056952136034],[-74.7415914374875,41.40650657035],[-74.7418084003915,41.40742132697],[-74.7418592028158,41.4085654059794],[-74.7416326099719,41.4100781743386],[-74.7412702736037,41.4109330844271],[-74.740742429831,41.4118461705704],[-74.7403269167912,41.4123406541113],[-74.739329032241,41.4134418350929],[-74.7387495137799,41.4141746433601],[-74.7375290105326,41.4158517899577],[-74.7372229482271,41.4164546022096],[-74.7368329841724,41.4173679832737],[-74.7353274077562,41.4211657406995],[-74.7349363639265,41.4223313243079],[-74.7347965447458,41.4228714580102],[-74.7346544043184,41.4238889874069],[-74.7347052318955,41.4249069595657],[-74.7348400950708,41.4256774170053],[-74.7351946978426,41.4266735667619],[-74.7355777367848,41.4274851262463],[-74.7361534670504,41.4284637638194],[-74.7372244277524,41.4297137536857],[-74.7376921365034,41.4301291656074],[-74.7381320352098,41.4304859624885],[-74.7386828282431,41.4307979712498],[-74.7395647905958,41.4310701906849],[-74.7408060664857,41.4312801576585],[-74.74149575074,41.431281703368],[-74.7422415015462,41.4311977985613],[-74.7430699252062,41.4310149901282],[-74.7460820886433,41.4300037977954],[-74.7487676974066,41.4288837267444],[-74.749643350891,41.4284667765684],[-74.7502707019461,41.4282339350478],[-74.7511438787754,41.4277764297443],[-74.751578971495,41.427448588105],[-74.7527346100906,41.4263701543943],[-74.7537111210252,41.4255750666256],[-74.7546653744021,41.424924044194],[-74.7550844851945,41.4246592083741],[-74.7562512682895,41.4240716751256],[-74.7571324787523,41.4237402467736],[-74.7577988750812,41.4235479803181],[-74.7582720455891,41.423422863173],[-74.7591374286349,41.4233210791004],[-74.7599270846006,41.4232686741101],[-74.7610952582876,41.4233026165494],[-74.762794451292,41.4235493147039],[-74.7640228067131,41.4237995320996],[-74.7646139305095,41.4239403525504],[-74.7690700917483,41.4255706870668],[-74.7699340141334,41.425991258076],[-74.7705552422716,41.4261951605352],[-74.7711924038279,41.4263360384319],[-74.7717764659677,41.4263687170113],[-74.7723152593054,41.4264058080815],[-74.7731044580286,41.426384837387],[-74.7736511718122,41.4262958314171],[-74.7742282234996,41.4261933708741],[-74.7750405125189,41.4259832736161],[-74.7772969628332,41.4253886299884],[-74.7791356740827,41.4246715449998],[-74.7803518447553,41.4241243953797],[-74.7819353338527,41.423325712756],[-74.7853193620882,41.4222150930485],[-74.7889643796598,41.4215417167723],[-74.7904164757738,41.4216614506702],[-74.7920445123262,41.4220787315046],[-74.7929692479611,41.4223416068821],[-74.7936381964037,41.4226040191046],[-74.7939242720925,41.422726130201],[-74.7944090488339,41.4230467599041],[-74.7948630510903,41.423403363317],[-74.7952863839645,41.4238815132686],[-74.795664414799,41.4243775965547],[-74.7962386942854,41.4251442512064],[-74.796752049131,41.4260233898931],[-74.7972952064843,41.4270647151164],[-74.797868045073,41.4283087596162],[-74.7991664313571,41.4305403876005],[-74.7995426844257,41.4315138557341],[-74.7997988327408,41.43214032353],[-74.7999344235514,41.4325639130341],[-74.8000541680805,41.4330325120631],[-74.8001431066835,41.4337893003228],[-74.8002021286926,41.4355188527445],[-74.8004079156562,41.4364740076367],[-74.8008750773332,41.4375827395595],[-74.8013433825655,41.4383221620071],[-74.8018085068635,41.4388814262338],[-74.803241283809,41.4400818699642],[-74.8044770970437,41.4412414304245],[-74.8052491460298,41.4418822649694],[-74.8057495256094,41.4421803530015],[-74.8066330636071,41.4425736584085],[-74.8077362935906,41.442809688858],[-74.8091322126601,41.4429966491941],[-74.8101947561478,41.443079460653],[-74.8108475376103,41.4430805273018],[-74.8115158006383,41.4430320735514],[-74.8121992344149,41.4429115804225],[-74.8131868377467,41.4426474529905],[-74.8140515524459,41.4423155632413],[-74.8168014823802,41.4411084240373],[-74.817838026827,41.4405831151005],[-74.8187350889613,41.4400350598158],[-74.819838809425,41.4392846483442],[-74.822812286016,41.4368076472633],[-74.8233146957882,41.4362364334703],[-74.8237107692851,41.4357010868236],[-74.8239430143288,41.4353006030033],[-74.8251056364274,41.4330414641399],[-74.8256027003252,41.4322135170887],[-74.8259831557127,41.4317682141382],[-74.8262418211071,41.4315479164419],[-74.8268194728691,41.4312064922622],[-74.8275030656475,41.4309688099122],[-74.8282171804843,41.4307852141666],[-74.8290217314157,41.4306287694616],[-74.8294916015133,41.4305889267848],[-74.8302517666865,41.4305269872554],[-74.8316125517469,41.4304839311519],[-74.8331353111378,41.4305762053569],[-74.8347438578417,41.4307631611975],[-74.8353505449503,41.4308991360907],[-74.8358662012796,41.431093528614],[-74.8364120302227,41.4313375031229],[-74.8369880587289,41.4316220515595],[-74.8371847619284,41.43178446316],[-74.8386768025299,41.4329665359199],[-74.8407151652495,41.4343835349845],[-74.8438837855646,41.4363514833005],[-74.8458644090694,41.4377593055221],[-74.8473555872882,41.439274542198],[-74.8507791746338,41.4413372126055],[-74.8540737567181,41.4429717606859],[-74.8550543163597,41.4434413795012],[-74.8558434809469,41.4436855641578],[-74.857315102842,41.4440521845267],[-74.8585595372085,41.4443059160399],[-74.8595884289074,41.4444197569974],[-74.8624950456884,41.4442971237604],[-74.8632961533773,41.4442169999586],[-74.8643896716744,41.4440201134835],[-74.8653466496415,41.4438185551621],[-74.8671790205816,41.4432396746038],[-74.8684911142586,41.4427907874101],[-74.8697524513255,41.442274271852],[-74.8714234929254,41.4417041506207],[-74.8720915906635,41.4415202317008],[-74.8746159033243,41.4411221413942],[-74.875323932075,41.4407851184964],[-74.8780036981957,41.4400493370123],[-74.8803832868743,41.439578908435],[-74.8858265088625,41.4388592588377],[-74.8878913341537,41.4384334038914],[-74.8889745514694,41.438254288774],[-74.8895806681478,41.4381737965471],[-74.8898211884719,41.4381740234964],[-74.8906458023768,41.4382873937022],[-74.8927305738607,41.4386631420057],[-74.8941603881624,41.4390337572605],[-74.8948246788403,41.4392955767452],[-74.8953565686251,41.4395482655378],[-74.8956820848464,41.4397332116307],[-74.8960851355582,41.4400893691743],[-74.8962223325565,41.4403777325408],[-74.8963145410272,41.4407291093502],[-74.896375701925,41.4410804573208],[-74.8963742978582,41.4419586919889],[-74.8963198617486,41.4423144413614],[-74.8961639519446,41.4429628463419],[-74.8957523339999,41.4442010166665],[-74.8955506685068,41.4446827392154],[-74.8953332079361,41.4452139897538],[-74.8948526263271,41.4460512585944],[-74.8941395113152,41.4470099167825],[-74.8933649569278,41.447779355738],[-74.892792138102,41.4482607345796],[-74.891723866956,41.4490298920635],[-74.8901913626409,41.4499697469342],[-74.8898429645327,41.4502396444964],[-74.8894148256717,41.4507571725975],[-74.8891142287163,41.4512928353862],[-74.8891208070792,41.4520404659787],[-74.8892852077593,41.4532656457781],[-74.8896335322057,41.454148713912],[-74.8900840112695,41.4550318764001],[-74.8907918118482,41.4559828344961],[-74.8913634502876,41.4564787815246],[-74.8918885209611,41.4568575853819],[-74.8927076659226,41.4572546722892],[-74.8936349644511,41.4576473484019],[-74.8952231697037,41.4582072505816],[-74.8966239387774,41.4585327697356],[-74.901425248918,41.459361108094],[-74.9026874483676,41.4595558273763],[-74.9041466699185,41.459872296464],[-74.9056348423743,41.460359912399],[-74.9063568587923,41.4607343049576],[-74.9067649355782,41.461108442904],[-74.9070157326291,41.4615680256855],[-74.9074190851748,41.4626357357108],[-74.9077244252348,41.463428638082],[-74.9079015128217,41.4638926641938],[-74.9080784980007,41.4646944713061],[-74.9081474428004,41.4651584122923],[-74.9081073932101,41.4659555448687],[-74.9079586375889,41.4668786975179],[-74.908088106381,41.4679416849172],[-74.9082913097898,41.4684732868493],[-74.9088920841872,41.4713066147031],[-74.9091024983728,41.4720453930032],[-74.9095133814956,41.472883408607],[-74.9097217969297,41.4731853206339],[-74.9102620356567,41.4738658018194],[-74.9111786711828,41.4746411453314],[-74.9126298797613,41.4756285577718],[-74.912811970066,41.4757638059842],[-74.9133225006083,41.4760299058904],[-74.9141761723178,41.4763548038704],[-74.9152125604577,41.4766347908999],[-74.9173820619374,41.4770912188144],[-74.9179699823414,41.4771546840888],[-74.9184572779589,41.4771730384415],[-74.9191920208095,41.4771555321137],[-74.9198044445595,41.4770793895271],[-74.9211647517162,41.4769497026792],[-74.9220934408367,41.4768737590702],[-74.9225496960678,41.4768695572902],[-74.9229594769577,41.4769193681861],[-74.9233894582634,41.4769781984197],[-74.9245280234786,41.4773032053889],[-74.9259436686534,41.4778715781867],[-74.9272858037902,41.4785930153212],[-74.9283509901215,41.4793142680956],[-74.9309537167234,41.4811893816799],[-74.9322524048415,41.482054854621],[-74.9332019061305,41.4825418010157],[-74.9340996267299,41.4827990200809],[-74.936962459624,41.4831248552284],[-74.9382545082938,41.4832291250099],[-74.9399950058349,41.4833246009045],[-74.9401455356287,41.4833427193159],[-74.7766591580832,41.5795020417524],[-74.7006094093854,41.5717441326628],[-74.6591277284408,41.4837560476062],[-74.4482625157747,41.6828517764273],[-74.555423525181,41.7447820714853],[-74.5208554583261,41.8040759388223],[-74.5934483999791,41.8530164809054],[-74.5485099119897,41.8993466892354],[-74.6729549557217,41.9790588639227],[-74.5588803322259,42.0407030753926],[-74.4586329360109,41.991906334481],[-74.3203606658962,42.0868970268273],[-74.4932010037641,42.1868686067473],[-74.4897441976177,42.2917967400143],[-74.396410414594,42.271336659698],[-74.3722127670769,42.2201573930858],[-74.2304836908157,42.1919911004964],[-74.1302362946007,42.2022348413124],[-74.1406067148369,42.2790099684728],[-74.2339404969622,42.3505824609128],[-74.2581381444793,42.4322799140814],[-74.2270268837708,42.5036779435328],[-74.0576433529477,42.5215147253652],[-74.0472729327116,42.483286816069],[-73.8640621746074,42.4985807846206],[-73.7741851986286,42.5367993442191],[-73.7914692320561,42.2892395930638],[-73.8536917543713,42.2355155323856],[-73.8917166282711,42.1971131784653],[-73.9366551162605,42.0843315777128],[-73.7085058701669,42.0098884365639],[-73.6843082226498,42.1279300999737],[-73.4969322289998,42.1172394129696],[-73.4972791466845,42.1163014499952],[-73.498468827836,42.1130838035715],[-73.4987603769598,42.1122950733005],[-73.4989572229914,42.111770786395],[-73.5005470622796,42.1075091263201],[-73.5035162116859,42.099167610702],[-73.5048436414014,42.0955599119622],[-73.506515616351,42.0910155293739],[-73.5079655484235,42.0870671464164],[-73.5082948914679,42.086170804784],[-73.5079234605558,42.0851572808417],[-73.5035449631648,42.0710370558908],[-73.5031461650776,42.0697484675134],[-73.4991651892679,42.0568895997931],[-73.4969257826894,42.0496552931542],[-73.4895032065159,42.049629936972],[-73.4873645235387,42.0496242970011],[-73.4879092789949,42.039341808232],[-73.4882111578462,42.0336538120034],[-73.4884330039921,42.0290770336407],[-73.4887675788247,42.0221961208248],[-73.4887857086238,42.0218135912587],[-73.4890026221205,42.0173448135343],[-73.4890747047355,42.0158642235252],[-73.4892401959704,42.0124485032522],[-73.4894694909467,42.0082500696777],[-73.4898759786128,42.0001046845461],[-73.4908263629457,41.9890753299017],[-73.4909014189843,41.9882297138611],[-73.490918920861,41.9880318027269],[-73.4915836804595,41.9795294714575],[-73.4917855902943,41.9769517821169],[-73.4920028074216,41.9738203968601],[-73.4924664297363,41.9671482092817],[-73.4924695415005,41.9671122242577],[-73.4933047878651,41.958202295677],[-73.4938920641771,41.9526710238598],[-73.496606790932,41.9225033259714],[-73.4975146867486,41.9067763038792],[-73.4984778765659,41.8949362833228],[-73.4987611764604,41.8922335153862],[-73.4993413983024,41.8866930521231],[-73.4999262788075,41.8818821767875],[-73.5005563176219,41.8751354705406],[-73.5013164468625,41.8683904509114],[-73.5040766418455,41.83759678334],[-73.5052103615482,41.8243627594653],[-73.5081886108883,41.7915676021071],[-73.5107082720725,41.7634632616151],[-73.511038774842,41.758599393292],[-73.5111743854156,41.7569934438853],[-73.5114739016976,41.7501161536136],[-73.5118207978227,41.7454776168306],[-73.5120924654326,41.740513854339],[-73.5125600879453,41.7346114051547],[-73.5131004632163,41.7284171662773],[-73.5137028869205,41.7210573289697],[-73.5145118863092,41.7119618170658],[-73.5159602696862,41.6967048004389],[-73.5160492648831,41.6957737331532],[-73.5160584025462,41.6956702709353],[-73.516530316311,41.6904613489914],[-73.5167848853878,41.6876499662612],[-73.5171056441313,41.682412063427],[-73.5172544249053,41.6799866099225],[-73.5177070931635,41.6734128658972],[-73.5178163705229,41.6717254690365],[-73.5186837756764,41.658316257571],[-73.5200087260418,41.6419135654237],[-73.5200118000767,41.6418775765137],[-73.5200718506568,41.6412208379766],[-73.5200829861731,41.6410948830697],[-73.5207694733233,41.6337494884147],[-73.5212673439082,41.625095633897],[-73.5214213654536,41.6198960492903],[-73.5255097995343,41.5796644033705],[-73.5278945247797,41.5542723391055],[-73.5294734046213,41.5380391195211],[-73.5306747854312,41.5267324468902],[-73.5308462450728,41.5251133427595],[-73.5316970412751,41.5170672674803],[-73.5326678712639,41.500110059713],[-73.5330182591404,41.4943048996883],[-73.5337092630199,41.4828520614176],[-73.5340038771954,41.479113324205],[-73.5347038974654,41.4679397880331],[-73.5358694193257,41.4512597189135],[-73.5361006313068,41.447065282847],[-73.537524004688,41.4302217804457],[-73.538689593922,41.4187027558543],[-73.5402612045964,41.404991060075],[-73.5424241295099,41.3752447078303],[-73.543292735711,41.3666941982625],[-73.5446675057437,41.352750135801],[-73.5470695765589,41.3285460201705],[-73.5472852306176,41.3263013852781],[-73.5478595110023,41.3203141758052],[-73.5482192206966,41.3169589328787],[-73.5484351747926,41.3148313924164],[-73.5494852811052,41.3079809381645],[-73.5503719569182,41.3021957951571],[-73.5514259035286,41.2951516944397],[-73.5494320783825,41.2928612179311],[-73.5408338356742,41.2826777280898],[-73.527913455876,41.2675338463632],[-73.5187822759473,41.2567608989023],[-73.5131636902392,41.2501265345623],[-73.5084367929435,41.2445393155678],[-73.5058813186238,41.2415607391117],[-73.4995556069718,41.2340292942483],[-73.4819534244067,41.2127344981678],[-73.4995180430199,41.2050875220139],[-73.5124561492737,41.1994093769444],[-73.5141758301547,41.1985803495118],[-73.5236568688522,41.1940993476292],[-73.5305307226091,41.1908724245661],[-73.5358081775796,41.1884895418058],[-73.5401331713122,41.1864951906559],[-73.5515493787611,41.1813833250235],[-73.5646904818112,41.1754405972021],[-73.572828453819,41.1717175179495]]]},"properties":{"OBJECTID":3,"STATE":"NY","Zone":"G","Title":"Hudson Valley"}},{"type":"Feature","id":4,"geometry":{"type":"Polygon","coordinates":[[[-73.572828453819,41.1717175179495],[-73.9042479459232,41.1492964445704],[-73.9643095699241,41.2138735422971],[-73.9781367972051,41.3229992191434],[-73.6877650296946,41.3463595604768],[-73.572828453819,41.1717175179495]]]},"properties":{"OBJECTID":4,"STATE":"NY","Zone":"H","Title":"Millwood"}},{"type":"Feature","id":5,"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.768083570826,40.8823984782905],[-73.7667488593667,40.8810104832749],[-73.7673699788087,40.8805577074362],[-73.769054372967,40.8803685026603],[-73.7699071778022,40.8799812408289],[-73.7703883316381,40.8799953770208],[-73.7723829526916,40.8816831173363],[-73.7731462449003,40.8814029762847],[-73.7733162932886,40.8816344912316],[-73.7738457333676,40.8822887024039],[-73.7739585303263,40.8824070066952],[-73.7741033791742,40.8825571796526],[-73.7738361447503,40.88300924974],[-73.7719821360899,40.8843452522256],[-73.7711263506446,40.8874979856059],[-73.7705553940264,40.8878837555738],[-73.7675044871495,40.8867026720519],[-73.7670354982992,40.8859905251232],[-73.7674019776974,40.8850305742047],[-73.7672287250185,40.884812528508],[-73.7680715280113,40.8831280064275],[-73.768083570826,40.8823984782905]]],[[[-73.7806579608993,40.8889458227485],[-73.7792259061993,40.887948796135],[-73.7790958939265,40.8874744954147],[-73.7797759356646,40.8867610406369],[-73.7811501703014,40.8866629645965],[-73.7828577823165,40.8854558881451],[-73.7828873009568,40.8846544777487],[-73.7825974649202,40.88464241125],[-73.7813387796801,40.8855209270177],[-73.7810064416526,40.8849949460718],[-73.7813680728432,40.884651954019],[-73.7812674094291,40.8837095427385],[-73.7823379048037,40.8835451867071],[-73.7825691482259,40.8833134162857],[-73.7830032914263,40.8824126805253],[-73.7829458684184,40.8815788239933],[-73.7833217244316,40.8814701864194],[-73.7844643688965,40.881779497369],[-73.7866776910942,40.8830504175628],[-73.7868509329933,40.8835566937751],[-73.7863299846887,40.8847853271624],[-73.7862861028854,40.886172114968],[-73.7819309518104,40.8888286520346],[-73.7813814182151,40.8885751257526],[-73.7806579608993,40.8889458227485]]],[[[-73.7557768589444,40.8870001790705],[-73.7567305778237,40.8868978588271],[-73.7564779940237,40.8862825859603],[-73.7566488553873,40.8860322011243],[-73.7575917765169,40.886308097002],[-73.7579962366853,40.8869745467316],[-73.7590789716057,40.8867564904617],[-73.7587026772147,40.8874010257794],[-73.7570143026213,40.8877521808737],[-73.7566999839,40.8881361422307],[-73.7561940913596,40.8888062964289],[-73.7557120984972,40.8890713421956],[-73.7553788720358,40.8883651168272],[-73.755613582955,40.8879938128423],[-73.7557519729161,40.8873782506716],[-73.7557768589444,40.8870001790705]]],[[[-73.7015507862505,40.9452338115207],[-73.7031311447192,40.9428284488327],[-73.7038854483852,40.942755859027],[-73.7046344906185,40.941926533987],[-73.7056210007006,40.9418250139266],[-73.7057699431713,40.9414978938011],[-73.7054155901311,40.9408993875179],[-73.7059876328125,40.9403112818478],[-73.7065634600961,40.9401375832704],[-73.7060878883914,40.939244958244],[-73.7053034848752,40.9394163126048],[-73.7049307621857,40.9391508938314],[-73.7050501366089,40.9388549704429],[-73.7052787955779,40.9379432267104],[-73.7058011892719,40.93788153198],[-73.7065581663241,40.9375927629052],[-73.7073659943097,40.9378180151339],[-73.7071355593713,40.9388603598498],[-73.7075308073165,40.9396845199837],[-73.708033614144,40.9400189472589],[-73.7076900354973,40.9420283850302],[-73.7063068078261,40.9425983918629],[-73.7038590001866,40.9448679368618],[-73.7033818582268,40.9447769956108],[-73.7018542182889,40.9453228040851],[-73.7015507862505,40.9452338115207]]],[[[-73.6835277420765,40.9465022212465],[-73.6835862457577,40.9464353289222],[-73.6836876808246,40.9464499991545],[-73.6837322579239,40.9463739399936],[-73.6837189044673,40.9462611877716],[-73.6836211722559,40.9459853282614],[-73.6835635992293,40.9459306230449],[-73.6835654506572,40.9458000282706],[-73.6836550243691,40.945589363765],[-73.6837575311262,40.9455499976803],[-73.6840035176987,40.9455392939173],[-73.6841056669263,40.9455179399896],[-73.6842212953747,40.9455282678521],[-73.684264199811,40.9455737976863],[-73.6845831152116,40.9455549170003],[-73.6847568260314,40.9455568982987],[-73.6848715606561,40.9456122552101],[-73.6850150961671,40.9457129803241],[-73.6850573142905,40.9458305659305],[-73.6850683752466,40.9460964280765],[-73.6850375747105,40.9462266925039],[-73.6849330063198,40.9464822273791],[-73.6847847259074,40.9467327592547],[-73.6846825407473,40.9468306817549],[-73.6844201823786,40.9469177675817],[-73.6842464068802,40.9469563206716],[-73.6839700940819,40.9469982065901],[-73.6838980851288,40.9469973849121],[-73.6837389854071,40.9469325123432],[-73.6836104751175,40.9468229494116],[-73.6835974172065,40.9467327205793],[-73.683568974748,40.9466693398059],[-73.6835260694134,40.94662380937],[-73.6835277420765,40.9465022212465]]],[[[-73.6577170895167,40.9899787282336],[-73.6578039170788,40.989727517656],[-73.6587764951891,40.989252409995],[-73.65922239015,40.9897980724496],[-73.6605688066575,40.9896110463438],[-73.6623217207124,40.9880234871548],[-73.6626031018055,40.9876664350139],[-73.6628300746367,40.9870970648266],[-73.6629589631171,40.9864544935959],[-73.6635472176944,40.9861325258275],[-73.6636264661704,40.9855929686266],[-73.6635578393743,40.9853489592267],[-73.6648041116938,40.9842284020352],[-73.6647380684524,40.9837457132204],[-73.6641471045562,40.9835406918758],[-73.6650161338638,40.9824833195238],[-73.6638891658988,40.9822225449248],[-73.6641161180688,40.9804010692864],[-73.6636548762896,40.9801750291655],[-73.6639240411931,40.9795746172046],[-73.6648690571939,40.9793513595346],[-73.6653853926495,40.9786502158628],[-73.663347041608,40.9782752901262],[-73.6625688167043,40.977928465951],[-73.6623460875145,40.9772232630395],[-73.6614131799054,40.9765548548917],[-73.6615393033713,40.9757546124528],[-73.6610337800384,40.9756631664268],[-73.6601718986256,40.976148589264],[-73.6600391590676,40.9774216698767],[-73.6604800117849,40.9780663562373],[-73.6612745096699,40.9782692562644],[-73.6609312364504,40.9788597928558],[-73.6601071830942,40.9788322022678],[-73.659851852246,40.9795183413579],[-73.6607026834826,40.9820414420118],[-73.6616020399141,40.9819843273609],[-73.6619676461499,40.981722838048],[-73.6619006390162,40.9813257112506],[-73.6625100255623,40.9812427038341],[-73.6627837628906,40.9817773474555],[-73.6625091056874,40.9823912039995],[-73.6610120408085,40.9827611660583],[-73.6591598781861,40.9825054318689],[-73.6579688289003,40.9826582182267],[-73.6566057216949,40.981624445805],[-73.6562016558869,40.9804126734301],[-73.6565484900282,40.9783313798529],[-73.6569296802375,40.9780340559451],[-73.6571008443334,40.9771037285815],[-73.6577813585854,40.9760757410704],[-73.6582610176246,40.9760137652428],[-73.6584433855087,40.9753357880312],[-73.6597372972844,40.975049072962],[-73.6599164204537,40.9746773259565],[-73.659926806775,40.9739072673217],[-73.6599142968364,40.9737179552522],[-73.6603092474393,40.972371354696],[-73.6600292263955,40.9705349828388],[-73.6594903198701,40.9696729630083],[-73.6596714983848,40.9691255848354],[-73.6617551990768,40.9671680433177],[-73.6622722594729,40.9659129308636],[-73.6651671855788,40.9673652397803],[-73.6667703253231,40.9667622421827],[-73.6683351285642,40.9656633420546],[-73.6687989467117,40.9656461791943],[-73.6696285642328,40.9664979996298],[-73.6711440346936,40.9665965500976],[-73.6715949727965,40.9671106966959],[-73.6720685403598,40.9664225401301],[-73.6715519354096,40.9659977178024],[-73.6705501404929,40.9658780741452],[-73.6709054798833,40.9652335983427],[-73.6713860031018,40.9650499701818],[-73.6719200299787,40.9652723150665],[-73.6722551177493,40.9651185353911],[-73.6733767326535,40.9634829915341],[-73.674097830095,40.9637840460898],[-73.6749512017672,40.9639334807284],[-73.6758327266403,40.9641237691863],[-73.6773768057479,40.9634568889045],[-73.6780267377543,40.9626356113348],[-73.6783461678895,40.9614412151141],[-73.6782118643646,40.9608766771423],[-73.6773747234531,40.9606598929849],[-73.6775309243113,40.9597924161503],[-73.6787291673058,40.9601124264802],[-73.6792658666707,40.960051016349],[-73.6800401650382,40.9595824617813],[-73.6796409402512,40.9591184843598],[-73.679795606787,40.9583635860492],[-73.6805309973229,40.9574982322899],[-73.6807446382571,40.9566899596888],[-73.6812535805779,40.9565291350382],[-73.6817773693555,40.9563684782429],[-73.682234981941,40.9556891037868],[-73.6830951808093,40.9552665502275],[-73.6845552548614,40.9555624665644],[-73.6831866589496,40.9538398311654],[-73.6838341951491,40.9530184915989],[-73.6845557228837,40.952134936628],[-73.6845782741905,40.9515226514476],[-73.6842242921545,40.95147357191],[-73.683855372932,40.9514288250232],[-73.683670475392,40.9522509442391],[-73.6827600499195,40.9532224150891],[-73.6823218993346,40.953447111284],[-73.6819482971945,40.9532266492835],[-73.6820752848397,40.952367839068],[-73.6825751712442,40.9518015456565],[-73.6825630915985,40.9505042586626],[-73.6824066023811,40.9491873045883],[-73.6842159548904,40.9492755292036],[-73.6838752706155,40.9498661672069],[-73.6837076764245,40.9504903085159],[-73.6838924562852,40.9507581540761],[-73.6846035132568,40.9506626771941],[-73.6861175356332,40.9489819370174],[-73.6867562908009,40.9488991352006],[-73.6874872885751,40.9483579727867],[-73.6854683366521,40.9476818907812],[-73.6860871438306,40.9457206992269],[-73.6859473893286,40.9453542830853],[-73.6846227506786,40.9447176258192],[-73.6839745587089,40.9444174688637],[-73.6832258623269,40.9440936402932],[-73.6840681604666,40.9438915695323],[-73.6852445016362,40.9436933027607],[-73.6858064364739,40.9439249097814],[-73.686615337048,40.9440962716785],[-73.6873940712964,40.9443663721764],[-73.688011990041,40.9447337254284],[-73.6893172960477,40.9446224611505],[-73.6899316502773,40.9441565241323],[-73.6914357822025,40.9443537662762],[-73.6914738375329,40.9447955901776],[-73.6921251152155,40.9448660362882],[-73.6927445646894,40.9439902786056],[-73.6939450202345,40.9441119799206],[-73.6944284539945,40.9436940796958],[-73.6946295688203,40.9427189896966],[-73.6934602416965,40.9424129839775],[-73.6931471303109,40.9419500272308],[-73.6951362545732,40.94157170234],[-73.6953165572305,40.9410873110502],[-73.6944780095572,40.9409517062853],[-73.6944576420547,40.9402893874364],[-73.6950999823986,40.9398687798976],[-73.6953069919693,40.9395738586074],[-73.6977750368557,40.9391513620603],[-73.698238629526,40.939098045692],[-73.6979813610118,40.9399869323485],[-73.698256214946,40.9405845647486],[-73.6974205041524,40.9407958213298],[-73.6970366630146,40.9413995236804],[-73.6973213112804,40.9417630602168],[-73.6957140895915,40.9440149036031],[-73.694751853785,40.9467649629147],[-73.6936155244765,40.9483600184584],[-73.6929212902552,40.9505410897228],[-73.6924237789964,40.9509543194434],[-73.692631107469,40.9528663625402],[-73.6923068641605,40.953304076442],[-73.6924625808267,40.9546705513867],[-73.6919424113615,40.9545745706584],[-73.6915528272941,40.9544845742669],[-73.6911519855396,40.9552276858426],[-73.692540459372,40.9554281045477],[-73.692810412098,40.9558230127652],[-73.6918696011111,40.9568707780674],[-73.6913329376789,40.9569322474654],[-73.6901050772294,40.9566075277761],[-73.689779848469,40.9571307980873],[-73.6895798601305,40.9580428345701],[-73.6913288575308,40.9583419486293],[-73.6919278290095,40.9579839237712],[-73.6939727152947,40.9555929705372],[-73.695795818316,40.9534832229072],[-73.6959740270004,40.9520124339109],[-73.6962293138311,40.9513036905763],[-73.696766158723,40.9511926565137],[-73.6973340943069,40.9510864753607],[-73.6977305388081,40.9506000193763],[-73.6977973195663,40.9498846388923],[-73.6990055311655,40.9494658958794],[-73.6995016958498,40.9480212082321],[-73.7003882387121,40.9477969976997],[-73.7011052748702,40.9472420789729],[-73.7010850169622,40.9465707555129],[-73.7017123033386,40.9461994852047],[-73.7023026024815,40.9465033950812],[-73.7026859962582,40.9470977333753],[-73.7027700201783,40.9473193747339],[-73.7020726346671,40.947478173407],[-73.7016448183012,40.9480904038173],[-73.701950565298,40.9491612933294],[-73.7021961224759,40.9491730658051],[-73.7042669251571,40.9469803929326],[-73.7049921961714,40.9468759419998],[-73.7046685852768,40.9461471631306],[-73.7053079189595,40.9459561687528],[-73.706507686395,40.9450508205013],[-73.7079503196559,40.9443688780212],[-73.7082684750818,40.9444264907117],[-73.7083508883225,40.944769718324],[-73.7095629420163,40.9451751389908],[-73.710933848395,40.9444383081366],[-73.7115717447732,40.9443958947268],[-73.7125960002668,40.9447226164474],[-73.7127870521649,40.9444815337291],[-73.7137731517169,40.9444790278886],[-73.7141411375898,40.9446858126759],[-73.7141531013528,40.9449877135978],[-73.7158813961791,40.9453087449574],[-73.7163761478133,40.9450665346232],[-73.7162932952964,40.9445521565944],[-73.7175098297867,40.943615352029],[-73.71824054549,40.9419975341516],[-73.7189717723346,40.9419651252761],[-73.7186041682456,40.9429294000797],[-73.7195213265912,40.9433044146907],[-73.7204755494253,40.9420674003615],[-73.720865584447,40.9421708166292],[-73.7213029472093,40.9422071963444],[-73.7222641274953,40.9414927088586],[-73.722821155735,40.9420618809322],[-73.723837120677,40.9422803153517],[-73.7243623323859,40.9419573360423],[-73.7247829810941,40.9420520695926],[-73.7251305267011,40.9426279213105],[-73.7257176467062,40.9425218125618],[-73.7263590950231,40.9419839160608],[-73.7270212818465,40.9435361017867],[-73.7276408175586,40.9439077650175],[-73.7280912193674,40.9446198630344],[-73.7278221487869,40.9466076620469],[-73.7279925223654,40.9479832609877],[-73.7274603181703,40.9484367958958],[-73.7254176192828,40.9493600695125],[-73.7268005999172,40.9494203911188],[-73.7290030695679,40.9484898462181],[-73.729669173046,40.9484881798302],[-73.7303117262906,40.9484367056557],[-73.7306509112773,40.9482512727727],[-73.7311148174597,40.9480672119767],[-73.7314539988531,40.9478817766992],[-73.7319223463062,40.947504088981],[-73.7322656895944,40.9470619690498],[-73.7316183914484,40.9462756578792],[-73.7297440152856,40.9454352932833],[-73.7292881867542,40.9447726862358],[-73.7300042814779,40.9430510402444],[-73.7312051107222,40.9431948783101],[-73.7332441444833,40.9435370843236],[-73.7351193524861,40.9446836732525],[-73.7354976716798,40.9446247674959],[-73.7361759176856,40.9442178364116],[-73.737151727036,40.9436249934998],[-73.7374920771376,40.9430251846712],[-73.7344188453292,40.9431446254736],[-73.7334290474132,40.9428364917432],[-73.7327727158087,40.942446438971],[-73.7325924481857,40.9423994175431],[-73.7318483808224,40.9420939715144],[-73.7306713497466,40.9415225217636],[-73.7298296435968,40.9413150756441],[-73.7293956818561,40.9412562455971],[-73.7280376914545,40.9412953197415],[-73.7271438381024,40.9407494779816],[-73.7256773518758,40.9402918859715],[-73.7240732545275,40.9395399916128],[-73.7231182618372,40.9388177861021],[-73.7222295720013,40.9384701397326],[-73.7215336749985,40.9385975453387],[-73.7217202577779,40.9378924853538],[-73.722806955167,40.9369406723975],[-73.7233453164151,40.9366268507235],[-73.723714185332,40.9357841815649],[-73.7235707288727,40.9346746078662],[-73.7232578411677,40.9339595102338],[-73.7230683712029,40.9331196662229],[-73.7242921667757,40.9322909646866],[-73.7232306500623,40.9318243088365],[-73.7222002042781,40.9321732138128],[-73.7215184755039,40.9323007761188],[-73.723249149069,40.9304778145493],[-73.7237913946324,40.9305378663203],[-73.7239258760237,40.9309176918457],[-73.7250392991908,40.9311552108082],[-73.7253413568067,40.9305415013364],[-73.7249417556257,40.9297804090287],[-73.7250983903702,40.9292011237742],[-73.7250466060873,40.928380820909],[-73.7270450898965,40.9274840848758],[-73.727712433948,40.9273293070213],[-73.728815645067,40.9279810458095],[-73.7301889355744,40.9282529076103],[-73.7315803459995,40.9281601279457],[-73.7319733544447,40.9278716896668],[-73.7326763023242,40.9269020483265],[-73.7321197663613,40.9257654219552],[-73.7321699130154,40.9249282260728],[-73.7325874751123,40.9243247750107],[-73.7331544566853,40.9240202295907],[-73.7336367082625,40.9234490137732],[-73.7338956485414,40.9218214028386],[-73.7346721244252,40.9216227426556],[-73.7354327369595,40.9224508191319],[-73.7352820751132,40.9250975277378],[-73.7341579979269,40.9272110864573],[-73.7341959104251,40.9288419554342],[-73.7330856367514,40.9292171056792],[-73.732408067177,40.9296735710892],[-73.7325308938258,40.9288011432409],[-73.732446372239,40.9284849332346],[-73.7311922450507,40.9286963384608],[-73.730777427307,40.9289214778184],[-73.7309457868626,40.9296664930305],[-73.731406388143,40.9300363869198],[-73.7318076161731,40.9315316285713],[-73.7323933815187,40.9307138365691],[-73.7331049756828,40.9304198890356],[-73.7336529956169,40.9297503078106],[-73.7347874923622,40.9291952578141],[-73.7356059537058,40.9290961404527],[-73.7376088096155,40.9276903161014],[-73.7380882782119,40.9276550285812],[-73.737614988228,40.9287308109852],[-73.7358208738409,40.9304001570219],[-73.7360184717624,40.9310554048163],[-73.7340551534033,40.9321328420945],[-73.7338415322321,40.9325899056207],[-73.734209087812,40.9328191416627],[-73.7356467399146,40.9323304676199],[-73.7361535631097,40.9322639606748],[-73.7367961558802,40.9321629069366],[-73.7370824489613,40.9310850805888],[-73.7376297466498,40.9305686092116],[-73.7376405443995,40.9301183260228],[-73.7385572401127,40.9295383344983],[-73.7391772555251,40.9299594856096],[-73.739546409208,40.929909473818],[-73.7400426969615,40.9294194568398],[-73.7400328927484,40.9288022997439],[-73.7408638802003,40.928081728583],[-73.7414765464955,40.9275209118064],[-73.7419180235418,40.9275707706595],[-73.7424220341118,40.9279636145649],[-73.7437951629225,40.9283253925446],[-73.7430598810826,40.929794695429],[-73.7428391901702,40.9301976500523],[-73.7423507662687,40.9306652444681],[-73.7423977813957,40.9311611987557],[-73.7423963629559,40.9313143198161],[-73.7427178601146,40.9318988434999],[-73.7426483242234,40.93243406269],[-73.743219193705,40.9326699915319],[-73.7434346258798,40.9325056913181],[-73.743317956284,40.9309054953359],[-73.7446618503221,40.9286185858575],[-73.7451096263552,40.9287675883546],[-73.7456235561225,40.9287551654409],[-73.7459435998071,40.9279254039955],[-73.745330982021,40.9272296248848],[-73.7446265447348,40.9274246377777],[-73.7438595999761,40.927745077148],[-73.7434154252889,40.9275240440628],[-73.7441176715842,40.9263471400131],[-73.7455705519275,40.9261017237505],[-73.7455007770844,40.9257091151556],[-73.7435480965749,40.9255752516708],[-73.7440959215746,40.9243200957428],[-73.7443816891412,40.923575541534],[-73.7448596952803,40.9226349024431],[-73.7433313977756,40.9217714989214],[-73.7447449911982,40.9203411082531],[-73.7447308445291,40.9201472813421],[-73.7429300179302,40.9190196713635],[-73.7427789608253,40.9187657992058],[-73.7465457162875,40.9166448814394],[-73.7470733264983,40.9176324928142],[-73.7482749300903,40.9175554643861],[-73.7485911514434,40.9167661891828],[-73.7481051035859,40.9163285263769],[-73.7485346240558,40.9161034839564],[-73.749577318369,40.9160292206584],[-73.7502769047528,40.9155323510985],[-73.7506247629735,40.9148740269687],[-73.7515522088256,40.9142174721516],[-73.7522180877249,40.9141300920398],[-73.7529424658139,40.913259639489],[-73.7538694508303,40.9131390401504],[-73.7550122138729,40.9137008696248],[-73.7558951751521,40.9133951137281],[-73.7568513697883,40.9126262247316],[-73.757460359279,40.91169144397],[-73.7599518106684,40.9096599101133],[-73.7603722437809,40.9088041580909],[-73.7601554371837,40.9083334088998],[-73.7595329738621,40.9082456448951],[-73.7597216039021,40.9075630604333],[-73.7604028143483,40.9070479137981],[-73.7610248033595,40.90727979729],[-73.7610681120376,40.9076631048996],[-73.7605170629845,40.9082021742689],[-73.7611244570672,40.9089383515439],[-73.7608051526961,40.9096645754833],[-73.7597191326367,40.9103960698009],[-73.7595158600576,40.9111865934831],[-73.7590380039372,40.9116588810584],[-73.7591101871635,40.9119659314468],[-73.7567927457329,40.9134183021283],[-73.755793933223,40.9137678561941],[-73.7545922487826,40.9138539775133],[-73.7547359244308,40.9148193903467],[-73.754415595082,40.9170184004807],[-73.7545092507385,40.9191858466884],[-73.755309946999,40.9201043018383],[-73.7561061400051,40.9204326750462],[-73.7568683254893,40.9204769236635],[-73.7572796739394,40.9209047336622],[-73.7558890693032,40.92298411455],[-73.756513265475,40.9231845177607],[-73.7574843218392,40.9219068308236],[-73.7585119828461,40.9222827216052],[-73.759858343658,40.9218107692165],[-73.7586151606447,40.921806405399],[-73.7577004735646,40.9214227250048],[-73.7581659284425,40.9208241977138],[-73.7577175703011,40.920152774772],[-73.7555826620446,40.919454160634],[-73.755304989197,40.9190232825764],[-73.755702800934,40.9185096113492],[-73.7560936040153,40.918171520274],[-73.7566442991322,40.9177765993724],[-73.7555299596835,40.9176339665186],[-73.7554575159457,40.9173809599602],[-73.7556460597474,40.9168650311076],[-73.7561823243277,40.9166456132115],[-73.7568185696024,40.9170713457038],[-73.7584111900746,40.9164038856431],[-73.7597440465128,40.9151390796226],[-73.7599472382436,40.914591772682],[-73.7597455107667,40.913670782806],[-73.760136875295,40.9130219054986],[-73.7600069007515,40.9124710169806],[-73.7604418344693,40.9119126875043],[-73.7613249017498,40.9116384184042],[-73.7615128329005,40.9117485332337],[-73.7612667529032,40.9124079834997],[-73.7618149839413,40.9141299039984],[-73.7622780978096,40.9140898335277],[-73.7626403093119,40.9137694290973],[-73.763147300492,40.91392349876],[-73.7629291922359,40.9150336551177],[-73.7636673846173,40.9146497181794],[-73.7642168634154,40.9152726574105],[-73.76424557986,40.9157233682745],[-73.7636517961522,40.9167214038477],[-73.7640711548796,40.916919571004],[-73.7648102635426,40.9160086649994],[-73.7651715866111,40.9161746788655],[-73.7659393533282,40.9158766201431],[-73.767147272975,40.913538432547],[-73.7664046518993,40.9133638448793],[-73.7654483746181,40.9139031067284],[-73.7647831748452,40.9137158247781],[-73.7644936639988,40.9133208738632],[-73.763118879593,40.9130989568597],[-73.7632780916041,40.9125601799501],[-73.7637131726457,40.912231544965],[-73.763757285316,40.9111780748978],[-73.7642201808937,40.9115073240716],[-73.7653783239923,40.9115647651521],[-73.7674504867228,40.9126768985971],[-73.7694741251566,40.9118067032148],[-73.7700092228253,40.9123664055779],[-73.7703331975375,40.9143876654251],[-73.7706908500898,40.9143914771509],[-73.7709841230806,40.9143450575789],[-73.7709483872003,40.9129484275764],[-73.7713223315985,40.9126731607686],[-73.772716125254,40.9127510536484],[-73.7733085695738,40.9122979430864],[-73.7732207170339,40.9121123435818],[-73.77109513868,40.9121572807119],[-73.770646673639,40.9112471923097],[-73.7698368900211,40.9106530358747],[-73.7699820730424,40.9099069142571],[-73.7701414826828,40.9096744038528],[-73.7712196918908,40.9086364535709],[-73.772081041501,40.9068034741365],[-73.7714985208702,40.9064819895254],[-73.7706743525296,40.9078694617909],[-73.7704320912705,40.9081281139157],[-73.7689114402255,40.9090937760104],[-73.7674933489382,40.9086102152043],[-73.7680730569439,40.9073237491975],[-73.7684502783963,40.9067107234281],[-73.7694781990164,40.9055821713724],[-73.7693922500066,40.9047344956005],[-73.7685387292142,40.9040227579844],[-73.7674390314063,40.9041416310805],[-73.7659485484835,40.9032474103523],[-73.7650801156573,40.9032606378767],[-73.7644873353676,40.9027363269832],[-73.764632846274,40.9018550937135],[-73.7653426042816,40.9011960936095],[-73.765212654891,40.900483065178],[-73.7652271312418,40.9000238078073],[-73.7651122627681,40.8996172144784],[-73.7667916290557,40.8984866476148],[-73.7664596117267,40.8975867940129],[-73.7666190761644,40.8973903207881],[-73.7670966987229,40.8972017521711],[-73.767949605966,40.8979810546439],[-73.7684129776508,40.8977607999991],[-73.7695129198004,40.897542830202],[-73.7700224927386,40.8967105115126],[-73.7694125950512,40.8961500105026],[-73.7692684414992,40.8950404782563],[-73.7702244735404,40.8942174243335],[-73.770932920906,40.8948645481637],[-73.7717586999259,40.894062613403],[-73.7727563679821,40.8943164486789],[-73.7734948235699,40.8935811340189],[-73.7736983961863,40.8926014154625],[-73.7729028113397,40.8920524707924],[-73.7746833620644,40.8911300478585],[-73.7755951565693,40.8910901834745],[-73.7763189004477,40.8901430029122],[-73.7771585782016,40.8899897599913],[-73.7781278289522,40.8896487122871],[-73.7795023672195,40.8896182206464],[-73.7802254175984,40.8907248551536],[-73.7796898007036,40.8916920663614],[-73.7788650646277,40.8913545450839],[-73.778488620218,40.8918144772091],[-73.778068279632,40.8927243481903],[-73.7782278222231,40.8929647519046],[-73.7766923076534,40.8946014670076],[-73.7762726713465,40.8954708016552],[-73.7763443083972,40.8960525839556],[-73.775591075523,40.8969859377965],[-73.7757640173849,40.8987533582327],[-73.7755606864153,40.899841179089],[-73.77464840682,40.9006647415409],[-73.7745759873368,40.9009702466881],[-73.7758415455872,40.9009071139756],[-73.7768341785862,40.900111418407],[-73.7770484474427,40.8990732555565],[-73.7770372732989,40.8987533500847],[-73.7769655077892,40.8985003629416],[-73.7769516943951,40.8974777983927],[-73.777444290971,40.8965146495286],[-73.7779216772726,40.8958531082245],[-73.7789933045244,40.8944276632173],[-73.7799347596034,40.8939872184881],[-73.7801564063234,40.8937553515428],[-73.7807468716546,40.8937615927722],[-73.7814106646658,40.8943811562928],[-73.7821048351067,40.8940326663622],[-73.7825247049755,40.8935506604878],[-73.7830030012704,40.8931998865629],[-73.7824714025398,40.8927348649374],[-73.7815563130144,40.8922657914035],[-73.781078551217,40.8917788113048],[-73.7818463044594,40.8912194093736],[-73.7819334491269,40.890432120569],[-73.7826137298168,40.8900699681452],[-73.7831205206725,40.8894987958238],[-73.7840751459519,40.8892656411851],[-73.7847848267045,40.8890794439404],[-73.784944133937,40.8888063745265],[-73.7857826322029,40.8890809406918],[-73.7835249997056,40.8909893981808],[-73.7828732189664,40.8919013510168],[-73.7832100593502,40.892265227772],[-73.7837351542781,40.8921536591956],[-73.7850151179124,40.8912122864522],[-73.7885575838111,40.8880876899674],[-73.7880501353886,40.8876815000183],[-73.7868333260137,40.8885019622609],[-73.7864345979951,40.8883581436828],[-73.7859283991291,40.888006005725],[-73.7868113613067,40.8873892300728],[-73.7868404388742,40.8870156991844],[-73.7871439445744,40.8865234436504],[-73.7880848301215,40.8862270543839],[-73.7881454268773,40.8861334123171],[-73.9115029880927,40.9134233297428],[-73.9106255343844,40.9153608221054],[-73.910334385011,40.916006657698],[-73.9110495383002,40.9162521257028],[-73.9098735636433,40.9190290347223],[-73.9104812065593,40.9191338643374],[-73.9103154512197,40.9196908023952],[-73.9089455482592,40.9228802419839],[-73.9088087007055,40.9230320858058],[-73.9075592124172,40.9228671229133],[-73.9071031009165,40.924781531459],[-73.9071768049907,40.9257145687569],[-73.9061711401318,40.9270112139968],[-73.9057835593075,40.9274669521336],[-73.9055363052121,40.928955448668],[-73.9054095897564,40.9298865850748],[-73.905019013949,40.9304774134484],[-73.9053719386679,40.930818566888],[-73.9050323961518,40.9324097788138],[-73.9048229180107,40.9328672035057],[-73.9045706378412,40.9346123793871],[-73.9035275410827,40.9369490777269],[-73.902199620887,40.940161344512],[-73.9024800371895,40.9407585471525],[-73.9025741680549,40.9418449169192],[-73.9016734713369,40.9435523842132],[-73.9013196635741,40.9459947088336],[-73.9008843471739,40.9480218833411],[-73.8999446357249,40.9481795743701],[-73.8994731702194,40.9502784621375],[-73.8994125195646,40.9508453921289],[-73.8999993323459,40.9511032159281],[-73.8997044926932,40.9518210494203],[-73.898048397263,40.9556246597015],[-73.8984301686823,40.955844499723],[-73.8982413517927,40.9563471474914],[-73.8972522518677,40.9562521189844],[-73.8961691432482,40.9579668023313],[-73.8939771749032,40.9608373900441],[-73.8927493854206,40.9622668978613],[-73.8924064373912,40.9630112730971],[-73.8916780043071,40.9655760733876],[-73.8914403361341,40.9672177569325],[-73.8911249861468,40.9699937054465],[-73.8902784874849,40.9728140864695],[-73.8885378525016,40.9775175319274],[-73.8867755124244,40.982171193354],[-73.8857418309084,40.9858950316922],[-73.8865668975643,40.9861822488859],[-73.8865571777929,40.9898078780492],[-73.8864737952699,40.9917167694949],[-73.8941377640316,40.9944118450088],[-73.9027132326507,40.9974303686638],[-73.9043692265714,40.9981712575803],[-73.8917166282711,41.1358149860846],[-73.9042479459232,41.1492964445704],[-73.572828453819,41.1717175179495],[-73.5802656716332,41.1683148454765],[-73.5969842425388,41.1607910496705],[-73.6139555427715,41.1531102151974],[-73.6140036754027,41.1530882751368],[-73.6140518080339,41.1530663350688],[-73.6246101989467,41.1482836484251],[-73.6751488455027,41.1251314006359],[-73.7117956130268,41.1081168387178],[-73.7278026948712,41.1006785612125],[-73.7188051348494,41.0894182277135],[-73.7122027447849,41.081125015328],[-73.7063919151145,41.0738266600539],[-73.7057589082664,41.0729863292584],[-73.6964957469579,41.0619914660915],[-73.6950472530881,41.0602725923304],[-73.6878133976845,41.0516375105482],[-73.6827545369586,41.0455625555333],[-73.6773628513183,41.039109729334],[-73.6704751212852,41.0308288141903],[-73.6660882381211,41.0255760755684],[-73.6659736211757,41.0254351265383],[-73.6659431314566,41.0253987425554],[-73.655238877498,41.0123705431262],[-73.6552511215353,41.0123166385646],[-73.6557782691137,41.0100032498428],[-73.6601304755112,41.0004694929696],[-73.6600060813022,41.0001167373823],[-73.6595763272703,40.9986975000469],[-73.6594691492738,40.998155779837],[-73.6594232471594,40.997303998675],[-73.6595555797805,40.9962741319989],[-73.6597331470678,40.9955420522013],[-73.6596123398317,40.9947929913834],[-73.6595886584442,40.994531486414],[-73.6595247037859,40.9943505847772],[-73.659373962888,40.9940155391006],[-73.6593516505329,40.9936864909495],[-73.659072552059,40.9930121547559],[-73.6587860523654,40.9926665214236],[-73.6585436186298,40.9924565184199],[-73.6582714704212,40.9922461689433],[-73.6579876764533,40.9919140770079],[-73.6577557934307,40.9915870918563],[-73.6576376613776,40.9912569277076],[-73.6575957396982,40.9911258245638],[-73.6576110487873,40.9908107259933],[-73.6576358315093,40.9905047452111],[-73.6576700887627,40.9902078830223],[-73.6577170895167,40.9899787282336]]]]},"properties":{"OBJECTID":5,"STATE":"NY","Zone":"I","Title":"Dunwoodie"}},{"type":"Feature","id":6,"geometry":{"type":"MultiPolygon","coordinates":[[[[-74.0493172144306,40.5653073241372],[-74.0501652204655,40.5652242061495],[-74.0511412561914,40.5660610194634],[-74.0510347546263,40.5664925626233],[-74.0503882694556,40.5665773420591],[-74.0500272239665,40.5664212285566],[-74.0493905843314,40.5658619618715],[-74.0493172144306,40.5653073241372]]],[[[-74.2022774155478,40.5794543126669],[-74.2016471180186,40.5789274567753],[-74.2004764038959,40.5791355777725],[-74.2001767564598,40.5783767720078],[-74.200475549598,40.5774689562046],[-74.2002655962481,40.5759990804366],[-74.2002364531037,40.5755934855774],[-74.2011042247698,40.5738427794087],[-74.2033261213869,40.5737139679983],[-74.2055161287096,40.5738461480809],[-74.206400791398,40.5735909691469],[-74.2067771423829,40.5734854460481],[-74.207197782108,40.5735063480276],[-74.2072277094817,40.573848885596],[-74.2068978346346,40.5743961571101],[-74.2068373411851,40.5750173453574],[-74.2067800565177,40.5751160483107],[-74.2066622766042,40.5758359399534],[-74.2066535171318,40.5758899319237],[-74.206477686288,40.5769607653728],[-74.2059084472487,40.5775153999993],[-74.2057574988399,40.5785413588778],[-74.204827384093,40.579012429917],[-74.2038972567698,40.5794834935455],[-74.2022774155478,40.5794543126669]]],[[[-74.0529663525744,40.5779043837658],[-74.053956400222,40.5772368384096],[-74.0547369742202,40.5778107693616],[-74.0545869941953,40.5795482174666],[-74.05389644666,40.5802362357344],[-74.0535363704531,40.5802152717243],[-74.0529064079955,40.5796425662941],[-74.0529663525744,40.5779043837658]]],[[[-73.7301717795492,40.5903842659576],[-73.7275965934972,40.5856349131331],[-73.7296647488432,40.5858061821281],[-73.7342254982356,40.5864103062139],[-73.7366801124101,40.5863831435875],[-73.7415498014119,40.5869408115992],[-73.747464552686,40.5861943699876],[-73.7548142422522,40.5844856373706],[-73.7551597352088,40.5844127874813],[-73.7548716293275,40.5853735989856],[-73.754338383985,40.5860525010349],[-73.7460522079216,40.5919445089837],[-73.7446007936288,40.5925818524517],[-73.7419102414365,40.5930480305582],[-73.7396291979446,40.5928654975509],[-73.7301717795492,40.5903842659576]]],[[[-73.7331712812323,40.5959157463461],[-73.7322318770071,40.5941834089177],[-73.7327076723923,40.5942445961273],[-73.7347369010421,40.5948569153414],[-73.7350373192326,40.5949457890527],[-73.7350510544733,40.5951576398044],[-73.7350674631003,40.595423571816],[-73.7350060848102,40.5954274032373],[-73.7344459618744,40.5954798194062],[-73.7338829688212,40.5955276967698],[-73.7337859480755,40.5955806837862],[-73.7332829517036,40.5958544297013],[-73.7331712812323,40.5959157463461]]],[[[-73.8342324945008,40.5934535380031],[-73.8323415264547,40.5928669020726],[-73.8318015320694,40.5921497653984],[-73.83183069857,40.5908978680105],[-73.8327598090004,40.5891145511886],[-73.8337202032606,40.5886738210152],[-73.8360921050553,40.5886076542424],[-73.8375626417855,40.5889017255583],[-73.8385836597509,40.5898218603463],[-73.8391534638306,40.5911248229171],[-73.8387046673112,40.5925616856409],[-73.8390643302931,40.5928625834581],[-73.8406855468358,40.5929058882826],[-73.8410450660873,40.5927022979271],[-73.8411054652137,40.5918560971903],[-73.841644613386,40.5912579290719],[-73.8442857923736,40.5912573540159],[-73.8450963260848,40.5916258029106],[-73.8453870011478,40.5933628594315],[-73.8440772269209,40.5945343909955],[-73.8431772048377,40.594642494092],[-73.8424873948192,40.5955814852656],[-73.8413766908525,40.5964261661988],[-73.8401462477466,40.5968462316208],[-73.8375050903185,40.5967476173457],[-73.8368442572561,40.5964346747321],[-73.8362440856283,40.5958610904788],[-73.8355831115305,40.5946202563046],[-73.8342324945008,40.5934535380031]]],[[[-73.7335946356661,40.5966964319948],[-73.7348301353888,40.5966506351886],[-73.7347289877827,40.5987881846129],[-73.7335946356661,40.5966964319948]]],[[[-73.9133735859415,40.5914863664368],[-73.91475536463,40.5912651298913],[-73.9163444493333,40.5925682751217],[-73.9180552036554,40.5945752090907],[-73.9218370894419,40.5971419794443],[-73.9223770829289,40.5979217565592],[-73.922405945799,40.5985165931242],[-73.9214465289058,40.5992913887198],[-73.9205157368293,40.5995709709147],[-73.9188341301433,40.5994111093443],[-73.9164036420223,40.5981451537483],[-73.9131625860543,40.5938446350866],[-73.9131345226848,40.591745366725],[-73.9133735859415,40.5914863664368]]],[[[-73.8612819534818,40.6027589124974],[-73.8589402862846,40.6025826623433],[-73.856508354571,40.6026757291829],[-73.8537171533376,40.6019183745229],[-73.852034798355,40.6006855128102],[-73.8511938306203,40.5994970311407],[-73.8512838184556,40.5982097000029],[-73.8524526218616,40.5971583033202],[-73.8545537902943,40.5961792020332],[-73.856954793911,40.5958066044118],[-73.8587851238788,40.5958066814899],[-73.8601368440397,40.5961533427834],[-73.8629288321972,40.5981627426446],[-73.8637714231876,40.5994412418714],[-73.8639223024261,40.6010012094424],[-73.8612819534818,40.6027589124974]]],[[[-73.8105513576108,40.5987884594901],[-73.811721614491,40.5983590822146],[-73.8128320795059,40.5993884659465],[-73.8147827325178,40.6022011472387],[-73.8148422989059,40.6033458449331],[-73.8141531374711,40.60455492743],[-73.8115113125948,40.6036449420863],[-73.8107300864197,40.603042337774],[-73.8099806138933,40.6018995425635],[-73.8100095171876,40.5999359745818],[-73.8105513576108,40.5987884594901]]],[[[-73.8087784686172,40.606202249262],[-73.8094697294148,40.6060472205401],[-73.8099202003938,40.6062230243955],[-73.8098296070941,40.6069157495287],[-73.8088993333454,40.6077169306673],[-73.8082838687982,40.6080123698792],[-73.8076683997593,40.6083078057391],[-73.8073686382373,40.608214626031],[-73.8077890282307,40.6068406578054],[-73.8087784686172,40.606202249262]]],[[[-73.8311142624865,40.6057457491607],[-73.8349266577551,40.6050365494574],[-73.8355045008582,40.6052405639749],[-73.8357666211733,40.6053332908825],[-73.8353767397636,40.606770730753],[-73.8346263859899,40.6074388051732],[-73.8341091629988,40.6083794845525],[-73.8340267290967,40.6085317983659],[-73.8330363257162,40.6091523967926],[-73.8327963102454,40.609699494016],[-73.8317150764098,40.6096795560537],[-73.8304233583201,40.6087656311501],[-73.8301233740158,40.6065645064589],[-73.8311142624865,40.6057457491607]]],[[[-73.8264613576241,40.6090587681603],[-73.8265516248354,40.608375035318],[-73.8270021946291,40.6083796114007],[-73.8271215160516,40.6081466004179],[-73.8260102335699,40.6073966111753],[-73.8257408252229,40.606411941278],[-73.8263413867196,40.6059495991963],[-73.8278218399522,40.6055682533515],[-73.8285616915219,40.6053775697241],[-73.8288018156889,40.6055872009007],[-73.8284120986709,40.607006601358],[-73.828592443549,40.6075939854781],[-73.8277828270177,40.6083515001992],[-73.8280230410163,40.6093178524523],[-73.8279629967244,40.609794696408],[-73.82760196471,40.6099081446114],[-73.8269713482789,40.6097215719811],[-73.8264613576241,40.6090587681603]]],[[[-73.7982430072021,40.6036157840262],[-73.8008248228208,40.6036155869201],[-73.8039759933616,40.6044139799653],[-73.8043357955823,40.6056969181672],[-73.8043056247652,40.6073902120671],[-73.8037960410472,40.6083758768808],[-73.8020543451536,40.6096820847845],[-73.800522212741,40.6100895876843],[-73.799111687065,40.6099758397251],[-73.7981213375834,40.6097493361677],[-73.7965001695497,40.6088586300486],[-73.7944286392332,40.607296570736],[-73.7938584668442,40.6067951496129],[-73.7937095126954,40.6057936457704],[-73.7942197953027,40.6057629391296],[-73.7948502266808,40.6051299109199],[-73.7966522282761,40.6040046098581],[-73.7982430072021,40.6036157840262]]],[[[-73.835729326716,40.6114001763453],[-73.8357480278436,40.6113868517486],[-73.8365298010926,40.6131694115108],[-73.8362888612553,40.6137705572539],[-73.8362659614021,40.6137703267635],[-73.8357188972755,40.6137467976364],[-73.8354596524677,40.6133162787496],[-73.8349772472787,40.6125051498093],[-73.834967956902,40.6124870389131],[-73.8350586121855,40.6117762781719],[-73.835729326716,40.6114001763453]]],[[[-74.2017737768804,40.6141433609266],[-74.2006326299069,40.6138021555818],[-74.1986215077,40.6140494849305],[-74.1982303039702,40.6138936247364],[-74.1979611812875,40.6134142984893],[-74.1979900441575,40.6127298389433],[-74.1990492638787,40.610831846075],[-74.200211141274,40.6087453696527],[-74.1998517675496,40.6062925203144],[-74.1986201126164,40.6045092778673],[-74.1980192789301,40.6029826427234],[-74.1980791372708,40.6019290410308],[-74.1983484629728,40.6017687519998],[-74.198979321949,40.6020163591461],[-74.2022830452896,40.606228242389],[-74.2030033162811,40.6080349476132],[-74.2022840289449,40.6137324833526],[-74.2017737768804,40.6141433609266]]],[[[-73.8491303896329,40.614205490692],[-73.8492187200765,40.6100894622033],[-73.8499383128399,40.6093128829372],[-73.8510338963638,40.6087967837871],[-73.8521294628197,40.6082806738314],[-73.8531787741232,40.6072280845263],[-73.8535692636924,40.6060788648045],[-73.8540497635547,40.6057142806964],[-73.8546189594749,40.6056928997825],[-73.8558970887494,40.6061199582001],[-73.8559405007338,40.6066068503396],[-73.8555810802971,40.6070627273556],[-73.8558224306645,40.6080290341381],[-73.8571431823042,40.6091231340656],[-73.8577446942184,40.6111109660544],[-73.8573551164393,40.6113413357407],[-73.8551929146696,40.6114550581893],[-73.8546469437927,40.6118009802557],[-73.8543534111888,40.6119872490713],[-73.8526709034925,40.6118714578288],[-73.8523422755071,40.6121654759213],[-73.8523422234048,40.6132915444934],[-73.8514121796249,40.6139309170623],[-73.8494607334005,40.6144159772607],[-73.8491303896329,40.614205490692]]],[[[-73.8419844397698,40.6130890888992],[-73.8401518703019,40.612422089781],[-73.8395217254863,40.6126319668616],[-73.8388914001094,40.6133643335964],[-73.8383519132722,40.6134580046129],[-73.8376898908404,40.6120099782175],[-73.8376292294059,40.6095410246964],[-73.8398198341083,40.6068424610007],[-73.8406306301276,40.6052380684946],[-73.8415001651866,40.6045080897902],[-73.8443216171872,40.603635491908],[-73.8457319470304,40.6031991631188],[-73.846332311796,40.6033402884273],[-73.8478941991058,40.6046170736128],[-73.8489157785183,40.6050957018373],[-73.8498460693349,40.6059878064309],[-73.8498463549992,40.606402203005],[-73.848885729872,40.6068475677806],[-73.8479250921684,40.6072929241324],[-73.8475195019193,40.6076807512855],[-73.846874994839,40.6083004151187],[-73.8457963481514,40.6107940214585],[-73.8463659483135,40.6114393181427],[-73.8459770065416,40.6124894345598],[-73.8461876632724,40.6138157954278],[-73.8460673132788,40.614111875277],[-73.845407068613,40.6155556548969],[-73.8449873649324,40.615686587593],[-73.844147212868,40.6159484406229],[-73.8444471594431,40.6146632190978],[-73.8443259084393,40.6140674426528],[-73.8429456892261,40.6137293192211],[-73.8419844397698,40.6130890888992]]],[[[-73.8552251013062,40.6137255324919],[-73.8556744466961,40.613630890106],[-73.8569665869941,40.6141121269058],[-73.8573269075427,40.6143859476351],[-73.8573276414663,40.6148634086978],[-73.8558567355285,40.6159388844438],[-73.8550164029027,40.6160837046657],[-73.8542952731219,40.6153919051322],[-73.8542945607579,40.6149144451186],[-73.8552251013062,40.6137255324919]]],[[[-73.8629772172551,40.6230358509361],[-73.8633076427694,40.62298505186],[-73.8637292598615,40.6242684121568],[-73.8632486270485,40.6247231186863],[-73.862948536743,40.6248147556142],[-73.8623482779786,40.6250025290379],[-73.8611175384286,40.624981393611],[-73.8612671941617,40.6245234338564],[-73.8629772172551,40.6230358509361]]],[[[-73.7999103261835,40.6197223616834],[-73.8001207502506,40.619607436859],[-73.8009007520219,40.6202010896872],[-73.8012610438245,40.6209615448191],[-73.8012167236433,40.6212088197082],[-73.8010605784806,40.6220900343127],[-73.8010211720841,40.6223103335906],[-73.800359712896,40.6232673781589],[-73.7991884328347,40.624138043099],[-73.7970293760667,40.625448840274],[-73.796549328057,40.6255159080635],[-73.7966986163791,40.6251030713698],[-73.7990384555047,40.622857274667],[-73.7994901679555,40.6220602120065],[-73.7999086876564,40.61973135342],[-73.7999103261835,40.6197223616834]]],[[[-73.8440741052752,40.6222491829815],[-73.8445994966473,40.622033730022],[-73.8450499406768,40.6223084905842],[-73.8457722750985,40.6240453484222],[-73.846525474735,40.6251068697267],[-73.8467667056264,40.6259470717246],[-73.8465570424324,40.6261071316311],[-73.8454149522279,40.626086714488],[-73.8431593571096,40.6240462375151],[-73.8429191107717,40.6231519862445],[-73.8433348537802,40.6226967146884],[-73.8435487112083,40.6224646338823],[-73.8440741052752,40.6222491829815]]],[[[-73.8035692604555,40.6141750265884],[-73.8038844595257,40.6140251457785],[-73.8041271367048,40.6141717942857],[-73.8044545420831,40.6143733710162],[-73.8049946945719,40.6165680332444],[-73.8054446831556,40.6170231140462],[-73.8056604593851,40.6177685486831],[-73.8060350541637,40.6190561358852],[-73.806065715461,40.6191600508304],[-73.8063302522441,40.6200726457642],[-73.8067061891057,40.6213692530306],[-73.8067357167291,40.6231982885364],[-73.8065573086187,40.62350723921],[-73.8055071744583,40.6253386270393],[-73.8046358185142,40.6254287079243],[-73.8035555611474,40.6260030774972],[-73.8029250704804,40.6267983034034],[-73.8005519110443,40.6271880783856],[-73.7990805245078,40.6268214590847],[-73.7975786734051,40.6260941631392],[-73.7979397431487,40.6256565042074],[-73.8010605461413,40.6238692164547],[-73.8017813237825,40.6230659284928],[-73.8021124176434,40.6202496946148],[-73.8016324855164,40.6191546851992],[-73.8016920222601,40.6176418709384],[-73.8032540613852,40.6143249070619],[-73.8035692604555,40.6141750265884]]],[[[-73.8745919416019,40.6159787791299],[-73.8773056011583,40.6155907887448],[-73.8787469183873,40.6159110778234],[-73.8789864873955,40.6161656425081],[-73.8794050439274,40.6181786104563],[-73.8791925950576,40.6195728751628],[-73.8778404742481,40.6214245187476],[-73.8725310239822,40.6250933508207],[-73.869558814914,40.6267669184872],[-73.8666773868935,40.6280449236946],[-73.8660465027644,40.6281198088714],[-73.8656260355159,40.627638228454],[-73.8655659687661,40.6269079476616],[-73.8667309372642,40.6231267872132],[-73.8657091215948,40.6211528965102],[-73.8657370870479,40.6201982654277],[-73.8664579796736,40.618727939192],[-73.8669670756063,40.6182464717521],[-73.8680479599972,40.6177706066081],[-73.8745919416019,40.6159787791299]]],[[[-73.8122629689256,40.6284531661323],[-73.8113630061312,40.6251107574002],[-73.8112699757021,40.6232720616323],[-73.8119309408168,40.6232518358979],[-73.8124412836112,40.6237255265271],[-73.8126806558883,40.6237279872259],[-73.8126812838107,40.623358644125],[-73.8116308190703,40.6214650613206],[-73.8110024008166,40.6192334888158],[-73.8103691711863,40.6169838452785],[-73.8112695534939,40.6178759500514],[-73.8122606431873,40.6201562935905],[-73.8133716265301,40.6239332749099],[-73.8140350548253,40.6251111951214],[-73.8153858919422,40.6256115160917],[-73.8164069413487,40.6264597746489],[-73.816407970818,40.626820125501],[-73.8149958120048,40.6265263839391],[-73.8134349577577,40.6266184642857],[-73.8129837268039,40.627145330975],[-73.8130749561109,40.6285876310422],[-73.8126238590062,40.6287721738522],[-73.8122629689256,40.6284531661323]]],[[[-73.8475180008345,40.6279814882387],[-73.8488986997481,40.6261575144813],[-73.8486546571298,40.6239299748974],[-73.8479029675613,40.6226072349057],[-73.8482219539288,40.6215879468958],[-73.8482626134752,40.621457728067],[-73.8491494222388,40.6210206435551],[-73.8502449294059,40.6204775269713],[-73.8561292304868,40.6192837541147],[-73.8608420278259,40.6174475354809],[-73.8610821879255,40.6186210151423],[-73.8607521298222,40.6193474528502],[-73.8610535945501,40.61978283547],[-73.8606937213624,40.6206981581752],[-73.8611451867764,40.6216124728453],[-73.861145638629,40.6223691945359],[-73.8602757137011,40.6234686656249],[-73.8600056145497,40.6234479831268],[-73.8602748297589,40.6219552222186],[-73.8597625025861,40.6205358256373],[-73.8588914853068,40.6197885242538],[-73.8581709457191,40.6199255417704],[-73.8579015984575,40.6203823145716],[-73.8594032573208,40.6218475260345],[-73.8594639106704,40.6227129450484],[-73.8591046779816,40.6232409014258],[-73.8583229469534,40.6235845117691],[-73.8578434846452,40.6235347290293],[-73.8575415977091,40.6226038645987],[-73.8562802363878,40.6206545474745],[-73.8555890438621,40.620629685019],[-73.85561942219,40.6216209256705],[-73.854869184299,40.6219377984525],[-73.8542088228522,40.6217510800879],[-73.8527063501153,40.6207722545034],[-73.8520767541704,40.6207750085077],[-73.8518064753559,40.6210245614679],[-73.8526471340701,40.6219878189812],[-73.8561906563876,40.6232210943244],[-73.8561619453328,40.6235180918195],[-73.8548702658706,40.6242980459775],[-73.8563115399805,40.6247987848534],[-73.8589874092094,40.6250955019279],[-73.8591688787783,40.6258089681772],[-73.8587182056784,40.6264981740125],[-73.8561671510699,40.6282386147228],[-73.8552665046576,40.6281846507026],[-73.8549960677396,40.6273171522321],[-73.8540046169235,40.6269559879593],[-73.8536447500241,40.6271280837824],[-73.8532535409043,40.6273178844705],[-73.8534938770738,40.6283021999252],[-73.8527437433873,40.6283488034004],[-73.8500713272823,40.6278447797312],[-73.8476092004971,40.6294688048821],[-73.8470689626684,40.6294273801915],[-73.8475180008345,40.6279814882387]]],[[[-73.8138258192293,40.6274152277897],[-73.8143060945129,40.6271679199704],[-73.8151759053547,40.6273750324482],[-73.8157174475372,40.6277589427873],[-73.8170988426451,40.6292955363175],[-73.8170678408864,40.6313041169845],[-73.8167688186777,40.6318325569772],[-73.8161374377803,40.6317630283112],[-73.8145753672142,40.6301615105865],[-73.8138244510952,40.629748419679],[-73.8138258192293,40.6274152277897]]],[[[-73.8369489289531,40.6307132462132],[-73.8404569893764,40.624775860287],[-73.8420825600533,40.6261524534941],[-73.8432233539888,40.6275331792556],[-73.8437650048675,40.6286916934211],[-73.8437950481238,40.629520778478],[-73.8429252839944,40.6301606829332],[-73.8421146155359,40.6314858216879],[-73.8416335551248,40.6313548797363],[-73.8412729848445,40.630324291505],[-73.8404327582199,40.6302798267135],[-73.8397416941533,40.6306692623158],[-73.8386618796559,40.6327664055637],[-73.8377906521709,40.6329738476781],[-73.8377756395259,40.6329872095547],[-73.8373954662094,40.6333031857986],[-73.8371697716808,40.6334900934275],[-73.8371607481038,40.6334990110481],[-73.8362894209057,40.6337965259382],[-73.8360796535071,40.6337043273255],[-73.8361426829007,40.6320744208905],[-73.8361684483797,40.6313990417992],[-73.8369489289531,40.6307132462132]]],[[[-73.7378078780791,40.6330730949982],[-73.740172819727,40.632481854701],[-73.7402860119444,40.6331046753334],[-73.7400392887533,40.6335704228688],[-73.7404764395132,40.634651708292],[-73.7390902411135,40.6349518678458],[-73.7378078780791,40.6330730949982]]],[[[-73.7432107809824,40.6346995344154],[-73.741861526697,40.6344100745896],[-73.7411835951015,40.634461237191],[-73.7408356659139,40.6335475851652],[-73.7410256137824,40.6331532845054],[-73.7409085821655,40.6321835956323],[-73.7415880435919,40.631537891885],[-73.7428205393482,40.6314297093888],[-73.7437551286035,40.6319173360795],[-73.7444592011738,40.6324024477001],[-73.744607124955,40.6332643669963],[-73.7456210022122,40.6337032945182],[-73.7448556519631,40.6342399860971],[-73.7447161885153,40.635017703108],[-73.7439718013517,40.6356176760431],[-73.7441189912093,40.636794884351],[-73.7438396825297,40.6372647896434],[-73.7436039223783,40.6373432992191],[-73.7433164560975,40.6373807072918],[-73.7431380560719,40.6371985953038],[-73.7429352524134,40.6368991064069],[-73.74291791942,40.6364439899177],[-73.7432107809824,40.6346995344154]]],[[[-73.8477634008072,40.6364069037611],[-73.8472818166783,40.6361318439915],[-73.8461716139715,40.6363099389376],[-73.8435591675982,40.6371125979171],[-73.843438434024,40.6365708780939],[-73.8438580622461,40.635809355225],[-73.8447892612595,40.6351250160688],[-73.8456505767337,40.6348498576237],[-73.8460808230424,40.6347145245536],[-73.8473103732229,40.6332674204448],[-73.8477009984376,40.6324695589546],[-73.8476702553937,40.6303882837745],[-73.8480297872215,40.6300225199234],[-73.8496210413563,40.6294528229626],[-73.8506125263084,40.6293816160401],[-73.8517843444605,40.6296545165249],[-73.8534964453572,40.6305723743785],[-73.8560784595036,40.6303187072453],[-73.8576407196142,40.6304062350595],[-73.8571630539366,40.6312888499736],[-73.8578511382914,40.6318496795598],[-73.8579120602373,40.6322646738276],[-73.8575212850039,40.6325580915503],[-73.8568004130395,40.6325329424258],[-73.8563468123301,40.6320464969105],[-73.8563305564167,40.6320463360203],[-73.8553291666403,40.6319598445538],[-73.8547895917682,40.6330895709853],[-73.8552102880871,40.633382013626],[-73.8551796276882,40.6337060166302],[-73.8557806976313,40.634342567846],[-73.8556604105198,40.6345485727859],[-73.8554354840508,40.6346499419779],[-73.8552105566834,40.634751311016],[-73.8552001344295,40.6347557121377],[-73.8537996788679,40.6350976612263],[-73.8528983578208,40.6350346633093],[-73.851575648752,40.6344179504287],[-73.8504942945423,40.6342090075723],[-73.850706444273,40.635715541035],[-73.8492647317853,40.6365209632426],[-73.8480346426157,40.6382563546448],[-73.8470837821756,40.6388369254564],[-73.8465773542393,40.6389309636189],[-73.8450936895295,40.6392044119885],[-73.8447838525031,40.6389986225064],[-73.8448432410249,40.638940661022],[-73.8449432324992,40.6388425669455],[-73.8465013971904,40.6371600323535],[-73.8468623797974,40.6368843723924],[-73.8478239544439,40.6368399167411],[-73.8477634008072,40.6364069037611]]],[[[-73.8234371450841,40.6391975598931],[-73.8202508019067,40.6289944541278],[-73.8199805922625,40.6288115243204],[-73.8194714118881,40.6287702873909],[-73.8176085090081,40.6282197322295],[-73.8173983229945,40.6279022824655],[-73.8180297416212,40.6264583728784],[-73.817758987598,40.6258880659813],[-73.8159536604395,40.6245092889263],[-73.8161338570956,40.6240967432837],[-73.8170346795777,40.6240519204813],[-73.8191069770554,40.6243704044536],[-73.8191978191886,40.6236596596766],[-73.8184468572554,40.6228322057544],[-73.8158945018864,40.6218331507569],[-73.8153834413381,40.6209811091698],[-73.8154743176072,40.6202703678753],[-73.8172151798643,40.6191801557493],[-73.8172757047549,40.6182619053954],[-73.8163742498589,40.6148294296292],[-73.8156240622735,40.6145514844407],[-73.8151128552998,40.6142129263478],[-73.8151133763227,40.6136814282989],[-73.8154442402149,40.6132704285467],[-73.8159543189046,40.6130864784655],[-73.8152936699969,40.6111698941515],[-73.8148435152248,40.6110571743693],[-73.814573617296,40.6112796193016],[-73.8143327385442,40.612033864612],[-73.8139127815387,40.6122187327549],[-73.8137026620005,40.6119012765002],[-73.8141529461299,40.6107528061391],[-73.8150538611385,40.6100233500402],[-73.8149035361605,40.6083282017192],[-73.815520779372,40.6068841554463],[-73.8163735069521,40.60540648422],[-73.8166843330236,40.6057519936109],[-73.8169760609121,40.6061333404533],[-73.817675904214,40.6059513253492],[-73.8188275084756,40.6048235235251],[-73.8183547386163,40.6029764396186],[-73.8192549700069,40.5998416571098],[-73.8195557484219,40.5976916843873],[-73.8200663876603,40.5967960442543],[-73.8213567582772,40.5954939650255],[-73.8227663110777,40.5948056678345],[-73.8254378477321,40.594850876555],[-73.8298810678409,40.5944455344725],[-73.8324624145391,40.5945797526943],[-73.8338129588052,40.5948996847767],[-73.8348931964091,40.5955592007249],[-73.8349527520175,40.5962985046453],[-73.8342639229593,40.597003233159],[-73.8337687419303,40.597232458494],[-73.833273557308,40.5974616816789],[-73.8328328743724,40.5976148804879],[-73.8319523196797,40.5979167766475],[-73.8312182137346,40.5979949334577],[-73.8296107602804,40.5981723443371],[-73.825619032535,40.5996092418176],[-73.8254985855234,40.5987251776849],[-73.824988077439,40.5983506359955],[-73.824237890752,40.5983339952426],[-73.823989834461,40.5990431466993],[-73.8234587468718,40.6002223651599],[-73.8243128380944,40.6004652827315],[-73.8243888508388,40.6008489200723],[-73.8228499864515,40.6030493559033],[-73.8223570395326,40.6063459673327],[-73.8206979248647,40.6080631892066],[-73.8197744612442,40.6089456049439],[-73.8197079400991,40.6099133439041],[-73.8198893342094,40.6116133074748],[-73.8207044304639,40.6126531096056],[-73.8212379956067,40.6122666833723],[-73.820697341858,40.6095676105184],[-73.8214171475222,40.6086290585819],[-73.8221978877086,40.6085109011939],[-73.8230384781509,40.61070854518],[-73.8244802454358,40.6117411907363],[-73.825321621904,40.6137316282188],[-73.8260715651476,40.6145320034466],[-73.8264019735939,40.614481309056],[-73.8269719690147,40.6136583123875],[-73.8276637400555,40.6134761554797],[-73.8302159094732,40.6152406755076],[-73.8312662053303,40.6152603144982],[-73.833308101124,40.6145963047532],[-73.8336685429452,40.6143477049686],[-73.8337955620314,40.6140111670601],[-73.8339984159956,40.613477205648],[-73.834268084854,40.6134348845326],[-73.8354392661006,40.6143205257332],[-73.8391632087548,40.6163579025872],[-73.8391037106386,40.6166365692069],[-73.8385032281936,40.616837730047],[-73.8367906134606,40.6167484299368],[-73.8357407847274,40.6172963841533],[-73.8353799728003,40.6180764900578],[-73.8362210249766,40.6194272381275],[-73.8362515281704,40.620139219831],[-73.8352014056881,40.6230834351478],[-73.8349322380896,40.6231798143969],[-73.83457047305,40.6223113461189],[-73.8341202104802,40.622198700362],[-73.8335197136622,40.6232466369613],[-73.8337612230314,40.6242310049196],[-73.8334912226946,40.6247147392077],[-73.8331929191382,40.6248288377529],[-73.8316359743591,40.6254211767004],[-73.8307562380317,40.6265023070511],[-73.8325944147836,40.62665152171],[-73.8329034900385,40.6283392387686],[-73.83216416039,40.6304802988019],[-73.8312574413664,40.631876456936],[-73.8310493511224,40.6332571591122],[-73.8316037472983,40.6346500790019],[-73.832386285912,40.6353786717602],[-73.833197143915,40.6367741759856],[-73.8333478443888,40.6383071441497],[-73.832687132599,40.6388139545838],[-73.8315760270853,40.6387847041676],[-73.829622936944,40.6376208516768],[-73.8279413634957,40.6358111085561],[-73.8271005844072,40.6355413281611],[-73.8252373563371,40.6355854540517],[-73.8242462531689,40.6361338979422],[-73.8245784088385,40.6396145609704],[-73.8241273701242,40.6397090642927],[-73.8234371450841,40.6391975598931]]],[[[-74.0778311707682,40.6482375661969],[-74.0742559936167,40.6452631797898],[-74.0733851901364,40.6453733131081],[-74.072242552858,40.6445083308951],[-74.071852137849,40.6433430895324],[-74.0720921883541,40.6427684676307],[-74.0716114710995,40.6424673241817],[-74.0717619955035,40.6417388380963],[-74.0726627173742,40.6406380127573],[-74.0731129008924,40.6374796092651],[-74.0724524702753,40.6351050509274],[-74.0730522924584,40.6325604305753],[-74.0722407328712,40.629040564883],[-74.0719994453859,40.6261828998636],[-74.0713371076454,40.6242767637369],[-74.0691448374665,40.6214394341353],[-74.0674629594893,40.619957473345],[-74.066322502422,40.6192906382559],[-74.0658113897715,40.6182144834456],[-74.0642203736903,40.6173277782929],[-74.0636188348266,40.6165932088379],[-74.0622082723197,40.6156989287074],[-74.061337641316,40.6137099655072],[-74.0602561272061,40.6125390659578],[-74.0601368480043,40.6120876650579],[-74.0596264755656,40.6118132552573],[-74.0593263969382,40.6111892185953],[-74.0572546941451,40.6090913487105],[-74.0566838201719,40.6077624232283],[-74.0559334888561,40.6070085811851],[-74.0550631623813,40.606803280365],[-74.0550031872597,40.6065505486856],[-74.0533819141231,40.6054292217427],[-74.0536227326879,40.6039627867596],[-74.0532325934616,40.602292994437],[-74.0525421240797,40.6000261695215],[-74.0525423477603,40.599800954771],[-74.0538940014458,40.5991814201666],[-74.0565648571772,40.5969871213769],[-74.0584560650735,40.5949665854199],[-74.0595676871184,40.5942819669481],[-74.0597475666692,40.5937789461451],[-74.0617591281523,40.5924349819398],[-74.0647901633969,40.5894776745735],[-74.0664108068145,40.5877611097119],[-74.0730418540348,40.5806705891423],[-74.0780230518112,40.5762961629427],[-74.078533652422,40.5755705298018],[-74.0866335116073,40.569635006901],[-74.0879838771087,40.5690420827174],[-74.0938908687353,40.5629986353466],[-74.0947617027583,40.5630234735159],[-74.0952408614359,40.5627479533066],[-74.0976388583913,40.5590010467775],[-74.0988405688828,40.559451845183],[-74.1004896529623,40.5591313620339],[-74.101629407547,40.5580321498095],[-74.1021984768048,40.5570996612598],[-74.102197588371,40.5566131832774],[-74.1026774100052,40.555950261817],[-74.1045063125501,40.5533158721368],[-74.1054667139967,40.5533683486078],[-74.1066664643643,40.5539631910072],[-74.1097247041889,40.5520138624639],[-74.1125124783495,40.5483957588886],[-74.1146117872696,40.5480515006042],[-74.1152103841507,40.5476596968799],[-74.1167110764267,40.5477072036899],[-74.1196179842619,40.5447564819833],[-74.1229453970749,40.5433854068338],[-74.1253972192855,40.5411157498581],[-74.1292712048466,40.5363793436176],[-74.1362644608744,40.5295851099788],[-74.1367741487969,40.5295438712408],[-74.137013620787,40.5297438513673],[-74.1397395899577,40.5334307330167],[-74.1394085104699,40.5349687711924],[-74.1345208309079,40.5351485100493],[-74.1333197672033,40.5359232790504],[-74.1299291722832,40.5389157594104],[-74.1279475552417,40.5410269029365],[-74.1273464682306,40.5420763945947],[-74.1273461385489,40.5426709700328],[-74.12932287684,40.5455056098608],[-74.1312713792852,40.5465382527906],[-74.1325913350176,40.5468634666154],[-74.1336710318356,40.5468175073603],[-74.1353804827022,40.5465870634981],[-74.1367910568872,40.5459489705568],[-74.1379306767246,40.5459484620077],[-74.1393715771353,40.5444367128371],[-74.1397925124061,40.5441875996157],[-74.1404522899479,40.54349882981],[-74.1417425428855,40.54267960555],[-74.1421326955864,40.5416014481936],[-74.1419551525537,40.5390866844414],[-74.1407254460663,40.5380595636561],[-74.1407254837955,40.5378253361832],[-74.1413863015865,40.5372807087948],[-74.1424366342746,40.5374416500546],[-74.1436956249419,40.5367482940752],[-74.1443565738869,40.5357261854738],[-74.1451659981788,40.535795231682],[-74.1475657432557,40.5348760307076],[-74.1502662838157,40.5325716364738],[-74.151196123678,40.5324523410658],[-74.1523051998975,40.5318118426168],[-74.1544357567147,40.5302148643744],[-74.1557259988725,40.5287738742445],[-74.1595646042861,40.5272342989007],[-74.1623844779467,40.5267862968628],[-74.1631032325819,40.5261879096221],[-74.1671528971715,40.5242622291988],[-74.1684719375206,40.523325794755],[-74.1695816838833,40.5229644060251],[-74.1713806707325,40.5231935183355],[-74.1721301809882,40.5229646559483],[-74.1745889983799,40.5216128887168],[-74.1773183416228,40.5194882344543],[-74.1788173639306,40.5196250095165],[-74.1794167028202,40.5203319502873],[-74.1805553973929,40.5204931726272],[-74.1850239859254,40.5191193658327],[-74.1875427209466,40.5168037988735],[-74.1885617401605,40.515504671689],[-74.1895209369663,40.5152501404386],[-74.1912303779514,40.5132171003444],[-74.1932689598599,40.5114115503015],[-74.1936574920001,40.5106304904683],[-74.1952464545326,40.5098938216299],[-74.1959364819433,40.5098085312732],[-74.1974660173264,40.5108371505054],[-74.1993241528472,40.5114085739265],[-74.1999839070329,40.5127554548072],[-74.201992801418,40.5126882506944],[-74.2038219734574,40.5120972624666],[-74.2055007863828,40.5121178127632],[-74.2074486555157,40.5118428910711],[-74.2092773442615,40.5110356005837],[-74.2126338130823,40.5071306372894],[-74.2151203102629,40.5054358514604],[-74.2173676435755,40.5029826500746],[-74.2180568175867,40.5027080351937],[-74.2222843584841,40.5023671678466],[-74.2244419986088,40.5016519337505],[-74.2292973136677,40.502134822469],[-74.2343022772732,40.5006185293936],[-74.2348725942909,40.5002799657087],[-74.2362505093254,40.5005323091834],[-74.2369750904336,40.5001181776721],[-74.2396764628335,40.4974107826125],[-74.2416254180295,40.4975136624154],[-74.2441133399381,40.4971740932301],[-74.2452064512983,40.4969064592403],[-74.2465367879622,40.496068296877],[-74.2471696070624,40.4960679115949],[-74.2490034332733,40.4968365737251],[-74.2509672789434,40.4985204423084],[-74.2523836149226,40.4991692271395],[-74.2526212992654,40.5002833558419],[-74.2542260119597,40.5019783647573],[-74.2552119174756,40.5040747706473],[-74.2550184104819,40.5048978369627],[-74.2551537533576,40.5077365007542],[-74.2535760026982,40.5096542339882],[-74.2534842694363,40.5119418920497],[-74.2518343005163,40.5131744610492],[-74.2520132754636,40.5139323613614],[-74.2516238944155,40.5143172249429],[-74.2502132663316,40.5149837593578],[-74.2490632880206,40.5151654886047],[-74.2491247318877,40.5157424539475],[-74.2480451662237,40.5163570526631],[-74.2469656248142,40.5156473403258],[-74.2460370749325,40.5160827261029],[-74.2462474774401,40.5167957964966],[-74.2452881872094,40.5173390818339],[-74.2456186028423,40.5180078909988],[-74.2454987118878,40.5183044011351],[-74.2444196564668,40.5186036592947],[-74.2435800308152,40.5182107921595],[-74.2431001984011,40.5182346806395],[-74.2415723051383,40.5190805135015],[-74.2409734360676,40.5199774698287],[-74.2404927304911,40.520208544698],[-74.2407935942461,40.5206159173531],[-74.2413637639401,40.5208268610011],[-74.2435223203464,40.5209851376129],[-74.2434623218685,40.5215973467263],[-74.2426840143199,40.5228354735003],[-74.2435858159656,40.5246611578872],[-74.2435853632147,40.5254899674193],[-74.2430473415298,40.5267476845454],[-74.2427190063951,40.528123885935],[-74.2416121175734,40.5316661113743],[-74.2421835574852,40.5330842410183],[-74.2420325075668,40.5340471952424],[-74.2422140570857,40.5345708958691],[-74.2440149232105,40.5366547067611],[-74.2451855196539,40.5369055889032],[-74.2442560130665,40.5381877801014],[-74.2446468287241,40.5388750029311],[-74.2451569550245,40.5390585092955],[-74.2463590419101,40.5416428665598],[-74.2476194276611,40.5432456302083],[-74.246062220574,40.5457399381295],[-74.2434844365942,40.5474798229875],[-74.2420444839062,40.5467496923328],[-74.2406342097585,40.5473170054797],[-74.2375764568208,40.549837369995],[-74.2367069855421,40.5500928900019],[-74.2361076529407,40.5512600765469],[-74.2362586543501,40.5518736711052],[-74.2348191337517,40.5527920614124],[-74.2331689797787,40.5526279838676],[-74.2322694921932,40.5531805616355],[-74.2314901614634,40.5547158872133],[-74.2309211128669,40.5552886667561],[-74.2290319378581,40.5558796775193],[-74.2259112327819,40.5562281933348],[-74.223211829489,40.5556335328146],[-74.2223716064577,40.5548801582566],[-74.2206910732585,40.5547877681725],[-74.219401299123,40.5543556574457],[-74.2180825094038,40.5547701617264],[-74.217523500379,40.5550411493714],[-74.2151897167967,40.556083867264],[-74.2135733403767,40.5565008042267],[-74.2118420999746,40.5578988922276],[-74.2114537016835,40.5590403577963],[-74.2107023408984,40.5590262242593],[-74.2104627602121,40.5586822554017],[-74.2099824175549,40.5587240194624],[-74.2100126521525,40.5595440234051],[-74.2111836169051,40.5599123664886],[-74.2110336413718,40.5607401503134],[-74.2113342509035,40.5634358201757],[-74.2101660421822,40.5668511759826],[-74.2084259398998,40.5704157530109],[-74.2065368187899,40.571700066198],[-74.2017358140764,40.5719553055667],[-74.1992147820631,40.5734603531561],[-74.1985252316577,40.5741942926482],[-74.1977461713208,40.577972559554],[-74.1972958350891,40.5780865482359],[-74.1930935305631,40.5767780608658],[-74.1916302495254,40.575893994403],[-74.1887419475963,40.5765944661357],[-74.1874827880457,40.5766667043265],[-74.1867318324008,40.5764812506922],[-74.1862872642516,40.5774600747718],[-74.1858323385271,40.5781955880929],[-74.1873018951953,40.5783140303594],[-74.1902679786515,40.577600626701],[-74.1912142972095,40.5775081533503],[-74.1919879901126,40.5775856319348],[-74.1937845793583,40.5788819152532],[-74.1961555442102,40.579826320498],[-74.2002370684497,40.5796384112533],[-74.202847224119,40.5803501066208],[-74.2053985015097,40.5798001158355],[-74.2058291053478,40.5802309884215],[-74.2044090036309,40.5834148213542],[-74.2044986321401,40.5845775634849],[-74.2043789963072,40.5854505868176],[-74.2045297120523,40.5874425515201],[-74.2044407788392,40.5890905351755],[-74.2042006564688,40.5899086765098],[-74.2034196431945,40.5897501500352],[-74.2019499796267,40.5904877397907],[-74.2019188368324,40.5912442566536],[-74.1986782381068,40.5948073110568],[-74.1975987155619,40.5963853574187],[-74.197028058981,40.5987687017517],[-74.1973283630856,40.6000950655288],[-74.1963974524314,40.6014669298458],[-74.1962185089251,40.6022224167325],[-74.1960679656565,40.6033204304116],[-74.1963376003789,40.6044934352458],[-74.1972689422245,40.6059322865146],[-74.1979596766094,40.6066127318867],[-74.1985298427101,40.6071211720801],[-74.1986508260159,40.6078787405813],[-74.1977195578322,40.6095208718669],[-74.1969693756368,40.6105967057078],[-74.1961295146265,40.6118791106025],[-74.1956485988442,40.6134162494857],[-74.1959483873158,40.6144182978274],[-74.1964897866661,40.6153589641969],[-74.1979015663903,40.6165489040147],[-74.2006331859641,40.6169822223763],[-74.2013542339983,40.6183565234925],[-74.2012043689577,40.62002209195],[-74.2009346066745,40.6204616526789],[-74.2013855384893,40.6209422279746],[-74.2011456173415,40.6221026885723],[-74.2013259334736,40.6230948871541],[-74.2007847964312,40.6239830055343],[-74.2006973427434,40.6248111979203],[-74.200666570055,40.6250992621038],[-74.2014179721626,40.6260413557632],[-74.2008478123501,40.6289922554225],[-74.2002482048643,40.6300691474231],[-74.2002480027433,40.6310781145547],[-74.1987465594757,40.6327883702378],[-74.1970046030707,40.6338393031771],[-74.1956835513936,40.6355327530279],[-74.1953424350291,40.6359357681003],[-74.1945725348131,40.6368402793997],[-74.1936406979959,40.6372571888591],[-74.1926493792321,40.6384394099089],[-74.1854761439405,40.6442942448143],[-74.1849263255793,40.6442228042492],[-74.1842428154459,40.6434747713884],[-74.1839324008028,40.6427428813385],[-74.1833246105631,40.6430628991189],[-74.1836658913193,40.644173370886],[-74.1836042866537,40.6448620954466],[-74.183067846902,40.6449664091933],[-74.1791336266062,40.6445061231581],[-74.1792537250715,40.6427863290204],[-74.1783827616912,40.6425639344751],[-74.1776005276064,40.6430628548133],[-74.1769437180982,40.6427969297024],[-74.1768497255734,40.6434088469942],[-74.1756184587123,40.64363429647],[-74.1755576454625,40.6447329144225],[-74.1752272998983,40.6450278423147],[-74.1739366849397,40.6450276351066],[-74.173485682158,40.6445559625145],[-74.1729035801421,40.6442860443293],[-74.1723141173308,40.6432953813873],[-74.1721642433071,40.6428618942879],[-74.1704530110813,40.6417325567928],[-74.1689197611645,40.6419918020181],[-74.1680794123691,40.6416884717738],[-74.1673583167242,40.6417823750446],[-74.1651955454226,40.6411902234887],[-74.1642656372882,40.640246607377],[-74.1634537534091,40.6399164241687],[-74.1633201083494,40.6411496376769],[-74.1627149187323,40.6411362474414],[-74.1626321578436,40.6408383630865],[-74.1619962530303,40.6406806083837],[-74.1621513902833,40.6388529821584],[-74.1532431308856,40.6372475941458],[-74.1490679258367,40.6376583557109],[-74.1490968479956,40.638757620084],[-74.1456637986951,40.6393268661498],[-74.145098611956,40.6387281187887],[-74.1441152217229,40.638756875701],[-74.1428665482066,40.6396484844863],[-74.1420681345653,40.640354241853],[-74.1404732512368,40.6405721128273],[-74.139706032492,40.6406294655447],[-74.1386681405723,40.6406983094627],[-74.137381444065,40.6408598772624],[-74.1371106271596,40.6412272088312],[-74.1344074877736,40.6418646262699],[-74.1338670648919,40.6418155347058],[-74.1334457801765,40.6414700502684],[-74.1322143309575,40.6415869319525],[-74.1313131662172,40.6414270161682],[-74.1288814959134,40.6405078542492],[-74.1278910709733,40.639824739798],[-74.1267187910871,40.6401672246074],[-74.1241169726819,40.6403997789917],[-74.1227645895644,40.6411732716676],[-74.1217238751381,40.6415121995706],[-74.1206249974921,40.6417200507603],[-74.1186505121757,40.6421869726344],[-74.116751673091,40.6428571310748],[-74.1130446762564,40.6450448592724],[-74.1116428265095,40.6457412673566],[-74.110337028226,40.6462717394142],[-74.1092780537448,40.6465833880778],[-74.1085525743214,40.646663375965],[-74.1029590749659,40.6466606373417],[-74.1019908977022,40.6464819558968],[-74.1000694749713,40.6461697274049],[-74.0986407000203,40.6461630982241],[-74.0983304758201,40.6462552680435],[-74.0948981891893,40.6465437413683],[-74.0918326370783,40.6475872105417],[-74.0869924927679,40.6496886143988],[-74.0859137679269,40.6499188149132],[-74.0851302636243,40.6499666669027],[-74.0844251669747,40.6498484756295],[-74.0798407406863,40.6486409523585],[-74.0788142079634,40.6484616116847],[-74.0778311707682,40.6482375661969]]],[[[-74.0440594702941,40.6902942418151],[-74.0436181944703,40.6898581822506],[-74.0433715000253,40.6893156298376],[-74.0435799073746,40.6887588286205],[-74.044237070819,40.688475994631],[-74.0451257849094,40.6887085550116],[-74.0459068862186,40.6891744409989],[-74.046572329435,40.6895042401237],[-74.0468046050213,40.6898664963344],[-74.0474904867071,40.6896964865307],[-74.0476495433096,40.6899545400083],[-74.0475197942432,40.6899759920282],[-74.0474111978068,40.6898624905074],[-74.0468989901099,40.690042940486],[-74.0471593748799,40.6904054280809],[-74.0472469561285,40.6908520709804],[-74.0471752876368,40.6910541708869],[-74.0464382271327,40.6911291672265],[-74.0457300070408,40.691100798656],[-74.0447610922602,40.6907324522858],[-74.0440594702941,40.6902942418151]]],[[[-74.0160720156462,40.6870324411765],[-74.0237687603393,40.6839897986665],[-74.0253307006496,40.6842011715139],[-74.0260224824702,40.6845403195404],[-74.0267120131126,40.6856451663999],[-74.026622072888,40.6860317742109],[-74.0262607462262,40.6866683330984],[-74.020456291001,40.6919072524198],[-74.0198556702155,40.6931183038966],[-74.0171800605997,40.6933748375041],[-74.0157360304586,40.6932814686457],[-74.0138116495755,40.6924542954759],[-74.0135017721249,40.6921994120917],[-74.0132114411167,40.6918230808101],[-74.0128074408857,40.6908286970728],[-74.0125916907072,40.6901106790044],[-74.0126415346291,40.689088641382],[-74.0129143610657,40.6882937217031],[-74.0134256488878,40.6878296475962],[-74.0160720156462,40.6870324411765]]],[[[-74.0398600727163,40.7009299743725],[-74.0376171043176,40.6993798715256],[-74.0379925480041,40.6990451802394],[-74.0381138888394,40.698375058439],[-74.0389593463539,40.6983820944723],[-74.0393632001596,40.6981287109904],[-74.0411726811279,40.6995220398807],[-74.0417065310367,40.6991796425242],[-74.0398394824316,40.6977768348826],[-74.04162225469,40.6964899107297],[-74.0436261760016,40.6980469670596],[-74.0426812938498,40.6988363927693],[-74.0429343923845,40.6990366759247],[-74.041001052603,40.7005025396216],[-74.04070398962,40.7003244083092],[-74.0398600727163,40.7009299743725]]],[[[-73.9575449647805,40.7520733889034],[-73.9614403886359,40.7495275819219],[-73.9616727118329,40.7498224436759],[-73.9615764950795,40.7506773760575],[-73.9595012529242,40.7535774188951],[-73.9575772322655,40.7553167040854],[-73.9535162722595,40.7601715303269],[-73.952642846597,40.760812214931],[-73.9488830530782,40.7657777029521],[-73.9431660713038,40.7716800519765],[-73.9416009689236,40.7721161341936],[-73.9404269714586,40.7728260363166],[-73.9400355602179,40.7725702095577],[-73.9403062702237,40.7717529328959],[-73.9400967660315,40.770769098709],[-73.9404879940158,40.7699168942968],[-73.9427142663266,40.7682257112603],[-73.9483407383445,40.761565851676],[-73.9515891299552,40.7585055146005],[-73.9524916277953,40.7567660767149],[-73.9575449647805,40.7520733889034]]],[[[-73.9375372636661,40.7805376584389],[-73.9395549516594,40.7796013227923],[-73.9396454955519,40.7799624881244],[-73.9390730656966,40.7805607893015],[-73.9390124348049,40.78101965756],[-73.9386211699896,40.7814034206266],[-73.9380500624545,40.7814522196052],[-73.9375372636661,40.7805376584389]]],[[[-73.8968951266265,40.7961823030992],[-73.8975880412226,40.7958556147105],[-73.8990622197229,40.796221006625],[-73.8990627892548,40.7965453109808],[-73.8981879110165,40.7973026703228],[-73.8977671581037,40.7973887371244],[-73.8967137136515,40.7969372673606],[-73.8968951266265,40.7961823030992]]],[[[-73.8874100526967,40.798442447275],[-73.8839190566705,40.7957873350217],[-73.877989596382,40.7944506807866],[-73.8745904962126,40.7920033701615],[-73.8718378102471,40.7907693915649],[-73.8707849892257,40.7890295038893],[-73.8710981185775,40.7869426399492],[-73.873641625541,40.7860351233379],[-73.8795849809703,40.7857461349372],[-73.8887290660964,40.7871857612243],[-73.889107040337,40.7873965894873],[-73.8900557663799,40.789720851003],[-73.8902066384319,40.7900916421613],[-73.8904318397854,40.7902694692703],[-73.8919239783033,40.7903468587089],[-73.8922622083808,40.7905437828252],[-73.892801692523,40.7933865753798],[-73.892047935931,40.7968385333149],[-73.8917154191387,40.7972317066106],[-73.890359710458,40.7979393477986],[-73.8887943610411,40.7978882576332],[-73.8882521756648,40.7983244438911],[-73.8874100526967,40.798442447275]]],[[[-73.8202712861901,40.8004873417083],[-73.8133776425476,40.7970115622767],[-73.8128948897105,40.7970786648997],[-73.8120821677033,40.797286502863],[-73.8061818245081,40.7961356346907],[-73.8053996254576,40.7956320886107],[-73.8048878929694,40.7956628248202],[-73.8034123193854,40.7963952245761],[-73.800101086129,40.7960455647874],[-73.7960445979365,40.7949989090566],[-73.7950178990253,40.7945017504749],[-73.7951818244966,40.7927693722698],[-73.7952059182108,40.7914364012678],[-73.7941039997676,40.7892448967752],[-73.793089030159,40.7888829671174],[-73.7908910377117,40.7902382306755],[-73.7892643091064,40.790644569301],[-73.7855366177826,40.7905014496032],[-73.7844185161895,40.790458521251],[-73.7833942957301,40.7906459132103],[-73.7827321672971,40.7911253790115],[-73.7814954485606,40.7911033230036],[-73.7807335316726,40.7931896970997],[-73.7807053012165,40.7933155143094],[-73.781009537247,40.7943817005328],[-73.7817870075659,40.794889865629],[-73.7817879130677,40.7950024780715],[-73.7814250502868,40.7957238123108],[-73.7799040497972,40.7962122080218],[-73.7793365696591,40.7966566210311],[-73.7776955695189,40.7966572732034],[-73.7761807018277,40.7961232487601],[-73.7746596124049,40.794760380364],[-73.7736966552513,40.7926197044289],[-73.7724442851676,40.7913947840889],[-73.7722543516721,40.7902442130128],[-73.7707666220857,40.788489787908],[-73.7710020507587,40.7880148573135],[-73.7718861816445,40.7874297222735],[-73.7734285970722,40.7869371545072],[-73.7745816970288,40.7870710114071],[-73.774203659906,40.7863598501753],[-73.772288200192,40.7843036288439],[-73.7700342202446,40.7816981777197],[-73.7700268720256,40.7816896832856],[-73.7684937667375,40.7801194139131],[-73.7674687063534,40.7793968217829],[-73.7672840091377,40.7777688581035],[-73.7662320540922,40.7761406368428],[-73.7650450148859,40.7740110024025],[-73.7616486473917,40.7711775531786],[-73.7599310128729,40.7694385367201],[-73.7585835183872,40.7676314083154],[-73.7567136607502,40.7666789308441],[-73.7555411455054,40.7664951411422],[-73.7539700127347,40.7654512514416],[-73.7549075700237,40.7670738475315],[-73.7554682606948,40.7679807203842],[-73.7549661069426,40.7694526631576],[-73.7555666109471,40.7708464115442],[-73.7554757544409,40.7713498952194],[-73.7538800482557,40.7721704511479],[-73.7537117794299,40.7724279713586],[-73.7085058701669,40.7467468650938],[-73.7292467106392,40.7126926605343],[-73.7257899035944,40.6602675501076],[-73.7396171308754,40.6078012063863],[-73.7354845248356,40.6001813643091],[-73.7355100019553,40.598829140619],[-73.7354925081635,40.5964642097161],[-73.7359157152736,40.5948968560372],[-73.7368389857563,40.5945826557983],[-73.7379732821774,40.5945545237874],[-73.7400527428213,40.5945006669354],[-73.7423945034433,40.5947964599227],[-73.7437444530247,40.5947300822944],[-73.7454261827799,40.5950906970612],[-73.7548473577469,40.5913820435043],[-73.7627996219343,40.5915035123221],[-73.767272664314,40.5909297370549],[-73.7723747250219,40.5910921667578],[-73.7759769755994,40.5907970716036],[-73.784620046037,40.5891496668749],[-73.7901436124458,40.5878023057818],[-73.8009169944606,40.5860498472485],[-73.8074682075033,40.5853969682301],[-73.8106449647583,40.5842901289452],[-73.8187632654581,40.582152799638],[-73.828309065501,40.5793897721869],[-73.8336879294873,40.5779442636287],[-73.8519886815433,40.5713260500382],[-73.8579280367747,40.5688084446803],[-73.8716354009489,40.5647090632641],[-73.8796220769,40.5617508698993],[-73.8850350553075,40.5600555520844],[-73.8908342895243,40.5585573732383],[-73.8921686919631,40.5579936210186],[-73.8930259201027,40.5580288622404],[-73.8948492881271,40.5573571539616],[-73.9001068642786,40.556497444919],[-73.904673688079,40.5571128745079],[-73.9079878022325,40.5565947139392],[-73.9133298442753,40.556158607163],[-73.9187765562184,40.5547638101364],[-73.9350542717118,40.548329633509],[-73.9386245126208,40.5462724677411],[-73.9404301874273,40.545550326282],[-73.9396655845766,40.5516331796375],[-73.9387964313015,40.5537602561227],[-73.9360360036549,40.5559780305867],[-73.928778023096,40.5585279900894],[-73.9271742410563,40.5602157479605],[-73.9265510258448,40.5612414506927],[-73.9254608420941,40.5617358026532],[-73.924324394208,40.5619369321604],[-73.9214847656959,40.5618158716716],[-73.9174712897375,40.5625215552184],[-73.9134371695956,40.5646818010634],[-73.9114044824319,40.5652392221113],[-73.9101433483843,40.5647003282239],[-73.9094841888834,40.5640094518581],[-73.908164897006,40.5637807862125],[-73.9076246169564,40.5631360654581],[-73.9059745078992,40.5629132556046],[-73.9019830855811,40.5632042112528],[-73.8965824392458,40.5649680055065],[-73.8958328661081,40.5656545099794],[-73.8951421550794,40.5669811859358],[-73.8929500358174,40.568284473345],[-73.8909616140377,40.5679771289462],[-73.890220434758,40.5681051420852],[-73.8894247654698,40.567732647361],[-73.8884050374852,40.5680066137181],[-73.8877046542958,40.5678106927335],[-73.8866875413069,40.5682828588138],[-73.8856294328018,40.5684213009736],[-73.8846400579922,40.5685108498931],[-73.8841965516516,40.5680966749853],[-73.8813385454055,40.5687582007884],[-73.8805719015825,40.5687732978433],[-73.8788996032395,40.5688156397281],[-73.8748918154135,40.5704973312748],[-73.8686611473152,40.5735489707688],[-73.8640304559931,40.575791724106],[-73.8625106269066,40.5768487964312],[-73.8571547220623,40.5796336551299],[-73.8524796845079,40.581961084521],[-73.8508820720976,40.5824091487135],[-73.8472780751951,40.582463333912],[-73.8450504634963,40.5820537181849],[-73.8381997054254,40.5823453765634],[-73.834852289826,40.5834872889154],[-73.8314382210291,40.5844212320498],[-73.8293878819702,40.5847743324956],[-73.8285540477571,40.5850316341332],[-73.8283660402496,40.5858179788993],[-73.8279942329434,40.586260133236],[-73.8258428486863,40.5869814972081],[-73.8237521707795,40.5875232671981],[-73.8227816426246,40.5876124767444],[-73.82164047499,40.5871143803454],[-73.8210102241732,40.5873827122407],[-73.8187497808473,40.5885037122519],[-73.8134666727788,40.5910260276177],[-73.8122019697245,40.5913328363837],[-73.8101909651969,40.5921994876192],[-73.8098003013546,40.5926549008133],[-73.8097702841494,40.5933482515574],[-73.8094710238872,40.5934802966645],[-73.8089901808684,40.5934393060035],[-73.8053893568156,40.5917445529209],[-73.8040979675092,40.591514986795],[-73.804368726024,40.5919051579463],[-73.8077289129718,40.5935073738704],[-73.8078798982115,40.5942386254979],[-73.8068897265964,40.5954265430945],[-73.8061087941704,40.5955626126407],[-73.8046986817195,40.5949444582432],[-73.8043082747953,40.5945530504069],[-73.8037971738228,40.5931424230997],[-73.8028081475596,40.5927718365533],[-73.8023278579031,40.5928659525368],[-73.8026570374541,40.5941215552159],[-73.803257770529,40.594398036276],[-73.80493722036,40.5967306215026],[-73.8047280485444,40.5976923732967],[-73.8034670501424,40.5990666380327],[-73.7934414814658,40.5997461117831],[-73.7917000335071,40.6005476892028],[-73.7872253121762,40.6038880143164],[-73.7863557950835,40.6029510031315],[-73.787196186998,40.6023112131304],[-73.7875277102537,40.6012156505393],[-73.7896288750931,40.5998864013482],[-73.7903796492783,40.5987231525951],[-73.7909509445614,40.5956301899554],[-73.790650481455,40.5949243780917],[-73.7903816417416,40.5947594093031],[-73.7898407661091,40.5948528390071],[-73.7893304942816,40.595378997847],[-73.7889686304273,40.5980777720055],[-73.7836545646174,40.6024901839743],[-73.7833529813119,40.6033157939637],[-73.7834730258782,40.6040287330483],[-73.7841033844929,40.6050353177408],[-73.7791172118465,40.6092437679708],[-73.7780962612547,40.6098095195991],[-73.7757255533211,40.609766403035],[-73.7749747746442,40.6095332304875],[-73.7742246732972,40.6089397195103],[-73.7746754299404,40.6082058018757],[-73.7743166895283,40.6066525284775],[-73.7744071840134,40.6052571654979],[-73.7747372762528,40.6045760181681],[-73.7754881806937,40.6040704933594],[-73.7775921150392,40.6008226738563],[-73.7780424548642,40.6004310623947],[-73.7800824579075,40.6003625364109],[-73.7815840646685,40.5991081777237],[-73.7817051360092,40.5984608391869],[-73.7800542427228,40.5971191606617],[-73.7797248781188,40.5972778360967],[-73.7775622280897,40.5988945285775],[-73.7764202932938,40.6009994483769],[-73.7755491268942,40.6016208158477],[-73.7750989397828,40.6015980265579],[-73.7747390342558,40.6011617997354],[-73.7738401018291,40.5985307756153],[-73.7734501862834,40.5981212521584],[-73.7729706530083,40.598008057463],[-73.7703887924738,40.5983049139873],[-73.7680779653386,40.5978388768928],[-73.7677777896932,40.5979347693989],[-73.7682580982144,40.5983272590003],[-73.7711390653991,40.598961512529],[-73.7714085123736,40.5993337283413],[-73.7709252555817,40.6040220376192],[-73.7705649017954,40.6049821165636],[-73.7700242049276,40.6054628223023],[-73.7700231907296,40.6072915437834],[-73.7690912946235,40.6094436655581],[-73.7712517949841,40.6104756207428],[-73.7724517825069,40.6114342737711],[-73.77341236182,40.611507536805],[-73.7738030148826,40.6117999566568],[-73.7738627250012,40.6125753238598],[-73.7732618832302,40.6135148398518],[-73.772030043244,40.6141323485884],[-73.7688173767338,40.6143864263416],[-73.7674053463797,40.6142722751813],[-73.7660856493622,40.6137176753521],[-73.7652752414151,40.6136729819703],[-73.7651558103981,40.6123744781986],[-73.7648561225378,40.6121190357314],[-73.7621547222902,40.6114955583945],[-73.7615832976497,40.6116335701486],[-73.760623477413,40.6111998761222],[-73.7601139116614,40.610789024775],[-73.759333465224,40.6105644409557],[-73.7569013547457,40.6100067919828],[-73.7545814510329,40.6102520601747],[-73.7545597243794,40.6104274922128],[-73.7543792348725,40.611911952326],[-73.7563685549675,40.611568540399],[-73.7572614677835,40.6119835331654],[-73.7574922979806,40.6126841765523],[-73.7594676861039,40.6122955185105],[-73.7607835284506,40.6124943158687],[-73.7634816336778,40.6145005977644],[-73.7626914099769,40.6152038094246],[-73.7572380145681,40.6171181348494],[-73.7579131434199,40.6176073518659],[-73.7578441096869,40.6181831538193],[-73.7581219074003,40.6183437894255],[-73.7602161866531,40.6178077576657],[-73.7626134766344,40.6176262653168],[-73.7631949031172,40.6173892620771],[-73.764055607737,40.6165111351406],[-73.7665732495085,40.6153263989769],[-73.7712782503692,40.6156467950183],[-73.7714886447919,40.6162616116886],[-73.7686625143654,40.6199250133276],[-73.7674077754243,40.6210962511865],[-73.7673923441643,40.6210915825612],[-73.7668178670485,40.620869246663],[-73.766790438788,40.6204320410212],[-73.7657586203779,40.6200877066901],[-73.7652884286835,40.6201817753503],[-73.7648062247171,40.6208477546832],[-73.7637311650025,40.6212461413614],[-73.7633567004796,40.6215979693303],[-73.7634592530508,40.6222476795287],[-73.7642626676134,40.6224769853359],[-73.7642874224877,40.6226574199369],[-73.7635221198493,40.6230861433743],[-73.762878538932,40.6231648339422],[-73.7620350163887,40.6224261081054],[-73.7601886398149,40.622455852519],[-73.7605305484935,40.623027057375],[-73.7603088415865,40.6233084466659],[-73.759117547959,40.6237550889973],[-73.7583842864302,40.6236481164028],[-73.7559859427251,40.6261446932676],[-73.7549406468908,40.6264847624299],[-73.7537111551008,40.6265165470103],[-73.7519322635645,40.6275198046972],[-73.7516702097247,40.6273458117916],[-73.7484818246767,40.6296264831326],[-73.7467443993739,40.6290355906989],[-73.7465955000223,40.6288177693421],[-73.7453791829242,40.6288541002217],[-73.7450962163047,40.6284951886615],[-73.7453115577496,40.6291506451999],[-73.7467304341645,40.6306524625809],[-73.7457503641047,40.6315291512557],[-73.7434076162342,40.6306253397471],[-73.7427212162205,40.6309331611751],[-73.7412826711925,40.6310345903959],[-73.7406008885194,40.6317253103074],[-73.7386958169234,40.6325828323077],[-73.7384953839188,40.6323554298322],[-73.73751460419,40.6325564042619],[-73.7357959851176,40.6292449908473],[-73.7351817952798,40.6294454564976],[-73.7365427995291,40.6324376674484],[-73.7345256541182,40.6331993044462],[-73.7341778911188,40.63369095673],[-73.733532576453,40.6342063679684],[-73.733126037583,40.6349135755995],[-73.7327817016565,40.6346755750016],[-73.7327437478357,40.6351976498122],[-73.7332607085188,40.6354915965998],[-73.7336270280169,40.6352704048201],[-73.7341876800605,40.6345423651126],[-73.7348378249676,40.634045019258],[-73.7350398021761,40.633641851656],[-73.7367629478591,40.6333048914748],[-73.7363285549271,40.6338451482409],[-73.7362472385292,40.6344343129195],[-73.7374147124287,40.6342894431778],[-73.7382384199335,40.6354064941362],[-73.7391606789132,40.6355291802259],[-73.7395116237452,40.6354564411791],[-73.7416635110589,40.6349979710787],[-73.7424053092778,40.6351276713156],[-73.7421415091132,40.6359130382325],[-73.7409557311415,40.6375036167537],[-73.741327656127,40.6379671058812],[-73.7420555933411,40.6381281867581],[-73.7425381844814,40.638169479941],[-73.7433145381943,40.6380743391168],[-73.7441236525674,40.6378083886788],[-73.7458245649471,40.636372016728],[-73.7463640544792,40.6362157259775],[-73.7468158630497,40.6364008026047],[-73.7472375960244,40.6377206190279],[-73.7467273682144,40.6388411388498],[-73.7464893317321,40.641135714395],[-73.7470612603274,40.6426463394671],[-73.7488485214673,40.6446250723002],[-73.7548301765688,40.6476309822279],[-73.7545598833812,40.6470605351429],[-73.749587293262,40.6438538471495],[-73.7479621492848,40.6419804820817],[-73.7476584091243,40.6389323221824],[-73.7488860126556,40.6352521610279],[-73.7605443573961,40.630675421263],[-73.7646351926735,40.6291697824109],[-73.7655925614077,40.6288286858569],[-73.7667898351201,40.6282604254412],[-73.7678620840062,40.6264116126346],[-73.7680666241082,40.6260579582545],[-73.7685831778544,40.6251716238028],[-73.7696834999914,40.6210619561821],[-73.7704941199409,40.6199715483255],[-73.7718161759344,40.6197603987599],[-73.7720862023223,40.6201055932397],[-73.7715453266897,40.6213159918995],[-73.7715442073889,40.6228294095613],[-73.7746049193771,40.6262220909532],[-73.775786506708,40.6274777931446],[-73.7778680541383,40.6279727812329],[-73.7795774744621,40.6275179072919],[-73.7812823430224,40.6253198139521],[-73.7846674142019,40.620635016439],[-73.78475684598,40.6202666081094],[-73.7840065757496,40.6183669234902],[-73.7837670705219,40.6167428684083],[-73.7810064578222,40.6148039635576],[-73.7807963194194,40.6144143795271],[-73.7809765026008,40.6133622837188],[-73.7822989906839,40.6123042166489],[-73.7835295550624,40.6116685669419],[-73.7848205571949,40.6115290092854],[-73.7864718978423,40.6105013782962],[-73.7878535866994,40.6100023980957],[-73.7895821258674,40.6083764640652],[-73.7907063494792,40.6073207261555],[-73.7913371581498,40.6070795923572],[-73.7919679632271,40.6068384556428],[-73.7926888486662,40.6068459916898],[-73.793048682328,40.6070479397008],[-73.7931679220039,40.6080581418521],[-73.7953583102123,40.6103241290295],[-73.7980014592054,40.6111624288331],[-73.801242721786,40.6116915778401],[-73.8014523571322,40.6121982308975],[-73.8005515894474,40.6129095647479],[-73.7999517106703,40.6146419815217],[-73.7983896311211,40.6167968000775],[-73.7981193765611,40.6169110996685],[-73.7978491211028,40.617025398382],[-73.7975284665639,40.6176841873433],[-73.7960463496513,40.6207271444552],[-73.7950257565891,40.6221758833155],[-73.7946042508881,40.6231804396336],[-73.7947247491036,40.6237942760569],[-73.7920512119011,40.6242077672039],[-73.7910314677468,40.624043954783],[-73.7900106186647,40.6232044829459],[-73.7881185618604,40.6236350751601],[-73.7853030701818,40.6262540058818],[-73.7846363100352,40.6269181261097],[-73.7825952676411,40.6294009986203],[-73.7825929931068,40.6297297850921],[-73.7846024731934,40.6315571497621],[-73.7873923916325,40.6325729015102],[-73.7891810164149,40.6340780661889],[-73.7902674101735,40.634242593659],[-73.7921209005059,40.6356402901222],[-73.7936675191508,40.6358186052051],[-73.8098310659581,40.6433912591016],[-73.8112725161377,40.6438024756733],[-73.812203338757,40.6444156201899],[-73.8134946148757,40.6446270775953],[-73.8170785470079,40.6461096987374],[-73.8197133641267,40.6473482934157],[-73.8213647460967,40.6491128019128],[-73.823288902401,40.6538708824176],[-73.823228712582,40.6564557024425],[-73.8221322163698,40.6591110347246],[-73.8212728143071,40.659674305282],[-73.8180201017999,40.6598212351641],[-73.8122880615664,40.6594020965333],[-73.8114271763853,40.6594608048441],[-73.8113701980434,40.6598385740846],[-73.8117173043742,40.6601934758004],[-73.8181407311695,40.6606107102682],[-73.8222079614162,40.6605216322409],[-73.8235005329055,40.6595844116635],[-73.8249107774088,40.6560674456377],[-73.8248210195422,40.6547783196871],[-73.8236488474538,40.6513071309257],[-73.8228707007036,40.6483038818149],[-73.8235216936203,40.6482339422754],[-73.824278486518,40.64904340302],[-73.825121013728,40.6494753750753],[-73.8257805406399,40.6493829881958],[-73.8261415582813,40.6489452413209],[-73.8260215200031,40.6482864015375],[-73.8268022440199,40.6481952405251],[-73.8272223573322,40.6488571264466],[-73.8283344024836,40.6492647856654],[-73.8300472031679,40.6506604453326],[-73.8311888334349,40.6535276923576],[-73.8319702509511,40.6538238687659],[-73.8321812005326,40.6536818659916],[-73.8321212990729,40.6531317425247],[-73.8314601192608,40.6522151987218],[-73.8311285654625,40.6487615932784],[-73.8313082662486,40.6483760466112],[-73.831444617034,40.648314366435],[-73.8318111494328,40.6481514167278],[-73.8330816834516,40.6480336359553],[-73.8348145471093,40.6484069640362],[-73.8352662712382,40.6488709533801],[-73.8367703591459,40.6542912027829],[-73.8371015284653,40.6567628616228],[-73.8381838375842,40.6602600337168],[-73.8382754316072,40.6612879212648],[-73.837493122064,40.6619737025749],[-73.8380651800167,40.6624118655061],[-73.8392662616875,40.6621356706567],[-73.8395172069605,40.6614355310748],[-73.8355033052006,40.6456528060892],[-73.8364380642375,40.6455000732108],[-73.8405288465143,40.6448925953114],[-73.8470159180492,40.6443719759011],[-73.8488487399436,40.6443902553714],[-73.850590449312,40.6448940587211],[-73.8524246249675,40.6465608506357],[-73.8525989493366,40.6472156990649],[-73.8521580139743,40.6481436979076],[-73.8508887295122,40.6493111911686],[-73.8492559911776,40.6512362676367],[-73.849727180002,40.6514346430825],[-73.8503839823237,40.65141415667],[-73.8525475971434,40.6505168035152],[-73.8542107775863,40.6511278737501],[-73.8550306313185,40.6516449830172],[-73.8555782047898,40.6520467830983],[-73.8559705853127,40.6533118591669],[-73.8575511396141,40.6538319781188],[-73.8588451627808,40.6556374592055],[-73.8606890267667,40.6567637046204],[-73.8613516106456,40.6583196978151],[-73.8629356072911,40.6576011101273],[-73.862961606332,40.6575067766124],[-73.8632821719378,40.6563478370116],[-73.8620722733025,40.6554575962255],[-73.8612872804914,40.6553192368213],[-73.8607020676097,40.6552143729295],[-73.8599312070947,40.65494101673],[-73.8588186040895,40.6542453847981],[-73.8578172268894,40.652447301529],[-73.8574253143888,40.6520200260801],[-73.8565643124267,40.6516601751746],[-73.8560337737081,40.6508666786686],[-73.857019576816,40.649890006922],[-73.8570358480008,40.6497595447609],[-73.8571318868878,40.6490263025677],[-73.8579301954263,40.6465568606094],[-73.8571521816267,40.6456257943154],[-73.8567981627598,40.6444962282147],[-73.8568868821739,40.6437584083802],[-73.85708665312,40.6434000445282],[-73.8582236364021,40.6430869823049],[-73.8603432274846,40.6430178286658],[-73.8614946646596,40.6427228932551],[-73.8624147254618,40.6422545068909],[-73.8635251734087,40.6411934244915],[-73.8655316531222,40.6405104833791],[-73.8668817563156,40.6397399939126],[-73.8673082647344,40.6398252530869],[-73.8688726664286,40.6418584901671],[-73.8701955928897,40.6444974176255],[-73.8710014859041,40.6452755243002],[-73.8722602897218,40.6453643929841],[-73.8775883836232,40.6524204008686],[-73.8782757511224,40.652296454322],[-73.8730806258494,40.6454174413607],[-73.8731514059073,40.6443731448658],[-73.8726013342211,40.6431065858429],[-73.8693541966586,40.6385075314683],[-73.8729511669389,40.6364121664341],[-73.8735136084265,40.6363681058508],[-73.8745914699864,40.6369236274154],[-73.8768213014223,40.6388641444781],[-73.8780132885492,40.6388757280669],[-73.8794187315573,40.6397361718483],[-73.8805291893857,40.6411342502212],[-73.8799271537536,40.6412455252899],[-73.8797763535669,40.6418656507713],[-73.8812775677641,40.6425288120888],[-73.8833797728526,40.6444769740697],[-73.8849419305553,40.6440596557443],[-73.8854218420211,40.6441813975732],[-73.8869231370666,40.6457363298599],[-73.8880320740472,40.6479540954608],[-73.8885730574776,40.6481394721514],[-73.8896537532223,40.6491227840935],[-73.8910061408314,40.6493249539413],[-73.891035754693,40.6489648983449],[-73.8901658639011,40.6477494030307],[-73.8894445858983,40.647292045182],[-73.8885435011081,40.6472473449578],[-73.887545049721,40.6454090058612],[-73.8864427764432,40.6441281846267],[-73.8833208083357,40.6420711308136],[-73.8796299623116,40.6386842233347],[-73.8784891126805,40.63822272695],[-73.8780082283392,40.6376325029678],[-73.878209662067,40.6372110592373],[-73.8770791224004,40.6360920261031],[-73.8770797287633,40.6356145804366],[-73.8774398849202,40.6352036883616],[-73.8793327987173,40.6341770780391],[-73.8836905719746,40.6306969353053],[-73.8834513263599,40.6294424369626],[-73.8824611763043,40.6284599402446],[-73.8833928065091,40.6276311549556],[-73.8839038445995,40.627473939698],[-73.8848940018416,40.6284564236514],[-73.8870558011661,40.6284862792357],[-73.8880576697446,40.6279193808301],[-73.8909010864522,40.6260999632006],[-73.8937534710412,40.6230553983154],[-73.8960364378262,40.6227168949081],[-73.9011714038229,40.6250990657429],[-73.911109522405,40.6291569276871],[-73.9154038701117,40.6313954108276],[-73.9164247928557,40.6321527006887],[-73.9170248980082,40.6319691482429],[-73.9175052235974,40.6315142142601],[-73.9175059772839,40.6310097427122],[-73.9035118726676,40.6244997135174],[-73.9013807346403,40.6228759445813],[-73.9007806492508,40.621798218608],[-73.8981082430272,40.6218268109878],[-73.8973576260471,40.6215493926576],[-73.8963969263598,40.6207474664137],[-73.8960200013514,40.6192259234817],[-73.8962538983969,40.6177192246081],[-73.8961698349509,40.6160923763987],[-73.8958348217405,40.6146297875057],[-73.8952012435638,40.6142048326391],[-73.8943896974513,40.6140439231773],[-73.892589120584,40.6142699082391],[-73.8906380893814,40.6136746417769],[-73.8903674593256,40.613419803013],[-73.8907284661872,40.6128557308669],[-73.8936117366523,40.6116672228264],[-73.8936709958167,40.6114786099458],[-73.8932820163155,40.6113217385612],[-73.8917496386628,40.6116854089589],[-73.889948459026,40.6123978100468],[-73.8889586215841,40.6113162761455],[-73.8893791705793,40.610725754331],[-73.8920814125484,40.60940041441],[-73.8924436563901,40.6079535078779],[-73.8929532535828,40.6071566295352],[-73.8934941121473,40.6068825445746],[-73.8978176946266,40.6056896984419],[-73.8997394551241,40.6056269387676],[-73.9004893130277,40.6058502836087],[-73.9010000133516,40.6063325973981],[-73.9010600082361,40.6069998025642],[-73.9005178947251,40.6097873032242],[-73.9007275426478,40.610428906595],[-73.9015968621112,40.6116623407751],[-73.9039980301196,40.6133787563856],[-73.9080191911652,40.617254483455],[-73.9084404417446,40.6173395415451],[-73.9093407557803,40.6167714963647],[-73.9093707056118,40.6164744961484],[-73.9052897500059,40.6134540630708],[-73.9024392312177,40.6108415577881],[-73.9020206378549,40.6058107954886],[-73.9052331821942,40.6052377070284],[-73.9058339323371,40.6062703764264],[-73.9081946366317,40.6064728813238],[-73.9089050665793,40.6065336446766],[-73.90950608981,40.6060078123309],[-73.9085462066912,40.6052510362614],[-73.9083952457061,40.6042676742427],[-73.9108270938763,40.603632999096],[-73.9132297441049,40.6041601057292],[-73.9166208771159,40.6070656933428],[-73.9160490320639,40.6088980795411],[-73.9163789365554,40.6089642344179],[-73.9163796327498,40.6093786357234],[-73.9159892994874,40.6104920375187],[-73.9142463046299,40.6118269562023],[-73.9143967131512,40.6138552985935],[-73.9136754746742,40.614776401272],[-73.9139751077372,40.6147972357942],[-73.9163487154326,40.6133060845902],[-73.9155983931,40.611731552122],[-73.917609393136,40.610543261407],[-73.9177897038782,40.6102656850602],[-73.9174000183012,40.6098746649485],[-73.9174302672718,40.6091902966731],[-73.919111281968,40.6080259120194],[-73.919111663752,40.6078187184055],[-73.9135297508671,40.6026945281859],[-73.9106704007413,40.6021360967157],[-73.9086571612052,40.6021981742151],[-73.9036139661996,40.6028801212519],[-73.8994998367086,40.6037508718366],[-73.8984198461414,40.6038396737063],[-73.8953578962746,40.6035221633238],[-73.8935876034122,40.6036313438141],[-73.8861712381907,40.6053888222085],[-73.8849396290715,40.6055300874796],[-73.8836488811623,40.6052293482941],[-73.8831991378187,40.6049097016223],[-73.8829298570325,40.6042224466554],[-73.8829307670258,40.6023036288292],[-73.8826314672378,40.6012016875567],[-73.88182192347,40.600311014161],[-73.8812829334012,40.5991436892212],[-73.8808954406119,40.5965995159271],[-73.8795627368873,40.5921408599934],[-73.8787779282309,40.5910161813689],[-73.8789351127443,40.5901393682663],[-73.8785612491945,40.5874061353587],[-73.8762525896941,40.5849333640093],[-73.8794988145683,40.5799921407557],[-73.8879632487234,40.5776596089023],[-73.8907180780692,40.5774969084544],[-73.8949531881712,40.5764969948767],[-73.8962649979806,40.5768338444814],[-73.8979390219872,40.5786335299136],[-73.8992872189555,40.579412113969],[-73.903844235848,40.581221126081],[-73.903924327842,40.5819245575796],[-73.9030095284725,40.5825014358594],[-73.9019717317742,40.5821987980852],[-73.9007303489848,40.5809798394631],[-73.8994107507818,40.5801204672674],[-73.8982717804264,40.5798213371918],[-73.8972885249405,40.5800236595349],[-73.8967541710769,40.5805005193799],[-73.8960326038166,40.5818088848205],[-73.8960616688076,40.582466791524],[-73.8983111769414,40.5846233037491],[-73.8985507037288,40.586679550308],[-73.8991206174029,40.5873245927198],[-73.9004998574525,40.5877070788872],[-73.904163129689,40.5867058921267],[-73.9061127541299,40.5871657886056],[-73.9063535870677,40.586798715693],[-73.9075230767866,40.5866386155119],[-73.9099245627986,40.5857424193567],[-73.911845411506,40.5862469912339],[-73.9120846337645,40.5876185523407],[-73.9119632866409,40.5909145604118],[-73.9124431765472,40.5940270460489],[-73.9140624338643,40.596753865365],[-73.91574280896,40.5988145980544],[-73.9180238515536,40.6001872716579],[-73.9200047526378,40.6008454156666],[-73.9213255707528,40.6015784422082],[-73.9228870753803,40.6011245637144],[-73.9236671103893,40.6005733005296],[-73.9239077762404,40.5994764933232],[-73.9242978489913,40.5993810313693],[-73.9262181209803,40.6005069518267],[-73.9290092853827,40.6027039300726],[-73.9298502055067,40.6038918472987],[-73.9304962073837,40.603915846401],[-73.9313097459595,40.6036711339959],[-73.931951293091,40.6030464654435],[-73.9317420826479,40.6023598781334],[-73.9299703443962,40.6010822791094],[-73.9272089905865,40.5997954689054],[-73.9246274220044,40.5978976809574],[-73.922377972261,40.5953813402202],[-73.9202163463114,40.5944873239627],[-73.9176655405362,40.5923554434296],[-73.91640649597,40.5909202823504],[-73.9154157961454,40.590433531078],[-73.9144555644804,40.5894335659757],[-73.9144560423841,40.5889471060863],[-73.915176904467,40.5883052562564],[-73.9175476034175,40.5873005092089],[-73.9185382322752,40.5861386664914],[-73.9191686142461,40.5858833154549],[-73.9247813662947,40.5857014594275],[-73.9254703597445,40.5858429982532],[-73.9272711989199,40.5875803775849],[-73.9279619800172,40.5887218744794],[-73.9304825044824,40.5897992416696],[-73.9306619636216,40.5917017193918],[-73.9299717394798,40.5932087750189],[-73.9300616374836,40.594056417022],[-73.9305122539896,40.594330847208],[-73.9318153115132,40.5945546035955],[-73.9319756895375,40.5945020345882],[-73.9318483784989,40.5939152987165],[-73.9314728225229,40.5926371078722],[-73.9311610496272,40.5899046155637],[-73.9310226120554,40.5891826452875],[-73.9299127282505,40.5879201743729],[-73.9307434453095,40.5875585119722],[-73.9306164441896,40.5869537590385],[-73.9285023031858,40.5868891296043],[-73.9275123866922,40.5858889968915],[-73.9257153150512,40.5851651255884],[-73.9241296178948,40.584848582588],[-73.9211479441768,40.5848207800873],[-73.9161672117278,40.5862515783824],[-73.9143061297329,40.58634220861],[-73.9133766842309,40.5860001525188],[-73.9126255965336,40.5854075268553],[-73.9108862650058,40.5824543357963],[-73.9107974171326,40.5819219895927],[-73.9110968534646,40.581672571013],[-73.9131077070752,40.5816284443047],[-73.9152987869864,40.5818562329949],[-73.9195857712027,40.5824008819567],[-73.9238826943794,40.583067080896],[-73.9289849069026,40.5832090789838],[-73.9312638698963,40.5829328968742],[-73.9312985026454,40.5829377209869],[-73.9373344061086,40.5830654612636],[-73.948390151075,40.5828468071099],[-73.953125567993,40.5825024380752],[-73.9530001613827,40.5817355680848],[-73.9496033447309,40.5819119366465],[-73.9419948235818,40.5805948225172],[-73.9322178582701,40.5807120822699],[-73.9310244868394,40.575885934946],[-73.9348058111789,40.5756596058635],[-73.9354050853898,40.5760524998178],[-73.9369653305792,40.5756344503318],[-73.9422769601581,40.5753859110132],[-73.9450683015286,40.57556457661],[-73.9461771387962,40.5750161588031],[-73.9536796650299,40.574237528364],[-73.9561405323771,40.5745840974551],[-73.9626811093669,40.5743096803971],[-73.975642446054,40.5724073745975],[-73.9811939231187,40.5718979191335],[-73.9844346907276,40.5712598067392],[-73.9915749048477,40.5706557007187],[-73.9956254327183,40.5705648574929],[-73.9985964775698,40.570770816848],[-74.0007576112427,40.5716183167647],[-74.0019575116289,40.5716647161736],[-74.0026474923273,40.572139120461],[-74.0068766879214,40.5736529469168],[-74.0105371672957,40.5743870077975],[-74.0115865872954,40.574828400487],[-74.0122169423168,40.5753472809938],[-74.0125441608456,40.5783049163792],[-74.0112827878461,40.5797175029906],[-74.0093322668865,40.5803854629728],[-74.0076506790652,40.5805422050113],[-74.0064807401886,40.5809555633172],[-74.0056699279996,40.5815521718504],[-74.005280060963,40.5815488185757],[-74.0030899853683,40.5811335734003],[-74.0010190362617,40.5812508260682],[-73.9921813296482,40.5793543409407],[-73.9905908795056,40.5795386478957],[-73.9886703568867,40.5793777163818],[-73.9877824863144,40.579541106128],[-73.9870811527074,40.5800664698417],[-73.984856941132,40.5819207478987],[-73.9839354358388,40.5819126482328],[-73.9828749791374,40.5816195456856],[-73.9811087394736,40.5804373655887],[-73.9794611672587,40.5801976098801],[-73.9772385600744,40.5805743375682],[-73.9758461740789,40.5818097007922],[-73.9767465734545,40.5818942520538],[-73.9776602193873,40.5810600314614],[-73.9796906715425,40.5808887973892],[-73.9824159822481,40.5821335015942],[-73.9843218030391,40.5825871890405],[-73.9851715095849,40.5825090728931],[-73.9869312858703,40.5810921412551],[-73.9880295149327,40.5802999955677],[-73.9890321461808,40.5803628247303],[-73.9899016749517,40.580388446518],[-73.991733106254,40.5816656522953],[-73.9917341258419,40.5821881618596],[-73.9905954097096,40.5842502071563],[-73.9907757060787,40.5843418682086],[-73.995665312527,40.5824205892701],[-73.9964462683091,40.5823462969121],[-74.0002666001932,40.5830820853494],[-74.0003853044732,40.584038027807],[-73.9991795551561,40.5857572526574],[-73.9992399749438,40.5862622596695],[-73.9945299516023,40.5884104674162],[-73.9954016920254,40.5892828786052],[-73.9978916935339,40.5883225598596],[-73.9990026068081,40.5887105523357],[-73.9993025632646,40.5895959965843],[-73.9998381801595,40.5912221862282],[-74.0009483693916,40.5924569598758],[-74.0029591430522,40.5951724041695],[-74.0044081696229,40.5962794405518],[-74.0095847141426,40.5992742318722],[-74.0119106877718,40.6005868741878],[-74.015613820054,40.6017400419084],[-74.0191834608885,40.602229824394],[-74.0207834762921,40.6031937989339],[-74.0269249632423,40.6037186126457],[-74.0295772975091,40.6041057587385],[-74.0311828573147,40.6045966833203],[-74.0325915486309,40.6054733081941],[-74.0334355014673,40.6060163817071],[-74.0350495817934,40.6073586379866],[-74.0363408156912,40.6091170822465],[-74.0373435843816,40.6110577860804],[-74.039955745989,40.613606426691],[-74.0406729438438,40.614499729684],[-74.0412296846226,40.6155583566095],[-74.0414100591451,40.6161724383237],[-74.04194625725,40.6179470751413],[-74.0422632799003,40.6196523287848],[-74.0424241124721,40.6242255271958],[-74.0422839941524,40.6263278730996],[-74.0413486215662,40.6302974119248],[-74.0404990228183,40.6324479186808],[-74.0372391543315,40.6391367049113],[-74.0359852741798,40.6409594973087],[-74.0348998335338,40.642013449423],[-74.0263110950013,40.6490761869397],[-74.0227435158005,40.6528837155391],[-74.0191880683475,40.655884968241],[-74.0125610168335,40.6606480971229],[-74.0070649846864,40.6641683779354],[-74.0008809283716,40.667623890262],[-73.9995850789299,40.6675000721238],[-74.000260690177,40.6688031450157],[-74.0007297050784,40.6688387318891],[-74.0012704962693,40.6681767777775],[-74.0016013161441,40.6681075683753],[-74.0018116979903,40.6683796414363],[-74.0022626944838,40.6682844428371],[-74.0029540145702,40.6674436098918],[-74.0046968198833,40.6673955748819],[-74.0059275432636,40.6682709865028],[-74.0069793087645,40.6684511917302],[-74.0088126049694,40.6683858555016],[-74.0102367994107,40.66528111574],[-74.0118444001887,40.6649210208718],[-74.0134490553908,40.6647095187509],[-74.0158151064581,40.6644594388005],[-74.0173016799128,40.6648864826305],[-74.0177830978533,40.6653860442127],[-74.0178895419263,40.6660941179994],[-74.0186370462439,40.6709920951897],[-74.0189968107354,40.6715716951095],[-74.0175848872808,40.6711362993139],[-74.0162606232283,40.665539750942],[-74.0122108634173,40.6658925699705],[-74.0109153939629,40.6689984354915],[-74.0110351609498,40.6698012184826],[-74.0114560809492,40.6699399478024],[-74.0120267563947,40.6708546884987],[-74.0128680475229,40.6709699809288],[-74.0151656775083,40.6718679160897],[-74.0173187452082,40.6731474390388],[-74.0182813475273,40.6745744616163],[-74.0186611498396,40.6768658490878],[-74.0196938584801,40.6798744470956],[-74.0059498637034,40.6879862786052],[-74.0044270836513,40.6887704178516],[-74.0042360784657,40.6888813777911],[-74.001741754264,40.6924632447215],[-73.9995859161597,40.6961470796034],[-73.9951143515087,40.7033735876946],[-73.9935439742212,40.7045355181276],[-73.9934010576494,40.7046423740074],[-73.9907307534836,40.7048532911342],[-73.9808906303192,40.7056452103083],[-73.9808350048402,40.7058969560346],[-73.9791247993888,40.705971937028],[-73.9771050237107,40.7064540355535],[-73.9727908043716,40.7088210010535],[-73.9722617990772,40.7091090696236],[-73.9701601329779,40.7069238186008],[-73.970307711806,40.70569998539],[-73.9700893008177,40.7056620041005],[-73.9701320435572,40.7052885347944],[-73.9692785856468,40.7054115445542],[-73.9692548701233,40.7070463656844],[-73.9698679918643,40.7079256542624],[-73.969854368913,40.7094344467358],[-73.9672870817474,40.7169470746865],[-73.964358564938,40.7201278514212],[-73.9634325959162,40.7214302691991],[-73.9616727486639,40.7248646849433],[-73.9621107276705,40.7251118484734],[-73.9619347090788,40.7252949390379],[-73.9609699561929,40.725133120336],[-73.9607671067203,40.7251853461815],[-73.9581183746977,40.7242381188479],[-73.9579769637023,40.7240521701106],[-73.957919479609,40.7244164925525],[-73.9617597109733,40.7257933330483],[-73.9616787197656,40.7265763369549],[-73.9612155421169,40.7280450465788],[-73.9612720317752,40.7290770176256],[-73.961399884498,40.7308032772902],[-73.9624074223442,40.7329338128386],[-73.9623751952834,40.7339604810013],[-73.9620926975845,40.7345164632733],[-73.962546309972,40.7364303200123],[-73.9629790553938,40.7384025406244],[-73.9619397396444,40.7413119226002],[-73.956747203316,40.74916097765],[-73.9529946663881,40.753018642564],[-73.9514030915548,40.7548419139838],[-73.9488410810932,40.7579130027793],[-73.9456998243599,40.7618255338253],[-73.9432503566336,40.7650506630053],[-73.9421329467433,40.7663106120554],[-73.9409769865509,40.7674305668216],[-73.9399175934548,40.7681099857266],[-73.936964928134,40.7694656241819],[-73.9359045127551,40.7700188795167],[-73.9352275872728,40.7706252075559],[-73.9348170922222,40.7717519709383],[-73.9366977565921,40.772381873357],[-73.9375371666481,40.7728265064029],[-73.937906682352,40.7737127247152],[-73.9378136519228,40.7748108892303],[-73.9370634113369,40.7762047844032],[-73.9359040303598,40.7775228371414],[-73.934532964081,40.7782263572725],[-73.9338038572605,40.7782916932434],[-73.9332322287025,40.7782819093137],[-73.9316626841532,40.7780106592724],[-73.9311339510483,40.7776814645539],[-73.9305832738977,40.7767349929307],[-73.9300396009113,40.7764146638657],[-73.9286969519382,40.7767760608049],[-73.9282376702829,40.7771501486436],[-73.9222834569167,40.7808286836245],[-73.9156108392582,40.7864189349636],[-73.9146153020059,40.787418512737],[-73.912697927982,40.7890264745786],[-73.9097462849439,40.7909534439727],[-73.9012033595925,40.7892959969928],[-73.9001509050838,40.7888806009308],[-73.8967804162563,40.7866414045097],[-73.8956077420097,40.7850807617063],[-73.8986496100382,40.7827226136167],[-73.901298396858,40.7825406592563],[-73.9024714987027,40.7815609007827],[-73.9028637166305,40.7804115619353],[-73.9023226640298,40.7803433609155],[-73.901720119053,40.7813105303071],[-73.9007563156864,40.7819049163224],[-73.8990109151405,40.782014401441],[-73.8966618413337,40.7830639676633],[-73.8950973731641,40.7822652814554],[-73.895609033787,40.7816936441353],[-73.8956102483093,40.7814414226277],[-73.8952792299069,40.7813031309642],[-73.8939834047197,40.7821735405235],[-73.8916364778865,40.7806826770126],[-73.8925181932024,40.7797722886494],[-73.8923472231426,40.7796310195503],[-73.8919392164254,40.779847808134],[-73.8913254568806,40.7797878665355],[-73.8907127115337,40.7786874687584],[-73.8913749666292,40.7779236177282],[-73.8926336644457,40.7773681718182],[-73.8916997291639,40.7764313527262],[-73.8915501399062,40.7756281752157],[-73.891159220044,40.776065829463],[-73.8909473990966,40.7770457030021],[-73.8903745802709,40.7775536742475],[-73.8899236089303,40.7775042975931],[-73.8893824476334,40.7760217271643],[-73.8897164735954,40.773574672751],[-73.8844483629005,40.7741634843442],[-73.8849598779963,40.7747539676063],[-73.8849588503237,40.7752584237144],[-73.8844467234751,40.7757669514804],[-73.8848655503999,40.780040944603],[-73.8794770061681,40.7807995213723],[-73.8797306400987,40.7822793473486],[-73.8787414512404,40.7832696681235],[-73.8752724351926,40.7815738907345],[-73.8712388702095,40.7867233123737],[-73.8695821908743,40.7856531309817],[-73.8694538036539,40.7837015754594],[-73.870475418999,40.7824233860324],[-73.8713788986977,40.7821709809203],[-73.8727312126449,40.7805176545386],[-73.8571200129564,40.7729953705712],[-73.8560528521281,40.7720434325932],[-73.8573992380928,40.7700974545501],[-73.8526516265448,40.7676361428829],[-73.8511859461071,40.7654956036502],[-73.8513350278167,40.7649655952711],[-73.8520749045392,40.7650450199487],[-73.8531585719108,40.7669655549504],[-73.8537912463823,40.7674672950301],[-73.8565476657461,40.7687107503496],[-73.8570716970688,40.7687699889465],[-73.8587079181717,40.7670610792623],[-73.8624118715141,40.7670706069889],[-73.8606509768262,40.7650714111337],[-73.8582624373341,40.7628452793058],[-73.8567887987212,40.7620289560395],[-73.8544436882816,40.7610823587425],[-73.8521811482878,40.7599023177257],[-73.850622132892,40.7596661050558],[-73.8487572357521,40.7604222431116],[-73.8472418120038,40.7611773356092],[-73.843214633144,40.763686416657],[-73.8428522177241,40.7644304756994],[-73.8423849482493,40.7648581919133],[-73.8403993867054,40.7653427337338],[-73.8395861535568,40.7651814213509],[-73.8383527774515,40.7643132283377],[-73.8373293753573,40.7628706038159],[-73.837239224927,40.7620949801823],[-73.8372278486622,40.7607931617645],[-73.8385604077581,40.758000478808],[-73.8394936387607,40.7572171288993],[-73.8404752664992,40.7554793727822],[-73.840449959161,40.7552313898085],[-73.8400737770594,40.7553627363505],[-73.8394266406101,40.7556625172348],[-73.8387921524401,40.7560434966632],[-73.8384697767291,40.7564861670094],[-73.8373589999988,40.7581955792782],[-73.8368462272616,40.7595776976634],[-73.8364557448789,40.7606547631598],[-73.836546803506,40.7627366042525],[-73.8370885217583,40.7638590938276],[-73.8384443014059,40.7655212646156],[-73.8396080122626,40.7660959857286],[-73.8398750778033,40.7667923102662],[-73.8404299105605,40.7667393299068],[-73.8409119833729,40.7661856546956],[-73.8421270500161,40.7659366047008],[-73.8434382777171,40.7657785887947],[-73.8442813843405,40.7654987646658],[-73.8454255451617,40.7657083942327],[-73.8473517370485,40.7666014471517],[-73.8484348762107,40.7679454871852],[-73.8487668504206,40.768705497439],[-73.8489485418733,40.7705359976738],[-73.8498814988897,40.7718334848968],[-73.8491603816853,40.773366721791],[-73.8491635868742,40.7779880179789],[-73.8495843676348,40.7781543609688],[-73.849736653635,40.781606059169],[-73.8493757357067,40.7817465955657],[-73.8494360962056,40.7821976122168],[-73.8537099084249,40.7818527683416],[-73.8555156497067,40.7819427500258],[-73.8560580183393,40.783227304417],[-73.8575028902018,40.7834578115734],[-73.8580151895269,40.7837331293349],[-73.8580766306991,40.7846435756396],[-73.8593105682515,40.7851692473998],[-73.8594614474899,40.7857022274716],[-73.8584385538422,40.7869532795971],[-73.8569042016925,40.786839006847],[-73.8558206789496,40.7876480279759],[-73.8543755896948,40.7875976637698],[-73.8532623416992,40.787892893279],[-73.8529915490484,40.7883045846758],[-73.853082079466,40.7884676337649],[-73.8548575996251,40.788602366997],[-73.8545883826193,40.7903022639638],[-73.8534741806128,40.7908226928192],[-73.8532043922785,40.7912614194627],[-73.8539269629571,40.7924937226774],[-73.8536565134627,40.7940044297112],[-73.852935193239,40.7944206540167],[-73.8493812396844,40.7931871848472],[-73.8491411819927,40.7932748749163],[-73.8493230827529,40.7949252035509],[-73.8488409461602,40.7955599853627],[-73.8482097871466,40.7958149299479],[-73.8466429752724,40.7960244937821],[-73.8452590136777,40.7948305734748],[-73.8444760510592,40.7946966234049],[-73.8430004774752,40.7949430840071],[-73.8424886623421,40.7954063841829],[-73.8411645195622,40.796230868839],[-73.8405331539361,40.7966659350567],[-73.8393580326786,40.7968432998036],[-73.8385161154247,40.7966906999125],[-73.8367374700268,40.7925650165403],[-73.8367076001452,40.7920692597848],[-73.8374594496138,40.791266088416],[-73.8371889291526,40.7893626156808],[-73.8344189191767,40.7889112926565],[-73.8338164173191,40.7885448763535],[-73.8324016758495,40.7887918168422],[-73.8321314176962,40.7889962732821],[-73.8318608559124,40.7909933747493],[-73.8315297557633,40.7912872969534],[-73.8297535780375,40.7918638518206],[-73.828007976269,40.7931433353487],[-73.8290026655117,40.7962342589322],[-73.8273462763324,40.7967309162614],[-73.8274367690208,40.7973984468344],[-73.8260813936151,40.7976278949352],[-73.8255699171468,40.7970551718828],[-73.825028604933,40.7971667707793],[-73.8216573875718,40.8000330688958],[-73.8202712861901,40.8004873417083]]],[[[-73.9146593095733,40.7924500753899],[-73.9162843709054,40.7907357435574],[-73.9182103992988,40.7899160324589],[-73.9198372707362,40.7883548075569],[-73.9221260846554,40.7853403914135],[-73.9226382501314,40.7836245795871],[-73.923180766986,40.7829630241202],[-73.9279662793541,40.7808095219203],[-73.9294706089087,40.7814090221616],[-73.9305852016823,40.7822030776443],[-73.9339857984448,40.7828020510793],[-73.9352498996278,40.7832371073438],[-73.9360633744233,40.7841544493373],[-73.936062575821,40.7849471762654],[-73.9332640380467,40.7888399799075],[-73.9309153612953,40.7908991797827],[-73.9297404520402,40.7911765600753],[-73.9278750949629,40.7907178449652],[-73.9241527225639,40.7906652006186],[-73.9241505522342,40.7910750596097],[-73.9261520615693,40.7914044810735],[-73.9260676145426,40.7918180781139],[-73.9275132230237,40.7912009338751],[-73.9276645172839,40.7917428388411],[-73.9284168275882,40.7923173480957],[-73.9285358525668,40.7933003605711],[-73.9274829623751,40.7948310073615],[-73.9274224832986,40.7984968311065],[-73.9265088652136,40.8008034759585],[-73.9255728826713,40.8019658497278],[-73.9234983816261,40.801869952646],[-73.9223615968717,40.8015170311519],[-73.9207200730137,40.7992090816411],[-73.9198532481719,40.7987055173918],[-73.9166331085768,40.7974006671874],[-73.9153100078426,40.7967126200936],[-73.914619744175,40.7955620765647],[-73.9138444944915,40.7940819263299],[-73.9146593095733,40.7924500753899]]],[[[-73.8973358652577,40.7999474801772],[-73.8984454517202,40.7993365004673],[-73.898958129236,40.7994720113545],[-73.8994382509076,40.799066712117],[-73.8999937394349,40.7993017177558],[-73.9001777844737,40.7999565734143],[-73.8999708413783,40.8006887782358],[-73.8994143575177,40.801859056988],[-73.8988698437082,40.8022141961755],[-73.8980959208365,40.8022833824896],[-73.8970786174047,40.8018818064236],[-73.8966192477145,40.8012108032548],[-73.8967968060186,40.8005999358154],[-73.8973358652577,40.7999474801772]]],[[[-73.783458733682,40.8494251664736],[-73.7830666702645,40.8492138448723],[-73.7825248648756,40.8493252364443],[-73.7815906861504,40.8485947242652],[-73.7816821481211,40.8470823176697],[-73.7823748291552,40.8467473176702],[-73.7829184320729,40.8454828998101],[-73.7832491953538,40.8443423495732],[-73.7833715791332,40.8430824954096],[-73.7830401699636,40.8425565266157],[-73.7821054091301,40.8425106336085],[-73.7815343707653,40.8412254445669],[-73.7813537231549,40.8396741304666],[-73.7818977851118,40.8379773283076],[-73.7829518952156,40.8363579673453],[-73.7846684194167,40.8370246452912],[-73.7856326189404,40.8378905726724],[-73.7856919544615,40.8389451545438],[-73.7859634046791,40.8392632966459],[-73.7874398882565,40.8399274083851],[-73.7888847888652,40.8426540427794],[-73.7896674289885,40.8434009241422],[-73.7908418100341,40.8457643684637],[-73.7917146248423,40.8466112706862],[-73.791412067763,40.8483286636301],[-73.7908396945016,40.8488991909379],[-73.7901462957136,40.8500900101458],[-73.7896943245481,40.8507248506132],[-73.7897546751655,40.8513200229337],[-73.7914119231342,40.8525805175272],[-73.7918331647305,40.853882104116],[-73.791682040252,40.8547723302119],[-73.7926147699946,40.8555117539105],[-73.7925856502064,40.8558087182669],[-73.7922239785915,40.8566967415514],[-73.7903848747783,40.8584160533567],[-73.7896309798458,40.8586874008072],[-73.7890895786988,40.8585285824338],[-73.7885171326739,40.8551895560051],[-73.7886684898161,40.8546146222029],[-73.7880061430925,40.8536077622592],[-73.7856866570963,40.8516646397509],[-73.7847225887266,40.8506996261982],[-73.783458733682,40.8494251664736]]],[[[-73.7677941848454,40.845070176126],[-73.7690899318792,40.8448407840333],[-73.7698428027323,40.8451821135522],[-73.7714987077197,40.8472896470021],[-73.7713465663483,40.8496661820451],[-73.7727005008563,40.8517524652199],[-73.7725157829794,40.8590290870323],[-73.7728462291549,40.859365902831],[-73.7726347585505,40.8598951345581],[-73.7716710908295,40.8598758727087],[-73.7701946171336,40.8594367640723],[-73.7688691996443,40.8584497512917],[-73.7684176345172,40.8576071754753],[-73.7654664172806,40.8552064982012],[-73.7655874401123,40.8548384585059],[-73.7680582976238,40.8541081783357],[-73.768993718719,40.8533254429258],[-73.7693548118189,40.8526446747972],[-73.7687246472403,40.8505570688658],[-73.7692995501575,40.8475364599624],[-73.7677041772472,40.845366484623],[-73.7677941848454,40.845070176126]]],[[[-73.7846581723342,40.8597431382969],[-73.7850506094509,40.8589635614869],[-73.7863164416875,40.859166052905],[-73.7870095431332,40.8585697940161],[-73.7877023652028,40.8589644250243],[-73.7876126100312,40.8595760370562],[-73.7868890242563,40.860217019472],[-73.7849592013792,40.8604759686437],[-73.7846583448108,40.8602205720699],[-73.7846581723342,40.8597431382969]]],[[[-73.9277165566883,40.8777226687957],[-73.926084819077,40.8771174583195],[-73.9250897857795,40.8774595133709],[-73.9233107100885,40.8773888785777],[-73.922497291887,40.8768678192472],[-73.9223170269589,40.876091430635],[-73.9224956273087,40.8744085660975],[-73.9223139762802,40.8739924924854],[-73.9214713592386,40.873354046645],[-73.9207166621106,40.8731488102007],[-73.9203253254301,40.8734964693307],[-73.9202656180064,40.8737931811998],[-73.9212917132498,40.8750999574994],[-73.9211707353338,40.8753330397809],[-73.9207487634072,40.875374134944],[-73.9191492762129,40.8748456973336],[-73.9190596414156,40.8738809814058],[-73.9186072094143,40.8736064961834],[-73.9177033200838,40.8742736369191],[-73.9166182666117,40.8746778326779],[-73.9145380361117,40.8746132430058],[-73.9114029885336,40.8733766132887],[-73.9105294460901,40.8721882960274],[-73.9104105783167,40.8712953619947],[-73.9121906448495,40.8668530963668],[-73.9135175966613,40.8649828814242],[-73.9141199449071,40.8646102064387],[-73.9156565868624,40.8643363920361],[-73.9152354288094,40.863422604838],[-73.9155673563069,40.8627140758148],[-73.9173750684925,40.8618212185157],[-73.9180388552155,40.8604041458029],[-73.91948612019,40.8587782091224],[-73.9201483393528,40.8586402756344],[-73.9206918641171,40.8588705657039],[-73.9212643478713,40.8598758305855],[-73.9217870416025,40.8600653833544],[-73.921983311814,40.8598059787336],[-73.9211730413092,40.8581904395395],[-73.9224817806769,40.8552209440783],[-73.9292063676712,40.8455591389358],[-73.9308171951977,40.8425292848034],[-73.9336514922085,40.8372991883345],[-73.9346413790577,40.834042833734],[-73.9346474965848,40.8319935093419],[-73.9342031143868,40.8281744044242],[-73.9338422216113,40.8255316467454],[-73.9336223023517,40.819687743906],[-73.9333963949223,40.8173660225073],[-73.9337841868507,40.8141131074811],[-73.934306923701,40.8093705607596],[-73.9338846939579,40.808713559651],[-73.933376452323,40.8078755972549],[-73.9326599686288,40.8070402107997],[-73.9305323798453,40.8044711689292],[-73.9290899262475,40.8019715039283],[-73.9287469117428,40.7995270682473],[-73.9283866504829,40.7970509419692],[-73.9287773215118,40.7954691026787],[-73.9295260421483,40.7942869493082],[-73.9333649017851,40.7923046152824],[-73.9357418592982,40.7904212888625],[-73.9371308846962,40.7875379046434],[-73.9375353035421,40.7864245932089],[-73.938334937994,40.7853779728574],[-73.9405143182469,40.7836909114841],[-73.9417294513654,40.7823147708853],[-73.942120221209,40.7808409826197],[-73.9418861867213,40.7800461027464],[-73.9416784611933,40.7792739848286],[-73.9416323147371,40.7771881279086],[-73.9417072477066,40.7760132245213],[-73.9419773423664,40.77542114837],[-73.9422459655858,40.7751083164054],[-73.9433589827144,40.7738077910177],[-73.9469700843924,40.7696383781813],[-73.9545032853982,40.7613065189265],[-73.9583481745272,40.7578189861296],[-73.9620495272469,40.7538706029689],[-73.9674619109696,40.7473970462878],[-73.9699257202994,40.7446579794149],[-73.9711804340877,40.7428359573813],[-73.9715964879132,40.7420649412022],[-73.9721647091613,40.739390003218],[-73.9727098176555,40.7357599645465],[-73.9740340826063,40.7362852157585],[-73.9740112851611,40.7359381896111],[-73.9729081315343,40.7314782326426],[-73.9708705314843,40.7297484955723],[-73.9709655642582,40.7276143493882],[-73.9710417045634,40.7264664548377],[-73.9732310695907,40.7197566501103],[-73.9756644368121,40.7134633477631],[-73.9769852028249,40.7113850969511],[-73.9772950874619,40.7109103936378],[-73.9778830303238,40.7105417482342],[-73.9809221854402,40.7102262828353],[-73.9810191513886,40.7098352714768],[-73.9882988253633,40.7089173463662],[-73.9885798120959,40.7096134572985],[-73.9967720153975,40.7084237234438],[-73.997773431225,40.7081531553148],[-73.9982707134135,40.7078511821054],[-74.0008674150148,40.7065314122775],[-74.008360608651,40.7018980621539],[-74.0094418047573,40.7013758377682],[-74.0111313390757,40.7007371978419],[-74.0116123967918,40.7006242043186],[-74.011853891788,40.7003019653019],[-74.0128757209321,40.700139539651],[-74.0140485209428,40.7003747657753],[-74.0171971690143,40.7015771988462],[-74.0183769354601,40.7028529187373],[-74.0190872207788,40.7039084378903],[-74.0196771722737,40.7047962748839],[-74.0195753239817,40.7063944125268],[-74.0191838291977,40.7070577161183],[-74.0187027373456,40.7071707402669],[-74.0185523737401,40.7077369960242],[-74.0191231426104,40.7079670547341],[-74.018188575813,40.7121570569728],[-74.0169554880669,40.7121826043811],[-74.0168046815919,40.713280351983],[-74.0179171911724,40.7135060174044],[-74.0169812786987,40.7183806352102],[-74.0138184561104,40.71823656803],[-74.0122414465611,40.7252541777055],[-74.0118460566821,40.7280704340391],[-74.0149601501578,40.7284888978831],[-74.0142967910329,40.730411041658],[-74.0103419687743,40.7488714851755],[-74.0089756240406,40.752242428978],[-74.0082156672766,40.7542582968401],[-74.0077378955978,40.7549703624448],[-74.0055549355585,40.7579198610467],[-74.0050398415745,40.7591946189243],[-74.0036535245972,40.7607951730911],[-74.0029482249282,40.7614647169298],[-73.9944276972718,40.7733990282176],[-73.9889955012055,40.7809636731508],[-73.9881966294233,40.7820647045818],[-73.9820515977211,40.7917802575173],[-73.9742125446156,40.8029848138788],[-73.9703776663121,40.8081034378038],[-73.9664298652858,40.8137749290055],[-73.9622210713301,40.8193628558129],[-73.9593046278782,40.8224084291292],[-73.9588242438985,40.8230797189585],[-73.9589763098115,40.8233558438151],[-73.9596128164959,40.8236498477223],[-73.9566735827853,40.8278932478439],[-73.9554070839988,40.8274539000654],[-73.952512594474,40.8315579664854],[-73.9508353706683,40.83492984445],[-73.9499958591027,40.8373499396005],[-73.9484893708965,40.8426601087375],[-73.9477788062017,40.8445093336183],[-73.9475650835209,40.8476152320602],[-73.9474036832138,40.8493343358244],[-73.9473375645139,40.8500453848799],[-73.9470087047631,40.8508666390714],[-73.9448803595981,40.8521038515472],[-73.9434176633637,40.8536759206131],[-73.942245493072,40.8557190616239],[-73.9383899229742,40.8612732672637],[-73.9376858665736,40.8622667016114],[-73.9362232763404,40.8649196620638],[-73.9349317504902,40.8674886043008],[-73.9325107063578,40.8711100556892],[-73.9319429064196,40.8724740495466],[-73.9310512449568,40.874280946422],[-73.9295805456315,40.8762986630677],[-73.9277165566883,40.8777226687957]]],[[[-73.9115029880927,40.9134233297428],[-73.7881454268773,40.8861334123171],[-73.78846116853,40.8856454797508],[-73.7881572208587,40.8853900600424],[-73.7882877424762,40.8851076758366],[-73.7898079811944,40.8832634547791],[-73.7911962834486,40.8837329174504],[-73.7920454896328,40.8842732902386],[-73.7923886927837,40.8840021352362],[-73.7929907787214,40.8834048910521],[-73.7947163606355,40.880986232805],[-73.7952020213192,40.8807525890397],[-73.795042897343,40.8792600825222],[-73.7959831909003,40.8773511672168],[-73.7972536809016,40.8762519131394],[-73.7983362298707,40.8746327192891],[-73.7995722622943,40.8742041860721],[-73.8011096453598,40.8717068993092],[-73.80288809223,40.8701489379296],[-73.8031896584675,40.8690530722322],[-73.8042749598747,40.8686679655688],[-73.8054500883187,40.8688963316008],[-73.8068966651836,40.8701994629649],[-73.8084028380811,40.8707465068694],[-73.8089466152721,40.8706980724437],[-73.8086442378559,40.8702715679615],[-73.8072579541162,40.8694915546471],[-73.8062632505004,40.8683012010261],[-73.8049978853878,40.8677295983141],[-73.804667165226,40.8666542031204],[-73.8032796930152,40.867018164346],[-73.8029794077753,40.8668078628386],[-73.8030390235708,40.8655563481995],[-73.8024067488496,40.8654146652298],[-73.8019242475409,40.8658510562565],[-73.7986373173062,40.8716811849674],[-73.7982163676623,40.8720731599811],[-73.7951719052992,40.8731674289966],[-73.7948700668722,40.873533610266],[-73.7938474067865,40.8771622107029],[-73.7942749446746,40.8774324190379],[-73.7937429893128,40.8787465493362],[-73.7933937818225,40.8788600042746],[-73.7928515084113,40.8796380387283],[-73.7918574165483,40.8798888702188],[-73.7901985668833,40.8811236185102],[-73.7894742355068,40.881305191825],[-73.7893551395614,40.8800247890927],[-73.7898365143828,40.8796605054246],[-73.7894150625807,40.8791786543126],[-73.7885420672112,40.8789713127132],[-73.7858893511604,40.8790605364672],[-73.7849237430783,40.8784017867867],[-73.7847744179253,40.8773192394567],[-73.7869737129297,40.8739463169429],[-73.7882099995766,40.8714730618],[-73.7882697995267,40.8712034459367],[-73.7877586141126,40.8709278328558],[-73.7864909735674,40.8724368828836],[-73.7854365023408,40.8732365202391],[-73.7854663066453,40.8722549476407],[-73.7851349109505,40.872044272178],[-73.7845011441276,40.8732807196042],[-73.7837783659382,40.873786567209],[-73.7835980848405,40.8732621952585],[-73.7835382714156,40.872234637861],[-73.7833578331127,40.8714760527027],[-73.7835379489204,40.8707933333699],[-73.7844134469964,40.8698026565134],[-73.7855893219403,40.8690943873146],[-73.7880305673868,40.8691921191638],[-73.7904109196334,40.8683162812495],[-73.7922198346631,40.8667227719566],[-73.7930037926149,40.8652085977852],[-73.7931545999882,40.8643363845631],[-73.7930341709429,40.863290179854],[-73.7920109341387,40.8617300706022],[-73.7919803671646,40.8610451310753],[-73.7931255323022,40.8603815020421],[-73.7945127718494,40.8591258519825],[-73.7949353160029,40.857824082378],[-73.7946647281679,40.856470032734],[-73.7961704968236,40.8561974892115],[-73.7973761823603,40.8556245298056],[-73.7981000520027,40.8547132383339],[-73.7987927887324,40.8546213610909],[-73.798762748171,40.8536571747116],[-73.7983711168431,40.8534999587035],[-73.797829886376,40.8525124314305],[-73.7978595262888,40.8516929969286],[-73.79831229426,40.8505176421083],[-73.7992460974894,40.8494734051286],[-73.7997279493162,40.8481632242591],[-73.8003607423653,40.8477734439535],[-73.8011739692257,40.8482323035352],[-73.8020174055308,40.8506372371454],[-73.8039756681715,40.8529005843684],[-73.8045185281825,40.8540502463936],[-73.8045785545081,40.8547535058034],[-73.8040061983147,40.8557384741608],[-73.8050593058987,40.8609290774924],[-73.8054504287801,40.8613655184576],[-73.806083346695,40.8615522318721],[-73.8061443494894,40.8597242065957],[-73.8081332401896,40.859060145129],[-73.8108444877695,40.8618716384857],[-73.8137413452533,40.8634373451286],[-73.8142121235476,40.8631539229427],[-73.8148853129367,40.8621654362613],[-73.8162527805645,40.8628325638716],[-73.8156483203795,40.8638352760295],[-73.8153654408965,40.8649358714652],[-73.816751604262,40.8641393594785],[-73.8173657078615,40.8646365994873],[-73.8149128489951,40.8676516877412],[-73.8149079513802,40.8679263865026],[-73.8154562857245,40.8681617242512],[-73.8160279951309,40.8700412876438],[-73.8164198860719,40.8701083653025],[-73.8172332440864,40.8690807671099],[-73.8177153959505,40.8690767000687],[-73.8183488357866,40.8697407833821],[-73.8189212135395,40.869584496797],[-73.8188017474882,40.868961711457],[-73.8171741124828,40.8678190192786],[-73.8171737082409,40.8673415832153],[-73.8173847764001,40.8673167217755],[-73.8207602374027,40.8693510770398],[-73.8219657046487,40.8706335393463],[-73.8221165820906,40.8716620087394],[-73.8218763483291,40.8725783878025],[-73.8210618782003,40.8733357621015],[-73.821092771263,40.8737684689033],[-73.8210692443857,40.8741330587381],[-73.819826678515,40.8738095759058],[-73.8198869518773,40.8743416727987],[-73.8209873359981,40.8748618818899],[-73.8206731349561,40.8754306883837],[-73.8202511693177,40.8758857903767],[-73.8203828317956,40.8773689758715],[-73.8197701843651,40.8818352527321],[-73.8196195674347,40.884968542122],[-73.8204024815441,40.886498922868],[-73.8209159765268,40.8869095371319],[-73.8237806222212,40.8879386779489],[-73.8239903536872,40.888328164858],[-73.8268253325193,40.8894470088042],[-73.8270663514084,40.8892422725021],[-73.8246244995991,40.8881274400314],[-73.8235391820223,40.8871615173122],[-73.8216999686146,40.886458131393],[-73.8206447356167,40.8852222445378],[-73.8206441571016,40.8841682871829],[-73.821353666276,40.8785049148477],[-73.8230875782677,40.8752571602779],[-73.8232889041976,40.8725162319687],[-73.8236241312071,40.8703802137248],[-73.822689331746,40.8693077173954],[-73.8207895664984,40.867865030622],[-73.8199159935121,40.8656040608429],[-73.8200970947717,40.862921479879],[-73.8192828734763,40.8624177029038],[-73.8191630220477,40.8619840842426],[-73.820699170828,40.8605855109798],[-73.820579087634,40.859746523786],[-73.8192224752482,40.8594714140218],[-73.8185596883501,40.8607978391852],[-73.8160278334341,40.8608889965342],[-73.8142809901939,40.8604566852224],[-73.8130454266909,40.8585522683789],[-73.8127142124557,40.8539276692192],[-73.8165109177496,40.8539126190134],[-73.8172636673301,40.852028618797],[-73.8170226628141,40.8510712813848],[-73.8153043779151,40.8492159860266],[-73.8156968770155,40.8480759750285],[-73.8158166547822,40.8464287065892],[-73.8156964889433,40.8462653255766],[-73.8148223095942,40.8463104005291],[-73.8130757035092,40.8448060999287],[-73.813076113141,40.844616932303],[-73.8135571492975,40.8440003130545],[-73.8140102074246,40.8434554702395],[-73.8150944631927,40.8432684271932],[-73.8156970638651,40.8440673335],[-73.8163297679809,40.8440918407769],[-73.816870833158,40.8436830118943],[-73.8161783919741,40.8427660841851],[-73.8147633881964,40.8391302660798],[-73.8163892355544,40.8381650577591],[-73.8163897862217,40.8366336692254],[-73.8156361383259,40.8319957197015],[-73.8137987044808,40.82920232111],[-73.8131957256177,40.8276016690186],[-73.8142205524399,40.8259096492275],[-73.8141604272996,40.8241254036706],[-73.8138588161464,40.8239151155563],[-73.8118117388702,40.8241643070686],[-73.8090698856886,40.8256314128003],[-73.8083166986285,40.825722728651],[-73.8073841889731,40.8253978096199],[-73.8069012825242,40.8247172025765],[-73.8066310549137,40.8224263218954],[-73.8059984954266,40.8217441636508],[-73.8060286491757,40.8203932421902],[-73.8054935721683,40.8196490316306],[-73.8045367244569,40.8188689219502],[-73.8000502998744,40.8179530746025],[-73.7987481783954,40.8175026319154],[-73.7978934484705,40.817106379352],[-73.7981692905516,40.815906654281],[-73.799796660554,40.8145092956592],[-73.8020240431824,40.8129559946315],[-73.8033500517632,40.8133931356857],[-73.8035903681697,40.8137109149591],[-73.8052163071558,40.8153582465285],[-73.8066018650568,40.8163634855023],[-73.8070225254431,40.8162957680735],[-73.8066919355371,40.8154726020831],[-73.8052461096637,40.8129533573479],[-73.8047053337441,40.8122000751067],[-73.8038915723861,40.8118763571623],[-73.8029893709901,40.8103716375949],[-73.8023259660511,40.8100945095242],[-73.8011216675132,40.8101450647187],[-73.8003085754001,40.8097042218533],[-73.7982011879307,40.8094570939788],[-73.7929023925823,40.8071227204104],[-73.7908849974397,40.8068223503117],[-73.7901932686198,40.8057431230113],[-73.7901623755572,40.8048329673729],[-73.7904342875088,40.8044664791455],[-73.7913979237888,40.8040351685786],[-73.7929632983586,40.8040065067823],[-73.7940775255178,40.8044235237845],[-73.796094791303,40.8059579646239],[-73.7974197344819,40.8061159073958],[-73.7983524525464,40.8065760330876],[-73.8002448417273,40.8081000931927],[-73.8015207593495,40.8087619408003],[-73.8044336616427,40.8086750408714],[-73.8073246728906,40.8105966785364],[-73.809221186237,40.8123638569055],[-73.8102756152427,40.812906215971],[-73.81238360638,40.8130450312764],[-73.8148822002742,40.8136382303355],[-73.8170809374249,40.8137598751211],[-73.821958722044,40.8129089362028],[-73.8256335484117,40.8116041537826],[-73.8289152423666,40.8112411317107],[-73.8303006053331,40.8106696425358],[-73.8312029944771,40.8100031639987],[-73.8322571944124,40.8082842491787],[-73.8321658150868,40.8067339050336],[-73.8314436387686,40.8052402339023],[-73.8324056194536,40.8044662493141],[-73.8335508492699,40.8043967531669],[-73.8376153854691,40.8057709755839],[-73.8382490094598,40.8075069404921],[-73.8404483260238,40.8116728516577],[-73.840448899149,40.8130871529555],[-73.8399673302915,40.8144425601129],[-73.840240096541,40.8174180222637],[-73.8394579010837,40.8186713143357],[-73.8391864337981,40.8197045327014],[-73.8391871632301,40.8215332126595],[-73.8423834193167,40.8291772699888],[-73.8419014273527,40.830893005553],[-73.8392522389859,40.8336139012728],[-73.8395498337716,40.8363148545645],[-73.8396311178301,40.838837971415],[-73.8400070214539,40.839557902844],[-73.8404273270057,40.8395170858457],[-73.8398946341271,40.8344806446276],[-73.8404365571953,40.8334141123249],[-73.8428359106068,40.8311185756976],[-73.8431363548485,40.8293559752561],[-73.8419593713834,40.8258579871687],[-73.8401216464842,40.8219209528911],[-73.8401210841388,40.8205066536467],[-73.8405111523982,40.8197268558918],[-73.8424383468047,40.8182598384535],[-73.8428289459684,40.8170206175361],[-73.8445150406375,40.8145782563558],[-73.8456872998625,40.8117613936978],[-73.8469518052873,40.8108011398951],[-73.8476151733954,40.8110059460167],[-73.8486091871051,40.8127454508216],[-73.8493016004412,40.8131577264588],[-73.8519227901172,40.8141387020739],[-73.8527656497039,40.8141650989095],[-73.8532636712058,40.8138187254422],[-73.852999827922,40.81343325285],[-73.8516511647281,40.8133883146352],[-73.8503259044439,40.8127175202695],[-73.8496332431728,40.8120620249568],[-73.8495412511961,40.81112424913],[-73.8501140017499,40.8097967338529],[-73.8501431772337,40.8085358676177],[-73.8492087164375,40.8075536634606],[-73.8487263381979,40.8062246386416],[-73.8482142194342,40.805931265341],[-73.8482743248115,40.8052832696507],[-73.8489371485406,40.8048304596409],[-73.8502014626243,40.8049871920313],[-73.8510143094973,40.8045989217205],[-73.8555909662568,40.8043921524547],[-73.8559817280155,40.804936522072],[-73.8569164538147,40.8052160298089],[-73.8575476083367,40.8050511206585],[-73.8583013954714,40.805166677801],[-73.8595065896296,40.806700989266],[-73.8585739326505,40.8072502831521],[-73.8586045265741,40.80823248704],[-73.8593272858989,40.8098160782498],[-73.8600802304138,40.8097244250169],[-73.8603217793089,40.8094655705825],[-73.8675794544406,40.8104918734712],[-73.8709545480322,40.8145696464707],[-73.8717979672693,40.8150012815321],[-73.8745807782379,40.815870719057],[-73.876619150839,40.8165481780713],[-73.8783971189072,40.8170248890073],[-73.8821310023183,40.8196554899097],[-73.8831297636242,40.8229847014399],[-73.8828528974637,40.824864747867],[-73.8821503223851,40.8272451328899],[-73.8824866983399,40.827694298126],[-73.883105285431,40.8274480549904],[-73.8839545005983,40.8235692076621],[-73.884124999941,40.8221520551226],[-73.8828248529589,40.8192478271414],[-73.8795596188349,40.8164236170744],[-73.8768531502924,40.8156361160969],[-73.8755418138952,40.8151323991002],[-73.8726176835593,40.8137256125978],[-73.8715936562377,40.8128012676978],[-73.8696258507938,40.8098092858521],[-73.8684487837854,40.8069511395789],[-73.8685385668048,40.8058530101205],[-73.8704331245188,40.803628502559],[-73.8715158477611,40.8019095021765],[-73.8723886895187,40.8012063764038],[-73.8740736280561,40.8006733174545],[-73.8754240447614,40.801434168449],[-73.877833017333,40.8016377760742],[-73.8788258075372,40.8028725495327],[-73.8824085745545,40.8021866277094],[-73.8846665789544,40.8020282995465],[-73.8853887930018,40.8022604822322],[-73.8861417824325,40.8032226289526],[-73.8874054039151,40.8040455606951],[-73.8896922190827,40.8058962603388],[-73.8911974406644,40.8060098189712],[-73.8921609377055,40.8062622932595],[-73.8929733381159,40.806333145324],[-73.8933059860622,40.8062912933795],[-73.8942084991736,40.8062008510407],[-73.8950217978993,40.806217646649],[-73.8950823497393,40.8065875664469],[-73.8962260838608,40.8065174333648],[-73.8978814399775,40.8065152323555],[-73.8986958157832,40.80610862301],[-73.8986044409491,40.8055402290225],[-73.8996290485824,40.805144627138],[-73.9021887970862,40.8046645336535],[-73.9037852901956,40.8037338338904],[-73.9054724017577,40.8022454563352],[-73.9094486677004,40.7977789346935],[-73.9112039236633,40.7967730591769],[-73.9138819245944,40.7966946897899],[-73.9141709099264,40.7968280285414],[-73.9180717263684,40.7984591231202],[-73.9191149102634,40.7989598473897],[-73.9202382714925,40.7994973463848],[-73.9211442035919,40.8007895003504],[-73.9219684635607,40.8018196434277],[-73.9234734722416,40.8023111277147],[-73.9271113823426,40.802173836269],[-73.9280203489511,40.8027813334642],[-73.928874312613,40.8040459190439],[-73.9295089696663,40.8049886696042],[-73.9307393247373,40.806581030061],[-73.93065134284,40.8066612896015],[-73.9312451732603,40.807288362154],[-73.9313879793393,40.807208609252],[-73.9317253667971,40.8075630555104],[-73.9316896264252,40.807666320374],[-73.9324849884896,40.8088042202225],[-73.9322877202498,40.8090456200993],[-73.9325265975552,40.809259524282],[-73.9326956982209,40.8091574925644],[-73.9328233587043,40.809514500561],[-73.9329402358109,40.8094345062419],[-73.9330938755723,40.8095575382971],[-73.9328885099186,40.809749318945],[-73.9329746215234,40.8104797873414],[-73.9327691085459,40.8106805741425],[-73.9327945542247,40.8107573802213],[-73.9328492364726,40.8107668935215],[-73.9327328525411,40.811139661923],[-73.9326775199128,40.8111706799116],[-73.9328294474852,40.8119558059792],[-73.9327059839309,40.8125852455132],[-73.9325251027586,40.8177678461534],[-73.9326853038148,40.8209042108406],[-73.9328115207054,40.8233871599541],[-73.933050008142,40.825848624899],[-73.9337642253868,40.8316970894042],[-73.9337972438633,40.8329675597907],[-73.9334776493364,40.8348248141193],[-73.9328716943547,40.8364632215693],[-73.9309970361209,40.8397338881853],[-73.930105645051,40.8415047586373],[-73.9293411967105,40.8433083285308],[-73.9291299911091,40.8442702510056],[-73.9270925141284,40.8473591729637],[-73.9251155638349,40.8497189535401],[-73.9231608118103,40.8527139858604],[-73.9221665088431,40.853947839887],[-73.9214405281597,40.8547743189878],[-73.9208768541836,40.8554221457862],[-73.9205982021723,40.8552754084244],[-73.9204714543773,40.8554093462658],[-73.9207957911107,40.8556195691406],[-73.9206064936224,40.8558610208068],[-73.9203657047021,40.8559398427996],[-73.920403849864,40.8561023472547],[-73.9197664179148,40.8569071227263],[-73.9189496184545,40.8577057103762],[-73.9183385161263,40.8583485765839],[-73.9182261377826,40.8584646299321],[-73.9172972941518,40.859401782552],[-73.9146233832502,40.8622097496796],[-73.9125426856261,40.8644647353752],[-73.9113203174763,40.8660161342062],[-73.9103371185844,40.867677876459],[-73.9097128280895,40.8689331279875],[-73.9092858139192,40.8709559372422],[-73.9093329467255,40.8716995589542],[-73.909367164453,40.8722358700744],[-73.909333885465,40.8725463381879],[-73.9103429962613,40.8740151988393],[-73.9148395565351,40.8755439228164],[-73.9155794224778,40.875704016762],[-73.9162578553332,40.875674357563],[-73.9166475678596,40.8756104555799],[-73.9170307828717,40.8757176471513],[-73.9174048548307,40.8757031405371],[-73.9178899343043,40.8756131039562],[-73.9185648475604,40.8757995951639],[-73.9185774554154,40.8757997133522],[-73.9193213350309,40.8759418047407],[-73.9196865469063,40.8761073717189],[-73.9201898271459,40.8764949306256],[-73.9223919266906,40.8784252523504],[-73.9250262659057,40.878864199765],[-73.9254105597944,40.8789983975866],[-73.9245144355012,40.8798728519373],[-73.923661499512,40.8811936074857],[-73.9229964928769,40.88286292531],[-73.9197868168583,40.8901520681628],[-73.9160459283846,40.8995305178365],[-73.9152424446518,40.9015678178003],[-73.9154659778338,40.9020563594523],[-73.9146341935763,40.9042330139107],[-73.9141901653145,40.904431519953],[-73.9119227690284,40.9112473389476],[-73.9115334463708,40.9133560739968],[-73.9115029880927,40.9134233297428]]]]},"properties":{"OBJECTID":6,"STATE":"NY","Zone":"J","Title":"N.Y.C."}},{"type":"Feature","id":7,"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.5496630909376,40.5921800273952],[-73.5498595039812,40.5920113348191],[-73.5503114634686,40.5921161042573],[-73.5505977709227,40.5916152275312],[-73.5519310136365,40.591438278805],[-73.5520774821469,40.5911878799837],[-73.5516478916084,40.5909707926948],[-73.5517005508504,40.5907552511564],[-73.5527287176088,40.5908537262415],[-73.5529207513654,40.5910588236513],[-73.553082808341,40.5914211915681],[-73.5526984946894,40.5923577545301],[-73.5517572336465,40.5929540185158],[-73.5504555433587,40.5928656128322],[-73.5497542304131,40.5924739465732],[-73.5496630909376,40.5921800273952]]],[[[-73.7274710997503,40.5935744075579],[-73.7274837390464,40.5935700426042],[-73.7302201915564,40.5939244828751],[-73.7310992038417,40.5940377472401],[-73.7322318770071,40.5941834089177],[-73.7331712812323,40.5959157463461],[-73.7328888733648,40.596070813573],[-73.7328490806927,40.5960658724034],[-73.731780679291,40.5960451302644],[-73.7296932730484,40.5960086649013],[-73.7296445331561,40.5960081287662],[-73.7279107154874,40.5950476433059],[-73.7273208062134,40.5940997497226],[-73.7271739145965,40.5940170529028],[-73.7270804179417,40.5939619712007],[-73.7266996158045,40.5937505750509],[-73.7274710997503,40.5935744075579]]],[[[-73.6141910846322,40.5957202986198],[-73.6134675599428,40.595418835232],[-73.6126689414856,40.5959632605171],[-73.6112677187627,40.5956806619544],[-73.6106695917004,40.5952095289107],[-73.6103696963294,40.5952104238442],[-73.6100470969378,40.595202035207],[-73.6096910972856,40.5951301846931],[-73.6094241359495,40.5952170539908],[-73.6085328463892,40.5952423474485],[-73.6078822074087,40.5952029731137],[-73.6072755391647,40.5953938412882],[-73.6054959577223,40.5952642548862],[-73.6040387007869,40.5957601235235],[-73.602354319205,40.5949605104912],[-73.6018567253011,40.5951977133327],[-73.6005885260038,40.5950562270474],[-73.5987983992382,40.5952912529266],[-73.5962680867297,40.5952830320995],[-73.5936370883492,40.5944402473471],[-73.5937387991989,40.5938514331721],[-73.5858427731415,40.5935567860764],[-73.585603055013,40.5932610749179],[-73.5842223372348,40.5931000140721],[-73.5836519510468,40.5938091883049],[-73.5757486396524,40.5948695317853],[-73.5750882440696,40.5938299161308],[-73.5751540250029,40.5929929432828],[-73.5748247421457,40.5921871271579],[-73.5756471156523,40.591057709008],[-73.5757785652295,40.5900143517492],[-73.576631023315,40.5884393790186],[-73.5766039921098,40.5869976939471],[-73.5781981684641,40.5857561563454],[-73.5802933595069,40.5858585137409],[-73.5815399372537,40.5855450289697],[-73.5823367491989,40.5857214734453],[-73.5842517157378,40.5856503856897],[-73.5852865938097,40.5865504054573],[-73.5876651090016,40.5869128421473],[-73.5973789613764,40.5863421287921],[-73.5992887563142,40.5860590290764],[-73.608508402332,40.5869812911844],[-73.6245066501439,40.5858082376263],[-73.6362478842322,40.5840062093744],[-73.6404637137932,40.5831776074153],[-73.6419367460433,40.5829336991875],[-73.6435796685782,40.5826872644117],[-73.6452811208455,40.5828333622047],[-73.647949515193,40.582562860263],[-73.6527901167458,40.5826780063921],[-73.655246276921,40.58253097768],[-73.6609647813398,40.5827280726826],[-73.6631498811661,40.5832128312834],[-73.6682733774733,40.5835152789023],[-73.6712564453766,40.5835361402254],[-73.6726973960929,40.5833410165341],[-73.67409932579,40.5835508102795],[-73.6755612692362,40.5833018405441],[-73.677041797029,40.5834584488535],[-73.6812670984263,40.5831734785191],[-73.6855743315675,40.5833036778039],[-73.6869240951976,40.5830487825946],[-73.7008969663356,40.5832744337794],[-73.702587327104,40.5835817167839],[-73.7041675229776,40.5835138837354],[-73.7048164686338,40.5837148502326],[-73.7065074151038,40.5836482282806],[-73.7097804079769,40.5839551111463],[-73.7129867135165,40.5845449266417],[-73.7146124440935,40.5844909716743],[-73.7163562007225,40.5848301776654],[-73.7195877677862,40.5848750745339],[-73.7203022491356,40.5851667663187],[-73.7244568225774,40.5853749006503],[-73.7275965934972,40.5856349131331],[-73.7301717795492,40.5903842659576],[-73.729273133685,40.5901484935951],[-73.7138464793968,40.5890092292593],[-73.7114159149191,40.589855950362],[-73.7103652534477,40.5897631405895],[-73.7109052460363,40.5888728237063],[-73.7102111555455,40.5887884981994],[-73.7096473926361,40.5896470168283],[-73.7085250761477,40.5896704998664],[-73.7074290704156,40.589401490202],[-73.6989672225102,40.5889956375604],[-73.6883628881606,40.588934190413],[-73.6866321885444,40.5889865809741],[-73.6831682318082,40.5918568673355],[-73.6702677685581,40.5932224136108],[-73.6701110619483,40.5935268971463],[-73.6687221766876,40.5936550237474],[-73.6681241107107,40.5934589466261],[-73.659762600131,40.5943035568311],[-73.6585260889053,40.5946405254946],[-73.65294734887,40.5946791573327],[-73.6527175912614,40.594865653948],[-73.650370791989,40.5949508455827],[-73.6500173740949,40.5947485261017],[-73.6283345224865,40.5951595408573],[-73.6267559256141,40.5947714248192],[-73.6248987809351,40.5947493166772],[-73.6243242849547,40.5945983363778],[-73.6203156194746,40.5951495574301],[-73.6174643577797,40.5951244522009],[-73.617015429208,40.5956190442836],[-73.6171911953731,40.5963012889888],[-73.6168823518835,40.5970227697381],[-73.6159758978629,40.5970659559121],[-73.6155452841433,40.5971013300293],[-73.6147641334267,40.5968352177965],[-73.6148773849329,40.5962510268641],[-73.6141910846322,40.5957202986198]]],[[[-73.6781117390414,40.5967042045094],[-73.6801052928963,40.5961414639365],[-73.6811637319815,40.596856224344],[-73.6812728844751,40.5971277264028],[-73.6815359794622,40.5977973609683],[-73.6814284681907,40.5981564729304],[-73.6808760860377,40.5982627681078],[-73.6803907864768,40.5983382978159],[-73.6800820112591,40.5983392718289],[-73.67994642494,40.5982476361004],[-73.678857966853,40.5975190079856],[-73.6776091882338,40.5971308565336],[-73.6776459715497,40.5968385014128],[-73.6781117390414,40.5967042045094]]],[[[-73.6660655179309,40.5963269026246],[-73.6672663768196,40.5959624167517],[-73.6696972449279,40.5974498323945],[-73.6702069921392,40.5996447694186],[-73.6696960663382,40.6000802981584],[-73.6689761600628,40.599990923134],[-73.6680461674868,40.5992099697057],[-73.666005456571,40.5969703158995],[-73.6660655179309,40.5963269026246]]],[[[-73.6040266355143,40.5998903525575],[-73.6038658568414,40.5998073320976],[-73.6036485579674,40.5998137121518],[-73.6031646678632,40.5998168660292],[-73.602781247137,40.5991456003919],[-73.6020450633887,40.5992042505227],[-73.6011466358151,40.5988960878039],[-73.5986089400532,40.5985274900358],[-73.5977842174522,40.5984048689834],[-73.5969738157933,40.5978094727948],[-73.5964835404641,40.597447679033],[-73.5963562896125,40.5973515436855],[-73.5959351809669,40.5967203347762],[-73.5957947823728,40.5965114329224],[-73.5960195956541,40.5963925535934],[-73.5966259953018,40.5964990200543],[-73.5985127664189,40.5968372388508],[-73.5988020338219,40.5968857925645],[-73.5986747290714,40.596686061365],[-73.6007459054517,40.5966120931626],[-73.6010452555454,40.5966022088567],[-73.6020258735776,40.5972536886433],[-73.6025855347794,40.5972289354822],[-73.6026562618366,40.5974504987974],[-73.603610023835,40.5975836544299],[-73.6037297135668,40.5976886995676],[-73.6037841604562,40.5977344001704],[-73.6041541208262,40.5980586743152],[-73.6040562969867,40.5982872071281],[-73.6040384690216,40.5983275297869],[-73.604418177909,40.5987870475899],[-73.6049574958629,40.5989241893409],[-73.6059751271797,40.5991842153033],[-73.6062095326716,40.5990654321249],[-73.606514007654,40.5989159641859],[-73.6066258802462,40.5989353317334],[-73.607450254301,40.5990759026506],[-73.6073588534158,40.5998495267942],[-73.6073202752659,40.6001778694173],[-73.6071799359606,40.6002842773312],[-73.6067634392657,40.6005990509865],[-73.6066197151084,40.6005838035579],[-73.6060063238728,40.6005268516019],[-73.605098008543,40.6004438107886],[-73.6043145976652,40.6000379699228],[-73.6040266355143,40.5998903525575]]],[[[-73.6216192995307,40.6019079644625],[-73.6215301273657,40.6018618574852],[-73.6212262407798,40.6016960757631],[-73.6209712800376,40.6015579036661],[-73.6202063124708,40.6011478858493],[-73.619681180712,40.6007137056727],[-73.6193637223788,40.6007054050295],[-73.6192824886259,40.6007044330971],[-73.6188830572264,40.6006951502894],[-73.6172345318991,40.600112385861],[-73.6170182571045,40.6000332227527],[-73.6167938597432,40.5999539626974],[-73.6161946259565,40.598852252793],[-73.6160501966218,40.5985847717755],[-73.6160383954539,40.598476529088],[-73.6160222599147,40.5983276955328],[-73.6160129479785,40.5982420041416],[-73.6159875005031,40.5980074790547],[-73.6175013450132,40.5980256197942],[-73.6178669764018,40.5980254936084],[-73.6191068527165,40.5980403330516],[-73.6208890446632,40.597940024872],[-73.6214458465274,40.5979106419633],[-73.621916893418,40.5978847370012],[-73.6221150779394,40.597873589659],[-73.6221038031842,40.5982428021787],[-73.6223766637569,40.5983001100814],[-73.6221154246891,40.598504186085],[-73.6232192430692,40.5988146362507],[-73.6239673097321,40.5994361317974],[-73.6239313061538,40.5997149644763],[-73.6238908711863,40.6000297790081],[-73.6238645604299,40.6002321554878],[-73.6238258789738,40.600533477811],[-73.6233443801849,40.6006718716482],[-73.6234781312459,40.6011734362434],[-73.6232036806552,40.6014449207691],[-73.6227926942262,40.601854406814],[-73.6227384126268,40.6019078103202],[-73.6222125038252,40.6019060383659],[-73.6219819979199,40.6019077912229],[-73.6216192995307,40.6019079644625]]],[[[-73.5973615610093,40.6019805906796],[-73.5973503536278,40.6018453274158],[-73.596874291443,40.6018620627811],[-73.5965298809563,40.6016236565796],[-73.5960733472475,40.6013073135737],[-73.5963669508183,40.6011847658256],[-73.5963315158736,40.600936603134],[-73.5957366407127,40.6007717201146],[-73.5955721627774,40.6007246765705],[-73.5955461430752,40.6006973349209],[-73.5954629141641,40.6006152457913],[-73.5953832839041,40.6005377052161],[-73.5952755130195,40.6004282925465],[-73.5952277163581,40.6003826688119],[-73.594433004674,40.6002018343858],[-73.5939029214013,40.6000827726873],[-73.5940219930922,40.5998995502187],[-73.5936424063756,40.5997192615041],[-73.5939080561715,40.5995558412495],[-73.5937429215677,40.5995403173447],[-73.5936146169923,40.5995297452634],[-73.5935983871301,40.5994935143869],[-73.5933809292543,40.5990494504341],[-73.5932165923546,40.5987141355228],[-73.5923457421619,40.5983611987142],[-73.5912646682265,40.5979246131363],[-73.5911939609322,40.5977390772486],[-73.5910735669212,40.5974223127437],[-73.591123664168,40.5972877973792],[-73.5914775761354,40.596332716866],[-73.5916235020634,40.596348010283],[-73.5920038730092,40.5963841794287],[-73.5924031678648,40.5966097562893],[-73.5933307709221,40.5971435537177],[-73.5935829971926,40.5974439057052],[-73.5944303744069,40.598458668124],[-73.5944656287902,40.5986798044749],[-73.594519108194,40.5990182721094],[-73.5951615230981,40.599557590758],[-73.5956683049707,40.599978145325],[-73.5959114528669,40.600183793136],[-73.5964820052433,40.6006636753548],[-73.5969008591175,40.6010155926126],[-73.597694138887,40.6011243249957],[-73.5983319580101,40.6014969141235],[-73.5984952115416,40.6011430623682],[-73.5988944219556,40.6014812215211],[-73.599432120247,40.6027579371847],[-73.5993505325579,40.6031983603667],[-73.5981074034436,40.6025571827379],[-73.5980401196288,40.6025248363519],[-73.5973772635604,40.6021834714213],[-73.5973615610093,40.6019805906796]]],[[[-73.5994891111653,40.6011956636664],[-73.5994450973096,40.6011455832373],[-73.5994804505076,40.6011505165288],[-73.599821888469,40.6012132135653],[-73.5998778256634,40.6012229007582],[-73.6003236730137,40.6012733494375],[-73.6004740725518,40.6014643503325],[-73.6016027509091,40.6025995809924],[-73.6018337553793,40.6030347842473],[-73.6021095067305,40.6035561092667],[-73.6021011020927,40.6035695206784],[-73.6017855949003,40.6040341380875],[-73.6017015781667,40.6040601456983],[-73.6015982665192,40.6040904234467],[-73.6013766844779,40.6041598063213],[-73.6013469556319,40.604168454367],[-73.6008621178051,40.6038968301755],[-73.6007547763151,40.6038369735659],[-73.6006635883307,40.6037818174291],[-73.600603846771,40.603564891068],[-73.6003254301184,40.6025345526824],[-73.6002110260737,40.6021052649446],[-73.6001903738053,40.602032946465],[-73.5999921731143,40.601796323743],[-73.5996044494579,40.6013321900401],[-73.5994891111653,40.6011956636664]]],[[[-73.6722425018095,40.6020464420737],[-73.6720962048773,40.6002565740084],[-73.671485584046,40.5992360930996],[-73.6711650714409,40.5973676458304],[-73.6715675894517,40.5971831008435],[-73.6745123442082,40.5971178585435],[-73.6756874403128,40.5973835835873],[-73.6778427636824,40.5978722288959],[-73.6786910293305,40.5988323375137],[-73.67840976412,40.6000993154697],[-73.6788219938174,40.6003968106656],[-73.6773959802876,40.6028893451011],[-73.6769030773862,40.6022621102211],[-73.6758506022162,40.6020293336763],[-73.6753977300404,40.6021817860937],[-73.6742614627156,40.60372270549],[-73.6731032944642,40.6039030802546],[-73.6712573230307,40.6048322396865],[-73.6710951295112,40.6041817619885],[-73.6722425018095,40.6020464420737]]],[[[-73.6637151855845,40.5970699448033],[-73.6641360076675,40.5967460055477],[-73.6651665576564,40.5972578985214],[-73.6664823802402,40.5986919434247],[-73.6670819544884,40.5997438534572],[-73.668897613171,40.6011205825678],[-73.6695350972225,40.6023125478855],[-73.669585686746,40.6030022798604],[-73.6691039552934,40.6049065247967],[-73.6648152427185,40.6063388902156],[-73.6625964372044,40.6062096060142],[-73.6621401523288,40.6059746021517],[-73.6628846742397,40.5976774089541],[-73.6628001517546,40.5972485265629],[-73.6637151855845,40.5970699448033]]],[[[-73.5731497470601,40.606422274935],[-73.570318170148,40.6044819568622],[-73.5701371569233,40.6038941675488],[-73.570664538962,40.6029953531188],[-73.5705590848325,40.6013229843913],[-73.5710501300179,40.6004642555487],[-73.5735294945751,40.5986391853244],[-73.5746352137904,40.598188909419],[-73.5755845300264,40.59713763314],[-73.5808136179054,40.5956210585535],[-73.5861049581353,40.5952400725998],[-73.5867407650321,40.5950361605718],[-73.5878957478575,40.595888080093],[-73.589605266996,40.5961522077619],[-73.5899611588503,40.5967556176751],[-73.5896930530605,40.5975631017007],[-73.5886956410242,40.597294171535],[-73.5880298816008,40.5975517790077],[-73.587971624058,40.5982492198969],[-73.5891311460705,40.5990291157374],[-73.5889901536901,40.5994462844201],[-73.5884633878957,40.6002235785494],[-73.588343587671,40.6000194239008],[-73.5880602949631,40.6001781108677],[-73.5881359555679,40.600408751506],[-73.5869049123873,40.5999027279644],[-73.5861724916817,40.6004477783344],[-73.5857427026154,40.6013883992387],[-73.5858897846752,40.6026108434931],[-73.5856761060119,40.6030406306429],[-73.5845671330987,40.6038197790095],[-73.5831053441627,40.604234249726],[-73.5822075597829,40.6048403031578],[-73.58079829085,40.6053544816305],[-73.5803721588253,40.6053492410625],[-73.5798454172854,40.6055949976158],[-73.5769036646987,40.6058110028184],[-73.5743668196414,40.6063697500418],[-73.5731497470601,40.606422274935]]],[[[-73.6069637545909,40.6026914283253],[-73.6073798066198,40.6023631362429],[-73.607478971644,40.6022832569281],[-73.6076381513157,40.602159058379],[-73.6080093657338,40.6020689467983],[-73.6082682673852,40.6018378494609],[-73.6084253988981,40.6017766842057],[-73.6090760756078,40.6015322906704],[-73.6089876167052,40.6012384495082],[-73.6089627118122,40.6011570737888],[-73.6098719173725,40.6001996183632],[-73.6102994130399,40.5997453349081],[-73.6103937738739,40.599647377649],[-73.6103988807963,40.5995078085303],[-73.6104086275171,40.599251184641],[-73.6104120626748,40.5991566370261],[-73.6104271956941,40.5987469346062],[-73.6109369339223,40.5982440919976],[-73.6115344052144,40.5979630098034],[-73.6115777022144,40.5979410098043],[-73.6117126668993,40.5978795736055],[-73.6118812357624,40.59780052449],[-73.6120960534896,40.5976995106711],[-73.6126891877155,40.5978778008622],[-73.6135905689496,40.599010183381],[-73.6136924711405,40.5996194783085],[-73.6144042979683,40.6000604303073],[-73.6144437268227,40.6011914649492],[-73.6151795988557,40.6014705488033],[-73.6154992607563,40.6015869889626],[-73.616219119421,40.6022847676505],[-73.616888963484,40.6029369000121],[-73.6159571203785,40.6030968916035],[-73.6158740342996,40.6031139117454],[-73.6157368516742,40.6031392922438],[-73.6148831628968,40.602876814743],[-73.614186268764,40.6029630390005],[-73.6131013787853,40.6024860740035],[-73.6126073107689,40.6025161703605],[-73.6119113625621,40.6024852821554],[-73.6117142739854,40.6024784078773],[-73.6111248569881,40.6029037230908],[-73.6110611511631,40.6029479987676],[-73.6107548202613,40.6035433737429],[-73.6095251038925,40.6059203091507],[-73.6079393824816,40.6072569661681],[-73.6079681510286,40.6062979142586],[-73.6082237244219,40.6061568613492],[-73.608283555813,40.6061215493121],[-73.6083328607457,40.6060951182978],[-73.6078196047149,40.6055889604814],[-73.6081301702749,40.6051828214424],[-73.6083472778077,40.6049016736242],[-73.6082325872004,40.6046615670823],[-73.6081044254572,40.604394272313],[-73.6073770685548,40.604025161289],[-73.6067744714757,40.6038737545289],[-73.6065909735109,40.603781455273],[-73.6065594974417,40.6037675623931],[-73.6063840304155,40.6036798639481],[-73.6064034483987,40.6035629888901],[-73.606450053894,40.6032752812989],[-73.606483065184,40.603072989738],[-73.6068413762014,40.6029286753509],[-73.6068533785919,40.6029198116217],[-73.6070560304352,40.602836676932],[-73.6069637545909,40.6026914283253]]],[[[-73.4845553380333,40.6045769955004],[-73.4859060107585,40.604301945131],[-73.4881276450675,40.6044842020697],[-73.4887880145991,40.6047811164511],[-73.4887808891623,40.6048350727797],[-73.4887649575407,40.6049519735759],[-73.4886984085478,40.6054465625171],[-73.4871690276749,40.6073227919042],[-73.4865381219863,40.6073235311816],[-73.4841960936663,40.6056983244654],[-73.4843614070348,40.6051825138549],[-73.48447421118,40.6048326686744],[-73.4845553380333,40.6045769955004]]],[[[-73.62706835428,40.6095715352406],[-73.6272099763795,40.6094741270451],[-73.627395080532,40.6093457054628],[-73.6274328331302,40.6091614813361],[-73.6274568325213,40.6090356486038],[-73.6274926528432,40.6090180577945],[-73.6278531656314,40.6088016367228],[-73.627989984439,40.608722187246],[-73.6280435267249,40.6086327392116],[-73.6280924543652,40.608552244744],[-73.6282278798858,40.608324138482],[-73.6282339722601,40.6083152024964],[-73.6278944279473,40.6066761330763],[-73.6276860493441,40.6063898894994],[-73.6276746012141,40.6063717360258],[-73.6274510833035,40.6060672953047],[-73.6272423301028,40.6055468266964],[-73.627904313907,40.6048925762254],[-73.6280035795425,40.6035064541461],[-73.6280635789187,40.6033900568883],[-73.6281935453774,40.6031393652213],[-73.6291100236982,40.6013800904947],[-73.629151624679,40.6008986324135],[-73.6291958999444,40.6003946839995],[-73.6294610835146,40.6000329901687],[-73.6296138420287,40.5998231048948],[-73.6296350719138,40.5997963317203],[-73.6297538525506,40.5983203529188],[-73.6297657489399,40.5981718546011],[-73.6303841240286,40.5982017148534],[-73.6304300998049,40.5982653190972],[-73.6305887979796,40.5984879096013],[-73.6307550348162,40.598377276061],[-73.6308428074059,40.598238685808],[-73.6308771410161,40.5981850420055],[-73.6315719546507,40.5982698529009],[-73.6319569438354,40.5980086665652],[-73.6323245200766,40.5980580645313],[-73.6324833242525,40.5983482173333],[-73.6337316025101,40.5982774178794],[-73.6340481005443,40.5987315871718],[-73.6331438788371,40.5990271718238],[-73.6336550453866,40.5993890579843],[-73.6337636597893,40.5991336020316],[-73.6338747113214,40.5991574377805],[-73.6346815233123,40.5993291359516],[-73.6349720025426,40.5997920026403],[-73.6347290738353,40.6000053331221],[-73.6349844801419,40.6004858025116],[-73.6350036861227,40.600522063543],[-73.6347780383065,40.6014833004092],[-73.6344472310082,40.6017676586785],[-73.6340159579251,40.6018706572424],[-73.6331799938065,40.6020769649061],[-73.633152810786,40.6024685107981],[-73.6327626041862,40.6025134360647],[-73.6317535553736,40.6037446476602],[-73.631734173323,40.6037894602169],[-73.6316179753427,40.6040538322056],[-73.6316071766947,40.6040762250845],[-73.6315467236693,40.604215139472],[-73.6315397096236,40.6042330732383],[-73.631763055956,40.6045465126847],[-73.6317925099176,40.604587400371],[-73.6314840392288,40.6051152421896],[-73.6313337196407,40.6057845900954],[-73.6313288292123,40.6058070533231],[-73.6317826464158,40.6064835634729],[-73.6317812648069,40.6065150765869],[-73.6317278410986,40.6076855422415],[-73.6317210103092,40.6076944701275],[-73.6313273937045,40.6081222086491],[-73.6311770848962,40.6080303421816],[-73.6311587188402,40.6080976879767],[-73.6309953629008,40.6086812993613],[-73.630739081635,40.6087503276165],[-73.6307086152722,40.6087589743862],[-73.6306261732853,40.6087805173113],[-73.6304052802519,40.609214806715],[-73.6302162082408,40.6092846302784],[-73.6295989497579,40.609520531565],[-73.6290673609087,40.609721413765],[-73.6287945335738,40.609551516768],[-73.6285684365999,40.609625402456],[-73.6281305501197,40.6097598295706],[-73.6280665703086,40.6097815904019],[-73.6270508137758,40.6095983522373],[-73.6270368728209,40.6095936821266],[-73.62706835428,40.6095715352406]]],[[[-73.553419185194,40.6081225059933],[-73.5538055128685,40.6062400860254],[-73.5537223971452,40.6055724224676],[-73.5531321914271,40.6044750091314],[-73.5529090804532,40.6038596400098],[-73.552516020804,40.6032466441499],[-73.5521813318854,40.6021884626099],[-73.5513752645978,40.6004172049676],[-73.5515096354963,40.599770285619],[-73.5532500791384,40.5991119768764],[-73.5541257865218,40.5991274531355],[-73.5569355155079,40.599887790717],[-73.5573694637739,40.5996995333697],[-73.5584767936684,40.5997989474476],[-73.5598042467402,40.5995542731717],[-73.5600887791233,40.5999947311034],[-73.5604354982802,40.6000846354045],[-73.5617965968526,40.599889903758],[-73.5635080320977,40.6000643576341],[-73.5662509381047,40.6008821921372],[-73.5682087273332,40.6048476771104],[-73.5678087488597,40.6059012034708],[-73.5682538218622,40.6071994327031],[-73.5671516707553,40.6077848162287],[-73.5649875501841,40.6084560830838],[-73.5645958919067,40.6081854651906],[-73.5644127272169,40.6083903805383],[-73.5640190809678,40.6080746942545],[-73.5638580480717,40.6079015311396],[-73.5629565078357,40.6076380745935],[-73.5591619252609,40.6088249220803],[-73.5588218976545,40.6094872992624],[-73.5577869234628,40.6098977671657],[-73.5554110708775,40.6098275193789],[-73.5537830873257,40.6087531503139],[-73.553419185194,40.6081225059933]]],[[[-73.6136497149263,40.60755090363],[-73.6137076086514,40.6075020521317],[-73.6137225593126,40.6075292573282],[-73.6139475711217,40.6079373394026],[-73.6137979944403,40.6085976637649],[-73.613078795139,40.6102240561467],[-73.6125386165991,40.6101590093404],[-73.6125084269173,40.610154142182],[-73.6125677669301,40.6092855413907],[-73.6131969990574,40.6079373325827],[-73.6134331921967,40.6077329757565],[-73.6136497149263,40.60755090363]]],[[[-73.6247029311351,40.6047373671413],[-73.6247667223001,40.6046525467189],[-73.6248228508357,40.6045811483098],[-73.6251087567428,40.6046881514354],[-73.625194057169,40.60459908266],[-73.6258403572866,40.6039176319426],[-73.6266123918997,40.6037691719758],[-73.6269949601247,40.6040980280059],[-73.6270953288914,40.6046802666343],[-73.62651465879,40.6048625368636],[-73.6262990074263,40.6049320376073],[-73.6260872421745,40.6054610163417],[-73.6262416023847,40.6056790564044],[-73.6271183024065,40.6069146365138],[-73.6273283608592,40.6076963660499],[-73.6274375924045,40.6080985411367],[-73.6268989131528,40.6086821872946],[-73.6264849488087,40.6091276848642],[-73.6263411105654,40.6091890322984],[-73.6255838783916,40.6095133306658],[-73.6250584645616,40.6097367886826],[-73.6238480889209,40.610253862596],[-73.6234381696904,40.6101048390822],[-73.6233243387709,40.6098917829311],[-73.6232502978285,40.6097557732401],[-73.6230496878559,40.6093795297851],[-73.6233792087668,40.6085501790333],[-73.6233932422481,40.6085143124486],[-73.6234508548006,40.6083708650128],[-73.6239237441358,40.6071783796204],[-73.623927069699,40.6070523010465],[-73.6239353827086,40.6067190872731],[-73.6239385223205,40.6066020149764],[-73.6239451725486,40.6063498574621],[-73.6239766683808,40.605102562888],[-73.6245495923094,40.6049382303005],[-73.6247029311351,40.6047373671413]]],[[[-73.6694214863902,40.6067749407138],[-73.6707622201551,40.6057724299274],[-73.671374082458,40.6057254240031],[-73.6715196023475,40.6060243781992],[-73.6747089620677,40.6045160864627],[-73.6754789071994,40.6031961724067],[-73.6762912240664,40.6028721769004],[-73.6767676572554,40.6030983477448],[-73.6767139775273,40.6038724620906],[-73.6778470154086,40.6041421876298],[-73.6778032926071,40.604186729157],[-73.6769229085944,40.605077490041],[-73.6764386367062,40.6047611449667],[-73.6759199054437,40.6047687085285],[-73.6753389137455,40.606433115998],[-73.6729866536145,40.6081942804828],[-73.6726140342312,40.6097394538044],[-73.6727249968301,40.6103668190093],[-73.6723534239841,40.6108129695721],[-73.6720905392028,40.6107694069748],[-73.6715924494289,40.6099934514231],[-73.6709497255043,40.6096572427963],[-73.6699467654728,40.6079656096805],[-73.6690436585749,40.6075363049938],[-73.667833524581,40.6074277562666],[-73.6694214863902,40.6067749407138]]],[[[-73.4826205420828,40.6071279729075],[-73.4834066119738,40.6070932601731],[-73.484350731456,40.6073218596234],[-73.4845831705357,40.6075951619067],[-73.4837493039834,40.6085345951574],[-73.4834058852368,40.6089219472708],[-73.4825679834521,40.6105279371398],[-73.4819681127599,40.6108533596897],[-73.4809045793287,40.6108393700784],[-73.4805773949359,40.6108350642182],[-73.4797672331273,40.6104640642794],[-73.4788232834267,40.610357042441],[-73.4783448829272,40.6098868080029],[-73.4788122143858,40.6098028827162],[-73.4786089489932,40.6095794999368],[-73.4774594683489,40.6091544658945],[-73.4773767945967,40.6086308910541],[-73.4774387073844,40.6086046826747],[-73.4779297992822,40.6084174783025],[-73.4783701570278,40.6082521247566],[-73.4788008102733,40.6080911457193],[-73.4801487593066,40.6075819102058],[-73.4814771250667,40.6072840978094],[-73.482068049437,40.6071567434279],[-73.4826205420828,40.6071279729075]]],[[[-73.5661883318176,40.6093403172203],[-73.5681515244126,40.6088421992319],[-73.5683840353576,40.609336041952],[-73.5682278353976,40.6098701046533],[-73.5674002031533,40.6105714998945],[-73.5647160909833,40.6111642387313],[-73.564467190276,40.6108503536353],[-73.5647800052175,40.6098002598788],[-73.5655436271079,40.6097782228576],[-73.5661883318176,40.6093403172203]]],[[[-73.6924791475572,40.609578829563],[-73.6931392080684,40.6062621719534],[-73.6935291415804,40.6059648010707],[-73.694550399396,40.6063276876771],[-73.6963812737429,40.6061231670222],[-73.7007638638583,40.6040420707066],[-73.7033751981172,40.6031255410933],[-73.7037955566696,40.6032383642822],[-73.7030450699453,40.6043830223891],[-73.7028949857158,40.605115528635],[-73.7024149529774,40.6052993124237],[-73.7022647277125,40.6060768583516],[-73.6996833962857,40.606696419753],[-73.6992330879017,40.6070606943345],[-73.6989935754874,40.6074498643077],[-73.6990740708251,40.6080228110421],[-73.6991733670033,40.6087310965801],[-73.6989335132292,40.6089851355399],[-73.6969817076788,40.6090982454956],[-73.6959014862446,40.6095995299944],[-73.6959015850593,40.6101265275132],[-73.6948207653471,40.6112268595434],[-73.694638674144,40.6112067829189],[-73.6943407056592,40.611180891975],[-73.6937989568642,40.6108504566104],[-73.693319944612,40.6105612678087],[-73.6924791475572,40.609578829563]]],[[[-73.6243347206833,40.6115974174372],[-73.6242748982753,40.6110922314763],[-73.6244661990066,40.610878308982],[-73.6245010060289,40.6108381855236],[-73.6245751439893,40.6107534887763],[-73.6248272849199,40.6108150481699],[-73.6249197026981,40.6108116445341],[-73.6252160667917,40.6106980648832],[-73.6254122579515,40.6106778810327],[-73.6259874465329,40.6107297717311],[-73.6262454965815,40.6107553641533],[-73.6264664318357,40.6107895226021],[-73.6266325267385,40.6108320370222],[-73.6268215196979,40.6109108579573],[-73.6267820989282,40.6109959691323],[-73.626728273673,40.6110268581779],[-73.6267005768162,40.6110445452956],[-73.6266142523106,40.6110750476519],[-73.6265353146517,40.611105637966],[-73.6265161104675,40.6111054095122],[-73.6264141831238,40.6111041970021],[-73.6262746792518,40.6111701001008],[-73.6262307345664,40.6112596613523],[-73.6262207632668,40.6112775598128],[-73.6261224363707,40.6113169274073],[-73.626039803941,40.6112754055329],[-73.6259240272705,40.6113010529841],[-73.6258581079967,40.6114173778168],[-73.6257163870825,40.6114472198771],[-73.6255211166959,40.6114223737715],[-73.6255023742458,40.6114356628998],[-73.6252671279308,40.6115950135752],[-73.624804571018,40.6118507485539],[-73.6245749535465,40.6119155754915],[-73.6244661927184,40.6118512204592],[-73.6243347206833,40.6115974174372]]],[[[-73.6347138590693,40.6118963180882],[-73.6342186241414,40.6112913972576],[-73.6346227555265,40.610782696915],[-73.6346636486348,40.6107336336452],[-73.634794818836,40.6105685292891],[-73.6348753752591,40.6102767069012],[-73.6345485807351,40.6098899825459],[-73.6347238465386,40.6082480130942],[-73.6347095031385,40.6067749611737],[-73.6345416098085,40.6057685315803],[-73.6343911060658,40.6049604939824],[-73.6350206005012,40.6042292464138],[-73.6350688741679,40.6041802704056],[-73.635605511549,40.6036190816321],[-73.6360378437458,40.6031737683204],[-73.6384191194605,40.6000579271309],[-73.6396664661651,40.5994150148829],[-73.6414593489619,40.5991883970948],[-73.6425321377355,40.5993947000775],[-73.6432452383743,40.6000742148275],[-73.6435380451395,40.6000596391126],[-73.6442196625226,40.60003161308],[-73.6444893996529,40.6003545815293],[-73.6438388954197,40.6016937076934],[-73.6435520507731,40.6019245572647],[-73.6432216423268,40.6021909281942],[-73.6435404696925,40.6037396272607],[-73.6419782131751,40.6041356477133],[-73.6418507233717,40.605215163132],[-73.6414544836864,40.6066518539824],[-73.6416391422745,40.6070909379881],[-73.6416182798003,40.6070997009113],[-73.6405420055635,40.6074969147124],[-73.6404347386337,40.6075406935872],[-73.6401658890389,40.6079023692985],[-73.6401761549859,40.6079790618084],[-73.640262070758,40.6086241790366],[-73.6407175184037,40.6094808423871],[-73.6407261988243,40.6094899534826],[-73.6422825480203,40.6110712375859],[-73.6416702832721,40.611609045991],[-73.6401904579619,40.6115736045371],[-73.6394134269192,40.611965323928],[-73.6373231604408,40.6116118569746],[-73.6367802959382,40.6117135480816],[-73.6352941509799,40.6119887609382],[-73.6347138590693,40.6118963180882]]],[[[-73.4885814973052,40.6100438007357],[-73.4892415542231,40.6099308274093],[-73.4901428096932,40.6102939441238],[-73.4891830020329,40.6115785902508],[-73.4888477274127,40.6117363530168],[-73.4886131754954,40.6118503905332],[-73.4882048992836,40.6119035992],[-73.4867817199385,40.6120786334218],[-73.4863914792027,40.6117582250435],[-73.4867213845925,40.6111184525191],[-73.4885814973052,40.6100438007357]]],[[[-73.5962634972369,40.6084938537833],[-73.596504581703,40.6081995071882],[-73.5968948655579,40.6085420682712],[-73.596625602738,40.6108539604915],[-73.597135853006,40.6111484331489],[-73.5970759551394,40.6115395719674],[-73.5963688965692,40.6120354473998],[-73.5962459738007,40.6121195321847],[-73.5959956007546,40.6122921517749],[-73.5955751424892,40.6122960449678],[-73.5954931415751,40.6121193828396],[-73.5959639387341,40.6088640599303],[-73.5962634972369,40.6084938537833]]],[[[-73.6090029841847,40.6092966875119],[-73.6084147691333,40.6090193439956],[-73.6081651201294,40.6090523678473],[-73.6079265500478,40.6090855246673],[-73.6076617913807,40.6086364137032],[-73.6080272682591,40.6080057266799],[-73.6085340896576,40.6077190632383],[-73.6094266727919,40.6072118347184],[-73.609886392825,40.6069516231093],[-73.6100252975208,40.6067010593763],[-73.6105334358495,40.6057793079588],[-73.6111698365327,40.6046203732154],[-73.6115421037763,40.6034447454759],[-73.6115468145417,40.6034312890252],[-73.6119394474911,40.6033414226447],[-73.6123935629352,40.6032432851428],[-73.612502590563,40.6032220746285],[-73.6131001184489,40.6033688866604],[-73.613981230097,40.6035911689446],[-73.6150041390161,40.6038511787992],[-73.6154446108477,40.6042708517807],[-73.6151136517341,40.6043074197144],[-73.6148693791471,40.6043315141503],[-73.614301901704,40.6049823198038],[-73.6138847968496,40.605076404276],[-73.6133006646412,40.6063891256597],[-73.6130579524278,40.6069447329227],[-73.6127352380519,40.6072606550572],[-73.6125655220402,40.6074297749547],[-73.6124697679191,40.6075232128666],[-73.6118800032738,40.608106174565],[-73.6117443396996,40.6092711361312],[-73.6117138212345,40.609532013857],[-73.6106583555729,40.6109471515224],[-73.6105010803296,40.6111569568572],[-73.610472173442,40.6111971462734],[-73.6103102790615,40.6114159041261],[-73.6102538621667,40.6122845386009],[-73.6101553304548,40.6123689326725],[-73.6098432036228,40.6126354263234],[-73.6093460103676,40.6126699752422],[-73.6087719294088,40.6118522986128],[-73.6084309936057,40.6113707413876],[-73.6084925380841,40.6111462727273],[-73.6085723776516,40.6108589653536],[-73.6090029841847,40.6092966875119]]],[[[-73.5876765050293,40.6026192059651],[-73.5887872206741,40.6019301323034],[-73.5902578139982,40.6021823214972],[-73.5938001388614,40.603576795195],[-73.5942511748807,40.6040146935846],[-73.5940714004328,40.6046971451954],[-73.592840869292,40.6051821189699],[-73.5928588427842,40.6052408927044],[-73.5929307385497,40.6054759884901],[-73.5934384492803,40.6057479247611],[-73.5947024417671,40.6064164322451],[-73.595212743239,40.6069181071835],[-73.5954234017664,40.6075827906519],[-73.5950342785347,40.6104652563424],[-73.5947047297761,40.6111729104209],[-73.5949150155027,40.6133014583821],[-73.5946149251972,40.6135545450458],[-73.5942551202815,40.6135546677926],[-73.5933535117735,40.6122284538137],[-73.5927531353298,40.6117932354104],[-73.5911318442269,40.6109672036745],[-73.5888503264245,40.6107636683222],[-73.5881896379909,40.6102826467738],[-73.5879189702059,40.6097343267865],[-73.5882789520897,40.6075136486627],[-73.5880081127265,40.6066230061789],[-73.5867469687975,40.6046302215527],[-73.5865367190035,40.6037403167898],[-73.5876765050293,40.6026192059651]]],[[[-73.5276456321572,40.6052292316701],[-73.5295394559476,40.6046678273203],[-73.5307300192447,40.604881172932],[-73.5310453099432,40.6063715702998],[-73.5317890296585,40.6074260062822],[-73.5325744321013,40.6079945135091],[-73.5357665469543,40.6102961570839],[-73.5357226004724,40.6109892450773],[-73.5354865564533,40.6111754268201],[-73.534685356238,40.6118003494569],[-73.5341456017029,40.6122258985835],[-73.5340436276468,40.6123957628673],[-73.5333028633887,40.6136340133267],[-73.5332204357749,40.6134167643415],[-73.5329399215561,40.6126970330826],[-73.53323063345,40.6125791147458],[-73.533374120452,40.6115584864541],[-73.5334383778426,40.6112214885014],[-73.5333226191385,40.6108731943267],[-73.5328381666889,40.6104931900276],[-73.5304185472846,40.6096561584696],[-73.530307075341,40.6096187055416],[-73.5299617800138,40.6094971993941],[-73.5291630537587,40.6094690075085],[-73.5289800893932,40.6094576670551],[-73.5288384457341,40.6092801988355],[-73.5282423901869,40.6085339124975],[-73.5276854436939,40.6083286252288],[-73.5274809709656,40.6082539497373],[-73.5269679458018,40.608067236092],[-73.5270582390642,40.6076224734553],[-73.5276683469574,40.6073239717474],[-73.527975019219,40.6063099352029],[-73.5276456321572,40.6052292316701]]],[[[-73.4732179748186,40.6136746901936],[-73.4729393802995,40.6134503008754],[-73.4729669127647,40.6134416567585],[-73.4733428954403,40.6133475376918],[-73.4735910200033,40.6132877604671],[-73.473866676133,40.6132193376795],[-73.4745249561833,40.6136739516684],[-73.4746288499392,40.6136212742679],[-73.4749188045533,40.6134764671206],[-73.4749883125968,40.6134413519368],[-73.4750735366661,40.6133974364503],[-73.4751423062944,40.613362310996],[-73.475108331112,40.6133618622869],[-73.4745872741112,40.6133054326658],[-73.4745156693999,40.6132053949347],[-73.4744376219714,40.6130962634995],[-73.4743459524899,40.6129689351971],[-73.4742214343134,40.6127916263281],[-73.4742195262918,40.6127780885633],[-73.4744278527927,40.61222682875],[-73.4748426588583,40.6119845799475],[-73.4752738124654,40.6117380415133],[-73.4758537890674,40.6115745415321],[-73.476545366072,40.6113764779423],[-73.4768104068101,40.6119700218327],[-73.4770044339283,40.6124049826756],[-73.4770290576485,40.6124593576964],[-73.4770387163345,40.6123919221895],[-73.4770632825625,40.6122210874948],[-73.4771578787552,40.6115692305294],[-73.4772052271572,40.6112410502489],[-73.4776544925971,40.6114001170158],[-73.4777326666881,40.6112435018603],[-73.477739937652,40.6110859513816],[-73.4777436863217,40.6110184387918],[-73.4777762349793,40.6103657619724],[-73.4782995153105,40.6107465075997],[-73.4787275140343,40.6121034008602],[-73.4787392523201,40.6121395887586],[-73.4783786362257,40.612305995147],[-73.4779717146734,40.6124943104132],[-73.4773648056809,40.6127700703755],[-73.4759574250068,40.6134181166048],[-73.4756401454383,40.6135625651853],[-73.4756100896055,40.6135846896088],[-73.4751564008612,40.6139120066568],[-73.4749363055317,40.6140712491384],[-73.4742911920885,40.6145311592336],[-73.4739074111379,40.6148053451152],[-73.473609382466,40.6147203301689],[-73.4732322005394,40.6146072420042],[-73.473099334319,40.614569451575],[-73.4730324484579,40.6144244330423],[-73.4727661815195,40.6138533851158],[-73.4727626942596,40.613844330533],[-73.4730306392509,40.6137577916261],[-73.473195940043,40.6137014237127],[-73.4732368699823,40.6136884528121],[-73.4732179748186,40.6136746901936]]],[[[-73.5170921963515,40.6046662361737],[-73.5170968424382,40.6041888516104],[-73.5178355845885,40.6039866426113],[-73.5180413481959,40.6043361075604],[-73.5187703921344,40.6039040541866],[-73.5188796892567,40.6039054564304],[-73.5226642870571,40.6038954020146],[-73.5235136414633,40.6036675465308],[-73.5244423593299,40.6037604979615],[-73.5243789122197,40.6040254347806],[-73.5216092777397,40.6063817218691],[-73.5204850388566,40.6092229739991],[-73.5202810215741,40.6098644579887],[-73.5202005585758,40.6108993895412],[-73.5198727812949,40.6120933013056],[-73.5193972733706,40.6130510984872],[-73.5193583251148,40.6135100261282],[-73.5186573625121,40.6147396829082],[-73.5178252539627,40.6148821429004],[-73.5172666536713,40.6147173222427],[-73.5167645475297,40.6145036779836],[-73.5150574062318,40.6136574620262],[-73.5130388360928,40.6133972577851],[-73.511785793171,40.6115343925778],[-73.5117920625134,40.6114849275107],[-73.5119584565551,40.6102123877983],[-73.5127522591442,40.609596536841],[-73.5128056397333,40.6092549065973],[-73.5137880121752,40.6084297805228],[-73.5152288002964,40.6072186791841],[-73.5170921963515,40.6046662361737]]],[[[-73.6100310117043,40.6150519479243],[-73.6119105998924,40.6121963732915],[-73.6119411695615,40.6121471944478],[-73.6125711221377,40.6116232707127],[-73.6131301176878,40.6118506953622],[-73.6151944192613,40.6127042568245],[-73.6153943896334,40.6127877318001],[-73.6151546544369,40.6137712794119],[-73.6134442827972,40.6146651011843],[-73.6132514037259,40.6146672880868],[-73.6125735089614,40.6146861669105],[-73.6124328076351,40.614630425097],[-73.6118526495734,40.6143892297073],[-73.6104211419474,40.6149080064974],[-73.6100310117043,40.6150519479243]]],[[[-73.6584138282409,40.6081249147542],[-73.6600291608185,40.607882432164],[-73.6622551905841,40.6078001513548],[-73.6624712273251,40.6079693114881],[-73.6632922569521,40.6076590218235],[-73.6640303639935,40.6078026937964],[-73.6646176313223,40.6076563457069],[-73.6655559431961,40.6077257528412],[-73.6661535222861,40.6081380408626],[-73.6662587141075,40.6086437313148],[-73.6652286312426,40.6095101499673],[-73.6649792149023,40.6102009178985],[-73.6645023972343,40.6105872701516],[-73.6638624365276,40.6136742721733],[-73.6625568394667,40.6152356321049],[-73.6605177832476,40.6157840235552],[-73.6598120047767,40.6154605343587],[-73.6598187385481,40.615271435074],[-73.6600475699936,40.6140984878023],[-73.6608859766314,40.6136622989247],[-73.6616433345694,40.6127702367675],[-73.661296919043,40.6112482932428],[-73.6605409714601,40.6102576004208],[-73.6583857999057,40.6093046979329],[-73.6577997542857,40.6086132414883],[-73.6584138282409,40.6081249147542]]],[[[-73.6943009462248,40.6135271520446],[-73.6928528889362,40.6118577057471],[-73.6935761073001,40.6123163176636],[-73.6936296774338,40.6123349407424],[-73.6937663632908,40.6123725217163],[-73.6952304195745,40.6128034715291],[-73.6951178085671,40.6130093935686],[-73.6950787354455,40.6130810196038],[-73.6959401281749,40.613122284632],[-73.6961335668965,40.6131289743759],[-73.6967018914509,40.6131579141593],[-73.6974843384365,40.6131937721143],[-73.6974871681296,40.6135045973059],[-73.6963452432151,40.6144781340493],[-73.6963003283493,40.6146983343214],[-73.6960763963152,40.6158038478638],[-73.6949820443816,40.6150888181826],[-73.6948406190132,40.614762913689],[-73.6943009462248,40.6135271520446]]],[[[-73.6192123948809,40.6153783522104],[-73.6178396191082,40.6152718374004],[-73.617078490941,40.6156005365892],[-73.6166111172616,40.6155138601662],[-73.6156091498684,40.6147316254048],[-73.6144407659756,40.614924799964],[-73.6161247406207,40.6139135368921],[-73.6161638981839,40.6138419383444],[-73.616528773191,40.6132022096384],[-73.6160133405423,40.612223118995],[-73.6159693114153,40.6121370110211],[-73.6154866645794,40.6118609695311],[-73.615209245955,40.6116999937316],[-73.6151720413292,40.6116770264809],[-73.6142264566949,40.6115305511684],[-73.6137019753162,40.6113846224579],[-73.6143048634495,40.6108108173231],[-73.6149083866917,40.6102415211578],[-73.6155182601246,40.6090777406349],[-73.6156708147211,40.6088093171272],[-73.6159944813112,40.6082321543094],[-73.6159070590644,40.607492413588],[-73.6146504489326,40.6077070534593],[-73.6147102057636,40.6069240364428],[-73.6154421350908,40.6061445791705],[-73.615635928647,40.6060252893559],[-73.6161319963132,40.6057204467188],[-73.6178810026967,40.605376560349],[-73.6181918611075,40.6051325496269],[-73.6215850871931,40.6051190696455],[-73.6216582028707,40.6051199433039],[-73.6215454750823,40.6052852534486],[-73.6222696959661,40.6056317169127],[-73.6221518873065,40.6059005637503],[-73.6221687810237,40.6059052695833],[-73.6226760677495,40.6060599637709],[-73.6227802795089,40.6065972096208],[-73.6230286169726,40.6066992657251],[-73.6229404428359,40.6070360300541],[-73.62226510288,40.607473889412],[-73.6218327095978,40.6087073890467],[-73.6215336793043,40.6086632801775],[-73.6228990529592,40.6112469852622],[-73.622359620021,40.612907109788],[-73.621829647241,40.615040287238],[-73.6205192190405,40.6159615099605],[-73.6203381501203,40.6160359170344],[-73.6192123948809,40.6153783522104]]],[[[-73.5066073954269,40.6152600308239],[-73.5070811121105,40.6152211169768],[-73.5071003162947,40.6152213658738],[-73.507311245215,40.6147736756608],[-73.5073934473517,40.6145990753782],[-73.50739891899,40.6145856334478],[-73.5074076083938,40.614527191842],[-73.5074371315256,40.6143293893143],[-73.5075929559897,40.6141332200832],[-73.5076316266661,40.6140886783659],[-73.5076296117449,40.6140796442725],[-73.5076054910812,40.6139351981739],[-73.507580631104,40.6137907428979],[-73.5077189590814,40.6132520300835],[-73.5078541294805,40.6127222837837],[-73.5073996070996,40.6128290113301],[-73.5067693760457,40.6137262007784],[-73.5066740423361,40.6138600925165],[-73.506219647516,40.6139938428284],[-73.5057980510852,40.6141145027186],[-73.5056619832691,40.6141532787804],[-73.505454508371,40.6142136512288],[-73.5054262042531,40.6141907632628],[-73.5049851314486,40.6137931875964],[-73.5055682719169,40.6135845389031],[-73.5058154927747,40.6134976552865],[-73.5056709772017,40.6132525585791],[-73.5052850304129,40.6132655779812],[-73.5052617891999,40.6122203066732],[-73.5052614514333,40.6122022857159],[-73.5052888796939,40.6121981367898],[-73.5066442757609,40.6118463377394],[-73.5104234935511,40.6108682174258],[-73.5110015989623,40.6107180298198],[-73.5109963168684,40.6114881776739],[-73.5110982729582,40.6116876771105],[-73.5117760069243,40.613007135009],[-73.511795548875,40.6130254039725],[-73.5119608891929,40.6131986942876],[-73.5122713909726,40.6135224938012],[-73.5123559080678,40.6136091625788],[-73.5124807891636,40.6137413933826],[-73.5124887132027,40.6137505038972],[-73.5109921567703,40.6140374919734],[-73.5102122825598,40.6141895794493],[-73.5090815443656,40.6149361858597],[-73.5090650953144,40.6149449818497],[-73.5086812164474,40.6151967605219],[-73.5084267434904,40.6153105814227],[-73.5081580358293,40.6154332253316],[-73.506684185214,40.6160582643026],[-73.5065327580032,40.6159572132951],[-73.5062591500323,40.6157690012095],[-73.5060888213696,40.6156541923271],[-73.5060596773268,40.6156357979298],[-73.5060813985904,40.6156225669169],[-73.5064509915494,40.6154156532543],[-73.5066073954269,40.6152600308239]]],[[[-73.4338420113753,40.6136156463322],[-73.4346062683746,40.6128422879039],[-73.437008134374,40.6149017042582],[-73.4369781935255,40.6151084906314],[-73.4363474630084,40.6153837113258],[-73.4337527960912,40.6157584160113],[-73.4328950756747,40.6158819005664],[-73.4314243134674,40.6160916379002],[-73.4308535805297,40.6159802854513],[-73.4308839238234,40.6143997387476],[-73.4334054355371,40.6140556344997],[-73.4337549709125,40.6137045482939],[-73.4338420113753,40.6136156463322]]],[[[-73.5924096528028,40.6164013578926],[-73.5906513012455,40.6154475297043],[-73.5882397073899,40.6152739233605],[-73.5870393470662,40.6150520420281],[-73.5864856201352,40.6149281522468],[-73.5863117736698,40.6145882076813],[-73.5858880931476,40.6137632517964],[-73.5857590034446,40.6125275173526],[-73.5856177101285,40.6111700189486],[-73.5844254588969,40.6100428637192],[-73.5805786365934,40.6095902429663],[-73.5795056492922,40.6097436990404],[-73.5787461174313,40.6101307195316],[-73.5783286676238,40.6103417808713],[-73.5776610127551,40.6102975216858],[-73.5757204559087,40.6098006506447],[-73.5742103528818,40.6097684946228],[-73.5726732321244,40.6087495631216],[-73.5725102175448,40.6080088569833],[-73.5727877044411,40.6075708763267],[-73.5731892603562,40.6073776552732],[-73.5734078590924,40.6072767602711],[-73.5750723654487,40.6069234710695],[-73.5813658751926,40.6063208560782],[-73.5813755230988,40.6062489070303],[-73.5813876719147,40.6061634760882],[-73.5813895296307,40.6061454821415],[-73.5825950076566,40.6058720218428],[-73.5826383190296,40.6058500326307],[-73.5857784888015,40.6044562085831],[-73.5858038248857,40.6058122870352],[-73.5858488134134,40.605920939323],[-73.5860973458115,40.6065365574915],[-73.5861146913814,40.6065547866222],[-73.5874242473177,40.6076878650878],[-73.5867823309786,40.6093330535605],[-73.5870432969585,40.6106920159345],[-73.5875159913594,40.6113644244938],[-73.5894855107889,40.6120010815955],[-73.5898377312286,40.6118342257285],[-73.5912672598661,40.6121174297595],[-73.5920602710394,40.6124559132281],[-73.5922155340564,40.6125208664189],[-73.5931214688508,40.6136399474455],[-73.593167512899,40.6136990635695],[-73.5929257753577,40.6141285209668],[-73.594101337688,40.6150752174655],[-73.5940125167643,40.6154705058877],[-73.5936775888937,40.6161510655291],[-73.5928720884431,40.6159475671061],[-73.5924096528028,40.6164013578926]]],[[[-73.4611751394584,40.614582279102],[-73.461775358697,40.6140542822492],[-73.4622561172741,40.6143534583156],[-73.4642671981585,40.61435320396],[-73.4646573454696,40.6146736851344],[-73.4624064997442,40.6165264703099],[-73.46195662345,40.6166195688743],[-73.4615062827267,40.6164108805926],[-73.4612351837503,40.6154749048705],[-73.4611751394584,40.614582279102]]],[[[-73.5485124838059,40.6165828494779],[-73.5479709721661,40.6161706606104],[-73.5470617207917,40.6162267816387],[-73.5458646725565,40.6153469012382],[-73.5455675808274,40.6147035625637],[-73.5456566371098,40.6140380641057],[-73.5464762393137,40.6137195820145],[-73.5471993399983,40.6137286857129],[-73.5472755153378,40.6132476957376],[-73.5469613870593,40.6128789016107],[-73.5463589965928,40.6126866444771],[-73.5457736480654,40.6133098590684],[-73.5456861018511,40.6133267722742],[-73.5455496127251,40.6133520779737],[-73.5452209443155,40.6134154986828],[-73.5444365318162,40.6130317609432],[-73.5442515327665,40.6130114114062],[-73.5440886933583,40.6129913407734],[-73.5438534057208,40.612871263272],[-73.5430513197666,40.6127575452795],[-73.5429708944975,40.612990748174],[-73.5432962310557,40.6133867199461],[-73.5433969950812,40.6135096046972],[-73.5434819990632,40.613609769493],[-73.5443701337402,40.6141164346007],[-73.5442422765258,40.6145607373654],[-73.5434041097382,40.615018599038],[-73.5417477133723,40.6149481377407],[-73.5388502998314,40.6162582485623],[-73.5368872886961,40.6160171804276],[-73.535337344488,40.6161461613027],[-73.5353109501883,40.6161368179048],[-73.5341586775801,40.6156492498774],[-73.5341047966294,40.6141261492461],[-73.5343927947128,40.6132199595997],[-73.5350440795821,40.6125255738316],[-73.5353176004164,40.6123488775313],[-73.5367825783716,40.6114035608566],[-73.5369987651313,40.6110099321147],[-73.5381127290842,40.6108799115739],[-73.5381282393959,40.6108801079767],[-73.5392658793464,40.6101378057946],[-73.5393663181817,40.6100715143232],[-73.5406350313153,40.6096191256332],[-73.5411931968222,40.6092613416714],[-73.5410829394009,40.6091338301125],[-73.5410750117685,40.6091247216963],[-73.540675859745,40.6087953734623],[-73.5402640513575,40.6084028055199],[-73.5395805367326,40.6088175540223],[-73.5390294652215,40.6086799585956],[-73.5387709714053,40.6086766864725],[-73.5390609053582,40.609000154637],[-73.5378706789292,40.6102237376711],[-73.5367572521688,40.6100249560624],[-73.5364064088464,40.609480004248],[-73.5341717049484,40.6079562542269],[-73.5335955407965,40.6074129366391],[-73.5327899020053,40.6066550027631],[-73.5326524391056,40.6065226331303],[-73.5322039165724,40.6059539060534],[-73.5322377947368,40.6056885894985],[-73.5322715740864,40.6054277758823],[-73.5322768921129,40.6053873054182],[-73.5323822555125,40.6052309980802],[-73.5324105659187,40.6051863160724],[-73.5324258291937,40.6051639890386],[-73.5324494126649,40.6051327596868],[-73.5325242495145,40.6050211066211],[-73.5325448793251,40.6049898390097],[-73.5327105062055,40.6046451215934],[-73.5330716855436,40.6044785529039],[-73.5332747254591,40.6043820402799],[-73.534183220452,40.6034071615273],[-73.5350916893938,40.602432274694],[-73.5434877869086,40.6010296149729],[-73.5469752238097,40.6012267093395],[-73.5470856330463,40.6018586880173],[-73.5483798340795,40.6029154418218],[-73.548701193796,40.603631146708],[-73.5493495726152,40.6045626587918],[-73.5492489792697,40.6049442518074],[-73.5499530060259,40.6062412999878],[-73.5507703399837,40.6071163715357],[-73.5510859325161,40.607827493509],[-73.5522122429143,40.6098595076092],[-73.5535747428585,40.6108089589965],[-73.5542202362891,40.6113665583124],[-73.5542561680021,40.6119615630127],[-73.5543941752809,40.6122425515627],[-73.5544045912467,40.6129588500939],[-73.5534259665761,40.6138699497212],[-73.5534660350311,40.6148208375161],[-73.5527095242044,40.6158112853875],[-73.5521403669118,40.6157546007572],[-73.552042605056,40.6164154915836],[-73.5516715658094,40.6167981965956],[-73.5508883202216,40.6170406004644],[-73.5497728219462,40.6166572463132],[-73.5485124838059,40.6165828494779]]],[[[-73.4577528223306,40.6158383139977],[-73.4577524710893,40.6150185513042],[-73.4573913743963,40.6152029018026],[-73.4569755280816,40.6154225521142],[-73.455861314397,40.6160022038219],[-73.4555546825596,40.6162593436923],[-73.4553558494546,40.6164233374958],[-73.4549610309041,40.6167558666735],[-73.4541501971556,40.6166414161181],[-73.4530096242057,40.6147433959331],[-73.4530390772689,40.6144915575895],[-73.4594034586989,40.6138740160307],[-73.4601841638511,40.6139159611284],[-73.4603943372882,40.6141259562625],[-73.4603948376498,40.6165492047309],[-73.4599150537448,40.6172364468082],[-73.459374570676,40.6171886975053],[-73.4577528223306,40.6158383139977]]],[[[-73.640182355158,40.6128842391048],[-73.641100070459,40.6123680522895],[-73.6422210511526,40.6124668249157],[-73.6433796721549,40.6111066588477],[-73.6430785963976,40.6104319904117],[-73.6424159002293,40.6101404313466],[-73.6415799513821,40.6092477670468],[-73.6411156876702,40.6082423635645],[-73.6412302875477,40.6079824676344],[-73.6430252086219,40.6076297318451],[-73.6444173610554,40.6083802797406],[-73.6454382433752,40.608311188361],[-73.6452284121962,40.6077637135455],[-73.6425875314492,40.6066606803888],[-73.64279851876,40.6047398544561],[-73.6434294064823,40.6043734188606],[-73.6453205245471,40.6040803329115],[-73.6475413144396,40.6049486664875],[-73.6481119925801,40.6048562582296],[-73.6479921977454,40.6044224486068],[-73.6450811953891,40.602726253154],[-73.6458146356826,40.600680928698],[-73.6453023309676,40.5989813240944],[-73.6471254977694,40.5977640409859],[-73.6507277708048,40.597400822089],[-73.6507582910666,40.5961399912731],[-73.650998877866,40.5960031712214],[-73.6546004124862,40.5958920601871],[-73.6547201866596,40.5966231431749],[-73.6559509351927,40.5962816444265],[-73.6577610827111,40.5966990805841],[-73.6601294819745,40.5966815533736],[-73.6612296478046,40.5964420803066],[-73.6620943517241,40.5965647117801],[-73.6617733944529,40.5972141067724],[-73.6614135823507,40.5972189434968],[-73.6613895290606,40.5981285211292],[-73.6621235945815,40.5981730652996],[-73.6612969648571,40.6059152793665],[-73.6605998272808,40.6061999672841],[-73.6587865644051,40.6063680900537],[-73.6575577310802,40.6068267498755],[-73.6555011738828,40.6089963751415],[-73.6539089693305,40.610293053484],[-73.6527739551556,40.6108203189973],[-73.6522198096096,40.6128452577263],[-73.6526397127162,40.6137149722012],[-73.6522489743137,40.6146292726594],[-73.6526988577944,40.6154047481853],[-73.652368155599,40.616162101401],[-73.6499372344901,40.6167552761532],[-73.6455357608892,40.6173838465258],[-73.644032540754,40.6173661958625],[-73.6424218434832,40.6166355947785],[-73.6419781556829,40.615085426357],[-73.640182355158,40.6128842391048]]],[[[-73.4491136263269,40.6174972157012],[-73.4498804605928,40.6172778026888],[-73.450730789671,40.6165145016637],[-73.4511273338852,40.6152766735],[-73.4510930667504,40.6150329887384],[-73.4510344786275,40.6146268279914],[-73.4513965670607,40.6145280899264],[-73.4516895498957,40.6144464405726],[-73.4522935618213,40.6155175233689],[-73.452350303008,40.6157479958323],[-73.4526096089012,40.6168054464879],[-73.4541637194956,40.6175289172771],[-73.4538900818803,40.6180207108419],[-73.4534582931642,40.6177131476559],[-73.4528462772494,40.6179797011352],[-73.4519755680922,40.6174500495981],[-73.4515146649779,40.6174438682927],[-73.4507180057462,40.6177709918723],[-73.4500168221579,40.618058853897],[-73.4495876933535,40.6177648249162],[-73.449575240907,40.6177601540125],[-73.4494212840403,40.6177400691228],[-73.449059554035,40.6176946726813],[-73.449045151346,40.617518816497],[-73.4491136263269,40.6174972157012]]],[[[-73.5249641268981,40.6108027157007],[-73.5264370082312,40.6087631132962],[-73.5279111211545,40.6091873000914],[-73.5283320977478,40.6098322638074],[-73.5290757941069,40.6103822462893],[-73.5293280886494,40.6103989740614],[-73.5306518747982,40.6110103862952],[-73.5311394174523,40.611485027757],[-73.5312522683099,40.6115945641723],[-73.5312924957666,40.6116130933437],[-73.5313116011361,40.6116178403732],[-73.5315210604126,40.6117015806191],[-73.5320731640879,40.6122986527046],[-73.5319209265967,40.6138191327639],[-73.5318839375665,40.6141925103424],[-73.5318819666628,40.6142150062037],[-73.5320299299699,40.6144420974393],[-73.5322013815267,40.6147100250716],[-73.5324529969429,40.6150960812167],[-73.5324465955481,40.6151185201753],[-73.5322667043192,40.6156747524497],[-73.5322318389064,40.6157824094885],[-73.5319195207333,40.6167513423065],[-73.5317197740416,40.617370379244],[-73.5315375561761,40.6179310850096],[-73.5314868301087,40.6180880861174],[-73.5311859061666,40.6179626438664],[-73.5310006061814,40.6178882184819],[-73.5305883962469,40.617716316372],[-73.530172594848,40.6175398629125],[-73.5298540477567,40.6174096886978],[-73.5298437584534,40.6173735241103],[-73.5296782348792,40.6168354177472],[-73.5296437719116,40.6167223740761],[-73.529397921883,40.616444486541],[-73.5283424562214,40.615250936199],[-73.5283252238393,40.6152281958809],[-73.5282273820335,40.6152089312494],[-73.5280389873521,40.6151750000903],[-73.5277006054593,40.6151076252865],[-73.527323176496,40.6150352472296],[-73.5262712070775,40.6148281408123],[-73.5252939155069,40.6144508191654],[-73.5243416474068,40.614078313162],[-73.5242750292436,40.6140504362112],[-73.5242842890776,40.6140325378116],[-73.5242996556588,40.6140057096378],[-73.52438752347,40.6138401776172],[-73.5246171400432,40.6134107108653],[-73.5246951165048,40.6128216593982],[-73.5249641268981,40.6108027157007]]],[[[-73.6768385576875,40.6149723360826],[-73.6767259664431,40.6140882146594],[-73.6769924247226,40.6138390319853],[-73.6773740263604,40.6134830668145],[-73.6778958774719,40.612083723435],[-73.6776081407982,40.6119137703872],[-73.6774394695272,40.6118127444809],[-73.6779193288907,40.6112687251508],[-73.6783562748348,40.6096026561314],[-73.6782317162341,40.6095877176419],[-73.6778560030531,40.6095338674453],[-73.6778382882757,40.609083240742],[-73.6785781829645,40.6077134163919],[-73.6793059584818,40.6072578084269],[-73.6800500438114,40.6086761477111],[-73.6801037262345,40.6087263084269],[-73.6801225746858,40.6087445403702],[-73.6801857702677,40.6087993139153],[-73.6807551144099,40.6089995053985],[-73.6815819426621,40.6092927198094],[-73.6838412765685,40.6097734327336],[-73.6838713827069,40.609782784523],[-73.6839557120542,40.6099278820081],[-73.684747903964,40.6113107046176],[-73.6847850762504,40.6113741879577],[-73.6843839596114,40.6120497565916],[-73.6843304550548,40.6125175876646],[-73.6841357721664,40.6142314834337],[-73.6840954647596,40.6145913629073],[-73.6839990988858,40.6148334931528],[-73.6836810764107,40.6156406292299],[-73.6835690502065,40.6159276228254],[-73.6832558040737,40.6161897994949],[-73.6832456396362,40.616180674993],[-73.6828138554118,40.6159325195669],[-73.6830509495613,40.6154848013876],[-73.6832925604401,40.6150326300529],[-73.6832173049755,40.6150272674998],[-73.6822258038537,40.6149889256413],[-73.6820335697728,40.6148831337203],[-73.6812881872759,40.6144647343735],[-73.6812720247873,40.6144600455092],[-73.6812426885051,40.6145993413254],[-73.6812035138739,40.6147880715511],[-73.6809814296744,40.6158620462773],[-73.6808774586634,40.6161896678883],[-73.6808287376357,40.61633775045],[-73.6793685351245,40.6171002850038],[-73.6793615300619,40.6173434330802],[-73.6794621692215,40.6174481819097],[-73.6790773075976,40.617556384327],[-73.6768925733856,40.6181889777515],[-73.6764838893386,40.6177068436356],[-73.6767055567198,40.616470721167],[-73.6763427532277,40.6163224254659],[-73.6763479077608,40.6160612387553],[-73.6763559620556,40.6157280180786],[-73.6765396971757,40.615477888214],[-73.6765624793496,40.6154466193579],[-73.6768494264042,40.6150580408025],[-73.6768385576875,40.6149723360826]]],[[[-73.5269475199088,40.6179086292667],[-73.5264747132186,40.6176368468096],[-73.5257140503787,40.6176541585047],[-73.5250173781298,40.6171137639322],[-73.524900175833,40.6163961004616],[-73.5242870064813,40.615721642953],[-73.5242911953255,40.615699175557],[-73.5243831477763,40.6152138989623],[-73.524448391517,40.6148679106896],[-73.5244592817932,40.6148094952433],[-73.5251004201913,40.6150519076915],[-73.5258587528013,40.6153408547561],[-73.528393388003,40.6162965576432],[-73.5285035277451,40.6164961456895],[-73.5287103675342,40.616868126111],[-73.5294558650154,40.6182153698885],[-73.5289253038389,40.6183527431625],[-73.5283723162214,40.6180979631547],[-73.5270979014806,40.6179916238328],[-73.5270810113567,40.6179869038495],[-73.5269475199088,40.6179086292667]]],[[[-73.4240732108512,40.6159194529512],[-73.4241449628862,40.6158843997407],[-73.4241693323833,40.6159477900882],[-73.4241697527948,40.6159613087994],[-73.4243271457174,40.6164634180505],[-73.4244460359487,40.6168433897602],[-73.4244666846238,40.6173166082815],[-73.4249971092563,40.6174454584531],[-73.4250233804868,40.6174908584734],[-73.4251625429991,40.6177314767022],[-73.4251795292428,40.6177632374908],[-73.4251372167963,40.6177716689828],[-73.4242394602642,40.6179621051798],[-73.4223535030208,40.6183552326981],[-73.4220089784481,40.6184270943867],[-73.4219438964041,40.6182100055451],[-73.421787787174,40.6176853895058],[-73.4222133191241,40.6168399209698],[-73.422252889014,40.6168224447275],[-73.4240732108512,40.6159194529512]]],[[[-73.4641794345519,40.6164104414506],[-73.4641929362306,40.6164016129224],[-73.4643433842778,40.6167684517085],[-73.4637869076037,40.6174186561977],[-73.4628302135042,40.618540971153],[-73.4627231729499,40.6186656622561],[-73.4617621552589,40.6187834818893],[-73.4611612353345,40.6185998101905],[-73.4626623318523,40.6170658733903],[-73.4641794345519,40.6164104414506]]],[[[-73.5111041281772,40.6168135126059],[-73.5112108911521,40.6167968730401],[-73.5131467704709,40.6169254234996],[-73.5148564827471,40.617591533488],[-73.5135863709366,40.6181922562276],[-73.5130734257229,40.6184333792465],[-73.5123950782074,40.6186363348259],[-73.5118676737109,40.6187961906432],[-73.5102576429901,40.6187979423754],[-73.509708477704,40.6182413426595],[-73.5097667657896,40.6180123823454],[-73.5098436436116,40.6177115943235],[-73.5099297507248,40.6176271272196],[-73.5106878542645,40.6168937216373],[-73.5111041281772,40.6168135126059]]],[[[-73.5204667518523,40.6168483287121],[-73.5213197354523,40.6168322339876],[-73.521569711443,40.6169885789705],[-73.5220791711935,40.617305892406],[-73.5220088214286,40.6174806547227],[-73.5223122381956,40.6175926395062],[-73.5230606426251,40.6178634613705],[-73.5215257802323,40.6191815535813],[-73.5207996701916,40.6189380323924],[-73.5206579438875,40.6186974941974],[-73.5206129984789,40.6186248513709],[-73.520015633188,40.6176037521931],[-73.5200099225977,40.6175946701612],[-73.5199130455825,40.6174312772479],[-73.5202571793881,40.6170708511934],[-73.5203653886506,40.616955129449],[-73.5204667518523,40.6168483287121]]],[[[-73.4559769051162,40.6169180958846],[-73.4570139041105,40.6166121648535],[-73.4570285735991,40.6166168651589],[-73.457471254388,40.6167083604635],[-73.4578852331052,40.6167949657837],[-73.4579139360752,40.616799853597],[-73.4581080054142,40.6170997210804],[-73.4575821711727,40.6172503423433],[-73.4574080255684,40.6174011569227],[-73.4570731309355,40.6176984605492],[-73.4566937202887,40.618035705406],[-73.4564448905483,40.6182530825669],[-73.4563791769886,40.6183152623789],[-73.4561067736585,40.618433231961],[-73.4557351972194,40.618590411222],[-73.4555433952281,40.6186734247154],[-73.455486544447,40.6187357221003],[-73.4553357155142,40.6189003582854],[-73.4545203785112,40.6197812699122],[-73.4539888139165,40.6199227897766],[-73.4539657083491,40.6199314882858],[-73.4539795118618,40.6198776232422],[-73.454021971632,40.6197025296733],[-73.4541140588301,40.6193299172595],[-73.4541946610672,40.6190066968427],[-73.4542190009199,40.6189124356037],[-73.4542821893153,40.6188637356047],[-73.4544392651326,40.6187487308878],[-73.4551621879507,40.6182224116538],[-73.4559769051162,40.6169180958846]]],[[[-73.4403704557189,40.619478363114],[-73.4389892546471,40.6184732840348],[-73.4385692949467,40.6185171504993],[-73.4384487185777,40.6187452315119],[-73.4389596075477,40.6199367345289],[-73.4377279750724,40.6200281727834],[-73.4355064359849,40.6178315874369],[-73.433525287864,40.6170525267391],[-73.4330450574963,40.6166406346662],[-73.4455038361892,40.6152236079928],[-73.4465245936432,40.6156832605786],[-73.4469620570168,40.6156801381357],[-73.4471023927288,40.6156820263307],[-73.4472457863061,40.6156794507755],[-73.4481761624627,40.6158631189109],[-73.4481158271166,40.6162992122748],[-73.4470352158136,40.6177845661291],[-73.4476055768487,40.6186795574939],[-73.4474261644219,40.6193437605372],[-73.4444539715234,40.6193623025606],[-73.4430425574136,40.6200053870429],[-73.4422316347319,40.6200530006879],[-73.4403704557189,40.619478363114]]],[[[-73.6757599226781,40.6198335456118],[-73.6755834917597,40.6197504449178],[-73.6755795041381,40.6197278779609],[-73.6754654315718,40.6190689516409],[-73.6754355688768,40.6188974480551],[-73.6758144315512,40.6185324483867],[-73.6759334583264,40.6184167032628],[-73.6759794089498,40.6183721882668],[-73.6759995590599,40.6183994449518],[-73.67611029708,40.6185538592864],[-73.676198668846,40.6186809914757],[-73.6762971161163,40.6188217513372],[-73.6763148443685,40.6188219545353],[-73.6770745271464,40.6189657920676],[-73.6775972352506,40.6190618663251],[-73.6776472902766,40.6190714486504],[-73.6789296667857,40.6189374937137],[-73.6792156373715,40.6188236564901],[-73.6797561078639,40.6186181410391],[-73.6803734031777,40.6189765308606],[-73.6803989036537,40.6189948391041],[-73.6793814537966,40.6199335952382],[-73.6787045804165,40.619786217511],[-73.6780719481659,40.6205807264851],[-73.6774510003021,40.6206321676511],[-73.6773433839277,40.6205813878845],[-73.6766939980971,40.6202766648351],[-73.6761771703647,40.6200320143861],[-73.6757599226781,40.6198335456118]]],[[[-73.4786825641341,40.6166565275958],[-73.4804546832715,40.6142611264805],[-73.4815593083387,40.6139964020824],[-73.4825495688871,40.6137571888047],[-73.4838725240943,40.6136709750635],[-73.4845007123792,40.6136296776417],[-73.4872190979723,40.6139445902962],[-73.4879596654992,40.6140308630115],[-73.4895223873439,40.6142224793642],[-73.4902260305194,40.6143082546018],[-73.4902386159165,40.6143399488259],[-73.4903707095858,40.6146749848649],[-73.4903986319198,40.6147474171832],[-73.4904112164186,40.6147791111991],[-73.4902664493173,40.6147772175233],[-73.4885320890663,40.6147590274589],[-73.487639588577,40.6150536226987],[-73.4871198547946,40.6149702419301],[-73.4862172653264,40.6148277889448],[-73.4861922544322,40.6148229569041],[-73.4853857074443,40.6160870589361],[-73.4845575173462,40.6166076827542],[-73.4840822825097,40.6173986816712],[-73.4825374245628,40.6183738070441],[-73.4823178394764,40.6185105499388],[-73.4822595361196,40.6185728413387],[-73.4819400763399,40.618910957987],[-73.4814730035961,40.6194047781145],[-73.4797978090846,40.6211708850519],[-73.4775511602883,40.6190738638352],[-73.4768967007729,40.6178626178815],[-73.4786825641341,40.6166565275958]]],[[[-73.6664927638666,40.6135560514218],[-73.6674273243758,40.6115129139616],[-73.6674527251388,40.6112384492904],[-73.6681504385351,40.6115212603169],[-73.6687346749481,40.6123477707443],[-73.6699913290974,40.612164071805],[-73.6730786869136,40.6129157792056],[-73.6731173036911,40.6141008370206],[-73.6728043755618,40.6149800689668],[-73.6727962026894,40.6154303988249],[-73.6723508494126,40.6164297207373],[-73.6720744413929,40.6168814680258],[-73.6687610351118,40.6196179055303],[-73.6667342274217,40.6206980463511],[-73.6658716489162,40.6218636822801],[-73.6622635521028,40.6216417498761],[-73.6615772787516,40.6203005428193],[-73.6613439736959,40.6178115032506],[-73.6626385466316,40.6170292619779],[-73.6641706161622,40.6166371188144],[-73.6660422668364,40.6151813779957],[-73.6666520216917,40.6139812893211],[-73.6664927638666,40.6135560514218]]],[[[-73.6878648459974,40.6201114272322],[-73.6878301063488,40.6196966431415],[-73.6871739849501,40.6203377913394],[-73.6851285641673,40.6210622105122],[-73.6850764106768,40.6210841374432],[-73.6845828466153,40.6210830171638],[-73.684458650934,40.6210861059437],[-73.6843810832059,40.6210852215844],[-73.6835585435109,40.6204902926788],[-73.6831969761007,40.6197880121747],[-73.6832215549051,40.6190631107387],[-73.6827305519405,40.618480966055],[-73.6829606697736,40.6171098001034],[-73.6850625766215,40.6156473678187],[-73.6853539775232,40.6150291025241],[-73.6852843895297,40.614244572201],[-73.6853220289401,40.6142089671203],[-73.6855679499357,40.6139505223416],[-73.6854169575095,40.6138136753259],[-73.6853791653855,40.6137817155835],[-73.6854651602093,40.6136160377578],[-73.6856993617836,40.6131637767177],[-73.6858463243675,40.6125258486523],[-73.6858431353483,40.6112556160241],[-73.685715289812,40.6108803084712],[-73.6855042261444,40.610265328395],[-73.6848590821585,40.6097850343261],[-73.6839429847233,40.6091079649624],[-73.6838157365667,40.6090794885301],[-73.6816446432722,40.6085457318561],[-73.6816555146838,40.6085188305537],[-73.6817686278495,40.6082138342509],[-73.6819256021571,40.6075940414012],[-73.6819384813034,40.607540137085],[-73.6819985642228,40.6073020982693],[-73.6832202406699,40.6056945140929],[-73.6837025138066,40.6050604124281],[-73.6848572927144,40.6042988453449],[-73.685238668875,40.6045148895195],[-73.6856813802066,40.6047676643615],[-73.6865979070365,40.6048546691335],[-73.6871081078971,40.6049055160966],[-73.6901164499009,40.6046649348844],[-73.6905244736861,40.6054848334661],[-73.6903039786063,40.6059192431775],[-73.6908236180656,40.6061683674072],[-73.6910366185009,40.6068374115081],[-73.6916795086138,40.6071690063248],[-73.6913271974442,40.6096648678631],[-73.690648719673,40.6106255858938],[-73.6910167648348,40.6120576050623],[-73.6914517264005,40.6125219691115],[-73.6916233351624,40.612397796408],[-73.6917949430261,40.6122736227918],[-73.6923052858205,40.6132298005325],[-73.6930736157813,40.613459210943],[-73.6930409269864,40.6139993493501],[-73.6930795859847,40.614062846502],[-73.6933047702702,40.6144122226206],[-73.6936380757834,40.6149384873147],[-73.6936954655536,40.6149886835625],[-73.695008816872,40.6161431132085],[-73.695926896889,40.6165768883446],[-73.695424649712,40.6189989971544],[-73.6961957213311,40.6197373967773],[-73.6950639258198,40.6212470379918],[-73.6940752454079,40.6218934733093],[-73.6929585299153,40.6220564980246],[-73.6924988215602,40.6222134430718],[-73.6893977725208,40.6225070801902],[-73.6883860988309,40.6220586771849],[-73.6880294802396,40.6219690431333],[-73.6886016720413,40.6214260297191],[-73.6887142543026,40.6209588685534],[-73.6878648459974,40.6201114272322]]],[[[-73.5680530600743,40.6124848792166],[-73.5688491336043,40.612224500606],[-73.5692466704569,40.612360050419],[-73.5693953030089,40.6120420942902],[-73.5698763463519,40.61189941684],[-73.5704157397643,40.6122078803555],[-73.5732673544971,40.6138466606663],[-73.5735486008429,40.614309565932],[-73.5744205227257,40.6144779853914],[-73.5751754588056,40.6146584668293],[-73.5771045836917,40.6162227025162],[-73.5774001869124,40.616672262322],[-73.5772047153032,40.6169356007414],[-73.5777115995837,40.6169688729808],[-73.5782370924654,40.6182500366145],[-73.5782455743583,40.6182681582224],[-73.5782025603275,40.6183802330575],[-73.5780616721516,40.6187523461819],[-73.577640116145,40.6189453372841],[-73.5778652411417,40.6190607160095],[-73.5776558034248,40.6197382695627],[-73.5774772731436,40.6203171112811],[-73.5771773077039,40.6212908255861],[-73.5759049447152,40.6225768469077],[-73.575884999421,40.6225766007654],[-73.5750137485797,40.6224757628046],[-73.5736011666601,40.6217016089478],[-73.5672166126621,40.6187488502156],[-73.5658535000668,40.6181914175159],[-73.5649429209824,40.617653108402],[-73.5627366478649,40.6166212197431],[-73.5626925558558,40.6165756288829],[-73.5624386973464,40.6163202324804],[-73.5615926424522,40.6160484483348],[-73.5611075890297,40.615893763631],[-73.5610149134351,40.6157709950971],[-73.5608330638789,40.6155345089799],[-73.5636522889559,40.6140246868451],[-73.5651212455495,40.6139123353437],[-73.5655849379328,40.6136838805026],[-73.5658783923833,40.6135388880069],[-73.5663301650212,40.6133147860067],[-73.5666519397593,40.6130890684412],[-73.5667229740404,40.6130494127517],[-73.5670394478201,40.612864165706],[-73.5672353685869,40.6127539923989],[-73.5679653279087,40.612510816027],[-73.5680530600743,40.6124848792166]]],[[[-73.6587402212179,40.6224656702727],[-73.6587210143389,40.6224654466305],[-73.6571985720532,40.6224792735762],[-73.6566562213869,40.6220360530513],[-73.6557409647749,40.6211020305445],[-73.6553585923826,40.6207147176742],[-73.6550197289928,40.6201477410285],[-73.6550040192551,40.6201205327871],[-73.6545121368399,40.6192995345891],[-73.6544786197983,40.6190919497624],[-73.6543162214629,40.618090118121],[-73.6540093111478,40.617699175846],[-73.6536743194969,40.6172718716206],[-73.6537642489416,40.6151108916394],[-73.6540724438476,40.614664063309],[-73.6539581350243,40.6118926287731],[-73.6554906411361,40.61059075086],[-73.655724319891,40.6103952860275],[-73.65686518659,40.6094266449822],[-73.6576256482073,40.6101516646162],[-73.6579576233155,40.6104708211213],[-73.658511690708,40.6106934650908],[-73.6590357480818,40.6109022448817],[-73.660166902196,40.6118973034968],[-73.66057050627,40.61266320362],[-73.6599566982161,40.6133587390536],[-73.6595643428461,40.6138046064173],[-73.659303450528,40.6147699858226],[-73.6591333446475,40.6148896234873],[-73.6587608267739,40.615155549282],[-73.6585959796311,40.615270743618],[-73.658438608268,40.6153815203553],[-73.6586122499175,40.6158609865998],[-73.6586991610229,40.616096216864],[-73.6584893424203,40.616391057146],[-73.6593852187785,40.6168518888758],[-73.6594362808158,40.6170326516591],[-73.6596157372601,40.6176653277777],[-73.6597364582579,40.6180946308054],[-73.659764839631,40.6183381891627],[-73.6599054511258,40.6195469547312],[-73.6597345080154,40.619855761374],[-73.6596433604551,40.6200168545779],[-73.6594640180969,40.6203390766407],[-73.6598290503092,40.6210775044075],[-73.6601536915714,40.6217298815844],[-73.6603603858335,40.6221466699298],[-73.6603346769483,40.6222499684588],[-73.6602983742311,40.6224026911206],[-73.6602638187371,40.6225419206024],[-73.6602533156347,40.6225868412386],[-73.6601212596947,40.6225762993945],[-73.6587402212179,40.6224656702727]]],[[[-73.416368063317,40.622917057648],[-73.4162601379221,40.622230946541],[-73.4162550795088,40.6221948438835],[-73.4162567701381,40.622185858615],[-73.4164335675692,40.6213955539073],[-73.4164450794796,40.6213461656893],[-73.4165716026958,40.620775874461],[-73.4172088073712,40.6204197764671],[-73.417553873628,40.6203569453947],[-73.4178448047109,40.6203023790625],[-73.4192770830915,40.6200382384092],[-73.418917928556,40.6204792309295],[-73.4182316911374,40.6213166103351],[-73.4182203831446,40.62142005129],[-73.4181966038408,40.6216449327246],[-73.4181711339075,40.6218787993949],[-73.4181250566216,40.6222970541254],[-73.4181212513581,40.6223330353606],[-73.418120194041,40.6223465330065],[-73.4182421601038,40.6224698165157],[-73.4184722716486,40.6227071849211],[-73.4184104307261,40.622728858352],[-73.4182672239985,40.622785450472],[-73.4181731946428,40.6228246994655],[-73.4180349663784,40.6227642509331],[-73.417663121343,40.6226150221348],[-73.4170293670965,40.6230432358356],[-73.4168193760174,40.6230178349415],[-73.4165844827403,40.6229830840973],[-73.4163737541443,40.6229576729529],[-73.416368063317,40.622917057648]]],[[[-73.4971390885519,40.6231455654629],[-73.4986436965842,40.622115671476],[-73.4985431418663,40.6218215921669],[-73.4997158780966,40.6195397105913],[-73.4997465133428,40.6183690229913],[-73.5004040127571,40.616886685187],[-73.50030067416,40.6160565738696],[-73.5014735190866,40.614819644849],[-73.5026632963579,40.6152044285988],[-73.5037109871007,40.6152360317039],[-73.5043665560355,40.6160868100423],[-73.5041192013288,40.6170069614032],[-73.5042432442964,40.6185670147125],[-73.5028985256049,40.6203197214322],[-73.5030727376846,40.6208895072116],[-73.502712411746,40.6213082256562],[-73.5017215798691,40.6217367770649],[-73.5011600187305,40.6226618498109],[-73.5006712040619,40.6227455843968],[-73.5004676592933,40.6228600483585],[-73.4993857032123,40.6227694158156],[-73.4983202105554,40.6231969691986],[-73.4971390885519,40.6231455654629]]],[[[-73.4901974721782,40.6231540774132],[-73.4883186709143,40.622093530786],[-73.4879085495629,40.6221602262515],[-73.4870519098198,40.6214508557404],[-73.4855252463506,40.6211605870863],[-73.4826811541099,40.6210331568743],[-73.4806717845161,40.6220246704112],[-73.4807293638309,40.6217011282481],[-73.4807801150512,40.6214180337064],[-73.4807946120632,40.6213326453403],[-73.4815905149134,40.6208386499094],[-73.4816429361018,40.6208078097202],[-73.4824508494273,40.6203049578487],[-73.483239394177,40.6189595658989],[-73.4837428747409,40.6186193588679],[-73.4843949438393,40.6181775044477],[-73.4849501925165,40.6178019384735],[-73.4854246592933,40.6171100176264],[-73.4854620732266,40.6170564578406],[-73.4856965469905,40.6169469296973],[-73.4861819462643,40.6167190791624],[-73.4862178555195,40.616633970504],[-73.4866728450244,40.6155274048777],[-73.4884134853976,40.6158249643737],[-73.4884326895817,40.6158252153141],[-73.4914378686175,40.6156798537813],[-73.4938357272323,40.6151391329699],[-73.4966217451865,40.6159681830545],[-73.4972246647608,40.6166921975159],[-73.4972693505563,40.6167423249386],[-73.4969739557448,40.6187788710616],[-73.4971465086361,40.6205737790643],[-73.4964267290232,40.6217309875342],[-73.4957496876581,40.6221680803529],[-73.4948836093163,40.6224675794127],[-73.4939422063396,40.6227976184534],[-73.4913212870565,40.6233219120688],[-73.4901974721782,40.6231540774132]]],[[[-73.6716396460156,40.6195474743128],[-73.6742820790514,40.6172581765653],[-73.6743680873499,40.6173177197595],[-73.674672678215,40.6175329165392],[-73.674822336643,40.6198678269278],[-73.6752420484084,40.6202780258238],[-73.6776439305774,40.6213775763356],[-73.6776399699053,40.6213910434915],[-73.6773171243754,40.622549435787],[-73.6777341043639,40.6234370425504],[-73.6775666718697,40.6234216114664],[-73.6763789580286,40.6233224166207],[-73.6758419424568,40.6232757182732],[-73.6758106208978,40.6232528381846],[-73.6755423165803,40.6230695899178],[-73.6753020846155,40.621652505285],[-73.6748518705546,40.6212149311167],[-73.6742181288846,40.6208292976218],[-73.673850172656,40.620604362984],[-73.6733135334783,40.6202783953909],[-73.6732825963983,40.6202735357883],[-73.6722555543306,40.6200860599981],[-73.671699782834,40.6199805720761],[-73.6716422439434,40.6195655212454],[-73.6716396460156,40.6195474743128]]],[[[-73.4775846512787,40.6200066689413],[-73.4776138456271,40.6199575081199],[-73.477656404212,40.6200031109914],[-73.4779906349899,40.6203498349867],[-73.4792632809479,40.6216728160523],[-73.47962931568,40.6220514830918],[-73.479902208592,40.6223343349421],[-73.4772588152572,40.6237138053089],[-73.4769349654107,40.6238851956196],[-73.4768961204612,40.6238711705549],[-73.4766440522942,40.623777760958],[-73.4762152882057,40.6236234643814],[-73.4761933315835,40.6236141663479],[-73.4764270525592,40.6232794390057],[-73.4768999643523,40.6225965416975],[-73.4772383561266,40.6221100517562],[-73.4772516817355,40.6206779023416],[-73.4772531702439,40.6205473012635],[-73.4772746714202,40.620511551579],[-73.4775846512787,40.6200066689413]]],[[[-73.4173155649562,40.6235651370463],[-73.4177892205544,40.6232518352161],[-73.4179225979162,40.623298704719],[-73.4182508692704,40.6234158070816],[-73.4190280009244,40.623174220676],[-73.4191372567242,40.6229279887639],[-73.4192045001148,40.6227712642639],[-73.41925675242,40.622654871924],[-73.4190904733625,40.6224679244216],[-73.418851501734,40.622198906959],[-73.4189348600025,40.6215469468792],[-73.4193879495705,40.6210081493255],[-73.4200621351913,40.620211135513],[-73.4202187528678,40.6200241041209],[-73.4218230047264,40.6198613771923],[-73.4231454775382,40.6200551110458],[-73.4237023189283,40.6199726324848],[-73.4242991667896,40.6196654901314],[-73.4259019561909,40.6188405758008],[-73.4293945314554,40.617739586349],[-73.4305177579372,40.6173855219237],[-73.4313824681448,40.6173432251043],[-73.4314131914259,40.6178616202871],[-73.4321744426623,40.6188628764453],[-73.431466440861,40.6198171481777],[-73.4319897283786,40.6200314477599],[-73.4318932924362,40.6203003873557],[-73.430885053904,40.6210749140596],[-73.4303063681811,40.6211436179063],[-73.4286896504014,40.6213333183236],[-73.4282673460981,40.6213816190055],[-73.4271506737246,40.6222402154481],[-73.4260769480082,40.6225273586514],[-73.4256293049257,40.6226473710698],[-73.4248827016184,40.6228488813177],[-73.4244186885365,40.6230992856349],[-73.4227615295009,40.6240000067203],[-73.4212657069921,40.6237903848976],[-73.4213670001252,40.6230035437809],[-73.4189144116517,40.6241365526433],[-73.4184750896637,40.624216113337],[-73.4176809699694,40.6243628765193],[-73.4172426298399,40.6242442635458],[-73.416822651275,40.6235673863854],[-73.4170598747819,40.6235661352374],[-73.4173155649562,40.6235651370463]]],[[[-73.4820332388214,40.6219750187859],[-73.4828106956655,40.6219041639027],[-73.4851358913537,40.6223355711128],[-73.4869859725796,40.623553438982],[-73.4858396549034,40.6235969632438],[-73.4851858242087,40.6236244182531],[-73.4850367865166,40.6237125459818],[-73.4844563454856,40.6240562520807],[-73.4836158969771,40.6245586904873],[-73.4831439356016,40.6241245942243],[-73.4812908944268,40.6224201754488],[-73.4820332388214,40.6219750187859]]],[[[-73.6725287320085,40.6219629617948],[-73.6725060980566,40.6219491886077],[-73.6719905710847,40.6219747876419],[-73.6717273108075,40.6219852709428],[-73.6715424474035,40.6219921520782],[-73.671267957287,40.6217863020445],[-73.6705065748966,40.62120549706],[-73.6704883750289,40.6211917748554],[-73.670317840652,40.6212213398106],[-73.6690094183896,40.6214359737657],[-73.6688833865518,40.621457041448],[-73.6688071653983,40.6215372387676],[-73.6684577971096,40.6219025554386],[-73.6683951405168,40.621969395645],[-73.6684181310999,40.6219651566405],[-73.6688726777353,40.6218848200572],[-73.6688775807401,40.621898389387],[-73.6689746994021,40.6221427377642],[-73.668518028251,40.6223671858449],[-73.666819451491,40.6221719129686],[-73.6667345858495,40.6221664282575],[-73.6668974441223,40.6216683404292],[-73.6669524677301,40.6215023194191],[-73.666976061981,40.6214305244502],[-73.6688116632629,40.6207895885689],[-73.669589071598,40.6202265155174],[-73.6701971052812,40.6197831000329],[-73.6702115223432,40.6198012825926],[-73.6709993556272,40.6208733555033],[-73.6715852287706,40.6211008073062],[-73.6720098219812,40.6211147020375],[-73.6726669369166,40.6211402775268],[-73.6736017282929,40.6211735456265],[-73.6745248586384,40.6217967253728],[-73.6745705442588,40.6221395719854],[-73.6746950804016,40.6230913941424],[-73.6747060371531,40.6231725958786],[-73.6754538127619,40.6243702960448],[-73.6750584749851,40.6248567197515],[-73.6740704395637,40.6248228514466],[-73.6733639648984,40.6245264624774],[-73.673077024132,40.6239781523376],[-73.6731450014462,40.6238663282591],[-73.6733774270512,40.6234726283946],[-73.6735677917381,40.6231505114489],[-73.6732379932478,40.6224530699469],[-73.6725287320085,40.6219629617948]]],[[[-73.4694431084676,40.6248175599059],[-73.4693805695542,40.6247086308466],[-73.4693684225349,40.6246904530317],[-73.4693820284182,40.6246771208583],[-73.469635255412,40.6244282449509],[-73.4697577020734,40.624308255505],[-73.4704705233362,40.6240924948688],[-73.4712151332819,40.6235843794952],[-73.4721563494091,40.6229437363314],[-73.4731641917842,40.6219076003837],[-73.4732829346917,40.6217875579988],[-73.4735750389744,40.6214851375901],[-73.4742957609201,40.6213099943687],[-73.4744790082549,40.6210827035129],[-73.4754514273634,40.619879424722],[-73.4758155873116,40.6194293123662],[-73.4760119239984,40.6193733501757],[-73.4763034228165,40.6192916187823],[-73.4767160369928,40.6191799559615],[-73.4769604272591,40.6194804557614],[-73.4756468558535,40.6226250430516],[-73.4752451436314,40.6235881336198],[-73.4744885070407,40.6235871456565],[-73.4744819673054,40.622965484687],[-73.4749282754914,40.6227056357959],[-73.4751161141156,40.6222441878364],[-73.4747829442481,40.6222082570093],[-73.4744246592819,40.6221719941074],[-73.4742951698286,40.6224720618006],[-73.474026041756,40.6225766041745],[-73.4737680968104,40.6226767901502],[-73.4731285538203,40.622920566351],[-73.4738051406378,40.6231592252198],[-73.4738335291973,40.6239568379496],[-73.4727960567909,40.6244115506911],[-73.4724440375738,40.6247807386529],[-73.4722562169158,40.6249809402073],[-73.4719449515682,40.6248912412143],[-73.4715647611838,40.6247781082217],[-73.4707148561103,40.6251722265211],[-73.469490751517,40.6248992661291],[-73.4694431084676,40.6248175599059]]],[[[-73.5206693012876,40.626016933028],[-73.520915264504,40.62545255884],[-73.5207889883245,40.6247122553636],[-73.5206059008898,40.6236334101463],[-73.5198151660475,40.6237043470595],[-73.5191848155177,40.6238403951753],[-73.5194845258358,40.6227497244859],[-73.5197070475149,40.6219418260879],[-73.5194503377528,40.6218889874734],[-73.5192383901429,40.6218502349929],[-73.5189977332749,40.621806609362],[-73.5187475731296,40.6217583573983],[-73.5185709841076,40.6217245618431],[-73.5182812864117,40.6218604728502],[-73.5175605662626,40.6234772266254],[-73.5167358795941,40.6238134529849],[-73.5165701565939,40.6245905455294],[-73.5161957244104,40.6245812285396],[-73.5160995777255,40.6248187135313],[-73.5160475140666,40.6250342447791],[-73.5159808330214,40.6252090502856],[-73.5154593816602,40.6246978766117],[-73.515319800533,40.6245609554747],[-73.5146659680417,40.6239219580479],[-73.514378926664,40.6233372252197],[-73.5144359041076,40.6228334903259],[-73.5144642935655,40.6225861259943],[-73.5153694701817,40.6210843692721],[-73.5166465385458,40.620204457388],[-73.5167974034113,40.6200982952935],[-73.5169361500035,40.6200054906858],[-73.517055491189,40.6199214444635],[-73.5173720898345,40.6197048070988],[-73.5183144881446,40.6190547939639],[-73.5187361833901,40.6187629309057],[-73.5188697538897,40.6186700569373],[-73.5195168597962,40.6187098886238],[-73.5197793394373,40.6189024304949],[-73.5206911105861,40.6195717309929],[-73.5209819087183,40.6197871543909],[-73.521312893883,40.6199895794608],[-73.5214769100842,40.6200907723327],[-73.5214102245475,40.62040070698],[-73.5223172265404,40.6209528246247],[-73.5224724814726,40.6210493999118],[-73.522889552191,40.6213024681352],[-73.5234800525565,40.6216658544264],[-73.5234153352285,40.6217190764135],[-73.5233506170022,40.6217722983581],[-73.5225666410841,40.6222081799616],[-73.5223348829273,40.6227997648616],[-73.5219960554701,40.6231197268735],[-73.5219318753346,40.6231819635202],[-73.5215183224189,40.6235730346193],[-73.5216386400731,40.6238132975295],[-73.5214459307834,40.6248783195313],[-73.5213507318211,40.6254085926137],[-73.5209150596881,40.625997561738],[-73.5208862489203,40.6259971928843],[-73.5206693012876,40.626016933028]]],[[[-73.4797564488523,40.6252421077257],[-73.4792816083763,40.6247403951361],[-73.478333280287,40.6249801315806],[-73.4779334976462,40.6250784567032],[-73.4779927280645,40.6243901000782],[-73.4795171556269,40.6234778266318],[-73.480736606947,40.6227506947341],[-73.4819990103141,40.6240735102939],[-73.4824566471541,40.6245524648399],[-73.4832844410952,40.62509933983],[-73.4827112332989,40.6259385908112],[-73.4809097158955,40.6260995684391],[-73.4803995401878,40.625917191142],[-73.4797564488523,40.6252421077257]]],[[[-73.5803437100786,40.6188029589163],[-73.5801168261805,40.615804872765],[-73.5797391879098,40.6158092349031],[-73.5780503830235,40.6140588272565],[-73.5776403308424,40.6139546827516],[-73.5747754488911,40.6115095928769],[-73.5777865056037,40.611835002463],[-73.5778277715129,40.611840015435],[-73.5831711062314,40.6112976602843],[-73.5835664682627,40.6112574702465],[-73.5840440450071,40.6125019876654],[-73.5834930202084,40.6131258156713],[-73.5834771281127,40.6131436372556],[-73.5839546329919,40.6131675136978],[-73.5837997805049,40.6140979845445],[-73.5842503790447,40.6152565892276],[-73.5841926254567,40.6157873771586],[-73.5844590864313,40.6157996534737],[-73.5851017609484,40.6158750972204],[-73.5853295871792,40.6164228983539],[-73.5870099568851,40.6167272468931],[-73.587723433918,40.6170197441393],[-73.5895162017306,40.6173209273619],[-73.5902835597142,40.6170195116144],[-73.5907546946397,40.6171018363047],[-73.5909253314246,40.617455247622],[-73.5909477039667,40.6177618068987],[-73.5898907417118,40.6186587487298],[-73.5880571544528,40.6191362992663],[-73.5872707728464,40.6197077186578],[-73.5864844720883,40.6202746301705],[-73.585955723712,40.6204708427362],[-73.5854418406571,40.6206627304067],[-73.5851362005598,40.6212805637768],[-73.5852979610913,40.6217735045381],[-73.5860078430665,40.6221335315728],[-73.586089260974,40.6235983943927],[-73.5858912695904,40.6237716327384],[-73.5850064308322,40.6245580311728],[-73.5849310460102,40.625223728241],[-73.583599514587,40.6253965716962],[-73.5816200220612,40.6260884292119],[-73.5808836218189,40.6261424358337],[-73.5804446331058,40.6259703824696],[-73.5798117654966,40.6254626304665],[-73.5794332702331,40.6251561910741],[-73.5791664750853,40.6230314299507],[-73.5795300241791,40.6219503927389],[-73.5795342929733,40.621783790136],[-73.5795129499005,40.6213961662056],[-73.5803437100786,40.6188029589163]]],[[[-73.485121757261,40.6244973864828],[-73.4866259610514,40.6244765788492],[-73.4938616472216,40.6248369567652],[-73.4933815237533,40.6253216459665],[-73.4932105330323,40.6254004886706],[-73.4909543980265,40.6264565224868],[-73.4882822388396,40.6269845808584],[-73.4881691095043,40.6269876032317],[-73.4865410990031,40.6270563534944],[-73.4842578348758,40.6262336624176],[-73.4844034760379,40.6249563916313],[-73.4844949999923,40.6248630060518],[-73.4846454669041,40.6247118394578],[-73.4846735123072,40.6246806785594],[-73.4848639210115,40.6245930941503],[-73.4850640351141,40.6245011330561],[-73.485121757261,40.6244973864828]]],[[[-73.3863645771691,40.6257670557733],[-73.3866293753621,40.6257257153753],[-73.3866640745866,40.6257577294024],[-73.3870097615793,40.6261318993233],[-73.3870782805776,40.6267544280595],[-73.3870794322178,40.6267679561743],[-73.3869738855618,40.6267935063182],[-73.3868184123389,40.6268363753127],[-73.3867016762677,40.6268662725288],[-73.3862288228651,40.6269857787627],[-73.3861262298698,40.6270113697306],[-73.3857083641423,40.6271181303565],[-73.384019787428,40.6275494213942],[-73.3838248970288,40.6275106599258],[-73.3836843457212,40.6274861715948],[-73.3834691183622,40.6272489428949],[-73.3834403300523,40.6272170107153],[-73.3833173776394,40.6267693790739],[-73.3833558991954,40.6267654144543],[-73.38384889642,40.6266687226638],[-73.3842870973105,40.6264541539309],[-73.3843156017528,40.626436536345],[-73.3844075479154,40.626392782123],[-73.3845436193247,40.6263271244872],[-73.3853393613764,40.6259328855061],[-73.3853942421521,40.6259246445848],[-73.3863645771691,40.6257670557733]]],[[[-73.5724652326103,40.6245927716522],[-73.5725023617776,40.6245842223856],[-73.5725353173721,40.624598142983],[-73.5727647884182,40.6247180896356],[-73.572793351251,40.6247995184831],[-73.5729700624438,40.6253151817579],[-73.5729943852284,40.6253875493591],[-73.5730326193235,40.625500626775],[-73.5730688295143,40.6256046714647],[-73.5731850122232,40.6259439224893],[-73.5733193489858,40.6263329436186],[-73.5733360244124,40.6263826956373],[-73.5732656620712,40.6264944309601],[-73.5730294276093,40.6268653589291],[-73.5729332755346,40.6270083037238],[-73.5724503062035,40.6272365493712],[-73.571731482398,40.6275744789913],[-73.5715904055759,40.6275366993063],[-73.5712545147114,40.6274514660278],[-73.5711347665891,40.6274184546791],[-73.5711525181974,40.6272790444623],[-73.5713332996567,40.6258354357108],[-73.5719808879585,40.6247128976313],[-73.5724652326103,40.6245927716522]]],[[[-73.4343073162346,40.6245355299306],[-73.4343676264278,40.6238517168239],[-73.4359248362099,40.6222243054372],[-73.4362942935233,40.6213690171115],[-73.4361736084582,40.6206827503233],[-73.4355138138483,40.6199531455709],[-73.4336819863889,40.6186941659693],[-73.4341328265755,40.6181192460001],[-73.4345529991766,40.6180979195144],[-73.4350329223205,40.6183971968024],[-73.4365041498552,40.6201332160579],[-73.4373633605767,40.6205817533587],[-73.4373852058078,40.6205955616024],[-73.4383055019685,40.6208647518942],[-73.4415180031887,40.6206829589706],[-73.4426287880038,40.620959191069],[-73.4432895581841,40.62088702868],[-73.4441604811402,40.6201330626394],[-73.4465619680505,40.6202239578658],[-73.4465320748128,40.6217369529804],[-73.4452111668663,40.6228091761927],[-73.4458118604153,40.6229704068223],[-73.4467723579817,40.6225599435437],[-73.4474035610127,40.6235413325025],[-73.4474634516927,40.6245285488304],[-73.4467725088986,40.6247534702536],[-73.4457718287913,40.6245373142395],[-73.4457300598255,40.6246178269496],[-73.4455959979474,40.624886270812],[-73.4455668979221,40.6249939791418],[-73.4452878093297,40.626035184798],[-73.4446575082072,40.6261933477322],[-73.4403323195401,40.6255944921346],[-73.4400332407376,40.6255544177402],[-73.4390627278541,40.6251539411067],[-73.4386670073951,40.6245044957675],[-73.438536016857,40.6242910287161],[-73.438271882519,40.6250982032547],[-73.4382982741238,40.6251706269993],[-73.4386102320725,40.6260216272174],[-73.4386346186375,40.6260850154454],[-73.438649607028,40.6261077391136],[-73.4394754507266,40.6272314318775],[-73.4395052523361,40.6275065883101],[-73.4394212508739,40.6275279731526],[-73.4392265491209,40.6275748866979],[-73.439145503116,40.6275963117437],[-73.4378627663825,40.6269258576112],[-73.4377752659822,40.6268120701364],[-73.4375239559933,40.6264978822044],[-73.4372535550079,40.625354671306],[-73.436439637343,40.6246725308919],[-73.4343073162346,40.6245355299306]]],[[[-73.4200201775793,40.6268181483062],[-73.4186783649377,40.6266871712937],[-73.4178580108439,40.6270362618548],[-73.4176395890758,40.6268666147878],[-73.4181544584809,40.6257161053689],[-73.4198556834744,40.6243611358421],[-73.4212242730979,40.6243573408519],[-73.422989410529,40.6246156840089],[-73.4244456478765,40.6238698635032],[-73.4252108481068,40.6234749309192],[-73.4257493539837,40.6233876892513],[-73.4269169006467,40.6232910014344],[-73.42708943647,40.623275335768],[-73.428292339026,40.6225845680024],[-73.4284553724702,40.622784970462],[-73.4278512257973,40.6234343500202],[-73.4281619746136,40.6250240428624],[-73.4282035495433,40.6252363041808],[-73.4283216276975,40.6258414682888],[-73.4284007701723,40.6262479194791],[-73.4282669472461,40.6268181244435],[-73.4281218396833,40.6268927191896],[-73.4279342022817,40.626984750624],[-73.4274026412804,40.6268694108118],[-73.4277320130709,40.6265946403763],[-73.4277382392941,40.62658121245],[-73.4278277339543,40.6263887533923],[-73.4277022626653,40.6261933661408],[-73.426486406403,40.6270551078661],[-73.4245031175968,40.6273973963767],[-73.4243309914052,40.6274265761037],[-73.4240113115383,40.6276969653922],[-73.4237354290331,40.6279274142442],[-73.4235130843221,40.6277667328247],[-73.423090241928,40.6274591790594],[-73.4226717294136,40.6271561877659],[-73.4219371374799,40.6270020148983],[-73.4200201775793,40.6268181483062]]],[[[-73.5446797443911,40.6270473627438],[-73.5443608963642,40.6267235449218],[-73.543945071609,40.6270200802706],[-73.5427120853726,40.6270045184291],[-73.5418769198563,40.6267732646053],[-73.541363568604,40.6266271482871],[-73.5407985211038,40.6266155018935],[-73.540746651481,40.6265202580171],[-73.5406600538876,40.6263570123861],[-73.5413961199567,40.6252672964137],[-73.5413997608285,40.6252358125977],[-73.5416880149318,40.6226855817119],[-73.5423947662782,40.6219558229204],[-73.544625796965,40.6207858629248],[-73.5440961897994,40.6206755867654],[-73.544696936349,40.6194490155846],[-73.5440923342302,40.6189819633295],[-73.5435558594442,40.6186103553897],[-73.5426640246066,40.6184414513048],[-73.5417373872381,40.6183441678676],[-73.5417002050702,40.6183211769893],[-73.5411960094473,40.6179950080101],[-73.5402920419635,40.6169926573644],[-73.5407026798461,40.6165249101309],[-73.5426792726102,40.6161084726652],[-73.5448712454468,40.6163883629679],[-73.5455045316709,40.6170989989583],[-73.5470188540847,40.6178297347606],[-73.5485852464456,40.6182728365912],[-73.5485950443704,40.6182639517132],[-73.5489544603156,40.6179756978085],[-73.5494335965353,40.6183690809508],[-73.5499070140799,40.6181047785482],[-73.550392704408,40.6180928626897],[-73.552083018464,40.6192311193219],[-73.5526292785984,40.620760388214],[-73.5523660955764,40.622135369811],[-73.5515559238862,40.6232107155372],[-73.5514646496635,40.6233311828699],[-73.5502136755617,40.6236037439851],[-73.5501167167999,40.623850256362],[-73.5496358540182,40.624046902971],[-73.5494957069524,40.6241036964744],[-73.547880796583,40.6247680262648],[-73.5477452174504,40.6252617812754],[-73.5468227635363,40.6256825722649],[-73.5459315853671,40.6272838462852],[-73.5450277355625,40.6278670078281],[-73.5443525770663,40.6280251493797],[-73.5446410027479,40.6271639833279],[-73.5446797443911,40.6270473627438]]],[[[-73.6894722266882,40.6281111891513],[-73.6883793237371,40.6260313326318],[-73.6883514804548,40.6259814692179],[-73.6882068804402,40.625705068348],[-73.6880900365712,40.6254830328007],[-73.6884522471752,40.6245322524476],[-73.6884865152084,40.624442556943],[-73.6884718277535,40.6244378858244],[-73.6877147680562,40.6242310942378],[-73.6877458587482,40.6240017317251],[-73.6877647557085,40.6238668198524],[-73.688094341298,40.6236768845829],[-73.6882916661316,40.6235620176991],[-73.6881898313144,40.6232906059745],[-73.6881406728071,40.6231594249956],[-73.6886921449668,40.6229584972862],[-73.6895353486082,40.6230671673772],[-73.6921230598702,40.6228397781803],[-73.6932759163833,40.6226051041735],[-73.6941312966884,40.6224301118472],[-73.6944198607105,40.6226000326896],[-73.6935606401075,40.6230857758682],[-73.6933858396314,40.623182890125],[-73.692960985011,40.6237501178286],[-73.6916035785144,40.6242797494146],[-73.6913046605104,40.6245646311357],[-73.6911998082521,40.6247120821832],[-73.6911787382671,40.6268513528985],[-73.6912565467437,40.6273702217687],[-73.6913212496987,40.6278033615327],[-73.6913238530164,40.6278214082801],[-73.6909206379129,40.627807826518],[-73.6900527090416,40.6277889704924],[-73.6899421336166,40.6278507746298],[-73.6894722266882,40.6281111891513]]],[[[-73.5380583387887,40.6281122465891],[-73.5353018268983,40.6243658512841],[-73.5338701791351,40.6231315443339],[-73.5332774428628,40.6224618983572],[-73.533523234501,40.6224064671304],[-73.5335205754877,40.6223929204044],[-73.5334698036062,40.6221805784566],[-73.5334360206633,40.6220360155502],[-73.5329743881169,40.6216563017925],[-73.5330040450977,40.6208414209572],[-73.5325632579574,40.6202187443745],[-73.532528786905,40.6201732643849],[-73.5329779032246,40.6201789735913],[-73.5325582121205,40.6187953573942],[-73.5322992395022,40.6186434263238],[-73.5329198846337,40.6168541459417],[-73.5335084859606,40.6161229391856],[-73.5349474073828,40.6168483696256],[-73.5349912343888,40.6168714469293],[-73.5353452370861,40.6167318060384],[-73.5393979406763,40.6170308923798],[-73.5406739328587,40.6185244070238],[-73.5437975646461,40.6196944107187],[-73.5435938815369,40.619989117159],[-73.543297978279,40.6204132811005],[-73.5430424938189,40.6207793996409],[-73.5421174213157,40.6212541708053],[-73.541849193355,40.6213904121014],[-73.5414725800621,40.6215838380994],[-73.5408503646755,40.62263896133],[-73.5406634234682,40.6236230150595],[-73.5405686979181,40.6239010765984],[-73.5404297599847,40.6243092005033],[-73.5401925167148,40.6246845519397],[-73.5405087452544,40.6247200805288],[-73.5403798199431,40.6253130020219],[-73.5396009006417,40.6265372953741],[-73.5399120887343,40.6268385086371],[-73.5401624015932,40.6270849006706],[-73.5413259660245,40.6273023008813],[-73.5409843340271,40.6274826542685],[-73.5394986903287,40.6275314263888],[-73.5393690769079,40.6277144578795],[-73.5393125441305,40.6277993212969],[-73.5392424180461,40.6278975263663],[-73.5387968392922,40.6278288274214],[-73.5386310758677,40.6280429288099],[-73.5380583387887,40.6281122465891]]],[[[-73.5136432783116,40.6275211409942],[-73.5135756127128,40.6275067573927],[-73.5134903545075,40.6276858264313],[-73.513476357857,40.6277171747814],[-73.5134592665104,40.6277214591002],[-73.5129021628123,40.6278178780177],[-73.512903105145,40.6276422277926],[-73.5129025661558,40.6276332125767],[-73.5129025481895,40.6275341201175],[-73.5122810793029,40.6274675568301],[-73.5116815930896,40.6269103182468],[-73.5116394531197,40.6267115910566],[-73.5120139625582,40.6265182364968],[-73.512068490296,40.6264919144562],[-73.5125023792732,40.6261867192947],[-73.5124327427707,40.6260281759007],[-73.512271668552,40.6256612618298],[-73.5120945055066,40.6252536016339],[-73.5121236378713,40.625172902193],[-73.5122025090549,40.6249487103557],[-73.5122773854305,40.6247379794743],[-73.5123444752092,40.6245451646523],[-73.5123681359354,40.6244779070253],[-73.5123995832586,40.6243927325701],[-73.5130033247913,40.6238915406479],[-73.5127935016972,40.6233573445634],[-73.5121874766469,40.6228630831914],[-73.5122030112131,40.6227957202321],[-73.5122928643011,40.6224095197117],[-73.5123018887765,40.6223690983969],[-73.510768320856,40.6218853907586],[-73.510747222125,40.6218040429069],[-73.5107020710021,40.6216413100867],[-73.5116385790589,40.620761563047],[-73.511681622734,40.620753110113],[-73.5133960583521,40.6204103661631],[-73.5135288796567,40.6203850515455],[-73.5136093354685,40.6204221213721],[-73.5140163845817,40.620625546844],[-73.5140412005414,40.6206393789435],[-73.5140250694938,40.6207337591156],[-73.5139826447579,40.6209809427982],[-73.5135731764817,40.623385405133],[-73.5140402177845,40.6242832464551],[-73.5140410954385,40.6244769368022],[-73.5140412751016,40.6245354937944],[-73.5140434696858,40.6251030481883],[-73.5151509181579,40.6263469408945],[-73.5152653635251,40.6263844464888],[-73.5175898019335,40.6271665229873],[-73.5180951168572,40.6273396668547],[-73.518264217523,40.627445434277],[-73.518638121497,40.6276799467392],[-73.5187867378793,40.6277764420761],[-73.5190518774321,40.6289869635304],[-73.5190326696547,40.6289867167299],[-73.5189470718862,40.6289811139506],[-73.5186078347972,40.6289497355143],[-73.517962521928,40.628824342295],[-73.5177632127159,40.6287812448197],[-73.5168881233735,40.6285538028085],[-73.5162702109171,40.6283927186033],[-73.5161599948183,40.6283642762979],[-73.5160066272465,40.6281821376712],[-73.5157136309368,40.6278315484092],[-73.5156617370594,40.6277723268427],[-73.5155488071501,40.6277663701168],[-73.5146566489189,40.6277098503954],[-73.5143775594282,40.6276657206637],[-73.514204451378,40.6276409712667],[-73.5138293840856,40.6275595711096],[-73.5136432783116,40.6275211409942]]],[[[-73.5879757077993,40.6269320762195],[-73.5875609870736,40.6260982287048],[-73.5888616829263,40.6250736690397],[-73.5895992312156,40.6238755587572],[-73.5897478296316,40.6241881642528],[-73.5892688488204,40.6250381085936],[-73.5895042783918,40.6254733893509],[-73.590007825431,40.6256687187101],[-73.5917907324367,40.6256769732992],[-73.5919866657799,40.626093750651],[-73.5906587743303,40.6269018115478],[-73.5902885929748,40.6268297278489],[-73.5898352554717,40.6263197194969],[-73.589241001945,40.6265016334381],[-73.588908816631,40.6287316548041],[-73.5884655124113,40.6291135952165],[-73.5877492811437,40.6290507825486],[-73.5874963362209,40.6288855359717],[-73.5879757077993,40.6269320762195]]],[[[-73.388701468024,40.6274121795279],[-73.3888395184219,40.6273870816446],[-73.3884228501487,40.6277821335881],[-73.3883737500319,40.6278264895943],[-73.3881846304101,40.6280085187426],[-73.3875396580024,40.6286165777646],[-73.3873541783541,40.6287085734166],[-73.3873189167843,40.6287306014667],[-73.3850974199176,40.6298706198439],[-73.3849440253963,40.6299495478517],[-73.384755428594,40.629955917529],[-73.3826247046901,40.6300567026092],[-73.3814435521438,40.6297608904573],[-73.3813296996647,40.6297322694312],[-73.3801819572605,40.629369351084],[-73.3801467154536,40.629359848639],[-73.3800778191629,40.6293363611362],[-73.3801030447544,40.6293322105471],[-73.3827297249334,40.6286754051998],[-73.3846752368869,40.6281936787979],[-73.3849012197747,40.6281382870987],[-73.3858572886467,40.6278994278516],[-73.3866929482364,40.6278120194723],[-73.387110424095,40.6276602084506],[-73.3873871573049,40.6276145289929],[-73.387442777394,40.627606297824],[-73.388701468024,40.6274121795279]]],[[[-73.5563387089691,40.6156045005076],[-73.556912003902,40.6152288123272],[-73.5595452938848,40.6163246968696],[-73.5604095621214,40.6164706052446],[-73.5629992083544,40.6178496307418],[-73.5636311120713,40.6180827060806],[-73.5648812489432,40.6186702901384],[-73.5664888362465,40.6194739978062],[-73.5682710605325,40.6205095639697],[-73.5701428639203,40.621262447759],[-73.5706901032184,40.6215529907541],[-73.5712484286253,40.621843668172],[-73.5716153940121,40.6220644114582],[-73.5711766945566,40.623995785572],[-73.5704579372264,40.6248516907109],[-73.5704274196596,40.6252431781634],[-73.5707030829759,40.6254492807203],[-73.5699468452371,40.6267100958859],[-73.5689769252417,40.6275944082045],[-73.5678616380704,40.6286750929481],[-73.565796385181,40.6296673936511],[-73.5649696692183,40.6300715028974],[-73.5624419294847,40.6298823986129],[-73.5608976123236,40.6291514912734],[-73.5600814650402,40.6243848869121],[-73.5584165957646,40.6221885791509],[-73.558365991868,40.6211745036243],[-73.5580487635035,40.6209453317616],[-73.5566112030291,40.6208958334326],[-73.5561642624291,40.6206515207235],[-73.5557240636854,40.6202316274112],[-73.5555548192893,40.6195133428429],[-73.5541402862288,40.6181578860892],[-73.554759403326,40.6160351553505],[-73.5551047085347,40.61578273953],[-73.5563387089691,40.6156045005076]]],[[[-73.4330056223536,40.630368758994],[-73.4318798374699,40.6299075603257],[-73.431049793249,40.6299773561279],[-73.4309040424925,40.6297952089474],[-73.4320090924628,40.6291841479283],[-73.4316730569696,40.6288913180646],[-73.4320761912247,40.628622040811],[-73.4324884676344,40.6275826774385],[-73.430781997378,40.6275594927044],[-73.4307781049779,40.6281674999091],[-73.4304391310953,40.6282214448533],[-73.4295397674773,40.6270876796408],[-73.4291868697078,40.6260649405585],[-73.4290570703357,40.6253920554143],[-73.4287604349508,40.6243340472712],[-73.4293113950708,40.6228326537181],[-73.4290044227719,40.622373557609],[-73.430716767112,40.6220770527677],[-73.4330548653026,40.6201404983175],[-73.4337828555172,40.6201008318123],[-73.4344062980025,40.6203930504093],[-73.4353010281103,40.6216618404112],[-73.4345087077415,40.622398788289],[-73.4338689536473,40.623025195979],[-73.4331894248473,40.6240249054214],[-73.4327661988725,40.624901974282],[-73.434089172046,40.6257757167041],[-73.4356321246662,40.6257110579843],[-73.4366272271339,40.6281928143043],[-73.4378761979926,40.6288222874377],[-73.4379949417984,40.6297832781302],[-73.4351613391853,40.6304610603851],[-73.4330056223536,40.630368758994]]],[[[-73.4162667513193,40.6299871768665],[-73.4172832992678,40.6281228911898],[-73.4172879444561,40.6281139469437],[-73.4189740894309,40.6285604426013],[-73.4189997327391,40.6285698019876],[-73.4202005700681,40.628068265751],[-73.4215905818163,40.6278170319273],[-73.4216121108404,40.6278128219288],[-73.422963328843,40.6281105469163],[-73.4234433445134,40.6287521884035],[-73.4232817142376,40.6293715531858],[-73.4211644578764,40.6293741432119],[-73.4194684440099,40.6304724654488],[-73.4165366510447,40.6308556755496],[-73.4162667513193,40.6299871768665]]],[[[-73.4241233296576,40.6284326706204],[-73.4245468502797,40.6282717981556],[-73.4245811497539,40.628258753725],[-73.4246362389387,40.6282414890937],[-73.424923299181,40.6281328028775],[-73.426427359241,40.6282794313245],[-73.426897307492,40.628155216322],[-73.4269827902761,40.628133860315],[-73.427541072564,40.6278351843471],[-73.427974502502,40.6275978641644],[-73.4284109903053,40.627387607983],[-73.4286032710986,40.6273496884262],[-73.4288853600641,40.6272949744045],[-73.428947729196,40.6273768978137],[-73.4291335717637,40.6276136426747],[-73.4293250081406,40.6278639759496],[-73.429863022639,40.6285559258515],[-73.4299383751217,40.628651537709],[-73.4298775870247,40.6286597189796],[-73.4290086134127,40.6287830208338],[-73.4277685637231,40.629414734819],[-73.4270442431264,40.6301750768712],[-73.4269357302334,40.6307366159704],[-73.4262939405567,40.6310341506683],[-73.4246552481884,40.6310163024962],[-73.4244343569517,40.6310132878044],[-73.4238493668521,40.6309062102562],[-73.4229370073069,40.6307361046569],[-73.4222461642258,40.6306681101549],[-73.4213928141132,40.6304402443832],[-73.4213384642419,40.6304259888985],[-73.4217718312979,40.6301616660271],[-73.4233130932887,40.6301421902669],[-73.4241072237629,40.6292431971195],[-73.4241233296576,40.6284326706204]]],[[[-73.5298042846832,40.6275614841948],[-73.5299248350011,40.6270180137674],[-73.5295629397057,40.6270764621727],[-73.5291321427297,40.6271430394856],[-73.5292716133641,40.6265457612119],[-73.5286755066129,40.6263670047878],[-73.5280974694737,40.626846086063],[-73.5280349664929,40.6268993386937],[-73.5279492007394,40.6271369661179],[-73.5275391395752,40.6271677692953],[-73.5274747689969,40.6271714516308],[-73.5274805343843,40.6271445005573],[-73.5275027560095,40.6270411877808],[-73.5275890311077,40.6266459207802],[-73.5274079451195,40.6265805517919],[-73.5276810572204,40.6263588273271],[-73.5277532629046,40.6263011937224],[-73.5274190204486,40.6256393193562],[-73.5272752909015,40.6253537222317],[-73.5269097197,40.6257814581581],[-73.5268069362618,40.6257846503545],[-73.5264584959328,40.6258027235559],[-73.5260738004972,40.6262932705637],[-73.5260595208774,40.6262705674125],[-73.5259669503857,40.6261117392257],[-73.5257985881352,40.6259384299063],[-73.5256453427342,40.6257833303861],[-73.5258251576063,40.6253352091436],[-73.5229385885275,40.625280286884],[-73.5228196515838,40.6255805444727],[-73.5230281406798,40.6257768928124],[-73.5231193358508,40.6258636390993],[-73.5234076815823,40.6271645314852],[-73.5234500560126,40.6273542495737],[-73.5229424324186,40.6273522580772],[-73.5224408185538,40.6273458376994],[-73.5221779131112,40.6271037500771],[-73.5213015607374,40.6273357506759],[-73.5204286920304,40.6268741465305],[-73.5215854741813,40.6263574773709],[-73.5218318658941,40.6261083990946],[-73.5220034324352,40.6259349336343],[-73.5222574077256,40.6256769432998],[-73.5222226186696,40.6249423170193],[-73.5222617394019,40.6248437257898],[-73.5226024856605,40.6240013021784],[-73.5227871550284,40.623467668796],[-73.5239464237161,40.6225996808631],[-73.5244761871886,40.6217957019271],[-73.5245278367241,40.6211612723445],[-73.5227696235074,40.6196028560903],[-73.5230772506781,40.6193230297129],[-73.5232544083336,40.6191631458359],[-73.5234662059247,40.6191748637615],[-73.5241463626472,40.6192241008463],[-73.5246893259645,40.619262571193],[-73.5265859884312,40.6200705272247],[-73.5276325266355,40.6202595454218],[-73.5287595044819,40.6202513958514],[-73.5297069836632,40.6202409484169],[-73.5304964707456,40.6204942290329],[-73.5306407967741,40.6207528046428],[-73.5307489314764,40.6209433571203],[-73.5303866687701,40.6211549461486],[-73.5302721686057,40.6212210507069],[-73.5301538757541,40.6212916110746],[-73.5301333240971,40.6215886260131],[-73.5301156784899,40.6218541480842],[-73.5297817800887,40.6219850207072],[-73.5303416802424,40.6226002161031],[-73.5309449474647,40.6227880639359],[-73.5309640492409,40.6229279362629],[-73.5309819697325,40.6230542814782],[-73.5310451347717,40.6235100081018],[-73.532090197044,40.6243430656597],[-73.5326567285611,40.6253997441387],[-73.5325873822144,40.6255970461716],[-73.5325030124429,40.625839199254],[-73.5320844909453,40.6258518937114],[-73.5322261229263,40.6262005175164],[-73.5323201846213,40.62642692235],[-73.5323469768747,40.6264182546857],[-73.5325152151577,40.6263618395018],[-73.5327885042267,40.6262662223207],[-73.5330337568757,40.6270125294542],[-73.5331535292525,40.6273473614909],[-73.5333938160146,40.628017033482],[-73.5331513894655,40.6289643349259],[-73.5333037697889,40.6293626391046],[-73.5336015415426,40.630141141724],[-73.533628778462,40.6302135545459],[-73.5333930524466,40.6304492810363],[-73.5337063488851,40.6306199164062],[-73.532759109554,40.630950195361],[-73.5324235330998,40.6315269676322],[-73.5321139970091,40.6307798417165],[-73.5315696619644,40.6305296918557],[-73.5309001826174,40.6302238961117],[-73.5299890654422,40.6293114589611],[-73.5295776918393,40.6288963386198],[-73.528974227886,40.6280418631896],[-73.5300633201836,40.6279476385628],[-73.5297714746158,40.6277097038123],[-73.5298042846832,40.6275614841948]]],[[[-73.5501215578209,40.6320974813443],[-73.5504830596542,40.6305886171415],[-73.5501952097928,40.6282833631289],[-73.550404813698,40.6272365200543],[-73.5504806377962,40.6271473886111],[-73.5508808300687,40.6266839791404],[-73.5511498045294,40.6263765669749],[-73.551444749285,40.6261325388501],[-73.5519433933194,40.6257289150742],[-73.552188601951,40.6255293027954],[-73.552745713734,40.6253606268834],[-73.5527968054158,40.6249108480499],[-73.5546602634546,40.6237180680662],[-73.5551582184812,40.622967598362],[-73.5549680298642,40.6226724455064],[-73.5551516194571,40.6220396524853],[-73.5566117608829,40.6222425936991],[-73.5578380178396,40.6230821901272],[-73.5580513623296,40.6232289898925],[-73.5585876574526,40.623992392835],[-73.5588952783351,40.6244286363131],[-73.5591921122477,40.6248512325337],[-73.5592125830564,40.6250676888916],[-73.5593997713003,40.6271194318902],[-73.5594779040688,40.6289851418431],[-73.5582859816206,40.6298756001016],[-73.5582000038648,40.6300591978443],[-73.5577721282101,40.6309862182936],[-73.5575928307676,40.6322091164346],[-73.5565663896728,40.6328583982256],[-73.5558168479762,40.6327634420807],[-73.5562065308582,40.6321016978901],[-73.5563131069835,40.6319228636212],[-73.5564612131227,40.631771573932],[-73.556722661498,40.6315045928152],[-73.5569239416138,40.6310116495628],[-73.5565592525579,40.6303765030494],[-73.5559951545769,40.6302163040704],[-73.5553157793888,40.6304330109693],[-73.5551308441195,40.6310928116726],[-73.5550251654112,40.6314698395693],[-73.5549987459587,40.6315640967222],[-73.5545248882396,40.6322563116569],[-73.554483826248,40.6323098476656],[-73.5544244494043,40.6323901792085],[-73.5539807930451,40.6329836775201],[-73.553951978684,40.6329833168859],[-73.5529871494413,40.6328991567836],[-73.5529040714472,40.6327765019929],[-73.5528516933779,40.6327037783539],[-73.5527392000498,40.6325402171979],[-73.5529329289274,40.6322273535593],[-73.5525699969762,40.6319570555602],[-73.5516745976235,40.6324908290401],[-73.551066691501,40.632852541486],[-73.5505695862807,40.6331480795224],[-73.54928156386,40.6333480971518],[-73.5498581071009,40.6325581024581],[-73.5500469698046,40.632231670312],[-73.5500953665405,40.6321466986772],[-73.5501215578209,40.6320974813443]]],[[[-73.5460088063455,40.6308431245291],[-73.5442977421047,40.6298351389909],[-73.5429167593235,40.6302681311887],[-73.5430958618316,40.6311396988524],[-73.5421650643651,40.6306820315294],[-73.5412642050521,40.6309544119793],[-73.5412645086827,40.6305670560233],[-73.5418951897925,40.6301110953056],[-73.5463096701005,40.6288290403777],[-73.5490128957248,40.6268136525741],[-73.5491324920319,40.6297203556468],[-73.5488915890255,40.6314604458206],[-73.5476299698877,40.6342281603765],[-73.5468492764136,40.634547138463],[-73.5464587832511,40.6343215158174],[-73.5455581071945,40.6320986164371],[-73.5456182925219,40.6315048225628],[-73.5459476481427,40.6314819480203],[-73.5461489947338,40.6314664676643],[-73.5462193759397,40.6314583460493],[-73.5460088063455,40.6308431245291]]],[[[-73.3731142874895,40.6319273944598],[-73.3739238824613,40.6311505795368],[-73.3745820825615,40.6311913786785],[-73.375481954626,40.6328165250141],[-73.3745787650832,40.6344658333018],[-73.3739272430587,40.6346052932777],[-73.373476442398,40.634513363695],[-73.373115958356,40.6340803915262],[-73.3731142874895,40.6319273944598]]],[[[-73.4010795851909,40.6346693059861],[-73.3999098044178,40.6342927651751],[-73.3982284366837,40.6344496119334],[-73.3976005807754,40.6341886658497],[-73.3975676584186,40.6341746968044],[-73.3978693998276,40.6326204543847],[-73.3981093272635,40.6323220070944],[-73.3986195245308,40.6322795404365],[-73.3989909904772,40.6323522549932],[-73.399660893829,40.6324921645558],[-73.3998447268654,40.6325307458822],[-73.3998737406524,40.6325536691501],[-73.4008667338759,40.6333691658486],[-73.4012592725022,40.6340457193819],[-73.4013153812749,40.6341410834149],[-73.4013941644236,40.6342772991051],[-73.4010795851909,40.6346693059861]]],[[[-73.4025410507334,40.6346535073282],[-73.4017875169236,40.6335260509079],[-73.4020824517977,40.6333995141683],[-73.4052797310653,40.6336689364517],[-73.4056099697301,40.6342635400466],[-73.4048426243228,40.6343970708975],[-73.4048226763336,40.6343967954851],[-73.4036840248801,40.6342639470306],[-73.403057554174,40.6347192079059],[-73.4030303253394,40.6347143268575],[-73.4025410507334,40.6346535073282]]],[[[-73.4097735047651,40.6347083298482],[-73.4091736924634,40.6340424607721],[-73.4079948665537,40.634107283218],[-73.4078824621588,40.6341102370972],[-73.4050602654549,40.632922721432],[-73.4037989400662,40.6329458238601],[-73.4011863697254,40.6324862784694],[-73.399355223189,40.6316141236764],[-73.3991450192091,40.6313184397745],[-73.3991156972999,40.6308135699687],[-73.3998066517721,40.6298547607373],[-73.4016692168855,40.6286644477536],[-73.4038015272142,40.6278426696195],[-73.4076423317036,40.6244365324203],[-73.4089040298932,40.6240485570653],[-73.4121765421676,40.6248052716118],[-73.4141578852229,40.624575771299],[-73.4149685105622,40.6247625663121],[-73.4152428129308,40.6250996391441],[-73.4153324701861,40.6258080211548],[-73.4144906319839,40.6287827099461],[-73.4147296161888,40.6318938508398],[-73.4143681116606,40.6343661626622],[-73.4139778008562,40.6348697683047],[-73.4133174447992,40.6351669744093],[-73.4102240314397,40.6348451551927],[-73.4100611920315,40.6347933670758],[-73.4097735047651,40.6347083298482]]],[[[-73.4367231878675,40.6323784690552],[-73.4381263168155,40.6321046927623],[-73.438147741635,40.6321049825007],[-73.438572979836,40.6322188352662],[-73.4386456993565,40.6322378352508],[-73.4387052783211,40.632630502433],[-73.438611153744,40.6327688577485],[-73.4382038423228,40.6333759115115],[-73.4380147460572,40.6336571140386],[-73.4359729679428,40.6353275309946],[-73.4352516791602,40.6354213505018],[-73.4349520182494,40.6352146017873],[-73.43479546076,40.6347665683729],[-73.4345474844191,40.6340560549005],[-73.4344416017932,40.6337483371743],[-73.4334807053748,40.6331542661918],[-73.4333901246514,40.6326981179394],[-73.4337507425425,40.6324462750206],[-73.4367231878675,40.6323784690552]]],[[[-73.4255397527734,40.6347307765346],[-73.4260502051622,40.6339540174044],[-73.4280621834636,40.6334049031973],[-73.4308846110346,40.6344116950233],[-73.4334971140018,40.6340012679759],[-73.4337978169583,40.6341629937812],[-73.4338457519601,40.6344519093075],[-73.4338877742508,40.6347092153905],[-73.4335576370957,40.6347948191179],[-73.4328967258799,40.6349615099269],[-73.4326265404902,40.6351695362606],[-73.4326264605402,40.635741561537],[-73.4319056918821,40.6358759054254],[-73.4299539303491,40.6353043734909],[-73.4261099871461,40.6351214050693],[-73.4255397527734,40.6347307765346]]],[[[-73.5484047084297,40.6349000218665],[-73.5488589891638,40.6339553528909],[-73.5492427467583,40.6344241083485],[-73.5494083035702,40.634457718187],[-73.5495150449855,40.6344770767972],[-73.549913199879,40.6345541471478],[-73.5498946469734,40.6346259811829],[-73.5496924317114,40.6353981589454],[-73.5496714677276,40.6354789707818],[-73.5492932509419,40.6358120308956],[-73.5495666388255,40.6362929102091],[-73.549573734618,40.636306511378],[-73.5494425554337,40.6364940384383],[-73.5492702091548,40.6367396020402],[-73.5483816010657,40.6360347846942],[-73.548362042047,40.6360165220234],[-73.5483660287702,40.6360030598617],[-73.5485897146659,40.6351275581523],[-73.5484931475694,40.6350137389782],[-73.5484080124333,40.6349180803302],[-73.548401558038,40.6349089911086],[-73.5484047084297,40.6349000218665]]],[[[-73.4174621709089,40.6328772153247],[-73.4181829494485,40.632648374716],[-73.4228371523765,40.6340678063443],[-73.4237380233676,40.6345710631555],[-73.4232554025829,40.6353572008102],[-73.423197765776,40.6354510005063],[-73.4228642931762,40.6359914457797],[-73.4212743308188,40.6369741343523],[-73.4210100293943,40.6370560983768],[-73.4208774551263,40.637099326167],[-73.4206138921169,40.6371812988997],[-73.4189620834472,40.6370866195323],[-73.4175813611774,40.6362164172165],[-73.417335762677,40.6356004869382],[-73.4171907054199,40.6352336629545],[-73.4170115005039,40.6334971110858],[-73.4174621709089,40.6328772153247]]],[[[-73.4429697094339,40.6328097145303],[-73.4433171382599,40.6327423336523],[-73.4451791194685,40.6332673890854],[-73.4454191762619,40.633495830128],[-73.4453293402419,40.6338639602899],[-73.4436474496882,40.6350979529968],[-73.4439180896255,40.6356961493804],[-73.4437443087371,40.6359550472051],[-73.4433453597329,40.6365532236388],[-73.4428069095516,40.6373657157072],[-73.4424685555066,40.6375503249212],[-73.4423046542898,40.6376381956847],[-73.4420561111119,40.637774470363],[-73.4410049402956,40.6377512693988],[-73.4404948858605,40.6375011558809],[-73.4401044340206,40.6366536047439],[-73.4401343694791,40.6357171471213],[-73.4409147710007,40.6350520679793],[-73.4414850682554,40.6334743094885],[-73.4419058876435,40.6330160630184],[-73.4424395938218,40.6329151665109],[-73.4429697094339,40.6328097145303]]],[[[-73.4820859043515,40.6338081506278],[-73.4813645796363,40.6333527512858],[-73.4801935007976,40.6335355214008],[-73.4797133342103,40.6333310158568],[-73.479055034397,40.6335835848814],[-73.4789924631442,40.6336052813699],[-73.4766502677376,40.6333536920657],[-73.4757977386852,40.6332748757941],[-73.4754187080258,40.6332383407568],[-73.4750288050565,40.6333548032768],[-73.4741870009903,40.6325779722368],[-73.4732560912344,40.6323719843959],[-73.4725654224265,40.6317097447901],[-73.4725945071805,40.631147109444],[-73.4725947119964,40.6311381042457],[-73.4732252853084,40.6304483013554],[-73.4739458572354,40.6302191088171],[-73.4750871164982,40.6300134873031],[-73.4756878387933,40.6304718368716],[-73.4757807784926,40.6304145101973],[-73.4762774498267,40.6301192886691],[-73.4763777763726,40.6300620585018],[-73.4774283641822,40.6292606673852],[-73.4801009581537,40.6285256755512],[-73.4830426289938,40.6278166787647],[-73.4867966571251,40.6287307494112],[-73.4893493861932,40.6289803837757],[-73.4895608963235,40.6300551427463],[-73.4912729406262,40.6313116734513],[-73.4917546136883,40.6322052878036],[-73.4919653863018,40.6331178824318],[-73.4917558003628,40.633826802483],[-73.4885411997799,40.632113711465],[-73.4882109000297,40.6320463278394],[-73.4874299559256,40.6323649011728],[-73.4874302550646,40.6327117259761],[-73.4879391291135,40.6325292174368],[-73.4882110284888,40.6324336874855],[-73.4888714842587,40.6326405184384],[-73.4901941196656,40.6338964701157],[-73.4903453447555,40.6351551086323],[-73.4894449965838,40.6355892422685],[-73.4891451353487,40.6363014797911],[-73.4856924210283,40.6379272788623],[-73.4847615283405,40.6378790296837],[-73.4844606304495,40.6376543760593],[-73.4847603407677,40.636689916363],[-73.4842797025648,40.6362106698427],[-73.4825070255736,40.6354126642355],[-73.4825064811945,40.634588395685],[-73.4823462388158,40.6342890143791],[-73.4822262741995,40.6340712374274],[-73.4820859043515,40.6338081506278]]],[[[-73.3679802350794,40.6343907452736],[-73.3677850096086,40.6337889356665],[-73.367445573992,40.6339192592979],[-73.3670849920336,40.6339772169614],[-73.3662677604836,40.6336683808487],[-73.3661370780677,40.6336935561327],[-73.3653883277868,40.6338496080502],[-73.3656297473244,40.6341322824536],[-73.3656024313533,40.6342219778969],[-73.3655266153399,40.6344821439707],[-73.3655064975691,40.634549420836],[-73.3654960151281,40.6345853054845],[-73.3658619231978,40.6347030895374],[-73.3651761214622,40.6354590793702],[-73.3640902406416,40.6333492772171],[-73.3641209693126,40.6333316962182],[-73.3650820274277,40.6327732883153],[-73.3657990294498,40.6325852599569],[-73.3687755127021,40.6318076093745],[-73.3699492891816,40.6317070832718],[-73.3708663334411,40.6313146581328],[-73.3717886822523,40.6319807705236],[-73.3717904609166,40.6319988120517],[-73.3718267995664,40.6323281256669],[-73.3719390458578,40.6333656583763],[-73.37196805156,40.6336318112589],[-73.3719867958067,40.6338032320181],[-73.3719268476346,40.6340501137329],[-73.3716310890054,40.6340864792603],[-73.3707935851744,40.6340025952809],[-73.3707699442111,40.6340022619208],[-73.370771174903,40.6340428159469],[-73.3707875332244,40.6345249889416],[-73.3708361976582,40.6359579873686],[-73.3710818590407,40.6366145527061],[-73.3705066632727,40.637899118061],[-73.3704050305764,40.6381273932874],[-73.369986897151,40.6374819038082],[-73.3696090262166,40.6357289671244],[-73.3696002990836,40.6356928110922],[-73.3690081000039,40.6352160156446],[-73.3685369857397,40.6348355158217],[-73.3685021814123,40.6348079986136],[-73.3679802350794,40.6343907452736]]],[[[-73.3473821494822,40.6377910569853],[-73.3471755746961,40.6372070679703],[-73.3471417064132,40.6371119966699],[-73.3471829678309,40.6371170915925],[-73.347678075198,40.6372097579002],[-73.3478384684937,40.6372390785383],[-73.3481447490898,40.6370768100632],[-73.3488549023562,40.6366906082789],[-73.3489530172498,40.6366379619811],[-73.3489624729165,40.6366741304536],[-73.3490277013859,40.6369363020418],[-73.3490768625882,40.6371306823681],[-73.3492336931654,40.6377544937436],[-73.3493184626872,40.6380935146709],[-73.348987282588,40.6382464219644],[-73.3488273303652,40.6381990932779],[-73.3479457830341,40.637952265079],[-73.3473821494822,40.6377910569853]]],[[[-73.399637171119,40.6376310537142],[-73.3990995896086,40.6374569460461],[-73.396258708845,40.638223750144],[-73.3946970299444,40.6371751003331],[-73.3945776106055,40.6360519102895],[-73.3948184444416,40.6356859211428],[-73.3962597419076,40.6350933923783],[-73.3968198001648,40.6350065858196],[-73.3970030376181,40.6349776016464],[-73.3974311567162,40.6349069759776],[-73.3995332629901,40.6353910583192],[-73.4019048647475,40.6368787525519],[-73.4019342477421,40.6372890351172],[-73.4001801173683,40.6385709357927],[-73.3998740218251,40.6385757006751],[-73.3994766879918,40.6379756466179],[-73.4000024198253,40.6377487205984],[-73.399637171119,40.6376310537142]]],[[[-73.4342276212959,40.6392990447259],[-73.433688237765,40.6390394945626],[-73.4335632722275,40.6391684187114],[-73.4335337194513,40.6391995469463],[-73.4334159233681,40.6391799313542],[-73.4330802669638,40.6391213258532],[-73.4326629141744,40.6390480978754],[-73.4325001574112,40.6391179536529],[-73.432352282139,40.6391835080509],[-73.4323381390632,40.6391878195823],[-73.4322989779067,40.6391557588237],[-73.43211964004,40.638986670157],[-73.4319662697733,40.6388449582387],[-73.431901882127,40.638785529669],[-73.4317629846177,40.6390358749132],[-73.4311083607106,40.6392161529828],[-73.431055585586,40.6392289478286],[-73.4309832801888,40.6390973448496],[-73.4305383724763,40.6382760468557],[-73.4305298223115,40.6382624181394],[-73.4300356366158,40.6378413171798],[-73.4299839170116,40.6377460266001],[-73.4297212056051,40.6372560054544],[-73.4296730756688,40.6371652676996],[-73.4296921792416,40.6371700320006],[-73.4313907775612,40.6376660621101],[-73.4315479405151,40.637677206223],[-73.4335633018719,40.6378396975111],[-73.433694605922,40.637850487122],[-73.4348442770092,40.638212900606],[-73.4348564428931,40.6385779011099],[-73.4348658572372,40.638839269033],[-73.4348678676668,40.6389113629446],[-73.4348236436054,40.6389377877932],[-73.4342688907983,40.6392725791203],[-73.4342411319577,40.639290219223],[-73.4342276212959,40.6392990447259]]],[[[-73.3943957215234,40.6385221492403],[-73.3949453494418,40.6382550410579],[-73.3960988195042,40.6388205783596],[-73.3970944573679,40.63884792077],[-73.3976305081491,40.6393643303707],[-73.3966778537735,40.6394862259576],[-73.3944553606751,40.6391175235218],[-73.3943957215234,40.6385221492403]]],[[[-73.3507250357759,40.6363480061057],[-73.351514071904,40.6361791127909],[-73.3512593384356,40.6378510065612],[-73.3510670217097,40.6391184205939],[-73.3508453354638,40.6392368646808],[-73.3508220996407,40.6392500453446],[-73.3503196907669,40.6395131127453],[-73.350304507442,40.6394993833957],[-73.3493801005904,40.6387114601421],[-73.350089083352,40.6383432503673],[-73.3500245915011,40.6379009251898],[-73.3498401341356,40.6366281272234],[-73.3502588891952,40.6364899810043],[-73.3506989558866,40.6363566418049],[-73.3507250357759,40.6363480061057]]],[[[-73.4244194359348,40.6383413239576],[-73.4245577136065,40.6382441206309],[-73.4245632005162,40.6382622115921],[-73.4246322162829,40.6384388154904],[-73.4247283539846,40.6386878552733],[-73.4247590628926,40.6387648444161],[-73.4249758578117,40.6388488771509],[-73.4249905290969,40.6388535813449],[-73.4250747560362,40.6388862598399],[-73.4250799240441,40.638949388411],[-73.4251374997656,40.639738398148],[-73.4251390816988,40.6397654450241],[-73.4250165362227,40.6397592685105],[-73.4249619662641,40.6397540197345],[-73.4248710855034,40.6397527797964],[-73.4247758784564,40.6397469761493],[-73.4237430566281,40.6396968441782],[-73.4230387118684,40.6396647025465],[-73.4230837893293,40.6396022604026],[-73.4233648039098,40.6392187433088],[-73.4235840620094,40.6389154563598],[-73.423988978522,40.6386372248872],[-73.4244194359348,40.6383413239576]]],[[[-73.3799858173047,40.6325915571191],[-73.3809472410342,40.6325014511273],[-73.3825682886936,40.6330061186508],[-73.3846689585614,40.6345849557662],[-73.3864402045363,40.6353619182027],[-73.3884806998564,40.636714638547],[-73.3891714126817,40.6375575432488],[-73.3888701779226,40.6387739583345],[-73.3870371251611,40.6397302584526],[-73.3863611249435,40.6398108925855],[-73.3860668251783,40.639847314961],[-73.3858963473953,40.6398674518253],[-73.3835536929496,40.6396409916757],[-73.381812242296,40.6391571705527],[-73.3809121402628,40.6385409961001],[-73.380281741224,40.6376223179726],[-73.3794151634188,40.6332997035467],[-73.3799858173047,40.6325915571191]]],[[[-73.3663987573099,40.6389040268349],[-73.3654345308368,40.6388318231667],[-73.3647512821131,40.6392995825587],[-73.3646891851708,40.6385735390954],[-73.3639370293767,40.6388061031217],[-73.3636590861362,40.6386265028888],[-73.3634699602262,40.6385022103367],[-73.3633950712742,40.6384516029867],[-73.3620830404792,40.6385185711449],[-73.3615732088263,40.6389662514983],[-73.3609207947748,40.639290294206],[-73.3604253190983,40.6397246613464],[-73.3603616357312,40.6397597892981],[-73.3602314249308,40.6398255012106],[-73.3597635850258,40.6400665808947],[-73.3597291570925,40.6400841083143],[-73.3600001931867,40.640304157372],[-73.3599875224497,40.6403084811008],[-73.3599539443227,40.6403215163608],[-73.3597390610185,40.6404040413655],[-73.3590959463268,40.6401967198136],[-73.358978612876,40.6401590188438],[-73.358793119753,40.6400978280006],[-73.3573908918153,40.6391094962256],[-73.3569454972159,40.6387968767323],[-73.3568242120762,40.6387095719166],[-73.356779162463,40.6384972368575],[-73.3567427241001,40.6383255616156],[-73.3570369915259,40.6378388017852],[-73.3571680009287,40.6376199641281],[-73.3576987902772,40.6367402060175],[-73.3573792110216,40.6358483463809],[-73.3571170062649,40.635781557558],[-73.3564568065148,40.6356100109913],[-73.3564443154408,40.6355467749619],[-73.3563582487518,40.6351086496571],[-73.3563352635586,40.634991215354],[-73.3563292771855,40.6349641051899],[-73.3563266532066,40.6349505555574],[-73.3564119446496,40.6349382575388],[-73.3566925316319,40.6348882030799],[-73.3568789599012,40.6348503198227],[-73.3586886124478,40.6345292482819],[-73.3587272489881,40.6345207895916],[-73.3586968769484,40.635096885444],[-73.3588829171454,40.6355274221154],[-73.359115811671,40.6360667235645],[-73.3610457809735,40.6371120743821],[-73.3611057345356,40.6371084219073],[-73.3618886396619,40.6370384604105],[-73.3620226952517,40.6370268505988],[-73.3621656154168,40.6370153662155],[-73.3625070875142,40.6369841783369],[-73.3625827615937,40.6368816565452],[-73.3627073687034,40.6367122676282],[-73.3627716296872,40.6366230963425],[-73.3627597297047,40.636595902993],[-73.3626455771882,40.6363375489187],[-73.3617510429132,40.636378905925],[-73.3616615374732,40.6363821398798],[-73.3610755241926,40.6364098534485],[-73.3603026092305,40.6360115224544],[-73.3598012603688,40.6357206401543],[-73.3594739609916,40.6350223537171],[-73.3596220572494,40.6344974763775],[-73.3599705748335,40.6344799079517],[-73.3618507936389,40.6343849950158],[-73.3628786262241,40.63399871017],[-73.3638099474084,40.6342956747347],[-73.3639174829344,40.6345224052506],[-73.3639301213321,40.6345496089886],[-73.3629191375485,40.6358189508267],[-73.3629100519877,40.635827829961],[-73.3630008779511,40.6361939519422],[-73.3635108739958,40.6364038695436],[-73.3638497652333,40.6364176813331],[-73.3645998414276,40.6364508320703],[-73.365042794406,40.6364706188875],[-73.3654153041948,40.6363182501552],[-73.3669453291597,40.6357048253843],[-73.3678946229379,40.6353263925482],[-73.3686457420762,40.6357108529806],[-73.3687299555408,40.6359552660301],[-73.3690056637729,40.6367428796057],[-73.3693118033335,40.6376165011884],[-73.3695771000914,40.638376941397],[-73.3698998908241,40.6392958374972],[-73.3699102061785,40.6393275116853],[-73.3694299695226,40.6398972566365],[-73.3682195148301,40.6405872979623],[-73.3677140229382,40.6407062663579],[-73.3672427820115,40.6405419565854],[-73.3671371563038,40.6405089339852],[-73.3670543244481,40.6404807374638],[-73.3670625907453,40.6404448212199],[-73.3670734037664,40.6403954286844],[-73.367130860012,40.6401304983883],[-73.3662868460901,40.6394924829325],[-73.3661778867344,40.6394143705671],[-73.3658767606714,40.639184902056],[-73.3659044269855,40.6391717813658],[-73.3663987573099,40.6389040268349]]],[[[-73.5130935785279,40.6378736519227],[-73.5131645732832,40.63767187889],[-73.5135751833181,40.6376861764553],[-73.5140470180312,40.6377057652191],[-73.5155341394581,40.6365673326151],[-73.5161134225607,40.6366738741379],[-73.516641088467,40.636775244875],[-73.5166495200542,40.6369284946686],[-73.5166680019929,40.6372620410909],[-73.5170523632552,40.6376273140125],[-73.5172557984294,40.6378191026284],[-73.5169587677858,40.6382161569673],[-73.5167295877938,40.6385194954919],[-73.5167534748956,40.6392765020974],[-73.51660228484,40.6393286091636],[-73.5164019299889,40.639398099958],[-73.5163219799286,40.6397709180649],[-73.515051574369,40.6404662366831],[-73.5148819293242,40.6409505036585],[-73.5145487837112,40.6409417117747],[-73.5144380483861,40.6409357821262],[-73.5128414232243,40.6401765353327],[-73.5123440763572,40.6399404130579],[-73.5120315488765,40.639868821958],[-73.5114514671717,40.6397307199361],[-73.5108721274753,40.6395926258083],[-73.5099869168146,40.6393830168019],[-73.5101304289694,40.6386461868105],[-73.51022231225,40.6386023308396],[-73.5103142952434,40.6385539723998],[-73.5109024815488,40.6381606924626],[-73.5130935785279,40.6378736519227]]],[[[-73.4254213233779,40.6381973502346],[-73.4260528650738,40.6374898051889],[-73.4266326224868,40.6379481232056],[-73.4269572933934,40.6379075067922],[-73.4277778361335,40.6378060825584],[-73.4282543914934,40.6377495140736],[-73.4284081740869,40.6378416907398],[-73.4291139777107,40.638252167118],[-73.4291715013299,40.6382889829882],[-73.4291905006982,40.6382982496666],[-73.429846599639,40.6386855239614],[-73.4300897888577,40.6389996177401],[-73.4302677496071,40.6392272450304],[-73.4300882114161,40.6402337309278],[-73.4304544815069,40.6403423067876],[-73.4303144161878,40.6407998247331],[-73.4301686465666,40.6409329662417],[-73.4295899976747,40.6414655923315],[-73.4284437770166,40.6415220581477],[-73.4281838000818,40.6413248406578],[-73.4275032013882,40.6408156110302],[-73.427405144885,40.6407422090455],[-73.4270544003773,40.6404761894827],[-73.426791279339,40.6399726445356],[-73.4266835120476,40.6399351424832],[-73.426204207843,40.6397619556109],[-73.4258574761096,40.6396401198321],[-73.4258398619435,40.6394146725437],[-73.4257913448333,40.6388059517912],[-73.4256318732092,40.6385470411637],[-73.4256269136105,40.6385379653879],[-73.4254213233779,40.6381973502346]]],[[[-73.5651979266405,40.6381863800358],[-73.5654082869272,40.6380268446608],[-73.5660987599023,40.6391930009179],[-73.5682232360234,40.6416336188587],[-73.5682231084626,40.6416741552982],[-73.5682316182033,40.6426246431902],[-73.567900959127,40.6426025236138],[-73.5668800606375,40.6417115350417],[-73.5663094148364,40.6408846858348],[-73.5655585265652,40.6393979840753],[-73.5651979266405,40.6381863800358]]],[[[-73.3386076043146,40.6403045063787],[-73.3386935075102,40.6402381807672],[-73.3388790760918,40.6403849830377],[-73.3393364658951,40.6407473895788],[-73.3394162874963,40.6408070911063],[-73.3395190628496,40.6418490194916],[-73.3385062294348,40.643050554881],[-73.3377636990889,40.6432470529306],[-73.3372259945093,40.6430231112664],[-73.3357039358043,40.6420192787752],[-73.3364269080298,40.6416873886487],[-73.3368575181562,40.6414909091833],[-73.3373157981899,40.6412813143172],[-73.3381247373915,40.6406713965679],[-73.3386076043146,40.6403045063787]]],[[[-73.389425860486,40.639885224694],[-73.389534706654,40.6398462059029],[-73.3927743459789,40.6401165667138],[-73.3927960789205,40.6401348862039],[-73.3932903328882,40.6406056923046],[-73.393507870714,40.6408114059411],[-73.3925862010291,40.6419201026931],[-73.392197287105,40.642387619596],[-73.3920328244411,40.6425880144329],[-73.3919760607966,40.6432898670564],[-73.3913564550159,40.6434523903512],[-73.3909399367614,40.6434375766701],[-73.3906401626628,40.6434243893353],[-73.3898227514498,40.64339046842],[-73.3894273525876,40.6423129699065],[-73.388882168635,40.6423008579667],[-73.3874770391389,40.6422722280016],[-73.3866541796437,40.6415445734338],[-73.3866762575385,40.6415178578746],[-73.3869432790617,40.6412333252243],[-73.3875881158238,40.6405441951279],[-73.389425860486,40.639885224694]]],[[[-73.4914590832312,40.63929097587],[-73.4936997797905,40.6380860973518],[-73.4945705626095,40.6381785325899],[-73.4945718723531,40.6392054978806],[-73.4940067170551,40.6396215166354],[-73.4931606513812,40.6402365529767],[-73.4929155640222,40.6405846776969],[-73.4919605883998,40.6419324607729],[-73.4915705309203,40.6424813753326],[-73.4906974412277,40.6432762066458],[-73.4906400649322,40.6433295061561],[-73.4892888118953,40.6434649703559],[-73.4891686514463,40.6431886438999],[-73.4894306684551,40.6426155413852],[-73.4895908057309,40.6422663127856],[-73.4899042225436,40.641576773463],[-73.4902181361247,40.6410944312266],[-73.4909117262539,40.6400315117269],[-73.4913580155752,40.6393482090337],[-73.4914590832312,40.63929097587]]],[[[-73.4011204818925,40.6424620217698],[-73.4041243404048,40.6420261544382],[-73.4047545373227,40.6427825514364],[-73.4047844889509,40.6436973033124],[-73.4045435122827,40.6439462041945],[-73.4020811699018,40.6439256548193],[-73.4007003335459,40.6430327296882],[-73.400609896553,40.6427342042044],[-73.4011204818925,40.6424620217698]]],[[[-73.4128055595975,40.6372453534477],[-73.414067146396,40.6369023621506],[-73.4143372212929,40.6374510733494],[-73.4136151240265,40.6411345433286],[-73.4134636761544,40.6440646526657],[-73.4122924419072,40.6447061510636],[-73.4076379398402,40.6436511249745],[-73.406677032642,40.6427820797496],[-73.4070378050433,40.6409763980605],[-73.4078493367827,40.6405416859698],[-73.4085398924029,40.639785506249],[-73.4110333407471,40.638644278133],[-73.4128055595975,40.6372453534477]]],[[[-73.3927657059825,40.6446656151023],[-73.3907769158935,40.644592864199],[-73.3903662268068,40.6447042452857],[-73.3901529290291,40.6449985428193],[-73.3898930401293,40.6453552479301],[-73.3895090588543,40.644755346151],[-73.3886943174343,40.6443025713967],[-73.3882040322236,40.6442506849663],[-73.3881050594389,40.6445240542886],[-73.3880860250363,40.6445778381087],[-73.3875535522449,40.644466805796],[-73.3874165933001,40.6440460091236],[-73.3869624293469,40.6426478888114],[-73.3876819709064,40.6430317842732],[-73.3882293081208,40.6429853784933],[-73.3887581723797,40.6429387129814],[-73.388921052212,40.6429274736375],[-73.3891317861979,40.6437231414377],[-73.3895289044356,40.644052980004],[-73.3915038182484,40.6441796083364],[-73.3929354902661,40.643627525942],[-73.3927816753333,40.6427065430202],[-73.3933840451386,40.6419987724315],[-73.39366302234,40.6427863733262],[-73.3941738663943,40.6428745555175],[-73.3945839149821,40.6429433173697],[-73.395029251191,40.6433593857632],[-73.3951789689078,40.6438974590595],[-73.3952150021305,40.6440285795337],[-73.3949970376049,40.6446110856719],[-73.3939702147261,40.6447094057449],[-73.3936279754675,40.6447406765785],[-73.3936521096059,40.6448130783375],[-73.3936940510482,40.6449442815322],[-73.3936996385693,40.6449578720775],[-73.3932891551969,40.6452764560513],[-73.3931859800932,40.6453560937982],[-73.3927657059825,40.6446656151023]]],[[[-73.4811010804073,40.6430512371881],[-73.4786072412959,40.6412933037462],[-73.4782461922135,40.6407885829841],[-73.478065618265,40.6405384740294],[-73.4782151563188,40.6393243242262],[-73.4787256976408,40.6392995246172],[-73.4809491806826,40.6405584409541],[-73.4835022511106,40.6414973466053],[-73.4845837751019,40.6413584095319],[-73.4869865636711,40.6414935246417],[-73.4869273476259,40.6432313524115],[-73.4860875854303,40.6444454713648],[-73.4853291126831,40.644809365621],[-73.4842261054817,40.645339888708],[-73.4839845979091,40.6453637420542],[-73.4835809543092,40.6453989774578],[-73.4825142192824,40.6455020662108],[-73.4810121157531,40.6450183809497],[-73.4809811229775,40.6441036301389],[-73.4807710815927,40.6437180129384],[-73.4811010804073,40.6430512371881]]],[[[-73.3833078905317,40.6447722520761],[-73.3830493437148,40.6443677628567],[-73.3819401255615,40.644388252114],[-73.38190868273,40.644221158834],[-73.3818817602209,40.6440811538865],[-73.3818266557647,40.6437921171254],[-73.3823473246933,40.6432589206775],[-73.3840463937301,40.6428998691084],[-73.3856481096446,40.6425619522934],[-73.3860882095737,40.6428248416883],[-73.386305939639,40.6433593728124],[-73.386827829378,40.6446458388935],[-73.3870705829139,40.6446942726683],[-73.3889260971507,40.645206631938],[-73.3889422299949,40.6455806990106],[-73.3887932363202,40.6456596936467],[-73.388588804016,40.6457694432528],[-73.3883821537714,40.6458791606433],[-73.3872377917276,40.6455163593725],[-73.3858932958183,40.6454840535509],[-73.3858548721786,40.6454835164495],[-73.3859059144531,40.6452365032071],[-73.3851222933695,40.6448426921352],[-73.3837216338903,40.6448411039903],[-73.383652915466,40.6448401415608],[-73.3833078905317,40.6447722520761]]],[[[-73.2501683711682,40.645740279721],[-73.2499131948303,40.6457183942838],[-73.2497470163842,40.6457699237792],[-73.2494073274427,40.6456161380978],[-73.2487710112011,40.645273187084],[-73.2487711495416,40.6451831077503],[-73.2488909497662,40.6450678184583],[-73.2494129230486,40.6449496191904],[-73.2499367387756,40.6449305376227],[-73.2499485606047,40.6449307168852],[-73.2501249448108,40.6449694232551],[-73.2502929333622,40.6449899866226],[-73.2505880559841,40.6449539235333],[-73.2507972035452,40.6448985402853],[-73.2508113591975,40.6448942502526],[-73.2508199372101,40.6451601213399],[-73.2511355135728,40.6451333745108],[-73.2512886080568,40.6451582148935],[-73.2511757293514,40.6454898062607],[-73.2510330777826,40.6457443774887],[-73.2509557633794,40.645959401565],[-73.250869416416,40.646039166637],[-73.2507104927641,40.6459827094133],[-73.25055922725,40.6459443839616],[-73.250371791071,40.6459325344137],[-73.2501683711682,40.645740279721]]],[[[-73.374207336866,40.645446159948],[-73.3748702216805,40.6443249610098],[-73.3756204847243,40.6445066786708],[-73.3756805379993,40.6451696297155],[-73.3746881996477,40.6460384680021],[-73.374328129729,40.6460424055766],[-73.374207336866,40.645446159948]]],[[[-73.4763269425073,40.645294441503],[-73.4778882162677,40.6451573949238],[-73.478549684439,40.645616530699],[-73.4785196843018,40.6460260132144],[-73.4784513144238,40.646074657282],[-73.4781712852952,40.646264644034],[-73.4776787524997,40.6466004646188],[-73.4770481594247,40.6466687168937],[-73.4770194923874,40.6464341225378],[-73.4769576002609,40.6459378495002],[-73.4763269425073,40.645294441503]]],[[[-73.3902009942867,40.6458279720308],[-73.3911547266407,40.6451116013394],[-73.3924179771192,40.6452643255643],[-73.3929718208312,40.6462719541159],[-73.3930042985219,40.646335463528],[-73.392955836209,40.6463528052717],[-73.3918080533806,40.6467466946762],[-73.389375540457,40.6461272409284],[-73.3902009942867,40.6458279720308]]],[[[-73.3355970371838,40.6463506902922],[-73.3363503086855,40.6460507660206],[-73.3362904377684,40.6451580901599],[-73.3357655036389,40.6446280461624],[-73.3339629612578,40.6447371656139],[-73.3338381385524,40.6444065636155],[-73.3343187273479,40.6440441633091],[-73.3358486031926,40.6437824715483],[-73.3368107599473,40.6439990246754],[-73.3383132057347,40.6447233051067],[-73.33820261953,40.6464693069386],[-73.3377240887748,40.6467191503433],[-73.3373929455065,40.6467188852055],[-73.3368623807368,40.6465040523766],[-73.3366929638641,40.6462719016333],[-73.3357353310251,40.6467940868242],[-73.3355970371838,40.6463506902922]]],[[[-73.3164369414557,40.644973810071],[-73.3158561033694,40.6447626523085],[-73.31483619662,40.6457566851038],[-73.3137562267141,40.6457589289242],[-73.3130657573322,40.6456452451111],[-73.3124193422301,40.6455727386068],[-73.3120734297603,40.6455721844661],[-73.3116868900835,40.6443684403792],[-73.3124786795479,40.6444205564212],[-73.3127260207799,40.644225992156],[-73.3124738151707,40.6437628866126],[-73.3122936778034,40.643255793389],[-73.3121654513814,40.6431232992858],[-73.3116344913529,40.643016443602],[-73.3103527454611,40.6430202082219],[-73.3101775649976,40.6421708731097],[-73.3087395984846,40.6416588647563],[-73.3062040227468,40.6413244139491],[-73.3031435012014,40.6410272325296],[-73.3005862509124,40.6408499831418],[-73.2995134872917,40.6407170773184],[-73.2972738417613,40.6405489373748],[-73.2950666442773,40.640732552803],[-73.2907649618263,40.6411418635154],[-73.2880771953097,40.6413587646678],[-73.2872854956767,40.6413920608678],[-73.2832681614542,40.6417197324348],[-73.2800451149109,40.6418834428755],[-73.2784331869483,40.6422827967286],[-73.2765822190851,40.6427506246403],[-73.2754487949282,40.6424769624508],[-73.2742959033808,40.642500268107],[-73.2735481726877,40.6420026441256],[-73.2725962100148,40.6416866272573],[-73.2700373858775,40.6422023073615],[-73.2689540014752,40.6424247814994],[-73.2681023267206,40.6425471281903],[-73.2650241838225,40.6423072251024],[-73.2634481354706,40.6425447608868],[-73.2581018264303,40.6424687058488],[-73.2565544352342,40.6418598125444],[-73.2531220991961,40.6417989081851],[-73.2530681068542,40.6421404019931],[-73.2524728058919,40.6425772944324],[-73.2504548969129,40.6424116028257],[-73.2497688553271,40.6419643061639],[-73.2499372247642,40.6410930672538],[-73.2509093420388,40.6397836016939],[-73.2555967637677,40.6371115481203],[-73.2579626504433,40.636850009146],[-73.2655608786958,40.6352528775],[-73.26924757091,40.6362405628619],[-73.2727685185644,40.6367527211633],[-73.274013543124,40.6372803075112],[-73.2761667006555,40.6377583888611],[-73.2775850677256,40.6382434846284],[-73.2801229566252,40.6390245033505],[-73.2815300480419,40.6392886820707],[-73.2817914254502,40.6391259216432],[-73.2823919564042,40.6394276254971],[-73.2827409267392,40.6392211250452],[-73.2836582503748,40.6395050152855],[-73.2847559054137,40.6393276555163],[-73.2878657768076,40.6393648184416],[-73.2885623017328,40.6390058120474],[-73.2918391034627,40.638495842838],[-73.2945240070485,40.6380671181184],[-73.29694052996,40.6382514336361],[-73.2976616705206,40.6381719891882],[-73.2981529905905,40.6380621275648],[-73.3001073024406,40.638374683695],[-73.3011241360534,40.6387589902395],[-73.3042159117842,40.6391017252348],[-73.3047066039317,40.6389873225124],[-73.3056383446293,40.6392892655751],[-73.308576498565,40.6392783085073],[-73.3109788182136,40.6384757232834],[-73.3129694345775,40.6382300835848],[-73.313354813631,40.6374835296208],[-73.312708415597,40.6363570644552],[-73.3117676845601,40.6356496771477],[-73.3110236360614,40.6343235930021],[-73.3102535498942,40.6337673251344],[-73.3093038518741,40.6337399063356],[-73.3094171563809,40.632881281159],[-73.3106401785043,40.6329126993334],[-73.3119120483178,40.6336159312305],[-73.3181731261851,40.6337613750787],[-73.3205109593727,40.6331603342402],[-73.3253542477866,40.6337621870078],[-73.3273559825988,40.6328858835141],[-73.3289290000349,40.6324852804117],[-73.3327176528305,40.6320806458367],[-73.3350562316198,40.632096383747],[-73.3374892179555,40.6312261232066],[-73.3406443967791,40.6308526397163],[-73.3467483539133,40.6291520871381],[-73.3553334767268,40.628292826184],[-73.3620492000442,40.6264200103088],[-73.366717648456,40.6255808281032],[-73.371665284275,40.624285973042],[-73.3870177026864,40.6190469981374],[-73.3926126824654,40.617742266153],[-73.3996805597472,40.6156694635939],[-73.4066309481696,40.6140765476676],[-73.4163520238976,40.6112105438767],[-73.4239407416862,40.6094541774221],[-73.4276732902007,40.6085907287374],[-73.4347050749711,40.6073755731585],[-73.4479654823757,40.6045052805538],[-73.4529338962272,40.6036801408513],[-73.4697603790529,40.5994272423684],[-73.4794661977941,40.5980330647533],[-73.4890524148384,40.5960284384618],[-73.4939618803426,40.5952457962146],[-73.5027864499935,40.5943020923127],[-73.5204333614732,40.5910703991595],[-73.5320106233778,40.5879166201719],[-73.5344767072419,40.5874705071065],[-73.536909173453,40.586735645619],[-73.5409463209175,40.5860705720219],[-73.5474346824331,40.58426963353],[-73.5482155986894,40.5838785814156],[-73.5560242743652,40.5816838691049],[-73.5583517823169,40.580726533255],[-73.5616616222863,40.5799975961793],[-73.5644635494041,40.5789829868376],[-73.565913530884,40.57868571226],[-73.5682253901834,40.5777234769467],[-73.5743669858297,40.575871671233],[-73.5731796286198,40.579451378886],[-73.5706720919969,40.5833615586257],[-73.5701460358716,40.583963115053],[-73.5695388376216,40.584351964452],[-73.5682113710751,40.5846823329719],[-73.5673882870011,40.5851856029915],[-73.566051162667,40.5869346568063],[-73.5654063681257,40.5884580810619],[-73.5638670770386,40.5898127281511],[-73.5590228184442,40.5908153555064],[-73.5569911850044,40.5914611056659],[-73.5552134837358,40.5909794404003],[-73.5551109096051,40.5896719337886],[-73.5515092456274,40.5899691179292],[-73.5489285322416,40.5904231622053],[-73.5485948826737,40.5920539962491],[-73.5480138415681,40.592965548675],[-73.5458145735131,40.5941134638487],[-73.5445069893788,40.594466328949],[-73.5432847820274,40.5953427456218],[-73.5426844019904,40.5959837734939],[-73.5428040989088,40.5968320753741],[-73.5417532946052,40.5969899657162],[-73.5415137624279,40.5966941660628],[-73.5384526174517,40.5960969265977],[-73.5368887062376,40.596955435293],[-73.5352461699783,40.5972859325377],[-73.5339014557783,40.5980480883578],[-73.5321903035026,40.5983056028905],[-73.5301425300321,40.5991938986978],[-73.528130401712,40.599330411426],[-73.5268936039238,40.5993101300164],[-73.5245091634443,40.5992796761741],[-73.5218642986691,40.5992683592283],[-73.5196280101429,40.5994198691819],[-73.5173767422094,40.6002152437423],[-73.5164495496821,40.6007573471228],[-73.5151277829461,40.6021051223976],[-73.5141368576444,40.6025878321962],[-73.5125163328045,40.601648105966],[-73.5117659934038,40.6015078125955],[-73.5108425675126,40.601644541582],[-73.5093997474022,40.603846485098],[-73.510999740348,40.6048130157068],[-73.5108725155475,40.6058518419908],[-73.5090869153927,40.6072521158482],[-73.505749118055,40.6085196734786],[-73.5036518653786,40.6091456111746],[-73.5025851060973,40.6092443817444],[-73.5015048145945,40.6093204453019],[-73.5001159032825,40.6113698255301],[-73.5000412020784,40.6124633709007],[-73.5004106279508,40.6134861157121],[-73.4998492303056,40.6135148541723],[-73.4970827983196,40.6122762557612],[-73.4968598283812,40.6113139622907],[-73.4976233891862,40.6094501619912],[-73.4961478075173,40.6096921928871],[-73.4954489622437,40.6097236246981],[-73.494016859933,40.6097725148083],[-73.4933183066118,40.6095607117359],[-73.4928142816688,40.6092073104895],[-73.4923750692753,40.6089943837797],[-73.4915186451278,40.6090687754253],[-73.4893230215379,40.6085446059107],[-73.4887255637206,40.6082079808059],[-73.4892944973327,40.6074497163161],[-73.4901428096932,40.6069473374583],[-73.4941574983772,40.6070628317005],[-73.4957308365119,40.6065113112729],[-73.4972205244257,40.6052740445953],[-73.4979353138972,40.6048914829552],[-73.4985595666629,40.6042960422379],[-73.4988335609094,40.603705052582],[-73.4982669377642,40.6036075996882],[-73.4982213536534,40.6035979980944],[-73.4975450983142,40.6026568326432],[-73.4965444631226,40.6025447143831],[-73.4952557714571,40.6036494673408],[-73.4954720004375,40.6043504340873],[-73.4963790563293,40.6047496113857],[-73.4951189706157,40.6051700985047],[-73.4949243389313,40.6056134759361],[-73.4953488369205,40.6057901682222],[-73.4951907415153,40.6060538543861],[-73.4940031004378,40.606470769855],[-73.490540583701,40.6064075328324],[-73.491584103566,40.60517351334],[-73.491649647344,40.6039672485643],[-73.4927871139197,40.6031848629444],[-73.4943993697675,40.6027059352626],[-73.4953280463116,40.6021730361666],[-73.4958535059555,40.6021618663499],[-73.4964798913217,40.6017015901186],[-73.4976389174642,40.6017662243337],[-73.4985310981532,40.6014760502185],[-73.5023713627552,40.6011836179305],[-73.502703026148,40.6002240239364],[-73.5022536421305,40.5990786336766],[-73.5016835254371,40.5986433371385],[-73.5003334734477,40.5984366294093],[-73.4986595455608,40.5987076441848],[-73.4970269464651,40.5998034415874],[-73.4959702042975,40.5990329762814],[-73.4935648231904,40.5988169437176],[-73.4906762688348,40.5994593494825],[-73.4830120440533,40.6002056853132],[-73.4814562787622,40.6006356516216],[-73.4807198749265,40.6010898935596],[-73.4807314946348,40.6016530699126],[-73.4810645845522,40.601981753566],[-73.4820874889797,40.6020222322306],[-73.4828425095013,40.6038473424044],[-73.4817994774215,40.6058695209301],[-73.4721278180173,40.6092506817894],[-73.467272111293,40.6106636854339],[-73.4660283129337,40.6109084070157],[-73.4632502980704,40.6119479575674],[-73.461042375646,40.6123194163958],[-73.4604984619111,40.6127445646487],[-73.4589805471345,40.6128909670607],[-73.4583532167407,40.6127339537397],[-73.4547076359254,40.6133248042271],[-73.4504620658403,40.6136282299129],[-73.4456723152207,40.6142664897771],[-73.4445579461276,40.6144992093813],[-73.4430831091621,40.6146009404185],[-73.4417810065477,40.6147725470926],[-73.4385791476687,40.615080609337],[-73.4373856756266,40.6141726371393],[-73.4355544814795,40.6117200927121],[-73.4337473343343,40.6116910847933],[-73.4301551188368,40.6126467205479],[-73.4286998229237,40.6135863071382],[-73.4289120049938,40.6143999440049],[-73.4299909840579,40.615112767576],[-73.4299664079484,40.6157204946257],[-73.4295100628857,40.6163403655298],[-73.4283978219016,40.6168567194059],[-73.4260248430268,40.6174774921324],[-73.4256555572916,40.6169995199212],[-73.4277963899374,40.6163215437712],[-73.4283524632679,40.6154823335661],[-73.4281811186106,40.6146602439009],[-73.4275244124087,40.6144351009639],[-73.4245910321204,40.6149806479102],[-73.4241423766366,40.6151772115249],[-73.4219668025455,40.6161384074144],[-73.4206461218727,40.617440064045],[-73.4206755201386,40.6186070421585],[-73.4195047260659,40.6190639542125],[-73.4179734219,40.6191105416323],[-73.4166820775094,40.6185388266536],[-73.4161423993311,40.617738692399],[-73.4154525327188,40.615634794165],[-73.4150326835112,40.6151741108794],[-73.4143422159259,40.6151285960876],[-73.4138312757519,40.6153332719335],[-73.4144010007798,40.6174850753936],[-73.4135900520469,40.6186269965494],[-73.4136495537564,40.6200466218839],[-73.4096561560429,40.6210321340987],[-73.4094154066485,40.6212134876434],[-73.409475321583,40.621646710974],[-73.4073437865004,40.6221983580791],[-73.4065030487344,40.622285846762],[-73.404071126004,40.6214865462834],[-73.3996889239608,40.6192188477286],[-73.399989361016,40.6189212344796],[-73.4022347952901,40.6183938201461],[-73.4034604063581,40.6180594532701],[-73.4034733232336,40.6173930179137],[-73.3929635769918,40.6199947193289],[-73.3928129582647,40.6202673751998],[-73.393263068121,40.6205393856045],[-73.3961456953924,40.6198813291629],[-73.396956455479,40.6199961860119],[-73.396775159285,40.62155210231],[-73.3983655860714,40.6231776550461],[-73.3967439446255,40.6239073357157],[-73.3956326612454,40.6240900785017],[-73.3934707774793,40.6240194747263],[-73.3928397118905,40.6246367656882],[-73.3922993213482,40.6248003980205],[-73.3881568320436,40.6232652726754],[-73.387116165228,40.6233993737082],[-73.3867492267907,40.6231104860435],[-73.3863904378696,40.6219614194708],[-73.3858142467682,40.6220164221893],[-73.3851794019671,40.6222057253434],[-73.3844323441121,40.6224520083284],[-73.3836257540051,40.6227154698768],[-73.3822703507516,40.6230928471207],[-73.3818055022364,40.6237079027668],[-73.3822060753947,40.6256638090462],[-73.3818254951414,40.6257260365042],[-73.3829201902314,40.6276421221162],[-73.3826168372449,40.6278720870934],[-73.3773140812244,40.6289372127699],[-73.3763922929619,40.6290098293828],[-73.3760759916588,40.6287666617305],[-73.3756318097851,40.6280983042255],[-73.3757913730374,40.6277041861486],[-73.3764706790553,40.6269029978632],[-73.3759819757777,40.6267609998519],[-73.3754490691001,40.6267354844671],[-73.3748127896894,40.6270418177538],[-73.3742295072872,40.6262904220172],[-73.3733417031902,40.6262734105055],[-73.3710640023295,40.6268313334671],[-73.370106496153,40.6275835201229],[-73.3683684357412,40.6278877673625],[-73.3679162633531,40.6278543505699],[-73.3672458057408,40.6279844976131],[-73.3662372761545,40.6282810130458],[-73.3656392550934,40.628470729326],[-73.3641448887536,40.6289315029486],[-73.3616803778397,40.6296577487601],[-73.3613526858988,40.6301845846543],[-73.3616950590063,40.6306894019485],[-73.3623876681752,40.6307127423987],[-73.3627132176342,40.6310596739553],[-73.3639037728465,40.6308468441583],[-73.3650912216846,40.6310032967796],[-73.3653835173084,40.6307146676651],[-73.3664521450856,40.6304100024357],[-73.3674798995173,40.6303569803107],[-73.3681964721447,40.6310652520173],[-73.3667485118742,40.6312879971098],[-73.3623677929496,40.6326447308595],[-73.3619795824063,40.6324725701719],[-73.3609110318842,40.6326510791459],[-73.3608653327891,40.6328576196904],[-73.3594091304759,40.6332332953042],[-73.3587262994689,40.6333226790434],[-73.3583673183083,40.6328626576723],[-73.357851465248,40.6327427174668],[-73.3576432716977,40.6330054989599],[-73.3569194775137,40.6331078010522],[-73.3560962847436,40.6337671949258],[-73.3550394096253,40.6339503204451],[-73.3545864943304,40.634457335064],[-73.352233489496,40.6347840992292],[-73.3508655215066,40.6354446852078],[-73.3490059738342,40.6359585974883],[-73.3488469612491,40.6355734731415],[-73.3480834166138,40.635697671618],[-73.3479638221034,40.6361418683337],[-73.3474697415106,40.6363374807492],[-73.3467781609127,40.6362104707877],[-73.3464053088658,40.6354169092035],[-73.3484774141041,40.6347349240613],[-73.3480532026775,40.6339856743571],[-73.3476214265379,40.6339930062352],[-73.3419842124658,40.6357498523745],[-73.3419236767954,40.6359561720068],[-73.3418874225872,40.6360772625976],[-73.3429927761881,40.6363273494104],[-73.3443703336931,40.6360002996683],[-73.3446421621015,40.6368734926424],[-73.3445938066881,40.6368863111146],[-73.3411435798027,40.6377330978609],[-73.3408418383937,40.6380395449815],[-73.3404977459106,40.6382057546068],[-73.3400589018264,40.6383480807066],[-73.3391812073696,40.6386327265425],[-73.3374477840614,40.6397157840936],[-73.3337624986089,40.6415048255747],[-73.3332946587038,40.6410881968961],[-73.3329599868532,40.6400429144743],[-73.3319619253348,40.6391637063595],[-73.3313404753129,40.6393664176235],[-73.3315618049275,40.6409550638769],[-73.3295787937008,40.6406876655034],[-73.3269670605898,40.6412984310685],[-73.3268771437214,40.6417024971864],[-73.327644490027,40.6426144391895],[-73.3276418876076,40.6426594424336],[-73.3276291027845,40.642875454584],[-73.3275492757934,40.6442075136096],[-73.3259052123981,40.6455168951105],[-73.3251700724921,40.6457404439861],[-73.3242137017861,40.6464156902694],[-73.3237358232078,40.6467555669044],[-73.3232943838906,40.6468797745668],[-73.3226235561724,40.6470727123326],[-73.3211715534831,40.6467588351175],[-73.3205530732915,40.6463084356723],[-73.3198128075985,40.6459103096046],[-73.3194849988766,40.645747893853],[-73.3178342951347,40.6455481880585],[-73.3167207183556,40.6453878223652],[-73.3164369414557,40.644973810071]]],[[[-73.3551297567867,40.6473063154682],[-73.3545515831035,40.6463792353536],[-73.3526951597716,40.6452222236174],[-73.3507817140805,40.6450327512364],[-73.3501864535423,40.645402589946],[-73.3492869165494,40.645461795194],[-73.3491773373561,40.6454692362312],[-73.3484307142858,40.6463413613435],[-73.3474540739937,40.6467687849341],[-73.3484081495041,40.6393731742687],[-73.3484484524194,40.6393872635624],[-73.3486827689781,40.6394761939376],[-73.349347638171,40.6397289258083],[-73.3505170263803,40.640173534006],[-73.3519758652489,40.6398790836378],[-73.3523594952825,40.639186422169],[-73.3524132118416,40.6373630210117],[-73.3528577808892,40.6369865158434],[-73.353374820624,40.6365479848362],[-73.3532336647501,40.6363072530616],[-73.3537880384682,40.6357926822161],[-73.3552313616352,40.6366375113833],[-73.3554737235056,40.636609435931],[-73.3567608152716,40.6364430968998],[-73.3568575117254,40.636719224959],[-73.3563707434191,40.6375815902469],[-73.3557761682954,40.6378974186373],[-73.3560155711153,40.638261158405],[-73.355879810523,40.6387636862598],[-73.3578088455776,40.6402099439137],[-73.3578182293791,40.6402190855827],[-73.3576715147303,40.6404151795681],[-73.35789972544,40.6406030952161],[-73.3589897124596,40.6409428930691],[-73.3615773967721,40.64097064428],[-73.3619160158202,40.640754748662],[-73.3619069356493,40.6403402406966],[-73.3625302892013,40.6400563178805],[-73.3647903040308,40.641182857637],[-73.3647751359772,40.6412592127001],[-73.3647343937858,40.6414748333482],[-73.3645586132476,40.6423776711712],[-73.3637597585335,40.6428257693838],[-73.3626195314349,40.6430573268307],[-73.361633740005,40.6424442911667],[-73.3599561793311,40.6450598798047],[-73.3592318039371,40.6453918976617],[-73.3585835329157,40.6454232179323],[-73.3585370442014,40.6456612742746],[-73.3571514548594,40.6465513928961],[-73.3570838476512,40.6465954712953],[-73.3563784410827,40.646544891892],[-73.355911995363,40.6469976684741],[-73.3556198075371,40.6472772650691],[-73.3551297567867,40.6473063154682]]],[[[-73.2457158022922,40.64435301754],[-73.2467368651734,40.6440307204883],[-73.247247544836,40.6442591730963],[-73.2469792054842,40.6458135112629],[-73.2477600992826,40.6464784559293],[-73.2477610937176,40.6470054480878],[-73.2466200491522,40.6476457213677],[-73.2452384025159,40.6472553978571],[-73.2449675137454,40.6469585154787],[-73.24484634359,40.6458847033873],[-73.2457158022922,40.64435301754]]],[[[-73.5021009456001,40.6373261248739],[-73.5018012972658,40.6365475192406],[-73.5003390780368,40.636893365227],[-73.5003034113267,40.6369019101912],[-73.4995782579917,40.6370726510932],[-73.4967738641001,40.6373514555659],[-73.4962029550926,40.6369386450035],[-73.4969804613441,40.6331832913783],[-73.4971518149845,40.6329242805462],[-73.4974387665307,40.6324866077467],[-73.4983600822793,40.6310797841551],[-73.4982086892045,40.630415702586],[-73.4974579491552,40.6297528286298],[-73.4975773666976,40.6289751621049],[-73.4985378723488,40.628884063348],[-73.5004267958293,40.6294085818914],[-73.5006971186613,40.629249943881],[-73.5007275095656,40.6286512840896],[-73.4999189269952,40.6267760510882],[-73.4982658759555,40.6270067908332],[-73.4980854592121,40.6268467978529],[-73.4983552457498,40.6256567026122],[-73.4990747199356,40.625107542672],[-73.5018517969578,40.6240761332529],[-73.5027479293358,40.6243490042819],[-73.5039251436678,40.6259001924894],[-73.504160683732,40.6275968142181],[-73.5043825038267,40.6293788358018],[-73.5049112917289,40.6293271327564],[-73.5049245005568,40.6289669706463],[-73.5060393762997,40.6286796280976],[-73.5063429835096,40.628386281963],[-73.5068725924718,40.6285958225473],[-73.5075137551244,40.6284419659379],[-73.5080205450818,40.6278179339237],[-73.5083595926262,40.6289528634729],[-73.5081199697192,40.6296253923124],[-73.5083017986141,40.6310510600686],[-73.5092507420493,40.6318785764647],[-73.5091525804433,40.6321385498754],[-73.5084430407262,40.6322419863411],[-73.5083204215883,40.6324385850622],[-73.5084178286095,40.6326110021687],[-73.5089553508311,40.6332305152262],[-73.5085132683202,40.6338013361548],[-73.5085955495087,40.6341221957735],[-73.5082063364455,40.6342432821916],[-73.5081784572307,40.6351302427124],[-73.5068606430819,40.6362617628948],[-73.507410865685,40.6364445427707],[-73.5083345440029,40.6362853263565],[-73.508324349921,40.6376724780872],[-73.5078442560972,40.6379905712611],[-73.5077598935122,40.6386921300265],[-73.5067528066203,40.6398727067272],[-73.5060555477715,40.6400843871116],[-73.5059041834427,40.6401770152178],[-73.5041786221899,40.641258181373],[-73.5033884254384,40.6420226521922],[-73.5028160791265,40.6437538340394],[-73.5022750912045,40.644345867427],[-73.4986433552244,40.6459742255919],[-73.4942183897804,40.6464796044095],[-73.4917969917119,40.6477857242905],[-73.4913470300776,40.6475140988594],[-73.4901866555639,40.6468187998136],[-73.4886711087464,40.6459116482599],[-73.4882505768191,40.6452215099787],[-73.4882802975803,40.6445597883925],[-73.4891204595262,40.6440798356429],[-73.4910727816079,40.6439387207273],[-73.4924090579324,40.6425643973022],[-73.4948236144318,40.640073579457],[-73.4966256798075,40.6394754897806],[-73.5002680913664,40.638743653358],[-73.5015893595374,40.6381257293167],[-73.5021009456001,40.6373261248739]]],[[[-73.2841952776247,40.6455755086284],[-73.2859075851338,40.6452991759149],[-73.2869286785577,40.6455755726988],[-73.2880390483512,40.6464658410499],[-73.2891200207769,40.6474952899753],[-73.2889997534284,40.6478628426631],[-73.2885195634848,40.6479097725916],[-73.2837743809814,40.646078213843],[-73.2838049012432,40.645781397114],[-73.2841952776247,40.6455755086284]]],[[[-73.3369388803681,40.6482752687379],[-73.3367746413847,40.6476558394019],[-73.3388893734799,40.6467944801001],[-73.3390138727917,40.6440397573468],[-73.3393936517477,40.6436578682353],[-73.3397120155828,40.6433381518582],[-73.3401243396032,40.6429251997304],[-73.3402546060992,40.6426793466957],[-73.3407448805302,40.6417450362391],[-73.3407932548082,40.641403419076],[-73.3404052616572,40.6413122629763],[-73.3399071161877,40.6398502713128],[-73.3402462984795,40.6397335379163],[-73.3405726950497,40.639625628412],[-73.3416851174936,40.6401595887075],[-73.3423322620277,40.6404706599226],[-73.3431015073718,40.6404772003724],[-73.3435854486799,40.6404841457228],[-73.3447440364446,40.6400188261],[-73.3450517534469,40.6393205968894],[-73.3451604567828,40.6390789330499],[-73.3453596860448,40.6390322436753],[-73.3468212926227,40.6387153776988],[-73.3476532134242,40.6393263371788],[-73.3472701493292,40.6420908832464],[-73.3472072079705,40.6425448978945],[-73.3469607533757,40.6443249971352],[-73.3468609550392,40.6450442253796],[-73.3466207634985,40.6467793720334],[-73.346484717242,40.6474395271511],[-73.3464083586462,40.6478077705834],[-73.3458428053945,40.6480203677397],[-73.3455674717599,40.6481245204696],[-73.3453137893203,40.6482199741243],[-73.3450331708969,40.6483285540324],[-73.3441467196627,40.6482753034981],[-73.3436513445976,40.6482501786967],[-73.3435732809994,40.6482085216558],[-73.343554403802,40.6481947388873],[-73.3434981746551,40.6481669068465],[-73.3431656803207,40.6479819705296],[-73.3416410021283,40.648090693274],[-73.3416225291728,40.6480904281417],[-73.3414740035204,40.6478495764582],[-73.3413829898091,40.6477041367216],[-73.3411975766361,40.6478185790305],[-73.3410346653627,40.6479198319702],[-73.3404538129033,40.6482718104404],[-73.3403373822594,40.6483467063283],[-73.3397767760299,40.6482395536626],[-73.3396022351668,40.64827307612],[-73.3385078077747,40.648469019672],[-73.3379234024784,40.6483975488155],[-73.3369388803681,40.6482752687379]]],[[[-73.2900041813071,40.6455806410746],[-73.2893629216365,40.6441208204625],[-73.2924665344678,40.642585838669],[-73.2947042432304,40.6422225600749],[-73.2962544695095,40.6415428134369],[-73.2987488260505,40.6412868383571],[-73.3010646541069,40.6414830955263],[-73.3018938745726,40.6418646344495],[-73.3048796688628,40.6425165754497],[-73.3053792839761,40.6428391988148],[-73.3059076182289,40.644130622762],[-73.3053842525579,40.6444832680654],[-73.3054183741656,40.6451503757648],[-73.3043256787254,40.6460351472709],[-73.3030120291663,40.646245549892],[-73.3018675997488,40.64572876412],[-73.3010636012814,40.6455457765574],[-73.3008621154513,40.6455338028875],[-73.3002836623921,40.6456964413612],[-73.2995240910053,40.6444916682382],[-73.297484301761,40.6441327998388],[-73.2966730781437,40.644467646904],[-73.2980032872468,40.6450592895347],[-73.2979248885769,40.6465444849828],[-73.2983060185992,40.6470500591864],[-73.2979020596906,40.6481115732933],[-73.2939248639916,40.6492869745977],[-73.2933075489149,40.6491742543905],[-73.2928440532626,40.6483341429199],[-73.2926035212604,40.6480558355207],[-73.2921969213049,40.6472751160397],[-73.291767668533,40.6470931039745],[-73.2913547040137,40.646794225868],[-73.2912587917891,40.6464685108406],[-73.2900041813071,40.6455806410746]]],[[[-73.4805620005069,40.6464177514011],[-73.4851876639584,40.6460956967436],[-73.4854282651308,40.6465042282269],[-73.4848884081878,40.6480510747229],[-73.4845888730412,40.6489074355605],[-73.4844378401908,40.649081113966],[-73.4841684668781,40.6493883629849],[-73.4831473572845,40.6495956518974],[-73.4828472544026,40.649366500554],[-73.482816059506,40.6483616654576],[-73.483206525719,40.6480605145291],[-73.4832662627871,40.6475117937558],[-73.4829353414028,40.6470119878974],[-73.481433923288,40.6469201783188],[-73.4805620005069,40.6464177514011]]],[[[-73.3472751673184,40.6476084921686],[-73.3493588536373,40.6464717449883],[-73.3501164298659,40.6460546851914],[-73.3512312184722,40.6458093766932],[-73.35125804037,40.6458007517591],[-73.3513315980187,40.6458153147694],[-73.3524364835974,40.6460022473491],[-73.3528803834001,40.6460761445216],[-73.3532207299084,40.6463332306325],[-73.3539964601905,40.6469208224176],[-73.3541401097876,40.6470309693586],[-73.3546283243816,40.648069371588],[-73.3545765993875,40.6480686341246],[-73.353902288901,40.6480455069406],[-73.3528505135185,40.6469900531215],[-73.3527543066466,40.6470247130903],[-73.3518594426898,40.6473137140416],[-73.3512264439265,40.6480748766635],[-73.3511898672231,40.6481193950348],[-73.3510795073938,40.6482484379606],[-73.350087972136,40.6483198462722],[-73.3497103922558,40.6491837417473],[-73.3496977924856,40.6492150902272],[-73.3496078199217,40.6494164889504],[-73.3492508348177,40.6494744413381],[-73.3484562066769,40.6495936930976],[-73.3482566531231,40.6496223662681],[-73.3482162334269,40.6496127794662],[-73.3474547270689,40.6494082025366],[-73.3469415411067,40.649265730992],[-73.3472582771944,40.6476938285344],[-73.3472599777052,40.6476848446521],[-73.3472751673184,40.6476084921686]]],[[[-73.3321033282454,40.6462777374295],[-73.3334139612618,40.6462741481627],[-73.3333485279765,40.6465569621663],[-73.3344187745178,40.6469462517067],[-73.3352529411075,40.6476744389962],[-73.3364334154257,40.6494300438254],[-73.3359746979124,40.6498333048695],[-73.3342602856505,40.6499301866645],[-73.3326621576072,40.6504926453136],[-73.3317794253984,40.6505564594508],[-73.3308195395847,40.6500381224476],[-73.3298401378714,40.6481097105519],[-73.3314876768486,40.6465120610622],[-73.3321033282454,40.6462777374295]]],[[[-73.3398195295492,40.6492580968145],[-73.3416813275014,40.6487308559515],[-73.3430035541749,40.649186744032],[-73.3435141547857,40.6498516728093],[-73.3435150081852,40.650743498021],[-73.3427340317419,40.6513853820384],[-73.3418031633085,40.6513630043355],[-73.3390093569608,40.650241848232],[-73.3390990770981,40.6497837202669],[-73.3398195295492,40.6492580968145]]],[[[-73.2320229099771,40.651391218069],[-73.2312188647973,40.6508789519433],[-73.230354697172,40.6509918239816],[-73.2302575425774,40.6510038471065],[-73.2281879867579,40.6512738798829],[-73.227019041418,40.6514225859581],[-73.2266741593158,40.6512146068662],[-73.2258840290397,40.6507925980124],[-73.2256071098786,40.6505586356364],[-73.2248929420412,40.6499486165992],[-73.2248222006109,40.6498844720078],[-73.2246905848454,40.6497743509048],[-73.2241781669427,40.6493340800491],[-73.2249172306899,40.6486698344982],[-73.2259432441866,40.6483342860499],[-73.2264684002,40.6484054107362],[-73.2267711288575,40.6484460930084],[-73.2276437298666,40.6485720927777],[-73.2285100938727,40.6488781527628],[-73.2307086208176,40.6496550354017],[-73.2310096929817,40.6497587377974],[-73.2322067771495,40.649970747372],[-73.2339624445408,40.6502768670528],[-73.2340342639494,40.6503004855437],[-73.2344327880505,40.6504371985069],[-73.2349551224556,40.6506163396302],[-73.2353865455573,40.6507670638677],[-73.2354412376868,40.6512723559559],[-73.2335433804607,40.6525720363235],[-73.2328889523864,40.6523278108811],[-73.232869858695,40.652323014267],[-73.2319466259415,40.6519845876674],[-73.2320229099771,40.651391218069]]],[[[-73.232128382073,40.6527440545339],[-73.2322012740701,40.6527271540358],[-73.2329976054166,40.6530005799613],[-73.2329604061807,40.6531216205501],[-73.232843779704,40.6535071854607],[-73.2328200659771,40.6535653755532],[-73.232312430705,40.6538368570879],[-73.2312970281084,40.6543843148084],[-73.2309768559648,40.654555068238],[-73.2300101833791,40.6545447577015],[-73.2301112465435,40.6543571361912],[-73.230492015443,40.6536558334004],[-73.2305121799262,40.6536201096191],[-73.2307707716588,40.6533177958941],[-73.2309592382054,40.6530954807412],[-73.231024808933,40.6530199161561],[-73.2318032081098,40.6528246524992],[-73.232128382073,40.6527440545339]]],[[[-73.2803645836737,40.654801423411],[-73.2777818014678,40.6538170549731],[-73.2775197808657,40.6533987693654],[-73.2775119996587,40.6533851410109],[-73.277782602765,40.6527225748574],[-73.2798551841104,40.6521274146195],[-73.2801861593937,40.6516459051378],[-73.2808672180247,40.6498228886437],[-73.2808776330921,40.6497915152317],[-73.2807715303789,40.6497493977387],[-73.2799834168206,40.6494088575164],[-73.2795593572093,40.6492268778516],[-73.2795369208867,40.6490643965625],[-73.2795331812002,40.6490373159683],[-73.2795898271654,40.6489615907091],[-73.2798001982319,40.6486854730784],[-73.2804466582497,40.647834825095],[-73.2806937605298,40.6475097074394],[-73.2807664980167,40.6474117009295],[-73.2808262000505,40.6469576778099],[-73.2808316734855,40.64691722228],[-73.2808929565542,40.646891110712],[-73.2814120300748,40.6466826437926],[-73.2815420980431,40.6466260276214],[-73.2816915597401,40.6466777976983],[-73.285884116647,40.6480643395246],[-73.2886870202336,40.6489932371372],[-73.2888204982067,40.6491213303184],[-73.2890774550055,40.6493638567785],[-73.2891980942566,40.6494737427391],[-73.2891967899028,40.6498430593026],[-73.2879954836531,40.6510323424696],[-73.2850816956211,40.6523808489518],[-73.2841809369195,40.652308908621],[-73.2840083346208,40.6516307293341],[-73.2840008992652,40.6516035945769],[-73.2849022804993,40.6511891035523],[-73.2855389740334,40.6501986555333],[-73.2855628027446,40.6501629769282],[-73.2850525767312,40.6502274620281],[-73.2836703542749,40.6510311647615],[-73.2827996118801,40.6511443275611],[-73.2824687048688,40.6515087387013],[-73.282472329571,40.65154032122],[-73.2825888464532,40.6525599787233],[-73.2832790292725,40.6528585079638],[-73.2833353087251,40.6535754947344],[-73.2827681753368,40.6543012237165],[-73.2816269520065,40.654207669274],[-73.2809954174972,40.6547342507818],[-73.2803645836737,40.654801423411]]],[[[-73.2944943500677,40.6536283259951],[-73.2936546327879,40.6510440793388],[-73.2942251115023,40.6504714845592],[-73.2966583394848,40.6503362635818],[-73.2972292844249,40.6504708023279],[-73.298159767481,40.6512051804554],[-73.2995417482905,40.6509282794711],[-73.3005626818143,40.6517990935294],[-73.2988500931325,40.6520531186353],[-73.2987001625149,40.6522806168994],[-73.3000517937426,40.6525302409041],[-73.3000221493382,40.6527369925551],[-73.2972875868835,40.654660466786],[-73.2956654414828,40.6550463962677],[-73.2944943500677,40.6536283259951]]],[[[-73.2584489013201,40.6555267683235],[-73.2585337993009,40.6551902430072],[-73.258234707922,40.6540416944083],[-73.2584721928388,40.6539777173149],[-73.259493384179,40.6545921633936],[-73.2595689720203,40.6548410277318],[-73.259649382018,40.6551034768948],[-73.259704557441,40.6552844714391],[-73.2598762677127,40.6558455662625],[-73.2595186663644,40.6555248887516],[-73.259231110252,40.6552683239613],[-73.2588382033164,40.6553389662512],[-73.2587061294101,40.6556702753234],[-73.2586697943535,40.6557598089345],[-73.2586041257096,40.6559254687648],[-73.2585031200373,40.655914936273],[-73.2584241662087,40.6559092410259],[-73.2583556759565,40.6558991992075],[-73.2583680484529,40.6558498412798],[-73.2583985534433,40.6557286918305],[-73.2584051677388,40.6557017672777],[-73.2584489013201,40.6555267683235]]],[[[-73.2712718291814,40.656714945677],[-73.2712055856157,40.6566463922379],[-73.2711644760133,40.6566637926359],[-73.270506794241,40.6569106722615],[-73.2701414044992,40.6562025595919],[-73.2696622494148,40.6559206281122],[-73.2702060607418,40.6553882904818],[-73.2707015346216,40.6559542209937],[-73.2724836160755,40.6552782718276],[-73.2725060173637,40.6552695990493],[-73.2733940262765,40.6555216032488],[-73.2731523579056,40.6559774040452],[-73.272902621765,40.6563159773577],[-73.2724362730633,40.6565972590723],[-73.2722239634325,40.6570895295453],[-73.2721597868903,40.6570840647395],[-73.27156753481,40.6570301560649],[-73.2714171532381,40.6568702609288],[-73.2712718291814,40.656714945677]]],[[[-73.289595174765,40.6560375798981],[-73.2905331228211,40.6552632610918],[-73.2913635299614,40.6554286958972],[-73.2917630988031,40.6558489866853],[-73.2916381368589,40.6565452704369],[-73.2911814387583,40.6571465607206],[-73.2901492807851,40.6569195826643],[-73.2895827546579,40.6563211532746],[-73.289595174765,40.6560375798981]]],[[[-73.2464770086128,40.6560436479109],[-73.2436824629517,40.6549201954125],[-73.2432313532705,40.6541656561137],[-73.2431696201458,40.6520387948414],[-73.2436792649493,40.6506457818289],[-73.2443398698395,40.6502324455381],[-73.2462018151154,40.6498418631714],[-73.2470416509729,40.6486520285269],[-73.2487822212775,40.647529900608],[-73.2501360354113,40.6470910135555],[-73.2509761003391,40.647869439641],[-73.251786829883,40.648215023861],[-73.2530482253404,40.6485133755667],[-73.2540997635675,40.6482140008201],[-73.2549704933859,40.6484703889466],[-73.2540956142493,40.6527675610627],[-73.254335019764,40.653338695405],[-73.2546357200256,40.6536855529985],[-73.2554165230942,40.6539630981571],[-73.2574059123594,40.6539886474351],[-73.2577972795826,40.6551701196253],[-73.2575691865522,40.6557251821255],[-73.2554836092796,40.6553603755724],[-73.2526914917646,40.655385700102],[-73.2528740204472,40.6566631166012],[-73.2532878069249,40.65692611128],[-73.2532977899027,40.6572235312974],[-73.2521104165231,40.657651458989],[-73.2509514496694,40.6590571876567],[-73.2500828515532,40.6593367855127],[-73.2478308595775,40.6578703345533],[-73.2475593671391,40.6570014322406],[-73.2464770086128,40.6560436479109]]],[[[-73.2606281638937,40.6545912542624],[-73.259531689241,40.6536874217179],[-73.2594417759659,40.6531365683861],[-73.2591416155918,40.6530239439613],[-73.2583903967405,40.6532288062677],[-73.2569486195741,40.652954812886],[-73.2554465995882,40.6533194703905],[-73.2550265275984,40.6530428753244],[-73.2547565155835,40.6524262381717],[-73.2551792986889,40.6500454696016],[-73.2566838878566,40.6464559320837],[-73.2556932688804,40.6463193554617],[-73.2539197151334,40.6474365759063],[-73.2534093660509,40.6475054230272],[-73.2525085462637,40.6472981126269],[-73.251440560782,40.6464441794125],[-73.2520447469809,40.6453002862456],[-73.2543724570535,40.6448986179885],[-73.2564154757412,40.6439611206867],[-73.2615760401303,40.6435660322309],[-73.2669696957761,40.6437011905853],[-73.2699908351795,40.6440617980611],[-73.2731956926349,40.6448664768168],[-73.2738488576779,40.6455068190112],[-73.274679124681,40.645843526759],[-73.278662591519,40.6462408094129],[-73.2786308279889,40.6464700444196],[-73.2782733398283,40.646919624871],[-73.278490649482,40.6486164036204],[-73.2790721756778,40.649746593131],[-73.2792004344392,40.6508249823683],[-73.2790236531778,40.6510880872978],[-73.2782401928926,40.6514862744843],[-73.2781901495448,40.6515350726889],[-73.2780204586859,40.6516946882319],[-73.2772103085554,40.6518942904414],[-73.2766983155558,40.6528595295704],[-73.2763831039091,40.6540484045881],[-73.2757725639263,40.65332764046],[-73.274845921168,40.6528543772381],[-73.2747723563327,40.6529838955713],[-73.2747081231967,40.6530955379891],[-73.2746113449962,40.6532652458558],[-73.2754152509372,40.6537682059607],[-73.2754901857032,40.6541882052992],[-73.2736444262721,40.6540390017492],[-73.2728344019057,40.6546619586048],[-73.2707894671115,40.654982657301],[-73.2701388362158,40.6546711344142],[-73.2699901416801,40.6540743668303],[-73.2695797840718,40.6540772237327],[-73.2691390661018,40.6549399024707],[-73.2686211370348,40.655157338058],[-73.2689741093645,40.6560589440166],[-73.2696784909552,40.6568081756242],[-73.2695747238618,40.6574191746123],[-73.2695642611837,40.6574235217655],[-73.2679091314423,40.6582184361231],[-73.2663763594292,40.6586548389618],[-73.2657789662906,40.6587134252663],[-73.2650902836578,40.6590138561944],[-73.2635742813944,40.6594009285133],[-73.2628944705234,40.6591024380868],[-73.2619586227284,40.6578452242683],[-73.2614053117173,40.6577152805906],[-73.2607705172218,40.6569940722228],[-73.2604641539807,40.6551562960415],[-73.2606281638937,40.6545912542624]]],[[[-73.1777682268398,40.6590423304187],[-73.1774947500229,40.6586326490558],[-73.1767614723245,40.6578959204976],[-73.1764511924287,40.6575892483382],[-73.1762007017033,40.656661962163],[-73.1755670031524,40.6562330733555],[-73.1763410446018,40.6550922654967],[-73.1765745230324,40.6548797590214],[-73.1776241756958,40.6539324647718],[-73.1777794980017,40.653223276401],[-73.1775382212961,40.6530708341394],[-73.176555511986,40.6524562793178],[-73.1773984937436,40.652528142477],[-73.1787656406728,40.6527884307588],[-73.179473910172,40.652921210316],[-73.1806781988285,40.6534896881453],[-73.1823261546239,40.6542723249318],[-73.1831636611498,40.6539477034328],[-73.1842156907555,40.6541354071944],[-73.1863044309962,40.6551861539976],[-73.1875535752297,40.6554940291444],[-73.187997958326,40.6556000940765],[-73.1898353328823,40.6563270440742],[-73.1904186422339,40.656791096925],[-73.1910313920724,40.6568772679513],[-73.1915132313228,40.6577045541607],[-73.1911665939126,40.6578927986653],[-73.1899055074757,40.6585711623565],[-73.1894966734101,40.6587899544904],[-73.1890878366496,40.6590087445439],[-73.1881228528966,40.6586062565375],[-73.1870765500509,40.6589411475104],[-73.1864711196854,40.6586388762956],[-73.1863181716268,40.6587175460886],[-73.18589405093,40.6589270773367],[-73.1842232536718,40.6585720169162],[-73.1834221630509,40.6583972694568],[-73.1828856505357,40.6589067922122],[-73.1825625319179,40.6592079814166],[-73.1817624590882,40.6592134003906],[-73.1805738325587,40.6586902213587],[-73.1804383881735,40.6588862651618],[-73.180277454092,40.6591224430712],[-73.1787263735151,40.6594222765626],[-73.1783189228551,40.6592627108534],[-73.1777682268398,40.6590423304187]]],[[[-73.1936705327827,40.6550719260488],[-73.1974551458544,40.6533564762724],[-73.1989269626839,40.6539064200111],[-73.2006693260259,40.6551181537304],[-73.2014802487076,40.6552298784462],[-73.2017806121009,40.6556894662672],[-73.2030123317128,40.6557131475844],[-73.2043643366396,40.6563512390084],[-73.2046947873068,40.6572887176316],[-73.2045520782458,40.6578134730024],[-73.2031032636775,40.6596240840164],[-73.2024723193612,40.6596908312641],[-73.2003092219712,40.6587788432057],[-73.1978460216992,40.6581143570734],[-73.192859259758,40.65598706626],[-73.1936705327827,40.6550719260488]]],[[[-73.1917903642829,40.6584745840948],[-73.1918430756271,40.6584664017075],[-73.1919666550641,40.6593105943036],[-73.191986038013,40.6594415154922],[-73.1919722497718,40.6594593158584],[-73.1917832819652,40.6597220957589],[-73.1917687544104,40.6597398844655],[-73.1907010258469,40.6597186523652],[-73.1903536976322,40.6597132088998],[-73.1903411346929,40.6597130119592],[-73.1897430974622,40.6594919461027],[-73.1897725900513,40.6592762139817],[-73.1899106422458,40.659228834106],[-73.1903246766586,40.6590911946505],[-73.1909127183352,40.658888720476],[-73.1911147368661,40.6586081305709],[-73.1915101869323,40.6585287485153],[-73.1917903642829,40.6584745840948]]],[[[-73.2373775248407,40.6581976621685],[-73.2407110210447,40.657212568996],[-73.2414622434893,40.6577149568896],[-73.2423044688654,40.6590880101797],[-73.2422746753407,40.6598847766568],[-73.241644584424,40.6605958329327],[-73.2388503118507,40.6603010154136],[-73.2369272452028,40.6592942828871],[-73.236866779601,40.6586988228199],[-73.2373775248407,40.6581976621685]]],[[[-72.9726966123604,40.7024601792456],[-72.9727405444694,40.7022312497135],[-72.9728249043594,40.7017913442056],[-72.9726151100113,40.7013913128019],[-72.97297517993,40.7011048793773],[-72.9733141250665,40.7012954918912],[-72.9738492505829,40.7012373250579],[-72.9744244373678,40.7011753552933],[-72.9742378420119,40.7016449957839],[-72.9750974731449,40.7020834475947],[-72.9743113915758,40.7023669177817],[-72.9734292064409,40.7023063955547],[-72.9731649202877,40.702288244324],[-72.9726966123604,40.7024601792456]]],[[[-73.1338099562339,40.7181534319124],[-73.134164115238,40.7179249498644],[-73.1342681051136,40.7180167107141],[-73.134704274015,40.7184020957785],[-73.1347729717781,40.7185653497446],[-73.1348383475712,40.7187150380108],[-73.1350653743014,40.7192501769035],[-73.1346929040385,40.7193657662087],[-73.1344108087847,40.7194512864922],[-73.1343032804452,40.7199630033567],[-73.1356429973172,40.7204800901123],[-73.1369541396784,40.7209876923073],[-73.1368262501247,40.7210892194986],[-73.136195925646,40.7215879935844],[-73.1353719639179,40.7222367717529],[-73.1346846539109,40.7220725300735],[-73.1338972563098,40.7218886504247],[-73.1333701913765,40.7217630240707],[-73.1322891102545,40.7212320808887],[-73.1316850830575,40.7211862728209],[-73.131533092603,40.7211703006174],[-73.1312757297657,40.7209003983933],[-73.1309854778092,40.7205894279149],[-73.1311185066246,40.720357374395],[-73.1311868702144,40.7202413776289],[-73.131280161155,40.7200807442348],[-73.1323520839526,40.7195621197556],[-73.1323885447733,40.7193960624705],[-73.1324735837897,40.7190010872703],[-73.132672369284,40.7188781918053],[-73.1338099562339,40.7181534319124]]],[[[-72.917808620541,40.7220121176659],[-72.918329452963,40.721778300333],[-72.9190817408094,40.7218819423066],[-72.9195000700676,40.7222542993652],[-72.9190654992691,40.7225932672985],[-72.9186005231932,40.7234090997997],[-72.9174711216921,40.7240553085879],[-72.9170237238497,40.7235473015616],[-72.9176475984247,40.7228334282811],[-72.917808620541,40.7220121176659]]],[[[-72.9101409076013,40.7271926647891],[-72.9104689058677,40.7265725600324],[-72.9111685811846,40.7267743874942],[-72.9114284018126,40.7270087877128],[-72.912295974951,40.7271190644598],[-72.912758079113,40.7275823161596],[-72.910789709527,40.7285240532844],[-72.9101409076013,40.7271926647891]]],[[[-72.9119607039241,40.7303152761207],[-72.911572730536,40.7299659608291],[-72.9116150519657,40.7293226678752],[-72.9113415553858,40.7290519893027],[-72.911935507977,40.7286123447113],[-72.9133111224261,40.727930108174],[-72.9140055704463,40.7280867844488],[-72.9156694991859,40.7277925615537],[-72.9171433003938,40.7285397895446],[-72.9164761387003,40.7291447845229],[-72.9165482294002,40.7294433432154],[-72.9164600696365,40.7298020642973],[-72.9162862878498,40.7301772551931],[-72.9158229260465,40.7303220228713],[-72.9152590131185,40.7301316833705],[-72.9147957294686,40.7304160688684],[-72.9138122278444,40.7302721883913],[-72.9127411494631,40.7304915321179],[-72.9119607039241,40.7303152761207]]],[[[-72.8904582250415,40.7319465491629],[-72.8910063644515,40.7315331995379],[-72.8919993909126,40.7318666118444],[-72.8922228558227,40.731938251223],[-72.8923151038192,40.7324623876498],[-72.8923216884702,40.7328633541982],[-72.8917852379388,40.7332814271285],[-72.8917423083497,40.7332581239284],[-72.8910429681043,40.7328580133664],[-72.8909187589483,40.7327836814153],[-72.8905007845247,40.7321454986006],[-72.8904582250415,40.7319465491629]]],[[[-72.8962566795206,40.7397720498738],[-72.8976463184679,40.739432554824],[-72.8985423367598,40.7397956713722],[-72.8978027555831,40.740552368923],[-72.8960236771971,40.7403307891398],[-72.8962566795206,40.7397720498738]]],[[[-72.8352289318047,40.745219212803],[-72.8385419688781,40.7443580141576],[-72.8386905430396,40.7450273682757],[-72.8351992047553,40.7462725589325],[-72.8347568743093,40.7467641895668],[-72.8341050414679,40.7469366173726],[-72.8345261141809,40.7458455765712],[-72.8352289318047,40.745219212803]]],[[[-72.8393404301302,40.7445711344314],[-72.8398953832616,40.7442347244946],[-72.8418028452747,40.744328959086],[-72.8419283264451,40.7446375686114],[-72.8401919647476,40.7464381612291],[-72.8393878387193,40.746787922917],[-72.838944053901,40.7484910819066],[-72.8381999892326,40.7488824950115],[-72.8358021665504,40.7487024406144],[-72.8357326800665,40.7484939599425],[-72.8361711154174,40.7482139337443],[-72.836205590063,40.7478812941278],[-72.8369158861615,40.74709292154],[-72.8362701690505,40.7467115008595],[-72.8377686721321,40.746041485841],[-72.839371431889,40.7453283643151],[-72.8393404301302,40.7445711344314]]],[[[-72.8052049937127,40.7556235682383],[-72.8059309672096,40.7554076750573],[-72.8064632360834,40.7555439016212],[-72.806334934203,40.7565863621233],[-72.8062396355277,40.7567151630964],[-72.8061086719391,40.7568928284698],[-72.8058597667402,40.7572348943032],[-72.8053002501671,40.757453952475],[-72.8048887274439,40.7570678001083],[-72.8047040544828,40.7568976440968],[-72.804639856381,40.7561262601788],[-72.8052049937127,40.7556235682383]]],[[[-72.7550447301308,40.7684899814746],[-72.7560207308223,40.7658697175831],[-72.7563221227867,40.7638218281575],[-72.7571316746393,40.7637700088991],[-72.7589972742618,40.7629189979618],[-72.7671568947696,40.7603478398993],[-72.7712497629345,40.7596838255771],[-72.7752718977539,40.7585408922952],[-72.781041837011,40.7577557156148],[-72.7873656801671,40.7559584936138],[-72.7919782632497,40.7545200285805],[-72.7947620210427,40.7531950718214],[-72.7961309295682,40.752969005419],[-72.7971148516039,40.7524743495298],[-72.8013529198581,40.7513346179919],[-72.8032216051936,40.7510369163218],[-72.8114743621317,40.7482391780791],[-72.818355063746,40.7462931740858],[-72.8222139818648,40.7447041313559],[-72.8327275504381,40.742100633921],[-72.8387087087713,40.7398032237158],[-72.8440536927966,40.7383988971001],[-72.854145054983,40.734965838743],[-72.8633250727204,40.7323887761311],[-72.8662631269432,40.7313036443088],[-72.8819254776023,40.7265657720553],[-72.8884040196335,40.7242613734665],[-72.8939368602494,40.7222951646573],[-72.8944696806888,40.7218950297062],[-72.8988017899768,40.7209921176959],[-72.9031524548653,40.7197065462751],[-72.9145941789599,40.7155405191885],[-72.9294661487129,40.7107953650403],[-72.9342128457759,40.7088401263099],[-72.9380964801414,40.7076574654456],[-72.9533294630442,40.7019067717726],[-72.9661341766648,40.6974264457351],[-72.9739226177888,40.6940818375951],[-72.9748018241102,40.6939441290883],[-72.9754718568194,40.6935325084749],[-72.9840624907972,40.690633652406],[-73.012597073352,40.6795306884521],[-73.0214160968043,40.6769707906711],[-73.0273724625339,40.6747711938563],[-73.05427783354,40.6666116768158],[-73.0713566863666,40.6621735629593],[-73.0764853677497,40.6610430456039],[-73.0863994105838,40.6584378318319],[-73.0915287423471,40.6575768938391],[-73.1000944193297,40.6553490572219],[-73.1098307475529,40.65363519501],[-73.1313840719788,40.6485451714711],[-73.1366693503771,40.6475045799126],[-73.1397907255965,40.6466315839352],[-73.1551848707529,40.6436131451285],[-73.1610057184353,40.6421250802027],[-73.1747533612704,40.6390822861656],[-73.1756329763252,40.6390511469694],[-73.1778428876197,40.6384239461628],[-73.1818402963109,40.6378608956729],[-73.1825202437259,40.637533796182],[-73.1847866294073,40.6371911063083],[-73.1927545152976,40.6353252950041],[-73.2076146210006,40.6312285079552],[-73.2186429179435,40.6288003139595],[-73.2489651982194,40.6233096957732],[-73.2647471308125,40.6217283556192],[-73.2716524552487,40.6215707139504],[-73.2804197546052,40.6209809918914],[-73.2897565005119,40.6207999063655],[-73.3040601151679,40.620934364865],[-73.3063277180665,40.6207604679908],[-73.3065605640831,40.6202594233692],[-73.3073134546991,40.6224549620414],[-73.3069190017629,40.6236202468543],[-73.3069638636282,40.6247694539796],[-73.3044870898123,40.6258456170495],[-73.3020826842756,40.6281163802096],[-73.3006272221742,40.6287165296955],[-73.2978457928145,40.6291214546361],[-73.2969718434342,40.6278609263447],[-73.295115102997,40.6268336065589],[-73.2927653347925,40.6260466915239],[-73.2894470991685,40.6255696778805],[-73.2855500772103,40.6253046751164],[-73.2826819649172,40.6256629063389],[-73.2810393334365,40.6257195307448],[-73.2773959867313,40.6257057562869],[-73.2753175178275,40.6255846380235],[-73.2722579727508,40.6254262827421],[-73.2709892811768,40.6253667495027],[-73.2660094389582,40.6251163918675],[-73.2651684397824,40.6253199523589],[-73.2639885520641,40.6251130421413],[-73.2616249345329,40.625190073528],[-73.2606044483702,40.6258458113628],[-73.2593697355717,40.6258722407009],[-73.2589756850808,40.6258798100548],[-73.2568769331162,40.6256589641532],[-73.2488041257974,40.6280320483009],[-73.2478766296396,40.628657559806],[-73.2470400726329,40.6287439532842],[-73.2443588530381,40.6298247373699],[-73.2386654592264,40.6309316176947],[-73.235126709658,40.6319585656117],[-73.2306421966905,40.6324709626441],[-73.226230430193,40.6319078271797],[-73.2234475051384,40.6321803301141],[-73.2193969646913,40.6332664796636],[-73.2185853646799,40.6337449060746],[-73.2176204554871,40.633707495283],[-73.2164356036785,40.6341035753597],[-73.2158989815688,40.6345231721773],[-73.2083430307285,40.6360186366487],[-73.2064847972914,40.6369671715945],[-73.2052526195387,40.6379389219197],[-73.2050246001701,40.6375119946276],[-73.2043335594597,40.6376228599091],[-73.2019817287234,40.6385636446359],[-73.2014445532514,40.6393570024907],[-73.1988643698716,40.6408977107576],[-73.19912922915,40.6414378263303],[-73.1997347888729,40.6414292533178],[-73.1994537069188,40.6420149033529],[-73.1986645180771,40.6419530489334],[-73.1982498413689,40.641212416469],[-73.1948449767104,40.6429878855146],[-73.1939915268848,40.6429790434588],[-73.1937315131191,40.64278130133],[-73.191966013667,40.6431275055925],[-73.190349990285,40.6427553762734],[-73.1890629775707,40.6427081734769],[-73.188522936473,40.6415781905939],[-73.1892199087592,40.641332391219],[-73.1896130771046,40.6421267679311],[-73.1905512739941,40.6418982548566],[-73.191162737445,40.6422186161403],[-73.1913535360181,40.6424062710992],[-73.1929621500957,40.6423954256492],[-73.1929310522172,40.6415481745429],[-73.1933504962846,40.6413700717585],[-73.1946668892986,40.6410393447004],[-73.1936557644794,40.6395056608192],[-73.192797331699,40.6388886831699],[-73.1927267861014,40.6385722943637],[-73.1920557984831,40.6383771234038],[-73.1915523421737,40.6390943939177],[-73.1900326056136,40.6388003368841],[-73.1887793084686,40.6392310903004],[-73.1862740903975,40.6408042200028],[-73.1839749781919,40.6417499678964],[-73.1798378401515,40.641599246469],[-73.1777754106671,40.6417739029589],[-73.1762562939447,40.6424615596236],[-73.1754422370409,40.6433675263793],[-73.1748499795707,40.6435653519738],[-73.1745538705986,40.642605811116],[-73.1730099136619,40.6427660567109],[-73.1733353023224,40.6436540007269],[-73.1727446213956,40.6436311419344],[-73.1722468478286,40.642641378566],[-73.1710504859063,40.64265846634],[-73.1695763442368,40.6430765036799],[-73.1692717156425,40.6433509254652],[-73.1680180843242,40.643407610532],[-73.1639469913218,40.6457255878722],[-73.1618724264962,40.6475482480529],[-73.161884463921,40.6478637232598],[-73.1608544214803,40.6485769762208],[-73.1569227371285,40.6497573985378],[-73.156699592917,40.6497808604545],[-73.1561383372055,40.6495466961975],[-73.1549052234083,40.6498467833256],[-73.1509151889872,40.6493325465359],[-73.1506698860326,40.6493286173342],[-73.1475285349762,40.6491071047219],[-73.1415832769151,40.649691671867],[-73.1398768255233,40.6503443017958],[-73.1392680812727,40.6507038237948],[-73.1386760573644,40.6508339065333],[-73.1374591410901,40.6515844719747],[-73.1366333396123,40.6520395677008],[-73.1350564378609,40.652734752377],[-73.1348971719509,40.6527997406839],[-73.1298668453117,40.6543037889226],[-73.1296092004034,40.654105942001],[-73.1258000678159,40.6543369314583],[-73.1245595330361,40.6547356621813],[-73.1236484715564,40.6546938347233],[-73.1162676841117,40.6566950428751],[-73.1138684852105,40.6565207511848],[-73.1109082452951,40.6568687064628],[-73.1089906817267,40.6566031041879],[-73.1061872732869,40.656867930252],[-73.10508894002,40.6576696407781],[-73.104887137983,40.6570943169575],[-73.1038803807727,40.6571678672396],[-73.1039473016681,40.6578851061866],[-73.103208349312,40.6575081422942],[-73.102458994465,40.6574462838342],[-73.0994812068589,40.658122450231],[-73.0976970646697,40.658183146156],[-73.0937581830159,40.6597396241496],[-73.0899498777768,40.6603928188479],[-73.0829105040389,40.6625236427426],[-73.0738339120352,40.6664216648686],[-73.0707106377772,40.6666577670378],[-73.0697191950459,40.6654251128042],[-73.0685332751404,40.6655268855056],[-73.0686738677706,40.6659841422126],[-73.0693692796832,40.6659957742428],[-73.0697871013932,40.666480185071],[-73.0698006120551,40.6667551558814],[-73.0558960047939,40.6689134588786],[-73.0475971526035,40.6707821848605],[-73.0452682756193,40.6717336528281],[-73.0435016721378,40.6720910687179],[-73.0422719261245,40.6727503227292],[-73.042561266291,40.6734758683141],[-73.0416476374262,40.6737171003172],[-73.0414512926546,40.6734525373671],[-73.0408761022765,40.6734743053781],[-73.0396395533216,40.6729758897271],[-73.0369061299306,40.6740239088499],[-73.0352404297134,40.6741396979242],[-73.0325416094272,40.6751386575951],[-73.0295853194042,40.6766916523441],[-73.0281590175152,40.6768114250025],[-73.0190699766582,40.6804076261551],[-73.0174332228543,40.680663276757],[-73.0162517630842,40.6812014729399],[-73.0140382468505,40.6815282337127],[-73.0073852385164,40.6839898524819],[-73.0065241835536,40.6845424857618],[-73.0059829027809,40.6864248040111],[-73.0054947582555,40.686524465695],[-73.0052500104597,40.6864977163766],[-73.0055261067639,40.6854981019979],[-73.0051603882387,40.6849152743788],[-73.0028778858828,40.6858126320819],[-73.0022507001177,40.686184615927],[-73.0026976425143,40.6871426874137],[-73.0044802270247,40.6867411375712],[-73.0046135675556,40.6874280460368],[-73.0042602915954,40.6878408071718],[-73.0035591017189,40.6874953880469],[-73.0022734553422,40.6877749102695],[-73.0012712166578,40.6872576199452],[-72.9994425189288,40.688482547404],[-72.9982424703205,40.6885698429486],[-72.9966395874945,40.6894878734265],[-72.9955439222239,40.6898426854656],[-72.9929147716779,40.6919048637095],[-72.992223872003,40.6932125114338],[-72.9921684809842,40.6940718042489],[-72.9914834392233,40.6947399866613],[-72.9907328797354,40.6949296045991],[-72.9901451677406,40.6947707443334],[-72.9900317536393,40.6932779595548],[-72.9914916516216,40.6928169388702],[-72.9910276430313,40.692160295844],[-72.9903513427764,40.69251334658],[-72.9899332587583,40.6924700361758],[-72.990346386771,40.6917430830471],[-72.9894280669038,40.691510904473],[-72.9889708343056,40.6922776220411],[-72.9891809888782,40.695078240585],[-72.9882371245176,40.6949807262454],[-72.9883197129298,40.6941534372698],[-72.9883208582818,40.6941399452906],[-72.9877439215788,40.6933777301842],[-72.9877227186432,40.6935169832568],[-72.9876637523296,40.6939032961156],[-72.987545214238,40.694671406244],[-72.986474868882,40.6956301021879],[-72.9852263346046,40.6955542731747],[-72.9836938940698,40.6950816283464],[-72.9833754089622,40.6952427123182],[-72.9828032351269,40.6955254733154],[-72.9817557384201,40.6960431373945],[-72.9810479872488,40.6967243712702],[-72.9808908539393,40.6969062853666],[-72.9806827062031,40.69708730676],[-72.9786064229004,40.6976229743156],[-72.9779555063405,40.6973773705391],[-72.9770316088337,40.6975728708509],[-72.9767370701167,40.6972839602959],[-72.9767906357587,40.696956110773],[-72.9775949118057,40.6965333193205],[-72.9776279859778,40.6965158830121],[-72.9771686037112,40.6961745422286],[-72.9761254027481,40.6962553465207],[-72.9755005642809,40.6965416516418],[-72.9752186298256,40.6966673221805],[-72.9745119710057,40.6969927226189],[-72.9720407604563,40.6981338795758],[-72.9718825608466,40.6990814333842],[-72.9718717774699,40.6991442993187],[-72.9741748377711,40.7001846110109],[-72.9752715441891,40.7002443860206],[-72.9757233024539,40.7003739144755],[-72.9756181941758,40.700498182337],[-72.9737038106435,40.7009104886204],[-72.9730768934747,40.7006292467183],[-72.9720938652627,40.6996751625741],[-72.9714400058218,40.6995510763793],[-72.9706610667575,40.6999652620772],[-72.9714011833302,40.7008790588777],[-72.9714315939975,40.7019245083636],[-72.97124499954,40.7023446000892],[-72.9690830457052,40.7012121296299],[-72.9687408828034,40.7010304561188],[-72.9687625977788,40.7010218301527],[-72.9696561906194,40.700681736961],[-72.9698895001667,40.7001363585027],[-72.9699699164527,40.6999486071437],[-72.970036805907,40.6997921452305],[-72.9696181712217,40.6997172240224],[-72.9692130112656,40.7004892804812],[-72.9683760994244,40.7006682251917],[-72.9672407555678,40.7002248694211],[-72.9671402592403,40.7002456193861],[-72.9666952545098,40.7003323655841],[-72.9662207814447,40.7007068433739],[-72.9624972008116,40.7030507960574],[-72.960872827589,40.7029725728762],[-72.9593779024972,40.7036217490165],[-72.9578707737922,40.704185114818],[-72.9577729526476,40.704408581474],[-72.9575518574933,40.7049136156018],[-72.9561069020874,40.7053294282066],[-72.9553226126572,40.7056713506296],[-72.9550384207356,40.7062067891265],[-72.9547040848549,40.706277433294],[-72.9540138211872,40.706616509137],[-72.9531804172672,40.7068944918168],[-72.9530764597309,40.7070277663041],[-72.9530304399373,40.7070809978488],[-72.9528949254834,40.7072542482886],[-72.9527525937148,40.7072877553839],[-72.9524216714321,40.7073674614128],[-72.9520647312439,40.7074512088885],[-72.9503638305422,40.7077182817537],[-72.9495864644279,40.7080738002402],[-72.9492765240954,40.7082169244922],[-72.9485892608007,40.708528996671],[-72.9481531413067,40.7090707259696],[-72.9482470493899,40.7090723949803],[-72.9494837510584,40.7090583367475],[-72.9503425764026,40.709569020832],[-72.9488361852144,40.7098845642483],[-72.9489641394469,40.7101750891333],[-72.9487302010789,40.710661861128],[-72.9486085862574,40.7109119202875],[-72.9479122832161,40.7107464106861],[-72.9478291558146,40.710393626813],[-72.9472750264384,40.7103207194881],[-72.946731270807,40.7105362462721],[-72.946174803116,40.7107560479412],[-72.9456865903187,40.7109455338105],[-72.9472074174334,40.7115580985502],[-72.9476968950587,40.7120982650081],[-72.9454798080217,40.712473189374],[-72.9447265113672,40.7122841272976],[-72.9433932982978,40.7123549658886],[-72.9425916659928,40.712101973298],[-72.941878682135,40.7122378936266],[-72.9405754674062,40.7120795342594],[-72.9402599557222,40.711754125812],[-72.9394756231729,40.7116365383954],[-72.9390836971976,40.7119177937388],[-72.9396139538452,40.7127649892096],[-72.9388806734518,40.7137742902492],[-72.9379100374991,40.7140587184079],[-72.936981594517,40.7136953279457],[-72.9365893325718,40.7132919716747],[-72.9359253581009,40.7134692661977],[-72.9361662763786,40.713622202942],[-72.935955081557,40.7139201898589],[-72.9346300701062,40.7151125504263],[-72.9327330635847,40.7152047039398],[-72.9306330899114,40.7143248448804],[-72.9294970363856,40.7151467072206],[-72.9290919042773,40.7162338925212],[-72.9289981255515,40.7164664138785],[-72.9285019294263,40.7177456314287],[-72.927925485,40.7174605470072],[-72.9279372592184,40.7168662410267],[-72.9267862182005,40.7168095428158],[-72.9259430900176,40.7160107154296],[-72.9243011448497,40.7165847281092],[-72.9236938495816,40.7168170181066],[-72.9228261030683,40.7170491220969],[-72.9227829857313,40.7175077459219],[-72.9227248207149,40.7177363989367],[-72.9231201225591,40.7178020626255],[-72.9229088477874,40.7187666030194],[-72.9213563433808,40.719625928389],[-72.9213249948723,40.7203955331705],[-72.921746117891,40.7210111441403],[-72.9212971893193,40.7215029948337],[-72.9188616167339,40.7207294765004],[-72.9199600371375,40.7199115468476],[-72.9199288988348,40.7191768476191],[-72.9207189374827,40.7188037441531],[-72.921443963257,40.7186411491566],[-72.9216187655298,40.7182074164427],[-72.921058688408,40.7181342766499],[-72.9193154653784,40.7188685339386],[-72.9191049703444,40.7192836037501],[-72.9193494288827,40.7197023699892],[-72.9183080020923,40.7203771962363],[-72.9180372301027,40.7212775995739],[-72.9175092093619,40.7214572393758],[-72.9168163387832,40.7230075942699],[-72.9147732078061,40.7228896339017],[-72.9130941361658,40.7236249538903],[-72.9128287253219,40.7242326867781],[-72.9112124575981,40.7245907871532],[-72.9096138902786,40.7243591730798],[-72.9090738824186,40.7247547441752],[-72.9084773929851,40.7244016410305],[-72.910047138757,40.7221015526552],[-72.9106088005069,40.7208236027752],[-72.9103565796263,40.7207965179621],[-72.9104846218936,40.7203934838568],[-72.9087209316485,40.7219649362422],[-72.9064097451872,40.7225625960022],[-72.9041988223897,40.7222747599278],[-72.9035510741878,40.7226368215905],[-72.9025798884662,40.7229299487099],[-72.9011710219785,40.7231160238087],[-72.8994990973347,40.7231486664668],[-72.8987430545303,40.7235177383718],[-72.8981864709567,40.7237328003385],[-72.8976385507356,40.7241191653354],[-72.8967280138721,40.7243412845198],[-72.8956827252243,40.7242366592217],[-72.8956236097904,40.724492303683],[-72.8962572535441,40.7250263068695],[-72.8945634836691,40.7273464597647],[-72.8946354171638,40.7280458764214],[-72.8940539260023,40.7288144430517],[-72.8945031375433,40.7296828817899],[-72.8941070856059,40.7305313971229],[-72.893172691285,40.7312484811753],[-72.8916785324561,40.7311761596486],[-72.8908345284157,40.7308814990905],[-72.8910552229215,40.7305252201658],[-72.8905393743527,40.7301509781348],[-72.8901990260478,40.7301717814024],[-72.888855067331,40.7303588913904],[-72.8882528996465,40.7308658239689],[-72.8881944956784,40.7308872743852],[-72.8863793625102,40.7315566585465],[-72.8829747134474,40.7317284661595],[-72.8803348954074,40.7326123237536],[-72.8796029903347,40.7326574309947],[-72.8788971732362,40.7323472056919],[-72.8795155402401,40.7315658829951],[-72.8825702793301,40.7305725554928],[-72.8820055866644,40.7301298215588],[-72.8807692838479,40.7299089579139],[-72.8801346771003,40.7302936471677],[-72.8801426101225,40.7305099799477],[-72.8788717572019,40.7308874786035],[-72.8773511483777,40.7309496031523],[-72.8766049924314,40.7312106158878],[-72.8717545219868,40.7318374008778],[-72.8709280889934,40.7321779666513],[-72.8700947407689,40.7328742060371],[-72.8676072734079,40.7368367338485],[-72.8667179843957,40.7372887039857],[-72.8656067153887,40.737344725871],[-72.8632547795494,40.7368283017463],[-72.8596146793557,40.7374544532121],[-72.8576795007229,40.7367069380307],[-72.8563772426999,40.7373403253929],[-72.853838406976,40.7378741451618],[-72.8511149000874,40.7390620363309],[-72.8498093272811,40.7393124577689],[-72.8486978687295,40.7400619086628],[-72.8480051346948,40.739967924625],[-72.8464508013182,40.7404028318664],[-72.8450485590075,40.7403676521128],[-72.8439593921497,40.7406310550207],[-72.8430420550394,40.7410282711046],[-72.8430667614047,40.7412944605826],[-72.8425327893251,40.7412349381821],[-72.8427856129753,40.7414738646263],[-72.8422095476381,40.7415486701074],[-72.841899218335,40.7419437115928],[-72.8411271109584,40.7422895813618],[-72.8398754280859,40.7436848793935],[-72.8394841147616,40.7437225939757],[-72.8376872075122,40.7430268744417],[-72.8340095703161,40.743286697748],[-72.8330621396438,40.7437643383455],[-72.8331295761722,40.7440583551754],[-72.8311530094593,40.7446562731836],[-72.8296505151628,40.7454252121416],[-72.8272211966484,40.7471720395425],[-72.8250806748197,40.7471632487336],[-72.8234909181766,40.7479709965141],[-72.821717778553,40.7493382426373],[-72.820303656921,40.7491629165107],[-72.8193700764737,40.7487354300485],[-72.818400637077,40.7487711552564],[-72.8178171265027,40.7490708896407],[-72.8170377894847,40.7489525630672],[-72.8162953579536,40.7492447793902],[-72.8153865512452,40.7491014724977],[-72.8136535456536,40.7498253025992],[-72.8133521806387,40.7501889088755],[-72.8121497856309,40.7497877976799],[-72.8116088417264,40.7499396798489],[-72.8112961121249,40.7508750595083],[-72.8115056477582,40.7510772038683],[-72.8109842529908,40.7516708354953],[-72.809573206292,40.7511081008837],[-72.809142329366,40.7511539686546],[-72.8083740883384,40.7512159483817],[-72.8070170878803,40.7515099458782],[-72.8061671630439,40.751737001946],[-72.8058351187654,40.7521540539045],[-72.8059515664774,40.7524850511801],[-72.8085300691093,40.7520341125199],[-72.8078112524904,40.7527996317034],[-72.8054528972901,40.7532412287257],[-72.8051458441429,40.7538434125209],[-72.8040642887104,40.7544939149273],[-72.8040447386749,40.7549529380375],[-72.8040386660636,40.7550924427254],[-72.8035281229449,40.7557132690263],[-72.8035124365634,40.7557174743538],[-72.8027211959696,40.7559140942128],[-72.8015556184137,40.7554505165055],[-72.800349137868,40.75582386701],[-72.8003349319101,40.7558281002299],[-72.8012638258465,40.7570708546925],[-72.8009352930825,40.7572897888812],[-72.801371935396,40.7578565879062],[-72.8008101065594,40.7588862770061],[-72.7997396543039,40.7597351193251],[-72.7980927216896,40.7597892796937],[-72.7965272015928,40.7597098555397],[-72.7963534260944,40.7599722652999],[-72.7962326404179,40.7601546176041],[-72.79616484636,40.7602569117502],[-72.7955354085185,40.7605736716404],[-72.7950696904342,40.7605963011772],[-72.7945227987842,40.7610362365401],[-72.7939981494206,40.7612063629066],[-72.79231701974,40.7611516947399],[-72.7922903819969,40.7611511851068],[-72.7918680633206,40.7609809660621],[-72.7908599245014,40.7605698347295],[-72.790846754301,40.7605650785654],[-72.7903777852137,40.759970598246],[-72.7901913075371,40.7600345851863],[-72.7900527819304,40.7600814749272],[-72.7897817979384,40.7601708662291],[-72.7898329156714,40.7605051311369],[-72.7904587728281,40.7610125409357],[-72.7921208213938,40.7616658853603],[-72.7948699913533,40.7617770014402],[-72.7950062172729,40.7621804482683],[-72.793799929865,40.7630356463106],[-72.793766631114,40.7630350094573],[-72.7935649162136,40.7630446643153],[-72.7928807449202,40.7630676114374],[-72.7921803392729,40.7628875702797],[-72.7918749021948,40.7628096644008],[-72.7917231237428,40.7631895883965],[-72.7906523786365,40.7632816896192],[-72.7891508356559,40.7638834722091],[-72.7865261129059,40.7635899478716],[-72.7855838583263,40.7640042399807],[-72.7828309855112,40.764536881626],[-72.782069860039,40.7641124047117],[-72.7822900200471,40.7638599157391],[-72.7815118050249,40.7632594563069],[-72.7801518455163,40.763787277227],[-72.7789718661698,40.7635123564774],[-72.7784521314891,40.7631330357984],[-72.7786029280826,40.7624513533351],[-72.7780996756907,40.7616219633389],[-72.7796014648097,40.7608807102101],[-72.7798468207649,40.7608944383795],[-72.78015431229,40.7609544004261],[-72.781121202268,40.7607117723888],[-72.7812014739252,40.7605466730919],[-72.7813540186402,40.7602343358517],[-72.7827347193504,40.7594141476238],[-72.782948270453,40.7593822195249],[-72.7833336387267,40.7593265686682],[-72.7837272948573,40.7592665718117],[-72.784885928436,40.7594914913608],[-72.7860865968818,40.7597217093589],[-72.7861460159463,40.7594706333013],[-72.7861992096858,40.7592509646181],[-72.7862198053604,40.7591657867147],[-72.7849550394241,40.7581236442841],[-72.7823816122735,40.7586552184886],[-72.782048040859,40.7587118613128],[-72.7794485769382,40.7602021904098],[-72.7770053471133,40.7608667595402],[-72.7768962260608,40.7613195461791],[-72.7763574578759,40.7628224600224],[-72.7755368917796,40.7630498530355],[-72.7741697179009,40.7628163132799],[-72.7732716469586,40.7629476142175],[-72.7721663831892,40.7636514009481],[-72.7702024099582,40.7633297255775],[-72.7695168139368,40.7640370911879],[-72.7684257228876,40.7644483650466],[-72.7677352526074,40.7668490706621],[-72.7672075516668,40.7672397034992],[-72.7665572100287,40.7672901715882],[-72.7660213496903,40.7669735369163],[-72.7660587519455,40.7658347887511],[-72.7657412379167,40.7654548227249],[-72.7641133271285,40.7656214603988],[-72.7627806674214,40.7668972407943],[-72.7616081297187,40.7663790792161],[-72.7597953914591,40.7681454365493],[-72.7575145653595,40.7699116761783],[-72.7564192926527,40.769957942574],[-72.7558886667975,40.7692225067584],[-72.7550447301308,40.7684899814746]]],[[[-72.756697010416,40.7767145865327],[-72.7522933808584,40.7758632359237],[-72.7494960108939,40.7763536715651],[-72.7478757070396,40.7761103793467],[-72.7469699087891,40.7753675816928],[-72.7479862492268,40.7731445152743],[-72.7485493743324,40.773047411896],[-72.7513949173522,40.773737938959],[-72.7541909964376,40.7734140722081],[-72.7577277661191,40.7751988153907],[-72.7579365220147,40.7761261574092],[-72.756697010416,40.7767145865327]]],[[[-72.7243253289223,40.7774408560278],[-72.7248038992034,40.7773061715784],[-72.7271508799355,40.7781946382027],[-72.7274518290304,40.778425755995],[-72.72748295835,40.7792505678201],[-72.7267579568302,40.7795965924785],[-72.7261896538354,40.7798646321774],[-72.7260766960784,40.7798759171335],[-72.7253467071122,40.7799335907799],[-72.723841993977,40.7793634605127],[-72.7231197260306,40.7785880661091],[-72.7231487739537,40.7779761198006],[-72.7231490811775,40.7779671187874],[-72.7232987503853,40.7778349570816],[-72.7234502063422,40.7776938233134],[-72.7238750331148,40.7775715933941],[-72.7243253289223,40.7774408560278]]],[[[-72.7380056861459,40.7760794599387],[-72.7385379954439,40.7754728694277],[-72.7395438291861,40.7761456320255],[-72.7411620884749,40.7782625910992],[-72.741795394462,40.7797026979474],[-72.7417321476761,40.7801923767248],[-72.7412717772627,40.7806427556812],[-72.7403985537211,40.7806436746564],[-72.738901499622,40.7801054176256],[-72.7381129503807,40.7796846195221],[-72.737474833017,40.7789560018955],[-72.7373563515192,40.778170013381],[-72.7379821826248,40.777470679598],[-72.7388540047946,40.7769202855683],[-72.7393283494006,40.7766908767909],[-72.7380056861459,40.7760794599387]]],[[[-72.6358198638884,40.7987973347701],[-72.6363319494144,40.7987087434706],[-72.6381670036223,40.7991876933866],[-72.6379560315829,40.8001021452802],[-72.6376545740415,40.8003301696007],[-72.636962658372,40.8003295113444],[-72.6358808343433,40.7992084274538],[-72.6358198638884,40.7987973347701]]],[[[-72.5607416773063,40.8245046017248],[-72.5590649987779,40.8228973327332],[-72.558749202328,40.8229807246993],[-72.5586173979163,40.8229374020034],[-72.5577264452242,40.8226393114502],[-72.5573534889728,40.8220189066069],[-72.5572334129654,40.8216965988882],[-72.5574109892358,40.8215427278136],[-72.5598263946431,40.8207876763498],[-72.5603136157004,40.8209601160251],[-72.5611493255957,40.8215317463318],[-72.5626708318368,40.8233293683832],[-72.5621837509167,40.8242243275643],[-72.562011202517,40.8243017481113],[-72.5617998972026,40.8244053723526],[-72.5613452778036,40.824616445404],[-72.5607416773063,40.8245046017248]]],[[[-72.5563220514484,40.8245371694555],[-72.5570394047118,40.824336183952],[-72.557340619708,40.8244281330924],[-72.5571899345056,40.8256859884742],[-72.5558049398483,40.8258232897326],[-72.555609539206,40.8252516787393],[-72.5558738576986,40.82507713004],[-72.5563220514484,40.8245371694555]]],[[[-72.5425995003559,40.8289205353854],[-72.5421356058516,40.8288385925843],[-72.5418979610348,40.8288515433777],[-72.5416834397517,40.8288604837943],[-72.5418342237687,40.828129589031],[-72.5425276270483,40.8277165085101],[-72.5433400265604,40.8276932792011],[-72.544935380606,40.8285649362149],[-72.5447847546925,40.8289310364385],[-72.5431590043525,40.8290225271924],[-72.5425995003559,40.8289205353854]]],[[[-72.5160795084033,40.8372428721494],[-72.5152947868835,40.8368791856932],[-72.5151873879014,40.8366787085906],[-72.5158304792369,40.8363097442905],[-72.516830528727,40.8344802497411],[-72.5172865953119,40.8342558729781],[-72.5180296323075,40.8338890470379],[-72.5197710416386,40.8330257589277],[-72.5205676406831,40.8326330457902],[-72.5220328674717,40.8336103112254],[-72.523545917871,40.8340211168715],[-72.5248141351347,40.8343590928946],[-72.5241042396848,40.8360462632249],[-72.5229615727619,40.8364360737625],[-72.5228753228165,40.8364432290838],[-72.5206962560756,40.8365585480443],[-72.5193017626325,40.8371410724121],[-72.5184338589141,40.8370593524978],[-72.5169916128271,40.8373120498021],[-72.5160795084033,40.8372428721494]]],[[[-72.5062677145098,40.8388641810396],[-72.5067362488125,40.83884278314],[-72.5067792071477,40.8388437121834],[-72.5075315758426,40.8392788163968],[-72.5076514254745,40.8405109191583],[-72.5068979913778,40.8408549336555],[-72.5056635777183,40.840603061984],[-72.5052426244812,40.8401661056948],[-72.5052983909957,40.8397664817373],[-72.5053025358224,40.8397350455662],[-72.5054598784394,40.8395718111596],[-72.5058153373057,40.8392056894953],[-72.5062677145098,40.8388641810396]]],[[[-72.4974779096604,40.8411688585189],[-72.4970212879167,40.8408932291895],[-72.4950134939679,40.8416918222916],[-72.4930075271923,40.8407700058393],[-72.4901255700641,40.8406892975707],[-72.4886857359537,40.8409326745858],[-72.4883534437402,40.841389317799],[-72.4858573651288,40.8413754553977],[-72.4831817007157,40.8417584481897],[-72.4826789873131,40.8419771630399],[-72.4824506840769,40.8424270514541],[-72.482120767009,40.8420955821717],[-72.4814127705976,40.8423323266973],[-72.4811880812838,40.8419040717356],[-72.4803787297555,40.8421746257762],[-72.4805677406812,40.8425075251888],[-72.4795998796244,40.8428331582064],[-72.4795190025027,40.843245730005],[-72.4787419283409,40.8434269036252],[-72.4787544975684,40.8430173428114],[-72.477972142211,40.8422436134343],[-72.4777071095578,40.8396752164891],[-72.477912433889,40.8396166561977],[-72.4783515510612,40.8402928056794],[-72.4802009333979,40.8402161377794],[-72.4875068750097,40.837173428006],[-72.490701435077,40.8365088842858],[-72.4938112552669,40.8363603359172],[-72.4991637770558,40.8349362726953],[-72.5099571358058,40.831377644712],[-72.5151909973322,40.830076338639],[-72.5219495550173,40.8278302486712],[-72.5278528419917,40.8262905337379],[-72.5388810068823,40.8228558059777],[-72.5487080083553,40.8203537934108],[-72.571057918351,40.8139853512499],[-72.5923304491821,40.8082386071426],[-72.5987913375214,40.8061619153488],[-72.6067678813743,40.8043054664358],[-72.6141528774262,40.8020534112414],[-72.614258184232,40.8021952058813],[-72.6263228827895,40.7988725646882],[-72.6284844692133,40.7979396966598],[-72.6312677491025,40.7973753524383],[-72.6328039347136,40.7967358180884],[-72.6337038705585,40.7963849693133],[-72.6361935190291,40.7956793687511],[-72.6378212959683,40.7953163744963],[-72.6383028872837,40.7952721877298],[-72.6405562348172,40.7947102799807],[-72.6435901320942,40.7940696930344],[-72.6458742190783,40.7935578505552],[-72.6464763508301,40.7934350207491],[-72.650431672552,40.7922680864718],[-72.651062228796,40.7922629102347],[-72.6544455994647,40.7910526655695],[-72.655355996191,40.7910936885453],[-72.6594130287626,40.7899960679869],[-72.6609391478527,40.7896306826202],[-72.662617589774,40.7890611892195],[-72.6635523497092,40.7888504281335],[-72.6660783979151,40.788230487459],[-72.6674822841427,40.787736436793],[-72.6711402123016,40.7868780402531],[-72.6720600862542,40.7867524815472],[-72.6726917204766,40.7866301098205],[-72.6761165304293,40.7853164732175],[-72.6791965310433,40.7847974744688],[-72.6811063565239,40.7838495404915],[-72.6814260381874,40.78396405577],[-72.6818862172597,40.7836805549517],[-72.6846131754755,40.7831723333149],[-72.6954274272424,40.7798713589366],[-72.7051508403868,40.7775925586942],[-72.7105288599567,40.7764743540904],[-72.7136115770762,40.7752518910464],[-72.7242644959096,40.7722152261034],[-72.7303349413921,40.7708124942412],[-72.7348863222544,40.7692805488705],[-72.7418445044602,40.7675163083517],[-72.7499520972418,40.7650759696657],[-72.7523557760414,40.7640373898785],[-72.7531681027899,40.7634857258551],[-72.7535379526671,40.7629029241909],[-72.753676732497,40.7644324263617],[-72.7530329027463,40.7656089034464],[-72.7521138750067,40.7659423034719],[-72.7510709992338,40.766764199813],[-72.7492679340332,40.76711637462],[-72.7486375296045,40.7675409486883],[-72.7478616466087,40.7674492432107],[-72.7475955521468,40.7671062624732],[-72.7472113085638,40.7671483037663],[-72.7464292739051,40.767808609088],[-72.7446370908958,40.7686473378059],[-72.7428797750959,40.769810996346],[-72.7409190968855,40.7722542374901],[-72.7388204212777,40.7740236693343],[-72.7385625167562,40.7739420498971],[-72.7384185159179,40.773209608616],[-72.7387175551945,40.7725804297213],[-72.7377563955697,40.7717058636236],[-72.738004700694,40.7731834818962],[-72.737518711227,40.7742368564258],[-72.7367105499665,40.7746578788366],[-72.7359277903673,40.7745704621465],[-72.734457817779,40.7736543578946],[-72.7338034085693,40.7727542545773],[-72.7330228507408,40.7729731214604],[-72.7321870384375,40.7728350944911],[-72.7326388541945,40.7735510734563],[-72.7323004498438,40.7735939657974],[-72.7316271580468,40.7742292828225],[-72.7329189668664,40.7745474183148],[-72.7331158883565,40.7752899135735],[-72.7329301464001,40.7762005402363],[-72.732041139459,40.7779080339629],[-72.73067149162,40.778547670752],[-72.7302738155286,40.7790037421853],[-72.7294824141363,40.7789296230273],[-72.7285709052956,40.7775335157121],[-72.7276439391438,40.7765919820292],[-72.7279538713916,40.7758639624493],[-72.7276961249736,40.775408504834],[-72.7271569157159,40.775519488413],[-72.7270773384565,40.7763331126711],[-72.7263226646846,40.7766380158863],[-72.7256560141325,40.7760123585428],[-72.7243406308249,40.7757342108332],[-72.7226491408741,40.77499824439],[-72.7217982278909,40.7749769435751],[-72.7204405941205,40.7759139484816],[-72.7182240442761,40.7772347953488],[-72.7175218662528,40.7774325868927],[-72.7164084134413,40.7778969690724],[-72.714167386302,40.7783074816717],[-72.7131669873673,40.7785623918232],[-72.7124081606839,40.7782951373114],[-72.7116256732742,40.7778112246112],[-72.7105286398694,40.7779470971069],[-72.7088706912148,40.7785222039237],[-72.7075358791442,40.7791757673435],[-72.7066870807952,40.7795867631657],[-72.7048472259904,40.779527662776],[-72.7040243862581,40.7797004525143],[-72.7031800435529,40.7798953280698],[-72.7018825142616,40.7806036138566],[-72.7001110760472,40.780514273166],[-72.6975333980687,40.7814672155178],[-72.6966224686413,40.782066056147],[-72.6943287184797,40.7822589460548],[-72.6936177396615,40.7827716823444],[-72.692677969822,40.7828114432303],[-72.6914930928606,40.7832561391113],[-72.6901450378261,40.7832156493255],[-72.6886105590139,40.7842793450171],[-72.6872978275331,40.7850772363694],[-72.6868554683411,40.7857439393605],[-72.6864560046022,40.7858575331497],[-72.6867019723102,40.787114521439],[-72.6851989363296,40.7882283422949],[-72.6843951777123,40.7881671765234],[-72.6833388721259,40.7885738338843],[-72.6826972153999,40.7874935487844],[-72.6813696608185,40.7862868839363],[-72.680902722822,40.7859126917952],[-72.6801843535641,40.786037869157],[-72.6788268994568,40.7863933915745],[-72.678020806118,40.7866338887737],[-72.6771304840433,40.7868681814109],[-72.6765793316839,40.7870192211622],[-72.6757940379372,40.7873637090201],[-72.6760768563348,40.7880044409227],[-72.6764980898462,40.7883507090361],[-72.6734076858429,40.7899683495803],[-72.6728990300846,40.7895167205349],[-72.6722329517593,40.788949317567],[-72.6702554696631,40.7888373450662],[-72.669818406938,40.7892834023466],[-72.6699741918763,40.7899756289362],[-72.6711210718978,40.7903500790728],[-72.6719312732324,40.7908843662298],[-72.6704508442542,40.7910031105588],[-72.6695313610688,40.7908404213547],[-72.6690286656324,40.7906636261504],[-72.6680333978746,40.7897247413209],[-72.6675134368185,40.7895971326543],[-72.6656689610799,40.7902128805496],[-72.6647230844931,40.7906981651456],[-72.6646295249562,40.7916555786158],[-72.665020566091,40.7930101258951],[-72.6649463490788,40.7933734313182],[-72.6644566765192,40.7936067249335],[-72.6625877504352,40.7912629381478],[-72.6614290126519,40.7916493032801],[-72.6597709121819,40.7932190327751],[-72.6586634744895,40.7931560312764],[-72.6577752526759,40.793115484278],[-72.6563153618802,40.7929642366828],[-72.6547037465312,40.7931882043021],[-72.6538520196744,40.7934996643928],[-72.6511324653731,40.7941784487751],[-72.6492234295117,40.7946845269177],[-72.64804271175,40.7952279410878],[-72.6461688072027,40.7955139986232],[-72.6452551720497,40.7961078698828],[-72.643509860437,40.7965271181303],[-72.6428423079764,40.7965089783193],[-72.641984188708,40.7968517460559],[-72.6406387747204,40.7970854599605],[-72.6396789841281,40.7972865144239],[-72.6380107264073,40.7975991644077],[-72.6372329973736,40.7974706460123],[-72.6368987755789,40.7974322743977],[-72.6360946558388,40.7977761036745],[-72.632588477386,40.7988166456515],[-72.6299216398189,40.799833791488],[-72.6296450925604,40.7998191030127],[-72.6268837351573,40.8010954547875],[-72.6241145031226,40.8026102772433],[-72.6235811059647,40.8023605920054],[-72.6233389956226,40.80194125752],[-72.6240477061947,40.8012847928249],[-72.6238259570668,40.8011045791477],[-72.6221897934561,40.8021112410675],[-72.6183474717121,40.8024913714358],[-72.6153136211475,40.8042302100362],[-72.613500327729,40.8058320863799],[-72.6121052413979,40.8059968820765],[-72.6120443221469,40.8061667641227],[-72.6109911705454,40.8060729007456],[-72.6108563450994,40.8057008001612],[-72.6103585391931,40.8057400319068],[-72.6101124340429,40.8061357689534],[-72.6079312499729,40.8058878961525],[-72.6059965905663,40.8064287524161],[-72.6049389617615,40.8066860344094],[-72.6011156295043,40.8078451325569],[-72.5999067028461,40.8079821246568],[-72.5992563082074,40.808409960267],[-72.5964439363777,40.8087747561283],[-72.594358113865,40.8103976714954],[-72.5928698309164,40.8111277628854],[-72.5902294217849,40.8119778951729],[-72.5898238027897,40.8118433168044],[-72.5876999824388,40.8124834976654],[-72.5871258403946,40.8130119418688],[-72.5866513251087,40.8130200311627],[-72.586622941939,40.812740204793],[-72.5863954974922,40.8128210177923],[-72.585404217356,40.8132461461778],[-72.5851584364976,40.8136688582646],[-72.5841257799594,40.8141921919263],[-72.5841115488487,40.8141963976318],[-72.5840849775809,40.8145201110552],[-72.583310028833,40.8142922034755],[-72.5825315937236,40.8149559602546],[-72.5825115451231,40.8150591265902],[-72.5823431747877,40.8159203180505],[-72.5820469184918,40.8162834164983],[-72.5819096451366,40.8164516820367],[-72.5816569750983,40.8167571441222],[-72.580598860305,40.8174690688421],[-72.5796300739834,40.8190655928573],[-72.5776263547927,40.8185146129069],[-72.5766631074833,40.8191834560297],[-72.5764867277688,40.8193058554478],[-72.5761370926804,40.819546215742],[-72.5753816571372,40.819656445735],[-72.5744968255655,40.8192505239991],[-72.5727068515135,40.8191588307727],[-72.5713416476403,40.8187788060766],[-72.5712003147983,40.8189965137769],[-72.5710918872452,40.8191653733977],[-72.5710288713263,40.819267632422],[-72.5729382566324,40.8197221637872],[-72.5727884311177,40.8206602939505],[-72.5723399490088,40.820745435155],[-72.5717473385007,40.8211247884947],[-72.5707236749967,40.8215986487752],[-72.5692871161438,40.8217305235141],[-72.5677964912872,40.8212937691407],[-72.567095903282,40.8213015148046],[-72.5669612970249,40.8215779074274],[-72.5668586132997,40.8217919214415],[-72.5666992395919,40.8221173333144],[-72.5660953974478,40.8223568037709],[-72.5653427906994,40.8226516808759],[-72.5644161991451,40.8219700721841],[-72.5646813890035,40.821750483727],[-72.5642004363902,40.8208395816502],[-72.5637401261639,40.8203569688109],[-72.5648967789574,40.8197328512073],[-72.5667362034692,40.8189384716033],[-72.567255764775,40.8191385862932],[-72.5684323978971,40.8206631389491],[-72.5690607442855,40.820766456164],[-72.5673675726885,40.8185329390956],[-72.5662405912489,40.8184686352733],[-72.5649288874406,40.8190985011316],[-72.5640106996258,40.8192817849715],[-72.563432127989,40.8196208578903],[-72.5633742019245,40.8197052057215],[-72.5627175029091,40.8206596372555],[-72.5615804621349,40.8205050003485],[-72.5611590085362,40.8200141912634],[-72.5589586499264,40.8206251981463],[-72.5564231900713,40.8214407414977],[-72.5564947534601,40.8220547650826],[-72.5557330090486,40.8226376248956],[-72.5549329604734,40.8225080768406],[-72.5551016973214,40.8230385906706],[-72.5563007658677,40.8234017772743],[-72.5564637840406,40.823765528823],[-72.5557613392177,40.8243676593743],[-72.55537243787,40.8241612542098],[-72.5548131431808,40.8243565729958],[-72.5547055250098,40.8247641316304],[-72.5541239997123,40.8249995085081],[-72.5530419430199,40.824899997774],[-72.5529589270096,40.8244974043289],[-72.5526949525718,40.8245818791933],[-72.552206262769,40.8250534103767],[-72.5523136662427,40.8256591897283],[-72.5519339214226,40.8260699787016],[-72.5513959796878,40.8259865022519],[-72.5512344769727,40.8255822418382],[-72.5513773414423,40.8254861919521],[-72.5514419428876,40.8254425255751],[-72.5515582253096,40.8253639269755],[-72.5512794376527,40.8247635164418],[-72.5509836583623,40.8246851780681],[-72.5504049124523,40.8246233491272],[-72.5498578707836,40.8250891271806],[-72.5494529920002,40.8249949561281],[-72.5486158573768,40.8250267106206],[-72.5486331023353,40.8257251560619],[-72.5470205311789,40.8255017203664],[-72.5461078033244,40.8239060024898],[-72.5450909885762,40.8241681035986],[-72.5440108426005,40.8243387725194],[-72.5428780086367,40.8241299955372],[-72.5420439175055,40.8246211480387],[-72.542454446692,40.8254045365242],[-72.5422855903681,40.8256621555093],[-72.5417543868962,40.8258580082411],[-72.541134537672,40.8257051820906],[-72.5387320895644,40.8266402652916],[-72.5381773969444,40.8270697941382],[-72.537576688124,40.8268002606037],[-72.5375757781307,40.8262642973904],[-72.5372784366699,40.826028259523],[-72.5364741282837,40.8262137537993],[-72.5351854536861,40.8263303453719],[-72.5339689524334,40.8265790730579],[-72.5326772774628,40.827375634883],[-72.5318650261728,40.8278942028707],[-72.5317200219162,40.828386509544],[-72.5294119490157,40.8290892222411],[-72.5291664412452,40.8288948078323],[-72.527390729745,40.8290324042438],[-72.5264074455131,40.8301822913831],[-72.5267895052916,40.831109242718],[-72.526460836882,40.8323136966858],[-72.5245098775446,40.833393272041],[-72.523671292142,40.8334608435553],[-72.5225316282871,40.8331346227888],[-72.5210151148824,40.8317239047415],[-72.52155764611,40.8311275599891],[-72.5226615480334,40.8305027369262],[-72.5228545232244,40.8299979610007],[-72.5221806511157,40.8300420362838],[-72.5198618577206,40.8313658397045],[-72.5197555519882,40.8316923254189],[-72.5191453012629,40.8319178996412],[-72.5183459803231,40.8327609163163],[-72.5159100852424,40.8337623552037],[-72.5139247033617,40.8340123253191],[-72.5123371574724,40.8333160530978],[-72.5111660355146,40.8334754430224],[-72.5097630628735,40.834422470556],[-72.5087857991507,40.8365091065301],[-72.5065542366612,40.83660050527],[-72.5059998153325,40.8365209636342],[-72.5060264063632,40.8362468122439],[-72.5053398203983,40.8361734169342],[-72.5047529510232,40.836899332326],[-72.5027843667399,40.8363433080243],[-72.5013663976235,40.8377042479263],[-72.5002995359342,40.8375325110357],[-72.4991223341785,40.8379888881505],[-72.4979453866461,40.8380444234861],[-72.4995923533964,40.8432684169995],[-72.4990494906904,40.8434322892579],[-72.4974779096604,40.8411688585189]]],[[[-72.4908659785893,40.8481545276774],[-72.490044383922,40.8476097135791],[-72.4902627392148,40.8474027929688],[-72.4905464918602,40.8476431608274],[-72.4907606187829,40.8473911104129],[-72.4907034490999,40.8458225794709],[-72.4913336262549,40.8451337147955],[-72.492031248023,40.845112861207],[-72.4925946471147,40.8453683133062],[-72.4927236056637,40.8460962135351],[-72.4923236577329,40.8469116923403],[-72.4924672938552,40.847329156545],[-72.492646857199,40.847855489744],[-72.4916992630334,40.8482131905085],[-72.4908659785893,40.8481545276774]]],[[[-73.3590326761847,40.8960711324797],[-73.3609592300925,40.8923872484505],[-73.3615024925488,40.8928003271853],[-73.3614423952563,40.8934615594858],[-73.3593952398267,40.8968014320069],[-73.3588825757856,40.8971004085229],[-73.3590326761847,40.8960711324797]]],[[[-72.6168454104037,40.9125000500659],[-72.6162720310292,40.9119972980355],[-72.6162715827698,40.9117000446329],[-72.6167841947086,40.9115394973828],[-72.6172070586623,40.9121832563061],[-72.6175382414564,40.9121360538041],[-72.618231083289,40.9115648832765],[-72.6187743367621,40.9119769298492],[-72.6185037067064,40.9123631633053],[-72.618865537323,40.9128885594072],[-72.6186245381969,40.9132348720075],[-72.6177494353797,40.9126403261158],[-72.6168454104037,40.9125000500659]]],[[[-73.1646853103656,40.9137386363019],[-73.1661025231005,40.9105814052844],[-73.1667961024499,40.9097862280145],[-73.1687267580653,40.9075649315287],[-73.1696914768152,40.9078594878655],[-73.1686958632061,40.9091408163903],[-73.1689373087949,40.9099643655536],[-73.1672483637713,40.912459741004],[-73.1674588399407,40.9128729421758],[-73.1681050843628,40.9127976338725],[-73.168242938928,40.9127773032702],[-73.1686572634966,40.9125812057775],[-73.1692380090564,40.9122976701812],[-73.1705301125234,40.9121335107566],[-73.1708362305245,40.9120933263834],[-73.1712835618916,40.9118301840875],[-73.1718914958618,40.9114750027496],[-73.171711166255,40.91101724736],[-73.1707456695641,40.9105605539737],[-73.1712589049337,40.9101137957176],[-73.1717713920066,40.9096670229016],[-73.1722840335898,40.9101030210394],[-73.1724819899391,40.9098134021093],[-73.1726759874129,40.909532727735],[-73.1731883208739,40.9092796154931],[-73.1737614523134,40.9093247229153],[-73.174183874296,40.909507064071],[-73.1746052470463,40.9106982672749],[-73.1744864313753,40.9108089851611],[-73.174312844523,40.9109683787277],[-73.1732481828078,40.9119558983987],[-73.1715290795436,40.9130996805247],[-73.1691770826189,40.9138325420637],[-73.1668554424627,40.9139217771919],[-73.1646853103656,40.9137386363019]]],[[[-73.1763239828996,40.9130990261034],[-73.1766858620253,40.9130552043027],[-73.1775899705447,40.9145873174227],[-73.1782233609734,40.9148180156905],[-73.1781059044534,40.9148792153581],[-73.1779109269176,40.9149797259799],[-73.1772278183312,40.9153427582499],[-73.1754487336571,40.9139454344937],[-73.1763239828996,40.9130990261034]]],[[[-72.4446739230619,40.9171626964104],[-72.4426947323701,40.9164117274441],[-72.4416081957794,40.9148563825048],[-72.4416364774395,40.9142580292792],[-72.4417441171701,40.9140262299979],[-72.4432427271513,40.9133434105859],[-72.446133669229,40.9144073126122],[-72.4463827478027,40.9159170411654],[-72.4471723525644,40.9165335162235],[-72.4465052501597,40.9168790270492],[-72.4456725532138,40.9167840123461],[-72.4446739230619,40.9171626964104]]],[[[-72.6337382131518,40.9174146231293],[-72.6337986203631,40.917073581735],[-72.6362408198204,40.9171416754342],[-72.637054520093,40.9174871192727],[-72.6369639627258,40.9177374712675],[-72.6363301833266,40.9179451651989],[-72.6350036815707,40.9178278978698],[-72.6337382131518,40.9174146231293]]],[[[-73.1556974934714,40.9156805861501],[-73.156481630188,40.9156120517399],[-73.1566290994217,40.9160738082442],[-73.1560995614263,40.9164076422678],[-73.155147817044,40.9170049564494],[-73.1532836044203,40.9181731657049],[-73.152685180914,40.9181545745051],[-73.1528314562867,40.9175128565452],[-73.1533678726822,40.9170395267132],[-73.1537004550515,40.9167430881674],[-73.1543098290211,40.9162078667902],[-73.1556974934714,40.9156805861501]]],[[[-72.4428654544949,40.9181809339848],[-72.4425875256274,40.9177289087247],[-72.4427632738263,40.9175977002095],[-72.4446185652809,40.9178865519247],[-72.4467944825284,40.9175970071403],[-72.4488260737474,40.9178176389881],[-72.4498678948981,40.9175119326781],[-72.4503992232359,40.9169337135594],[-72.4508025632052,40.917271400281],[-72.4499754304242,40.9196940646721],[-72.4491787262768,40.9215364278252],[-72.44819020846,40.9228656289627],[-72.4478283553855,40.9229341775728],[-72.4478160322964,40.9222133258974],[-72.4471438211727,40.9219192129409],[-72.4466406613073,40.9208587225382],[-72.4458581909656,40.9194587730457],[-72.4456575738065,40.9190219792815],[-72.4435234893051,40.9185333043435],[-72.4428654544949,40.9181809339848]]],[[[-73.1629345046566,40.9148142257122],[-73.1655886427406,40.9146988311898],[-73.1671866171719,40.9148818723454],[-73.1673069276396,40.9155233415964],[-73.1670652969979,40.9157537060061],[-73.1631146644818,40.9168033255194],[-73.1548199732878,40.9212649239381],[-73.1521648398706,40.923456359248],[-73.1509882336979,40.9247391332558],[-73.1501126817231,40.9254727433585],[-73.1497507199524,40.9255164802307],[-73.1494201866403,40.9241419873829],[-73.1496617795528,40.9230919475037],[-73.1505972985644,40.9220170045718],[-73.1521365977363,40.9208481383122],[-73.153071700828,40.9193858310596],[-73.1538866919796,40.9186106927556],[-73.1578079325179,40.9162773041023],[-73.1594968011846,40.9155926458971],[-73.1629345046566,40.9148142257122]]],[[[-72.4169933293219,40.944391317304],[-72.4149148550282,40.9427099045096],[-72.4146378235777,40.9420281516045],[-72.4153653233122,40.9424858238695],[-72.4161969216185,40.9426350780503],[-72.416872445729,40.9432266826719],[-72.4167970177879,40.9435807746322],[-72.4174501451017,40.9434332868153],[-72.4178609536643,40.9436361474495],[-72.4180468609107,40.9439330461974],[-72.4176808118054,40.9444292442208],[-72.4169933293219,40.944391317304]]],[[[-73.0366675876968,40.9548361757193],[-73.0369027881978,40.9545924677498],[-73.0369374047773,40.9546020648765],[-73.0377044761984,40.9549033675407],[-73.0382161979067,40.9551012370166],[-73.0384341022452,40.9551905175045],[-73.038822468197,40.9553412463631],[-73.0388673040111,40.9554320862263],[-73.039133882665,40.9559590679929],[-73.0392090348233,40.9561044695118],[-73.039197537286,40.9562168704657],[-73.0391389832992,40.9568148885442],[-73.0391326636511,40.9568778355724],[-73.0391031072817,40.9568728289026],[-73.0384451847608,40.9567715618011],[-73.0379547899556,40.9564299331835],[-73.0373810961708,40.9553662660421],[-73.037270680646,40.9552833175505],[-73.0371580390959,40.9552003302843],[-73.0366675876968,40.9548361757193]]],[[[-73.0335995993548,40.9561485700894],[-73.0341727766083,40.9560772730668],[-73.0353189101299,40.9567678820964],[-73.0354691156319,40.9578873990345],[-73.0351371396254,40.9581384629163],[-73.0343224916302,40.958138090476],[-73.0323917758277,40.9576097374138],[-73.0319993827284,40.9572697555562],[-73.0320901529963,40.9570641268373],[-73.0328443722207,40.9569734072631],[-73.0335995993548,40.9561485700894]]],[[[-73.0366592576192,40.9576464444328],[-73.0370745532666,40.9565635801483],[-73.0373107832369,40.9567612669041],[-73.0380126666128,40.9573587135822],[-73.0383864609924,40.9576758389333],[-73.0380968998403,40.9584005389063],[-73.0380776184011,40.9584497530436],[-73.0379708500363,40.9583938899579],[-73.0368208483691,40.9578068308279],[-73.0366342458267,40.957713576408],[-73.0366592576192,40.9576464444328]]],[[[-73.0237619618288,40.9579530823819],[-73.0254223925286,40.9573329714777],[-73.0262362913288,40.958180119227],[-73.0258041944906,40.9587492166655],[-73.0254207315436,40.9592560903696],[-73.0240774806993,40.9584539136361],[-73.0238527653343,40.9583194509965],[-73.0237619618288,40.9579530823819]]],[[[-73.0337758191691,40.9606419235959],[-73.0326973485514,40.960321770661],[-73.032008727004,40.9603280361333],[-73.030905783583,40.9603317264935],[-73.0301426952919,40.9601700654583],[-73.0294549208558,40.9600231987788],[-73.0283058678096,40.9602287497637],[-73.027689778035,40.9580248346191],[-73.0277377678341,40.9573861075936],[-73.0281156711078,40.9572394395985],[-73.0281749778828,40.9572179340994],[-73.031972561729,40.9584718286708],[-73.0332749266515,40.958678706673],[-73.0350494640537,40.9589656794364],[-73.0354435747317,40.9590985024533],[-73.0363890416868,40.9594208687845],[-73.0377529995967,40.9598809617138],[-73.0374573586469,40.9600335650751],[-73.0374053417003,40.9600597029775],[-73.0372470621405,40.9601380786334],[-73.0357238904229,40.9600130577025],[-73.0346394738563,40.9605935929772],[-73.0337758191691,40.9606419235959]]],[[[-73.0219498676612,40.9604666911006],[-73.0236403523972,40.9594147517923],[-73.0239424136064,40.9596451212498],[-73.0239122436876,40.9601085013892],[-73.0238810622658,40.9605808721381],[-73.023828443448,40.9607015748391],[-73.0237559242518,40.9608669744238],[-73.0234882415685,40.961474910783],[-73.0232806777372,40.9615118876761],[-73.0231229802857,40.961545214958],[-73.0230057699041,40.9615657245681],[-73.0219199977797,40.9606958751639],[-73.0219498676612,40.9604666911006]]],[[[-72.4597014019704,40.9768479955151],[-72.4588456398813,40.9760184754376],[-72.457396081508,40.9736130983075],[-72.4568448932159,40.9721462718829],[-72.4555223925563,40.9640060967713],[-72.4539900741924,40.9601126618771],[-72.4535046668337,40.9581563800718],[-72.4525614429719,40.9571762622566],[-72.4527537758675,40.9570409028715],[-72.4570518443961,40.9594732162945],[-72.4627476016753,40.9620082174796],[-72.4645189240071,40.9633217330138],[-72.4668120175002,40.9656735168571],[-72.4681913321099,40.967473752526],[-72.4690449858531,40.9695821814059],[-72.4719259880721,40.9748876310999],[-72.4722364161899,40.9765607756495],[-72.4714404872886,40.9772323590757],[-72.4699483496691,40.9765105475317],[-72.467723406865,40.9760338193441],[-72.4641798764626,40.9770547501273],[-72.4622074815259,40.9772950424781],[-72.4597014019704,40.9768479955151]]],[[[-72.4607514418077,41.0093058722947],[-72.4617510969373,41.0089541130293],[-72.4618540294959,41.0091185090453],[-72.462025100167,41.0102571705217],[-72.4613943382088,41.0110268853677],[-72.4602393167558,41.0114562785387],[-72.4588888380667,41.010841031174],[-72.4607514418077,41.0093058722947]]],[[[-72.0596953798203,41.0187321368238],[-72.0588538156042,41.0178190083759],[-72.0561204982145,41.0176636520053],[-72.0541286673283,41.0177973857127],[-72.0536024656759,41.0176308207488],[-72.0539442827263,41.0169820789738],[-72.0555981224869,41.0170108383786],[-72.0575496154236,41.0165473082545],[-72.0584988193702,41.017111936422],[-72.0589459908372,41.0169837476988],[-72.060460395896,41.0151850423375],[-72.0610010200003,41.0125373816808],[-72.0615920530668,41.012331791686],[-72.0619697569145,41.0130799631474],[-72.0619202974716,41.0154294245827],[-72.0609640210887,41.0183321836266],[-72.0607194215149,41.0180332304185],[-72.0604607579171,41.0180671621914],[-72.0603630481636,41.0186095686587],[-72.0596953798203,41.0187321368238]]],[[[-72.1378470039249,41.0203574069887],[-72.1392058585058,41.0198552489646],[-72.1392956900342,41.0204068873496],[-72.1386912855447,41.0215942754088],[-72.1382384475049,41.0218217086109],[-72.137845855878,41.0212760604934],[-72.1378470039249,41.0203574069887]]],[[[-72.1392348965473,41.0213645906223],[-72.1407751137975,41.0205877093339],[-72.1413180717249,41.0212316476352],[-72.1411358565544,41.0222133600091],[-72.1392632330047,41.0234908727031],[-72.1387198888017,41.0234908937125],[-72.1385086382845,41.023219951391],[-72.1392348965473,41.0213645906223]]],[[[-72.1831013072289,41.0256966024048],[-72.1839464736892,41.0254695722645],[-72.1843386691591,41.0257898881244],[-72.184097171468,41.0265900905131],[-72.1832517831238,41.0276412329678],[-72.1830102584833,41.0276398321975],[-72.1827082583595,41.0270695285059],[-72.1831013072289,41.0256966024048]]],[[[-72.1062243098674,41.0242511366755],[-72.1063022647694,41.0235235560055],[-72.1069585442716,41.0241524859886],[-72.106728869308,41.0250518870534],[-72.1023944531463,41.0272937129467],[-72.1014592153074,41.0285671477912],[-72.1013360131628,41.0297484205634],[-72.1008360800459,41.0308751830492],[-72.1002772506841,41.0309556911451],[-72.0999037859862,41.0303698687437],[-72.1000011013792,41.0298634432639],[-72.1005137510473,41.0294800513259],[-72.1006476233808,41.0284116310902],[-72.1010570305715,41.0278905397823],[-72.1014743267671,41.027189512492],[-72.1021592337808,41.026657333268],[-72.1036357236463,41.0258208096175],[-72.1059989189693,41.0248489215853],[-72.1062243098674,41.0242511366755]]],[[[-72.1810493736603,41.0297985335801],[-72.1810777235923,41.0287859694668],[-72.1818927650496,41.029422864606],[-72.1821346463213,41.0306356816396],[-72.1831109946609,41.0319880448389],[-72.18273062641,41.032487626826],[-72.1824575753946,41.0325800247139],[-72.1822850961651,41.0325803113522],[-72.1817425182251,41.0314457051849],[-72.1810493736603,41.0297985335801]]],[[[-72.4261037114551,41.0444252544147],[-72.426293025113,41.0443754438617],[-72.4265008000483,41.0445196958515],[-72.4267167990601,41.0446055856457],[-72.4266901020281,41.0449472548186],[-72.4264345259399,41.045094662042],[-72.4259676373508,41.0457417373238],[-72.4255553537545,41.0461513456498],[-72.4253577181038,41.0463000462156],[-72.4251754355596,41.0463410052572],[-72.4250243245558,41.0462880878265],[-72.4249027663282,41.0461637755982],[-72.4251228895054,41.0455337049404],[-72.4252632377938,41.0453476960889],[-72.4254264913253,41.0451081572248],[-72.4255460876324,41.0448631391797],[-72.4261037114551,41.0444252544147]]],[[[-72.3245190920913,41.1015009751973],[-72.3237252086539,41.101167282921],[-72.3227059289286,41.101179608379],[-72.3217539096619,41.1005990407824],[-72.3213739447546,41.0993832872464],[-72.3220340879108,41.0987771759871],[-72.3221832675367,41.0981276520014],[-72.3218755379581,41.0954274554294],[-72.3213490668111,41.0938074897453],[-72.3200403130703,41.0917369852944],[-72.3196293508958,41.0904619591463],[-72.3184554863814,41.089358307034],[-72.316985074517,41.088558467061],[-72.3106665332177,41.0871410741589],[-72.3078755799193,41.0862337046823],[-72.3075328708418,41.0861176084871],[-72.3047734277487,41.0848055946933],[-72.303568303659,41.0836380127461],[-72.3009954783797,41.0819880218632],[-72.2983565595533,41.0812461101203],[-72.2967686435581,41.0812178426132],[-72.2955528160419,41.0815495594789],[-72.2930464607036,41.0815672121942],[-72.2893960523421,41.0803869955215],[-72.2878703770197,41.080148410361],[-72.2858570377707,41.0803171255099],[-72.2844378307758,41.0799504069481],[-72.2812626949799,41.0805464745738],[-72.2803968466068,41.0804899965024],[-72.2780228158048,41.0789252528697],[-72.2768054674408,41.077275241859],[-72.2769306925914,41.0752336628264],[-72.2775878120184,41.0740918301574],[-72.2779998836122,41.0740925669559],[-72.2782999200188,41.073797932918],[-72.2793179070684,41.0710118727084],[-72.2799028702185,41.070066470591],[-72.280382153762,41.0698436156656],[-72.2805790878284,41.070082444789],[-72.2804255091525,41.0710470483471],[-72.2793880457292,41.0734588759196],[-72.2800938861839,41.0744347777969],[-72.2826534792792,41.0745987976911],[-72.2845830084072,41.0741309359952],[-72.2862634338086,41.0740759862797],[-72.2874220287597,41.07314406551],[-72.2886648542435,41.0727860484579],[-72.2898993271918,41.0743868021561],[-72.291990182965,41.0752240968016],[-72.2937133430211,41.0765210653415],[-72.2952758501685,41.0771297168274],[-72.295834379493,41.0778768925969],[-72.2961378582437,41.0800366479662],[-72.2970944535285,41.0802932874571],[-72.2977364138851,41.08031286088],[-72.2985952419243,41.0804320916503],[-72.2990109130675,41.0805093951649],[-72.301411941837,41.0811556474189],[-72.3028516322169,41.0812974670833],[-72.3034953523731,41.0810378385861],[-72.304205481385,41.0796268890388],[-72.3033912654795,41.0772525376431],[-72.305573881464,41.0744304626723],[-72.3070073779602,41.0759411215652],[-72.3078841040331,41.0778440527716],[-72.3081942599613,41.0791392801232],[-72.3078462068062,41.0818151744476],[-72.3092802162403,41.0835735048141],[-72.3101538952277,41.0846432158186],[-72.3104522014791,41.0858841195444],[-72.3112611200194,41.0863173286719],[-72.3122020693469,41.0865599674353],[-72.3153873767668,41.0860983854896],[-72.3178883691628,41.0867105997494],[-72.3197283667997,41.0866543781701],[-72.320072990187,41.0868155170934],[-72.3206709348913,41.0878832335091],[-72.3224019848505,41.0887881638055],[-72.3231655851814,41.0888194321394],[-72.3232561533283,41.0883847066503],[-72.3232742714493,41.0871872198506],[-72.3233720422882,41.086428415496],[-72.3236167200154,41.0858261429345],[-72.3237778373532,41.0847895996976],[-72.3222598578979,41.0823224575399],[-72.3211832440978,41.081189570354],[-72.3211114363673,41.0799539633089],[-72.3202918566212,41.077714704493],[-72.3186830610839,41.0760244925182],[-72.3172178450751,41.0744456868259],[-72.3148932359869,41.0731485513769],[-72.3127385719807,41.0712608852145],[-72.3115801881336,41.0708285344554],[-72.310485685283,41.0695960552354],[-72.3102710040998,41.0686588323524],[-72.3106830954566,41.0680379807164],[-72.311147845157,41.0682965234343],[-72.3121252409322,41.0687336601062],[-72.3127300083411,41.0692071258923],[-72.3146599003884,41.0699636950537],[-72.3148383031089,41.0706974101953],[-72.3167610517532,41.0708998570686],[-72.3177585158918,41.0706258733546],[-72.318223643783,41.0705286263344],[-72.3189161325777,41.0703826312603],[-72.3192627654963,41.0700529459883],[-72.3185746784466,41.0695235324726],[-72.3183240188379,41.0688646975301],[-72.3173098065091,41.0687464982392],[-72.3152706002714,41.0687935372832],[-72.3148075816245,41.0680351714136],[-72.3150610646381,41.0678744564687],[-72.3168276420685,41.0677084821279],[-72.3178704756206,41.0678723867361],[-72.3209717716968,41.0690164066039],[-72.3207145480984,41.0677494623819],[-72.319682127817,41.0673291311448],[-72.3195748626839,41.0669303326404],[-72.31882999582,41.0670300780402],[-72.3188762419891,41.0673013601904],[-72.3160967035831,41.0668988432584],[-72.3154566835876,41.0665056344672],[-72.3153163317059,41.0654035265807],[-72.3145904058197,41.0657874021337],[-72.3143200793946,41.0663620382053],[-72.3140770419911,41.0662663006427],[-72.3134385051141,41.0645220882758],[-72.3140144482804,41.0640221351341],[-72.3146645743229,41.0639652452851],[-72.3144937821295,41.0622409536986],[-72.3141462535905,41.062593121238],[-72.3133206946578,41.063470041299],[-72.3120866223582,41.0646796795725],[-72.3122195631387,41.0655789637705],[-72.3099878129014,41.0663374588837],[-72.3078365517135,41.0661430671526],[-72.3032377173463,41.0665083009288],[-72.3008974425378,41.0680071393323],[-72.3007239014996,41.0679220095058],[-72.2987627426905,41.0652280062928],[-72.2978555403732,41.0648419418282],[-72.2963680641117,41.0651492814489],[-72.2958331398179,41.0647539286988],[-72.2953749082931,41.0636128087499],[-72.2949970014262,41.0633427325819],[-72.2940574040632,41.0631855519219],[-72.2933251019351,41.062979195518],[-72.2928551231414,41.0629050981396],[-72.2920218988845,41.0632007427815],[-72.2916536569916,41.063673946326],[-72.2907218426322,41.0642509768549],[-72.2867539247335,41.0669811745436],[-72.2843983031066,41.0675786310115],[-72.2835202448322,41.0681658770148],[-72.2831498128467,41.0680760749328],[-72.2822209952671,41.0662482882436],[-72.2813403992519,41.0652187354676],[-72.2790376919886,41.0603862252875],[-72.2775637380671,41.0579870944036],[-72.2764747364993,41.0566778687771],[-72.2742094090332,41.0529179572959],[-72.2729472643809,41.0519333487757],[-72.2729922187727,41.0516912291473],[-72.2758673666711,41.0508541029484],[-72.27929692961,41.0488861385826],[-72.2810140466991,41.0468055905325],[-72.2811080769532,41.045407248355],[-72.2808541007645,41.0440277086467],[-72.279376491598,41.0412907550208],[-72.2760347003506,41.0368884680608],[-72.2759769422711,41.0362341056145],[-72.2737503456685,41.0326507308235],[-72.2724535134699,41.0309492514497],[-72.2706833149305,41.0293356152546],[-72.2701207018647,41.0275344205918],[-72.270423358657,41.0267940271681],[-72.270857241346,41.0264575470712],[-72.271495692883,41.0263871114881],[-72.2734149327077,41.0268378778579],[-72.2754498512866,41.0267914688828],[-72.2762713363594,41.0261218778152],[-72.2770809457041,41.0259743976042],[-72.2801875508236,41.0275384467114],[-72.2814075824554,41.0284904581786],[-72.2818796453406,41.0295734177489],[-72.2803328973383,41.0335224291422],[-72.2797997193694,41.0343744922364],[-72.2781010833206,41.0359961164454],[-72.2778060738863,41.0366781662249],[-72.2782521395272,41.0379046335581],[-72.2794942607318,41.0391724270768],[-72.2809716578958,41.0399999247666],[-72.2824523923011,41.0404582014146],[-72.2834480607075,41.0404366607152],[-72.2840221174118,41.0397296547583],[-72.2841786560365,41.0384363614052],[-72.2849078014846,41.0381878540839],[-72.2860799609966,41.0389000064612],[-72.2865777174955,41.0395602297256],[-72.2882539854938,41.0407796151582],[-72.2924531297467,41.0425401920594],[-72.2967503915882,41.0437985370778],[-72.2988269623518,41.0450001462275],[-72.3021563981708,41.0475685973554],[-72.3040500431965,41.0508329003091],[-72.3067509026583,41.0525984014022],[-72.3087697692414,41.0533661547828],[-72.3107240676167,41.0545151559763],[-72.312670633294,41.0540111855859],[-72.3133705403763,41.0541356008576],[-72.3128055925891,41.0555364942213],[-72.3110147139336,41.0555036913321],[-72.3107316583808,41.0558618580298],[-72.3107529233002,41.0560334852884],[-72.3111952923737,41.0562734910656],[-72.3131894472015,41.0560813605194],[-72.313812565395,41.0560283472815],[-72.3140089146582,41.0557537156584],[-72.3137501953648,41.0551307099854],[-72.3151322498362,41.0545189548696],[-72.3158939601117,41.0545502239258],[-72.3161984952812,41.0547419633402],[-72.3160458194121,41.0550401341238],[-72.316285487235,41.055455532529],[-72.3167999550932,41.0554224884462],[-72.316981077014,41.0551745167358],[-72.3166982271755,41.0543212807105],[-72.3145091109815,41.0535677093402],[-72.3143096634288,41.053297354827],[-72.3175031652807,41.0516604939062],[-72.3179241697218,41.0518954728261],[-72.3174964360009,41.0521737285498],[-72.3176167222141,41.0526538947484],[-72.3200638749819,41.052382126752],[-72.3203656945443,41.0521279518651],[-72.3203652885058,41.0515334895323],[-72.3197012619326,41.0508920567261],[-72.319278062009,41.0509857836642],[-72.3189461345115,41.0514869435107],[-72.3185676751806,41.0515591928344],[-72.3181813690657,41.0512754865436],[-72.318751824424,41.0505772290542],[-72.3190119846151,41.0496825998021],[-72.3170489842596,41.0465520241661],[-72.3162245904419,41.0453213880621],[-72.3161579435326,41.0450586351276],[-72.3168729503965,41.0442421625063],[-72.3171971191449,41.0441326263609],[-72.3180379108098,41.043733392485],[-72.3185458461192,41.0435110431895],[-72.3201220238285,41.043421640379],[-72.3209628837654,41.0434231932556],[-72.3248418531797,41.0436980159196],[-72.3269073405293,41.0433496802291],[-72.328325048236,41.0436482854408],[-72.329229588845,41.0442997516677],[-72.3294374104927,41.0456691150861],[-72.3308362984942,41.0473543142214],[-72.3338414847164,41.0491847830308],[-72.3376360511215,41.0501057197566],[-72.3375830801642,41.0508475635831],[-72.338403852873,41.0512943661012],[-72.3390375675936,41.0507370751061],[-72.339886757608,41.0506080826771],[-72.3428500949145,41.0514375860895],[-72.3431857665901,41.0513192355692],[-72.3437761465813,41.051634587413],[-72.3436858335559,41.0521233792078],[-72.3456435167832,41.051871297945],[-72.3464424289896,41.0512727388491],[-72.3462965111464,41.0508145280249],[-72.3456969566611,41.0507826949141],[-72.3461149023387,41.0501528385241],[-72.3481863688748,41.0492323211283],[-72.3494956077059,41.0481636225847],[-72.3500724644588,41.0486677752951],[-72.3495555864208,41.0497997562041],[-72.3499372203978,41.0507587682463],[-72.3513728216467,41.0516744761733],[-72.3519599479399,41.0518681180729],[-72.3532286970062,41.0533113733268],[-72.3544725860953,41.0541145530479],[-72.3530790475613,41.0565053835975],[-72.3519994109304,41.0578541115683],[-72.3521171737759,41.0580144405161],[-72.3524926471068,41.0579239986804],[-72.3537830455714,41.0571610550473],[-72.3541943239529,41.0564184295822],[-72.355396286871,41.0567477740736],[-72.3562148362495,41.0577933587485],[-72.3562054452615,41.0587703913235],[-72.3556910681332,41.059654766503],[-72.3532262652667,41.0610122163418],[-72.3528428445405,41.0625796079672],[-72.3528942694973,41.0631887556303],[-72.3545033219527,41.063959799045],[-72.355193538908,41.0651285378832],[-72.3558030386418,41.0654352611818],[-72.3571367287166,41.0654883995873],[-72.3589641714991,41.0653772150596],[-72.3608716020711,41.0654975105333],[-72.3632357307436,41.0665109098213],[-72.3639686374378,41.0665412026313],[-72.3648598084205,41.0661472846145],[-72.3650601560851,41.065525889781],[-72.3656631385414,41.0642832247323],[-72.3659071766681,41.063833959007],[-72.3658013829755,41.0628137588058],[-72.3670367784935,41.0626078360766],[-72.3671350586772,41.0614121642754],[-72.3668961148965,41.0611004654512],[-72.3651254896574,41.0617850165332],[-72.364068999018,41.0607520613586],[-72.363058213762,41.0598417367104],[-72.3619200644667,41.0600903756263],[-72.3603902389277,41.0609830257255],[-72.3585773272933,41.0607342919696],[-72.3575923425506,41.0619861673456],[-72.3569039303107,41.0636501530362],[-72.3559830753978,41.063930741135],[-72.3546123379024,41.0625392144401],[-72.354698542932,41.061464871083],[-72.3569161411103,41.0593901701469],[-72.3577691121339,41.0574597527023],[-72.3584659721307,41.056678630834],[-72.3580374451974,41.0565156812126],[-72.3566139837814,41.0555147687866],[-72.3570016759967,41.0540600465665],[-72.3564202423274,41.05338919444],[-72.3561656777422,41.0523925903051],[-72.3553731318963,41.0519060306197],[-72.3548962908721,41.050462978933],[-72.353405143196,41.0481499674677],[-72.3523190027624,41.0455670351518],[-72.3498588908983,41.0424661062111],[-72.3484128458361,41.0416492159055],[-72.346825192149,41.0413784661951],[-72.3447908440004,41.0418809966979],[-72.3433453927245,41.0428068935118],[-72.341577738214,41.0454186310294],[-72.3406220915501,41.0463648061634],[-72.3399239550473,41.0466954455285],[-72.338718834551,41.0468567440538],[-72.3387201074637,41.0462533115367],[-72.3403503484818,41.0450074944362],[-72.3422916473366,41.0427375432026],[-72.3437638073226,41.0415916068087],[-72.34495966529,41.0410292326761],[-72.3477279945179,41.0408183180162],[-72.3536300669701,41.0417962544832],[-72.3573666740731,41.0429358775209],[-72.364166066476,41.0469241646118],[-72.370294070612,41.0499600024872],[-72.3707443987589,41.0504341433601],[-72.3713789022003,41.0508584446856],[-72.3733721632045,41.0518766787977],[-72.3732226287439,41.0538592948969],[-72.3726217483453,41.0562324203414],[-72.3726204269236,41.0583580233908],[-72.3729989509331,41.0595916005801],[-72.3740736360503,41.0610302010495],[-72.3769585657037,41.0638926072651],[-72.3794979107725,41.0653870324387],[-72.3820415066691,41.0676020524125],[-72.384256091898,41.0687016914105],[-72.3845312323948,41.06926637076],[-72.3841915075207,41.0712311681959],[-72.3838215776934,41.0717811915974],[-72.3822759768398,41.0724531035815],[-72.3802487226869,41.0719161170023],[-72.3777666865401,41.0707697792845],[-72.3761798440317,41.0703643443509],[-72.3747317184712,41.0707726724481],[-72.3731961014936,41.0714536967333],[-72.3703785311134,41.0725332553886],[-72.3665253146017,41.0737827086145],[-72.365833706156,41.0742622667262],[-72.3648990046113,41.0751100425356],[-72.36458667476,41.0760756375396],[-72.363680458793,41.0786849011173],[-72.3636612402358,41.0801705962403],[-72.3635677184282,41.0804071370363],[-72.3632806483045,41.0812607198921],[-72.3621517381819,41.0829056357859],[-72.3600756587967,41.0845693547854],[-72.3589041254105,41.0862718039279],[-72.3580658490284,41.0876216140529],[-72.3570526239481,41.0877109432502],[-72.3552481295279,41.087957722516],[-72.3536211449027,41.0882490851797],[-72.3532712852355,41.0881419669724],[-72.3519268737678,41.0870662544928],[-72.3520190561873,41.0865865081327],[-72.352792534393,41.0864827035373],[-72.3530846548453,41.0868046602208],[-72.3537490488295,41.0871757049277],[-72.3542787727761,41.086953701532],[-72.3535777050705,41.0855685446282],[-72.3521205253903,41.0848009796199],[-72.3502371894308,41.084104650285],[-72.3479377053227,41.0841372676015],[-72.3468557420551,41.0845491705349],[-72.3455539915803,41.0846542666977],[-72.3444014198331,41.0845466246511],[-72.3437315622954,41.0845717016019],[-72.3426258116392,41.0838931871414],[-72.3425937121391,41.0848741930914],[-72.3427882899246,41.0854551224302],[-72.343894183413,41.0869802833718],[-72.3443155139425,41.0906873155452],[-72.3470383282299,41.0927135872997],[-72.347625730306,41.0935377386873],[-72.3479820389786,41.0949645262865],[-72.3473334912761,41.095381912626],[-72.3433119646161,41.0962393966765],[-72.3399827039686,41.0979368629556],[-72.3390735981213,41.0990552170889],[-72.3384847874868,41.1024867172471],[-72.3363103704259,41.104895285984],[-72.3355703850072,41.1065939594626],[-72.3346643783476,41.1072259792987],[-72.3328201828834,41.1067284194603],[-72.3298298565926,41.1054972151933],[-72.3245190920913,41.1015009751973]]],[[[-72.0883585400383,41.1013612481852],[-72.0864506144946,41.1009887699826],[-72.0827989628646,41.1016123653326],[-72.0818670434024,41.1015167075406],[-72.0790366046557,41.1003506742046],[-72.0777908722237,41.1001164302884],[-72.0768333651488,41.0967236969456],[-72.0777018033649,41.0951785967588],[-72.0811067991774,41.0942201722138],[-72.0822494472357,41.0927135067352],[-72.083836808072,41.0921187423745],[-72.085813434972,41.0899891819857],[-72.0865856663161,41.0883244918622],[-72.0868416825788,41.0853768192569],[-72.0858488950695,41.0800153281082],[-72.0845728804292,41.0769073043389],[-72.0821390146428,41.072752205838],[-72.0817640183174,41.0714097369352],[-72.0821261462764,41.0709415613315],[-72.0848263643412,41.0699786683058],[-72.0856440684049,41.06940042022],[-72.0862333776044,41.0684020878381],[-72.086751736066,41.0662311034823],[-72.0861118265633,41.060040914252],[-72.0875253786634,41.0579060706998],[-72.0891031472891,41.057036279035],[-72.0922206094472,41.0559891758085],[-72.0944011395436,41.0546346550452],[-72.0957975580764,41.0540799306023],[-72.0966526437341,41.0533043965934],[-72.0976062611037,41.0517927976023],[-72.0983682166193,41.0483309361527],[-72.0987919914647,41.045337903496],[-72.0984548052295,41.0447034536548],[-72.0982472207371,41.0443514715033],[-72.0977626667778,41.0440420495857],[-72.0977069433825,41.0437028981104],[-72.0985181148975,41.0438043867545],[-72.0986209908621,41.0436628710464],[-72.0983689011355,41.0433593050926],[-72.0977534087405,41.0432717510332],[-72.0976270571026,41.0425435363443],[-72.0981437572742,41.0424935034923],[-72.0970715703719,41.0396204065182],[-72.0972487837229,41.0391069906174],[-72.0977558072423,41.0391242658056],[-72.0979900690038,41.0375495042714],[-72.0983193653358,41.0359095859272],[-72.0986346201016,41.0352825571143],[-72.09921734465,41.0346082217067],[-72.0994349148152,41.0320242937192],[-72.0992275881392,41.0309562922194],[-72.1007831989201,41.0324184892631],[-72.1009285894522,41.0336110220895],[-72.1004417735351,41.0337608927791],[-72.0999875368184,41.0358435018281],[-72.0986865499116,41.0387874401486],[-72.0992615264907,41.0407608552199],[-72.1000411689359,41.0463015339852],[-72.0984921562807,41.0519051763767],[-72.0986474444506,41.0525845819137],[-72.0971691229202,41.0552223058849],[-72.0965368940131,41.058318153585],[-72.0972222420996,41.0605060110451],[-72.0968054795033,41.0631659639169],[-72.0970922091656,41.0650330484476],[-72.0964861454878,41.0697957673834],[-72.0967977710598,41.0746626690616],[-72.0973010504011,41.0762244810676],[-72.0996792673523,41.0793691303253],[-72.1005600053012,41.0817555251335],[-72.1019136253989,41.0834558018815],[-72.1020370620038,41.0842694978416],[-72.1031080550451,41.0862913904658],[-72.1061045913895,41.0887714595504],[-72.1072717975909,41.089300640192],[-72.1076920582269,41.0893201994223],[-72.1086784919522,41.0893404587138],[-72.1098512533354,41.0897436608485],[-72.1120978985385,41.0906511267413],[-72.1135809371225,41.09108908833],[-72.1172974435227,41.0924160531257],[-72.1228459282993,41.0932167519739],[-72.1261342904485,41.0929025466624],[-72.136874623444,41.0932690649935],[-72.1390864670146,41.0925044164749],[-72.1418856407961,41.0943572084659],[-72.1429145926821,41.0963506765877],[-72.142735857585,41.0984132587817],[-72.140727755514,41.10094382267],[-72.1383976370581,41.1024035721079],[-72.1344525067232,41.1034358247849],[-72.1320792529639,41.1047187420953],[-72.1298436291911,41.1069912590246],[-72.1285443032692,41.1094131668696],[-72.1275430706979,41.1123018280544],[-72.1270649792189,41.1166580879743],[-72.1283545988441,41.119788504497],[-72.130602662487,41.1231004028194],[-72.1297848164894,41.1227017492132],[-72.1245137763884,41.1188820908379],[-72.1195387275802,41.11390775027],[-72.1175245466097,41.1128216084972],[-72.1145930213424,41.1106586890993],[-72.1124002355305,41.1101534095984],[-72.1105541536042,41.1090578517271],[-72.1065847570785,41.1076927890895],[-72.1022434777881,41.1074935894133],[-72.0963051394496,41.1048627412462],[-72.0915174468703,41.1033009038429],[-72.0883585400383,41.1013612481852]]],[[[-72.2331274505423,41.1602169758019],[-72.2376203950971,41.1564925072804],[-72.2391366677533,41.1555201214901],[-72.2402933115637,41.1542959192305],[-72.2413636039191,41.1539928181717],[-72.2438241631442,41.1519531786293],[-72.2444744508834,41.1502439634832],[-72.2450127222999,41.1488968346981],[-72.2462043123715,41.1472771120624],[-72.248179174082,41.1453563562095],[-72.2513112221853,41.1427201693084],[-72.2536032206321,41.1395279775139],[-72.253961407682,41.1357987484446],[-72.2547527722433,41.1340703288223],[-72.2601673002447,41.1293807649851],[-72.263531827852,41.1289113987964],[-72.2651137188465,41.128449125895],[-72.2679239428043,41.1287230221044],[-72.2697567781734,41.1285278358093],[-72.2733121402864,41.1264144786561],[-72.2748432117887,41.1250907234531],[-72.2806774353857,41.1213062770635],[-72.2848740445929,41.1195094277982],[-72.2889411329058,41.1183578586824],[-72.2902692354595,41.1169615612367],[-72.2935940584295,41.1146484898432],[-72.2944022529277,41.1141991379302],[-72.2963830623837,41.1136512339573],[-72.2980354351954,41.1127263088207],[-72.3002332057588,41.111895213136],[-72.3003547244606,41.1122898579792],[-72.2937530773028,41.1166292130785],[-72.28977573428,41.1197825661601],[-72.2881210653745,41.1224185975955],[-72.2861586426357,41.1241917068179],[-72.2845826104535,41.1252218345851],[-72.2833430233963,41.1254582821923],[-72.2818775037569,41.1252165274034],[-72.2792928835979,41.1252680455516],[-72.2779485978943,41.1255875236172],[-72.2753586677937,41.1270438771218],[-72.274289152481,41.1272347148988],[-72.2736325756365,41.1276469836367],[-72.2681612211085,41.1296608491625],[-72.2672353347317,41.1300847014036],[-72.2653714490948,41.1317246862071],[-72.2635024080264,41.1327880872601],[-72.2622714906101,41.133884652321],[-72.2597725212201,41.1348924760876],[-72.2590898294519,41.1361957007571],[-72.2585420646394,41.1359755003515],[-72.257712118335,41.1360052652154],[-72.2560689496617,41.1355923237139],[-72.2567526134069,41.134320663224],[-72.2583114347666,41.1338624392515],[-72.2581067850702,41.1336098798233],[-72.2566771252787,41.1337739590224],[-72.2559836411507,41.1344599493242],[-72.2553550558104,41.135106952917],[-72.2550125955662,41.136373233024],[-72.2548904471455,41.1396577615379],[-72.2545673087647,41.1404066155762],[-72.2523165034636,41.143415172958],[-72.2509264207485,41.1443907242753],[-72.2501114790042,41.1459113966767],[-72.2481328335898,41.1476564539848],[-72.2479827331906,41.1480401547353],[-72.2485250973316,41.148390863342],[-72.2496450638272,41.1470035686361],[-72.2502834039732,41.1465549780815],[-72.2510040756132,41.1454013272317],[-72.2538387723744,41.1442666117641],[-72.2541700000842,41.1438241808292],[-72.2546632668034,41.1437098546577],[-72.2549587783959,41.1432665696169],[-72.2559714519106,41.1427323043108],[-72.2558308592804,41.1417292100434],[-72.2561949653297,41.141319080304],[-72.2561199658849,41.1404571536965],[-72.2565027119764,41.1399033599063],[-72.2564591329053,41.1390556922858],[-72.2567751781886,41.138297657024],[-72.2574515323424,41.1377733749757],[-72.2585407000985,41.1378488607806],[-72.2594204750535,41.1373384187645],[-72.2596861185611,41.1370565298395],[-72.2597195053469,41.1367375866216],[-72.2605511252128,41.1367393707069],[-72.2617056418126,41.1371586368603],[-72.2631450186805,41.1391968653314],[-72.2629807240016,41.1395126960536],[-72.2625892741334,41.1394538487325],[-72.2618102712887,41.1400297598871],[-72.2616386194075,41.1413271429672],[-72.261534843331,41.1419776588873],[-72.2620339688624,41.1427596063669],[-72.2638108715287,41.1425226582642],[-72.2637701994059,41.1423010273272],[-72.2624729953047,41.1423377288679],[-72.2620980115556,41.1418649639349],[-72.2627237106089,41.1402136092957],[-72.2633961939222,41.1401755609615],[-72.2646248394992,41.140461460425],[-72.2648045887943,41.1400424176644],[-72.2639071538592,41.1397959180059],[-72.2642613281347,41.1394440694803],[-72.2654950132604,41.1396084892641],[-72.2663001301304,41.1402310649366],[-72.267920574122,41.1408369653363],[-72.269519946332,41.1408569083616],[-72.2699458358115,41.1408039648557],[-72.273137749442,41.140433804945],[-72.2741356043478,41.1392820672113],[-72.2748054744619,41.1392168704199],[-72.2756140426592,41.1396142952368],[-72.2770005294182,41.1381745099109],[-72.2786063560235,41.1381449415527],[-72.2801439295318,41.1392801079732],[-72.2809966103995,41.1398721821946],[-72.2814334215962,41.1376803576718],[-72.2809113962116,41.1360242997284],[-72.2805028343355,41.1351004638806],[-72.2802958597991,41.1342894713567],[-72.2804983589288,41.13324497299],[-72.2796379579396,41.1321753565997],[-72.2790782805681,41.1295051424871],[-72.2794973949538,41.1294880297515],[-72.2799287830212,41.1303448580125],[-72.2805957713399,41.1306353242177],[-72.2807714970808,41.1311033221336],[-72.2815353767877,41.1314275960427],[-72.2815954471308,41.1317757736579],[-72.2830924158899,41.1333872979249],[-72.2843351668135,41.1336913332087],[-72.2829822806395,41.1322858773551],[-72.2828719558445,41.131044847527],[-72.2834135959433,41.1306027935931],[-72.2843299377203,41.1305883910156],[-72.2856615338221,41.1309935815565],[-72.2861314677001,41.1314595030976],[-72.2875930859561,41.1319803213093],[-72.287850507184,41.1325267921455],[-72.2883458759609,41.1324664101112],[-72.2875322044344,41.1313258982489],[-72.2874058590846,41.130579865576],[-72.2869814904528,41.1302186004056],[-72.2872187992997,41.1289587473012],[-72.2849118394118,41.1291880625497],[-72.2835927496554,41.1288957427111],[-72.2830224092815,41.127742928829],[-72.2832380327975,41.1265591292153],[-72.2839741806132,41.1270493567038],[-72.2878000658824,41.1275538843086],[-72.2935799665577,41.1302748746864],[-72.2978692351897,41.1311232139892],[-72.3000218663084,41.1320068558319],[-72.3039196778858,41.1347642245584],[-72.3043273674977,41.135444777044],[-72.305298321454,41.1365348135379],[-72.3054789322335,41.137597334908],[-72.3074655448062,41.1396343191408],[-72.3119348070751,41.1406529742533],[-72.314357701737,41.1406194703502],[-72.316589966709,41.1399104674889],[-72.3176178945155,41.1386779865437],[-72.318697458383,41.1370909319981],[-72.3204915889398,41.1357456736608],[-72.3241523405035,41.1336106714347],[-72.3264227425526,41.1315693579194],[-72.3268194502602,41.1311507502506],[-72.3270262586083,41.1309348876276],[-72.3299336434489,41.1261432097854],[-72.3352510941108,41.1202634093228],[-72.3361510919395,41.1180730708882],[-72.3369450193943,41.1177311691979],[-72.3384781704964,41.1147718658783],[-72.3392049677484,41.1138609668577],[-72.3404638074988,41.1149438557327],[-72.3410369622944,41.1145562938589],[-72.3406536655358,41.1142051803213],[-72.3403427379547,41.1139052745569],[-72.3416984295674,41.112441459369],[-72.3423960764884,41.1122143847297],[-72.3445475469837,41.1130161058227],[-72.3464596919144,41.1129791401673],[-72.3471334768865,41.1126974450548],[-72.3482190477882,41.1115605780773],[-72.3487576668528,41.1114558965305],[-72.3493930748976,41.1102591111769],[-72.3494438162365,41.1092199908962],[-72.3503155171337,41.1062182666842],[-72.351242903697,41.1064017322913],[-72.3516417287337,41.1061632206072],[-72.3517358784637,41.106246448303],[-72.3519721874857,41.1064590416248],[-72.3550956899157,41.1074990868722],[-72.356053488943,41.1072779048257],[-72.3562679365643,41.1064406902974],[-72.3558844412779,41.105796900122],[-72.3564522394195,41.1043328188607],[-72.3568173991926,41.1044132587276],[-72.3570750953049,41.1038517439323],[-72.3571542404747,41.1030474483492],[-72.3560173173798,41.1029492860605],[-72.3562549388404,41.1023873126619],[-72.3574178690611,41.1026346818949],[-72.3577205941254,41.1019706206773],[-72.35845455634,41.1016316948059],[-72.3584356935157,41.1009512445058],[-72.3590347278764,41.1007848520796],[-72.3594458463578,41.1018165609106],[-72.3613173479117,41.101057863918],[-72.3616621671318,41.1007910581683],[-72.3618122522596,41.0995515522606],[-72.3623839140552,41.0993619973582],[-72.3622166531392,41.0973496358247],[-72.3625137565464,41.0971402787022],[-72.3634096814136,41.0974940552807],[-72.3634523621693,41.096445733304],[-72.3634986352879,41.0960144634787],[-72.3620582657816,41.0957292747974],[-72.3638197776121,41.0941619010182],[-72.3641278817883,41.0930070702549],[-72.3648668646871,41.0931906147433],[-72.3648800798032,41.092506395389],[-72.3646282236386,41.0921988999899],[-72.3644050264265,41.0919190811216],[-72.3643272107633,41.0918182239025],[-72.3645499534279,41.0917557719938],[-72.3672938664464,41.0933452187456],[-72.3675070151037,41.0934671826347],[-72.3679604666928,41.0935901360767],[-72.3680305406749,41.093866447734],[-72.3694501051992,41.0942996996897],[-72.3723079722065,41.0947162352125],[-72.3725055198223,41.0947072339266],[-72.3739510312853,41.0946771687023],[-72.3767390740422,41.0939886591143],[-72.3794994666545,41.0914485371215],[-72.3802568695082,41.0897274456616],[-72.3814931193242,41.089174626585],[-72.3820377094904,41.0887636876559],[-72.3822093586766,41.0889567355823],[-72.3828622030211,41.0899983640107],[-72.3813277511585,41.0915396768962],[-72.3815127636828,41.0920707877659],[-72.3834455950178,41.090484486832],[-72.3839405074505,41.089694120901],[-72.3852911433448,41.0898959351376],[-72.3854844545058,41.0895805805708],[-72.3851639993928,41.0893121026099],[-72.3839957960613,41.0892945704585],[-72.3835953019548,41.0890557935322],[-72.3841891368667,41.0878533574477],[-72.3835274036924,41.0876356645059],[-72.3832642009074,41.088287185965],[-72.3827645148272,41.0881857585031],[-72.3829229363209,41.0868563391892],[-72.3823674855228,41.0860420977097],[-72.3799287427827,41.0856083329115],[-72.3774941502593,41.0836119157167],[-72.3760539676025,41.0819623636317],[-72.3750274007436,41.0803897765338],[-72.3737932826299,41.0787809219317],[-72.3739204795825,41.0778471061123],[-72.3748577853432,41.0768011644476],[-72.3754837197551,41.0775224760961],[-72.3746771709705,41.0785353771988],[-72.3749983384475,41.0793443141235],[-72.3756404667891,41.0790797394335],[-72.375777371835,41.0786865560894],[-72.3765473043903,41.0781636891577],[-72.3773463091231,41.0783124927452],[-72.3771831247618,41.0787681277418],[-72.3775045284957,41.0791042009071],[-72.3777915779583,41.0790882214525],[-72.3781113189106,41.0783434274835],[-72.3787882461896,41.0780075718611],[-72.3767908861728,41.0774261703862],[-72.3761939323103,41.0770793120999],[-72.3761913631286,41.0767324878737],[-72.3778863744753,41.077059324638],[-72.3794108810894,41.0776524633222],[-72.3801736100545,41.0778904907555],[-72.3845173129995,41.0795609551586],[-72.3850356391218,41.0790593354536],[-72.3862944088036,41.0796778707734],[-72.3873620825699,41.0800128429917],[-72.3872039826732,41.0813557876077],[-72.3882198919195,41.0816085142477],[-72.3886093942402,41.0819551089314],[-72.3906943103528,41.0823041116568],[-72.3910534936343,41.0821951623029],[-72.3911077258263,41.0815388865922],[-72.3899992101556,41.0807121470049],[-72.3895239753192,41.0801069164357],[-72.3896156079697,41.0796901725004],[-72.3889389780331,41.0794181322744],[-72.3883449347121,41.0795217482702],[-72.3879514663295,41.0792381118066],[-72.3915088002445,41.077756063818],[-72.394066704507,41.0775032499074],[-72.3950857120428,41.0770174190722],[-72.3953946211094,41.0765605516632],[-72.3969345257459,41.0759378724295],[-72.3971798484635,41.0768846419807],[-72.396999305956,41.0769165877367],[-72.3961695384162,41.0775463232798],[-72.3964468106152,41.0777777670079],[-72.3969969299121,41.0777496747496],[-72.3972796683595,41.0776164589781],[-72.3977890975673,41.0771866352397],[-72.3983062513881,41.0766173757634],[-72.3984221385513,41.0761876626446],[-72.3991731454002,41.0763847679387],[-72.3991285656059,41.0765909204274],[-72.3974814039212,41.0784991945683],[-72.3975620241247,41.0793972049626],[-72.3983006728502,41.0799272939839],[-72.3987378811023,41.0804235461537],[-72.3995461905849,41.0800364949318],[-72.3991078324892,41.0793240531045],[-72.3980427449726,41.0788091099053],[-72.3982341966209,41.0784441530248],[-72.3994174862592,41.0775837050231],[-72.4001275856267,41.076667525549],[-72.4004628108396,41.0763913765463],[-72.4014733292959,41.0759683450907],[-72.4021972618205,41.0756063906682],[-72.4027276541137,41.0754742459311],[-72.4037972053589,41.0753272372484],[-72.4049083387204,41.0750685684543],[-72.4052120043207,41.0745349966873],[-72.4043505873369,41.073740983806],[-72.4032531919111,41.0734054994821],[-72.4033718800214,41.0727146418842],[-72.4067534558561,41.068116253752],[-72.408049776015,41.0668889746317],[-72.4088308656462,41.066564291179],[-72.4109624276782,41.0646532295922],[-72.4120254320017,41.0633215800251],[-72.4127200471086,41.0620897268289],[-72.4131412132464,41.0602437563158],[-72.4135998984203,41.0594704543828],[-72.4142481892047,41.0599128456831],[-72.4149376893044,41.0599868726017],[-72.4156067078156,41.0602991206128],[-72.4168055607662,41.0607178251049],[-72.4180167646537,41.0617717855436],[-72.4198350940276,41.0625736339777],[-72.4202160210306,41.0630460285753],[-72.4207682307071,41.0632655592439],[-72.4214166822899,41.0627351617947],[-72.4240933429347,41.0629662058943],[-72.4244409514237,41.0629019262514],[-72.4246412999866,41.0625326179866],[-72.4210167127995,41.0615507949759],[-72.419144263523,41.0602883961842],[-72.4185305650636,41.0596261374876],[-72.4184321276748,41.0591195408475],[-72.418956679122,41.0584287566748],[-72.4215717494743,41.0581946186741],[-72.4228178951313,41.0581639711424],[-72.4230496505932,41.0571423627753],[-72.4237481284558,41.0565094899089],[-72.4248490120399,41.0564080181509],[-72.428068015266,41.055444160397],[-72.4299531667207,41.0552160419777],[-72.4325717692486,41.0557473251292],[-72.4342570437559,41.0555912385998],[-72.4340674902478,41.055168189826],[-72.43163004737,41.0548931772987],[-72.4307147566219,41.0546025487563],[-72.4280977728581,41.0546612174395],[-72.4249955982296,41.0556051719364],[-72.4222082956846,41.056101238525],[-72.4202742040132,41.0572378372501],[-72.4183538700405,41.0572983785638],[-72.4174083428983,41.0569259032361],[-72.4150485441054,41.0583906250336],[-72.4146938730616,41.0584457111385],[-72.4146557970699,41.0581836547914],[-72.4155108683546,41.0571625452808],[-72.4157155252375,41.0563610156323],[-72.4155243475754,41.0550327003281],[-72.4162112731035,41.0538411822295],[-72.415523238156,41.0528574918866],[-72.4153206105673,41.0511191014915],[-72.4146455517841,41.0502798083033],[-72.4155278572932,41.0500609300354],[-72.4167639418191,41.0507777001153],[-72.417750710616,41.0511961400445],[-72.4186440725897,41.0515314145434],[-72.4193075988012,41.0513166091381],[-72.418963893492,41.0510161784671],[-72.4190669985271,41.0504330364099],[-72.4201926136293,41.0503051408529],[-72.420557809335,41.0496558125146],[-72.4213702178301,41.0491696173875],[-72.4222355209259,41.049004347825],[-72.4230214210353,41.0492921476374],[-72.4240565515339,41.049405378184],[-72.425873043853,41.0495991182187],[-72.4260235395109,41.0487333079332],[-72.4255253257695,41.0481232053002],[-72.4256987904509,41.0477172655872],[-72.4295153592923,41.0467487061171],[-72.4300467765632,41.0466209585431],[-72.4315277436322,41.04624418302],[-72.4315433680299,41.0457086145149],[-72.4260233014574,41.0468508418046],[-72.4258345267886,41.0467340344773],[-72.4265674289913,41.0461109189993],[-72.4279791539181,41.0451066552008],[-72.4277820599515,41.0442871201462],[-72.427299912579,41.0439520973545],[-72.4266061140407,41.0438014896944],[-72.4265911049889,41.0428509164684],[-72.4259655074452,41.0425532134955],[-72.4258438027922,41.042928787218],[-72.4243095656269,41.0441959914111],[-72.4236530292066,41.0444244928935],[-72.4233635758523,41.0448683661343],[-72.4223650085825,41.0457061856889],[-72.421071618728,41.0473525263522],[-72.4193619396894,41.048232936012],[-72.416951981666,41.0484040764265],[-72.4157780928971,41.0488731217869],[-72.4135140320556,41.0499886919381],[-72.4139993801255,41.0508867801192],[-72.4144708276647,41.0512666527325],[-72.4146182465927,41.0516797798144],[-72.4141532902798,41.0519125278789],[-72.4077128610711,41.051398432206],[-72.4066718403192,41.051681228171],[-72.4054303084095,41.0514461001271],[-72.4039159770125,41.0515110453699],[-72.3999464502311,41.0498137395441],[-72.3964981637067,41.0490648079685],[-72.3959372673214,41.0486558186911],[-72.3936887590125,41.0483707666212],[-72.3901804066366,41.0483363396514],[-72.3896814805312,41.0485051696311],[-72.3892884568146,41.0482710857357],[-72.3878107748846,41.0483321467912],[-72.3854517100153,41.0488685617753],[-72.383296971449,41.0496707727767],[-72.3852331121775,41.0476476603016],[-72.3872938663038,41.0449338063507],[-72.389105398126,41.0407146044418],[-72.3893064635445,41.0394086498775],[-72.3890716843534,41.037241656248],[-72.3868099375721,41.034501775024],[-72.386829186672,41.0325116726241],[-72.3873701763906,41.0318214039534],[-72.3894140880037,41.03107964584],[-72.3903133501122,41.0303704630469],[-72.3914854108094,41.0312616874209],[-72.3915028749569,41.0318925709946],[-72.3919631402674,41.0326055395837],[-72.392345314132,41.0329429484627],[-72.3909925240777,41.0335022644571],[-72.3906839923035,41.0328062409001],[-72.3904289210684,41.0329400692205],[-72.3902743928732,41.0336526212485],[-72.3898471873618,41.0330439759714],[-72.3890977462764,41.0322749046488],[-72.3888626023693,41.0320173784267],[-72.3881856059201,41.032218193346],[-72.388432556385,41.032647121082],[-72.3893593554501,41.0336498951796],[-72.3899893206027,41.0341505507742],[-72.3886872691922,41.0341210331476],[-72.3887746734727,41.0344112378484],[-72.3902725082078,41.0345848000768],[-72.3903467342031,41.0367706713885],[-72.3905494004194,41.0368157953983],[-72.3908922271762,41.0362110897646],[-72.3907447085352,41.0346945770793],[-72.3923051262012,41.0352793473035],[-72.3940031334293,41.036560747272],[-72.3949644520559,41.0367671411508],[-72.3952729227446,41.0364858957903],[-72.3952780925491,41.0361662648373],[-72.3931713078492,41.0350512667111],[-72.3936239311917,41.0343949961386],[-72.3935417407331,41.0326908181174],[-72.3945553287327,41.0327768033087],[-72.3951664786717,41.0335292006208],[-72.3951625269827,41.0328941192352],[-72.3947004039562,41.0323027154634],[-72.3938385845271,41.0322516909004],[-72.3933367945926,41.0318935650909],[-72.3907906681417,41.0298228466808],[-72.3973670286226,41.0294897859661],[-72.4018765839253,41.0297852636299],[-72.4177174603741,41.0319834863678],[-72.4240024810386,41.0333672121357],[-72.4250591216966,41.0338186761017],[-72.4250010923259,41.0341821622192],[-72.4248009342058,41.0345109458261],[-72.42332827296,41.0338610252535],[-72.4216381807878,41.0339447917507],[-72.4208247850441,41.0335662977126],[-72.4173741871546,41.0340519020433],[-72.4160530654089,41.0356120013068],[-72.4166597668906,41.0357246895969],[-72.4170510415873,41.0357379698692],[-72.4177619898627,41.0357133824922],[-72.4176745604294,41.0362383310925],[-72.4181808428387,41.0367901025993],[-72.4181206646978,41.037378711686],[-72.4193023733012,41.0378645568924],[-72.4202731305265,41.0369180555931],[-72.4212960295641,41.0368824199138],[-72.4222268063693,41.0371689656806],[-72.4228229984605,41.0370562114267],[-72.422960800025,41.0360775323561],[-72.4226885673748,41.035413928834],[-72.4247174393935,41.0354322966092],[-72.4235388874699,41.0376486783059],[-72.4222567058953,41.0380793418419],[-72.4225363316802,41.038725097085],[-72.4233866445888,41.0390548675743],[-72.4240705589641,41.0388855241454],[-72.4244358220435,41.0382316795685],[-72.4252184280308,41.0387535725797],[-72.4262155588945,41.038483135514],[-72.4263397833218,41.038882219651],[-72.4268714422396,41.0392048424111],[-72.4278827287555,41.0394300919894],[-72.4287977859416,41.0393199251548],[-72.4286847132002,41.0386148545379],[-72.4269686669028,41.0375677400001],[-72.4268371697149,41.0357138622327],[-72.4264748701776,41.03522389148],[-72.4257003822655,41.0346661608136],[-72.4258632917423,41.0341293820546],[-72.426984651525,41.0338932385627],[-72.4275256457351,41.0335360371503],[-72.428612587466,41.0335152775169],[-72.4310586065599,41.0340652538028],[-72.4328669080403,41.0354926580955],[-72.4356908438826,41.0352538395685],[-72.4374472290278,41.0348605994895],[-72.4379520732343,41.0349934268738],[-72.4383873222608,41.035214774308],[-72.439917285242,41.0331051250167],[-72.4427739610832,41.0325741313488],[-72.4431975823167,41.0327501670274],[-72.4432531305406,41.0340619226394],[-72.444521640655,41.0343828072305],[-72.445639266141,41.0352992979991],[-72.4462733940866,41.0373579566524],[-72.4474517367026,41.038455917475],[-72.4483280333808,41.0397138032793],[-72.4484792297246,41.0411312559602],[-72.4487206824999,41.0414248303335],[-72.4494755862405,41.0414955946971],[-72.44989816453,41.040833930055],[-72.44941505596,41.0399630603143],[-72.4495053662905,41.0387986505107],[-72.4492637868527,41.0383159276791],[-72.447723263277,41.0369892869162],[-72.447360972723,41.036283212211],[-72.4471000157262,41.0344940360153],[-72.4473958992212,41.0336088984243],[-72.4481338742103,41.0332109302136],[-72.4501687945857,41.0336297955851],[-72.4511050807586,41.0335829699166],[-72.4539142869252,41.0345908511453],[-72.4540649308051,41.0342699282666],[-72.452705440217,41.0328752994509],[-72.4511348069096,41.0324847692482],[-72.4501079480983,41.0317775030488],[-72.4482966085155,41.0323273434171],[-72.4437360792104,41.0318208869142],[-72.4422825251306,41.03201829256],[-72.4411059063816,41.0320326855833],[-72.4393354275679,41.0325427603687],[-72.4387282176398,41.0334209524259],[-72.4380268813379,41.034387117529],[-72.4369461298977,41.0335389265308],[-72.4375994701123,41.0328329042639],[-72.438792972697,41.0306572363887],[-72.4419661187246,41.0286696566292],[-72.4451853393431,41.0261966292605],[-72.4467354838755,41.0243035005083],[-72.4475544797166,41.0224977283507],[-72.4478949295312,41.0205912756825],[-72.4476628174382,41.0187486934956],[-72.4479907276697,41.0182830900746],[-72.4510450247886,41.0187380314278],[-72.4514700024781,41.0193013700009],[-72.4511120723464,41.0195051150534],[-72.4511078251118,41.0197887427709],[-72.4519959876366,41.0204839252546],[-72.4523297953079,41.0199418792032],[-72.4529151114959,41.0200674141587],[-72.4534389119515,41.0204392793916],[-72.4537967091326,41.0212037826686],[-72.4542024179593,41.0212262622437],[-72.4546327055905,41.0205332225263],[-72.4545151691204,41.0201883563771],[-72.4530065698733,41.0192948295339],[-72.4526134949527,41.0183854305658],[-72.4516696207107,41.0180177783512],[-72.4509580939202,41.0171373549392],[-72.4507484091666,41.0175830666574],[-72.4511723088778,41.0182319495916],[-72.4479042414674,41.0177317436499],[-72.4475292720914,41.0157779107255],[-72.4465706681736,41.0131761407437],[-72.4444618398065,41.008648357461],[-72.4398683818563,41.0001472621141],[-72.4346704457547,40.9889348315444],[-72.4336242489102,40.9860292448814],[-72.4337876632402,40.9853213218506],[-72.4349150911426,40.98745410242],[-72.4357967058473,40.9882258269637],[-72.4429451889595,40.9930999743117],[-72.444981001362,40.9944241633591],[-72.4467383566877,40.9951882064352],[-72.4460285735272,40.9962713420063],[-72.4458363367514,40.9969200965153],[-72.4452217552481,40.9967308274462],[-72.4443219182179,40.9969630653552],[-72.4442390710908,40.9977223303593],[-72.4447402690356,40.9977694784853],[-72.4457223126941,40.9976021103163],[-72.4453049051074,40.9982323596808],[-72.4443171445704,40.99848966885],[-72.4440434009539,40.9983439837694],[-72.4436669664257,40.9991823004588],[-72.4448808922085,40.9996100535141],[-72.4451368860133,40.9993500212298],[-72.444493538658,40.9990970605702],[-72.4444576922848,40.998871086568],[-72.4453246033649,40.9987417002959],[-72.4458719459692,40.9989024559599],[-72.4460423411073,40.9993385770304],[-72.4475325329759,40.9986735571595],[-72.4476894003841,40.9989022112097],[-72.4476070446355,40.999341736389],[-72.4486081083235,40.9992017868295],[-72.4477078868143,40.9975380393806],[-72.4469050328005,40.9968942505168],[-72.4475488490764,40.9957105694059],[-72.4492933333407,40.9969831924123],[-72.452657975034,40.9982285812684],[-72.4529518597775,40.9990862556588],[-72.4546022041933,40.999933381236],[-72.4563551586725,41.0017465026309],[-72.4559301450503,41.0030791711592],[-72.4554548383486,41.0032848415476],[-72.454140104523,41.0022289823857],[-72.4534674801742,41.0002640802355],[-72.4528136872087,41.0004162546009],[-72.4532592327251,41.0018131972042],[-72.4534201919593,41.0027084566932],[-72.4529259945856,41.0034045848085],[-72.4534347428703,41.0047623915929],[-72.4549229386824,41.0061778715478],[-72.4592452913681,41.0080431911334],[-72.4594409740814,41.0087140316226],[-72.4567542630852,41.0082764399004],[-72.4559800859902,41.0077504427106],[-72.455422717289,41.0076930954433],[-72.4552176184349,41.007828173304],[-72.4554127370062,41.0083774123824],[-72.4538901375154,41.0094561365592],[-72.4539855044626,41.0103184200369],[-72.453494000238,41.010730886321],[-72.4534919646556,41.0118837451873],[-72.4531918267394,41.0120932789138],[-72.4524843091301,41.0119200078459],[-72.4519152919746,41.0121641215765],[-72.449226146544,41.0117488179884],[-72.4479586281697,41.0120675107168],[-72.4478558968338,41.0130154788678],[-72.4482962806305,41.0141601259424],[-72.4503000061094,41.0157582191366],[-72.4510279100858,41.0152879502242],[-72.4523122790582,41.0152082837925],[-72.4522996954577,41.0146090360885],[-72.4513431271223,41.0136466341799],[-72.4522454093668,41.0128739756011],[-72.4526123262446,41.0130532260354],[-72.4536363355999,41.0128822180707],[-72.4558094527986,41.0114710976784],[-72.4574717600791,41.0107602185322],[-72.4591460436989,41.01167085274],[-72.4603224648185,41.012039068418],[-72.4619038374851,41.0114029005963],[-72.4626096105662,41.0105762893819],[-72.462886574643,41.0105823907846],[-72.4640408963084,41.0109455781202],[-72.4644588464775,41.0111124040148],[-72.4657562967171,41.0116003200012],[-72.4662491277533,41.0125478990171],[-72.4673575976099,41.0130811791791],[-72.4675945210796,41.0147346842356],[-72.4682141412333,41.0154778797331],[-72.4686673385992,41.0166857820189],[-72.4693840136346,41.0172824874218],[-72.4706966858266,41.0192028088207],[-72.4711534135716,41.0202036161293],[-72.4719781604272,41.0212800537861],[-72.473567468811,41.0216256726154],[-72.4736884009129,41.0207951712725],[-72.4729488808215,41.0208329892128],[-72.471741047413,41.0196670861323],[-72.4716070403322,41.0188760254681],[-72.4706829011786,41.0176397783648],[-72.4707982295897,41.016665043507],[-72.4697579463547,41.0154352456011],[-72.4702902538561,41.0152172580055],[-72.4712984609473,41.0141765624334],[-72.4698226771575,41.0134911385038],[-72.4691429758809,41.0123953547729],[-72.4682292634728,41.0119384303019],[-72.4678353576106,41.0106192405066],[-72.4678362226882,41.0100337991437],[-72.4671416785482,41.0099870027905],[-72.4667902908467,41.0102359764964],[-72.4661100272248,41.0101849843188],[-72.4658591601053,41.0099632951563],[-72.4635890877379,41.0101114816267],[-72.4626682462997,41.009667866841],[-72.4624603860245,41.0085193882984],[-72.461782354716,41.0083333134988],[-72.4609988495151,41.0086493064904],[-72.460573232225,41.0087795328602],[-72.4604655547652,41.0079259902375],[-72.4652729249408,41.0056945482343],[-72.4688674365321,41.0034002270606],[-72.4698238108314,41.003885105418],[-72.4719012538591,41.0044936649634],[-72.4742960141845,41.0055504945388],[-72.4733474992457,41.0057143363826],[-72.4730941985901,41.0061591342895],[-72.4744689389784,41.0068017690387],[-72.4748917373551,41.007639691404],[-72.4748204174097,41.0085928798869],[-72.4754512224871,41.0097641192386],[-72.4760249980186,41.0101324743667],[-72.4768094635186,41.0100821091327],[-72.4779263820305,41.0095571390932],[-72.4787408270064,41.008115820985],[-72.4785282865085,41.0070438273748],[-72.4767171876743,41.0065402995091],[-72.4755085251208,41.0051672532446],[-72.4724516588202,41.0040328723634],[-72.4721959632561,41.0036264451819],[-72.4713601698174,41.0033108653704],[-72.4698899025818,41.0031479754729],[-72.4689405010057,41.0026947758769],[-72.4704351871458,41.0001200567035],[-72.4720815861608,40.9963551759775],[-72.4719086478922,40.9947571105178],[-72.4716557936993,40.9940444970222],[-72.471244441656,40.9925808079714],[-72.470873800363,40.9925006130105],[-72.4703843784333,40.9918548601349],[-72.4705334026507,40.9916104352062],[-72.4702478704427,40.9905097927253],[-72.4703072778291,40.9897725084493],[-72.4716056308755,40.9897604821571],[-72.472752895376,40.9893668246566],[-72.4736456482919,40.9894314439605],[-72.4742188587831,40.9891287624124],[-72.4799359106261,40.9886144666722],[-72.4810848675526,40.9887792083911],[-72.4836146931743,40.9896136237031],[-72.483970381111,40.9900087029989],[-72.4845197503146,40.9900387157225],[-72.487935781032,40.9909374216934],[-72.4907754652396,40.9909722929724],[-72.493831576057,40.9906875437719],[-72.4949293137409,40.9904412050832],[-72.4954796989391,40.9900523517008],[-72.49607440881,40.9897680426647],[-72.4977643833029,40.9895570668847],[-72.4982383057007,40.9890089132033],[-72.4990264587849,40.9887558111483],[-72.5008851323965,40.9894086151769],[-72.5018308176422,40.9919871606207],[-72.5021206384074,40.9920249652634],[-72.5021991053491,40.9912655553053],[-72.5025381807413,40.9908450576025],[-72.501941979667,40.9893594607453],[-72.5017692866385,40.9885225502538],[-72.5008963182185,40.9885621788969],[-72.5001665430513,40.9883121699179],[-72.5038781823793,40.9867397601615],[-72.5050454173269,40.9868550966555],[-72.5060495649312,40.9861337247255],[-72.5065996788382,40.9860060107658],[-72.5074331707931,40.9864608833928],[-72.5101356103915,40.9871002417243],[-72.5113254002393,40.9882158041406],[-72.5120572918372,40.9883712116359],[-72.5123182308677,40.9885840084769],[-72.5131218825855,40.9924023961886],[-72.5140715788089,40.9925759999651],[-72.5152489090237,40.9925248171529],[-72.5157084260376,40.9919222278503],[-72.5155137242846,40.9905984733652],[-72.5143414650596,40.9905551925356],[-72.5134750291883,40.9908157334785],[-72.5134483698856,40.990220681552],[-72.5135406448316,40.9897227704682],[-72.5156800015453,40.9894356202295],[-72.5162876022406,40.9891424643526],[-72.5159819136342,40.9883207246675],[-72.5149029947572,40.9882659494331],[-72.5137074305388,40.9878753812115],[-72.5129025454341,40.987803978101],[-72.5121061008999,40.9874490241575],[-72.5110753487901,40.986233319309],[-72.508961010157,40.986174146836],[-72.5065770260217,40.985424555081],[-72.5056286808644,40.9856517408554],[-72.5047242830875,40.9863482457555],[-72.5043138203763,40.9859250293354],[-72.5051535753854,40.985051487251],[-72.5069618472214,40.9844195630321],[-72.508845126587,40.9839648709483],[-72.5102861940843,40.9838698971283],[-72.5113255026472,40.9833564039761],[-72.5225987665748,40.9809960884352],[-72.5267145022536,40.9796567986671],[-72.5270802324569,40.9797096794475],[-72.5277773556601,40.9792832736686],[-72.5279902509925,40.9787744249635],[-72.5317174293783,40.9768726767555],[-72.5348791784799,40.9746704873877],[-72.5359430532708,40.9731890147599],[-72.5376640834214,40.9719107194215],[-72.5422966558157,40.9660107102808],[-72.5453534879803,40.9596040913323],[-72.5476050074421,40.9562787671967],[-72.5475975388488,40.9557787036947],[-72.5494705621489,40.9549493190001],[-72.5505453433857,40.9548010159975],[-72.5534443909622,40.9528494297395],[-72.5549434114734,40.9513860117369],[-72.5553937512984,40.9505713911162],[-72.5563220514484,40.9500641393041],[-72.5573319734234,40.94810843226],[-72.5580218373408,40.9475420717831],[-72.5604751893823,40.9473958385536],[-72.5614056814216,40.9470687378791],[-72.5674689475683,40.9431209867661],[-72.5683571747718,40.9423650898981],[-72.5695772405396,40.9398687588615],[-72.5701131925061,40.9393035837907],[-72.5704820425584,40.9392663189501],[-72.5709516817889,40.9396995567954],[-72.5699131727266,40.9439471497233],[-72.5703027217597,40.9442976361317],[-72.5704810265638,40.9441122391236],[-72.5709351330247,40.9441803531392],[-72.5710414019262,40.943691692571],[-72.5712760787093,40.9437101463058],[-72.5712589550234,40.9429621776152],[-72.5722943828643,40.9396062320125],[-72.5721315982533,40.9392875486811],[-72.5711828192098,40.9390243714648],[-72.5703380812459,40.9383940781674],[-72.572043436693,40.9367906615847],[-72.5739578983788,40.9357590798167],[-72.5755234957307,40.9345219703204],[-72.5756610098344,40.9335835942523],[-72.5768837435985,40.9334381533197],[-72.5768061426327,40.9340174957583],[-72.5771768836387,40.9343945867139],[-72.5788019027499,40.9350231998692],[-72.5803899903233,40.9353222478796],[-72.5808256534732,40.9352638332473],[-72.580807745558,40.9357543572477],[-72.5799057813172,40.936140762578],[-72.5799569951698,40.9364255687481],[-72.5804273611374,40.9363318538824],[-72.5803851205561,40.9366957650846],[-72.579662331587,40.9371354679743],[-72.5804106587614,40.9380293871045],[-72.5808371698751,40.9377951372738],[-72.5805099908722,40.9374234756115],[-72.5808932292404,40.9372153393626],[-72.5811505166193,40.9362884770524],[-72.5816133663829,40.9360955187278],[-72.5816332694563,40.9351636765008],[-72.5824034715062,40.9351122706621],[-72.5859754973677,40.9337098942635],[-72.5879111062935,40.9320480069089],[-72.5890502095996,40.9331797305231],[-72.5892295402798,40.934453515846],[-72.5896160583971,40.9353172931872],[-72.5903250303789,40.9346835801472],[-72.5896644668111,40.9328638020756],[-72.5884825776463,40.9317041682156],[-72.5889751104419,40.9314487492246],[-72.5896100495662,40.9305432720154],[-72.5903482554223,40.9300227616123],[-72.590420964163,40.9294928465482],[-72.5908768250337,40.9293267270005],[-72.5923353315257,40.930595697394],[-72.5945635540789,40.9320518461203],[-72.5976340307543,40.9333138276682],[-72.5995738581687,40.9338226034417],[-72.5998145446811,40.9340843226158],[-72.6016797481466,40.9342357192558],[-72.6027734532932,40.934064800719],[-72.6054748598291,40.9323374659897],[-72.6069687770112,40.9320802394466],[-72.6070323633603,40.9324778831806],[-72.6069461628222,40.9328093662763],[-72.6093580603084,40.9343501078545],[-72.6091164673958,40.935655669797],[-72.6091820785476,40.9364091447687],[-72.6081873821183,40.9365101180425],[-72.6083188469669,40.9371253450979],[-72.6090191915287,40.9380225881688],[-72.6099075983952,40.9378023087879],[-72.6101529696218,40.9353213636222],[-72.6102043191201,40.9343090995426],[-72.6107893891697,40.9325557791904],[-72.6121964437554,40.9332874952623],[-72.6125789868276,40.9332188522004],[-72.6117264209442,40.9324670999316],[-72.6112524886649,40.9314259410979],[-72.6119893416582,40.9302792509708],[-72.6147684883988,40.9288145183604],[-72.6151557619992,40.9288405423838],[-72.6150052923925,40.9298867893598],[-72.6156655774825,40.9307426315697],[-72.6161186571691,40.9319319631279],[-72.6161402194309,40.9325088803457],[-72.6154742821411,40.9337696546715],[-72.6168816457473,40.9344742978637],[-72.6176820204109,40.9368867930294],[-72.6181639387131,40.937234523058],[-72.6185371967985,40.9382510561836],[-72.6188734928032,40.9383750956745],[-72.6192318747875,40.9379051047022],[-72.6193199132786,40.9366323807862],[-72.6189211906498,40.9360972180024],[-72.6187869778548,40.9348739495255],[-72.6184402470197,40.933821934974],[-72.6169719614676,40.9333457399431],[-72.6168309627989,40.929938041809],[-72.6171709203368,40.9298144588433],[-72.6182054103365,40.9302141380148],[-72.6181715133075,40.931487981193],[-72.6188625423399,40.9328533561824],[-72.6205326541835,40.9334147574888],[-72.6203380817879,40.931618276469],[-72.6207416849636,40.9312933311663],[-72.6211802891977,40.931275357178],[-72.6209938420638,40.9303482554315],[-72.6216169539691,40.9300908867642],[-72.6226643752173,40.9305448363753],[-72.6245596704481,40.9307460229288],[-72.6253124874023,40.9316127235905],[-72.6264886273493,40.9314793064148],[-72.6260833236628,40.9306918263159],[-72.6252330484834,40.9300798343661],[-72.62330868377,40.9297789783524],[-72.6219293350243,40.9291425469509],[-72.6203914551905,40.9293044834932],[-72.6199214719052,40.9286462544496],[-72.6193096706877,40.9283408866734],[-72.6193477520692,40.9280038965265],[-72.6186501877932,40.9276066812816],[-72.6196579421334,40.9273032206396],[-72.6199807705954,40.9269946247848],[-72.6199822770702,40.9262290290031],[-72.6194990014136,40.9259623443589],[-72.6191608836255,40.9259733797989],[-72.6176640792581,40.9271629689175],[-72.6179824736358,40.9277009806769],[-72.6174841395201,40.9285553947052],[-72.6154144687162,40.928354990135],[-72.6145942700309,40.9280452888278],[-72.6143516754968,40.9275673838884],[-72.6146160317187,40.9259965617505],[-72.6149648358654,40.9256885177106],[-72.6154053310532,40.9257201445292],[-72.6166490827,40.9265114813327],[-72.6177467143827,40.9264125601691],[-72.6185822491066,40.9254480123534],[-72.6184468649084,40.9248777523243],[-72.6190160823882,40.924218455636],[-72.6189530763508,40.9238028153608],[-72.6200360969355,40.9230550386903],[-72.6200834597105,40.9226867137078],[-72.6224639431111,40.9222043763586],[-72.623208413818,40.9217063008809],[-72.6250025955788,40.9223197347011],[-72.6260902317073,40.9228915779503],[-72.626267814266,40.922989810693],[-72.6285304485828,40.9236848898537],[-72.6287252275909,40.9238420206464],[-72.6296917887855,40.9242311923044],[-72.6304205299917,40.9241515902924],[-72.6314937005493,40.9244033227245],[-72.6334121633313,40.924325609867],[-72.6352968602384,40.9238418400989],[-72.6378203572289,40.9241142347764],[-72.6377728076043,40.9236989210039],[-72.6361042983551,40.9233449715702],[-72.6320998702282,40.9237447197378],[-72.6296274316819,40.9234777528881],[-72.6281580780329,40.9227449684121],[-72.6267348519754,40.9224454684335],[-72.625292929282,40.9215285594812],[-72.6260087167818,40.9215613109818],[-72.62686369554,40.9212096036397],[-72.6276142792824,40.921369164224],[-72.6282627542214,40.9205448142945],[-72.6313337465298,40.9189911006888],[-72.6318262856135,40.9184787868215],[-72.6320854037589,40.9196190383715],[-72.6377695395333,40.918352965444],[-72.6391543437477,40.9184173501891],[-72.6396358452316,40.9181299615894],[-72.6406805391946,40.918074774429],[-72.6412017408241,40.9184862645369],[-72.6417748857383,40.9183763849356],[-72.6432234918975,40.9186086624539],[-72.6448596052026,40.9182007212366],[-72.645934442135,40.9184253315852],[-72.6468668242296,40.917498581066],[-72.6479321695627,40.9170699419051],[-72.6491555384358,40.9172705286795],[-72.6498962173538,40.9171234905568],[-72.654267854311,40.919252663431],[-72.6541423390045,40.9187096663253],[-72.6545851913716,40.9188627918019],[-72.6545484987855,40.9185152603615],[-72.6555108747292,40.9183952122975],[-72.6554820379102,40.9175524334794],[-72.6573685664822,40.9169647526361],[-72.6576632543196,40.9165428853651],[-72.6562428642435,40.9164149484745],[-72.6547998429104,40.9166963708856],[-72.6545041911807,40.916956077309],[-72.6531912764435,40.916181754975],[-72.6530420833428,40.9158049117157],[-72.6519400454236,40.9160346886351],[-72.6523041281167,40.9165465150416],[-72.6519943773287,40.9168059281237],[-72.6503397192029,40.9165245265437],[-72.6500607285268,40.9159783979831],[-72.6499607586121,40.916516805587],[-72.6476430315172,40.9164965786311],[-72.6466687385229,40.9167018876823],[-72.6458436619856,40.9171984714939],[-72.6429562152527,40.9175673490689],[-72.6427269112933,40.9175041147662],[-72.6433737800445,40.9166976606498],[-72.6418039049153,40.9169132756177],[-72.6412388933476,40.9167530994456],[-72.6402249289538,40.9168629654535],[-72.6393770935988,40.916746533872],[-72.6395279395996,40.9162407030654],[-72.6371151312218,40.9162858736213],[-72.6366755065016,40.9160021400816],[-72.6351511238549,40.9163987448913],[-72.6346301872284,40.916293484635],[-72.6338062856874,40.9156730884311],[-72.6323927623334,40.9159368202702],[-72.631586006038,40.9167489362258],[-72.6299322983297,40.9173364750786],[-72.6292644700863,40.9182054735702],[-72.627443720651,40.9189381644702],[-72.6267333086698,40.918797444271],[-72.6249445635131,40.9191119099614],[-72.6236876811917,40.9188743463524],[-72.6173526270608,40.9195543072543],[-72.6166067819316,40.9192641710764],[-72.614341467042,40.919208327108],[-72.6134982499258,40.9195827025568],[-72.6132718574062,40.9201815119263],[-72.6128284498803,40.9195102922034],[-72.6132600149158,40.9189022185917],[-72.6147046307585,40.9183556331526],[-72.6167986405167,40.9189438697863],[-72.6183815600822,40.918719858546],[-72.6183912008019,40.9180174815546],[-72.6194397494358,40.9178139448942],[-72.6197238416444,40.916991128203],[-72.6205503357232,40.916377665972],[-72.6200942502737,40.9160169670942],[-72.6184256134638,40.9157573377625],[-72.6188038787585,40.915040053188],[-72.6195007279756,40.9146265872341],[-72.6208302660371,40.9151944654184],[-72.6209111737015,40.9149664458135],[-72.6219982393998,40.9144529249922],[-72.6220028917747,40.9141782957783],[-72.6213879967593,40.9136521944131],[-72.6213483280547,40.913164976664],[-72.62170002298,40.9130010889007],[-72.622483095193,40.9132244046822],[-72.6229391518964,40.9131302197241],[-72.6247886375394,40.9121099546369],[-72.6256864479703,40.911988825718],[-72.6272358981049,40.9109938693885],[-72.6258722357407,40.9113801472835],[-72.6245390496208,40.9105420305583],[-72.622798604182,40.9118752952008],[-72.6225147563152,40.9118649403531],[-72.6221821613694,40.9107096406325],[-72.6212731175059,40.9099027478905],[-72.6216012011123,40.909589751652],[-72.6207569733914,40.9096038645462],[-72.6196828155853,40.9105454922005],[-72.6181443401685,40.910302056646],[-72.6178387027661,40.9096382037822],[-72.6179927638374,40.9083443210059],[-72.6177842711481,40.9080337628323],[-72.6186720788384,40.9062055796338],[-72.6190126795699,40.9061225374921],[-72.6193362356673,40.9049222246152],[-72.62060657026,40.9051285873438],[-72.6196723753651,40.9043842148274],[-72.6187948911141,40.9046858647089],[-72.6182851142584,40.9048104492593],[-72.6176877283062,40.9044198006093],[-72.6178302217715,40.9050802846712],[-72.6182702704966,40.9053686017577],[-72.6178217434719,40.9057916938433],[-72.6174961167578,40.9057264196167],[-72.6166682006459,40.9053084850227],[-72.616351603797,40.9049506540393],[-72.6163179645846,40.9039456329039],[-72.6156460139723,40.9039992994604],[-72.615648434932,40.9050261932945],[-72.6160957294681,40.9055668762685],[-72.615953279122,40.906041323612],[-72.6149327624165,40.9062544171606],[-72.6141445671115,40.9069812252569],[-72.6127799480414,40.9073943506814],[-72.6125865506422,40.907201191887],[-72.6123609288772,40.9061921965442],[-72.6129015790326,40.9054782918292],[-72.6128385128081,40.9051482169142],[-72.6123225842893,40.9053402037446],[-72.6116543095831,40.9061775662551],[-72.6117239065597,40.9065528139173],[-72.6120939540663,40.9082493632855],[-72.6125624883691,40.9097047497914],[-72.6123325412159,40.909970211496],[-72.6112913318178,40.9102819248697],[-72.6118133221682,40.911179962863],[-72.6117612504244,40.9117193280632],[-72.6101937908649,40.9130424715904],[-72.6056877398902,40.9149756739783],[-72.6011257966367,40.9155744443015],[-72.6008887905221,40.9141868811831],[-72.6015830975068,40.9137644646426],[-72.6017945878742,40.912471799035],[-72.601424307704,40.912081285255],[-72.6008031235833,40.9121854605958],[-72.6005158441521,40.9122290243238],[-72.6002940644815,40.9113236720867],[-72.6008217034383,40.9104203997844],[-72.6004158832205,40.9101102098158],[-72.5999603053191,40.9103754553638],[-72.5999483765905,40.908695329636],[-72.6006631606722,40.9062691988341],[-72.6012447659197,40.9049391955021],[-72.6009842805385,40.904591496493],[-72.599753633515,40.9066330882137],[-72.5992322728836,40.9089011062381],[-72.5991154092517,40.9113712003512],[-72.5990526834887,40.911505005708],[-72.5989732454681,40.9116699881318],[-72.5986703910465,40.9123077106451],[-72.5989811245914,40.9129897335877],[-72.598800761747,40.9131751337599],[-72.5986757441072,40.9133076415625],[-72.5990470411704,40.9143872499707],[-72.6001279201714,40.915423076861],[-72.6005752048261,40.9160854182674],[-72.6002925696848,40.9164308255383],[-72.598200415846,40.914527251157],[-72.5975316605412,40.912522690935],[-72.5964089847267,40.9111887251659],[-72.5964049872236,40.9104185104398],[-72.5970675261867,40.910544909037],[-72.5973506257569,40.9107804951194],[-72.5979225839966,40.9108059200009],[-72.5983915198463,40.9105409606332],[-72.5982664878335,40.9098132622571],[-72.5977286089807,40.9090724618986],[-72.5966854412553,40.9095596459899],[-72.5960226633404,40.9098700992364],[-72.5955671896436,40.9097840412961],[-72.5936926454958,40.9084163566124],[-72.5925591952877,40.9084872800898],[-72.5925656020724,40.9081676516601],[-72.592978200079,40.9079420715963],[-72.593105380862,40.9078726669435],[-72.5931552984457,40.9078466862612],[-72.5935011731862,40.9076602453052],[-72.593620121808,40.9071222835915],[-72.5921048732311,40.9065096823211],[-72.5916984152094,40.9055238940746],[-72.5915449865522,40.9051513875726],[-72.5902855350491,40.9040351862257],[-72.5898929748632,40.9036892063353],[-72.5896198977966,40.9034448038228],[-72.5895976887479,40.9035659395672],[-72.589399941706,40.9046381890601],[-72.5897794287096,40.9068349151402],[-72.5896754720717,40.9068777797071],[-72.5894733250816,40.9069681322245],[-72.5894150792169,40.9075704090313],[-72.589626600127,40.9083044282976],[-72.5897968075171,40.9088889613351],[-72.5900246418327,40.909010818285],[-72.5903764041317,40.9091938120507],[-72.5902940950955,40.9083138726065],[-72.5905975648631,40.9081715913797],[-72.5909017748425,40.9080293241039],[-72.5911818434969,40.9076118270292],[-72.5914662510142,40.9081987430551],[-72.5909642104496,40.9096609644381],[-72.5897309583118,40.9105989877529],[-72.5893556251181,40.9104109951518],[-72.589675287917,40.9100889068939],[-72.5899949471227,40.909766817746],[-72.5889972000147,40.9093496398615],[-72.5886586348656,40.9092119543019],[-72.588516240215,40.9087811262572],[-72.5883738482593,40.9083502987999],[-72.5888139185439,40.9079001235738],[-72.5886897569986,40.9075597507124],[-72.588046007198,40.9075913264609],[-72.5879051989722,40.9078721143075],[-72.5874420033572,40.9087946894114],[-72.5876242005614,40.909293906325],[-72.5881602414612,40.9094087026674],[-72.5881448434389,40.9094444099839],[-72.5881140491909,40.9095158252378],[-72.5880737013599,40.9096050553299],[-72.5870548124017,40.9099530450214],[-72.5865395926537,40.9093883106011],[-72.5859106542755,40.9094201848705],[-72.5846000257507,40.9089558855683],[-72.5839174813062,40.9082390133012],[-72.5844845383378,40.9082148617475],[-72.5849160970851,40.9079176483687],[-72.5851389735987,40.9072377544774],[-72.5847906078298,40.9070232899581],[-72.5840003176535,40.907146352037],[-72.5838457274746,40.906949455045],[-72.583258982067,40.9069236498412],[-72.5829364599306,40.9074663418353],[-72.5825144808174,40.907439482473],[-72.5821353423602,40.9074180232183],[-72.5820684924317,40.9066870241599],[-72.5820500868498,40.906479468665],[-72.5819396641385,40.9052746683592],[-72.5831126671685,40.9032410688527],[-72.5823362056577,40.9015809465297],[-72.5819755958515,40.901316676708],[-72.5810724826655,40.9006897398337],[-72.5809336722928,40.901200249661],[-72.5805173768205,40.9014662425193],[-72.5807260734273,40.9017048124605],[-72.5814570882695,40.9016796108581],[-72.5817840858127,40.9019296669283],[-72.5819918185272,40.9027852207104],[-72.5815822469448,40.9034161571633],[-72.5817194870623,40.9039054333703],[-72.5810938634675,40.9042751272076],[-72.58027054134,40.9060368141408],[-72.5794483744459,40.9061591760403],[-72.5793206367074,40.9057961999365],[-72.5790374940181,40.9058488051743],[-72.5786102121498,40.9061911224751],[-72.5783267559484,40.9064148591097],[-72.5779942005286,40.9066826009563],[-72.5779458621831,40.9068887551934],[-72.5788268345924,40.9072495337456],[-72.5786967908786,40.9076206094935],[-72.5771636712175,40.9073992572275],[-72.5757517702208,40.9074956914571],[-72.5732897638098,40.9066422577962],[-72.5717877492137,40.906727739344],[-72.5719948504126,40.9056512145192],[-72.5709523896613,40.9049807326051],[-72.5692974952786,40.9055943969974],[-72.5683684773747,40.905493747183],[-72.5683077800076,40.9051051502592],[-72.568578990375,40.9048316398189],[-72.5693326993563,40.9046944017831],[-72.5685789499509,40.9038002944462],[-72.5685791376987,40.9032283301767],[-72.5672826738093,40.9029307691619],[-72.5670719721628,40.9025660297109],[-72.5675544734716,40.9023375116436],[-72.5674938865972,40.9015615997137],[-72.5665591006109,40.8999610849835],[-72.5659260865763,40.8994793436582],[-72.5656247637822,40.8974193014199],[-72.5655874504603,40.8974050025896],[-72.5643590079025,40.8969151866797],[-72.5647510039464,40.8978782461929],[-72.5639369605174,40.8982663871843],[-72.5631833153165,40.8991106707165],[-72.5637259381723,40.899608532801],[-72.5641727709744,40.9000683396453],[-72.5639840708658,40.9006408262248],[-72.5643535982479,40.9015493679114],[-72.5652028421613,40.9022248383923],[-72.5652634353238,40.9026359532327],[-72.5666501754077,40.9040523555946],[-72.5676446499531,40.904370576763],[-72.5672531066601,40.9055377803923],[-72.5667103580402,40.9057695293189],[-72.5664690301306,40.9061787767896],[-72.566619934522,40.9064747005521],[-72.5690316191073,40.9064309823105],[-72.570674839883,40.9056909730409],[-72.57117053385,40.9058725529473],[-72.5710877379269,40.9062896522871],[-72.5710420963239,40.9065228827148],[-72.5690919688265,40.9074771094751],[-72.5656909471608,40.9106390175696],[-72.5638585393897,40.9142212845661],[-72.5637815429901,40.9152464970284],[-72.5645815888703,40.9159929901257],[-72.5657045737053,40.9166156886142],[-72.5671066839637,40.9168524450757],[-72.5677545390652,40.9172579305061],[-72.568200852641,40.9177762579298],[-72.5680832604754,40.917967436288],[-72.5675247967279,40.9175728461073],[-72.5648668309225,40.9168547123401],[-72.5604675438209,40.914491883972],[-72.557304537078,40.9138709800505],[-72.5543080016319,40.9142713516765],[-72.5531385424557,40.9136250375097],[-72.5525314466137,40.9143102252285],[-72.5513804334435,40.9145515096992],[-72.5461803476735,40.9123287596342],[-72.5409693267115,40.9108306347605],[-72.5336977681171,40.9077389635413],[-72.5249274863538,40.9030519051689],[-72.5222023633961,40.9014981688148],[-72.5088187583385,40.8969178477841],[-72.5054872824455,40.8963144038098],[-72.5034133949496,40.896656843795],[-72.5029897485633,40.8964405034305],[-72.5020973522786,40.8959843218654],[-72.5019812010107,40.8953648032365],[-72.4977452446957,40.8946514471162],[-72.488965995051,40.895181116606],[-72.4835883994859,40.8963879185496],[-72.4796540740872,40.8979142680087],[-72.4780547827256,40.8982395790856],[-72.4736439208316,40.8996291906556],[-72.4706483483795,40.9014505221011],[-72.4578568444852,40.9121489679493],[-72.4536846856234,40.9166595718642],[-72.4527649769608,40.9173418132931],[-72.4522331087356,40.9173165456953],[-72.4508797015386,40.9165390160632],[-72.4492370655663,40.9153137148728],[-72.4489552541802,40.9155596803213],[-72.4489359350117,40.9161582342392],[-72.4480717709797,40.9162832180481],[-72.4471863797576,40.915822254525],[-72.4468557718853,40.9143287360477],[-72.4471229092912,40.9140013854147],[-72.4480927520315,40.9138292082179],[-72.44814740733,40.9135466901476],[-72.4475283917425,40.9116414604441],[-72.4476886278329,40.9101002660996],[-72.4442394924006,40.9075243200555],[-72.4435868340074,40.9075548821976],[-72.4432611291399,40.9084393749949],[-72.4417652599187,40.9096311663483],[-72.4418416499555,40.9099976550353],[-72.4425522074637,40.9106214133873],[-72.4421956023471,40.9113250719341],[-72.4418409690325,40.9114387989127],[-72.4409318613885,40.9111529027028],[-72.4402958101499,40.911598146834],[-72.4403490155676,40.9121037341472],[-72.4408409321189,40.9123938827448],[-72.4409432358567,40.912819494626],[-72.4406678528147,40.9127638393682],[-72.439966642277,40.9133202255538],[-72.4394530996836,40.9144932681389],[-72.438259204535,40.9148360328492],[-72.4364493372911,40.9148723502289],[-72.4356907073387,40.9144366367512],[-72.4336606890697,40.9151570641096],[-72.4335682066129,40.9155333082563],[-72.4341860633738,40.9156371380617],[-72.4359540367861,40.9164736255055],[-72.4372123061063,40.9165016127997],[-72.4382728140116,40.9164621404544],[-72.4393166159475,40.9167015109354],[-72.4411000709255,40.9179661078564],[-72.4410642595867,40.9184517031754],[-72.4438728414242,40.9198471023405],[-72.4458173517562,40.9208269678186],[-72.4458119798308,40.9218716875082],[-72.445094876299,40.9226078958426],[-72.4438917338929,40.9223019917672],[-72.443067085852,40.9217657823103],[-72.4422079469957,40.9221430348227],[-72.4408397184949,40.9222882997034],[-72.4404012552963,40.9225532825819],[-72.4411263969532,40.9231098198682],[-72.4411010033768,40.9233254295315],[-72.4402911505885,40.9241361080775],[-72.4375876033673,40.9250127765063],[-72.4369504570824,40.9248680029125],[-72.4358792798865,40.92374078977],[-72.4356186669445,40.9234557673747],[-72.4352654538663,40.9226867971955],[-72.4340475144109,40.9221507775216],[-72.4338313267529,40.9219838338178],[-72.4331435478253,40.9221126314678],[-72.4341185127593,40.9245347661501],[-72.4339896395504,40.9256397841314],[-72.4342325404099,40.9258838833393],[-72.4337905764767,40.9275223615354],[-72.4339667540702,40.9279946599999],[-72.4348717770745,40.9270870660489],[-72.4354983124593,40.9269118592015],[-72.4354928821434,40.9266685436411],[-72.4354079751794,40.9259280624704],[-72.4353307874386,40.9256786462469],[-72.4367957662922,40.926008478852],[-72.4375455406525,40.926407959781],[-72.4379257975123,40.9267857104454],[-72.4376811287682,40.9276044306751],[-72.4380490589457,40.9277252011276],[-72.4386964846524,40.927527923581],[-72.4403383956843,40.9263529342813],[-72.4406296860933,40.9254406670999],[-72.4413461491262,40.9250692664795],[-72.4422098684921,40.9258630619681],[-72.4428933903036,40.9263646205523],[-72.4432067154882,40.9265156887334],[-72.4444959910587,40.9262065156777],[-72.4448437145321,40.9254846401924],[-72.4456689770207,40.9256020154302],[-72.4460636401627,40.925318027309],[-72.4470903291925,40.9251966605992],[-72.4481506232987,40.9242023272704],[-72.4487744215169,40.9242701821736],[-72.4486310252447,40.9249875858233],[-72.446693932302,40.9305156530827],[-72.4450429258278,40.9368741836657],[-72.4448029094586,40.9394404201866],[-72.4436099081338,40.9443273894161],[-72.4432462242927,40.9455172777471],[-72.4429574877941,40.9457270434369],[-72.437511422638,40.94744352204],[-72.4334453673877,40.9480285618313],[-72.4212362691398,40.9479180854182],[-72.416727633712,40.9483485111305],[-72.4165989985566,40.9471161501973],[-72.4160506022284,40.9460815406388],[-72.4167592957325,40.9455570014349],[-72.4170695432889,40.945730589409],[-72.417427238062,40.9453918315087],[-72.4179037008954,40.9455105956103],[-72.4183959983324,40.9442516168686],[-72.4182343851245,40.9432932355786],[-72.417895576532,40.9426146100576],[-72.4180266712747,40.9420320818419],[-72.418909544519,40.9409034474302],[-72.4192068320809,40.9391987434187],[-72.4187717456494,40.9387431432046],[-72.4186286242617,40.93809142032],[-72.4178123961299,40.9379110031407],[-72.4171175402745,40.9388637005761],[-72.4183385205272,40.9391162421664],[-72.4172501037627,40.9394431311524],[-72.4164249706315,40.9394336403966],[-72.4162464035193,40.939177435621],[-72.4170851820597,40.9374848782889],[-72.4164734248596,40.9370298118596],[-72.4152220797537,40.9360154641141],[-72.414326626502,40.9357927125875],[-72.4140539815251,40.9354938614737],[-72.4117218768941,40.9362476429924],[-72.4116882825974,40.937183633898],[-72.4120060535443,40.9372583247034],[-72.4129576559928,40.9368608603954],[-72.4123873326869,40.9375506131499],[-72.4107885973825,40.938284813227],[-72.4104206636118,40.9381639555351],[-72.4102862190514,40.9378051507919],[-72.4084672114495,40.937223825412],[-72.4075429761761,40.9372435669242],[-72.4071177155173,40.9372790345845],[-72.4061284529972,40.937234251613],[-72.4057908517403,40.9368888831665],[-72.40631760406,40.9353605172842],[-72.4058852745582,40.9348373771102],[-72.4046464438824,40.934494230217],[-72.4036145598954,40.9349888962148],[-72.4035178876961,40.9354100539797],[-72.404253329436,40.9359265207633],[-72.4041625259305,40.9364063583515],[-72.4033761604937,40.9366588550473],[-72.4033785616904,40.9372984170946],[-72.4042523592555,40.9377324339947],[-72.4049456807884,40.938491140353],[-72.4046374068307,40.9387994477189],[-72.4035377826847,40.9386530777328],[-72.403955884669,40.9391984238018],[-72.4050181469841,40.9392944092384],[-72.4048968744207,40.939926682198],[-72.4042568220859,40.9400248543301],[-72.4042551880503,40.9404076219216],[-72.4055889958044,40.9403565967758],[-72.4057059672342,40.9390757111499],[-72.4063594772303,40.937685306741],[-72.4077809111488,40.937802860495],[-72.4081744702613,40.9378567492949],[-72.4088299224151,40.9382182661311],[-72.4074613327915,40.9391782696111],[-72.4068842307985,40.9399444027563],[-72.4067510043537,40.9406169410512],[-72.4075907503796,40.9416761630195],[-72.4074120673847,40.9423341686065],[-72.4087315065858,40.9420440951213],[-72.4089512982847,40.9417202766274],[-72.4087511689108,40.9414275472403],[-72.4092296080378,40.9413617449876],[-72.4114826986531,40.9428445204032],[-72.4149451255583,40.9434942068867],[-72.4157436595739,40.9440345345187],[-72.4159489910917,40.9446516266763],[-72.4154569406914,40.9468923803394],[-72.416158127873,40.947417011391],[-72.4156773198885,40.9479421539362],[-72.4114359772752,40.9485044671422],[-72.4077171846625,40.9496188096387],[-72.4065566439605,40.9501511360566],[-72.4028842232812,40.9526534626837],[-72.4017191514768,40.9537530862263],[-72.4006814320336,40.9555040834014],[-72.4007525121288,40.9562848030696],[-72.4015065283339,40.9570899355307],[-72.4007732856697,40.9581767679451],[-72.4011237157671,40.9584999230011],[-72.400337568621,40.9587208755068],[-72.3999377383695,40.9593153297285],[-72.3969889986864,40.9615050273918],[-72.3918461059556,40.9664146784888],[-72.3869084647925,40.9722384600446],[-72.3761118577344,40.9865574714409],[-72.3726709894976,40.9916400763056],[-72.3709388777297,40.995703259088],[-72.3705840225313,40.9993204893608],[-72.3711280332842,41.0042146978778],[-72.3721875395679,41.0076209993021],[-72.3754554650445,41.0146489039085],[-72.3757291170329,41.016704226865],[-72.3767652311866,41.0194929728658],[-72.3760640008859,41.0190896984675],[-72.3751595222607,41.0172541822546],[-72.3745678945095,41.0168804181624],[-72.3716862706562,41.0131083216234],[-72.3701315366311,41.0077091756229],[-72.3676731701936,41.0034377478841],[-72.3680380550823,41.0001135021287],[-72.3666786354611,40.9959076737676],[-72.3671053361194,40.99595795966],[-72.368387671306,40.9961088604994],[-72.3683075523624,40.9973004608976],[-72.368357062111,40.9986886747735],[-72.36894091674,41.0001116126374],[-72.368350742463,41.0032911063295],[-72.3691099149978,41.0041190786907],[-72.3703262716217,41.0039712204185],[-72.3700224371381,41.0010730407394],[-72.3694754179273,40.9994888260571],[-72.3695577584046,40.9979234837552],[-72.3691706177548,40.9971400369349],[-72.3693238990884,40.9958645401615],[-72.3701659133604,40.9944021112866],[-72.3683305294708,40.993549558159],[-72.367876759878,40.9919584547081],[-72.3675684302248,40.9914920503597],[-72.3671809643848,40.990830184326],[-72.3666802739882,40.9901387071807],[-72.3663672506375,40.9900144591341],[-72.3656959926263,40.9909943868758],[-72.3638845272795,40.9910925522286],[-72.3636319389879,40.9897131994692],[-72.3632989263255,40.9897551152133],[-72.362988171221,40.9914188054989],[-72.3626235270809,40.9916761636397],[-72.3632277114831,40.9939822844964],[-72.3623655641689,40.9942507698913],[-72.3608917818256,40.9934063790261],[-72.3602388395647,40.9933103529317],[-72.3595062059583,40.99357277809],[-72.3607241705666,40.9943482754231],[-72.361176731027,40.9947369393876],[-72.3604095527064,40.9958272238538],[-72.3595256463994,40.9958024608873],[-72.3588933806614,40.9944999610306],[-72.35783931188,40.9940299390727],[-72.3578591969872,40.9940529127103],[-72.3586992807796,40.9957880172318],[-72.3590542913867,40.9963681028127],[-72.3607946065697,40.996380972693],[-72.3616447622732,40.9957249229029],[-72.3621900225826,40.9957644326332],[-72.362682033457,40.9955370138865],[-72.3625523185266,40.9949891187517],[-72.3627105666454,40.9948216085972],[-72.3630964694167,40.9946277860068],[-72.3639398823656,40.9943633702982],[-72.3645694217167,40.9944318182553],[-72.3675684688523,40.9943652945335],[-72.3678540280098,40.9947321017056],[-72.3677177365132,40.9954495494663],[-72.3668805434993,40.9952592801695],[-72.3657565920771,40.9952921259642],[-72.3657439375097,40.9959268315941],[-72.3642002150333,40.9964994891072],[-72.3621184861433,40.9963842786422],[-72.3611483819932,40.9969925487865],[-72.3587291650342,40.9969370966558],[-72.3581427807493,40.9969596767192],[-72.3520049634172,40.997606842699],[-72.3505516249331,40.9979967498648],[-72.3502493301619,40.9978456831718],[-72.3502551611264,40.996643382916],[-72.3505618630324,40.9964432771976],[-72.351346726486,40.9965108673552],[-72.3515402334797,40.9963171629583],[-72.3504804047007,40.9947120580359],[-72.3494633842383,40.9941347283027],[-72.3489753870366,40.99416853271],[-72.3483508548949,40.994401848891],[-72.3483216946825,40.9947029122027],[-72.347527751058,40.9947882120152],[-72.3459210162559,40.9955393116727],[-72.3462069562991,40.9965231595491],[-72.3466857224129,40.9961829164694],[-72.3471686629979,40.9964237194989],[-72.346534534154,40.9970621194893],[-72.3463426144834,40.9978638241293],[-72.346520992051,40.9980660876361],[-72.3462753216855,40.9982630852909],[-72.3467120322709,40.9999709650503],[-72.3481393366798,40.9998056824805],[-72.3481462087917,40.998504329546],[-72.3485244731882,40.9977429399137],[-72.3483019326445,40.9975486696237],[-72.3476005029179,40.9975865605722],[-72.3478217930066,40.996515320479],[-72.3483141910549,40.996094321312],[-72.3493045055022,40.9961891724342],[-72.3498221219554,40.9979934772178],[-72.3492196847765,40.9992315865518],[-72.3491798732397,41.000113355688],[-72.3486478873352,41.0005019212555],[-72.3437302058393,41.0014334181736],[-72.3408862537359,40.9995934215234],[-72.3378134396441,40.9986622701343],[-72.3365904444702,40.9970757872368],[-72.3349758377313,40.9959530983373],[-72.3332204667841,40.9952639659373],[-72.3316062678804,40.995109490012],[-72.3285839040733,40.9957149527486],[-72.3252888449836,40.997201190163],[-72.3230955022162,40.9988165221366],[-72.3207521731357,41.0010317857411],[-72.3187690047038,41.0036336719137],[-72.3176336761185,41.0062507685154],[-72.316432643855,41.0098615855531],[-72.3169599091127,41.0109141690441],[-72.3197847944742,41.0131461087298],[-72.3222668449941,41.0158834035074],[-72.3242421109465,41.0185863548371],[-72.3260120462795,41.0217753814963],[-72.3269638203061,41.0226846577536],[-72.3287091256306,41.0236573713409],[-72.3302965484506,41.0255586131669],[-72.3324854095231,41.0306081723536],[-72.3327733195716,41.0330512103184],[-72.3319422144405,41.0345045864367],[-72.3292060422048,41.0349185241446],[-72.3280666846754,41.0353334316107],[-72.3261374403133,41.0369504232514],[-72.3248279104281,41.0373253181613],[-72.321952338525,41.0375061682239],[-72.320811167297,41.0375786985099],[-72.3193925478004,41.0384238547867],[-72.3178376404004,41.0384867232532],[-72.3166832540563,41.0391218353815],[-72.3159418663675,41.0392351559279],[-72.3128346360205,41.0410136010347],[-72.3127327185583,41.0407410159424],[-72.3106868800589,41.0396214364086],[-72.3084524312824,41.0377318274522],[-72.3063539712703,41.0345708839723],[-72.305675433312,41.030101108998],[-72.3047689442571,41.026720328857],[-72.3041438084475,41.0254087048303],[-72.3025001241412,41.0233932035806],[-72.3017802124759,41.022547705239],[-72.3015299831603,41.0221410350934],[-72.2997429564807,41.0205814875396],[-72.2976893412659,41.0182185471769],[-72.2977517975343,41.0144010917151],[-72.2980814873284,41.0120084902217],[-72.2986509275904,41.0110040694856],[-72.3003181881813,41.0095029848075],[-72.3005180094331,41.0093230271846],[-72.2992043032801,41.0050995146873],[-72.299382205639,41.0044371751442],[-72.2992323199372,41.0036860873891],[-72.2996715835348,41.003173986469],[-72.300422454738,41.0031465545216],[-72.3013484201666,41.0041815324814],[-72.3026603189092,41.0057569496889],[-72.3048224811531,41.0065101071977],[-72.309954769272,41.0071570011187],[-72.3132353645873,41.0067787306989],[-72.314028633577,41.0071169796284],[-72.3143920676865,41.0074632144045],[-72.3138448535413,41.0082565718536],[-72.3145512922739,41.0086108057102],[-72.3151622463802,41.0079495311671],[-72.3156047978116,41.0063476082223],[-72.3122804877796,41.004639825231],[-72.3118725888602,41.0046933537269],[-72.3111411652846,41.0053202745261],[-72.3105875407615,41.0053208582088],[-72.3098608117815,41.0044257114905],[-72.3099964735591,41.0040866169325],[-72.3108225642943,41.0038176875586],[-72.311807349611,41.0042144639941],[-72.3123087406936,41.0040910620874],[-72.3123518625222,41.0038894129672],[-72.3104536648347,41.0016339019544],[-72.3122906477255,41.0008436443978],[-72.3142754906171,41.0006377521558],[-72.315787436987,40.999817340159],[-72.3163028157368,40.9998608745699],[-72.3165856260495,41.000124161787],[-72.3172061265523,41.0024849221035],[-72.3177704311457,41.0015793587927],[-72.3197016482082,40.9995437146804],[-72.3215021828546,40.9981084604567],[-72.3220970247779,40.9972170932338],[-72.3231000108606,40.9964477954143],[-72.324450194004,40.9959477569839],[-72.3258552893641,40.9949896218415],[-72.3267026405272,40.9948336556628],[-72.3271856978931,40.9946467129996],[-72.3281448830209,40.9944257790915],[-72.3291018187672,40.9941867716373],[-72.3286164904602,40.9932162733416],[-72.3285941269012,40.9924456581764],[-72.3278067409783,40.9917068353493],[-72.3276902420623,40.9912988187385],[-72.3263150174821,40.9900689759277],[-72.3255109929634,40.9904961548075],[-72.3259722572006,40.9907005144364],[-72.3267230996578,40.9917177174121],[-72.3266389158376,40.9926975242351],[-72.3269072686641,40.9931901289106],[-72.3266926180236,40.9939237190336],[-72.3249869301997,40.9943975149568],[-72.3243100253786,40.9949132029893],[-72.3235205526693,40.9950524822799],[-72.3226603672757,40.9956719844512],[-72.3220295621984,40.995837459093],[-72.3214752594472,40.9958200661011],[-72.3201358731553,40.9950998777579],[-72.3202056237438,40.9942953772255],[-72.3179006024203,40.9943588153253],[-72.3167104074324,40.9935339783034],[-72.3155859278008,40.9935618176815],[-72.3150580462988,40.9933333464831],[-72.3136066436841,40.991916936346],[-72.3110598174457,40.9908397219378],[-72.3098677180294,40.9899922530208],[-72.3088646295387,40.989649074079],[-72.3082311025661,40.9895351942302],[-72.3066483258327,40.9890883780514],[-72.3060200683775,40.9891007062113],[-72.3050937831487,40.9894077913145],[-72.3046666944182,40.9894968741789],[-72.3044680993668,40.9897579319266],[-72.3038285276306,40.9897925007311],[-72.303852014982,40.9900182244559],[-72.3047343609153,40.9901334474025],[-72.3049850672363,40.9898150635776],[-72.3060577383306,40.989470872025],[-72.3074112362574,40.9896736528867],[-72.3077378547115,40.9897713570824],[-72.3082571123868,40.9899366112445],[-72.3088520674978,40.9900856177803],[-72.3103872065716,40.9911933028694],[-72.3104255322949,40.9916940832157],[-72.3117761313583,40.9928469788185],[-72.3113964224708,40.9930677932585],[-72.3099657898039,40.992457945026],[-72.309091719151,40.9912801342069],[-72.3082264492929,40.9912193850328],[-72.3068581004178,40.9917818570636],[-72.3063237806902,40.9926610502978],[-72.3067909944695,40.9933384893838],[-72.3087598006366,40.9933755019845],[-72.3085923142435,40.9945334845489],[-72.3068136823203,40.9941496449055],[-72.3053514091924,40.994426183194],[-72.3048963136863,40.9934698064548],[-72.3043681761644,40.9930116035101],[-72.3038906551156,40.9928428054777],[-72.3024719763301,40.9930527753832],[-72.3012517928831,40.9935871259502],[-72.3014548929856,40.9955103618659],[-72.3025741713718,40.996630923278],[-72.3035671277643,40.9969874305787],[-72.3049083960268,40.998077138824],[-72.3059317406288,40.9982722123245],[-72.3073548445154,40.9978101097411],[-72.3072937357199,40.9969935529016],[-72.3079969432125,40.9964560636688],[-72.3085151417741,40.9962835318662],[-72.3088819122265,40.9961074597366],[-72.3100093527053,40.9959896857147],[-72.3107231998441,40.9959388038767],[-72.3124225734098,40.9952398997598],[-72.3126410257206,40.9950018092263],[-72.3123030543579,40.9942868774932],[-72.3127937878279,40.9935462473213],[-72.3131677007852,40.99355947372],[-72.3145681617367,40.9944928302547],[-72.314857478547,40.9956929967074],[-72.3144048884422,40.9974703248474],[-72.314644524824,40.9978632105491],[-72.3152418622671,40.9981203238653],[-72.3153848803486,40.9986055298874],[-72.3144567239291,40.9999259269792],[-72.314084509686,41.0000163237689],[-72.3125694991627,40.9994856009422],[-72.3118001343427,40.9995487086209],[-72.3110418053259,40.9991211911032],[-72.3093950829174,40.9989251119616],[-72.3076622012933,40.9993124465531],[-72.3070528300186,40.9987127491836],[-72.3064963201068,40.9987672879377],[-72.3066793608291,40.9996182203542],[-72.3064110906476,41.0001298458526],[-72.3053002716965,41.0009865389063],[-72.3021048402634,41.0015782428855],[-72.3016286038054,41.0015040384041],[-72.3016571010612,41.001315560788],[-72.3013786987816,41.0008181612898],[-72.3002807005862,41.0005582490252],[-72.2995816460051,41.000609412719],[-72.2987628073691,41.0009189628293],[-72.2985016060306,41.00163789237],[-72.2979816665341,41.0017968267797],[-72.2977367372786,41.002880916088],[-72.2972916993104,41.0033703566843],[-72.2958889979606,41.0027294646727],[-72.2953715162546,41.0030640796358],[-72.2940859138953,41.0029032819208],[-72.2942919847266,41.0025523508176],[-72.2924131592081,41.002017320402],[-72.2922156816609,41.0019586366575],[-72.290346123163,41.0019416873023],[-72.2895869748827,41.0022075417182],[-72.2885238232355,41.0024211996309],[-72.2869255308005,41.0021854081843],[-72.2863358119693,41.0015815634891],[-72.2843187986108,41.0008675112436],[-72.2809269289812,41.0004136973249],[-72.2776030654119,41.000420742037],[-72.2734407790351,41.0011193891928],[-72.2714747513571,41.0017663584037],[-72.2700984532901,41.0026524453253],[-72.2675310987508,41.0050279207555],[-72.2664704408269,41.0070473097198],[-72.2650894607406,41.011292782441],[-72.2639752659206,41.0125903248881],[-72.2619093491763,41.0130546155927],[-72.2593230518626,41.0130381300179],[-72.2556345163054,41.0126665747989],[-72.2541287647177,41.0129729427838],[-72.2532356327128,41.0128976035593],[-72.2535137753793,41.0125709834662],[-72.2532524204288,41.0114208812388],[-72.2538019118033,41.0104657502499],[-72.2545361291395,41.0092673312259],[-72.2550883774436,41.0089427382852],[-72.2555249981976,41.0079128528129],[-72.254806940655,41.0065402079926],[-72.2552137409347,41.0059239276916],[-72.2550630781902,41.0051142234008],[-72.2563154976813,41.0033697160381],[-72.2560524889324,41.002796017918],[-72.2560768215985,41.001260928551],[-72.2549603324813,41.0001084655192],[-72.2549313142027,40.9989819156632],[-72.2541354050643,40.9976434379724],[-72.2546822544935,40.9970169865449],[-72.2555561975857,40.9972810004066],[-72.2563376303732,40.9964619799279],[-72.2560567945575,40.9960319663049],[-72.2562199007654,40.9952882822938],[-72.2565485727683,40.9951024637168],[-72.2565518794668,40.9944675582689],[-72.2547714446248,40.9937946546077],[-72.2551730068282,40.99514624804],[-72.2552646933777,40.9957834176086],[-72.2542366874177,40.9964389325495],[-72.2527840217717,40.9966925115772],[-72.2526176573744,40.9976387666116],[-72.2521862279844,40.9975969501203],[-72.2517452629777,40.9971946305519],[-72.251026087931,40.9958174313537],[-72.2506117498876,40.9957580037354],[-72.2504584811305,40.996299259555],[-72.2514323797643,40.9978401616266],[-72.2534826343817,40.9987447240871],[-72.253538739561,41.0010788379419],[-72.2532144746929,41.0019087424509],[-72.2528834769518,41.0028825953392],[-72.2514779611801,41.0032138388366],[-72.2512960954542,41.0026375631876],[-72.2501908056337,41.0020212294408],[-72.2504362262677,41.0028557191794],[-72.2501641508226,41.0034301652166],[-72.2509397580355,41.0049167981202],[-72.2512167257056,41.0058150870475],[-72.2504638018519,41.0068554184778],[-72.2489968655694,41.0068744382208],[-72.2492799336985,41.0093220490164],[-72.2474833246899,41.0102248758298],[-72.2473092725103,41.0110493480804],[-72.2477062021018,41.0112614813088],[-72.2521255503802,41.0116056600861],[-72.2525324270168,41.0120972334482],[-72.2519355522061,41.0125468449789],[-72.2506417814659,41.0127771637874],[-72.2473005768184,41.0128460047459],[-72.2465487560958,41.0139809212228],[-72.2465856813456,41.0149140102669],[-72.2463568166623,41.015358884345],[-72.2428130023924,41.0188904017086],[-72.2421354885135,41.0199865342143],[-72.2418654243964,41.0225920487586],[-72.2431460770385,41.0254958645064],[-72.2429622889178,41.0278332391868],[-72.2413750879817,41.0308981031832],[-72.2392508112866,41.0338960371267],[-72.2391576209573,41.0348980624171],[-72.2404337550736,41.0373784772425],[-72.2407037122912,41.0413434278122],[-72.2419589138646,41.0425848893358],[-72.2428832614274,41.0430438383819],[-72.2451607089632,41.0432919506669],[-72.248059230127,41.0428928526165],[-72.2495471869871,41.042478036161],[-72.2502993320015,41.0417529388477],[-72.2521929797221,41.0413072728214],[-72.2531001110724,41.0406443995714],[-72.2575815446151,41.0398280212475],[-72.2594508156522,41.0399670971923],[-72.262145854031,41.0400762425462],[-72.2618966469982,41.0410835839543],[-72.2599372434971,41.0418971247671],[-72.2551344610177,41.04203492664],[-72.2516427759836,41.0428793393637],[-72.2484229777484,41.0434239324302],[-72.2467662624806,41.0436770833365],[-72.2415518225307,41.0444980955056],[-72.2395110756823,41.044669893331],[-72.2339287019617,41.0444549706735],[-72.2317727048556,41.0447859868432],[-72.2239919883447,41.0427614307805],[-72.2167873937648,41.0403269502029],[-72.208589878725,41.0348372003104],[-72.2039857613657,41.0328206547576],[-72.2009506262101,41.032238093469],[-72.1961479012229,41.0322654482508],[-72.1945967568656,41.032065576069],[-72.1903208623515,41.0326053864389],[-72.1877883148345,41.0334037550228],[-72.1870539914971,41.032300521282],[-72.1858438404351,41.0318971958805],[-72.1845461674133,41.0308792618212],[-72.1835631706423,41.0294907211421],[-72.1839982858199,41.0280377595392],[-72.1845728878015,41.027340265915],[-72.1854294296282,41.0268117779385],[-72.1864831408801,41.0265402854384],[-72.1877482679391,41.0268548770573],[-72.190769932857,41.0291262210832],[-72.1907596004345,41.0293691515471],[-72.1911207025175,41.02921583238],[-72.1934776177184,41.0296245182529],[-72.1952830329118,41.029681982639],[-72.1957195647325,41.0302555272944],[-72.1966178153379,41.0303719532095],[-72.1993671020785,41.0302946917248],[-72.2000409283731,41.0300588760178],[-72.2008385730565,41.0308303178955],[-72.2019003341117,41.0313514740319],[-72.2033948154358,41.0309058893724],[-72.2040651580637,41.0299269081142],[-72.2045088746101,41.0286992424341],[-72.2044626446106,41.0280000968585],[-72.2036321647069,41.0256336858053],[-72.2019338206105,41.0221383688668],[-72.2012627970596,41.0212574258025],[-72.2017080667931,41.0187643561792],[-72.2022471080659,41.0179172957693],[-72.2034228186181,41.017585560233],[-72.2050080567354,41.0187993998021],[-72.2073443331426,41.019162265309],[-72.2051410577031,41.0178163833191],[-72.2047606966388,41.0171271467305],[-72.2048160876575,41.0165205325597],[-72.2053804973539,41.0162144793048],[-72.2056034080034,41.0142473994668],[-72.2047803338109,41.0150290439666],[-72.2045520350663,41.0159106742577],[-72.2033882164117,41.0166119883491],[-72.2030875161501,41.0171315876167],[-72.2019936933242,41.017442791864],[-72.2015792483813,41.0174012055086],[-72.1960673358167,41.0152857480199],[-72.1954406001075,41.0142752504308],[-72.1952702759364,41.0129651239717],[-72.1946558615197,41.0114550462086],[-72.1927150297888,41.009768555876],[-72.1916459968715,41.0082563949263],[-72.1915648906794,41.0075068562947],[-72.1920624917698,41.0067263841172],[-72.1917605949523,41.005926432555],[-72.1911756713281,41.0054393239751],[-72.1892498908697,41.004820446445],[-72.1880490679137,41.0047506249663],[-72.1866404574459,41.0050585076147],[-72.1853096797093,41.0040442784618],[-72.185079806218,41.0035793188717],[-72.1852153098921,41.0028575835083],[-72.1866743733395,41.0023933307752],[-72.1877222644066,41.0024414212891],[-72.1878091000535,41.0021643295252],[-72.1870570817017,41.0016415994021],[-72.1854838468732,41.0022922115013],[-72.1849018023495,41.0020708408588],[-72.1852266250714,41.0000612566933],[-72.1857710113201,41.0001195841612],[-72.1866889251487,41.0011957852575],[-72.1870731831048,41.0012456942408],[-72.187397442583,41.0007672418235],[-72.1871105350543,40.9997739975847],[-72.1866575128599,40.9995242609535],[-72.1865372212568,40.9987017069161],[-72.1845750455548,40.9988384330688],[-72.1844546614252,40.997966337361],[-72.184122740216,40.9977871001235],[-72.1838809730303,40.9991547285429],[-72.1840925828736,40.999385067722],[-72.1840471451882,41.0008880899844],[-72.1828906630745,41.0011570530075],[-72.1824521325023,41.0003582412927],[-72.1811474678927,41.0001642193885],[-72.1809432386078,41.001172485301],[-72.181168222569,41.0023263506969],[-72.1820800521082,41.0023936812715],[-72.1831451890322,41.0020369299987],[-72.1829618240181,41.002730473446],[-72.1835512526934,41.0035284672978],[-72.1835816741406,41.0040876297526],[-72.1831566398571,41.005081497746],[-72.1836628387231,41.0055487096016],[-72.1843883343162,41.0064851252154],[-72.1851075039731,41.0074484018201],[-72.1853021167929,41.0077819021026],[-72.1830094715591,41.0098424778718],[-72.1824234412104,41.0107243253451],[-72.1820371880961,41.0130206114211],[-72.1813382628725,41.0147012929988],[-72.181234814681,41.0148788974733],[-72.1808293340264,41.016143434946],[-72.1809086121468,41.0204866261138],[-72.1791541134637,41.0205832991798],[-72.1785417364261,41.0209646052896],[-72.1783141895714,41.0214544049617],[-72.1790320351116,41.0217016504589],[-72.1798436090719,41.021442304476],[-72.179845427262,41.0212081738043],[-72.1812367137195,41.0212106875751],[-72.1818387188089,41.022135091319],[-72.1813719955097,41.0250778880472],[-72.1803997389963,41.0260358392046],[-72.1805353846042,41.0271244693784],[-72.1810437816476,41.0273170409391],[-72.1813128306685,41.0282062824225],[-72.1805478047113,41.0280524671977],[-72.1802254155255,41.028256237359],[-72.1803360313746,41.0290605428747],[-72.1800068096028,41.0294938173875],[-72.1806465852566,41.0305272314901],[-72.1812329192358,41.0323429215553],[-72.181087179259,41.0331274453527],[-72.179648203938,41.033191310244],[-72.1775885134169,41.0320195455121],[-72.1770669874956,41.0326552553668],[-72.1791482914824,41.0336519273647],[-72.179663749284,41.0338716984253],[-72.1797915561927,41.0340819814449],[-72.1794376568017,41.03448312578],[-72.1796068176545,41.03485654197],[-72.1800708666691,41.0349399521341],[-72.1811249794679,41.0337048007462],[-72.1821188880746,41.033670564647],[-72.1827734050822,41.0333668286006],[-72.1837898667925,41.0324549737228],[-72.1844114479685,41.0328709619483],[-72.1867426902168,41.0335178382516],[-72.1873271952261,41.0341941004468],[-72.1855154810459,41.034595700131],[-72.1834111649165,41.0355125097965],[-72.1802388192879,41.0375875355138],[-72.1783799130125,41.0396991429447],[-72.1768647848099,41.0430530608408],[-72.1747059517225,41.0456165981938],[-72.1730074737771,41.0471150875288],[-72.1725074939479,41.0474000407067],[-72.1722298615245,41.0481182672072],[-72.1683728397492,41.0499239613001],[-72.1682227986389,41.050145441436],[-72.1675888575429,41.0490805799645],[-72.1687630804851,41.0481592318917],[-72.1687099810686,41.0475769953675],[-72.1671104058394,41.0457273344256],[-72.167335852433,41.0441296845993],[-72.1671606908341,41.0434813996766],[-72.1658382234122,41.0416745605858],[-72.1651425671578,41.0399371688647],[-72.1646563755699,41.0397630868328],[-72.1647246592096,41.0404582827207],[-72.1647931449702,41.0414777245733],[-72.1656248034636,41.0428356789026],[-72.1656703013361,41.0430574620373],[-72.16568678093,41.0440936375087],[-72.1656426242422,41.0449662012324],[-72.1658082628008,41.0459745219764],[-72.1656916426123,41.0466471549425],[-72.1664648773746,41.0472200836508],[-72.1662310926185,41.0483356682789],[-72.1654359793875,41.0487394254476],[-72.1640480723921,41.0500292577936],[-72.1629584105625,41.0510742291348],[-72.164138027888,41.0507565103228],[-72.1658524760825,41.050105177118],[-72.1668567611291,41.0495579498386],[-72.1672549205141,41.0498964831082],[-72.1676808423331,41.0507490794304],[-72.1641703582551,41.0526171864179],[-72.1605417295475,41.0538563088609],[-72.1545915514136,41.0518991824495],[-72.1538149192229,41.0518890080819],[-72.1529756699654,41.0512963503207],[-72.150785777627,41.0488329359536],[-72.1474199807002,41.0461062022955],[-72.1382499863648,41.0410782706509],[-72.1365206845271,41.0381801968175],[-72.1358125533684,41.0353435109632],[-72.1357685664622,41.0333924732691],[-72.1351143530852,41.0323134234473],[-72.1357625944622,41.0290736245793],[-72.1369221640854,41.0267426899861],[-72.1366265788311,41.0251591764967],[-72.1374192136102,41.0239179332432],[-72.1376519293711,41.0239507335794],[-72.1380550411683,41.0251631377016],[-72.1391670153529,41.0258842627772],[-72.1395568195075,41.0275421624516],[-72.1384344158825,41.0298920601568],[-72.1390415431656,41.0314067467654],[-72.1390974219695,41.0329482759753],[-72.1376708272297,41.0333947067164],[-72.1367966424908,41.0344222666778],[-72.1366667892198,41.0366797138398],[-72.1368422373813,41.0370398368851],[-72.1382953027776,41.0377514325169],[-72.1390202387203,41.0377153934517],[-72.1396089119125,41.0379416644921],[-72.1402493154887,41.0385700129531],[-72.140339169475,41.0393963534878],[-72.1410315325055,41.0402331410045],[-72.1413475903651,41.0415019154689],[-72.1419087454652,41.0422273624445],[-72.1429160362748,41.0419731361335],[-72.1428793311123,41.039900691262],[-72.1426310331745,41.0393676438348],[-72.142792528703,41.0379035609535],[-72.1430654440728,41.0370772098088],[-72.1436951783584,41.0367325542979],[-72.1428369503938,41.0362069035853],[-72.1418291376631,41.0363035007215],[-72.1414505471782,41.0357582124711],[-72.1407024894984,41.0354874663092],[-72.1407711028198,41.0345209514448],[-72.1403348979858,41.0341048266023],[-72.1402959452384,41.0333563057794],[-72.1413878986702,41.0324827309284],[-72.1416191573637,41.0322407843593],[-72.1417905352587,41.0314929769076],[-72.1421796198627,41.0308676557184],[-72.1425190096653,41.0303942148386],[-72.1430399130542,41.0300378557449],[-72.1437761264469,41.0291374242809],[-72.1434627581432,41.0286658121949],[-72.1438089688537,41.0282060459133],[-72.1446698261871,41.0277230048287],[-72.145082162784,41.0273324230562],[-72.1460600247848,41.0270999533302],[-72.1471995035868,41.0272902879199],[-72.1480615359166,41.0269513571215],[-72.1483566423689,41.0264002452287],[-72.1474121096617,41.0259130237167],[-72.1444682451357,41.0260067381136],[-72.1430860487305,41.0248466444746],[-72.1433380333542,41.0242449389473],[-72.1437727326118,41.0241791569231],[-72.1441609916641,41.0232791034864],[-72.1449427065227,41.022888668177],[-72.1450928410578,41.02233847586],[-72.1461225574101,41.0224180204862],[-72.1473151446116,41.0232356340209],[-72.1484908309094,41.0235844692342],[-72.1496654697715,41.0235099506722],[-72.1509736423023,41.0223038773605],[-72.1533517882866,41.022380659573],[-72.1535166686671,41.0218488325436],[-72.1549435930886,41.0213346592594],[-72.154838226994,41.0211924540931],[-72.1545206761343,41.0210585198873],[-72.1542756911833,41.021138034883],[-72.1532395770295,41.0214141698553],[-72.1510492777543,41.0213600436152],[-72.1499927637588,41.0218157790403],[-72.148331900071,41.0218422428543],[-72.1478007819391,41.0211806172037],[-72.1460300947162,41.0208935985861],[-72.1453250456773,41.0204393112461],[-72.1463488394369,41.0187624001231],[-72.1459340737955,41.0185224581576],[-72.1445600592459,41.0194116089678],[-72.1430900255723,41.0198390206083],[-72.1420494845208,41.0208354806321],[-72.1407111663257,41.0197124733153],[-72.1406441573954,41.0192514692705],[-72.1400703342531,41.0190120631705],[-72.1389332296985,41.0192855630803],[-72.1366741607951,41.0182477269428],[-72.1366085783894,41.0180974867965],[-72.1375581344757,41.0180355125092],[-72.1381864054056,41.0172405132694],[-72.1373020454494,41.0173761666548],[-72.1364682417791,41.0174770418232],[-72.1356283080053,41.0176678258079],[-72.1353525485693,41.0175483877144],[-72.135922181969,41.0166663801201],[-72.1364287518392,41.0163817473384],[-72.1367304097049,41.0156461900695],[-72.136625954502,41.014729415575],[-72.1360280062044,41.0137103112286],[-72.1355566484968,41.0138517103474],[-72.1361999895639,41.0152637361398],[-72.1349854241806,41.016210774448],[-72.1339117505665,41.0161705679951],[-72.133609987598,41.0170277045562],[-72.1325125077305,41.0182208082499],[-72.1324707558328,41.0188232174449],[-72.1330883170479,41.0191673262174],[-72.1340304234054,41.0190376456529],[-72.1355538547362,41.0194538026887],[-72.1365202964549,41.0192256333855],[-72.1369808294634,41.0194892627713],[-72.1361297943093,41.0199184510004],[-72.137249741042,41.021310791016],[-72.137721595518,41.0227545747646],[-72.1375254870033,41.022974870844],[-72.1370058241878,41.0229259345974],[-72.1349188742894,41.0212078322188],[-72.132432024071,41.019835505729],[-72.1288911374105,41.017202956249],[-72.1268975548095,41.0150727282924],[-72.121985826449,41.0070513126876],[-72.1189346168398,41.0040343949844],[-72.1194325673749,41.0034524007002],[-72.1175430743624,41.0007571937885],[-72.1159167949148,40.999338484148],[-72.1140935346883,40.9979913740996],[-72.1136315814433,40.9976465580887],[-72.1112824986534,40.9965519326305],[-72.1117567255801,40.996036924577],[-72.1111772735943,40.9957972341056],[-72.1111308935762,40.9954132865579],[-72.1094849967194,40.9945343958123],[-72.1084483247118,40.9941661372401],[-72.1078999903674,40.9938101238825],[-72.1072792652859,40.9933937479115],[-72.1041006808576,40.9921610678999],[-72.1039100808122,40.9920346878098],[-72.1022534131551,40.9915922498104],[-72.0964823384276,40.9912713784584],[-72.0908251862477,40.9928039706815],[-72.0860841162317,40.9950889881171],[-72.0837137837938,40.9959882469808],[-72.0828576776499,40.9969528133408],[-72.0831894344675,40.997280946845],[-72.082991326303,40.9985548819384],[-72.0835950732256,40.9988989053868],[-72.083313852931,40.9991935121397],[-72.0823810441366,40.998679037278],[-72.0818236071634,40.9991377750767],[-72.0825164067752,40.9995516089841],[-72.0807906227401,41.0014983788633],[-72.080352850346,41.0025275558025],[-72.0804880351181,41.0031344255893],[-72.0801901268205,41.0036042300949],[-72.080699236228,41.0052338182644],[-72.0798183177176,41.0067561377298],[-72.0776284496338,41.0085875171878],[-72.0764526223005,41.009012528885],[-72.0720346268848,41.0093011610882],[-72.0699725710996,41.0099692820566],[-72.0645085854519,41.0106498322269],[-72.0629921259461,41.0112956965222],[-72.0621559839611,41.0123011363519],[-72.0607957765174,41.0117215529715],[-72.0581247042921,41.0130449158039],[-72.0565257731549,41.0130536232454],[-72.0562440866347,41.0125870916024],[-72.0575947270205,41.0107437093361],[-72.0577682950081,41.0099330440832],[-72.0574336833446,41.0091364232019],[-72.057880650894,41.0084273071147],[-72.0584904865977,41.0083663181815],[-72.0578407746785,41.0073364901332],[-72.0580069791758,41.006674244253],[-72.0576339519574,41.0062233975042],[-72.057988653544,41.0041474240755],[-72.059478296542,41.0035504763193],[-72.0597721013354,41.0029590327479],[-72.0610148333944,41.0023827853783],[-72.0610900268753,41.0023126494629],[-72.0615873117587,41.0018569858833],[-72.0618343080376,41.0009806352564],[-72.0616212330421,41.0001240777192],[-72.0611588477075,40.9993602321929],[-72.0604149285662,40.9988458935504],[-72.0593092686398,40.9984799370858],[-72.0578166755744,40.9984778685603],[-72.0523443113401,40.9994818781955],[-72.050046368741,40.9997608300602],[-72.0489701439115,40.9998683769698],[-72.0478468985651,40.9999972254362],[-72.0463350033992,41.0002602090584],[-72.0439469040816,41.001108644951],[-72.0426594880237,41.0015349516376],[-72.0379640164915,41.0032156807835],[-72.0370870317038,41.0044135285598],[-72.0362164024968,41.005485440902],[-72.0356759481741,41.006849545859],[-72.0357227315357,41.0074136605992],[-72.0367680228784,41.008678946707],[-72.0372115085578,41.0099422630462],[-72.0382779956496,41.0109018578428],[-72.0388180466288,41.011951492361],[-72.039964959888,41.013223864816],[-72.0415546419709,41.0146336855718],[-72.0448499076732,41.0168437888365],[-72.0499913262686,41.0197585551749],[-72.0510330818424,41.0211632254782],[-72.0518302638935,41.0212871992851],[-72.052514264507,41.0208994008224],[-72.0528179274124,41.0209567040625],[-72.0535394174177,41.0203446936084],[-72.0546434567833,41.0201207335709],[-72.0553234140798,41.0181386484217],[-72.0557725510606,41.0181501246008],[-72.0560345177637,41.0191430390044],[-72.0556964430947,41.0198414185339],[-72.0557457372476,41.0211035997683],[-72.0553621126039,41.0221565742996],[-72.0544806101886,41.0217062326851],[-72.0526608560866,41.0217452652962],[-72.0517422981659,41.0224422942925],[-72.0504950089535,41.0225274606086],[-72.049453638757,41.0231943075043],[-72.0486924836404,41.0232783905169],[-72.0425572372865,41.0210090528932],[-72.0378509940557,41.0201631437207],[-72.0344065882534,41.019952962644],[-72.0273875550685,41.0201819074956],[-72.0237249089578,41.0209564959928],[-72.0210595473227,41.0218152964875],[-72.0185051617612,41.0230957087749],[-72.0176188488676,41.0242391180298],[-72.0154144415509,41.0256501058793],[-72.013795589374,41.0285262766287],[-72.012842184905,41.0295553268585],[-72.0088800063426,41.0322670759304],[-72.0087734454887,41.0326831120997],[-72.0072970966586,41.0337165506819],[-72.0050424196186,41.0358960820823],[-72.0042531409453,41.0371364734541],[-72.0015627154155,41.0383634248432],[-71.997275753657,41.0411968889273],[-71.9954639756965,41.0431716010304],[-71.9949645636025,41.0447347077284],[-71.9939806038375,41.0462266244768],[-71.9920470520536,41.047702745918],[-71.9895677899043,41.0479036667729],[-71.9869397128451,41.0487581133326],[-71.9842977199838,41.0482881850862],[-71.982796489617,41.04827138721],[-71.9811503106891,41.0475707835757],[-71.9811358774575,41.0466832690605],[-71.9806244387184,41.0453639269661],[-71.9790401896463,41.0437507606338],[-71.9777553221089,41.0430866036961],[-71.9770811921837,41.0430328882347],[-71.9771190103589,41.0428402420424],[-71.9764421199108,41.0427819469759],[-71.9720395018562,41.0409415616891],[-71.9692181028562,41.0407772965906],[-71.9661996601953,41.0414228559794],[-71.9626109813651,41.0431655961447],[-71.9594868492161,41.0452627300201],[-71.958160623243,41.0468713892444],[-71.9580322288361,41.0476245386915],[-71.9570301105259,41.0488139371335],[-71.9567379298865,41.0496032866098],[-71.957873831597,41.0517227847477],[-71.9580916047814,41.0528543398365],[-71.9578788109586,41.0552444290491],[-71.9593265250907,41.0588627109958],[-71.9598082304921,41.061239612262],[-71.9615689553984,41.0638799239657],[-71.9614462185812,41.0645746835453],[-71.9604652367314,41.0656881106658],[-71.9596306685948,41.0682554263545],[-71.960057420457,41.07001843826],[-71.9599336685435,41.0708797871366],[-71.9593023792742,41.0715205895779],[-71.956313465135,41.0731213327786],[-71.9531376726706,41.0731769591515],[-71.95164368003,41.0736192677297],[-71.9482805250485,41.073881450157],[-71.9470590947398,41.0741552956982],[-71.9452750917895,41.0749635978195],[-71.9418556932881,41.0766290950126],[-71.9381449522754,41.077548220707],[-71.9378742171167,41.0768745507077],[-71.9375378267889,41.0761090701069],[-71.9373476480534,41.0757032292824],[-71.9371937783233,41.075028162283],[-71.9372960847561,41.0743148751981],[-71.938368242014,41.0732355977221],[-71.9393289354131,41.0722974494873],[-71.9390207360156,41.0716137798778],[-71.9381002413271,41.069747505267],[-71.9386142941636,41.0691847622582],[-71.9384701981038,41.0679785789704],[-71.9379702757667,41.0673078220653],[-71.9374667197443,41.0675646250341],[-71.9370419387858,41.0673101559527],[-71.93750832881,41.0670208447193],[-71.9371589048257,41.0667773867815],[-71.9363088335639,41.0672726444261],[-71.9361350742351,41.0670743848231],[-71.9348270885539,41.0677240667912],[-71.9352720286057,41.0687131005314],[-71.9348430992272,41.0696203367032],[-71.9361141237261,41.0704557253448],[-71.9351616418269,41.0707365986437],[-71.9355804624635,41.0719681083669],[-71.9351792829425,41.0726779433948],[-71.9342011945662,41.0732688475319],[-71.9337205473802,41.0732875738217],[-71.9331741462103,41.0729127700306],[-71.9319386662506,41.0697141216127],[-71.9318303482919,41.0692924396226],[-71.9324089846075,41.068285628962],[-71.9311487632482,41.0672838695763],[-71.9310584493245,41.0667951186419],[-71.9314316562059,41.0661430935668],[-71.9321839081198,41.0659604901411],[-71.9328887828856,41.0661729009322],[-71.9336724515799,41.0670583807714],[-71.9342302326078,41.0673794471753],[-71.9357621628994,41.0666321568332],[-71.9359201100826,41.0664021930123],[-71.9321043838609,41.0595458236381],[-71.9317013151828,41.0595936285774],[-71.9310144192991,41.0588683256435],[-71.9314842337012,41.0585205877691],[-71.9306826660748,41.0581344703818],[-71.9304477377634,41.0576373610683],[-71.9297362693634,41.0580642143269],[-71.9276513038435,41.0568603008592],[-71.9279276121502,41.0565479443986],[-71.9281901501819,41.0556047729508],[-71.9284459894765,41.054485796512],[-71.9275732483302,41.054192327147],[-71.9275597430582,41.0531247097187],[-71.9278719687048,41.0527592722283],[-71.9271760833801,41.0522453572713],[-71.9266510073168,41.052055723489],[-71.9253995966338,41.0520223247564],[-71.9235639666058,41.0520633730441],[-71.9241885724094,41.054696410631],[-71.9233293473149,41.054065530884],[-71.9230991064126,41.0525282938877],[-71.9227329827472,41.052167263833],[-71.9220526176156,41.0518158472945],[-71.9208173766078,41.0516432321702],[-71.9177944603368,41.0501348650687],[-71.9162473691781,41.0490622234501],[-71.9154258589524,41.0489321492155],[-71.9139410138564,41.0481358381177],[-71.9123318104839,41.0482503226199],[-71.9096694842562,41.0498946363695],[-71.907808378905,41.0519566809081],[-71.9079677346465,41.0532533734073],[-71.9075565856225,41.0541564813403],[-71.9071938171647,41.0581365614194],[-71.9079862632976,41.0603013531469],[-71.9101616271829,41.0613639440966],[-71.9109114383741,41.0614876308738],[-71.911479573384,41.062124306451],[-71.9129679829951,41.0626595611633],[-71.9140154868883,41.063367614428],[-71.9149705765967,41.0650503730452],[-71.9154648045132,41.0676349278314],[-71.9181378197946,41.0702958174956],[-71.9192685418191,41.0708979736715],[-71.919979944642,41.0712097080034],[-71.9209422271609,41.0710868339087],[-71.9248340757214,41.0714970348038],[-71.9269090726366,41.0722369057272],[-71.927474861247,41.0726257663563],[-71.9300196932255,41.0737563828388],[-71.9320092217296,41.0737778774149],[-71.9329546994645,41.0744965513602],[-71.9353657848736,41.0756595147591],[-71.9356415389197,41.0752480558787],[-71.9360974285365,41.0751701211267],[-71.9369612431238,41.0783048022274],[-71.9359574593371,41.0779583738369],[-71.9339770774792,41.0781533427907],[-71.9270225595014,41.0796026390299],[-71.9211460557972,41.0800085803734],[-71.917815650696,41.0805634490664],[-71.9128439669769,41.0820424171726],[-71.9058102355573,41.0851769851707],[-71.9035671584626,41.0857156150412],[-71.9004626913334,41.0853168779647],[-71.9002774766881,41.0830693169778],[-71.8986789408097,41.0803288833737],[-71.8961590954709,41.0777572359936],[-71.894475808037,41.0767751974301],[-71.8928052281711,41.0761402219036],[-71.8866725321343,41.0754837482637],[-71.8809418735098,41.0770714033878],[-71.8792120030385,41.0772046649575],[-71.8760661136933,41.0760746386931],[-71.8745132805033,41.0757217876134],[-71.873140976346,41.0754368616338],[-71.872439146869,41.0754133001365],[-71.8717421233788,41.0752727828832],[-71.871328439309,41.0752435322323],[-71.8703208233093,41.0753467444308],[-71.8695695990681,41.0755019497776],[-71.8688052612204,41.0758549313799],[-71.8683967218023,41.0763751946323],[-71.868225639453,41.0767352974821],[-71.868208803228,41.0769644999083],[-71.8680728863289,41.0771949678479],[-71.867926735822,41.077218011347],[-71.8675336591048,41.0770992447046],[-71.8668746199781,41.076973240881],[-71.8662678322582,41.0770783153002],[-71.8657358140143,41.077018805248],[-71.8652736514619,41.0768981502802],[-71.8641458992677,41.0763045537865],[-71.8630059416637,41.0757646508708],[-71.8620324517634,41.0754003928775],[-71.8613786291535,41.0750403355361],[-71.8605387007696,41.0748553277152],[-71.8601039503081,41.0747218900517],[-71.8597758622101,41.0745823532597],[-71.8593384383623,41.0742552041787],[-71.8589555638118,41.0739385481327],[-71.8586751403228,41.0737822948406],[-71.8578681369907,41.0735936624395],[-71.857435201126,41.0734692704303],[-71.8569418382871,41.0732081333314],[-71.8565334390062,41.0728187221829],[-71.85630695935,41.0723892442859],[-71.8561598386626,41.0720114670922],[-71.8561647776001,41.071439702417],[-71.8560880542883,41.0712079471946],[-71.8561054429772,41.0710147868557],[-71.8561817755219,41.0707241658883],[-71.8562631179709,41.0706093046717],[-71.8568331888502,41.0703997079323],[-71.8576590316504,41.0698953770503],[-71.8579410900732,41.0696734121287],[-71.8582387737921,41.0693888290374],[-71.8586607870412,41.0689455228423],[-71.858827628444,41.0686438594769],[-71.8590900829323,41.068083621035],[-71.8591931044241,41.0676226062393],[-71.8596308507671,41.066301611568],[-71.8597693018136,41.066111750779],[-71.8602490318197,41.0656114717542],[-71.8613172059476,41.0646859202275],[-71.8622905314563,41.0639243906843],[-71.8633653234729,41.0633277293714],[-71.8649915562082,41.0626920326601],[-71.8652015823216,41.0625761644568],[-71.8654632040717,41.0623761404858],[-71.8661971644897,41.0616575961809],[-71.8662919978377,41.0613989934936],[-71.8662931485796,41.0607640801117],[-71.8663304645964,41.060526427557],[-71.8664179703866,41.0602811350278],[-71.8666000436233,41.0599393456619],[-71.8670074565541,41.059315484166],[-71.867704647131,41.0586184452416],[-71.8679809886753,41.0584368281651],[-71.8683361484027,41.0583023844808],[-71.8688731594829,41.0581908972131],[-71.8692137530279,41.0581596278553],[-71.8697295467994,41.0580250440662],[-71.8702448402093,41.0577598518398],[-71.8720897794786,41.0560357267734],[-71.8728606337054,41.0557909729591],[-71.8731171602112,41.0553521244981],[-71.87347141803,41.0542629700733],[-71.8735493855084,41.0537787443628],[-71.8735252729296,41.0533773077906],[-71.8735706405464,41.0530317960237],[-71.8737377909696,41.052752633471],[-71.8738471159397,41.0524854107404],[-71.8746370836208,41.051867400671],[-71.8827116893667,41.0487358687533],[-71.8848402258729,41.0486313445343],[-71.886786919111,41.0480625410497],[-71.8879801557945,41.0473562667183],[-71.8894167514783,41.0471338896922],[-71.8927388543497,41.0455708935041],[-71.8938595143447,41.0455831081179],[-71.8947236253761,41.0452956884207],[-71.8974437905317,41.0435001717123],[-71.9000074080794,41.0429612677774],[-71.9016674039946,41.0419521867408],[-71.901999735734,41.0410649914561],[-71.903456726768,41.0404196853491],[-71.9044288386528,41.0401891332355],[-71.9061148228291,41.0402884706484],[-71.9096201164414,41.0392432636512],[-71.9137561899782,41.0391109875717],[-71.9148588100057,41.0393161504538],[-71.9173749929132,41.0388791590805],[-71.9217025522342,41.0374773147767],[-71.9235340500119,41.0372290355684],[-71.9295992942489,41.0354634974895],[-71.9353301576894,41.0344407763508],[-71.9521373060753,41.0289739835879],[-71.9552092317332,41.0281906030094],[-71.9662750504072,41.0242945546419],[-71.9789322211323,41.0190521730011],[-71.9883617297702,41.015854084422],[-71.9995185792235,41.0114032747694],[-72.0084784791736,41.0081551965238],[-72.0150214025629,41.0052941579448],[-72.023433929366,41.0023189265403],[-72.0292774738824,40.9999478666952],[-72.0337875780557,40.9987715870077],[-72.0362467071629,40.9976820048233],[-72.0385065809568,40.9971411583412],[-72.0426906236315,40.9954562773984],[-72.0437658818737,40.9948038620885],[-72.0449220064579,40.9945858292888],[-72.0500953224324,40.9927008710516],[-72.052769204588,40.9919992102385],[-72.0549661325317,40.9918302034865],[-72.0603420239927,40.9894545887193],[-72.0652619288189,40.9882559896782],[-72.0700975060944,40.9866092040818],[-72.0733157475492,40.9849436727226],[-72.0761638534625,40.9843044304638],[-72.0820912314562,40.9820588603395],[-72.0859064600112,40.9810610692643],[-72.0868753622154,40.9805316491853],[-72.0891851850341,40.9800991397489],[-72.0926464917402,40.979155231088],[-72.0937283894307,40.9786556230453],[-72.0945866326667,40.9786142129552],[-72.0965060180185,40.9780546248587],[-72.1018030796184,40.9762830142216],[-72.104548215244,40.975113579468],[-72.1052971505778,40.9750738464357],[-72.1102744963782,40.97331632896],[-72.1134376827842,40.9725174288303],[-72.1187182459256,40.9706095158676],[-72.119857663642,40.9699579813337],[-72.1286058360695,40.9670283680121],[-72.1377652473526,40.9636039141371],[-72.1425481995222,40.9615789587376],[-72.1589781507101,40.9557793590502],[-72.1679068144411,40.9521216164361],[-72.1791387154415,40.9485240539781],[-72.1826184564755,40.9469383746928],[-72.1929309506472,40.9433439985712],[-72.195522066524,40.9418668834214],[-72.1973927461194,40.9410972507834],[-72.2054345642559,40.9387975510422],[-72.2100771232212,40.9367888639284],[-72.2142565799964,40.9355659095706],[-72.2200332332618,40.9333004948573],[-72.2207279525733,40.9331956497082],[-72.2229287055435,40.9320822835864],[-72.2290308265212,40.9298647808672],[-72.2316774466046,40.9285728135771],[-72.2332699026851,40.9284038771348],[-72.2352422113836,40.9278116951991],[-72.2377241909366,40.9265651770841],[-72.2435256188393,40.924326182049],[-72.2456443035217,40.923849905005],[-72.2478570975099,40.9228579365758],[-72.2492290369512,40.922543906147],[-72.2631552280337,40.9163679655395],[-72.2722671112518,40.9127830600328],[-72.2797040416051,40.9103197994065],[-72.2885653990635,40.9067952197673],[-72.2898016354046,40.9062118210463],[-72.3088576397475,40.8987726956851],[-72.3114489370841,40.8981171108665],[-72.3276326447813,40.8914634550422],[-72.3282245267556,40.8919815738303],[-72.3286423682286,40.8926217563421],[-72.3288329781555,40.8929729475629],[-72.3295316302913,40.8937142087141],[-72.3287228905157,40.893938659144],[-72.328150949344,40.8933669620296],[-72.327750482187,40.8947087425826],[-72.3269464962959,40.8952935750557],[-72.3252526967765,40.8958307339419],[-72.3235009595146,40.8953757419281],[-72.3218576803485,40.8960941653447],[-72.3213169295818,40.8960005352046],[-72.3209687839002,40.8962446413262],[-72.3209736096499,40.896713122377],[-72.3203983752543,40.8968303524633],[-72.3198195251397,40.8965962193753],[-72.3192479118531,40.896844131283],[-72.3194798775207,40.8972908732596],[-72.3185585851282,40.8977468183439],[-72.3178060071259,40.8981031007681],[-72.317480124392,40.8979243819532],[-72.3164530499849,40.8981886986003],[-72.3158699580256,40.8987380629076],[-72.315132622637,40.8989370587094],[-72.3148281808923,40.8994568796161],[-72.3139541183242,40.8994410161302],[-72.3104936793907,40.90058077377],[-72.3099508580072,40.9004645240019],[-72.3081726671568,40.9009904512346],[-72.3073286729979,40.9023172905343],[-72.3066052471232,40.9029579019412],[-72.3040128583336,40.9071215944861],[-72.3040128143162,40.9084005943961],[-72.3044345436976,40.9082843604096],[-72.3052183884617,40.9065237999462],[-72.3075393746445,40.9038714272398],[-72.3088357783467,40.9026407182276],[-72.3099809632473,40.9020459664023],[-72.3107078126016,40.9013198461922],[-72.312503819739,40.900573621981],[-72.3130824650377,40.9005015465978],[-72.3141292951945,40.9005935000551],[-72.3141464278636,40.9022962356423],[-72.3151310002796,40.9018372977585],[-72.3160528325596,40.9004896941547],[-72.3178113026946,40.9009269423836],[-72.3175757374776,40.9013583029958],[-72.3169425877973,40.9014021115002],[-72.314652323099,40.9088606639537],[-72.3155781142544,40.9089948206313],[-72.3189618747919,40.9026380363055],[-72.3192236582388,40.90185150329],[-72.3207954180335,40.9032391141226],[-72.3224152242212,40.9039342746778],[-72.3277313534613,40.9073227287815],[-72.3299093808514,40.9074632812726],[-72.3305277586351,40.9080090246233],[-72.3324488382096,40.9085984354995],[-72.3290004016666,40.9121259006217],[-72.327433010379,40.9145980329895],[-72.3245700499241,40.9172292185546],[-72.3247813255941,40.9176394418295],[-72.3252031708583,40.9174105461607],[-72.3290006702628,40.9146433845617],[-72.3293924587959,40.9136121474128],[-72.3304472201783,40.9124251330441],[-72.331833688971,40.9116240866675],[-72.3332297373978,40.9119311154936],[-72.3334313642633,40.9121024123864],[-72.333281109354,40.9134770191562],[-72.3332510535212,40.9143905423786],[-72.3339751342678,40.915465627669],[-72.3355738659789,40.9190784132835],[-72.3351226529915,40.9223465561164],[-72.3355142582682,40.9222790515177],[-72.3364181269374,40.9210434598749],[-72.336955070644,40.9197408354963],[-72.3377399709286,40.9193041135121],[-72.3402465113198,40.9203122401625],[-72.3403067011387,40.9199218215691],[-72.3394022539545,40.9194911210103],[-72.3392513872924,40.9184608297116],[-72.3386176716735,40.9175905231082],[-72.3370802553704,40.9164021010088],[-72.3368991361445,40.9158304690738],[-72.3372300305794,40.9151670878471],[-72.3371090903927,40.9140023785736],[-72.3359029233591,40.9120334744117],[-72.3366253736634,40.9091769108247],[-72.3364143270638,40.9077804377835],[-72.3342738950666,40.9076453811148],[-72.3340063408424,40.9071392987226],[-72.3361508422078,40.9065628932735],[-72.3378902680587,40.9055222333922],[-72.3398072980279,40.9047693696588],[-72.3406056586687,40.9046211631012],[-72.342133755849,40.904778009922],[-72.3433612578707,40.9041037570787],[-72.3458557545489,40.9042513014605],[-72.3485125417646,40.9057220683161],[-72.3493748121479,40.9064624723741],[-72.3523657753443,40.907391402137],[-72.3542025318596,40.9074020591252],[-72.3552560966861,40.9076829441815],[-72.3557007223276,40.9075670470342],[-72.3556791906085,40.9071207003463],[-72.354234415764,40.9066957320651],[-72.3538544257039,40.9054890604715],[-72.3534044227471,40.9051634781678],[-72.3521694548271,40.9051531263427],[-72.3501879527701,40.9028422952578],[-72.3492951854811,40.9024389626931],[-72.3491396871055,40.9019670159699],[-72.3491655756536,40.9013190993129],[-72.3517923214096,40.8998797976744],[-72.348613439639,40.9003201189765],[-72.3475832543661,40.9004045005836],[-72.3474985486247,40.9010015247928],[-72.3482961726469,40.9016683914333],[-72.348375139052,40.9019944641886],[-72.3481789380108,40.9024853417381],[-72.3470010831799,40.9032373501807],[-72.3466212736812,40.9006570750881],[-72.3457233482659,40.9002355824515],[-72.3446141516722,40.8991426898144],[-72.3456561857237,40.8976489928485],[-72.3463471509756,40.8971785193798],[-72.3471140957342,40.8965701792616],[-72.3478314606757,40.8964966178712],[-72.3477716759969,40.8970086478059],[-72.3465966508592,40.8978778116224],[-72.3468385060798,40.89837877113],[-72.3475315554232,40.8985613543184],[-72.3465972033231,40.8992739281644],[-72.3466576509586,40.8996175899646],[-72.3470493281006,40.8997301882149],[-72.3479234526524,40.899317964157],[-72.3483757211603,40.8989725890277],[-72.3498521670084,40.8986552694125],[-72.3498218910884,40.8984474096374],[-72.3484653918903,40.8978983002633],[-72.3486156252401,40.897257747137],[-72.3495399099207,40.8965359181186],[-72.3506646168261,40.8966653581396],[-72.3516330096856,40.8961201649037],[-72.3537224730701,40.8957763464093],[-72.3554970931173,40.895699984459],[-72.3561791794209,40.8958597464927],[-72.3571697435999,40.8958554427546],[-72.3574408722206,40.8957535735053],[-72.3577079269815,40.8953813963121],[-72.3564740379382,40.8949387747976],[-72.3555533025012,40.8950527601536],[-72.3548623426392,40.8950414085489],[-72.3532255600892,40.8952335157091],[-72.3519493621926,40.895294273791],[-72.3492534829907,40.895664646588],[-72.3484761294528,40.8960701010255],[-72.3466315962221,40.8957979710525],[-72.3446868855658,40.895248786041],[-72.3431373941086,40.8935377542546],[-72.3418656518558,40.8920988177338],[-72.3405717490633,40.8906773697734],[-72.3415749848777,40.8903177102883],[-72.3412112929518,40.8898229367705],[-72.3399788942134,40.8903664542871],[-72.3397657976584,40.8900012516778],[-72.3387836210492,40.8899650680026],[-72.3329545627651,40.8916632835493],[-72.3323024424626,40.8924768466219],[-72.3328608388365,40.8929986706104],[-72.3330356339228,40.8936332131938],[-72.3324626426205,40.8941018329307],[-72.3308262912619,40.8938027437203],[-72.3296870334455,40.8928756446809],[-72.3288265965237,40.8914911310375],[-72.3282326062033,40.8910990652421],[-72.3300095340224,40.8906493538924],[-72.3432973651961,40.8861871225281],[-72.3527845654382,40.8823341678218],[-72.359121864459,40.8804304045738],[-72.3673260692527,40.8772989285137],[-72.3712349768204,40.8760911012036],[-72.3775686834784,40.8733485567993],[-72.3847986276173,40.8707520933908],[-72.3905518546167,40.8682613643295],[-72.3944111868589,40.8672722928914],[-72.4022485592164,40.8645443277132],[-72.406498703523,40.8633925141721],[-72.4116163895269,40.8613998290615],[-72.4181521245974,40.8596188228571],[-72.4220797018517,40.8579367802791],[-72.4346435672631,40.8543078525918],[-72.4519406819578,40.8478503484219],[-72.4573587115921,40.8461369585271],[-72.4606014141721,40.844735717759],[-72.4628902164132,40.8443177193875],[-72.4694785622165,40.8414450283397],[-72.47115548329,40.8410314483593],[-72.4746048729455,40.8390533630458],[-72.4748663662365,40.8417703104712],[-72.4743652778862,40.8421601641424],[-72.4744691339128,40.8429190585769],[-72.4727102927737,40.8437902666984],[-72.470950114043,40.8452604080023],[-72.4691586254315,40.8462074064838],[-72.4683248558972,40.8463962726087],[-72.4678531864741,40.8469849045162],[-72.4683157649465,40.847238261185],[-72.4669539782646,40.8481901545711],[-72.4654905445133,40.8488515620734],[-72.4652054255303,40.8488047615095],[-72.4652154606104,40.8480168384449],[-72.463709875211,40.8482089142509],[-72.4613858176883,40.8490224746007],[-72.4607865201212,40.8502522918024],[-72.4596501315239,40.8508307526891],[-72.4588588909301,40.850835835343],[-72.4579122687416,40.8503871197562],[-72.4560568955403,40.8506704627073],[-72.4548555434765,40.8505628840439],[-72.4519969173929,40.8512563631302],[-72.4504532245609,40.8518977888951],[-72.4491881999098,40.8534100618],[-72.4474967692478,40.8536878847204],[-72.4462011255203,40.8538528516566],[-72.444021413789,40.8552592326698],[-72.4412998274986,40.8557167861488],[-72.4403614913703,40.8554392503119],[-72.4383119886428,40.8556369290884],[-72.4372369361147,40.8561940090983],[-72.436369707031,40.8566295979911],[-72.4358244772643,40.8566174733877],[-72.4349783082841,40.8566031548704],[-72.4347005474016,40.8569032227584],[-72.435098670854,40.8576146498812],[-72.4348992682172,40.85799752776],[-72.4334853037903,40.8574796660982],[-72.4325281955675,40.8571701227149],[-72.4313964314972,40.8572935343486],[-72.4316553133857,40.857731652318],[-72.4309837247944,40.8592614398061],[-72.4296736325638,40.8600068668981],[-72.4291725460102,40.8605586502488],[-72.4285522054075,40.8606664144627],[-72.4284122631577,40.8603165125238],[-72.4275846039639,40.8596315087823],[-72.4268542296204,40.8591153061154],[-72.426439150467,40.8590925307871],[-72.425898131104,40.8592200655949],[-72.4261001999406,40.859765013866],[-72.4261836956513,40.8600596145305],[-72.4256947408456,40.8605080696203],[-72.4250791029235,40.8605708828347],[-72.4233646960515,40.8600191654882],[-72.4226883041684,40.8602337327824],[-72.4211408788364,40.8613025205229],[-72.4200845265377,40.8612383539732],[-72.4197194530028,40.8617796278203],[-72.4188705405677,40.8616435308545],[-72.4176940260233,40.8619999933951],[-72.4171693883378,40.8625061588489],[-72.4160891812766,40.8624639394778],[-72.4149141076299,40.8633923667487],[-72.4137521421998,40.8630690671846],[-72.4128968166919,40.8633831449746],[-72.412494734364,40.8640541693774],[-72.4127970659661,40.8652589200673],[-72.4124929979205,40.8658690928679],[-72.4129201674994,40.8672387753917],[-72.4126234099436,40.8684796201132],[-72.4128405057983,40.8690744678492],[-72.4134883186789,40.8696159283177],[-72.4128894567947,40.8719488792328],[-72.4131361162055,40.8719183855507],[-72.4135787691466,40.8706447844128],[-72.4145530010553,40.8693740967883],[-72.4143097750056,40.8681166329159],[-72.4150917503756,40.8671163489775],[-72.4149921047527,40.8657134860022],[-72.4159713259046,40.8644834286251],[-72.4168841840148,40.8650353146293],[-72.4162205922263,40.8662724540745],[-72.417673482451,40.8654087840997],[-72.4175545293377,40.8649017128306],[-72.4184039816603,40.8648531830959],[-72.419088321837,40.8654089410295],[-72.4194240105806,40.8672089018077],[-72.4200932330094,40.8680210230427],[-72.419875109482,40.8691690715002],[-72.4204947799414,40.8706466185119],[-72.4193684048645,40.8725714816016],[-72.4183204518136,40.8732595909406],[-72.4176404828391,40.8733524483269],[-72.4190657911914,40.8739653355998],[-72.4190282299344,40.8749507885383],[-72.419911670914,40.875366883977],[-72.4197573232802,40.8765523871702],[-72.4205332350221,40.8771597267621],[-72.4208167550038,40.8779181761584],[-72.4208361747836,40.8781437920512],[-72.4203508249171,40.8783040698902],[-72.4202458073688,40.8787926148942],[-72.4190470397581,40.880400596711],[-72.4191469710453,40.8805964900967],[-72.4195666864039,40.8804842885327],[-72.4208208576097,40.8792063048816],[-72.4213869938681,40.8789712712814],[-72.4223503543653,40.8817625470284],[-72.4223568231337,40.8809655494327],[-72.4223073035036,40.8803879779295],[-72.4225022217506,40.879532143994],[-72.422749159639,40.878348707363],[-72.4226774965373,40.8777301083288],[-72.4222876124326,40.8773611002341],[-72.4213192510142,40.8755785242632],[-72.4218944665451,40.8725109071178],[-72.4216963691604,40.8719210041862],[-72.4224550772662,40.8712128860326],[-72.4229591605996,40.8702243491358],[-72.4245687268914,40.8698144580715],[-72.4247681789357,40.8695667105032],[-72.4247168725565,40.8684036261023],[-72.4235171733929,40.8658953176166],[-72.424308084305,40.8652149266258],[-72.4251588319982,40.8637747519791],[-72.4251965145277,40.8623434357171],[-72.4268060475819,40.8613930738783],[-72.4290836029156,40.8627994809638],[-72.4311779360673,40.8633280548002],[-72.4327637715642,40.8626247817946],[-72.4355124303823,40.8629922028003],[-72.435907078253,40.8634873745897],[-72.4367224377139,40.8638027466266],[-72.437458167813,40.8648369267987],[-72.4383717571519,40.8652400395353],[-72.4389781316468,40.865802956564],[-72.4400539728957,40.868461484353],[-72.4400881798434,40.8708446723869],[-72.4404111232897,40.8722209510536],[-72.441756713347,40.8749079691703],[-72.441296705853,40.8750283658408],[-72.4403704610484,40.8750843653076],[-72.4400165922001,40.8761258565518],[-72.4403143154448,40.8770602175814],[-72.4401143405811,40.8775917103274],[-72.4389512082394,40.8792502367283],[-72.4380636215347,40.879090901206],[-72.4374345726638,40.8797659761313],[-72.4373157471112,40.8803848366479],[-72.437145496602,40.8808179042111],[-72.4374922939123,40.8812489558301],[-72.4380005669883,40.8811476624565],[-72.4383403637277,40.8813758923953],[-72.4379013597433,40.8820461850091],[-72.4377084249764,40.8838163286401],[-72.4365531268424,40.8844031372943],[-72.4363678331453,40.8846106873569],[-72.4387742733661,40.8838940592304],[-72.4400337572085,40.8832014549984],[-72.4401066123747,40.8837164871688],[-72.440784418206,40.8843935720773],[-72.4408189323775,40.8847681405679],[-72.4414755613244,40.8847827165063],[-72.4414844393743,40.8847063520546],[-72.4418267217521,40.8843896866319],[-72.4419087406325,40.883454749898],[-72.4426349521829,40.8823944935684],[-72.4418918415253,40.8806981476819],[-72.4417928974867,40.8803401645508],[-72.441271735383,40.8791981835894],[-72.4431537876499,40.8769926259957],[-72.4443418527323,40.8767442484683],[-72.4445845577592,40.8760650747556],[-72.4451050676859,40.875779371377],[-72.445625846209,40.8760070866216],[-72.4457779561394,40.8770462953995],[-72.4439950688967,40.8785470241472],[-72.4438880966143,40.8790715783773],[-72.4443092286162,40.8795763167421],[-72.4444819836284,40.8797512849819],[-72.4449101162013,40.8798238264905],[-72.445483416524,40.879593335563],[-72.4455665052979,40.8797663150533],[-72.4448283461542,40.8815243907861],[-72.4441536134595,40.88221200024],[-72.4437376611436,40.8831710602245],[-72.4446482312448,40.8827543957947],[-72.4450338276906,40.8822945643761],[-72.4454393308031,40.8817991433769],[-72.4461261251772,40.8811253035768],[-72.4470400064686,40.8817400273902],[-72.4473124089004,40.8825837373784],[-72.4475800197185,40.882549130764],[-72.4479235848905,40.8814263226062],[-72.4491752210505,40.8798146993761],[-72.4486736197622,40.879299190604],[-72.4481381807337,40.8791432220375],[-72.4487719098273,40.8780538559182],[-72.4483975360344,40.8775861977395],[-72.4473565036044,40.8772704138493],[-72.447705760502,40.8768863296787],[-72.4513832009672,40.8777873539214],[-72.453030872895,40.8775445435888],[-72.4536930210909,40.8775681785834],[-72.4539081370587,40.8777800977849],[-72.4537578057926,40.8781415730426],[-72.4526638940334,40.8781399238987],[-72.4525820072054,40.8789983113269],[-72.4511941334476,40.8805484140204],[-72.4517350629791,40.8810062335853],[-72.452397014444,40.8808812517019],[-72.4537080292444,40.8801355902489],[-72.4538486910448,40.8795622300426],[-72.45459100849,40.8797587691143],[-72.4549999162174,40.8804298340495],[-72.4557893682655,40.8805193186859],[-72.4562733140652,40.880277794586],[-72.4558615631699,40.8790031819436],[-72.4547261285834,40.8783431031438],[-72.4550997343168,40.8780000664301],[-72.4650914706433,40.8811115601972],[-72.4711159178917,40.8819419465726],[-72.4729432061639,40.8817748497283],[-72.4764907484423,40.8823434630245],[-72.4779087768475,40.8822889265322],[-72.479875709129,40.8829174199],[-72.4828373890437,40.8829190777541],[-72.4845017480763,40.8832346363798],[-72.4887815502619,40.8828235374778],[-72.4907213372521,40.8827802083903],[-72.4930988157882,40.8828724683356],[-72.4958491580491,40.8824008132954],[-72.4970035066639,40.882119632743],[-72.4977952503144,40.8814027215901],[-72.498585621339,40.881253238105],[-72.4997032890458,40.8819845610328],[-72.4996679394411,40.8823125632286],[-72.4990347205905,40.8829563662161],[-72.49927837334,40.8832814132973],[-72.4999888940173,40.8834409370482],[-72.5004461580565,40.8838651867729],[-72.500739714915,40.8843624497965],[-72.5016120401413,40.8843228013818],[-72.50232439967,40.8841580835241],[-72.5020882792942,40.8834548999934],[-72.5019674496003,40.883393735086],[-72.5013694258443,40.8837726008557],[-72.5014994426086,40.8827620894515],[-72.501731057035,40.8822446795266],[-72.5023373668512,40.8807580857425],[-72.5017980902198,40.8793007242538],[-72.5014526924846,40.8791761466751],[-72.5010314275321,40.8771853989014],[-72.4998397107981,40.8756643488964],[-72.4960013910488,40.8739011724887],[-72.4929745051225,40.8728085485747],[-72.4922317582827,40.8729365120832],[-72.4915608434279,40.8733812914069],[-72.4922790689554,40.8741580385269],[-72.4922384219854,40.8746255368457],[-72.491738085525,40.8750109756544],[-72.4908454107625,40.8738656300653],[-72.4906768032719,40.8717137050661],[-72.4909328617555,40.8701970344654],[-72.4921930328091,40.8672655335518],[-72.4943588026871,40.8646599524012],[-72.496735209533,40.8625993438299],[-72.4998080577608,40.8587568128965],[-72.5001481177065,40.8581336661885],[-72.5001085972239,40.8574302333961],[-72.5006575909317,40.8570277906093],[-72.5009486729315,40.8563855652072],[-72.500929519053,40.855160144451],[-72.5017931584689,40.8550257277687],[-72.5021691761788,40.8542141979869],[-72.5025820903924,40.8522234967211],[-72.5021051020445,40.8511457908794],[-72.5021890558961,40.8509044096836],[-72.5027290260268,40.8508980862706],[-72.5029954115429,40.8504579872044],[-72.5029939221361,40.8503003253244],[-72.5028221983898,40.8500759260066],[-72.503102776389,40.8499288744226],[-72.5030443751157,40.8498060103447],[-72.5007825995883,40.8464107754498],[-72.5011083089474,40.8463052393804],[-72.5019465484986,40.8474943588026],[-72.5049190468243,40.8490629330757],[-72.5057882207606,40.8495095830775],[-72.5070066021872,40.850094381413],[-72.5086356098183,40.8501881267798],[-72.5106922900849,40.8510567082164],[-72.5121960581924,40.8515260112796],[-72.5121095135996,40.8517583366907],[-72.5116263421477,40.8517524183351],[-72.5110998611192,40.8527048516114],[-72.5111837215459,40.8531975645061],[-72.5101474456954,40.8556252133324],[-72.5101380088933,40.8563320903631],[-72.511708779643,40.8536097218527],[-72.5127495551547,40.8524657109133],[-72.5127941556103,40.851412805763],[-72.5154137597598,40.8515052922037],[-72.516225931998,40.8520317023086],[-72.5162271312489,40.852594691505],[-72.5158842146606,40.8530016478088],[-72.5162095107946,40.8542561786888],[-72.515634230585,40.8573873734824],[-72.5160367665621,40.8577067981416],[-72.5161780733529,40.856723530469],[-72.5173473160352,40.8533709261957],[-72.5177769191501,40.8532630753709],[-72.5178253599035,40.8529983992295],[-72.5173649697272,40.8528984168335],[-72.5168425158461,40.8526935117688],[-72.5180038731168,40.8520699737177],[-72.520139986014,40.8516295182281],[-72.5206772477242,40.8517356458077],[-72.5214074567777,40.8524133839492],[-72.5214777445587,40.8536894427449],[-72.5229949074455,40.8540417965514],[-72.5237848652451,40.8546892765144],[-72.5238383922596,40.8552623962066],[-72.5242572164894,40.8557622901987],[-72.5248470664747,40.8559505936858],[-72.5234857109841,40.857821935387],[-72.5244003486569,40.8571344884199],[-72.5248268462959,40.856891433847],[-72.5251659153999,40.8570248133222],[-72.5262120924815,40.8587181295462],[-72.5262518968317,40.8605564938349],[-72.526560109704,40.8610810295892],[-72.5269097528772,40.8605525859291],[-72.5268955792587,40.8581247861121],[-72.5259636705762,40.856150193765],[-72.5258082296927,40.8542913327923],[-72.5250138997926,40.8543778767099],[-72.5251121997392,40.8536098523111],[-72.526226217591,40.8518863109782],[-72.5260792352442,40.8517120178999],[-72.5254851416176,40.8518974375997],[-72.5253585141968,40.8521919652153],[-72.5247050077939,40.8523400765279],[-72.5245141598135,40.8517910323681],[-72.5246693123378,40.850690953732],[-72.5238242599635,40.8484389762473],[-72.5233102170085,40.8478694805801],[-72.5206073938294,40.8473880660982],[-72.5197731086621,40.8464018333226],[-72.518642134211,40.8456389007738],[-72.5193823891242,40.8455287187265],[-72.5203753257538,40.8463156989458],[-72.5238170069659,40.847479530702],[-72.5326285797912,40.8494608293778],[-72.5366896880192,40.8513851422282],[-72.5351826087216,40.8515601190555],[-72.5342794407383,40.8519236311881],[-72.5329104783139,40.8532905091388],[-72.5304022311237,40.8548671764763],[-72.5294453358016,40.8558960490405],[-72.5291327211844,40.8574836645497],[-72.5295829271604,40.858457100589],[-72.5319080455934,40.8610559728511],[-72.5335695381019,40.8624201051927],[-72.5356656283583,40.8634647298449],[-72.5376595388444,40.8658672538811],[-72.5403238018399,40.8665726330486],[-72.5396836677583,40.8667571429633],[-72.539453628977,40.8669413914998],[-72.5398773930426,40.8682339856725],[-72.5408507455007,40.8686240457203],[-72.5422590703043,40.8678614118603],[-72.5424378009098,40.8675004205371],[-72.5413870523018,40.8669375831535],[-72.5417013979725,40.8659579721901],[-72.5411502276468,40.8649013643215],[-72.5417401503955,40.8612839520626],[-72.541463736986,40.8609988310065],[-72.5414019589456,40.8608849215166],[-72.5409898972332,40.8609391896164],[-72.5414297501255,40.8595929502747],[-72.5415237192941,40.8583158997693],[-72.5428973143305,40.8565211661137],[-72.5449567003227,40.8549661992259],[-72.5502346637396,40.8491830505683],[-72.5505804145127,40.8475060026069],[-72.5509205220692,40.8406090200728],[-72.550333225096,40.8378582860713],[-72.5521348718568,40.8395584064386],[-72.5529585766666,40.8396749643524],[-72.5533873730945,40.8399677949372],[-72.5561317271858,40.8395801004192],[-72.5570686879934,40.8396810135929],[-72.5577882753669,40.8394035084518],[-72.5607140657894,40.8396455642613],[-72.5622334645829,40.8398127952857],[-72.5669132560218,40.841186152934],[-72.5689191293725,40.8428092525733],[-72.5682870370094,40.8431472198096],[-72.5684110700956,40.8437082967439],[-72.5692276252141,40.8443470209079],[-72.5694381750454,40.845076557178],[-72.5701269286451,40.8455414399684],[-72.5706461485911,40.8463044986756],[-72.5710413165863,40.8464659469686],[-72.5714514514124,40.8462989372739],[-72.572117428228,40.8466777577691],[-72.5754728469183,40.8468789405715],[-72.5761771449657,40.8474071664518],[-72.577640046016,40.8474829331265],[-72.5773366858429,40.8471207679377],[-72.5725080489512,40.8450961631094],[-72.5722840190008,40.8438619308628],[-72.5717528119357,40.8436706008603],[-72.5714857697512,40.8427417150527],[-72.5716770381432,40.841056843636],[-72.5711530921604,40.8407485664195],[-72.5723475900786,40.8378372786357],[-72.573332391565,40.8371554175633],[-72.5735650094095,40.8367324562015],[-72.5735972786911,40.835868418079],[-72.5725475730271,40.835445501519],[-72.5728011997712,40.8331674452395],[-72.5734534557192,40.832334465262],[-72.57392714725,40.8299754625026],[-72.5762649049791,40.830907336423],[-72.5785863573874,40.8313524170113],[-72.5787290152444,40.8316481540362],[-72.5794290948032,40.8313926218706],[-72.5804680179889,40.8327430195416],[-72.5822085137333,40.83324790031],[-72.5848706908407,40.8346007430126],[-72.5871170431931,40.8356295652845],[-72.587378091818,40.8350945767052],[-72.5851921583551,40.8340760315931],[-72.5825677814565,40.832417734572],[-72.5829156145244,40.8312900811134],[-72.5833844030503,40.830872046888],[-72.5838402540396,40.8310752562787],[-72.5860895789172,40.8311403608013],[-72.5868395976192,40.8309578879916],[-72.5895351210883,40.8308385972934],[-72.5896549788051,40.8304762983329],[-72.5871257209187,40.830405408838],[-72.5865349869912,40.8301813758125],[-72.5839062191275,40.8302794757004],[-72.5817200512043,40.8294770399673],[-72.5798278892972,40.8292527054079],[-72.580135847048,40.8264308164849],[-72.5817899976256,40.8252900267916],[-72.582413369144,40.825654383844],[-72.582637551808,40.825848238798],[-72.5831614492817,40.8258502087289],[-72.5847326557142,40.8252570943987],[-72.5843195914819,40.8245908990387],[-72.5838519249518,40.8243469107352],[-72.5819407771511,40.8243428973686],[-72.5817602463217,40.8235599653901],[-72.5811920475315,40.8236966769245],[-72.5810692900529,40.8241174544046],[-72.5807844270898,40.8240844588902],[-72.5794623908592,40.8225749952938],[-72.5797985943375,40.8217668715998],[-72.5803854843738,40.8213603346427],[-72.5804409077319,40.8207940250691],[-72.5811774849424,40.8201834507431],[-72.5845064338745,40.8210368524203],[-72.5851140336714,40.8203650035042],[-72.5879134113705,40.8209054698413],[-72.5909224630435,40.8211620070606],[-72.59268002588,40.8214554095521],[-72.5950506062529,40.8224010989467],[-72.5944097014168,40.8217211817355],[-72.5928702791757,40.8208874033142],[-72.5906010323601,40.8205427841841],[-72.5902578390906,40.8197879939442],[-72.5877108520537,40.8190727126628],[-72.5871245611937,40.8182587847121],[-72.5872910306939,40.817816394739],[-72.586443286967,40.8178166775515],[-72.5853231776393,40.8170726379587],[-72.584325808722,40.8168265702175],[-72.584055756283,40.8163660363091],[-72.5853026412535,40.8145140778756],[-72.586047432659,40.8139802073008],[-72.587241921594,40.813550315611],[-72.5876939772011,40.813528243258],[-72.5883458163309,40.8141273590325],[-72.5889385903323,40.8139641030527],[-72.5903986589945,40.8140981944077],[-72.5906951578355,40.813419816329],[-72.5913357500579,40.8131224335976],[-72.5908166927069,40.8123549645772],[-72.5932611891564,40.8115953109853],[-72.5969620208532,40.8093034807619],[-72.6002837976361,40.8088051490069],[-72.5996388117537,40.8095348520055],[-72.5999199763528,40.8111485428558],[-72.6004863740209,40.8116332195582],[-72.6011808013799,40.8116701796481],[-72.6021170444336,40.8122345974578],[-72.6016386187813,40.8107474195389],[-72.6014303614507,40.8081579327086],[-72.6073655871267,40.8064751667646],[-72.6082324586809,40.8063715396713],[-72.6102965365739,40.8067656057126],[-72.6099639092888,40.8075693925764],[-72.6106180013932,40.808853002464],[-72.6118079098186,40.8089361890694],[-72.6125244599881,40.8093473508623],[-72.6125091257462,40.8097748907441],[-72.6131404015408,40.8099816146824],[-72.6134061851856,40.8105455797561],[-72.6143529627826,40.8105291313186],[-72.6146721467795,40.809954745679],[-72.6146178993161,40.8091114207353],[-72.6155349067447,40.808022451114],[-72.6167409560991,40.8084617175076],[-72.6165528452853,40.8090388174238],[-72.6167417807525,40.8096597359802],[-72.6162170882697,40.8099731667012],[-72.6162889786453,40.8119382931712],[-72.6171978105065,40.8122993533335],[-72.6188352389451,40.8113288217271],[-72.619162532034,40.811376110404],[-72.619948060241,40.8132793952414],[-72.6195792631893,40.8139158242788],[-72.6202652068588,40.8146055395677],[-72.6201980236553,40.8149509435159],[-72.6214155211397,40.8162145860666],[-72.6189468734838,40.8199107899392],[-72.6176607213555,40.8206678908104],[-72.6182167102444,40.8210351678643],[-72.617988534569,40.8221924259913],[-72.6185391650072,40.8223163881361],[-72.6179930144673,40.8232058635859],[-72.6174027413756,40.8231126068871],[-72.6171620836093,40.8234589291093],[-72.6171969068013,40.8284047697903],[-72.6174563698997,40.8292928639599],[-72.6172239640576,40.8303599567057],[-72.6174880435983,40.830374418195],[-72.6177758233912,40.8303893683919],[-72.6180123174662,40.830056470654],[-72.6183113836922,40.8294456315433],[-72.6182804007981,40.8285307302788],[-72.6190326042029,40.8279112281756],[-72.6187896701057,40.8254426608472],[-72.619330622095,40.8236838495236],[-72.6192439158055,40.8234974066766],[-72.6188118575949,40.8233939108547],[-72.6191491363565,40.8224595867518],[-72.6198989116151,40.8226101702814],[-72.6218065362233,40.8206588500372],[-72.6229795949488,40.8203902816121],[-72.6236223961285,40.8210250428526],[-72.6233650844951,40.8222537718268],[-72.6238540159447,40.8225700987742],[-72.6243963306784,40.8209554110914],[-72.6235878388378,40.8191913011943],[-72.6239613376717,40.8186720539895],[-72.6237736894903,40.8179295726584],[-72.6243873708817,40.8167847446069],[-72.6250638247485,40.8166005061566],[-72.6254221555289,40.815238738767],[-72.6257407187898,40.8149705651555],[-72.6257713809854,40.8141109774308],[-72.6249975299789,40.8126853716666],[-72.6249198221135,40.811976680876],[-72.6252849504456,40.8106105487327],[-72.6296952517909,40.8100436932028],[-72.6312306379015,40.8105391158307],[-72.6332014059892,40.8119397005599],[-72.633596743766,40.8124702472426],[-72.633581030435,40.8132040388772],[-72.6342120879389,40.8139826215439],[-72.6355348437201,40.8167750506501],[-72.6359556298705,40.8170493960836],[-72.6362564487097,40.8177806658605],[-72.6368311548959,40.8178735071974],[-72.6366521790503,40.8169871031679],[-72.6358789191352,40.8159128756544],[-72.6360061124946,40.8147309912076],[-72.6363234863861,40.8143907041967],[-72.636344427912,40.814197471154],[-72.6354065310598,40.8136287922339],[-72.6354338012169,40.8135077495832],[-72.6352890898112,40.8125544885843],[-72.634630553741,40.8116942807622],[-72.6344098430656,40.8109826639414],[-72.6321886785755,40.8085185748853],[-72.629017256415,40.8079850511118],[-72.6277043291014,40.8063637276685],[-72.6259493219719,40.8056520618398],[-72.6254791707016,40.8046875874351],[-72.6258886075368,40.8043627346798],[-72.6270171367737,40.8041292367912],[-72.627485857926,40.8033462131135],[-72.6262211216341,40.8023924212526],[-72.6264288426705,40.8019688362881],[-72.6270386451365,40.8015715369052],[-72.6284177585237,40.8010819600074],[-72.6304752032565,40.8005162239891],[-72.6314332852531,40.8002611668954],[-72.6316331433359,40.8001616829729],[-72.6318257987266,40.7999314412055],[-72.634471472884,40.7990714492044],[-72.634589940907,40.7995737975139],[-72.6356015544097,40.7999593390583],[-72.6360420415127,40.800761029596],[-72.6360985680019,40.801401724017],[-72.6356959143455,40.801933926436],[-72.6359378531094,40.8025063598773],[-72.6367557772604,40.8024015141547],[-72.6383335809204,40.8030553430477],[-72.6395604181887,40.8030354118893],[-72.6397567926048,40.8034312582213],[-72.6407953879054,40.8033714324275],[-72.6410738692367,40.8018053083127],[-72.6418563449683,40.8010691737942],[-72.6421328805487,40.8002055965178],[-72.6418856201651,40.7995519986419],[-72.6424834211389,40.7984022408034],[-72.6435100823209,40.7976305491489],[-72.6450698999123,40.7970318672317],[-72.6462614738142,40.7969165652264],[-72.6472854669998,40.7976445444633],[-72.648627976734,40.7981222902273],[-72.6505418769727,40.7975442616462],[-72.6521091398012,40.7975311279284],[-72.6522813055186,40.7977958507605],[-72.6542322495847,40.7977634718743],[-72.6555483964603,40.7986549500822],[-72.6562937609908,40.7996203914227],[-72.6566307478,40.7994966269179],[-72.6576061591968,40.800430701855],[-72.6621874692294,40.8031538305308],[-72.6614317066994,40.8040843085947],[-72.6612701069663,40.8049727814439],[-72.6642286849984,40.8052624089675],[-72.6642374489623,40.8076315746649],[-72.6648926666558,40.8080681932495],[-72.6659011486314,40.8081291339857],[-72.6661579491233,40.808602721974],[-72.6664703508398,40.8086315599274],[-72.6666534984616,40.8086487751183],[-72.6665072733946,40.8076414753002],[-72.6667176193083,40.8069881770712],[-72.6680728132544,40.8052726125412],[-72.668411183469,40.8035860287639],[-72.6691249605393,40.802645648455],[-72.6717650543621,40.8033970413636],[-72.672904615809,40.8032669029052],[-72.6736555894202,40.8029352555347],[-72.6747124268093,40.8016729805235],[-72.6758480536353,40.8008266317229],[-72.6769316608198,40.8008124242357],[-72.679017641436,40.8012867689254],[-72.6818864382453,40.8023442843382],[-72.6832846776631,40.802593054366],[-72.6851567155112,40.8037475681649],[-72.6858864897801,40.8036406055762],[-72.6872080148693,40.8030275654942],[-72.6898874207655,40.8032929219135],[-72.6903111282373,40.8035085792792],[-72.6904946055408,40.8038365246888],[-72.6901244987454,40.8046172789521],[-72.6901882270283,40.8064966349453],[-72.6898580620254,40.8069584184327],[-72.6904249932928,40.8073390792736],[-72.6905823341131,40.807630471119],[-72.6900205888199,40.8078263995314],[-72.6909479637051,40.80796206171],[-72.6918794762306,40.8080212347048],[-72.6925832604416,40.8078101224447],[-72.691787530068,40.8073393233739],[-72.6918859512871,40.806445038001],[-72.6920394527079,40.8062274230632],[-72.6926640306637,40.806248923282],[-72.693155964283,40.8060786083129],[-72.6924902812164,40.8057680463114],[-72.6921322441852,40.805837449908],[-72.6919642520405,40.8044424182446],[-72.691290756326,40.8042082583387],[-72.6925269118188,40.8034493274623],[-72.6941755826732,40.7999332990226],[-72.6943306417727,40.7986212904304],[-72.6936240745809,40.7977604552029],[-72.6928919610991,40.7975521549325],[-72.6930787513894,40.7970784874066],[-72.6937113099782,40.7972307511423],[-72.6965846486695,40.7971305159836],[-72.6969947565462,40.7968819866227],[-72.698348237405,40.7973954043046],[-72.6988738838985,40.7973833695133],[-72.6999238725319,40.7971611005284],[-72.7004347480272,40.7967614377453],[-72.7018799298085,40.7975378624188],[-72.703155836651,40.7977028861233],[-72.7037703408992,40.7980574055902],[-72.7049174850254,40.7981973284596],[-72.7076243407418,40.7990393041907],[-72.7101436695494,40.7991749027283],[-72.7125341260463,40.8006905578302],[-72.7139789709594,40.8011380464578],[-72.7188776944095,40.8040949128567],[-72.7241312676681,40.8092339046895],[-72.7239350064398,40.8100767473752],[-72.7247655348526,40.8120522786377],[-72.7246440161508,40.8124642315538],[-72.7242400805985,40.812402219208],[-72.724413685417,40.8120273243829],[-72.7240553438569,40.8118671275389],[-72.7235569010451,40.8120554612343],[-72.7229475872626,40.8136873217679],[-72.7231482196931,40.8155558517749],[-72.7235707710331,40.8158974700889],[-72.7233878318204,40.8162631711414],[-72.7228199339658,40.8160763158385],[-72.7204172792457,40.8190058749744],[-72.7200049884629,40.8205064966105],[-72.7207921120778,40.8195942687973],[-72.723440310501,40.8177189310993],[-72.7241628982476,40.8168279251541],[-72.7240712242745,40.8154344448347],[-72.7255763326685,40.8145633665025],[-72.7281908002511,40.8148175466703],[-72.728625249777,40.8151368624149],[-72.72853933131,40.817351036742],[-72.7277963778576,40.8197954773744],[-72.7281439683804,40.8205544551565],[-72.7277854336825,40.8235243986736],[-72.7281055357576,40.8240036004712],[-72.7285505872005,40.8240574011831],[-72.7295546871942,40.8219964149189],[-72.7295539784234,40.8207353400106],[-72.7300346247111,40.8196143465819],[-72.7302141467325,40.8177397973843],[-72.7298829756164,40.8172378646339],[-72.7299730775378,40.8165730755578],[-72.7317776698744,40.8146314011595],[-72.7324403732291,40.8145588555582],[-72.7331630526038,40.8148793147258],[-72.7351677285003,40.816679667179],[-72.7355951963198,40.8167916450663],[-72.7356885240913,40.816640347402],[-72.7344567173428,40.8145128942193],[-72.7323188464426,40.8136016622734],[-72.731957292507,40.813121657168],[-72.7311444043115,40.8127093411932],[-72.730783175566,40.8120897205407],[-72.7304214626287,40.81213665173],[-72.7297295056367,40.8129157065268],[-72.7295265007555,40.8147402523864],[-72.7288227776299,40.8145597611465],[-72.7286146442668,40.8142313907769],[-72.7289536495904,40.8137426469788],[-72.7292259648856,40.8122977848175],[-72.7305357777402,40.8103914271678],[-72.7321165090096,40.8087515997371],[-72.7322896547891,40.808083937202],[-72.7321046602311,40.8074677839049],[-72.7324622903255,40.8022954415524],[-72.7321356215656,40.8014017716174],[-72.73221868878,40.7997234857189],[-72.7326904390514,40.7994670322066],[-72.7366466923262,40.7993735612498],[-72.7405320496605,40.7999721526861],[-72.7423026991541,40.7999707817647],[-72.7432307765219,40.8010698517634],[-72.7427613600735,40.8013894471899],[-72.7429382581159,40.8017442046888],[-72.743204358866,40.8014341432888],[-72.7434064995679,40.8014155777751],[-72.7447370078099,40.802292811325],[-72.7466385499252,40.8028479005417],[-72.7492229203526,40.8029073507727],[-72.7517743019478,40.8022094681524],[-72.7533815245351,40.8020245962694],[-72.7533616780555,40.8014927597402],[-72.7539223444721,40.8008821512598],[-72.7540610012328,40.8002633245911],[-72.7530572749383,40.7957354624867],[-72.7516380365024,40.7947665153104],[-72.7511771639307,40.7945503568885],[-72.7507471215396,40.7942987677158],[-72.7505286683305,40.7940332869294],[-72.7500854332811,40.7932950259538],[-72.7484428404279,40.793677334796],[-72.7474118583493,40.7942201893438],[-72.7474613429451,40.7945093992954],[-72.7482161748204,40.7948168801998],[-72.7480507033485,40.7949127351057],[-72.7473953015003,40.7948413920782],[-72.7469072333318,40.7944220155316],[-72.7440188613341,40.7885826824696],[-72.7442919716384,40.7878448920814],[-72.7451756560614,40.7870559807117],[-72.7482728692947,40.7873956991718],[-72.7502917502507,40.7868766071673],[-72.7507038613705,40.7874386118202],[-72.750759297305,40.7877054180542],[-72.7509534591705,40.7877902716755],[-72.75173213952,40.7888818605392],[-72.7518979325888,40.7896102060501],[-72.7513102619165,40.7902112727447],[-72.7514450217855,40.7905201589537],[-72.7521250554387,40.7908261586813],[-72.7531814751112,40.7907341412062],[-72.7543283218951,40.7903105920274],[-72.755376357591,40.7908849565684],[-72.7562472392246,40.7931132719427],[-72.7573544954573,40.793382511174],[-72.7578846020862,40.7929064016082],[-72.7583569263812,40.7928705416604],[-72.7591704083631,40.7923819166566],[-72.7590158523202,40.7931670834235],[-72.7597378184325,40.7931090438183],[-72.7607629102578,40.7935973417902],[-72.761043140609,40.7944945369025],[-72.7631324575681,40.7950800272508],[-72.7632806535389,40.7948802289999],[-72.7627835447253,40.7943301315747],[-72.7625048370185,40.7931222062947],[-72.7631737288672,40.7925046416358],[-72.7647932592722,40.7921216779048],[-72.7649353943097,40.7916605372663],[-72.7645192614324,40.7906841527242],[-72.7621219292303,40.7901647749302],[-72.759877448967,40.7891979337545],[-72.7592279238975,40.7886448619419],[-72.758738422916,40.7873202372399],[-72.7567036822036,40.7854296208665],[-72.7552179334024,40.7849007992368],[-72.754346642137,40.7851946082935],[-72.753396656656,40.7841312272212],[-72.7527703036292,40.7841460518032],[-72.7528477851191,40.7837151941656],[-72.7544526325607,40.7837194167666],[-72.7565396713923,40.78425093384],[-72.759423014621,40.7842078790143],[-72.7606631235994,40.7837815722247],[-72.7615754948227,40.7831011830909],[-72.761586695916,40.7827455974761],[-72.7626523745241,40.7823293958935],[-72.763329552433,40.7817705388546],[-72.7647439947636,40.7824600127659],[-72.7666156319632,40.7826133561716],[-72.7668832284082,40.7822086872742],[-72.7695949197558,40.7831979364394],[-72.770373664784,40.7830553536897],[-72.7722647612892,40.7834251658622],[-72.7716872038503,40.785193027574],[-72.7720389850139,40.7859474570356],[-72.7719224061479,40.7871747522914],[-72.7724503604134,40.788509073222],[-72.7723058107044,40.788889108048],[-72.7729263273768,40.7893604787148],[-72.7736819300067,40.7914423202471],[-72.7734099425966,40.7914685982506],[-72.7733156590176,40.7919847190377],[-72.7736980862071,40.7922668323684],[-72.7737297078034,40.7926727879276],[-72.7732667322756,40.796064243333],[-72.7732920468003,40.7974789337341],[-72.7735175625642,40.7991542053721],[-72.7739123056563,40.7991798383763],[-72.7741426579496,40.7984051207584],[-72.7740826693533,40.7975842673441],[-72.7741458631386,40.7973557908802],[-72.7740024381203,40.7969701988514],[-72.7740318085385,40.796578932242],[-72.7740122953339,40.7959435161546],[-72.7741775341422,40.7956539554163],[-72.7743615001292,40.7955133818032],[-72.7746319622,40.7950231780823],[-72.7747095739457,40.7946733764122],[-72.7753837550748,40.7936504972764],[-72.7752960453671,40.793171399956],[-72.7756338074223,40.7930833322997],[-72.7752584697371,40.7928103690215],[-72.7753925450898,40.7914347819308],[-72.7747544178446,40.7905802595353],[-72.7748836315151,40.7894612975925],[-72.7744811431487,40.7887599443463],[-72.7750091063973,40.7878108107],[-72.775556712208,40.7875376278232],[-72.7747313356334,40.7861030042781],[-72.7751850899548,40.784580450374],[-72.7749244051475,40.7839583979952],[-72.7750039635423,40.7829285532024],[-72.7744143399326,40.7829306930962],[-72.7738890177308,40.7828259783433],[-72.775148164705,40.7822917895977],[-72.7764556033122,40.7829069957759],[-72.778574967121,40.7833621727559],[-72.7795032663727,40.7834430956683],[-72.7811678463908,40.7829211458775],[-72.782608868074,40.7827957184506],[-72.7854556283111,40.7835394805365],[-72.7870797661751,40.7834535420227],[-72.7900060641458,40.784347344743],[-72.7902772727166,40.7849020085878],[-72.7902408711846,40.785396733984],[-72.7897848584986,40.7855681535598],[-72.7886746746564,40.7871727689693],[-72.7882515870222,40.7885833694081],[-72.7876129243811,40.789012500572],[-72.788141090649,40.7897477458812],[-72.7879339220765,40.7903878229505],[-72.7869713664698,40.7915358588201],[-72.7859847198438,40.7937868630747],[-72.7842642924628,40.7961814020205],[-72.7844173087933,40.7984632801803],[-72.7849287699902,40.7979641686228],[-72.7850006486877,40.7965153137206],[-72.7853897476648,40.7957075893812],[-72.7864873730593,40.7942649072721],[-72.788536018794,40.7909938725916],[-72.7913018623835,40.7854755996269],[-72.7906303779968,40.7842151780468],[-72.7964714198069,40.7857771178622],[-72.7957117010964,40.7879875067175],[-72.7951189675191,40.7885076347303],[-72.795023714658,40.7895507065031],[-72.7956704594417,40.7892342846998],[-72.7964932111391,40.7881645736221],[-72.7971983015005,40.7876285682943],[-72.7974000828763,40.7867451623889],[-72.797204383095,40.7857415717017],[-72.7978392395743,40.7854023902759],[-72.7979888252388,40.7849773794035],[-72.7987861959361,40.7848079362543],[-72.7989014309224,40.7843687575038],[-72.8021397883514,40.7844304899626],[-72.8020832124548,40.786370572896],[-72.8023191441844,40.7869425522094],[-72.8019048555484,40.7891505544602],[-72.8003448043951,40.7908142696038],[-72.8000936309501,40.791422004061],[-72.7987677966425,40.7924731354542],[-72.7980135351973,40.7938008877629],[-72.7979674354535,40.7941422998001],[-72.7975219905485,40.7946202122239],[-72.7969868758119,40.7955918335124],[-72.7959927210668,40.7966672788441],[-72.795594827583,40.7968713574064],[-72.7950927097634,40.7984561214412],[-72.7949116004189,40.7992723589272],[-72.7956590104134,40.7988047314837],[-72.7963651365324,40.7973229459467],[-72.7975278475642,40.7959219343903],[-72.7986865494149,40.7942596114969],[-72.7997015810072,40.792572016092],[-72.8004692974187,40.792248866859],[-72.8017319334495,40.7906650571141],[-72.8028962892966,40.7898810468956],[-72.8031769023301,40.78914325529],[-72.8034400116903,40.7888014679577],[-72.8040472081436,40.788065387158],[-72.8047037724118,40.7857178624613],[-72.8055965046664,40.7847439962935],[-72.8060937778717,40.7845778024403],[-72.807388819728,40.786030142502],[-72.80778348287,40.78970377917],[-72.8081200034535,40.7900344500206],[-72.8082141639633,40.7908874668677],[-72.8079987398733,40.7919192605158],[-72.8069392039451,40.7939303619777],[-72.8066240848249,40.7955592685734],[-72.8057865549428,40.7974394631692],[-72.8059744537542,40.7974475400806],[-72.8074723513713,40.795242107606],[-72.8081387971076,40.7930658995227],[-72.8091785925574,40.7911129615412],[-72.8092885661111,40.7890748041061],[-72.8097057536105,40.7882810382238],[-72.8093372287483,40.786467995519],[-72.8085669440534,40.7852057998406],[-72.8084448037175,40.7842576696775],[-72.8077647116738,40.7834745904901],[-72.8062993088154,40.7825189445779],[-72.8034266438605,40.7852071390988],[-72.8030288680561,40.7850509388322],[-72.8028910844578,40.784489836976],[-72.8027725553493,40.7838390255006],[-72.8037347983423,40.7839474225365],[-72.8050831677872,40.7831939137818],[-72.8063676041332,40.7802638103164],[-72.8065052943067,40.7791404632144],[-72.80728038409,40.7771464732297],[-72.8088957741598,40.7774338793702],[-72.8093459244403,40.7777306737356],[-72.8100454892644,40.7776493724474],[-72.8094738409435,40.7786158593304],[-72.8096055959479,40.779001188582],[-72.8125300308126,40.780970808608],[-72.8127921169917,40.7818990685948],[-72.8135443419561,40.7826294394588],[-72.8156359523142,40.7839616642413],[-72.8167827182497,40.7843616931504],[-72.8171830767106,40.7847791199183],[-72.8171615764326,40.7856164311907],[-72.8166738163861,40.7859449921206],[-72.8168308463894,40.7867361387586],[-72.8158765849277,40.7883709955555],[-72.816113011629,40.7895644892807],[-72.815408013794,40.7911860428569],[-72.8154474678013,40.7918578648686],[-72.8164700551235,40.7939715157915],[-72.8164166655512,40.7957360160588],[-72.8157219228835,40.7969298976409],[-72.8144971095195,40.7986767159271],[-72.8142336049006,40.7994373789998],[-72.8149104243817,40.7991754651121],[-72.8164599886024,40.7977365469208],[-72.8163492029717,40.7974777307326],[-72.8167046546515,40.7969620110336],[-72.8167433423959,40.7960980028901],[-72.8170233158289,40.7959411617806],[-72.8174137577873,40.7947640350811],[-72.8172622146939,40.7930812301382],[-72.8166479332278,40.7920247117634],[-72.8172675300254,40.7896403832631],[-72.8180870361096,40.7878903706239],[-72.8181591474708,40.7869774502208],[-72.8197633400405,40.7859178399603],[-72.8200186942449,40.7866252677814],[-72.819413499238,40.7893656905448],[-72.8195982144199,40.7899231567525],[-72.8219076383866,40.7918538951035],[-72.8226927183343,40.7915399313003],[-72.8235598270437,40.7919346158797],[-72.8247283528704,40.7915603134206],[-72.8254069941349,40.7919424227798],[-72.8259826417555,40.7919397594973],[-72.8264214651785,40.7935198758898],[-72.8256477570041,40.7954824918295],[-72.825113660957,40.795981360902],[-72.8251823227874,40.7970095350451],[-72.824726696377,40.7987799694566],[-72.8270833151338,40.7957122117775],[-72.8275083880447,40.7956256354739],[-72.8277469787876,40.7953058497598],[-72.828343137641,40.7954702043867],[-72.8290463918461,40.7967355134243],[-72.8291148883865,40.7984752923345],[-72.8300744508066,40.8000381683647],[-72.830409870954,40.8014992231867],[-72.8306148296709,40.8020075099201],[-72.8315057302606,40.8021548704432],[-72.8321325674794,40.8017658076803],[-72.8320244273872,40.8012188083065],[-72.8312475822957,40.7998215225312],[-72.8309256108266,40.7996533304227],[-72.8318502404603,40.798513218603],[-72.8317890822574,40.7980706908528],[-72.8311925290436,40.7977126807929],[-72.8313864690252,40.795441875525],[-72.8343872301464,40.7952190002186],[-72.8358370292682,40.7950795614024],[-72.8379077798471,40.7955507568703],[-72.835981290618,40.794469741304],[-72.835078707438,40.7945023509825],[-72.8328175643245,40.7947391396124],[-72.8315526330983,40.7946838454828],[-72.8313494458591,40.7932568049459],[-72.829439581751,40.7912842282993],[-72.8283763905779,40.7907913157414],[-72.8277525285794,40.7894103967798],[-72.8283347132403,40.7885701257758],[-72.8290217268033,40.7882857992055],[-72.8308053048504,40.7883553768337],[-72.8320211386549,40.7880719654958],[-72.8326911821439,40.7883998246159],[-72.8334927075494,40.7883518237848],[-72.8357594229125,40.7874350396781],[-72.8368976108354,40.7874203525403],[-72.8380609578744,40.7873836061155],[-72.8384373232324,40.7867871388834],[-72.8336006859448,40.7869216204673],[-72.832604688755,40.7866867294809],[-72.8301621802773,40.7865642556094],[-72.8284477958632,40.7870094119921],[-72.8284390759168,40.7875497120096],[-72.8269064799735,40.7870074164223],[-72.8261043212557,40.7863032139124],[-72.8242034636566,40.7852450062901],[-72.8224152278447,40.7837340026948],[-72.8201742581976,40.7831827504637],[-72.8207338969415,40.7826933930188],[-72.8211439122916,40.7817057817611],[-72.8210631088318,40.7810737148756],[-72.8213355975019,40.7808716821422],[-72.8208296043502,40.7807855612795],[-72.8197540981729,40.7796798123484],[-72.8169948805569,40.7790601554338],[-72.8168614492962,40.7786342672823],[-72.8177838609895,40.7779896478475],[-72.8183117173386,40.7779500867885],[-72.8183755588092,40.7782170222938],[-72.8213521121301,40.7776247045678],[-72.8222559502566,40.7769121394948],[-72.8231193920431,40.7769824786807],[-72.8242230604045,40.7769762720249],[-72.8270614133088,40.7779395395722],[-72.8270052317726,40.7776637454302],[-72.8253067403526,40.7769471584203],[-72.8243126790322,40.7766356676304],[-72.8228830785295,40.7766897727305],[-72.8223313494516,40.7764856947236],[-72.8217634453088,40.7767767349407],[-72.8196615402576,40.7769622301781],[-72.8193100249953,40.7772033002893],[-72.8179545301137,40.7769840092567],[-72.8162290676755,40.7774107610238],[-72.8154652212062,40.7770810313731],[-72.8141481113367,40.7771821960945],[-72.8143634033743,40.7734165382684],[-72.8139942236403,40.7715989895563],[-72.8141624924661,40.7713904949653],[-72.8146389058921,40.7724444163117],[-72.8153837368234,40.7726521864773],[-72.815927914663,40.7732660063761],[-72.8162461437507,40.7732269908214],[-72.8161327179714,40.7728690379735],[-72.8219987670823,40.7717953903197],[-72.8228276506798,40.7724911170175],[-72.8256603522827,40.7724859786965],[-72.8265375481745,40.772700674865],[-72.8257006713676,40.7721579552999],[-72.8232509000108,40.7721838313903],[-72.822188439168,40.7714296524232],[-72.8176817638641,40.7713805406212],[-72.8164533024418,40.7716500523276],[-72.816118735694,40.7711933337732],[-72.8148788018871,40.7707960393598],[-72.8144244977968,40.7702199478999],[-72.813855080891,40.7699479369907],[-72.8130891718899,40.770338772717],[-72.8132524739304,40.7708913391029],[-72.8125430932152,40.7713192729341],[-72.8121898010853,40.7714792186374],[-72.8118474243844,40.7710808898116],[-72.8111029339146,40.7684950609147],[-72.8109768158386,40.7681638861821],[-72.8114544869061,40.7644617563693],[-72.8128234178895,40.7623438663068],[-72.8132959398138,40.7621816743627],[-72.8137329998439,40.7626043115505],[-72.814342281287,40.7625843260646],[-72.8149532273084,40.7628751359633],[-72.8150079868115,40.762898692102],[-72.8158648358621,40.7626671998269],[-72.8158664600161,40.7626402068915],[-72.8159228930806,40.7618891277439],[-72.8148380848485,40.7615758394697],[-72.8158843778128,40.7604876925305],[-72.8158882944674,40.7598932550666],[-72.8164182142468,40.7597636627845],[-72.8166605419812,40.7592593095033],[-72.8167823256859,40.7592030631605],[-72.817568361441,40.7588260933112],[-72.8178442125052,40.7597861326956],[-72.8184733682757,40.7601763532011],[-72.8192627313906,40.7601732572534],[-72.820932369822,40.7596958576743],[-72.8210866464889,40.7593474675991],[-72.820228286472,40.758380938586],[-72.8209244278166,40.7578085813346],[-72.8209525486782,40.7578316316516],[-72.8224628646059,40.7591482497737],[-72.8224812153905,40.7591530999397],[-72.824099639071,40.7593817976545],[-72.8251204207795,40.7592974507323],[-72.8257670523755,40.7585394708461],[-72.8257997555434,40.7585355827843],[-72.8271665072139,40.7584442234755],[-72.8278685262354,40.7583943848864],[-72.8286823316108,40.7576170146884],[-72.8302497139152,40.7570699966327],[-72.8335219234574,40.7575773571229],[-72.8340645274485,40.7563714914085],[-72.834854160058,40.7556972125662],[-72.8361050506164,40.7537434643753],[-72.8373011313661,40.7531128197955],[-72.8397808848938,40.752871013085],[-72.8398373071785,40.7523631287533],[-72.8406526864023,40.7518964701029],[-72.8409285230935,40.7522259116553],[-72.8418815628464,40.7521491555922],[-72.8421764267535,40.7523483365488],[-72.8419862668826,40.7525969992132],[-72.8422225848878,40.7528896677062],[-72.8431052227736,40.7525863894491],[-72.844192516644,40.7528454118835],[-72.844465757204,40.7532558669388],[-72.8438874254173,40.7536954534726],[-72.8453071884694,40.7548929835064],[-72.845714076784,40.7548105015364],[-72.8463679002922,40.7541651351606],[-72.8464312306214,40.7549094606985],[-72.8473963401385,40.7561345115515],[-72.8476211650979,40.7566926839817],[-72.8482985262632,40.757016084458],[-72.8486648179136,40.7568382533812],[-72.8479825258957,40.7559562793604],[-72.8468344214704,40.7528541964972],[-72.8448974731565,40.7497689040013],[-72.8449966938762,40.747865622331],[-72.8458732546591,40.7474270956762],[-72.8455014868788,40.7470193125988],[-72.845646607018,40.7467202624638],[-72.8463783494956,40.7466168184282],[-72.8472576079193,40.7457955025867],[-72.8483749441478,40.7457397722993],[-72.8489113335938,40.7465064201886],[-72.8490473807487,40.7473151484668],[-72.8498095455717,40.7473473654738],[-72.8512002409378,40.7456077499906],[-72.8515223642222,40.745420079895],[-72.851100339295,40.7466642988365],[-72.8508663263669,40.7471959013731],[-72.8508363190431,40.7481276432898],[-72.8513554123267,40.7486282298102],[-72.8532032136284,40.7471988584102],[-72.8538709430572,40.7469680675682],[-72.8558546235289,40.7467437127143],[-72.8561555339962,40.7462944113622],[-72.8560430478547,40.7456482688197],[-72.854901931424,40.7457531741967],[-72.8537461104704,40.7464072668078],[-72.8521040206737,40.746989244651],[-72.851806283056,40.7473620281234],[-72.8516019729227,40.7476149459001],[-72.8516323359793,40.7472236743772],[-72.8520242754294,40.7461320257706],[-72.8533024873488,40.744665026211],[-72.8539644001861,40.7444071037309],[-72.8551310359574,40.7444287900293],[-72.8569494273151,40.7438860723602],[-72.8578456064055,40.7431550666802],[-72.8587736217895,40.7430461783978],[-72.8611731629489,40.7431221969862],[-72.8610063996995,40.7436370517952],[-72.860006043884,40.7437626320913],[-72.8596081153659,40.7442146484122],[-72.8595305602142,40.7454787981899],[-72.8603071133531,40.7457544223724],[-72.8605254327133,40.7464025232419],[-72.8611206887599,40.7464225632743],[-72.861558230287,40.7460973846575],[-72.8616943897313,40.7454288300996],[-72.8625016365068,40.7450699618744],[-72.8618283078789,40.7465167444037],[-72.8623053393459,40.7465300848934],[-72.86258052925,40.7465126623576],[-72.862092813221,40.7480574647959],[-72.8628169424766,40.7477060628404],[-72.8631578603134,40.7459828878239],[-72.863792273025,40.7457739419599],[-72.8640702468082,40.7450449552211],[-72.8647222350582,40.745489391393],[-72.8657030111938,40.7451201990642],[-72.8657239473299,40.7462015155168],[-72.866168341206,40.746448437815],[-72.8665229610458,40.7460766680382],[-72.8671653795432,40.7465434328667],[-72.8666538590575,40.7468447466738],[-72.8666592004402,40.7470250000611],[-72.8669946852662,40.7472518904144],[-72.8675504316099,40.7469333772095],[-72.8681205572865,40.7464890180636],[-72.86720925416,40.7453327016514],[-72.8666448498535,40.7427730768883],[-72.8675699268482,40.7422226833816],[-72.8675794184475,40.7419256024764],[-72.8670257696699,40.7414154422684],[-72.8671907946792,40.7406753516426],[-72.8679074939691,40.7397652979557],[-72.8692009952147,40.7394739132409],[-72.870477323367,40.739488461237],[-72.8729452595571,40.7401555046069],[-72.8735460887518,40.7398828309191],[-72.8743118297679,40.7401491536206],[-72.8752808011424,40.7400769173193],[-72.8751919487777,40.7385664806326],[-72.8736969338543,40.7370526675858],[-72.8739576492042,40.7369538812841],[-72.8801962637995,40.7401718030414],[-72.8823578331553,40.7425670135253],[-72.8831858390988,40.7494371092248],[-72.8830805906834,40.7535472552408],[-72.883395593921,40.7546790137236],[-72.8837269294287,40.7549463176326],[-72.8829441195238,40.7554679278533],[-72.8832467260104,40.7570138198858],[-72.8851578783026,40.7601340434913],[-72.887207352284,40.7620722375275],[-72.8873555123221,40.7622100670819],[-72.8871657072857,40.7633866195667],[-72.8870692749366,40.7634389011119],[-72.8869820880484,40.7635499026432],[-72.8869034692914,40.7636475492462],[-72.8866730765738,40.7639315812146],[-72.8865333912421,40.7642037623536],[-72.8861515362794,40.7649444191512],[-72.8862407003596,40.7663828021708],[-72.8867517375517,40.7666128534242],[-72.8868422805458,40.7669568089407],[-72.8870544509378,40.7668976394848],[-72.8896702839597,40.7661573187845],[-72.8893988562,40.7677377342785],[-72.8906313618378,40.7690844216528],[-72.8916237657665,40.7694313435565],[-72.8941209564922,40.7696120588841],[-72.8940900257003,40.7699582963445],[-72.893608297841,40.7703458487666],[-72.8935897700883,40.7704400932942],[-72.8934578767433,40.7711222809293],[-72.8936983934741,40.7718067630459],[-72.8957579079254,40.7736098723521],[-72.896038384415,40.773592467117],[-72.8963515703607,40.7731252656363],[-72.895419606881,40.7716354909583],[-72.8954769211927,40.7713212614917],[-72.8958659240501,40.7692025048936],[-72.8955352290412,40.7687235632043],[-72.8937307768418,40.7677583305302],[-72.8929569159537,40.7665416568884],[-72.8928892862876,40.7664323279261],[-72.8930120464611,40.7663670102284],[-72.8941533991487,40.7657482864378],[-72.893793608606,40.7640347336416],[-72.8947885682417,40.7635484486422],[-72.8952631221551,40.7620257703641],[-72.8951062026447,40.7612031935218],[-72.8943115107235,40.7603194388999],[-72.8953834793352,40.7598075295581],[-72.8964644733205,40.75997136373],[-72.8974623731421,40.759858934121],[-72.9011142286896,40.7585111731821],[-72.9011501720808,40.75849831481],[-72.9032544513793,40.7587302339527],[-72.9065822989769,40.7576511510277],[-72.9066007979835,40.7576514864914],[-72.910206766688,40.7577348542889],[-72.9109065210567,40.757495302407],[-72.9109297766428,40.7575092354121],[-72.9127485255299,40.7585375132063],[-72.9134290514599,40.7587705120744],[-72.9177523204272,40.7602358089771],[-72.9183110761272,40.7601963455349],[-72.9195269656272,40.7594796245723],[-72.9214356161114,40.7597437172704],[-72.9223252249238,40.7595885859701],[-72.9232542275563,40.7594521730898],[-72.924001843265,40.7596007419235],[-72.9248564132897,40.7590486137598],[-72.9264377617018,40.7586716811394],[-72.9284867757457,40.7578257035531],[-72.9297715274004,40.7566507061625],[-72.930854935159,40.7560936289363],[-72.9309862023782,40.7557762019289],[-72.9321531992722,40.7552206110256],[-72.9329529244539,40.7542125394085],[-72.9337267736638,40.7529157452424],[-72.9329954192584,40.7523396553055],[-72.9338691458566,40.7518328407652],[-72.9341687950893,40.7519102681789],[-72.9355126163638,40.7517856825277],[-72.9385301849639,40.7488129760811],[-72.9441177096244,40.745476158226],[-72.9448997640462,40.7435894371897],[-72.9447524780688,40.7407763764439],[-72.9504688813282,40.7415986465579],[-72.9513446614751,40.7416186975664],[-72.9525836224065,40.7412128097992],[-72.9562393514895,40.742908013729],[-72.9583380055378,40.7435081431348],[-72.960715900892,40.7430862768137],[-72.9627260268673,40.743265898581],[-72.9633334523911,40.7435423493331],[-72.9643898981147,40.7434889223459],[-72.9670503244056,40.7438510850156],[-72.9691124538527,40.745193521541],[-72.9700894876069,40.7452692593176],[-72.9716091514033,40.7457823974287],[-72.9732625851254,40.7466446665363],[-72.9738938474452,40.7466017023566],[-72.9769881824763,40.7483089147046],[-72.9777601254611,40.7478990735957],[-72.9785234536025,40.7486285673611],[-72.9801786067,40.7494637447948],[-72.9834961838589,40.7500892458232],[-72.9845151249194,40.750030476476],[-72.9850677927367,40.7495266788492],[-72.9869090093874,40.7495227746081],[-72.9873423414091,40.7492195612977],[-72.9875247164798,40.7486462397835],[-72.9899657921446,40.7488058773226],[-72.99085152293,40.7484744962778],[-72.9929831298778,40.748610666951],[-72.9939446200825,40.7484427208121],[-72.9950855011546,40.7486607163577],[-72.9960640979774,40.7483173963926],[-72.997186853742,40.7483008522341],[-72.9975633385759,40.7487307533422],[-72.9972393683552,40.7509410756748],[-72.9984729331067,40.7516245604521],[-72.9980827058456,40.7522438478398],[-72.9981734779101,40.7530426295503],[-72.9974822350787,40.7535035578628],[-72.9973319316604,40.7541450205662],[-72.9977837905365,40.7545311953539],[-72.9982381188813,40.7545886201672],[-72.9995284032599,40.7540750158237],[-72.9999731627503,40.7530197824037],[-72.9997031103113,40.7527673819517],[-73.0003356697984,40.7516703625374],[-72.9995256849578,40.7513275324325],[-72.9992238222763,40.7505070764318],[-72.9988029696505,40.750297100851],[-72.9987669894284,40.7490038480817],[-72.9974546127821,40.7473461622448],[-72.9980131933106,40.747036073495],[-73.0001918890472,40.7476008032516],[-73.0020352921974,40.7474480725287],[-73.0031672476088,40.7474946887156],[-73.0040350588008,40.7477844417114],[-73.0044231669362,40.7476785554546],[-73.0069086023081,40.748559239399],[-73.0082431727318,40.7484156363516],[-73.0098341968979,40.7479881893215],[-73.010675456585,40.7480026946222],[-73.0157254096166,40.7491795897575],[-73.0152491776501,40.7472707419328],[-73.0132710245124,40.7475744970055],[-73.0131396387156,40.7467660318571],[-73.0159808823985,40.7469860643799],[-73.0164693494191,40.7474628705871],[-73.0171114822522,40.750117712441],[-73.0173567142399,40.7569589972087],[-73.0191000917798,40.7585608327267],[-73.0191672085079,40.7599402075068],[-73.0196076165591,40.7600693741765],[-73.0199731015223,40.7599540386154],[-73.0199122900692,40.7585612607263],[-73.0187399392161,40.7568025944298],[-73.0186816367575,40.7546036425576],[-73.0190139828699,40.7517898445507],[-73.0179312299832,40.7516541479019],[-73.0179456147059,40.7499744047076],[-73.0175317662444,40.7486296290133],[-73.0200869477132,40.7487635753482],[-73.0211324914825,40.7484302021278],[-73.0219847169044,40.7478502942104],[-73.0221190150394,40.7474652579851],[-73.024860366961,40.7464853137312],[-73.0261618766873,40.7455797714579],[-73.0271990059373,40.7444264828318],[-73.027926813794,40.744997411043],[-73.0286379776651,40.745054601122],[-73.0290926913872,40.7445714386541],[-73.0288065842574,40.7442332605429],[-73.0285849429274,40.7443690968833],[-73.0282463687951,40.7444038477909],[-73.0275228872248,40.7438870428884],[-73.0294940092488,40.7420605907212],[-73.0293194872503,40.7419044768692],[-73.0309500327973,40.7402027963284],[-73.0311859780016,40.7400581917209],[-73.0314431477012,40.7398463896718],[-73.0322550693094,40.7390450229479],[-73.0332727760847,40.7379408896034],[-73.0337786991679,40.736143429474],[-73.0335210695309,40.7356931491683],[-73.0339048738378,40.7339701734357],[-73.0340149812404,40.7335486781867],[-73.0343265304557,40.7318154613314],[-73.0342147423051,40.7308362007223],[-73.0353138768693,40.7299271036577],[-73.0356396796532,40.730072272153],[-73.036905201971,40.7298460883465],[-73.0383219350055,40.7302665253643],[-73.041349787519,40.730462078207],[-73.0419017142262,40.730165174868],[-73.0431407883454,40.729578158013],[-73.0440945934629,40.7292295059817],[-73.0464722336957,40.7298688025416],[-73.0488087804958,40.7300164238584],[-73.0528685430475,40.7285041004419],[-73.0538402147577,40.727844896276],[-73.0559843666785,40.7282188292794],[-73.0568353793747,40.7280935382329],[-73.0587283901897,40.7281208910175],[-73.0597646238194,40.7280392295112],[-73.0609675883591,40.7280008947172],[-73.0630407841522,40.7279141008278],[-73.0638632367105,40.7273694103573],[-73.0658171784547,40.7269022332256],[-73.0666113197086,40.7264651429881],[-73.0665072912054,40.7255851277688],[-73.0666049596364,40.7253300375791],[-73.0687027917261,40.7242346665324],[-73.0691500197869,40.7236881615662],[-73.0698407892062,40.7230106088893],[-73.0711394521714,40.7232169826844],[-73.0713550128053,40.7237475492089],[-73.0727734373675,40.7236766594252],[-73.0733631885381,40.7236009304235],[-73.0737237103094,40.7236474843499],[-73.0746600593643,40.7236135640708],[-73.0772228369872,40.7234806332277],[-73.0781999048774,40.7232401804721],[-73.0801368792424,40.7225833097324],[-73.0805154616425,40.7223103604612],[-73.0827433527174,40.7219060017964],[-73.0850821192546,40.7223051467758],[-73.0867454218683,40.7222606677186],[-73.0894772956654,40.721801476155],[-73.0896686134647,40.7215028770512],[-73.0903593703075,40.7214647645257],[-73.0908507451746,40.7215674769832],[-73.0911816207449,40.7215639414687],[-73.0915135572255,40.7216009584936],[-73.0919961869934,40.7215954261276],[-73.0924896899695,40.7218828300958],[-73.0931296282183,40.720073798322],[-73.0944321287864,40.7199646952429],[-73.0940486802125,40.7215257472793],[-73.0954218530406,40.7213006965944],[-73.0954746667928,40.7209277377943],[-73.0967293482417,40.7210430184945],[-73.0990149587685,40.7200357632747],[-73.1013413411312,40.7194660192902],[-73.1029142777189,40.7185100160512],[-73.104576239148,40.7183526574817],[-73.106602966888,40.7185615778144],[-73.1083525841259,40.7190451688474],[-73.1112064239857,40.7208574666056],[-73.1150591598987,40.7236228406806],[-73.1162051613679,40.7242360764605],[-73.1165240444292,40.7242908246756],[-73.1169086419484,40.7247970416759],[-73.1183513138368,40.7258609902802],[-73.1195893180625,40.7263630929933],[-73.1214074938245,40.7265773642396],[-73.1213893900766,40.7273787783467],[-73.1217307247317,40.7276095330021],[-73.1245330677695,40.7275920483265],[-73.1253862463039,40.7279121797282],[-73.1271303963949,40.7294223048638],[-73.1275492601506,40.7301092027575],[-73.1288785359041,40.7307928458038],[-73.1297786325474,40.7318973979785],[-73.1306149047882,40.7323748562416],[-73.1300361445051,40.7307890875003],[-73.1284820195377,40.7298360767257],[-73.1268895796268,40.7279816272406],[-73.1253875982684,40.7270204131775],[-73.1247558661297,40.7263255455705],[-73.1247822343782,40.7259926793957],[-73.1254519993894,40.7253324659378],[-73.1314320195571,40.72613205694],[-73.1329054030485,40.7261333810501],[-73.1350387913555,40.7276226608018],[-73.1361518120773,40.7274379605095],[-73.1369636618204,40.7269601339262],[-73.1396696686288,40.7275307484498],[-73.1409323666434,40.7275781179028],[-73.1417450679893,40.7267759838995],[-73.1424062846323,40.7267100601588],[-73.14390954609,40.7275539706028],[-73.1456232118518,40.7276715959389],[-73.1470971469088,40.7272809007981],[-73.147728869166,40.7265974265834],[-73.1482103284291,40.7265285841947],[-73.1505849691871,40.7272827940047],[-73.1520580364715,40.7272163084538],[-73.1532315856772,40.7268747730594],[-73.1557262521369,40.7287252669181],[-73.1562067043886,40.7298724526597],[-73.1559947855248,40.7324543566132],[-73.1576169030778,40.73538533402],[-73.1572557848251,40.7369379482593],[-73.1551189604622,40.7391332827175],[-73.1540764026929,40.7399498490025],[-73.1524841235804,40.7410773896798],[-73.1496133109516,40.7427699331684],[-73.148740221259,40.7435035919716],[-73.1475663468631,40.7448854930922],[-73.1484855659439,40.744571453627],[-73.1490467695531,40.7446480149417],[-73.1491307216079,40.7443701150457],[-73.150194955725,40.7436575336878],[-73.1516779610714,40.7433254797375],[-73.1534523367768,40.7421468162223],[-73.1541201398674,40.7414999180534],[-73.1547369267348,40.7411449592253],[-73.1552232333071,40.740823942697],[-73.1557024512735,40.7407325141293],[-73.1568785373216,40.7405215990453],[-73.1579016429717,40.7400334874268],[-73.1592101397943,40.7385365225318],[-73.1606598338133,40.7358617475995],[-73.1598234636562,40.7351367860168],[-73.1605059649815,40.7342738919136],[-73.1595239195264,40.732605272277],[-73.1587031674789,40.7291151006045],[-73.1575607116601,40.727470927814],[-73.1554570908267,40.725662755254],[-73.1484528268434,40.7232805937847],[-73.1462794715911,40.7233853322376],[-73.1456619615799,40.7230511251433],[-73.1441709747023,40.7228334895541],[-73.1438828508547,40.7225766330018],[-73.1419245639595,40.7228513955396],[-73.1412181548712,40.7223355744588],[-73.1408148858688,40.7223876309342],[-73.1396550907684,40.7218374724981],[-73.1390852866888,40.7210941364382],[-73.1389262480525,40.7203484132377],[-73.139357901123,40.7202067414158],[-73.1399266730384,40.720508668123],[-73.1398263060683,40.7208178259263],[-73.140114606884,40.7209080475171],[-73.1406492589883,40.7206284062799],[-73.1397664737788,40.7195917759353],[-73.1389848945659,40.7193855052822],[-73.1383536097882,40.7188843895881],[-73.1374808030648,40.7194558277265],[-73.13639870505,40.7192266733866],[-73.1350168778524,40.7179657558561],[-73.1351243531913,40.717535109185],[-73.1360774773859,40.7172937777399],[-73.1392646245555,40.715426500854],[-73.143299313331,40.7125548679362],[-73.1435531781286,40.7126850628968],[-73.1434588343625,40.7128051535397],[-73.1440759688779,40.7132024220322],[-73.1444172020234,40.7130908039861],[-73.1476929742839,40.7139090993372],[-73.1479774150389,40.7133371519311],[-73.1469970709929,40.7130962178998],[-73.1471039417656,40.7123908059626],[-73.1462166371319,40.7129305503091],[-73.1447901421051,40.7125833431264],[-73.1437725880435,40.7120580321595],[-73.1454955414871,40.7087077270716],[-73.1472332614373,40.7024165150486],[-73.148407454735,40.6995798152472],[-73.1487984150214,40.6990320924344],[-73.1494901070104,40.6987369109097],[-73.1679448285094,40.69826109925],[-73.1701692287311,40.6986927348413],[-73.1756986198163,40.7004332282518],[-73.1763302612251,40.7008440666259],[-73.1760293750123,40.7016230115528],[-73.1735943279413,40.7034536750057],[-73.1731130887655,40.7042522778141],[-73.1728422404192,40.7055811792124],[-73.1732632852844,40.706173364567],[-73.1745252430871,40.7061527928226],[-73.1756073536784,40.7058095796823],[-73.1757884702093,40.7050557680602],[-73.1752177175087,40.7034973657631],[-73.1772316837818,40.7012366419838],[-73.1786141299187,40.7016232887308],[-73.1864292447184,40.7060611872289],[-73.1866996223476,40.7064302598948],[-73.1866693176815,40.7070017940344],[-73.1858880241328,40.7075480158353],[-73.1858279115689,40.708236185433],[-73.1868198843062,40.7093327349375],[-73.1857974398162,40.709195061362],[-73.1845650725189,40.7095405109864],[-73.1819492996841,40.7116207300462],[-73.1829412670316,40.711438173847],[-73.1857072283004,40.7097926777916],[-73.1859777613381,40.7097203608683],[-73.1865794565087,40.7100405925273],[-73.186699350158,40.7109117507354],[-73.1859474719433,40.7120079238918],[-73.1851062122562,40.7125802211311],[-73.1840538565621,40.7141130494318],[-73.1845348433113,40.7141386314964],[-73.1860074973706,40.7136122951018],[-73.1878719992519,40.7107500060164],[-73.1888639360565,40.7110042866181],[-73.190096443491,40.7119649577706],[-73.1903071657988,40.7105224736606],[-73.1887738673729,40.7097687739455],[-73.188412959326,40.708808259051],[-73.1875716223838,40.7083491537858],[-73.1875716753844,40.7080744097004],[-73.1892157953736,40.7073030029623],[-73.190273559824,40.7060809867686],[-73.192140693769,40.704966223685],[-73.1939142600923,40.7050120034159],[-73.1976423888956,40.7070610521976],[-73.2019404628142,40.7078442226592],[-73.2022107236623,40.7080285925788],[-73.2020910788463,40.7091482303957],[-73.2029928652206,40.7104999666769],[-73.2043694390704,40.7115032649607],[-73.2042979852761,40.7118219389462],[-73.2036844583949,40.7119655290636],[-73.2033239024877,40.7124418474786],[-73.2029934661936,40.7145490877767],[-73.2006792748676,40.7154183431593],[-73.2023924223016,40.7156026764475],[-73.2021227821893,40.7183909651521],[-73.2023632656824,40.7207007651414],[-73.2021532162128,40.720999262315],[-73.201190811523,40.7213445887408],[-73.2011914071061,40.7215697979091],[-73.2023934814153,40.7217776944023],[-73.2025146273162,40.7243153380657],[-73.2027248465674,40.7246158763828],[-73.2031459884507,40.7246134255318],[-73.203686943135,40.724063348127],[-73.2038021637483,40.7181829028456],[-73.2042441869704,40.7163836704585],[-73.2047180824187,40.7159856808312],[-73.2042419789114,40.7154197771052],[-73.2061696422386,40.7119140970143],[-73.2050172025437,40.7117925891252],[-73.2057355682084,40.7110786108917],[-73.2064448590922,40.7097924762323],[-73.2114090616416,40.7069283770331],[-73.2146854564347,40.7055558260765],[-73.2154531351169,40.7054821201044],[-73.2166017300223,40.7060493626618],[-73.2218732947395,40.707121572828],[-73.223463696373,40.7076595199181],[-73.2245162694594,40.7083918546238],[-73.2246969053917,40.7087774751746],[-73.2247275145867,40.7097418078856],[-73.2238571521793,40.7118678304021],[-73.2242184536882,40.713584918651],[-73.2234983991908,40.71601051457],[-73.2241007671995,40.7193482548568],[-73.2236800798637,40.7194183499382],[-73.2230432542774,40.7191292985702],[-73.2232597725153,40.7204478049452],[-73.2228404290592,40.723693249195],[-73.2233822110919,40.7248861461443],[-73.2230216695577,40.7256147499491],[-73.2235031476854,40.7258203382192],[-73.2239840976037,40.7258232356171],[-73.2240740764558,40.7256399558871],[-73.2241020589769,40.7217489167751],[-73.2244023469117,40.7209473170906],[-73.2258145335727,40.7185683904376],[-73.2280384325344,40.716854991672],[-73.2303236666672,40.7170116586137],[-73.2320080392659,40.7180643878783],[-73.2320400067136,40.7217491666364],[-73.2317402362084,40.7226183545578],[-73.2312290840319,40.7231419966009],[-73.2311097437447,40.7242391482111],[-73.2315008693211,40.7243081978874],[-73.2320717774303,40.7237359258957],[-73.2323113491334,40.7229603999356],[-73.2329428441169,40.7228664768405],[-73.2331222403741,40.7214279366943],[-73.2329403144611,40.718542577904],[-73.2344106490703,40.7144258797323],[-73.2352817085704,40.7133267054507],[-73.235913266436,40.7131426858884],[-73.2376881559777,40.7152236339904],[-73.2387426703234,40.7177169432938],[-73.2397955892612,40.7190661955009],[-73.240549567737,40.7193209086794],[-73.2406528407571,40.7190522408246],[-73.2397946568099,40.7179221590177],[-73.2405157192171,40.717122428533],[-73.2402153091114,40.7170097521785],[-73.2395840180455,40.7172388392544],[-73.2394030919574,40.7169162938919],[-73.2398240631608,40.716553384064],[-73.2394629934171,40.7161875553759],[-73.2401233755252,40.7151346752339],[-73.2389197848598,40.7140578727302],[-73.2405430226119,40.7131638049671],[-73.2414446643575,40.7131189922843],[-73.2419558021609,40.7127304233262],[-73.2427367103323,40.7124090164033],[-73.2430073475746,40.7121338859641],[-73.2430067349236,40.7114537684285],[-73.2415909415268,40.7109908143942],[-73.2389436908261,40.7116350696409],[-73.2376580300763,40.7124667097759],[-73.2379034911345,40.7127542103538],[-73.2374005306951,40.7130843333],[-73.2364471091582,40.7121194211877],[-73.2376185625943,40.7112139872042],[-73.2409917319946,40.7102565362716],[-73.244869351241,40.7100047825116],[-73.2488946921477,40.7064581854313],[-73.2492664338769,40.7053152949559],[-73.2485579532735,40.7046559660091],[-73.2485492351237,40.7043675758125],[-73.2499179109855,40.7033208789261],[-73.2508378891427,40.7039834095454],[-73.2512871294298,40.7042874855143],[-73.2516142159062,40.7041708328662],[-73.2516744614207,40.703847454662],[-73.2508333014466,40.7031410853104],[-73.2526083886177,40.701402395874],[-73.2555849625998,40.7009024428802],[-73.2569684570706,40.6997342815122],[-73.2580811822467,40.6995303861302],[-73.2608350477002,40.6959281512263],[-73.2619161315171,40.6958003100325],[-73.2629239164001,40.695959614635],[-73.2659162522222,40.6953245087286],[-73.2683104484056,40.692734600617],[-73.2694501454982,40.6924544303378],[-73.2700785134461,40.6918963414552],[-73.2720113968834,40.6912902294222],[-73.2734523422099,40.6900551656834],[-73.2751308452165,40.6874363849461],[-73.2763337432809,40.6864499532618],[-73.2773864529112,40.6848036743206],[-73.2785585558293,40.6847806279919],[-73.2829151199543,40.6853995320937],[-73.2866458978894,40.6850721377135],[-73.2877908896522,40.6843459608327],[-73.2904552011568,40.6850565662464],[-73.2911726649129,40.684909550273],[-73.292368775307,40.6850758897424],[-73.2934471794494,40.6847540373743],[-73.294485806191,40.6849765787524],[-73.2948450658293,40.6846936272118],[-73.2960033382853,40.685242215854],[-73.2971455560505,40.6851149454352],[-73.2987830195235,40.6855219416668],[-73.2997699015081,40.6862391202325],[-73.3007948774506,40.6883396000812],[-73.3000730954929,40.692292546117],[-73.3001934230286,40.6946003983198],[-73.3007338351304,40.695310991105],[-73.3010046511375,40.6952203929199],[-73.3016062735445,40.6918331866945],[-73.3015794767996,40.6881124346039],[-73.3041915898979,40.6865474010694],[-73.3100218797723,40.6872815155221],[-73.3114647474935,40.6877845719647],[-73.3120954708241,40.6877622705031],[-73.31272635136,40.687352617755],[-73.3135682892752,40.6871667458326],[-73.3149509168717,40.6870968613433],[-73.3165436864643,40.68766960424],[-73.3165432597645,40.6892730468701],[-73.3177155055148,40.6903936388785],[-73.3175968847781,40.6922565937395],[-73.3182189914686,40.6941663782338],[-73.3178337211112,40.6960434629527],[-73.3181063436302,40.6959978915992],[-73.3189797459366,40.6941819673243],[-73.3183359422371,40.6922223257603],[-73.318797382544,40.6903148198196],[-73.3187973079839,40.6901706885118],[-73.3179969432017,40.6889969755381],[-73.3181128842638,40.6887689574478],[-73.3193677669354,40.6884269142045],[-73.319477130533,40.6879600836621],[-73.319009088507,40.6877190550991],[-73.3176174606897,40.6882933123239],[-73.3176474392673,40.6878073100477],[-73.3174754253652,40.6875300535363],[-73.3172102435916,40.6871343328006],[-73.3168717260532,40.6870077859986],[-73.3163901598906,40.6867170054313],[-73.3163702550206,40.6860681284407],[-73.3160684147969,40.6858069925205],[-73.314585536113,40.6856592309367],[-73.3144476357337,40.6858779158117],[-73.3138993283388,40.6857122636209],[-73.314384580289,40.6851518396719],[-73.3155218195909,40.6850153061665],[-73.3162129222851,40.6844443667629],[-73.3161825304824,40.6835070756982],[-73.3153715691731,40.6827295477553],[-73.3141688301106,40.6804194103116],[-73.3159720318551,40.6798241749597],[-73.3170842791275,40.6814708752755],[-73.3182560101431,40.6811951919454],[-73.3197283120628,40.6811715966552],[-73.322643152022,40.6803942574228],[-73.3275826122736,40.6818712170348],[-73.3275415008746,40.6827759415599],[-73.3263759502682,40.6860560278501],[-73.326418198036,40.6862593241567],[-73.3266115882487,40.6865999344226],[-73.3265211521541,40.6882336015192],[-73.3279640055022,40.6900741621427],[-73.3279643127261,40.6919253404099],[-73.3284153604235,40.6939136659535],[-73.328717639025,40.6942198168963],[-73.3288964540722,40.693753983212],[-73.3289563690067,40.6915343435298],[-73.3287455532741,40.6893152865365],[-73.3284442655144,40.6883785796147],[-73.3279034285093,40.687852775973],[-73.3281132749597,40.6854055994787],[-73.3286838336242,40.6840311118342],[-73.3300502951389,40.6837761451406],[-73.3301464669766,40.682827176076],[-73.3309464823141,40.6825685043799],[-73.3309341834795,40.6819647796815],[-73.3305886258442,40.6818832121135],[-73.3304959780974,40.6814765049854],[-73.3300356696677,40.6812221205132],[-73.330111556648,40.679574725306],[-73.3322281922733,40.6771686242777],[-73.3343007322962,40.6754284510633],[-73.335683127229,40.6746736920411],[-73.3370771858875,40.6751441965458],[-73.3379363319303,40.6748818235075],[-73.3398286672123,40.6730939126214],[-73.3409095731628,40.6713123249726],[-73.3419611347461,40.6708319868756],[-73.3426825995986,40.6709009025176],[-73.3463189313597,40.6727952375164],[-73.3474614509588,40.6746492721101],[-73.3478531083379,40.6765465970486],[-73.3483619841834,40.676243098914],[-73.3487840989421,40.6753798495172],[-73.3481221762234,40.6739155560767],[-73.3480914655187,40.6727035158786],[-73.3473028165645,40.670174437028],[-73.3487439128079,40.6686186317911],[-73.3503377963115,40.6683306422845],[-73.356105320897,40.6707640761425],[-73.3564322079474,40.6705210067698],[-73.3566352775073,40.6696591114035],[-73.3561479288892,40.6693909334271],[-73.3578358785795,40.6675592747993],[-73.3590002577827,40.6668731972814],[-73.359814800675,40.6666730831954],[-73.3621419223512,40.6666025373995],[-73.3653753165882,40.6659052009375],[-73.3660600205826,40.6659644418239],[-73.3665252508817,40.6664124293506],[-73.3684530803972,40.6674035762903],[-73.3701248343612,40.6676478978091],[-73.3715294706821,40.6675055783217],[-73.3716879281084,40.6670709157156],[-73.3714436851658,40.6668377606261],[-73.370082038621,40.6670977934342],[-73.3685175614683,40.6667604011709],[-73.3673894661177,40.6656904884821],[-73.367105128669,40.6645559361682],[-73.366509706434,40.6635656163949],[-73.3669860884191,40.6627075697694],[-73.3685699601988,40.6619417502071],[-73.3720390229591,40.661999742142],[-73.3745969469845,40.6608512133288],[-73.3757256091721,40.6604977659139],[-73.3777083940234,40.6603184639226],[-73.3783100263119,40.6600206392918],[-73.3792110509149,40.6601819313468],[-73.3811581376151,40.6611416085914],[-73.381986620564,40.660756864648],[-73.3850076836106,40.6613937194018],[-73.3854285021004,40.6611428726641],[-73.3852492621501,40.6602980960844],[-73.3846889972804,40.6600470346578],[-73.3808550828692,40.6600383550034],[-73.3797239539079,40.6590901302073],[-73.3798985819075,40.6585340714576],[-73.3843935593498,40.6583808814924],[-73.3859118837581,40.6576229132976],[-73.3875946573557,40.657371683018],[-73.3895764738231,40.6582416217951],[-73.3898468280961,40.6586507637937],[-73.3913724207734,40.6592800921695],[-73.3920154052094,40.6611357393417],[-73.3927706269536,40.6611822912758],[-73.3922151554943,40.6594990244029],[-73.3935659917129,40.65619829959],[-73.3967361122146,40.6560712224697],[-73.3975150378042,40.6558973707581],[-73.3976594410878,40.6555165254055],[-73.4003930791761,40.6549058497445],[-73.4034260898159,40.6568981288656],[-73.4048370924973,40.6573140012219],[-73.4053483623531,40.6577309409025],[-73.4060956834143,40.6573629171492],[-73.4067967672896,40.6551475612307],[-73.4087099354013,40.6550568464348],[-73.4095845639081,40.655271586987],[-73.4107255258285,40.6563502760634],[-73.4117462042308,40.6580443637581],[-73.4124026741758,40.6585443445783],[-73.412829294884,40.6594780607204],[-73.4134175036472,40.668940291566],[-73.413725259277,40.669183239968],[-73.4143565251901,40.6678812170024],[-73.4139965513911,40.6653179330536],[-73.4145375626693,40.6641723117145],[-73.4139240286016,40.6622631437198],[-73.4138796536232,40.6576773387335],[-73.4144507575651,40.656694278929],[-73.416323284995,40.6552291219799],[-73.4174295809287,40.6548704537548],[-73.4200600960156,40.6549245079719],[-73.4217876578166,40.6555562001775],[-73.4223287328751,40.6565004551063],[-73.4228807664819,40.6568232882352],[-73.4235635148439,40.6581568284217],[-73.4239907805425,40.6583788616183],[-73.4244951540318,40.6582461194998],[-73.4251143861133,40.6569078372879],[-73.4247605127734,40.6565832149823],[-73.424784291179,40.65629527573],[-73.4253437493615,40.6563029091024],[-73.4266096328021,40.6562616189602],[-73.4280022811055,40.6572129492624],[-73.4297610207351,40.657908005074],[-73.4309011858499,40.6577433458022],[-73.4308326677499,40.658237868256],[-73.4312059087673,40.6591257508848],[-73.4306744061564,40.6592806741362],[-73.4303469926932,40.6597491549801],[-73.4305597451936,40.6602294849968],[-73.4311453174014,40.660323024862],[-73.4311269531421,40.6611064932568],[-73.4318077791094,40.6614895881499],[-73.4313524985503,40.6621770362092],[-73.4317705277712,40.662606104859],[-73.4318880597497,40.6632067497227],[-73.4322373687496,40.6639817006705],[-73.432508647389,40.6645529045933],[-73.4321479675142,40.6654308133715],[-73.4327037426041,40.6667355490699],[-73.432390062585,40.6683527730922],[-73.4324639840514,40.6684798922274],[-73.4327081254844,40.6684741994157],[-73.4329816211659,40.6684148558282],[-73.4332597557475,40.6681889211332],[-73.4334505067099,40.6666736221703],[-73.4332421496662,40.6661933569563],[-73.4328823645135,40.665422771524],[-73.4332533822006,40.6645450002839],[-73.4325654101352,40.6630447944632],[-73.4324938009323,40.6623772114856],[-73.4322311973236,40.6621304215963],[-73.4325609311351,40.6616259340615],[-73.4324629312259,40.6611066288636],[-73.4318786130662,40.6608014188519],[-73.4319811970783,40.6588840551746],[-73.4316399450682,40.6583659477792],[-73.4326406224806,40.6576543763896],[-73.4327912843268,40.6575978690228],[-73.4317227814155,40.6561870754275],[-73.4303823539761,40.6523133194896],[-73.430024043857,40.6515157190253],[-73.4297547334264,40.651462509882],[-73.4295957513841,40.6506450989178],[-73.4300573003872,40.6506333612969],[-73.4301829270847,40.6502567231056],[-73.4317445008824,40.6503049756051],[-73.4319121516673,40.6505639885212],[-73.4357714866044,40.6510127194502],[-73.4367059123663,40.6512640977158],[-73.4378790734998,40.6518024609998],[-73.438920625156,40.65167692396],[-73.4408071779825,40.6529770946417],[-73.4416020756178,40.6531905156459],[-73.4440819126889,40.6532690126236],[-73.4448922541606,40.6535501811035],[-73.4472266836316,40.6534284693139],[-73.4483571514329,40.6537409453106],[-73.4483001290736,40.6544788565094],[-73.4464010231893,40.6566423189917],[-73.4461356186335,40.6571837464354],[-73.4460985074325,40.6578588667042],[-73.4462533248852,40.6584509916672],[-73.4457343088568,40.6590250369492],[-73.4457468556264,40.6594080565696],[-73.4464487237309,40.6609579184772],[-73.4455372975352,40.6613960601421],[-73.4457154810667,40.6616506913025],[-73.4449162589416,40.6624776934448],[-73.4444853317099,40.662886266368],[-73.4444560484283,40.6632236809557],[-73.4440705948146,40.6634887328616],[-73.4441391542371,40.6641652761576],[-73.4441490680446,40.6646293351283],[-73.4442017488461,40.6650984741171],[-73.4442780760008,40.665536403244],[-73.4445159858207,40.6655756427778],[-73.4449398082768,40.6654417259431],[-73.4448050313398,40.6637643749328],[-73.4452724373585,40.6635679863598],[-73.4452504591768,40.6630181869985],[-73.4462792888919,40.6619825795928],[-73.4466968896163,40.6619882000453],[-73.4467546980015,40.6622051765454],[-73.4471941214991,40.6620669572002],[-73.4477585446702,40.6631059949307],[-73.4496206866772,40.6637255690758],[-73.4506257397834,40.6656307989945],[-73.4502536935253,40.6633377068752],[-73.4483585042957,40.6627086907132],[-73.4479327145291,40.6616850322403],[-73.4472263503566,40.6609008210531],[-73.4468846015781,40.6593152732043],[-73.4474153792486,40.6585206785769],[-73.4471677263011,40.6578507360336],[-73.4472940680577,40.657280410388],[-73.4483540863811,40.6560740458934],[-73.4498741651992,40.6548558334296],[-73.4508729822007,40.6543737888884],[-73.4524090366579,40.6522369130085],[-73.4535099435981,40.6522291483168],[-73.4541775912802,40.6525443730829],[-73.4546393262346,40.652428943845],[-73.4554008694234,40.6514302103465],[-73.4555320090819,40.6506482449434],[-73.4564944380261,40.6499764901533],[-73.4568206899676,40.6492917189498],[-73.4575355441179,40.6489049096778],[-73.4580371094737,40.6481819396259],[-73.4607128214975,40.6473213293572],[-73.4636889957293,40.6472799055193],[-73.4659915880083,40.6482789212833],[-73.4666990777698,40.6490179936139],[-73.4682321192775,40.6519615374908],[-73.4685699990121,40.6537046197956],[-73.4691371252139,40.654572433743],[-73.4687068824984,40.6563818951352],[-73.4688701908272,40.6567083597959],[-73.4696080661033,40.6570289314404],[-73.4704404944529,40.6556707073923],[-73.4710809276734,40.6556611759791],[-73.471439410269,40.6567649340203],[-73.4722272956553,40.6568384240133],[-73.4723484828787,40.6576507727422],[-73.4722938150037,40.6583617035892],[-73.4719460762589,40.6596362752684],[-73.4710661881163,40.6598993754363],[-73.4713093009782,40.6601638354238],[-73.4724331706538,40.6601922280645],[-73.4728921693398,40.6593875569318],[-73.4731960361627,40.6580583516598],[-73.4731392455688,40.6567559043367],[-73.472343873623,40.6555202538824],[-73.4727076481939,40.6546107269792],[-73.4726979374057,40.6534485298398],[-73.4731943374485,40.6516174066291],[-73.4742020944837,40.6504416381244],[-73.4754133226257,40.6500027245571],[-73.4762169069698,40.6502925931765],[-73.4768892941634,40.6512158091066],[-73.4775466058298,40.6509497283741],[-73.4776945412891,40.6501003960268],[-73.4784998989076,40.6497596912957],[-73.4796767611001,40.6497256529646],[-73.4826461278987,40.6512285737089],[-73.4838979616882,40.6510513452783],[-73.4838257631905,40.6517260191754],[-73.484189969851,40.6519650180878],[-73.4848308495343,40.6516401256971],[-73.4849117473172,40.6503845303363],[-73.4855516190907,40.6502668121188],[-73.4861227805248,40.6518147231978],[-73.4858835699444,40.652978159864],[-73.4861508474875,40.6540716687204],[-73.486713926779,40.6542457064713],[-73.4877072999898,40.6536326495422],[-73.4884372278706,40.6538494017409],[-73.4891577279324,40.6536651565558],[-73.4891573209956,40.6533228364211],[-73.4886164435664,40.6528202989126],[-73.48831440751,40.6506453435935],[-73.4875930917779,40.6502125046801],[-73.486992723419,40.650348769363],[-73.4873842307794,40.6517682028928],[-73.4870239003492,40.6518805881737],[-73.4864830193268,40.6512158915731],[-73.4861215848671,40.6500040399574],[-73.4868397843435,40.6466488567614],[-73.4873157917311,40.6464208799046],[-73.4883966662405,40.6465431395244],[-73.4894908771387,40.6470574250722],[-73.4897780245175,40.6473044063566],[-73.4916492835263,40.6487972283309],[-73.49335962642,40.6497249005252],[-73.4933919451089,40.6505225571544],[-73.4922508825772,40.651264354657],[-73.4922834905237,40.6518187912865],[-73.4928129395858,40.6522716165963],[-73.4942094569332,40.6520376116988],[-73.4955396552565,40.6510370192247],[-73.4961301969445,40.6510086819819],[-73.4968294069341,40.6514411797318],[-73.49724436212,40.6509691428593],[-73.4967851846693,40.6507109316524],[-73.4964123739449,40.6504583470043],[-73.4956138111832,40.6504344293687],[-73.4952488741923,40.6504566976535],[-73.4945028017893,40.6508928793267],[-73.4937055308049,40.6515671090998],[-73.493029216177,40.6516618762925],[-73.4929822783051,40.6514810975107],[-73.4941267167057,40.6508519402402],[-73.4941411131064,40.649455841564],[-73.4936001027266,40.6491560123534],[-73.4923070946561,40.6484725154456],[-73.4938430691631,40.6473259927408],[-73.4948593251592,40.6469699081821],[-73.495416849269,40.6468961026502],[-73.4957551332454,40.6468419574125],[-73.4968774596153,40.6467980243542],[-73.4978021135035,40.6467019620521],[-73.4985134345798,40.6467247298233],[-73.5001250957428,40.6460205154674],[-73.5029386443655,40.6453138630864],[-73.5039505129898,40.6440252832407],[-73.5038053659011,40.6436405476032],[-73.5042274123879,40.6425154746156],[-73.5056360219574,40.6415292958134],[-73.5061255436001,40.6414860872511],[-73.5066146062037,40.6407672473773],[-73.5073787715749,40.6401735755869],[-73.5084304301763,40.6400115098801],[-73.5093377717324,40.6404556329043],[-73.5107642676575,40.6406542162624],[-73.5138725768811,40.6419374346778],[-73.5139889221851,40.6422902572058],[-73.5152368572862,40.6429774402737],[-73.515252196918,40.6432523914061],[-73.5137437243334,40.6447463727789],[-73.5130696860363,40.6455754636428],[-73.5132604082526,40.646739993986],[-73.5141984676999,40.6475042704752],[-73.5145233559988,40.6475534941712],[-73.5155381737921,40.6442559947338],[-73.5159335591796,40.6438917382484],[-73.5173943761384,40.6439465484107],[-73.5184766367483,40.6443072677086],[-73.5184419590834,40.6449058764179],[-73.5175171749394,40.6463128108131],[-73.5176831261118,40.6512379892117],[-73.5190944881193,40.6532019059224],[-73.5191680754124,40.6545540977705],[-73.5193937537713,40.6546786057738],[-73.5203676452186,40.6546325427124],[-73.5207439099652,40.6528266957134],[-73.5205812106943,40.6514913792143],[-73.5201185432886,40.6512197013938],[-73.519790239595,40.6498192014234],[-73.5187719569996,40.6491350161135],[-73.5184029488438,40.6485402335002],[-73.518324188153,40.6464537959781],[-73.5185822256251,40.646083263096],[-73.5192017775069,40.6458434858632],[-73.5198897855049,40.6447803216327],[-73.5197936028874,40.6439818506792],[-73.5187672174882,40.6429327235272],[-73.5179706400033,40.6425891882003],[-73.5172606196875,40.6426431262646],[-73.5173295429277,40.6422341328564],[-73.5180858282772,40.6417258678687],[-73.5189336896834,40.6415881145988],[-73.5196837766574,40.6409581469661],[-73.519418025352,40.640040392346],[-73.5205602961178,40.6393884244344],[-73.5212970458048,40.6399969210637],[-73.5219410938461,40.6401177752891],[-73.5227682643563,40.6406823793098],[-73.5227085012371,40.6415824474394],[-73.5232302894665,40.6426566129892],[-73.5246964280451,40.6429050781026],[-73.5246548980312,40.6452602257224],[-73.5260037346,40.6479529354193],[-73.5272486810061,40.6496939244153],[-73.5275606632094,40.6526841646778],[-73.5272229370867,40.6551661505588],[-73.5269998135365,40.6570415361451],[-73.528172410528,40.6569033572117],[-73.5291563343603,40.6579833876214],[-73.5297697983595,40.6584281086399],[-73.5304978640326,40.6584013494105],[-73.5291358024662,40.6560913796544],[-73.5282117450593,40.6547778957905],[-73.5283951855319,40.6521498063783],[-73.5280187420205,40.6495010623836],[-73.5263894020127,40.6470209943625],[-73.5256846197734,40.6451562770931],[-73.5260922986055,40.6441975934021],[-73.5270275166815,40.6436510172786],[-73.5280385920934,40.6435197842768],[-73.529120401749,40.6440380444471],[-73.529630960139,40.644720175842],[-73.5302108711639,40.6449707878302],[-73.5310410707933,40.6466163708669],[-73.5319468968916,40.646735997836],[-73.5327962081786,40.6472422569426],[-73.5327110613644,40.6478222118351],[-73.5323306679607,40.6482137411409],[-73.5325276667059,40.6487026963001],[-73.5330565327614,40.6490247117961],[-73.5343637189421,40.6493160752391],[-73.5348316055595,40.6491823874817],[-73.5350402015549,40.649513839582],[-73.5345993614141,40.649931634288],[-73.535268763506,40.6509265442572],[-73.5355373283349,40.65138937791],[-73.5361876816511,40.651938128819],[-73.5368389916732,40.6528156924796],[-73.5369146531763,40.6538526089517],[-73.5377714591077,40.654935459745],[-73.5375560952049,40.6561308373702],[-73.5378069757991,40.6569988153455],[-73.5378331922324,40.6570847264587],[-73.5379115325117,40.6570181571964],[-73.5382152843503,40.6567517554523],[-73.5385766936571,40.6549276435731],[-73.537684549799,40.6527543435397],[-73.5370079414219,40.6515116270643],[-73.5362157468172,40.6511277353968],[-73.5355968767568,40.6501199593377],[-73.5357262970397,40.6497792846951],[-73.5361737362047,40.649600290586],[-73.5361310096348,40.6490187113014],[-73.535626808622,40.648548385071],[-73.5343648068019,40.6485909183975],[-73.5338901343108,40.6478867434994],[-73.5329514909586,40.6452488852106],[-73.5331460049637,40.6442649449969],[-73.532450863444,40.6439768489804],[-73.5317780693137,40.6442880871233],[-73.5311874072514,40.6442580497977],[-73.5296218332557,40.6422067338941],[-73.5308909039189,40.6394438231611],[-73.5316614590067,40.6384807288029],[-73.5326089938835,40.6386819554181],[-73.5337025822491,40.6394705729519],[-73.5348437777316,40.6396382084563],[-73.5350098349051,40.6399871379252],[-73.5343667462646,40.641713078273],[-73.5344541846811,40.6427501481819],[-73.5348759176558,40.6431023243232],[-73.5372766383032,40.6437453444818],[-73.5380869168928,40.6438727204502],[-73.5396226973638,40.6427616186277],[-73.5416785412988,40.6454630929622],[-73.5409330608856,40.6457869787173],[-73.5418157553652,40.6474106281209],[-73.5438862912467,40.646761147063],[-73.5444945540004,40.64601662424],[-73.5452411195785,40.6442468897432],[-73.545110296127,40.6428174180787],[-73.5454651207828,40.6418625016052],[-73.5449103158734,40.6404547092657],[-73.5447694842914,40.6392142852214],[-73.5457333514384,40.6383931624929],[-73.5465837577718,40.6381336251677],[-73.5484450445826,40.6385984603116],[-73.549146866873,40.6389541069129],[-73.5508158046186,40.6404884796646],[-73.5521071490092,40.6411668028587],[-73.5530886446954,40.6412376666157],[-73.5536087243291,40.6425503972911],[-73.5542091879094,40.6429137511247],[-73.555271044186,40.6430982079894],[-73.5555027466472,40.6433218133616],[-73.555331712807,40.6438151319532],[-73.5576283438657,40.6452176330185],[-73.5581901403629,40.6471389275521],[-73.5581018880728,40.6486287059349],[-73.5582866661369,40.6478743135934],[-73.5590396807204,40.6468882964419],[-73.5591874194486,40.6459307513582],[-73.5586203228913,40.6446670049032],[-73.557394577076,40.6444715218631],[-73.5569970231554,40.6437458829603],[-73.5564720881276,40.6434780758881],[-73.5564566532744,40.6431310616289],[-73.5571054938276,40.6429995460932],[-73.5572983010337,40.6412543355381],[-73.5579341357783,40.6411767030672],[-73.5583751250395,40.6407768368131],[-73.5592887709723,40.6405315082351],[-73.5596786056696,40.640103972445],[-73.5598152016951,40.638803969498],[-73.5588658944422,40.6375129312589],[-73.5584975321751,40.6370804339089],[-73.5582050721596,40.6364867327391],[-73.5577837766644,40.6358013370748],[-73.5573155010764,40.6355477538863],[-73.5561027080692,40.6360280467986],[-73.5554800641863,40.6360788100493],[-73.5553190465615,40.6359371649],[-73.5566915492464,40.6341841937922],[-73.5584528427863,40.6325621792196],[-73.5586269515597,40.6310644598261],[-73.5589096998887,40.6303563292345],[-73.5598471152439,40.629926620281],[-73.5610252162131,40.6302295833246],[-73.5622371585157,40.6304023340591],[-73.5638982548672,40.6310310807558],[-73.5642436409242,40.6319497282307],[-73.5642065081637,40.6378902862379],[-73.5648076320057,40.6398796037428],[-73.5647144749141,40.6409504402654],[-73.5666316917328,40.6428525123663],[-73.5667901814984,40.6432868822286],[-73.566826217416,40.6457826444378],[-73.5670669479459,40.6474521793333],[-73.5674716228117,40.6492678826835],[-73.5678359453549,40.6503443985761],[-73.5682616542731,40.6503136476657],[-73.5684451989503,40.6485052458018],[-73.568060869129,40.6453565613772],[-73.5679849417246,40.6438602318591],[-73.5680529486832,40.6435142536056],[-73.571757165232,40.6442943381953],[-73.57285743886,40.6449340315369],[-73.57466020043,40.6515008832801],[-73.5752614356632,40.6515938867458],[-73.5750206368614,40.650334248235],[-73.5752602858196,40.6479995388099],[-73.5744490792703,40.6471112061692],[-73.5744195839862,40.6463090974984],[-73.5737880907994,40.6452788464324],[-73.5744792402059,40.6444090705834],[-73.5741785426393,40.6440900625945],[-73.5729169405694,40.6436330586488],[-73.5708744455995,40.643540220628],[-73.5693731757068,40.6431973182484],[-73.5688322839046,40.6411141846301],[-73.5672787122994,40.6388653373977],[-73.5674951442991,40.6388364946418],[-73.5673409529721,40.6361275663475],[-73.5677322627032,40.6348667469699],[-73.5675555272558,40.6339727244381],[-73.5669481250883,40.6333120768568],[-73.5661983040156,40.6329874706567],[-73.565499755186,40.6330643695679],[-73.5653328464096,40.6326794391813],[-73.5659241013599,40.6310202375481],[-73.5699421757943,40.6291107720156],[-73.5712343807709,40.6279106444997],[-73.5719479907545,40.6280951400925],[-73.5735364448405,40.6274166336308],[-73.5755600751895,40.6348059807527],[-73.5751081462447,40.6356922309649],[-73.5754991963627,40.6370438102896],[-73.5761299430495,40.6372722997629],[-73.5762195059816,40.6376832854489],[-73.5755292656702,40.6379585317412],[-73.5757092611037,40.6386003478587],[-73.5789337530362,40.6400363957949],[-73.5812958919404,40.640038432584],[-73.5813862067624,40.6397873085551],[-73.5792552735511,40.6393737345958],[-73.5773009742775,40.6384398134592],[-73.5745364952289,40.6277532914985],[-73.5754067040244,40.6277325066962],[-73.5764883088641,40.6285791279657],[-73.5779293826497,40.6278446931451],[-73.5779293449204,40.627637499628],[-73.5764874824141,40.6264261130589],[-73.5744757798954,40.6272030299846],[-73.574393532843,40.6263101832099],[-73.5741633709925,40.6258749372237],[-73.5741335657897,40.6251223686021],[-73.5736950037764,40.6245494212202],[-73.5738341087964,40.6242628717089],[-73.5756078008839,40.6241811783435],[-73.5761927846952,40.6241929008434],[-73.5770689268632,40.6242037056141],[-73.5776920028358,40.6263553835754],[-73.5793453170819,40.6276324169359],[-73.5824366993507,40.6397416626148],[-73.5832411299078,40.6395533566765],[-73.5821654287961,40.6357611311021],[-73.5805723861156,40.6292194784567],[-73.5804520235457,40.6280288909827],[-73.5808420540757,40.6275472342316],[-73.5844497349692,40.6266006156151],[-73.5852506531135,40.6266059315591],[-73.586072023202,40.6270078619243],[-73.5853962484615,40.6279004212054],[-73.585294412746,40.6286288524037],[-73.5859103120778,40.630154314639],[-73.5860813692742,40.6323094154455],[-73.5867300732836,40.634524416303],[-73.5874814214923,40.6356236286601],[-73.5883533721211,40.6399448083843],[-73.5892241962626,40.6397617770162],[-73.5893445678157,40.6395560553735],[-73.5887725179479,40.6359412046435],[-73.5874504188352,40.634114345123],[-73.587175744564,40.6331560939008],[-73.5870274722365,40.6322669521883],[-73.5873429884121,40.63188345363],[-73.5894722534519,40.6328238488399],[-73.5905297573909,40.6332826835946],[-73.5917544225329,40.6335949103321],[-73.5928381554815,40.6335450702904],[-73.593515591207,40.633733496116],[-73.5943972634038,40.6340505227634],[-73.5943864683491,40.6344242399192],[-73.5957468608457,40.6342921618573],[-73.5966091950094,40.6332396612595],[-73.5966265468674,40.6324110995896],[-73.5958802831232,40.6314516370068],[-73.5956427110699,40.6315388306452],[-73.5952819665165,40.6311560873712],[-73.5948994935129,40.6304352641675],[-73.5941871402723,40.6303274971194],[-73.5935616514249,40.6295316417003],[-73.5939002587948,40.6286439359441],[-73.5934398982628,40.6270933862109],[-73.5934649648525,40.6260397085362],[-73.5951520880927,40.6244837856357],[-73.5955801577834,40.623732289528],[-73.5951894553135,40.6229122739206],[-73.5946788915336,40.6225232008207],[-73.5946184852206,40.6219504316038],[-73.5955497767605,40.6214437843141],[-73.5968104113448,40.6211933690177],[-73.5976507170212,40.6211495315846],[-73.5986722613993,40.6216258717694],[-73.5990031064269,40.6232964444616],[-73.5993337870627,40.6235256682585],[-73.6004148151841,40.6238450683812],[-73.6011652498061,40.623435274576],[-73.6016457505668,40.6240987116954],[-73.6023440263085,40.6228234708041],[-73.6032368097671,40.623027959436],[-73.6046063444183,40.6226931971099],[-73.6049884922318,40.6222609085478],[-73.605412223958,40.6229551733614],[-73.6067591983192,40.6233497940147],[-73.607644625474,40.6235181265926],[-73.6075228938715,40.6232599182832],[-73.6079479946302,40.623071365402],[-73.6094032348478,40.6229853109555],[-73.6099935798047,40.6233797841563],[-73.610404054194,40.6233261721238],[-73.6106914216602,40.6241854315255],[-73.6113752857298,40.6243468040599],[-73.6117419250281,40.6250899049584],[-73.6122506355836,40.6251816027457],[-73.6123784371025,40.6256831067984],[-73.6135116591385,40.6269849292529],[-73.6135478702276,40.6274492972702],[-73.61494472085,40.6286912134535],[-73.6146592254729,40.6295255685498],[-73.6152130790664,40.6299736275875],[-73.6156277988937,40.630825393567],[-73.6156173667583,40.6332980762687],[-73.6161028100496,40.6344839995936],[-73.6144450392614,40.634702831169],[-73.6147176213562,40.63506643973],[-73.6170540298158,40.6350178892142],[-73.6163377563274,40.6332346478482],[-73.6166655336082,40.6324998879129],[-73.61654425296,40.6312507696948],[-73.6168416896422,40.6308039143353],[-73.6166320327363,40.6302203591587],[-73.617588981059,40.6294706142844],[-73.6226383385075,40.6325713246627],[-73.6230348342127,40.6321931985724],[-73.616961427883,40.6282244392178],[-73.6171181991715,40.6270372068145],[-73.617907680864,40.6261998725358],[-73.6178562487207,40.62532544022],[-73.6167189806727,40.6234290556421],[-73.617497042083,40.6203845224245],[-73.6210977502532,40.6179367657685],[-73.6217939643613,40.617818963053],[-73.621661953337,40.6190650540695],[-73.6221736849268,40.6190441390537],[-73.6227494672947,40.6198978036318],[-73.6222532046941,40.6207837150881],[-73.6233316259045,40.62112539071],[-73.6239948107562,40.6210702399781],[-73.6241345266307,40.6206710306167],[-73.6245171810939,40.6206035243027],[-73.6248225454085,40.6206657176096],[-73.6249246703816,40.6212344653919],[-73.6253047421884,40.6213651108103],[-73.6254738159046,40.6210833594525],[-73.6250759251158,40.6202363315531],[-73.6236585291246,40.6202104297892],[-73.6224478669212,40.6182141315959],[-73.6225441851843,40.6178774651945],[-73.6241180470368,40.6173692439009],[-73.6251371435058,40.6165661246176],[-73.6256123783423,40.615873630447],[-73.6257596409634,40.6151772299365],[-73.6255337002964,40.6144853937402],[-73.6258912890683,40.6139446407584],[-73.6291414234107,40.6129293005761],[-73.629993274235,40.6132907439083],[-73.6301963689477,40.6164776383293],[-73.6299188533053,40.6170058424193],[-73.6305674153809,40.6170856066271],[-73.6307660724161,40.6165474570311],[-73.6305995642882,40.6128700371553],[-73.6319610275767,40.6118637232209],[-73.6326694165519,40.612340556511],[-73.6337966800625,40.6132907834602],[-73.6351083506331,40.613567546659],[-73.6354313587581,40.6138145938776],[-73.6361170922218,40.6138091862197],[-73.6391920425073,40.6146472322716],[-73.6394912039548,40.6146867922267],[-73.6398355749156,40.6145737415105],[-73.6409547490972,40.6158571161173],[-73.6412584847661,40.6168381084977],[-73.6440692944255,40.6180332526801],[-73.6443917761378,40.6204287831108],[-73.6448210145367,40.6199563762301],[-73.6445776258919,40.6181067866856],[-73.647533349078,40.6176910368733],[-73.6488250923206,40.6178638139038],[-73.6495130706742,40.6200969527113],[-73.6497536969995,40.6200727425884],[-73.6500548571985,40.6189502092571],[-73.6494249198937,40.6173933868148],[-73.6523888150539,40.6170091373188],[-73.6527284959106,40.6185265228849],[-73.6534491891102,40.6204987749658],[-73.6547158495935,40.6222566804712],[-73.655884563168,40.6229324179381],[-73.6567166995651,40.6241807665253],[-73.6580278904353,40.6245338363031],[-73.6577423932616,40.6251746203494],[-73.6556916400793,40.627357820086],[-73.6554267808009,40.6275574248543],[-73.6556134156826,40.6281631644856],[-73.6563134799701,40.6276713487793],[-73.6578896864255,40.6261222198319],[-73.6588500483463,40.6249172434348],[-73.658882480223,40.6242194658355],[-73.657923154958,40.6239335571837],[-73.6583215649731,40.6234472290275],[-73.6589433779144,40.6230220500151],[-73.659953466976,40.6230968412769],[-73.6609846412941,40.6237439050605],[-73.6607175793466,40.6246101217716],[-73.6610436336588,40.6257850021643],[-73.6609098484618,40.6265266471117],[-73.6604118512144,40.6280027563449],[-73.6590001262875,40.6297159821455],[-73.6591699896229,40.6310512045991],[-73.6579176437937,40.6332887564034],[-73.6579694155002,40.6347262029385],[-73.6591179753713,40.6345008304049],[-73.6596888304799,40.6337462490642],[-73.6602487647695,40.6301358635581],[-73.661646390638,40.6283503912559],[-73.6618102217863,40.6266587037172],[-73.6625667910034,40.6259242770943],[-73.6624054535784,40.6237513717005],[-73.6626115001551,40.6223124077396],[-73.6642772551696,40.622300168077],[-73.6665299972385,40.622682051178],[-73.6671642257954,40.6230046728918],[-73.6667751950902,40.623468618579],[-73.6674864002838,40.6262018886114],[-73.6669151175772,40.6286951350071],[-73.6672848389953,40.6287579595995],[-73.667480266587,40.6287782327541],[-73.6681506900634,40.6289931655842],[-73.6682689757284,40.6282468301328],[-73.6690687916399,40.6281975008412],[-73.6715152922308,40.628658093634],[-73.6718177918179,40.6281976399237],[-73.6721795802137,40.6281387438899],[-73.675063061783,40.6286628428612],[-73.6772376513205,40.6297237583193],[-73.678756680008,40.6285790686514],[-73.678926946687,40.6278513330083],[-73.6811032133791,40.6257862614523],[-73.6826666547744,40.6255698974214],[-73.6832969010996,40.625649157096],[-73.6833305681598,40.6258161973193],[-73.6825942694271,40.6267716998931],[-73.6823630044454,40.6279356549185],[-73.6818823743273,40.628326538648],[-73.6818822809026,40.6293084591913],[-73.6811918079274,40.6295843372344],[-73.680681718458,40.6293307747487],[-73.6798402252088,40.6294697920768],[-73.6805013295624,40.6299728169759],[-73.681582361277,40.6300167011135],[-73.6824231089244,40.6295398460432],[-73.6831138091733,40.6278226102602],[-73.6832678343119,40.6265271495941],[-73.6839583495079,40.6261341492577],[-73.6851926203353,40.625972551957],[-73.6856491693155,40.6253381518202],[-73.6859939067889,40.6252429838482],[-73.6873487611718,40.6256772944284],[-73.6887122339915,40.6286565766901],[-73.6893893130857,40.6294795331236],[-73.6892309005753,40.6296443903078],[-73.6899228467875,40.6301612249302],[-73.6901824374467,40.6309073685487],[-73.6903981633706,40.6307972113628],[-73.6906142396375,40.6310473956724],[-73.6922866664396,40.6336968263489],[-73.6908471422479,40.6367929244938],[-73.6908767165837,40.6374733977742],[-73.6915538513735,40.63776934686],[-73.6922134977614,40.6377497990157],[-73.6924232588718,40.6375675026172],[-73.6923633762767,40.6362425820428],[-73.6934143476669,40.6335879847166],[-73.6921529099887,40.6319161409906],[-73.6923330662207,40.6304092661407],[-73.6920923518605,40.629906569047],[-73.6900418295452,40.6287617604756],[-73.6899921194723,40.6285449929295],[-73.6902666976237,40.62837244465],[-73.6912532148923,40.628487233038],[-73.6922052449389,40.6280971486113],[-73.6919082511262,40.6268055726642],[-73.691943447119,40.6249637408643],[-73.6926719754245,40.6245125636831],[-73.6928989410693,40.6245826978492],[-73.6939019496099,40.6238103166037],[-73.6978765374996,40.6223327946721],[-73.6977397510313,40.6222231497214],[-73.6984598729024,40.6213259216436],[-73.6984723801461,40.6206053844025],[-73.698654562079,40.6204317737334],[-73.6990876668269,40.6205402536064],[-73.6993013544734,40.6198850432659],[-73.7000138640208,40.6200642316092],[-73.7005249048062,40.6187817744784],[-73.701311301684,40.6179303158466],[-73.7016930515437,40.6155383542505],[-73.7026359169778,40.6154183331515],[-73.7032732860449,40.6148579608919],[-73.7052229518083,40.6143663649868],[-73.7060164166308,40.6152490861788],[-73.7051381104213,40.6176895442282],[-73.7057420666514,40.6185926620923],[-73.7071999533058,40.619086451161],[-73.7074489213868,40.6198549601856],[-73.7068518561332,40.6199338529819],[-73.7068170527042,40.6201676833676],[-73.7076118506265,40.6204873784267],[-73.7079338849778,40.6201486615387],[-73.7092760093348,40.6205555476213],[-73.710086973339,40.6213033095351],[-73.7114873696118,40.6217558632167],[-73.71229017332,40.6199676310328],[-73.7121730707361,40.6196014807687],[-73.7115809839459,40.6193831731555],[-73.710549801543,40.6204436666736],[-73.7094871996648,40.6197561541603],[-73.7082111050745,40.6195662133387],[-73.707808816134,40.6185482556319],[-73.7063073962227,40.618090021294],[-73.7059302178894,40.6175723090874],[-73.7060633985201,40.6169882509806],[-73.7065353760653,40.6164980740933],[-73.7067571539393,40.6162618346696],[-73.7066345554626,40.6149947682635],[-73.7056694971495,40.6138533851158],[-73.7056117085273,40.613785173622],[-73.7055531796933,40.6137169531935],[-73.7060888343174,40.6129887671602],[-73.7067947610104,40.6125867926702],[-73.7079651481463,40.6119287670039],[-73.7085440108373,40.6116019312422],[-73.7080930682428,40.610925751824],[-73.7079693280073,40.6109829220098],[-73.707760689791,40.6110751758588],[-73.7071667057588,40.6113432833879],[-73.7055371905795,40.6110998072788],[-73.7056543722151,40.6110380619746],[-73.7059702010043,40.6108659376531],[-73.7071668953033,40.6102217279329],[-73.7077825808362,40.6095935232283],[-73.7077968245233,40.6093909916424],[-73.7078080714307,40.6092289644313],[-73.7078090703572,40.6092154627711],[-73.7076561681127,40.6089074621418],[-73.7066244592971,40.6086977193059],[-73.7049794068567,40.6093008598051],[-73.7043160486301,40.6092213474985],[-73.7044517400521,40.6088895562268],[-73.7051066702846,40.608487018996],[-73.7051283502257,40.6084737497405],[-73.7051746646668,40.6084472432749],[-73.7052933635569,40.6079621158777],[-73.705179665588,40.607384297171],[-73.7041428318837,40.6064853243939],[-73.7040947531514,40.6056469938802],[-73.7041565338867,40.6055846276845],[-73.7054677552996,40.6042840993639],[-73.7066198159054,40.6042249462657],[-73.7077571028181,40.6041656157894],[-73.7079471719591,40.6041542307865],[-73.7079286990036,40.6039243076034],[-73.7074633609067,40.6037299192896],[-73.7070954720517,40.6035771587162],[-73.7066671122051,40.6034957872079],[-73.7057265922723,40.6033501178564],[-73.705471053015,40.6025049569507],[-73.7054143154217,40.6024592780242],[-73.70528615817,40.6023632515078],[-73.7051040445091,40.6022305848712],[-73.7048423859281,40.602200624112],[-73.7040103213962,40.602101199965],[-73.7037176466833,40.6020708878953],[-73.7036655138541,40.6020928237873],[-73.7027170474243,40.6025506106105],[-73.7015601098649,40.6025195846494],[-73.7015039813293,40.602518953763],[-73.7011534578071,40.6014700236248],[-73.6999239902716,40.5998076260685],[-73.6997342660836,40.5994586612733],[-73.6995878406923,40.5992768414812],[-73.6999600935629,40.5980964161043],[-73.700458702563,40.5974849477961],[-73.7002742272312,40.5972846829438],[-73.7002351343467,40.5972437048467],[-73.6993058487448,40.5974764673621],[-73.6987569134275,40.5986639079518],[-73.6986138019213,40.5997207941107],[-73.6989228547184,40.6014584151325],[-73.6993020596509,40.6015212441976],[-73.7002708127348,40.6023429212293],[-73.7003231737361,40.6027669107433],[-73.6995001741037,40.6038386615799],[-73.6964710181347,40.604926050882],[-73.6957330862648,40.6050753635238],[-73.6941784510543,40.6048280698423],[-73.693370544017,40.6039045650235],[-73.6930674515418,40.6026264314785],[-73.6921273017149,40.6017059245314],[-73.6913736160899,40.6014901863845],[-73.6906241157157,40.6008330752191],[-73.6899336050113,40.6006360622209],[-73.6899860217082,40.6010915857353],[-73.6899354510493,40.601109029261],[-73.6893206862896,40.6013452799698],[-73.6891795492804,40.6005914671732],[-73.6879841395722,40.6008301239605],[-73.6872712500375,40.6011733503047],[-73.6869139756759,40.6013494568518],[-73.686380598281,40.6011632177239],[-73.6863068124602,40.6009326615353],[-73.6862511690149,40.6007563629141],[-73.686189232871,40.6005619749361],[-73.6865754132218,40.6000033387641],[-73.686608897924,40.594706720404],[-73.6870916426762,40.5935140799024],[-73.6886723020805,40.5929059558143],[-73.6932211541853,40.5926467465117],[-73.6955785185437,40.5926193579013],[-73.6956545762039,40.5926202173981],[-73.6964402903621,40.5920570515814],[-73.6974263728461,40.5921672767433],[-73.7013777734218,40.5918244305034],[-73.702424627833,40.5919623218913],[-73.7031920684617,40.5917682541923],[-73.7075127080602,40.5923842482764],[-73.7094171553271,40.592441589851],[-73.7120815054592,40.5930433886229],[-73.7130838842808,40.5935770624101],[-73.7138648759956,40.593446134144],[-73.7180692646131,40.59401089194],[-73.7183440170377,40.5940499770733],[-73.7186650695303,40.5940625493314],[-73.7222346690422,40.5943768775249],[-73.7240015599847,40.5940586025526],[-73.7261780755101,40.5942222729421],[-73.7265176961797,40.5944242079345],[-73.7266812820879,40.5952232673653],[-73.7273465636075,40.5956630137436],[-73.73080531281,40.5971199382493],[-73.7334235326556,40.5967027741485],[-73.7335946356661,40.5966964319948],[-73.7347289877827,40.5987881846129],[-73.7346226416261,40.6010355147442],[-73.7331817295373,40.6013350082765],[-73.7318315571737,40.6026174094763],[-73.7287406330458,40.6038761313877],[-73.7278704467082,40.6045376791788],[-73.7273022263584,40.6079726675298],[-73.7278119529085,40.6078566715552],[-73.7283519077679,40.6065744042957],[-73.7316832893378,40.6054985063823],[-73.7313227379221,40.6048369224062],[-73.731533135938,40.6043752957807],[-73.7329132500484,40.6041697454356],[-73.7341741289744,40.6043322200419],[-73.7353441819371,40.6035522960439],[-73.7358265601766,40.6027287957886],[-73.7359954308736,40.6020775269102],[-73.7354654571954,40.6011933910664],[-73.7354845248356,40.6001813643091],[-73.7396171308754,40.6078012063863],[-73.7257899035944,40.6602675501076],[-73.7292467106392,40.7126926605343],[-73.7085058701669,40.7467468650938],[-73.7537117794299,40.7724279713586],[-73.7534592117996,40.7728145032144],[-73.754869798561,40.7761988164473],[-73.7548700815303,40.7771356782733],[-73.75432610671,40.7790575773442],[-73.7528491892463,40.7817531160316],[-73.7519748994045,40.7824012699974],[-73.7506202291762,40.7826748807611],[-73.748056587374,40.7804310611438],[-73.7466432104453,40.7786275710086],[-73.7461017347382,40.7786306933062],[-73.7449746059748,40.7778752521956],[-73.7438221168726,40.7785067944404],[-73.744701554061,40.7785704200129],[-73.7456178751767,40.7795082401683],[-73.7461532019157,40.7794780284211],[-73.7469408106209,40.7802117535575],[-73.7467156928107,40.7803669516754],[-73.7461590283887,40.780743751046],[-73.7460691231984,40.781152649592],[-73.7460699550383,40.7823687720506],[-73.7467635873883,40.7838086232305],[-73.7473848559507,40.7842522724373],[-73.7482039964206,40.7837837297758],[-73.7489894958814,40.7844363429088],[-73.7529017020629,40.7874198709948],[-73.7528997976345,40.7893431102528],[-73.7535139587263,40.7908451114211],[-73.7528974763878,40.7918428713021],[-73.7534368212911,40.7943755063841],[-73.7539779493503,40.7951110160219],[-73.7538515608814,40.7973932376751],[-73.7535396478484,40.7979483807871],[-73.7525505748728,40.7978701345151],[-73.751983568147,40.7975667337422],[-73.7508646239341,40.7978564065049],[-73.7499212895795,40.7988551157505],[-73.7487105860537,40.799058186583],[-73.7480774561364,40.7993170578117],[-73.7470685366812,40.7990718864635],[-73.7459089787361,40.7979737912034],[-73.7457892261222,40.7984319087534],[-73.7463029106494,40.7995995548004],[-73.7484009996573,40.8001177972799],[-73.7510623709759,40.7993223831047],[-73.7511334268166,40.798733113145],[-73.7510553605235,40.7984710298698],[-73.7518131343814,40.7980828642476],[-73.7518638577539,40.7989346903224],[-73.7531638008184,40.7997819996375],[-73.7537027109371,40.8005985594669],[-73.7553872901484,40.802157141637],[-73.7581569192385,40.8024301936439],[-73.7592996310772,40.8035324766426],[-73.7601713005333,40.8052263802626],[-73.763211721376,40.806646263341],[-73.7636322892358,40.8074209718032],[-73.7634505672403,40.8090675287212],[-73.764293346877,40.8110898907386],[-73.7645727813208,40.811845067544],[-73.7646686216802,40.8133099281524],[-73.7642898677019,40.8141931825039],[-73.7629514812348,40.8152733431602],[-73.7623005925226,40.816482473191],[-73.7608846823448,40.8169852526266],[-73.758626230584,40.8170060260035],[-73.7572402181355,40.8173739596655],[-73.7546492181413,40.8194044058299],[-73.7534729147009,40.8210762396112],[-73.7527784064935,40.823019010165],[-73.7527173138677,40.824302016621],[-73.7534992766612,40.8251707469695],[-73.7537082966616,40.8275061237043],[-73.7565072126266,40.830274801335],[-73.7568355010488,40.8334537205366],[-73.7543638862576,40.8351701521986],[-73.7540908729714,40.8373201578809],[-73.7534572292177,40.8381420672623],[-73.7530358447893,40.8381194988075],[-73.7504165954744,40.8360373061063],[-73.7500570196291,40.8346191300044],[-73.7495762107463,40.8340914472095],[-73.7473672777172,40.8332612417376],[-73.7464148110894,40.8329040767469],[-73.7440349232718,40.8329277256339],[-73.7417146817924,40.8314431064588],[-73.7402374076976,40.8300712475959],[-73.7388804979693,40.8279439981535],[-73.7350550393999,40.827442680974],[-73.732555221102,40.8273521750228],[-73.7313801762013,40.8262762888782],[-73.7311986626151,40.8249500896431],[-73.7299927300417,40.8235540587917],[-73.728275970482,40.8233729912861],[-73.7267103371975,40.8237385627556],[-73.7227040288967,40.8224826561041],[-73.7204205913945,40.8206692164368],[-73.7184948774115,40.818720080485],[-73.7180795709843,40.8180038175624],[-73.717713493133,40.8161170357714],[-73.717658864784,40.8154903587084],[-73.7180019008483,40.8142240175385],[-73.7173991905814,40.8135822380742],[-73.7170372863029,40.8120963638077],[-73.7152596919338,40.8088246140405],[-73.7154396110105,40.8067186986023],[-73.7163063621905,40.8063049645688],[-73.7142264847284,40.802696526881],[-73.7136676077558,40.8008661308742],[-73.7129254367361,40.7997813685766],[-73.712038515683,40.7973707770812],[-73.7111002621997,40.796927899649],[-73.7106188092248,40.796309958955],[-73.7103769566992,40.7945281313192],[-73.7095824138984,40.7930554070739],[-73.7092631831891,40.7935878233084],[-73.7094564557225,40.79604022291],[-73.7104985984701,40.7981192667718],[-73.7104692298486,40.799100833963],[-73.7094752233254,40.799355456898],[-73.7093851510485,40.7998363884918],[-73.7106200749511,40.8001114404618],[-73.7109809443704,40.8006829920035],[-73.7110028408054,40.8061377075119],[-73.7096315364731,40.8085365699883],[-73.7096382397017,40.8089555262381],[-73.7089860753819,40.8095337600499],[-73.708847290162,40.8119148747635],[-73.7078773018946,40.8134038744369],[-73.704921158297,40.8152399128923],[-73.7040956793144,40.8142847792533],[-73.7037637203759,40.8146638969128],[-73.703522878455,40.8151206068376],[-73.7037798631016,40.8157000201882],[-73.7048990570461,40.8157666436527],[-73.7038739589327,40.8173000308634],[-73.7053559788272,40.8212712717684],[-73.7052966145599,40.8251621377794],[-73.7037318670143,40.8289369996547],[-73.7034303124549,40.8295776932351],[-73.7031899574208,40.8298542437267],[-73.7030095191179,40.8316583515131],[-73.7025771707514,40.832581329157],[-73.7021357772484,40.8329411921874],[-73.6996852171708,40.833773864806],[-73.7003414176212,40.8344478663257],[-73.700683748508,40.8351003116808],[-73.7017023401238,40.8354766148485],[-73.7025723153573,40.836252099911],[-73.7034504922094,40.8371402724763],[-73.7047935085935,40.8390560856035],[-73.7052399191874,40.8389349846931],[-73.7060235330844,40.8396193923244],[-73.7064147889166,40.8395517169898],[-73.705729329439,40.838661226594],[-73.7056311759178,40.8373809664019],[-73.7054808796859,40.8371045309],[-73.7044866027699,40.8368096072791],[-73.7045468824204,40.8365310319085],[-73.7056009610832,40.8359618423846],[-73.7066850578496,40.835410996685],[-73.7077990469553,40.8347703934539],[-73.7079195829001,40.8340600994231],[-73.7069251703385,40.8336976345533],[-73.7069859566388,40.8334686081885],[-73.708070292357,40.8331699797674],[-73.7096971593029,40.8339448814657],[-73.7109020588137,40.8352285077627],[-73.711987252423,40.8376052761784],[-73.7127744110722,40.8384157921648],[-73.713900540909,40.8385274472317],[-73.7156131349807,40.8383663717449],[-73.7160326625914,40.8381773685592],[-73.7163608513007,40.8379963552547],[-73.7172286256618,40.8376276694626],[-73.7203221647855,40.837432333356],[-73.7203523868066,40.8371714319055],[-73.7221149227166,40.8371864736802],[-73.7220696494228,40.8376138592861],[-73.7229933753514,40.8378042559664],[-73.7239255077144,40.8391027414968],[-73.7249937375379,40.8392586881572],[-73.726858561016,40.8390450805166],[-73.7279455162215,40.8383769603331],[-73.7285273595227,40.8376447078997],[-73.728358421452,40.8367870696343],[-73.7276986313337,40.8358969920289],[-73.7273256939469,40.8352803215612],[-73.7270138599657,40.8341823871071],[-73.7274968059405,40.8329220699932],[-73.7287613994002,40.8343187722515],[-73.7297600996207,40.8367935106127],[-73.7296117302752,40.8412644269596],[-73.7300345196687,40.8422239488941],[-73.7353691515087,40.8464083114213],[-73.7377811828438,40.8487408254426],[-73.7376617644032,40.8495637633261],[-73.7344681511602,40.850159327279],[-73.7311548939995,40.8515822358284],[-73.7301007093355,40.852543510249],[-73.7279615718106,40.8529298019154],[-73.7282635395951,40.8541222072606],[-73.7272406540322,40.8561557679287],[-73.7273017107254,40.857692328347],[-73.7294104744139,40.8608053723386],[-73.7295955183792,40.8612893457555],[-73.7292631569955,40.8635467229154],[-73.730500069768,40.8654925893041],[-73.7305309933734,40.8659703600279],[-73.7302298134114,40.8662462960506],[-73.7288127722547,40.8664288612471],[-73.7237198114806,40.8654717896776],[-73.7202812267614,40.8656093366568],[-73.7193618352041,40.8662522171873],[-73.7194243265068,40.8669735606728],[-73.7167070853674,40.8692719483338],[-73.71519874753,40.869606467615],[-73.7145291774532,40.8699818500359],[-73.7137265534081,40.869873809558],[-73.71312772027,40.8701193550409],[-73.7125742448673,40.8694781050304],[-73.7100148278419,40.8682514211156],[-73.7034279804284,40.8656777910859],[-73.7026177233983,40.8654704989144],[-73.7021743571949,40.8655781111148],[-73.7005567680493,40.8647491621547],[-73.6900611873412,40.8617523123841],[-73.6831571016818,40.8593180491316],[-73.6793904737803,40.8585858507433],[-73.6767687154708,40.8574883322403],[-73.6756544218362,40.8567323692875],[-73.6759259412241,40.8551996030982],[-73.6757754455662,40.85449073675],[-73.6729437204321,40.8502153545718],[-73.6694503339889,40.8457521046026],[-73.6684871657311,40.8433493260004],[-73.6676737735807,40.8427994421345],[-73.6664988670206,40.8425696656927],[-73.6665895043378,40.8417464690161],[-73.6650654657459,40.840665875042],[-73.6644924915117,40.8394431409493],[-73.6632108327564,40.8378518649057],[-73.6623236565818,40.8377695117699],[-73.6617047002831,40.8373254345882],[-73.661575752514,40.8371392706876],[-73.6624139085218,40.8368201988345],[-73.6614713583965,40.8349220548404],[-73.6606924301119,40.8350616451035],[-73.660022301283,40.834878200973],[-73.659896832689,40.8339308870104],[-73.6551618891832,40.8292230519167],[-73.6541734126889,40.8288782178035],[-73.6516821589289,40.8285878790534],[-73.6505201872106,40.828137390994],[-73.6505494803737,40.8278990174292],[-73.6526600020651,40.8273336616233],[-73.6548127769143,40.8271696238142],[-73.6555087008666,40.826218370672],[-73.6568838122591,40.8262073702516],[-73.6571703550718,40.8256341855314],[-73.6567905087421,40.8251748493348],[-73.6548617413855,40.824490266752],[-73.6554859070146,40.8239345353705],[-73.6544606463061,40.8207201734978],[-73.6542812320826,40.8177904235752],[-73.6538903212035,40.8164886843125],[-73.6546473243069,40.8149300953899],[-73.6541936714952,40.8132132479181],[-73.6544356012759,40.8109955536303],[-73.6523580495521,40.8099218403479],[-73.652118441018,40.8080678580403],[-73.6532521463476,40.8064551251208],[-73.6532873459337,40.8054105857012],[-73.652510747879,40.8043160264641],[-73.6500386695571,40.8006027626339],[-73.6494456700784,40.8007264380346],[-73.6509237113345,40.8041308204598],[-73.6503714675221,40.8056422391033],[-73.6494545508234,40.8055504305136],[-73.648600440736,40.8065628542401],[-73.6469682315092,40.8099848429327],[-73.6469887148943,40.8104354923639],[-73.6474357992247,40.8104227201912],[-73.6475651242863,40.8106224172671],[-73.6472951562889,40.8119839904538],[-73.6474805496989,40.8127068194811],[-73.64733425097,40.8135248479291],[-73.6466286925863,40.8155344014821],[-73.6463430750384,40.8170804548195],[-73.6468602585036,40.8179963502461],[-73.6471994452869,40.8207793500704],[-73.6467295239854,40.8212557729548],[-73.6447213024385,40.8217906950878],[-73.6447268145011,40.8224663724161],[-73.6445225411987,40.8231440876485],[-73.6443561489536,40.8233808481912],[-73.6443068224614,40.8235829521064],[-73.6456670308033,40.8230269167363],[-73.6459760081419,40.8225936486986],[-73.6467367419487,40.822395390744],[-73.6473691469256,40.8223847941651],[-73.6476718243791,40.822735158804],[-73.647683377612,40.8230055388771],[-73.6473202031156,40.8229697509333],[-73.6469860657625,40.8235108248417],[-73.6476622546263,40.8233521056998],[-73.6486902147723,40.828426742711],[-73.648142906304,40.8285509460619],[-73.6483465184463,40.8289632036775],[-73.6486775054076,40.8290526606574],[-73.6491522794083,40.8306031215123],[-73.6497210225776,40.8305557337098],[-73.6511002482542,40.8325401571446],[-73.6500045847802,40.8329101816596],[-73.6512293038212,40.8350594443614],[-73.6517519418568,40.834984483156],[-73.6528474508205,40.8363440046632],[-73.6527588122548,40.838122077322],[-73.6531796729654,40.8397799876785],[-73.6532804109397,40.8424205491808],[-73.6539503358511,40.844302063544],[-73.6534823800634,40.8457739338253],[-73.6526725892589,40.8495523930474],[-73.6500964671625,40.8520535464498],[-73.6491182943445,40.8526096027166],[-73.6480884612112,40.8541739539708],[-73.6472862423063,40.8548626750681],[-73.6469682602553,40.8534356616109],[-73.645419571892,40.8542957703697],[-73.6463490129024,40.8552255127282],[-73.6454763148752,40.8558052958863],[-73.6453889034082,40.8561285616023],[-73.6441291904954,40.8571406807863],[-73.6435293737021,40.8572822598375],[-73.6432046255403,40.8570622441032],[-73.642860281529,40.8565672498531],[-73.6426693428187,40.8562947590477],[-73.6416120158479,40.8563273485316],[-73.6407568367654,40.8566640829463],[-73.6424012289441,40.8578770301412],[-73.6423278850944,40.8582004590006],[-73.636752051109,40.8608866485414],[-73.6356010927361,40.8617197969048],[-73.6361852483007,40.8621636012479],[-73.641012194563,40.8598064196688],[-73.6456165562641,40.8573293146361],[-73.6459773565132,40.8575272262529],[-73.6471611644794,40.8573654631565],[-73.6476606241841,40.856871372106],[-73.6477488638978,40.8561787820723],[-73.6488831567256,40.8556425834704],[-73.651331091926,40.8568017596451],[-73.6522121784213,40.8577083689807],[-73.6528210789787,40.8602647801232],[-73.653325586317,40.8628514967226],[-73.6554636791012,40.8635070151562],[-73.6562182271089,40.8636734536076],[-73.6556587329938,40.8644596449351],[-73.6556118660888,40.8663733204865],[-73.6546294415446,40.8685598380324],[-73.6545724137954,40.870131085216],[-73.6551306978799,40.8715698853288],[-73.6555219950345,40.8727950452898],[-73.6556906618139,40.8740266165431],[-73.655262284001,40.8749629668427],[-73.6544987672135,40.8774673156402],[-73.6539382337476,40.8786273202047],[-73.6524357825702,40.879267360231],[-73.6497525642239,40.880920480401],[-73.647133064279,40.8841732185433],[-73.6457105990946,40.8861563114562],[-73.6438366756827,40.8878278022494],[-73.6427704059831,40.8896889333882],[-73.6415910976781,40.8904722583446],[-73.641395905445,40.8909834181385],[-73.6415036844145,40.8920251189514],[-73.6412048912763,40.8930305011701],[-73.6405483207199,40.8935722532636],[-73.6401871656364,40.8942886387338],[-73.6391214681637,40.8945913471226],[-73.6376367919509,40.8954250750039],[-73.6372352234593,40.8955779698902],[-73.6371128351884,40.8956485879874],[-73.6366812270337,40.8958912062798],[-73.6340390455262,40.8981299632432],[-73.633181710487,40.9014617877335],[-73.6332067483306,40.9025880900689],[-73.627276544237,40.8996395671103],[-73.6218216145057,40.8983403900014],[-73.6185952612639,40.8982071942414],[-73.6160595489822,40.8987578043739],[-73.6142612107166,40.8997766329851],[-73.6133341529366,40.9006077391242],[-73.6130310092575,40.9012661835723],[-73.6130648703538,40.902131362909],[-73.6100192653336,40.9022883582185],[-73.6095171493106,40.9024894888819],[-73.6093012041978,40.9024193241709],[-73.6093971002527,40.9021277195406],[-73.6094017229832,40.901907078108],[-73.6088052802621,40.9011567200848],[-73.6071571196507,40.9006684033225],[-73.6055107143474,40.900698045889],[-73.6055023133029,40.901274459001],[-73.606891048545,40.9012191824036],[-73.608293430993,40.9016099524847],[-73.608589195012,40.9019783480539],[-73.608382167475,40.9023676986753],[-73.6063411259792,40.9020007399473],[-73.6043738191003,40.9020805356613],[-73.6022678716303,40.9029648355249],[-73.6014686944209,40.9030001844332],[-73.6007029480148,40.9033151828853],[-73.5993469132457,40.9040689037169],[-73.5989505954069,40.904739690896],[-73.5978922156106,40.9051006576978],[-73.5963770550686,40.9062172334836],[-73.5954257364878,40.9074082196335],[-73.5956113787311,40.9079284424126],[-73.5939639601282,40.9087325974615],[-73.5893463653446,40.909302249997],[-73.5846105109471,40.9092892477178],[-73.5798039744081,40.9098742133302],[-73.5768874626842,40.9113966372254],[-73.5752036003285,40.9117406650824],[-73.5742907592863,40.912432005216],[-73.5738446487296,40.9136786011714],[-73.5713251160045,40.9151562488238],[-73.5703722074056,40.9154642204421],[-73.5681619278019,40.9153647274546],[-73.5661373407471,40.9158079820748],[-73.5581082930608,40.9118884517545],[-73.5534693318481,40.9100107237066],[-73.5504269922041,40.9090446873501],[-73.5476960939774,40.9087716066566],[-73.5454817521919,40.90914004448],[-73.5392962370131,40.9114354520476],[-73.5384746135998,40.9117087912527],[-73.5380881655511,40.9117669476913],[-73.5369787237173,40.9119330346654],[-73.5352364502069,40.91219016041],[-73.5341242712064,40.9123787053028],[-73.5334707010231,40.9125685693729],[-73.5321777468516,40.9129439633811],[-73.530915715387,40.9134638649553],[-73.5298261829149,40.9140354963096],[-73.5291136015023,40.9145758951765],[-73.5287317797773,40.9148592791244],[-73.5275219574987,40.916501304613],[-73.524929292028,40.9170446735246],[-73.523274958194,40.9182440780375],[-73.5223408261812,40.9184302848291],[-73.5219295019857,40.9183034044206],[-73.5217202708812,40.9178007786588],[-73.5217635750678,40.9155583436953],[-73.5210233794434,40.9148372194657],[-73.5184565396387,40.9136602469854],[-73.5154256544129,40.9129276428618],[-73.512490192728,40.911781822496],[-73.5118348609485,40.9112869338893],[-73.511548390001,40.9092699479641],[-73.5112131773645,40.9086981158639],[-73.5091270081021,40.9080766300167],[-73.509016540475,40.9075437289455],[-73.508450883917,40.9063969000808],[-73.5082880786448,40.9045616648872],[-73.5081001995964,40.9024558642833],[-73.5076186235523,40.9014001981336],[-73.5076972638689,40.9010048640382],[-73.5081991202788,40.9010924305624],[-73.5089515329911,40.9019173890238],[-73.5104995916354,40.9025364314356],[-73.5116971501137,40.9026059448921],[-73.5169652563171,40.9009262756201],[-73.5187155769358,40.897273505898],[-73.5199830755471,40.8958665164935],[-73.5205184876262,40.8933826694296],[-73.5211180618743,40.8909807140129],[-73.5215151073485,40.8892427526294],[-73.5205026647008,40.8865363627971],[-73.5261295867747,40.8857346503637],[-73.5292837783497,40.8861082251566],[-73.530759569326,40.8856270946936],[-73.533010265931,40.8853269600011],[-73.5334369028089,40.8856927086309],[-73.5335100310629,40.8864458105479],[-73.5330929765142,40.8868548746884],[-73.5322278351152,40.8870960895538],[-73.5321984727818,40.8873839729725],[-73.5324870421938,40.8879551526831],[-73.5331731754078,40.8879593801947],[-73.533731490035,40.8880070176105],[-73.5339146556231,40.8890182468805],[-73.5334360844437,40.8901291568245],[-73.5328991596018,40.8904556232921],[-73.5316032050571,40.8906508146164],[-73.5294414892759,40.891379937368],[-73.5280931467806,40.8922635355192],[-73.5249754798066,40.8952413810713],[-73.5232795252289,40.8985030952783],[-73.5221012607663,40.9039333424735],[-73.522128384498,40.907879197416],[-73.5229293906773,40.9091325670651],[-73.5238737491113,40.9099148464426],[-73.5268187994135,40.9114028034714],[-73.5268332991205,40.9117858292088],[-73.5264288434436,40.9120193722192],[-73.5260171491421,40.9123113731398],[-73.5264884834936,40.9132767501175],[-73.5263853038984,40.9138789674264],[-73.5271362936793,40.9145506516387],[-73.5289431336007,40.9132270243988],[-73.5297797903204,40.9127467611924],[-73.5303048259595,40.9122625190415],[-73.5305188873052,40.911778815764],[-73.5307003308229,40.910857808426],[-73.5347724901256,40.9080631026976],[-73.5353159286516,40.9073133352499],[-73.5352811485788,40.9065021726992],[-73.5355941728277,40.9059701721053],[-73.5352560379716,40.9059253407576],[-73.5355817491274,40.9055916778534],[-73.5363755723776,40.9051963973277],[-73.5366653203793,40.9059882765418],[-73.5382854364858,40.9053737630565],[-73.5383879800738,40.9050642867455],[-73.537742976225,40.9049029717919],[-73.5376903717803,40.9046635925402],[-73.5453581754499,40.9039453653959],[-73.5438141691058,40.9044438360909],[-73.5437916258838,40.9048624238626],[-73.5442396058345,40.9049401453447],[-73.545316859235,40.9046114378596],[-73.5452970145521,40.9043319390733],[-73.5462906653424,40.9038895668776],[-73.5484174519303,40.9036821546891],[-73.5503638720806,40.9048011185129],[-73.5506244221406,40.9048989789199],[-73.5514976483771,40.9053828737457],[-73.5558089670562,40.9065449451476],[-73.5575282814246,40.9052512978626],[-73.5577116688965,40.904393326332],[-73.5577868515976,40.9040069220728],[-73.558943361559,40.9027242277967],[-73.559768522538,40.9023471937655],[-73.5611860245304,40.901036208667],[-73.5626113939682,40.9007296989234],[-73.5639332523323,40.8999940006219],[-73.5653185640949,40.8999256706254],[-73.5692729147379,40.9000874091896],[-73.5710695165601,40.90056009109],[-73.5720446234279,40.9012793028559],[-73.5724359951427,40.9021263996173],[-73.5733747247332,40.9029172136316],[-73.5743951363358,40.9024974497949],[-73.5761959826976,40.9023620625416],[-73.5767748049644,40.9023602014836],[-73.5782857775605,40.9026625959185],[-73.5786539287235,40.9027617196515],[-73.5788055463772,40.9030968857995],[-73.5783114900389,40.9037483807932],[-73.5786358258739,40.9044730213907],[-73.5794350156597,40.9046810475824],[-73.5793806496187,40.9028877805019],[-73.5796004592839,40.9024986393487],[-73.5787598697399,40.9021459757609],[-73.57792148556,40.901829364604],[-73.576770863157,40.9014368297923],[-73.5756441233641,40.9011076343594],[-73.5761480629671,40.9007220100716],[-73.5756212989693,40.9002696053892],[-73.5731206910523,40.9005134302723],[-73.5737967074396,40.8997516085453],[-73.5731085871521,40.8985225054579],[-73.572128846774,40.8984338083734],[-73.5718709656088,40.8972460577572],[-73.5727575632684,40.8962481363104],[-73.5728555461097,40.895866507666],[-73.5721728112224,40.8955968213992],[-73.5714399476473,40.8940023288504],[-73.5716770858143,40.8937395294704],[-73.5716430890724,40.8929058645516],[-73.5712105107372,40.8926662958794],[-73.5705463682813,40.8928787609232],[-73.5700878681603,40.8931883567254],[-73.5683863368413,40.891653891189],[-73.5683493612859,40.8906850672628],[-73.5681663726659,40.8904666021827],[-73.5674649339561,40.8899669504615],[-73.5673437251731,40.8895330585739],[-73.5677516537369,40.8891597883398],[-73.5677391509848,40.889051536719],[-73.5677086370112,40.8887809160602],[-73.5672419370683,40.8886805333573],[-73.567201636848,40.8889322575611],[-73.5668518454528,40.889017990857],[-73.5665137806653,40.888594914394],[-73.5658202893508,40.8885187295524],[-73.5653943226161,40.8889368082658],[-73.5646767762149,40.8883603711774],[-73.56393195786,40.8882565121246],[-73.5644120418024,40.8892128393994],[-73.5650769514195,40.8894102856179],[-73.5657068959108,40.8899901341741],[-73.565153822055,40.8914830920636],[-73.5654712839814,40.8916581952004],[-73.5664052569924,40.8919715812111],[-73.5670132215053,40.8921277714834],[-73.5672594488264,40.8953286849665],[-73.567634325676,40.8963512508222],[-73.567389238317,40.8968436478157],[-73.5654782773659,40.8978918428181],[-73.5626452954887,40.8982394011843],[-73.5620938026677,40.8985568137817],[-73.5604582409283,40.8988066453635],[-73.5579713089631,40.8997529380219],[-73.5572945370927,40.8997219512957],[-73.5557745795471,40.900112787258],[-73.5545576605778,40.9007956591053],[-73.551624683633,40.9013308606239],[-73.5496637224532,40.9021709796046],[-73.5485894532561,40.9020268444626],[-73.5482687008007,40.9015949253375],[-73.5480802899497,40.8999981329841],[-73.5492264387426,40.8960039887805],[-73.5493029653233,40.8948789480421],[-73.5473150322271,40.8908228226314],[-73.5471340899693,40.8899377546865],[-73.5481216636567,40.8872522865813],[-73.5481612838523,40.8858475309959],[-73.5471955455146,40.8842814781445],[-73.5448564205496,40.8819864566231],[-73.5431539837288,40.8781320320518],[-73.5412547835214,40.8766261948816],[-73.5400059519017,40.876277089787],[-73.5398981118467,40.8770999613636],[-73.53915454754,40.8770815352164],[-73.5391052983029,40.8773646648177],[-73.5387811044016,40.8771984115669],[-73.5387507853625,40.8775313251862],[-73.5385014094464,40.8768976008525],[-73.5380102268187,40.8767022045868],[-73.537355199568,40.8768064981422],[-73.5360327662821,40.8777445683116],[-73.5345020433261,40.8775314494844],[-73.532402287045,40.8779281199583],[-73.5312892393737,40.8778463871771],[-73.5309533161699,40.8763332586861],[-73.5301509849755,40.8763230334423],[-73.5302528054197,40.8778556999905],[-73.5282532337507,40.877713089708],[-73.5262229423939,40.8768494072993],[-73.5253604016177,40.8772122128142],[-73.5250762195775,40.876915816489],[-73.5260578347396,40.8764013977308],[-73.5258662492424,40.8758764813616],[-73.5258791454566,40.8756964853033],[-73.5256162786415,40.8751751613293],[-73.5261719234757,40.8747363667379],[-73.5246311375919,40.874847277955],[-73.5213999999229,40.8736573609299],[-73.5190440063935,40.8734064263523],[-73.5178988071199,40.8733736951535],[-73.5168670569818,40.8736081495158],[-73.5157963963171,40.8734592522966],[-73.5145488358135,40.8737584680997],[-73.5119917005089,40.8750046389198],[-73.5109607408882,40.8750363694549],[-73.5097951238065,40.874755572642],[-73.5089701999828,40.8741999210018],[-73.5087888013808,40.8738552692669],[-73.5089848236572,40.8736145869154],[-73.5093989523931,40.87416492826],[-73.5102875020918,40.8742980209451],[-73.5086668218433,40.8723178183211],[-73.5064486460482,40.8719783288441],[-73.5042826893206,40.8728780810399],[-73.5034426630203,40.8724032661064],[-73.5032500202059,40.872756583431],[-73.5039358974001,40.8730942790388],[-73.5038946871864,40.8739359969129],[-73.5046701443807,40.8746441803588],[-73.5051259172165,40.8755508952733],[-73.5047732413309,40.8770821940694],[-73.5049930572843,40.8785533557882],[-73.5055983816486,40.8795070473722],[-73.506337964622,40.8799670333179],[-73.5068791025627,40.879883961632],[-73.5088631163093,40.8843866331513],[-73.5104809857293,40.8877945661248],[-73.5081369721325,40.8906873653044],[-73.5090972136791,40.8923617669154],[-73.5087836064235,40.8929792649216],[-73.5077560604009,40.8937046278664],[-73.5072768100951,40.8938020164488],[-73.5018581776912,40.8941776310734],[-73.4981841068067,40.8946703172235],[-73.4979802934418,40.8947262151911],[-73.4967578408504,40.8950751116117],[-73.4950485004766,40.8949402177717],[-73.4948087697717,40.8948785372185],[-73.4944049905262,40.8947876901347],[-73.4940375750834,40.8944676118298],[-73.4931925972693,40.8937449415703],[-73.493268576776,40.8933721018558],[-73.4934220422642,40.8926579691226],[-73.4927547080942,40.8914646950466],[-73.4917892994381,40.8904611911728],[-73.4911401426778,40.8898086261118],[-73.490727421602,40.8882853738379],[-73.4902359542084,40.8867025362257],[-73.4900586447376,40.8860831649851],[-73.4900516414716,40.8859344411616],[-73.4900532620324,40.8855696371972],[-73.490055885113,40.8849976619875],[-73.4900562704903,40.8849481228249],[-73.4900560162671,40.8848940713544],[-73.4900506227821,40.8847723920533],[-73.4900366171485,40.8844749436139],[-73.4900183166695,40.8841053747825],[-73.4902697757788,40.8837798739934],[-73.4900610728838,40.8831060434926],[-73.4907488383367,40.8824484513168],[-73.4896676152809,40.8808038429059],[-73.4889414872738,40.8785513303695],[-73.4888865166667,40.878424497062],[-73.488868134441,40.878352192425],[-73.4887651991875,40.8781166341516],[-73.4874324918697,40.8764461879563],[-73.4855447586569,40.8750161603784],[-73.4830145853872,40.8745370094646],[-73.4823199765685,40.8735144665],[-73.4815191365775,40.8729544346848],[-73.479221186792,40.8727034587243],[-73.4779900924075,40.8720836800101],[-73.4767059156745,40.8719361087187],[-73.4756445426916,40.8711293774454],[-73.473148791067,40.8682588291056],[-73.4700696725985,40.8668668175712],[-73.4683366427524,40.86669968607],[-73.4650246064022,40.8678852513918],[-73.4638260265394,40.8677611964708],[-73.4635965914259,40.8671636094207],[-73.4637008993051,40.8668542213453],[-73.4641415220537,40.866914137974],[-73.4640635428971,40.8671112770832],[-73.46446056771,40.8672606919622],[-73.4699456323258,40.8659733749562],[-73.4695593450755,40.8643918407533],[-73.4695099539046,40.8643146171635],[-73.4690711619226,40.8636286853127],[-73.4688182816785,40.8632424859247],[-73.4680160825365,40.8619797137599],[-73.4678500091933,40.8617207779404],[-73.4678611644725,40.861108377913],[-73.466801610578,40.8597205690451],[-73.4648450286853,40.8593522364637],[-73.4642408766224,40.8583488028314],[-73.4642368449834,40.8583307329185],[-73.464174004236,40.8582263035911],[-73.463956824838,40.8587999273852],[-73.4642136001771,40.8594969673288],[-73.4632190654446,40.8597269371364],[-73.4623784094253,40.868944479995],[-73.4618969878915,40.8702937708719],[-73.4640368494584,40.870799715341],[-73.4648202899807,40.871463229113],[-73.4658154777884,40.8731069270608],[-73.4675038829245,40.8747328054091],[-73.4680165316942,40.8746630480207],[-73.4685286908821,40.8742284560081],[-73.468497950533,40.8739533031532],[-73.4659952935588,40.8717761292913],[-73.4659956151557,40.8715374201817],[-73.4663261556544,40.8714517362455],[-73.4667562366731,40.8715520391118],[-73.4698240516403,40.8740204495297],[-73.4703519106844,40.8753831614628],[-73.4708997392773,40.8753318735123],[-73.4708473180888,40.8749348247606],[-73.4713199334379,40.8750897232348],[-73.4710951309364,40.8769288862629],[-73.4714876830375,40.8787582161743],[-73.4726046258038,40.8815700075079],[-73.4720633019119,40.8832383303679],[-73.4723492365652,40.8846743938848],[-73.4720269470924,40.8858817032736],[-73.4724900151466,40.8880993062626],[-73.4720519570882,40.8894041702913],[-73.4720987188904,40.8903055911737],[-73.4724465438734,40.8919226333133],[-73.4734545183009,40.893192598163],[-73.4734004558904,40.8945430836091],[-73.4744135749696,40.8954302676355],[-73.4749904029764,40.8973205703035],[-73.4765002814245,40.8988403594092],[-73.4766738224627,40.898973268033],[-73.4769476047068,40.8991029959355],[-73.4772363636633,40.8992914735784],[-73.4774531909217,40.8995105287659],[-73.4776984426724,40.8995903342742],[-73.4778866630806,40.8996333549534],[-73.4780308103444,40.8996893050841],[-73.4781468358481,40.8996773241649],[-73.4783204280903,40.8997111430114],[-73.4785661972705,40.8997684334166],[-73.4786673224187,40.899823815792],[-73.4787079514224,40.8998964160984],[-73.4787392478286,40.8999553807453],[-73.4788109208118,40.9001950384505],[-73.4788385206506,40.9004476259767],[-73.47893908525,40.9006246085909],[-73.4790547577159,40.9007252223604],[-73.479213536739,40.9007903725158],[-73.4793149736026,40.9008322462858],[-73.4794883439608,40.9008435398619],[-73.4796043317354,40.9007685009955],[-73.4797495776387,40.9007118639634],[-73.4798795953014,40.9007045702801],[-73.4799223488207,40.9007817018562],[-73.4799507382786,40.9009352117439],[-73.4799648274555,40.9010975412711],[-73.4800224364147,40.9012063971673],[-73.4801667911893,40.9014154833375],[-73.4802676504361,40.9015474287479],[-73.4803103213104,40.9016605913382],[-73.48033879521,40.9017780699884],[-73.4804831949003,40.9018880688381],[-73.4805988520948,40.9019571531851],[-73.4806562364752,40.9020434847533],[-73.480800016328,40.9023426433042],[-73.4808433268028,40.9024603176442],[-73.4809065439443,40.9025512302354],[-73.4809534000695,40.9025788717176],[-73.4810599303807,40.9026253151665],[-73.4811463896336,40.90277058152],[-73.481218302467,40.9028706169415],[-73.4813048452632,40.9029798521764],[-73.4814772104066,40.9032298422241],[-73.4816791265296,40.9034531971179],[-73.4818230581977,40.9036487635791],[-73.4819817446944,40.9038805564679],[-73.4821113356572,40.9040218862082],[-73.4822413605064,40.9041767335792],[-73.4823565496787,40.9043313857289],[-73.4824863697119,40.9044952379497],[-73.4826156759089,40.9046816036398],[-73.482731072592,40.9048272497596],[-73.4829182419713,40.9050143762884],[-73.4830772437766,40.9052326595767],[-73.483249745464,40.9055096723584],[-73.4834515708572,40.9057375263287],[-73.48362438426,40.9060010309805],[-73.4837398285538,40.9062097326547],[-73.4839123571906,40.9065182727952],[-73.4840272669868,40.9067179594192],[-73.4841996141639,40.9070670329282],[-73.4843580293693,40.9073438587912],[-73.4844878233515,40.9076067962571],[-73.4846030448631,40.9077929746239],[-73.4846890046526,40.9079607518901],[-73.4847894120469,40.9081782630362],[-73.4848900044941,40.9083552405783],[-73.4849332449003,40.9085089447064],[-73.4850336549895,40.908726455407],[-73.485191549172,40.9091564093839],[-73.4852924156054,40.9094189662486],[-73.4854219086519,40.909695410231],[-73.4855363360528,40.9099491373158],[-73.4856658533538,40.9102571094294],[-73.4856650394802,40.9104552749174],[-73.4857075055386,40.9107080561154],[-73.4857938120778,40.9110559965534],[-73.4858800063277,40.911246296189],[-73.4860380271727,40.911541130759],[-73.4861245313413,40.9117179221143],[-73.4861813821223,40.911925852197],[-73.4863252302471,40.912256532097],[-73.4863969202983,40.9124646566783],[-73.48652616002,40.912817664411],[-73.4865976461537,40.9130347943529],[-73.4866682178024,40.9137473514248],[-73.4867542126262,40.9139466550688],[-73.4867820406371,40.9143208519111],[-73.4868685960096,40.9145606992277],[-73.4869687348076,40.9148232448147],[-73.4870116419388,40.9150895433433],[-73.4871410038314,40.9153074322314],[-73.4873714989568,40.9155491672033],[-73.4875732426033,40.9157499887167],[-73.4878045156699,40.9158926453216],[-73.4879635920353,40.9160118351371],[-73.4882383426633,40.9160379572019],[-73.4883541435883,40.9159719158287],[-73.4884274550986,40.9157837090594],[-73.4883117197506,40.9156515761842],[-73.4881674826554,40.9155325812237],[-73.4877336817131,40.9154187974763],[-73.4875746071443,40.9152996072704],[-73.4873732758245,40.9150807754479],[-73.4872862973454,40.9149895542382],[-73.4872291779681,40.9148581895827],[-73.4872007103567,40.9147722399612],[-73.4872297025842,40.9147050609392],[-73.4872727121234,40.914674096832],[-73.4873887852379,40.9146936353191],[-73.4874606962747,40.9147621387758],[-73.4876779259783,40.9148370517916],[-73.488038545666,40.9150354520082],[-73.4883274052338,40.9152239025743],[-73.4886162657,40.915412352603],[-73.4888472800517,40.9156315716212],[-73.4889481779261,40.9157635097113],[-73.4889909431235,40.9159712532899],[-73.4890193837854,40.9161562893946],[-73.4890187603546,40.9163139214107],[-73.4890905177795,40.9164544853365],[-73.4891626866328,40.9165770383934],[-73.4893796639099,40.9167285124822],[-73.4895384608993,40.9168927365253],[-73.4896387703772,40.917083217576],[-73.4898262712348,40.9173559129927],[-73.4899263723036,40.9176860152153],[-73.4899694249619,40.9178487224513],[-73.4900559237406,40.9179939825151],[-73.4901417038671,40.9181707613664],[-73.4901416454766,40.9183689363964],[-73.4901843918094,40.9185451515163],[-73.4902269530892,40.9188925158145],[-73.4902404790224,40.9191133883844],[-73.4903269795978,40.9192586490631],[-73.4905432507991,40.9194416395806],[-73.490745502892,40.9195884146052],[-73.4908902655017,40.919684892827],[-73.4910055292342,40.9197404485848],[-73.4911643414949,40.9197740548914],[-73.4916566667797,40.919861567374],[-73.4919744970154,40.9199197723015],[-73.4922632353106,40.9200496593572],[-73.4924801541972,40.9201065431972],[-73.4927117093348,40.9201726259184],[-73.4928709842279,40.9202512756335],[-73.4930731419978,40.9204025492065],[-73.4932895003356,40.9205495033326],[-73.4934051009363,40.9206230780179],[-73.4935638655863,40.9207242396825],[-73.4938241578298,40.9207997032213],[-73.4941135168609,40.92090257039],[-73.4943152182866,40.9210087959973],[-73.4946048360325,40.9211657125498],[-73.4947628892169,40.921298391678],[-73.4948784161557,40.921407994912],[-73.4952106176393,40.9216510420414],[-73.4952859207146,40.9217015684834],[-73.4954421584038,40.921816206849],[-73.495557430221,40.9218717587791],[-73.4957739017466,40.9220142060085],[-73.4959762751122,40.9221564696638],[-73.4961496571485,40.9222352982488],[-73.4964097337963,40.9224188493302],[-73.4968144598661,40.9226718454293],[-73.4971177077498,40.9228829814584],[-73.4972763071099,40.9230246717291],[-73.4973769822021,40.9232331669484],[-73.4973623818837,40.9233861122568],[-73.4973321526761,40.9236064139126],[-73.497288843998,40.9237815046336],[-73.4972160301543,40.9239156758314],[-73.4972301840099,40.9239789155392],[-73.4972001578215,40.9241902116493],[-73.4970549092233,40.9244090139939],[-73.4969237120726,40.9246955594457],[-73.4968077081284,40.9249012305906],[-73.4968366554401,40.9250322237015],[-73.496864583164,40.9252082432282],[-73.4969367277628,40.9253983507677],[-73.4970233523056,40.9255391037459],[-73.4970082875583,40.9256470031188],[-73.4969931752003,40.925822461056],[-73.4969495584,40.9260110600532],[-73.4968621864588,40.9262306165418],[-73.4968319886923,40.9266130615789],[-73.4968016876194,40.9270000090509],[-73.4967576414244,40.9273057060916],[-73.49672766644,40.9275800581487],[-73.4967266594285,40.9278863165127],[-73.4965954532948,40.9281728604609],[-73.4965231712537,40.9283160454343],[-73.496406396555,40.9286207936713],[-73.496347933298,40.9288091987186],[-73.4962889867474,40.9290516451311],[-73.4962159671895,40.9293254361253],[-73.4961429188856,40.9295676987544],[-73.4960842508127,40.9297651086638],[-73.4959394477788,40.9300289553044],[-73.4958221565487,40.930356215705],[-73.4956184985924,40.9307273897941],[-73.4954583649098,40.9310450828348],[-73.4953279376154,40.931264076265],[-73.4952550626863,40.9314658042444],[-73.4950803897709,40.9317697954912],[-73.4949780851347,40.9320251874518],[-73.4948904975979,40.9323843629201],[-73.4946863159237,40.9327780475682],[-73.4945698834831,40.9331323421327],[-73.4945407376437,40.9332715849218],[-73.4945104931648,40.93349188484],[-73.4944379461207,40.9337116329611],[-73.4943797532566,40.9338550007035],[-73.4943787327704,40.9340306424757],[-73.4942764999995,40.9343806175552],[-73.4941455004783,40.9346896817862],[-73.4940724386996,40.934931942391],[-73.4939702265899,40.9351828302535],[-73.4938972142186,40.9353575319837],[-73.4938390195579,40.9355008988689],[-73.493766262308,40.9357296511281],[-73.4936637420763,40.9361246622314],[-73.4935033047631,40.9366180035722],[-73.4933427883983,40.9370167607451],[-73.4932841805125,40.9373087530285],[-73.493239776788,40.9374658120657],[-73.4931860826868,40.9375416779031],[-73.4927531288559,40.9373513569291],[-73.4933843956673,40.933423130013],[-73.4928415015203,40.9333349636223],[-73.4903394194678,40.9355317032421],[-73.4890502516952,40.937762302207],[-73.4885140724549,40.9381921602975],[-73.4872268216871,40.9383824632412],[-73.4875870524042,40.9388961374386],[-73.4885319255729,40.9393949560188],[-73.4883881915342,40.9397398777458],[-73.488014056693,40.9398025322968],[-73.4873857642036,40.9394204621822],[-73.4855035969523,40.9395218685427],[-73.4838561433151,40.9390993648772],[-73.482324428619,40.939232350009],[-73.4819990390602,40.9400838218691],[-73.4807229372833,40.940044495932],[-73.4807769413033,40.9404415570079],[-73.4829930994823,40.9404437101403],[-73.4836466948183,40.9409522477875],[-73.4839861187569,40.940817087891],[-73.4833242723949,40.9398580460346],[-73.4826702341894,40.9397908897963],[-73.4826200120768,40.9395199908873],[-73.4840998023527,40.9395799896525],[-73.4854554526429,40.9399716329901],[-73.4872353996997,40.9399904942362],[-73.4875370836165,40.9401746107944],[-73.4873266083455,40.9409059975137],[-73.4876592994109,40.9424642314591],[-73.4882026858347,40.942989313643],[-73.4892288304854,40.9427595483339],[-73.4903444311688,40.9417967978227],[-73.4926062605951,40.940903072857],[-73.4923342345574,40.9400347535082],[-73.4914886737367,40.9396723848079],[-73.4904912931414,40.937110083079],[-73.4912153631081,40.9371330711118],[-73.4915775171183,40.9374981274649],[-73.4925211820529,40.9392580102755],[-73.4935040027541,40.93955910881],[-73.4939651250574,40.9395561243778],[-73.4939572935448,40.9395740384333],[-73.4938796683245,40.9396901278279],[-73.4937973853394,40.9398151641735],[-73.4936958811022,40.9400345329686],[-73.4935787129413,40.9404203446122],[-73.4934765421542,40.9407342873721],[-73.4933453198507,40.9410523550431],[-73.4932145323319,40.9412533250273],[-73.493126896286,40.9414503546283],[-73.4929672620668,40.9416464431475],[-73.4927638098246,40.9418104308804],[-73.4926041235031,40.9419434628033],[-73.4924160010112,40.9420536031446],[-73.4922712635543,40.9420517106328],[-73.492068400607,40.9420265379814],[-73.4919527371243,40.9420520492357],[-73.4916630034957,40.942124827098],[-73.4913003976329,40.9423002426354],[-73.4910832712355,40.9424775603848],[-73.4908654791864,40.9426188367896],[-73.4906911952415,40.9428057226686],[-73.4905894529508,40.9428719502934],[-73.4903575798096,40.9430445702451],[-73.490067501228,40.9432299383585],[-73.4899077816688,40.9433314386172],[-73.4898062909063,40.9434517161946],[-73.4896320015715,40.9436386003954],[-73.4895011269161,40.9437449814822],[-73.4894285349563,40.9438025818246],[-73.4893270181426,40.9438913313634],[-73.4892399597135,40.9440298138985],[-73.4890512560117,40.9442300202857],[-73.4889489873081,40.9444493744175],[-73.4888326698519,40.9446009854684],[-73.4887019640797,40.944797447327],[-73.4885568699917,40.945038759593],[-73.4883964147123,40.9453023905293],[-73.4882369853089,40.9455209947192],[-73.4881203570356,40.9456861127545],[-73.4880186300162,40.9457838664971],[-73.4879171078126,40.9458726140517],[-73.4877138352335,40.9460275873044],[-73.4875249743265,40.9461692374436],[-73.4873806842306,40.9462123845518],[-73.4872504743285,40.9462241880867],[-73.4870905957675,40.9462671302461],[-73.4868299361131,40.9463988287243],[-73.4864816835319,40.9465293775323],[-73.4862213077452,40.9466160390056],[-73.4860618612738,40.946672496938],[-73.4858737738162,40.9467150669797],[-73.485641111056,40.9468561389077],[-73.4855254808109,40.946944699109],[-73.4853225684562,40.9470186013019],[-73.4852064010186,40.947098147267],[-73.4849453002914,40.9472163234245],[-73.4847566136575,40.9473174355559],[-73.484655373525,40.9473611450758],[-73.4847430850294,40.9472271782234],[-73.484815702142,40.9470389661529],[-73.4848595327413,40.9467783120064],[-73.4849187658545,40.9465583956564],[-73.4849039589237,40.9464591136818],[-73.484904224825,40.9463825497137],[-73.4848473947052,40.9462376763843],[-73.484644891084,40.9461314241607],[-73.484283373081,40.9459330019465],[-73.4839367230944,40.9457663015305],[-73.4836187563147,40.9455144021485],[-73.4835467949722,40.9454143688304],[-73.4834310398614,40.945313758611],[-73.4832726462155,40.9451945721093],[-73.4830843548404,40.9450840000317],[-73.4828965180128,40.9450184735135],[-73.482593175806,40.9449063866542],[-73.4823763710054,40.9448089498454],[-73.4821596497482,40.944675482646],[-73.481942393095,40.9445329994516],[-73.48184202343,40.944441598369],[-73.4816826658919,40.9442998773485],[-73.4814953285276,40.9441803069985],[-73.4811771075247,40.9440049649874],[-73.4809747206844,40.9438942043184],[-73.4806716380907,40.9436740205163],[-73.4802817135619,40.9434526912687],[-73.4798912742984,40.9432538742322],[-73.4795295793273,40.9430644430139],[-73.4792846267156,40.942867541725],[-73.4790245572544,40.9427470086253],[-73.4788219530218,40.9426137204693],[-73.4786917305433,40.9425939866691],[-73.4785621108343,40.942515708932],[-73.4784460763474,40.9424601302506],[-73.4783013020596,40.9423951643333],[-73.4780558931037,40.9423153582431],[-73.4778239660637,40.9422627528461],[-73.4776361606771,40.9422287460896],[-73.4773177034173,40.9421614857274],[-73.4769705234246,40.9421163647494],[-73.4767686162847,40.9420821699556],[-73.4766376535944,40.9420624237824],[-73.4764501428553,40.9419833786385],[-73.4761903931942,40.9418493316629],[-73.476059724253,40.941784549036],[-73.4759010754856,40.9417419167808],[-73.4758145272996,40.9416957328809],[-73.4755396077883,40.9415434678066],[-73.4751351619929,40.9412768897605],[-73.4749622587586,40.9411439874595],[-73.4747887347884,40.9410381009344],[-73.4747166009694,40.9409785954597],[-73.4745138530064,40.9409488895239],[-73.4744126694678,40.9408935035964],[-73.4741956993772,40.9408365847207],[-73.4739499194172,40.9408378360137],[-73.4738195819543,40.9407910712993],[-73.4736607301676,40.9407574410734],[-73.4735013429851,40.9407147952622],[-73.473357112178,40.940658838455],[-73.4730384114748,40.9405059874125],[-73.4726201190475,40.940293264848],[-73.4722585812817,40.9401308368026],[-73.472055717436,40.9400741011657],[-73.4718535964971,40.9400173749803],[-73.4715643093312,40.9399414773784],[-73.471245557424,40.9398877076744],[-73.4708992254409,40.9398065481684],[-73.4704938588723,40.9397741483967],[-73.470190042355,40.9396845423771],[-73.469871812369,40.9396082562404],[-73.4696117599757,40.939456174323],[-73.4694383527865,40.9393457772145],[-73.4693661219495,40.939290771311],[-73.4693083054795,40.9392224439248],[-73.4691929375425,40.9392028964027],[-73.4690622955507,40.9391696345224],[-73.4689468090361,40.9391230613473],[-73.4687302656453,40.9390481222493],[-73.4683978081418,40.938913091461],[-73.4680939718615,40.9387604243498],[-73.4678921563498,40.9386586558063],[-73.4675298460328,40.9386268173507],[-73.4671829786538,40.9385051038923],[-73.4670100206223,40.9384397486399],[-73.4668509559349,40.9383835863251],[-73.4666048346151,40.9383037462079],[-73.4663304046857,40.9382280332525],[-73.4661275525181,40.9381712871594],[-73.4656072258476,40.9380382530676],[-73.4653472138786,40.9379492174358],[-73.4651011994582,40.9378648715292],[-73.464869912917,40.9377536974705],[-73.4646819871562,40.9376295882732],[-73.4644943991619,40.9375550268233],[-73.4642631269937,40.9374753791084],[-73.463987961344,40.9373996509528],[-73.4638142792704,40.9373658093093],[-73.463554283471,40.9373082976802],[-73.4633374508226,40.9372783844743],[-73.4630188228829,40.9372200903288],[-73.4626865234829,40.9371751247706],[-73.4623531694608,40.9371436561227],[-73.4620785517835,40.9371084659427],[-73.461803412185,40.9370957880813],[-73.4615722810523,40.9371062163385],[-73.4614270225725,40.937095270299],[-73.4612537815717,40.9371064708186],[-73.4610075129281,40.937193263414],[-73.4606446375708,40.9373460590116],[-73.4604848991469,40.9374790449589],[-73.4602383439408,40.9376739278458],[-73.4599484270559,40.9378817430264],[-73.4597164739647,40.9379912441093],[-73.4595137709175,40.9380560956027],[-73.45922389805,40.9380702383854],[-73.4588913884442,40.9380342669471],[-73.4585732671543,40.9378903918555],[-73.4582270232062,40.9376470522554],[-73.4579667866583,40.9374724217266],[-73.4577792938854,40.9373302914783],[-73.457591383396,40.9372061706278],[-73.4573459061682,40.9370992958358],[-73.4571576992347,40.937051737889],[-73.4567964435398,40.9369433122113],[-73.456391401263,40.9368342993522],[-73.4560441449135,40.9367305632435],[-73.4556825864864,40.9366671694778],[-73.4551472480693,40.9365744233444],[-73.45485821333,40.9365210071748],[-73.4545976066762,40.9365220183181],[-73.4542072186166,40.9364852581588],[-73.4538165080619,40.9364304758539],[-73.45341138853,40.9364205388115],[-73.4532908355172,40.9364009063113],[-73.4531508806909,40.9363855165444],[-73.4529193120786,40.9363193543495],[-73.4525433231148,40.9361746862839],[-73.452298173772,40.9360542929823],[-73.4520374458456,40.9359652173518],[-73.4518351389555,40.9358859341782],[-73.4515605221765,40.9357876636013],[-73.4512718045425,40.9356892028622],[-73.4508814119913,40.9355893752171],[-73.4506068032972,40.9355226299604],[-73.4502880963058,40.9355003315341],[-73.4499406611915,40.9355001652697],[-73.4496803698464,40.9354561303005],[-73.4494632290759,40.9354081707783],[-73.4492470369264,40.9353196880797],[-73.4489575781823,40.9351896837721],[-73.4487266410856,40.9350334425076],[-73.4483792005815,40.9349702160935],[-73.4479022041488,40.9349232606],[-73.4474963614731,40.9349763489233],[-73.447119887419,40.9350433431123],[-73.4467002547054,40.9350512030608],[-73.4463674549438,40.9350602316173],[-73.4461062266558,40.9351512948291],[-73.4458886825417,40.9352789782893],[-73.4456568318585,40.9354785318935],[-73.4454530732908,40.935651439905],[-73.4452792052659,40.9357526871452],[-73.4451054396489,40.9358179032231],[-73.4447147470604,40.9358261465036],[-73.4444105694204,40.9358490671206],[-73.4442369017198,40.9358151961803],[-73.4440053465823,40.9357805441227],[-73.4438610501982,40.9357921086094],[-73.4437014887425,40.9358214829799],[-73.4435420359829,40.9359094098904],[-73.4433240615758,40.9360550985095],[-73.4430775629636,40.9361508577818],[-73.4428312754554,40.936237611594],[-73.4426866628643,40.9362942100514],[-73.4425132080644,40.9362828594187],[-73.4422237645917,40.9362789498765],[-73.4419921025546,40.936248795972],[-73.4417894911355,40.9362145302783],[-73.4414570003944,40.9361469814843],[-73.4412254434602,40.9360492677678],[-73.4410087311861,40.9359832823573],[-73.4407198177194,40.9358938008127],[-73.4405028943412,40.9358368192668],[-73.4402856538578,40.9357933457467],[-73.4401560934376,40.9357465530303],[-73.4399534847135,40.9356807566548],[-73.43973624423,40.9355742261745],[-73.4395487972712,40.9354635945583],[-73.4394334455039,40.9353494338719],[-73.4393466134502,40.9352852033844],[-73.4392462114459,40.9352297964206],[-73.4390725482368,40.9351959183765],[-73.4388842541668,40.9351843612505],[-73.438739428675,40.9351869040898],[-73.4384502025945,40.9351739801943],[-73.4380736153527,40.9351508638966],[-73.4376830350537,40.9350599968098],[-73.4373507670947,40.9349834311635],[-73.4370470197477,40.9348937392446],[-73.4368305293575,40.9347872129243],[-73.4365844601399,40.9346757819111],[-73.4362091592855,40.9344409901693],[-73.4359348955445,40.9342345920295],[-73.4356174875169,40.9339690560677],[-73.4353290250045,40.9337039119761],[-73.4350983430294,40.9334755829671],[-73.4348674472553,40.9332877864044],[-73.4346657063037,40.9331229047626],[-73.4344061920013,40.9328896792716],[-73.4341033169184,40.932669375988],[-73.4338870591919,40.9324592566422],[-73.4336420760375,40.9322082104879],[-73.433439386465,40.9320523218649],[-73.4332373302047,40.9319324734853],[-73.4330499048056,40.9318218316985],[-73.4328479599364,40.9316659523439],[-73.4326453772634,40.9315370878001],[-73.4324434341909,40.9313812077738],[-73.4322849561035,40.9312394302255],[-73.4321698369998,40.9311162575777],[-73.4320255774466,40.9308755853388],[-73.4318672125469,40.930697776978],[-73.4316363392306,40.9304784464021],[-73.4313045473788,40.9302262152039],[-73.4310878683424,40.9301286834407],[-73.4308139459611,40.9300033491413],[-73.430629387086,40.9299287736544],[-73.4305823198567,40.9299101172139],[-73.4303942647385,40.9298264865611],[-73.4301781219962,40.9297064407174],[-73.4300192306837,40.9295511420827],[-73.4299189742065,40.9293335865562],[-73.4298618656089,40.9291121142388],[-73.4298047659945,40.9288275867054],[-73.4297483994054,40.9286061249086],[-73.4296622446814,40.9283887603797],[-73.4295614528082,40.9282252449618],[-73.4294463444843,40.9281020700885],[-73.4292117233967,40.9275403820184],[-73.4294003525384,40.9258449534716],[-73.4300626031423,40.9240839097056],[-73.4290578195307,40.9211291291527],[-73.4291746759761,40.9193921852657],[-73.4297936637159,40.918828610766],[-73.4314505514602,40.9190673508979],[-73.4339130564362,40.9174388521016],[-73.4342369116725,40.915258819298],[-73.4354057177735,40.9140991439557],[-73.4358162119258,40.9140011206628],[-73.4349776552693,40.915539113655],[-73.43475332079,40.918188913373],[-73.4341794680034,40.9196719401051],[-73.4339871683454,40.9199575836199],[-73.4328467400243,40.9200366734462],[-73.4320176444244,40.9209171906331],[-73.4316541636025,40.9219751863002],[-73.4317799897261,40.9229002131304],[-73.4312783165725,40.9235239461309],[-73.4315030714633,40.9241890876453],[-73.4319767306547,40.9238712428601],[-73.4323731976138,40.9226740717684],[-73.4333107117837,40.9222319118831],[-73.4337475966423,40.9215217140483],[-73.4350541692736,40.9211340950908],[-73.4386638552067,40.9212505868218],[-73.4398644993981,40.9205687203761],[-73.4406477153415,40.9204036590204],[-73.4416037141449,40.920497654417],[-73.442381737826,40.9204586222739],[-73.4430468612421,40.9202333977444],[-73.444269956129,40.9200787535991],[-73.4468741227303,40.9184744085291],[-73.4476329269559,40.9183675224433],[-73.4478456255573,40.917334469854],[-73.4485676922809,40.916164142765],[-73.4494828105525,40.9154332933477],[-73.4508313318126,40.9148929232123],[-73.4517938469951,40.9144824751667],[-73.4530398417352,40.9139452063996],[-73.4545595360744,40.9136683199224],[-73.4565498137735,40.9138345996662],[-73.4580009459953,40.9140161565314],[-73.4600707452582,40.914210462359],[-73.4639592961033,40.9143208763496],[-73.4650069113877,40.9141096267562],[-73.4664672639175,40.9139579043167],[-73.4681609538424,40.9134714647533],[-73.4754518810126,40.9139193957798],[-73.4765079431556,40.9135324973111],[-73.478768011884,40.9133281261024],[-73.4801608263758,40.9132068670377],[-73.4805896470581,40.9126945592566],[-73.4818694903181,40.9121258958696],[-73.4829393712451,40.9112616965633],[-73.4838438597519,40.9101971376687],[-73.4836270576462,40.9082215367941],[-73.4833222296259,40.9080193522394],[-73.4819872917912,40.9083080591053],[-73.4812964118793,40.9081458267086],[-73.4810854694842,40.9085754321083],[-73.4817735915683,40.9088907651816],[-73.4824951246927,40.9090759181865],[-73.4825389831398,40.9098511825482],[-73.4821882808529,40.9103239908657],[-73.4800876064936,40.9096657635505],[-73.4801661057747,40.910968452047],[-73.4728939363259,40.9122325856714],[-73.4681813141583,40.9123006979345],[-73.4681322445842,40.9123045498339],[-73.4680506353356,40.912303465681],[-73.4655162875948,40.9127832249967],[-73.4631026527669,40.912471835015],[-73.4621511670995,40.9120267671641],[-73.4610959035588,40.9118010020348],[-73.4587006374818,40.911052877773],[-73.4565090706838,40.9108974538383],[-73.4546337018826,40.9113452563452],[-73.4522963591752,40.9114580376133],[-73.4515352543642,40.9118261549746],[-73.4510349259886,40.9125310654274],[-73.4499468469906,40.912345293466],[-73.44820151292,40.9125605309238],[-73.4469851607876,40.9120532220925],[-73.4443686073169,40.9095137369505],[-73.4412900170578,40.9077921782569],[-73.4396592262708,40.9074323246365],[-73.4378872849998,40.9078992701794],[-73.4362455976484,40.9074986848055],[-73.4348268829303,40.9074929493081],[-73.4330272654638,40.9090043693926],[-73.43292077917,40.9087371868596],[-73.4345969618283,40.9066701026042],[-73.4357852002855,40.9032001383278],[-73.4362587903067,40.9029092975808],[-73.4368951586506,40.9020711746548],[-73.4371477999428,40.9014260238252],[-73.4393823241777,40.9006230462388],[-73.4397381603365,40.9007314527474],[-73.4411265254727,40.9005700695112],[-73.4423142716532,40.900072663479],[-73.443933029507,40.9004323167845],[-73.4438928361862,40.901323565651],[-73.4448986330974,40.9019406683579],[-73.4459710589516,40.9021533011969],[-73.4473176775799,40.9011130010437],[-73.4466594056145,40.9002303610005],[-73.4478402365639,40.89986792475],[-73.4478292483713,40.8993543212944],[-73.4467635419155,40.8991733250883],[-73.4455202232566,40.8997646113418],[-73.4418452190225,40.8991294960956],[-73.4397910019364,40.8990521779037],[-73.438546667283,40.8980759850096],[-73.4369293638017,40.8982882832974],[-73.4351211575427,40.8974080011478],[-73.4342888298044,40.8974957917575],[-73.430306359198,40.8968831576762],[-73.4297321659499,40.896848316127],[-73.4292281221422,40.896796411956],[-73.4287646031338,40.8964117620681],[-73.4282097533086,40.8960303693139],[-73.4276951192621,40.8959873218461],[-73.426500852211,40.8960385924329],[-73.4254812607703,40.8957949724212],[-73.4245143833687,40.895331367864],[-73.4230739590652,40.8913166352386],[-73.4226968516988,40.8909826860824],[-73.422434965844,40.8899837200981],[-73.4228746327851,40.8886835744159],[-73.4230275071818,40.8887126885719],[-73.4231811936556,40.8884265338448],[-73.4232190450684,40.8883009398301],[-73.4235262545225,40.8874854116415],[-73.420877306006,40.8858862813537],[-73.4191936951786,40.885435335886],[-73.419000632851,40.8855678089447],[-73.4186722842416,40.8860542432265],[-73.4175004903439,40.8873173060311],[-73.4173533112661,40.8873918542085],[-73.4169634271614,40.8877513265402],[-73.4169199217522,40.888300217252],[-73.4169574093473,40.8886880755626],[-73.4170074922211,40.8894499391337],[-73.4167382698254,40.8911262341127],[-73.4178903007868,40.8920653644129],[-73.418785573477,40.8932261622805],[-73.4190434699136,40.8950448078512],[-73.4198230476801,40.8956139882052],[-73.4211727044107,40.8957360658581],[-73.4212457554096,40.8959712735094],[-73.4212535141587,40.8967055308384],[-73.4222436722992,40.8981558553969],[-73.4229025694921,40.899403466715],[-73.4239916258571,40.8990985715457],[-73.425300972486,40.8982336757481],[-73.4256269432549,40.8980669744869],[-73.4261852273393,40.8988042416788],[-73.4260296184709,40.8996713890428],[-73.4262545440416,40.9004491448776],[-73.4272582335052,40.901178972386],[-73.4285204769721,40.9013943561865],[-73.4294478078399,40.9013079015543],[-73.4305364033692,40.8995481487363],[-73.4320857744521,40.8999520645327],[-73.4322179310035,40.9008906913534],[-73.4329819921701,40.9016532434414],[-73.432983009063,40.90217572019],[-73.431666020466,40.9033333586605],[-73.4308238903113,40.9050244103899],[-73.4316758911543,40.9052386804253],[-73.4331043400168,40.9048302194658],[-73.4335510829874,40.9053317278583],[-73.4330577399115,40.9057664163995],[-73.4318679446739,40.9059979622027],[-73.4299689205363,40.9056883720359],[-73.427163216901,40.9059383939394],[-73.4263946345135,40.9062431876489],[-73.4227195045153,40.9050444622937],[-73.4173814770435,40.9042867202921],[-73.4129879661092,40.9041272522291],[-73.4089327050154,40.9042830593897],[-73.40428284634,40.9052186951166],[-73.4018101697401,40.9062113607311],[-73.3981518130849,40.9085161825374],[-73.3965041402588,40.9090788008024],[-73.3930756013993,40.9075807930661],[-73.390017576272,40.9066913903333],[-73.3846164196937,40.9039044590704],[-73.3840362140213,40.9034144040894],[-73.3839370912179,40.9023050351078],[-73.3829235607104,40.9004757219033],[-73.3803112895086,40.8997949910249],[-73.3790297133984,40.898556404339],[-73.3769393804446,40.8971082471811],[-73.3750377961085,40.8947123707415],[-73.3751040235045,40.8940377063155],[-73.3737953721716,40.892852726816],[-73.3731476625973,40.8930958144102],[-73.3719332113,40.8935470893063],[-73.3719046206195,40.8950149855203],[-73.3721762675682,40.895676402114],[-73.3741969846807,40.8967498333617],[-73.3750795542945,40.8973703107],[-73.3752070396063,40.8981332802261],[-73.3744472095047,40.8997710299015],[-73.3750484824671,40.9003965496035],[-73.37508293196,40.9010501122227],[-73.3756884611401,40.9015630893929],[-73.3766699747926,40.9018426453721],[-73.378171859133,40.9034491790368],[-73.3802585368418,40.901226516769],[-73.3806202902034,40.9012406056467],[-73.3808841083343,40.9017712761495],[-73.3807606753227,40.902481172188],[-73.3775397865328,40.9062958108622],[-73.3771749627296,40.9071644493622],[-73.3770392272902,40.9102252430313],[-73.3760022723133,40.9126292782667],[-73.3748380512135,40.91350015865],[-73.3727996283068,40.9117058544415],[-73.3716147962611,40.9114504185753],[-73.3718737293535,40.9102740334616],[-73.3707286199114,40.9088255958496],[-73.3625417319414,40.9038723628398],[-73.36108751221,40.9025140227493],[-73.359800318036,40.9011850635388],[-73.3597433962881,40.9004861369276],[-73.3599903216001,40.9000122275554],[-73.3610240103026,40.8980857078172],[-73.361276441389,40.8975082816581],[-73.3639740471529,40.8949567946568],[-73.3637427507302,40.8921205060539],[-73.3640112203377,40.8895660507068],[-73.3626580529909,40.8880920573686],[-73.3612249508552,40.8897381769888],[-73.3597403114734,40.8906448909081],[-73.3579957535472,40.8906605996334],[-73.3571803500689,40.89042378674],[-73.3549069054259,40.8905264967628],[-73.3543879397031,40.8907217720853],[-73.3546510634364,40.8916893792418],[-73.3552066247272,40.8921431987195],[-73.3554875153401,40.8922147643969],[-73.3559560478462,40.8915998954477],[-73.3570426554038,40.891520798089],[-73.3573199491623,40.8915878037313],[-73.3576194690376,40.8922856835185],[-73.357265832853,40.892785092958],[-73.3553488442063,40.8940684281565],[-73.3545092625721,40.8943266901564],[-73.3536590547664,40.8951027521439],[-73.3530955694365,40.89957166248],[-73.3541285206221,40.9027977462764],[-73.3555881859408,40.9048588716233],[-73.3565279054746,40.9049668522809],[-73.3570724615049,40.9054205053127],[-73.3571978717085,40.9066789008089],[-73.3592415290984,40.910608438523],[-73.3581082280107,40.9120515941599],[-73.3573607129133,40.9123292015774],[-73.3557792279573,40.9130182898847],[-73.3552153087411,40.9128345925398],[-73.3521916477667,40.910692574146],[-73.3498210736819,40.9096002412774],[-73.3496684328472,40.9100979979247],[-73.3529852644044,40.912055103244],[-73.3544768423735,40.9133149895221],[-73.3543833052946,40.9139442105244],[-73.3531679763433,40.9159941807944],[-73.3523300700671,40.9196979826624],[-73.3515814311773,40.9205835714793],[-73.3518836172524,40.9230875898797],[-73.3532865889951,40.9244272946061],[-73.3568688781087,40.9246315324044],[-73.3565791040559,40.9249426798132],[-73.3567898829576,40.9253330246305],[-73.3583588615682,40.9254004127613],[-73.3594748727817,40.9258351641576],[-73.3596254313216,40.9257202029001],[-73.3597545515673,40.9252716439168],[-73.3614652987028,40.9263904290277],[-73.3627900289809,40.9277829538966],[-73.3661181990737,40.92945158682],[-73.3682773178253,40.9300361480222],[-73.3707130305479,40.9302417414638],[-73.3723593532062,40.9302785037399],[-73.3737594009327,40.9300055005779],[-73.3755364913469,40.9294315233151],[-73.3764641662695,40.9288951056547],[-73.3771844740918,40.927792766677],[-73.3770477091831,40.9254352684534],[-73.377628634406,40.9248399125986],[-73.378647910538,40.9248947846056],[-73.379902768955,40.9259708542518],[-73.3805443044084,40.9270563133931],[-73.3802220140373,40.9283984712647],[-73.3793244120155,40.9290119094804],[-73.3773396984813,40.9291236201675],[-73.3766775637601,40.9294566009985],[-73.3754446943046,40.9306327872757],[-73.3750202052986,40.9325049570069],[-73.3742416057975,40.9334983645976],[-73.3734543528252,40.932937779068],[-73.3721758327836,40.9309199796667],[-73.3683056839271,40.9305725211278],[-73.3675659482401,40.9305575467132],[-73.3679628481871,40.9309595132815],[-73.3690530454125,40.9313938066485],[-73.3694000071146,40.9320157560315],[-73.3702173320893,40.9327704642418],[-73.3720235476816,40.9340976240509],[-73.3733483812661,40.9345937405564],[-73.3738977307067,40.9351689881659],[-73.3739714275943,40.9355843913637],[-73.3745183291258,40.9362902156821],[-73.375097725416,40.9365190758232],[-73.3769199058676,40.9387787016702],[-73.3786408533732,40.9405684641279],[-73.3794199747955,40.9408901901158],[-73.3806990311313,40.9418089502508],[-73.3812956193795,40.9424613923697],[-73.3817247823199,40.9423998572494],[-73.3817371808675,40.9419226125647],[-73.3811855110785,40.941194235711],[-73.3801227591816,40.9405082212937],[-73.3798182931823,40.9397517828683],[-73.3810865338021,40.9380130537783],[-73.3810190820024,40.9377959169927],[-73.3799938266838,40.936975308917],[-73.3783825248469,40.936713949327],[-73.3775926236412,40.9333473897468],[-73.3788236704149,40.9333692084142],[-73.3815867876176,40.9340971299976],[-73.3827499226542,40.9351989036843],[-73.3832693177717,40.9358187257189],[-73.3838261555685,40.9363039509911],[-73.3856544822933,40.9365862889989],[-73.3847276616685,40.9343753777626],[-73.3842691211233,40.9338780217654],[-73.3845916639211,40.933193434582],[-73.3848400031814,40.9288821180882],[-73.3841474335383,40.9279986460476],[-73.3837272142248,40.9280017647072],[-73.3833315458681,40.9283069915227],[-73.3822450703628,40.9282962578172],[-73.3824654765094,40.9275381795982],[-73.383469875642,40.9266829997158],[-73.388193978279,40.9251186948271],[-73.3884356628196,40.9241537201997],[-73.3878398084951,40.9230779508413],[-73.388065666517,40.9229775170148],[-73.3902465271936,40.9233998278496],[-73.3912600235651,40.9238148251678],[-73.3924423771589,40.9247050848983],[-73.3931526588844,40.9258409767963],[-73.3979711376267,40.9280383985965],[-73.3984074808013,40.9293956496554],[-73.3988345353958,40.929847472962],[-73.4004673527821,40.9301673963202],[-73.4017348963092,40.9298741990207],[-73.402177348926,40.9293803906017],[-73.4019148477252,40.9286606218605],[-73.4014584766115,40.9281003081673],[-73.4003556733276,40.9279048561082],[-73.4002076839694,40.9275469892788],[-73.4016645249848,40.9270357245126],[-73.4022226994748,40.9265750470579],[-73.4022232052263,40.9243365817782],[-73.4021343717262,40.9237723543969],[-73.4026933205639,40.9230009117901],[-73.4032058372813,40.9228008270402],[-73.4040868060973,40.9224031617224],[-73.4046841246758,40.9219790457811],[-73.4054053649494,40.9204756869182],[-73.4055174567306,40.9199502723745],[-73.4055190458503,40.9191125548199],[-73.4047060741114,40.9162232707606],[-73.4050297469898,40.91584941392],[-73.4058562913743,40.9161986415128],[-73.4066119299368,40.9169972810297],[-73.4068983577651,40.9184515192191],[-73.4065750244499,40.9200774903736],[-73.4039075472823,40.9244229635411],[-73.4033591240048,40.9270997370077],[-73.4034843365789,40.9315784134145],[-73.4040414393788,40.9325815017726],[-73.4039957492668,40.933369062504],[-73.4043554508763,40.9340000918946],[-73.4030587884592,40.9381483055953],[-73.4039344419436,40.9422950638629],[-73.4028196955581,40.945018033146],[-73.4026478469459,40.9470334240697],[-73.4003680368409,40.9475062608814],[-73.3994623589647,40.9483584511279],[-73.3993941696481,40.9490601209217],[-73.3988701562917,40.9496653828759],[-73.3987155247903,40.9503793633229],[-73.399017946224,40.9521220879653],[-73.3982908076122,40.9544315219768],[-73.3986905893547,40.9548199103221],[-73.3999671402891,40.9546349546656],[-73.4010942753408,40.9529796258905],[-73.4017431581149,40.9502772442689],[-73.4012365505154,40.9496081404595],[-73.4015062094924,40.9487110886988],[-73.4024539267272,40.9483008520451],[-73.40294253119,40.9483616678871],[-73.4030434173864,40.9498133378188],[-73.4025656879284,40.9522568692131],[-73.4016047214414,40.9543829269697],[-73.4006723950423,40.9555049931689],[-73.3998641466452,40.9558856228857],[-73.3982046501933,40.955506768606],[-73.3937954753354,40.9558552893318],[-73.3925771945201,40.9556266257725],[-73.3917837988679,40.9552102068348],[-73.3872413508528,40.9511202312716],[-73.3862047713717,40.9495338496783],[-73.3803159553582,40.9435691192267],[-73.3789959861511,40.9428344418291],[-73.3785141783417,40.9418007660735],[-73.3746453347373,40.9379224376408],[-73.3713311145826,40.9350561964554],[-73.367299679505,40.932476966988],[-73.3644584043811,40.9311350561995],[-73.3522268760988,40.9265380248069],[-73.3486170302656,40.9256486463275],[-73.3472979108647,40.9255036358915],[-73.346009543491,40.9257328802295],[-73.3455698235493,40.9241682026168],[-73.3461126045086,40.9232977166287],[-73.3461120771975,40.9228428090494],[-73.3455686683158,40.9221323958221],[-73.3458399361755,40.9209877776018],[-73.3455987088773,40.9208987413913],[-73.3441208904033,40.9209901282142],[-73.3436987765429,40.9216056117878],[-73.3447002327947,40.925849210462],[-73.3445710757181,40.9270679289532],[-73.34234384221,40.9268152374599],[-73.3398600525517,40.9270857724151],[-73.3383619842547,40.9279199458257],[-73.3330490620001,40.9290232959759],[-73.3315377866718,40.9298166530434],[-73.325422111913,40.9291875227275],[-73.3228332031968,40.9294111238512],[-73.3196106803713,40.9280985957916],[-73.3145990629446,40.9268859504794],[-73.3136723007103,40.9267552976881],[-73.311143288064,40.9273398284464],[-73.3098597212871,40.9268796336446],[-73.3020979745001,40.9259098501462],[-73.2973492876688,40.9245652084365],[-73.2947925045037,40.9246400241427],[-73.2891433383468,40.9226196438645],[-73.27960668495,40.9197168272964],[-73.2695564045182,40.9159092291743],[-73.2649031969235,40.9145421653927],[-73.256418027855,40.9129413796329],[-73.2554453401501,40.9124807763674],[-73.2481833081894,40.9106681899519],[-73.2397717156342,40.9097114070364],[-73.2367739890221,40.90978272492],[-73.2356250527568,40.9095940062948],[-73.2349554260862,40.9091018393214],[-73.2348778853075,40.9087808723469],[-73.2352653816901,40.9072419474898],[-73.2323898394314,40.9070763110779],[-73.2324949450146,40.9078661127084],[-73.232107839399,40.9084411890373],[-73.2314211366532,40.9088134977772],[-73.2296590804436,40.9091602947326],[-73.2281122201519,40.9083123212986],[-73.2277705037127,40.9077981255497],[-73.2266716736774,40.9074029057368],[-73.2222806555681,40.9072722599198],[-73.2182857127523,40.9078952204594],[-73.2148244913862,40.9091433432593],[-73.2082738676382,40.9120639183828],[-73.2008284877313,40.9145152661374],[-73.1907930986719,40.9174569968422],[-73.1793726035642,40.9197499469212],[-73.1767656063714,40.920600543098],[-73.1758325577268,40.9205767816089],[-73.1739144928985,40.9210148384878],[-73.1682141003124,40.9228746435729],[-73.1521981907238,40.9292894619613],[-73.1495867531585,40.9293691989527],[-73.1492002700756,40.9291738334476],[-73.1491916372657,40.9285791784378],[-73.1498453134502,40.9274726960789],[-73.1504743955588,40.9259964945565],[-73.151108058177,40.9256058061474],[-73.1546671887226,40.9244872846803],[-73.1577149784455,40.921973278959],[-73.1607311672334,40.9206702411998],[-73.1622394143409,40.919730444547],[-73.1629323900224,40.9204891349951],[-73.1657669780874,40.9212638840527],[-73.1675142318577,40.9214492949588],[-73.167563208007,40.9206708948673],[-73.1655814157941,40.920486258307],[-73.1642015496188,40.9203021622235],[-73.1633230233221,40.9198377838978],[-73.1631860500042,40.9192095570891],[-73.1639908318026,40.9187719790194],[-73.1663376176003,40.9186922102347],[-73.1658532253378,40.9190853573953],[-73.1659317937892,40.9194379129953],[-73.1670594561519,40.9200458527091],[-73.167720599133,40.9200248306135],[-73.1688991842942,40.9193274240593],[-73.1707790581466,40.9196004652269],[-73.1711186599515,40.9190203406598],[-73.1663222977314,40.9179848504839],[-73.1688068069403,40.9170019323056],[-73.1735472391525,40.9151899511408],[-73.1744190801868,40.9160054527741],[-73.1749363445005,40.9167342675431],[-73.1758088296269,40.9177704608733],[-73.1721407873363,40.9194734241539],[-73.1727175470712,40.9199824985952],[-73.1772069765183,40.9180718087117],[-73.1779754295483,40.9175479838502],[-73.179779617643,40.9171170696084],[-73.1799025134621,40.9168577812928],[-73.1783736895447,40.9166940241934],[-73.1784041082968,40.916235104092],[-73.1788859349708,40.9158238470655],[-73.1811780537919,40.9148646467292],[-73.182264036122,40.9138548702043],[-73.1827465365325,40.9130112304081],[-73.1826864149855,40.9124157639978],[-73.1817213818252,40.9107205883274],[-73.1808778907228,40.9081130223952],[-73.1807573107606,40.9067194048521],[-73.1808776939918,40.9060096819458],[-73.1811350729988,40.9059867170321],[-73.1822684764945,40.9067882689332],[-73.1828767051121,40.9068518997936],[-73.1828534432378,40.9065362575903],[-73.1826461075786,40.9061951960619],[-73.1813476808704,40.9055126522179],[-73.1811795979959,40.9034697182319],[-73.1799740561896,40.9020274582551],[-73.1765677048194,40.8993748868841],[-73.1762360818508,40.8987796276705],[-73.1765679967718,40.8976363705658],[-73.1762667916571,40.8969064740915],[-73.1734901395381,40.8953266953715],[-73.1718661651674,40.8938146679836],[-73.171052060653,40.8934729745143],[-73.1703589133932,40.8935880923526],[-73.1686696809088,40.8963537286105],[-73.1693025862473,40.8977509888715],[-73.1690607400098,40.9000621743792],[-73.170085370101,40.9008170797697],[-73.1700851383357,40.9016863361297],[-73.1704769169873,40.9023050860307],[-73.1704464362514,40.9028991226126],[-73.170174958186,40.9030569573353],[-73.1692406959175,40.9028980070732],[-73.1689991425308,40.9029662355492],[-73.1690295091807,40.9032639770081],[-73.1694212069839,40.9035629501145],[-73.1708082650714,40.903904734726],[-73.1705667754651,40.9044548887025],[-73.1684253382532,40.906925091196],[-73.167158908637,40.9078823272087],[-73.1626941693855,40.9137384631943],[-73.1621514324437,40.9141486809772],[-73.160673620258,40.9145845246545],[-73.15729577333,40.9145170963053],[-73.1562101862586,40.9146979201814],[-73.1547630856758,40.9152017364596],[-73.1515424403293,40.917640834755],[-73.1510868678178,40.9184082066767],[-73.1514436004952,40.9189498914228],[-73.1510512136842,40.9199795030969],[-73.1507191298798,40.9199111245139],[-73.1501773442539,40.9192718876394],[-73.1495739997765,40.9194558779852],[-73.1502968219833,40.9208952144496],[-73.1483950193565,40.9224455729631],[-73.1474502270363,40.9236914974995],[-73.1472265860564,40.9243634926481],[-73.1474919483913,40.9256513707551],[-73.1479889089829,40.926992509901],[-73.1462410075273,40.9318962116285],[-73.1464531213254,40.9333363670755],[-73.1445837433888,40.9456154754957],[-73.1442687814738,40.9525373994681],[-73.1444443661792,40.9556524146752],[-73.1447687226755,40.9563737522467],[-73.1472577665799,40.959246714395],[-73.1498736831451,40.9597931474446],[-73.1513519633531,40.9607626716362],[-73.1542837455385,40.9618635419206],[-73.1565771929679,40.9643413342601],[-73.1576006543509,40.9658349649865],[-73.1589779567344,40.9668388089712],[-73.1588776346801,40.9675082862084],[-73.1583072116612,40.9678820081135],[-73.1575167948225,40.9678603744924],[-73.1526533652816,40.9666881233251],[-73.1450516174298,40.9661292195541],[-73.1392748779261,40.9666261617413],[-73.1377195312499,40.9672361023464],[-73.1371839952034,40.9674481425655],[-73.136674564199,40.9669174621441],[-73.1345294250298,40.9672385869741],[-73.1301602898807,40.9691450278614],[-73.1245540847539,40.9731254905033],[-73.1211852551148,40.9747821228822],[-73.1200220634843,40.9760873032476],[-73.1196057221979,40.9769362503038],[-73.1185932139732,40.9773025637228],[-73.1178488214197,40.9770697262067],[-73.1145499004726,40.9745657282655],[-73.1113268027254,40.9725628071149],[-73.1093829814012,40.9715986524208],[-73.1043000727751,40.9696821279135],[-73.1009669960843,40.9688391086657],[-73.0992202687267,40.9687022368743],[-73.0964456036811,40.9688231098948],[-73.0935777716624,40.9694963524854],[-73.0929231522469,40.9676749724263],[-73.090817729393,40.96666279388],[-73.0906266397657,40.9663353511514],[-73.0909524030238,40.9659849389913],[-73.0934398057061,40.9654676111088],[-73.0942364020557,40.9662013983812],[-73.0965220799562,40.9666805296478],[-73.0977742047998,40.9672011215189],[-73.0985580944796,40.9671645073149],[-73.0994479584136,40.9677826958016],[-73.1011685537795,40.9675092819547],[-73.1021629932906,40.9678229080336],[-73.1025370616564,40.9680137224868],[-73.104896309782,40.9680029762414],[-73.1053599338934,40.9683348738616],[-73.1054824937426,40.9689313984433],[-73.1062993695597,40.9690664207538],[-73.1068412414239,40.9697013564394],[-73.109036292787,40.9697463805648],[-73.1097446009137,40.9709785422105],[-73.1104036005146,40.9713631644739],[-73.1107289559375,40.9714405574714],[-73.1113432733361,40.9710227529028],[-73.1131505974495,40.9710433321418],[-73.1135380435264,40.9713919654911],[-73.1134614684367,40.9728274479284],[-73.1150730891755,40.9739572512224],[-73.1141120445351,40.9714238736093],[-73.1149123122993,40.9708919900395],[-73.1152786326957,40.9709655357884],[-73.1159442816263,40.9710394680664],[-73.1164912945489,40.9701926678285],[-73.1171915690421,40.9671955153327],[-73.1177589880947,40.9663085068967],[-73.1199361081863,40.9648892690062],[-73.1213140034579,40.964281182304],[-73.123849497449,40.9624758702547],[-73.1251589590623,40.9620783060474],[-73.1255161480839,40.9611878397122],[-73.1279565167746,40.9598492935873],[-73.1281404010149,40.9593343313027],[-73.1274626697438,40.958562172391],[-73.1268086521995,40.9566373989851],[-73.1261015828495,40.9560899493199],[-73.1261760576781,40.9550327462042],[-73.1257747883255,40.9546749218533],[-73.1257545555704,40.9541566464139],[-73.1261238754416,40.9528880472112],[-73.123045275301,40.9542206753714],[-73.1216838739964,40.9537841514285],[-73.1197904724142,40.9535686377712],[-73.1192977608539,40.9527453999116],[-73.1194873323283,40.9517441246208],[-73.1187101072495,40.9504028006385],[-73.118478449704,40.9494351896003],[-73.1179926461883,40.9489453459522],[-73.1171996637611,40.9486306415996],[-73.1181720711916,40.9509930397942],[-73.118455638784,40.9524073835929],[-73.1162159905587,40.9553073535329],[-73.1158017279738,40.9574174112416],[-73.117999825524,40.9624616214489],[-73.1188101328598,40.9633485954421],[-73.1186824032061,40.9637923957706],[-73.1175332154126,40.96471495268],[-73.1148218366788,40.9653327293088],[-73.1152176325963,40.9662219587745],[-73.1150969421413,40.9671477843866],[-73.1140976607108,40.9676538956213],[-73.1139435969446,40.9685251279226],[-73.1125487576501,40.9690968174215],[-73.1126517746503,40.9699902699799],[-73.1121419636586,40.9699999408347],[-73.1111480254074,40.9692495330955],[-73.1085235443042,40.968143599775],[-73.1083906035237,40.9672856829624],[-73.1088062019033,40.966621422387],[-73.1088071936434,40.9659368496963],[-73.1083088739008,40.9653116456508],[-73.1074505372401,40.9652254998244],[-73.1072191824269,40.9648749040489],[-73.1067484265904,40.9622999669872],[-73.1062958131295,40.961558403003],[-73.105953431937,40.9613771287156],[-73.1044888878681,40.9616368087622],[-73.1032624251972,40.9619589368031],[-73.1013195462057,40.9618053596984],[-73.100512974065,40.9614182545369],[-73.0996238772923,40.9602325981911],[-73.0998423421795,40.9588309885434],[-73.1016930135986,40.9570689245427],[-73.1014325093527,40.9560017202419],[-73.1005908741698,40.9545871542545],[-73.1011565585755,40.9526507929674],[-73.1023750055791,40.9518511426169],[-73.1047921743793,40.9510937051369],[-73.1057252796178,40.9510775087001],[-73.1074711149483,40.950268449832],[-73.1072489570869,40.9518321558502],[-73.1075010009995,40.952678518661],[-73.1090849428478,40.9533530609932],[-73.1102945153947,40.9545529055375],[-73.1133525108776,40.9548912236281],[-73.1139092327917,40.9542472674149],[-73.1131974463882,40.9527493417234],[-73.113106193725,40.9510003408201],[-73.1121985179956,40.9498640177741],[-73.1104632773956,40.9491329928347],[-73.1066103052256,40.9491328523872],[-73.1056566959408,40.9467256280641],[-73.1041322719717,40.9464168318452],[-73.1027180524232,40.944853244565],[-73.1021407671739,40.9445554963542],[-73.1017890012817,40.9446532965538],[-73.1019668263854,40.9450030226508],[-73.1016423890407,40.9452093654312],[-73.1028070772645,40.9472147458892],[-73.1025902796505,40.9476030172401],[-73.1023541799359,40.9477837919783],[-73.1018876605544,40.948568798084],[-73.1014275138214,40.9483540449613],[-73.100146544074,40.9497561762703],[-73.0977666445784,40.9511807066392],[-73.0969294380898,40.9512704829615],[-73.0956113544464,40.9505235986186],[-73.0948623553322,40.9505157310125],[-73.0948467201547,40.9510334189829],[-73.0969549134129,40.9525545094256],[-73.0974572674894,40.9547381728245],[-73.0986989000105,40.9564701251966],[-73.0984423474536,40.956947810188],[-73.0964963090873,40.9580461770397],[-73.0943955197436,40.9579394194152],[-73.0930700456605,40.956904136186],[-73.0911553998201,40.9566787923405],[-73.0875241318623,40.9554926580512],[-73.0851966715213,40.9539317246778],[-73.0827700623257,40.9537472821494],[-73.0822710886096,40.9535408147554],[-73.0800293886322,40.9519226531697],[-73.0776689744933,40.9511491978499],[-73.0747898102273,40.9493716777587],[-73.0725147845495,40.9469961622334],[-73.0731566047688,40.946475429992],[-73.072659637889,40.9462284200158],[-73.0720152484879,40.9462761986593],[-73.0713815427505,40.9467475176277],[-73.0699765965108,40.9475166949584],[-73.0695880562858,40.9476002692914],[-73.0691054974848,40.9481326554067],[-73.0679477730012,40.9488248775463],[-73.0680147756433,40.9495060853474],[-73.0674881652574,40.9502494090104],[-73.0669392020924,40.9513256417198],[-73.0672328281211,40.9520016409601],[-73.0696377259345,40.953411100051],[-73.070144629978,40.9539555454082],[-73.0728167891648,40.9585356329651],[-73.0744870501288,40.9600903473314],[-73.0751145844402,40.9618528292701],[-73.0760248149782,40.962705739259],[-73.0765885491415,40.963931187946],[-73.0784751657484,40.9658182349381],[-73.0785383667202,40.966634488],[-73.078199921047,40.9670612190509],[-73.0768673996804,40.9676515290334],[-73.074486044914,40.9681162224377],[-73.073785064345,40.9684423044941],[-73.0744796381294,40.969714987127],[-73.0746058568167,40.9709421451129],[-73.07592535351,40.9715181450387],[-73.0778400227065,40.9710906831549],[-73.0785930265103,40.9695358881058],[-73.0793203465818,40.9688904407711],[-73.0792404576069,40.9681369640174],[-73.0805195651467,40.9680051318666],[-73.0809211012989,40.9688089994735],[-73.0830524701932,40.9702046183311],[-73.0841030921388,40.9701410098082],[-73.0868940355557,40.969845053019],[-73.0889038138829,40.9699008982731],[-73.0891925369068,40.9697795748156],[-73.0899456862377,40.969805564385],[-73.091682255446,40.9717889940619],[-73.0917106718534,40.9725551218717],[-73.0898558870486,40.9717587546338],[-73.0874454780709,40.9716332280313],[-73.0802664720019,40.9732479208038],[-73.0766353738257,40.9728496218399],[-73.0682865070336,40.9695123198922],[-73.0598348038027,40.9665194810776],[-73.0535069757199,40.9652013005856],[-73.0497147539177,40.9653263863044],[-73.0492033259584,40.9647367372433],[-73.0471744144139,40.9641529240629],[-73.0457740980912,40.9642147740088],[-73.0449569788306,40.9645972630042],[-73.0454309173981,40.9631100159955],[-73.0443781960897,40.9624931533298],[-73.0420403036133,40.9621652333782],[-73.0418179921401,40.96192275384],[-73.0420698923222,40.9617423732757],[-73.0428950766573,40.9618149313555],[-73.0428075466127,40.9613090134453],[-73.0417251512554,40.9595881771554],[-73.0404984909552,40.9582522117724],[-73.0412957969738,40.957558650935],[-73.0434307196033,40.9574868018576],[-73.0437231697373,40.9571900047548],[-73.0439996783683,40.9556228462758],[-73.044696062258,40.9545222016243],[-73.0436951360123,40.9539917849786],[-73.0431174824537,40.953310907727],[-73.0427343159507,40.9538133414024],[-73.0418126992664,40.9542931202793],[-73.0405296112916,40.9544154484772],[-73.0395898342655,40.9549309315002],[-73.0387797407288,40.9547279943008],[-73.0368848632146,40.9538445212329],[-73.0364642055232,40.9535310960328],[-73.0355949543318,40.9530704092998],[-73.035430124257,40.952644237745],[-73.0344953131178,40.951966240232],[-73.034369813981,40.9514911950633],[-73.0335167890586,40.9514856587816],[-73.0328362631286,40.951397485969],[-73.0322718498389,40.9515499956389],[-73.0303258518968,40.9537642011509],[-73.0269918238901,40.9547566037978],[-73.0244135889561,40.9546313922108],[-73.0227614092822,40.9578368453151],[-73.0228261733226,40.9589008661139],[-73.0227675043514,40.9592241376995],[-73.0219545658502,40.9595389774346],[-73.0203822499983,40.961133383163],[-73.0199394659032,40.9623553329252],[-73.0200390531355,40.9631226983598],[-73.0221791563493,40.9637043920218],[-73.0250484184859,40.964068840224],[-73.0257139802799,40.9639406182005],[-73.0271626924403,40.9639248787237],[-73.0276521161667,40.9637756163638],[-73.0303446177031,40.9638666779685],[-73.0310155738804,40.963481797651],[-73.0339170756543,40.9636123750887],[-73.0425566318824,40.9633900415698],[-73.0428706352951,40.9635710220334],[-73.0429006623817,40.9651929205584],[-73.0416020533154,40.9646529295503],[-73.0378899935759,40.9646799020046],[-73.0310470364749,40.9652703655626],[-73.0106372925585,40.96555059225],[-72.9995490213923,40.9664982295775],[-72.9842927406826,40.9660522361345],[-72.980940326857,40.966389887519],[-72.9789015356409,40.9662955992662],[-72.9681681169783,40.9667554075417],[-72.9569378392336,40.966079450854],[-72.9552365863924,40.9665762245166],[-72.9535790536577,40.9661144356677],[-72.9481194616701,40.9656615540025],[-72.9394956924347,40.9643637145236],[-72.9290719985089,40.9632580907221],[-72.9224854035221,40.9627837386804],[-72.9144904711552,40.9625807828867],[-72.906346181296,40.9628519616429],[-72.8987633771169,40.9628625757707],[-72.8970808289965,40.962642725205],[-72.8929810321259,40.9627479903137],[-72.8814240919096,40.9638106763379],[-72.8807822564189,40.9638394087477],[-72.8732611575167,40.9641917635212],[-72.8683740915041,40.9652634412283],[-72.8672840514838,40.9654414387186],[-72.8641812570177,40.9656451908814],[-72.8623272366792,40.965516234585],[-72.8559579495495,40.9665508692527],[-72.8535609155881,40.9672268475653],[-72.849304230648,40.9679446461366],[-72.8422409275876,40.968861976449],[-72.8381873265804,40.9697678182236],[-72.8347929263967,40.970204003137],[-72.8304931609505,40.9704113700248],[-72.8242560887626,40.96969927955],[-72.8207050691057,40.9689340966675],[-72.813558732967,40.9678979745544],[-72.797924213912,40.9666004341041],[-72.7950618912609,40.9667123382981],[-72.7943268878988,40.9664370553359],[-72.7889185133571,40.9668198088793],[-72.7831371385465,40.9661187429715],[-72.7808077531159,40.9653533116791],[-72.7745060139056,40.965402919486],[-72.762034630951,40.9668232512939],[-72.7594091320566,40.9673532080455],[-72.750215323383,40.9685567077782],[-72.7486203574095,40.968588622694],[-72.7439827885856,40.9695023193215],[-72.7424721609425,40.9696078685403],[-72.7331719593999,40.9716772829637],[-72.7300673350656,40.972084599613],[-72.7266376023451,40.9730033475514],[-72.7240725196452,40.9736373134521],[-72.7212329809647,40.9738919927789],[-72.719121045325,40.9742420618136],[-72.713636866448,40.9758583727104],[-72.7083328473963,40.9778202810129],[-72.700358940997,40.9794540066694],[-72.6908322157808,40.9805291643801],[-72.6847938078145,40.9806467835928],[-72.68254822981,40.9801558131865],[-72.67593400534,40.9792615800368],[-72.6696053337392,40.9791023315521],[-72.6512109835188,40.9812782034689],[-72.6484897134354,40.9814073914067],[-72.644846742226,40.981008780925],[-72.6425405764489,40.9810382179163],[-72.6364444382509,40.9817916388831],[-72.6301602584095,40.9831038274847],[-72.6213243493248,40.9859753682755],[-72.6129995088733,40.9895278493237],[-72.6099685023748,40.9903838061387],[-72.6067995344117,40.9907999665099],[-72.6024325138968,40.9917991250034],[-72.5997980345445,40.9925729847055],[-72.5971447839961,40.9941480393368],[-72.5951547093162,40.9947280518841],[-72.5939244054492,40.9944997216882],[-72.5915461049547,40.9952111817032],[-72.5866619818229,40.997131188401],[-72.5835158373562,40.9989838404417],[-72.5778678713484,41.001639556738],[-72.5720323200414,41.005263812532],[-72.5704905531974,41.0059248889626],[-72.5669389613137,41.0084125394872],[-72.5643413371425,41.0106184948629],[-72.5624945060213,41.0124529568821],[-72.5607129662515,41.015234522517],[-72.5576229251675,41.0122868074777],[-72.5569912002153,41.0122464013781],[-72.5540507412025,41.0139224386005],[-72.5535525274611,41.0138488173918],[-72.5530578126577,41.0136806929323],[-72.5510318754352,41.0131963245322],[-72.550419411261,41.0128365374237],[-72.5501890463912,41.0114715606493],[-72.5500161260889,41.0105221332223],[-72.5495522342795,41.0094629396609],[-72.5486616076759,41.0086288576142],[-72.5479593721604,41.006983627587],[-72.547749297538,41.0061955356795],[-72.5476551091805,41.0059098062257],[-72.5473745509442,41.0025937024875],[-72.5457812378708,41.0009340026412],[-72.5483566547898,40.9987324879018],[-72.5500810760805,40.9979765051473],[-72.552504650767,40.9975821190466],[-72.553941936357,40.9974955265268],[-72.5567490422625,40.997519016943],[-72.5569000337904,40.9971529188684],[-72.5547567190995,40.9960581394412],[-72.5524975082622,40.9965506383235],[-72.550923615867,40.9966748442203],[-72.5489679574423,40.9973358515448],[-72.5472213729169,40.9978481503749],[-72.5452175189789,40.9978640505776],[-72.5447651040456,40.9975211492299],[-72.5448266359476,40.9959642075101],[-72.5437097147408,40.9956882153705],[-72.540993008099,40.9950943756452],[-72.5406007757982,40.9944329844572],[-72.5393641145539,40.9937220482987],[-72.5392435103371,40.992530518825],[-72.5388819069942,40.9923246412986],[-72.5383986241511,40.9930123852891],[-72.5378539998489,40.9952075299067],[-72.538487587907,40.9955723403912],[-72.5390073639102,40.9956014508598],[-72.5402672178585,40.9963489146043],[-72.542019073698,40.9966745065756],[-72.5426220840021,40.9972232914708],[-72.5430749588728,40.9982732787948],[-72.5431951570511,40.9989378715102],[-72.544201554037,41.0001302526321],[-72.545758418866,41.0031312670904],[-72.5464966435867,41.005106038938],[-72.547082920972,41.0065101214336],[-72.5474441191747,41.0081526070097],[-72.5485378000668,41.0095629707985],[-72.549304902929,41.011704970131],[-72.5486013127541,41.0120998383976],[-72.5491590075437,41.0129943968946],[-72.550717121031,41.0137480823997],[-72.5516738034523,41.0140251071547],[-72.5541014304391,41.0146215689211],[-72.556897915563,41.0130010267834],[-72.5579192757865,41.0137207212811],[-72.5583140377431,41.0140398301435],[-72.5555170971734,41.0152100386444],[-72.5495004014876,41.0201263162811],[-72.5463784342784,41.0215911286387],[-72.5410543244054,41.0255804433705],[-72.5278684807625,41.034328071633],[-72.5243284996039,41.0358463585826],[-72.5186599801424,41.0400704047342],[-72.5166581249559,41.040414600327],[-72.5150288118976,41.0402038490204],[-72.5133226704245,41.0404147507433],[-72.5057533346865,41.0426470952703],[-72.5013418143274,41.0446141717057],[-72.4968153078153,41.0458039152071],[-72.4905874155113,41.0489109114062],[-72.4798584497975,41.0511220212624],[-72.4777189745061,41.0520974776389],[-72.4751742997328,41.0549554867562],[-72.4731077209301,41.0539238855031],[-72.4723050510709,41.0534063784923],[-72.4719371011305,41.0526642275151],[-72.4709106869852,41.0516013767939],[-72.469992235964,41.0504192936956],[-72.4692609489322,41.0502140766802],[-72.4687364549772,41.0504727599239],[-72.4694948190282,41.051543250041],[-72.4689797115696,41.0527208575241],[-72.4691535849844,41.054742253269],[-72.4706699196244,41.0546449685336],[-72.4714775059632,41.0539466458713],[-72.4736008466137,41.0547768631728],[-72.4689017270232,41.059100620862],[-72.4683205296107,41.060002056072],[-72.4638593315181,41.0643668576854],[-72.4629309577063,41.0649318614359],[-72.4604322640991,41.0672411166034],[-72.4592221516647,41.0689978057446],[-72.4524921011168,41.076914855522],[-72.4501030091608,41.0816401699289],[-72.4493972369781,41.0824801991508],[-72.4487061531485,41.0843248263364],[-72.4479934881926,41.0850340918856],[-72.4462446956082,41.0858509763241],[-72.4427790554292,41.0867918378017],[-72.4360790984433,41.0859312763258],[-72.4302567029636,41.0870894583821],[-72.4262117446478,41.0865667679864],[-72.4185279303049,41.0878673679044],[-72.416813785741,41.0883963554186],[-72.4151656754353,41.0892330362598],[-72.4106003814658,41.092278363565],[-72.4083320805762,41.0921732809502],[-72.4069394385609,41.0926012741973],[-72.4026676206016,41.0951890345467],[-72.3998651239518,41.0954004823249],[-72.3958839846487,41.0970983649548],[-72.3944080382638,41.0984430230826],[-72.3926329439062,41.0995602177963],[-72.3877818958449,41.1051696121665],[-72.3850945937573,41.1097426357469],[-72.3838668815298,41.1113269690712],[-72.3831429202592,41.1143188053244],[-72.3826733034866,41.114898078083],[-72.3813127016825,41.1154210546984],[-72.3799090508134,41.1166140460719],[-72.3778292937255,41.1173998218012],[-72.3765651018127,41.1186770096832],[-72.3756594868185,41.1189310748216],[-72.3729867572015,41.1189781896078],[-72.3712798853981,41.1196867900168],[-72.3692858572327,41.1213029963352],[-72.3676523571268,41.1217565236626],[-72.3658853916242,41.123517467556],[-72.3625087870662,41.1255207223534],[-72.3610799186905,41.1270686692155],[-72.3592547405608,41.1303097939599],[-72.3572695661909,41.1317638646458],[-72.3562915532731,41.1332950795485],[-72.3552515557023,41.1356264661609],[-72.3543523187467,41.1389923564184],[-72.3539448959345,41.1395324047257],[-72.3534641768832,41.1397285088025],[-72.3527295562034,41.139553994821],[-72.3499973455381,41.14076107706],[-72.3482053251239,41.1403099927626],[-72.3462611525585,41.1407335353613],[-72.3442174673208,41.1400243963986],[-72.342592637754,41.1402841157955],[-72.3407960170672,41.1410172026004],[-72.3396803894344,41.1410949983492],[-72.338738557063,41.1406499055659],[-72.3377600330038,41.1394924211197],[-72.3368715551704,41.1389809967103],[-72.3319895888936,41.1376294987571],[-72.3306323764331,41.1373863700843],[-72.3283356357799,41.1373600995634],[-72.3246436722516,41.1380264041338],[-72.3190457433035,41.1411160602495],[-72.3168873710518,41.1432994376191],[-72.3143808126943,41.1457448503272],[-72.3132784477883,41.1476285505774],[-72.3128751500398,41.1478938408137],[-72.3114520317802,41.1481848469022],[-72.3095600800789,41.1469742606341],[-72.3077585132681,41.1469231241394],[-72.3058827896324,41.1479735481498],[-72.3036726402843,41.1497321413033],[-72.3017316720095,41.1507899743926],[-72.3000033026231,41.1526723737461],[-72.2983534316194,41.1528227955599],[-72.2965263266035,41.153932748772],[-72.2932035410126,41.1547913409517],[-72.2906112330713,41.1561218759038],[-72.2886017125605,41.1565203798613],[-72.2878706977183,41.1569624958456],[-72.2869552847994,41.1569454220619],[-72.2862850787153,41.1573214115326],[-72.2854593320348,41.1574235269058],[-72.2831442792245,41.1573013450088],[-72.2788753978578,41.1586955956728],[-72.277619366241,41.1584677416639],[-72.2769530893881,41.1575062756752],[-72.2729063245602,41.1549426162182],[-72.271318043849,41.1543060229583],[-72.2683887634717,41.1540924225979],[-72.2641247671435,41.1550269000977],[-72.2581186491201,41.1574418511272],[-72.2563977707849,41.1584321001761],[-72.2536780125661,41.1591192819338],[-72.2504926099248,41.1605203104901],[-72.2470825583939,41.1608441278557],[-72.2453184037198,41.1612792953941],[-72.2424773181403,41.1598107680315],[-72.2380806496278,41.159507262331],[-72.234982574012,41.1600994122754],[-72.2313632356811,41.1613769619568],[-72.2300584426124,41.1620796257477],[-72.22959386988,41.161915338054],[-72.2302274983623,41.160948856409],[-72.2316596491821,41.1607941525834],[-72.2331274505423,41.1602169758019]]],[[[-72.1652838820335,41.1872663063269],[-72.1666865366709,41.1864992503076],[-72.1681831496972,41.1865765972716],[-72.1698543224512,41.1856810073838],[-72.1724129624339,41.1855277127112],[-72.1734378332736,41.1857104907538],[-72.1765336774743,41.1844309634314],[-72.1779360904649,41.1845148801411],[-72.180465264808,41.1842481013652],[-72.1829226448953,41.1849251980069],[-72.1856618714029,41.1838078211165],[-72.1879265763365,41.1810846296384],[-72.1912720713378,41.1753480424119],[-72.1930210471786,41.173175073167],[-72.196944519132,41.1657951822065],[-72.1978302903415,41.1648845580569],[-72.1986436690172,41.1647107054681],[-72.2000469830181,41.1651141047678],[-72.2010353139852,41.1657821026811],[-72.2023397073037,41.1686328628515],[-72.2046168907348,41.1714892142369],[-72.2054500296518,41.1716580442964],[-72.2053953671668,41.1719449289648],[-72.2049014743219,41.1721896294464],[-72.2043196983944,41.1721710037093],[-72.2040443198441,41.1724975609014],[-72.2048874857563,41.1730088895459],[-72.2051860004168,41.173101697829],[-72.2056730382177,41.1733161659875],[-72.2060067641424,41.1732116810156],[-72.2060428737219,41.1723974610737],[-72.2064706245107,41.1717458540127],[-72.2074057276024,41.1724080035636],[-72.208652043041,41.1728119944713],[-72.2092736808109,41.1726289167165],[-72.2102493688888,41.1729677890116],[-72.211279535297,41.1730062517502],[-72.2125697963194,41.1737625225694],[-72.2109612999211,41.1776954829929],[-72.2095025931049,41.1794479495704],[-72.2059214232921,41.1806670628464],[-72.2043809122928,41.1809403988558],[-72.2033157780638,41.1815630072957],[-72.2017061165506,41.1811501282539],[-72.2012992327275,41.1812393112506],[-72.1999130271412,41.1824890469847],[-72.1987734935421,41.1840509899282],[-72.1973351281771,41.1846869778493],[-72.1954965408952,41.1851150560746],[-72.1941458232542,41.1864016103757],[-72.1926923886504,41.1868300208212],[-72.1911308067678,41.1880618615132],[-72.1904627485557,41.1882977458895],[-72.1877738708231,41.1888805756166],[-72.1859200993179,41.1890154145534],[-72.1845539063995,41.1887793691654],[-72.1817907954851,41.1874958888678],[-72.1806716599311,41.1875810732697],[-72.1772979111174,41.1868814669063],[-72.1762590373391,41.1869370530244],[-72.1752560665278,41.186660268532],[-72.1741070467192,41.1868167082046],[-72.1733006371735,41.1866302927538],[-72.1710329830709,41.187015919885],[-72.169253172558,41.1883051429727],[-72.1655758192295,41.1899979666711],[-72.163097049357,41.1907475050424],[-72.1617604047232,41.1904668847856],[-72.1613994427775,41.1893186618864],[-72.1621735695668,41.1882344461034],[-72.1629149626455,41.1878384166181],[-72.1652838820335,41.1872663063269]]],[[[-72.1209777271557,41.2007349160012],[-72.1225414075028,41.2005803696624],[-72.1224014320152,41.2011893106606],[-72.1209235991683,41.2016972528158],[-72.1199674126169,41.2025289496932],[-72.1192028762416,41.2029331245026],[-72.1174550457528,41.2037494912031],[-72.1163123222361,41.2039055061484],[-72.1155204132957,41.2038631516728],[-72.1148162499956,41.2035032615454],[-72.1151376582211,41.2031600648602],[-72.1174078707257,41.2027530980513],[-72.1185535946154,41.20154339275],[-72.1200738135707,41.2013607731344],[-72.1209777271557,41.2007349160012]]],[[[-71.9222614822074,41.2916762349905],[-71.9248398707533,41.2900745328186],[-71.9267541294198,41.2900266122936],[-71.928138414408,41.2891539545851],[-71.9284853626354,41.2887579387591],[-71.9283644125672,41.2877730355422],[-71.9286864630881,41.2862055499049],[-71.9284570980433,41.2856545525913],[-71.9289610502227,41.2847268572546],[-71.9302673021555,41.2839556612142],[-71.932142105018,41.2834878082142],[-71.9324704599156,41.2824203224317],[-71.9333170007983,41.2822537580614],[-71.9340841638476,41.2817743581001],[-71.9348364004901,41.2806731278264],[-71.9352803937176,41.2805453581727],[-71.93664323592,41.2807302523946],[-71.9380798540617,41.2799759455123],[-71.9388436205809,41.280334000472],[-71.9395589741944,41.2800197999938],[-71.9413321290894,41.2800309239407],[-71.942762715044,41.2804111804599],[-71.9440786903413,41.280369585718],[-71.9451632434518,41.2802182606976],[-71.9457509195141,41.2799051350645],[-71.9464739132991,41.279154291972],[-71.9470203495033,41.277772827803],[-71.9475755083489,41.2772922141639],[-71.9477441544671,41.2783324039556],[-71.9483992931088,41.2787325450848],[-71.9498435136928,41.27882037248],[-71.9511264336827,41.2787508015973],[-71.9519413781219,41.2781869880681],[-71.9526083871018,41.2770338454864],[-71.9533965851018,41.2776536316838],[-71.9545412956919,41.2772021014974],[-71.9550307257065,41.2767377241692],[-71.9549770091474,41.2761599041174],[-71.9543021911127,41.275925894733],[-71.9526237087673,41.2759670129712],[-71.9517523079074,41.2753720365271],[-71.9530449090411,41.2755098432719],[-71.9538959432969,41.2755323755786],[-71.9549688551396,41.2754526986065],[-71.9567709582445,41.2755769277492],[-71.9579412618371,41.2753602022277],[-71.9605393755901,41.2759692347934],[-71.961357686915,41.276729358847],[-71.9631207887636,41.2766498176836],[-71.9654464632538,41.2757655188412],[-71.9673564585159,41.2745595021425],[-71.9674536472465,41.2740397012976],[-71.9679575392388,41.2735666427303],[-71.9679212769458,41.2730928589991],[-71.969584555305,41.2726368277364],[-71.9705938942734,41.2725913546724],[-71.973156075415,41.2717986834308],[-71.9749138861865,41.270570522603],[-71.9757172899693,41.2693127505229],[-71.9766242623178,41.2688007111272],[-71.9777555951967,41.2686322923447],[-71.9797186207051,41.2677066527678],[-71.9803264316061,41.2679702763346],[-71.982961063672,41.2670396868389],[-71.9842858119164,41.2660071685968],[-71.9847483751174,41.2653258062711],[-71.9878983985096,41.2639718006586],[-71.9911235542971,41.2617910924363],[-71.9931376723856,41.259434554147],[-71.9934901200991,41.2593942277431],[-71.9949323419315,41.257256877171],[-71.9947186111659,41.2565172824151],[-71.9982699766741,41.2545295139981],[-72.000512800444,41.2542052245955],[-72.0017974083683,41.2537118293339],[-72.0022147899038,41.2530337188902],[-72.0026091251607,41.2528593608518],[-72.0041541888218,41.2532103091904],[-72.0048444336249,41.2531382121959],[-72.0050657461715,41.2529143107896],[-72.0068984611664,41.2539571878773],[-72.009335270732,41.254790578548],[-72.0092244096428,41.2550623907168],[-72.0104030810422,41.2555658469992],[-72.0124646589237,41.2556824273718],[-72.0142345915617,41.2552915537204],[-72.0159737892406,41.2557554568899],[-72.0182078041308,41.2551153695209],[-72.0239194678787,41.2518227904063],[-72.0258698271415,41.2509365485681],[-72.0267641359395,41.2509686621804],[-72.0274167098911,41.2503775899389],[-72.0287043649008,41.250370312662],[-72.0292370640677,41.2509919931499],[-72.0297752770937,41.2510148911933],[-72.0300024529442,41.2508406263722],[-72.0300321018402,41.2499722791648],[-72.0310706387503,41.2501296656604],[-72.0316786302127,41.2505056030161],[-72.0332426725808,41.2505549370945],[-72.0353760339384,41.2503352169276],[-72.0370561215732,41.2495499013777],[-72.0381052451289,41.2493742636219],[-72.0383989564976,41.2498726652195],[-72.0382450714961,41.2508188750642],[-72.037006806759,41.2518947848456],[-72.036217354711,41.2539639332556],[-72.0352122647738,41.2549287447932],[-72.0351889678653,41.2559548692868],[-72.0348199318617,41.2564947496236],[-72.0337015625707,41.2571098833969],[-72.0324188375152,41.2572524383308],[-72.0318259215799,41.2577279942183],[-72.0312018628504,41.2574912418306],[-72.0302226012743,41.256434748583],[-72.0296265053029,41.2563878426797],[-72.0296297068986,41.2576172920224],[-72.0303102238454,41.2580401396621],[-72.0308364731085,41.2578015407616],[-72.0311249823334,41.2580521547065],[-72.0302977255849,41.2611470064941],[-72.0292818846105,41.2624267076337],[-72.0290868980915,41.2630746339542],[-72.0282686909712,41.2634497871246],[-72.0274261934055,41.2632749200644],[-72.0264474268012,41.2636864416099],[-72.0259769611206,41.2650612597868],[-72.0261051587965,41.266181357845],[-72.0252595629415,41.2664026735974],[-72.0249333541191,41.2662591453857],[-72.0246075773863,41.2660075521238],[-72.0245142648862,41.2658610378731],[-72.0246313171643,41.2650084632604],[-72.0249081707484,41.2641194906954],[-72.0265687164325,41.2631672078374],[-72.02747424968,41.2627582969408],[-72.0266297443797,41.2611648749155],[-72.026577920571,41.2605150793787],[-72.0257908598382,41.2597607246021],[-72.0253276049343,41.2598433177086],[-72.0259353592415,41.2609487923572],[-72.0257526059801,41.2612773038481],[-72.0254421886421,41.2611972299744],[-72.0251532194798,41.2603161461738],[-72.0246769039701,41.2600291389859],[-72.0242721635272,41.2592666453635],[-72.0237374323712,41.2591492441521],[-72.0235761955575,41.2598250525318],[-72.0242841587312,41.2609736560146],[-72.0231633226664,41.2615570990729],[-72.0221226441727,41.2614761368863],[-72.0215757453361,41.2614619838895],[-72.0208464049536,41.2617853465867],[-72.021730187293,41.2639066962298],[-72.022699499129,41.2642785217564],[-72.021366731624,41.2683238982968],[-72.021353080825,41.2696249587538],[-72.0208819476961,41.2702071800863],[-72.0218531441975,41.2706871376331],[-72.0229984934899,41.2705366469639],[-72.0244915581708,41.2732591469832],[-72.023723707012,41.2742795202566],[-72.0221971252895,41.2744606804969],[-72.0211716444938,41.2756815139362],[-72.0208138500077,41.2756902635379],[-72.0199827475714,41.2748356595529],[-72.0181330741806,41.2737385088956],[-72.0162093023553,41.273499509602],[-72.0156363002732,41.2729262593463],[-72.0122033264312,41.2718014502519],[-72.0108263294749,41.2719097903159],[-72.0083539313527,41.2711880799928],[-72.0074187545992,41.2705423292519],[-72.0072714856898,41.2702548012075],[-72.007743580016,41.269474523027],[-72.0094351813579,41.268536809356],[-72.0096424424569,41.2671507214728],[-72.0093036024233,41.2665655120536],[-72.0104253996855,41.2658021055415],[-72.0111763544321,41.2659882285696],[-72.0117072255273,41.2657003036926],[-72.0124311742215,41.2658406859072],[-72.0128547541325,41.2656805620819],[-72.0128579045242,41.2646133954722],[-72.0133055395219,41.2639090116462],[-72.0129247769106,41.2630975669269],[-72.0122504233049,41.2629990041105],[-72.0116158479983,41.2638111084198],[-72.0104869028414,41.263097306279],[-72.0100755795442,41.2615015094967],[-72.0096133594996,41.2608905794889],[-72.0076558649184,41.2600921728054],[-72.0078295730433,41.2594572412414],[-72.0087314357744,41.2590483834233],[-72.0084170344081,41.2587294931855],[-72.0074596737587,41.2589162508922],[-72.0068629875942,41.2601886358246],[-72.0062206858778,41.2600098150131],[-72.0056293860117,41.2591883659825],[-72.0053097061448,41.2591485256387],[-72.0045538250372,41.2597412823744],[-72.0048491982891,41.2601497509429],[-72.0067111570398,41.2608016191649],[-72.0070689443394,41.260644307676],[-72.0077633573253,41.2607929573797],[-72.0077642556406,41.261590039396],[-72.0067030632191,41.2624810856809],[-72.0068116371976,41.2639744536951],[-72.0042891067943,41.2638998087263],[-72.0042973928545,41.2622338576163],[-72.0049795366504,41.2621615497704],[-72.005537530579,41.2625858576112],[-72.0057601079535,41.2623349693499],[-72.0051075232221,41.2610751174658],[-72.0045099710817,41.2610595652126],[-72.0042111330277,41.2615426300674],[-72.0031274530796,41.2621088299055],[-72.0030335773358,41.2625792164379],[-72.0034688344471,41.2634686657651],[-72.0033018672802,41.2644279917074],[-72.0027645184335,41.2653461502947],[-72.001054714529,41.2666975804928],[-71.9999782633241,41.2667775983313],[-71.9990571667643,41.2674560724948],[-71.9974080862781,41.2682281245208],[-71.9964761048321,41.2684920039078],[-71.9961235888466,41.2691672801069],[-71.9946960140449,41.2700531496827],[-71.9943010724252,41.2710020035205],[-71.9945742815441,41.2714054162144],[-71.9932018686907,41.2737697369864],[-71.9930440984757,41.2795296302125],[-71.9911975009164,41.2812465888509],[-71.9890827490583,41.2813443781743],[-71.9882049746514,41.2809116208797],[-71.9869010816946,41.2814854072145],[-71.9860456385074,41.2815080346676],[-71.98602187178,41.2812462303908],[-71.9855235556306,41.2811296045207],[-71.9847379187275,41.2815323139922],[-71.9839526133028,41.2816198081895],[-71.9803408863973,41.2804893621662],[-71.9799083116554,41.2802258343828],[-71.9801556358194,41.2796198996602],[-71.9798808276993,41.2792524368257],[-71.9793366839957,41.2793372222597],[-71.9789156184692,41.2788083085996],[-71.9782709703533,41.2787103251003],[-71.9776731469217,41.2793115521162],[-71.9768929681822,41.2793045670001],[-71.9757069422756,41.2798452973003],[-71.9743869955263,41.2810714724256],[-71.9726802261309,41.2808824801464],[-71.9724067043982,41.2804880147186],[-71.9719505210323,41.2804129673827],[-71.9705762127337,41.2807640606375],[-71.9700116431372,41.2809833577801],[-71.9697303024683,41.2829348066841],[-71.9686113205262,41.2834592154162],[-71.9692482539104,41.2841919902581],[-71.9691662610812,41.2846896772626],[-71.9671821763676,41.2851372431978],[-71.9645656534396,41.284433306941],[-71.9631799661812,41.2834826103838],[-71.962171978279,41.2833344180377],[-71.9619821346151,41.28287459097],[-71.9612450022457,41.2827110263353],[-71.9606951470536,41.2827730567356],[-71.9598915573196,41.2829319519034],[-71.9593276300185,41.2829755910833],[-71.9585697510577,41.2834193817806],[-71.9579958371856,41.2833726883231],[-71.9571136143215,41.2839707901652],[-71.9571766401218,41.284332706004],[-71.9542189891511,41.2849974654498],[-71.9534467083997,41.2848194105625],[-71.9531628506514,41.2840238501473],[-71.9524975906913,41.2835829392395],[-71.9518062490453,41.283542111342],[-71.9514883307747,41.2829978183913],[-71.9508922725325,41.2828019002778],[-71.9508028955516,41.2831507739541],[-71.9504515581558,41.283163978535],[-71.949878759093,41.2824688263889],[-71.9492829227347,41.2824125019314],[-71.9477666042643,41.2828451149385],[-71.9476006090746,41.2831244073123],[-71.9475649594325,41.2840330893828],[-71.9472869802594,41.2842013354504],[-71.947077635069,41.2844659677349],[-71.9462432456971,41.2841961545526],[-71.9459373459867,41.283571109804],[-71.9447891131023,41.2836306883113],[-71.943868279749,41.2831829419312],[-71.9424760437722,41.2829388117474],[-71.9415839601012,41.2832978663941],[-71.9408490519605,41.2838862483644],[-71.9403797100723,41.2848914698809],[-71.9412349232908,41.2858013201036],[-71.9424511739135,41.2863154786689],[-71.9431395816618,41.2865634282581],[-71.9434881935691,41.2870725344749],[-71.941139303917,41.2892211350604],[-71.9404246006837,41.2905890869912],[-71.9395832520633,41.2914087896881],[-71.9385051012458,41.2913711005329],[-71.9360104904816,41.2902644798866],[-71.9341554146227,41.2902916158119],[-71.9332357248247,41.2904562353234],[-71.9328213050347,41.2908909953927],[-71.9303809192759,41.2919246677246],[-71.9292826291281,41.2920934961775],[-71.9276542781654,41.2922976950496],[-71.9258873252392,41.2926242547875],[-71.9247631905607,41.2926437472936],[-71.9228285033063,41.2923308405717],[-71.9221743168787,41.2921332185501],[-71.9222614822074,41.2916762349905]]]]},"properties":{"OBJECTID":7,"STATE":"NY","Zone":"K","Title":"Long Island"}},{"type":"Feature","id":8,"geometry":{"type":"MultiPolygon","coordinates":[[[[-76.3668151957957,43.8790427392293],[-76.3657525624764,43.8787583321423],[-76.3646634144832,43.8788793852151],[-76.3639247316217,43.8785055600287],[-76.3640537512561,43.8779548123498],[-76.3659372839466,43.8777522452039],[-76.3660978209727,43.8766924256492],[-76.3668981372459,43.8760030981995],[-76.3682694505614,43.8756535599906],[-76.3690650991883,43.8758826201304],[-76.3693226713331,43.8764287421706],[-76.3700128200164,43.8764159681816],[-76.3732087545061,43.8743878530613],[-76.3737257897493,43.874764283298],[-76.3734454551935,43.8750737691079],[-76.3708791732427,43.8770133083687],[-76.3682366431889,43.8783144597062],[-76.3674278135818,43.8789723865927],[-76.3668151957957,43.8790427392293]]],[[[-76.3941678837958,43.8839207688224],[-76.3951795754519,43.8830305892777],[-76.3958368269312,43.8829055186839],[-76.3958344122597,43.8831351349594],[-76.3964909594599,43.8829965636068],[-76.3979177105065,43.8833707672223],[-76.398741616539,43.8842655275945],[-76.3987024904168,43.8848872418468],[-76.3973905234022,43.8862448003076],[-76.394175870717,43.8883458445313],[-76.3925656046376,43.8885815597684],[-76.3922526450673,43.8881577117799],[-76.3925127297999,43.88723169413],[-76.3942253912453,43.8847843942573],[-76.3941678837958,43.8839207688224]]],[[[-76.2152879485922,43.8976227407372],[-76.215167029965,43.8972638948005],[-76.2137338487776,43.897697793454],[-76.2108584619274,43.8973366784972],[-76.2102998805006,43.8967303741232],[-76.2112280503949,43.8953385194578],[-76.2145400427276,43.8936017061829],[-76.2154974006821,43.892159987449],[-76.2165643018973,43.8911897688736],[-76.2186842046953,43.8899652151869],[-76.2209455616077,43.8890227156096],[-76.2209067534892,43.8876186084192],[-76.2217836250891,43.8859436091872],[-76.2243496285622,43.885677534226],[-76.2256736330016,43.885874907891],[-76.2268074910448,43.8856781622407],[-76.2265321106978,43.886684993899],[-76.2273943289789,43.8871078890029],[-76.2281657787887,43.8870320686913],[-76.2284629369931,43.8868398018656],[-76.2290423296901,43.8876213592926],[-76.2284807955009,43.8877084328821],[-76.2276721805912,43.8878881934038],[-76.2266609488725,43.8877685130278],[-76.2224221709493,43.8895831301725],[-76.2201412352552,43.8903097881352],[-76.2174076025568,43.8918110146658],[-76.2173948213269,43.8925584277441],[-76.218419887101,43.8933532928917],[-76.2189696524616,43.8931628564791],[-76.2190808971315,43.8934092605315],[-76.218289156176,43.8955470003736],[-76.2176921286517,43.8960350473672],[-76.2165955030821,43.8962178012264],[-76.215078142566,43.8992635802708],[-76.2133837851928,43.9006726137778],[-76.2129032826356,43.9005606752694],[-76.2144739842149,43.8990404233602],[-76.2152879485922,43.8976227407372]]],[[[-76.2068046812571,43.9064369443361],[-76.2053987333959,43.9050337726279],[-76.2047750968745,43.9046757202037],[-76.2046888388442,43.9042579762773],[-76.2049711281341,43.9041694654236],[-76.2057759916792,43.9042329949125],[-76.206862571389,43.9051038407723],[-76.2074012524373,43.9052241917873],[-76.2090768996997,43.9043961609568],[-76.2102092324036,43.9036819051639],[-76.2106207533302,43.9038260975725],[-76.2105776683325,43.9040426340701],[-76.2097426438517,43.9047762519587],[-76.2085539858813,43.9054775941836],[-76.2084698074509,43.9057215752167],[-76.207781862335,43.9065526579793],[-76.2068046812571,43.9064369443361]]],[[[-76.3037801221532,43.9181380786121],[-76.3021267737711,43.917630232603],[-76.3000543738853,43.9179329277701],[-76.30106423208,43.9173677320469],[-76.303098991657,43.9167863450562],[-76.3046105265984,43.9150989850993],[-76.3056540904808,43.9120754550178],[-76.3053308362174,43.9113363731707],[-76.3063276742303,43.9099879889046],[-76.3068402304736,43.907569235654],[-76.30762196779,43.906425873125],[-76.307736307156,43.9055872542893],[-76.3094651912771,43.9032355925592],[-76.3121000506167,43.9004143344047],[-76.3128406352117,43.9000096822772],[-76.3151418512716,43.8977774018178],[-76.3178411413767,43.8942665092935],[-76.3190074034488,43.8933212061182],[-76.3200280342404,43.8917563415621],[-76.3209463505143,43.8889276763601],[-76.3229111924161,43.8869107007021],[-76.3264946223901,43.8818947939556],[-76.3275588888466,43.8814007538704],[-76.3296964237769,43.8810292715763],[-76.3335262454637,43.878711287717],[-76.3356271129608,43.8781150361974],[-76.3360797309133,43.878298816322],[-76.3364610388019,43.878929096606],[-76.3375195641254,43.8793488746348],[-76.3379547260153,43.8794473195059],[-76.340166153666,43.8790117513413],[-76.3415197620856,43.8794055230129],[-76.3421954874187,43.8799783072415],[-76.342414961114,43.8802413288106],[-76.3421497811371,43.881095264193],[-76.3401480741726,43.882541292278],[-76.3400579111659,43.8828574681299],[-76.3413365012761,43.8841164467972],[-76.341953623215,43.8842082389735],[-76.3451953520212,43.8834273450879],[-76.3474152615648,43.8818976253806],[-76.3498903734975,43.8805629221434],[-76.3524722187606,43.8806314314329],[-76.354502765239,43.8785861180511],[-76.3557460973726,43.8779906546074],[-76.3562280866416,43.8781289896032],[-76.3554340163547,43.8793403651031],[-76.3536149081414,43.8807934675321],[-76.3528568602973,43.8811085597012],[-76.3525871779642,43.8817915086833],[-76.3528607841385,43.882913693613],[-76.3525740077638,43.8835293190053],[-76.3496049329176,43.8870757444811],[-76.3471435247846,43.8911518066244],[-76.3459416157654,43.8924444477312],[-76.3456480687884,43.8936453538507],[-76.3452797873697,43.8940683464838],[-76.3422976429345,43.8957600332187],[-76.3408899191039,43.8970280268518],[-76.3376232512688,43.8988849881599],[-76.3360931688116,43.9001183407553],[-76.3306879051358,43.902904921614],[-76.3270448979938,43.9040546934096],[-76.3256927035225,43.903728259974],[-76.3248786133811,43.9030984621424],[-76.3237978430762,43.9029894414654],[-76.3188577665804,43.9035822563421],[-76.3168296877741,43.9044744652504],[-76.314694695076,43.9061871723683],[-76.3141034167695,43.9072248551235],[-76.3141419922244,43.9080932341204],[-76.3150534615393,43.9095412906174],[-76.3155674739516,43.9111604764379],[-76.3142505329653,43.9135885215571],[-76.3122631262818,43.9150743984966],[-76.3093753660369,43.9166876027589],[-76.3052987187511,43.9181432533496],[-76.3037801221532,43.9181380786121]]],[[[-76.3907054452124,43.9218806802914],[-76.3894162900162,43.9215857445418],[-76.3884601384991,43.9209131097735],[-76.3877657560559,43.9207324731866],[-76.3834650437854,43.921536393572],[-76.3798646051098,43.9207110970196],[-76.378215369215,43.9209515791027],[-76.376113288094,43.9216431563793],[-76.3785148001571,43.9200791449215],[-76.3796182178886,43.9184902450904],[-76.3836739568862,43.9176039024897],[-76.384763006963,43.9157225168197],[-76.3863653894274,43.9144111083802],[-76.3866711849333,43.9138356849414],[-76.386425102241,43.9126592306976],[-76.3881765322791,43.9109003211377],[-76.3885489225919,43.9095587974361],[-76.3915021969705,43.907924779617],[-76.3915179111998,43.9076139720277],[-76.3890855923123,43.9081027336344],[-76.3885196887176,43.9085867894019],[-76.3882585565494,43.9084369041892],[-76.387933259517,43.9081887611849],[-76.3885972726155,43.9076224859338],[-76.3912398978907,43.9070906592627],[-76.394029711227,43.9062643662758],[-76.3982100995551,43.9032016671033],[-76.4014168093366,43.9013977260368],[-76.4065073743038,43.9003808274246],[-76.4094587972546,43.8993675971071],[-76.4189772166477,43.8949101674779],[-76.4254121167258,43.8913547690744],[-76.4272021563548,43.8910083040542],[-76.4282886776741,43.8904320160485],[-76.4306344151379,43.891163461374],[-76.4337719411678,43.891034104724],[-76.4354860372227,43.8897160940158],[-76.4377034665178,43.8888328926834],[-76.4389596346785,43.8879887671007],[-76.4409101161121,43.8874464924498],[-76.4436671373473,43.8871325888028],[-76.4443469095908,43.8875066440757],[-76.4458217537428,43.8878256214808],[-76.4451443072376,43.8882393450474],[-76.4451478555829,43.8884823925938],[-76.4461329589033,43.8895908555403],[-76.4465875908787,43.8895670948358],[-76.4466692153986,43.8898046516045],[-76.443267364588,43.8932554600931],[-76.4415769463273,43.894294182613],[-76.4401913740533,43.895729689703],[-76.4396529822625,43.8970419674128],[-76.4377784255383,43.8993119166381],[-76.4364381885418,43.9000850569205],[-76.4343920850394,43.9021725350512],[-76.4332625326213,43.9028754671785],[-76.4326880689803,43.904282697443],[-76.4320148337771,43.9050294141988],[-76.424872317275,43.9098814815279],[-76.4188837801801,43.912814561338],[-76.4146263945541,43.9154693126989],[-76.4099112939346,43.9190478936695],[-76.4084826456461,43.9196057110837],[-76.4064383612321,43.9206842797415],[-76.4048195288181,43.9208392400247],[-76.4049085940836,43.9202079104676],[-76.4060708954837,43.9200900777096],[-76.4078690522896,43.9191721066964],[-76.4080418917435,43.9186117693712],[-76.4075937941135,43.9175864045084],[-76.4065335368381,43.9172258185079],[-76.4057491755427,43.9175550885383],[-76.4067724312115,43.917848611616],[-76.4062729499472,43.9182419032866],[-76.4042787124744,43.9179738152478],[-76.4022863461923,43.9184799584424],[-76.4003544769529,43.9186296928292],[-76.3995699656389,43.9191705006597],[-76.3996540793905,43.9198852377188],[-76.3999190590432,43.920179102598],[-76.4006965060058,43.9203316377182],[-76.3960810896368,43.9216350741179],[-76.393363551155,43.9216187193602],[-76.3907054452124,43.9218806802914]]],[[[-76.0734470096202,43.9788900468239],[-76.0735851714092,43.9783845671122],[-76.0755540323736,43.9773756795491],[-76.0762581094354,43.9781748327522],[-76.0770628903355,43.9782077574434],[-76.0774859896478,43.9787439580959],[-76.0757726275165,43.9786700845556],[-76.0751477477268,43.9789550712054],[-76.0743425383303,43.9790931980861],[-76.0734470096202,43.9788900468239]]],[[[-76.063865203304,43.990634405003],[-76.063911839342,43.990147797107],[-76.0636000439883,43.9902767469884],[-76.0631077905688,43.9897501434317],[-76.0629503689001,43.9890313522892],[-76.0631819249359,43.9888176205913],[-76.0633765835698,43.9886762576035],[-76.0647379956543,43.9878172666729],[-76.0661805543549,43.9879658608519],[-76.067655230522,43.9873848764755],[-76.0677916783254,43.9877572332419],[-76.0670063890704,43.988318273677],[-76.0659259520405,43.9896113239444],[-76.0647770058938,43.9904323350657],[-76.063865203304,43.990634405003]]],[[[-76.0684225579629,43.9902947373877],[-76.0699009953761,43.9882956834558],[-76.0710703557376,43.988311727736],[-76.0712004192143,43.9879818903559],[-76.0716715559365,43.9878739313922],[-76.0717998497321,43.9881383220837],[-76.0712818910207,43.9888274277852],[-76.0692343232644,43.9907508021398],[-76.0683830662264,43.9910468748036],[-76.0684225579629,43.9902947373877]]],[[[-76.0751971415927,43.9967404467141],[-76.074134544206,43.9964083284441],[-76.0757372042499,43.9963887359471],[-76.0759200742923,43.996026884927],[-76.0774833521941,43.9966738753514],[-76.0779854026401,43.9962684937862],[-76.079504514871,43.996348672056],[-76.0809229124838,43.9971275323605],[-76.0806269220893,43.9974184363929],[-76.0794103175303,43.9976010074127],[-76.0757123532559,43.9972127629437],[-76.0751971415927,43.9967404467141]]],[[[-76.0691377956938,43.9963516977221],[-76.067886447893,43.994751837463],[-76.0673399173657,43.9942887825304],[-76.068627326237,43.993493459502],[-76.0705182700286,43.9936017882473],[-76.0736121172745,43.9924473336992],[-76.0750924142002,43.9927575176697],[-76.0780669193623,43.9939494001501],[-76.078870408485,43.9945225161119],[-76.078239553102,43.9948300835551],[-76.0788765188256,43.995224707844],[-76.074758897583,43.9956957010048],[-76.0734918068068,43.9951314189375],[-76.0734406055305,43.9942810978982],[-76.0723466075331,43.9944309289824],[-76.0709115461718,43.9942103172898],[-76.0697037100683,43.9944017053427],[-76.0692085020899,43.9950815842285],[-76.0694809790818,43.9953446264127],[-76.0703465148412,43.9954490542843],[-76.071105191506,43.9958740922824],[-76.0719257495175,43.9957313424676],[-76.0716075833118,43.9964590867976],[-76.072081290114,43.997354958613],[-76.0719298458352,43.9975589526884],[-76.0706656691937,43.9977418767573],[-76.0703093218935,43.9972590455095],[-76.0691377956938,43.9963516977221]]],[[[-76.1787845701537,44.0169426920196],[-76.1793035825889,44.0164961802819],[-76.1794753117252,44.0167014767939],[-76.179634981877,44.0163397037967],[-76.1802059968857,44.0163518081963],[-76.1813863885589,44.0157183863024],[-76.1830654862503,44.0154219018322],[-76.1860522453312,44.0138423796498],[-76.1867855661487,44.0139788076567],[-76.1868421878594,44.0145094012458],[-76.1851270308942,44.0165889265367],[-76.1815149608323,44.0185710332095],[-76.1804033073463,44.0198789767937],[-76.1772666320209,44.0215499275128],[-76.1737890190958,44.024403701342],[-76.1718335214696,44.0253691137552],[-76.1703825581311,44.0253479864335],[-76.1693599546392,44.0248632967757],[-76.1695313828398,44.0231959714492],[-76.1700730103623,44.0225061874443],[-76.1711018310942,44.0216493482997],[-76.1745338778749,44.0199215098678],[-76.1758717873366,44.0183772127905],[-76.1781035627267,44.0169677274619],[-76.1787845701537,44.0169426920196]]],[[[-76.3165033504927,44.0494568527775],[-76.3154354054351,44.0490099880666],[-76.3168941194379,44.0492227758876],[-76.3181237837044,44.0490825647168],[-76.3208666097615,44.0481506104142],[-76.3216545733011,44.0473087239933],[-76.3215165399712,44.046909683672],[-76.3233027806248,44.0457726479194],[-76.3237525616977,44.04578994932],[-76.3246277238037,44.0451000847422],[-76.3247316669669,44.0442886060755],[-76.3258340678055,44.0432089674456],[-76.3257928063879,44.0423766631969],[-76.3274979660023,44.0417041583246],[-76.3276897419424,44.041071717628],[-76.3291503280342,44.0400193972862],[-76.3292047964832,44.0397351675481],[-76.3275834559729,44.0404022239451],[-76.3265175482945,44.0396943502717],[-76.3241573883788,44.0389654496422],[-76.3236792492891,44.0383227654662],[-76.3240407726819,44.0371166714621],[-76.3252138547637,44.0358021386808],[-76.3230408687189,44.0369841959821],[-76.323024540042,44.0376326053445],[-76.3223348629742,44.0374020025573],[-76.3216061487174,44.0357538641752],[-76.3216443046591,44.0350691906574],[-76.3223719867516,44.0345926176846],[-76.3218314174446,44.0321635388488],[-76.3219142493003,44.0310867141412],[-76.3226183335486,44.0302367851179],[-76.3234691917346,44.0305285427219],[-76.3238720241558,44.0311901064376],[-76.3242051500059,44.0311232275576],[-76.3254689556431,44.0318468357086],[-76.3260771213787,44.033194746311],[-76.3274322919685,44.0342503866101],[-76.3289283731921,44.0348047029827],[-76.3297863505267,44.0347317064964],[-76.3307477383236,44.0341578294394],[-76.331807628188,44.034253525945],[-76.3353193025337,44.0337309048167],[-76.3366039966963,44.032986645863],[-76.3378221993581,44.0326843008696],[-76.3380768591647,44.0328388748554],[-76.336581979887,44.0343958840437],[-76.332392129604,44.0365875136586],[-76.3318722215485,44.037853999682],[-76.3320016597978,44.0385277216287],[-76.3326788987921,44.0392085645346],[-76.333278802722,44.0391565557488],[-76.3326137969852,44.0403887238157],[-76.3311756732671,44.0417784415736],[-76.3302489766099,44.0435718311065],[-76.3292157280818,44.0443401034733],[-76.3289683491206,44.0441809239184],[-76.3272228847943,44.0447458816173],[-76.3237765206647,44.047576776802],[-76.3221920272508,44.0482118178942],[-76.3199763263143,44.0498984778939],[-76.3180216641213,44.0506637757326],[-76.3165033504927,44.0494568527775]]],[[[-76.3489848249787,44.054700672264],[-76.3468469576717,44.0538525784671],[-76.3451089637353,44.0541161185849],[-76.3432897297579,44.0541014924187],[-76.3420251039588,44.0544224447462],[-76.3397490380318,44.0532382265106],[-76.3386534482197,44.0529944706346],[-76.3387648438065,44.0526240418528],[-76.339547840561,44.052502333866],[-76.3415321884809,44.0534694048764],[-76.3426117361787,44.051732652067],[-76.3427672013167,44.0508125159426],[-76.3437764199108,44.049693285374],[-76.3430519942112,44.0476491008126],[-76.3422277405307,44.0472041252808],[-76.3414353824326,44.0474430017177],[-76.3385665901149,44.0493267473312],[-76.3375521630888,44.0495636937419],[-76.3363446961929,44.0499424350369],[-76.3363388032446,44.0496814156978],[-76.3368363809788,44.0491534231813],[-76.3385548329645,44.0485481211891],[-76.3409060519481,44.0469630454586],[-76.3421961907996,44.0465697804118],[-76.3430961805434,44.0468112983169],[-76.3445401648704,44.0464252026294],[-76.3453134768878,44.0452637158713],[-76.3451507713286,44.0444553549949],[-76.3458417877845,44.0425925943682],[-76.3474381066208,44.0402329981224],[-76.3478707325667,44.039669708655],[-76.3501525279485,44.0384363774469],[-76.3509722154925,44.0374363577404],[-76.3539069594234,44.036654390247],[-76.3550104813594,44.0358580510628],[-76.3582790859624,44.03433376137],[-76.3590953967391,44.0337388607522],[-76.3613138950294,44.033199293616],[-76.3634734018533,44.0333176112573],[-76.3665581320973,44.0339470121622],[-76.3690803310222,44.0334216700331],[-76.3694068578482,44.0331386641453],[-76.3711015368183,44.0329562987349],[-76.3724147354231,44.0329405435905],[-76.3746674568307,44.0334446635079],[-76.3759361007941,44.033357378931],[-76.3768645491661,44.0330310941186],[-76.3776783653213,44.0336785159974],[-76.3792522595132,44.0342717503581],[-76.3791937019331,44.0347046048408],[-76.3780573411835,44.035348522361],[-76.3771679731196,44.0367187029583],[-76.3773388740092,44.0373918746876],[-76.3783400347152,44.0383431397084],[-76.3791002600756,44.03859506163],[-76.3804042832881,44.0386153376211],[-76.3832538292008,44.0374735214256],[-76.383265548622,44.037941539177],[-76.3821751636487,44.0389180546692],[-76.3810602447866,44.04098422796],[-76.3796898881769,44.0422702051035],[-76.3794440812674,44.0444429102331],[-76.378618295061,44.0460013966284],[-76.3739920027888,44.049676313105],[-76.372194105596,44.0506432243019],[-76.3716134283082,44.0512083805589],[-76.3692782532355,44.0526318415938],[-76.3683018644717,44.0528235905536],[-76.3647911863576,44.0526989912463],[-76.3638979043341,44.0529932459001],[-76.3626270011078,44.0529678841417],[-76.3613557798778,44.0524878583767],[-76.3612863823272,44.0517099207131],[-76.3632357624264,44.0523979373664],[-76.364223952358,44.0519900177995],[-76.3619739178114,44.0512740888306],[-76.3611878479203,44.0510898836451],[-76.3562030667643,44.0528416878787],[-76.3550494727344,44.0526572977566],[-76.3523643858922,44.0541205700261],[-76.3511324551762,44.0545042578204],[-76.3489848249787,44.054700672264]]],[[[-76.286855943947,44.1900463925298],[-76.2818472954523,44.1873927738635],[-76.2804365236379,44.1861031633504],[-76.2799738373677,44.1860813326407],[-76.277998271378,44.1838076995117],[-76.2772406493354,44.1837081265328],[-76.2768900036423,44.183369932999],[-76.2762348057117,44.1833772445948],[-76.275885685358,44.1836512232869],[-76.2739888917373,44.183600339307],[-76.2716068021489,44.1845811402701],[-76.2695224771278,44.1847933483293],[-76.269178704445,44.1844820639731],[-76.269334072565,44.1835980633802],[-76.2684182221665,44.1821407616148],[-76.2667892675359,44.1812315196454],[-76.2659089311339,44.1812052529851],[-76.2653745637955,44.1803919077513],[-76.2648392559211,44.1802267737019],[-76.2650786156218,44.1797559804172],[-76.2649310332004,44.1783441681388],[-76.2654894008282,44.1776897891465],[-76.2664784199049,44.1774267654251],[-76.2674276723606,44.1766600149363],[-76.2705783066071,44.1760488847447],[-76.2729944315649,44.1753198035954],[-76.277537611707,44.1745669372142],[-76.2796221352558,44.1735173155393],[-76.2812233076896,44.1737964873486],[-76.2828760595904,44.1733548315838],[-76.2862120225683,44.1729752644173],[-76.2884369213549,44.1710956412341],[-76.2933614767593,44.171535226312],[-76.2994937721474,44.1694040765766],[-76.3008319268492,44.168677641471],[-76.3045138337379,44.1698871099371],[-76.3067596354229,44.1695823887792],[-76.3077866065237,44.1692825611545],[-76.3078809332218,44.1687413113471],[-76.3077336652107,44.168481912166],[-76.3070803564372,44.1683903471503],[-76.3066207262356,44.1674773072392],[-76.3071653613176,44.1671109704933],[-76.3078902810906,44.1670126554839],[-76.3090567246225,44.1671163503478],[-76.3098511686086,44.1681065735035],[-76.3110899759281,44.1686505586206],[-76.3114077172306,44.1690160339734],[-76.3113860795104,44.1694844303459],[-76.3106911634678,44.1694563832807],[-76.309888161232,44.168997432865],[-76.3091188071918,44.1693843602272],[-76.3088933363436,44.1698640915012],[-76.311026041931,44.1711900970094],[-76.3109951264105,44.171487545116],[-76.3101057502618,44.1722449713248],[-76.307531652968,44.176541772528],[-76.3075322377712,44.1769558969531],[-76.3080355341805,44.1774362965837],[-76.3091082465972,44.1776761051566],[-76.3107405106213,44.1793769576015],[-76.3108627910944,44.180725982461],[-76.3030379259806,44.1856048864995],[-76.2952409472681,44.1892855569404],[-76.2929652694134,44.1899414967616],[-76.291048053493,44.1895040057529],[-76.286855943947,44.1900463925298]]],[[[-76.2080125847342,44.2020886729241],[-76.2086994339055,44.2019598621184],[-76.2090428553471,44.2023433442341],[-76.2079514579724,44.2038763745129],[-76.2063793406482,44.2046267331636],[-76.2056159514214,44.2046483045713],[-76.2055470551307,44.2041673835587],[-76.2069514030925,44.202806620891],[-76.2080125847342,44.2020886729241]]],[[[-76.0927919516843,44.2505013724965],[-76.095300607608,44.2488072865387],[-76.0958209369734,44.249130890751],[-76.0958383885444,44.2500670093491],[-76.0964430589352,44.2508804892461],[-76.0952265684623,44.2513423326586],[-76.0947157621372,44.2509015772046],[-76.0948525189611,44.2504906202872],[-76.0947983388714,44.2502930701317],[-76.0944416358384,44.2503280036613],[-76.0932035435778,44.2515417986954],[-76.0927919516843,44.2505013724965]]],[[[-76.0617239709079,44.2522577442568],[-76.0643878988318,44.2516927301959],[-76.0672056623498,44.2524856973343],[-76.0671401428263,44.2526708758647],[-76.0658677555831,44.2528718372393],[-76.0654672812396,44.2531276671549],[-76.065195514815,44.2537244159206],[-76.0646011013881,44.2538199958697],[-76.0634631982312,44.2547039182147],[-76.061910222209,44.2563164499509],[-76.0600338176503,44.2565004595966],[-76.0592210785751,44.2572102570725],[-76.0563457995227,44.2583803221829],[-76.0535356932442,44.2584783335887],[-76.0515491947575,44.2589243130172],[-76.0508229733256,44.2593361483808],[-76.0498442992478,44.2588769926869],[-76.0494173371797,44.2571568103218],[-76.0513978870226,44.2563597980886],[-76.0538112694239,44.2558648628063],[-76.0546010457638,44.2551598173911],[-76.056890819982,44.2541527779061],[-76.057759745085,44.254041188261],[-76.05789279546,44.2537788618108],[-76.0597875885326,44.2533606336705],[-76.0602531440219,44.2528926433034],[-76.0617239709079,44.2522577442568]]],[[[-76.0592608532809,44.2590645444125],[-76.0594836318781,44.258481770483],[-76.0603398925322,44.257861598247],[-76.0619234157656,44.2573471926362],[-76.0626096082684,44.2578854959106],[-76.0626651816452,44.2587267757506],[-76.0624564176647,44.2585261483494],[-76.0617321204242,44.2593206703556],[-76.0598772278215,44.2595089791885],[-76.0592608532809,44.2590645444125]]],[[[-76.0770892603807,44.2605271881424],[-76.0782981897339,44.2599980858778],[-76.0786350912031,44.2600534215095],[-76.0781830266128,44.2606113897042],[-76.0785126005242,44.2606938045681],[-76.0784650392215,44.2611939302226],[-76.0787669944295,44.2615196915881],[-76.0764558960031,44.2625543786561],[-76.0763561093447,44.2612138474599],[-76.0770892603807,44.2605271881424]]],[[[-76.0658173735704,44.2730259169539],[-76.0657219904535,44.272022955338],[-76.0663863161657,44.2713054976256],[-76.0675963585315,44.2708845356068],[-76.066897824075,44.270625477342],[-76.0673451859848,44.270315184964],[-76.0672172227692,44.2698032020785],[-76.0683510565579,44.2693919482069],[-76.0697579683115,44.2694417854823],[-76.0697672452134,44.268942022676],[-76.0721580861893,44.2688430503172],[-76.0728801717776,44.2684851381016],[-76.073317332419,44.2686250765227],[-76.0732406513281,44.269269524208],[-76.0745521170827,44.2696443137466],[-76.0750291880756,44.2705716465507],[-76.0748893455387,44.2710591348081],[-76.0739272902936,44.2717839469655],[-76.0708875997813,44.2732575297875],[-76.0700127493907,44.2729731367994],[-76.0677611751317,44.273246322487],[-76.0674119649464,44.273443158754],[-76.0675070120934,44.2737168658259],[-76.0669286264078,44.2739293496512],[-76.0667172618046,44.2735036762766],[-76.0658173735704,44.2730259169539]]],[[[-76.0573404797823,44.2762784188276],[-76.0587969623699,44.2759858109631],[-76.0598183234917,44.2770747114586],[-76.0599071866363,44.2775060374611],[-76.0584169489536,44.2781861080475],[-76.0569200466698,44.2783035245176],[-76.0562692918066,44.2788722491646],[-76.0556893116114,44.2789361389113],[-76.0558272083974,44.2783091431216],[-76.0551299594301,44.2781670429551],[-76.055163705542,44.277779595048],[-76.0561749597186,44.2773110748393],[-76.0573404797823,44.2762784188276]]],[[[-76.0414974752246,44.2846665657531],[-76.0413249555709,44.2842810057307],[-76.0400802642863,44.2843868948761],[-76.0391447937837,44.2841523361781],[-76.0390858068089,44.2836531981556],[-76.0396466834312,44.2831934278793],[-76.0394441259111,44.2828576557903],[-76.040521525737,44.2821545894628],[-76.0412601304451,44.2818687513621],[-76.0420318048337,44.2818572029228],[-76.0418312110308,44.2823587099906],[-76.042950563977,44.2826500867234],[-76.0454966041896,44.2813393273364],[-76.0462756043393,44.280598426799],[-76.0470913491775,44.2804243833074],[-76.0471572432985,44.2808244184349],[-76.0463602849279,44.2813269060763],[-76.0466378499777,44.2815629430112],[-76.0475363889423,44.2812440860323],[-76.0476862719491,44.2823545992258],[-76.0464075866175,44.2828345007756],[-76.045409786509,44.2838249934693],[-76.0437269266731,44.2844391149386],[-76.0425331213561,44.2843014804209],[-76.0421575348375,44.2849171268032],[-76.0415192288275,44.285229064248],[-76.0412407942086,44.2849660132987],[-76.0414974752246,44.2846665657531]]],[[[-76.0671415244352,44.2850777583924],[-76.066906385918,44.2847468420739],[-76.064663866677,44.2854790434868],[-76.0644007339606,44.2852879317108],[-76.0656727484029,44.2837365177043],[-76.0657224288314,44.283087826622],[-76.0651284115616,44.2827692621722],[-76.0631996442049,44.2848174655957],[-76.0623386952434,44.2849830421161],[-76.0611346742849,44.2847601674309],[-76.0617134740938,44.2833322843111],[-76.0617355097677,44.2824092565535],[-76.0621762151613,44.2818334539172],[-76.0631021913696,44.2814556988652],[-76.0632037566923,44.2811396414672],[-76.0625912107714,44.2793447193345],[-76.0626711356789,44.2786777412816],[-76.0646446490181,44.2766021188411],[-76.0664462805076,44.2760405983494],[-76.068059760759,44.2760930265025],[-76.06933549243,44.2764772130549],[-76.0696942427236,44.2768879947847],[-76.0696998104817,44.2776216994561],[-76.0684325678902,44.2794432090161],[-76.066997928737,44.2804424823264],[-76.0673624111804,44.2811458199611],[-76.0679142579375,44.2812351877809],[-76.0693246246117,44.2806007575026],[-76.0695557728124,44.2811207734861],[-76.0703177669555,44.2809875816253],[-76.0715925724634,44.2800302828911],[-76.0718198866545,44.2803612637225],[-76.0712866790412,44.2808839533754],[-76.0719824736361,44.2808999241463],[-76.0733461422885,44.2793655694116],[-76.0744940257282,44.2790081412522],[-76.0747386504548,44.2790013354645],[-76.0750262272284,44.2796918674261],[-76.0731323082166,44.2823566250251],[-76.0723396967936,44.2829357788965],[-76.0726464948194,44.2842698603399],[-76.0724164380717,44.2846456538918],[-76.070471617821,44.2857623045889],[-76.0693022116454,44.2875018758925],[-76.0688004953727,44.2889605846126],[-76.0678188487695,44.2896405116799],[-76.0638450073798,44.2901818205229],[-76.0630707961488,44.2900810011548],[-76.0629817623243,44.2897937303701],[-76.0623287410117,44.2896152501958],[-76.0626570141626,44.2887118786217],[-76.0633379398429,44.288313896431],[-76.0657267173886,44.2859057702768],[-76.0671415244352,44.2850777583924]]],[[[-76.1346141623935,44.2930515552604],[-76.1346594797047,44.2925199217197],[-76.1320730440504,44.293486443795],[-76.1321068530444,44.2928648945057],[-76.1327229500056,44.2926201961394],[-76.1337203773134,44.2920836062742],[-76.1346468197474,44.2915837254524],[-76.1363759050911,44.2910893490882],[-76.1370550610903,44.2914111940757],[-76.1361693689325,44.2919106879901],[-76.1360120909942,44.292182347876],[-76.1360960053199,44.2925101249766],[-76.1359655241265,44.2927094924919],[-76.1344290968686,44.2940122251544],[-76.1336793593392,44.2941727322095],[-76.1334811038509,44.2939271172532],[-76.1346141623935,44.2930515552604]]],[[[-76.043569142085,44.2959555803998],[-76.0427369760435,44.2940770339759],[-76.0428432575214,44.2938644886282],[-76.0426933906842,44.2936092693622],[-76.0432378505948,44.2932576697773],[-76.0439637630062,44.2932195165755],[-76.0440671348409,44.2938983076954],[-76.0437316033025,44.2939508954478],[-76.0437902426293,44.2942519641978],[-76.044381281984,44.2943816005294],[-76.0458991626246,44.2922789635464],[-76.0448824466911,44.2918021130619],[-76.0456831573246,44.2916327182833],[-76.04590619284,44.2912255318519],[-76.0454923821078,44.2909952437256],[-76.043533013641,44.291292284362],[-76.0429721522899,44.2911398598463],[-76.042442940383,44.2906090108468],[-76.0424356379781,44.2901769264577],[-76.0446583700283,44.2891662440704],[-76.0440617548307,44.2886990415865],[-76.0453404168061,44.2883632173704],[-76.0470640709356,44.2889956334206],[-76.0469574552844,44.2881368116746],[-76.0464112445574,44.2879482563083],[-76.0468096940983,44.2875394585613],[-76.0478433917839,44.2876335032264],[-76.0474493772256,44.2882898503762],[-76.048136434806,44.2882070124973],[-76.0487545925025,44.2877106586184],[-76.0488580299142,44.2870569794808],[-76.0514333480185,44.284777980871],[-76.0530780537092,44.284398180438],[-76.0535229650149,44.283615299812],[-76.0548909644454,44.2831389944376],[-76.0557614975327,44.283527078398],[-76.0560279647954,44.2843393969714],[-76.0581325818605,44.2831674896516],[-76.058642771043,44.2834868693201],[-76.0584746881685,44.2839160787759],[-76.0575720843272,44.2843340940578],[-76.0571570339198,44.2850761995638],[-76.0576255664259,44.2856255496827],[-76.0574998283373,44.2867521080709],[-76.0562897060214,44.2870604249932],[-76.0563077756334,44.2867811597104],[-76.0559335150281,44.2868116344322],[-76.0550808682964,44.2874407419495],[-76.0543825000282,44.2873076505866],[-76.0542259775731,44.2884029794096],[-76.0533941762476,44.2893875053853],[-76.0543824075018,44.2894774091747],[-76.0544356964627,44.2899135684352],[-76.0537442371374,44.2910363478863],[-76.0529256078089,44.291449049452],[-76.0530277022392,44.2920513171563],[-76.0503307486522,44.2935031814403],[-76.0498893596407,44.2936152825829],[-76.0488597690526,44.2933411563834],[-76.0471964511674,44.2935500077283],[-76.0471674912793,44.294076956818],[-76.0446709500356,44.2956438889517],[-76.043569142085,44.2959555803998]]],[[[-76.0748114014164,44.3025933474874],[-76.0751347760541,44.3018565460543],[-76.0750914565961,44.301289758549],[-76.0750515148037,44.3010560542681],[-76.0749893927085,44.3004039136423],[-76.0743668997425,44.3004457917139],[-76.0738071684721,44.3009192243912],[-76.0730871840433,44.3010925584684],[-76.0720012439339,44.3009632217602],[-76.0705834481924,44.3017733145703],[-76.0701624904637,44.3018042746157],[-76.0698725322563,44.3015008889968],[-76.0706926033809,44.301016028203],[-76.0705857829138,44.3008729813112],[-76.0707869192992,44.3000473078401],[-76.0701745907706,44.3000665599926],[-76.0702680559843,44.2994579722562],[-76.0703686017191,44.2991509226876],[-76.0717395215725,44.2985438434268],[-76.0723816624905,44.2987628853748],[-76.0732318963473,44.2984307763604],[-76.0740501834177,44.2985356125893],[-76.0747474710126,44.2981734211699],[-76.0755697987052,44.2990524763341],[-76.0758007322085,44.2989782733838],[-76.0757323263979,44.2984747440903],[-76.0760705456957,44.2982914914204],[-76.0776784743587,44.2982853134439],[-76.0777421936584,44.2980866431584],[-76.0772964271566,44.2978747790531],[-76.0775829529013,44.2973949071525],[-76.0755129910432,44.2972613921401],[-76.0736034197859,44.2975854883267],[-76.0730300341232,44.297419824529],[-76.0728390343275,44.2978987864649],[-76.0718525934157,44.2978090267269],[-76.0710989571979,44.2980681940303],[-76.0696005080152,44.298127271082],[-76.0688374107409,44.2977833032663],[-76.0682448550301,44.2971676393592],[-76.0672041082644,44.2969342973687],[-76.0684134032319,44.2951133481398],[-76.0682764047612,44.2949255661633],[-76.0678303912226,44.2949117364493],[-76.0671781936651,44.2953409871613],[-76.0668654487922,44.2956545210269],[-76.0662622534351,44.29529103297],[-76.0665588591756,44.2949731506679],[-76.0674236044176,44.2944068670362],[-76.0676849324185,44.2943459010252],[-76.0692404273167,44.2942412984336],[-76.0691471794953,44.2938325303409],[-76.0686307191739,44.2938643799637],[-76.0684952945515,44.293591052875],[-76.0685401654,44.2933025325663],[-76.0684083493101,44.2930336736],[-76.069503784612,44.2922761478394],[-76.0712779465183,44.2923945450182],[-76.0727738543671,44.2921193952452],[-76.0733788535413,44.2926448879207],[-76.0737610768132,44.2926412903453],[-76.0738559676533,44.2924333250385],[-76.0756072530626,44.2923718078556],[-76.0756390695934,44.2922274577566],[-76.0747478590848,44.2920287869084],[-76.0736972083931,44.2920206753997],[-76.0722417705462,44.2911475586612],[-76.0724601042794,44.2896599897332],[-76.0728338968624,44.2891973149351],[-76.073584999831,44.2888706363054],[-76.0736483912456,44.2885684352203],[-76.0732804763396,44.2885178785238],[-76.0760003899669,44.2850125422156],[-76.0752012019778,44.2847859962742],[-76.0750169377501,44.2843060650065],[-76.0749943963246,44.2839101398041],[-76.0764499599357,44.2832211770692],[-76.0767024251581,44.2828091514745],[-76.0758594380107,44.2826910616716],[-76.0776913544032,44.2821110725556],[-76.0784393132684,44.2811946864426],[-76.0787968679043,44.2811102770516],[-76.0790657498385,44.2816119101153],[-76.0801405777877,44.2823039818735],[-76.0812274772978,44.2819515653805],[-76.0808553016823,44.2812438448612],[-76.0811192356959,44.2806066222058],[-76.0822830543505,44.2803074855821],[-76.0826258128353,44.279804558319],[-76.0863789920587,44.2773155197601],[-76.0865912980963,44.2767913152077],[-76.0863300805881,44.2767262795681],[-76.0872112416436,44.2759931316445],[-76.0852649481557,44.2761332071954],[-76.0841578886541,44.2757701038654],[-76.080720071096,44.276270889149],[-76.0802981755262,44.2761983586204],[-76.0801400082558,44.2759027524882],[-76.0808651678791,44.2750090732526],[-76.0827922769457,44.2738113847919],[-76.0842408345958,44.272339115163],[-76.0851321789533,44.2722000944574],[-76.0855639083806,44.2724030596114],[-76.0854113870218,44.2719903657419],[-76.0856277121219,44.2717047078256],[-76.0863303114551,44.2716710097715],[-76.086810337007,44.2711847686724],[-76.0882251045277,44.2708111557893],[-76.0885220444415,44.2711774518947],[-76.0879788987662,44.271574270153],[-76.0891587828913,44.2717295698489],[-76.0902454165,44.2709764295817],[-76.0920558514792,44.2706575074338],[-76.0904958901574,44.2704653574966],[-76.0904974756839,44.2697090774104],[-76.0911452211909,44.2692122121666],[-76.0914847592154,44.2693845250692],[-76.0952863109202,44.2675069447932],[-76.0952796642854,44.267151383983],[-76.0957836002952,44.2667143931444],[-76.0963481752816,44.2666729561136],[-76.0964082339465,44.2670370065924],[-76.0953816077988,44.2681227452843],[-76.095655452925,44.2684667369255],[-76.0962540309415,44.2686095385467],[-76.0967315124645,44.2684113815523],[-76.0967835356992,44.2679067050584],[-76.0971550780024,44.2681777284782],[-76.0981849300003,44.2672449961962],[-76.099775656824,44.2669100599336],[-76.1009011075344,44.268276686519],[-76.1015050179505,44.2683068697914],[-76.1027093784721,44.2673093900472],[-76.1045446815133,44.2669900292266],[-76.1046545400827,44.2667323760925],[-76.1056285492093,44.266520369295],[-76.1079009149756,44.2667279046399],[-76.1079269544407,44.2670697713337],[-76.1085006167845,44.2675503683062],[-76.1082464187119,44.2686422187875],[-76.1088518517724,44.2686903546315],[-76.1093606189218,44.2690095215992],[-76.1102517449887,44.2688027829458],[-76.1100923236701,44.2684892247496],[-76.1089467471041,44.268284290554],[-76.1090730601145,44.2678419085316],[-76.1101866755211,44.2674349380088],[-76.1093596244868,44.2673439493745],[-76.1092633143085,44.2667236686282],[-76.110019764948,44.2660230679637],[-76.1096371733668,44.2659772727982],[-76.1100264915329,44.2651587003098],[-76.1105201687821,44.2654059839713],[-76.1116528886598,44.2646882048899],[-76.1114010396817,44.2642900181415],[-76.1105324990577,44.2644245203118],[-76.1099832933475,44.2640562348188],[-76.1099731351982,44.263106501056],[-76.1090826145958,44.2628855814379],[-76.1073588877028,44.2613942969747],[-76.1074098787733,44.2608401075066],[-76.1078876845881,44.2606644087049],[-76.1078564753185,44.2602145540484],[-76.1086076411691,44.2599416642087],[-76.1091437404594,44.2600129802012],[-76.1094912887613,44.2593883823427],[-76.1089564650788,44.2589704340737],[-76.1089616815957,44.2584391966001],[-76.1113452066919,44.2580423720183],[-76.1114539558418,44.2585544927261],[-76.1139075001228,44.2582379608718],[-76.1142208235108,44.2578342610683],[-76.115443189864,44.2574351805612],[-76.1153555654962,44.2568418285911],[-76.1148902058397,44.2564547393676],[-76.1161338101628,44.2555692734338],[-76.1162988145108,44.2558062425287],[-76.1176266421801,44.2561578713121],[-76.1206280105624,44.2525001553797],[-76.1226934026906,44.2510618520048],[-76.1242682041809,44.2515595250449],[-76.1263008464287,44.2514179348027],[-76.1273519337017,44.2519747527486],[-76.128128630571,44.2518590377078],[-76.1299641402248,44.2498556856576],[-76.130431937909,44.248230558803],[-76.1311730614931,44.2481196824855],[-76.1332114242127,44.2492157958621],[-76.1333558804969,44.249826547554],[-76.1341714519603,44.2503271105369],[-76.1342355988581,44.2508306503908],[-76.1331146001981,44.2520257044339],[-76.1313432455271,44.2520973015599],[-76.1311727857103,44.2523510803433],[-76.1320010198259,44.2542965511155],[-76.1315786634203,44.2560203436252],[-76.1325641736775,44.2570864411483],[-76.1332904436184,44.2574573618512],[-76.1343798233769,44.2572934815787],[-76.1354326228388,44.2561306060453],[-76.1368323372903,44.2554594371823],[-76.136855098803,44.2550990840982],[-76.1378949238972,44.2547646049465],[-76.1383099949658,44.2548730038273],[-76.1395591616571,44.2543338494003],[-76.1411611326932,44.2534805441175],[-76.1410166782056,44.2531578755781],[-76.143209787411,44.2527938022084],[-76.1430570585414,44.2524487105883],[-76.1437035733564,44.2508576768192],[-76.144508891449,44.249904277015],[-76.1436615950832,44.2490034961766],[-76.143272219425,44.2489263736107],[-76.1423401733002,44.2488996982768],[-76.1417062843065,44.249009573806],[-76.1417304426995,44.2474113460524],[-76.1420973523907,44.2472996413002],[-76.1424406247119,44.2477643474019],[-76.143036187084,44.2479789494524],[-76.1440678950014,44.2478380700106],[-76.1446563112754,44.2472830011729],[-76.1455804719885,44.247368255151],[-76.1462528394191,44.2471454366439],[-76.1467187901671,44.2473163084496],[-76.1469703516843,44.2479934864676],[-76.1466798293349,44.2482889955175],[-76.1472445579332,44.2488279846495],[-76.1458538149565,44.2491840635982],[-76.1458383774083,44.2494362951781],[-76.1463959149928,44.2496062478895],[-76.1450808128578,44.2506502945743],[-76.145688698319,44.2515129966638],[-76.147033210398,44.2507927398876],[-76.1474847315076,44.2508242126142],[-76.1477913283107,44.250510519916],[-76.1489638516403,44.2506832827196],[-76.1497826857848,44.2511026836109],[-76.1511624459589,44.2502469763728],[-76.1515995535997,44.2510393446452],[-76.152907969574,44.2504184176394],[-76.153735982704,44.2509052210908],[-76.1539116446645,44.2512590694876],[-76.1516357458242,44.2527225681842],[-76.1503560552778,44.2529155405176],[-76.1475436960245,44.2543168419413],[-76.146080079017,44.2555559819914],[-76.1484794917173,44.2551897345934],[-76.1494993221099,44.2546572816541],[-76.150605807588,44.2545921095675],[-76.1542323611873,44.2526783229897],[-76.15471358599,44.2530245759439],[-76.1548616606882,44.2535272536751],[-76.1546000353448,44.2541556198902],[-76.1534144541042,44.254437705912],[-76.1526061122823,44.2559494004657],[-76.1529721003021,44.2566254393649],[-76.1534431319213,44.2568502589313],[-76.1539731918379,44.2566333247828],[-76.1555687623776,44.256932285313],[-76.1565307349776,44.2565444059545],[-76.1574780407841,44.2568814202326],[-76.1568746936117,44.2572521672279],[-76.1570067082292,44.2580701137842],[-76.1578900405128,44.2593486013105],[-76.1583576971614,44.2594203805995],[-76.1581319837682,44.2603004776687],[-76.158480255214,44.2612242644573],[-76.1594408947142,44.2621913458298],[-76.1599702593347,44.2622940021622],[-76.1601496070829,44.2620986114377],[-76.1606717977575,44.2625704657043],[-76.1612861241393,44.2623571424405],[-76.1613468268963,44.2626941420585],[-76.1609142494595,44.2631892147829],[-76.1607263084273,44.2629705509665],[-76.1601834538062,44.2629580659944],[-76.1596042246025,44.2633826005188],[-76.1591672301494,44.2636751411845],[-76.1593669489933,44.2640737508931],[-76.1587921871116,44.2647053077747],[-76.1581984842521,44.2648148726505],[-76.1583987878992,44.2659562359195],[-76.1579347604442,44.2660509777222],[-76.1581778400685,44.2663456131579],[-76.1574733291204,44.2673476083238],[-76.1575273789545,44.2677251909781],[-76.1563757441501,44.2689072758137],[-76.1567853489702,44.2694658186678],[-76.1583781158679,44.2699808412583],[-76.1591167583052,44.2694961737211],[-76.1592067075129,44.2708367244648],[-76.1596084350063,44.2713908351331],[-76.1588553350828,44.271204920521],[-76.1587495916957,44.2719757606879],[-76.1582181483736,44.2724853318736],[-76.1579251826067,44.2723622620927],[-76.1575076851885,44.2728526672715],[-76.1565476412713,44.2726373262415],[-76.1562094076005,44.2725417202779],[-76.1559449336994,44.2719772040837],[-76.1542132800723,44.2728410302261],[-76.1544016208548,44.2730597004216],[-76.1540371042754,44.2742337936284],[-76.152410745776,44.2743042529083],[-76.152159968488,44.2754501812052],[-76.1527425448144,44.2755253239912],[-76.1528514098471,44.2759833829562],[-76.1520523386389,44.2768467508027],[-76.1520997723809,44.27728742433],[-76.1514552194864,44.2771678885214],[-76.1512964485481,44.2775971383531],[-76.1507907284842,44.2775482225717],[-76.1501958425435,44.2779638635985],[-76.1501440771252,44.279116783564],[-76.1513670085188,44.2805494459876],[-76.1521339362094,44.2802986193455],[-76.1520108014385,44.2806284757606],[-76.150124613328,44.2824931444459],[-76.1498933761941,44.2834813155212],[-76.1491692945492,44.2835831449477],[-76.1483478121713,44.2834113553577],[-76.1475249508795,44.2846080449342],[-76.1480385321005,44.2850350262808],[-76.147680559748,44.2865331428602],[-76.1469182844322,44.2873465870132],[-76.1468508559886,44.2863434196804],[-76.146306994356,44.285930241735],[-76.1450661757086,44.2858256633818],[-76.1437429806513,44.2875990445717],[-76.1419648643611,44.2873782768172],[-76.1419728845199,44.2866849574888],[-76.1413004299527,44.2856203182665],[-76.1413989841225,44.2848495670515],[-76.1411902219387,44.2847481198832],[-76.1395940998335,44.2855428450216],[-76.140272823743,44.286548911459],[-76.1398874150451,44.2871109559357],[-76.1395273343466,44.2870830426739],[-76.1391002599892,44.2874969488082],[-76.138396982428,44.2875039696781],[-76.1379582883624,44.2884491712212],[-76.1380771767969,44.288641551723],[-76.1396656183065,44.2885536677385],[-76.1397929634812,44.2891601050021],[-76.1371764692992,44.2905231791157],[-76.137480942485,44.289381251237],[-76.1362585851149,44.2890603191705],[-76.1357131577189,44.2885840849529],[-76.1349151824553,44.2884344725152],[-76.1333800424831,44.2889088939325],[-76.1329909722521,44.2886381641773],[-76.1331574552271,44.2869394255266],[-76.1341185888007,44.2852012774218],[-76.1339202785152,44.2850727037747],[-76.1326888993648,44.2853730366975],[-76.1324072748283,44.285128247311],[-76.1322436880218,44.283716383015],[-76.1316006200425,44.284060380491],[-76.1311883112934,44.2839834421715],[-76.1292394971329,44.2821120970355],[-76.1284142121864,44.2820437372393],[-76.1271497687453,44.2822317983552],[-76.126568115887,44.2821250056096],[-76.1267331642525,44.2817677524439],[-76.1294111283527,44.2811425625373],[-76.1294285754322,44.2802195704778],[-76.1287572931664,44.280581837898],[-76.1279198603024,44.280369544699],[-76.1270988396586,44.2800940614024],[-76.1269713821945,44.2809596197918],[-76.1257309363479,44.2814580366091],[-76.1256652389579,44.282277968009],[-76.1260619646318,44.2826656885136],[-76.1270891118024,44.2828446097526],[-76.1289197768418,44.2829165384915],[-76.1292191583765,44.283372734014],[-76.1302861575081,44.2841544403726],[-76.1299300509564,44.2854274069768],[-76.1303745948511,44.2872956492184],[-76.1308161096268,44.2878494657897],[-76.1305549127798,44.2882571945654],[-76.1297363184856,44.2884183571785],[-76.1286521148197,44.2881905080547],[-76.1255739135312,44.2892832900716],[-76.1235490632701,44.2893482674424],[-76.121587719408,44.2907045308282],[-76.1214702071924,44.2913584111454],[-76.1210492764132,44.2913445426536],[-76.1209535133089,44.2915390503954],[-76.1206677169963,44.2913617966052],[-76.1177159877199,44.292120009314],[-76.116193541841,44.293683451449],[-76.1144738843162,44.2941099077368],[-76.1142154830264,44.2945895968726],[-76.1147185315007,44.2945126569128],[-76.1133641352586,44.2956512727661],[-76.1124957841791,44.2950160234332],[-76.1119760018877,44.2950165898918],[-76.1111579555658,44.2954206985133],[-76.1107184898474,44.2960416915953],[-76.1113253898567,44.2961933344094],[-76.1110017933351,44.2964800846018],[-76.1101935314633,44.2965959914989],[-76.1103561328179,44.2962883032942],[-76.1095564929762,44.2960530006363],[-76.1080361823927,44.2965044301356],[-76.1073114368929,44.2974117780596],[-76.1069767964832,44.2975095591441],[-76.1068404708507,44.2971777670868],[-76.1059601658897,44.2971097797311],[-76.1048522934127,44.2975616685267],[-76.1044441833892,44.2973990637998],[-76.1058751214834,44.2966514463411],[-76.1059572095341,44.2961239686932],[-76.1041213782835,44.296483872257],[-76.1041248754249,44.295443979732],[-76.102484257967,44.29685082873],[-76.0998422552242,44.2970248865639],[-76.0980170905693,44.297560149249],[-76.0974514456894,44.2971424473364],[-76.0962537434806,44.297716659076],[-76.0960846329334,44.2980784083993],[-76.0946626196016,44.2976779217641],[-76.0931771501764,44.2992271982137],[-76.0920311999112,44.2995352779887],[-76.0917533132646,44.2996954928486],[-76.0912188821459,44.3000472268325],[-76.0904550985587,44.3000320237675],[-76.0900998885257,44.2997428182484],[-76.0890186636733,44.2996991279241],[-76.0889326580697,44.2991822705148],[-76.0906316022407,44.2980046369165],[-76.0900829094685,44.2972536208307],[-76.090215852944,44.2970092660843],[-76.0907126374658,44.2965723673988],[-76.0912849765912,44.2956710831678],[-76.0914682930963,44.2952506847047],[-76.0913355292838,44.294684758672],[-76.0918065240721,44.2945046904173],[-76.0921849708266,44.2934792140257],[-76.0918494294067,44.2931087971129],[-76.0926961445626,44.2929971528155],[-76.0936354302102,44.2923894434481],[-76.0923953086554,44.2920096915858],[-76.0947133061432,44.2908575769859],[-76.0960649373708,44.2911687093382],[-76.0963309141534,44.2910446112826],[-76.0959163721925,44.2903463517992],[-76.0962840041293,44.2899826939217],[-76.0979963906902,44.2896691207718],[-76.0975243538561,44.2892055014259],[-76.0970265443566,44.2891427668089],[-76.0957304083523,44.289429820217],[-76.0946954503303,44.2901329975266],[-76.0919998531994,44.2908835870512],[-76.0919565786572,44.2906004027301],[-76.092488847531,44.2900326108317],[-76.0925356964697,44.2897935799012],[-76.0925104618951,44.2895327305581],[-76.0926159348892,44.2890770625786],[-76.0925423098668,44.2887626589293],[-76.0917640723867,44.2888466367773],[-76.0912605729582,44.2876585411374],[-76.0908443412662,44.2878740959146],[-76.0894960517715,44.287715922001],[-76.0888172784546,44.2873982912861],[-76.0898983137624,44.2871493838334],[-76.089404496376,44.2864788668488],[-76.0876542197748,44.2869007100432],[-76.0869418099404,44.2859936833029],[-76.0881527766726,44.286162200479],[-76.0872559427104,44.285193912872],[-76.0871465979774,44.2846412622584],[-76.0886007718947,44.283483995956],[-76.0891252263239,44.2837400804548],[-76.0894438785181,44.2836064919533],[-76.0896471744534,44.2830193470576],[-76.0905617690071,44.2828800609351],[-76.090319442171,44.282148622016],[-76.0910315313068,44.2822183399436],[-76.0915707809887,44.2820286169767],[-76.0922957420843,44.2828094511618],[-76.0927529082071,44.282733047555],[-76.093627773869,44.2816622939688],[-76.0935627987245,44.2814333369093],[-76.0944634307638,44.2806954454722],[-76.0944633732716,44.2800427185744],[-76.0929121884901,44.2813630456719],[-76.0921496275101,44.2815053960002],[-76.0920012590628,44.2813402585771],[-76.0924010749412,44.2806251829359],[-76.091602587638,44.280016112023],[-76.0914188767725,44.2795722143121],[-76.0914024915017,44.279113211529],[-76.0917188476021,44.2788580960253],[-76.0906038398068,44.2784726239402],[-76.0905905447406,44.2789994343201],[-76.0900554668349,44.2798328377694],[-76.0903296146933,44.2802128510105],[-76.0901721840414,44.2803809133535],[-76.0893517221497,44.2802311970583],[-76.0888925968013,44.2806227152467],[-76.0883506512752,44.2805828714084],[-76.0878700651746,44.2809790923631],[-76.0876724591683,44.2820208391497],[-76.0870485333894,44.2826074885417],[-76.0865980480373,44.2826432916473],[-76.0863673525875,44.2834017525975],[-76.0854057599748,44.2834784299377],[-76.0855676453722,44.2839720619952],[-76.0851165895899,44.2852457952436],[-76.0843652647374,44.28422208131],[-76.0836997119266,44.2842554158949],[-76.0836601123922,44.2846339233619],[-76.0835193706417,44.2848378307747],[-76.0837664576505,44.2854071828363],[-76.0849925987245,44.2859942344149],[-76.0852175961604,44.287441597856],[-76.084568547198,44.2883255760684],[-76.0879664023023,44.2881041519204],[-76.0889695770312,44.2886167605163],[-76.0895375943618,44.2883277379875],[-76.090012509398,44.2883817209911],[-76.0904780208698,44.2887509015709],[-76.090598785885,44.2895150124426],[-76.0901216160775,44.2897401499149],[-76.090549180915,44.2901322001746],[-76.0898098719278,44.2906884566245],[-76.0898839092769,44.2918041359634],[-76.0891778442433,44.2920854754879],[-76.0890770442853,44.2924150522454],[-76.0871950315442,44.2935989095436],[-76.0870647003696,44.2940052925082],[-76.0861749774711,44.2942703572997],[-76.0856576323091,44.2948244726727],[-76.0851437043384,44.294739331871],[-76.0846362118985,44.2958470405972],[-76.0850556954917,44.2970494684775],[-76.0861539218592,44.2981599034027],[-76.0865958579447,44.2980791670671],[-76.0871854626898,44.2985462119943],[-76.0876116800545,44.2992849053108],[-76.0872446068698,44.2992839036328],[-76.0861145891245,44.2993756972583],[-76.0853904553773,44.2999137744281],[-76.0856309361755,44.3005236966255],[-76.0842021648178,44.301005449174],[-76.0830905778071,44.3008674587298],[-76.0825709742805,44.3017276867742],[-76.0829755269754,44.3021019767638],[-76.0823094477518,44.3020542810292],[-76.0818618882127,44.302256595308],[-76.0812046771575,44.3039824207286],[-76.0795571768079,44.3046552534183],[-76.0792523649573,44.3051217979605],[-76.0790458018493,44.3081758037095],[-76.0753966619089,44.3106501097489],[-76.0748378747679,44.3107319035594],[-76.0744376178166,44.3087144796888],[-76.073851103276,44.3076261264655],[-76.0742079392597,44.3057861325572],[-76.0729950788789,44.3042310093353],[-76.0730886842298,44.3035458921548],[-76.0738253593566,44.3027646913855],[-76.0748114014164,44.3025933474874]]],[[[-76.06101447431,44.3137828490236],[-76.062764761691,44.31360899835],[-76.0631532066946,44.3138754703578],[-76.0629557381306,44.3142644445558],[-76.0620536391425,44.314885059644],[-76.0606136118942,44.3154026343031],[-76.060450276616,44.3148009454891],[-76.0609488227341,44.3145487237823],[-76.06101447431,44.3137828490236]]],[[[-75.9295214042673,44.3309533504009],[-75.9304321693029,44.3307973468683],[-75.9308740092687,44.3310998350251],[-75.9295642323468,44.331551707623],[-75.9298591025422,44.3322740474196],[-75.9294215771847,44.3326377511308],[-75.927850182106,44.3334518673624],[-75.9269249703639,44.3333918935203],[-75.927457590479,44.332374696664],[-75.9295214042673,44.3309533504009]]],[[[-75.9215886946069,44.3442075168371],[-75.9231376973806,44.3433666598566],[-75.9231897457682,44.3437083548416],[-75.9237022157731,44.3437131943338],[-75.9236591361654,44.3447083879376],[-75.9212779161462,44.3452093819584],[-75.9211491839727,44.3449268271713],[-75.9215886946069,44.3442075168371]]],[[[-75.9287769470351,44.3430596254234],[-75.9295319388106,44.3425132668571],[-75.9305406040425,44.3429056508235],[-75.9309463119709,44.3433704900997],[-75.9293775866852,44.345454042907],[-75.9281621202917,44.3457430719976],[-75.9277841963568,44.3448548504089],[-75.9287769470351,44.3430596254234]]],[[[-75.9201494542829,44.3476403590448],[-75.9204964707822,44.3470703533139],[-75.9209778177559,44.3471384787298],[-75.9215072308854,44.3468235798181],[-75.9217865701078,44.3460155369572],[-75.9234200531457,44.346772041587],[-75.9231968487471,44.347012437526],[-75.9233699172714,44.3476187404939],[-75.9220327938356,44.3488495166813],[-75.9197148718063,44.3488998094342],[-75.9193494398437,44.3485246359309],[-75.9194291572403,44.3478847708768],[-75.9201494542829,44.3476403590448]]],[[[-75.9160731151192,44.3520893119372],[-75.9170696387218,44.3517031444532],[-75.9172678421078,44.3518906098846],[-75.917005939185,44.3522663521575],[-75.9178241319323,44.3523092640082],[-75.9179525308308,44.3526953600526],[-75.9175300360847,44.3530318863752],[-75.9158007629931,44.3530998539132],[-75.9156257379381,44.3528401742384],[-75.9160731151192,44.3520893119372]]],[[[-75.8980987371757,44.3528540025074],[-75.8993097596035,44.3514669501185],[-75.900235032431,44.3510049667366],[-75.9005460426571,44.3506288733548],[-75.9015957941352,44.3496977311295],[-75.9030056415831,44.3493129078007],[-75.9022570916265,44.3505522785738],[-75.902513215687,44.3513200101969],[-75.902004167365,44.3521253283263],[-75.9013068222779,44.3523919516932],[-75.9010406766121,44.352092458153],[-75.9011121627458,44.3515156925539],[-75.9002056521313,44.3516939369889],[-75.8997220773358,44.3526025784008],[-75.8990388097475,44.3530716463635],[-75.8982121081578,44.3531637136382],[-75.8980987371757,44.3528540025074]]],[[[-75.9201150200614,44.3516290112848],[-75.9214200799298,44.3506956199794],[-75.9217750617907,44.3516245617116],[-75.9193913031326,44.3541512335265],[-75.9192008549025,44.3539592077421],[-75.9194879205346,44.3531646129076],[-75.9202021485592,44.352555624507],[-75.9201150200614,44.3516290112848]]],[[[-75.9143609773917,44.3564831062962],[-75.9154662501442,44.3557494588954],[-75.9158791922056,44.3558271593582],[-75.9160986802739,44.3562710432194],[-75.9156740358593,44.3570982481494],[-75.9150982948139,44.3574675110301],[-75.913918867033,44.357724587571],[-75.9143609773917,44.3564831062962]]],[[[-75.9205045493316,44.3565190377708],[-75.9214471515592,44.3561917896164],[-75.9224786420842,44.356453513651],[-75.923481639845,44.3563013187226],[-75.9236456776058,44.3572273037727],[-75.9229836372077,44.3580879754112],[-75.9198873177982,44.3607509847328],[-75.9197392978972,44.3613373836812],[-75.9187610577056,44.3610752042705],[-75.9181207798936,44.3605582002366],[-75.9184128859729,44.3603307627965],[-75.9191706068302,44.3602616148266],[-75.9196976169664,44.3588393652324],[-75.9195196175894,44.3576704037155],[-75.9203086447344,44.3574749519375],[-75.9205045493316,44.3565190377708]]],[[[-75.9084335661603,44.3652546361421],[-75.9082125581425,44.3650898453985],[-75.9071336886728,44.3651164699092],[-75.9062797618418,44.3644750616706],[-75.9071300981066,44.3627892019162],[-75.9053558589452,44.3640997958534],[-75.904851993004,44.3638517229257],[-75.9042519713948,44.3629651938065],[-75.9053599732292,44.3617589612332],[-75.9055626493269,44.3610461020536],[-75.9053281477153,44.3604897795678],[-75.9056049590785,44.3602084776289],[-75.9088737828703,44.3583097373895],[-75.9095457388725,44.3586014629458],[-75.909712494037,44.3589602518205],[-75.9093827054282,44.3591114423972],[-75.9080401373035,44.3613144304576],[-75.9083742090796,44.3618159331271],[-75.9090556692575,44.3617834742856],[-75.9093494803392,44.3626454193356],[-75.9088848671826,44.3637610172503],[-75.9095272793918,44.3638639141513],[-75.9092171710742,44.3646766732869],[-75.9084335661603,44.3652546361421]]],[[[-75.8815554006326,44.3660650576629],[-75.8835541260886,44.364388461339],[-75.8838748183568,44.3644850011741],[-75.8830418546113,44.3656798858513],[-75.8817941503772,44.3672020951895],[-75.8811912811086,44.3674318499073],[-75.8809987263291,44.3670687178125],[-75.8815554006326,44.3660650576629]]],[[[-75.9056296672404,44.3673927411999],[-75.9058759143244,44.3667065441781],[-75.9048677907766,44.3667956045079],[-75.9044193805328,44.3661284453748],[-75.9045075277201,44.365362481794],[-75.9046929723341,44.3650549004689],[-75.905091074227,44.3650067151698],[-75.9068311306952,44.3659381651539],[-75.9068991142976,44.3667298934447],[-75.9063688621416,44.3675128902581],[-75.9056296672404,44.3673927411999]]],[[[-75.9192822009447,44.3673776454888],[-75.9210775882446,44.3653824311403],[-75.9209462752113,44.3651629198836],[-75.9213944186554,44.3644840564814],[-75.9228512785354,44.3635854317078],[-75.922313930587,44.3628605452529],[-75.924533188852,44.36085283106],[-75.9264031165575,44.3585868325461],[-75.9264388551328,44.3579473226985],[-75.9256181542892,44.3578504740705],[-75.9257141374807,44.3571519533845],[-75.9260548496033,44.3569015927303],[-75.9257993507702,44.3559223374835],[-75.924265652594,44.3556917379526],[-75.923962554729,44.3554196082969],[-75.9258360092203,44.3537072790099],[-75.9257570949176,44.3530822070138],[-75.9265040180252,44.3529320703726],[-75.926642902958,44.3525663130762],[-75.9278466184892,44.3531822071108],[-75.9281252273813,44.3525047002567],[-75.9268947591226,44.3519565502096],[-75.9270328571312,44.3516898323633],[-75.92742983613,44.3512319374102],[-75.9278875699881,44.3498597303813],[-75.927478876958,44.3492328495229],[-75.9273725568526,44.3489321135327],[-75.9284187465105,44.34874350997],[-75.929311620699,44.3481104971174],[-75.9298584907894,44.3472687363757],[-75.9344958269497,44.3456281493328],[-75.9339686856595,44.3450742899933],[-75.9326231962135,44.3449277843854],[-75.9324901395503,44.3455816009994],[-75.9317179773764,44.3459615626234],[-75.9308511803824,44.3462342565506],[-75.9304712612891,44.345445094641],[-75.9308494708884,44.34469924169],[-75.9315762259195,44.344693287024],[-75.9315111789098,44.3438835406069],[-75.9316780239058,44.3425452114901],[-75.930594965592,44.3418878544704],[-75.9309427842868,44.3410567200957],[-75.9302225842623,44.3413732240243],[-75.929872450609,44.3409259340282],[-75.9300349091315,44.340541972491],[-75.9298076470427,44.3401296886523],[-75.9293528389975,44.3397552775397],[-75.9302571918586,44.338793549551],[-75.9309001295822,44.3386982543021],[-75.9317173764035,44.3389391433739],[-75.9326667420469,44.3387873070908],[-75.9333378509378,44.3391554273521],[-75.9350671725384,44.3390196718786],[-75.9352523251999,44.3386355160317],[-75.9363249918026,44.3382530551494],[-75.9372333197089,44.3386236999139],[-75.9376292827131,44.3390660879296],[-75.9383898197888,44.3382630363658],[-75.9376734411975,44.3377377650715],[-75.9365868839456,44.3378637638938],[-75.9360298027053,44.3375667487973],[-75.9352266684171,44.3375463505062],[-75.9356816058197,44.3362866716067],[-75.937589584364,44.3348799678068],[-75.9361122967945,44.3350316921264],[-75.9356430501277,44.3343918327181],[-75.935964235571,44.3339120228941],[-75.9357694493764,44.333693050428],[-75.9343975314947,44.3340104429084],[-75.9339514721421,44.3338880655517],[-75.9341979707543,44.3330262417585],[-75.9353365413595,44.3323101331722],[-75.9346402311316,44.3323473716614],[-75.9344268911331,44.3321195465062],[-75.9343389649314,44.3311794425602],[-75.9346386240456,44.3304567287922],[-75.9364963301717,44.3289559228802],[-75.9367968606517,44.3281431644048],[-75.9387706641468,44.3262407248404],[-75.9398357489684,44.3258898045829],[-75.9402189334377,44.3259316509765],[-75.940899893254,44.3259440229592],[-75.9409284471036,44.325331573909],[-75.9425983774876,44.3240663031013],[-75.9431508162345,44.3236925921048],[-75.9445696692931,44.3234602340633],[-75.94488586729,44.3236016565375],[-75.943658031095,44.3249128087325],[-75.9441735580669,44.3249715496566],[-75.9427777234391,44.3275580302184],[-75.9428567087088,44.3281785908117],[-75.943493989741,44.3278626949023],[-75.9440922731101,44.3279477587484],[-75.9442082887324,44.3275596605348],[-75.9450375639954,44.3277508378004],[-75.9462970658041,44.3266509818115],[-75.9477872352149,44.3265350307924],[-75.9475019060261,44.3259296980126],[-75.94815478271,44.3260953141284],[-75.9489131045402,44.3257063534507],[-75.9507843285147,44.3241286745799],[-75.9510850826752,44.3231988363521],[-75.9505392681052,44.3231808938233],[-75.9503533240279,44.3230248940393],[-75.9503711510947,44.32272313994],[-75.950690615366,44.3221487698391],[-75.9515540598474,44.322083024778],[-75.9520141931056,44.3217010407815],[-75.9514514812251,44.3214626676976],[-75.9514089603694,44.3211614184262],[-75.951742076338,44.3209695641434],[-75.9518608857209,44.3212386634432],[-75.9530090718929,44.3214046045042],[-75.9542236660222,44.3204760958937],[-75.954719008748,44.3204044136771],[-75.9557426902182,44.3195945329966],[-75.9545938464794,44.3194826434181],[-75.9555573686734,44.3185652317067],[-75.9549134221417,44.3184626049103],[-75.9551121178045,44.3179837696108],[-75.9547746710579,44.3179325852349],[-75.9548159576284,44.3176531409062],[-75.9554542348922,44.3174091956436],[-75.9559219948472,44.3170181283472],[-75.9575545121962,44.315847485653],[-75.9606252143488,44.3151418428011],[-75.9625374904334,44.3136221442536],[-75.9640480498045,44.3130061341499],[-75.9651247615209,44.3121011863451],[-75.9656730428646,44.3119659853221],[-75.9660132995414,44.3117380160844],[-75.9667127547711,44.3110298252661],[-75.9680823127785,44.3106130303991],[-75.9679383128385,44.3111454418223],[-75.968846496116,44.3110476744485],[-75.9692240580299,44.3098560412631],[-75.9719976954028,44.308819509043],[-75.9723222189858,44.3090148035655],[-75.9720789066978,44.309557072241],[-75.9723905502362,44.3107923402453],[-75.9738202971643,44.3112167554584],[-75.976287773417,44.3110875561157],[-75.9763880999629,44.311581867602],[-75.9773920975486,44.3112626329969],[-75.9780572110833,44.310946304673],[-75.9769000112158,44.310208992914],[-75.9785252656857,44.3092496865869],[-75.9780931140503,44.3088752731075],[-75.9776483788144,44.3088025713464],[-75.9770893311619,44.3082896960405],[-75.9762095687833,44.3082792468876],[-75.9762523321841,44.3076486597287],[-75.9770651889386,44.3068674068449],[-75.9767953646717,44.3067571856061],[-75.976463245833,44.3065529660136],[-75.9777987630811,44.3059382773441],[-75.9780310081248,44.3061208446536],[-75.9784259775923,44.3059598913334],[-75.9785879312616,44.3055938699321],[-75.982235111078,44.3038023057695],[-75.9827406182412,44.3038564584115],[-75.9842993488711,44.3024519881699],[-75.9853761773685,44.3023751382306],[-75.9854300574209,44.3018524880858],[-75.9849471563618,44.3018836814612],[-75.9861053794105,44.3012209144626],[-75.9878992216081,44.3008272107325],[-75.9906919356044,44.2994119260459],[-75.9910025101476,44.298806008045],[-75.9923956659992,44.2980060822446],[-75.9926946441904,44.2980574910259],[-75.9935634237663,44.2970145402068],[-75.9951243615568,44.2962266191224],[-75.9961024202887,44.296200049477],[-75.9970225134302,44.2953231814253],[-75.9980221892211,44.2952558914733],[-75.9991086422684,44.2945125932581],[-75.9987016820885,44.2943991274979],[-75.9972163132747,44.2946507465219],[-75.9978286471931,44.2938981128711],[-76.0002917926679,44.2935388698831],[-75.9999813232276,44.2942123276416],[-76.0013371280281,44.2938763189062],[-76.0024946638655,44.2921420444141],[-76.0060844646915,44.2910930772907],[-76.0071979112148,44.2903359875467],[-76.0065646142109,44.2902245373159],[-76.0064157660632,44.2900187780363],[-76.0088827841752,44.2885339687545],[-76.0100634291733,44.2877267387814],[-76.0114180365195,44.2871520370923],[-76.0144278095396,44.2862655056014],[-76.0153581003562,44.2856405108231],[-76.0175884905443,44.2850309266357],[-76.0177968871138,44.2851461082273],[-76.0177992191402,44.2861364359048],[-76.0206628677046,44.2855031324923],[-76.0207950709684,44.2856505016345],[-76.0215229426054,44.2856169755617],[-76.022383242085,44.2854967280936],[-76.0231866243082,44.2856830920148],[-76.0242272435131,44.2851245592439],[-76.0270816502099,44.284797286261],[-76.0276629185892,44.2843553970281],[-76.0309121285651,44.2847897390247],[-76.0314629386665,44.2852439206675],[-76.0316643265801,44.2872047871486],[-76.0307943387701,44.288221006481],[-76.0307850088676,44.2885587085528],[-76.0316273815674,44.2890867801578],[-76.032382367953,44.2889674098238],[-76.0323156428903,44.28864840205],[-76.033317437807,44.2886438319502],[-76.0337168970542,44.2896620699383],[-76.0323045765443,44.2902420597379],[-76.0303727863568,44.2904170830469],[-76.0294849148861,44.2908212387514],[-76.0284161245139,44.2918302304864],[-76.0279656077208,44.2918703046089],[-76.0271333437629,44.2925215272897],[-76.0273898801502,44.2926542641205],[-76.026722004296,44.2938576967783],[-76.0245021073289,44.2952371341162],[-76.0251390667642,44.2951053669374],[-76.0261409991231,44.2953034294165],[-76.028892156156,44.2939326739226],[-76.0294126337434,44.2938829615815],[-76.0300921930862,44.2942369518834],[-76.0307959018388,44.2942936164702],[-76.028964589114,44.2951564477714],[-76.0286399298855,44.2961632271846],[-76.0293896269907,44.2961384565127],[-76.0309240303444,44.2949631923049],[-76.0321331609201,44.2948262125614],[-76.033076165593,44.2942144642678],[-76.0347221459932,44.293929449357],[-76.0359726529709,44.2929007427993],[-76.0365770026632,44.2928547377424],[-76.0372961857948,44.292834694912],[-76.0391662644173,44.2918498338429],[-76.0402975981945,44.2921006118091],[-76.0410361112745,44.2933002949574],[-76.0412633482104,44.2939419451104],[-76.0417889219404,44.2947294216915],[-76.0419306976518,44.2959165410197],[-76.0435579490766,44.296711945746],[-76.0434261105289,44.2972488385848],[-76.0419755855683,44.2986800931283],[-76.0391410531989,44.2997188064473],[-76.0389257090589,44.3001664229183],[-76.0390823905159,44.3013128947162],[-76.0385363280108,44.3023082125223],[-76.0343373840822,44.3063797721277],[-76.0331114145864,44.3068410400103],[-76.0321437897866,44.3078896621861],[-76.030832902547,44.3086262702624],[-76.0302395904547,44.3098425512553],[-76.0285658036032,44.3115142337489],[-76.0269770557681,44.3150667764021],[-76.0253419467795,44.3165219877867],[-76.0257058911321,44.3175450699147],[-76.0263247342431,44.3178411059946],[-76.0261537129793,44.3187024420717],[-76.026465206499,44.3193253548153],[-76.0259360772371,44.3196767359535],[-76.0253512191899,44.3206048143995],[-76.0252566499467,44.3213799318873],[-76.0262191238067,44.3219834857708],[-76.0247470320927,44.3226449476543],[-76.02451308025,44.3230927029269],[-76.023751183125,44.322910480181],[-76.0241161255058,44.3235869377115],[-76.0239973834966,44.3242137194202],[-76.025503245577,44.323128818107],[-76.0258384851629,44.3236299765948],[-76.0267629809477,44.3241438360582],[-76.027245025014,44.3241665043631],[-76.029858564637,44.323229116727],[-76.0297953492921,44.3237563688301],[-76.0302152380256,44.3241217030748],[-76.031340093153,44.3243051019668],[-76.0322212640899,44.3239820208788],[-76.0339454006148,44.3247451694396],[-76.0361869200308,44.3250669411163],[-76.0362265653793,44.3247829834017],[-76.0385736206715,44.3243159788427],[-76.0386639741211,44.3247473043119],[-76.0392752965366,44.3250973567671],[-76.0403698020821,44.3253124540725],[-76.040784762658,44.3257048034122],[-76.0413558890577,44.3256230632457],[-76.043020891284,44.32442393968],[-76.0434590867847,44.3237897143919],[-76.0437884397105,44.3237326817541],[-76.0432684499083,44.3234943567698],[-76.0437784890721,44.3219456590786],[-76.0446625022786,44.3206906355775],[-76.0450580637359,44.3215107943259],[-76.0464127645068,44.3215523906266],[-76.0469172161496,44.3217548317913],[-76.0473999743765,44.321664869452],[-76.047339743235,44.3212557820013],[-76.0476157452162,44.3211091969556],[-76.0481513926538,44.3211717984462],[-76.0486096133988,44.3215277097171],[-76.050149924972,44.3209283350472],[-76.0515348863917,44.3211496534159],[-76.0524254510115,44.3206822805925],[-76.0528124470326,44.3199539591171],[-76.0548980817973,44.3190028658754],[-76.0561782646205,44.3191305644219],[-76.0568207666612,44.3186879623911],[-76.0576958560037,44.3188644132096],[-76.0570360712752,44.32006344025],[-76.0575964906551,44.3206074327269],[-76.0565516727246,44.3229894317439],[-76.0556762087847,44.3236637675908],[-76.0552731149537,44.3246938502224],[-76.0541045567878,44.3256994984503],[-76.0532520214472,44.32551831138],[-76.0520100233117,44.3260609577313],[-76.0500832044009,44.327906343058],[-76.0486131482694,44.3280189041648],[-76.0477604745882,44.328990071307],[-76.0467413565597,44.3292695233283],[-76.0463037952696,44.3297642066515],[-76.0445466986587,44.3309687221662],[-76.0443098704105,44.3308538515054],[-76.0431160093979,44.3307882524273],[-76.0423046348636,44.330741653114],[-76.0411233619431,44.3313826601464],[-76.040562967716,44.3320044859719],[-76.0391907650684,44.3325571843037],[-76.0370020073022,44.3322439959688],[-76.0366947708986,44.3325123810705],[-76.0368441544422,44.3329791828678],[-76.0378871973017,44.3331137430379],[-76.0381009622033,44.3334088992981],[-76.0365588396265,44.3344177682377],[-76.0359459981598,44.334495362047],[-76.0354873264606,44.3342924572413],[-76.0362688895039,44.3333625417391],[-76.0354227241169,44.3329245758218],[-76.034710007957,44.3331606238329],[-76.0346388146741,44.3338995221552],[-76.0340629379832,44.3344269250849],[-76.0326150576627,44.334674126006],[-76.03223876417,44.3344299482385],[-76.0313282928834,44.3348118146521],[-76.0305606546254,44.3349808104795],[-76.030553989126,44.3346027412851],[-76.0313571395839,44.3341363225162],[-76.0327734387322,44.3330116229657],[-76.0318342707639,44.3322548630193],[-76.0310757405245,44.332338250473],[-76.0306324866105,44.3318740967399],[-76.0303569149223,44.3311608419038],[-76.0300896903798,44.3313658253483],[-76.029445270436,44.3325645544791],[-76.0281402608733,44.3334901415612],[-76.0266154946461,44.3338009811559],[-76.0264258998154,44.3333165214836],[-76.0259439985813,44.3331723074002],[-76.0255812840224,44.3333871424908],[-76.0258574773447,44.3338258091854],[-76.0256727828239,44.3342010992495],[-76.0248984134895,44.3345231698812],[-76.024646082116,44.3343498773453],[-76.0248960365472,44.3336498917033],[-76.0245044824745,44.3332707794176],[-76.0238537617473,44.3331775898395],[-76.0225046458024,44.3336938683925],[-76.0212901289282,44.3335697066563],[-76.0206288422166,44.3337917014844],[-76.0209066309469,44.3339197597932],[-76.0204752347946,44.334220723155],[-76.019905940958,44.3339647270855],[-76.0193938096179,44.334401454769],[-76.0187658944209,44.3344700883781],[-76.0187642549954,44.3348932483749],[-76.0191768655785,44.335177659606],[-76.0185019136948,44.3354492818386],[-76.0180098255653,44.3361604181696],[-76.0171812213439,44.3366359734866],[-76.014553025707,44.3372265831715],[-76.0136921342377,44.3380805298592],[-76.013170923625,44.3382922334221],[-76.0128076485173,44.3386375777965],[-76.0122118642613,44.3382332282786],[-76.0113028859748,44.3382593002364],[-76.0108494379789,44.3387404841209],[-76.0112762814693,44.339236370607],[-76.0106703866748,44.3394938290887],[-76.0108067365619,44.3398752513382],[-76.0097955686236,44.3400687746259],[-76.0091529498019,44.3399484208752],[-76.0094196676946,44.3402296568803],[-76.0090268371158,44.3408858574151],[-76.0102891192104,44.3412032925573],[-76.0101260606132,44.3418394541689],[-76.0091808424915,44.3426986152562],[-76.007370503632,44.3436329382457],[-76.0061532998968,44.34390927727],[-76.0055569667702,44.3445897686338],[-76.0039714501752,44.3454500303528],[-76.0022244515264,44.3457670032968],[-76.0021310752458,44.3460829318908],[-75.9977212706689,44.3462882120034],[-75.9969094361972,44.3465474202727],[-75.9973216461316,44.3468093955187],[-75.9965248117285,44.3471900108571],[-75.9960207885822,44.3469468430332],[-75.9960064011646,44.3466318608639],[-75.9956002144341,44.3468379883131],[-75.993580011158,44.3470267200638],[-75.9925701870993,44.3471030644185],[-75.9922647329533,44.3469391733781],[-75.9922907185195,44.3461376725107],[-75.9947207278384,44.3446444329143],[-75.9965507020733,44.3419499898472],[-75.9980763396664,44.3409327621928],[-75.9980387110358,44.3407035139081],[-75.9976046971928,44.3410449391592],[-75.9968123058571,44.3414975420603],[-75.9963853581621,44.3417713772037],[-75.9961276431852,44.3420842416118],[-75.9960055630364,44.3421438313696],[-75.9957003388591,44.3422455391437],[-75.9955939109558,44.3423725144454],[-75.9948539695546,44.3427301120008],[-75.9945814772912,44.3429125577784],[-75.9946027808382,44.3433580241416],[-75.9939675524564,44.343534637815],[-75.9929120894897,44.3434133159517],[-75.9933156675126,44.3439769849216],[-75.9927558212578,44.3443915152707],[-75.9918852720008,44.3439399568275],[-75.9926921738233,44.3450988132377],[-75.9916952756233,44.3457962492944],[-75.9918461162343,44.3463216141356],[-75.9915151705954,44.3468961965672],[-75.9896449680054,44.3470070239981],[-75.9866274973216,44.346880199421],[-75.9857869158625,44.3465543775489],[-75.985529062545,44.3459804155507],[-75.9849326359936,44.3459270643267],[-75.9836678538876,44.3466942745137],[-75.9835288216311,44.3471456312258],[-75.9828014773051,44.3471879339754],[-75.9818024393181,44.3469039664429],[-75.9807245391306,44.3456348324057],[-75.98036937581,44.3455433629594],[-75.9801110957927,44.3454780668325],[-75.978233611459,44.3463000143707],[-75.9778206622111,44.3458714189895],[-75.9779820499418,44.3453478521042],[-75.9770648296125,44.3455222961155],[-75.9765229550534,44.3460581341052],[-75.9762075403874,44.3455296608069],[-75.9750205586733,44.3454678234523],[-75.9745524357989,44.3449496583291],[-75.9755848264358,44.3444411315143],[-75.9755251226054,44.3436358671284],[-75.9743085431993,44.342736988139],[-75.9742109520235,44.3424092120237],[-75.9743471087728,44.3423225154757],[-75.9746953460825,44.342094452818],[-75.9749188972309,44.3412777556476],[-75.9747740196368,44.3408648557143],[-75.9734838107167,44.3406013171068],[-75.9743222335242,44.3399369082727],[-75.9754195516949,44.3405757216206],[-75.9761835302165,44.3405016405532],[-75.9768340272632,44.340158436972],[-75.9770473259392,44.3397154519795],[-75.9774673961324,44.3389555808661],[-75.9777769088669,44.3384532471231],[-75.9783066274236,44.3379220086863],[-75.979455011225,44.3374439593047],[-75.980403766014,44.3371476822541],[-75.9817249425568,44.3369472159675],[-75.9818255484788,44.3366357402532],[-75.9818229783987,44.3364827093469],[-75.9817893077453,44.3362984367937],[-75.9817391431248,44.3360422814533],[-75.9827081782797,44.3354622127418],[-75.9841311608937,44.33588655425],[-75.9850586507633,44.3355409051777],[-75.9850325690774,44.3353655704754],[-75.9860253296372,44.334893304918],[-75.9868976270158,44.3339269061915],[-75.9877480270609,44.3335684003521],[-75.9875622141377,44.3333584416128],[-75.9874711213746,44.3332331893954],[-75.9875691922508,44.3330522749079],[-75.9881097525747,44.3326604450685],[-75.9889174646776,44.3321897622111],[-75.9898247065207,44.3317182074636],[-75.9901528000085,44.3315577959936],[-75.9903811769066,44.3314342652401],[-75.9905497691258,44.3314372981866],[-75.9906190930146,44.3315267250559],[-75.990690544114,44.3319267404336],[-75.9910120340862,44.3319779575803],[-75.9912920443502,44.3318944886507],[-75.9916360101708,44.3318149624073],[-75.9918429874021,44.3315160544976],[-75.9919339481128,44.3314252300146],[-75.9921938711487,44.331382448097],[-75.9924677405294,44.3313530484022],[-75.9935960910016,44.3309560595126],[-75.9938964534966,44.330917421888],[-75.9948292524095,44.3308687497155],[-75.9961760075818,44.3309154780862],[-75.9963900572494,44.3309181043069],[-75.9964435249751,44.330881623154],[-75.9963431732764,44.3307429543405],[-75.9960354697489,44.3305115694661],[-75.9960343621261,44.3303315172862],[-75.9961482047238,44.3302269839548],[-75.9962303035542,44.3299156576115],[-75.9964431036652,44.3296842135677],[-75.9969225767532,44.3293468958275],[-75.9974022133345,44.3289735616205],[-75.9978512622804,44.3286455099989],[-75.9982094223808,44.3284578025089],[-75.998568026249,44.3283421146747],[-75.9988885397525,44.3282222586532],[-75.9990789493551,44.3281035455897],[-75.9997287807501,44.3275081310738],[-76.0002813290915,44.3271836750692],[-76.0006725651607,44.3269146505927],[-76.0006882731017,44.326801974265],[-76.0007425502095,44.3266529463186],[-76.001079401373,44.3266184790737],[-76.0012706023914,44.3267068311096],[-76.0013857448512,44.326656302753],[-76.0018622409223,44.3261029280307],[-76.0021097878686,44.3259116875572],[-76.0022031443861,44.3258478450558],[-76.0043014220403,44.325572795509],[-76.0044514173365,44.3259315982805],[-76.0056472519478,44.3252998441796],[-76.0071128479439,44.3236078292791],[-76.007814273179,44.3225122561328],[-76.0064654195423,44.3226051972342],[-76.0067605134181,44.3219678725749],[-76.0079079890227,44.3216741381886],[-76.0071917694332,44.3198168217331],[-76.0068675809219,44.3198331893892],[-76.0051453335541,44.3208837414453],[-76.0033275458643,44.3211203263571],[-76.0040439630832,44.3213976185364],[-76.0031838747077,44.3221569485224],[-76.0028393797794,44.3221554767965],[-76.00310396058,44.3214734146359],[-76.0024068077324,44.3209708688001],[-76.0001068906364,44.3217743345388],[-75.9985862692358,44.3218146979948],[-75.9998913812064,44.320286208589],[-75.9993583325949,44.3196156554308],[-76.001505753485,44.3183093614061],[-76.0025582376382,44.3167515761278],[-76.0036904382897,44.3158007902709],[-76.0026236484656,44.3153555169233],[-75.9987783425182,44.315920467922],[-75.9981050210768,44.3163495271159],[-75.9977297013579,44.3167444572027],[-75.9969131525275,44.3173008099088],[-75.9963321275917,44.3170538147087],[-75.9958813889147,44.3168867044234],[-75.9955946709305,44.3166866451485],[-75.9949689449278,44.3167596456559],[-75.9941793868785,44.3175453225058],[-75.9948359044342,44.3178997048881],[-75.9930977667674,44.3186711618696],[-75.9924421008145,44.3183437711894],[-75.9917166797816,44.3184086212808],[-75.9909899040892,44.3188561113095],[-75.9911144025027,44.3194042167252],[-75.9879632705895,44.3212322661553],[-75.9861571762698,44.3226794416553],[-75.9850747665395,44.3228193705238],[-75.9851337418362,44.3234355732362],[-75.9858221989919,44.3234521134011],[-75.9854407976784,44.3244007477144],[-75.9847978276155,44.3252706181621],[-75.9843105212183,44.3254008813364],[-75.9835079322075,44.3263126402695],[-75.9827040406395,44.3258424263604],[-75.9816543484502,44.327071416962],[-75.9813713854239,44.3266282052201],[-75.9803165306167,44.3266868229704],[-75.9773444859403,44.3286975981683],[-75.9774121218946,44.329601829927],[-75.9784183473023,44.3297957444017],[-75.9792178110742,44.3295322729959],[-75.9796797247933,44.3297083557663],[-75.9794717118044,44.3300657709539],[-75.9788767647782,44.3301609260108],[-75.9786914117924,44.3311933781088],[-75.9774243066431,44.3329328757311],[-75.9752524920015,44.3347926625663],[-75.974825172404,44.3348593494763],[-75.9744771470967,44.33465076011],[-75.974113094048,44.3323040692971],[-75.9729205275077,44.3326203872231],[-75.9711539860099,44.3335898210386],[-75.9702650239846,44.3343941869884],[-75.9692616929488,44.3343307212534],[-75.9678374535917,44.3351711411145],[-75.9669438391914,44.3361960967423],[-75.9646786069468,44.3375297956828],[-75.9643457694559,44.3382168554764],[-75.9635294443061,44.338372328487],[-75.9629734841633,44.3389847493079],[-75.9618362089288,44.3391474302933],[-75.9614207965003,44.3390113966029],[-75.9609530473252,44.3394114881397],[-75.9606953053988,44.3395667196211],[-75.9596192350795,44.340043969799],[-75.9587651438568,44.3408389481025],[-75.9589249739088,44.3412382382203],[-75.9585105873565,44.3425516835479],[-75.9590371249788,44.3433665249436],[-75.9589362953763,44.3437680129744],[-75.9582492099481,44.3443274975856],[-75.9565090645466,44.344598742085],[-75.9552516737788,44.345383582262],[-75.9549292818981,44.3453277713066],[-75.9551457848647,44.3436063605072],[-75.9545680989668,44.3431610585696],[-75.9525576540895,44.3449110202881],[-75.9516288931038,44.3456570536335],[-75.9516689247278,44.3462374178562],[-75.9511448790321,44.3469440460086],[-75.9495771059606,44.3484201568714],[-75.9485246029428,44.3495678360418],[-75.9480497894162,44.3495672958047],[-75.9460219208157,44.3509931755944],[-75.9454351700182,44.3511511102826],[-75.9452136921816,44.3506937950279],[-75.9444522576889,44.3504750471093],[-75.9440047295907,44.3497855267897],[-75.9430402390129,44.3507343563431],[-75.9420042847592,44.3510220432045],[-75.9415727960805,44.3503773960214],[-75.9402049179227,44.3514555862347],[-75.939436910457,44.351290878083],[-75.9395477059692,44.3519877015354],[-75.9379785692551,44.3529414851174],[-75.9384804121903,44.3536710940178],[-75.936937447892,44.3548182130377],[-75.9366069280545,44.3556762307185],[-75.9358474959066,44.3560741210374],[-75.9351368557533,44.3556748311299],[-75.9331553087805,44.3566949624282],[-75.9315203444206,44.3568794335719],[-75.9306931793003,44.3573363646411],[-75.9287627231109,44.3572621261978],[-75.9278985644689,44.3592183532961],[-75.9262936568401,44.3608339938348],[-75.92587194273,44.3617647478251],[-75.9249687010849,44.3622537680024],[-75.9246735056993,44.3629539085775],[-75.9228776324109,44.3642109317681],[-75.923336987728,44.3642432126559],[-75.9234528721963,44.3644538436475],[-75.9227925269192,44.3654270384295],[-75.9216131233928,44.3667375534458],[-75.9211074419564,44.3666786321627],[-75.9196279418363,44.3676404388713],[-75.9192822009447,44.3673776454888]]],[[[-75.9026316217263,44.36860500266],[-75.9022583555561,44.3682568474614],[-75.9017523713875,44.3684319226062],[-75.9010120095747,44.3681091835307],[-75.9010710513468,44.3669788288387],[-75.9016622694662,44.3666095141616],[-75.901534085265,44.3662324015875],[-75.9018355374165,44.3656898245081],[-75.9026247639875,44.3658771244623],[-75.9038478292299,44.3657143494019],[-75.9031243135237,44.3665303798616],[-75.903489214582,44.3670226482376],[-75.9029028608399,44.3678330844708],[-75.9032510190979,44.3683074806051],[-75.9026316217263,44.36860500266]]],[[[-75.8736366660631,44.3682374500759],[-75.8744114603007,44.3679884063663],[-75.8744438769061,44.3687129050758],[-75.8733242661433,44.3701124936929],[-75.8735436616851,44.3703583921262],[-75.8731104302747,44.3709469224928],[-75.8724688418207,44.3709788612608],[-75.8720047272292,44.3712075011827],[-75.8717819701916,44.3712092111948],[-75.8716233870012,44.3710168618094],[-75.8712439646763,44.3708757225697],[-75.8716025380018,44.3700401869726],[-75.8721189821536,44.3699281868646],[-75.8727817313224,44.368950763735],[-75.8732495909904,44.3688166235964],[-75.8736366660631,44.3682374500759]]],[[[-75.9003246061429,44.3737910702704],[-75.8999277906375,44.3735196199179],[-75.8996061030359,44.3735671824292],[-75.8998326240146,44.3727145990349],[-75.9005390429844,44.372231839585],[-75.9014483716139,44.3725712472796],[-75.9013842238177,44.3731164414531],[-75.9012288745624,44.3735723289536],[-75.9003246061429,44.3737910702704]]],[[[-75.8957045850097,44.3718334046636],[-75.8965859095585,44.3716283854792],[-75.8967690086713,44.3717259741842],[-75.8963519469361,44.3738900025144],[-75.8943193352309,44.374810828347],[-75.8933020982745,44.3746477724737],[-75.8931422790023,44.3744824720014],[-75.8934417027579,44.374286552354],[-75.8941929799997,44.3740645683255],[-75.8941969730111,44.3733262847698],[-75.8946056013625,44.3727063580538],[-75.8957045850097,44.3718334046636]]],[[[-75.8620125345586,44.3743223027526],[-75.8627974950303,44.3731594471941],[-75.8638722214699,44.3740876000271],[-75.8630627702286,44.3747869898124],[-75.8622438758971,44.3749012459469],[-75.8620125345586,44.3743223027526]]],[[[-75.8510164907277,44.387009520026],[-75.8526472365989,44.3862995520896],[-75.8528155386623,44.3864603440276],[-75.8521569504899,44.3872485536289],[-75.8508398702647,44.3878391251421],[-75.8507633293109,44.3883213624058],[-75.8499360563927,44.3887371948418],[-75.8498445791507,44.3885173044233],[-75.8510164907277,44.387009520026]]],[[[-75.8486358878511,44.3983216664344],[-75.8482977988091,44.3978470301451],[-75.8482849816466,44.3978291200899],[-75.8507443407225,44.3947181770088],[-75.8519087504684,44.393953192661],[-75.8528425222568,44.3941622577951],[-75.8533015910114,44.3945639472433],[-75.850229835135,44.3975940026098],[-75.8492669381685,44.3982989427217],[-75.8492539251733,44.3982945390547],[-75.8486358878511,44.3983216664344]]],[[[-75.8375093978611,44.4062369114047],[-75.8384340894786,44.4060770363187],[-75.8388166747716,44.4062092569646],[-75.8386894382931,44.406804396983],[-75.8393916064349,44.4068352213707],[-75.8396149743269,44.4071936916603],[-75.8381801016118,44.4082306374552],[-75.8374786736818,44.4083618547012],[-75.836552320181,44.4067661417852],[-75.8375093978611,44.4062369114047]]],[[[-75.8141798894211,44.4107550517616],[-75.8130868705874,44.4105062973457],[-75.8122620015609,44.4106292411167],[-75.8124316744534,44.4102994159487],[-75.8141137518566,44.4097561883713],[-75.8163625413383,44.4099426106855],[-75.8141798894211,44.4107550517616]]],[[[-75.7981464707693,44.4146141640787],[-75.7984969763251,44.4145846899967],[-75.7988802102018,44.4149961335925],[-75.7986569483109,44.4155468897592],[-75.7974761290396,44.4165725338355],[-75.7955938674652,44.4171709382654],[-75.7951151938779,44.4171292763562],[-75.7959445194465,44.4161151249238],[-75.7972525150092,44.4155477579132],[-75.7981464707693,44.4146141640787]]],[[[-75.8100779806112,44.419688392149],[-75.80982255544,44.4189339603355],[-75.8101417502166,44.4187966374561],[-75.8107798154781,44.4192332307924],[-75.8113222038736,44.4191123172045],[-75.8108436201178,44.4180623815417],[-75.8119284472144,44.4174874378109],[-75.8123434131801,44.4179706331507],[-75.8125347687087,44.4191396575701],[-75.8120562711911,44.419620241392],[-75.8118967564478,44.4205126815807],[-75.8107802430761,44.4212409027381],[-75.8099825678499,44.4213546325613],[-75.8100779806112,44.419688392149]]],[[[-75.7900835485118,44.435057915672],[-75.7889816758827,44.4347324688585],[-75.787310999897,44.4350276642108],[-75.7865461931288,44.4343352336047],[-75.7863950929047,44.4329138044228],[-75.786035718282,44.4325561730257],[-75.7866726013606,44.4320340878749],[-75.7865279070228,44.4314949091381],[-75.7854174527877,44.4311379766108],[-75.7845518810957,44.4311799749366],[-75.7839927948157,44.4309767686008],[-75.784376078998,44.4308075646941],[-75.7840474105884,44.4303956967183],[-75.7847691934444,44.4295309199566],[-75.7852213200185,44.429401751045],[-75.7853449174218,44.4286671497548],[-75.7858976544094,44.4279925991408],[-75.7871399157512,44.4270656834115],[-75.7885402715998,44.4254939388229],[-75.7897213693489,44.4234780533478],[-75.7917636783675,44.4220413484254],[-75.7938064868495,44.4199563844672],[-75.794987244137,44.4194349490017],[-75.7960400813281,44.419436574196],[-75.7979223042749,44.4186581022397],[-75.8003470315,44.4162822391807],[-75.8007620819073,44.4162072881616],[-75.801081308125,44.4165291454873],[-75.8004427326204,44.4176500259513],[-75.8004427523834,44.4181091802619],[-75.8007941355933,44.4183137716774],[-75.8023569248116,44.4178345797118],[-75.8052281955812,44.4163737656461],[-75.8092163525233,44.4152470396286],[-75.8106519555687,44.415794986862],[-75.8110979897685,44.4161429190504],[-75.8110986626067,44.4165300450671],[-75.809854917248,44.4168540295674],[-75.8090572617848,44.4178140374084],[-75.8084825187677,44.4178091289671],[-75.8076531105541,44.4173288683989],[-75.8071107679726,44.4173957469062],[-75.8065050222985,44.418498420869],[-75.8067654834252,44.4189107101646],[-75.8055687585835,44.4196034377163],[-75.8056613470415,44.4200259232593],[-75.8045322338996,44.4202725109231],[-75.8042840302849,44.4208909766599],[-75.803562207903,44.4212111939669],[-75.8026473636177,44.4210556116345],[-75.8028821913178,44.4216886644784],[-75.8012738206836,44.4225148016738],[-75.8016453369357,44.4226967404266],[-75.8013240463895,44.4231131478559],[-75.7999859060608,44.4228659992501],[-75.7998375753428,44.4231281323192],[-75.8002925603561,44.4236425995588],[-75.8000959335134,44.4241616596659],[-75.798717349234,44.4238292528363],[-75.7985060870388,44.4239972945523],[-75.7980417173257,44.4241446083715],[-75.7976823651609,44.4238185240229],[-75.7977500065051,44.423367897325],[-75.7973967700708,44.4233163610005],[-75.7953852660798,44.4239246720178],[-75.7947803226012,44.4243295438871],[-75.7960709752891,44.425612434077],[-75.7964851085165,44.4269599818483],[-75.797282818777,44.4275305753061],[-75.797378062655,44.4280070665758],[-75.7944421688805,44.4308906104715],[-75.793564973887,44.4335976499863],[-75.7931511766295,44.4336590613872],[-75.7925231608211,44.4343971933068],[-75.7920628811375,44.4339277478553],[-75.7917489397087,44.4337093647032],[-75.7919872825165,44.4333340769705],[-75.791473711177,44.4334501964192],[-75.7900835485118,44.435057915672]]],[[[-75.790667896316,44.4368589500968],[-75.7901017358031,44.4362551892461],[-75.7893461556311,44.436363981051],[-75.7895129098973,44.43568759562],[-75.7897735147545,44.4356497704736],[-75.7909301765312,44.4358442846014],[-75.7912630517513,44.435981510991],[-75.7920339104696,44.4353504256214],[-75.7920560027374,44.4359939867427],[-75.7914958546487,44.4366145997552],[-75.790667896316,44.4368589500968]]],[[[-75.7861966829062,44.4372726358277],[-75.7865269152828,44.4368066931676],[-75.7872316238602,44.4367973060168],[-75.7884570992826,44.4369688600486],[-75.788704188088,44.4367150595021],[-75.7892155396905,44.4372156732189],[-75.7886010013063,44.4379987047456],[-75.7878040573087,44.4382158095884],[-75.7874746612637,44.4381910860875],[-75.7862950978372,44.4379606841838],[-75.7862268132992,44.4375560215439],[-75.7861966829062,44.4372726358277]]],[[[-75.7802055559684,44.4395782336775],[-75.7825682697944,44.437203179127],[-75.7828231811293,44.437471511918],[-75.7821526148208,44.4388265856504],[-75.7808752787588,44.440149819951],[-75.7804610565981,44.4402426989212],[-75.7802055559684,44.4395782336775]]],[[[-75.7774681611256,44.4427300636671],[-75.7764030646258,44.4426653306091],[-75.7750843144325,44.4430164590639],[-75.7752935724864,44.4418311347243],[-75.7768060470656,44.4400472008029],[-75.7777803059239,44.4393112850608],[-75.7787158195456,44.4390572875187],[-75.7785301467595,44.4401209154615],[-75.7792797207955,44.4406739574734],[-75.7797855486573,44.4407650147486],[-75.7792787551066,44.4412186461869],[-75.7796848232594,44.4412788784394],[-75.7797838202987,44.4415752971558],[-75.7791169101334,44.4418904806244],[-75.7783255725216,44.4431518292231],[-75.7765914970364,44.4443701099842],[-75.7757644486971,44.4441056767828],[-75.7766004182055,44.4436543105365],[-75.7774681611256,44.4427300636671]]],[[[-75.7769769228023,44.449656731561],[-75.7792761410091,44.4483085239421],[-75.77969101355,44.4484947374022],[-75.7792112619844,44.4492722900042],[-75.7792751555573,44.4498210334917],[-75.7785727044461,44.4502760041218],[-75.7774864813675,44.4504635105181],[-75.7769769228023,44.449656731561]]],[[[-75.7911178947811,44.4506033875546],[-75.7913586037514,44.4500210173117],[-75.7907350876043,44.4502369328121],[-75.7904471937254,44.4506710815175],[-75.7897450588212,44.4506219515719],[-75.7899549807301,44.4496796783631],[-75.7896693335377,44.4490334514659],[-75.7899150065982,44.4484690550336],[-75.7910230281955,44.4477230929887],[-75.7915333494304,44.4476475114818],[-75.7915655944575,44.4467829996357],[-75.7927791124051,44.4455681297204],[-75.7931301246108,44.4456196951654],[-75.7928747596267,44.4463057065351],[-75.7931940092006,44.4467356197579],[-75.7927466230363,44.4469908286939],[-75.7924913595617,44.4479739374442],[-75.7918208705084,44.4484017574012],[-75.7916668777091,44.449208598583],[-75.7921718656461,44.4493176125204],[-75.793001457116,44.4489787089062],[-75.7932887931411,44.4492557936897],[-75.7923307443822,44.4506039307072],[-75.7918841613117,44.4508051129343],[-75.7911178947811,44.4506033875546]]],[[[-75.8126013527359,44.4514689586437],[-75.8131759897518,44.4513297993246],[-75.8133674512815,44.4514274603319],[-75.8133674512815,44.4516525348067],[-75.8131762385851,44.4520230263185],[-75.8130806632288,44.4520417168522],[-75.8126333830656,44.4526391163041],[-75.8121866005692,44.453047447527],[-75.812026832501,44.4531386201758],[-75.811611942892,44.4531866021121],[-75.8114524326403,44.453070703998],[-75.8114522224345,44.4527736074641],[-75.811579726611,44.452565627128],[-75.811707454468,44.4522045949138],[-75.811867318656,44.451951368423],[-75.8126013527359,44.4514689586437]]],[[[-75.7977524229732,44.4787722274675],[-75.7979454448767,44.4777175263749],[-75.7983283850042,44.4771026336254],[-75.7988712953209,44.4770357926772],[-75.7994784558416,44.4773556234851],[-75.801043348016,44.4763992800802],[-75.8011705548501,44.4768485292898],[-75.8000210274934,44.4785221819094],[-75.7994144877086,44.4787065145946],[-75.7987433599531,44.4785942020265],[-75.7979453532485,44.4789149177842],[-75.7977524229732,44.4787722274675]]],[[[-75.7226447312257,44.5450039975665],[-75.7227400155278,44.5439950928824],[-75.7239227239562,44.5438165328408],[-75.7241793780227,44.5445891321634],[-75.723891957556,44.5450771033519],[-75.723412170956,44.5447740601395],[-75.7229968061383,44.545667961854],[-75.7226451004332,44.5459222682494],[-75.7221658474325,44.5459163046099],[-75.7220056068505,44.5455572129945],[-75.7226447312257,44.5450039975665]]],[[[-75.6732040882549,44.5765911869006],[-75.6744843312652,44.5757913787609],[-75.6754120052894,44.5764970896862],[-75.6753482832947,44.5767045283653],[-75.6749641627809,44.5770489064335],[-75.6739076173444,44.5773162398183],[-75.6731082775399,44.5769518588447],[-75.6732040882549,44.5765911869006]]],[[[-75.4407639188325,44.7406427607559],[-75.4414913296338,44.7405274218091],[-75.4423686863241,44.740974150377],[-75.4397034971655,44.7420782357381],[-75.4394928835538,44.7419980241589],[-75.4393630581307,44.7417959678442],[-75.439925128614,44.7411141204323],[-75.4407639188325,44.7406427607559]]],[[[-75.383493957799,44.7693141683799],[-75.3845765723451,44.7686218769285],[-75.3852492119653,44.7692227464574],[-75.3854631646148,44.7700322064039],[-75.3850803143188,44.7715413341308],[-75.3844270989701,44.7718405995632],[-75.383493957799,44.7693141683799]]],[[[-75.414087809565,44.765372552473],[-75.415331538754,44.7645758605913],[-75.4158428373558,44.7647810479979],[-75.4143180091448,44.76619090298],[-75.4144835677533,44.7665323794404],[-75.4149669395296,44.7667511753429],[-75.4148311618694,44.7673638058389],[-75.415054716611,44.7686817910735],[-75.414576821863,44.7691156227573],[-75.4132377939988,44.7718345819496],[-75.4075256361775,44.7721116504419],[-75.4056958514871,44.7714430090786],[-75.4056993342554,44.7712089444128],[-75.4107493061516,44.7678646589242],[-75.4130701486039,44.7657588217655],[-75.414087809565,44.765372552473]]],[[[-75.3650322518987,44.7802760471518],[-75.3742246574038,44.775520272612],[-75.3741570906197,44.7746067898259],[-75.374434264004,44.7745923797464],[-75.3753519263044,44.7753410371926],[-75.3743916209775,44.776897031676],[-75.3749877438983,44.7775162156232],[-75.3745438288243,44.7781298070313],[-75.3751544757067,44.7786724255569],[-75.3756340314396,44.7786168386966],[-75.3812586367584,44.7769913588019],[-75.3812822022632,44.7765546829325],[-75.3805363813885,44.7752878856564],[-75.3802227903026,44.7731419505266],[-75.3817189981887,44.7709584767915],[-75.3821748366015,44.7710289698662],[-75.3822436646202,44.7714608362822],[-75.3819518415103,44.7737843305507],[-75.3822903419807,44.7760427023924],[-75.3832065939261,44.7750809206969],[-75.3827305640807,44.773822234614],[-75.3834217179788,44.7732257851024],[-75.3843395482642,44.7737493203822],[-75.3858882662719,44.7732895003445],[-75.3877006901211,44.7734003928339],[-75.3879906447353,44.7732328720172],[-75.3878240979799,44.7724907710836],[-75.3883745271955,44.7721783329746],[-75.3892374991631,44.7718873323441],[-75.3890805194655,44.771568295544],[-75.3892681703418,44.7713426061193],[-75.3878564615846,44.7666933626139],[-75.3877684976537,44.7642496124728],[-75.3884501599525,44.763558642479],[-75.3897649970844,44.7634191349779],[-75.3905911677698,44.7630787384505],[-75.3908396220144,44.7627403133627],[-75.3914615176008,44.7626166571796],[-75.391886562664,44.7626962189006],[-75.3920852421571,44.763051117389],[-75.3932941490524,44.7630154565094],[-75.3946691706134,44.7637083732456],[-75.3954524844731,44.7631115316271],[-75.3953026814163,44.762459402897],[-75.396415165844,44.7626445916237],[-75.3970457957498,44.7621292871046],[-75.4008266879997,44.7616029726594],[-75.4053473365978,44.7606598175433],[-75.4065012055123,44.7596609940848],[-75.4066774379031,44.7587286562295],[-75.4100774292011,44.7572671771425],[-75.4103175821142,44.7569467423396],[-75.4107717424741,44.7565715263089],[-75.4157537154965,44.7518994502364],[-75.4163657053602,44.7521762851685],[-75.4113327834882,44.7568980825123],[-75.4105859259576,44.7575894249559],[-75.4106837264409,44.7579041445898],[-75.4125830874467,44.7576992580801],[-75.4136783439838,44.7569211226094],[-75.4142121858077,44.7552763157322],[-75.4147738089301,44.7548061719382],[-75.4166825887716,44.7551548086526],[-75.4182802460977,44.7544693174371],[-75.4180774666937,44.7538939282911],[-75.4183818653193,44.7532401651161],[-75.4181774366084,44.7521111559125],[-75.4185582360506,44.7509980085674],[-75.4184009069084,44.7502649171604],[-75.4170856763144,44.751498505934],[-75.4168057109662,44.751765087727],[-75.4161917501987,44.7514882623084],[-75.4178407192938,44.749942887518],[-75.4184911004578,44.7495804097559],[-75.4194814050237,44.7493832260177],[-75.4203422776284,44.7498481889379],[-75.4204020650022,44.7516033790702],[-75.4187502482476,44.7553587983503],[-75.404171721267,44.7670554230758],[-75.402082362087,44.7683185749656],[-75.3965231253748,44.7707415373474],[-75.3942182235272,44.7720052916333],[-75.393694717719,44.7720341022385],[-75.3837609326099,44.7768839625578],[-75.3755632639582,44.7792112028937],[-75.3692748638315,44.7817882578832],[-75.3616819401308,44.7873802618046],[-75.3612942730682,44.7847259029558],[-75.3628785975989,44.7822003281534],[-75.3650322518987,44.7802760471518]]],[[[-75.094014534471,44.8767863128174],[-75.0946395256519,44.876007155561],[-75.0952126436166,44.8768258526729],[-75.0956683841131,44.878859882313],[-75.0946565963372,44.8785906518294],[-75.094088514328,44.8779474825439],[-75.094014534471,44.8767863128174]]],[[[-75.2020809504623,44.8718549571065],[-75.2054246802741,44.8709668821845],[-75.2106009175699,44.8688421339099],[-75.2138158640043,44.8678730309396],[-75.2142019940494,44.8678813171724],[-75.214234132177,44.8684303680043],[-75.2155852037542,44.8685628800898],[-75.2158098400674,44.868130373461],[-75.2167420272276,44.8681736354755],[-75.2180923280503,44.8676939964494],[-75.2212429766699,44.8673279272636],[-75.2219181603189,44.8665974837591],[-75.2223031980126,44.865318484161],[-75.2239745369549,44.8644240718475],[-75.2281835842355,44.8615172370978],[-75.2299513896629,44.8608565938142],[-75.2327480508566,44.8605089150457],[-75.2337455374531,44.8608759725252],[-75.2358666628582,44.8607366263692],[-75.2365746395066,44.8609152125802],[-75.2372178610978,44.8613099720571],[-75.2377961479687,44.8613087807156],[-75.2378612425892,44.8617407343366],[-75.2399514821181,44.8621504876332],[-75.2412058293937,44.8628140061597],[-75.2414950141517,44.8636595724831],[-75.2392477113818,44.8656086507228],[-75.237736392036,44.8657468040241],[-75.2366761266759,44.8662890938795],[-75.2360004785978,44.8662904786704],[-75.2354211424947,44.8658595753436],[-75.2345531857756,44.8656543015927],[-75.2302127832409,44.8654289985992],[-75.2297305316638,44.8659070564974],[-75.2276090693905,44.8670004817197],[-75.2258411669451,44.8670939739299],[-75.2226907788369,44.8689274650157],[-75.2227880538058,44.8695213973312],[-75.2217916317128,44.870459505146],[-75.221182482322,44.8725130862273],[-75.2202183564602,44.8740452371728],[-75.2161026225781,44.8758263709511],[-75.2138525709634,44.8765597064114],[-75.2126942913209,44.8763998133416],[-75.211215181968,44.8757183916078],[-75.2100249474542,44.8748293844939],[-75.2095104903758,44.8739391400991],[-75.2093812479592,44.8727961456558],[-75.2086735991958,44.8722933251109],[-75.2067760114644,44.8718106410625],[-75.2038176014173,44.8720409439343],[-75.2022098739769,44.8727279070146],[-75.2024357652366,44.8750499762229],[-75.2021462148643,44.8761757077943],[-75.2016639614906,44.8767436639278],[-75.2009568068006,44.8772670002457],[-75.1997989026539,44.8776560853317],[-75.1977737586436,44.8794239207832],[-75.19735545364,44.8795146537851],[-75.1964226924563,44.8786700740428],[-75.1971620760038,44.8778406504385],[-75.1982555260288,44.8773436806988],[-75.1986733863664,44.8753265605582],[-75.1991557529279,44.8747856220286],[-75.2001847254751,44.8746488170816],[-75.2014064405497,44.8735304708203],[-75.2020809504623,44.8718549571065]]],[[[-75.1577496652145,44.8828610714207],[-75.1578619743879,44.8818482182724],[-75.1586172266748,44.8812440678107],[-75.1591308339469,44.8813873922134],[-75.159688672467,44.8813596196334],[-75.1600299963424,44.8818632488969],[-75.1586455846917,44.8820406868594],[-75.1587618428591,44.8825761335254],[-75.1594801779811,44.8824896304801],[-75.1600425332305,44.8825158602606],[-75.160768571406,44.8822177964725],[-75.1611227519697,44.882784416779],[-75.159630525417,44.8834616157042],[-75.1594379203319,44.8837769429887],[-75.158021232213,44.8843144885384],[-75.1575042796148,44.8845402363387],[-75.1572543135055,44.8847251122428],[-75.1563639932274,44.8850188744501],[-75.1558943522003,44.8846144267256],[-75.1570413112736,44.8841177809089],[-75.1576369302396,44.8838649233037],[-75.1590205019654,44.8832329084109],[-75.1577496652145,44.8828610714207]]],[[[-75.1659939878704,44.8898529357905],[-75.1658128282203,44.8896146483089],[-75.1654317961145,44.8897727239361],[-75.1650533637331,44.8893321769388],[-75.1659670258355,44.8888942855943],[-75.1664516022526,44.8888260768629],[-75.1667205300009,44.8893027840226],[-75.1667582790057,44.8901578982861],[-75.1660357298867,44.890185940916],[-75.1659939878704,44.8898529357905]]],[[[-75.1446649377366,44.888297195352],[-75.1447189246886,44.8879010502086],[-75.1448322327886,44.8877973882733],[-75.1450230313617,44.887819654386],[-75.1452968872676,44.8879768432861],[-75.1461457502954,44.8879847791251],[-75.1470428726168,44.8876820867765],[-75.1486015565343,44.8877971241476],[-75.1489519713603,44.8875716309793],[-75.149746998353,44.8877236373221],[-75.1488718613999,44.8885529267277],[-75.148616733571,44.8896469679939],[-75.1488778657393,44.8908213637858],[-75.1476638932441,44.8922496947067],[-75.1469409668326,44.8921470919405],[-75.1467936709738,44.8910580647855],[-75.1449547620951,44.8903492361573],[-75.143279890977,44.8901667795462],[-75.1434091360886,44.8894824857282],[-75.1446649377366,44.888297195352]]],[[[-75.1269353318434,44.8963384801468],[-75.1290280624006,44.895737561847],[-75.1298546876335,44.8960066942684],[-75.1273414538952,44.8975757770179],[-75.1258046134121,44.8970643488231],[-75.1254319985205,44.8964571325],[-75.1269353318434,44.8963384801468]]],[[[-75.1092632819087,44.9071809813662],[-75.1091334816384,44.9067985289702],[-75.1081044740568,44.9069165088688],[-75.1073954886003,44.9058909656221],[-75.1084562947463,44.9046297422978],[-75.1106067941628,44.9037680586642],[-75.1112652700459,44.9042625286634],[-75.1102493104938,44.9067479709904],[-75.1092632819087,44.9071809813662]]],[[[-75.0956238618109,44.9124724424679],[-75.0974893671104,44.9120388217793],[-75.100224279908,44.9107582671034],[-75.1021855528032,44.9086321628607],[-75.1041469361912,44.9074872128664],[-75.1063343087552,44.9069811459516],[-75.1067211170283,44.9072148384966],[-75.1071397993244,44.9083756777821],[-75.1059505484658,44.9091779167237],[-75.1053727529734,44.9105286981546],[-75.104151787992,44.9121906101319],[-75.1029135582892,44.912691302604],[-75.1013614087172,44.912571134671],[-75.10059074134,44.9122162321779],[-75.099987589102,44.9123247696468],[-75.0988786853591,44.913216881995],[-75.0986202292721,44.9139237352875],[-75.097240198705,44.9148880733369],[-75.0967037400887,44.915572647535],[-75.095704851222,44.9160415572387],[-75.0945316703256,44.9155429143373],[-75.094370277205,44.9146968832764],[-75.0947229836333,44.9135083719787],[-75.0956238618109,44.9124724424679]]],[[[-75.0012811728069,44.9392094776108],[-75.001861027238,44.9391014621137],[-75.0022793187669,44.939371513193],[-75.0022785848433,44.9399206141971],[-75.0013756585068,44.9415949176842],[-75.0007957843128,44.9417749436359],[-75.0007647924355,44.9405867247886],[-75.0014095645189,44.9398756015395],[-75.0012811728069,44.9392094776108]]],[[[-74.9913394582687,44.9433590486065],[-74.9917260895738,44.9433050594108],[-74.9915349882684,44.9452944162459],[-74.9918249330011,44.9457535163867],[-74.9912782039461,44.9462125708929],[-74.991407299039,44.9468066874803],[-74.9910546006955,44.9480849026765],[-74.9902178775005,44.9482468807851],[-74.9900245061525,44.9486159362016],[-74.9897028149577,44.9486159139495],[-74.989445317373,44.9484988741505],[-74.9893796469325,44.947724727022],[-74.9898305383231,44.9472386692836],[-74.9899560401548,44.9444031554961],[-74.9913394582687,44.9433590486065]]],[[[-74.9923134036149,44.9512445481762],[-74.9919584765512,44.950461388125],[-74.9933118307476,44.9506954899968],[-74.9938593422352,44.9511275887554],[-74.9944068833671,44.9509025645982],[-74.9943086678622,44.9497323474503],[-74.9936969780358,44.9494802813011],[-74.9940503842517,44.9490662177252],[-74.9937279339805,44.9482470562599],[-74.9941122898529,44.9463027121246],[-74.9937558302633,44.9444753643586],[-74.9940759691693,44.9429901011831],[-74.9947185313971,44.9415948630009],[-74.9950726661467,44.9415228584392],[-74.9950734494776,44.9419819429611],[-74.9965224814382,44.9433052120107],[-74.9964923788931,44.9440793538883],[-74.9960098802793,44.9442683822893],[-74.9957848666736,44.9450425213517],[-74.9952088130145,44.9482921062228],[-74.9951477437449,44.9514696866977],[-74.9937634336038,44.9518387156705],[-74.9931509433785,44.9513526044014],[-74.9923134036149,44.9512445481762]]],[[[-74.9632149656243,44.9570770708743],[-74.9635950059901,44.9569826671552],[-74.9644489346177,44.9582926609423],[-74.9642243450169,44.958850698886],[-74.9615526619371,44.9591874506822],[-74.9614489694039,44.9583457620001],[-74.9617091053405,44.9580172829607],[-74.9631361429497,44.9577026635406],[-74.9632149656243,44.9570770708743]]],[[[-74.9251233361191,44.9651653026144],[-74.9275809767178,44.9646312308886],[-74.9290906314854,44.9647896741521],[-74.9288352422468,44.9652711118769],[-74.9225748938115,44.9663068760774],[-74.9231260659339,44.965452074793],[-74.9237021833733,44.9652139030523],[-74.9251233361191,44.9651653026144]]],[[[-74.9139625412651,44.9680080535919],[-74.8181408390278,44.8924605069748],[-74.2823357919964,44.9022553329313],[-74.2685085647154,44.7870607571969],[-73.991964024486,44.8042319944729],[-73.9712231840137,44.6519660997231],[-73.7914692320561,44.6568841596043],[-73.78109881182,44.5929168538195],[-73.6566537689862,44.5978399180318],[-73.6289993144243,44.4499665623267],[-73.8951734353159,44.430221755008],[-73.9470255364966,44.1431722787205],[-74.2857925981429,44.10346916985],[-74.6522141143511,44.0836076087997],[-74.852708906781,44.0513183458185],[-74.8077704187916,43.7923702157676],[-74.8070667351919,43.7927185269841],[-74.7628319308022,43.4896758270865],[-74.8596225199724,43.3364997313422],[-74.7109798296215,43.293742285246],[-74.7006094093854,43.1980580442482],[-74.7662887378471,43.0971754364138],[-74.7559183176109,43.0618271916223],[-74.7386342832851,43.0138219567752],[-74.780115965128,42.7783072688666],[-74.7628319308022,42.6538571532826],[-74.9045610079618,42.6080781094821],[-74.9322154625237,42.534252167915],[-74.7213502498577,42.5240624217891],[-74.6349300809237,42.5546266725828],[-74.5934483999791,42.5087746862485],[-74.6349300809237,42.483286816069],[-74.5381394917535,42.4195216965423],[-74.410237641875,42.4067608832561],[-74.2581381444793,42.4322799140814],[-74.2339404969622,42.3505824609128],[-74.1406067148369,42.2790099684728],[-74.1302362946007,42.2022348413124],[-74.2304836908157,42.1919911004964],[-74.3722127670769,42.2201573930858],[-74.396410414594,42.271336659698],[-74.4897441976177,42.2917967400143],[-74.4932010037641,42.1868686067473],[-74.3203606658962,42.0868970268273],[-74.4586329360109,41.991906334481],[-74.5588803322259,42.0407030753926],[-74.6729549557217,41.9790588639227],[-74.5485099119897,41.8993466892354],[-74.5934483999791,41.8530164809054],[-74.5208554583261,41.8040759388223],[-74.555423525181,41.7447820714853],[-74.4482625157747,41.6828517764273],[-74.6591277284408,41.4837560476062],[-74.7006094093854,41.5717441326628],[-74.7766591580832,41.5795020417524],[-74.9401455356287,41.4833427193159],[-74.9410471037124,41.4834512358623],[-74.9425397776262,41.4835825793362],[-74.9438551232046,41.4836057301353],[-74.9444353567247,41.4835654704455],[-74.9447217477221,41.4835250707531],[-74.9451860132306,41.4833991822642],[-74.9455417236252,41.4832732417119],[-74.9458360530348,41.4831382642271],[-74.946207595338,41.482877216601],[-74.946470946345,41.4826296308654],[-74.9467651239393,41.4822199227689],[-74.947069551311,41.4816300692805],[-74.9473179741146,41.4813194221141],[-74.9478516991575,41.4809053137575],[-74.9532579060644,41.4781918089297],[-74.9553033223557,41.4772332972979],[-74.956501328195,41.4768013811347],[-74.9571878997868,41.4765944575561],[-74.9576917154224,41.4765450960026],[-74.9622840648515,41.476681744246],[-74.9653066676105,41.4768628046934],[-74.9667228769273,41.4770118274021],[-74.968832906342,41.4773862012105],[-74.9722202637339,41.4780851034383],[-74.9733516020027,41.478418633399],[-74.9740813654917,41.478680007229],[-74.9763883199897,41.4791893957546],[-74.9808201584439,41.4798612182553],[-74.9817618255253,41.4801090642528],[-74.9824407281996,41.4803974004792],[-74.9827307573739,41.4806001090321],[-74.9829320806089,41.4807937967612],[-74.9833496858249,41.48124422661],[-74.984316222765,41.4824468482197],[-74.9845250109999,41.4827666391095],[-74.9847184425351,41.4831359687144],[-74.9852672107658,41.4846492888532],[-74.9854295309477,41.4852392965558],[-74.9855996664727,41.4860409809713],[-74.9856306574516,41.4863832686749],[-74.9855916400256,41.4867570742241],[-74.9854211523611,41.4874506299125],[-74.9852326301189,41.4884099042484],[-74.9851966040828,41.4887837102175],[-74.9849466065325,41.4900492300368],[-74.9841273016708,41.4923415301885],[-74.9835643122109,41.4935169322964],[-74.9830888968131,41.4947373807886],[-74.9826205026475,41.4962235474063],[-74.9822850070418,41.4976872123697],[-74.9822384078347,41.4982997126706],[-74.9822228014033,41.499200455694],[-74.9823842942368,41.5001012231936],[-74.982878686545,41.502285621998],[-74.9832750492995,41.5043168770366],[-74.9834733245507,41.5050014761467],[-74.9838778808389,41.5058662522427],[-74.9846736327721,41.507226488806],[-74.9849510280403,41.5075552969519],[-74.986192927361,41.5083931378974],[-74.9871132846072,41.5087670451573],[-74.9884721706291,41.5090554126007],[-74.9901452702694,41.5091996664745],[-74.9913506836165,41.5092177628497],[-74.9925486202856,41.5091277551793],[-74.9954522852026,41.5086414613491],[-74.9978017039624,41.5080920390782],[-74.9985629920297,41.5078713561224],[-74.9993340124448,41.5075741041787],[-74.999611487663,41.5075065449243],[-75.0002274795213,41.5073939482527],[-75.0006768338945,41.5074119590243],[-75.0015755480306,41.5076416377992],[-75.0024098583507,41.5078217701636],[-75.0031415702856,41.5080154114927],[-75.0034752333282,41.5083126486288],[-75.0036422633772,41.5086504258631],[-75.0037576196361,41.5090287378521],[-75.0038093212739,41.5094926245122],[-75.0038093895459,41.5107761989134],[-75.0034885373775,41.5124155821953],[-75.0031159638084,41.5134784839029],[-75.0026669768463,41.5144648228697],[-75.0020487050638,41.5157078773577],[-75.0010090820905,41.5174598610602],[-75.000833434503,41.5178066533594],[-75.0007795077382,41.5184596997795],[-75.0008180876847,41.5190586995587],[-75.0009102251884,41.5194009842911],[-75.001152180122,41.5200765450392],[-75.0015113723867,41.520801645196],[-75.0022177886615,41.5220176456104],[-75.0032444767929,41.5232786690057],[-75.0044551111485,41.5244856296171],[-75.0054095459851,41.5251746593108],[-75.0067483627452,41.5264176190668],[-75.0081374150926,41.5275839955829],[-75.0093957356167,41.528376554539],[-75.0102307520127,41.5288403657537],[-75.0115790055748,41.5295248023573],[-75.0130044648441,41.5302677627215],[-75.0141475054661,41.5309927271598],[-75.0149567366201,41.5314294849147],[-75.0160375742986,41.5319022281386],[-75.0170108845359,41.5322533759183],[-75.0173356830033,41.5323118748095],[-75.0185531867759,41.5324332804169],[-75.0199137921732,41.5325456405358],[-75.0207229811064,41.5326625913367],[-75.021339241561,41.5327570542639],[-75.0220971304033,41.5329235465687],[-75.0227778485727,41.5330765375747],[-75.0232529235091,41.5332701020053],[-75.0238310774293,41.5336257773554],[-75.0241136173491,41.5338464007452],[-75.0245116626481,41.5343957725117],[-75.024807665619,41.5355351564489],[-75.0249491924971,41.5363097705982],[-75.0251037871676,41.5379400933052],[-75.025129747581,41.5382283274074],[-75.0250528769455,41.5390300114416],[-75.0249376518407,41.5394669005074],[-75.0247321110155,41.5398407573478],[-75.0243213069444,41.5403452661684],[-75.0234366191032,41.5410210163686],[-75.0222154591874,41.5416743072189],[-75.0214066502416,41.5419266743134],[-75.020160614179,41.5422151447999],[-75.0190434378506,41.5424585425579],[-75.0182855175673,41.5425532480185],[-75.0175920612871,41.5427380132287],[-75.0169885712826,41.5431164211233],[-75.0166289837592,41.5434902857763],[-75.0162952784958,41.5440037620484],[-75.0161413620533,41.5443100388793],[-75.0160002573834,41.5449225686913],[-75.0159487327137,41.5456747008566],[-75.016115960392,41.546165584674],[-75.0162059652953,41.5464943449158],[-75.0164500133034,41.5470032316762],[-75.0169841937922,41.5479624486636],[-75.019226239621,41.5526369654483],[-75.0202286588668,41.5539698948364],[-75.0214496301363,41.5554198710805],[-75.0220276690722,41.5559917334421],[-75.0231587171852,41.5572660629361],[-75.0242895011935,41.5587205300654],[-75.02606315645,41.5613593201487],[-75.0277732208659,41.5639485563214],[-75.0280986490523,41.564209691794],[-75.0284803054873,41.5644843238874],[-75.0289042743688,41.5646643652256],[-75.0290999400141,41.5647183597851],[-75.029512638632,41.5648308459535],[-75.030022005856,41.5648802531284],[-75.0306261408509,41.5648080313582],[-75.0310241565055,41.5647763964593],[-75.0316163376189,41.564789744188],[-75.0325147984301,41.5649516232378],[-75.0332213979612,41.5651721007665],[-75.0343651509473,41.5656491549385],[-75.0350718277335,41.5659867182211],[-75.0363300413581,41.5666753918267],[-75.0378867885078,41.5676386801384],[-75.0391076870138,41.568502981403],[-75.0391733206234,41.5685705146071],[-75.0395449204188,41.568831601828],[-75.0405865628048,41.5700787657753],[-75.0415896306342,41.571316926966],[-75.0424254285645,41.5723524737367],[-75.0435829922497,41.5741355092578],[-75.0442527015654,41.5761349022786],[-75.0447808462737,41.5782739619966],[-75.0450773666743,41.579354736634],[-75.0455923843014,41.5808722838519],[-75.0461072069941,41.5820790720047],[-75.0477512973389,41.5838618645488],[-75.0486591599178,41.5846586373679],[-75.0497207071739,41.585387779986],[-75.0503119172085,41.5858378912856],[-75.051537535463,41.5868101451723],[-75.0522151158172,41.5873998223646],[-75.0530359046957,41.5879579035469],[-75.0545819340457,41.5886462407894],[-75.0564715941448,41.5890821804199],[-75.0572816894781,41.5893519983125],[-75.0586316875685,41.5900223651734],[-75.05966559546,41.5906478444498],[-75.060354862896,41.5911834228252],[-75.060522260356,41.5913679865357],[-75.0611271589188,41.5922819161367],[-75.0613459777422,41.5925159917365],[-75.0617576693488,41.5929030879017],[-75.0629814128193,41.5943345975631],[-75.0648566935856,41.5962971627475],[-75.0658242824529,41.5975576458316],[-75.0665852525165,41.5987822115769],[-75.0671886437064,41.5995384796949],[-75.0677934551326,41.6002046699254],[-75.0682825842116,41.60068627442],[-75.0689259710928,41.6012848799843],[-75.069796375721,41.6020004396993],[-75.0707531318043,41.602787998228],[-75.0725427393436,41.6041695112247],[-75.0739237598541,41.6053260759538],[-75.0743165742632,41.6057942055777],[-75.0746896841266,41.6064064649278],[-75.0747274421146,41.6072801573703],[-75.0745681968659,41.6077351347972],[-75.0743904490172,41.608082035365],[-75.0742125242005,41.6082758097564],[-75.0739096877452,41.6084516499668],[-75.0733752171006,41.6087582459861],[-75.0725733916578,41.6091190532206],[-75.0717535091794,41.6094393338326],[-75.0710130126193,41.6096514699657],[-75.0704168726305,41.6098319865264],[-75.0690799710786,41.6099904320206],[-75.0682245359762,41.610053998038],[-75.0672448117678,41.6099780164869],[-75.0663524406359,41.6098659461215],[-75.0656213224874,41.6097312581826],[-75.0651658577737,41.6095828970079],[-75.0646316485389,41.6094480895942],[-75.0642088932814,41.6093762696118],[-75.0636534155339,41.6093495583262],[-75.0631114789909,41.609363370364],[-75.0619603104122,41.6096162079122],[-75.0609070932338,41.6099455446664],[-75.0603271166318,41.6101980595548],[-75.0599350280615,41.6104369618012],[-75.0597394208067,41.610626219676],[-75.0595967422884,41.610864989366],[-75.0595080336541,41.611063198319],[-75.0595397531668,41.6112973737117],[-75.0596329758354,41.6115225100156],[-75.0601153361087,41.612364447035],[-75.0606152036485,41.6130622544627],[-75.0609007861622,41.6136250635747],[-75.0611027184549,41.6141744060089],[-75.0614014037953,41.6150975017025],[-75.0615624816072,41.6156693837711],[-75.0615683763521,41.6159531126935],[-75.0615449967985,41.6162188431122],[-75.0614027512682,41.6165251705188],[-75.06124240199,41.616727922137],[-75.06031609071,41.6173183985108],[-75.0596921721176,41.6175844443175],[-75.059424824506,41.6176926726284],[-75.0589613234637,41.6178280235758],[-75.0570007422713,41.6183379360742],[-75.0556100379221,41.6185502961235],[-75.0549862953995,41.6186181537341],[-75.0542015855578,41.6186320403457],[-75.0535417190827,41.6185647972318],[-75.0526679502637,41.6183805530641],[-75.0520439463314,41.6181241294359],[-75.0513838992949,41.6178181783172],[-75.0509913642618,41.6175886665118],[-75.0504385006118,41.6171475514897],[-75.0498676814359,41.6167604859082],[-75.0491006145063,41.6162654131329],[-75.0485835595002,41.6160269394568],[-75.0481374678082,41.6158785074692],[-75.047638143749,41.6157706287009],[-75.0470499655286,41.6157168292766],[-75.0465151086084,41.6157440705001],[-75.045962332095,41.61589291717],[-75.0455168638338,41.6160912584235],[-75.0450714611496,41.6163886784958],[-75.0446973757158,41.6167626322905],[-75.0443945994476,41.6172041119265],[-75.0441632626007,41.6179022732982],[-75.0441283962896,41.6190372154078],[-75.0441999201525,41.6194109940153],[-75.0443247230949,41.6198027660454],[-75.0443788178447,41.6204692903257],[-75.044325748971,41.6213114993825],[-75.0441659081392,41.6218069665601],[-75.0437383594713,41.6225052023349],[-75.0436316414122,41.622793478944],[-75.0435606161143,41.6231673123328],[-75.0435756431324,41.6231988320014],[-75.0436678246535,41.6236086319535],[-75.043917714406,41.6242390509867],[-75.0442211985467,41.6247883822534],[-75.0444922508106,41.6250810160737],[-75.0448184973622,41.6254411827232],[-75.0451143988235,41.6258554042822],[-75.0453660483757,41.6262876572483],[-75.0457271306957,41.6270891680171],[-75.046011256142,41.6278096420499],[-75.0465315630495,41.6288047432121],[-75.0473705940164,41.6300609231191],[-75.0481736061337,41.6317764870479],[-75.0485406101481,41.6328842350023],[-75.0487168245726,41.6337218432245],[-75.0488342325835,41.6346855787772],[-75.0488712934789,41.6355727865714],[-75.0487986206708,41.6377300759795],[-75.0488360606552,41.6381218790302],[-75.0489756166295,41.6390856045144],[-75.0491276493048,41.639671016283],[-75.0493941345339,41.6407562852258],[-75.0493797884388,41.6416300030951],[-75.0493016089579,41.6424497037508],[-75.0491142203896,41.6432559409686],[-75.0488471072382,41.6438415323544],[-75.0483995827333,41.6445487987213],[-75.0477291897997,41.6453192079617],[-75.0477407645922,41.645751555293],[-75.047858180688,41.6462063761033],[-75.0481954828058,41.6466295781023],[-75.0487084837151,41.6471427775742],[-75.0490777757386,41.6476740513879],[-75.0492220550546,41.648399078697],[-75.0492665827467,41.6492187261315],[-75.04924501779,41.649979854038],[-75.0491368058325,41.6512994728283],[-75.0490773050213,41.6520245875388],[-75.0488218133748,41.6541414169766],[-75.0487711995967,41.6552133084774],[-75.0488652666817,41.6575281475661],[-75.0490074026175,41.658870174958],[-75.0492277737298,41.6599239349218],[-75.0495995325269,41.6611262487415],[-75.0500600107382,41.6624861505998],[-75.0504092685341,41.6631930700014],[-75.0508274720281,41.6637333222216],[-75.0529392585475,41.6659976972285],[-75.0533723040066,41.6667360932317],[-75.0537687565927,41.6676996879805],[-75.054201657423,41.6682399205056],[-75.0545115582297,41.6684784660921],[-75.0548476431303,41.6686044070524],[-75.0553962038502,41.6687302444258],[-75.0557716196889,41.6687525800725],[-75.0565764778441,41.6687611908867],[-75.0570307594765,41.6688195124806],[-75.0577566467351,41.6690938699381],[-75.0585120688036,41.6696429296116],[-75.0589925560895,41.6704398280558],[-75.0593414312032,41.6713944193881],[-75.0594520165096,41.6724482146144],[-75.059370789045,41.673119299437],[-75.0592354362879,41.6737228582098],[-75.0590277952015,41.6741012715765],[-75.058779167582,41.6744121509685],[-75.0582930029435,41.6748492535043],[-75.057672805173,41.6752909250896],[-75.0571505174803,41.6756514787439],[-75.0548734508301,41.6769361333257],[-75.0524711446563,41.6785315513114],[-75.051854355094,41.6791037951392],[-75.0513930450428,41.6797390172536],[-75.051279922894,41.6800768405748],[-75.0512006654348,41.6805092256455],[-75.0511446087645,41.681319904935],[-75.0512038948783,41.6822251088478],[-75.051499392996,41.683170739396],[-75.0519958352597,41.6841793283676],[-75.052194919893,41.6847421914359],[-75.0523533243186,41.6860751940345],[-75.0526386903383,41.6879125446323],[-75.0530402920675,41.6890562807564],[-75.0542811789869,41.6915236859775],[-75.0552063215587,41.6930995114613],[-75.0560671627224,41.694526741618],[-75.0571926628402,41.6962150424568],[-75.0584061448552,41.6979483236168],[-75.0596243349407,41.6994203785681],[-75.0601352050461,41.6999200132711],[-75.061179841517,41.700878729469],[-75.0623318976312,41.7018058529239],[-75.0636233147853,41.7027148725422],[-75.0650469882038,41.7036328093961],[-75.0660374086523,41.7043348055251],[-75.0667347618242,41.7049243745167],[-75.0669836319888,41.7051358992675],[-75.067644971701,41.7057525051421],[-75.0681588394846,41.706495297177],[-75.0685777203083,41.7072696684839],[-75.0688625805765,41.7081071698202],[-75.0689551887974,41.7086520512578],[-75.0689476384574,41.7093230944818],[-75.0687727652177,41.7101923969053],[-75.0686682246748,41.7104401587218],[-75.0684655988827,41.7110032319191],[-75.0680901390266,41.7115348820907],[-75.0676146993743,41.7120170509994],[-75.06687515952,41.7124903652247],[-75.0662233096105,41.7127654645784],[-75.0651074484157,41.7129687683586],[-75.06360757181,41.7130822024351],[-75.0621755584324,41.7130649759024],[-75.0585256423476,41.7125895207064],[-75.0542194889814,41.7116278729237],[-75.0531420056122,41.7114707536175],[-75.0524297457965,41.7114260462519],[-75.0515736540256,41.7114309402709],[-75.0512420624981,41.7115616938612],[-75.0509409283502,41.7117329658352],[-75.0504105621082,41.7122781384236],[-75.0500909253604,41.7128187122258],[-75.0499012604612,41.7133592285064],[-75.0496660204344,41.714728428499],[-75.0498424818955,41.7155750299837],[-75.0502025167799,41.7167322999154],[-75.0505904569303,41.7175247636303],[-75.0509308088285,41.7179839796616],[-75.0516121854631,41.7192581945314],[-75.0518693371963,41.7199516333226],[-75.0519358664263,41.7204605102732],[-75.0519820155774,41.7217890520645],[-75.0530683365724,41.7251932761876],[-75.0541640584368,41.7298179581078],[-75.0542747704057,41.7310023510741],[-75.054768242839,41.7337898411762],[-75.0548822803711,41.7353300153949],[-75.0547870275099,41.7364514560401],[-75.0543888807013,41.7380233992574],[-75.0538014130482,41.7401763933837],[-75.0532321452627,41.7425725689948],[-75.052857031258,41.7448290398522],[-75.0529258637683,41.7458152932228],[-75.0530560341445,41.7501026431809],[-75.0535316705279,41.7525568749773],[-75.0536775919644,41.7531017407333],[-75.0538466450194,41.7534349258291],[-75.0546600174069,41.754700046668],[-75.0556275586634,41.7559831001078],[-75.0564005895081,41.7570365595027],[-75.0572308385448,41.7585718667146],[-75.0581636841702,41.760444884055],[-75.0586622329832,41.7613408413305],[-75.0600914543968,41.7636639431943],[-75.060570702906,41.7643707510993],[-75.0609033912765,41.7647353642621],[-75.0610553925108,41.7648568794113],[-75.0621408601062,41.7653291691654],[-75.0624293432799,41.7654551121107],[-75.0647001810119,41.7666157702608],[-75.0652892234117,41.7668901534242],[-75.0655893334802,41.7669755492199],[-75.0660860856626,41.7670698380315],[-75.0686607138608,41.7674105921096],[-75.0714439120033,41.7683186079961],[-75.0724811697124,41.7685971760703],[-75.0727095304407,41.7687231313604],[-75.0730102082444,41.7689616285353],[-75.0731826425582,41.7691686826553],[-75.0733993045266,41.7695828719695],[-75.0735961083374,41.770055620043],[-75.0738447862625,41.7705148236576],[-75.0740372476172,41.7708029273655],[-75.0742936663252,41.7711225145537],[-75.0745221177834,41.7713160188835],[-75.0746383894256,41.7713925041991],[-75.0755447841573,41.771603576318],[-75.0775105180862,41.7716247788283],[-75.0803640570104,41.7711048989202],[-75.0828509485514,41.7705762079138],[-75.0849863409998,41.7701152775181],[-75.0855467406167,41.7699662425991],[-75.0868072889628,41.7695869937494],[-75.0880641362499,41.7692617763252],[-75.0908580944128,41.7687506890931],[-75.0919586977225,41.768565164106],[-75.0935037586887,41.768419798539],[-75.0947809258675,41.7684007336178],[-75.0953577682474,41.7684633044604],[-75.0964227183218,41.7685840085481],[-75.0979604481369,41.768816888975],[-75.0988573252183,41.7689242031761],[-75.0995860439666,41.7689686072209],[-75.1004351612176,41.7690669438972],[-75.1008955028849,41.7691566106918],[-75.1013363582971,41.7692868247014],[-75.1018090113755,41.7695521153893],[-75.1023100601999,41.7699389754927],[-75.1033928759687,41.7710954187823],[-75.1036057605213,41.7713744471286],[-75.1043165426084,41.7726302958272],[-75.1045133158764,41.7731705433393],[-75.104610324944,41.7736343218384],[-75.1046832789248,41.7741026251294],[-75.1047081748346,41.7748456901695],[-75.1046728926035,41.7751159354664],[-75.1045892495691,41.7754762971571],[-75.1044736139341,41.7758186726857],[-75.1042900198496,41.7762241603346],[-75.1040987164234,41.7767467474142],[-75.1039728750285,41.7772917923132],[-75.1039123950537,41.7777962457607],[-75.1039218965344,41.7787915231466],[-75.1039476117077,41.7798138068483],[-75.1039153415278,41.7805569229483],[-75.1030065950066,41.7841876090502],[-75.1024440591959,41.7861201373895],[-75.1018812089748,41.7873996482147],[-75.1015939214588,41.7879043014543],[-75.1013102272039,41.7883053690668],[-75.1010144164724,41.7886569071629],[-75.1007583705652,41.7889453600498],[-75.0999746587518,41.7897206577397],[-75.0982346319279,41.7910822368198],[-75.0961821396072,41.7925521372672],[-75.095398268792,41.7932868719188],[-75.0947585964445,41.7941295666995],[-75.0939156075004,41.7953597300272],[-75.0935957830047,41.7958013398374],[-75.0931767180263,41.7962880643995],[-75.0926878916797,41.7966577526626],[-75.0923274687231,41.7968652069218],[-75.0918350365388,41.7970862769109],[-75.091349631875,41.7972262761469],[-75.0902174321219,41.7974928837475],[-75.089316766845,41.7976422082982],[-75.0886837725733,41.7976877363016],[-75.0881789696893,41.7976791199839],[-75.087654170307,41.7976254806012],[-75.0865725223481,41.7974596740509],[-75.0858075772393,41.7972801087376],[-75.0848499902144,41.7970556467005],[-75.0841606464216,41.7968670077592],[-75.0833230204197,41.7966109193366],[-75.0827944202655,41.7965167288695],[-75.0822257058423,41.7965261463151],[-75.0810440295782,41.7966530901595],[-75.080391553543,41.7967571324773],[-75.0792902091232,41.7970641432251],[-75.0787578585026,41.7972851850703],[-75.0784018301044,41.797434046673],[-75.0777530254837,41.7977857670916],[-75.0772084676568,41.7981869516869],[-75.076692903854,41.7986196391991],[-75.076260844745,41.7990567724899],[-75.0756894793934,41.799710166165],[-75.0754927411597,41.8000255443843],[-75.0747866940924,41.8013275333301],[-75.0741040032226,41.8026835441869],[-75.0738062431469,41.8034898707069],[-75.0736047896563,41.8039763835302],[-75.0733629101812,41.804643063275],[-75.0730108783876,41.8053773660243],[-75.0728596757556,41.8057332419861],[-75.0726002683527,41.8065485476856],[-75.0719219459901,41.8092105682154],[-75.0716882366926,41.8108274846643],[-75.0716529158339,41.8122190990521],[-75.0718142218179,41.8131422219042],[-75.0719550120774,41.8135474514017],[-75.0720994602768,41.8138581036085],[-75.0722679033757,41.8140921807575],[-75.0725849951963,41.814353184581],[-75.072937782473,41.8145691293159],[-75.0734862865989,41.8148434927548],[-75.0743926723476,41.8151716632047],[-75.0752770592532,41.8153422176298],[-75.075823428982,41.8153868914807],[-75.0768610325426,41.8153051333422],[-75.0778663910759,41.8153179625398],[-75.0781429077917,41.8152952560233],[-75.0788358448457,41.8152002059155],[-75.0793286103049,41.8151007864141],[-75.0800703106075,41.814888602809],[-75.0808182326417,41.8145413040499],[-75.0813186751033,41.814270736853],[-75.082163389711,41.8137161977367],[-75.0836226939069,41.8127423756174],[-75.0842169806713,41.8123276140907],[-75.0848252622896,41.811975888459],[-75.0851640798653,41.8118495373903],[-75.0857143491808,41.8117320341746],[-75.086411423875,41.8116729631103],[-75.0881179327589,41.811622120774],[-75.0892078865409,41.8116347853302],[-75.0899491969747,41.8117332822155],[-75.0906665753909,41.8119353741379],[-75.0911917242178,41.8121511261608],[-75.091638301,41.8124074698416],[-75.0935247684865,41.813464271508],[-75.0949484670578,41.8142332013555],[-75.0956944963418,41.8146964424747],[-75.0975847906514,41.816203526473],[-75.0988402590245,41.8173643573812],[-75.0991044966687,41.8176748719062],[-75.0998536215471,41.8183902805065],[-75.1003722063842,41.8186870590821],[-75.1008576065564,41.8189343259784],[-75.1014306607407,41.819168001637],[-75.102124396397,41.8193340144443],[-75.1031221506915,41.8194907426291],[-75.1052711355484,41.8202273615661],[-75.1089432409191,41.8215569643764],[-75.1107993237895,41.8219109590233],[-75.1123280929096,41.8222877628688],[-75.1129402768095,41.8226924772771],[-75.1133458347192,41.8230703717133],[-75.1136106939976,41.8234664181182],[-75.1140470093244,41.8244207303535],[-75.1147699635835,41.8263610235017],[-75.1149957353673,41.8271939473495],[-75.1150808525371,41.8276532203265],[-75.1150658380954,41.8283062447043],[-75.1150187214588,41.8286845879559],[-75.1145421741837,41.8311574959045],[-75.1134702271316,41.8347163392396],[-75.1132280036017,41.8358739813211],[-75.1132473865506,41.8379050446781],[-75.1131801251937,41.8392516604448],[-75.1132001216919,41.8405621613408],[-75.1133097619707,41.8412645993002],[-75.1133585970845,41.8418500065611],[-75.1135284586232,41.842547881643],[-75.1137694442746,41.8430205098884],[-75.1142153473204,41.8435739961756],[-75.1146048182,41.8439293828397],[-75.1149020303033,41.8442623436542],[-75.1156066670156,41.844878613251],[-75.1162428341369,41.8453012967108],[-75.1167364503006,41.845575507719],[-75.1174744791886,41.8459080102697],[-75.1179275705533,41.846042648986],[-75.1182966290147,41.8461278342808],[-75.11930148,41.8462123562957],[-75.1203732123547,41.8462292466322],[-75.1215633920713,41.8461784484631],[-75.1219724354444,41.8461059571105],[-75.1246256572467,41.8455941996989],[-75.1258144355914,41.8452191069918],[-75.1270177172364,41.8449520703151],[-75.1283608135705,41.8449595774284],[-75.1307028526703,41.8451100434047],[-75.1318118758891,41.845514085535],[-75.1326647463013,41.8461886241607],[-75.133547668953,41.8471873731186],[-75.1349157501302,41.8483161452352],[-75.1362391625798,41.8493053455681],[-75.1380176624506,41.8502534510108],[-75.1398934121375,41.851926472111],[-75.14076741901,41.8522046159525],[-75.1423525924486,41.8519774791682],[-75.1456489792483,41.8513383373079],[-75.1461651655836,41.8511980702487],[-75.1465965644308,41.8510218821708],[-75.1479650767993,41.8504031417106],[-75.1487665312379,41.8500688437756],[-75.1493832965457,41.8498023338891],[-75.1500641476658,41.8495762679202],[-75.1532671285406,41.8485272116386],[-75.1558581626707,41.8483570828717],[-75.1585459220008,41.8487947325883],[-75.160536894996,41.8493774110579],[-75.1638303317283,41.8512506998739],[-75.1652583943152,41.8526267143741],[-75.1685052012977,41.8587151973992],[-75.1687763945972,41.861196217059],[-75.1681705653797,41.8652232208366],[-75.1680424018398,41.8667545918817],[-75.1684598471557,41.8689967093287],[-75.1692790442195,41.8704906540412],[-75.1701261142099,41.8714036031039],[-75.1715303256277,41.872090537355],[-75.1749319231135,41.8726167968548],[-75.1762904659789,41.872551663417],[-75.1791174821443,41.8699802938131],[-75.1796800808371,41.8689030815452],[-75.1803398556841,41.8660963785343],[-75.1817560793739,41.86317588461],[-75.1834747559384,41.8608673612744],[-75.1846474400665,41.8601539253754],[-75.1863434009324,41.8600746182489],[-75.1875415361291,41.8604869817173],[-75.1887846373957,41.8612054952023],[-75.1899476664311,41.8622123503951],[-75.1908864759716,41.86428689227],[-75.1915357773607,41.8652225304385],[-75.1938166070536,41.8667588800077],[-75.1954427454657,41.8676883342158],[-75.1975456979526,41.8686304536125],[-75.1990600140782,41.8690466531882],[-75.2024390377992,41.8693199436109],[-75.2041590878877,41.8698798228588],[-75.2086967586622,41.8695338807172],[-75.2103329833584,41.8690850435736],[-75.2150639652938,41.8673424190149],[-75.2156867196695,41.8669854739397],[-75.2195590622119,41.8612136701097],[-75.2219165927587,41.8591825625225],[-75.2229408311845,41.8580276838638],[-75.2238422151136,41.8574990187181],[-75.2251342664783,41.8574739693541],[-75.2264571525152,41.8577595839779],[-75.2277736371573,41.8583604394966],[-75.2293411488191,41.8593480761464],[-75.2299069167682,41.859418997618],[-75.2307289677796,41.8592462129102],[-75.2316039053068,41.8595416767318],[-75.2343351960972,41.8614275808202],[-75.2372618327327,41.8644749091612],[-75.2407377047228,41.8670031093774],[-75.2419650594207,41.8672482141639],[-75.2430514989934,41.8670702787963],[-75.2445242186297,41.8661844652501],[-75.2491891249844,41.8626481973111],[-75.2501347967553,41.862218298],[-75.251749927212,41.8620796283441],[-75.2544386279765,41.8622537809042],[-75.2577278354404,41.862034708763],[-75.2596715804078,41.8632777476076],[-75.2616034541387,41.8651017273725],[-75.2625259610534,41.8662029511827],[-75.2638580826697,41.8686542576957],[-75.26418638816,41.8699234726292],[-75.2637645842183,41.8710142904603],[-75.2628003083378,41.8722459677583],[-75.2614603453274,41.8733388944813],[-75.258551223145,41.8751289161192],[-75.2578030810236,41.8756395054676],[-75.257607462989,41.8763514957034],[-75.2579894535973,41.8782555924137],[-75.2596511679896,41.8825616181109],[-75.2609198424957,41.8839863091879],[-75.2630770702937,41.8852152860872],[-75.2695317593592,41.8865286947028],[-75.27120193139,41.8871597124858],[-75.2722858116623,41.8919172706706],[-75.2730913902664,41.8968376069395],[-75.2679311986781,41.9018622052404],[-75.2672058737649,41.9042011955201],[-75.2675113970813,41.9072673178842],[-75.2690071405383,41.9102090380666],[-75.2710040352278,41.9134692884642],[-75.2735531386955,41.917065934646],[-75.2755488646768,41.9200378862651],[-75.2763266485076,41.9215986894237],[-75.2767390138506,41.9236242288222],[-75.2764750169549,41.9256829346608],[-75.2770536847115,41.9306893303845],[-75.2770644546134,41.9334453954341],[-75.2790043970122,41.9370433901929],[-75.2789232854303,41.9388494567268],[-75.2803153947446,41.9395260534518],[-75.2821926257534,41.9402689837246],[-75.2839024287595,41.9414176071162],[-75.2845512172105,41.9419248735292],[-75.2852870703789,41.9421707198687],[-75.2884929860497,41.9424958971385],[-75.2892149611452,41.9428363252447],[-75.2914414607297,41.9462262207932],[-75.2917313012579,41.9470360921926],[-75.2914015036659,41.9526166539169],[-75.2915795731114,41.9530530284713],[-75.2927894915097,41.9541127280273],[-75.2942916794806,41.9547618507906],[-75.2950199104438,41.9548680490422],[-75.298026079423,41.9546620756996],[-75.299135208643,41.9544565165542],[-75.3006544726892,41.9538265453733],[-75.3012405039362,41.9533611472556],[-75.3016771839789,41.9523287128443],[-75.301017870866,41.9493897334895],[-75.3010592104371,41.9487186164234],[-75.3012857682467,41.9483892690868],[-75.301865811324,41.9481850807408],[-75.3029607929766,41.9481236302203],[-75.3050508420627,41.9486359463584],[-75.3069940875668,41.9492702120094],[-75.3076557991815,41.9492729305502],[-75.3089113762507,41.9488912486994],[-75.3105658601034,41.9489813238018],[-75.3129752216454,41.9502401905467],[-75.31547105861,41.9527326998141],[-75.3172247227582,41.9536420242273],[-75.3178360496653,41.953892512507],[-75.3181982414047,41.9543148217316],[-75.3185572045989,41.9574256701202],[-75.3192986434917,41.9588826977592],[-75.3198656807603,41.9607500189373],[-75.322082732763,41.9616624706717],[-75.3233667612739,41.9627036245189],[-75.3265568486294,41.9657523393381],[-75.3280594893512,41.9679907163052],[-75.3289297484524,41.9686141816414],[-75.3360572253601,41.9706469491325],[-75.3389327092283,41.9706474473757],[-75.3397350251513,41.9708071828475],[-75.3405109710291,41.9716109761404],[-75.3414917893855,41.9722114987822],[-75.3421716047482,41.9728759636612],[-75.3423690849903,41.9742579118263],[-75.3415083085053,41.9758772084378],[-75.340229376137,41.97760582774],[-75.3396228722847,41.9801745656435],[-75.3379314443177,41.9834670589868],[-75.3375896084026,41.9843147067953],[-75.3375905444472,41.9861385729502],[-75.3374764287617,41.9868909756575],[-75.3385789535678,41.9884233604493],[-75.3404642819905,41.992137539171],[-75.3410565250877,41.9929688943295],[-75.3419485252153,41.9934075549447],[-75.3460318802214,41.9952010972824],[-75.3500595765107,41.9960894858967],[-75.3543695099876,41.9975037524037],[-75.3584305274858,41.9991077802819],[-75.3598728202851,41.999535565714],[-75.3604610703709,41.999533709165],[-75.3746180440398,41.9995106401541],[-75.4081488109648,41.9994452429743],[-75.4243798661657,41.9994131094696],[-75.4301098968679,41.9993961815268],[-75.4580119046643,41.9993327702959],[-75.4833026895927,41.9992646411712],[-75.5015620230259,41.9992129886809],[-75.5261675407162,41.9991382816897],[-75.5533254622847,41.9990009314432],[-75.5793003762858,41.9989937575331],[-75.602345766466,41.9988745948036],[-75.6095193772534,41.9988185432414],[-75.6246043483401,41.998795637531],[-75.6408335952323,41.9986569934184],[-75.6431753531593,42.0873504820529],[-75.9715719945695,42.5634933994434],[-75.91501479551,42.9946770041963],[-75.9022438145266,43.0880151377611],[-75.891297259783,43.1758895927125],[-75.8292667829025,43.4824556394527],[-76.0317780461085,43.7215839283713],[-76.0372513230312,43.6846538540147],[-76.2016307274787,43.6880500817225],[-76.2019425686464,43.6933562013614],[-76.2021986621643,43.6936551364265],[-76.2011145088041,43.6958544897113],[-76.1980241964289,43.6960715279476],[-76.1991081368884,43.6954703978374],[-76.1991326977265,43.695204525108],[-76.1981906452679,43.6952774397244],[-76.1973009690818,43.6956244158788],[-76.1951575942038,43.6973215894793],[-76.1944960676421,43.6974815766807],[-76.1931092224553,43.6967757621358],[-76.1921323351265,43.6967949674739],[-76.1908085220283,43.6975470968081],[-76.1893273357704,43.6997954957667],[-76.190052080372,43.7002021250896],[-76.1904305154483,43.7016478066418],[-76.1909660991056,43.7023715367241],[-76.1916287898839,43.7026977682196],[-76.1930470931736,43.7029890922714],[-76.1951585652826,43.7022106897385],[-76.1954039571705,43.7022441365953],[-76.1960730807846,43.7023271698206],[-76.1970498127048,43.7021008433547],[-76.1975539059197,43.7023296590751],[-76.198016771853,43.7023383107436],[-76.1984765359037,43.7023469922846],[-76.1986887440249,43.7014353736141],[-76.1981528684152,43.7000003749791],[-76.1980889892154,43.6987405013072],[-76.1987190379112,43.6976624272823],[-76.1983759775924,43.696774643069],[-76.200520519382,43.6965405283935],[-76.2015452177451,43.6972455617821],[-76.2054088214765,43.7175941161534],[-76.20535198956,43.718513109355],[-76.2038749822648,43.7200188269284],[-76.2029884232328,43.7200146633806],[-76.2023812716952,43.7184048653364],[-76.2025387427713,43.7178989918506],[-76.2015932407819,43.7177198624549],[-76.1996377943597,43.7154534402493],[-76.1993534407413,43.7140338169245],[-76.1989436355969,43.7138310309754],[-76.196264130886,43.7144263729227],[-76.1949717956536,43.7144759180942],[-76.1940255839952,43.7147649351069],[-76.193395232567,43.7154107977911],[-76.1931745632141,43.7158632967708],[-76.1935212841677,43.7163278747036],[-76.1960751289434,43.7163911946185],[-76.1964852386167,43.7165309606083],[-76.1968006083669,43.7172119490355],[-76.1991964188229,43.717168809192],[-76.2004576391087,43.7175787396835],[-76.2010888681909,43.7179502650727],[-76.2017827664422,43.7189333887422],[-76.2023822822999,43.7203947065156],[-76.2019407262018,43.7206244509173],[-76.2012783210877,43.7203252899964],[-76.1992913509855,43.7189325680936],[-76.198313985753,43.7189068124468],[-76.1967380667585,43.7194095454799],[-76.1962028172745,43.7236649715161],[-76.1966756203715,43.7254697917723],[-76.1962658161254,43.7258162309417],[-76.1944371354645,43.7264566377136],[-76.1937441193588,43.7273912798491],[-76.1928611877239,43.7279857554757],[-76.1919148529963,43.7286709246602],[-76.1916627497949,43.7298890742314],[-76.1917257486458,43.7303656203522],[-76.192135826878,43.7304603825604],[-76.1928924158581,43.7292459674013],[-76.1947216220335,43.7273000234245],[-76.1977481100061,43.7257466713942],[-76.1982211969707,43.7248773393481],[-76.1984114152321,43.7236958394816],[-76.1991489617248,43.7228597429353],[-76.2000175454679,43.7225444882706],[-76.2007745782157,43.7237340426891],[-76.2015626729094,43.7237977845443],[-76.2023202778841,43.7243930683677],[-76.2028248633758,43.7254502087113],[-76.2033296770396,43.7258590678872],[-76.2044334531989,43.7259914936894],[-76.2046538216162,43.725836103414],[-76.2044642142091,43.725396915176],[-76.2039598119737,43.724970049736],[-76.2026979952065,43.7221741450189],[-76.2028553881292,43.7214701864643],[-76.2030257805722,43.7209506707168],[-76.2030440028978,43.7208919534394],[-76.2037326370215,43.7204660180589],[-76.2052083390646,43.720364917171],[-76.2056352921495,43.7204909666914],[-76.2059640333227,43.7210007149416],[-76.2083376688659,43.7335855040508],[-76.2110221520401,43.7453655797582],[-76.2178148241464,43.7697516087379],[-76.2219630042783,43.7826678596577],[-76.2237718555277,43.787267286799],[-76.2254765596963,43.7901211208934],[-76.2263878592295,43.7926323158592],[-76.2268803453127,43.7947563512205],[-76.2270816505813,43.7978919031679],[-76.2282968888027,43.8005528721955],[-76.2285693370486,43.8024541765434],[-76.2297196288716,43.8045170958575],[-76.2314516579945,43.8063936613843],[-76.2323173527557,43.8067759736666],[-76.2338550475366,43.8064532510407],[-76.2346228762375,43.8065349864783],[-76.2348141778671,43.8067309943145],[-76.2346045901316,43.8076651194486],[-76.2378616693494,43.8108305901126],[-76.2365976535063,43.8111459010144],[-76.2364217930181,43.8115484599214],[-76.236801095867,43.8133405426928],[-76.2373427997463,43.8139829228505],[-76.2375578025264,43.8149484646137],[-76.2368099721204,43.8164241301312],[-76.2369105870254,43.8169497424849],[-76.2365937817675,43.8175654080753],[-76.2346179166388,43.8192659322336],[-76.2344322016319,43.8200782502953],[-76.2350647449493,43.820733163712],[-76.2348403718425,43.8219510558064],[-76.2350729923819,43.8225652763628],[-76.2358608103946,43.8224757212077],[-76.2373723606074,43.8215274955235],[-76.2384286015151,43.8213584844689],[-76.2394626944594,43.8203073664565],[-76.2400403525096,43.8191531550298],[-76.2431486563433,43.8169225161462],[-76.2435221434991,43.8163827444826],[-76.2457304072834,43.8164757201981],[-76.2462906766446,43.8172574081948],[-76.2478247530115,43.8172181465659],[-76.2490316288159,43.8175695914134],[-76.2491896909834,43.818180097006],[-76.2488104321519,43.8189630434596],[-76.2468063994492,43.8201733980382],[-76.2463428247452,43.8206601432052],[-76.2463864837663,43.8212268834642],[-76.2473276055703,43.8227156809672],[-76.2496808825943,43.8251839041698],[-76.250126588909,43.825273564142],[-76.2509385168055,43.8260569801135],[-76.2527810620646,43.8260728044129],[-76.2543954523094,43.8268113798182],[-76.2576967448089,43.8259062540508],[-76.2600134082985,43.8257726870492],[-76.2629215090964,43.8249167627466],[-76.2642525662091,43.8247669897516],[-76.266382874193,43.8254906823385],[-76.2694803838702,43.8246279897634],[-76.2703332776386,43.8248210872335],[-76.2704902869806,43.8257917136283],[-76.2697980542058,43.8271274177271],[-76.2706839395014,43.8277928263746],[-76.2707798607091,43.828759629522],[-76.2689914551156,43.8309538383439],[-76.2675262894125,43.8323206173102],[-76.2669249275169,43.8325568749158],[-76.2673903482588,43.8337941868065],[-76.2654075193901,43.8354097724046],[-76.2658515341771,43.836701347721],[-76.2672815407184,43.8379999953812],[-76.2679699906875,43.8382939721731],[-76.2697780496228,43.8380037898099],[-76.2702656434809,43.8381379236148],[-76.2720726468957,43.8374695725727],[-76.2730105060186,43.8378102606818],[-76.2749350503951,43.8380814129074],[-76.2753041465858,43.8384734450377],[-76.2750538696594,43.8391334885684],[-76.2759936763299,43.83998282361],[-76.2785269999913,43.8412509974883],[-76.2838587967483,43.839133927226],[-76.2856585336908,43.8388931062573],[-76.2891009317584,43.8388633221145],[-76.2922283211987,43.8372253826007],[-76.293979489827,43.8371875570337],[-76.2953925972611,43.8380178672935],[-76.2961658841257,43.8380045958667],[-76.2965628568362,43.8377750052878],[-76.2966816024387,43.8379987441787],[-76.2979111526192,43.8380523087123],[-76.299067013997,43.8385433653451],[-76.2991964226019,43.8392756743998],[-76.2975578829472,43.8431477634614],[-76.2960005806387,43.8458619646678],[-76.2952264538493,43.8465414984037],[-76.2946563982414,43.8496811495546],[-76.2947930679287,43.8503908710118],[-76.2969808447346,43.8523783221254],[-76.2973607207087,43.8542782323014],[-76.2971934858438,43.8555316052984],[-76.2968470882837,43.8563773560362],[-76.2928804370095,43.8611085792879],[-76.2881389259206,43.8658438952776],[-76.2862477072446,43.8670761549711],[-76.2855826314391,43.8679794769102],[-76.2845280416349,43.8686575870891],[-76.2832372227588,43.8699460690783],[-76.2790819450378,43.8717528175656],[-76.2787318212659,43.8729496835861],[-76.2755878363492,43.8755912989903],[-76.2736670505238,43.8765760847907],[-76.2707075292607,43.8773563121651],[-76.266040901734,43.8791772696133],[-76.2616755664586,43.8814448773154],[-76.2589772680936,43.8820868643696],[-76.2567414475896,43.8817108248511],[-76.2543605240145,43.8806475779538],[-76.2496544155311,43.8810817802629],[-76.246287124706,43.8820999492266],[-76.2366331504348,43.8858332648175],[-76.2343542125939,43.8860199844403],[-76.2315542671595,43.8868065002498],[-76.2309861968284,43.8872177765219],[-76.2301099369811,43.8872857420947],[-76.2297065619775,43.8874206358427],[-76.2292719049408,43.8866780385924],[-76.2303679636734,43.88645915546],[-76.2300873973523,43.8855483385276],[-76.2291702533798,43.8847434127607],[-76.2259160317029,43.8828426773597],[-76.2253735947984,43.8826639317372],[-76.224009228155,43.8827145788019],[-76.223380826071,43.8823836877093],[-76.2232944314969,43.8814887799359],[-76.2227755987248,43.8805804964053],[-76.2232431215245,43.8793240220334],[-76.2243955064221,43.8779296541841],[-76.225485018233,43.8769050875548],[-76.2276098330189,43.875081589605],[-76.2292191100532,43.8739928761379],[-76.2308625446278,43.8736780604092],[-76.2314848399645,43.8733562330546],[-76.231757404093,43.8725970100174],[-76.2314317926503,43.8721593570666],[-76.231584820659,43.8704875808398],[-76.2373413301025,43.8640239449092],[-76.2368009180006,43.8628458548254],[-76.2356700540423,43.8617911972319],[-76.233148421056,43.8623091423374],[-76.2305614320395,43.8633949500087],[-76.2284591991032,43.8638137351213],[-76.227754995379,43.864366013752],[-76.2253578796708,43.8653326174428],[-76.2242615649183,43.8650652723389],[-76.2225108741937,43.86415668147],[-76.2205267104284,43.8643624774773],[-76.2182714126525,43.8638778711381],[-76.216651595685,43.8631073464086],[-76.2164487974164,43.8626008159769],[-76.2152837561547,43.8621045303508],[-76.2148111192461,43.8609481225297],[-76.2150330112061,43.8592756328515],[-76.2130860574566,43.858184414751],[-76.2111577239862,43.8579707973466],[-76.2097381468854,43.8575716897909],[-76.207974321893,43.8560102676184],[-76.2077597413211,43.8548961156301],[-76.2079388087949,43.8533276298644],[-76.2095023004958,43.8516004328458],[-76.2094303274752,43.8510789975799],[-76.2107613594351,43.850799291056],[-76.2107184154729,43.8500029453691],[-76.210608515581,43.849855554549],[-76.2118238678885,43.8491448983747],[-76.2121084227295,43.8491238709525],[-76.2126558443855,43.8493161337955],[-76.2129669677993,43.8488221436651],[-76.2126610438344,43.8486903414854],[-76.2124817419003,43.8486292216718],[-76.2119354224771,43.8484909672097],[-76.210894101688,43.849001704061],[-76.2111037082881,43.8483512353444],[-76.2108085775813,43.848291341552],[-76.2104147660422,43.8481964796282],[-76.2101143667163,43.8492215501265],[-76.2095685377732,43.8496459918714],[-76.2095703460819,43.8491777960593],[-76.209521368136,43.8489667344978],[-76.2094723910884,43.8487556734852],[-76.2094871099843,43.848156790687],[-76.2094233475655,43.8480989438929],[-76.2085685772164,43.8481260011773],[-76.2087840004081,43.849955914524],[-76.2085618155973,43.8499852765772],[-76.2084203911271,43.8500092817488],[-76.208329266923,43.8506179759484],[-76.2058049704319,43.8501629787525],[-76.2050798027239,43.8503912175961],[-76.2049388328013,43.8500325691205],[-76.203767236533,43.8503915577022],[-76.2024107499113,43.851823886679],[-76.2025623244458,43.8523624950841],[-76.2025945452184,43.852456690923],[-76.202606445201,43.8526231289688],[-76.2025827799831,43.8527224154237],[-76.2018877058371,43.8525541677083],[-76.2005541478147,43.8524601559983],[-76.2005138296281,43.8513036421004],[-76.1999855331044,43.851327202343],[-76.1998672716939,43.8513239432058],[-76.1998041183328,43.8529632265617],[-76.202090456495,43.8531822716069],[-76.2001196425932,43.8540583258458],[-76.199899818555,43.8539931104253],[-76.1996999002851,43.8545714286351],[-76.1999143550929,43.854717731848],[-76.1999416548944,43.8551676144891],[-76.1996001863903,43.855396287617],[-76.1999371094191,43.855851920503],[-76.1997070418916,43.8561874640798],[-76.199923592469,43.8569999960622],[-76.1999840059685,43.8572784667529],[-76.2013020635607,43.8595379639962],[-76.2009594910271,43.8597126322872],[-76.2015131326181,43.8600759469893],[-76.201935127901,43.8602155600569],[-76.2021282037033,43.8607672359712],[-76.2023698837524,43.8609897758712],[-76.2019915744401,43.8612053385247],[-76.2020788439734,43.8619291928727],[-76.2025523863838,43.8619242062624],[-76.2026655031427,43.8629854147735],[-76.2023525579455,43.8633578495972],[-76.2030523356703,43.8641787903843],[-76.2019623109214,43.8652436659675],[-76.1982770299605,43.8675647577691],[-76.1966733691934,43.8683513656708],[-76.1946001132132,43.8693454400492],[-76.1915493213206,43.8712320137838],[-76.1852591443264,43.8748403108997],[-76.1832334182078,43.8760947830811],[-76.1767906875154,43.8785652661273],[-76.1736763748508,43.8805375468736],[-76.1712831650175,43.8811653482059],[-76.1705500831518,43.8810153071949],[-76.1687675426588,43.8814837360409],[-76.1663756515524,43.8838175576354],[-76.1648980154365,43.8847464836061],[-76.1601883298615,43.8861764528568],[-76.1586962811752,43.8875736194181],[-76.1554546969977,43.8891955618228],[-76.1550920273546,43.8896944160281],[-76.1538155437937,43.8904591026762],[-76.1528550417358,43.8906443706066],[-76.151712169997,43.8900481783064],[-76.150308183158,43.8900938432555],[-76.1493383062817,43.8893878443509],[-76.1479683844566,43.8892215587925],[-76.1473657352752,43.888673910249],[-76.1462115797981,43.8886810012777],[-76.1414477401846,43.8897596098735],[-76.140240524817,43.8905954795163],[-76.1386196792785,43.8912463911029],[-76.1372039083396,43.8914720799741],[-76.136448141318,43.8912770301648],[-76.1342955317589,43.8923248179416],[-76.1301938825621,43.8951970460114],[-76.1292409119794,43.8954180545906],[-76.1281644419099,43.8970312912582],[-76.1268326373988,43.9008078403261],[-76.1264142353772,43.9056692681782],[-76.1271326477543,43.9071342226143],[-76.1286607637993,43.9076008041093],[-76.1282591198492,43.9080729471712],[-76.1269423252883,43.9087612019754],[-76.1254584404913,43.909464593463],[-76.1254456996856,43.9091811140722],[-76.1250700422001,43.9094234050247],[-76.125034529102,43.9099549506892],[-76.124476901686,43.9106401951171],[-76.1257732712523,43.9145798777942],[-76.1269214628142,43.9154463738018],[-76.1260697889579,43.9162470686089],[-76.1267430969246,43.9173163217616],[-76.125869788043,43.9185808991318],[-76.1255201790058,43.9202274504531],[-76.1265603131205,43.9242911873294],[-76.1278164570267,43.9264710892753],[-76.1289612089393,43.9271215180725],[-76.1293999299544,43.9270181423756],[-76.1298981230346,43.9284717474636],[-76.129464201718,43.9288496771693],[-76.1298904217776,43.9292776180233],[-76.1301862019664,43.9292521826401],[-76.130166481251,43.9302247336369],[-76.1288246659144,43.9316515250124],[-76.1287554974342,43.9324399966722],[-76.1293010838321,43.9335780191703],[-76.1297968227149,43.934077298497],[-76.1314296472877,43.9348129028241],[-76.1324588767531,43.9349872663468],[-76.1334594589441,43.9348422877608],[-76.1345833259248,43.9343629532234],[-76.1359582190267,43.9343087668588],[-76.1368524272133,43.9349976212996],[-76.136108342782,43.9366706357144],[-76.1369368427989,43.9370765387075],[-76.1374549829699,43.9379491977638],[-76.137348305335,43.9383374015637],[-76.1392809821597,43.9400827746489],[-76.1392610233908,43.9406276721202],[-76.1344177349769,43.9454881485046],[-76.127658801796,43.9495885709366],[-76.1254868586953,43.950555345797],[-76.1246630739354,43.9506940114884],[-76.1208325848003,43.9506371470176],[-76.1201947252531,43.9503913161737],[-76.1202256946725,43.9496977610582],[-76.1209569601447,43.949609553854],[-76.1210404055497,43.950049894616],[-76.1235890176389,43.9500968665107],[-76.1235328693404,43.9494942007495],[-76.1208257917402,43.9481433097237],[-76.1190758214644,43.9491868485659],[-76.1187398731077,43.9490280822885],[-76.1174656622845,43.9498598588437],[-76.1143142491986,43.9512726619122],[-76.1133500281154,43.9519843235338],[-76.112955352397,43.9527264392027],[-76.1118935904436,43.9528673322614],[-76.1113452525059,43.9541421308103],[-76.1079906135533,43.9564795709159],[-76.1067976715173,43.9571528814344],[-76.1068363538717,43.957620675677],[-76.1055603374348,43.9593391561021],[-76.1047344631935,43.9594371828999],[-76.104518718405,43.95969136186],[-76.1045114043219,43.9605782528476],[-76.103492353667,43.9622131930259],[-76.1027301789625,43.9629138077672],[-76.1002947051918,43.9643598186708],[-76.100352909734,43.96550717119],[-76.1000217035837,43.9661135804466],[-76.0954281558019,43.9701146723259],[-76.0897900182617,43.9739319838469],[-76.0881737505379,43.9744740904896],[-76.0868899034866,43.9753641353165],[-76.0849598668105,43.9762017879662],[-76.083069131428,43.9774036652357],[-76.0824714292689,43.9769951861589],[-76.0845946998509,43.9755975400324],[-76.0841354729928,43.9755613874118],[-76.0833925141505,43.9757124920835],[-76.0777722701525,43.9766299995238],[-76.0763226704566,43.9758198803629],[-76.075292953206,43.9760366584099],[-76.073651295499,43.9755704365589],[-76.0745734745286,43.9735405350872],[-76.073520445098,43.9722899896803],[-76.0739945750067,43.971124112534],[-76.0752864619797,43.969702945403],[-76.0751290196498,43.96855651507],[-76.0756174875686,43.9678856742699],[-76.0755307651094,43.9675488693573],[-76.0744960002252,43.9681258175344],[-76.0731754228587,43.9681922586352],[-76.0728647432126,43.9675109325377],[-76.0714644322797,43.966479707839],[-76.0717416622579,43.9653471980446],[-76.0724337539972,43.9647779960329],[-76.0722055882032,43.9647621329002],[-76.071445306249,43.9652869569724],[-76.0707287452997,43.966554134481],[-76.0717206470701,43.9676207142926],[-76.0694809817768,43.9676147078755],[-76.0702010398675,43.9681436530114],[-76.0718780786203,43.968402518329],[-76.0722493110047,43.9686826341253],[-76.0724147052216,43.9694733656441],[-76.0716994144901,43.9701418209597],[-76.0705924511082,43.9694814659718],[-76.0690809377263,43.9697207118749],[-76.0674321024801,43.9703843737204],[-76.0669843785493,43.9702265006704],[-76.0663327954394,43.9696923941334],[-76.0665201561599,43.9691909642165],[-76.0665020631918,43.9676155664893],[-76.0656155715334,43.9670791483246],[-76.0657897647485,43.9676267200626],[-76.065818073358,43.9691209935318],[-76.065446275035,43.9691559759751],[-76.0649390745475,43.9693092615212],[-76.0659010237914,43.9696198993604],[-76.0659735393943,43.9702539505305],[-76.065457521044,43.9702632687911],[-76.0661459458603,43.9707880332688],[-76.0649371737123,43.971402531995],[-76.0644699931707,43.9710062448938],[-76.0636031952783,43.9709197903303],[-76.0635976140455,43.9711089098882],[-76.064360233416,43.9714259193203],[-76.0643784799961,43.97172735736],[-76.06343206981,43.972789555462],[-76.0614029049405,43.9734566727306],[-76.0597895037408,43.9746330790461],[-76.0587730258608,43.9747640544007],[-76.0579890301798,43.974582254834],[-76.0572859394681,43.9739540410183],[-76.0573911043402,43.9732508147451],[-76.057140238119,43.9732306295344],[-76.0567364274324,43.9738780998992],[-76.0558798326051,43.9740390805529],[-76.0556056524073,43.9739785935839],[-76.0558511745509,43.9742464201112],[-76.0569067659766,43.9744752379772],[-76.0571024549781,43.9747885387522],[-76.0561049117877,43.9753064540529],[-76.0548984761578,43.9754481553018],[-76.0526718238596,43.9768552068551],[-76.0498668703176,43.9775337708376],[-76.0470237644271,43.9777084356972],[-76.0481877690329,43.9779633490476],[-76.0488636264184,43.978110196022],[-76.0500133576927,43.9780411059443],[-76.052616162448,43.9773869101553],[-76.0565747684105,43.975986351917],[-76.0582197543757,43.9756605038762],[-76.0597624051619,43.9757587345278],[-76.0604854905752,43.9762381936063],[-76.0603879308404,43.9766667533369],[-76.0594999470803,43.9775393082301],[-76.0592972619994,43.9776222177901],[-76.058535363976,43.9777868419493],[-76.0571288034637,43.9782680429433],[-76.0589757019586,43.9782284173821],[-76.0595788353319,43.9780967760859],[-76.0599849870281,43.9779309471862],[-76.0608054507164,43.9771175372784],[-76.0608701401967,43.9771619524281],[-76.0607178874341,43.9786534015858],[-76.059314931861,43.9804535683452],[-76.0591950992971,43.9806167379999],[-76.0586352728053,43.9854836689268],[-76.0595072279257,43.9878614314462],[-76.0602677263739,43.9883765569509],[-76.0612635412057,43.9874894909237],[-76.0616947909325,43.9873729406739],[-76.0619557721838,43.9875415741255],[-76.0617349240662,43.9879622776261],[-76.0603003639648,43.9889614625036],[-76.0596518503982,43.9886298636403],[-76.0605559580193,43.9906201800279],[-76.0610299927066,43.9898640074972],[-76.0617934897311,43.9905231463468],[-76.06170047637,43.9913162930583],[-76.0613955387552,43.9916117327729],[-76.0624103736165,43.9928132237748],[-76.0656216576195,43.9937916517929],[-76.0671179786933,43.9950606309421],[-76.068279282065,43.9966388335105],[-76.0680581410966,43.9968254684753],[-76.0675637550766,43.9967715723468],[-76.0659768649575,43.9964757906129],[-76.0653456394686,43.996832807692],[-76.0656937743705,43.9973382388895],[-76.0663247636025,43.9970982635206],[-76.0683294484821,43.9975656934143],[-76.0688482812542,43.9970926704383],[-76.0699189688683,43.9980054687104],[-76.0696863025148,43.9984398022361],[-76.0704758273264,43.9985629479403],[-76.0705314303475,43.9983823624574],[-76.0717176996977,43.9982226794901],[-76.0734751241936,43.9989579338357],[-76.0765413733973,43.9983123408706],[-76.0775552470613,43.9978886282806],[-76.0780286708941,43.9981182416366],[-76.0788697482233,43.9994067559584],[-76.0778672625022,44.0030309874968],[-76.0780385227178,44.0037676270549],[-76.0784561530867,44.0040337761919],[-76.0789320311169,44.0039662573551],[-76.0805971644972,44.0029151481762],[-76.0828330083573,44.0008682577992],[-76.0849544939868,44.0007805918245],[-76.0857582445193,44.0004848501068],[-76.0858671957902,43.9984265872211],[-76.0851616140503,43.9972448751126],[-76.0853342729428,43.9966895373835],[-76.0849525904567,43.9964050630284],[-76.0846180551499,43.9950937750401],[-76.0857501812413,43.9950695084465],[-76.0862705636073,43.9948394780941],[-76.0882183033827,43.9927862050666],[-76.0909662354638,43.9917246096227],[-76.0920563401627,43.9906247991058],[-76.0950650091533,43.9888538588561],[-76.0970901855029,43.9881951868565],[-76.0978112128758,43.9872924361597],[-76.098891485514,43.9864942620818],[-76.0992330896637,43.9864864717331],[-76.1006827926659,43.9855226652702],[-76.1017204905495,43.9842387010927],[-76.1042936095779,43.9822736474217],[-76.1096906931948,43.9784084507312],[-76.114157021566,43.9750382592957],[-76.1185388238589,43.9724835113753],[-76.1243739242117,43.9698557698603],[-76.1252060246762,43.9691948369274],[-76.1289310767497,43.9682712438205],[-76.1347785028865,43.9653952583113],[-76.1372082436091,43.9648533953185],[-76.1394981525746,43.9648845822863],[-76.1405768855004,43.9653374768453],[-76.1424080455115,43.9649275272198],[-76.1434658539794,43.9654256199708],[-76.1447349084728,43.9654624201591],[-76.1499017350178,43.9630381425586],[-76.1572944601743,43.9593441397303],[-76.1586397789405,43.9592629699731],[-76.1608639617698,43.9602892542801],[-76.1631719610085,43.9597390729945],[-76.1657260474311,43.9597445344504],[-76.1671466027972,43.9592888619777],[-76.1688296997882,43.9590735715019],[-76.1693867450959,43.959175906643],[-76.1699252761256,43.959922160173],[-76.1691998748556,43.9617212361866],[-76.169358204721,43.9620482327819],[-76.170897438316,43.9630318162594],[-76.1723129065226,43.9635034657488],[-76.1720093684831,43.9639342355953],[-76.1727763671407,43.964290990626],[-76.1732884230223,43.9640246354471],[-76.1749577263821,43.9646647039214],[-76.1750010072125,43.9649433592727],[-76.1730493696471,43.9669981591787],[-76.1733759719315,43.9673819416098],[-76.1724192436961,43.9686297152181],[-76.1709405251103,43.969603734947],[-76.1709996324593,43.9702918752537],[-76.1735942445793,43.9726871008965],[-76.1741169922094,43.9732759384476],[-76.1755776672344,43.9740306828211],[-76.1769769774441,43.9742413459337],[-76.1799308734569,43.9729414009512],[-76.1817892551161,43.9724720180118],[-76.1839429273822,43.9711802501204],[-76.1873321146423,43.9699611289569],[-76.194148111505,43.969439878804],[-76.1963351463024,43.9687417403188],[-76.2003210044557,43.9682317363705],[-76.2005744686047,43.968746756778],[-76.1994487313317,43.9713830288659],[-76.1995561635515,43.9716880099555],[-76.2003788954859,43.9727867587452],[-76.2016229831027,43.9738360509917],[-76.2055545183341,43.9747084302662],[-76.207436191512,43.9753952980183],[-76.2083750666295,43.9767358463066],[-76.2084420665766,43.9794811170038],[-76.2079736993606,43.9805169407397],[-76.2073790128458,43.9814730697867],[-76.206474113809,43.9829276503972],[-76.2065209870022,43.9852409774679],[-76.2057879752051,43.9863741213853],[-76.2048713064414,43.987252607856],[-76.204268207204,43.9882223136516],[-76.2021575462737,43.989432979764],[-76.2005808277786,43.9906695040321],[-76.1993053907551,43.9917948037855],[-76.1981993795874,43.9929948382657],[-76.1972844005547,43.9939677784843],[-76.1953502010856,43.9951134448681],[-76.1939338426484,43.995479390239],[-76.1900180503924,43.9976765369195],[-76.1889638423722,43.9983627596267],[-76.1884444867805,43.9993675205958],[-76.1877671238186,43.9997211923618],[-76.1852721618131,43.9996976048752],[-76.1836714789612,44.0003669405917],[-76.1815454146187,44.0001773908088],[-76.1780955802971,44.0010998492189],[-76.1775434927915,44.0016412302709],[-76.175834024857,44.0021180080699],[-76.1740843564151,44.0032433976589],[-76.1719323038115,44.0040307741789],[-76.1714195364642,44.0038829839741],[-76.1714080766561,44.0044277894013],[-76.1697898506049,44.004912543379],[-76.1694715631267,44.004605197487],[-76.1683675102864,44.0045579818039],[-76.1672182838653,44.0052854841253],[-76.1662062993584,44.0052823219338],[-76.1654322417393,44.0057628897524],[-76.1647659801577,44.0055401097684],[-76.1648160468617,44.0050129173332],[-76.1632775786314,44.0056723266464],[-76.1629730263939,44.0056664261673],[-76.1630213521629,44.0054273515952],[-76.1620987446369,44.0053107034685],[-76.1587609625706,44.0061729167137],[-76.1579809697824,44.0059737594536],[-76.1577864710487,44.0055750940155],[-76.150979366609,44.0079262137606],[-76.1494273194449,44.0081984395914],[-76.1459442645258,44.0098720208275],[-76.140911560046,44.0119796374172],[-76.1382891585427,44.0136083681435],[-76.1370746021426,44.0149214195405],[-76.1354762746734,44.0160672175185],[-76.1343923997909,44.0162895658315],[-76.1328467854625,44.0174032923359],[-76.1315056753035,44.0177136946823],[-76.1306365804189,44.0192033148292],[-76.1294855501808,44.020263569168],[-76.1267206004149,44.0225101548615],[-76.1233814277566,44.0245282445444],[-76.1240927650025,44.0262813458126],[-76.1217709074539,44.0294237536444],[-76.1219448653104,44.0297551581051],[-76.1204103694303,44.0315078231977],[-76.1205275878967,44.0320558604877],[-76.1202009119504,44.0328873493614],[-76.1188704261663,44.0341743327674],[-76.119027548696,44.034812011022],[-76.119552857423,44.0348113619782],[-76.1191661865921,44.0352968175923],[-76.11927727765,44.0355208051766],[-76.1195816394447,44.0355088177068],[-76.1204900733522,44.0364227187334],[-76.1203884199946,44.0374815769554],[-76.1210304603012,44.0381865161737],[-76.1189265538035,44.040097801932],[-76.1187678843749,44.0405765197281],[-76.1170569306269,44.0412234898045],[-76.1159170565662,44.0419998992],[-76.1140164019864,44.0440531553449],[-76.1128766033843,44.0448385365392],[-76.1120520550563,44.0450896547081],[-76.1105304850348,44.0451134708001],[-76.1077418898141,44.0467161018364],[-76.1053326468496,44.046874502342],[-76.1049211645506,44.0471485774383],[-76.1077744294886,44.0471209229483],[-76.1099292776494,44.046001618101],[-76.1105632007791,44.0460674767841],[-76.1105634720704,44.0469137611588],[-76.1157917685336,44.0438377480073],[-76.1176291332084,44.0423612779788],[-76.1192128558677,44.041832586097],[-76.1200049247083,44.0413116429439],[-76.1209624659191,44.0390244690619],[-76.1232041093026,44.039137479779],[-76.1242186737711,44.0387943792678],[-76.1254979546857,44.0387952775356],[-76.1266118395869,44.0381180630315],[-76.1267637060738,44.0377159275577],[-76.1291953736827,44.0378764618964],[-76.1302370259502,44.0374024952924],[-76.1315311641013,44.0377948124847],[-76.132060902421,44.038208202683],[-76.1325532079428,44.0380097535846],[-76.132979680429,44.0382846168582],[-76.132766547043,44.0386828667342],[-76.1331202020923,44.0388819257684],[-76.1332537716935,44.0389526240146],[-76.1335735117476,44.0394581225091],[-76.1343394432066,44.0391894252964],[-76.1339682611278,44.0387474613834],[-76.1346540260326,44.038488561224],[-76.1352300599287,44.038955495106],[-76.136158893678,44.0385996362889],[-76.1394215056196,44.0385851231759],[-76.1453792215171,44.0342175343432],[-76.1494317696988,44.0315524062534],[-76.1504666414825,44.0312853937437],[-76.1512843778857,44.0307819807579],[-76.1530977305929,44.0304215615052],[-76.1587624420959,44.0304857427665],[-76.1589956339638,44.0303258213518],[-76.1596897729637,44.0307644237354],[-76.1613026297843,44.0310406278289],[-76.1612266421928,44.0307848128478],[-76.1623662512504,44.0310298026393],[-76.1638743716955,44.0319687611606],[-76.1644470665537,44.0322375143669],[-76.1645380605021,44.0320655281363],[-76.1671836232684,44.0328757940689],[-76.1678099798884,44.0337291811058],[-76.1655928928514,44.0364842696248],[-76.1607079935753,44.040162274928],[-76.1555570546344,44.0436897121947],[-76.152910257583,44.0449769020033],[-76.1502197817475,44.0461699383299],[-76.1503998544361,44.0481307877181],[-76.150764378202,44.0486222809282],[-76.1508198770185,44.0490493662064],[-76.1492354482833,44.0502807390476],[-76.1488212018682,44.0508656049814],[-76.1499809179168,44.0509034446205],[-76.1472833256276,44.0529337652222],[-76.146476497467,44.0540177348704],[-76.1466045298529,44.0545251203815],[-76.1453510260953,44.0557531140006],[-76.1397427521484,44.0589468064684],[-76.1384777688198,44.059306046447],[-76.1361033643187,44.0605496144909],[-76.135279087282,44.0613905955169],[-76.1331222439629,44.0619612109988],[-76.1322339125549,44.0629243467957],[-76.1316308016394,44.0630113554306],[-76.1313135544103,44.0633566149632],[-76.1288399534439,44.06328207088],[-76.1289353141029,44.0637402822867],[-76.1299815172356,44.0641350664219],[-76.1302032061764,44.0645470102292],[-76.131598023013,44.064317118976],[-76.1320104602212,44.0639709142283],[-76.1327084736548,44.064153053138],[-76.1345791972677,44.0639994283976],[-76.1346118600114,44.0632608557311],[-76.1348651795317,44.0631232920958],[-76.1363874682054,44.0628290535675],[-76.1370660160451,44.0622010872075],[-76.1410201421094,44.0603655259498],[-76.1457309460868,44.0586122658411],[-76.1464305585217,44.0585557248585],[-76.1463229744866,44.0592860506044],[-76.1470106932271,44.0590180540181],[-76.1465837293625,44.0593734615979],[-76.1471545431485,44.0597368511203],[-76.1500732269988,44.0582669973616],[-76.1443646229127,44.0642618653917],[-76.1419072113844,44.0663436658341],[-76.1399364334152,44.0675652676552],[-76.1399361738021,44.0679163878126],[-76.140538713389,44.0678383446526],[-76.1406013987279,44.0681348180083],[-76.1395781547372,44.0687977567911],[-76.1394007248922,44.0691686517353],[-76.1408902573974,44.0698605098163],[-76.1419848078587,44.0702637030817],[-76.1424771340417,44.0702767820371],[-76.1431375413026,44.0697389928071],[-76.1439619728496,44.06987478162],[-76.1444133780765,44.0693660876703],[-76.1448709241866,44.0698206530496],[-76.1471806023766,44.0702611187872],[-76.1478343450364,44.0698043958804],[-76.1481204000639,44.0684780764624],[-76.1519489066171,44.0667604410795],[-76.1519568989282,44.0664092430633],[-76.1526125810507,44.0656553735787],[-76.1529261658484,44.0657287321584],[-76.1533619493725,44.0650446019413],[-76.1547224990742,44.0648822970712],[-76.1562647617883,44.0642949927616],[-76.1580494564414,44.0643939403434],[-76.1585093705107,44.064168699285],[-76.1612165029082,44.0639116149885],[-76.163753420729,44.0631745400902],[-76.1650180052056,44.0620452658688],[-76.1651235886925,44.0634846717476],[-76.1664249367221,44.0641826193756],[-76.1678029972837,44.0645151455806],[-76.1688621235801,44.0652740624143],[-76.1709859556091,44.065945527047],[-76.1710125340634,44.0661253142312],[-76.1714560026748,44.0654455384921],[-76.172451117719,44.065313780882],[-76.1756953079091,44.0641415310542],[-76.1769034665078,44.0628731605535],[-76.1805144540997,44.0606571429476],[-76.1848886575436,44.0588877436328],[-76.1853596505353,44.058833337111],[-76.1867409486252,44.0596787728812],[-76.1881446228505,44.0597902136155],[-76.1933833873817,44.0585966834267],[-76.1967209125298,44.0582781474557],[-76.2019927638096,44.0557694344228],[-76.204807770398,44.0548979756872],[-76.2056281523396,44.0551639063023],[-76.2049527090775,44.0567105541614],[-76.2055996550839,44.0570413366821],[-76.2066381677394,44.05680979008],[-76.207444220654,44.0570983665174],[-76.209801059498,44.0568888503561],[-76.2102376712688,44.0570057630517],[-76.2105941649944,44.0576501999641],[-76.2121302347229,44.0585882189036],[-76.212899032706,44.0589221676957],[-76.213320601289,44.059408351463],[-76.2132067784543,44.0604989258394],[-76.2095961286289,44.0658805289415],[-76.2073561004162,44.0676643304712],[-76.2069908876425,44.0687755618979],[-76.2064974628198,44.0688618054731],[-76.2061428582513,44.0697478468689],[-76.2049524386846,44.0707327429266],[-76.2043124339604,44.0721889795467],[-76.2021930126595,44.0739353946731],[-76.2017428785487,44.0746378664637],[-76.2006679005808,44.0749732865336],[-76.2005478829639,44.0754246981545],[-76.1980678823994,44.0778005355111],[-76.1984668430817,44.0779403953757],[-76.2000320182255,44.0773522616405],[-76.2001897875422,44.0779538030509],[-76.1988798049061,44.0787328233892],[-76.1977879152546,44.0786227457731],[-76.1977246046883,44.079235613368],[-76.1970902422825,44.0795753781739],[-76.1970623028805,44.0800078144919],[-76.1960074983789,44.0800728893642],[-76.195781010638,44.0805884329446],[-76.1983622540298,44.0803497921768],[-76.2017320080354,44.0791574812355],[-76.2034294654946,44.0795087204118],[-76.2042541764176,44.0802202611861],[-76.2065380271448,44.0802141493638],[-76.2066793123761,44.0795059216269],[-76.2056946070094,44.0794668102564],[-76.2042356612413,44.0791761100082],[-76.2036261651008,44.0788944430095],[-76.2033721044705,44.0784919874396],[-76.2044731722092,44.076904851732],[-76.2070028648802,44.0747219143052],[-76.2127824152124,44.0713070395308],[-76.2127219756618,44.0716903087384],[-76.214721456601,44.072542338932],[-76.215806033966,44.0726613356991],[-76.2168696563304,44.0721593385683],[-76.2178629217434,44.0708748223197],[-76.217711871825,44.0702282180744],[-76.2181711453955,44.0692599969343],[-76.2192957292317,44.0680460896732],[-76.2218763860237,44.0665239972304],[-76.2227871923818,44.0667168120534],[-76.223153728374,44.0674601334886],[-76.223749991432,44.0671971575127],[-76.2238202621451,44.0676330497027],[-76.2247530332102,44.0674339820755],[-76.2251215733438,44.0668583369501],[-76.2246156098364,44.0663550971234],[-76.2248674579162,44.0660237850637],[-76.2260389859125,44.0655790644223],[-76.2263816869052,44.0655843857532],[-76.2264664124095,44.0663217217546],[-76.2271726660893,44.0665662154045],[-76.2270675919471,44.066297254519],[-76.2284893681237,44.0661604221601],[-76.2281324818344,44.0651514244657],[-76.2287918497445,44.0643025482599],[-76.2293831208645,44.064854367493],[-76.2292924592928,44.0652424731328],[-76.2287839769093,44.0653334764761],[-76.2291614624665,44.0662252108253],[-76.2308264889473,44.0660587200658],[-76.2312718556988,44.0658783588511],[-76.2319985334749,44.0649657165086],[-76.2331016098465,44.0645351667677],[-76.2337893690112,44.0649778852088],[-76.234185134386,44.0649646036908],[-76.2343617925782,44.0646790993909],[-76.2357364619997,44.0644751632167],[-76.2372311238851,44.0638332644552],[-76.2396725148587,44.0632936060411],[-76.2395321890281,44.0631510817704],[-76.2405987740363,44.0631620024357],[-76.2418263003125,44.0621583249774],[-76.2425289185103,44.0618940937968],[-76.2442275868985,44.0622222065543],[-76.2434009661572,44.0634376159158],[-76.2443041278523,44.0643055672315],[-76.2448279795119,44.0642233300545],[-76.2465304199259,44.0647269262402],[-76.2476089462392,44.0642289813546],[-76.2487118106085,44.0631095537888],[-76.2522461575337,44.061220771216],[-76.2524812205924,44.0604349358897],[-76.2561613128842,44.058031281997],[-76.2575718744928,44.0566923366502],[-76.2573578391983,44.0566451734187],[-76.2577678033445,44.0562175238021],[-76.2602143326814,44.0545565417154],[-76.2642748758691,44.0525535658745],[-76.2650475249298,44.0523784647283],[-76.2694629583503,44.0520954551221],[-76.2713107264144,44.0520254110849],[-76.2736350839744,44.0522201209073],[-76.2738635084832,44.0519024706545],[-76.275316979918,44.0521653641407],[-76.2747443129075,44.0513524740619],[-76.2730320251613,44.0513535425868],[-76.2718055229645,44.0509215405954],[-76.2721429526431,44.0506837086314],[-76.2716801082694,44.0500226324302],[-76.2686025007672,44.0509751247413],[-76.2672308496852,44.0508867981006],[-76.2669477078941,44.0500886667785],[-76.2665127427353,44.0500169591132],[-76.2664297662508,44.0493291465906],[-76.265007684647,44.0497455218642],[-76.2650783811615,44.0491100265303],[-76.2647873458741,44.0490367196726],[-76.2645795781253,44.0492820995239],[-76.2646674055123,44.04875445146],[-76.2670514417499,44.0459461246603],[-76.2682415055838,44.0453567380322],[-76.268742083691,44.0445409120967],[-76.2705504741047,44.0433369347849],[-76.2718478309194,44.0420620874505],[-76.2743474614695,44.0386176036393],[-76.27468462884,44.0376460182753],[-76.2781816579517,44.035000599585],[-76.2781233851375,44.0347581681367],[-76.2775479306547,44.0348951434573],[-76.2774045460606,44.0338523911064],[-76.2768298201115,44.0328099549503],[-76.27783550653,44.0319344273496],[-76.2793291200815,44.0298875367189],[-76.2791389467359,44.0298941659112],[-76.2797026189154,44.0274075151184],[-76.2804318047877,44.0255447210433],[-76.2807021680439,44.0257487635111],[-76.2817183000724,44.0248775852385],[-76.281288917943,44.0236309712376],[-76.2806936897442,44.0238942265999],[-76.2805466058878,44.0223383432332],[-76.2815890585542,44.0223626761871],[-76.2818883727153,44.0221207395188],[-76.2817546629768,44.0219241705375],[-76.2822186859402,44.0215633466674],[-76.2824344603731,44.0216959728913],[-76.2826774456743,44.0209594972062],[-76.2836151098628,44.0199811438439],[-76.2850693583403,44.0189834735365],[-76.2853292589183,44.0183278291315],[-76.2862563337663,44.0179257699655],[-76.2866926113638,44.0173491655436],[-76.2867240739583,44.0170382057218],[-76.2840095196799,44.0181355867328],[-76.2828565284195,44.0182790733384],[-76.2819897736462,44.0179376744278],[-76.2815719986486,44.0176047426406],[-76.2816482215988,44.0172527679601],[-76.281328185999,44.0172203423259],[-76.2816274211084,44.015911542259],[-76.2820538792215,44.0155646443242],[-76.2810668157772,44.0152831075165],[-76.2825263652132,44.0138307534561],[-76.2851149424511,44.0125232501562],[-76.2855685395673,44.0120454886899],[-76.2853419745712,44.0117554355326],[-76.2840522992503,44.0122605948866],[-76.2836685623172,44.0120938451736],[-76.2837402874027,44.0111747247612],[-76.2829242021031,44.0110623429767],[-76.2825154057667,44.0118637018639],[-76.282086752171,44.0117289616846],[-76.2819669321835,44.010748968748],[-76.2816338701138,44.0108157239556],[-76.280361281648,44.0121309278405],[-76.2804187378936,44.0126974786944],[-76.2792883850766,44.0124580448261],[-76.2765572020841,44.0145727837932],[-76.2763135825723,44.0152822457159],[-76.2752222103504,44.015460979929],[-76.2740796889546,44.0160904270357],[-76.2698321407793,44.0173665979847],[-76.2667088638264,44.0189317635347],[-76.2655829684499,44.0185570991682],[-76.2637876206759,44.0188785593169],[-76.2621570311115,44.0187345147349],[-76.2619513609289,44.0190924062492],[-76.2599785500722,44.0193032266228],[-76.2594942790823,44.0197812228923],[-76.2579357128441,44.0198163860732],[-76.2557469002807,44.0206192105852],[-76.2547921842715,44.0204271222512],[-76.2528345935707,44.0217495305032],[-76.2528996881911,44.0219513865578],[-76.2526312347533,44.0218507925756],[-76.2523562254105,44.0221599088018],[-76.2504038691928,44.0229960522949],[-76.2488085600629,44.0234726571548],[-76.2478383014026,44.0229655908868],[-76.2461372399025,44.0238259578339],[-76.2449853023659,44.0233748684845],[-76.2429580015007,44.0239461460775],[-76.2420069928387,44.0246542330661],[-76.2412404936444,44.0247706067406],[-76.2386898477694,44.0264818823538],[-76.2380141655554,44.0262056156779],[-76.2374848251894,44.0263644068923],[-76.2374439087248,44.0265899267349],[-76.2360002226384,44.027406838866],[-76.2354022509847,44.0275663631813],[-76.2354988225727,44.0271106634506],[-76.2301489930347,44.0289240328367],[-76.2300806878355,44.0285826532406],[-76.2284021659641,44.0287627818612],[-76.2265412142249,44.0293049683665],[-76.2250066024621,44.0291098744922],[-76.2252013185882,44.0282479927705],[-76.2238627425766,44.0290096052619],[-76.2230087995759,44.028955735145],[-76.2212800942196,44.0292758445781],[-76.2189723429159,44.0280625889084],[-76.2161894780484,44.0298973836268],[-76.2153496996831,44.0308201374252],[-76.2136834164592,44.030365204161],[-76.2123333653682,44.0308612126992],[-76.2122469321665,44.0306010419061],[-76.2153815242987,44.0291767401431],[-76.2161228976145,44.0286286613748],[-76.2162868886628,44.0284108411269],[-76.2167867247616,44.0277798015766],[-76.2178366873438,44.0270123485602],[-76.2178875616333,44.026926276554],[-76.2179467183897,44.0265790277453],[-76.2158707387176,44.0272853897436],[-76.2147330637327,44.0281888043752],[-76.211294335283,44.0286394837736],[-76.2096646988311,44.029345497635],[-76.2083268845909,44.0287204482484],[-76.2056535153734,44.0289962982379],[-76.2037041990546,44.0279049906807],[-76.2029373674837,44.0278185414785],[-76.203079214162,44.0275064410153],[-76.2022155424068,44.0269708540133],[-76.2016488033789,44.0271748883427],[-76.2014244940524,44.0269971880013],[-76.201696197595,44.0260309998823],[-76.200622547337,44.0254841063491],[-76.2013842854603,44.0241661465998],[-76.2013145492448,44.0232260593851],[-76.2030046548917,44.0210835366866],[-76.2030380048466,44.0204979852735],[-76.2040020669281,44.019299415965],[-76.2058472622172,44.0182175771833],[-76.2067122500043,44.0169254984774],[-76.2083425539044,44.0153867341071],[-76.2091382052263,44.0140638596278],[-76.2109326223457,44.0125503277131],[-76.2120123973172,44.0115530317881],[-76.2142818040329,44.0094266950531],[-76.2149749953101,44.0089736670533],[-76.2159442074331,44.0075903770609],[-76.2187368190214,44.0055394048366],[-76.221234499329,44.0028793087797],[-76.222042983983,44.0010655363008],[-76.2215980601009,44.0008857338559],[-76.2209128476601,44.0012081724787],[-76.2207123868078,44.0010887743052],[-76.2215638504583,44.0000758209701],[-76.2216024869986,43.9994136741795],[-76.2206743575285,43.9990094557607],[-76.2202949926958,43.9979196253601],[-76.2203109620466,43.9968165647382],[-76.2210559933023,43.994566806439],[-76.2220924146798,43.9931872326004],[-76.2241858243634,43.9910940715098],[-76.2311120373249,43.9851540129702],[-76.2339116045686,43.9817025740701],[-76.2358006196772,43.9786795740914],[-76.2380968815284,43.9766829927552],[-76.2445825723527,43.972308939758],[-76.2458002153641,43.9720570742934],[-76.2475900986862,43.9708355997242],[-76.2482176491673,43.970702695562],[-76.2490779207991,43.9696849267814],[-76.2514214717635,43.9680612170635],[-76.2524071455141,43.9679513876321],[-76.2544948958114,43.9668030930931],[-76.2580053412618,43.9670976364871],[-76.2603749577424,43.9667024029981],[-76.2614075513986,43.9669521077583],[-76.2633140980284,43.9664358769482],[-76.2654013695236,43.965570989504],[-76.2672304858675,43.9648979942163],[-76.2688966073946,43.9635425321356],[-76.2682549138377,43.9631535107561],[-76.2695693898469,43.9629768613567],[-76.2709215986912,43.9616473634551],[-76.2719406008372,43.9612623955852],[-76.2747740013293,43.9608752060212],[-76.2761596463668,43.9608237324681],[-76.2816591109767,43.9610593132949],[-76.2820992585164,43.9620537379948],[-76.2820015182203,43.9627795952674],[-76.2835177450624,43.9639780185449],[-76.2833643370664,43.9656093277884],[-76.2837168629334,43.9660960456585],[-76.2843309485667,43.9663547440354],[-76.2834273934095,43.9681025161927],[-76.2822383815028,43.9689711664449],[-76.2813406240725,43.9702867011747],[-76.2803268114939,43.9711893794555],[-76.2802904306233,43.9715994339145],[-76.2789665537446,43.9729062158005],[-76.2762912675223,43.9736428672883],[-76.2759647155435,43.9742407253182],[-76.2762411981233,43.9746337811127],[-76.2755369988906,43.9747361741375],[-76.275258912818,43.9745592120277],[-76.2745369970113,43.9754360735857],[-76.275587593804,43.9749336804408],[-76.276715624476,43.9747545286833],[-76.2754066425631,43.975854027517],[-76.2742182540872,43.977438340913],[-76.2734705404621,43.9788421713646],[-76.2733352164511,43.9797845141614],[-76.2723581853919,43.9804886397813],[-76.271972762321,43.980285854636],[-76.2730628795963,43.9795309557623],[-76.2710954963606,43.9804621713724],[-76.2696746454487,43.9816438750758],[-76.2687207451098,43.9828518920452],[-76.2688337262231,43.9831432422473],[-76.267795471384,43.9839785538924],[-76.2683496447777,43.9846206379274],[-76.2687219048348,43.9846255101995],[-76.268569947618,43.9849558135097],[-76.2688853694704,43.9851278756364],[-76.2699559250322,43.9847288510103],[-76.2702798278792,43.9842570856658],[-76.2730038153664,43.9826557274683],[-76.2732555754113,43.9826934380757],[-76.2730753859417,43.9838343508651],[-76.2719648661296,43.9844769360984],[-76.27107976147,43.9845993202777],[-76.2707059311578,43.9849591021779],[-76.2704382008638,43.9848855505009],[-76.2697626848381,43.985955432926],[-76.2685960086427,43.9868191871614],[-76.2676172501232,43.9886216799642],[-76.2672244536804,43.9914980536669],[-76.2662616690032,43.9929942475746],[-76.2658166202553,43.9952139601268],[-76.2671429153987,43.9991471644127],[-76.2687577808523,44.0008623607193],[-76.2699303823354,44.0017406495441],[-76.2701141956088,44.0018781560665],[-76.2716184586881,44.0024421355388],[-76.2726737285169,44.0023538677223],[-76.2732334534991,44.0018614686339],[-76.2739576195856,44.0019479350073],[-76.2755012342642,44.0041229797173],[-76.2754404794049,44.0044882828242],[-76.2762724792581,44.0057259271612],[-76.2777474150383,44.0068213362067],[-76.2806022520281,44.0074916376094],[-76.2811652980818,44.00832711959],[-76.2829263796193,44.0093967467774],[-76.28750696022,44.0112539137801],[-76.2885308887269,44.0111703540825],[-76.28828395533,44.0110020778614],[-76.2890906873709,44.0110244959823],[-76.2944099418499,44.0090557444728],[-76.2960711486941,44.0088613657369],[-76.2976808030208,44.0091086990661],[-76.2984293583673,44.0096088757103],[-76.2994528359199,44.0094712049094],[-76.30092719588,44.0097875533685],[-76.3024718328414,44.0122908343814],[-76.3020467141163,44.0130294282546],[-76.3025385111916,44.0136045261096],[-76.3006323140065,44.0162146136581],[-76.3008845330905,44.0162657627028],[-76.30018296143,44.0183039383198],[-76.3003947203937,44.0193008720123],[-76.3030068433734,44.022264658311],[-76.3058873281629,44.0246176110245],[-76.3076507282521,44.02523667596],[-76.3084138946967,44.0264028467269],[-76.307831337235,44.0269001789343],[-76.3073808042722,44.0268243036164],[-76.306901692307,44.0271854022677],[-76.306679335918,44.0271114172143],[-76.3028851989076,44.0296620675289],[-76.3022627535522,44.0297321799915],[-76.3021858496791,44.0300481633108],[-76.3005260495966,44.0310438861712],[-76.3004209934208,44.0314637232052],[-76.2996735187476,44.0320934331375],[-76.3001972688976,44.03415368068],[-76.2999322344477,44.0342152145536],[-76.2996729258595,44.0348933913645],[-76.300474667759,44.0357215597383],[-76.3002073632664,44.0363908260342],[-76.3007099329386,44.0381587115541],[-76.3004449793372,44.0382247468585],[-76.3000383218895,44.0394762936606],[-76.3001365948867,44.0401684109046],[-76.2996949561435,44.0408576632711],[-76.297194654552,44.042069955739],[-76.2956725715924,44.0434781830227],[-76.2949298588886,44.0450486235187],[-76.2951987992133,44.0471432860887],[-76.295251719865,44.0479754671953],[-76.2957557960119,44.0487800293827],[-76.2974591607924,44.0501201737548],[-76.2978987944959,44.0503852755103],[-76.2985133688126,44.0503017722558],[-76.2990452702755,44.0499176039878],[-76.2998069095841,44.0499404593486],[-76.2998433587268,44.0502146377662],[-76.2961142597429,44.0537681478432],[-76.2959433220225,44.0546748896613],[-76.2951629860779,44.0555480205266],[-76.2947603638625,44.0566554503531],[-76.2952545836941,44.0584864702314],[-76.2959499255381,44.0585236071549],[-76.2957648618098,44.0591244051915],[-76.2962781447901,44.0596317598581],[-76.2991491694213,44.0596847073634],[-76.3002581629957,44.0588528282843],[-76.3005776461316,44.0588491951141],[-76.3009331067946,44.0594528554261],[-76.3018472171563,44.0598205792764],[-76.3055120596479,44.059261124704],[-76.3064615672251,44.0588271385124],[-76.3067715039644,44.0583734460722],[-76.3081318829863,44.0582588587987],[-76.3086350159022,44.0583026186512],[-76.3100402936203,44.0595469514381],[-76.3123368034065,44.0597862080247],[-76.3146131280483,44.0590983391818],[-76.318944321953,44.0597507005977],[-76.3200728727494,44.0605254431065],[-76.3217454684348,44.062491289237],[-76.3239735131216,44.062366481114],[-76.3264325514989,44.0627116088503],[-76.3281990885051,44.0627136118695],[-76.3300252296288,44.0633361027947],[-76.3302942876328,44.0641432448433],[-76.3317084119598,44.0640547609773],[-76.3308884270735,44.0648295639975],[-76.3315732828832,44.0648125883206],[-76.3326510815611,44.0639807580539],[-76.3345500464098,44.0648003944125],[-76.3345139458135,44.0652239574516],[-76.3339297111971,44.0656539160883],[-76.3338693075791,44.0677343179277],[-76.3345607255819,44.06869857711],[-76.3345480476583,44.0691398728437],[-76.3338424686134,44.0696072583077],[-76.3323606634162,44.0700926895353],[-76.3300070621005,44.0704081845879],[-76.3246948908375,44.0726260651122],[-76.3236950335869,44.0735694545877],[-76.323608414434,44.074128643577],[-76.3215746555802,44.0744447624976],[-76.3208908229516,44.0748623003304],[-76.3207411366758,44.0746434554584],[-76.3205304026899,44.0747494236031],[-76.3201639700041,44.0757484861637],[-76.3190378248959,44.0764952255849],[-76.3173891199055,44.0770183987433],[-76.3160272038662,44.0760302449367],[-76.3159962793626,44.0767103276319],[-76.3153639444543,44.0767085993635],[-76.315111140567,44.0766259786506],[-76.3147815540792,44.0772329690543],[-76.3139636739456,44.077787051005],[-76.312091626216,44.0782046768989],[-76.3110399936657,44.0792205720064],[-76.3110934398318,44.0795890816835],[-76.3109835597029,44.0801260192811],[-76.3116459127147,44.0811627713571],[-76.3124185671653,44.0815050237195],[-76.3132967152713,44.0815174497227],[-76.3137431231703,44.0812827458546],[-76.3131553069709,44.0808798612645],[-76.3141114998104,44.0803647099956],[-76.3156360791881,44.0800815921654],[-76.3161229678688,44.079702366059],[-76.3240696660947,44.0770717869632],[-76.3276760255663,44.0748422445589],[-76.3273803046664,44.0743955275296],[-76.328988086904,44.0742643158302],[-76.3321404216614,44.0728591801385],[-76.3324440459392,44.0738459734957],[-76.3335904750065,44.0743547844784],[-76.3338882449636,44.075080555165],[-76.3342319511711,44.0751260618761],[-76.3345163110776,44.075568392617],[-76.3342064039827,44.0756890477062],[-76.3344050457466,44.0760513516052],[-76.3339981412622,44.0762496642159],[-76.3343909709427,44.0765691889844],[-76.3354676359467,44.0762325124033],[-76.3360620035595,44.0759014615046],[-76.3361027053267,44.0758199587322],[-76.3366552455832,44.0755209036668],[-76.3367219535779,44.0753985838199],[-76.3368129888488,44.0753164924199],[-76.3429212992188,44.0731067072582],[-76.3469164827831,44.0711645848963],[-76.3523454170667,44.0705288185722],[-76.3548023372165,44.0712019720343],[-76.3557203399784,44.0703718173686],[-76.3562543875165,44.0702259377753],[-76.3571277997043,44.0704811642213],[-76.3600881348411,44.0706755693865],[-76.3607032176043,44.0720502155458],[-76.3612655387177,44.0724711663901],[-76.3613399317996,44.07302396599],[-76.3596341954668,44.0753400291718],[-76.3597078609133,44.0755732316037],[-76.3603126067626,44.0760386972855],[-76.3597219770397,44.0767299510259],[-76.3592460154662,44.0765015307541],[-76.3590076367258,44.0764548473174],[-76.3590000845892,44.0761263274906],[-76.3581177683003,44.0765239389455],[-76.3577965496193,44.0769148831411],[-76.3587502154979,44.076989084152],[-76.3582762688456,44.077408853078],[-76.3574235448588,44.0773964713865],[-76.3558846571153,44.0789497410144],[-76.3502197848139,44.0824469126538],[-76.3487284907124,44.0837564411219],[-76.3445763085859,44.0862451480304],[-76.3443255780103,44.0867207530808],[-76.344504667942,44.0878665288136],[-76.3453517720684,44.0893060481034],[-76.3470797264332,44.0910052770448],[-76.3488359444917,44.0922449944583],[-76.3499922595187,44.0924294161241],[-76.3529045276012,44.0911075730822],[-76.3538350241321,44.0904843573976],[-76.3562081656019,44.0899700769235],[-76.3614255861619,44.0875718054751],[-76.3613482591823,44.0881804282953],[-76.360407598214,44.0893575102228],[-76.3600223655859,44.0905144750375],[-76.3591460482464,44.0918438317022],[-76.3580380167677,44.0927077779264],[-76.3580750659849,44.0936571525011],[-76.3584631516624,44.0939631463104],[-76.359091900496,44.0941402367388],[-76.3603319429991,44.0940579706952],[-76.3612656896346,44.0945600297819],[-76.3611710808655,44.0950968334349],[-76.3577221349778,44.0992296874722],[-76.3577831386704,44.09991318961],[-76.3594819696537,44.1012164443001],[-76.3604237939403,44.1014033099667],[-76.3638474432696,44.1001516308213],[-76.3644875495034,44.1001574999606],[-76.3645064805997,44.1006389331901],[-76.3653607425023,44.1006692507993],[-76.3655174895362,44.1002037260245],[-76.3655585829689,44.1000051698677],[-76.3682089202809,44.0995953662758],[-76.3709313905135,44.100562093073],[-76.3711844360476,44.1025307113882],[-76.3702670109025,44.1046934182137],[-76.3685114710719,44.1059118345805],[-76.3659613893389,44.1101106953396],[-76.3631182322445,44.1127284679776],[-76.3592031775052,44.1152643821499],[-76.3574974160196,44.1165990724715],[-76.3556671174928,44.1174805649335],[-76.3539144549661,44.1188202586227],[-76.3539155751653,44.1193289117007],[-76.3524096528977,44.1207016721681],[-76.3520950323425,44.1206423717449],[-76.3503317544241,44.1220721643556],[-76.3480933386874,44.1236875891001],[-76.3475190475229,44.1246081553695],[-76.3471867130885,44.1245265423817],[-76.3466914044988,44.1246809243404],[-76.3461208889534,44.1247236523471],[-76.3441780656575,44.1255027485589],[-76.3426718262846,44.1272219953513],[-76.3414347949345,44.1274345748547],[-76.3403646849371,44.1276181768245],[-76.3390420315639,44.1287410295906],[-76.3391637460984,44.129387815056],[-76.3386949009785,44.1292132455777],[-76.3376124750786,44.1295275077935],[-76.3379263940496,44.1299334686132],[-76.3358093856235,44.1299852222724],[-76.3338200179178,44.1296348180482],[-76.3325379162931,44.1298793376131],[-76.3311955754422,44.1304846602269],[-76.3313642341368,44.1308608197915],[-76.3301653165074,44.1311403552907],[-76.3304095091444,44.1307773984865],[-76.3301844946404,44.1302578460746],[-76.3287546012869,44.1307066067943],[-76.3290966725606,44.1310987609079],[-76.3277732035172,44.1314517419368],[-76.3226008622147,44.1329071220399],[-76.3225148458313,44.1329216210563],[-76.3228230074996,44.1331791417712],[-76.3226590658585,44.1334646301298],[-76.3220002845483,44.1332516745239],[-76.3217727367953,44.1333488349656],[-76.3214016400565,44.1335781955653],[-76.3211515490814,44.133698123038],[-76.3209484633518,44.1332998385848],[-76.3206492893279,44.1331817542646],[-76.3203663568443,44.1331084960907],[-76.3199389572968,44.1331089274235],[-76.318894417844,44.1333955656917],[-76.3176542747296,44.1339860459781],[-76.3132418174277,44.1366206275864],[-76.310387291255,44.1388905878512],[-76.3084407130012,44.141006046541],[-76.3074275382265,44.1415533042997],[-76.3069897963751,44.1423775703057],[-76.3061716260857,44.1427155218821],[-76.3058538578337,44.1432413181867],[-76.3050682739312,44.1437814553158],[-76.3051527506022,44.1449508673962],[-76.3029716563638,44.1462676478776],[-76.30206768349,44.1477679196194],[-76.3015962377474,44.1478137983994],[-76.3009009444124,44.148767010682],[-76.3001484194107,44.1492167084586],[-76.2993047432555,44.1493253262088],[-76.2989522263717,44.1499280220808],[-76.2990969916763,44.1502729889554],[-76.2981314069505,44.1510762041532],[-76.2979663684665,44.1515327229195],[-76.2951249603919,44.1533565016912],[-76.2945598293483,44.1539976016936],[-76.293466558088,44.1535103094288],[-76.2911884637651,44.1542787839567],[-76.2907195737295,44.1565167877027],[-76.2875865707171,44.1582716439178],[-76.2853289112703,44.1589317356217],[-76.2843879430782,44.1587982593254],[-76.2829975450545,44.1597096471498],[-76.281949504867,44.1599014537956],[-76.2814437488704,44.1597945852168],[-76.280303484941,44.159267180864],[-76.2761776324355,44.1585300349423],[-76.2740535452849,44.1593909783125],[-76.2725420184283,44.1589531581289],[-76.2714582782931,44.1592668045013],[-76.2656560634663,44.163026819615],[-76.2644270414951,44.1636436015354],[-76.2601694151206,44.1644288157911],[-76.2592214643238,44.165380051437],[-76.2569409050238,44.1667915703169],[-76.2547535333581,44.1675718216473],[-76.2538819079194,44.168184568752],[-76.2511749246422,44.1685788213211],[-76.2508561511754,44.1682942167147],[-76.2503300914568,44.1682999676115],[-76.2492401233018,44.1690321130894],[-76.2510624645518,44.1697279130808],[-76.2512146247879,44.1700638555802],[-76.2496569649498,44.171642873226],[-76.2482264284026,44.1725723159703],[-76.2471190446091,44.1724808900331],[-76.2473363138387,44.1719968637592],[-76.2466488295585,44.1716127524705],[-76.2467414153216,44.1713326534493],[-76.2459037237427,44.1703875009603],[-76.2451301916381,44.1698512710456],[-76.2441114095794,44.16986238142],[-76.2442364092529,44.1704146931945],[-76.2447361375539,44.1726284432054],[-76.2459126044876,44.1733628402687],[-76.2461710542864,44.1743098173899],[-76.2439147405159,44.1762565369491],[-76.2397477281025,44.1786651215202],[-76.2385724846741,44.1795916692073],[-76.2358584029096,44.1809084968253],[-76.2359322570023,44.1801604626478],[-76.2336254902522,44.1807120865823],[-76.2303538340723,44.1819582845641],[-76.2293306790149,44.1828200777804],[-76.2298067232334,44.1836567124333],[-76.2301820941563,44.183733691844],[-76.2311274209742,44.1833948948478],[-76.2313807440877,44.183468685848],[-76.2311795834478,44.1840020225843],[-76.2255462968101,44.1873982008232],[-76.2250384926547,44.1872145941004],[-76.2267977766633,44.1857777515959],[-76.2267348290164,44.185364299163],[-76.2256919810913,44.1847948222084],[-76.2249739702611,44.1847485148152],[-76.2236492732207,44.1861581633045],[-76.2231548638445,44.1858843759858],[-76.2214168546367,44.1872579152047],[-76.221349633704,44.1883164654781],[-76.2198488183588,44.1893858464303],[-76.214891549905,44.1920945578585],[-76.2140960198558,44.1919904888944],[-76.2105396642061,44.1932661556146],[-76.2092917964786,44.1934144283857],[-76.2092376631013,44.1940542010168],[-76.2081116284859,44.1948628763288],[-76.2047897555833,44.1957442586318],[-76.2039768898456,44.1962479918428],[-76.203909182026,44.1979682419758],[-76.2044097421669,44.1991738367493],[-76.2055822708865,44.1997331339468],[-76.2059290053148,44.1995539153389],[-76.2074936648255,44.1999154877074],[-76.204642996917,44.202740984371],[-76.2031784052373,44.2031075447522],[-76.2019900616772,44.2028679896798],[-76.2010347177456,44.2034677320196],[-76.2016363715937,44.2044336996876],[-76.2014408200344,44.2052009962713],[-76.1998235174514,44.2060237620467],[-76.1988865988646,44.2061101331603],[-76.1979713422525,44.2058001456096],[-76.1979953703897,44.2054622887654],[-76.1970943754311,44.2054492371438],[-76.1971113580815,44.2048413701861],[-76.1962439735893,44.2043643151779],[-76.1958324257132,44.2044361499679],[-76.1943665602225,44.2056128619484],[-76.1936208264843,44.2057151939496],[-76.1919365580901,44.2068491455247],[-76.1906470606358,44.207218217439],[-76.1893841560088,44.2070648356537],[-76.1892611685615,44.2066880000984],[-76.1879156341997,44.2069360878872],[-76.187591897541,44.2067864099401],[-76.187424439894,44.2064730542733],[-76.1880809305002,44.2054354018294],[-76.187755955963,44.2048941155427],[-76.1859850765007,44.2043723660159],[-76.1857730669071,44.2049732553837],[-76.1839705990862,44.2059732753779],[-76.1825741275529,44.2059832546153],[-76.1821804660324,44.20716219783],[-76.1806821722582,44.2074207854874],[-76.1804220947121,44.2077340723637],[-76.1793224139722,44.2077229356415],[-76.1716758033568,44.2130863434088],[-76.1635895365801,44.2176704779199],[-76.1604959318794,44.219056901083],[-76.159431993308,44.2193017885866],[-76.1579390490014,44.2191368923158],[-76.1553904979976,44.2196218680622],[-76.1522062595729,44.220729897067],[-76.150828779323,44.2206087565392],[-76.1508214005613,44.2199111151512],[-76.1503487151436,44.2196052857743],[-76.1483087812705,44.2199364284851],[-76.1456821037865,44.2207145633909],[-76.1442723821027,44.2208862574592],[-76.1425859963794,44.222042007948],[-76.1417691142741,44.2220816944718],[-76.1393414971688,44.2232493129844],[-76.1388052227072,44.2231736411639],[-76.1372012834623,44.2239278656088],[-76.1362712819032,44.2240271581928],[-76.1362151362996,44.2231859569047],[-76.1351187919027,44.2226522009858],[-76.1285061439759,44.2232354509508],[-76.1274955635358,44.2238666333496],[-76.12645897058,44.223998408996],[-76.1259652385336,44.2244894319409],[-76.1222843871653,44.2259616374243],[-76.1215649534037,44.2258831849635],[-76.1204255114327,44.2262049750855],[-76.1197906639366,44.2265623155454],[-76.1190315515889,44.2276275887752],[-76.1181733011664,44.2278835786907],[-76.1177280835352,44.2277619025124],[-76.1167805944724,44.2281402935912],[-76.1154972244266,44.2297688449833],[-76.1150962326535,44.2295657004613],[-76.1145120133084,44.229769469359],[-76.1135644173462,44.232191464208],[-76.1128240330755,44.2330359449355],[-76.1122097830505,44.2349235125823],[-76.1115092184015,44.2358486209597],[-76.1105422637448,44.2356194629071],[-76.1100107934733,44.2361963104203],[-76.109545653904,44.2382984777795],[-76.1086720144424,44.2389731743238],[-76.1077684880313,44.2392880438791],[-76.1072224138482,44.2386766550225],[-76.1056791584957,44.2382684908437],[-76.1049768376403,44.2374830513967],[-76.1053880755976,44.2370019216052],[-76.104191180076,44.2371350477362],[-76.1023441073079,44.2368198055947],[-76.0999067605498,44.2359295464378],[-76.0998435200521,44.2355610425699],[-76.1009109755278,44.2350781026275],[-76.103311473393,44.2345057476633],[-76.1041728185116,44.2340517782896],[-76.1035909554475,44.2336972966633],[-76.1027724698495,44.2340788252998],[-76.1019246758169,44.2340870156073],[-76.1028570983357,44.2334793232327],[-76.1031757684963,44.2331746495342],[-76.103046478469,44.2325817170597],[-76.1024846927516,44.232879736533],[-76.101982290166,44.2332356976822],[-76.1010347966116,44.2338120188923],[-76.100247294806,44.2346793800353],[-76.0992969850332,44.2351071682268],[-76.0983089523068,44.2346890519011],[-76.097762514306,44.2340506126585],[-76.0966799195228,44.2337639317307],[-76.0951433979417,44.2337066674656],[-76.0955520083267,44.233081553352],[-76.095316799741,44.2327642130689],[-76.094341564414,44.2329041109952],[-76.093786874489,44.2326393467281],[-76.093212576138,44.2329824543324],[-76.0926174108212,44.2330241667729],[-76.0928564067042,44.2327247860593],[-76.0925847983831,44.2325113210574],[-76.0899856731272,44.2324596560319],[-76.0898066173315,44.2326369201491],[-76.089076761316,44.2321667418742],[-76.0907918922301,44.2297466172045],[-76.0908542433956,44.228931269931],[-76.0919182780867,44.2275076558808],[-76.0930132309933,44.2277087373385],[-76.0936810547452,44.2274322547436],[-76.0941575921388,44.2268425055378],[-76.0962555014836,44.2263812325898],[-76.0974953508489,44.2256040770241],[-76.0980008660969,44.2257522606851],[-76.0985769808415,44.2262868826299],[-76.0993404527132,44.2263155405876],[-76.099626559843,44.2261327278247],[-76.0996259211408,44.2257636199473],[-76.0970498448585,44.2249601607883],[-76.0963499243014,44.2244357237095],[-76.0961789201057,44.2231319629427],[-76.0965725052693,44.2228806048284],[-76.0979547376071,44.2227772848623],[-76.0986059622892,44.2223073728833],[-76.0960306118455,44.2223321399157],[-76.0956342877186,44.2228986198505],[-76.094409253369,44.2235450731405],[-76.0944099082408,44.2242112727138],[-76.0927569551175,44.2241911041151],[-76.0923127471926,44.2263110113451],[-76.0905020759565,44.2280433606873],[-76.0894965665061,44.2281294903045],[-76.0888108788565,44.2284781413568],[-76.0900171006874,44.2299115700127],[-76.0892773470341,44.2311025002118],[-76.0887922693571,44.2311296367605],[-76.0887480767367,44.2310040196475],[-76.0878483070801,44.2289824752372],[-76.0851308260905,44.2297600837687],[-76.0853854715241,44.2302438114483],[-76.0874008212028,44.2296664504993],[-76.0879751348252,44.2309528740306],[-76.0871396971194,44.2319871540083],[-76.0863724496285,44.2324355974213],[-76.0867306375767,44.232634749101],[-76.0862667799033,44.233048792199],[-76.0867862549708,44.233336435645],[-76.0873902794729,44.2327364973417],[-76.0881033648404,44.23318884135],[-76.088679756266,44.2326611820724],[-76.088988768639,44.2328878040698],[-76.0885967106113,44.2333326812504],[-76.0891561301663,44.2346777580811],[-76.0892526191093,44.2357886786877],[-76.0900314072566,44.2361728621982],[-76.0896646574655,44.2365904923521],[-76.0903021990091,44.2384524758648],[-76.0900162221351,44.2386892803037],[-76.0889811895529,44.2385011023857],[-76.0883474353065,44.2389347805682],[-76.0884963687941,44.2391584288626],[-76.0893218792177,44.239168556293],[-76.0898092242424,44.2394925031419],[-76.089639383365,44.2398092221311],[-76.0904608343018,44.2400219417882],[-76.0907608904713,44.2409868709664],[-76.0905948647388,44.2421633178886],[-76.0854475298389,44.2442695322182],[-76.0841826848509,44.2439754644338],[-76.0819650219938,44.2422004655547],[-76.0809865832745,44.241750599002],[-76.0798202888631,44.2420452300754],[-76.0791300054324,44.2445005112222],[-76.0809955143251,44.2460673370184],[-76.0803023868283,44.2461954387308],[-76.0795335852519,44.2459326332636],[-76.0780779578605,44.2461624622256],[-76.0779672503832,44.2459519436929],[-76.0775570571666,44.2460998624781],[-76.0767892581101,44.2458910451617],[-76.0767049566106,44.2454552071379],[-76.0778706222013,44.2448230103916],[-76.0782344506712,44.2442388951447],[-76.0784585650632,44.2442952951995],[-76.0791315577213,44.2418986988932],[-76.0794985931767,44.2410219593296],[-76.0791823251112,44.2400166413113],[-76.0796598443634,44.239381930214],[-76.079109204942,44.2389324996992],[-76.077271719893,44.2408449457184],[-76.0757517039569,44.2417415576939],[-76.0751338948068,44.2426476573105],[-76.0743500042286,44.242411966696],[-76.0722604707755,44.2439305826418],[-76.0703850696349,44.2433945224196],[-76.0724409378245,44.2422813810099],[-76.0723725526752,44.2408280778737],[-76.0722774282731,44.2402257864638],[-76.0716711804407,44.2405015653899],[-76.0718794099235,44.2409542487193],[-76.0715672884814,44.2412857816794],[-76.0717262759137,44.2418064486288],[-76.0713647067068,44.2423455087442],[-76.0710575385751,44.2424339187575],[-76.0706151524337,44.2422535140262],[-76.0707650659833,44.2409872191343],[-76.0707714979207,44.2409106356621],[-76.070627399166,44.2409705057858],[-76.0702963412377,44.2411221568858],[-76.0700446153288,44.2418267341105],[-76.0693950174957,44.2420443889529],[-76.0683885216951,44.2432106731943],[-76.0655813295514,44.2434935041566],[-76.0641187698609,44.2442048679479],[-76.0622840498263,44.2472153820666],[-76.0633114485252,44.2486867649102],[-76.0621967398689,44.2487511649319],[-76.0619618079642,44.2484427570342],[-76.0614364749827,44.2485466754279],[-76.0616694467634,44.2492017089371],[-76.0591331945942,44.2497024271659],[-76.0584211485775,44.250370752647],[-76.0559615954656,44.2508301999717],[-76.0554132611212,44.2504841490135],[-76.0548249095259,44.2504805868206],[-76.0544942504496,44.2507897523199],[-76.0530056764468,44.2508530194874],[-76.0526049397952,44.2519686123681],[-76.0510825002045,44.2522842565642],[-76.0491634436361,44.2535353589168],[-76.0451554114683,44.2550396697329],[-76.0420550541316,44.2555812137249],[-76.0409066963814,44.2554566493073],[-76.0397958980915,44.2557278716751],[-76.0385392430439,44.2564280635879],[-76.0383925903788,44.2567895260975],[-76.0373681408491,44.2572084922644],[-76.0366854886068,44.2569896176911],[-76.036877179207,44.2540618349864],[-76.0363366116965,44.2540397373471],[-76.0360815611227,44.2550234030429],[-76.0354766284239,44.2555240717082],[-76.0355396739872,44.2576302483653],[-76.0359216044083,44.2579328897406],[-76.0378539174154,44.2578928182032],[-76.0377664816938,44.25815020512],[-76.0399191280839,44.2593640400831],[-76.040617299621,44.2595287342264],[-76.0406354455897,44.260131782738],[-76.0384776608363,44.2617675187362],[-76.0383384246622,44.262106406055],[-76.0378547258991,44.2624259195001],[-76.0370679670002,44.2624555821072],[-76.0373295061053,44.2634300503897],[-76.0378570112132,44.2634612654592],[-76.0377312803111,44.2637009934496],[-76.0364684538375,44.2640410906283],[-76.0364363498459,44.263487686511],[-76.035455932138,44.2633705447278],[-76.0349384153978,44.2635057875301],[-76.0347077181514,44.2638545030215],[-76.0335292371948,44.2637616496665],[-76.0333899731729,44.2641230387875],[-76.0320348007864,44.2644234093204],[-76.031754185058,44.2650066531497],[-76.0306332834161,44.2656064946184],[-76.0296109970295,44.2657147615792],[-76.028039839106,44.2654678388189],[-76.0271083409536,44.2659759070931],[-76.0270898212857,44.2662371665953],[-76.027480023394,44.2662516585702],[-76.0273847013626,44.2665091079604],[-76.0259180830836,44.2665538187783],[-76.0256599198474,44.2662095174566],[-76.02367801804,44.2665199241423],[-76.02286493491,44.2672654793962],[-76.0213530595071,44.267814715583],[-76.019170883697,44.2666773233586],[-76.0178394618683,44.2667297251278],[-76.0176159475509,44.2664616239076],[-76.0187990081188,44.2654427058923],[-76.0193195521816,44.2636554229222],[-76.0197882526727,44.2631650613033],[-76.0201074743988,44.2610374517467],[-76.0196939789752,44.2609871293404],[-76.018803960531,44.2625301271298],[-76.0175363469353,44.2629375819367],[-76.0161316091047,44.2623468890496],[-76.0145640660019,44.2607852808593],[-76.0121889491368,44.2594694041135],[-76.0121705785892,44.2599017207816],[-76.0143241691086,44.2612195680592],[-76.0153468606354,44.2625609502473],[-76.0170191526902,44.2638605205747],[-76.0168403762706,44.2650190251091],[-76.0163413369774,44.2655231500036],[-76.014433030548,44.2664224497763],[-76.012388267332,44.2667467238503],[-76.0118606544263,44.2674356481835],[-76.0123404419246,44.2680120975213],[-76.0136939497328,44.2682611696786],[-76.0138635202175,44.2692815253991],[-76.0148011996773,44.2700474616015],[-76.0148942220216,44.2710549910911],[-76.0130707228432,44.2721830947392],[-76.0137029903779,44.2729697579982],[-76.0138206202728,44.2735899323078],[-76.0145978094189,44.2738801272245],[-76.0164825117159,44.2738633473247],[-76.0163886009378,44.2744989084104],[-76.0148421978886,44.2748097826586],[-76.0142085846776,44.2747163831704],[-76.0132958810776,44.2748775488431],[-76.0127654510552,44.274976792758],[-76.0126334741669,44.2753155839878],[-76.0121176875819,44.2760359147123],[-76.0112818914483,44.2758902734787],[-76.0099004379499,44.2760285580181],[-76.0091814569392,44.2769352395162],[-76.0078259216333,44.2777395048804],[-76.0066925226292,44.2780961361671],[-76.0056230737919,44.2781640902224],[-76.0051076168886,44.2770162261696],[-76.004536881256,44.2765710946978],[-76.003602147372,44.2766153360628],[-76.0026825941179,44.2761282476418],[-76.0008227679677,44.2795072711472],[-76.0008137911031,44.2799214962762],[-76.0010860677708,44.280706884808],[-76.0020524987096,44.282053376879],[-76.0018363038651,44.2825099366729],[-76.0023212620662,44.2837301079683],[-76.0017702103181,44.2838429872595],[-76.0009091733216,44.2829817402744],[-76.0002078567827,44.2828033268637],[-75.9993924344397,44.2833506724724],[-75.9975433440555,44.2833849143223],[-75.9959710964756,44.2838083398836],[-75.9949349131516,44.2845736771091],[-75.9950374684177,44.2850544492702],[-75.9946053572064,44.2857154611595],[-75.9937784921234,44.2860558077942],[-75.9931400675358,44.2858228010642],[-75.9919225350171,44.2870308500411],[-75.9926776139292,44.2873753849947],[-75.9922031264911,44.287780167384],[-75.9914491399304,44.2879397976323],[-75.9915474946742,44.2883125717569],[-75.9909529420085,44.2888444401532],[-75.9901442983527,44.2889460172145],[-75.9892134056648,44.2894853062616],[-75.9884787724086,44.2903289895212],[-75.9883996074758,44.2910454291986],[-75.9880647209278,44.2911383712671],[-75.9880804540217,44.2916063992622],[-75.9884752285548,44.291882066487],[-75.9884667951709,44.292287282709],[-75.9878805267687,44.2928730817712],[-75.9881558532168,44.2933118443621],[-75.9879018159426,44.2936471689738],[-75.9870522908565,44.2936050288582],[-75.9866453531345,44.2939326745656],[-75.9864138689639,44.2942587965099],[-75.9861181759117,44.2944009104788],[-75.987203272503,44.2961471120397],[-75.9872595717185,44.2972089957362],[-75.9877962603035,44.2973033695381],[-75.9873123333683,44.2981538694305],[-75.9867070682928,44.2979655551787],[-75.9868786671734,44.2977344853033],[-75.9859458197514,44.2972609092864],[-75.9847873685307,44.2972304335568],[-75.9846754097002,44.296862273921],[-75.9845137237288,44.2964720360747],[-75.9844183918159,44.2962072686239],[-75.9829193003378,44.2952749047263],[-75.9821676368204,44.2955334884705],[-75.9828457911981,44.2963559199716],[-75.9836151344585,44.2965428351707],[-75.9839737598863,44.2973004994215],[-75.9831142069067,44.2974339789829],[-75.9824394670254,44.2980295173866],[-75.9812924576464,44.2982149838643],[-75.9819324677605,44.2985605815594],[-75.9826766537014,44.2985541528672],[-75.9827385934386,44.2987201760781],[-75.9831867243063,44.2995355891634],[-75.9819209522569,44.3001857515387],[-75.9815033443459,44.3007925682319],[-75.9815147430685,44.3014722078776],[-75.9803496613827,44.3017523541532],[-75.9752332177488,44.3041191676074],[-75.9748775405918,44.3041222180379],[-75.9745385307767,44.3035264142068],[-75.9737788983044,44.303055755384],[-75.9736633560942,44.3038580257419],[-75.9744445768794,44.3042834843319],[-75.9747747059497,44.3048163421031],[-75.9736943731244,44.3056043716343],[-75.9728771990666,44.30565638319],[-75.9725817512545,44.3053708098864],[-75.9718748849237,44.3056244409633],[-75.9724365978776,44.3046517992952],[-75.9719303388245,44.304363525551],[-75.9713901090807,44.3045301989889],[-75.9710642694659,44.3042538846235],[-75.9712137428409,44.3035818727896],[-75.9709029616852,44.3032919248706],[-75.9701493308574,44.3032758496121],[-75.9697262468165,44.3033244752464],[-75.9693347214898,44.3034808674903],[-75.9690901443739,44.3034739488196],[-75.9687599551165,44.3032651887015],[-75.9685599092859,44.3030373129604],[-75.9685967348226,44.3028479323931],[-75.9687492049775,44.3027340944353],[-75.9693752651535,44.3025937107198],[-75.969795285041,44.3025496149249],[-75.9707406127572,44.3020778849227],[-75.970754955259,44.3019742263752],[-75.97061662818,44.3018538645292],[-75.9703717034161,44.3018019363958],[-75.9685287835596,44.3021507666654],[-75.9669129452305,44.3026822017964],[-75.9667266759631,44.3027423060403],[-75.9661784206704,44.3024228529913],[-75.9650771166748,44.3024187018427],[-75.9648079715342,44.3018717930069],[-75.9642391079907,44.3020836915497],[-75.9639121562615,44.3027121835298],[-75.9645954948167,44.3033366089871],[-75.963912217347,44.3040716599449],[-75.9627427168483,44.3045677399033],[-75.9620955803991,44.3056445932138],[-75.9622064441832,44.3058822385624],[-75.9617231155261,44.306223946243],[-75.9614259851694,44.3064290303242],[-75.9611650632069,44.3066203028037],[-75.9589121351868,44.307782727741],[-75.9572212722601,44.3081976174372],[-75.9563016965481,44.3090111382115],[-75.9574498117532,44.3100008249897],[-75.9583602300391,44.3100156616439],[-75.9601220472968,44.308812380799],[-75.9626115196976,44.3081431023876],[-75.963717247896,44.3070533571055],[-75.96453568768,44.3075280851672],[-75.9649592487264,44.3086228748698],[-75.9639410326064,44.3094598023309],[-75.9641742334575,44.3096784017953],[-75.9618575744595,44.311543670384],[-75.9605754117494,44.311703063127],[-75.958657167258,44.3131687612141],[-75.9572714261007,44.3132029458274],[-75.9570992001961,44.3128307655066],[-75.9558692305024,44.3119903160784],[-75.9556505482229,44.3119156281066],[-75.9554695996769,44.3118721332498],[-75.9514123775608,44.3116135578269],[-75.9504641410997,44.3120941549174],[-75.9503194647282,44.3125950393482],[-75.9511242070008,44.3131690125385],[-75.9517604262243,44.3127765523665],[-75.9525232414276,44.31267563038],[-75.9527351629863,44.3134661312665],[-75.9521351404788,44.3137232465155],[-75.9521380977327,44.3143624450349],[-75.9510848401301,44.3149654694882],[-75.9517440238856,44.3164409694746],[-75.9510544258695,44.3172885344407],[-75.9493698906757,44.3171720693717],[-75.948465564764,44.3175397436476],[-75.9480709231816,44.31833531175],[-75.9468979722539,44.3191283612181],[-75.9463320641676,44.3187864529419],[-75.946713716111,44.3184456577851],[-75.9476208079354,44.31749727168],[-75.9471108127891,44.3170018473173],[-75.9463426364402,44.3176474675777],[-75.9459761435672,44.3175199727612],[-75.9444135528765,44.3181361758597],[-75.9443304362549,44.3196628985731],[-75.9435260128842,44.3199846878424],[-75.9421832417403,44.3210671993039],[-75.9412966270127,44.3210565377685],[-75.941328299813,44.3208086894614],[-75.9407629819199,44.3206243033901],[-75.9402340547789,44.3209482911647],[-75.9387271425679,44.3211363067525],[-75.9382076118048,44.3209965461099],[-75.9385776871591,44.3220063438575],[-75.9382017907217,44.3222705380144],[-75.9359665891571,44.3221089021159],[-75.9359934748352,44.3214379469039],[-75.9351277504296,44.3211164573848],[-75.9342548700444,44.3212541804305],[-75.9337793181027,44.320677385856],[-75.9335114818075,44.3206660809157],[-75.9322564392358,44.3219053098516],[-75.9347107210337,44.3217501074544],[-75.9351093637124,44.3219764086118],[-75.9346599680167,44.3222772083255],[-75.9356378434923,44.3234350693899],[-75.9349821263355,44.3238230984942],[-75.9337539326111,44.3257643667594],[-75.9309646924,44.3276373893705],[-75.9302042604271,44.3284448938377],[-75.9294225392804,44.3281361792395],[-75.9283909732969,44.3283336753126],[-75.926792478741,44.3281486522895],[-75.9284157928499,44.3288601560394],[-75.9286816645296,44.3287454451126],[-75.9290080152858,44.3290578874367],[-75.9284647734907,44.3295259871386],[-75.9280123864052,44.3294711616079],[-75.9272988339138,44.3298281072218],[-75.927196461904,44.330589706928],[-75.9262170089868,44.3315565256286],[-75.9254871403949,44.3313553995816],[-75.9253503952491,44.3323738658299],[-75.9248524483073,44.3328100688245],[-75.9236015936815,44.3330768295258],[-75.9229248280993,44.3338070789312],[-75.9221358243105,44.3337594642206],[-75.9214844208637,44.3332155570765],[-75.9208754035253,44.3333960540441],[-75.9203128820876,44.3331440208649],[-75.9201263819532,44.3333481016598],[-75.9199761773494,44.333641918953],[-75.9203296796851,44.3337380911446],[-75.9201283088394,44.3340683362014],[-75.9204921319194,44.3343219788306],[-75.9195721654403,44.3361660633643],[-75.9199796610161,44.3362798056349],[-75.9217210478893,44.3355949642814],[-75.9228699886461,44.3361438340414],[-75.9227240950575,44.3365861713752],[-75.9208322026449,44.3379204724632],[-75.9193577321921,44.3385581262318],[-75.9184464470319,44.3385159772361],[-75.9183222576388,44.3388951115091],[-75.9185540975423,44.3390552941],[-75.9182602729859,44.3393412669469],[-75.9177161706048,44.3392916431748],[-75.917572094308,44.3388786630776],[-75.9165720196651,44.3385491158762],[-75.9166094803108,44.3380131282958],[-75.916003049222,44.3378874722485],[-75.9155942349194,44.338165361721],[-75.9157056340994,44.3389207263612],[-75.9162801543344,44.3394607841429],[-75.9157651142494,44.3399150915668],[-75.9148988400748,44.3395439371231],[-75.9147605300637,44.3396485868418],[-75.9145431467482,44.339960943454],[-75.9143642140216,44.3402504834124],[-75.9151003968717,44.3408252589849],[-75.916322358983,44.3411530298215],[-75.9146054476081,44.3419636356576],[-75.9142034829594,44.3422054525108],[-75.914053296322,44.3423282024792],[-75.9134190210528,44.3429320091625],[-75.9132090703978,44.3427176214935],[-75.9123184213363,44.3430218778522],[-75.911475990246,44.3429746188303],[-75.9113039889203,44.3432325870584],[-75.9117073998565,44.3435849743169],[-75.9115608711589,44.3440182993224],[-75.9098122519493,44.3447660650917],[-75.908808799641,44.3447020696583],[-75.9087678346674,44.3450175061126],[-75.9071983287457,44.3464480364885],[-75.9068413750827,44.3461582843057],[-75.9063746095628,44.3461440015563],[-75.9065155058235,44.3468361176308],[-75.9058232443027,44.3476024005053],[-75.9047433543468,44.3477955668111],[-75.9039400763281,44.3479009932288],[-75.9038831240374,44.347716882471],[-75.9062496458219,44.3452401854655],[-75.9062504480175,44.3448620487957],[-75.9072719834125,44.3437420128495],[-75.9065659031076,44.3436396106245],[-75.9049820421077,44.344903667725],[-75.9040602655233,44.3443663165346],[-75.9031909056357,44.3448098799042],[-75.9040211322145,44.3450553654654],[-75.9039455201188,44.3459967926091],[-75.9026661511692,44.3472088775221],[-75.9012609093838,44.3478637536963],[-75.9010898791368,44.348468317911],[-75.9004773368092,44.3485361956684],[-75.9005811551066,44.3491925993647],[-75.9000656344229,44.3497818858233],[-75.8998377408185,44.3503103728168],[-75.8988188725215,44.3509576569804],[-75.8980218854048,44.3499961243223],[-75.8985824440236,44.3495550418634],[-75.8982600808889,44.3494225441932],[-75.8979197559402,44.349141636219],[-75.8977150765993,44.3487066024429],[-75.8970038785923,44.3486311909925],[-75.8978258155177,44.3509384979637],[-75.8946778295046,44.3540423889746],[-75.8935007472249,44.3546593607233],[-75.8936945524592,44.3548198920547],[-75.8929378583763,44.3554155443978],[-75.8931636032105,44.3561520240373],[-75.8939648842743,44.3564968437836],[-75.8941580669761,44.3571030325836],[-75.8924738695489,44.3576159455536],[-75.8917851734413,44.358148033822],[-75.8910099659787,44.3579965613665],[-75.8897625231544,44.3585330181546],[-75.8894424165877,44.359143233474],[-75.8868274261855,44.3613784347275],[-75.8865992711713,44.3607635035099],[-75.8858780021516,44.3608861696582],[-75.886095213889,44.3620728839779],[-75.8858528780698,44.3627725135729],[-75.8851035708334,44.3633500495113],[-75.8851945611885,44.3637904918899],[-75.8847463072516,44.3640235622649],[-75.884246380423,44.3638744015704],[-75.8842223675571,44.3632983909459],[-75.8849832280264,44.3619555078675],[-75.8841333705636,44.3624707989373],[-75.8817731567491,44.3617058716349],[-75.8794336338304,44.3621291439679],[-75.8794925327704,44.3613004031621],[-75.879174751942,44.3609787513003],[-75.8790480391813,44.3601154342699],[-75.8786017983689,44.3600648679051],[-75.8781869042684,44.3604822176571],[-75.8788556155558,44.3615574185715],[-75.8784723008308,44.3621455839488],[-75.8788076643843,44.3625931455329],[-75.8786158129857,44.3627701893426],[-75.8783395603745,44.3630199103097],[-75.8783756951069,44.3633887582438],[-75.8789166246383,44.3639967850521],[-75.8798849025134,44.3644394446209],[-75.8791731385677,44.3652237217776],[-75.8784210142146,44.3648379054377],[-75.8781755378851,44.3648398031603],[-75.8778794127433,44.3654903138045],[-75.8775882831328,44.3654295417284],[-75.8770354814665,44.3648666159513],[-75.8767117771471,44.3642028854659],[-75.8772115692285,44.3638479068654],[-75.8766394196476,44.3635102057384],[-75.8756916736667,44.3641207217968],[-75.8751314842555,44.3650523566951],[-75.8747397038073,44.3649743460783],[-75.8746954429149,44.3642184270496],[-75.875086761629,44.3635851972971],[-75.8746939373385,44.3634891883813],[-75.8713697782235,44.3672150036765],[-75.8707467642346,44.3675168820364],[-75.8699647646101,44.3670457096802],[-75.868988138691,44.3673052705321],[-75.869112749394,44.3681416048323],[-75.8695931755945,44.3685880828671],[-75.8678855725625,44.3697535361606],[-75.8667234175878,44.3696723775426],[-75.8668727822667,44.3686899014423],[-75.8662872432966,44.3689824666338],[-75.8654706791949,44.3687185978669],[-75.8656370471855,44.3694645869516],[-75.8647252823249,44.369552558487],[-75.8639912967541,44.3686668374362],[-75.8638496656714,44.3679476675528],[-75.8623378360825,44.3687784347506],[-75.8617397817838,44.3687559641392],[-75.8635869740278,44.3666532195275],[-75.8632744501405,44.3664710313141],[-75.8635332628587,44.3656993001387],[-75.8630546081359,44.3652617857849],[-75.8639354484928,44.3641477095994],[-75.8626127636786,44.3640497235804],[-75.8624622338848,44.3637087489385],[-75.8634859378129,44.362895195424],[-75.8650315674126,44.3629284519393],[-75.8655700481366,44.3625867341312],[-75.8655619947401,44.3616459716513],[-75.8662229257189,44.3612853116612],[-75.8664104634075,44.3607887112529],[-75.8660212431578,44.3606161186955],[-75.8660736742276,44.3598144426255],[-75.8676362945627,44.358303502788],[-75.8680021640049,44.3572743541206],[-75.867421934078,44.3554331488444],[-75.8676362209008,44.3544951895631],[-75.8673247615171,44.3544075364878],[-75.8652669278137,44.3543782119273],[-75.8630628843147,44.354989182843],[-75.8619962975098,44.3548802396461],[-75.8621228602519,44.355113360241],[-75.8617017893355,44.3557557759839],[-75.8612072685682,44.3558315508048],[-75.8604429756363,44.3564405501241],[-75.8592057529449,44.3577958792693],[-75.8581179802724,44.3582767640667],[-75.8571377539058,44.3583111735251],[-75.8557122164831,44.359748913199],[-75.8570602751108,44.3607020829931],[-75.8555534733926,44.3618433304562],[-75.8549605835085,44.361177062879],[-75.8540800315108,44.3611926900421],[-75.8492461143219,44.3646861227507],[-75.8495070910816,44.3652108526684],[-75.8489410419599,44.365768774991],[-75.8481778638372,44.3659590397072],[-75.8474351897609,44.3669954376373],[-75.8458712471057,44.3679254104665],[-75.8434615945095,44.3706712670456],[-75.8444207221451,44.3707631743857],[-75.8454841423886,44.370147555045],[-75.8460491836006,44.3705169764858],[-75.8459120306196,44.3710671862669],[-75.8451445127358,44.3714780388628],[-75.844842680597,44.3722770574568],[-75.8443348378141,44.3726364560715],[-75.8439191891287,44.3725360095103],[-75.8435630610175,44.3727817385228],[-75.8437389870827,44.3732575951985],[-75.843180733541,44.3743376098522],[-75.842370952618,44.3744876678872],[-75.8428114388226,44.3747319850825],[-75.8408679292139,44.3768351054946],[-75.838762440783,44.3779940652213],[-75.8388156309292,44.3785293559005],[-75.8382417467016,44.3788306944037],[-75.8362673673864,44.3792098741612],[-75.8366780385067,44.3798640742558],[-75.8379474029189,44.379422568163],[-75.838990749409,44.3806707958342],[-75.8385629007038,44.3813086721286],[-75.8373216400853,44.3812503067333],[-75.8369091310119,44.3818925662071],[-75.8375635492048,44.3818427261477],[-75.8385719539253,44.3819118114053],[-75.8390849485464,44.3819575399124],[-75.8394457775415,44.3813786767556],[-75.8397521300028,44.3808857438373],[-75.8413499050082,44.3806668486107],[-75.8445580799419,44.3795041492189],[-75.8442852750649,44.378596866251],[-75.8452343074333,44.3780091093994],[-75.8458995260709,44.3779231294073],[-75.8459015688398,44.3775224769792],[-75.8465560678811,44.3772114961747],[-75.8476421229748,44.3776625536315],[-75.8478809895004,44.3772286227916],[-75.8468937814274,44.3767228121103],[-75.8469777828896,44.3766186504312],[-75.8473979860334,44.3760843343043],[-75.8482922328476,44.3760236406388],[-75.8483314541912,44.3760233478481],[-75.848130574724,44.3764524944929],[-75.8488241459886,44.3767534179876],[-75.8503394358879,44.3755671821408],[-75.8507600792062,44.3755235187414],[-75.8501754744839,44.3769953982116],[-75.8500263424687,44.3783649826035],[-75.8503622378248,44.3788306282721],[-75.8496731087293,44.3797000809437],[-75.8503163132525,44.3797177750419],[-75.8506380583462,44.3792111935734],[-75.8518167243558,44.37925637909],[-75.8522184644256,44.3796359965337],[-75.8525668571439,44.3790481820556],[-75.8531718868608,44.3791651804191],[-75.8535644317754,44.3789956744167],[-75.8538575664256,44.3783857634818],[-75.8553096912858,44.3770153737733],[-75.8564522917333,44.3765566108801],[-75.857672924338,44.375696609943],[-75.857650859918,44.3754762011714],[-75.8592447425232,44.3751940632748],[-75.8591360769166,44.3743666020874],[-75.8598471383797,44.3740416123834],[-75.8612251899582,44.37402217004],[-75.8612886846791,44.3747104240412],[-75.8605227999325,44.3754409767077],[-75.8611499093407,44.3755937781318],[-75.8606352420566,44.376097349346],[-75.8610949019026,44.3760398474961],[-75.8610712726174,44.3761930788372],[-75.8603109125098,44.376874071135],[-75.8591606907553,44.3773464350836],[-75.8580573924998,44.3774628114724],[-75.8572087603391,44.3770775849139],[-75.8566494090561,44.3772123494879],[-75.856891778113,44.3779307673984],[-75.8562326644261,44.3780842884978],[-75.8562692779605,44.3786016893791],[-75.8554804942589,44.3795709618258],[-75.8563451586525,44.3803522152637],[-75.8563130250165,44.3805685313286],[-75.8569833622545,44.3809641127021],[-75.857053417372,44.3807925253023],[-75.8577783021107,44.380494453943],[-75.8583566788131,44.3809582445429],[-75.8583754455177,44.3813542380321],[-75.8576113771646,44.382350347383],[-75.8570019331264,44.3827105682246],[-75.8569392756353,44.3825309793957],[-75.8566501483696,44.382744732207],[-75.8555101961555,44.3828568593181],[-75.8554893938684,44.3822403058555],[-75.8561611010373,44.38203267542],[-75.8566699634081,44.3814481407136],[-75.8557883154658,44.3809281069779],[-75.8555540833487,44.3809523789513],[-75.855441272017,44.3811512963984],[-75.8546085256638,44.3811035461543],[-75.8544177693115,44.3817667069745],[-75.8523123635256,44.3827368508797],[-75.8526184303227,44.3832522300604],[-75.8535503506833,44.3836683752099],[-75.8541185710331,44.38327697166],[-75.8544247923404,44.3832386567803],[-75.8560704214993,44.3834468408396],[-75.855894096582,44.3839163295392],[-75.8546918039822,44.3845150834709],[-75.8539646599805,44.384448528167],[-75.8534273120321,44.3844030500568],[-75.8523193380455,44.3842628187599],[-75.8519054734143,44.3849366521372],[-75.8530340457704,44.3849822004513],[-75.8537271014019,44.3854001372723],[-75.8524561029542,44.3859453660781],[-75.850656999324,44.3864360165605],[-75.8497302029538,44.3877483981973],[-75.8494696654703,44.3881509835384],[-75.8489719125646,44.3884292984662],[-75.8486576917597,44.3892419227726],[-75.8459081067785,44.3911350706352],[-75.8443382864464,44.391731950807],[-75.8421018982073,44.3933961146221],[-75.8419184173105,44.3927807653211],[-75.841658392765,44.3925711207483],[-75.8411377130566,44.3925704769194],[-75.8397281045606,44.3938368349298],[-75.8388103668017,44.3938661243327],[-75.8383632043179,44.3932752240012],[-75.8378537104314,44.3932069596595],[-75.8369919736474,44.3934744025498],[-75.8375035183876,44.3945059834024],[-75.8379494358064,44.3947367735436],[-75.8389060993632,44.3946846952721],[-75.8391934937788,44.3950787068688],[-75.8383966728504,44.3957148054505],[-75.8370250693791,44.3955088499512],[-75.8365795822533,44.3964034347627],[-75.8353675321528,44.3973666807448],[-75.8343153174942,44.3975454737369],[-75.8337410847202,44.3973426203277],[-75.8341557228008,44.3965923220078],[-75.8338677121409,44.396153287447],[-75.8320509826665,44.3967067961841],[-75.8318036782655,44.3966725954203],[-75.8315354035924,44.3965710251187],[-75.8313806930392,44.3963155709616],[-75.8312527361118,44.3960374129218],[-75.8302641131922,44.3957205347706],[-75.8305838352799,44.3962943927164],[-75.8300736119614,44.3968383069336],[-75.8302008753895,44.3972335107116],[-75.8312630972803,44.3986662289545],[-75.8309121623297,44.3989884055299],[-75.8301065019789,44.3987647199446],[-75.8297870799286,44.3988750911186],[-75.829755734115,44.3991544147128],[-75.8305214643514,44.3997430182783],[-75.8297876090362,44.4009547922967],[-75.8270140839527,44.4025145461421],[-75.8257377881398,44.4027849224796],[-75.8254514061255,44.4032911754387],[-75.8244934804358,44.4038203118151],[-75.8232505435609,44.4036762776348],[-75.8223898712804,44.4054831236494],[-75.8198377970841,44.4064649047325],[-75.8185303485954,44.4065373583537],[-75.8190722087815,44.4069475911175],[-75.8190090266743,44.4074792260842],[-75.8157239739186,44.4089883761895],[-75.8150221031191,44.4088673733945],[-75.8151811588233,44.4077228453604],[-75.8143840540273,44.4076385351754],[-75.812086834572,44.409464600187],[-75.8099497416128,44.4100560602384],[-75.809630771415,44.4099232899978],[-75.8096628610336,44.4094639058483],[-75.8110982098558,44.4079141404314],[-75.8100139460028,44.4086871396718],[-75.8086741240279,44.4091468430822],[-75.8085140137015,44.4087518494035],[-75.8090569922902,44.4080007283747],[-75.8081312622202,44.407980312247],[-75.8073660817528,44.4077066613926],[-75.8065365684363,44.4077755787915],[-75.8059302190943,44.4082030275955],[-75.8051333685215,44.4081366570947],[-75.80433512556,44.4087095070421],[-75.8039531394433,44.4087302181091],[-75.8038572164389,44.4084337970814],[-75.8045911822469,44.407753369573],[-75.80436789161,44.4067015947859],[-75.8059944953495,44.4045023182684],[-75.8055157561851,44.404505715811],[-75.8039209689763,44.4052552696083],[-75.8029324969737,44.4052352549086],[-75.8025492559105,44.4050489010207],[-75.8025497975947,44.4046887746554],[-75.8030922362958,44.4041807682653],[-75.803091578729,44.4036766017344],[-75.8012100394001,44.4042931001124],[-75.8005084156374,44.4059005925578],[-75.7999334345667,44.4063277887364],[-75.7985616936531,44.4083001106172],[-75.7972862171037,44.4092814042005],[-75.7969028520731,44.4093741262361],[-75.7963608517498,44.4088287434951],[-75.7955635169851,44.4093024923962],[-75.7948936172265,44.4091631363858],[-75.7956596196525,44.4073121450701],[-75.7955962551873,44.4060611650722],[-75.7952450633185,44.4060366166458],[-75.7933941394728,44.4102449881135],[-75.7927560975675,44.4107176038446],[-75.7916074146272,44.4106986106822],[-75.791351622045,44.4108804546548],[-75.7907138945501,44.4120733004427],[-75.7907453346867,44.4128293370662],[-75.7894054354567,44.4142881529821],[-75.7897880764452,44.4148346763759],[-75.7906810916692,44.4141712382991],[-75.7909363928729,44.4142414840284],[-75.7915746827132,44.4146511750962],[-75.7915106130705,44.4150207462743],[-75.7906172753514,44.4160083031376],[-75.7899152230922,44.416166242186],[-75.7890539201944,44.416739423495],[-75.7885751334194,44.4166887321403],[-75.7883520853276,44.4161591019671],[-75.7880966125456,44.4162509064569],[-75.7868193869763,44.4188166295501],[-75.7871383490893,44.420461972966],[-75.7854143715663,44.4223375426566],[-75.7841693245488,44.4248039774973],[-75.7835627533229,44.4252403116986],[-75.7825097490452,44.4249414729576],[-75.7823177566111,44.4259061204085],[-75.7809764766705,44.4282381370479],[-75.7796039721889,44.4296520442188],[-75.7775606687352,44.4311155466148],[-75.7771782846649,44.4311181657788],[-75.7767312919626,44.4303379627512],[-75.7762529345823,44.4303862508037],[-75.7759969425741,44.4316844361641],[-75.7755498196161,44.4320746223642],[-75.7751990607353,44.4322120635173],[-75.7742733612081,44.4318672649661],[-75.7740179674779,44.4320310614182],[-75.7708563692933,44.4367161415757],[-75.7680140000214,44.4390221776481],[-75.7675989352409,44.4390519947423],[-75.7673125442435,44.4385947777421],[-75.7660987882423,44.4390441254888],[-75.765396744068,44.4392289227859],[-75.7622994751393,44.4409873518872],[-75.7628096948644,44.4422263385066],[-75.7615963781394,44.4426576292355],[-75.7610215560706,44.4423643862373],[-75.7604153109331,44.4424314714816],[-75.7585956718155,44.4430468519754],[-75.7574456018764,44.4439368296355],[-75.754185415386,44.4486221005694],[-75.7542485247296,44.4496750316733],[-75.7551094934541,44.4510737725006],[-75.7567997473231,44.452692053539],[-75.7570225151405,44.4538159411247],[-75.7575826237033,44.4541183045311],[-75.7586505157602,44.454021139846],[-75.7612371490438,44.4528604361288],[-75.7626110782534,44.4514197351043],[-75.7642717937192,44.4504092303707],[-75.7648145028133,44.4505226123038],[-75.7645901692323,44.4515054506369],[-75.7657709489777,44.4521727126564],[-75.7656420578024,44.4530648783388],[-75.7658658964117,44.4533604664861],[-75.7676843299902,44.4541854564305],[-75.7686741485675,44.4550790546225],[-75.7684184359353,44.4555849535893],[-75.7671726603841,44.4563136213496],[-75.7666610509652,44.4569562904847],[-75.7671059487962,44.4586458441332],[-75.7693719320324,44.4610433007516],[-75.7707448407558,44.4619612907441],[-75.7712234191218,44.4621471009938],[-75.7727562728816,44.462028637507],[-75.7732343104617,44.462232449437],[-75.7732029152408,44.4628268595429],[-75.7722759607671,44.4634903884382],[-75.7722761197689,44.4639765475507],[-75.7728500641837,44.4646568656459],[-75.774127073259,44.4652063454544],[-75.773903423296,44.4659371113447],[-75.7732008554039,44.4664010516028],[-75.773742265534,44.4678828504287],[-75.7751463386113,44.4694127738413],[-75.7763921141625,44.4692602097387],[-75.777317768774,44.4702622046146],[-75.7787867630968,44.4700540673295],[-75.7794897639769,44.4693290039304],[-75.7813743710525,44.4681816702224],[-75.7820767125692,44.4672945417048],[-75.7834182027156,44.4666100667458],[-75.7836418257292,44.4669956500555],[-75.7818843365545,44.4697626779861],[-75.7819162474083,44.470149585397],[-75.7824586950926,44.4706950268382],[-75.7831934630961,44.4706989609358],[-75.7842153290712,44.4693234549083],[-75.7858445019923,44.4682948509698],[-75.7861314059278,44.4675456181491],[-75.7873458293772,44.4669970213392],[-75.7874738725429,44.4661228461129],[-75.7903166595314,44.46299706257],[-75.7906997604574,44.4627423114617],[-75.7910825263118,44.4626946290929],[-75.7912426528078,44.4629726047269],[-75.7922962409905,44.4627401803353],[-75.7921998858965,44.4639742593951],[-75.7918168038351,44.4643460543366],[-75.790188588518,44.4646184880248],[-75.7897411358784,44.4650537447128],[-75.7897090238019,44.465351065983],[-75.7903794571597,44.4655984817619],[-75.7903475400176,44.4659678257003],[-75.7884946183188,44.4682764688656],[-75.7871212981669,44.4696274425839],[-75.7853645617805,44.470287826756],[-75.7845974202908,44.4720217001418],[-75.7831604527044,44.4732110130138],[-75.7820100494903,44.4736240791289],[-75.7807961255042,44.4759822082064],[-75.7792941315693,44.4769648513236],[-75.7789874871555,44.4769534521899],[-75.7785700651958,44.4765916977556],[-75.7782410437483,44.4758467103083],[-75.7776029802834,44.4750858332798],[-75.7775714260607,44.4743117960935],[-75.7780102099579,44.4739801809484],[-75.7779352994464,44.4729903696794],[-75.7774454984276,44.4726786232582],[-75.7751083569428,44.4762417743004],[-75.7754375993759,44.4765636311153],[-75.7758548883849,44.4768578760323],[-75.7759574867702,44.4772443011851],[-75.7768917948528,44.4777960911251],[-75.7777236069581,44.4774392780378],[-75.7783319837977,44.477799726053],[-75.7777190731609,44.4782765829184],[-75.7771511995607,44.4785955768834],[-75.7768139648165,44.4785303637602],[-75.7763685477593,44.4788980311696],[-75.7769433356922,44.4790966636226],[-75.7766816977724,44.4796026191855],[-75.7751936411992,44.4799324000443],[-75.7726895361408,44.4824658022458],[-75.7720142958979,44.482753990892],[-75.7722656876335,44.4834860194924],[-75.770821778765,44.4848147688177],[-75.7706442411221,44.485504699525],[-75.7695293375314,44.4871417975681],[-75.7696507259774,44.4877621766463],[-75.76525123406,44.4943595724819],[-75.7627918282718,44.4970545045347],[-75.761022565777,44.4995466908934],[-75.7553513450815,44.505310345542],[-75.7553150064316,44.5057832309434],[-75.7562823123295,44.5051916089767],[-75.756980333848,44.5051779506012],[-75.7572724947245,44.5056981588916],[-75.7570692670611,44.5071849664855],[-75.7559713829518,44.508047546708],[-75.7552526076553,44.5077057295965],[-75.7542786659024,44.5085179537283],[-75.7539549202605,44.5080474621441],[-75.7537116726512,44.5085127191389],[-75.754210269075,44.5090360649168],[-75.7534806106888,44.5098916715571],[-75.7526124428656,44.511837521438],[-75.7521755490238,44.5123805822007],[-75.7517372627933,44.5124194985318],[-75.7514525175095,44.5129930577052],[-75.7526398459734,44.5135658617614],[-75.7541156791705,44.5129123662257],[-75.7545904073571,44.513471879771],[-75.7544375275705,44.5137204713025],[-75.7538922367183,44.5137556060795],[-75.7538232865287,44.51456630912],[-75.7533714878397,44.5150824647253],[-75.7519581513352,44.5151593623829],[-75.751607431082,44.51497713063],[-75.7502240003916,44.5152698737629],[-75.7496806013914,44.515759612602],[-75.7483538984129,44.5160654228118],[-75.7473959628417,44.5169809836922],[-75.7484189562024,44.5173973973229],[-75.748355138088,44.5176949053648],[-75.7471410586933,44.517648855774],[-75.739796463473,44.5243497777617],[-75.7379234437663,44.5258203611302],[-75.7354699803337,44.5280508888579],[-75.7333598422228,44.5286046515396],[-75.7303712631552,44.5304333905183],[-75.7297648536261,44.5312565218312],[-75.7258969343881,44.531947429693],[-75.723659979312,44.5324748132057],[-75.7206249133268,44.5358340504711],[-75.720593943009,44.5372746775172],[-75.719731009669,44.5379193228984],[-75.7187406323396,44.5399061671809],[-75.7149382209471,44.5430450219346],[-75.7120938421439,44.5464478452787],[-75.7080018992437,44.548877065432],[-75.7062438055029,44.5513907229942],[-75.7052850659395,44.5517567697529],[-75.7047087652437,44.5517333285615],[-75.7041333978975,44.5510706881771],[-75.7029180015726,44.5512312400196],[-75.7016707267332,44.5507707905732],[-75.7002320918736,44.5514098304502],[-75.699816690225,44.552006559521],[-75.7001684785751,44.5530577109847],[-75.6981855805361,44.5543842723439],[-75.6971950846291,44.5555246754558],[-75.6959159779876,44.5587284452445],[-75.6930966424179,44.5607217204391],[-75.6930159144165,44.5611138277465],[-75.6914579949654,44.5622756369307],[-75.6898860330497,44.5628883475567],[-75.6889018442143,44.5629573231565],[-75.6892557184525,44.5622664786113],[-75.6900366320138,44.5620141765554],[-75.6902583514973,44.5617292496782],[-75.6891293928656,44.5614344960251],[-75.688490193032,44.5615238870212],[-75.6878148485845,44.5621851622218],[-75.6853835043691,44.5631090878773],[-75.6840200809568,44.5626536465993],[-75.6834428199619,44.5637644395712],[-75.6819388497335,44.5641110543305],[-75.6783560683431,44.5663741131125],[-75.6773094897146,44.5675821966642],[-75.6764916994126,44.5681947368451],[-75.6747960727199,44.569303120791],[-75.6738550632053,44.5694752414413],[-75.6732708142159,44.5699018217395],[-75.6731738743186,44.5706406126128],[-75.6705500346125,44.5723305857106],[-75.6693341217564,44.5739312082986],[-75.6688227575775,44.5740962602566],[-75.6670630747169,44.5739355308959],[-75.6665511230399,44.5741185815574],[-75.6628288207095,44.5770256577963],[-75.6620382682251,44.5789163118354],[-75.6592965201465,44.5799540190215],[-75.6576704410231,44.583235883458],[-75.6570684871378,44.5837210001613],[-75.6559388493798,44.5839480773422],[-75.6547089533479,44.5853775732094],[-75.6545974589464,44.5860354064896],[-75.6540107530647,44.5865159177823],[-75.6528719039817,44.5869455776778],[-75.6513481546474,44.5863331223917],[-75.6497810777702,44.5850456953957],[-75.6496538233254,44.584155159943],[-75.6486620338444,44.5832605499861],[-75.6483746421237,44.5826229987995],[-75.6475106990773,44.5826009072579],[-75.6473501027624,44.5831689869722],[-75.6489490536625,44.58442925848],[-75.6492366241478,44.5853638939682],[-75.6499727459125,44.5857107971473],[-75.6506582682721,44.5873768715505],[-75.6511321780935,44.5876847533979],[-75.6517307318555,44.5888921831598],[-75.651787227802,44.5896480811849],[-75.6516228909023,44.5901261616972],[-75.6512250270629,44.5899663901877],[-75.6507833101664,44.590567590847],[-75.6509634816696,44.5911877427793],[-75.6497218204025,44.5920815942274],[-75.6490684487469,44.5922068559122],[-75.6481366748117,44.5937786217793],[-75.6476446531575,44.5938984558663],[-75.6463941461797,44.5949273603803],[-75.6458433217054,44.5957812344202],[-75.6437884174081,44.5977824526974],[-75.6426359202211,44.5985361818508],[-75.6393063631295,44.5997702818347],[-75.6368416500946,44.5995140168678],[-75.6356572321723,44.6002408460421],[-75.6334165140535,44.6009555403353],[-75.6313032668734,44.6011563338106],[-75.6297025588687,44.6016333359389],[-75.6278468308328,44.6016165776223],[-75.6267573289034,44.6018836573205],[-75.6204031487418,44.6069869411298],[-75.617044540134,44.6092108380419],[-75.6144856638943,44.6114033137585],[-75.6135577976306,44.6116333843383],[-75.6110622310589,44.6130512174651],[-75.6109661984601,44.6138079522836],[-75.6101673590173,44.6151536259124],[-75.6090148797966,44.6154568850616],[-75.6039923424492,44.6197328798135],[-75.6015284684408,44.622518730584],[-75.5995121207338,44.6237987368495],[-75.5974635863902,44.6264022583014],[-75.5960553244688,44.627453944144],[-75.5940388527943,44.6283647477554],[-75.5911580508996,44.6308374575064],[-75.5869195981664,44.6338122479488],[-75.5845195252044,44.6357556570655],[-75.5842385007425,44.636256744205],[-75.5833810803634,44.6367652879822],[-75.5826354328635,44.6367511037107],[-75.5808763267213,44.6376423511983],[-75.5796961021347,44.6395299101711],[-75.5780315427779,44.6403126008626],[-75.5769108603249,44.6418217202058],[-75.5753734943275,44.642963829873],[-75.5738362397211,44.6434847411251],[-75.5728115431546,44.6443541520262],[-75.5689677023595,44.6460479204867],[-75.5685198805123,44.6464372697392],[-75.5682317395967,44.6476000413878],[-75.5652890635418,44.6469620157586],[-75.5643531124406,44.6476148480465],[-75.563490718988,44.647767665478],[-75.5616585843048,44.6489560633235],[-75.5587174578438,44.6517163316443],[-75.5572124824005,44.6522728704888],[-75.5554819328029,44.6534786766386],[-75.5539438822892,44.6552866908941],[-75.5517336206517,44.6572960027912],[-75.5509312247787,44.6590553916618],[-75.5479523591943,44.6606812405525],[-75.5463180739608,44.6626966730679],[-75.5450040174649,44.6627209831964],[-75.5445874992104,44.6629480422949],[-75.5405162975118,44.6666945222366],[-75.5401320260811,44.6680197230598],[-75.5389459840047,44.6692767048228],[-75.5378245316956,44.6692550065518],[-75.5345544718219,44.6719801925502],[-75.5330834949172,44.6736165585979],[-75.5314602913011,44.6748710094321],[-75.530902204846,44.6751977082562],[-75.5296163841961,44.6759284090418],[-75.5294113733769,44.6761904377804],[-75.5293351863593,44.6762673141728],[-75.5288312719091,44.6766567677913],[-75.5275466451202,44.6774819665444],[-75.5256652881493,44.6786880181423],[-75.5254619203488,44.6791345842294],[-75.5261592384864,44.6796309997928],[-75.5222374293145,44.6822733206289],[-75.5210858061883,44.6817294507683],[-75.5195971288792,44.682956107523],[-75.5183224715933,44.6832500072526],[-75.5152926149384,44.6851047991389],[-75.5119571963397,44.6879736717261],[-75.5115436847464,44.6890243276447],[-75.5125347421004,44.6896455388059],[-75.5120608825847,44.6899807682017],[-75.5113255459476,44.6895564585653],[-75.5099957042555,44.6905031966206],[-75.5097483468538,44.6904052784519],[-75.5093200948051,44.6906817749062],[-75.5092065154138,44.6909073469595],[-75.5094852689347,44.6910771455233],[-75.5086567913757,44.692174662442],[-75.5070737181983,44.6932665401928],[-75.50661168141,44.6932010814822],[-75.5039142517159,44.694468924052],[-75.5043786367003,44.6972081307619],[-75.5035030245384,44.6979862296028],[-75.5042615287266,44.6989371335746],[-75.504958077008,44.7001088681895],[-75.5040457794465,44.6998923568643],[-75.5036138425084,44.6991650679655],[-75.5027763907798,44.6981154816678],[-75.5012307414171,44.6964028283215],[-75.4994076527688,44.6961272684967],[-75.4986278028127,44.6963962492199],[-75.4980978686603,44.697015233212],[-75.4977109498944,44.6980297023168],[-75.4968249091903,44.6997665421127],[-75.4962692266269,44.7001020500637],[-75.4954392255252,44.7001416626101],[-75.4951071740603,44.7005212075106],[-75.4952659503884,44.7008221030576],[-75.4940268079973,44.7016872075943],[-75.4928089197458,44.7019940510947],[-75.4930711819947,44.7024970605181],[-75.4917926511733,44.7033308012616],[-75.4882502508515,44.7049304351173],[-75.4865056066871,44.7082462966134],[-75.4858293378732,44.7082851847145],[-75.4849946457691,44.7071184058212],[-75.4828732122419,44.7067672908255],[-75.4764300530531,44.7074290160616],[-75.4762245463639,44.7070967798197],[-75.4756776969347,44.7075221758887],[-75.4711918311043,44.7089451535329],[-75.4699732861843,44.7088151346361],[-75.4681781135818,44.7092906346725],[-75.4678252427618,44.7096611824159],[-75.4659019272806,44.7102992157955],[-75.4630485159172,44.7117602174122],[-75.4615741209228,44.7129995247368],[-75.4606758613343,44.7133632494072],[-75.4583359018344,44.7154252278769],[-75.4578240471754,44.7185601446523],[-75.4564770898822,44.7195828144202],[-75.4564133696842,44.7212125182549],[-75.4568955458028,44.7230110864538],[-75.456478476881,44.7253714020083],[-75.4559663895583,44.7261926715198],[-75.454018413526,44.7269431324114],[-75.4535501756673,44.7273726095346],[-75.4531390625758,44.728396020855],[-75.4530387782508,44.7298548182088],[-75.4524960691567,44.7309102574086],[-75.4497346264138,44.7335633825896],[-75.4479358722282,44.7340025665475],[-75.4456805475028,44.7339438678486],[-75.4442974473925,44.7330039958187],[-75.4429150892906,44.7326717704737],[-75.4415724924197,44.7315471579549],[-75.4365721560363,44.7312062750181],[-75.4347867059001,44.7313706259865],[-75.4343155018043,44.730796260291],[-75.4361360077962,44.7275304328501],[-75.4348032034603,44.7262571617481],[-75.4324349173846,44.7254559269097],[-75.4324870574003,44.7257798181119],[-75.4344113960626,44.7272669284884],[-75.4343151586479,44.7279064698772],[-75.4330317239234,44.7294867732227],[-75.4339300472923,44.7314999171033],[-75.4335768710451,44.7317713314631],[-75.4311241711805,44.7323837776298],[-75.4291963434616,44.7337414043262],[-75.4284124519851,44.7345905770283],[-75.4269359243903,44.7355053524133],[-75.4256205356928,44.736869630288],[-75.4192995707388,44.7410071213585],[-75.4184004981749,44.7419016593497],[-75.4140999116685,44.7448521236104],[-75.4132973684718,44.746016344358],[-75.4122067562247,44.7464253936872],[-75.4090291770112,44.7487144293891],[-75.4084815397595,44.7503278136995],[-75.4029284502188,44.7539663534188],[-75.3998145247281,44.7550575356964],[-75.399140024697,44.7556090184865],[-75.3954161530098,44.7573683598286],[-75.3944621727208,44.7572501295256],[-75.3936666561462,44.7556505099517],[-75.3938691498859,44.756622032486],[-75.393699527299,44.7569917004319],[-75.3923592723362,44.7567397518438],[-75.3912572218406,44.7573151598582],[-75.3903653340023,44.7572686985105],[-75.3894364472524,44.7581720714664],[-75.3891515474584,44.7580830214127],[-75.3882382680383,44.7583201806729],[-75.3870427649053,44.7598050707375],[-75.3859338387045,44.7601373946812],[-75.384249520903,44.7605211558532],[-75.3832604272662,44.7615372053411],[-75.3836675329731,44.7628366319507],[-75.3821877947995,44.7647230132534],[-75.3812244693366,44.7649962915831],[-75.3799723750357,44.7648384244677],[-75.3791698578901,44.7650661407365],[-75.377821368071,44.7658627843999],[-75.3766330864946,44.7661637732307],[-75.3729244744892,44.7678052994326],[-75.3737914143153,44.7682435657298],[-75.3738566230218,44.7686754491466],[-75.3728615133675,44.7688137302916],[-75.3717705561674,44.769276386996],[-75.371353898674,44.7700699184165],[-75.3715182966592,44.773139068693],[-75.3705569654562,44.7748525705022],[-75.3675083690461,44.7765457873348],[-75.3657108096199,44.7767315928094],[-75.3632077502004,44.7777838054076],[-75.3617965876189,44.779246603817],[-75.3603847243515,44.7797281697586],[-75.3590045419692,44.7807317339077],[-75.3581729050353,44.7844431611389],[-75.3579504246788,44.7870274267645],[-75.357148433946,44.7881641846053],[-75.355255950442,44.7905646067035],[-75.3524000857795,44.792580885469],[-75.3509559711968,44.7939266212179],[-75.3484208724644,44.7975441624935],[-75.3470085887854,44.7989617649339],[-75.3443765986648,44.8004730495455],[-75.3402980640186,44.8018265521532],[-75.339752079667,44.8018461795483],[-75.3380499132391,44.801068054951],[-75.3363793648142,44.8010909856431],[-75.3333608853224,44.8018469877688],[-75.3285440720565,44.803517287556],[-75.3282225659147,44.8031311274174],[-75.3312414352753,44.8017361218702],[-75.3313054159848,44.80145687603],[-75.3304055385304,44.801504489313],[-75.3274513119376,44.8028722821515],[-75.3270342609821,44.8034676038121],[-75.3250427022854,44.8041754340998],[-75.3244653595439,44.8046631784936],[-75.3213518850074,44.8057341995851],[-75.3196801193653,44.8074042440637],[-75.3207399184999,44.8079503941876],[-75.3207397325486,44.808481509118],[-75.3199367204313,44.8096180024284],[-75.3196807697456,44.8120492396397],[-75.3170145807621,44.812758811456],[-75.3148946968288,44.8147901014319],[-75.3135132990259,44.8152890022493],[-75.313095822269,44.8157042343149],[-75.3112647296315,44.8155021885131],[-75.308148402944,44.8156096480037],[-75.3083085878305,44.8149700803928],[-75.3113286878831,44.8127294214956],[-75.3112662531742,44.8125135452191],[-75.3108984999649,44.8125505533301],[-75.3080837152604,44.814313545651],[-75.3066062947401,44.8162259231775],[-75.3052890231738,44.8173546866252],[-75.3042930825778,44.8176724075101],[-75.3035220154504,44.8183586020789],[-75.3024942655102,44.8184963532248],[-75.3031681744498,44.8196108065618],[-75.3013368204026,44.8199757224494],[-75.2981880573468,44.8219463903034],[-75.2950066629883,44.8254473779693],[-75.2925326416104,44.8254177236924],[-75.2896723653216,44.8260821413659],[-75.2880987972182,44.8252579402501],[-75.2876486011236,44.8253490918513],[-75.2879056944664,44.8256905172343],[-75.2894797422702,44.8264517068154],[-75.2907328561589,44.8262864947251],[-75.2937851221869,44.8271338767092],[-75.2934633429572,44.8283679624779],[-75.2925637870996,44.8288743731657],[-75.2928204968618,44.8294408356351],[-75.2970623218704,44.8286467339998],[-75.2990538140918,44.8287585700829],[-75.2992454822341,44.8347083192121],[-75.2998889814047,44.8349766911035],[-75.2997607639659,44.8352560855263],[-75.2990851446339,44.835347872996],[-75.2989572020796,44.8370405617108],[-75.2969322341392,44.8375409383052],[-75.294971887407,44.8386172333395],[-75.2928178872559,44.8401890934382],[-75.2913070961194,44.8402829686916],[-75.2908572575544,44.8396899889575],[-75.2905680503386,44.8397357329925],[-75.2903750212486,44.8400332855443],[-75.2893470691875,44.840368958715],[-75.2876751409504,44.841444397717],[-75.2858105070168,44.8419531750801],[-75.2843643568517,44.8418577579307],[-75.2827569276519,44.8424108557039],[-75.2797665537504,44.8459289338757],[-75.2708609686374,44.8494250766876],[-75.2663598521084,44.8506508906095],[-75.2662956324471,44.8501109289445],[-75.2668425627247,44.8495155328161],[-75.2665539151593,44.8488500682276],[-75.2668118169858,44.8476792262156],[-75.2675834347805,44.8472723410562],[-75.2676480541922,44.8468851096725],[-75.2688063284448,44.8456221344838],[-75.269867004335,44.8453045733742],[-75.2714755815817,44.8434553867639],[-75.271733109709,44.8425635909014],[-75.2753362091945,44.8369828187367],[-75.2777469047348,44.8351136037068],[-75.2807684160407,44.8344760973088],[-75.2827933615232,44.8338049708436],[-75.2842392035663,44.8337203712505],[-75.2846570153948,44.8333052453628],[-75.2845929493454,44.8331433713204],[-75.2815400455135,44.8336460279814],[-75.2806729898047,44.8330810395732],[-75.2806728505658,44.8328920002557],[-75.2823116866645,44.8326629212816],[-75.2831153132295,44.8320758126672],[-75.2822477526674,44.8317268828621],[-75.28125180219,44.8322784501937],[-75.2800948664272,44.8324163165158],[-75.2788407572051,44.8328964800246],[-75.2759812516708,44.8330114357942],[-75.2736348898779,44.8339442649498],[-75.2729596190923,44.8337838445276],[-75.2731213338098,44.8327122345909],[-75.2725744753974,44.8326145176487],[-75.2723493890282,44.8330021348133],[-75.2724777726554,44.8340550491903],[-75.2728630142667,44.8347472757804],[-75.2717052152228,44.8360463013711],[-75.2694539643573,44.8377349755725],[-75.2683923398461,44.8395018376149],[-75.2680694844347,44.8416450391962],[-75.2673953293567,44.8412325303492],[-75.2671063907371,44.8406660875971],[-75.2661740239138,44.8410103312677],[-75.2661090317013,44.8414875810551],[-75.2655626116668,44.8416688881723],[-75.2660447446663,44.8419468259165],[-75.2643377174544,44.8464697162273],[-75.2635975586609,44.847524641032],[-75.2622475300278,44.8482298867846],[-75.2617327190131,44.8482490691263],[-75.2619900099852,44.8486445618728],[-75.2612819749463,44.8493033161913],[-75.2611840666652,44.8514099724373],[-75.2595437330749,44.8517917818654],[-75.2590619468251,44.8517748697858],[-75.2583874665569,44.8511282611411],[-75.2562976681008,44.8512949928721],[-75.255365228514,44.8516751542653],[-75.2546896001989,44.851469617232],[-75.2540145890264,44.8521102484641],[-75.2530832651472,44.8516802229311],[-75.25118604303,44.8522965270766],[-75.2496623925103,44.8519802949189],[-75.2444749657993,44.8533011827953],[-75.2440248990622,44.8533021361285],[-75.2438958911059,44.8529153299296],[-75.2435748332234,44.8529340127073],[-75.2433186076532,44.8538707452871],[-75.2447022323797,44.8548310132237],[-75.2460839149485,44.8547830631561],[-75.2478517338506,44.8544011977778],[-75.2493615916375,44.853641786653],[-75.2507016328013,44.8545570521461],[-75.2507973932106,44.8551059543209],[-75.2503784342334,44.8560700683011],[-75.2477581428727,44.8568859064594],[-75.2456043789785,44.8573046003805],[-75.2431293308262,44.8571478135513],[-75.24271090455,44.8565995835518],[-75.2430307065878,44.8553566559861],[-75.2425155317555,44.8543765402204],[-75.2418722742317,44.8539638073134],[-75.2404583457374,44.8544258585087],[-75.236794258729,44.8549555480813],[-75.2334512610442,44.8558715498503],[-75.2320682723249,44.8558023263902],[-75.2276335736348,44.8571254311358],[-75.2236163957192,44.8588616386095],[-75.2217844137495,44.859297262425],[-75.2207879620122,44.8599833123106],[-75.2191218629429,44.8604725859339],[-75.2170399022877,44.8617592798999],[-75.2141875087154,44.8626827944043],[-75.2138330685386,44.8624674076408],[-75.2134914221681,44.8629181307996],[-75.2056969030428,44.865745347274],[-75.2031127544993,44.8670056738253],[-75.1971822422836,44.8688613189357],[-75.1964648737488,44.8687050086015],[-75.195162787304,44.8678520431767],[-75.1933472768435,44.8680441326511],[-75.1927624879666,44.8675500101804],[-75.1922558444345,44.8674653366252],[-75.1908587090462,44.8685478689107],[-75.191405924988,44.8688125172444],[-75.1915119001404,44.8692669329686],[-75.1930722252799,44.8692868423632],[-75.193302987205,44.8694394871932],[-75.1932224182055,44.870290292526],[-75.1935962610941,44.8705192129725],[-75.1931508161891,44.8708710286201],[-75.1923705988222,44.8728302222931],[-75.1911697075942,44.8737188916973],[-75.1905664439651,44.873976438531],[-75.1892847977863,44.8738030092116],[-75.188626432396,44.8735565353483],[-75.1885743337028,44.8738311756761],[-75.1882730118071,44.8738766755163],[-75.1872936981288,44.8734821868289],[-75.1873273750704,44.8727799915861],[-75.1869809837986,44.8724744913312],[-75.1856063988188,44.8724181939842],[-75.1822016725009,44.874264475319],[-75.1807833746011,44.8756439752208],[-75.1802456969709,44.8751497155597],[-75.1794831063465,44.8753399390376],[-75.1786375329493,44.8753142419907],[-75.1775272341227,44.8751494176368],[-75.1774750375132,44.8752845248921],[-75.1773122025966,44.8753387849083],[-75.1761889338939,44.8765962507174],[-75.1745079129095,44.8771434061122],[-75.1747213130951,44.8774446439884],[-75.1741697187646,44.8778145490209],[-75.172553972962,44.877988003171],[-75.1723584672168,44.8782313421256],[-75.172834607555,44.8785411944662],[-75.172545958193,44.8788611885062],[-75.170000489309,44.8793420489272],[-75.1678533046758,44.8801823470412],[-75.1667473950178,44.8803189714253],[-75.1652365957965,44.8800150757923],[-75.1637896066048,44.8802871843676],[-75.1632883565578,44.8793562068723],[-75.1626450101007,44.8796361670756],[-75.1621825421211,44.8795242935336],[-75.161891390951,44.8784444858982],[-75.1611423936334,44.8776128648191],[-75.1624502849916,44.8764588096825],[-75.1636245357815,44.876443654151],[-75.1642095797799,44.8766723718822],[-75.1646509184858,44.876464704348],[-75.1651373310593,44.8763829957003],[-75.1650802925303,44.8760905192062],[-75.1650668285809,44.8758159832381],[-75.164030919243,44.8759164749568],[-75.1632449876925,44.8757195457295],[-75.162936469393,44.8739691309941],[-75.1623311603001,44.8730112894217],[-75.1625519392474,44.87205678945],[-75.1646132431428,44.868435155064],[-75.164311790093,44.8666667279851],[-75.1640251754151,44.8667301471374],[-75.163839251999,44.8661858011191],[-75.1639286765906,44.8652404843658],[-75.1627879778765,44.8651520750895],[-75.161839084747,44.8650453834986],[-75.1623276209378,44.8654587825462],[-75.162378827604,44.8668944989947],[-75.1627074681658,44.8671370871044],[-75.1627204865509,44.8679472307217],[-75.1622927079143,44.8681728759346],[-75.1628680060902,44.8684826309101],[-75.1626163502499,44.8694236727895],[-75.1628353936522,44.8700669940062],[-75.162746713764,44.870319169291],[-75.1611717200342,44.8725088075268],[-75.1614155111242,44.8733681400406],[-75.1588336443015,44.8750595435117],[-75.1590684441538,44.8755453182953],[-75.1587098052514,44.8759013810306],[-75.1580985142769,44.8760372434112],[-75.1575809364513,44.8768616119209],[-75.1578554050082,44.877243814669],[-75.1572670462264,44.878230309636],[-75.1574122867398,44.878383143354],[-75.1583377275523,44.8785169094442],[-75.1589488388637,44.878448559188],[-75.1590955301563,44.8792540177741],[-75.1580631350278,44.8806327036124],[-75.1568363938792,44.8812960008209],[-75.1563354663273,44.88201231882],[-75.155934163737,44.8819858539371],[-75.1555742061078,44.8824589311384],[-75.1516239787319,44.8848001240878],[-75.1509907374235,44.8847604420486],[-75.1506622217274,44.8842882761266],[-75.1502920565416,44.8839241844084],[-75.1481527698964,44.8852321935682],[-75.1482589579495,44.8854345976457],[-75.1488335437614,44.8854383630238],[-75.1488000931952,44.8858074783603],[-75.149463275352,44.8857931234242],[-75.1504012234082,44.8853868315492],[-75.1512669828481,44.8855117305661],[-75.1486012600902,44.8870859850951],[-75.1473031397074,44.8871821585183],[-75.1470701077396,44.8868988980876],[-75.1462413975169,44.8870259705012],[-75.1450224905759,44.8868429629952],[-75.1441997784044,44.8871500481148],[-75.1437623222172,44.8873891375532],[-75.1439809443096,44.8880775021533],[-75.1425841287215,44.8893709794601],[-75.1412657522274,44.8894626081413],[-75.1407707598446,44.8896522465197],[-75.1393469786283,44.8898520021553],[-75.138685561661,44.8894792202115],[-75.1383100083801,44.8891601055893],[-75.1376318342395,44.889048388673],[-75.1373882371856,44.8892827230814],[-75.1386677408824,44.8905954605293],[-75.1421440099278,44.8899746372652],[-75.1421449208195,44.8903347067028],[-75.1410326600724,44.8911957312376],[-75.1410562237806,44.8923839351283],[-75.1397814479171,44.8933261605787],[-75.1383765367117,44.8939939722723],[-75.1354948850107,44.8947985246642],[-75.134187616185,44.8949575717782],[-75.1337989924167,44.8936437629505],[-75.1348802918293,44.8923507610271],[-75.1368245012256,44.8908226900727],[-75.1367830035511,44.890521179848],[-75.1372774111306,44.890084010985],[-75.1369631687662,44.8897513164815],[-75.1348204900825,44.8911806012259],[-75.1334679614379,44.8914117073616],[-75.1329950469498,44.8912502174482],[-75.1326869310956,44.8919932148133],[-75.1327855355711,44.8923531723358],[-75.1321038202716,44.8936051936826],[-75.1296456505652,44.8949537223861],[-75.1273806869169,44.8955098318142],[-75.1264676194992,44.895510827721],[-75.1261076115642,44.8948765951271],[-75.1265299113759,44.8941785008765],[-75.1264309260147,44.8936340021096],[-75.1261210692255,44.8936478408916],[-75.1250171448442,44.8948327626362],[-75.1234556384201,44.8951179840949],[-75.122967643015,44.895478570513],[-75.1198027246572,44.8951803104354],[-75.1195359250178,44.8944199366844],[-75.1189964974694,44.8942404534096],[-75.118269126194,44.8931474808306],[-75.1179592622182,44.89165800419],[-75.1181099240644,44.8908521942209],[-75.1188375998687,44.8904283716606],[-75.1204212317983,44.8901746959904],[-75.1208504908585,44.8908493838178],[-75.1213252352148,44.890047732997],[-75.1220681015305,44.8897093906362],[-75.1221879745187,44.8887865847132],[-75.1213387458766,44.8887964743006],[-75.1209509413719,44.8891704507979],[-75.1199549262157,44.8891984862722],[-75.1184703551059,44.8896861006082],[-75.1178041626945,44.888485040903],[-75.1172420122611,44.8881975513597],[-75.1169164574122,44.886748594003],[-75.1162850208192,44.8864341645079],[-75.1151368463254,44.885958210701],[-75.1149204053425,44.8844281234669],[-75.1139259891876,44.8840375228674],[-75.1119576806871,44.8839989210613],[-75.1115954314555,44.8835131724536],[-75.110957847691,44.8828611522565],[-75.1110666112141,44.8826360044562],[-75.1109672135262,44.8823975521377],[-75.1104702152053,44.8823935230465],[-75.1101055432174,44.8822723440179],[-75.1096963282662,44.882236722436],[-75.1091300887015,44.8828403717305],[-75.1082430912917,44.8827151734856],[-75.1079896496006,44.8824093478894],[-75.1058839087431,44.8820647081517],[-75.1049775185029,44.8815074171908],[-75.1052086550255,44.8804900087659],[-75.1050104552328,44.8800896081042],[-75.1053187669198,44.8795042151782],[-75.1045101304504,44.8793564124749],[-75.1037191485714,44.8795506551565],[-75.1025138672766,44.8790881276728],[-75.1017212280059,44.8783776804671],[-75.0999316842469,44.8779651418919],[-75.1017753667731,44.8796378812719],[-75.101499396233,44.8804032721603],[-75.1006322740488,44.880079958266],[-75.1003415558667,44.879918176195],[-75.0993049395547,44.8792844362014],[-75.0980705914722,44.8775751403388],[-75.0979229641351,44.8762024930011],[-75.0973959944231,44.87509571382],[-75.0975445506182,44.8747535225303],[-75.0971047686928,44.8743983184629],[-75.0964887956991,44.8730530612817],[-75.096637613304,44.8708159946992],[-75.0969855380001,44.8702395923071],[-75.0995025186115,44.8685361397134],[-75.0991065627938,44.8681133916901],[-75.0982231200176,44.8671734502112],[-75.0973012239572,44.8677503353442],[-75.0968444171605,44.8678092259519],[-75.0969258907635,44.8680252013826],[-75.0936597313748,44.8700532641469],[-75.0933117896108,44.8706386577251],[-75.0936557724994,44.8719256388692],[-75.0937487220802,44.8735503863794],[-75.0929273888226,44.8759095075994],[-75.0926422222289,44.8757296979249],[-75.0928564542545,44.8753694568565],[-75.0927993726064,44.8750679426592],[-75.0924929851108,44.8747351192937],[-75.0922552944799,44.874550770217],[-75.0915163016996,44.8745873565407],[-75.0919146802736,44.875046135684],[-75.0919996833574,44.8752486087004],[-75.0920071492557,44.8754556440393],[-75.091706189381,44.8757709419961],[-75.0924849326126,44.8763104364244],[-75.0922951410509,44.8794702093297],[-75.0927669362381,44.8797984012435],[-75.0922503106267,44.8805864643771],[-75.0922044354618,44.8808385502841],[-75.0915821643796,44.8821172890252],[-75.0918092530935,44.8828102479745],[-75.0915117679023,44.8835756303949],[-75.0915710396431,44.8837646211384],[-75.0916526713496,44.8843136649254],[-75.0919825560781,44.8847094840732],[-75.0926124152295,44.8827511041119],[-75.0924720714327,44.8821165901368],[-75.0926939714775,44.8815943125339],[-75.0932860708442,44.8805091288023],[-75.0964657646919,44.8821088673558],[-75.0975733559962,44.8830396316382],[-75.0977568880969,44.8832240152596],[-75.0979821083151,44.883934965918],[-75.0978124722534,44.884452709597],[-75.0977027116004,44.8848173727122],[-75.0975547563782,44.8850650445658],[-75.0973685490945,44.8856143076174],[-75.0955418087946,44.8850847091795],[-75.0958016527787,44.8856921155924],[-75.0969276631396,44.8860332553074],[-75.0976198590835,44.8863072339914],[-75.0980920944452,44.8872835303307],[-75.0987088507698,44.8874045352356],[-75.0985968892443,44.8863064142257],[-75.0989172338646,44.883313057461],[-75.1020155610087,44.8837469807556],[-75.1053300111322,44.8848197506033],[-75.1056302748125,44.8849860117942],[-75.1060234970568,44.8851341851041],[-75.1086650542352,44.8864460135312],[-75.1089962540973,44.8866392425814],[-75.1109454024311,44.8879426616948],[-75.1111889033652,44.8878074034108],[-75.111118672178,44.8875149130702],[-75.1114100353505,44.8871725677869],[-75.1119345149325,44.8872440797643],[-75.1125121711861,44.8875855915091],[-75.1121862812656,44.8882700390017],[-75.1125622073474,44.8886522518853],[-75.1127723879711,44.8890661298959],[-75.1150914553524,44.8885102553745],[-75.1152555793514,44.8882670458134],[-75.1149408860327,44.8880333106169],[-75.1153440714917,44.8876188313673],[-75.1162178025815,44.8881715717461],[-75.1168558903008,44.8888190607904],[-75.1170883850761,44.8889133455584],[-75.1176685278664,44.8898489447705],[-75.1163220853079,44.8901698585525],[-75.115065378158,44.890450160714],[-75.1132403967594,44.8909425432621],[-75.113155126876,44.8920228367316],[-75.1126309859588,44.893513134405],[-75.1119683904019,44.8936713030478],[-75.1126435632711,44.8940577285003],[-75.1126876570769,44.8945302781469],[-75.1121533112981,44.8948998645986],[-75.1121587146645,44.8954219609463],[-75.1125432133691,44.8957141476244],[-75.1105512450406,44.8957205532231],[-75.1105652731321,44.8960085957022],[-75.1104562868269,44.8961347233657],[-75.1106407918031,44.896368594273],[-75.1115550611666,44.8963677237425],[-75.1119678334464,44.8965473632837],[-75.1128669895537,44.8970956035352],[-75.1133444405339,44.8973516903221],[-75.1126980981954,44.8985225435153],[-75.1111516879597,44.8989156031409],[-75.110315911589,44.8987993732623],[-75.1071796449971,44.8976140642699],[-75.1053776335203,44.896805546733],[-75.1043487274484,44.8964644034542],[-75.1033234649433,44.8959477141542],[-75.103095546186,44.8957633795895],[-75.1014249097263,44.8959628798206],[-75.1028844097549,44.8969472955884],[-75.1051043821806,44.8979805204975],[-75.1053941679114,44.8984303470265],[-75.1060703343174,44.8985017489209],[-75.1099968407799,44.9005775187343],[-75.1089370398487,44.9022978451952],[-75.1072963756784,44.9029384872638],[-75.1062354383784,44.9037136065834],[-75.1016035648733,44.9055720820428],[-75.1010574107402,44.9065087355295],[-75.098387122744,44.907051115243],[-75.0958457762289,44.9080164077908],[-75.0953958370525,44.9083408371027],[-75.0958465703396,44.9084754954925],[-75.0953314251517,44.9086379467088],[-75.0914059840911,44.9091361685478],[-75.0912781071138,44.9093703129466],[-75.0915356478176,44.9099822299385],[-75.0922112168438,44.9100987228636],[-75.0927587777387,44.910368342828],[-75.0931447927995,44.9106200844521],[-75.0932418404946,44.9113581485704],[-75.0931135934113,44.9123124329188],[-75.0905721822175,44.9139167292748],[-75.0903789905324,44.9134397872062],[-75.0906365159648,44.9130705184116],[-75.0898637141905,44.9130711125924],[-75.0898639495491,44.9127290473144],[-75.0887372178411,44.9127299048738],[-75.0870977259722,44.9149455543433],[-75.0879023802099,44.9155390682319],[-75.0884493967257,44.9154486401515],[-75.0898975788801,44.915879622499],[-75.0902193760761,44.916068411033],[-75.0902201252711,44.9165274980324],[-75.0897047025038,44.9165729017621],[-75.0888036994603,44.9161595079869],[-75.0877735779678,44.9162052911428],[-75.0872914189172,44.9167547548703],[-75.0858732575613,44.9165352581764],[-75.0861068869088,44.916048994928],[-75.0858524247315,44.9158691472344],[-75.0855273468881,44.9161079296121],[-75.0851833810675,44.9171928857054],[-75.0864730411169,44.9172639570503],[-75.0877103994539,44.9178076429967],[-75.0876782622246,44.9180147064538],[-75.0837209534293,44.9209341452443],[-75.0830136109915,44.9224019242423],[-75.0825750444866,44.9243601033045],[-75.0818675529284,44.9252427637173],[-75.0806186584266,44.9247350296241],[-75.0792423199354,44.923430717606],[-75.0762451278208,44.9219609161122],[-75.0752998270541,44.9209983410252],[-75.0742105371271,44.9209900293663],[-75.0734704843348,44.92068893558],[-75.0731947419667,44.9202750281977],[-75.07338893168,44.92010837606],[-75.0727967101424,44.9196046472448],[-75.0704647025295,44.9193945203454],[-75.0647746953665,44.9201764166505],[-75.0642702823513,44.920536758763],[-75.064336671444,44.9210948285661],[-75.0625921701117,44.9222029699093],[-75.0613162120653,44.9238149388499],[-75.0602383433188,44.9245086203902],[-75.0589929863826,44.9234245396215],[-75.0584435012963,44.9235418328019],[-75.057663348608,44.9264317561005],[-75.0547881593872,44.9285034989093],[-75.0528885091238,44.9313218815156],[-75.0518904754533,44.9320964622453],[-75.0511500040461,44.9322138025864],[-75.0494121574334,44.930450201142],[-75.0478994331225,44.9305408301116],[-75.0469016608617,44.929875098411],[-75.0458394228012,44.9297404812604],[-75.0455817949608,44.9294885321165],[-75.0449379346674,44.9295607870842],[-75.0423302080427,44.9310920137731],[-75.0397221149052,44.9333703193372],[-75.0384667139058,44.9334427360383],[-75.0352471941483,44.9350640072998],[-75.0346676595175,44.935496252342],[-75.032445322726,44.9385394219027],[-75.0312215406279,44.9387017671436],[-75.0302563772119,44.9381709077063],[-75.029000818109,44.9381712065746],[-75.0285181551035,44.9377392372972],[-75.0280674640372,44.9378113527984],[-75.0273263718941,44.9384686382266],[-75.0257490155952,44.9381269079222],[-75.0253625379021,44.9383070191469],[-75.0250405107373,44.9390632234802],[-75.02446113421,44.9384422215825],[-75.0236238271101,44.9384423799184],[-75.0228188234278,44.9397747726514],[-75.0224639915855,44.9399098597176],[-75.0208876548744,44.9382808243536],[-75.0197935077566,44.9378309122557],[-75.0190857080763,44.936795825705],[-75.0187641130012,44.9368228771037],[-75.0168954698865,44.9390105338],[-75.0160899622494,44.9393616971647],[-75.0149322000365,44.9381196002691],[-75.0142882903358,44.9384617318616],[-75.0136442404979,44.9383717805301],[-75.0129042299264,44.9378947623053],[-75.0129378502742,44.9363824795106],[-75.0126154161726,44.9362474833477],[-75.0121648050564,44.9366345942714],[-75.011810710731,44.9365896159204],[-75.010491616483,44.9357885679133],[-75.0114254089326,44.9353564185518],[-75.0119078662239,44.935581420983],[-75.0129708112586,44.9353292812488],[-75.0131309323647,44.9357163379503],[-75.0136140831555,44.9355812670907],[-75.0136784393607,44.9362203788973],[-75.0147412487498,44.935536142925],[-75.0149674427417,44.9344649195788],[-75.0154504938194,44.9340777940287],[-75.0110444163526,44.9292983217246],[-75.0097560067581,44.9302345859911],[-75.0092728856117,44.9303426366108],[-75.0070520103792,44.9304147614009],[-75.0060416697893,44.9299062029998],[-75.0053510432022,44.9300952577122],[-75.004056728083,44.9320801524849],[-75.0027363779902,44.932305205274],[-75.0019633579252,44.9327012785143],[-75.0006401098673,44.9366529967793],[-74.999658357263,44.9381607557228],[-74.9978391053193,44.9390114272123],[-74.9954228896316,44.9377511692242],[-74.9947780663442,44.936977010694],[-74.9936840530755,44.9372920343396],[-74.9925907692387,44.9383901932914],[-74.991560125825,44.9383001248443],[-74.9891793801163,44.9398392551391],[-74.9891158997685,44.9406584024195],[-74.9861265957604,44.9462841779199],[-74.9854850504256,44.9492546594219],[-74.9846813528937,44.9504877979675],[-74.9824270989601,44.9503344915268],[-74.98171920855,44.9515226141544],[-74.9805924310278,44.9515494564486],[-74.9801739104285,44.9520444847951],[-74.9794006711747,44.95159428131],[-74.978114076177,44.9520846588626],[-74.9761821341741,44.9534480645856],[-74.9739288019121,44.9547258559869],[-74.9737035861855,44.9551398857251],[-74.9729626521459,44.955157731148],[-74.9721581838595,44.9554996181723],[-74.9715791891162,44.9566697043787],[-74.9705168567325,44.9576326357891],[-74.9689060534606,44.957038132887],[-74.9683254067155,44.9565789011508],[-74.9680044404611,44.9566238269721],[-74.9672642295653,44.9582709376526],[-74.9652995448686,44.9585044431984],[-74.9647840116085,44.9578381730964],[-74.9649126728151,44.9573341166132],[-74.966072210099,44.9570373872333],[-74.9659744976506,44.9560111696909],[-74.9664889601189,44.9542019754492],[-74.9667142962197,44.9536529347556],[-74.9680984823932,44.9523930661931],[-74.9681297725112,44.9516189309001],[-74.9661656079391,44.9513213512216],[-74.9656821580094,44.9515012500391],[-74.9650399937353,44.954957711686],[-74.9644929969824,44.9553446265297],[-74.963783923491,44.9536971127205],[-74.9635565482144,44.9508885215388],[-74.9613976019393,44.9504422735482],[-74.9568263009355,44.9494910530608],[-74.9560550011444,44.9532894870131],[-74.9555396870732,44.9536313622819],[-74.9552172080559,44.953586234502],[-74.9545090984568,44.9531718922216],[-74.9540573473785,44.9511643444228],[-74.9545712591795,44.9484190232309],[-74.9526714472194,44.9471130441358],[-74.9509004186368,44.9463651915072],[-74.9494190437326,44.9460675184659],[-74.9466497488158,44.9462733534228],[-74.9461992122598,44.94684025868],[-74.9450402121684,44.94753286168],[-74.9431724583859,44.9477840329331],[-74.9418202360668,44.9483054785362],[-74.9405326637021,44.9507263010349],[-74.9401457072069,44.9510051597584],[-74.9365401086083,44.9508997685745],[-74.9348954092058,44.9524651740953],[-74.9342050089942,44.9523072632342],[-74.9336607251534,44.9525815115889],[-74.9328317840637,44.9519599267241],[-74.9314334063053,44.952481223773],[-74.9312584692852,44.9526656574272],[-74.9318780436249,44.9527380294499],[-74.9323188379517,44.9532423780516],[-74.9323498513885,44.9552362745913],[-74.931452685948,44.9556903444154],[-74.9294467685798,44.9558962052552],[-74.9293358140658,44.9565712671968],[-74.9293352193811,44.9570708615468],[-74.9283081548555,44.9574258111361],[-74.9282295190305,44.9556119185618],[-74.9293082321933,44.9544468468786],[-74.9294333010371,44.9535602532888],[-74.9265337405225,44.954935748109],[-74.9265995681683,44.9552103411671],[-74.9266144685239,44.9556559354588],[-74.9263267264603,44.9560428297024],[-74.9263951493388,44.9564614523152],[-74.9266509841419,44.9575238133213],[-74.9265917339606,44.9576948085217],[-74.9262739863699,44.9586217867819],[-74.9257314138198,44.9590310247834],[-74.9248108661307,44.9584633347475],[-74.9252005256565,44.9564607015685],[-74.9246558573368,44.9560372743901],[-74.9242763613501,44.9559695191149],[-74.92394273963,44.9572025394496],[-74.9232538521813,44.9579942437291],[-74.9225890970745,44.9584979053866],[-74.9246416675486,44.960020522888],[-74.9245901725233,44.9606281049908],[-74.923656674721,44.9605644931653],[-74.9229802513969,44.9608791140555],[-74.9225933425125,44.9622111138025],[-74.9205633880239,44.9647662492912],[-74.9202087672858,44.9650180576232],[-74.9195005507871,44.9647655285261],[-74.9189527859746,44.9648371670669],[-74.9176642533109,44.9652683565954],[-74.9173417832767,44.9657542228685],[-74.916343127972,44.965753518641],[-74.9143775269937,44.9679215176646],[-74.9139625412651,44.9680080535919]]],[[[-74.9661301217904,44.9680194262908],[-74.966805096132,44.9679025881316],[-74.9677985367165,44.9681053868901],[-74.9682833547804,44.9686366088671],[-74.9680083912517,44.9692711542613],[-74.9681537117152,44.9695277386227],[-74.9679113633196,44.9699192480321],[-74.9678151528543,44.9705133314747],[-74.9660119897373,44.9710259445611],[-74.9648932135094,44.9709131112635],[-74.9645422138802,44.9706519630028],[-74.9645491488741,44.9703009008152],[-74.9649266407195,44.9699589462783],[-74.9656374641291,44.9695585725976],[-74.966019023546,44.9690005758845],[-74.9654343703147,44.9684378108967],[-74.9658331917581,44.9681948772462],[-74.9661301217904,44.9680194262908]]],[[[-74.9947728812684,44.9696439703429],[-74.9955286671546,44.9693289284877],[-74.9956079273087,44.9696484871346],[-74.9955040856552,44.9701390732934],[-74.9959471715842,44.9709447242851],[-74.9956796470044,44.971210268403],[-74.9957478120665,44.9717053578329],[-74.9948481385296,44.9714532966852],[-74.9946174978771,44.970566632218],[-74.994288554583,44.97033708239],[-74.9947728812684,44.9696439703429]]],[[[-74.9587658884998,44.974003271476],[-74.9580788192412,44.973120876338],[-74.9576414879199,44.9733592688124],[-74.9574741569353,44.9740388349228],[-74.9562442671916,44.974056402477],[-74.9558845098866,44.9738762394672],[-74.9548882449989,44.9709683391875],[-74.9546076903558,44.9682317300265],[-74.9533907947427,44.968006225723],[-74.9528906675898,44.9674749337157],[-74.9532731765259,44.9668584682767],[-74.9551230879703,44.9663415729194],[-74.9558549607037,44.9664633641285],[-74.957002996857,44.9670848904059],[-74.957310992337,44.9675575863829],[-74.9569234896661,44.9680030320368],[-74.9571896461118,44.9682371691224],[-74.9585538663298,44.9680576081374],[-74.9592590968284,44.9683594011955],[-74.9609710126721,44.9685940033223],[-74.960975329077,44.9724512120385],[-74.9603007841302,44.9730316014773],[-74.9600853923796,44.973306081877],[-74.9596351468777,44.9739090443134],[-74.9598254909033,44.9743726918844],[-74.9593352137774,44.974957637351],[-74.9589733903473,44.9748810025709],[-74.9585980481704,44.9742777650189],[-74.9587658884998,44.974003271476]]],[[[-74.9307083805311,44.9776000266694],[-74.931514331936,44.9730276416534],[-74.9315140911876,44.9711732955158],[-74.9323195224679,44.9683112216185],[-74.9316437279645,44.9680407836208],[-74.9312243602539,44.9681035533043],[-74.9303549752135,44.9686791546385],[-74.9300322823971,44.9727927341885],[-74.9289367536705,44.9761317070244],[-74.9280346807335,44.9760861552896],[-74.9277448159509,44.9758609373273],[-74.9267137090066,44.9743930307025],[-74.925393676019,44.9732759979015],[-74.9248134613636,44.9732486262299],[-74.9242015002459,44.9738693519787],[-74.9235888366457,44.9737969449654],[-74.923267387996,44.973499681119],[-74.9225903915468,44.9735262455879],[-74.9218731541661,44.9742404814479],[-74.9171412712204,44.9705125179941],[-74.917630450605,44.9701652592687],[-74.9180491023584,44.9694994251943],[-74.9194345542581,44.968978280842],[-74.9263929224152,44.9678125977681],[-74.9298713779601,44.9674186327704],[-74.9312249648201,44.9675814556344],[-74.9335440429812,44.9669616596771],[-74.9367646505984,44.9667113680933],[-74.9399216970195,44.9657948297045],[-74.9426271594488,44.9654090880722],[-74.9430138536359,44.9654992894078],[-74.9427883666182,44.9659132592068],[-74.9419510810778,44.9662369160295],[-74.9403086077005,44.9664611485087],[-74.9365394932623,44.967512398372],[-74.9351221808144,44.9676286557853],[-74.9350901334166,44.9679436974459],[-74.9358309578618,44.9681961464542],[-74.9369906065368,44.9681517572069],[-74.9376674448826,44.9697274073191],[-74.9384403032507,44.9704659462155],[-74.9381179185565,44.971014881324],[-74.938536958382,44.9735985779543],[-74.9375059098282,44.9748762802947],[-74.9367334053962,44.9745068046655],[-74.9363465153764,44.9745516071447],[-74.9361530973159,44.9752896403561],[-74.9347996991022,44.9754959462447],[-74.9328992834742,44.9792395860137],[-74.9318683642777,44.98020217927],[-74.931320014662,44.9799768224298],[-74.9309339627703,44.9792654666378],[-74.9307083805311,44.9776000266694]]],[[[-74.9622700466415,44.9824884442487],[-74.961332017737,44.9814079578675],[-74.960929909358,44.979765032388],[-74.9627750561381,44.9778617577724],[-74.9639094944929,44.9771644682923],[-74.9650716854002,44.9749774033921],[-74.9665725833904,44.9736815814883],[-74.9671786838991,44.9735197133009],[-74.9679257372624,44.9728537866193],[-74.9691580470675,44.9726875673174],[-74.9702676919205,44.9720712233595],[-74.9712292755501,44.971913918717],[-74.9728177017883,44.9721258095705],[-74.9746434135172,44.971653601188],[-74.9770528550094,44.9701237772159],[-74.9773645443618,44.9695882352522],[-74.978909237917,44.9688233567503],[-74.9799427550413,44.9676983147858],[-74.9838811345369,44.9645932857459],[-74.984965791852,44.9644583851576],[-74.9856708768235,44.9639453669712],[-74.9870475593695,44.963900492646],[-74.9869509707135,44.9632748703064],[-74.9882285780668,44.9631534587807],[-74.9916214421314,44.9635902619456],[-74.994465933224,44.9631762976295],[-74.9953856733277,44.964026971529],[-74.9957229134617,44.9633473548002],[-74.9969438389172,44.963374372077],[-74.9973876722446,44.9636084149173],[-74.9975894087046,44.9648461378475],[-74.9967817882299,44.9658948247656],[-74.9966125797663,44.9671100424332],[-74.9957288144948,44.9685232865771],[-74.9944007613485,44.9688698218192],[-74.993816566258,44.9695224223089],[-74.9928503149822,44.9699364628535],[-74.992308938988,44.9699454410987],[-74.9905994701551,44.9712640896278],[-74.9891484636975,44.9715565471846],[-74.9889989759494,44.972105635182],[-74.9883025453473,44.9725691657828],[-74.9881393061888,44.9722045871689],[-74.9881409662754,44.971682493146],[-74.9867564908444,44.972154958038],[-74.9852080459245,44.9739416254469],[-74.9811068521736,44.9774697522782],[-74.979121177442,44.9782300908586],[-74.9775392577014,44.9793145240788],[-74.9766283471387,44.9804800725085],[-74.9759843134705,44.9801738997055],[-74.9751712851377,44.9802367565071],[-74.974033108893,44.9815597694068],[-74.9732918550531,44.9815056070983],[-74.9728817974821,44.9819285965925],[-74.9723462066384,44.9820365003572],[-74.9720921325333,44.9819824350806],[-74.9710025587387,44.9798848119234],[-74.9693752713813,44.9792588130011],[-74.9684786404383,44.9800642367538],[-74.9678390920583,44.9811757750721],[-74.9675402854454,44.9810181688001],[-74.9671578968834,44.9799873825864],[-74.9666526403502,44.9797126984216],[-74.9649301926581,44.9820751526018],[-74.9638480155915,44.982047836598],[-74.9635298969966,44.9817101820121],[-74.9622700466415,44.9824884442487]]]]},"properties":{"OBJECTID":8,"STATE":"NY","Zone":"E","Title":"Mohawk Valley"}},{"type":"Feature","id":9,"geometry":{"type":"MultiPolygon","coordinates":[[[[-73.373249738163,44.4946619866929],[-73.3744339961852,44.4943367464071],[-73.3772282427074,44.4954837978351],[-73.3786642688594,44.4956617352127],[-73.379480935369,44.4964610523934],[-73.3794308569868,44.4967934387507],[-73.3802096424392,44.4973716491313],[-73.3809831781371,44.498651983201],[-73.3790816459033,44.5012852734954],[-73.3789097478838,44.5025521881108],[-73.3792759523975,44.5034666382697],[-73.3778430281283,44.5056654172532],[-73.3766671531843,44.5057657447606],[-73.3756039215871,44.5053770259608],[-73.3743539320389,44.503617257513],[-73.3728064752658,44.5022943613267],[-73.3722483861158,44.5009900478343],[-73.3715628871124,44.500507644767],[-73.3701847088715,44.500055868128],[-73.3706767637633,44.4981948483817],[-73.3714014957884,44.4974354610134],[-73.3722747417879,44.4969887750912],[-73.373249738163,44.4946619866929]]],[[[-73.4141493620075,44.6359133721835],[-73.4131561657647,44.6357510443807],[-73.4126594468199,44.6360502231504],[-73.4121308412758,44.6354667307197],[-73.410830732023,44.6350300477058],[-73.4118255766743,44.6336575245788],[-73.4105250479082,44.6321405548912],[-73.4097987474246,44.6320179197711],[-73.4089619999751,44.6317271989112],[-73.4079784471469,44.6319070489254],[-73.4081407143283,44.6312746464141],[-73.4088788797602,44.6310778752143],[-73.4089742520973,44.6309036579156],[-73.4090886938712,44.6299735113982],[-73.4088727173174,44.62945737204],[-73.4092300150351,44.6286071268767],[-73.4089468220401,44.6280135319474],[-73.4086561191293,44.6278969539441],[-73.4051603404725,44.628496378656],[-73.4047031420103,44.6282739405125],[-73.4043816026308,44.6276437890959],[-73.4045480909957,44.6267143735157],[-73.4057091635004,44.626609049603],[-73.4061761077851,44.6258413641384],[-73.4059740488299,44.6255954826607],[-73.4052234255617,44.6254724788756],[-73.4052209794491,44.6248422817017],[-73.4060450417885,44.6243541522901],[-73.4080975152446,44.6239461549589],[-73.4094590917207,44.6230738865385],[-73.4097541406809,44.6225108470782],[-73.4094301857315,44.6217951539285],[-73.4081659524962,44.6210663629655],[-73.4079746760194,44.6216083390805],[-73.4074273567713,44.6218887858701],[-73.4059119213449,44.6221647294318],[-73.4052513092681,44.6212012629953],[-73.4071837480393,44.6201659444573],[-73.4071831758124,44.6196393000234],[-73.4077398941334,44.6191294258217],[-73.4080391876332,44.6191606036036],[-73.4080393448384,44.619529700975],[-73.4082985788664,44.6196143337074],[-73.4090792220349,44.6189815395786],[-73.4088604023131,44.618397842294],[-73.4093635684667,44.6178286989095],[-73.4092524280014,44.6176290999693],[-73.4089791218644,44.6174542501918],[-73.4081427517074,44.6178206983911],[-73.4077576987423,44.6174687429094],[-73.4093823351713,44.6157269142192],[-73.4108566834532,44.6125020861993],[-73.4106341348248,44.6120263678848],[-73.4088353024858,44.6109210487984],[-73.4089273034456,44.6104362032522],[-73.4092433118979,44.6105171234645],[-73.4101645647645,44.6095756978961],[-73.4106927256425,44.6095020246838],[-73.4114124899842,44.6089583904743],[-73.4131813787798,44.6087038991568],[-73.4136439347943,44.6088408564861],[-73.4150931625877,44.6078572070867],[-73.4163121126478,44.6082161994111],[-73.4185303450368,44.6082649299189],[-73.4220100824776,44.6075388413109],[-73.4233091128537,44.6080834122951],[-73.4232465577706,44.6089692803092],[-73.4225738346071,44.6095541493177],[-73.423030052109,44.6102176180321],[-73.4230745780044,44.6119781911354],[-73.42279766064,44.6124019796593],[-73.4233149015974,44.6134893997853],[-73.4235519463396,44.6161123508151],[-73.4243652702181,44.6165646838999],[-73.4256440795172,44.6167578575759],[-73.4252637391141,44.6173647750844],[-73.4234922425092,44.6187852196955],[-73.424201051896,44.6192001026833],[-73.4250286059868,44.6189819539194],[-73.4251893801682,44.6195333117166],[-73.4242682863034,44.6197726777459],[-73.4240318434324,44.6198639413955],[-73.4241621871835,44.6210450443561],[-73.4253556026317,44.6220112429048],[-73.4264200927687,44.6220934257499],[-73.4275738889196,44.6220192876025],[-73.4279581289093,44.6211513489594],[-73.4307430356475,44.6209465695683],[-73.4311587229604,44.6211323245169],[-73.431898232272,44.6233075354549],[-73.4304563410195,44.6243950230897],[-73.4300693575749,44.6237280355359],[-73.4291304366433,44.6230489587829],[-73.4286548227178,44.6230109104959],[-73.4275001318449,44.623526161556],[-73.427290973504,44.6240364152872],[-73.4284132073474,44.6247540378617],[-73.4284503320232,44.6262984464873],[-73.4281885485763,44.626335355884],[-73.4274729380446,44.6253217509168],[-73.4253182902081,44.6256071570452],[-73.4249308351479,44.625862883657],[-73.4249034823459,44.626699722634],[-73.4242477562059,44.6269112381461],[-73.4235206193907,44.6278689569807],[-73.4234503145417,44.628516153153],[-73.4239788194745,44.6303284091638],[-73.4246881992914,44.6306982838677],[-73.4252133840509,44.6317903023025],[-73.4244755905215,44.6317711291992],[-73.4244718490384,44.6326668072009],[-73.4227148862764,44.6328631236123],[-73.4217537634826,44.6334665096424],[-73.4212457320534,44.6357550798407],[-73.420293266324,44.635746416354],[-73.419681321376,44.6361115499061],[-73.4187173311598,44.6358596514045],[-73.4172200390072,44.6359784558251],[-73.4168860094519,44.6366129919359],[-73.4164910327979,44.6367065443648],[-73.416243221747,44.636401532234],[-73.4155124907724,44.6360628165579],[-73.4141493620075,44.6359133721835]]],[[[-73.4161030980374,44.6594544534667],[-73.4175769477544,44.6585386381406],[-73.4183450181021,44.6593414721331],[-73.4194348407301,44.659734647732],[-73.4194979168361,44.660140622898],[-73.4184093563411,44.6615569211698],[-73.4177673277126,44.6652209579024],[-73.4167736517695,44.6654052435016],[-73.4158128793186,44.6645547168726],[-73.4151401157309,44.6632040496861],[-73.4151736660102,44.6624933360269],[-73.4157179121217,44.6616726744006],[-73.4161030980374,44.6594544534667]]],[[[-74.8903915989143,44.9736986769781],[-74.8948786514192,44.9730456639024],[-74.8946550373888,44.9739636383075],[-74.8933537729025,44.9750696727884],[-74.8921263616107,44.9754376196462],[-74.8917230342178,44.9759863521143],[-74.8907625195834,44.9756298924463],[-74.8907370110226,44.9752833027264],[-74.890055685592,44.9748550831098],[-74.8899634879011,44.9743554008649],[-74.8905164952816,44.9740948694537],[-74.8903915989143,44.9736986769781]]],[[[-74.8954923714382,44.9813367892592],[-74.8954608684195,44.9803375721381],[-74.8965565265035,44.9798794559022],[-74.8969426116328,44.9798797958562],[-74.8974905363454,44.9802673489823],[-74.8978768298839,44.9801506634943],[-74.8983611520778,44.9788278328572],[-74.8992954691435,44.9785765903274],[-74.899586285242,44.9777306788585],[-74.8999731177697,44.9777490122717],[-74.9000049567583,44.9781361127465],[-74.9003917003527,44.9782084551845],[-74.9010044465979,44.9768407142657],[-74.9012623313564,44.9766969040573],[-74.9021316175821,44.9769046702557],[-74.9032600273431,44.9757443852181],[-74.9042915241563,44.9756462108052],[-74.904806164491,44.9760337016743],[-74.9054509006418,44.9758811930061],[-74.9062891312098,44.9751887332369],[-74.9076097552888,44.9752167826746],[-74.9083187946442,44.974488199498],[-74.9091887150805,44.9742818346963],[-74.910799326113,44.9743910867426],[-74.9135061791345,44.9724037292408],[-74.9135708892759,44.9720617122504],[-74.9143445857723,44.9714861683759],[-74.9161482842852,44.971217413598],[-74.9171412712204,44.9705125179941],[-74.9218731541661,44.9742404814479],[-74.9204313590334,44.9756762160095],[-74.9196262403667,44.9760447404308],[-74.9187240263943,44.9761071353243],[-74.918401347951,44.9772771323331],[-74.9179827527915,44.9772948456857],[-74.9174995939159,44.9769974538153],[-74.9163076328402,44.9756553629121],[-74.9158248377823,44.9756730227504],[-74.9144390023019,44.9774093529259],[-74.9134400721127,44.9774536320646],[-74.9125694599736,44.97810111167],[-74.9119894492357,44.9789648429833],[-74.9110553881898,44.9790811636021],[-74.910055937876,44.9804756671332],[-74.9080583559754,44.9798080000892],[-74.9075105354674,44.9808157607323],[-74.9070910312128,44.9808874440395],[-74.906028427538,44.9800584448473],[-74.9057381522253,44.9801302256858],[-74.9039654545728,44.9820731587055],[-74.9025159159624,44.9808117283729],[-74.9014530975902,44.9810898950623],[-74.9008734713312,44.9806753294852],[-74.9000668497831,44.9813407720196],[-74.8994876205794,44.9811602436581],[-74.8988103806867,44.9812676824761],[-74.8985200514751,44.9818165357963],[-74.8977786350402,44.9823469934684],[-74.897745979483,44.9837872370723],[-74.8969384730943,44.9858029114505],[-74.8957790274386,44.9859549172089],[-74.8955209567288,44.9857296452465],[-74.8949100906575,44.9841718060905],[-74.8951364418546,44.9835148845586],[-74.8948795102086,44.9822274109682],[-74.8954923714382,44.9813367892592]]],[[[-74.8764124063317,44.9866832295225],[-74.8760601616375,44.984558450844],[-74.8762862738827,44.9841176062207],[-74.8769302311941,44.9847844129769],[-74.8770575817587,44.9860447882485],[-74.877605169603,44.9861803884237],[-74.8779278534363,44.9858116546691],[-74.8781854785816,44.9858389288518],[-74.8781518663186,44.9871171373865],[-74.8772814140797,44.9878003575738],[-74.8767982273564,44.9875748069596],[-74.8764124063317,44.9866832295225]]],[[[-74.883503355045,44.9846021075122],[-74.8843417149704,44.983648757385],[-74.8850500626231,44.9846756502745],[-74.8854675717194,44.9860443187178],[-74.8854975080762,44.9881507478194],[-74.8861736888552,44.9890425749856],[-74.8858181185977,44.9900234150953],[-74.8846905236087,44.990049316264],[-74.8840788526469,44.9898146678557],[-74.8832122972997,44.9854299748611],[-74.883503355045,44.9846021075122]]],[[[-74.8935190611181,44.9917409792206],[-74.8887824907634,44.9910524580154],[-74.8887822670829,44.9907554017931],[-74.890717278629,44.989361957072],[-74.8910081800675,44.9881469987004],[-74.8921039854753,44.9872838479168],[-74.8925244167912,44.9858889705611],[-74.8930078514495,44.9860064341227],[-74.8930709464201,44.98705068888],[-74.8939416483907,44.9869884672739],[-74.8940058339161,44.9865744469147],[-74.8943604133318,44.9864847495219],[-74.8949077307832,44.9876734647742],[-74.8959707000724,44.9882865266245],[-74.8952281185226,44.9898431593079],[-74.8945512586173,44.9905536875553],[-74.8949694369584,44.9912651955239],[-74.8939381611308,44.9910752336599],[-74.8935190611181,44.9917409792206]]],[[[-74.8609626321031,44.9964237271819],[-74.8615421963784,44.9954882369325],[-74.8607041014559,44.9954422311228],[-74.8605749201248,44.9950820078055],[-74.8612508655452,44.9946237260667],[-74.8620244192094,44.9944626119813],[-74.8623469269728,44.9948950748139],[-74.8629594836734,44.995075829908],[-74.8627989780884,44.995876794324],[-74.8622186466519,44.9958130989875],[-74.8619940920854,44.9961999078824],[-74.8609626321031,44.9964237271819]]],[[[-74.8716929425949,44.9950047316299],[-74.8731429528209,44.9944572090419],[-74.8736267207542,44.9947997975914],[-74.8734676488803,44.9964649418287],[-74.8725980850752,44.9970131020699],[-74.8723071072799,44.9966257110652],[-74.8715976951237,44.9964719053732],[-74.8706304224634,44.995669687028],[-74.871758235743,44.995598916007],[-74.8716929425949,44.9950047316299]]],[[[-74.8838122102127,44.9994192147219],[-74.883039960004,44.9977531342481],[-74.8819438931865,44.9977970438517],[-74.8807520192473,44.997381759318],[-74.8788500315676,44.9975238349108],[-74.8779158249946,44.9971537950319],[-74.8771111141631,44.9963067931652],[-74.8758221170703,44.9964674637474],[-74.8749192599041,44.9962864684732],[-74.8752106913486,44.9953686056149],[-74.8748568036357,44.9950981764242],[-74.8748580424125,44.9937929301169],[-74.8743339904285,44.9933782899594],[-74.8746442999687,44.9930770656394],[-74.8750196637051,44.9931269765146],[-74.8750515727623,44.9934060636818],[-74.8756641159883,44.9936047534974],[-74.8755020958436,44.9940906738398],[-74.8764360428035,44.9945507506541],[-74.8767590006229,44.9944520722786],[-74.8768245596723,44.9930838822103],[-74.8763740527607,44.9927593451963],[-74.8764387629022,44.9925343712434],[-74.8792096011247,44.9928073149187],[-74.8836238370909,44.9937029524291],[-74.8883617135961,44.9933834973348],[-74.8903264081742,44.9939614584366],[-74.8916153351984,44.9950608612884],[-74.890938147408,44.9954653105805],[-74.8895845758193,44.9954190366745],[-74.8876480290523,44.9987118168549],[-74.8844886362318,44.9994468876941],[-74.8838122102127,44.9994192147219]]],[[[-73.3528662924265,45.0077517039942],[-73.3526502107698,45.0076810755551],[-73.3522475193841,45.0077292811176],[-73.3518454388528,45.0073409038159],[-73.352971481553,45.0052687049801],[-73.350532852899,45.0061517231812],[-73.3503442560967,45.0066441037469],[-73.3498567080526,45.006830604629],[-73.3496164976473,45.0079883761118],[-73.3489765647884,45.0075425424505],[-73.3491339478295,45.0067841582544],[-73.3482169907066,45.0063748265538],[-73.348084799121,45.0058688110352],[-73.3485867282944,45.0054574784406],[-73.3488652015409,45.0055920291612],[-73.3497072265927,45.0054061511346],[-73.3498754163667,45.0050169984433],[-73.3508662185993,45.0044821869772],[-73.3503677326683,45.0056317325609],[-73.3532181867778,45.0046016214244],[-73.3532182029475,45.004268552149],[-73.3540589362219,45.0020752058638],[-73.3544718962496,45.0010009280208],[-73.3547615634028,45.0002444396865],[-73.3539799320876,44.9999856329858],[-73.3523852095576,44.9999581514706],[-73.3521602741054,44.9998378834798],[-73.3522370387397,44.9990963359247],[-73.3565043660209,44.9993918339337],[-73.3581346564463,44.9989786768634],[-73.3596970171682,44.9964985906945],[-73.3597264864011,44.9952432510126],[-73.3579007441295,44.9945914006271],[-73.3580628585973,44.9943011690094],[-73.3601128787543,44.9949292296341],[-73.3625622548524,44.9937310931828],[-73.3630545504927,44.992369859474],[-73.3629926350101,44.9903390465526],[-73.3627591529863,44.9869824975338],[-73.3624132557878,44.9855147333033],[-73.3619208245019,44.9829016261699],[-73.3620849107717,44.9813151426846],[-73.3626007449674,44.9767000559543],[-73.3630280142592,44.975306380134],[-73.3600025746206,44.9738001923461],[-73.3561348296558,44.9707649874728],[-73.3561023331004,44.9700713721675],[-73.3582252605259,44.9661680510002],[-73.3589637241985,44.9631720135981],[-73.3603139271048,44.9608418904236],[-73.3602046174061,44.9596160593371],[-73.3593772241136,44.9572276729253],[-73.357474219541,44.9552154096125],[-73.3566703055152,44.9548977857467],[-73.3559395233366,44.9549052787969],[-73.3555142932204,44.9555337971002],[-73.3559632325719,44.9566835031919],[-73.3557396859151,44.957796527025],[-73.3553528902184,44.9577999634706],[-73.3547074650598,44.9555401877678],[-73.3558977022685,44.9535948942681],[-73.3558956100922,44.9526136528331],[-73.3553484085234,44.9513545084544],[-73.3545749725385,44.9504161739329],[-73.3541228270999,44.948771308407],[-73.3529321074958,44.9478539576263],[-73.3527696085491,44.9474690325212],[-73.3524481904421,44.9467127360829],[-73.3509656270669,44.9454760887868],[-73.3509022652967,44.94508809011],[-73.352347709386,44.9421382932506],[-73.3537943733876,44.937865205992],[-73.3571073781217,44.935077262505],[-73.3583612618666,44.9344381373401],[-73.3595515439912,44.9341401608007],[-73.3618045016557,44.9340194456681],[-73.3619962784941,44.9347963645681],[-73.3636086681909,44.9360347299513],[-73.362901493738,44.9370598281161],[-73.3641268353114,44.9389317799308],[-73.3639034997587,44.9419982518169],[-73.3634858352539,44.9427574385805],[-73.3634874073056,44.9444588311262],[-73.3634887601684,44.9467813548875],[-73.3644881772445,44.9484700251926],[-73.3661317016507,44.9495197571871],[-73.3662954124247,44.9495581052009],[-73.3667427033676,44.9496545180649],[-73.367387190685,44.9489435713479],[-73.3679018094602,44.9487888868787],[-73.3689644858986,44.9489210841371],[-73.3698673664209,44.9505003057806],[-73.3702846886677,44.9507043008721],[-73.3757952852005,44.949747528806],[-73.3784621443271,44.9488762031473],[-73.3793646592352,44.9481688491149],[-73.3830076448176,44.9427472638818],[-73.3848442153817,44.9408738213779],[-73.3859735818485,44.936811887395],[-73.3860076513539,44.935029978343],[-73.3852375490171,44.9328316208714],[-73.3855814402775,44.9318372601369],[-73.3856584654232,44.931208209518],[-73.3857049289847,44.9310198243287],[-73.3857598483879,44.9308405608916],[-73.385753588927,44.9306964407567],[-73.3857233794823,44.930502471302],[-73.385739485377,44.9304081784149],[-73.3859422944255,44.9302084981755],[-73.3860439235285,44.9300298942614],[-73.3861143334805,44.9298913579191],[-73.3861232411748,44.9297429507834],[-73.3860770884305,44.9296657824319],[-73.3858928197112,44.9295146476065],[-73.385769997554,44.9294318949853],[-73.385685717614,44.9293586884183],[-73.3856607453474,44.9292323080222],[-73.3845363995648,44.9259712052388],[-73.3841969396936,44.9254802993197],[-73.3838928366138,44.9250844128878],[-73.3837169734306,44.9248883828021],[-73.3835557177522,44.9247645755223],[-73.383486201624,44.9246735723519],[-73.383464550429,44.9244572186972],[-73.3834661790746,44.9242862039823],[-73.3832072316091,44.9238054350066],[-73.3830614000042,44.9236683421155],[-73.3829616088543,44.9235273995101],[-73.3828548548625,44.9234088628159],[-73.3826008481311,44.9231757176116],[-73.382278856899,44.9229101025713],[-73.3821783803344,44.9228501673455],[-73.3820403425129,44.9227176842535],[-73.3819559511819,44.9226489743552],[-73.3816640220708,44.9224693018825],[-73.3816026806116,44.9223694111586],[-73.3815728772054,44.9222744682182],[-73.381465773769,44.9220839095427],[-73.3813818217141,44.9219431901271],[-73.3812897354144,44.9218383625794],[-73.3811050651481,44.9217592302325],[-73.3808665929829,44.9215938157464],[-73.3807289405387,44.9214478335175],[-73.3805912557551,44.9212748450024],[-73.3786538834363,44.9190913979405],[-73.3785587491528,44.9183068743668],[-73.3781086285168,44.9176433411528],[-73.3764047993073,44.9163408636761],[-73.3759892521316,44.9142825033251],[-73.3752177313549,44.91328131669],[-73.3747044654425,44.9117706836855],[-73.3747045597657,44.9109244965717],[-73.3755113609768,44.9096036706769],[-73.3752228212092,44.9078171707882],[-73.3758991924311,44.907583731366],[-73.3763809975455,44.9076805977201],[-73.3767351673294,44.9073615561035],[-73.376865902746,44.9061481412969],[-73.3763199794798,44.9053482091162],[-73.3768665962454,44.9051669319908],[-73.3773817513147,44.9055973424678],[-73.3785394380692,44.9055327560016],[-73.3790221028713,44.9052605403419],[-73.3791840080316,44.9043446316463],[-73.3804105722121,44.9036868698165],[-73.3803443448161,44.9026056889643],[-73.3785434131143,44.9013918842527],[-73.3785750580668,44.9011672830279],[-73.3803770596621,44.9004816756827],[-73.3809580118345,44.8997517420944],[-73.380990317947,44.8992210807249],[-73.3789017807255,44.8967519242197],[-73.3788728136509,44.8944019839275],[-73.3778756612276,44.8935506454283],[-73.3783268149262,44.8928188814114],[-73.3785530358676,44.8912467356526],[-73.3779131137884,44.8885010352726],[-73.3768862567737,44.8869651106302],[-73.3779162668751,44.8860795308989],[-73.3775631571032,44.8851833160158],[-73.3767923747417,44.8849563213309],[-73.3766958588492,44.8847298992202],[-73.3794647091,44.8811593755743],[-73.379369664648,44.8802038102526],[-73.3782136909808,44.8786480602812],[-73.3790484100344,44.8783988432628],[-73.3794676798287,44.8780086995145],[-73.3793709645102,44.8776202393687],[-73.3783761764528,44.8767509322817],[-73.3807878700213,44.8763620320475],[-73.381751553912,44.8765917316965],[-73.3836156713143,44.8738274744717],[-73.3841943229012,44.8733945566856],[-73.3883230688802,44.8722600853104],[-73.3902399200846,44.8716749616009],[-73.3928889440597,44.8705374755869],[-73.3934857497001,44.869704173446],[-73.3945624218907,44.8670906995022],[-73.394671901371,44.8657419269672],[-73.3939430496719,44.8647819670543],[-73.3939111918187,44.864277403227],[-73.3944579756709,44.863276854189],[-73.3924994165862,44.860368656174],[-73.391954524586,44.8585155632834],[-73.3890958365186,44.8570349697659],[-73.3885491658541,44.8570092581784],[-73.3874235112261,44.8576055218211],[-73.3870376398958,44.8576000760654],[-73.3867491225861,44.8572809304464],[-73.387232797993,44.85672962856],[-73.3869440156803,44.8560233896792],[-73.3870729841106,44.8547469138337],[-73.3858846495337,44.8541900104238],[-73.3854999783526,44.853689461289],[-73.3873330463854,44.8512667739844],[-73.3911268204764,44.8497178740102],[-73.3931856629879,44.8482074817963],[-73.3937959496458,44.8474778886098],[-73.3948261636648,44.8458089703604],[-73.3947617733236,44.8450518898024],[-73.3941517310074,44.8446922369699],[-73.3930269962542,44.8446404186964],[-73.392994642531,44.8443248897088],[-73.3940880251824,44.8436831062894],[-73.3982027412733,44.8423995390206],[-73.3996811679066,44.8423572366312],[-73.402218440562,44.8428608485933],[-73.4084361863949,44.8397203537671],[-73.4091521652359,44.8381279466532],[-73.4092394850748,44.8364772736514],[-73.4090661937683,44.8354756268296],[-73.4077433742068,44.8339223423807],[-73.4057668461214,44.8335121971144],[-73.4055461543106,44.8312495853559],[-73.4047931756597,44.8303703721668],[-73.4019695443463,44.8284314754164],[-73.4014453135976,44.8276319558837],[-73.3998693272294,44.8216684924458],[-73.3991685927988,44.8189085252553],[-73.3985100728983,44.8165677435116],[-73.3980921047629,44.8162468105921],[-73.3926335143968,44.8151529225972],[-73.3914444306249,44.8146500759856],[-73.3913494679196,44.8143696729431],[-73.3917342424069,44.814006000564],[-73.3927955291516,44.8134177867983],[-73.3933425052433,44.8119941361192],[-73.3930216512783,44.8117645706896],[-73.3925076640188,44.8120004000002],[-73.392314014193,44.8126548332034],[-73.3915422364981,44.8134631693252],[-73.3905136987355,44.8141238495799],[-73.3901724745731,44.8138309746076],[-73.3900319268587,44.8137119664422],[-73.3901020206037,44.8134653946702],[-73.390386174796,44.8124566552075],[-73.3899708953183,44.8108484226742],[-73.3904766423317,44.8101983893246],[-73.3906356710864,44.8099935793479],[-73.3906774661033,44.8099401550831],[-73.3904533517113,44.8097569553904],[-73.3883658080265,44.8099615909475],[-73.3883546608321,44.8099929414028],[-73.3882698032755,44.8102303017544],[-73.38897531854,44.8107803789237],[-73.38890812815,44.8137051311188],[-73.3886194832796,44.8140791519931],[-73.3885070348673,44.8140865684556],[-73.3854930514434,44.8142870859689],[-73.3822920765067,44.8145028810473],[-73.3798175835133,44.8156471072093],[-73.3791753401874,44.8161691266788],[-73.3784669988229,44.8179775116092],[-73.3770200186144,44.8188931933601],[-73.3767935605178,44.8198081953332],[-73.3758306087541,44.820262625014],[-73.3756692353964,44.8209985071445],[-73.3719209780425,44.8209271645462],[-73.3716646455728,44.8206534481144],[-73.3717598939424,44.819628561543],[-73.3703769986479,44.8186006096023],[-73.370631141025,44.8162006611081],[-73.3697391480838,44.8155397847965],[-73.3691844518706,44.8142985764096],[-73.3696382268532,44.8135668746441],[-73.3696678883256,44.8125140467584],[-73.3691121285071,44.811479871019],[-73.3677039123997,44.8106855806004],[-73.3670599730546,44.8096411330245],[-73.3644906862391,44.8090462574644],[-73.3640405997391,44.8087517461949],[-73.3640085128154,44.8082651701752],[-73.3649703039558,44.8060013889691],[-73.3649040082879,44.8047671443843],[-73.3642614550432,44.8036776895901],[-73.3636504048173,44.8032638439248],[-73.3616602465941,44.8027132036456],[-73.359890983201,44.8001132051939],[-73.3602759113003,44.7986873839387],[-73.36247171096,44.7949514596725],[-73.364437120597,44.7921169128737],[-73.3648284617691,44.790821697904],[-73.3642499853537,44.7902102731781],[-73.3642809395018,44.7898416268331],[-73.3651799824213,44.7888372443293],[-73.3676816602318,44.7868655177849],[-73.367713236014,44.7863618456603],[-73.3655619218255,44.7854938936536],[-73.3653045032927,44.7852651568217],[-73.3654332300762,44.7850149369775],[-73.3682558516833,44.7837589598062],[-73.3688675352215,44.7844248520993],[-73.3696051975969,44.7842643366096],[-73.370535464159,44.7830983175229],[-73.3745906596758,44.7792941251129],[-73.3754264099954,44.7776045929555],[-73.3753947318052,44.7768749637078],[-73.3744183196852,44.7762579314328],[-73.3742940278842,44.7758735695214],[-73.376492207181,44.7714802335796],[-73.3781967325849,44.7689388056216],[-73.3805089152778,44.7667480482808],[-73.3819217828618,44.7661559105312],[-73.3825647502297,44.7648506882111],[-73.3832377878035,44.7647881939894],[-73.3829806046293,44.7664769728684],[-73.3837489480648,44.7679822099641],[-73.3833928136654,44.7708398769863],[-73.3825246341641,44.772628034858],[-73.3809820211071,44.7747487165142],[-73.3788302649474,44.776671690841],[-73.3775778849823,44.7774461111544],[-73.3780571784072,44.7784971699663],[-73.378828545572,44.7784270960206],[-73.3812695457784,44.7764452044939],[-73.3832928554288,44.7755556209569],[-73.3866345155221,44.7704355775532],[-73.3869548879901,44.7705031159604],[-73.3869228944913,44.7711418213601],[-73.3866978269867,44.7718498192143],[-73.3859446057907,44.7726898918061],[-73.3854476829283,44.773515576904],[-73.3855086147557,44.7739935550836],[-73.386760573411,44.7737951817855],[-73.3879481776577,44.7722185498455],[-73.3896511067553,44.7712523155621],[-73.3890399469348,44.7728370933093],[-73.389070280347,44.7737917547443],[-73.3893907246803,44.7742553842447],[-73.3907709564699,44.7748419668922],[-73.3933702748636,44.7750495812426],[-73.3953607034797,44.7748254849961],[-73.3967091986887,44.7739351884221],[-73.404445001232,44.772225008087],[-73.4062102931732,44.7711063599848],[-73.4080425473324,44.7663967320063],[-73.4087190479116,44.7597625119219],[-73.4106167470341,44.7510297438471],[-73.4115757093797,44.7490535924737],[-73.4128927042649,44.7479556240655],[-73.4134154339287,44.7469141326732],[-73.4133791231266,44.7459323943692],[-73.4127926409254,44.7452355868923],[-73.4125579919901,44.7449532610411],[-73.4119026161931,44.7447551102177],[-73.4125502862416,44.7441384596265],[-73.4102640630637,44.7424637872655],[-73.4094619375836,44.7426956848132],[-73.4080182398191,44.7438098534028],[-73.4072163479009,44.7437446675042],[-73.4036282691453,44.7366549168556],[-73.4019618808186,44.7353083089124],[-73.3998455245693,44.7342524483923],[-73.3993010332178,44.733731699343],[-73.3990118745109,44.7325393626355],[-73.3984662369091,44.7319465762967],[-73.3969924276163,44.7314668015785],[-73.3954854579131,44.7317877356606],[-73.3930135610508,44.7317800086811],[-73.3915724225866,44.732173834433],[-73.3903859502172,44.7315809901028],[-73.3895847778496,44.7309845614191],[-73.3888162628358,44.7291552890463],[-73.3879516307816,44.7282878890377],[-73.3869606938018,44.7242409287766],[-73.3857444557555,44.7229094357696],[-73.3834355662864,44.7216524993866],[-73.3798772864454,44.7206028644232],[-73.3787889145966,44.7199572754413],[-73.3785690052184,44.7152280029775],[-73.3794047303851,44.7135564467861],[-73.3802402606174,44.7105885634827],[-73.3813669132737,44.7090336434139],[-73.3818913389568,44.7058137783864],[-73.381701156628,44.7048523491935],[-73.3805703833995,44.7002181924303],[-73.3806354465789,44.699440422414],[-73.3803752396753,44.697681300938],[-73.3810883546872,44.6959539770928],[-73.3823723831982,44.6939196531972],[-73.3841376050708,44.6919371315885],[-73.3860948005129,44.6903083806467],[-73.3870883084711,44.690376422046],[-73.3899386772406,44.6917489498801],[-73.3934941094222,44.6941575750361],[-73.3956719445728,44.6964162227902],[-73.397363677967,44.697542734027],[-73.3981774797492,44.6986119050723],[-73.398910208577,44.6999905112088],[-73.4014511023413,44.7022586334137],[-73.4020981004499,44.7037755524492],[-73.4024793607279,44.7041409715019],[-73.4037855964909,44.705068448675],[-73.4061847181371,44.707802596802],[-73.4078275661118,44.7090047867143],[-73.4083163035253,44.7097407736187],[-73.4086669519133,44.7106503783146],[-73.4086583927653,44.7116540041535],[-73.4087919560783,44.7123085229594],[-73.4089016655274,44.7124225782157],[-73.4095763398316,44.7127380448881],[-73.4105080194437,44.7135522028856],[-73.4107586503063,44.7154371465439],[-73.4105979183458,44.7157454868599],[-73.4106491932839,44.7158902353618],[-73.4124638907691,44.7182650306566],[-73.413305893363,44.7187268339568],[-73.4140916686066,44.7193408876309],[-73.4148002327533,44.7202689414618],[-73.4150014787331,44.7209333935784],[-73.4151746748182,44.7210933337958],[-73.4155645113122,44.721238273172],[-73.4164980908611,44.7212962239277],[-73.4176680063815,44.7216590130663],[-73.4181420994592,44.7221877031166],[-73.4184652396366,44.722637783237],[-73.418660102188,44.7228430289139],[-73.418922772272,44.7229636918285],[-73.4215947598807,44.7229421138735],[-73.4289062584709,44.7212334279294],[-73.4415720916503,44.7166266964459],[-73.4421219396559,44.7161030642506],[-73.4428372950661,44.7155276724135],[-73.4430699542331,44.715679378189],[-73.4441044810638,44.7152658643835],[-73.4453549512106,44.7143016442227],[-73.4467328940929,44.7126999877602],[-73.4471814390839,44.7113287487761],[-73.4479192128504,44.710825646277],[-73.4474052471505,44.7105125906548],[-73.4479829348451,44.7099172911556],[-73.4467967202922,44.7089559448022],[-73.4467637817656,44.7081813081233],[-73.4461558738466,44.7076059058353],[-73.4456098571556,44.7076074827775],[-73.4433985444893,44.7086306397872],[-73.4430457787722,44.7084277856865],[-73.4430462036753,44.7080587016353],[-73.4438466933233,44.7075114692646],[-73.4435271275425,44.7070119963415],[-73.4410266777289,44.707283987189],[-73.4410256662259,44.7069688962008],[-73.4429173331613,44.7065085683784],[-73.4438471442776,44.7059630975381],[-73.4444878478911,44.7050175871636],[-73.4441987628461,44.7039693966872],[-73.4446167390663,44.7033269282096],[-73.4448730275186,44.7017100200401],[-73.4462179555175,44.7002699571931],[-73.4462191359038,44.6995768035766],[-73.4449601901523,44.6992491024468],[-73.4445776533683,44.6979205718927],[-73.4416397024518,44.6977545142056],[-73.440820260148,44.6981304318687],[-73.4403589438085,44.6980656223078],[-73.44088295447,44.6974696245753],[-73.440858200494,44.696510551026],[-73.4417112074501,44.6964411662762],[-73.442297306969,44.6958820176108],[-73.4422124709719,44.6956333008045],[-73.4415143811815,44.6956327842012],[-73.4409896716308,44.6958146736104],[-73.4409159055729,44.6953005409243],[-73.442444779796,44.6952358686823],[-73.4427196400184,44.6950460667679],[-73.4436112062598,44.6933297880115],[-73.4440428422622,44.6924984602247],[-73.4441955405892,44.6914202727077],[-73.4436838341522,44.6911477392209],[-73.4441479110145,44.6903708659808],[-73.4443477699955,44.6852018091164],[-73.4437143445325,44.6842929612394],[-73.4435676873758,44.6832016935396],[-73.442717835303,44.6817767648303],[-73.4419589403476,44.6816088807258],[-73.4414189881831,44.6811874147043],[-73.4412435975138,44.6753155627114],[-73.4420847413183,44.6724688207954],[-73.4421084262991,44.6712313347249],[-73.4419848621334,44.6708695595856],[-73.4413425226878,44.6707122627592],[-73.4413541154466,44.6703973420131],[-73.4420234160288,44.6704604832002],[-73.4420874686035,44.6698942147636],[-73.4412416867972,44.6698556733304],[-73.4412538823255,44.6695182556572],[-73.4420760698809,44.6695249668612],[-73.4420814319248,44.6664102599185],[-73.4401584604984,44.6615588143663],[-73.4383005648278,44.6581125761681],[-73.4382373997885,44.6569414175718],[-73.4387817761558,44.6542211677766],[-73.4366991759,44.6534004932259],[-73.4366359794198,44.651410125418],[-73.4358346076262,44.6497877494093],[-73.4356749060333,44.6470488690121],[-73.4347455629392,44.6466130343453],[-73.4335108896666,44.6455743541378],[-73.4332985297301,44.6453823948174],[-73.4337211098162,44.64338517823],[-73.4359316777791,44.6410118467091],[-73.4374682945816,44.6380801165424],[-73.4389093827402,44.6361193088333],[-73.4410225158342,44.6352479296934],[-73.4421435845627,44.6351101806239],[-73.4439037956327,44.6344679961426],[-73.4453759062112,44.6332817261978],[-73.445217001424,44.6326223955852],[-73.4442232814635,44.6313575487584],[-73.4438394133763,44.6292097714524],[-73.4464670125318,44.6269094282098],[-73.4467587125725,44.6264002616639],[-73.4467498003866,44.624784224826],[-73.4462035034213,44.6216349874022],[-73.4455048144545,44.6207747643501],[-73.4442239237589,44.6201226665277],[-73.4440644629145,44.6194858317569],[-73.4432402712177,44.6186959032965],[-73.4405295284911,44.6181368024335],[-73.4395225817363,44.6172903386777],[-73.4388535066312,44.617065142549],[-73.4371854420481,44.6139365339441],[-73.4365395713252,44.609588570122],[-73.4382883297736,44.6079065428975],[-73.4394110406224,44.6072467078949],[-73.4400535121203,44.6061661976859],[-73.4398415375611,44.6057581979023],[-73.439164960625,44.605523898283],[-73.4378844615949,44.6057539627325],[-73.4377966863102,44.6055907204333],[-73.4382941158223,44.6053679604466],[-73.4386986622291,44.6039961302348],[-73.4376958028088,44.6027130900345],[-73.4375625206684,44.5982821086139],[-73.4371911445536,44.59624249566],[-73.4381253619063,44.5949679333318],[-73.4392310317142,44.592610919442],[-73.4384663713713,44.5875546428158],[-73.438735263187,44.5827735535074],[-73.4386992182862,44.5817963024831],[-73.4387906613922,44.5812033948041],[-73.4384407648942,44.5808340161265],[-73.4383518559355,44.5801261139088],[-73.4373068430706,44.5793151134804],[-73.4373590657313,44.5782175369592],[-73.4383226193663,44.5780416618559],[-73.4353660805099,44.5753590077371],[-73.4333292054004,44.5742012941822],[-73.4331595361011,44.5730736677537],[-73.4327950105386,44.5726365525969],[-73.431189385156,44.5727180431546],[-73.4247818558463,44.5716126046392],[-73.4240607386419,44.5716161633249],[-73.423561603229,44.5719108570711],[-73.4230390379568,44.571674083928],[-73.4218587262337,44.5701453823943],[-73.4214148210411,44.5680776989373],[-73.4220569475859,44.5673258659269],[-73.423397790047,44.5670472983718],[-73.4231917668265,44.5665448216478],[-73.4228085913404,44.5656077831507],[-73.4257219715372,44.5622045439109],[-73.4264373008963,44.5606884893552],[-73.4259194607625,44.5608343964519],[-73.4256295097416,44.5602047332816],[-73.4263374504575,44.5595167997297],[-73.4253513571937,44.559692262967],[-73.4249803511847,44.5603758337161],[-73.4242194449014,44.5595551232317],[-73.4241393286528,44.5588203206969],[-73.4236587389589,44.5587236664215],[-73.4227196257879,44.5576844282343],[-73.4231769338445,44.5569525426833],[-73.423556375034,44.5553733524738],[-73.4255763779858,44.553506198691],[-73.4271281403841,44.5508763582653],[-73.4244348887543,44.5474858392004],[-73.4212024009174,44.5446999692961],[-73.4184810697485,44.5421371421131],[-73.4179602948187,44.5416122906424],[-73.4176762349495,44.541149231549],[-73.4175895717791,44.541008493319],[-73.4169562262661,44.5402255078514],[-73.4157051272986,44.5392178944225],[-73.4149332840267,44.5384959939147],[-73.4141272239256,44.5377601097211],[-73.4130648349481,44.536759587429],[-73.4121829642236,44.5360361395065],[-73.4112241581849,44.5353656293613],[-73.4102984667424,44.5348666186275],[-73.4097071237572,44.5345117933474],[-73.4090060362887,44.5340564093626],[-73.4080894546615,44.5332244166384],[-73.40758502907,44.5324521768752],[-73.406951099652,44.5312370081625],[-73.4063777400405,44.5300226805481],[-73.4060615330605,44.5293880961801],[-73.4058658045331,44.5287776988563],[-73.4057663170137,44.5279840928483],[-73.4056798972868,44.5278073389954],[-73.4051121674171,44.5274843272092],[-73.4044715680082,44.5271512928973],[-73.4042192330415,44.5270307359052],[-73.4036494774709,44.5270992967412],[-73.4030722802564,44.5268931746577],[-73.4030835882492,44.5264792189879],[-73.4035592596669,44.5264858673196],[-73.4035692121019,44.5261214068448],[-73.4024700937074,44.5237158841329],[-73.4016644612044,44.5230924463249],[-73.4007040714358,44.5223768115396],[-73.4002020820753,44.5222122386081],[-73.3977169054182,44.5217497899802],[-73.3948107252183,44.5216414711037],[-73.3928854783593,44.5214973686409],[-73.3914052011965,44.5212739777032],[-73.3899894724784,44.5208489214018],[-73.3890251382074,44.5204257124018],[-73.3880220919376,44.5201234830675],[-73.3868934387331,44.5192433118397],[-73.3861702428271,44.519003533655],[-73.3852669805207,44.5175098600007],[-73.3853219044155,44.5149224204455],[-73.3848631401898,44.5131964578258],[-73.3852775321321,44.5123425780412],[-73.3852040885694,44.5110721876119],[-73.3856536881825,44.5086568703706],[-73.386285832648,44.5076890306956],[-73.3888251884965,44.5054742499494],[-73.3922550155401,44.5038075973794],[-73.3934492960659,44.5028341249455],[-73.3977197270265,44.5010936036055],[-73.3982100355934,44.500672860769],[-73.4000644682586,44.4974579155208],[-73.4010989726314,44.4967116791244],[-73.403971536975,44.495730054225],[-73.4047197213172,44.4953623948566],[-73.4065145848993,44.4938254917651],[-73.4079088816114,44.4933137783157],[-73.4083066232798,44.4927071426548],[-73.4105198745105,44.4909824472362],[-73.4137907392747,44.4897315334851],[-73.416100996878,44.4864731253797],[-73.417013535188,44.4858916006221],[-73.4169972361555,44.4839062915828],[-73.4172999504399,44.4832037782465],[-73.4163036945353,44.4820286295831],[-73.4161601500411,44.4817565598049],[-73.41565321276,44.4815244640159],[-73.4149919098788,44.4811011687985],[-73.414408537645,44.479076479354],[-73.411812534933,44.4744445623892],[-73.4099733906956,44.4725149170507],[-73.4067808024304,44.471093030265],[-73.403685090282,44.4686010909485],[-73.4028552490804,44.4683734284061],[-73.3992795257532,44.4682783683628],[-73.3987686538511,44.4679381105664],[-73.398035012335,44.4659742475751],[-73.3972381285246,44.4649457692552],[-73.3972710643562,44.4635688236012],[-73.3966019488269,44.4625241276972],[-73.3965703694514,44.4621275667488],[-73.3973371740729,44.4611795427721],[-73.3973369656637,44.4609859823994],[-73.3965387307871,44.4606416825637],[-73.3965081368635,44.4602091249668],[-73.3974661002824,44.4587911419547],[-73.3967962157953,44.4581785638727],[-73.3969242948936,44.4571720617244],[-73.3977227821968,44.4566431022868],[-73.3977556865873,44.456301462203],[-73.3969256127221,44.4552275019936],[-73.3973424301156,44.4539459666163],[-73.3971285098054,44.4530066864803],[-73.3980588266732,44.4511291716714],[-73.4002564588961,44.4448895907932],[-73.3998392651085,44.4427636134645],[-73.4007341919473,44.4409936091115],[-73.4007976812783,44.4390679192503],[-73.4015967075707,44.4379897731838],[-73.4018206162486,44.4368045482663],[-73.4028767322904,44.4356849747365],[-73.4067599740922,44.4328268133247],[-73.4088707464136,44.4295379180546],[-73.5322087252542,44.3956522874024],[-73.5252951120628,44.3140862630833],[-73.9366551162605,44.0935392231407],[-73.9193710819347,44.0115535350752],[-74.1371499077921,43.8547202620538],[-74.251224531288,43.9916611251056],[-74.3514719266046,43.9219851661836],[-74.2892494051877,43.8621978914698],[-74.3652991538856,43.8023505986944],[-74.5796211726981,43.9841997517369],[-74.7351774771386,43.9170051859582],[-74.6867821821044,43.8522275103071],[-74.8077704187916,43.7923702157676],[-74.852708906781,44.0513183458185],[-74.6522141143511,44.0836076087997],[-74.2857925981429,44.10346916985],[-73.9470255364966,44.1431722787205],[-73.8951734353159,44.430221755008],[-73.6289993144243,44.4499665623267],[-73.6566537689862,44.5978399180318],[-73.78109881182,44.5929168538195],[-73.7914692320561,44.6568841596043],[-73.9712231840137,44.6519660997231],[-73.991964024486,44.8042319944729],[-74.2685085647154,44.7870607571969],[-74.2823357919964,44.9022553329313],[-74.8181408390278,44.8924605069748],[-74.9139625412651,44.9680080535919],[-74.9080761507028,44.9692355141347],[-74.9076223775168,44.9689786094207],[-74.9076229739982,44.968600538077],[-74.9070365430009,44.9682805147199],[-74.9050123772561,44.9671896881161],[-74.9041799255503,44.9668379443773],[-74.9033277028234,44.9669452663919],[-74.9029116400147,44.9666748708933],[-74.9018323609132,44.9667684908933],[-74.9007337797112,44.9670241152985],[-74.9004485798799,44.9676404918852],[-74.9006548797815,44.9684418199753],[-74.9004294313913,44.9691077559391],[-74.8998168549277,44.9694943084384],[-74.8996877670214,44.9698902738369],[-74.89865717571,44.9699794048716],[-74.8983017958954,44.9705912139184],[-74.892534793231,44.9716932785327],[-74.8923423085201,44.9716210880262],[-74.8928575112002,44.9712074816305],[-74.8927611884455,44.9710003538313],[-74.8903778367242,44.9709081287299],[-74.8877042051986,44.9700864356527],[-74.8822308132916,44.9670474629691],[-74.88081434526,44.9667039592093],[-74.8789778986635,44.9667020696482],[-74.8726638570253,44.9682346478683],[-74.8725680292424,44.9689186758804],[-74.8714095034615,44.9698535860913],[-74.8703782168541,44.9698794493433],[-74.8697674388177,44.9704278759192],[-74.869122913771,44.9704721623553],[-74.8665793394339,44.9728547430554],[-74.8629738657012,44.9750019774827],[-74.8615568694602,44.9755044006226],[-74.8601722781465,44.9757097868432],[-74.8573367522404,44.9756883440378],[-74.8549210979997,44.9764054996274],[-74.8532474737433,44.9780237179173],[-74.8529457727585,44.978977523147],[-74.8576921823606,44.9789429127432],[-74.8570504025654,44.9792751919644],[-74.8537437983277,44.9794061116664],[-74.8537030920689,44.979982172723],[-74.854071172265,44.9805182390701],[-74.8558864060445,44.98141617373],[-74.8562045048765,44.9821367066494],[-74.8580713917848,44.9830211672341],[-74.857934361873,44.9813601781238],[-74.8584679216259,44.9810367648593],[-74.8590989126545,44.9812310668208],[-74.8594386528,44.9815465382788],[-74.8592002525,44.982261889132],[-74.8586999079548,44.9822927899671],[-74.8588090074477,44.9827430092793],[-74.859028014019,44.9831528535602],[-74.8589230081488,44.9832967543222],[-74.8628020215806,44.9850972306382],[-74.8635326357742,44.9842609263659],[-74.8642362322373,44.9842842517704],[-74.8651474778716,44.9828135248618],[-74.866091022432,44.982265505837],[-74.8658781747103,44.9819141938623],[-74.8663757659192,44.9813566566735],[-74.8672593659006,44.9808310641248],[-74.8682232231662,44.9812597391843],[-74.8682488476097,44.9808006797319],[-74.86855127084,44.9806389892237],[-74.8692860370468,44.9808828614141],[-74.8704662930744,44.9793898896925],[-74.870885065202,44.9791293029956],[-74.871402478636,44.979071363261],[-74.8718121499314,44.9786217270466],[-74.8722587330019,44.9788652634093],[-74.8730564693135,44.9809365318635],[-74.8733693381539,44.983421349079],[-74.8726285828791,44.9847933069343],[-74.8722195574723,44.9863681618256],[-74.8714481085609,44.9860027452227],[-74.8709976375819,44.9864118272812],[-74.8707808157133,44.9881714241963],[-74.8711879852007,44.9886984748775],[-74.8706768285326,44.9889319550408],[-74.8695615494461,44.9882510851039],[-74.8689549368977,44.9884439426457],[-74.8682516728112,44.9884251482239],[-74.8675763840593,44.9890004947683],[-74.8669679137949,44.990165526085],[-74.865361788949,44.9913744171164],[-74.8648971614194,44.9915269093508],[-74.8641401942486,44.9914000070127],[-74.8634105098113,44.9919752658839],[-74.8633020085963,44.9924207238983],[-74.863564429847,44.9927765989017],[-74.8629787642144,44.9933025139213],[-74.8603713277455,44.9936864975431],[-74.8596663523684,44.9940187154527],[-74.8592798728786,44.9939777423556],[-74.8595289864867,44.9936044707997],[-74.8592673692282,44.993415119568],[-74.8583218537641,44.9938550598452],[-74.8577579821585,44.9937193475946],[-74.8578303639126,44.993147826434],[-74.8561007198168,44.9927406271532],[-74.8546082480239,44.9927837839735],[-74.8544163885405,44.9924549812041],[-74.8537823144938,44.9924946956138],[-74.8450099486391,44.9949273276625],[-74.8444524074614,44.9950976173961],[-74.8422548794431,44.9954322258501],[-74.8411861447664,44.9957773400485],[-74.8403411606641,44.9962172698144],[-74.8383749605096,44.9966106323183],[-74.8366057267609,44.9963336087888],[-74.8338855508254,44.994596919172],[-74.8336157175753,44.9930302288509],[-74.8324023217986,44.9914531784354],[-74.8299059656078,44.9899012488916],[-74.8282903509592,44.9884540895471],[-74.8282532747924,44.9881254703285],[-74.8282670881866,44.987616890765],[-74.8269087043229,44.9876688852327],[-74.824659432446,44.9872244239943],[-74.8228087834848,44.9880092697133],[-74.8220341446557,44.9885121843506],[-74.8206007038551,44.9894821701765],[-74.8194175516591,44.9907765911939],[-74.818720987208,44.9922698000333],[-74.8176494030752,44.9931097877135],[-74.815390354833,44.9961443154885],[-74.8147401182977,44.9962558013292],[-74.8140414967046,44.9967362793165],[-74.8075739132216,44.9973513601938],[-74.8070771170217,44.9976926025392],[-74.8060422263733,44.9974523305797],[-74.8053144984667,44.9976041415546],[-74.8045585203411,44.9973193145256],[-74.8025848722545,44.9976040297539],[-74.801557870611,44.9973817332734],[-74.8003587230129,44.9975192027968],[-74.7998639749719,44.997828912024],[-74.7997047261299,44.998238218397],[-74.7998160067324,44.9990710753303],[-74.7987497684739,45.0001944517987],[-74.7978505926037,44.9999183342482],[-74.7973349524441,45.000187486801],[-74.7963380434643,45.0000777198494],[-74.7950841309733,44.9989907955158],[-74.7939522007147,44.9994973901193],[-74.7931384447466,44.9985327495784],[-74.7922487649673,44.9984996520088],[-74.7913965314606,44.9988536922323],[-74.7908069195289,44.9991721932316],[-74.7902944585071,44.9995358400272],[-74.7890523489806,45.0003437445589],[-74.787525393559,45.0009755755278],[-74.7865502309955,45.0011043082483],[-74.7856295692204,45.0011836240564],[-74.7844944014335,45.000929470587],[-74.7840888965244,45.0002355836979],[-74.7833717049577,44.9998786757996],[-74.7820882558602,44.9998447621319],[-74.7787015138143,45.0010940816467],[-74.7779232475881,45.000633504745],[-74.7753527085211,44.9999534179205],[-74.7747186021351,44.9999656888161],[-74.7741454994417,45.0000950977568],[-74.7723051272073,45.0013427298301],[-74.7716740472455,45.0021066308407],[-74.7704476294904,45.0027928355085],[-74.7687195143272,45.0033835066833],[-74.7658333854228,45.0036792595129],[-74.764620388498,45.003460758221],[-74.7640367458714,45.0028429532452],[-74.7627489588093,44.9975517889357],[-74.7631256331878,44.9966973873077],[-74.765109913734,44.9959902887081],[-74.7662205952429,44.995200378099],[-74.7669773045972,44.9941846982196],[-74.7665342456176,44.9910331650998],[-74.7666222239216,44.9908488052331],[-74.7676628314484,44.9909769254004],[-74.77008789105,44.9905226768174],[-74.7733536417053,44.9900115156362],[-74.775725429414,44.9894715266358],[-74.7764592550847,44.9890723654279],[-74.7756994177966,44.9886253044974],[-74.7741307149688,44.9890093315275],[-74.7672400779875,44.9904224629477],[-74.7666696208326,44.9900207321582],[-74.7750663094389,44.9881154720377],[-74.7747381440858,44.9871876456826],[-74.7753232599495,44.9869952439066],[-74.7761745322588,44.9866638264908],[-74.7761399381372,44.9864882236409],[-74.7748894967364,44.9866073220093],[-74.7735935089541,44.9871133964595],[-74.771546309507,44.9868078105656],[-74.772856482586,44.9859282110939],[-74.7742485074587,44.9837884995813],[-74.7754565151404,44.9832552417382],[-74.776263078298,44.9826851882034],[-74.7756070107983,44.9822833358332],[-74.7759800793391,44.9817664536785],[-74.7768775780547,44.9816556652879],[-74.7772283495118,44.9808551782066],[-74.7791435118835,44.9799946747422],[-74.7833665540179,44.978670388523],[-74.7878451048669,44.9777605005975],[-74.7888762495405,44.9773933114919],[-74.7902942042839,44.9763876849608],[-74.7905526621675,44.9750828876175],[-74.7888478025904,44.9700747678392],[-74.788782955905,44.9693905095652],[-74.7894922405005,44.9685636334183],[-74.7916509487221,44.9675863412157],[-74.7968047092712,44.9670824040575],[-74.8021529442996,44.964634171795],[-74.8072422758799,44.9631484558691],[-74.8092388310062,44.9628727071105],[-74.8137802971627,44.9608636915592],[-74.816260126149,44.9603545491682],[-74.8179774534439,44.9594930865307],[-74.8176370063243,44.9591414793042],[-74.8173657717023,44.9585829388358],[-74.8112357876794,44.9605445066742],[-74.8040531066026,44.9624409573907],[-74.7958390131543,44.9656134045275],[-74.7895900194242,44.9667634425356],[-74.7874637035535,44.9677677607883],[-74.7870119129493,44.9684060604846],[-74.7866890332834,44.9697557422433],[-74.7874943531726,44.9710354863471],[-74.7886841996142,44.9742333175648],[-74.7877497289365,44.9759059484543],[-74.786717951849,44.9766602047792],[-74.7851068063189,44.9771613259527],[-74.7825297832122,44.9773185431245],[-74.779114519656,44.9779602041771],[-74.7763746418698,44.979404234597],[-74.7748271482658,44.9806074787652],[-74.7706985855431,44.9854603587067],[-74.7688620877426,44.9866899547277],[-74.7666059006345,44.9869914858172],[-74.7638354154499,44.9866437906411],[-74.7622561295697,44.9868025873443],[-74.7618059963573,44.9863695723157],[-74.7599372166987,44.9856095519801],[-74.7589064178765,44.9858144489916],[-74.7580674174523,44.9865958564227],[-74.7571006244923,44.9868458807889],[-74.7545557520897,44.9862283782656],[-74.7506567143119,44.9863370554257],[-74.7482887902573,44.9867459260677],[-74.7474688700497,44.9862579871877],[-74.7463273799199,44.9868675443357],[-74.7457874061958,44.986447738831],[-74.7439952294748,44.9861331095078],[-74.7427057769361,44.9864092248652],[-74.740227187625,44.9875557638337],[-74.737706253528,44.9880630186263],[-74.7349820163092,44.9882951830588],[-74.7340791510582,44.9879329795762],[-74.731769155763,44.9879905094571],[-74.7287979402315,44.9887260393031],[-74.7263963751678,44.9888597551051],[-74.7256459719868,44.9897761135858],[-74.7266788737651,44.9891349964627],[-74.7278455894864,44.9891063172374],[-74.7256992887955,44.9907259343266],[-74.7247687356708,44.9914258040055],[-74.7234573732224,44.9929934040772],[-74.7181945176719,44.9964595435248],[-74.7160031017908,44.9965980640459],[-74.7134576679411,44.9958624687873],[-74.7119427113167,44.9956605635261],[-74.7081728171408,44.9957768801264],[-74.7058204312457,44.9954556978995],[-74.7052407555793,44.9953191553474],[-74.7047570442399,44.9945617401064],[-74.7044997370981,44.9943360210722],[-74.7039835983735,44.994334665411],[-74.7035000990364,44.9936942682242],[-74.7025979964551,44.993511855147],[-74.7010190968505,44.9935796899588],[-74.7000528931854,44.9930730227073],[-74.6987960997973,44.9927996171751],[-74.6971853594074,44.9928943196149],[-74.6955741554868,44.9936731313593],[-74.6943822204622,44.9938769449942],[-74.693801479394,44.9933532669795],[-74.6924483407933,44.9907930843985],[-74.6901746886395,44.9890090125935],[-74.6869400430493,44.9894636677078],[-74.6839760176334,44.9915888128284],[-74.6836221299204,44.992505998022],[-74.6822999724173,44.9941766029825],[-74.679947423927,44.9957722573999],[-74.6785304726018,44.9959302569844],[-74.6751790846522,44.9946514102486],[-74.6705714656599,44.9940169271645],[-74.6696054317764,44.9940771139927],[-74.6683811466217,44.9946496308738],[-74.6657701878586,44.9967123167501],[-74.664964069367,44.9970789952638],[-74.6643198156115,44.9979682480429],[-74.662449719921,44.9985837844889],[-74.6612678217731,44.9994714087376],[-74.6447631082956,44.9994836638561],[-74.6246623174633,44.9994006233555],[-74.6050561614842,44.999347280812],[-74.60272778576,44.9992851093973],[-74.5954567823244,44.9992773191476],[-74.5716449243909,44.9990275795932],[-74.5452356156611,44.9986859551734],[-74.5079371994502,44.9980213841512],[-74.4996395698669,44.9978275011806],[-74.454646477783,44.9970193089795],[-74.4419841552197,44.9965353211056],[-74.4002809281665,44.9948935120708],[-74.3746517254126,44.993829382742],[-74.360111668784,44.9932000204447],[-74.3428529705425,44.9923102000493],[-74.3364391682972,44.9919941836593],[-74.3083856389669,44.9921208216707],[-74.2676656907557,44.9922142959439],[-74.2496476475029,44.9921786872293],[-74.2429637595808,44.9921661122673],[-74.2280494127026,44.9921608584049],[-74.2050888980453,44.9917919090033],[-74.1931490123116,44.9919647816296],[-74.1748591190909,44.9917846685364],[-74.150212596901,44.9914059991636],[-74.1447727310187,44.9915724589831],[-74.1246272669673,44.9921985737567],[-74.0857934215266,44.9936453609427],[-74.0274248801894,44.995688536247],[-73.9996030182861,44.9967356402641],[-73.9622258054517,44.9981024987402],[-73.916272761977,44.9998214233681],[-73.8745760414214,45.0012263895925],[-73.8413488673332,45.0021354807759],[-73.8152198617182,45.0025058295728],[-73.8144496255323,45.0025158196365],[-73.81440909714,45.0025198987426],[-73.8027942048081,45.0026819753305],[-73.7929648416642,45.0028212957368],[-73.787535791498,45.0028941666112],[-73.7789276053378,45.0029597519703],[-73.7720779369234,45.0030076496367],[-73.7718986565488,45.003010217635],[-73.7496189543841,45.0031639359079],[-73.7431550926213,45.0031875280132],[-73.7194846043607,45.0031677202492],[-73.7156448104759,45.0031966318967],[-73.7030419393165,45.0031847796347],[-73.6907347082087,45.0030759032183],[-73.6795432089382,45.0029380926005],[-73.6685035177643,45.0028909735977],[-73.6566072766787,45.0030172572398],[-73.6535028275159,45.0030032129638],[-73.645716369872,45.0031857298483],[-73.6313797717738,45.0036134984017],[-73.6245744370152,45.0038513328143],[-73.6031075071634,45.0043920209183],[-73.5875238192787,45.0049070470236],[-73.5601137684579,45.0057260854259],[-73.5195650463263,45.0070486611817],[-73.4995963761127,45.0075937884522],[-73.4577532643018,45.0087111675169],[-73.4189750578148,45.0095585830054],[-73.3745885360585,45.0102816854787],[-73.3694862148392,45.0103395282522],[-73.3526793907451,45.0105395876637],[-73.3521187611594,45.0096493226817],[-73.3528662924265,45.0077517039942]]],[[[-74.8313391458969,45.0120161119661],[-74.8308526021693,45.0119793984651],[-74.8305834381641,45.0122085504037],[-74.8300485902271,45.0124193098844],[-74.8295854619857,45.0122385974375],[-74.8288373638818,45.0103426363835],[-74.8280621636056,45.0096033511059],[-74.8170370961062,45.0058778033432],[-74.815747573499,45.005578707674],[-74.812911643351,45.0054661519708],[-74.8043692471073,45.0060191731899],[-74.8032092633607,45.0059001888363],[-74.8013716166149,45.0051679179528],[-74.7992126874078,45.003066801221],[-74.7994378088112,45.0026351082818],[-74.800372989158,45.0021326256366],[-74.8010818695116,45.0012336720595],[-74.8018231709622,45.0008298637415],[-74.8024683329144,45.0007139416923],[-74.806174218533,45.0010082467226],[-74.8091720745025,45.0007611660226],[-74.8133026970622,45.0001737683255],[-74.816021891139,44.999259928923],[-74.8179139236887,44.9983267273149],[-74.8193972874629,44.9972038224161],[-74.8235677440172,44.9924663020435],[-74.8243437096579,44.9919318727606],[-74.8244843409156,44.9917115421198],[-74.8260243686213,44.9914122994343],[-74.8266655878677,44.9915032755969],[-74.8273977211125,44.9919499525974],[-74.8294027536401,44.9943338783144],[-74.8319592205982,44.9962729783876],[-74.8325443661062,44.9967149085345],[-74.83321193294,44.997724063587],[-74.8327510145542,44.9985965708415],[-74.8332429463768,44.9987863140333],[-74.8334590783392,44.999187201431],[-74.8342451644,44.9996789189898],[-74.8344244214183,44.9993956191593],[-74.8341363290117,44.9982339839912],[-74.8361288884316,44.9987769115315],[-74.8370988668175,44.9995884303073],[-74.8376114212642,44.9992245761307],[-74.8386143408715,44.9996130453012],[-74.8388650292263,44.9990192779598],[-74.8397889213432,44.9997361912551],[-74.8412603779482,44.9993331282854],[-74.8421995755609,44.9986772780758],[-74.8439196319377,44.997972959524],[-74.8445017986323,44.9975056482077],[-74.8444106600552,44.9971904653108],[-74.8457753716517,44.9964856444275],[-74.8468573465973,44.9965230786966],[-74.8490325963966,44.9960713299426],[-74.8529833079644,44.9945505867557],[-74.8551864136222,44.9946388599692],[-74.8555717199122,44.9949904052399],[-74.856066119407,44.9950045188177],[-74.856961818797,44.995320681234],[-74.8578125970329,44.9953667297034],[-74.8583586721143,44.9958129795603],[-74.8589995428144,44.9959262771433],[-74.8591920796276,44.996156053592],[-74.8620370351492,44.9978067647642],[-74.8619501069758,44.998175732613],[-74.862432156432,44.9983923426763],[-74.8610326755424,44.9992773547195],[-74.8598707325702,44.999649536783],[-74.8599318808916,45.0002752304657],[-74.8601790334774,45.0014097474115],[-74.8597930148234,45.0018233652456],[-74.859819030034,45.0023950075853],[-74.8593174026946,45.0028940014662],[-74.8585284105839,45.0023304385013],[-74.8580100727835,45.0013531189959],[-74.8583096546425,45.0011059349765],[-74.858908799496,45.0014532280012],[-74.8593525501783,45.0012782294311],[-74.8592951945441,45.0008820831503],[-74.8589921901038,45.0004001237032],[-74.8578769999505,45.0006193144243],[-74.8576569064177,45.0001284503917],[-74.8567018957611,45.0003568265224],[-74.8568742034124,45.0017523096395],[-74.8562508875895,45.0023861665383],[-74.8555220017545,45.0020702050771],[-74.8544914293078,45.0007501682313],[-74.852340906535,45.0009455041649],[-74.8518308008959,45.002439146742],[-74.8513431818849,45.0025420467214],[-74.8509012179517,45.0021499063733],[-74.8498838579261,45.0020765867491],[-74.8483731404515,45.0026462422741],[-74.8468233291942,45.0048316381046],[-74.8460110222086,45.0048845779377],[-74.8454990049545,45.0052079627204],[-74.8438521280357,45.0081943420394],[-74.8413267562612,45.0090415917906],[-74.8394104539274,45.0101956852242],[-74.8383885529181,45.0104328159392],[-74.8365794672085,45.0117895497248],[-74.8354087773403,45.0123190003086],[-74.8345189529323,45.0123942520352],[-74.8335102104452,45.0130094302719],[-74.8326226039776,45.0127156003218],[-74.8321494074185,45.0123053399891],[-74.8313391458969,45.0120161119661]]]]},"properties":{"OBJECTID":9,"STATE":"NY","Zone":"D","Title":"North"}},{"type":"Feature","id":10,"geometry":{"type":"Polygon","coordinates":[[[-78.0482687594632,41.9996329359911],[-78.0482687594632,42.0984746237396],[-77.9600126847184,42.1028401698069],[-77.9286327468916,42.5031840713743],[-77.8384154253028,42.5046299632065],[-77.824686701886,42.6519352591032],[-77.8501829018756,42.6519352591032],[-77.8482216559298,42.6678003350855],[-77.3453581510657,42.6608778906975],[-77.3041719826119,42.842336563177],[-77.1394273087968,42.8552775660861],[-77.1315823241155,43.0505004019862],[-77.2904432591951,43.0447673934317],[-77.2904432591951,43.0762923085238],[-76.8217054377394,43.0934808851495],[-76.8138604530581,42.9630138069807],[-76.7314881161505,42.9630138069807],[-76.649115779243,43.0891841929719],[-76.4980998279464,43.0920486881348],[-76.4765261207466,43.2236706107648],[-76.4824098585838,43.2565317881855],[-76.6098908567349,43.2579601328393],[-76.6147752547512,43.4190058075686],[-76.6134547492499,43.4194003888284],[-76.6112395405901,43.4207192719004],[-76.6099186820509,43.4221965944705],[-76.6073141210891,43.4233543075109],[-76.6017118317186,43.42361308026],[-76.6008952469557,43.423845132689],[-76.5991743785019,43.4247471568604],[-76.5974795710728,43.4267878374679],[-76.59573890914,43.4300402134951],[-76.5947893674268,43.4306972822925],[-76.5921747731817,43.4311884713123],[-76.5877622134718,43.4328391489593],[-76.586065945382,43.4341233173622],[-76.5845496583527,43.4359587290859],[-76.5807746563562,43.4386537956999],[-76.5750784939368,43.4415283168437],[-76.5713311339999,43.4426514387644],[-76.5693116179349,43.4434220562],[-76.5686475132083,43.4439354191555],[-76.5663818542639,43.4473656339409],[-76.5650138206975,43.4490997047347],[-76.5633005888219,43.4485333824623],[-76.5625457515567,43.4486922815346],[-76.5602348040472,43.4493316607512],[-76.5571887561577,43.4505707978797],[-76.5527060856348,43.4518834175527],[-76.550368331499,43.451906166589],[-76.5489960048838,43.4527531806048],[-76.5469332286497,43.4552438108573],[-76.5464642424944,43.4553627148894],[-76.5447419295496,43.4558047198847],[-76.5417805002648,43.4573889675664],[-76.5375344855137,43.4590489655971],[-76.5352195961968,43.4589180246497],[-76.5339872908833,43.4592677399976],[-76.5318099794505,43.4603774754035],[-76.5274534970722,43.4604628289911],[-76.5264379534401,43.4609401259984],[-76.5265990429301,43.4615997888111],[-76.5225958760379,43.4632514845823],[-76.5227767374474,43.4635462151647],[-76.5219371360502,43.4637104786215],[-76.5216044054589,43.4631521427466],[-76.5213762315801,43.4626959631393],[-76.5192493866016,43.462719770244],[-76.5187523837892,43.4628659457786],[-76.5199803223921,43.4649701236158],[-76.5192600469091,43.4651642939374],[-76.5180354132081,43.4631140906374],[-76.5170508210291,43.4633973008779],[-76.5166582931826,43.4628712603568],[-76.5159305365299,43.4628584104348],[-76.5158520848595,43.4631971126789],[-76.5168417219771,43.4655701131181],[-76.516254171679,43.4657580002959],[-76.5147915518014,43.4633327407908],[-76.5143747577641,43.4632572288021],[-76.5138854589035,43.4637589513662],[-76.5134629264282,43.4638095724297],[-76.5116880386831,43.4663452749286],[-76.5101658164847,43.4666535482422],[-76.5072570158991,43.4690600991996],[-76.4983197256465,43.4708524797617],[-76.495688308651,43.4722330965466],[-76.4913583813708,43.4750630138598],[-76.4872019259586,43.4752477503189],[-76.4863159526281,43.4759571110663],[-76.4809492527291,43.4814068552311],[-76.4808144147066,43.4816292079966],[-76.4799444295916,43.4830631557167],[-76.4778510962648,43.4856924866972],[-76.4770155893888,43.4867387817565],[-76.4764757171744,43.4874210798766],[-76.4760043082627,43.4889308843462],[-76.4756315316743,43.4896200243001],[-76.4728076362562,43.4925963531666],[-76.4723993878922,43.4934345096051],[-76.4720602693808,43.4941277057005],[-76.471754106464,43.494284722159],[-76.4714053220802,43.4944693001398],[-76.4710843046219,43.494635510162],[-76.4702770174221,43.4955643361381],[-76.4695612712448,43.4959022001742],[-76.4691529402357,43.4959749832844],[-76.4678263181056,43.4961946295356],[-76.4659923463676,43.4970915894956],[-76.4646721741413,43.4970680011992],[-76.4633250102355,43.497494956539],[-76.4617315444486,43.4989920527062],[-76.4601294054276,43.4988504620816],[-76.4592504650075,43.4989967548376],[-76.4567891889268,43.5007884871806],[-76.4521322596119,43.5022163978973],[-76.4504827775788,43.5032638212848],[-76.4477663341434,43.503536884019],[-76.4457097832342,43.5055438339867],[-76.4450704226021,43.5056104495898],[-76.4428274182708,43.5070839595145],[-76.440885407052,43.5079053327831],[-76.4394596163044,43.5082294450657],[-76.4372202178107,43.5095227169587],[-76.4348615733529,43.5115467760608],[-76.4345071161081,43.5121860181696],[-76.4329901140198,43.5127948249892],[-76.4329419571341,43.5129980215581],[-76.4325073593862,43.5128008785112],[-76.4307242727174,43.5129988013731],[-76.4285652330175,43.5135840728734],[-76.4256678724771,43.5140299510878],[-76.4252794175921,43.5140347973242],[-76.4232284128814,43.5150418138725],[-76.4210196747867,43.5173698596389],[-76.4203022191154,43.5189590036513],[-76.4189845972061,43.5203665121287],[-76.4172356393317,43.5214056854107],[-76.4135553727667,43.5221085778713],[-76.4123680685573,43.522001705827],[-76.4111689506037,43.5226648193421],[-76.4093102428561,43.5232009962686],[-76.4068687728308,43.5233391355259],[-76.4056085532682,43.5236562846128],[-76.4034747283799,43.5237050264773],[-76.4001265510092,43.5247680740709],[-76.3981099302144,43.5243515678125],[-76.3963575237076,43.5249267518874],[-76.394200738779,43.5250386301955],[-76.393043973696,43.5249491927001],[-76.3929062826242,43.524410624568],[-76.3924709051386,43.524933668528],[-76.3877021337742,43.5254599040788],[-76.3851010061735,43.5249647266384],[-76.3834755980916,43.5234897369644],[-76.3821971337456,43.523707803872],[-76.374659445655,43.5250278074527],[-76.3729882225954,43.5256466768506],[-76.3699481026884,43.525723689056],[-76.366914386871,43.5253998602668],[-76.3651126323124,43.5248136247395],[-76.3636227665322,43.5240120418039],[-76.3564748924777,43.5188837409686],[-76.355177367678,43.5185614838056],[-76.3518077681826,43.51566155246],[-76.3509163510616,43.5156180710407],[-76.3502187032423,43.5151265879814],[-76.3482017401893,43.5146821914639],[-76.3470427769289,43.5138044518058],[-76.3431179889435,43.5134184589907],[-76.3415129600423,43.5136399095407],[-76.3382118490025,43.5144079576607],[-76.3372177167152,43.5144916310438],[-76.3354219278684,43.5141479668333],[-76.3347312797218,43.5143181122266],[-76.3337979445146,43.5140904023052],[-76.3328938746228,43.5127683398464],[-76.3314365503138,43.5120244813531],[-76.3303342626629,43.5120058071814],[-76.3279187773056,43.5126641972385],[-76.3252261230555,43.5127089681062],[-76.3238383651804,43.5131617570955],[-76.3208398318812,43.5140203413497],[-76.3191017633846,43.5149543419758],[-76.3157920905018,43.5154517174833],[-76.3145424405168,43.5145431776727],[-76.3109363756926,43.5145846116843],[-76.3090673103698,43.515047245032],[-76.3058388568668,43.5140622200181],[-76.3048892612547,43.5134157664649],[-76.3038516846436,43.513225018982],[-76.300278059781,43.5137294595671],[-76.2990598831703,43.5132300802688],[-76.2976350176874,43.5130256707847],[-76.2970315429543,43.5129379796758],[-76.2955609657999,43.5129816773614],[-76.295120490375,43.5132117752035],[-76.292127086456,43.5136778679433],[-76.2903507865593,43.5146163663183],[-76.2863129923078,43.5160305289494],[-76.2810502499451,43.5187683928985],[-76.2782758894283,43.5207263540519],[-76.2781894840744,43.5207363248954],[-76.276235806435,43.520893227207],[-76.2761289114077,43.5209034260092],[-76.276091120182,43.5209083498603],[-76.2749912004903,43.5199076638098],[-76.2743093199008,43.5197892137702],[-76.272890093143,43.5202057189573],[-76.2706211068388,43.5208702702877],[-76.2702347252654,43.520644960718],[-76.2699454731339,43.5204230727335],[-76.2689008124085,43.5206327712177],[-76.2665977125814,43.5218873928959],[-76.2646990307019,43.5229213922255],[-76.2632483287732,43.5232075665813],[-76.2599343053495,43.5247658614434],[-76.2579641606925,43.5248460982881],[-76.2571216900764,43.5254496448209],[-76.2573974926315,43.5244111332734],[-76.2568837910363,43.5241241517365],[-76.2565264025887,43.523263684852],[-76.2558377100745,43.5226679797903],[-76.2558082067056,43.5233706276133],[-76.2562524748176,43.5239645182235],[-76.2560030503924,43.5243184224535],[-76.256401530476,43.5243455551818],[-76.2569391227662,43.5250194546075],[-76.2560796012277,43.5249883893606],[-76.2553310845088,43.5254243128942],[-76.2545866236833,43.5253289429016],[-76.2509950235318,43.5263092591976],[-76.2485445407093,43.5266151930933],[-76.2466337405567,43.5274014100408],[-76.2455592719335,43.5269989384461],[-76.2442105207047,43.5270046303612],[-76.2346020407128,43.529652532599],[-76.230675732778,43.5316397864877],[-76.2275141570513,43.5340643957378],[-76.2247154674617,43.5368496952086],[-76.2226874704021,43.5389108518192],[-76.2194821727722,43.5431725457999],[-76.216783785474,43.5470595806494],[-76.2139269650041,43.5519747025088],[-76.2094634465631,43.5609991327881],[-76.2040303234353,43.5747787495785],[-76.203980771466,43.5751664465965],[-76.2048111327921,43.5766703765019],[-76.2042964807793,43.5769279176856],[-76.2035849297343,43.5772685670349],[-76.2027934636634,43.5782223301876],[-76.2010123047793,43.5868264451559],[-76.198924201444,43.6030016368829],[-76.1983008092644,43.6141551600823],[-76.197366555979,43.6238442669705],[-76.1967810798909,43.6480305992043],[-76.1970932705033,43.6529389876994],[-76.1969145659489,43.6589239872213],[-76.1964261860649,43.6611845926021],[-76.1960005346389,43.6615312005766],[-76.195083178664,43.6615137912338],[-76.1946534066658,43.6607934693199],[-76.1933120997757,43.659956618211],[-76.1954681956964,43.6570302979256],[-76.1958005076729,43.6560633965241],[-76.1954540687903,43.6554592560051],[-76.194581641156,43.6551622494076],[-76.1929757795165,43.6537384005221],[-76.1929022991228,43.6534915594381],[-76.1934942071484,43.6533233044416],[-76.1924317570855,43.652704124777],[-76.1923304468844,43.652421557234],[-76.1929440105964,43.6508619677132],[-76.194112310946,43.6490219550597],[-76.1944320114741,43.6469702104542],[-76.1941842902547,43.645419616388],[-76.1949726140188,43.6433584657975],[-76.1954039904082,43.6428767418075],[-76.1947496072495,43.641569007947],[-76.1934417194847,43.6406957898418],[-76.1930510385744,43.6399255289172],[-76.194979937085,43.6390769989875],[-76.1952629863496,43.6386193366065],[-76.1944307583243,43.6377186402909],[-76.1950345896886,43.6371045554395],[-76.1950598125851,43.6366180769019],[-76.1944104204663,43.6360666222641],[-76.1922842321562,43.6352019432804],[-76.1915994823478,43.634682355578],[-76.1912362270031,43.6334931168444],[-76.1899827483983,43.6329704448764],[-76.1902741214523,43.6322470901246],[-76.1901240273414,43.6317084145564],[-76.1891384991179,43.6315701127682],[-76.1890323703536,43.6318458395699],[-76.1879109198411,43.632339221394],[-76.1870933127954,43.6331940966102],[-76.1866148709734,43.634315562404],[-76.1866621753579,43.6360888565539],[-76.1864042313106,43.6369784287906],[-76.184129374516,43.6374162181483],[-76.1814147717286,43.6390605427004],[-76.1802731208004,43.6394820264938],[-76.1785880762617,43.6393193465964],[-76.1738187964509,43.6404759489413],[-76.1700260284729,43.6401321942945],[-76.1680551741469,43.6393555134698],[-76.1674957213543,43.6394557751429],[-76.1673747685911,43.6395920714081],[-76.1676691545946,43.6397286235054],[-76.16725305226,43.6401290523583],[-76.1673854172205,43.6405418823781],[-76.1679023671238,43.640487075998],[-76.1674930237135,43.6412565990241],[-76.1675522110126,43.6419718109804],[-76.1679901729513,43.6421789263241],[-76.1685415346181,43.642479422375],[-76.1689947140177,43.6425918371695],[-76.1680855147456,43.6441993445502],[-76.1681218983113,43.6450768605477],[-76.1675915904597,43.6457440749039],[-76.1678401174679,43.6463718118552],[-76.1675675147118,43.6467212517084],[-76.1674007101399,43.6470516021772],[-76.1673869506447,43.6474614231316],[-76.1657532017055,43.6488782272201],[-76.1653220364202,43.6498460516045],[-76.164810856396,43.6501033771051],[-76.164347016689,43.6498830070849],[-76.1638051618927,43.6502576923173],[-76.1637438824173,43.6505959655324],[-76.1632395987595,43.6509702654269],[-76.1628524365502,43.6515504617596],[-76.1621336396941,43.6512111247023],[-76.1615402979574,43.6514692717762],[-76.1603828357818,43.6526785642666],[-76.1603289503394,43.6534219387104],[-76.1595639962475,43.6541680324373],[-76.1587821744894,43.6543605482285],[-76.1579969570995,43.6542154448751],[-76.1575072477089,43.6546255867676],[-76.1565456083838,43.6544957668665],[-76.1568413831827,43.6552671122503],[-76.1585594650625,43.6559385009979],[-76.1591845119388,43.6557340718183],[-76.159987714499,43.6562886644547],[-76.160169096033,43.6563093320894],[-76.1603872411199,43.6563071164933],[-76.1606243182015,43.6568449450098],[-76.1611589577294,43.6563532969341],[-76.1608982199215,43.6556536388129],[-76.1612625676176,43.6553753142792],[-76.1621555558921,43.6554607729527],[-76.1627428941878,43.6551306526672],[-76.1626761870914,43.6555094978868],[-76.1629431987332,43.6562721160434],[-76.1620587399623,43.6568303595099],[-76.1611218528166,43.6575647066275],[-76.1607472373768,43.6583968786288],[-76.1620455913215,43.6575147946711],[-76.1623611164802,43.6571964452573],[-76.1631268377335,43.6566304041805],[-76.163310879179,43.6565880123511],[-76.1635495525668,43.6576885660635],[-76.163805744001,43.6582712132701],[-76.1641367579119,43.6587945711012],[-76.1644311079827,43.6593858316458],[-76.1646165615799,43.6605184388059],[-76.1651622423009,43.660918051256],[-76.1662437671906,43.6611681274242],[-76.1665687147783,43.6610162434832],[-76.1670812207159,43.661083039503],[-76.1674668018903,43.6611601346367],[-76.1680059096384,43.6615192826281],[-76.1683581264849,43.6617542845883],[-76.168634182365,43.6619990693307],[-76.1686136953866,43.662341429016],[-76.1693472497661,43.6626535612652],[-76.1702286659431,43.6630947305548],[-76.1708652714423,43.662984661111],[-76.1713840835531,43.6627767525499],[-76.1716351015896,43.6627696756231],[-76.1722794757193,43.6631187198388],[-76.1725863653732,43.6633136562172],[-76.1738969903048,43.6629850549221],[-76.1740959150379,43.6631090656397],[-76.1741707213449,43.663626023205],[-76.1743148874733,43.6640027067368],[-76.1738094045646,43.6640394169632],[-76.1738216737547,43.6643904449003],[-76.1740186877712,43.6646945540343],[-76.1744642997629,43.6647079802684],[-76.174839745246,43.6648796955663],[-76.1742217088221,43.6652867266704],[-76.1761076211498,43.6675408173193],[-76.1772159320046,43.668438797399],[-76.1771319143727,43.6689393818263],[-76.176528617506,43.6692292220161],[-76.1763476195527,43.6696272592444],[-76.1754985238613,43.6697170368665],[-76.1752489062983,43.6704129092746],[-76.1748326485553,43.6704757169341],[-76.1746061536277,43.6705095603075],[-76.1739336370768,43.6702328511028],[-76.1733557149219,43.6718459921525],[-76.1742334893287,43.6720125474651],[-76.1746136105429,43.6713288415727],[-76.1749149899308,43.6710601256664],[-76.1755710879733,43.6712694688064],[-76.1766976786459,43.671334400944],[-76.1773376375559,43.6710351779022],[-76.1791817611549,43.6711602161615],[-76.179073607588,43.6707246421827],[-76.179320250829,43.6705915387097],[-76.1808865901893,43.6703097382545],[-76.1823286790711,43.6701957755917],[-76.1830690633418,43.6705707759266],[-76.1851128096649,43.6709907806675],[-76.185752654489,43.6705699585145],[-76.1876578240014,43.6697218017058],[-76.1887979666583,43.6702186619691],[-76.1887372567148,43.6707955456345],[-76.1869896130756,43.6711603734046],[-76.1867742141385,43.6717568713718],[-76.1856622965478,43.672241125824],[-76.1854399078194,43.6719913244968],[-76.184855126129,43.671547195955],[-76.1827728474701,43.671514754701],[-76.1826830491794,43.6716597480232],[-76.1831376245609,43.6718306162932],[-76.1836509371856,43.6724060511135],[-76.1842507494873,43.6725303906347],[-76.1836432547933,43.673927794755],[-76.1836185897505,43.6746843801534],[-76.183408284261,43.6748126146049],[-76.1828624607079,43.6746156806229],[-76.1826191017076,43.6740284437866],[-76.1825902487189,43.6736055579231],[-76.1820539077819,43.6740883180162],[-76.1820767124137,43.6747363647556],[-76.1824001903576,43.6750211422478],[-76.1827839910712,43.675278281898],[-76.1828627248126,43.6763849491435],[-76.1828813819227,43.6768214462009],[-76.182898156164,43.6772804729301],[-76.1822618659736,43.6776697274699],[-76.1824921464017,43.6782616025278],[-76.1829668206894,43.6786438555585],[-76.1835262501259,43.6786830795508],[-76.1834302597479,43.6790262230964],[-76.1830445528093,43.6790482270902],[-76.1831481375447,43.6793082671809],[-76.1831615484935,43.6793396420013],[-76.1835772537727,43.6796009509405],[-76.1841039575834,43.679473938365],[-76.1845032200996,43.6802981587976],[-76.1856197442511,43.6804531461213],[-76.1857344905539,43.6810822288435],[-76.1870071877158,43.6820189214923],[-76.1897520906778,43.6816617177755],[-76.1903979272648,43.6814614040379],[-76.191378936064,43.6804877556686],[-76.1933128525639,43.6806476442028],[-76.194151445153,43.680022111262],[-76.1941949209178,43.6799271153156],[-76.1943661982014,43.6795516615018],[-76.1942334586435,43.6785085951532],[-76.1946882541123,43.6779636036092],[-76.1960227140432,43.6772248216812],[-76.1957892643588,43.6766555169067],[-76.1968127392165,43.6752716989329],[-76.1953195649411,43.6743014060372],[-76.1966501495399,43.6733915824847],[-76.1976710677924,43.6716296173755],[-76.1977144061149,43.6712555001877],[-76.1971753307062,43.6705993632504],[-76.1973934739965,43.6693860475788],[-76.1956572443514,43.6680761565512],[-76.1964243040944,43.667059683015],[-76.1955864265642,43.6671449905482],[-76.195301984911,43.6666797631009],[-76.1942817853108,43.6661321909167],[-76.1935933964271,43.6653110250465],[-76.1936327417383,43.6647343615978],[-76.194747725279,43.6646101547381],[-76.1961888996758,43.6652973773558],[-76.1969505892901,43.6654559703223],[-76.1975296334408,43.6652202998817],[-76.1978994267241,43.6655720779601],[-76.1999401627927,43.6756665703041],[-76.2001769874477,43.6789505126385],[-76.2003748530671,43.6802990202544],[-76.2009276601233,43.6840658481678],[-76.2013107655408,43.6850387427318],[-76.2011465067945,43.6859003436096],[-76.2015713317705,43.6870393705953],[-76.2016307274787,43.6880500817225],[-76.0372513230312,43.6846538540147],[-76.0317780461085,43.7215839283713],[-75.8292667829025,43.4824556394527],[-75.891297259783,43.1758895927125],[-75.9022438145266,43.0880151377611],[-75.91501479551,42.9946770041963],[-75.9715719945695,42.5634933994434],[-75.6431753531593,42.0873504820529],[-75.6408335952323,41.9986569934184],[-75.6907954443242,41.9982301741013],[-75.7423582322879,41.9979701105214],[-75.7496135771897,41.997922787035],[-75.7537574948156,41.9979000953019],[-75.7610372271807,41.9979285157115],[-75.7623069931399,41.9979651061942],[-75.7623552865695,41.9979647844111],[-75.7624054673596,41.9979644506113],[-75.7634369983088,41.9979575796747],[-75.7647401294943,41.9979759072889],[-75.8333578858779,41.9982988744607],[-75.8699274683561,41.9984953817667],[-75.8803120235832,41.998582686998],[-75.8905503905743,41.9986836991134],[-75.9584924889984,41.9989641212517],[-75.9996018236476,41.9991487948551],[-76.0675370544514,41.9990861157216],[-76.0908603142103,41.9989657775405],[-76.0909674571726,41.9989647581318],[-76.0936582815544,41.9989706602878],[-76.1058987166327,41.9989884134836],[-76.1236905676902,41.9989731357083],[-76.1246553663902,41.9989501713057],[-76.1311986086815,41.9989083548292],[-76.1468823311595,41.9988742222883],[-76.146903080446,41.9988740153354],[-76.2541817682561,41.9983818319134],[-76.2620330734838,41.9983632887827],[-76.2732270574943,41.9984017315918],[-76.276098354315,41.9984148651894],[-76.2842223161977,41.9984458102121],[-76.2868067432189,41.9984348663319],[-76.2939656737379,41.9984173980447],[-76.2995625669285,41.998403676964],[-76.3040811467066,41.9983749236365],[-76.3128930375355,41.9984095270996],[-76.3238418317791,41.998432327469],[-76.3396630719541,41.9984423273707],[-76.3435664342216,41.9984417178567],[-76.3499175178904,41.9984076992244],[-76.3521805061435,41.9984350906438],[-76.3608753752369,41.9984133490811],[-76.3634275976553,41.9984325844929],[-76.3721621444365,41.9984140186789],[-76.3746624038073,41.9984381288675],[-76.4030858027777,41.9986074326713],[-76.4231244436671,41.9986218199656],[-76.4428971670627,41.9987576389081],[-76.4618440323868,41.9990266656524],[-76.4732485877881,41.9991419794561],[-76.482234509237,41.9992559084773],[-76.5242998184352,41.9997900339122],[-76.5389063342251,41.9999733165552],[-76.55769712715,42.0002195931805],[-76.5762110530161,42.0002504411947],[-76.5965141157043,42.0003659984483],[-76.6247150459963,42.0006140686546],[-76.657149655374,42.0008571765185],[-76.6765273275555,42.001143054445],[-76.7016644206203,42.0013178624651],[-76.7285495157521,42.0015103730977],[-76.7307477812872,42.0015357731785],[-76.7473601353936,42.0016036895897],[-76.7496763236744,42.0016359374765],[-76.7872843226885,42.00190292668],[-76.8154211626765,42.0019745823573],[-76.8338959974547,42.0020725764055],[-76.8499567275862,42.0019768787555],[-76.8746849524494,42.0019402925824],[-76.8954639623381,42.0018150752675],[-76.9658802114976,42.0011255869011],[-76.9996270286383,42.0008711600924],[-77.0185418124286,42.0005714061221],[-77.0441020596029,42.0004114849567],[-77.0833051674226,42.0000889657701],[-77.1247219181385,41.9997345746332],[-77.1587859034566,41.9996614417449],[-77.1847774282056,41.9996511676586],[-77.2005007556079,41.9997063553046],[-77.2161851814668,41.9997601383126],[-77.2462622710774,41.9996569122015],[-77.2496807559922,41.999679978489],[-77.258785056531,41.999721608871],[-77.2778045677137,41.9997010333452],[-77.3167591997292,41.999785015709],[-77.3556410358673,41.9998392385858],[-77.3746699515127,41.9998924520362],[-77.3886208067397,42.0000574280697],[-77.4008163080874,42.0001268928349],[-77.4299278417183,42.0001484595745],[-77.4567266617519,42.0001356627936],[-77.4997106366686,42.0000800275754],[-77.5351600819713,41.9998916349189],[-77.5717341650091,41.9995499788342],[-77.601073961452,41.9993654833051],[-77.6247378282307,41.9994071085521],[-77.6355789557942,41.9995366725669],[-77.6432303822779,41.9995541672503],[-77.6998417425625,41.9990051325796],[-77.7158549742733,41.9988836166164],[-77.7381005925595,41.9988003166761],[-77.7498916678747,41.9987792949015],[-77.755878758682,41.9987166107309],[-77.7630074662816,41.9986531273905],[-77.7694128028037,41.9985526399551],[-77.773720526425,41.9984980501404],[-77.7793986363004,41.99843710678],[-77.7844133726779,41.9983739816594],[-77.791641744765,41.9983828439878],[-77.7988109061967,41.9983836904987],[-77.8049693272883,41.998350280015],[-77.809978593824,41.9983266945235],[-77.8150164267857,41.9982751714531],[-77.8198274252567,41.9982560221137],[-77.826082859009,41.9982416046948],[-77.8334673457161,41.9982664933663],[-77.8404160381193,41.9982566730204],[-77.8473357113455,41.9982561583034],[-77.8544606990215,41.9982321021212],[-77.8615876477197,41.9982435767757],[-77.8659798623851,41.9982419445015],[-77.8747163405442,41.9982799020414],[-77.8807973600959,41.9982263427625],[-77.8894309685786,41.9982297388281],[-77.8993842255698,41.9982441502413],[-77.9069653436111,41.9982503201704],[-77.9186402344208,41.998349976259],[-77.957273877724,41.998652336961],[-77.9808946891494,41.9989187011351],[-77.9997435743271,41.9991520460051],[-78.0304269009903,41.9994348413445],[-78.0482687594632,41.9996329359911]]]},"properties":{"OBJECTID":10,"STATE":"NY","Zone":"C","Title":"Central"}},{"type":"Feature","id":11,"geometry":{"type":"MultiPolygon","coordinates":[[[[-77.7767467907171,42.7284037482794],[-77.7812116000372,42.6668779157743],[-77.8482216559298,42.6678003350855],[-77.8501829018756,42.6519352591032],[-77.824686701886,42.6519352591032],[-77.8384154253028,42.5046299632065],[-77.9286327468916,42.5031840713743],[-77.9600126847184,42.1028401698069],[-78.0482687594632,42.0984746237396],[-78.0482687594632,41.9996329359911],[-78.055307717281,41.9997110884568],[-78.0742181406489,41.9999035218382],[-78.1247333564474,42.0003795028117],[-78.1390857172839,42.0003836704783],[-78.1913550383034,41.9996069910709],[-78.1914034871416,41.9996101453981],[-78.191451711401,41.9996088028898],[-78.2497570634445,41.9992946504932],[-78.2746465736305,41.9990321425488],[-78.3081459650976,41.9992139873904],[-78.3110781488299,41.9992220511685],[-78.3098608013642,42.0986586396825],[-78.2482194935294,42.099894771725],[-78.2465535121395,42.1888329406806],[-78.3131927641441,42.1888329406806],[-78.3181907074157,42.2566876372032],[-78.241555568868,42.2554545662772],[-78.2315596805283,42.5114141230143],[-78.3181907074157,42.5089579432608],[-78.3181907074157,42.6341000609784],[-78.1349327661996,42.6328743968769],[-78.1399307103694,42.5997723263494],[-78.0266439830395,42.5997723263494],[-77.9200211812694,42.7332987303284],[-77.7767467907171,42.7284037482794]]],[[[-76.6147752547512,43.4190058075686],[-76.6098908567349,43.2579601328393],[-76.4824098585838,43.2565317881855],[-76.4765261207466,43.2236706107648],[-76.4980998279464,43.0920486881348],[-76.649115779243,43.0891841929719],[-76.7314881161505,42.9630138069807],[-76.8138604530581,42.9630138069807],[-76.8217054377394,43.0934808851495],[-77.2904432591951,43.0762923085238],[-77.2904432591951,43.0447673934317],[-77.1315823241155,43.0505004019862],[-77.1394273087968,42.8552775660861],[-77.3041719826119,42.842336563177],[-77.3453581510657,42.6608778906975],[-77.5002166594648,42.6630097629756],[-77.4618763286783,43.026290487215],[-77.4885320291208,43.0530784415191],[-77.7500910902746,43.0396859266214],[-77.8500499673832,43.1066192627006],[-77.910025293828,43.123645166385],[-77.7533862652469,43.3360516948499],[-77.7477608595292,43.3344842114811],[-77.7451487733804,43.3334980389539],[-77.7313089202781,43.3304532357138],[-77.7307858070336,43.3302541460327],[-77.7289370014154,43.3281508687973],[-77.7244617482818,43.3261777485403],[-77.7221355321075,43.3253192888226],[-77.7163987056501,43.3245599263527],[-77.7144586347923,43.3239217300346],[-77.713547717043,43.3231645217429],[-77.7129352079531,43.3220805787981],[-77.7136018701833,43.3194580887888],[-77.7135577224787,43.3177663836679],[-77.7138262873076,43.3174628729004],[-77.7142321838822,43.3174307219063],[-77.7143679965768,43.3183684139018],[-77.7151545380833,43.3191465803194],[-77.7161542138742,43.3190778005671],[-77.7163533074906,43.3193251793487],[-77.7161241517532,43.3198123408736],[-77.7173871767545,43.3193231055979],[-77.716672997239,43.3187683345072],[-77.7171386883739,43.3165602837475],[-77.7177712694205,43.3167118128185],[-77.7191000798467,43.3174995623453],[-77.7219525407925,43.3182239959195],[-77.7234365001497,43.3174548083566],[-77.7258438494655,43.3165330172196],[-77.7266788622682,43.3156622152177],[-77.7267079030048,43.3153553860491],[-77.72643050594,43.3149433191944],[-77.7257882572242,43.3148686025248],[-77.724843097493,43.3150172030758],[-77.7237701856502,43.3148942187827],[-77.7226481799789,43.3149659804571],[-77.7219476782119,43.3150276902135],[-77.7212688456062,43.3148412698769],[-77.721211703771,43.3144419528555],[-77.7218079443712,43.3141081087421],[-77.723714323016,43.3139636355345],[-77.7237407173156,43.3136748782932],[-77.722970171211,43.3136347184166],[-77.7230774893447,43.313389052497],[-77.7228909937019,43.3131909069394],[-77.7217972202833,43.313419557187],[-77.7210052556473,43.3133483799889],[-77.7189976988538,43.3129954929077],[-77.7188184211742,43.3125270484664],[-77.7204103310791,43.3120029410061],[-77.7222657303315,43.3122108629806],[-77.7226244967947,43.3118061380863],[-77.7225050002007,43.311615399043],[-77.7227177670741,43.3113582168483],[-77.7233834034282,43.3114053814008],[-77.7245928133801,43.3109803722676],[-77.7251661810765,43.310489485994],[-77.7253149807151,43.3099051782515],[-77.7244170454183,43.308445432166],[-77.7215857532721,43.3074864487179],[-77.7209450101328,43.3078663715116],[-77.7208905057513,43.3080522517301],[-77.7222242066058,43.3084526768852],[-77.7227746214484,43.3088537465399],[-77.7236154535375,43.3087436670542],[-77.7242082580817,43.3092652735725],[-77.7242347997051,43.3098589054389],[-77.7236397403895,43.310683452395],[-77.7218255064349,43.3107491943149],[-77.7209369154138,43.3113781295548],[-77.7195512937324,43.3110329493417],[-77.7183976574816,43.3110333899023],[-77.7179369906241,43.3108732727131],[-77.7165878117972,43.3097978637079],[-77.7164726343031,43.3094269356935],[-77.7165607437611,43.3091907362181],[-77.7171406502944,43.3093120076738],[-77.7177311892875,43.3093519873796],[-77.7170699052709,43.3086068748711],[-77.7169870895848,43.3067495146211],[-77.7176268562554,43.3058203918992],[-77.7194941222528,43.3048395466091],[-77.7197583895414,43.3044415817945],[-77.7204083395141,43.3042685388176],[-77.7205517312947,43.303967991968],[-77.721940657878,43.3042095356678],[-77.7221292178494,43.3035747623049],[-77.7213730223314,43.3034216988545],[-77.7216292380201,43.3028438409453],[-77.7194000911004,43.3038288323473],[-77.7174838588353,43.3050674549306],[-77.7165778584639,43.3050889994088],[-77.7160990303663,43.3054020167977],[-77.7164879676467,43.3057259194259],[-77.7157897979062,43.3060711631174],[-77.7135116469894,43.3076649754666],[-77.712712455407,43.3079315628082],[-77.7114183891211,43.3077101661372],[-77.7109983494707,43.307423000334],[-77.7109787069087,43.3062799551968],[-77.7102921451983,43.306341262595],[-77.7097016592058,43.3057384921871],[-77.7093260125001,43.3057474002611],[-77.7086914048542,43.3062666713198],[-77.707109460859,43.306623804672],[-77.7057276192884,43.3072012788869],[-77.7038471507513,43.3079346011318],[-77.7037313929455,43.3083650316093],[-77.7046953607039,43.3086933739044],[-77.705063822684,43.3092338967624],[-77.7078121428372,43.3106274498658],[-77.7082416031201,43.3105542430644],[-77.709147060909,43.3101546096097],[-77.708737866619,43.3108396122165],[-77.7078088424269,43.3111947812853],[-77.7035513525963,43.3090400911145],[-77.6994380028429,43.3077057040731],[-77.6973859614764,43.3063495371443],[-77.6938730968629,43.3048296937803],[-77.692074410051,43.3036655458545],[-77.6871515156316,43.3008731205475],[-77.6729170101671,43.2912800205214],[-77.6717552369765,43.2897765005174],[-77.6709609304326,43.2895204460714],[-77.6633168746259,43.2844404922905],[-77.6594086839137,43.2825146032631],[-77.6553201510184,43.2806603004478],[-77.6557586699125,43.2802854440783],[-77.6564763205183,43.2796699915555],[-77.6601032442234,43.2816790656152],[-77.6627823428958,43.2826071146189],[-77.6652653052057,43.2841744630769],[-77.6658135982276,43.2841706767669],[-77.6659838550251,43.2845763899885],[-77.6672858067226,43.2842533745631],[-77.6684164640684,43.2850508488699],[-77.6721325859897,43.284095115964],[-77.6740591309143,43.2844642354187],[-77.6762527476678,43.2845029203231],[-77.6775169871914,43.2840591171891],[-77.6794003402188,43.2841545336124],[-77.6794620050715,43.2840765532094],[-77.6795486475806,43.2839709750642],[-77.679667566558,43.2838286229021],[-77.6777133921501,43.2835322786412],[-77.6759129024194,43.2838941008967],[-77.6737102504108,43.2829372054002],[-77.6739339174418,43.2816083737729],[-77.6736805071917,43.280835451014],[-77.6739702300405,43.2803019335615],[-77.6736503435611,43.2801473452987],[-77.6715345649286,43.2804489444246],[-77.6711833326357,43.2802995844612],[-77.6713442783952,43.2800437078989],[-77.6715056086337,43.2797878224126],[-77.6727476903125,43.279551683058],[-77.6727688034166,43.2793215850165],[-77.6716835469252,43.278847238412],[-77.6716664088662,43.2784559619894],[-77.6721831234109,43.2781017245863],[-77.6732374257542,43.2778699710011],[-77.6733819826497,43.2775919649433],[-77.6721581026353,43.2775305507303],[-77.6707312680453,43.2778385322081],[-77.6685759374892,43.2779564176245],[-77.6673702348845,43.2775973932284],[-77.6667843850973,43.277084327889],[-77.6660961273676,43.2771003885515],[-77.6660493395144,43.2774661450061],[-77.6666667336428,43.2779784772553],[-77.6649137360446,43.2784290589983],[-77.6622445772308,43.2792341122563],[-77.6574125384192,43.2793600926895],[-77.6557843653229,43.2786731160942],[-77.6562761974325,43.2783555459389],[-77.6579916472486,43.2780140192082],[-77.6614315866273,43.2767274055985],[-77.6627748850823,43.2763314458143],[-77.6628805224682,43.2761489029099],[-77.6626790429264,43.2760590547416],[-77.6617089504544,43.276032133032],[-77.661677798677,43.2758212625725],[-77.6620246588694,43.2756421053655],[-77.6647871759975,43.2754966800366],[-77.6656583864145,43.2753142863641],[-77.6662381267595,43.2754943490636],[-77.6657214939615,43.2757450105545],[-77.6653297413611,43.2760422789528],[-77.6669869273461,43.2760531357991],[-77.6679921295726,43.2753858789297],[-77.6694187782113,43.2753210464671],[-77.66962762843,43.2750775593276],[-77.6684536803723,43.2748798775371],[-77.6684184673115,43.274074834691],[-77.6686697790971,43.2737808347867],[-77.6690755732637,43.2735147406491],[-77.6695556715791,43.2733099383037],[-77.6684085813518,43.2730035795194],[-77.6674357831542,43.2727111487689],[-77.6669202337244,43.2724485577079],[-77.6662132101885,43.2720868845374],[-77.6656655675469,43.2722617347111],[-77.665862187203,43.2729279518688],[-77.6669063035493,43.2731782131826],[-77.6668503510835,43.2734046213835],[-77.6661702293954,43.2734385001301],[-77.665883653345,43.2736747900951],[-77.6662202637601,43.2740811246712],[-77.6675006747554,43.2741953076136],[-77.667278952577,43.2746641932618],[-77.6662645992127,43.2745933232181],[-77.6645024361035,43.2750170994344],[-77.6621996641615,43.27515180756],[-77.6613833902156,43.2745810540334],[-77.6608691235801,43.2751422795554],[-77.6602901629728,43.2756419804456],[-77.6598441691971,43.2759765093139],[-77.659285253597,43.2763091625641],[-77.6590110464498,43.2769008088326],[-77.6578159915762,43.2775003700796],[-77.6566079919793,43.2778120893655],[-77.6551167400987,43.2780223290048],[-77.654282077639,43.2783028379264],[-77.6544240393016,43.2788127727712],[-77.6558389972652,43.2794236874225],[-77.6547485709694,43.2803584381614],[-77.6546526632364,43.2804732168719],[-77.6474737056764,43.2778440003657],[-77.6449358482178,43.2772499741549],[-77.6456183657128,43.2756539564106],[-77.6465598046221,43.2757041892497],[-77.6472561310197,43.2766019749781],[-77.6478174082907,43.2765439502138],[-77.6474139380656,43.2751801750792],[-77.647582359605,43.2747395741435],[-77.6491821459383,43.2740857173962],[-77.6503997817632,43.2732786279661],[-77.6503909899515,43.2730762396113],[-77.6495491256982,43.27316329347],[-77.6488184980298,43.2736394405154],[-77.647576752321,43.2731639880795],[-77.6497434115312,43.271146373797],[-77.6510897229357,43.2704308359843],[-77.6523262943485,43.2693351560645],[-77.6524164456771,43.2692565287321],[-77.6527302954778,43.2678310982565],[-77.6535364310374,43.267650307745],[-77.6555775542799,43.2685168085799],[-77.6567571635205,43.26828229543],[-77.6575190184247,43.2678098735232],[-77.6575738192503,43.2675474797909],[-77.6572860861699,43.2672975544359],[-77.6573489790196,43.2670529814021],[-77.6575540886534,43.2666700399177],[-77.6571355914103,43.2661935505287],[-77.6569099759335,43.2659286732715],[-77.6561062173162,43.265650222795],[-77.6560028652444,43.2660623117263],[-77.6566220164776,43.266619679262],[-77.6565214509798,43.2679005992639],[-77.6552997305153,43.2678839736349],[-77.6546543116449,43.2674397601584],[-77.6548736200502,43.2667278438439],[-77.6538574332244,43.2671161141039],[-77.652083918105,43.2673643820092],[-77.651772010462,43.2688347865676],[-77.6502402715115,43.2703334867926],[-77.6498944156355,43.2702964869686],[-77.6499011880344,43.2686170662194],[-77.6494959687895,43.2677890811529],[-77.6492849464445,43.268037084014],[-77.6491991043342,43.2703081068532],[-77.6489192530721,43.2709133666643],[-77.6485576641022,43.2712413931689],[-77.647645105131,43.2711274793977],[-77.6462280334315,43.2716600307743],[-77.6448711479578,43.2728619767591],[-77.643641745101,43.2733901523706],[-77.6428651165036,43.2742545014358],[-77.6420766813484,43.274668914135],[-77.6424375597508,43.2750522474244],[-77.6439533832495,43.2754628881142],[-77.644842285986,43.2758114854874],[-77.6441643912215,43.2767861090596],[-77.6416338065234,43.2759847461375],[-77.639124835291,43.2755835106782],[-77.6346874362652,43.274123695988],[-77.6328472490838,43.2728425060103],[-77.6283391553401,43.2711904842525],[-77.6273843207533,43.2704605989091],[-77.6268504735395,43.270144222125],[-77.626102131992,43.2696932081641],[-77.622774753315,43.2677301950179],[-77.6175293888614,43.2651402254045],[-77.6125134963522,43.2620630459132],[-77.6066005533868,43.2597309400986],[-77.603566329123,43.2588726835287],[-77.6030202666179,43.2580027187028],[-77.602618420547,43.2573635736858],[-77.597549111516,43.2542284183081],[-77.5905759921236,43.2514378466321],[-77.5900416930573,43.250648588209],[-77.5879652759056,43.2488767859534],[-77.5788009436514,43.2438209979775],[-77.5715196832519,43.2408110865529],[-77.5632579539406,43.2382188881146],[-77.5579312856656,43.2369290747351],[-77.5512945332449,43.2358168348836],[-77.5418034621622,43.2353665084072],[-77.5363159155013,43.2353758711678],[-77.5343490802379,43.234924271109],[-77.534334922789,43.2345644156643],[-77.534782094256,43.2342393500521],[-77.5354471485018,43.2341570659936],[-77.5369501817874,43.2337455327732],[-77.5376898474059,43.2334769925872],[-77.5384415756019,43.2330821206715],[-77.5388973223866,43.2326307889738],[-77.5391437033196,43.231706883469],[-77.5403781915392,43.2308915783601],[-77.5410564070023,43.2300256004525],[-77.5411363516727,43.2292089395751],[-77.5416859912692,43.228805032304],[-77.5419714507137,43.2266016489683],[-77.5417486775063,43.2257602041655],[-77.5405769994914,43.223908871078],[-77.5410521696491,43.2225476697169],[-77.5400133147354,43.2223906777196],[-77.539553989961,43.2218741365796],[-77.5395293222233,43.2212804041224],[-77.5399203121541,43.220902541373],[-77.5419869394658,43.2209511389794],[-77.5420372514099,43.2206528801989],[-77.5415162015956,43.220160230018],[-77.540851435709,43.2199679126679],[-77.5401050201495,43.2200790489847],[-77.5416649895562,43.218464121569],[-77.5417905668464,43.217727481903],[-77.5413719339576,43.2174396510882],[-77.5405520326147,43.215013224064],[-77.5392858248824,43.2146496777856],[-77.5390584693688,43.2136957752076],[-77.5400481010965,43.2134216661989],[-77.5422734283795,43.2142861201742],[-77.5430167663109,43.2141120089658],[-77.543070810755,43.2139037084727],[-77.5401832202916,43.2129144244516],[-77.5411151586185,43.2120022858476],[-77.542275295977,43.2113146729608],[-77.5419428187106,43.2108403399339],[-77.5398622064265,43.2112062462834],[-77.5387020430169,43.2118938361681],[-77.5374722404098,43.210894660015],[-77.5372771919071,43.2099580446466],[-77.5389381418331,43.2100382151476],[-77.5396133856692,43.2097260716216],[-77.5397250300894,43.2094039397082],[-77.5375896160814,43.209199251731],[-77.5365064338,43.2087190572988],[-77.5362696567557,43.2082876042838],[-77.5364589856851,43.2053119930603],[-77.5361627446605,43.2041975353563],[-77.5356070297578,43.2036155829379],[-77.5353031701214,43.2023167034423],[-77.5349765777184,43.2019817849734],[-77.5337312854608,43.2020229038767],[-77.5312830843591,43.2011497095857],[-77.5311373479756,43.2006486973954],[-77.5321699721745,43.2001350910958],[-77.5330402384622,43.1990262890944],[-77.5330790232246,43.1975757398754],[-77.5333769917094,43.195817802036],[-77.5323183855375,43.1936667250704],[-77.5299615772362,43.1933767543989],[-77.5296643265053,43.1929961488556],[-77.5293563678563,43.1920214961169],[-77.5302620214779,43.1914071673915],[-77.5300017013867,43.1909987322937],[-77.5294330103197,43.1910473360459],[-77.5302948531049,43.1900062729461],[-77.529901629064,43.1897223373125],[-77.5294017624225,43.1904402379463],[-77.5291036861399,43.1905323744057],[-77.5285908990296,43.1903051060111],[-77.5285352771438,43.1889962110851],[-77.5291826633247,43.1881444883007],[-77.5291347193397,43.1862771567326],[-77.5286327407589,43.1857615109847],[-77.5285433952191,43.1852277317333],[-77.5279924979812,43.1849517793443],[-77.5283189682133,43.1847284549315],[-77.5277079970391,43.1844223154292],[-77.5279823910359,43.1842136502386],[-77.5276675485968,43.1831355940168],[-77.5283852845426,43.181940155809],[-77.5284133128777,43.1796119216049],[-77.5298274390014,43.1779823665402],[-77.5297172543436,43.1775210830662],[-77.528195157011,43.1771225523695],[-77.5261180265969,43.177528649296],[-77.5261960048552,43.1771262339704],[-77.526878498994,43.1762422313357],[-77.5271488649451,43.1753313204358],[-77.5284273122231,43.1753705804121],[-77.5284723079374,43.1751940003975],[-77.5285579560115,43.1745122801275],[-77.5291872546141,43.1738590508099],[-77.5294516072427,43.1726826395857],[-77.5308255795714,43.1727647805793],[-77.5317238131089,43.1724522485119],[-77.5323815766279,43.1717263361553],[-77.5326636646951,43.1717425969025],[-77.5330807695495,43.1727643488447],[-77.5318436950802,43.1738452624102],[-77.5314791632294,43.1748573175621],[-77.5307617964913,43.1748957137491],[-77.5303774397206,43.1742379033476],[-77.5292164265047,43.1745652443606],[-77.5290846176013,43.1751624457139],[-77.5293420936264,43.1759041065039],[-77.5301989238124,43.176132761643],[-77.5306605698335,43.1754697289529],[-77.5333077720252,43.1752310022999],[-77.5341520608315,43.1744784354561],[-77.5344869105486,43.1735120521783],[-77.5342353804724,43.1734726075713],[-77.5327961545214,43.1744994843781],[-77.5322798343371,43.1745649502133],[-77.5324420458229,43.1740436081771],[-77.5328795577056,43.173736771764],[-77.5335376724659,43.1733259962329],[-77.5338027626113,43.1728383896385],[-77.5330978258618,43.1709090812791],[-77.5329851870066,43.1695429207132],[-77.532895101255,43.169270285334],[-77.5314225154676,43.1694604825248],[-77.5309679975783,43.1694390328666],[-77.530455991104,43.169468377339],[-77.5298593983642,43.1698417556746],[-77.5299824639649,43.1708385117866],[-77.5304269827068,43.1711573297896],[-77.5302071092612,43.1715673913819],[-77.5293128938881,43.1718933289748],[-77.5273796232769,43.1732282121249],[-77.5259621760817,43.1737232676612],[-77.5255684175432,43.1740291109768],[-77.5262169823137,43.1758921790566],[-77.5255984069006,43.1767972761597],[-77.5249986493962,43.1769005697686],[-77.5249294872041,43.1765194140562],[-77.5242479901953,43.1764399207719],[-77.5241621588648,43.1770811225527],[-77.5235046298061,43.1772847319185],[-77.5232674521132,43.1768847735447],[-77.5214355267374,43.1764209576915],[-77.5208783610555,43.1757939404852],[-77.5197058970147,43.175396589502],[-77.5191731753899,43.1758675517893],[-77.5167900455525,43.1756859374231],[-77.515938866668,43.1762764504009],[-77.5160231079803,43.1768013488704],[-77.5169501433024,43.1773076920727],[-77.5171535057131,43.1776903993421],[-77.5176352129111,43.1797552857815],[-77.5170982835776,43.1799381929219],[-77.5171240077341,43.1801897474817],[-77.5177277429787,43.1805186143052],[-77.5183627557648,43.1814860952553],[-77.5184441485194,43.1825017895478],[-77.518166718217,43.1830391559741],[-77.5183478185782,43.183674472543],[-77.5179935733359,43.1840739646126],[-77.5189404407645,43.1853767347234],[-77.5180603442126,43.1862110170233],[-77.5172897576838,43.1862865185172],[-77.5167716094279,43.187310913605],[-77.5162717230235,43.1874704900628],[-77.5164434099389,43.1916176948561],[-77.5172174585748,43.1921949342434],[-77.5169700248163,43.1937806376732],[-77.5179564594399,43.1941911177627],[-77.5176026822197,43.1954820227284],[-77.5180238052384,43.1965937810871],[-77.5180326545423,43.197575053572],[-77.5188553550357,43.1978090465753],[-77.5193788123349,43.1976129213998],[-77.5202800947544,43.1989887161734],[-77.5199899074766,43.2003007364821],[-77.519376370714,43.200588893095],[-77.5192939062692,43.200865341874],[-77.5194187954499,43.201618948773],[-77.5206529252417,43.2019789227447],[-77.520302331651,43.2033372967885],[-77.5205412125496,43.2053444861841],[-77.5217947261886,43.206163237915],[-77.5218125316959,43.2065950503669],[-77.5213399792289,43.2072717930082],[-77.5215086379235,43.2075652130694],[-77.5224469309327,43.2075670195589],[-77.5231283947038,43.2081687707725],[-77.5244805424628,43.2083460116492],[-77.5246455054883,43.2085494656634],[-77.5237939636844,43.2091400444289],[-77.5238212518078,43.2098012559396],[-77.5220578427354,43.2102768888364],[-77.5214206641111,43.2099938063587],[-77.5204662193931,43.2103570209437],[-77.5205105144214,43.2106756960919],[-77.5215053968019,43.2112930546843],[-77.5215176390426,43.211589926068],[-77.5205212870183,43.2124583048054],[-77.5213946075779,43.2123940201127],[-77.5222213810328,43.2119660833804],[-77.5226275974077,43.2112007597013],[-77.5231761742972,43.210846487823],[-77.5246930991303,43.2104663251613],[-77.5271117232013,43.2107100137064],[-77.5280029382014,43.2103256317506],[-77.5281118562347,43.2099360389397],[-77.5286961699028,43.2096935035725],[-77.5309583505704,43.2099405723386],[-77.5304297450263,43.2107761674584],[-77.5307866645533,43.2125961309112],[-77.529726851944,43.2134434840589],[-77.5295380997332,43.2141815097385],[-77.5300099497176,43.2149949558006],[-77.5313952282425,43.215968257603],[-77.5314095689478,43.2163146037726],[-77.5306677904918,43.2172899846552],[-77.5302772658883,43.2184421726122],[-77.53047327469,43.2209095019394],[-77.5297379946468,43.2212904518106],[-77.5293327376727,43.2220782890977],[-77.529391235964,43.2227388071964],[-77.5295657507759,43.2231716511084],[-77.5304054015804,43.2238148768951],[-77.5331494143119,43.2243483703306],[-77.5336435739565,43.2249542080912],[-77.5332954156984,43.2256057294031],[-77.5336540060919,43.2267188095158],[-77.5332032710081,43.2271610049013],[-77.5301425751895,43.2280526927071],[-77.5281934529069,43.2293339108394],[-77.5246218663216,43.230736487614],[-77.5235664267111,43.2309443843665],[-77.5201917472428,43.2333284401893],[-77.5190904746883,43.2354597125113],[-77.5177914919228,43.2365868554931],[-77.5170281089842,43.2378147408221],[-77.5170408965023,43.2381251057842],[-77.517686566901,43.2385700998698],[-77.5199406860872,43.2378315952073],[-77.5212463361487,43.2368663583756],[-77.522694737492,43.2363301583867],[-77.5239445994794,43.236280052089],[-77.5321396711016,43.2344690072327],[-77.5332052643698,43.2343103292485],[-77.533450323881,43.2343454163137],[-77.5335917779955,43.2352787205122],[-77.5333346262623,43.2355275357786],[-77.5326263621529,43.2357098117442],[-77.5217251175339,43.2386476385968],[-77.5170198974842,43.2406512576208],[-77.5155633349466,43.241759333655],[-77.5147479206884,43.2432404680715],[-77.5131215451211,43.2447889554103],[-77.5110196382732,43.2461857925131],[-77.5024965387401,43.2497583348422],[-77.5006833378482,43.2505633819571],[-77.4986044117019,43.2501631448901],[-77.4953053569058,43.2506043954754],[-77.4875833408071,43.250795246717],[-77.4830661588077,43.2520595229447],[-77.4793533462799,43.2538824419615],[-77.4711748189303,43.2567113130613],[-77.4692222794563,43.2571902194635],[-77.4669379121978,43.257194530836],[-77.4640491548229,43.2577340728071],[-77.4628221944854,43.2583547970747],[-77.4566722337272,43.260297006226],[-77.454575981774,43.2603195373913],[-77.4539908757918,43.2605617097664],[-77.4521687609172,43.2604792636913],[-77.4514648698067,43.2606879552049],[-77.4496932133017,43.2614597869047],[-77.4490252027002,43.2611814671043],[-77.446009215135,43.2617637983728],[-77.4448591182464,43.2623106514688],[-77.4439203311638,43.2623082205563],[-77.4430860091656,43.2625781768553],[-77.4367339903505,43.2649828472874],[-77.4334935290671,43.2669247665099],[-77.432653397664,43.2678340685935],[-77.4325796082499,43.2683398741197],[-77.4308997550754,43.268605225578],[-77.4292705974256,43.2693511991492],[-77.4265123778378,43.2700490937692],[-77.4209559366828,43.2704415636683],[-77.4197096598717,43.2698061487115],[-77.4181743510162,43.2697666119889],[-77.41568282866,43.2692970600171],[-77.4098573393824,43.2700143255334],[-77.4056774397378,43.2711783916372],[-77.4014865420192,43.2728692819673],[-77.399003929154,43.2742225309972],[-77.3988295984967,43.2745683499077],[-77.3955490552836,43.2755330808756],[-77.3944240366628,43.2755791679064],[-77.392852860773,43.2762288640513],[-77.3910146013762,43.2764519247338],[-77.3895046241135,43.2762764096837],[-77.3879290033596,43.2752108297486],[-77.3838304650287,43.2752738840069],[-77.3789926329818,43.2760905278094],[-77.3766830643863,43.2761881052036],[-77.37655779432,43.2761952124969],[-77.3747192833949,43.2762649446344],[-77.3716279146009,43.2770854933451],[-77.3704001017621,43.2768363376941],[-77.3696512293103,43.2769103954235],[-77.3647677161347,43.2783351698467],[-77.360874864156,43.2787533126278],[-77.3585326930039,43.2786486016033],[-77.3567857581355,43.2781804045838],[-77.355772922924,43.2784308947799],[-77.3535517602306,43.2781480045649],[-77.3512961417562,43.2783294976845],[-77.3466650677517,43.2794826806159],[-77.3441811649057,43.2803800541768],[-77.3422243162132,43.2803211298675],[-77.3412382310343,43.2806789937323],[-77.3398071599894,43.2800194790972],[-77.3377021350892,43.2800130340826],[-77.3363977399742,43.2783559180661],[-77.335799974933,43.2780529887825],[-77.3343533477624,43.2779699934872],[-77.331880279497,43.2783581397111],[-77.3303508420302,43.2790511477311],[-77.3287674355778,43.2791284446122],[-77.3253613671769,43.2800892179699],[-77.3234791190772,43.2802085390945],[-77.3224694531221,43.2807287966844],[-77.3201214671752,43.2806639352535],[-77.3194680452139,43.2808707898737],[-77.3169378575712,43.2805619441432],[-77.314600834664,43.2809784733093],[-77.3125919807031,43.2817214713948],[-77.3120957558318,43.2815244141467],[-77.3107586090398,43.2795750285069],[-77.308181773681,43.2790283193912],[-77.3065524938603,43.2790747203081],[-77.3035349072939,43.2781856346533],[-77.2989859177468,43.2783627739695],[-77.2970418251314,43.2788340688772],[-77.295597212882,43.2780977345028],[-77.2947654636587,43.2778758256741],[-77.2935021997056,43.2780587584172],[-77.2915662305553,43.2787368946648],[-77.2899722868647,43.278534733743],[-77.2871466469182,43.2789469846135],[-77.282357726342,43.277336417081],[-77.2773608439808,43.2775756643887],[-77.2770638133372,43.2776761275069],[-77.2772949507581,43.2780181858787],[-77.2764174602189,43.2778690887452],[-77.2755408149943,43.2783412618778],[-77.2720531930403,43.2777443354152],[-77.2698639528789,43.2776977948339],[-77.2690939915775,43.2780057224907],[-77.2672695563546,43.277060466774],[-77.2633675819842,43.2776330439696],[-77.2622981313502,43.2775821842186],[-77.2599265251012,43.2780703146892],[-77.2587531717283,43.2780529913985],[-77.2576250341568,43.277634073381],[-77.2567365886627,43.2777911859608],[-77.2559471878186,43.2783875462523],[-77.2552091436592,43.2783525891954],[-77.2549111060042,43.2778227156853],[-77.2537800120771,43.2779170614704],[-77.2511670581557,43.2787969519237],[-77.2501022131842,43.2794662288421],[-77.2446757402845,43.2809776146416],[-77.2418074384469,43.2804306349556],[-77.2407652894111,43.2800864019171],[-77.2400755548511,43.2801719585912],[-77.2388681346676,43.2807178687349],[-77.2377870616305,43.2818420671652],[-77.2373999137942,43.2813364045904],[-77.2365631322087,43.2811096694853],[-77.2333311079025,43.2810513233408],[-77.2304750186612,43.2814042474046],[-77.2286781194967,43.2814843278558],[-77.2263096798091,43.2821878068058],[-77.2221590104455,43.2827638304861],[-77.217281962445,43.2840741421304],[-77.2151618961536,43.2837325775272],[-77.2142293541589,43.2841873574552],[-77.2133312742334,43.2843398199643],[-77.2112795544638,43.284023872387],[-77.2091386921736,43.2841598239847],[-77.2080747239578,43.283667144481],[-77.2073054103418,43.2829931798132],[-77.2046047000002,43.2826221137606],[-77.2039253400834,43.2827837885262],[-77.2023785139277,43.2826875505467],[-77.2008747404303,43.2823113300827],[-77.1962941589314,43.2828496724427],[-77.1909621070529,43.2853516690563],[-77.1888438005612,43.2850455984648],[-77.1877064283086,43.2841669506191],[-77.1870759753708,43.2840079371469],[-77.1854672400207,43.2842908347752],[-77.1854395099262,43.2837105893006],[-77.184956662766,43.2834677020502],[-77.1847744511887,43.2829939593243],[-77.1844308806268,43.2825638194213],[-77.1828919668321,43.2824401534401],[-77.1808426994633,43.2821866414475],[-77.178880819307,43.2819314261311],[-77.1782702766292,43.2819295590649],[-77.1779179510865,43.2821478752869],[-77.1762505009511,43.2820265692653],[-77.1748437688606,43.2822604493918],[-77.1735809450819,43.2820908838393],[-77.1723880587414,43.2815598036158],[-77.1714236418254,43.2823930213483],[-77.1698007346534,43.2824733718906],[-77.1646308286836,43.2838005046438],[-77.1613859036716,43.2850865089763],[-77.1581414269189,43.2859537136667],[-77.1556908093491,43.2871390113261],[-77.1524143579622,43.2881642318183],[-77.1511670480885,43.2888945554404],[-77.1499911839243,43.289281358856],[-77.148600382557,43.2893300281237],[-77.1467169828172,43.2903874116584],[-77.1450871873635,43.2898192321693],[-77.1433886878586,43.2903418367112],[-77.1431948889125,43.2895080726598],[-77.1435439823167,43.2880428292464],[-77.1431310833745,43.2876273718042],[-77.1408582190432,43.2869631380281],[-77.1392420752869,43.2867908071136],[-77.1371166774943,43.285804085377],[-77.1341192149869,43.2859591510147],[-77.1333745807866,43.2857479474539],[-77.1315600575746,43.2859483874848],[-77.1294462112183,43.2857401795067],[-77.1250648994055,43.2870373194445],[-77.1217763548983,43.2872650061244],[-77.1206559248719,43.287677491442],[-77.1196938983729,43.2870515328036],[-77.1181624989856,43.2868998421658],[-77.1174440955916,43.2865664902385],[-77.1151792882501,43.2865138887342],[-77.1125562453497,43.2871611964474],[-77.1118037850267,43.2879899942692],[-77.109598995926,43.2889941785857],[-77.1076359156204,43.2894040804542],[-77.1060224829797,43.2894878526573],[-77.1034657680866,43.2886255083785],[-77.101244134676,43.2872346955977],[-77.0985915569657,43.2870628336511],[-77.0979434072168,43.2868091074755],[-77.0964046937464,43.2854236683249],[-77.0954477301524,43.2848919567237],[-77.0930181825675,43.2850760487155],[-77.0914340538696,43.2847088614239],[-77.0900840117618,43.2848100987913],[-77.0881128780597,43.2839051819522],[-77.0843495649416,43.2835731934401],[-77.0831583889934,43.2830591563641],[-77.0824894423474,43.2821934269454],[-77.0795220949616,43.2814010566882],[-77.0750287461649,43.2817033414955],[-77.0723116739088,43.2827071044674],[-77.0697656121367,43.2830098706338],[-77.0682350589623,43.2822406984855],[-77.0668616346059,43.2801405249115],[-77.0649559764099,43.2796077024412],[-77.06039327947,43.2794289324269],[-77.0562808576763,43.2772519191924],[-77.0551314713551,43.2768358851133],[-77.0537172149758,43.2768568071588],[-77.0512089183782,43.2769153639951],[-77.0486422303889,43.2772765572007],[-77.0479678354607,43.2771265668271],[-77.0468730936582,43.276340291486],[-77.0466647689539,43.2748493011858],[-77.0463486913313,43.2744047441554],[-77.0457328665596,43.2739790584297],[-77.0448632856865,43.2727385147479],[-77.0432191091034,43.2714803007735],[-77.0424570736378,43.2711832723761],[-77.0386035606821,43.270806363977],[-77.0339478764321,43.2712584999366],[-77.0325804159909,43.2710622231328],[-77.0280704429716,43.2711153357516],[-77.0268128231334,43.2707009354826],[-77.0234681509888,43.2704405511414],[-77.0158148793656,43.2713952034677],[-77.0144955587421,43.2710808042479],[-77.0134014601334,43.270519303837],[-77.012590224838,43.2705470998821],[-77.0090098105084,43.2712178940846],[-77.0066614176246,43.2716598482876],[-77.0054627757781,43.2714422734387],[-77.0034205467095,43.2715456265762],[-77.0018686621404,43.2713477128886],[-76.9996924978562,43.2716649481027],[-76.9954267390334,43.2726399343756],[-76.9897672269793,43.2744674356006],[-76.9882034756653,43.2745441705951],[-76.985382443178,43.2742105207401],[-76.9842528135049,43.2735683148516],[-76.9826670040591,43.2732266539866],[-76.9787930616171,43.2735774232004],[-76.9743198458626,43.2744516639847],[-76.9744756415807,43.272864201875],[-76.9798716445243,43.2712491224145],[-76.9801780535795,43.2709961943281],[-76.9773971542258,43.2696846754919],[-76.9764261957779,43.2688595581505],[-76.9750711985629,43.2681131049766],[-76.974348310779,43.267859964353],[-76.9725359426253,43.2674005155985],[-76.9702367414866,43.2666387784944],[-76.9702268573235,43.2658915844239],[-76.9713205633684,43.2649902973534],[-76.9734651842097,43.2657006548997],[-76.9753008905945,43.2661686902071],[-76.9759465421286,43.2663916445088],[-76.975912928069,43.2661265960764],[-76.9760055937821,43.2661700161348],[-76.977806887505,43.2670483057268],[-76.9789262826721,43.2671910104726],[-76.9800129234673,43.267712455382],[-76.9794421779532,43.2684697042952],[-76.9816365537832,43.2695077058348],[-76.9817524130986,43.2695417149536],[-76.9831765509461,43.2688461882604],[-76.9844701330401,43.2685536054043],[-76.9852684846977,43.2687693538526],[-76.985628391123,43.268492970924],[-76.9862501896913,43.2686082285826],[-76.9875601714291,43.2683468416961],[-76.9878511573092,43.2680356325373],[-76.9892013296728,43.2678500643235],[-76.9903885072197,43.2670595232914],[-76.990509731274,43.2666207003561],[-76.9916178651608,43.2666419170005],[-76.9918529578639,43.2662236190431],[-76.9936277746421,43.2626674614056],[-76.9932959226031,43.262362597482],[-76.9929831831201,43.2615936732922],[-76.9925842242344,43.2615916243935],[-76.9916895830598,43.260346602124],[-76.9906144290221,43.259739525848],[-76.9886736475968,43.2591520043547],[-76.9856182159058,43.255959036676],[-76.9812339576189,43.2535183803118],[-76.9810810931037,43.2532328887204],[-76.9808248495672,43.2530122193713],[-76.9799318424281,43.2524469066423],[-76.9798383439767,43.2519262705329],[-76.9791936823861,43.2517888611409],[-76.9789084412322,43.251136477992],[-76.9770038475399,43.2506201654188],[-76.9765521368858,43.249628480466],[-76.9757838545357,43.2491194978463],[-76.9758955061423,43.2483701899161],[-76.9747677503549,43.2467193322434],[-76.9734746892838,43.2500778528992],[-76.972158402271,43.2519329684592],[-76.9719380751762,43.2521078529697],[-76.9715727177737,43.2519880939933],[-76.9705048122421,43.2506288329317],[-76.9693065665526,43.2474573745286],[-76.9679929915536,43.2470702901905],[-76.9664550308715,43.2469706939389],[-76.9660814134599,43.246580920428],[-76.9653782436966,43.2435809845577],[-76.964759296381,43.2430423465378],[-76.9636914878674,43.2428130691466],[-76.9633139232585,43.2424188512585],[-76.9632642841525,43.2402270903405],[-76.9621385387947,43.2381438513982],[-76.9600857230805,43.2373686574632],[-76.9579654349053,43.2374049947152],[-76.956526769503,43.2375737011377],[-76.9551506439125,43.2386507824723],[-76.9544911664079,43.2399452129511],[-76.9523633162147,43.2419040523482],[-76.9503224543819,43.2425647096354],[-76.949345441289,43.2423562609571],[-76.9474749206954,43.238822331548],[-76.9469316690189,43.2380436842827],[-76.9462132243024,43.2376732244032],[-76.9454557379054,43.2358221693796],[-76.9445103509004,43.2351764184001],[-76.9434487784915,43.2339383315522],[-76.9425187230334,43.2320901901335],[-76.9413416227874,43.2314888700071],[-76.938420422756,43.2289811391173],[-76.9377115837249,43.2286779955495],[-76.9362349770783,43.2286039661982],[-76.9351010804075,43.2290959080156],[-76.9319483584763,43.2298560955596],[-76.9307762169306,43.2296507850517],[-76.9304206331985,43.2293461315443],[-76.9304133864891,43.2291166370183],[-76.9317317513051,43.2289322828261],[-76.9316987750493,43.2269023031176],[-76.9306860709919,43.2250419519464],[-76.9302749426291,43.2234280658695],[-76.9296013597779,43.2232998671335],[-76.9298396630598,43.2219991804872],[-76.9269450657373,43.219121512337],[-76.9265721211639,43.2180067236562],[-76.9267321560318,43.2170900583021],[-76.926437025325,43.2170770233614],[-76.9260722293695,43.2169165848842],[-76.9257719540111,43.2160436934758],[-76.9266912296857,43.2140201732605],[-76.9260157945084,43.2138784765446],[-76.9249420328594,43.2161162015682],[-76.9246661566424,43.2176561338097],[-76.9249564840574,43.2190199470689],[-76.9259739078634,43.220794727447],[-76.9259630867575,43.2214162281189],[-76.9266185245382,43.2214457040602],[-76.9264932571668,43.2234783542367],[-76.9262064179101,43.2236317641353],[-76.9253976745412,43.2250275958096],[-76.9249791503487,43.2253498055661],[-76.9250650580359,43.2256950360831],[-76.9244678885778,43.2260877866354],[-76.9242203910389,43.2271860120582],[-76.9232887617325,43.2285929012564],[-76.9234150972008,43.229513747582],[-76.9241123012523,43.2311363483446],[-76.9246660542345,43.2317708545839],[-76.9247315027911,43.2324315909833],[-76.9264484932179,43.2339514577875],[-76.9264561531523,43.2341944523232],[-76.9260485039646,43.2343994229059],[-76.9267268164457,43.2344420193536],[-76.927590485506,43.2356025580464],[-76.92742297396,43.2365148455691],[-76.928008720441,43.2371848144841],[-76.9271666271173,43.2381129797692],[-76.9272413660506,43.2388230821756],[-76.9278100616092,43.2390251001317],[-76.9280599262088,43.2383320356043],[-76.9283679055191,43.2378586018728],[-76.928928113795,43.2375114775813],[-76.92973380918,43.2368090287171],[-76.9302634262271,43.2366515106216],[-76.931737081908,43.236869740562],[-76.9328980025974,43.2359856759402],[-76.9334606399178,43.2359356400407],[-76.9338461312607,43.2367215230046],[-76.9346932991675,43.2373555182207],[-76.9355761993613,43.2388983647742],[-76.9364395531129,43.2393249665907],[-76.9375291044496,43.2417017226292],[-76.937540300153,43.2425524654056],[-76.9384778520521,43.243180397323],[-76.9409746789602,43.2433946586366],[-76.9416994532061,43.2439631446736],[-76.9419892254623,43.2469882603296],[-76.9417028003289,43.249397346058],[-76.9415635201373,43.2497508901097],[-76.9412119375014,43.249819892891],[-76.9405980171582,43.2496772396847],[-76.9401596213332,43.2491218959153],[-76.9397337291587,43.2492146674138],[-76.9400226632867,43.249560941817],[-76.939047365976,43.2505364699081],[-76.9385998082334,43.25067462541],[-76.9377896131871,43.2505217808486],[-76.9377372252363,43.2510179125041],[-76.9381862373513,43.2511678775802],[-76.9383977986856,43.2516595332164],[-76.9382053615854,43.2520004626036],[-76.9383707090899,43.253424860341],[-76.938011197025,43.2555605020891],[-76.9381772227575,43.2574666242692],[-76.9386983722847,43.2589525201707],[-76.9390950907721,43.2591754034238],[-76.9407496033708,43.2588636855037],[-76.9413400022266,43.2591958278003],[-76.9418274316931,43.2600789851568],[-76.9417868143675,43.2609440989432],[-76.9409625535005,43.2621691913],[-76.9412189380724,43.2621918506452],[-76.9412612666886,43.2625783214273],[-76.9403080921884,43.2627655895446],[-76.9408471918517,43.2631301198958],[-76.9409257261671,43.263952689771],[-76.9418011398013,43.2647212054143],[-76.9419182190289,43.2655566259521],[-76.9418191025137,43.2662291379584],[-76.94081575441,43.267128610466],[-76.9404598445894,43.2699215157333],[-76.9418355452767,43.2726850137241],[-76.94202077699,43.2739064648208],[-76.9428946383354,43.2732793153796],[-76.9434916218423,43.2727739243706],[-76.9457540145123,43.2719745630487],[-76.9501345519773,43.2701575596795],[-76.9507038979162,43.2699587525667],[-76.9526916962651,43.2696096572592],[-76.9531837125294,43.2694977001096],[-76.95471477954,43.2693769811042],[-76.9587614940623,43.2694697851936],[-76.9592040032729,43.2695792581365],[-76.9598849136818,43.2700493200848],[-76.9605973163297,43.2700731205021],[-76.9622662657534,43.2700129656766],[-76.9647883110663,43.2698255713746],[-76.9658553551137,43.2706851524252],[-76.9668286680459,43.27213612352],[-76.9649754427164,43.2721319799933],[-76.9643557291379,43.2706704145911],[-76.9622096126017,43.2707297871364],[-76.9592737197255,43.2707666427985],[-76.959015501692,43.2704604177271],[-76.9589587272677,43.2703353287052],[-76.9578092448268,43.2701434202102],[-76.9546128126704,43.2701846180763],[-76.9509064105206,43.2707882026997],[-76.9433304452158,43.2739157209342],[-76.94076739181,43.2758231782244],[-76.9391949340243,43.2768403494429],[-76.9374837610874,43.2773601073906],[-76.9358294847456,43.2778653694055],[-76.9327599827422,43.2792634706327],[-76.9303940295913,43.2814284893881],[-76.9292416527786,43.2824879531863],[-76.9252779542667,43.2853551518708],[-76.9246531355624,43.2853656742067],[-76.9234255437092,43.2847425252721],[-76.9219802074176,43.284762336182],[-76.918710011,43.2855691457835],[-76.9157893921786,43.2868022139432],[-76.9120927268681,43.2889396266703],[-76.9077856608136,43.2907584499609],[-76.9063518642802,43.2910164869477],[-76.9038769059595,43.2919806896948],[-76.8963856760405,43.2960491492383],[-76.8955797596698,43.2962606145134],[-76.8865081497226,43.2938309493574],[-76.8830016191302,43.2937402001608],[-76.8820013001456,43.2935450727469],[-76.8803983508441,43.2926214916286],[-76.8787548713538,43.2925809856866],[-76.87186593129,43.2944408684518],[-76.8658682439557,43.2952502846088],[-76.8611531900486,43.2971415466086],[-76.8552266295218,43.2983139251171],[-76.8522312978182,43.2994835541259],[-76.8468841695142,43.3022443895714],[-76.8436159368138,43.3043006327103],[-76.8433594381558,43.3045208755617],[-76.8420148317537,43.3051998745452],[-76.8415675021833,43.3052385985581],[-76.8403857675287,43.3054557302706],[-76.8377799597053,43.3053040659247],[-76.838107083911,43.3041417405158],[-76.8392935796366,43.3040956391678],[-76.8414843514256,43.3047311902466],[-76.841757490476,43.3047042779568],[-76.8428819898705,43.3041368839936],[-76.8430993902541,43.3039487880887],[-76.8423775804486,43.302096515483],[-76.8427746340076,43.2964083360747],[-76.8421833350398,43.2956840092491],[-76.8421071354458,43.2955591754168],[-76.8417516774778,43.2954613531791],[-76.8414281213804,43.2960878705803],[-76.8403021244943,43.2964481732375],[-76.8398658127608,43.2972070658454],[-76.8401515776324,43.2976887035887],[-76.8400671485722,43.2986310230061],[-76.8376199266341,43.3008539634151],[-76.8372122846329,43.3005723758195],[-76.8369196000386,43.2981098731129],[-76.8373628323931,43.2970807483969],[-76.8369523094947,43.2961914087281],[-76.8374069046392,43.2950540479265],[-76.8373133594754,43.2942001326539],[-76.8369319303142,43.2931122273089],[-76.8363237295443,43.2948283368411],[-76.835646769926,43.2940963465822],[-76.8353110272835,43.2930662307126],[-76.8346998791412,43.2909104807949],[-76.8328856703395,43.2916464345171],[-76.8323202365637,43.2921102235848],[-76.8308895499978,43.2945868539446],[-76.8304185022089,43.2951931923255],[-76.8299030884248,43.2953230044385],[-76.8291420339194,43.2950470454864],[-76.8284805783246,43.2943282717734],[-76.8276069918636,43.2940631070177],[-76.8265563250022,43.2926707107253],[-76.8256631570647,43.2874804240605],[-76.8250278074103,43.2856221515758],[-76.8256445224124,43.283860940769],[-76.8255246386445,43.2831244919716],[-76.8269601455702,43.2808099276558],[-76.8276043562066,43.2802008338762],[-76.8275950936776,43.2793905824094],[-76.8279510618888,43.2792138057815],[-76.8274951093899,43.2783161508028],[-76.8275298418521,43.2772260581676],[-76.8287873485025,43.2742479864817],[-76.8287044977822,43.2734884358953],[-76.8280608746441,43.2725982868673],[-76.8274777970578,43.2724815481121],[-76.8263628251951,43.2726839600286],[-76.8258104825679,43.2733366022114],[-76.825688592862,43.2739733623157],[-76.825433353642,43.2753145989927],[-76.8251874335447,43.2756291797447],[-76.8248592852596,43.2760531259887],[-76.8246727950067,43.2762947204028],[-76.8245739839187,43.2770211558215],[-76.8239528896296,43.2776433701302],[-76.8226768031241,43.2782445126344],[-76.8218866728479,43.2783921759304],[-76.8209328344927,43.2785649537746],[-76.8207923460671,43.2787742935278],[-76.8209472057406,43.2810454480462],[-76.8214947037535,43.2817480747219],[-76.8215141828221,43.2831479544146],[-76.8220315360689,43.2845939246048],[-76.8218356009291,43.2850877893707],[-76.8223776955755,43.2858400216507],[-76.8222100070614,43.2865315339574],[-76.8232694073439,43.2887252267786],[-76.8240138591862,43.2889519661953],[-76.8243355270248,43.2898922972021],[-76.8244386248734,43.2918311050004],[-76.8239099097348,43.2932667433964],[-76.8254202112894,43.2947778863757],[-76.8262591829675,43.2974748124644],[-76.8269676051803,43.2980892976932],[-76.8274281768164,43.2985321550772],[-76.8277037808439,43.2985367524944],[-76.8282210837851,43.2989696953084],[-76.8302761776269,43.3009087694162],[-76.8307393831233,43.3006042055819],[-76.8313673944402,43.3009633249783],[-76.8327644265222,43.3033586136261],[-76.8327379163399,43.3052184471959],[-76.8325425381555,43.305640284295],[-76.8347148468705,43.3049210991014],[-76.8369386919333,43.3045071944917],[-76.837068296371,43.3044735958418],[-76.8372854335482,43.3045061230431],[-76.8371266446436,43.3050669483016],[-76.8368623593887,43.3050937068079],[-76.8349411863895,43.3054127075914],[-76.8331857471703,43.3059901455912],[-76.8325824395238,43.3061213799924],[-76.8322252792483,43.3061991412505],[-76.829815976995,43.3059450968033],[-76.8257509413326,43.3049430835824],[-76.820663498011,43.3060057188029],[-76.8181345725012,43.3060279676421],[-76.8152262614975,43.3069476223466],[-76.8134431362013,43.3072370560906],[-76.8088815459857,43.3087635544703],[-76.8050198071569,43.3085184584777],[-76.8024438099263,43.3086986804452],[-76.7967799994336,43.3097108132458],[-76.7943341456297,43.3096546921607],[-76.7920112298657,43.3103979838073],[-76.7905923085351,43.3111946021854],[-76.7851940607016,43.3123415688856],[-76.7829582482826,43.3132769105362],[-76.7803363974466,43.3149430780128],[-76.776662961671,43.3164994755435],[-76.7720414250799,43.3178093309379],[-76.7703332453295,43.3178313016074],[-76.7658090151483,43.3201659007415],[-76.763616316473,43.3218115465599],[-76.7569439449529,43.3253224824627],[-76.752403460655,43.3286157699612],[-76.7484240047947,43.3304685974763],[-76.7346012080047,43.3403905007544],[-76.7329807810811,43.3416892082406],[-76.7316397185328,43.3426459957648],[-76.7305153583771,43.3433338554684],[-76.7300784995696,43.3429802952123],[-76.7323959248306,43.3414864739184],[-76.7333643069102,43.34041377254],[-76.7340530191874,43.3391877306053],[-76.733917463411,43.3350927876933],[-76.7332904222747,43.3347061071586],[-76.7326016812515,43.3350497147753],[-76.7320991178674,43.3330763658161],[-76.7321297791647,43.3319863680178],[-76.7318156706492,43.3314328560677],[-76.7311894353017,43.3312082307994],[-76.7313152030348,43.3322148181595],[-76.7306886407005,43.3325754816959],[-76.7285588043321,43.3329678951371],[-76.7259587592013,43.3324399186622],[-76.7261785365272,43.3330398942169],[-76.7273692651144,43.3340844204664],[-76.7268688208561,43.3342720722271],[-76.7261478123478,43.3338867723383],[-76.7257408863039,43.3340009710732],[-76.7239243993746,43.3354150678332],[-76.7230170515303,43.337652839609],[-76.7224873931607,43.3416317636623],[-76.7223637652147,43.3418407282061],[-76.7218617929221,43.3426857020134],[-76.7210785859619,43.3431026986989],[-76.7211098760799,43.3433093284995],[-76.7224642579489,43.3432934225168],[-76.7230378430376,43.3432892773047],[-76.7244177199927,43.3429758187522],[-76.7255225615539,43.3432697918645],[-76.7271843046923,43.343528324589],[-76.7288892774572,43.3433944878596],[-76.7297750513616,43.3431694795748],[-76.7301560322635,43.3434968740098],[-76.7292583080708,43.3437220659648],[-76.7279045199882,43.3440306862758],[-76.7255726803602,43.3438543203385],[-76.7248582142822,43.3436219889572],[-76.7233532666866,43.3436446963595],[-76.7225025342648,43.3438556204008],[-76.7219476673717,43.3439900447334],[-76.7193919370322,43.3433532004279],[-76.7176066216433,43.3435781466215],[-76.711571498816,43.346167423592],[-76.7086210694019,43.3470309793609],[-76.7083936258535,43.3454946286226],[-76.7099550496326,43.3448454680037],[-76.7103602643859,43.3450645134277],[-76.7109759005113,43.3450057726588],[-76.7123724933172,43.3445976626792],[-76.7134796552268,43.3438111902655],[-76.7141436692236,43.3414600881513],[-76.7142412612977,43.339846837423],[-76.7148203818052,43.3390277516358],[-76.7146903533628,43.3384219060335],[-76.7140874041441,43.338408441016],[-76.7136587029376,43.3378881137074],[-76.713157416958,43.3361172603524],[-76.7127353201655,43.3307614621438],[-76.7128720257855,43.330003042018],[-76.7132726726056,43.329528806459],[-76.7133120098319,43.3287898544998],[-76.7128613960207,43.3280222298369],[-76.7129955800697,43.3274484384401],[-76.7135851416957,43.3272640127185],[-76.713696812167,43.3277530788406],[-76.7141106372723,43.3280215071012],[-76.7152315694568,43.3283918772628],[-76.7163358531643,43.3294017994755],[-76.7176162506848,43.3300398833313],[-76.7189750163324,43.3311179895748],[-76.7197242202625,43.3310031659615],[-76.718188332892,43.3295225333215],[-76.7179023057123,43.3287434496919],[-76.7163876410404,43.3270958913679],[-76.7155603366812,43.3231103520781],[-76.7159054047346,43.3198725823973],[-76.7168803355327,43.318691865749],[-76.7168029564507,43.3170542215983],[-76.7172098735115,43.3159315583463],[-76.7178043614986,43.3152292821273],[-76.7182418733813,43.3143042525528],[-76.7177101857174,43.314240209959],[-76.7172119243653,43.3144322891705],[-76.7169697771923,43.3151247672318],[-76.7162419864036,43.3158560539979],[-76.7144736940893,43.3139466433931],[-76.7143727854351,43.3135789754809],[-76.7127065570085,43.3129241250064],[-76.7118571289404,43.3142920201363],[-76.710726865955,43.3150338034068],[-76.7109543885552,43.3156291920204],[-76.7099179060922,43.3170358911231],[-76.7101272405028,43.3175325041358],[-76.7094459896324,43.3187312824446],[-76.7093004095558,43.3178285147524],[-76.7087384504635,43.3176478257513],[-76.7075639202975,43.3157969614416],[-76.7069374567779,43.3155001696772],[-76.7070320197329,43.3163992013836],[-76.7058557791746,43.3184337592873],[-76.7054802223004,43.3198035361623],[-76.7062075118292,43.3221158224571],[-76.7058980071795,43.3228858195472],[-76.7076545935473,43.3235394177105],[-76.7081711499885,43.324504175141],[-76.708045885312,43.3248752293998],[-76.7067470337006,43.3265964713932],[-76.7049594383875,43.3280593618377],[-76.7054265183178,43.3283450356366],[-76.7052906319614,43.328599187717],[-76.7042798979093,43.3287898525394],[-76.7025018660608,43.3279249192251],[-76.7017856096403,43.3281426893551],[-76.701376645319,43.3288601288267],[-76.7004916080331,43.329508114251],[-76.6999326430257,43.330790555834],[-76.7003649608494,43.3333233693854],[-76.7019895092435,43.3346228330767],[-76.7027403301411,43.3370023184502],[-76.7029171033177,43.3394623895871],[-76.7025818565453,43.342141692724],[-76.7017897338058,43.3426442324793],[-76.7015982273603,43.3432548815068],[-76.7021382792377,43.3441607841059],[-76.7026207473088,43.3444687502021],[-76.7010077898769,43.3441596101359],[-76.6995872812231,43.3444868966645],[-76.6984839389501,43.3444087564966],[-76.6969318630399,43.3449270582669],[-76.6949498579263,43.3458884304076],[-76.6831898571333,43.3538420655803],[-76.6783285242603,43.359397247157],[-76.6752930693045,43.3615128014079],[-76.6737681234142,43.3631379307689],[-76.6712865786458,43.3649030965901],[-76.6698059565299,43.3663654455501],[-76.6664375167596,43.3709348199173],[-76.6656214099004,43.372472961632],[-76.6622026411179,43.3754086501613],[-76.6605057810384,43.3775583541131],[-76.657100101608,43.382776304476],[-76.6546513947548,43.3852699838919],[-76.6534685713421,43.386124513204],[-76.6505956827067,43.3893761069595],[-76.6453771266761,43.3969565069738],[-76.6432378759635,43.4005710242788],[-76.6411041346186,43.4030418705772],[-76.6364396890997,43.4074083491101],[-76.6360450034999,43.4069412745668],[-76.6368377981791,43.4060835106572],[-76.6362742149328,43.4056503719222],[-76.6356461506154,43.405803434878],[-76.6352067908981,43.4063139673799],[-76.6335759219577,43.4066074286868],[-76.6336699396353,43.4068311927611],[-76.634598817402,43.4071420620593],[-76.6351058768541,43.4075400013047],[-76.6352110057934,43.4083623924407],[-76.6308593662328,43.4132824325358],[-76.6299669160492,43.4137273767063],[-76.6290443830834,43.4136414879891],[-76.6269921629522,43.412509174739],[-76.623288711768,43.4128184813917],[-76.6222008447724,43.4107044096064],[-76.6211394223822,43.4103007751837],[-76.6196511573998,43.4103759101836],[-76.6190577824254,43.4108345380493],[-76.6182132834133,43.410995074895],[-76.6176708339324,43.4113809391135],[-76.6170025143105,43.4113453785778],[-76.6162965570747,43.4112878361536],[-76.616800400558,43.4119740405859],[-76.6180096137788,43.4119704273382],[-76.6188809005527,43.4113953132826],[-76.6190775516499,43.411257461552],[-76.6203067496908,43.4109473932025],[-76.6212197820742,43.4109974704966],[-76.6218007863488,43.4121282719632],[-76.61998112657,43.4118209292712],[-76.6191176910717,43.4121258104975],[-76.6182612229068,43.4122144825816],[-76.6183905749178,43.4127664166138],[-76.6191357301409,43.4125127416229],[-76.6205659055654,43.412442938724],[-76.6211855391939,43.4125917233154],[-76.6213462289336,43.4130441612546],[-76.6224187706704,43.413096467238],[-76.6226911722039,43.4132366678799],[-76.620712682198,43.4148179996684],[-76.6193254435491,43.4165574984422],[-76.6183571719623,43.4177687944591],[-76.6179870966079,43.4180486680977],[-76.616791741697,43.4184032544115],[-76.6147752547512,43.4190058075686]]]]},"properties":{"OBJECTID":11,"STATE":"NY","Zone":"B","Title":"Genesee"}}]} \ No newline at end of file diff --git a/bigquery_utils.py b/src/bigquery_utils.py similarity index 100% rename from bigquery_utils.py rename to src/bigquery_utils.py diff --git a/data_validation.py b/src/data_validation.py similarity index 100% rename from data_validation.py rename to src/data_validation.py diff --git a/test/test_market_analysis.py b/test/test_market_analysis.py index 6092b8a..4e4665e 100644 --- a/test/test_market_analysis.py +++ b/test/test_market_analysis.py @@ -1,11 +1,18 @@ -import pandas as pd +import os +import sys -from google.cloud import bigquery -import streamlit as st -from google.oauth2 import service_account +PROJECT_ROOT = os.path.dirname(os.path.dirname(os.path.abspath(__file__))) +if PROJECT_ROOT not in sys.path: + sys.path.append(PROJECT_ROOT) -from market_analysis import load_nyiso_realtime -from market_analysis import get_processed_electricity_data +import pandas as pd # noqa: E402 + +from google.cloud import bigquery # noqa: E402 +import streamlit as st # noqa: E402 +from google.oauth2 import service_account # noqa: E402 + +from app.market_analysis import load_nyiso_realtime # noqa: E402 +from app.market_analysis import get_processed_electricity_data # noqa: E402 creds_info = st.secrets["gcp_service_account"] credentials = service_account.Credentials.from_service_account_info(creds_info)